diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index c03d5b9f..00000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "recommendations": [ - "ms-vscode.cpptools", - "ms-vscode.cmake-tools" - ] -} diff --git a/.vscode/launch.json b/.vscode/launch.json index 4c435193..5fc0f4d2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,32 +1,30 @@ { + "version": "0.2.0", "configurations": [ - { - "name": "C/C++: g++ 构建和调试活动文件", + "name": "Debug cmvr_es (installed output)", "type": "cppdbg", "request": "launch", - "program": "${fileDirname}/${fileBasenameNoExtension}", + "program": "${workspaceFolder}/output/bin/cmvr_es", "args": [], "stopAtEntry": false, - "cwd": "${fileDirname}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ + "cwd": "${workspaceFolder}/output/bin", + "environment": [ { - "description": "为 gdb 启用整齐打印", - "text": "-enable-pretty-printing", - "ignoreFailures": true - }, - { - "description": "将反汇编风格设置为 Intel", - "text": "-gdb-set disassembly-flavor intel", - "ignoreFailures": true + "name": "LD_LIBRARY_PATH", + "value": "${workspaceFolder}/output/lib:${env:LD_LIBRARY_PATH}" } ], - "preLaunchTask": "C/C++: g++ 生成活动文件", - "miDebuggerPath": "/usr/bin/gdb" + "externalConsole": false, + "MIMode": "gdb", + "preLaunchTask": "cmake: install", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] } - ], - "version": "2.0.0" -} \ No newline at end of file + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index f2daafe2..7c1b456d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,11 @@ { - "cmake.configureOnOpen": true, - "cmake.buildDirectory": "${workspaceFolder}/cmake-build-debug", - "cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json", - "cmake.configureSettings": { - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" - }, - "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools", - "C_Cpp.default.compileCommands": "${workspaceFolder}/compile_commands.json", - "C_Cpp.default.cppStandard": "c++17", - "C_Cpp.default.intelliSenseMode": "linux-gcc-x64" + "cmake.sourceDirectory": "${workspaceFolder}", + "cmake.buildDirectory": "${workspaceFolder}/build/vscode-debug", + "cmake.configureSettings": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + }, + "C_Cpp.default.compileCommands": "${workspaceFolder}/build/vscode-debug/compile_commands.json", + "C_Cpp.default.cppStandard": "c++17", + "C_Cpp.default.intelliSenseMode": "linux-gcc-x64" } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index e9fb5f49..9e6206d4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,25 +1,71 @@ { + "version": "2.0.0", "tasks": [ { - "type": "cppbuild", - "label": "C/C++: g++ 生成活动文件", - "command": "/usr/bin/g++", + "label": "cmake: configure", + "type": "shell", + "command": "cmake", "args": [ - "-fdiagnostics-color=always", - "-g", - "${file}", - "-o", - "${fileDirname}/${fileBasenameNoExtension}" + "-S", + "${workspaceFolder}", + "-B", + "${workspaceFolder}/build/vscode-debug", + "-DCMAKE_BUILD_TYPE=Debug", + "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ], - "options": { - "cwd": "${fileDirname}" + "group": "build", + "problemMatcher": [] + }, + { + "label": "cmake: build", + "type": "shell", + "command": "cmake", + "args": [ + "--build", + "${workspaceFolder}/build/vscode-debug", + "-j", + "8" + ], + "dependsOn": [ + "cmake: configure" + ], + "group": { + "kind": "build", + "isDefault": true }, "problemMatcher": [ "$gcc" + ] + }, + { + "label": "cmake: install", + "type": "shell", + "command": "cmake", + "args": [ + "--install", + "${workspaceFolder}/build/vscode-debug", + "--verbose" + ], + "dependsOn": [ + "cmake: build" ], "group": "build", - "detail": "调试器生成的任务。" + "problemMatcher": [] + }, + { + "label": "cmvr_es: run installed", + "type": "shell", + "command": "${workspaceFolder}/output/bin/cmvr_es", + "options": { + "cwd": "${workspaceFolder}/output/bin", + "env": { + "LD_LIBRARY_PATH": "${workspaceFolder}/output/lib:${env:LD_LIBRARY_PATH}" + } + }, + "dependsOn": [ + "cmake: install" + ], + "problemMatcher": [] } - ], - "version": "2.0.0" -} \ No newline at end of file + ] +} diff --git a/cmake/FindExternalLib.cmake b/cmake/FindExternalLib.cmake index b426441e..31ee4f6c 100644 --- a/cmake/FindExternalLib.cmake +++ b/cmake/FindExternalLib.cmake @@ -63,6 +63,7 @@ function(setup_external_libs ARCH) "${FULL_PATH}/lib/*.so" "${FULL_PATH}/lib/*.so.*" ) + list(FILTER _SO_FILES EXCLUDE REGEX "/libstdc\\+\\+\\.so(\\..*)?$") if(_SO_FILES) list(APPEND INSTALL_SO_FILES ${_SO_FILES}) endif() @@ -85,6 +86,7 @@ function(setup_external_libs ARCH) "${FULL_PATH}/*.so" "${FULL_PATH}/*.so.*" ) + list(FILTER _SO_FILES2 EXCLUDE REGEX "/libstdc\\+\\+\\.so(\\..*)?$") if(_SO_FILES2) list(APPEND INSTALL_SO_FILES ${_SO_FILES2}) endif() @@ -138,6 +140,14 @@ function(setup_external_libs ARCH) ) install(FILES ${INSTALL_SO_FILES} DESTINATION lib) + install(CODE [[ + file(GLOB _bundled_stdlib_files + "${CMAKE_INSTALL_PREFIX}/lib/libstdc++.so" + "${CMAKE_INSTALL_PREFIX}/lib/libstdc++.so.*") + if(_bundled_stdlib_files) + file(REMOVE ${_bundled_stdlib_files}) + endif() + ]]) # After installing, patch RPATH of installed shared libs to $ORIGIN install(CODE [[ diff --git a/cmvr-es/devices/arm/aubo_arm/CMakeLists.txt b/cmvr-es/devices/arm/aubo_arm/CMakeLists.txt index 0a98cfe5..b8947772 100644 --- a/cmvr-es/devices/arm/aubo_arm/CMakeLists.txt +++ b/cmvr-es/devices/arm/aubo_arm/CMakeLists.txt @@ -1,13 +1,36 @@ add_library(aubo_arm SHARED - src/aubo_arm.cpp + aubo_arm.cpp ) target_include_directories(aubo_arm PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -set(AUBO_SDK_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/third_party/AuboSdk/linux/include) -set(AUBO_SDK_LIB_DIR ${CMAKE_SOURCE_DIR}/third_party/AuboSdk/linux/lib) +set(AUBO_SDK_ROOT ${CMAKE_SOURCE_DIR}/dependency/${ARCH}/third_party/aubo_sdk/v0.27.1) +set(AUBO_SDK_INCLUDE_DIR ${AUBO_SDK_ROOT}/include) +set(AUBO_SDK_LIB_DIR ${AUBO_SDK_ROOT}/lib) -if (EXISTS "${AUBO_SDK_INCLUDE_DIR}/aubo_sdk/rpc.h") +if (EXISTS "${AUBO_SDK_LIB_DIR}/cmake/aubo_sdk/aubo_sdkConfig.cmake") + list(APPEND CMAKE_PREFIX_PATH "${AUBO_SDK_LIB_DIR}/cmake") + find_package(Qt5Core QUIET) + if (NOT Qt5Core_FOUND AND NOT TARGET Qt5::Core) + find_library(QT5_CORE_LIBRARY + NAMES Qt5Core libQt5Core.so.5 + PATHS /lib /usr/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu + ) + if (QT5_CORE_LIBRARY) + add_library(Qt5::Core UNKNOWN IMPORTED) + set_target_properties(Qt5::Core PROPERTIES + IMPORTED_LOCATION "${QT5_CORE_LIBRARY}" + ) + endif() + endif() + find_package(aubo_sdk REQUIRED CONFIG PATHS "${AUBO_SDK_LIB_DIR}/cmake/aubo_sdk" NO_DEFAULT_PATH) + set_target_properties(aubo_sdk::aubo_sdk aubo_sdk::robot_proxy PROPERTIES + MAP_IMPORTED_CONFIG_DEBUG Release + ) + target_compile_definitions(aubo_arm PRIVATE CMVR_HAS_AUBO_SDK) + target_include_directories(aubo_arm PRIVATE ${AUBO_SDK_INCLUDE_DIR}) + target_link_libraries(aubo_arm PRIVATE aubo_sdk::aubo_sdk) +elseif (EXISTS "${AUBO_SDK_INCLUDE_DIR}/aubo_sdk/rpc.h") target_compile_definitions(aubo_arm PRIVATE CMVR_HAS_AUBO_SDK) target_include_directories(aubo_arm PRIVATE ${AUBO_SDK_INCLUDE_DIR}) if (EXISTS "${AUBO_SDK_LIB_DIR}") diff --git a/cmvr-es/devices/arm/aubo_arm/src/aubo_arm.cpp b/cmvr-es/devices/arm/aubo_arm/aubo_arm.cpp similarity index 82% rename from cmvr-es/devices/arm/aubo_arm/src/aubo_arm.cpp rename to cmvr-es/devices/arm/aubo_arm/aubo_arm.cpp index e1cf5a55..c0e73039 100644 --- a/cmvr-es/devices/arm/aubo_arm/src/aubo_arm.cpp +++ b/cmvr-es/devices/arm/aubo_arm/aubo_arm.cpp @@ -1,4 +1,4 @@ -#include "devices/arm/aubo_arm/include/aubo_arm.h" +#include "devices/arm/aubo_arm/aubo_arm.h" #include #include @@ -40,6 +40,42 @@ std::string vendorBrandName(const config::VendorRobotArmBrand brand) } } +#if defined(CMVR_HAS_AUBO_SDK) +using arcs::common_interface::RobotModeType; +using arcs::aubo_sdk::RobotInterfacePtr; + +bool waitForRobotMode(const RobotInterfacePtr& robot_interface, + const RobotModeType& target_mode) +{ + const auto start_time = std::chrono::steady_clock::now(); + while (std::chrono::steady_clock::now() - start_time < std::chrono::seconds(20)) { + const auto current_mode = robot_interface->getRobotState()->getRobotModeType(); + if (current_mode == target_mode) { + return true; + } + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + } + return false; +} + +int waitArrival(const RobotInterfacePtr& robot_interface) +{ + int retry_count = 0; + int exec_id = robot_interface->getMotionControl()->getExecId(); + while (exec_id == -1 && retry_count++ < 5) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = robot_interface->getMotionControl()->getExecId(); + } + if (exec_id == -1) { + return -1; + } + while (robot_interface->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + return 0; +} +#endif + } // namespace #if defined(CMVR_HAS_AUBO_SDK) @@ -159,7 +195,38 @@ JointGroupState AuboArm::getJointState() const CartesianPose AuboArm::getTcpPose(FrameType frame) const { (void)frame; - return {}; + CartesianPose pose; + +#if defined(CMVR_HAS_AUBO_SDK) + if (!connected_.load() || !sdk_ || !sdk_->rpc_client) { + return pose; + } + try { + const auto robot_names = sdk_->rpc_client->getRobotNames(); + if (robot_names.empty()) { + CMVR_LOG(ERROR) << "[AuboArm] getTcpPose failed: robot name list is empty"; + return pose; + } + auto robot_interface = sdk_->rpc_client->getRobotInterface(robot_names.front()); + if (!robot_interface) { + CMVR_LOG(ERROR) << "[AuboArm] getTcpPose failed: robot interface is null"; + return pose; + } + const auto pose_values = robot_interface->getRobotState()->getTcpPose(); + if (pose_values.size() >= 6) { + pose.x = pose_values[0]; + pose.y = pose_values[1]; + pose.z = pose_values[2]; + pose.rx = pose_values[3]; + pose.ry = pose_values[4]; + pose.rz = pose_values[5]; + } + } catch (const std::exception& e) { + CMVR_LOG(ERROR) << "[AuboArm] getTcpPose failed: " << e.what(); + } +#endif + + return pose; } RobotMode AuboArm::getRobotMode() const @@ -197,11 +264,16 @@ Result AuboArm::torqueOn() std::vector inertia(6, 0.0); robot_interface->getRobotConfig()->setPayload(mass, cog, aom, inertia); - if (robot_interface->getRobotState()->getRobotModeType() != - arcs::common_interface::RobotModeType::Running) { + const auto current_mode = robot_interface->getRobotState()->getRobotModeType(); + if (current_mode != arcs::common_interface::RobotModeType::Running) { robot_interface->getRobotManage()->poweron(); - std::this_thread::sleep_for(std::chrono::milliseconds(200)); + if (!waitForRobotMode(robot_interface, arcs::common_interface::RobotModeType::Idle)) { + return Result::failure(ArmErrorCode::CommandFailed, "[AuboArm] torqueOn failed: timeout waiting for Idle"); + } robot_interface->getRobotManage()->startup(); + if (!waitForRobotMode(robot_interface, arcs::common_interface::RobotModeType::Running)) { + return Result::failure(ArmErrorCode::CommandFailed, "[AuboArm] torqueOn failed: timeout waiting for Running"); + } } emergency_stopped_ = false; return Result::success(); @@ -231,6 +303,9 @@ Result AuboArm::torqueOff() return Result::failure(ArmErrorCode::RobotNotReady, "[AuboArm] robot interface is null"); } robot_interface->getRobotManage()->poweroff(); + if (!waitForRobotMode(robot_interface, arcs::common_interface::RobotModeType::PowerOff)) { + return Result::failure(ArmErrorCode::CommandFailed, "[AuboArm] torqueOff failed: timeout waiting for PowerOff"); + } return Result::success(); } catch (const std::exception& e) { return Result::failure(ArmErrorCode::CommandFailed, std::string("[AuboArm] torqueOff failed: ") + e.what()); @@ -293,6 +368,9 @@ Result AuboArm::moveJ(const JointPositionCommand& target, const MotionOptions& o options.velocity > 0.0 ? options.velocity : 0.5, options.blend_radius, 0); + if (waitArrival(robot_interface) != 0) { + return Result::failure(ArmErrorCode::CommandFailed, "[AuboArm] moveJ did not complete"); + } return Result::success(); } catch (const std::exception& e) { return Result::failure(ArmErrorCode::CommandFailed, std::string("[AuboArm] moveJ failed: ") + e.what()); @@ -348,6 +426,9 @@ Result AuboArm::moveL(const CartesianPose& target, const MotionOptions& options, options.velocity > 0.0 ? options.velocity : 0.25, options.blend_radius, 0); + if (waitArrival(robot_interface) != 0) { + return Result::failure(ArmErrorCode::CommandFailed, "[AuboArm] moveL did not complete"); + } return Result::success(); } catch (const std::exception& e) { return Result::failure(ArmErrorCode::CommandFailed, std::string("[AuboArm] moveL failed: ") + e.what()); @@ -385,7 +466,7 @@ Result AuboArm::stopMotion() } auto robot_interface = sdk_->rpc_client->getRobotInterface(robot_names.front()); if (robot_interface) { - robot_interface->getMotionControl()->stopMove(); + robot_interface->getMotionControl()->stopMove(true, true); } busy_.store(false); return Result::success(); diff --git a/cmvr-es/devices/arm/aubo_arm/include/aubo_arm.h b/cmvr-es/devices/arm/aubo_arm/aubo_arm.h similarity index 100% rename from cmvr-es/devices/arm/aubo_arm/include/aubo_arm.h rename to cmvr-es/devices/arm/aubo_arm/aubo_arm.h diff --git a/cmvr-es/devices/arm/robot_arm_factory.h b/cmvr-es/devices/arm/robot_arm_factory.h index 5f504392..0a23742c 100644 --- a/cmvr-es/devices/arm/robot_arm_factory.h +++ b/cmvr-es/devices/arm/robot_arm_factory.h @@ -6,7 +6,7 @@ #include "cmvr/config/arm_config/arm_config.pb.h" #include "common/base/logging/logger.h" -#include "devices/arm/aubo_arm/include/aubo_arm.h" +#include "devices/arm/aubo_arm/aubo_arm.h" #include "devices/arm/huayan_arm/huayan_arm.h" #include "devices/arm/motor_robot_arm/include/motor_robot_arm.h" diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/AuboRobotMetaType.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/AuboRobotMetaType.h new file mode 100644 index 00000000..d99b7ebc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/AuboRobotMetaType.h @@ -0,0 +1,1670 @@ +#ifndef AUBOROBOTMETATYPE_H +#define AUBOROBOTMETATYPE_H + +#include +#include +#include "robotiomatetype.h" + +#if defined(SERVICE_INTERFACE_BUILD_STAGE) // 编译阶段 +#if defined __GNUC__ +#define SERVICE_INTERFACE_ABI_EXPORT __attribute__((visibility("default"))) +#define SERVICE_INTERFACE_ABI_LOCAL __attribute__((visibility("hidden"))) +#else +#define SERVICE_INTERFACE_ABI_EXPORT __declspec(dllexport) +#define SERVICE_INTERFACE_ABI_LOCAL __attribute__((visibility("hidden"))) +#endif +#else // 链接阶段 +#if defined __GNUC__ +#define SERVICE_INTERFACE_ABI_EXPORT +#define SERVICE_INTERFACE_ABI_LOCAL +#else +#define SERVICE_INTERFACE_ABI_EXPORT __declspec(dllimport) +#define SERVICE_INTERFACE_ABI_LOCAL +#endif +#endif + +/** + * General types + */ +typedef uint8_t boolean; +typedef int8_t int8; +typedef int16_t int16; +typedef int32_t int32; +typedef uint8_t uint8; +typedef uint16_t uint16; +typedef uint32_t uint32; +typedef int64_t int64; +typedef uint64_t uint64; +typedef float float32; +typedef double float64; + +#ifdef __GNUC__ +#define PACK(__Declaration__) __Declaration__ __attribute__((__packed__)) +#endif + +#ifdef _MSC_VER +#define PACK(__Declaration__) \ + __pragma(pack(push, 1)) __Declaration__ __pragma(pack(pop)) +#endif +#ifdef __cplusplus +extern "C" { +#endif + +/** + * 命名空间 aubo_robot_namespace + **/ +namespace aubo_robot_namespace { +enum CollisionMode +{ + CollisionMode_Free, + CollisionMode_Stuck, + // CollisionMode_Adamittance, +}; + +enum +{ + ARM_DOF = 6, //机械臂关节数 +}; + +/** + * 机械臂类型 + **/ +typedef enum +{ + ROBOT_I5 = 0, + ROBOT_I7 = 1, + ROBOT_I10_12 = 2, + ROBOT_I3S = 3, + ROBOT_I3 = 4, + ROBOT_I5S = 5, + ROBOT_I5RX = 501, + ROBOT_I5A_02 = 502, + ROBOT_I5A_03 = 503, + ROBOT_I5L = 6, + ROBOT_I10S = 7, + ROBOT_I16 = 8, + ROBOT_I20 = 9, + ROBOT_I20_1500 = 901, + ROBOT_I20_1650_A = 902, + ROBOT_I20TD = 10, + ROBOT_G3 = 11, + ROBOT_G6 = 12, + ROBOT_F12B = 20, + ROBOT_I12 = 21, + ROBOT_I18 = 22, + ROBOT_T6 = 23, + ROBOT_I5_NET = 24, + ROBOT_I20L_1900 = 25, + ROBOT_I10_CM01 = 26, + ROBOT_I20_BZL = 27, + ROBOT_IS10 = 50, + ROBOT_IS20 = 51, + ROBOT_IS7 = 52, + ROBOT_I25 = 53, + ROBOT_I27 = 54, + ROBOT_I35 = 55, + ROBOT_I10_JY = 56, + ROBOT_IS25_1500 = 57, + ROBOT_I10L = 58, + ROBOT_IS20L = 59, + ROBOT_IS20L_T0 = 60, + ROBOT_IS25_1700 = 61, + ROBOT_I3_F = 62, + ROBOT_I5_F = 63, + ROBOT_I7_F = 64, + ROBOT_I10_F = 65, + ROBOT_I12_F = 66, + ROBOT_I16_F = 67, + ROBOT_IS7_F = 68, +} RobotType; + +/** + * DH参数 + **/ +typedef struct +{ + double A3; + double A4; + double D1; + double D2; + double D5; + double D6; + + // general dh model + double alpha[ARM_DOF]; + double a[ARM_DOF]; + double d[ARM_DOF]; + double theta[ARM_DOF]; +} RobotDhPara; + +typedef enum +{ + RobotControllerErr_MotionCfgErr, // only this is recoverable. + RobotControllerErr_OverspeedProtect, + RobotControllerErr_IkFailure, + RobotControllerErr_OnlineTrajErr, + RobotControllerErr_OfflineTrajErr, + RobotControllerErr_StatusException, +} RobotControllerErrorCode; + +typedef enum +{ + RUN_TO_READY_POSITION, + RUN_PROJECT, + PAUSE_PROJECT, + CONTINUE_PROJECT, + SLOWLY_STOP_PROJECT, + LOAD_PROJECT, + ENTER_SAFEGUARD_MODE_BY_DI_EXTERNAL_SAFEGUARD_STOP, + RELEASE_SAFEGUARD_MODE_IN_AUTOMATIC_MODE, + RELEASE_SAFEGUARD_MODE_IN_MANUAL_MODE, + MANUALLY_RELEASE_SAFEGUARD_MODE_PROMPT, + ENTER_SAFEGUARD_MODE_BY_TRI_STATE_SWITCH, + RELEASE_SAFEGUARD_MODE_BY_TRI_STATE_SWITCH, + ENTER_REDUCE_MODE, + RELEASE_REDUCE_MODE, + REMOTE_CLEAR_ALARM_SIGNAL, + PROJECT_STARTUP_IS_SAFETY, + START_RUN_TO_READY_POSITION, + STOP_RUN_TO_READY_POSITION +} InterfaceBoardSafeIoEventCode; + +/** + * 机械臂诊断信息 + **/ +PACK(struct RobotDiagnosis { + uint8 + armCanbusStatus; // CAN通信状态:0x01~0x80:关节CAN通信错误(每个关节占用1bit) + // 0x00:无错误 + float armPowerCurrent; // 机械臂48V电源当前电流 + float armPowerVoltage; // 机械臂48V电源当前电压 + bool armPowerStatus; // 机械臂48V电源状态(开、关) + char contorllerTemp; // 控制箱温度 + uint8 contorllerHumidity; // 控制箱湿度 + bool remoteHalt; // 远程关机信号 + bool softEmergency; // 机械臂软急停 + bool remoteEmergency; // 远程急停信号 + bool robotCollision; // 碰撞检测位 + bool forceControlMode; // 机械臂进入力控模式标志位 + bool brakeStuats; // 刹车状态 + float robotEndSpeed; // 末端速度 + int robotMaxAcc; // 最大加速度 + bool orpeStatus; // 上位机软件状态位 + bool enableReadPose; // 位姿读取使能位 + bool robotMountingPoseChanged; // 安装位置状态 + bool encoderErrorStatus; // 磁编码器错误状态 + bool staticCollisionDetect; // 静止碰撞检测开关 + uint8 jointCollisionDetect; // 关节碰撞检测 每个关节占用1bit 0-无碰撞 + // 1-存在碰撞 + bool encoderLinesError; // 光电编码器不一致错误 0-无错误 1-有错误 + bool jointErrorStatus; // joint error status + bool singularityOverSpeedAlarm; // 机械臂奇异点过速警告 + bool robotCurrentAlarm; // 机械臂电流错误警告 + uint8 toolIoError; // tool error + bool robotMountingPoseWarning; // 机械臂安装位置错位(只在力控模式下起作用) + uint16 macTargetPosBufferSize; // mac缓冲器长度 预留 + uint16 macTargetPosDataSize; // mac缓冲器有效数据长度 预留 + uint8 macDataInterruptWarning; // mac数据中断 预留 + uint8 controlBoardAbnormalStateFlag; //主控板(接口板)异常状态标志 +}); + +PACK(struct OrpeSafetyStatus { + uint8 orpePause; // 上位机暂停状态 + uint8 orpeStop; // 上位机停止状态 + uint8 orpeError[16]; // 上位机错误 + uint8 systemEmergencyStop; // 解除系统紧急停止输出信号 + uint8 reducedModeError; // 解除缩减错误 + uint8 safetyguardResetSucc; // 防护重置成功 +}); + +PACK(struct RobotSafetyConfig { + uint16 robotReducedConfigJointSpeed[6]; //缩减配置 关节速度限制 + uint32 robotReducedConfigTcpSpeed; //缩减配置 TCP速度限制 + uint32 robotReducedConfigTcpForce; //缩减配置 TCP力(暂定为碰撞等级) + uint32 robotReducedConfigMomentum; //缩减配置 动量 + uint32 robotReducedConfigPower; //缩减配置 功率 + uint8 robotSafeguradResetConfig; //防护重 置设置 + uint8 robotOperationalModeConfig; //操作模式设置 +}); + +PACK(struct RegulateSpeedModeParamConfig_t { + double maxTcpVelocity; //末端速度 + double maxTcpAcceleration; //末端加速度 + double maxJointVelocity[ARM_DOF]; //关节速度 + double maxJointAcceleration[ARM_DOF]; //关节加速度 +}); + +PACK(struct AdmittancePatam_t { + double inertia[ARM_DOF]; //导纳系数之 惯量inertia + double damping[ARM_DOF]; //导纳系数之 阻尼(b)damping + double stiffness[ARM_DOF]; //导纳系数之 刚度(k)stiffness +}); + +/** + * @brief IO的类型枚举 + * + **/ +typedef enum +{ + RobotBoardControllerDI, // 接口板控制器DI(数字量输入)   只读(一般系统内部使用) + RobotBoardControllerDO, // 接口板控制器DO(数字量输出) 只读(一般系统内部使用) + RobotBoardControllerAI, // 接口板控制器AI(模拟量输入) + // 只读(一般系统内部使用) + RobotBoardControllerAO, // 接口板控制器AO(模拟量输出)   只读(一般系统内部使用) + + RobotBoardUserDI, // 接口板用户DI(数字量输入)   可读可写 + RobotBoardUserDO, // 接口板用户DO(数字量输出) 可读可写 + RobotBoardUserAI, // 接口板用户AI(模拟量输入) 可读可写 + RobotBoardUserAO, // 接口板用户AO(模拟量输出) 可读可写 + + RobotToolDI, // 工具端DI + RobotToolDO, // 工具端DO + RobotToolAI, // 工具端AI + RobotToolAO, // 工具端AO + +} RobotIoType; + +/** + * IO类型 + **/ +typedef enum +{ + IO_IN = 0, //输入 + IO_OUT //输出 +} ToolIOType; + +/** + * 工具的电源类型 + **/ +typedef enum +{ + OUT_0V = 0, + OUT_12V = 1, + OUT_24V = 2 +} ToolPowerType; + +typedef enum +{ + RobotToolIoTypeDI = RobotToolDI, //工具端DI + RobotToolIoTypeDO = RobotToolDO //工具端DO +} RobotToolIoType; + +typedef enum //IO状态 +{ + IO_STATUS_INVALID = 0, //有效 + IO_STATUS_VALID //无效 +} IO_STATUS; + +typedef enum +{ + TOOL_DIGITAL_IO_0 = 0, + TOOL_DIGITAL_IO_1 = 1, + TOOL_DIGITAL_IO_2 = 2, + TOOL_DIGITAL_IO_3 = 3 + +} ToolDigitalIOAddr; + +/** + * 综合描述一个IO + **/ +PACK(struct RobotIoDesc { + char ioId[32]; // IO-ID 目前未使用 + RobotIoType ioType; // IO类型 + char ioName[32]; // IO名称 + int ioAddr; // IO地址 + double ioValue; // IO状态 +}); + +//接口板数字量数据 +typedef struct +{ + uint8 addr; + uint8 value; + uint8 type; +} RobotDiagnosisIODesc; + +//接口板模拟量数据 +typedef struct +{ + uint8 addr; + float value; + uint8 type; +} RobotAnalogIODesc; + +PACK(struct ToolDigitalStatus { + ToolIOType ioType; + uint8 ioData; +}); + +typedef enum +{ + RobotToolNoError = 0, //无错误 + RobotToolOverVoltage = 1, //过压 + RobotToolUnderVoltage = 2, //欠压 + RobotToolOVerTemp = 3, //过温 + RobotToolCanBusError = 4 // CAN总线错误 +} RobotToolErrorCode; + +/** + * @brief 机械臂启动完成状态 + */ +enum ROBOT_SERVICE_STATE +{ + ROBOT_SERVICE_READY = 0, + ROBOT_SERVICE_STARTING, + ROBOT_SERVICE_WORKING, + ROBOT_SERVICE_CLOSING, + ROBOT_SERVICE_CLOSED, + ROBOT_SETVICE_FAULT_POWER, + ROBOT_SETVICE_FAULT_BRAKE, + ROBOT_SETVICE_FAULT_NO_ROBOT, + ROBOT_SETVICE_FAULT_SAFEGUARD_STOP +}; + +enum ROBOT_INIT_PHASE +{ + ROBOT_INIT_PHASE_READY = 0, + ROBOT_INIT_PHASE_HANDSHAKE, + ROBOT_INIT_PHASE_SET_POWER, + ROBOT_INIT_PHASE_SET_BRAKE, + ROBOT_INIT_PHASE_SET_COLLSION_CLASS, + ROBOT_INIT_PHASE_SET_OTHER_CMD, + ROBOT_INIT_PHASE_WORKING +}; + +typedef enum +{ + RobotModeSimulator, // 机械臂仿真模式 + RobotModeReal // 机械臂真实模式 +} RobotWorkMode; + +/** + * @brief 机械臂运动控制命令 + */ +typedef enum +{ + RobotMoveStop = 0, // 停止 + RobotMovePause = 1, // 暂停 + RobotMoveContinue = 2, // 继续 +} RobotMoveControlCommand; + +/** + * @brief 机械臂控制命令 + */ +enum RobotControlCommand +{ + RobotRelease = 0, // 释放刹车 + RobotBrake = 1, // 刹车 + OverspeedWarning = 2, // 拖动示教速度过快报警 + OverspeedRecover = 3, // 解除拖动过速报警 + DisableForceControl = 4, // 失能力控 + EnableForceControl = 5, // 使能力控 + OrpeOpen = 6, // 打开上位机软件 + OrpeClose = 7, // 关闭上位机软件 + EnableReadPose = 8, // 打开读取位姿 + DisableReadPose = 9, // 关闭读取位姿 + MountingPoseChanged = 10, // 安装位置已改变 + MountingPoseUnChanged = 11, // 安装位置未改变 + EnableStaticCollisionDetect = 12, // 打开静止碰撞检测 + DisableStaticCollisionDetect = 13, // 关闭静止碰撞检测 + ClearSingularityOverSpeedAlarm = 14, // 解除机械臂奇异点过速警告 + ClearRobotCurrentAlarm = 15, // 解除机械臂电流错误警告 + + // 适配新 aubope sdk 部分枚举,用于实现加油机器人需求 + EnterDragAndTeachMode = 0x15, //进入拖动示教模式 + ExitDragAndTeachMode = 0x16, //退出拖动示教模式 + RobotShutdown = 0x24, //上位机指令控制机械臂一类停机,并上传错误 + ClearRobotShutdown = 0x25, //清除上位机一类停机标志 + EnableCollisionStuckBrake = 0x28, //使能碰撞stuck模式锁刹车 + DisableCollisionStuckBrake = 0x29, //失能能碰撞stuck模式锁刹车 +}; + +/** + * @brief 位置信息 + **/ +struct Pos +{ + double x; + double y; + double z; +}; + +/** + * @brief 位置信息的共用体描述 + **/ +union cartesianPos_U +{ + Pos position; + double positionVector[3]; +}; + +/** + * @brief 姿态的四元素表示方法 + **/ +struct Ori +{ + double w; + double x; + double y; + double z; +}; + +/** + * @brief 姿态的欧拉角表示方法 + **/ +struct Rpy +{ + double rx; + double ry; + double rz; +}; + +typedef struct +{ + double jointPos[ARM_DOF]; +} JointParam; + +/** + * @brief 描述关节的速度和加速度 + */ +typedef struct +{ + double jointPara[ARM_DOF]; +} JointVelcAccParam; + +/** + * 关节碰撞补偿(范围0.00~0.51度) + **/ +typedef struct +{ + double jointOffset[ARM_DOF]; +} RobotJointOffset; + +/** + * @brief 机械臂的路点信息 + **/ +typedef struct +{ + cartesianPos_U cartPos; // 机械臂的位置信息(x,y,z) + Ori orientation; // 机械臂姿态信息,四元素(w,x,y,z) + double jointpos[ARM_DOF]; // 机械臂关节角信息 + int id; // 路点ID +} wayPoint_S; + +typedef struct +{ + cartesianPos_U cartPos; + Ori orientation; + double jointpos[ARM_DOF]; +} RoadPoint; + +typedef struct +{ + double data[6]; +} ForceSensorData; + +typedef struct +{ + Pos position; + Ori quaternion; +} PositionAndQuaternion; + +/** + * @brief 描述运动属性中的偏移属性 + */ +typedef struct +{ + bool ena; // 是否使能偏移 + float relativePosition[3]; // 偏移量 x,y,z + Ori relativeOri; // 姿态偏移 +} MoveRelative; + +typedef struct +{ + double minValue; + double maxValue; +} RangeOfMotion; + +/** + * 关节运动范围 + */ + +typedef struct +{ + bool enable; // 是否使能偏移 + RangeOfMotion rangeValues[ARM_DOF]; //运动范围 +} JointRangeOfMotion; + +/** + * @brief 示教模式枚举 + **/ +enum teach_mode +{ + NO_TEACH = 0, + JOINT1, + JOINT2, + JOINT3, + JOINT4, + JOINT5, + JOINT6, + MOV_X, + MOV_Y, + MOV_Z, + ROT_X, + ROT_Y, + ROT_Z +}; + +/** + * @brief 运动轨迹枚举 + **/ +enum move_track +{ + NO_TRACK = 0, + + // for moveJ and moveL + TRACKING, + + // cartesian motion for moveP + ARC_CIR, + CARTESIAN_MOVEP, + CARTESIAN_CUBICSPLINE, + CARTESIAN_UBSPLINEINTP, + CARTESIAN_GNUBSPLINEINTP, + CARTESIAN_LOOKAHEAD, + + // joint motion for moveP + JIONT_CUBICSPLINE, + JOINT_UBSPLINEINTP, + JOINT_GNUBSPLINEINTP, + + ARC, + CIRCLE, + ARC_ORI_ROTATED, + CIRCLE_ORI_ROTATED, + + ORI_POSITION_ROTATE_CIRCUMFERENCE = 101, +}; + +/** + * @brief 工具姿态标定的方法枚举 + * + */ + +enum ToolKinematicsOriCalibrateMathod +{ + ToolKinematicsOriCalibrateMathod_Invalid = -1, + ToolKinematicsOriCalibrateMathod_xOxy, // 原点、x轴正半轴、x、y轴平面的第一象限上任意一点 + ToolKinematicsOriCalibrateMathod_yOyz, // 原点、y轴正半轴、y、z轴平面的第一象限上任意一点 + ToolKinematicsOriCalibrateMathod_zOzx, // 原点、z轴正半轴、z、x轴平面的第一象限上任意一点 + ToolKinematicsOriCalibrateMathod_TxRBz_TxyPBzAndTyABnz, // 工具x轴平行反向于基坐标系z轴; + // 工具xOy平面平行于基坐标系z轴、工具y轴与基坐标系负z轴夹角为锐角 + ToolKinematicsOriCalibrateMathod_TyRBz_TyzPBzAndTzABnz, // 工具y轴平行反向于基坐标系z轴; + // 工具yOz平面平行于基坐标系z轴、工具z轴与基坐标系负z轴夹角为锐角 + ToolKinematicsOriCalibrateMathod_TzRBz_TzxPBzAndTxABnz, // 工具z轴平行反向于基坐标系z轴; + // 工具zOx平面平行于基坐标系z轴、工具x轴与基坐标系负z轴夹角为锐角 + ToolKinematicsOriCalibrateMathodCount +}; + +/** + * 该结构体描述工具惯量 + * + * 注:该结构体属于冗余数据类型,使用时把所有参数都设置为{0,0,0,0,0,0}. + **/ +typedef struct +{ + double xx; + double xy; + double xz; + double yy; + double yz; + double zz; +} ToolInertia; + +/** + * 工具动力学参数描述 + * + * 注意: + *    机械臂上电之前,安装在机器人末端的工具发生改变时都需要重新设置工具的动力学参数. + *    一般情况下,工具的动力学参数和运动学参数是需要一起设置的; + * 切记: + *    该参数如果不能正确设置会影响机械臂的安全等级和运动轨迹. + **/ +typedef struct +{ + double positionX; // 工具重心的X坐标 + double positionY; // 工具重心的Y坐标 + double positionZ; // 工具重心的Z坐标 + double payload; // 工具重量 + ToolInertia toolInertia; // 工具惯量 预留 使用是全部设置为0 +} ToolDynamicsParam; + +/** 工具描述 工具的运动学参数 + * + * 该工具用于描述一个工具或者工具的运动学参数. + */ +typedef struct +{ + Pos toolInEndPosition; // 工具相对法兰盘的位置 + Ori toolInEndOrientation; // 工具相对法兰盘的姿态 +} ToolInEndDesc; + +typedef ToolInEndDesc ToolKinematicsParam; +typedef ToolInEndDesc RobotCameraCalib; + +/** + * 焊接摇摆结构体 + */ +typedef struct +{ + bool weaveEnable; + int weaveType; + double weaveStep; + double weaveAmplitude; + double weaveHoldDistance; + double weaveAngle; +} WeaveMove; + +PACK(struct RobotRecongnitionParam { + uint8 type; //机械臂辨识参数类型 + uint8 length; //参数数据长度 + uint8 data[256]; //参数实际数据 +}); + +/** + * 坐标系类型枚举 + **/ +enum coordinate_refer +{ + BaseCoordinate = 0, // 基座坐标系 + EndCoordinate, // 末端坐标系或工具坐标系 + WorldCoordinate, // 用户坐标系 +}; + +/** + * 用户坐标系标定方法枚举 + * + * 描述:3点标定坐标系 3个示教点的含义. + **/ +enum CoordCalibrateMathod +{ + Origin_AnyPointOnPositiveXAxis_AnyPointOnPositiveYAxis, // 原点、x轴正半轴、y轴正半轴 + Origin_AnyPointOnPositiveYAxis_AnyPointOnPositiveZAxis, // 原点、y轴正半轴、z轴正半轴 + Origin_AnyPointOnPositiveZAxis_AnyPointOnPositiveXAxis, // 原点、z轴正半轴、x轴正半轴 + Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane, // 原点、x轴正半轴、x、y轴平面的第一象限上任意一点 + Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOZPlane, // 原点、x轴正半轴、x、z轴平面的第一象限上任意一点 + Origin_AnyPointOnPositiveYAxis_AnyPointOnFirstQuadrantOfYOZPlane, // 原点、y轴正半轴、y、z轴平面的第一象限上任意一点 + Origin_AnyPointOnPositiveYAxis_AnyPointOnFirstQuadrantOfYOXPlane, // 原点、y轴正半轴、y、x轴平面的第一象限上任意一点 + Origin_AnyPointOnPositiveZAxis_AnyPointOnFirstQuadrantOfZOXPlane, // 原点、z轴正半轴、z、x轴平面的第一象限上任意一点 + Origin_AnyPointOnPositiveZAxis_AnyPointOnFirstQuadrantOfZOYPlane, // 原点、z轴正半轴、z、y轴平面的第一象限上任意一点 + + CoordTypeCount, +}; + +/** + * 坐标系描述 + * + * 该结构体描述一个坐标系。系统通过该结构体描述一个坐标系(基座坐标系, + *用户坐标系, 末端坐标系或工具坐标系)。 + * + * 坐标系分3种类型: 基座坐标系(BaseCoordinate); + * 用户坐标系(WorldCoordinate); + * 末端坐标系或工具坐标系(EndCoordinate); + * + * 定义: + * 基座坐标系 是 根据机械臂基座建立的坐标系; + * 用户坐标系 是 + *用户坐标系定义在工件上,在机器人动作允许范围内的任意位置,设定任意角度的X、Y、Z轴,原点位于机器人抓取的工件上,坐标系的方向根据客户需要任意定义。 + * 末端坐标系 + *是 安装在机器人末端的工具坐标系,原点及方向都是随着末端位置与角度不断变化的,该座标系实际是将基础座标系通过旋转及位移变化而来的;法兰盘是一个特殊的末端坐标系. + * + * 结构体参数描述: + * coordType     坐标系类型,描述坐标系属于那种类型 + *    methods + *    用户坐标系的标定方法     仅在coordType为用户坐标系(WorldCoordinate)时有效; + *    wayPointArray[3]  标定用户坐标系的3个路点信息 仅在coordType为用户坐标系(WorldCoordinate)时有效; + *    toolDesc       末端工具描述   当coordType=WorldCoordinate 表示标定用户坐标系时,安装在机器人末端的工具; + * 当coordType=EndCoordinate + *描述是哪个工具的坐标系 + * + * 使用说明: + * 基座坐标系 + * coordType=BaseCoordinate + *         其他参数默认 + * 用户坐标系 + * coordType=WorldCoordinate + *         methods        为标定方法 + *         wayPointArray[3]   标定坐标系的3个路点 + *         toolDesc        标定用户坐标系时,安装在机器人末端的工具 + *    末端坐标系或工具坐标系 + * coordType=EndCoordinate + *         methods        缺省,不需要设置 + *         wayPointArray[3]   缺省,不需要设置 + *         toolDesc        机器人末端的工具 + * + * 备注: + *   法兰盘为特殊的工具,工具描述中的位置设置为(0,0,0),姿态信息设置为(1,0,0,0) + *    其结构体定义为 + * { + * pos{0,0,0}, + * Ori{1,0,0,0} + * } //伪代码 + * + * 该结构同时用于用户坐标系的标定.一般通过示教3个示教点实现,第一个示教点是用户坐标系的原点;第二个和第三个示教点的选择根据标定方法来确定,遵循右手手法. + */ +typedef struct +{ + coordinate_refer coordType; // 坐标系类型 + CoordCalibrateMathod methods; // 用户坐标系的标定方法 + JointParam wayPointArray[3]; // 用于标定用户坐标系的3个点(关节角) + ToolInEndDesc toolDesc; // 工具描述 +} CoordCalibrateByJointAngleAndTool; + +typedef struct +{ + //用于位置标定点的数量 + int posCalibrateNum; + //位置标定点 + wayPoint_S posCalibrateWaypoint[4]; + //用于姿态标定点的数量 + int oriCalibrateNum; + //姿态标定点 + wayPoint_S oriCalibrateWaypoint[3]; + //姿态标定方法 + ToolKinematicsOriCalibrateMathod CalibrateMathod; +} ToolCalibrate; + +PACK(struct MoveProfile_t { + double jointMaxAcc[ARM_DOF]; //关节型运动的最大加速度 + double jointMaxVelc[ARM_DOF]; //关节型运动的最大速度 + double endMaxLineAcc; //末端型运动的最大加速度 + double endMaxLineVelc; //末端型运动的最大速度 + + MoveRelative relative; //偏移参数 + CoordCalibrateByJointAngleAndTool relativeOnCoord; //偏移量基于那个坐标系 + + double blendRadius; //交融半径 + ToolInEndDesc toolInEndDesc; //工具属性 +}); + +/** + * @brief 机械臂状态枚举 + **/ +enum RobotState +{ + RobotStopped = 0, //停止 + RobotRunning, //运行 + RobotPaused, //暂停 + RobotResumed //恢复 +}; + +/** + * 机械臂重力分量x y z + **/ +typedef struct +{ + float x; + float y; + float z; +} RobotGravityComponent; + +/** + * 机械臂关节版本信息 + **/ +PACK(struct JointVersion { + char hw_version[8]; //硬件版本信息 + char sw_version[16]; //固件版本信息 +}); + +/** + * 关节ID信息 + **/ +PACK(struct JointProductID { char productID[16]; }); + +/** + * 该结构体描述设备信息 + **/ +PACK(struct RobotDevInfo { + uint8 type; // 设备型号、芯片型号:上位机主站:0x01 接口板0x02 + char revision[16]; // 设备版本号,eg:V1.0 + char manu_id[16]; // 厂家ID,"OUR "的ASCII码0x4F 55 52 00 + char joint_type[16]; // 机械臂类型 + JointVersion joint_ver[8]; // 机械臂关节及工具端信息 + char desc[64]; // 设备描述字符串以0x00结束 + JointProductID jointProductID[8]; // 关节ID信息 + char slave_version[16]; // 从设备版本号 - 字符串表示,如“V1.0.0 + char extio_version[16]; // IO扩展板版本号 -字符串标志,如“V1.0.0 +}); + +typedef struct PACKED +{ + uint8 io_modes; // PNP:0; NPN:1 + + uint64_t di_num; + + uint64_t do_num; + + uint64_t ai_num; + + uint64_t ao_num; + +} IoConfig; + +/** + * 描述机械臂的关节状态 + */ +PACK(struct JointStatus { + int jointCurrentI; // 关节电流 Current of driver + int jointSpeedMoto; // 关节速度 Speed of driver + float jointPosJ; // 关节角 Current position in radian + float jointCurVol; // 关节电压 Rated voltage of motor. Unit: mV + float jointCurTemp; // 当前温度 Current temprature of joint + int jointTagCurrentI; // 电机目标电流 Target current of motor + float jointTagSpeedMoto; // 电机目标速度 Target speed of motor + float jointTagPosJ; // 目标关节角  Target position of joint in radian + uint16 jointErrorNum; // 关节错误码 Joint error of joint num +}); + +PACK(struct JointCommonData { + uint16 JointCurVol; /*!< 关节当前电压 */ + uint16 JointCurTemp; /*!< 关节当前温度*/ + uint16 JointWorkMode; /*!< 关节工作模式 */ + uint16 JointDriEnable; /*!< 关节驱动器使能标志 */ + uint16 JointOpenPwm; /*!< 关节开环占空比 */ + int32_t JointTagCurrent; /*!< 关节当前的目标电流 */ + int32_t JointTagSpeed; /*!< 关节当前的目标速度 */ + int32_t JointTagPos; /*!< 关节当前的目标位置 */ + + uint16 JointMaxCur; /*!< 关节当前的最大电流 */ + uint16 JointMaxSpeed; /*!< 关节当前的最大速度 */ + uint16 JointMaxAcc; /*!< 关节当前的最大加速度 */ + int32_t JointMINPos; /*!< 关节最小位置 */ + int32_t JointMAXPos; /*!< 关节最大位置 */ + + uint16 JointSEVLock; /*!< 关节三环参数锁定标志 */ + uint16 JointCurP; /*!< 关节电流P参数 */ + uint16 JointCurI; /*!< 关节电流I参数 */ + uint16 JointCurD; /*!< 关节电流D参数 */ + uint16 JointSpeedP; /*!< 关节速度P参数 */ + uint16 JointSpeedI; /*!< 关节速度I参数 */ + uint16 JointSpeedD; /*!< 关节速度D参数 */ + uint16 JointSpeedDS; /*!< 关节速度死区 */ + uint16 JointPosP; /*!< 关节位置P参数 */ + uint16 JointPosI; /*!< 关节位置I参数 */ + uint16 JointPosD; /*!< 关节位置D参数 */ + uint16 JointPosDS; /*!< 关节位置DS参数 */ +}); + +/** + * @brief 离线轨迹相关枚举 + */ +enum Robot_Dyn_identify_traj +{ + Dyn_identify_traj_none = 0, + Dyn_identify_traj_robot, // submode: 0/1 <-> internal/hybrid + Dyn_identify_traj_tool, // submode: 0/1 <-> tool only/tool+friction + Dyn_identify_traj_tool_abort +}; + +/** + * @brief 接口板固件升级枚举 + */ +typedef enum +{ + update_master_board_firmware_trans_start = 1, + update_master_board_firmware_trans_data = 2, + update_master_board_firmware_trans_end = 3, + update_slave_board_firmware_trans_start = 4, + update_slave_board_firmware_trans_data = 5, + update_slave_board_firmware_trans_end = 6 +} update_board_firmware_cmd; + +typedef struct +{ + bool trackEnable; // T + wayPoint_S currentRoadPoint; // R + wayPoint_S nextRoadPoint; // R + int timeInterval; // T + double currentPosError[3]; // T + double maxVel; // T + double maxAcc; // T + bool paraChanged; // RT +} SeamTracking; + +PACK(struct RobotArmParamHeader { + uint16 cmd; //请求指令 0x01-读 0x02-写 + uint16 baseDataLen; //基座信息长度 + uint16 jointDataLen; //关节信息长度 +}); + +//位置姿态类型枚举 +typedef enum +{ + POSITION_MM_AND_RPY_ANGLE_SPACE_SPLIT = + 1, //位置(单位:毫米)+ 姿态(欧拉角 单位:角度制) 空格分割 + POSITION_M_AND_QUATERNION_COMMA_SPLIT = + 10, //位置(单位:米) + 姿态(四元素) 逗号分割 +} POSITION_ORIENTATION_TYPE; + +PACK(struct RobotArmParam { + RobotArmParamHeader header; + uint8 base[382]; //底座参数数据 //RobotBaseParameters + uint8 joints[512]; //关键参数数据 //RobotJointsParameter +}); + +PACK(struct RobotInfo { + uint16 robot_type; // robot type + uint16 auth_type; // auth type + uint32 robot_expire; // robot expire + uint8 reserve[12]; // reserve + uint32 robot_duration; // robot duration + uint32 joint_duration[6]; // joint duration +}); + +PACK(struct RobotDynamicsParameters { + double K[6]; // motor torque constant + double IA[4]; // rotor inertia + double M[1]; // link mass + double MXYZ[13]; // center of mass + double IXYZ[28]; // Inertia parameter + double CB[6]; // current bias +}); + +PACK(struct RobotHandguidingParameters { + double FP[6]; // friction compensation percent + double FD[6]; // damp coefficient + double FK[6]; // stiffness coefficient + double FM[6]; // mass coefficient + double pos_limit[6]; // position limit + double velocity_limit[6]; // velocity limit + double acceleration_limit[6]; // acceleration limit +}); + +PACK(struct RobotKinematicsParameters { + double da[6]; // compensation a + double dd[6]; // compensation d + double dalpha[6]; // compensation alpha + double dbeta[6]; // compensation beta + double dratio[6]; // compensation ratio + double dtheta[6]; // compensation theta +}); + +PACK(struct RobotFrictionParameters { + uint16 FL[6]; // load friction compensation + uint16 FR[6]; // reserved friction compensation + int16 tmp_a[6]; // tmp_coefficient_a + uint16 tmp_b[6]; // tmp_coefficient_b + int16 posvel_a1[6]; // positive_vel_a1 + uint16 posvel_b1[6]; // positive_vel_b1 + int16 posvel_a2[6]; // positive_vel_a2 + uint16 posvel_b2[6]; // positive_vel_b2 + uint16 posvel_c2[6]; // positive_vel_c2 + int16 negvel_a1[6]; // negative_vel_a1 + int16 negvel_b1[6]; // negative_vel_b1 + uint16 negvel_a2[6]; // negative_vel_a2 + uint16 negvel_b2[6]; // negative_vel_b2 + int16 negvel_c2[6]; // negative_vel_c2 +}); + +PACK(struct RobotBaseParameters { + RobotInfo info; + RobotDynamicsParameters dynamicParam; + RobotHandguidingParameters handguidingParam; + RobotKinematicsParameters kinematicsParam; +}); + +PACK(struct RobotJointsParameter { RobotFrictionParameters frictionParam; }); + +typedef enum +{ + LL_INFO = 0, + LL_DEBUG, + LL_WARN, + LL_ERROR, + LL_FATAL +} LOG_LEVEL; + +/** + * 描述机械臂事件类型   event define + * + * 机械臂的很多信息(故障,通知)是通过事件通知到客户的,所有在使用SDK时, + * 务必注册接收事件的回调函数。 + */ +typedef enum +{ + RobotEvent_armCanbusError, //机械臂CAN总线错误 已过时,不建议使用 + RobotEvent_remoteHalt, //远程关机 + RobotEvent_remoteEmergencyStop, //机械臂远程急停 + RobotEvent_jointError, //关节错误 PS:已过时,不建议使用 + + RobotEvent_forceControl, //力控制 + RobotEvent_exitForceControl, //退出力控制 + + RobotEvent_softEmergency, //软急停 + RobotEvent_exitSoftEmergency, //退出软急停 + + RobotEvent_collision, //碰撞 + //已过时,不建议使用 已用RobotEventJointCollision(2123) + //替代 + RobotEvent_collisionStatusChanged, //碰撞状态改变 + //已过时,不建议使用 已用RobotEventJointCollision(2123) + //替代 + RobotEvent_tcpParametersSucc, //工具动力学参数设置成功 + //系统事件,用户可以忽略 + RobotEvent_powerChanged, //机械臂电源开关状态改变 + RobotEvent_ArmPowerOff, //机械臂电源关闭 + //不建议使用  已用RobotEventArmPowerOff(2600) 替代 + RobotEvent_mountingPoseChanged, //安装位置发生改变 + RobotEvent_encoderError, //编码器错误 不建议使用 + + RobotEvent_encoderLinesError, //编码器线数不一致 + //不建议使用  已用RobotEventEncoderLineError(2203)替代 + RobotEvent_singularityOverspeed, //奇异点超速 + RobotEvent_currentAlarm, //机械臂电流异常 + RobotEvent_toolioError, //机械臂工具端错误 + RobotEvent_robotStartupPhase, //机械臂启动阶段 系统事件,用户可以忽略 + RobotEvent_robotStartupDoneResult, //机械臂启动完成结果 + //系统事件,用户可以忽略 + RobotEvent_robotShutdownDone, //机械臂关机结果 系统事件,用户可以忽略 + RobotEvent_atTrackTargetPos, //机械臂轨迹运动到位信号通知 + //系统事件,用户可以忽略 + + RobotSetPowerOnDone, //设置电源状态完成 + RobotReleaseBrakeDone, //机械臂刹车释放完成 系统事件,用户可以忽略 + RobotEvent_robotControllerStateChaned, //机械臂控制状态改变 + //系统事件,用户可以忽略 + RobotEvent_robotControllerError, //机械臂控制错误----一般是算法规划出现问题时返回 + RobotEvent_socketDisconnected, // socket断开连接 + + RobotEvent_robotControlException, + RobotEvent_trackPlayInterrupte, + + RobotEvent_staticCollisionStatusChanged, //不建议使用 已过时 + RobotEvent_MountingPoseWarning, + + RobotEvent_MacDataInterruptWarning, + RobotEvent_ToolIoError, // + RobotEvent_InterfacBoardSafeIoEvent, //安全IO通知型事件 + + RobotEvent_RobotHandShakeSucc, //系统事件,用户可以忽略 + RobotEvent_RobotHandShakeFailed, //系统事件,用户可以忽略 + + RobotEvent_RobotErrorInfoNotify, //不建议使用 已过时 + + RobotEvent_InterfacBoardDIChanged, //通知型事件 DI状态改变 + RobotEvent_InterfacBoardDOChanged, //通知型事件 DO状态改变 + RobotEvent_InterfacBoardAIChanged, //通知型事件 AI状态改变 + RobotEvent_InterfacBoardAOChanged, //通知型事件 AO状态改变 + + RobotEvent_UpdateJoint6Rot360Flag, //系统事件,用户可以忽略 + + RobotEvent_RobotMoveControlDone, //系统事件,用户可以忽略 + RobotEvent_RobotMoveControlStopDone, //系统事件,用户可以忽略 + RobotEvent_RobotMoveControlPauseDone, //系统事件,用户可以忽略 + RobotEvent_RobotMoveControlContinueDone, //系统事件,用户可以忽略 + + //主从模式切换 + RobotEvent_RobotSwitchToOnlineMaster, //通知型事件 进入联动主模式 + RobotEvent_RobotSwitchToOnlineSlave, //通知型事件 进入联动从模式 + + RobotEvent_ConveyorTrackRobotStartup, //系统事件,用户可以忽略 + RobotEvent_ConveyorTrackRobotCatchup, //系统事件,用户可以忽略 + + RobotEvent_TeachButtonStatusChanged = 80, //四五六关节示教按钮状态改变 + + RobotEvent_exceptEvent = 100, + + RobotEventInvalid = 1000, // 无效的事件 + + /** + * RobotControllerErrorEvent 控制器异常事件 1001~1499 + * + * 事件处理建议 + * 建议采取措施:停止当前运动 + * + * PS: 这些事件会引起机械臂运动的错误返回 + * 使用时尽量用枚举变量  枚举变量值只是为了查看日志方便 + * + **/ + RobotEventMoveJConfigError = + 1001, // moveJ configuration error 关节运动属性配置错误 + RobotEventMoveLConfigError = + 1002, // moveL configuration error 直线运动属性配置错误 + RobotEventMovePConfigError = + 1003, // moveP configuration error 轨迹运动属性配置错误 + RobotEventInvailConfigError = + 1004, // invail configuration 无效的运动属性配置 + RobotEventWaitRobotStopped = + 1005, // please wait robot stopped 等待机器人停止 + RobotEventJointOutRange = 1006, // joint out of range 超出关节运动范围 + RobotEventFirstWaypointSetError = + 1007, // please set first waypoint correctly in modep + // 请正确设置MODEP第一个路点 + RobotEventConveyorTrackConfigError = + 1008, // configuration error for conveyor tracking 传送带跟踪配置错误 + RobotEventConveyorTrackTrajectoryTypeError = + 1009, // unsupported conveyor tracking trajectory type + // 传送带轨迹类型错误 + RobotEventRelativeTransformIKFailed = + 1010, // inverse kinematics failure due to invalid relative transform + // 相对坐标变换逆解失败 + RobotEventTeachModeCollision = + 1011, // collision in teach-mode 示教模式发生碰撞 + RobotEventextErnalToolConfigError = + 1012, // configuration error for external tool and hand workobject + // 运动属性配置错误,外部工具或手持工件配置错误 + + RobotEventTrajectoryAbnormal = 1101, // Trajectory is abnormal 轨迹异常 + RobotEventOnlineTrajectoryPlanError = + 1102, // Trajectory is abnormal,online planning failed 轨迹规划错误 + RobotEventOnlineTrajectoryTypeIIError = + 1103, // Trajectory is abnormal,type II online planning failed + // 二型在线轨迹规划失败 + RobotEventIKFailed = + 1104, // Trajectory is abnormal,inverse kinematics failed 逆解失败 + RobotEventAbnormalLimitProtect = + 1105, // Trajectory is abnormal,abnormal limit protection 动力学限制保护 + RobotEventConveyorTrackingFailed = + 1106, // Trajectory is abnormal,conveyor tracking failed 传送带跟踪失败 + RobotEventConveyorOutWorkingRange = + 1107, // Trajectory is abnormal,exceeding the conveyor working range + // 超出传送带工作范围 + RobotEventTrajectoryJointOutOfRange = + 1108, // Trajectory is abnormal,joint out of range 关节超出范围 + RobotEventTrajectoryJointOverspeed = + 1109, // Trajectory is abnormal,joint overspeed 关节超速 + RobotEventOfflineTrajectoryPlanFailed = + 1110, // Trajectory is abnormal,Offline track planning failed + // 离线轨迹规划失败 + RobotEventTrajectoryJointAccOutOfRange = + 1111, // Trajectory is abnormal,joint acc out of range + // 轨迹异常,关节加速度超限 + RobotEventTrajectoryBeyondSafetyPlane = 1112, //超过安全平面 + + RobotEventForceModeException = 1120, // 力控模式异常 + RobotEventForceModeIKFailed = + 1121, // Trajectory is abnormal,force control mode ik failed + // 轨迹异常,力控模式下失败 + RobotEventForceModeTrackJointverspeed = + 1122, // Trajectory is abnormal,joint overspeed 关节超速 + + RobotEventControllerIKFailed = + 1200, // The controller has an exception and the inverse kinematics + // failed 控制器异常,逆解失败 + RobotEventControllerStatusException = + 1201, // The controller has an exception and the status is abnormal + // 控制器异常,状态异常 + RobotEventControllerTrackingLost = + 1202, // Exception that joint tracking is lost, 关节跟踪误差过大. + RobotEventMonitorErrTrackingLost = + 1203, // Exception that joint tracking is lost, 关节跟踪误差过大. + RobotEventMonitorErrNoArrivalInTime = 1204, // not used 预留 + RobotEventMonitorErrCurrentOverload = 1205, // not used 预留 + RobotEventMonitorErrJointOutOfRange = + 1206, // Exception that joint out of range  机械臂关节超出限制范围 + RobotEventMonitorErrFifoDataTimeNotRead = + 1207, // controller fifo data timeout was not read + // 队列中数据超时未被读取 + RobotEventThreePositionSwitchNoPress = 1208, //操作模式,三态开关未按下 + + RobotEventMoveEnterStopState = + 1300, // Movement enters the stop state 运动进入到stop阶段 + + /** + * RobotHardwareErrorEvent 来自硬件反馈的异常事件 2001~2999 + * + * 事件处理建议 + * RobotEventJointEncoderPollustion 建议采取措施:警告性通知 + * RobotEventDriveVersionError 建议采取措施:警告性通知 + * RobotEventJointCollision 建议采取措施: + 如需回复当前运动,调用暂停函数 + 恢复的时候先调用碰撞回复函数,在调用continue函数 + 如不需回复当前运动,调用停止函数 + 恢复的时候调用碰撞回复函数可以 + * 其余的事件   建议采取措施:停止当前运动 + **/ + + RobotEventHardwareErrorNotify = 2001, // Robot hardware error 机械臂硬件错误 + + RobotEventJointError = 2101, // Robot joint error 机械臂关节错误 + RobotEventJointOverCurrent = + 2102, // Robot joint over current. 机械臂关节过流 + RobotEventJointOverVoltage = + 2103, // Robot joint over voltage.  机械臂关节过压 + RobotEventJointLowVoltage = + 2104, // Robot joint low voltage.  机械臂关节欠压 + RobotEventJointOverTemperature = + 2105, // Robot joint over temperature. 机械臂关节过温 + RobotEventJointHallError = + 2106, // Robot joint hall error. 机械臂关节霍尔错误 + RobotEventJointEncoderError = + 2107, // Robot joint encoder error. 机械臂关节编码器错误 + RobotEventJointAbsoluteEncoderError = + 2108, // Robot joint absolute encoder error. 机械臂关节绝对编码器错误 + RobotEventJointCurrentDetectError = + 2109, // Robot joint current position error. 机械臂关节当前位置错误 + RobotEventJointEncoderPollustion = + 2110, // Robot joint encoder pollustion. 机械臂关节编码器污染 + // 建议采取措施:警告性通知 + RobotEventJointEncoderZSignalError = + 2111, // Robot joint encoder Z signal error. 机械臂关节编码器Z信号错误 + RobotEventJointEncoderCalibrateInvalid = + 2112, // Robot joint encoder calibrate invalid. + // 机械臂关节编码器校准失效 + RobotEventJoint_IMU_SensorInvalid = + 2113, // Robot joint IMU sensor invalid. 机械臂关节IMU传感器失效 + RobotEventJointTemperatureSensorError = + 2114, // Robot joint temperature sensor error. 机械臂关节温度传感器出错 + RobotEventJointCanBusError = + 2115, // Robot joint CAN BUS error. 机械臂关节CAN总线出错 + RobotEventJointCurrentError = + 2116, // Robot joint current error. 机械臂关节当前电流错误 + RobotEventJointCurrentPositionError = + 2117, // Robot joint current position error. 机械臂关节当前位置错误 + RobotEventJointOverSpeed = 2118, // Robot joint over speed. 机械臂关节超速 + RobotEventJointOverAccelerate = + 2119, // Robot joint over accelerate. 机械臂关节加速度过大错误 + RobotEventJointTraceAccuracy = + 2120, // Robot joint trace accuracy. 机械臂关节跟踪精度错误 + RobotEventJointTargetPositionOutOfRange = + 2121, // Robot joint target position out of range. + // 机械臂关节目标位置超范围 + RobotEventJointTargetSpeedOutOfRange = + 2122, // Robot joint target speed out of range. 机械臂关节目标速度超范围 + RobotEventJointCollision = 2123, // Robot joint collision. 机械臂碰撞 + //    建议采取措施:暂停当前运动 + RobotEventJointSlaveOverCurrent = + 2124, // Robot joint slave over current! 从机过流 + RobotEventJointSlaveOverVoltage = + 2125, // Robot joint slave over voltage! 从机过压 + RobotEventJointSlaveLowVoltage = + 2126, // Robot joint slave low voltage! 从机欠压 + RobotEventJointSlavePositionDiffOver = + 2127, // Robot joint position deviation between master and slave is too + // big! 主从机位置偏差过大 + RobotEventJointSlaveSpeedDiffOver = + 2128, // Robot joint speed deviation between master and slave is too + // big! 主从机速度偏差过大 + RobotEventJointSlaveAbsoluteEncoderError = + 2129, // Robot joint slave abs encoder! 从机绝对编码器错误 + RobotEventJointSlaveCurrentDetectError = + 2130, // Robot joint slave detect current! 从机电流检测错误 + RobotEventJointSlaveEncoderPollustion = + 2131, // Robot joint slave encoder pollustion! 从机编码器污染 + RobotEventJointSlaveEncoderZSignalError = + 2132, // Robot joint slave enocder z signal! 从机编码器Z信号错误 + RobotEventJointSlaveCommunication = + 2133, // Robot joint communication between master and slave error! + // 主从机之间通信错误 + RobotEventJointOpticalEncoderError = + 2134, // Robot joint optical encoder error! 光电编码器错误 + + RobotEventDataAbnormal = 2200, // Robot data abnormal 机械臂信息异常 + RobotEventRobotTypeError = 2201, // Robot type error 机械臂类型错误 + RobotEventAccelerationSensorError = + 2202, // Robot acceleration sensor error 机械臂加速度计芯片错误 + RobotEventEncoderLineError = + 2203, // Robot encoder line error 机械臂编码器线数错误 + RobotEventEnterDragAndTeachModeError = + 2204, // Robot enter drag and teach mode error + // 机械臂进入拖动示教模式错误 + RobotEventExitDragAndTeachModeError = + 2205, // Robot exit drag and teach mode error 机械臂退出拖动示教模式错误 + RobotEventMACDataInterruptionError = + 2206, // Robot MAC data interruption error 机械臂MAC数据中断错误 + RobotEventDriveVersionError = + 2207, // Drive version error 驱动器版本错误(关节固件版本不一致) + RobotEventToolNotExist = 2208, // Robot tool do not exist! 工具端不存在 + RobotEventPowerOnCheckError = + 2209, // Robot power on check error! 上电自检错误 + RobotEventDriverVersionTooLow = + 2210, // Robot driver firmware version is too low! 驱动器版本过低 + RobotEventTargetPosDataBufferOverflow = + 2211, // Robot target pos data buffer overflow! 目标位置数据溢出 + RobotEventRobotArmNotConnected = + 2212, // Robot arm is not connected! 机械臂未连接 + RobotEventPayloadError = 2213, // Robot payload error! 负载错误 + + RobotEventInitAbnormal = 2300, // Robot init abnormal 机械臂初始化异常 + RobotEventDriverEnableFailed = + 2301, // Robot driver enable failed 机械臂驱动器使能失败 + RobotEventDriverEnableAutoBackFailed = + 2302, // Robot driver enable auto back failed + // 机械臂驱动器使能自动回应失败 + RobotEventDriverEnableCurrentLoopFailed = + 2303, // Robot driver enable current loop failed + // 机械臂驱动器使能电流环失败 + RobotEventDriverSetTargetCurrentFailed = + 2304, // Robot driver set target current failed + // 机械臂驱动器设置目标电流失败 + RobotEventDriverReleaseBrakeFailed = + 2305, // Robot driver release brake failed 机械臂释放刹车失败 + RobotEventDriverEnablePostionLoopFailed = + 2306, // Robot driver enable postion loop failed 机械臂使能位置环失败 + RobotEventSetMaxAccelerateFailed = + 2307, // Robot set max accelerate failed 设置最大加速度失败 + RobotEventSetPositionLoopWorkModeFailed = + 2308, // Robot set position loop work mode failed! + // 设置位置环工作模式失败 + RobotEventCalcuateGravityComponentFailed = + 2309, // Robot calculate the gravity component failed! 计算重力分量错误 + RobotEventSetMaxVelocityFailed = + 2310, // Robot set max velocity failed! 设置最大速度失败 + RobotEventEnableCANSyncFrameFailed = + 2311, // Robot enable can synchronization frame failed! + // 使能CAN同步帧失败 + + RobotEventSafetyError = 2400, // Robot Safety error 机械臂安全出错 + RobotEventExternEmergencyStop = + 2401, // Robot extern emergency stop 机械臂外部紧急停止 + RobotEventSystemEmergencyStop = + 2402, // Robot system emergency stop 机械臂系统紧急停止 + RobotEventTeachpendantEmergencyStop = + 2403, // Robot teachpendant emergency stop 机械臂示教器紧急停止 + RobotEventControlCabinetEmergencyStop = + 2404, // Robot control cabinet emergency stop 机械臂控制柜紧急停止 + RobotEventProtectionStopTimeout = + 2405, // Robot protection stop timeout 机械臂保护停止超时 + RobotEventEeducedModeTimeout = + 2406, // Robot reduced mode timeout 机械臂缩减模式超时 + + RobotEventSystemAbnormal = 2500, // Robot systen abnormal 机械臂系统异常 + RobotEvent_MCU_CommunicationAbnormal = + 2501, // Robot mcu communication error 机械臂mcu通信异常 + RobotEvent485CommunicationAbnormal = + 2502, // Robot RS485 communication error 机械臂485通信异常 + RobotEvent220VDetectionBoardAbnormal = + 2503, // Robot 220v detection board abnormal 220V掉电板检测错误 + + //#if 0 // 非实时版本 + RobotEventCurrentJointOutRange = 2550, // Joint out of Range + //#else + RobotEventSoftEmergency = 2550, // 软急停 + RobotEventSoftEmergencyExit = 2551, // 软急停退出 + //#endif + + RobotEventArmPowerOff = + 2600, // Disconnecting the contactor causes the arm 48V power off + // 控制柜接触器断开导致机械臂48V断电 + + RobotEventHardwareErrorNotifyMaximumIndex = 2999, // 索引 + + RobotEventNotifyEvent = 3000, // Robot notification event 机械臂通知性事件 + RobotEventNotifyCollisionLevelChange = + 3001, // Robot Collision level change 机械臂事件通知-碰撞等级被改变 + RobotEventNotifyEnterFlexibleControlMode = 3010, // 进入柔性控制模式通知 + RobotEventNotifyExitFlexibleControlMode = 3011, // 退出柔性控制模式通知 + RobotEventNotifyEnterSpeedReducedMode = 3015, // 进入速度缩减模式通知 + RobotEventNotifyExitSpeedReducedMode = 3016, // 退出速度缩减模式通知 + + RobotEventNotifyStopCurrentMove = 3100, // 停止掉当前运动 + + RobotEventNotifyScriptFinishSucc = 3200, // 脚本运行结束:成功 + RobotEventNotifyScriptFinishFailed = 3201, // 脚本运行结束:失败 + RobotEventNotifyScriptRunInterruptedByStopOperation = + 3202, //脚本运行中断:被stop操作中断 + + RobotEventNotifyScriptRunLabel = 3300, //通知性事件:脚本运行标签 + RobotEventNotifyScriptTraceInfo = 3301, //通知性事件:脚本Print + RobotEventNotifyScriptSetVariable = 3302, //通知性事件:设置示教器全局变量值 + RobotEventNotifyScriptTimeStamp = 3303, //通知性事件:设置计时器 + RobotEventNotifyScriptPopMessage = 3304, //通知性事件:服务器脚本层弹窗 + + RobotEventNotifyJointUpdateFinishSucc = 3400, // 关节驱动升级结束:成功 + RobotEventNotifyJointUpdateFinishFailed = 3401, // 关节驱动升级结束:失败 + RobotEventNotifyJointUpdating = 3402, // 关节驱动升级中 + RobotEventNotifyJointNoProgram = + 3410, // 关节在上电后检测到没有程序,需要升级 + + RobotEventMoveGroupCurrentWaypointId = 3500, // moveGroup当前路点id + RobotEventMoveGroupPaused = 3501, // moveGroup暂停完成 + RobotEventMoveGroupResumed = 3502, // moveGroup恢复完成 + RobotEventMoveGroupStopped = 3503, // moveGroup停止完成 + RobotEventMoveGroupAtTargrtPos = 3504, // moveGroup运行结束 + + // unknown event + robot_event_unknown = 10000, + + // user event + RobotEvent_User = 9000, // first user event id + RobotEvent_MaxUser = 9999 // last user event id + +} RobotEventType; + +/** 事件类型 **/ +typedef struct +{ + RobotEventType eventType; //事件类型号 + int eventCode; // + std::string eventContent; //事件内容 +} RobotEventInfo; + +/** + * 接口函数 错误码定义 成功返回InterfaceCallSuccCode(0);失败返回对应的错误号 + * + * 下面是错误代码列表 + * 21000 ~ 21999错误码  表示错由于控制器异常事件导致的 + * 22000 ~ 22999错误码  表示错由于硬件层异常事件导致的 + */ +enum +{ + InterfaceCallSuccCode = 0, //接口调用成功的返回值 +}; + +typedef enum +{ + // clang-format off + ErrnoSucc = InterfaceCallSuccCode, // 成功 + + ErrCode_Base = 10000, + ErrCode_Failed = 10001, // 通用失败 failed + ErrCode_ParamError = 10002, // 参数错误 parameters error + ErrCode_ConnectSocketFailed = 10003, // 连接失败 socket connect failed Socket + ErrCode_SocketDisconnect = 10004, // Socket断开连接 socket disconnected Socket + ErrCode_CreateRequestFailed = 10005, // 创建请求失败 create request failed + ErrCode_RequestRelatedVariableError = 10006, // 请求相关的内部变量出错 internal error + ErrCode_RequestTimeout = 10007, // 请求超时 timout + ErrCode_SendRequestFailed = 10008, // 发送请求信息失败 send request failed + ErrCode_ResponseInfoIsNULL = 10009, // 响应信息为空 response is null + ErrCode_ResolveResponseFailed = 10010, // 解析响应失败 parse response failed + ErrCode_FkFailed = 10011, // 正解出错 fk failed + ErrCode_IkFailed = 10012, // 逆解出错 ik failed + ErrCode_ToolCalibrateError = 10013, // 工具标定参数有错 tool coordinate paramter error + ErrCode_ToolCalibrateParamError = 10014, // 工具标定参数有错 tool coordinate paramter error + ErrCode_CoordinateSystemCalibrateError = 10015, // 坐标系标定失败 user coordinate calibrate failed + ErrCode_BaseToUserConvertFailed = 10016, // 基坐标系转用户座标失败 base coordinate convert to user coordinate fialed + ErrCode_UserToBaseConvertFailed = 10017, // 用户坐标系转基座标失败 user coordinate convert to base coordinate fialed + + + ErrCode_MotionRelatedVariableError = 10018, // 运动相关的内部变量出错 move funcation paramters error + ErrCode_MotionRequestFailed = 10019, // 运动请求失败 call move funcation failed + ErrCode_CreateMotionRequestFailed = 10020, // 生成运动请求失败 create request failed + ErrCode_MotionInterruptedByEvent = 10021, // 运动被事件中断 move funcation interrupt + ErrCode_MotionWaypointVetorSizeError = 10022, // 运动相关的路点容器的长度不符合规定 parameter error + ErrCode_ResponseReturnError = 10023, // 服务器响应返回错误 server reponse error + ErrCode_RealRobotNoExist = 10024, // 真实机械臂不存在,因为有些接口只有在真是机械臂存在的情况下才可以被调用 real robot no exist + + ErrCode_moveControlSlowStopFailed = 11025, // 调用缓停接口失败 call function failed, server side error + ErrCode_moveControlFastStopFailed = 11026, // 调用急停接口失败 call function failed, server side error + ErrCode_moveControlPauseFailed = 11027, // 调用暂停接口失败 call function failed, server side error + ErrCode_moveControlContinueFailed = 11028, // 调用继续接口失败 call function failed, server side error + + + //20000~21000 的异常码是为了版本兼容 后续会逐渐取消 + ErrCode_collision = 20008, //碰撞 + ErrCode_robotControllerError = 20026, //控制器异常 + + + /** + * 控制器返回的异常 + **/ + ErrCodeMoveJConfigError = 21001, // moveJ configuration error 关节运动属性配置错误 + ErrCodeMoveLConfigError = 21002, // moveL configuration error 直线运动属性配置错误 + ErrCodeMovePConfigError = 21003, // moveP configuration error 轨迹运动属性配置错误 + ErrCodeInvailConfigError = 21004, // invail configuration 无效的运动属性配置 + ErrCodeWaitRobotStopped = 21005, // please wait robot stopped 等待机器人停止 + ErrCodeJointOutRange = 21006, // joint out of range 超出关节运动范围 + ErrCodeFirstWaypointSetError = 21007, // please set first waypoint correctly in modep 请正确设置MODEP第一个路点 + ErrCodeConveyorTrackConfigError = 21008, // configuration error for conveyor tracking 传送带跟踪配置错误 + ErrCodeConveyorTrackTrajectoryTypeError = 21009, // unsupported conveyor tracking trajectory type 传送带轨迹类型错误 + ErrCodeRelativeTransformIKFailed = 21010, // inverse kinematics failure due to invalid relative transform 相对坐标变换逆解失败 + ErrCodeTeachModeCollision = 21011, // collision in teach-mode 示教模式发生碰撞 + ErrCodeextErnalToolConfigError = 21012, // configuration error for external tool and hand workobject 运动属性配置错误,外部工具或手持工件配置错误 + + ErrCodeTrajectoryAbnormal = 21101, // Trajectory is abnormal 轨迹异常 + ErrCodeOnlineTrajectoryPlanError = 21102, // Trajectory is abnormal,online planning failed 轨迹规划错误 + ErrCodeOnlineTrajectoryTypeIIError = 21103, // Trajectory is abnormal,type II online planning failed 二型在线轨迹规划失败 + ErrCodeIKFailed = 21104, // Trajectory is abnormal,inverse kinematics failed 逆解失败 + ErrCodeAbnormalLimitProtect = 21105, // Trajectory is abnormal,abnormal limit protection 动力学限制保护 + ErrCodeConveyorTrackingFailed = 21106, // Trajectory is abnormal,conveyor tracking failed 传送带跟踪失败 + ErrCodeConveyorOutWorkingRange = 21107, // Trajectory is abnormal,exceeding the conveyor working range 超出传送带工作范围 + ErrCodeTrajectoryJointOutOfRange = 21108, // Trajectory is abnormal,joint out of range 关节超出范围 + ErrCodeTrajectoryJointOverspeed = 21109, // Trajectory is abnormal,joint overspeed 关节超速 + ErrCodeOfflineTrajectoryPlanFailed = 21110, // Trajectory is abnormal,Offline track planning failed 离线轨迹规划失败 + ErrCodeTrajectoryJointAccOutOfRange = 21111, // Trajectory is abnormal,joint acc out of range 轨迹异常,关节加速度超限 + + ErrCodeForceModeException = 21120, // 力控模式异常 + ErrCodeForceModeIKFailed = 21121, // Trajectory is abnormal,force control mode ik failed 轨迹异常,力控模式下失败 + ErrCodeForceModeTrackJointverspeed = 21122, // Trajectory is abnormal,joint overspeed 关节超速 + + ErrCodeControllerIKFailed = 21200, // The controller has an exception and the inverse kinematics failed 控制器异常,逆解失败 + ErrCodeControllerStatusException = 21201, // The controller has an exception and the status is abnormal 控制器异常,状态异常 + ErrCodeControllerTrackingLost = 21202, // Exception that joint tracking is lost, 关节跟踪误差过大. + ErrCodeMonitorErrTrackingLost = 21203, // Exception that joint tracking is lost, 关节跟踪误差过大. + ErrCodeMonitorErrNoArrivalInTime = 21204, // not used 预留 + ErrCodeMonitorErrCurrentOverload = 21205, // not used 预留 + ErrCodeMonitorErrJointOutOfRange = 21206, // Exception that joint out of range  机械臂关节超出限制范围 + ErrCodeFifoDataTimeNotRead = 21207, // 缓存区超时未更新 + + ErrCodeMoveEnterStopState = 21300, // Movement enters the stop state 运动进入到stop阶段 + ErrCodeMoveInterruptedByEvent = 21301, // Movement interrupted by the event 运动被未知事件中断 + + /** + * 来自硬件层返回的异常 + **/ + ErrCodeHardwareErrorNotify = 22001, // Robot hardware error 机械臂硬件错误 不能区分是哪种硬件异常才会返回该错误 + + ErrCodeJointError = 22101, // Robot joint error 机械臂关节错误 + ErrCodeJointOverCurrent = 22102, // Robot joint over current. 机械臂关节过流 + ErrCodeJointOverVoltage = 22103, // Robot joint over voltage.  机械臂关节过压 + ErrCodeJointLowVoltage = 22104, // Robot joint low voltage.  机械臂关节欠压 + ErrCodeJointOverTemperature = 22105, // Robot joint over temperature. 机械臂关节过温 + ErrCodeJointHallError = 22106, // Robot joint hall error. 机械臂关节霍尔错误 + ErrCodeJointEncoderError = 22107, // Robot joint encoder error. 机械臂关节编码器错误 + ErrCodeJointAbsoluteEncoderError = 22108, // Robot joint absolute encoder error. 机械臂关节绝对编码器错误 + ErrCodeJointCurrentDetectError = 22109, // Robot joint current position error. 机械臂关节当前位置错误 + ErrCodeJointEncoderPollustion = 22110, // Robot joint encoder pollustion. 机械臂关节编码器污染 建议采取措施:警告性通知 + ErrCodeJointEncoderZSignalError = 22111, // Robot joint encoder Z signal error. 机械臂关节编码器Z信号错误 + ErrCodeJointEncoderCalibrateInvalid = 22112, // Robot joint encoder calibrate invalid. 机械臂关节编码器校准失效 + ErrCodeJoint_IMU_SensorInvalid = 22113, // Robot joint IMU sensor invalid. 机械臂关节IMU传感器失效 + ErrCodeJointTemperatureSensorError = 22114, // Robot joint temperature sensor error. 机械臂关节温度传感器出错 + ErrCodeJointCanBusError = 22115, // Robot joint CAN BUS error. 机械臂关节CAN总线出错 + ErrCodeJointCurrentError = 22116, // Robot joint current error. 机械臂关节当前电流错误 + ErrCodeJointCurrentPositionError = 22117, // Robot joint current position error. 机械臂关节当前位置错误 + ErrCodeJointOverSpeed = 22118, // Robot joint over speed. 机械臂关节超速 + ErrCodeJointOverAccelerate = 22119, // Robot joint over accelerate. 机械臂关节加速度过大错误 + ErrCodeJointTraceAccuracy = 22120, // Robot joint trace accuracy. 机械臂关节跟踪精度错误 + ErrCodeJointTargetPositionOutOfRange = 22121, // Robot joint target position out of range. 机械臂关节目标位置超范围 + ErrCodeJointTargetSpeedOutOfRange = 22122, // Robot joint target speed out of range. 机械臂关节目标速度超范围 + ErrCodeJointCollision = 22123, // Robot joint collision. 机械臂碰撞    建议采取措施:暂停当前运动 + + ErrCodeDataAbnormal = 22200, // Robot data abnormal 机械臂信息异常 + ErrCodeRobotTypeError = 22201, // Robot type error 机械臂类型错误 + ErrCodeAccelerationSensorError = 22202, // Robot acceleration sensor error 机械臂加速度计芯片错误 + ErrCodeEncoderLineError = 22203, // Robot encoder line error 机械臂编码器线数错误 + ErrCodeEnterDragAndTeachModeError = 22204, // Robot enter drag and teach mode error 机械臂进入拖动示教模式错误 + ErrCodeExitDragAndTeachModeError = 22205, // Robot exit drag and teach mode error 机械臂退出拖动示教模式错误 + ErrCodeMACDataInterruptionError = 22206, // Robot MAC data interruption error 机械臂MAC数据中断错误 + ErrCodeDriveVersionError = 22207, // Drive version error 驱动器版本错误(关节固件版本不一致) + + ErrCodeInitAbnormal = 22300, // Robot init abnormal 机械臂初始化异常 + ErrCodeDriverEnableFailed = 22301, // Robot driver enable failed 机械臂驱动器使能失败 + ErrCodeDriverEnableAutoBackFailed = 22302, // Robot driver enable auto back failed 机械臂驱动器使能自动回应失败 + ErrCodeDriverEnableCurrentLoopFailed = 22303, // Robot driver enable current loop failed 机械臂驱动器使能电流环失败 + ErrCodeDriverSetTargetCurrentFailed = 22304, // Robot driver set target current failed 机械臂驱动器设置目标电流失败 + ErrCodeDriverReleaseBrakeFailed = 22305, // Robot driver release brake failed 机械臂释放刹车失败 + ErrCodeDriverEnablePostionLoopFailed = 22306, // Robot driver enable postion loop failed 机械臂使能位置环失败 + ErrCodeSetMaxAccelerateFailed = 22307, // Robot set max accelerate failed 设置最大加速度失败 + + ErrCodeSafetyError = 22400, // Robot Safety error 机械臂安全出错 + ErrCodeExternEmergencyStop = 22401, // Robot extern emergency stop 机械臂外部紧急停止 + ErrCodeSystemEmergencyStop = 22402, // Robot system emergency stop 机械臂系统紧急停止 + ErrCodeTeachpendantEmergencyStop = 22403, // Robot teachpendant emergency stop 机械臂示教器紧急停止 + ErrCodeControlCabinetEmergencyStop = 22404, // Robot control cabinet emergency stop 机械臂控制柜紧急停止 + ErrCodeProtectionStopTimeout = 22405, // Robot protection stop timeout 机械臂保护停止超时 + ErrCodeEeducedModeTimeout = 22406, // Robot reduced mode timeout 机械臂缩减模式超时 + + ErrCodeSystemAbnormal = 22500, // Robot systen abnormal 机械臂系统异常 + ErrCode_MCU_CommunicationAbnormal = 22501, // Robot mcu communication error 机械臂mcu通信异常 + ErrCode485CommunicationAbnormal = 22502, // Robot RS485 communication error 机械臂485通信异常 + + ErrCodeSoftEmergency = 22550, // 软急停 + + ErrCodeArmPowerOff = 22600, //Disconnecting the contactor causes the arm 48V power off 控制柜接触器断开导致机械臂48V断电 + + ErrCodeInterfaceNotImpleted = 30000, // 此接口不支持 + // clang-format on +} RobotErrorCode; + +enum class MoveModeType : int +{ + NONE = 0, + MOVE_GROUP, + SERVOJ, + FORCE_TEACH, + TRAJECTORY_ANALYSE, + TOOL_DYNAMIC_IDENTIFY +}; + +} // namespace aubo_robot_namespace +#ifdef __cplusplus +} +#endif + +/** + * @brief 获取实时关节状态回调函数类型. + * @param jointStatus 当前的关节状态; + * @param size     上一个参数(jointStatus)的长度; + * @param arg      使用者在注册回调函数中传递的第二个参数; + */ +typedef void (*RealTimeJointStatusCallback)( + const aubo_robot_namespace::JointStatus *jointStatus, int size, void *arg); + +/** + * @brief 获取实时路点信息的回调函数类型. + * @param wayPoint  当前的路点信息; + * @param arg      使用者在注册回调函数中传递的第二个参数; + */ +typedef void (*RealTimeRoadPointCallback)( + const aubo_robot_namespace::wayPoint_S *wayPoint, void *arg); + +/** + *@brief 获取实时末端速度的回调函数类型 + *@param speed 当前的末端速度; + *@param arg   使用者在注册回调函数中传递的第二个参数; + */ +typedef void (*RealTimeEndSpeedCallback)(double speed, void *arg); + +/** + *@brief 获取实时Movep执行进度的回调函数类型 + *@param num 当前的Movep执行进度; + *@param arg   使用者在注册回调函数中传递的第二个参数; + */ +typedef void (*RealTimeMovepStepNumNotifyCallback)(int num, void *arg); + +/** + * @brief 获取机械臂事件信息的回调函数类型 + * @param arg 使用者在注册回调函数中传递的第二个参数; + */ +typedef void (*RobotEventCallback)( + const aubo_robot_namespace::RobotEventInfo *eventInfo, void *arg); + +/** + * @brief 日志输出对应的回调函数类型 + * @param logLevel 日志级别; + * @param str 日志信息; + */ +typedef void (*RobotLogPrintCallback)(aubo_robot_namespace::LOG_LEVEL logLevel, + const char *str, void *arg); + +#endif // AUBOROBOTMETATYPE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/aubo_api.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/aubo_api.h new file mode 100644 index 00000000..48c3fdc7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/aubo_api.h @@ -0,0 +1,403 @@ +/** @file aubo_api.h + * @brief \~chinese 机器人及外部轴等控制API接口,如获取机器人列表、获取系统信息等等 + * @brief \~english API for controlling the robot and external axis + */ +#ifndef AUBO_SDK_AUBO_API_INTERFACE_H +#define AUBO_SDK_AUBO_API_INTERFACE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup AuboApi AuboApi (主入口) + * @ingroup AuboApi + * AuboApi + * \endchinese + * + * \english + * @defgroup AuboApi Main Entrance + * @ingroup AuboApi + * AuboApi + * \endenglish + */ +class ARCS_ABI_EXPORT AuboApi +{ +public: + AuboApi(); + virtual ~AuboApi(); + + /** + * @ingroup AuboApi + * @ref Math + * \chinese + * 获取纯数学相关接口 + * + * @return MathPtr对象的指针 + * + * @par Python函数原型 + * getMath(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.Math + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * MathPtr ptr = rpc_cli->getMath(); + * @endcode + * \endchinese + * + *\english + * Get pure mathematic related API + * + * @return Shared pointer to a Math object + * + * @par Python function prototype + * getMath(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.Math + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * MathPtr ptr = rpc_cli->getMath(); + * @endcode + *\endenglish + */ + MathPtr getMath(); + + /** + * @ingroup AuboApi + * @ref SystemInfo + * \chinese + * 获取系统信息 + * + * @return SystemInfoPtr对象的指针 + * + * @par Python函数原型 + * getSystemInfo(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.SystemInfo + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SystemInfoPtr ptr = rpc_cli->getSystemInfo(); + * @endcode + * \endchinese + * + * \english + * Get system info + * + * @return Shared pointer to SystemInfo object + * + * @par Python function prototype + * getSystemInfo(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.SystemInfo + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * SystemInfoPtr ptr = rpc_cli->getSystemInfo(); + * @endcode + * \endenglish + */ + SystemInfoPtr getSystemInfo(); + + /** + * @ingroup AuboApi + * @ref RuntimeMachine + * \chinese + * 获取运行时接口 + * + * @return RuntimeMachinePtr对象的指针 + * + * @par Python函数原型 + * getRuntimeMachine(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.RuntimeMachine + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * RuntimeMachinePtr ptr = rpc_cli->getRuntimeMachine(); + * @endcode + * \endchinese + * + * \english + * Get runtime api + * + * @return Shared pointer to RuntimeMachine object + * Python function prototype + * getRuntimeMachine(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.RuntimeMachine + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * RuntimeMachinePtr ptr = rpc_cli->getRuntimeMachine(); + * @endcode + * \endenglish + */ + RuntimeMachinePtr getRuntimeMachine(); + + /** + * @ingroup AuboApi + * @ref RegisterControl + * \chinese + * 对外寄存器接口 + * + * @return RegisterControlPtr对象的指针 + * + * @par Python函数原型 + * getRegisterControl(self: pyaubo_sdk.AuboApi) -> + * pyaubo_sdk.RegisterControl + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * RegisterControlPtr ptr = rpc_cli->getRegisterControl(); + * @endcode + * \endchinese + * + * \english + * External registers api + * + * @return Shared pointer to RegisterControl object + * + * @par Python function prototype + * getRegisterControl(self: pyaubo_sdk.AuboApi) -> + * pyaubo_sdk.RegisterControl + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * RegisterControlPtr ptr = rpc_cli->getRegisterControl(); + * @endcode + * \endenglish + */ + RegisterControlPtr getRegisterControl(); + + /** + * @ingroup AuboApi + * \chinese + * 获取机器人列表 + * + * @return 机器人列表 + * + * @par Python函数原型 + * getRobotNames(self: pyaubo_sdk.AuboApi) -> List[str] + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"getRobotNames","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["rob1"]} + * \endchinese + * + * \english + * Get robot list + * + * @return robot list + * + * @par Python function prototype + * getRobotNames(self: pyaubo_sdk.AuboApi) -> List[str] + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"getRobotNames","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["rob1"]} + * \endenglish + */ + std::vector getRobotNames(); + + /** + * @ingroup AuboApi + * @ref RobotInterface + * \chinese + * 根据名字获取 RobotInterfacePtr 接口 + * + * @param name 机器人名字 + * @return RobotInterfacePtr对象的指针 + * + * @par Python函数原型 + * getRobotInterface(self: pyaubo_sdk.AuboApi, arg0: str) -> + * pyaubo_sdk.RobotInterface + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotInterfacePtr ptr = rpc_cli->getRobotInterface(robot_name); + * @endcode + * \endchinese + * + * \english + * Get RobotInterfacePtr based on name + * + * @param name Robot name + * @return Shared pointer to a RobotInterface object + * + * @par Python function prototype + * getRobotInterface(self: pyaubo_sdk.AuboApi, arg0: str) -> + * pyaubo_sdk.RobotInterface + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotInterfacePtr ptr = rpc_cli->getRobotInterface(robot_name); + * @endcode + * \endenglish + */ + RobotInterfacePtr getRobotInterface(const std::string &name); + + /** + * @ingroup AuboApi + * \~chinese 获取外部轴列表 \~english Get external axis list + * + * @return + */ + std::vector getAxisNames(); + + /** + * @ingroup AuboApi + * @ref AxisInterface + * \chinese + * 获取外部轴接口 + * + * @param name + * @return + * \endchinese + * + * \english + * Get external axis interface + * + * @param name + * @return + * \endenglish + */ + AxisInterfacePtr getAxisInterface(const std::string &name); + + /** + * @ingroup AuboApi + * @ref Socket + * \chinese + * 获取 socket + * @return SocketPtr对象的指针 + * + * @par Python函数原型 + * getSocket(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Socket + * @endcode + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SocketPtr ptr = rpc_cli->getSocket(); + * @endcode + * \endchinese + * + * \english + * Get socket + * @return Shared pointer to a socket object + * + * @par Python function prototype + * getSocket(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Socket + * @endcode + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * SocketPtr ptr = rpc_cli->getSocket(); + * @endcode + * \endenglish + */ + SocketPtr getSocket(); + + /** + * @ingroup AuboApi + * @ref Serial + * \chinese + * 获取Serial串口 + * @return SerialPtr对象的指针 + * + * @par Python函数原型 + * getSerial(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Serial + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SerialPtr ptr = rpc_cli->getSerial(); + * @endcode + * \endchinese + * + * \english + * @return Shared pointer to Serial object + * + * @par Python function prototype + * getSerial(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Serial + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * SerialPtr ptr = rpc_cli->getSerial(); + * @endcode + * \endenglish + */ + SerialPtr getSerial(); + + /** + * @ingroup AuboApi + * @ref SyncMove + * \~chinese 获取同步运动接口 \~english Get syncronous move interface + * + * \~chinese @return SyncMovePtr对象的指针 + * \~english @return Shared pointer to SyncMove object + */ + SyncMovePtr getSyncMove(const std::string &name); + + /** + * @ingroup AuboApi + * @ref Trace + * \~chinese 获取告警信息接口 + * \~english Get alert interface + * + * \~chinese @return TracePtr对象的指针 + * \~english @return Shared pointer of trace object + */ + TracePtr getTrace(const std::string &name); + + /** + * @ingroup AuboApi + * @ref GripperInterface + * \~chinese 获取通用夹爪接口 + * \~english Get gripper interface + * + * \~chinese @return GripperInterfacePtr对象的指针 + * \~english @return Shared pointer of gripper object + */ + GripperInterfacePtr getGripperInterface(); + +protected: + void *d_{ nullptr }; +}; +using AuboApiPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_AUBO_API_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/axis_interface.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/axis_interface.h new file mode 100644 index 00000000..3d09a46e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/axis_interface.h @@ -0,0 +1,650 @@ +/** @file axes.h + * @brief 外部轴接口 + */ +#ifndef AUBO_SDK_AXIS_INTERFACE_H +#define AUBO_SDK_AXIS_INTERFACE_H + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup AxisInterface AxisInterface (外部轴) + * 外部轴API接口 + * \endchinese + * + * \english + * @defgroup AxisInterface External Axis + * External axis API interface + * \endenglish + */ +class ARCS_ABI_EXPORT AxisInterface +{ +public: + AxisInterface(); + virtual ~AxisInterface(); + + /** + * @ingroup AxisInterface + * \~chinese 通电 + * \~english Power on + * @return + */ + int poweronExtAxis(); + + /** + * @ingroup AxisInterface + * \~chinese 断电 + * \~english Power off + * @return + */ + int poweroffExtAxis(); + + /** + * @ingroup AxisInterface + * \~chinese 使能 + * \~english Enable + * @return + */ + int enableExtAxis(); + + /** + * @ingroup AxisInterface + * \~chinese 设置外部轴的安装位姿(相对于世界坐标系) + * \~chinese @param pose + * \~english Set mounting pose of external axis (wrt world frame) + * \~english @param pose + + * @return + */ + int setExtAxisMountingPose(const std::vector &pose); + + /** + * @ingroup AxisInterface + * \chinese 运动到指定点, 旋转或者平移 + * + * @param pos + * @param v + * @param a + * @param duration + * @return + * \endchinese + * + * \english move to pos, rotation or linear + * + * @param pos + * @param v + * @param a + * @param duration + * @return + * \endenglish + */ + int moveExtJoint(double pos, double v, double a, double duration); + + /** + * @ingroup AxisInterface + * \chinese + * 制定目标运动速度 + * + * @param v + * @param a + * @param duration + * @return + * \endchinese + * + * \english + * Set target speed, acceleration and duration + * @param v + * @param a + * @param duration + * @return + * \endenglish + */ + int speedExtJoint(double v, double a, double duration); + + /** + * @ingroup AxisInterface + * \chinese + * 停止外部轴运动 + * + * @param a + * @return + * \endchinese + * + * \english + * stop ext joint + * @param a + * @return + * \endenglish + */ + int stopExtJoint(double a); + + /** + * @ingroup AxisInterface + * \~chinese 获取外部轴的类型 0代表是旋转 1代表平移 + * \~english Get external axis type: 0 for rotation, 1 for linear + * @return + */ + int getExtAxisType(); + + /** + * @ingroup AxisInterface + * \~chinese 设置外部轴的类型 + * @param type 0代表是旋转 1代表平移 + * + * \~english Set external axis type + * @param type: 0 for rotation, 1 for linear + * @return + */ + int setExtAxisType(int type); + + /** + * @ingroup AxisInterface + * \chinese + * 获取当前外部轴的状态 + * + * @return 当前外部轴的状态 + * \endchinese + * + * \english + * Get external axis status + * + * @return Current exteral axis status + * \endenglish + */ + AxisModeType getAxisModeType(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴安装位姿 + * + * @return 外部轴安装位姿 + * \endchinese + * + * \english + * Get external axis mounting pose + * + * @return External axis pose + * \endenglish + */ + std::vector getExtAxisMountingPose(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取相对于安装坐标系的位姿,外部轴可能为变位机或者导轨 + * + * @return 相对于安装坐标系的位姿 + * \endchinese + * + * \english + * Get pose wrt mounting coordinate system, axis can be positioner or linear + * rail + * + * @return Pose wrt mounting coordinate system + * \endenglish + */ + std::vector getExtAxisPose(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴位置 + * + * @return 外部轴位置 + * \endchinese + * + * \english + * Get external axis position + * + * @return External axis position + * \endenglish + */ + double getExtAxisPosition(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴运行速度 + * + * @return 外部轴运行速度 + * \endchinese + * + * \english + * Get external axis speed + * + * @return External axis speed + * \endenglish + */ + double getExtAxisVelocity(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴运行速度 + * + * @return + * \endchinese + * + * \english + * Set external axis speed + * + * @return + * \endenglish + */ + int setExtAxisVelocity(double velocity); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴运行加速度 + * + * @return 外部轴运行加速度 + * \endchinese + * + * \english + * Get external axis acceleration + * + * @return External axis acceleration + * \endenglish + */ + double getExtAxisAcceleration(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴运行加速度 + * + * @param acc + * @return + * \endchinese + * + * \english + * Set external axis acceleration + * + * @param acc + * @return + * \endenglish + */ + int setExtAxisAcceleration(double acc); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴电流 + * + * @return 外部轴电流 + * \endchinese + * + * \english + * Get external axis current + * + * @return External axis current + * \endenglish + */ + double getExtAxisCurrent(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴温度 + * + * @return 外部轴温度 + * \endchinese + * + * \english + * Get external axis temperature + * + * @return External axis temperature + * \endenglish + */ + double getExtAxisTemperature(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴电压 + * + * @return 外部轴电压 + * \endchinese + * + * \english + * Get external axis voltage + * + * @return External axis voltage + * \endenglish + */ + double getExtAxisBusVoltage(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴电流 + * + * @return 外部轴电流 + * \endchinese + * + * \english + * Get external axis current + * + * @return external axis current + * \endenglish + */ + double getExtAxisBusCurrent(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大位置(物理极限) + * + * @return 外部轴最大位置 + * \endchinese + * + * \english + * Get external axis max position + * + * @return External axis max position + * \endenglish + */ + double getExtAxisMaxPosition(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴最大位置(软件/算法限制) + * + * @param q + * @return + * \endchinese + * + * \english + * Set external axis max position + * + * @param q + * @return + * \endenglish + */ + int setExtAxisMaxPositionLimit(double q); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大位置(软件/算法限制) + * + * @return 外部轴最大位置 + * \endchinese + * + * \english + * Get external axis max position + * + * @return External axis max position + * \endenglish + */ + double getExtAxisMaxPositionLimit(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最小位置(物理极限) + * + * @return 外部轴最小位置 + * \endchinese + * + * \english + * Get external axis min position + * + * @return External axis min position + * \endenglish + */ + double getExtMinPosition(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴最小位置(软件/算法限制) + * + * @param q + * @return + * \endchinese + * + * \english + * Set external axis min position + * + * @param q + * @return + * \endenglish + */ + int setExtMinPositionLimit(double q); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最小位置(软件/算法限制) + * + * @return 外部轴最小位置 + * \endchinese + * + * \english + * Get external axis min position + * + * @return External axis min position + * \endenglish + */ + double getExtMinPositionLimit(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大速度(物理极限) + * + * @return 外部轴最大速度 + * \endchinese + * + * \english + * Get external axis max speed + * + * @return External axis max speed + * \endenglish + */ + double getExtAxisMaxVelocity(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴最大速度(软件/算法限制) + * + * @param v + * @return + * \endchinese + * + * \english + * Set external axis max speed + * + * @param v + * @return + * \endenglish + */ + int setExtAxisMaxVelocityLimit(double v); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大速度(软件/算法限制) + * + * @return 外部轴最大速度 + * \endchinese + * + * \english + * Get external axis max speed + * + * @return External axis max speed + * \endenglish + */ + double getExtAxisMaxVelocityLimit(); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大加速度(物理极限) + * + * @return 外部轴最大加速度 + * \endchinese + * + * \english + * Get external axis max acceleration + * + * @return External axis max acceleration + * \endenglish + */ + double getExtAxisMaxAcceleration(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴最大加速度(软件/算法限制) + * + * @param acc + * @return + * \endchinese + * + * \english + * Set external axis max acceleration + * + * @param acc + * @return + * \endenglish + */ + int setExtAxisMaxAccelerationLimit(double acc); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴最大加速度(软件/算法限制) + * + * @return 外部轴最大加速度 + * \endchinese + * + * \english + * Get external axis max acceleration + * + * @return External axis max acceleration + * \endenglish + */ + double getExtAxisMaxAccelerationLimit(); + + /** + * @ingroup AxisInterface + * \chinese + * 跟踪另一个外部轴的运动(禁止运动过程中使用) + * + * @param target_name 目标的外部轴名字 + * @param phase 相位差 + * @param err 跟踪运行的最大误差 + * @return + * \endchinese + * + * \english + * Follow motion of another external axis (not to be used during motion) + * + * @param target_name name of target axis + * @param phase phase difference + * @param err max error when following motion + * @return + * \endenglish + */ + int followAnotherAxis(const std::string &target_name, double phase, + double err); + + /** + * @ingroup AxisInterface + * \~chinese @brief stopFollowAnotherAxis(禁止运动过程中使用) + * \~english @brief stopFollowAnotherAxis(not to be used during motion) + * @return + */ + int stopFollowAnotherAxis(); + + /** + * @ingroup AxisInterface + * \~chinese @brief getErrorCode(获取外部轴错误码) + * \~english @brief getErrorCode(Get raw external axis error code) + * @return + */ + int getErrorCode(); + + /** + * @ingroup AxisInterface + * \chinese + * 重置外部轴错误 + * + * @return + * \endchinese + * + * \english + * Reset axis error + * + * @return + * \endenglish + */ + int clearAxisError(); + + /** + * @ingroup AxisInterface + * \chinese + * 将当前外部轴位置设置为零位 + * + * @return + * \endchinese + * + * \english + * Set current external axis position as zero. + * + * @return + * \endenglish + */ + int setExtAxisZero(); + + /** + * @ingroup AxisInterface + * \chinese + * 设置外部轴减速比 + * + * @return + * \endchinese + * + * \english + * Set axis reduction ratio + * + * @return + * \endenglish + */ + int setReductionRatio(double ratio); + + /** + * @ingroup AxisInterface + * \chinese + * 获取外部轴减速比 + * + * @return + * \endchinese + * + * \english + * Get axis reduction ratio + * + * @return + * \endenglish + */ + double getReductionRatio(); + +protected: + void *d_; +}; +using AxisInterfacePtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_AXIS_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/error_stack.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/error_stack.h new file mode 100644 index 00000000..8a25b610 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/error_stack.h @@ -0,0 +1,118 @@ +/** @file error_stack.h + * @brief 汇总错误码 + */ +#ifndef AUBO_SDK_ERROR_STACK_H +#define AUBO_SDK_ERROR_STACK_H + +#include +#include +#include +#include +#include +#include + +#include + +// 格式化占位符,默认是 fmt 的格式 +#ifndef _PH1_ +#define _PH1_ "{}" +#define _PH2_ "{}" +#define _PH3_ "{}" +#define _PH4_ "{}" +#endif + +namespace arcs { +namespace error_stack { + +constexpr int ARCS_ABI_EXPORT codeCompose(int aa, int bb, int cccc) +{ + return (int)((aa * 1000000) + (bb * 10000) + cccc); +} + +constexpr int ARCS_ABI_EXPORT mod(int x) +{ + return (x % 1000000); +} + +#include +#include +#include + +#define ARCS_ERROR_CODES \ + SYSTEM_ERRORS \ + JOINT_ERRORS \ + JOINT_EX_ERRORS \ + EXT_AXIS_ERRORS \ + SAFETY_INTERFACE_BOARD_ERRORS \ + RTM_ERRORS \ + TOOL_ERRORS \ + EX_TOOL_ERRORS \ + PEDSTRAL_ERRORS \ + EX_PEDSTRAL_ERRORS \ + HARDWARE_INTERFACE_ERRORS \ + _D(ARCS_MAX_ERROR_CODE, -1, "Max error code", "suggest...") + +// 错误代码枚举 +enum ErrorCodes +{ +#define _D(n, v, s, r, ...) n = (int)v, + ARCS_ERROR_CODES +#undef _D +}; + +inline int str2ErrorCode(const char *err_code_name) +{ +#define _D(n, v, s, r, ...) \ + if (strcmp(#n, err_code_name) == 0) \ + return v; + ARCS_ERROR_CODES +#undef _D + return ARCS_MAX_ERROR_CODE; +} + +inline const char *errorCode2Str(int err_code) +{ + static const char *errcode_str[] = { +#define _D(n, v, s, r, ...) s, + ARCS_ERROR_CODES +#undef _D + }; + + enum arcs_index + { +#define _D(n, v, s, r, ...) n##_INDEX, + ARCS_ERROR_CODES +#undef _D + }; + + int index = -1; + +#define _D(n, v, s, r, ...) \ + if (err_code == v) \ + index = n##_INDEX; + ARCS_ERROR_CODES +#undef _D + + if (index == -1) { + index = ARCS_MAX_ERROR_CODE_INDEX; + } + + return errcode_str[(unsigned)index]; +} + +inline std::ostream &dump(std::ostream &os) +{ +#define _D(n, v, s, r, ...) \ + os << std::setw(20) << #n << "\t" << v << "\t" << s << "\t" << r \ + << std::endl; + + ARCS_ERROR_CODES +#undef _D + + return os; +} + +} // namespace error_stack +} // namespace arcs + +#endif // AUBO_SDK_ERROR_STACK_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/hal_error.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/hal_error.h new file mode 100644 index 00000000..2646c8d0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/hal_error.h @@ -0,0 +1,350 @@ +/** @file hal_error.h + * @brief 定义硬件抽象层的错误码 + */ +#ifndef AUBO_SDK_HAL_ERROR_H +#define AUBO_SDK_HAL_ERROR_H + +// 缩写说明 +// JNT: joint +// PDL: pedstral +// TP: teach pendant +// COMM: communication +// ENC: encoder +// CURR: current +// POS: position +// PKG: package +// PROG: program + +// clang-format off +#define JOINT_ERRORS \ + _D(JOINT_ERR_OVER_CURRENET, 10001, "joint" _PH1_ " error: over current", "(a) Check for short circuit. (b) Do a Complete rebooting sequence. (c) If this happens more than two times in a row, replace joint") \ + _D(JOINT_ERR_OVER_VOLTAGE, 10002, "joint" _PH1_ " error: over voltage", "(a) Do a Complete rebooting sequence. (b) Check 48 V Power supply, current distributer, energy eater and Control Board for issues") \ + _D(JOINT_ERR_LOW_VOLTAGE, 10003, "joint" _PH1_ " error: low voltage", "(a) Do a Complete rebooting sequence. (b) Check for short circuit in robot arm. (c) Check 48 V Power supply, current distributer, energy eater and Control Board for issues") \ + _D(JOINT_ERR_OVER_TEMP, 10004, "joint" _PH1_ " error: over temperature", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_HALL, 10005, "joint" _PH1_ " error: hall", "suggest...") \ + _D(JOINT_ERR_ENCODER, 10006, "joint" _PH1_ " error: encoder", "Check encoder connections") \ + _D(JOINT_ERR_ABS_ENCODER, 10007, "joint" _PH1_ " error: abs encoder", "suggest...") \ + _D(JOINT_ERR_Q_CURRENT, 10008, "joint" _PH1_ " error: detect current", "suggest...") \ + _D(JOINT_ERR_ENC_POLL, 10009, "joint" _PH1_ " error: encoder pollustion", "suggest...") \ + _D(JOINT_ERR_ENC_Z_SIGNAL, 10010, "joint" _PH1_ " error: enocder z signal", "suggest...") \ + _D(JOINT_ERR_ENC_CAL, 10011, "joint" _PH1_ " error: encoder calibrate", "suggest...") \ + _D(JOINT_ERR_IMU_SENS, 10012, "joint" _PH1_ " error: IMU sensor", "suggest...") \ + _D(JOINT_ERR_TEMP_SENS, 10013, "joint" _PH1_ " error: TEMP sensor", "suggest...") \ + _D(JOINT_ERR_CAN_BUS, 10014, "joint" _PH1_ " error: CAN bus error", "suggest...") \ + _D(JOINT_ERR_SYS_CUR, 10015, "joint" _PH1_ " error: system current error", "suggest...") \ + _D(JOINT_ERR_SYS_POS, 10016, "joint" _PH1_ " error: system position error","suggest...") \ + _D(JOINT_ERR_OVER_SP, 10017, "joint" _PH1_ " error: over speed","suggest...") \ + _D(JOINT_ERR_OVER_ACC, 10018, "joint" _PH1_ " error: over accelerate", "suggest...") \ + _D(JOINT_ERR_TRACE, 10019, "joint" _PH1_ " error: trace accuracy", "suggest...") \ + _D(JOINT_ERR_TAG_POS_OVER, 10020, "joint" _PH1_ " error: target position out of range", "suggest...") \ + _D(JOINT_ERR_TAG_SP_OVER, 10021, "joint" _PH1_ " error: target speed out of range", "suggest...") \ + _D(JOINT_ERR_COLLISION, 10022, "joint" _PH1_ " error: collision", "suggest...") \ + _D(JOINT_ERR_COMMON, 10023, "joint" _PH1_ " error: unkown error. Check communication with joint.", "suggest...") \ + _D(JOINT_ERR_SWITCH_SERVO_MODE, 10024, "joint" _PH1_ " error: switch servo mode timeout.", "suggest...") \ + _D(JOINT_ERR_MOTOR_STUCK, 10025, "joint" _PH1_ " error: motor stucked.", "suggest...") \ + _D(JOINT_ERR_REDUCER_OVER_TEMP, 10026, "joint" _PH1_ " error: reducer over temperature", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_REDUCER_NTC, 10027, "joint" _PH1_ " error: reducer TEMP sensor failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_ABS_MULTITURN, 10028, "joint" _PH1_ " error: absolute encoder multiturn error", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_ADC_ZERO_OFFSET, 10029, "joint" _PH1_ " error: ADC zero offset failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_SHORT_CIRCUIT, 10030, "joint" _PH1_ " error: short circuit", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_PHASE_LOST, 10031, "joint" _PH1_ " error: motor phase lost", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_BRAKE, 10032, "joint" _PH1_ " error: brake failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_FIRMWARE_UPDATE, 10033, "joint" _PH1_ " error: firmware update failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_BATTERY_LOW, 10034, "joint" _PH1_ " error: battery low", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_PHASE_ALIGN, 10035, "joint" _PH1_ " error: phase align", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_CAN_HW_FAULT, 10036, "joint" _PH1_ " error: CAN bus hw fault", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_POS_DISCONTINUOUS, 10037, "joint" _PH1_ " error: target position discontinuous", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_POS_INIT, 10038, "joint" _PH1_ " error: position initiallization failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_TORQUE_SENSOR, 10039, "joint" _PH1_ " error: torqure sensor failure", "(a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence") \ + _D(JOINT_ERR_OFFLINE, 10040, "joint" _PH1_ " error: joint may be offline", "(a) Check joint's hardware. (b) Check joint's id.") \ + _D(JOINT_ERR_BOOTLOADER, 10041, "joint" _PH1_ " error: The joint is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(JOINT_ERR_SLAVE_OFFLINE, 10042, "slave joint" _PH1_ " error: slave joint may be offline", "(a) Check slave joint's hardware. (b) Check slave joint's id.") \ + _D(JOINT_ERR_SLAVE_BOOTLOADER, 10043, "slave joint" _PH1_ " error: The slave joint is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(JOINT_ERR_ETHERCAT_BUS, 10044, "joint" _PH1_ " error: ETHERCAT bus error", "suggest...") + +// Joint extended error codes (ex_err_code), starting from 10401 +#define JOINT_EX_ERRORS \ + _D(EX_JOINT_EC_SHORT_CIRCUIT, 10401, "joint" _PH1_ " error: short circuit protection", "suggest...", 0x2130) \ + _D(EX_JOINT_EC_SHORT_CURRENT, 10402, "joint" _PH1_ " error: over current", "suggest...", 0x2310) \ + _D(EX_JOINT_EC_PHASEA_CURRENT, 10403, "joint" _PH1_ " error: phase A over current", "suggest...", 0x2311) \ + _D(EX_JOINT_EC_PHASEB_CURRENT, 10404, "joint" _PH1_ " error: phase B over current", "suggest...", 0x2312) \ + _D(EX_JOINT_EC_PHASEC_CURRENT, 10405, "joint" _PH1_ " error: phase C over current", "suggest...", 0x2313) \ + _D(EX_JOINT_EC_PHASE_CURRENT, 10406, "joint" _PH1_ " error: phase over current", "suggest...", 0x2314) \ + _D(EX_JOINT_EC_MOTOR_PHASE_LOSE, 10407, "joint" _PH1_ " error: motor phase loss", "suggest...", 0x3331) \ + _D(EX_JOINT_EC_BUS_OVER_VOLTAGE, 10408, "joint" _PH1_ " error: bus over voltage", "suggest...", 0x3210) \ + _D(EX_JOINT_EC_BUS_LOW_VOLTAGE, 10409, "joint" _PH1_ " error: bus under voltage", "suggest...", 0x3220) \ + _D(EX_JOINT_EC_OVERLOAD, 10410, "joint" _PH1_ " error: overload", "suggest...", 0x3230) \ + _D(EX_JOINT_EC_IPM_OVER_TEMP, 10411, "joint" _PH1_ " error: IPM over temperature", "suggest...", 0x4310) \ + _D(EX_JOINT_EC_REDUCER_OVER_TEMP, 10412, "joint" _PH1_ " error: reducer over temperature", "suggest...", 0x4311) \ + _D(EX_JOINT_EC_ADC_ZERO_OFFSET, 10413, "joint" _PH1_ " error: ADC zero offset", "suggest...", 0x5101) \ + _D(EX_JOINT_EC_REDUCER_NTC, 10414, "joint" _PH1_ " error: reducer NTC fault", "suggest...", 0x5102) \ + _D(EX_JOINT_EC_IPM_NTC, 10415, "joint" _PH1_ " error: IPM NTC fault", "suggest...", 0x5103) \ + _D(EX_JOINT_EC_TORQUE_SENSOR, 10416, "joint" _PH1_ " error: torque sensor fault", "suggest...", 0x5104) \ + _D(EX_JOINT_EC_TORQUE_SENSOR_COMM, 10417, "joint" _PH1_ " error: torque sensor communication fault", "suggest...", 0x5105) \ + _D(EX_JOINT_EC_MOTOR_ABS_ENC_COMM, 10418, "joint" _PH1_ " error: motor-side absolute encoder communication fault", "suggest...", 0x5201) \ + _D(EX_JOINT_EC_REDUCER_ABS_ENC_COMM, 10419, "joint" _PH1_ " error: reducer-side absolute encoder communication fault", "suggest...", 0x5202) \ + _D(EX_JOINT_EC_REDUCER_ABS_ENC_DATA, 10420, "joint" _PH1_ " error: reducer-side absolute encoder data channel disabled warning", "suggest...", 0x5203) \ + _D(EX_JOINT_EC_REDUCER_ABS_ENC_CMD, 10421, "joint" _PH1_ " error: reducer-side absolute encoder command invalid warning", "suggest...", 0x5204) \ + _D(EX_JOINT_EC_REDUCER_ABS_ENC_ERR, 10422, "joint" _PH1_ " error: reducer-side absolute encoder fault", "suggest...", 0x5205) \ + _D(EX_JOINT_EC_REDUCER_ABS_ENC_WARNING, 10423, "joint" _PH1_ " error: reducer-side absolute encoder warning", "suggest...", 0x5206) \ + _D(EX_JOINT_EC_BRAKE, 10424, "joint" _PH1_ " error: brake fault", "suggest...", 0x5301) \ + _D(EX_JOINT_EC_COMM_HWL, 10425, "joint" _PH1_ " error: communication hardware layer error", "suggest...", 0x5302) \ + _D(EX_JOINT_EC_FIRMWARE_UPDATE, 10426, "joint" _PH1_ " error: firmware update failed", "suggest...", 0x6100) \ + _D(EX_JOINT_EC_FLASH_OP, 10427, "joint" _PH1_ " error: flash operation failed", "suggest...", 0x6101) \ + _D(EX_JOINT_EC_MU_SAVE, 10428, "joint" _PH1_ " error: multi-turn data error", "suggest...", 0x6102) \ + _D(EX_JOINT_EC_DEMADATA_LOST, 10429, "joint" _PH1_ " error: calibration zero point data lost", "suggest...", 0x6103) \ + _D(EX_JOINT_EC_PARAMETER, 10430, "joint" _PH1_ " error: parameter error", "suggest...", 0x6200) \ + _D(EX_JOINT_EC_UVW_LOGIC, 10431, "joint" _PH1_ " error: hall signal fault", "suggest...", 0x7001) \ + _D(EX_JOINT_EC_UVW_ABZ, 10432, "joint" _PH1_ " error: incremental encoder fault", "suggest...", 0x7002) \ + _D(EX_JOINT_EC_ENC_Z_LOST, 10433, "joint" _PH1_ " error: encoder Z signal lost", "suggest...", 0x7305) \ + _D(EX_JOINT_EC_ENC_POLLUTE, 10434, "joint" _PH1_ " error: encoder pollution", "suggest...", 0x7004) \ + _D(EX_JOINT_EC_ENC_CALI, 10435, "joint" _PH1_ " error: encoder calibration failed", "suggest...", 0x7005) \ + _D(EX_JOINT_EC_MT_ABS_DATA, 10436, "joint" _PH1_ " error: multi-turn absolute data error", "suggest...", 0x7006) \ + _D(EX_JOINT_EC_ENC_TYPE_INFO, 10437, "joint" _PH1_ " error: encoder type identified and saved", "suggest...", 0x7007) \ + _D(EX_JOINT_EC_ENC_TYPE_ERROR, 10438, "joint" _PH1_ " error: encoder type error", "suggest...", 0x7008) \ + _D(EX_JOINT_EC_ENC_VERIFY, 10439, "joint" _PH1_ " error: encoder verification failed", "suggest...", 0x7009) \ + _D(EX_JOINT_EC_DUAL_ENC_ERROR, 10440, "joint" _PH1_ " error: dual encoder deviation too large", "suggest...", 0x700A) \ + _D(EX_JOINT_EC_DUAL_ENC_EANGLE, 10441, "joint" _PH1_ " error: dual encoder electrical angle deviation too large", "suggest...", 0x700B) \ + _D(EX_JOINT_EC_OBJECT_DICT_ERROR, 10442, "joint" _PH1_ " error: object dictionary data error", "suggest...", 0x700C) \ + _D(EX_JOINT_EC_MOTOR_STALL, 10443, "joint" _PH1_ " error: motor stall protection", "suggest...", 0x7121) \ + _D(EX_JOINT_EC_ABS_ENC_LOW_VOLT, 10444, "joint" _PH1_ " error: absolute encoder low voltage", "suggest...", 0x7385) \ + _D(EX_JOINT_EC_MT_BATTERY_LOW, 10445, "joint" _PH1_ " error: multi-turn battery low voltage", "suggest...", 0x7386) \ + _D(EX_JOINT_EC_POS_CMD, 10446, "joint" _PH1_ " error: position command discontinuous", "suggest...", 0x8001) \ + _D(EX_JOINT_EC_POS_OVER_LIMIT, 10447, "joint" _PH1_ " error: position over limit", "suggest...", 0x8002) \ + _D(EX_JOINT_EC_COMM_PROTO, 10448, "joint" _PH1_ " error: communication protocol layer error", "suggest...", 0x8003) \ + _D(EX_JOINT_EC_GRAVITY_PARA_WARNING, 10449, "joint" _PH1_ " error: gravity compensation parameter invalid", "suggest...", 0x8004) \ + _D(EX_JOINT_EC_GRAVITY_COMPENSATE_ERROR, 10450, "joint" _PH1_ " error: gravity compensation value sudden change", "suggest...", 0x8005) \ + _D(EX_JOINT_EC_LOW_RIGIDITY, 10451, "joint" _PH1_ " error: collision soft float abnormal", "suggest...", 0x8006) \ + _D(EX_JOINT_EC_POS_CMD_WARNING, 10452, "joint" _PH1_ " error: position command unchanged during motion", "suggest...", 0x8007) \ + _D(EX_JOINT_EC_SLAVE_COMM, 10453, "joint" _PH1_ " error: master-slave MCU communication fault", "suggest...", 0x8008) \ + _D(EX_JOINT_EC_POS_ERR, 10454, "joint" _PH1_ " error: position following error too large", "suggest...", 0x8009) \ + _D(EX_JOINT_EC_DUAL_POS_ERR, 10455, "joint" _PH1_ " error: dual servo position sync error too large", "suggest...", 0x800A) \ + _D(EX_JOINT_EC_DUAL_COMM_ERR, 10456, "joint" _PH1_ " error: dual servo communication", "suggest...", 0x800B) \ + _D(EX_JOINT_EC_CAN_BUSOFF, 10457, "joint" _PH1_ " error: CAN bus-off warning", "suggest...", 0x800C) \ + _D(EX_JOINT_EC_SYNC_SNAKE, 10458, "joint" _PH1_ " error: sync frame jitter warning", "suggest...", 0x800D) \ + _D(EX_JOINT_EC_SYNC_DISCON, 10459, "joint" _PH1_ " error: sync frame discontinuous warning", "suggest...", 0x800E) \ + _D(EX_JOINT_EC_RPDO_LOST, 10460, "joint" _PH1_ " error: RPDO lost warning", "suggest...", 0x800F) \ + _D(EX_JOINT_EC_RPDO_MANY, 10461, "joint" _PH1_ " error: multiple RPDO in one sync cycle warning", "suggest...", 0x8010) \ + _D(EX_JOINT_EC_GRAVITY_LOST, 10462, "joint" _PH1_ " error: gravity compensation value lost", "suggest...", 0x8011) \ + _D(EX_JOINT_EC_MAININT_TIME_WARN, 10463, "joint" _PH1_ " error: servo main interrupt runtime warning", "suggest...", 0x8012) \ + _D(EX_JOINT_EC_MAININT_TIME_ERROR, 10464, "joint" _PH1_ " error: servo main interrupt runtime error", "suggest...", 0x8013) \ + _D(EX_JOINT_EC_SPDINT_TIME_WARN, 10465, "joint" _PH1_ " error: servo speed loop interrupt runtime warning", "suggest...", 0x8014) \ + _D(EX_JOINT_EC_SPDINT_TIME_ERROR, 10466, "joint" _PH1_ " error: servo speed loop interrupt runtime error", "suggest...", 0x8015) \ + _D(EX_JOINT_EC_POS_CMD_JUMP_WARNING, 10467, "joint" _PH1_ " error: position command sudden jump during motion", "suggest...", 0x8016) \ + _D(EX_JOINT_EC_SYNC_TIMCOARSE, 10468, "joint" _PH1_ " error: clock sync compensation status", "suggest...", 0x8017) \ + _D(EX_JOINT_EC_ENC_Z_CNTS_ERR, 10469, "joint" _PH1_ " error: incremental encoder Z signal or CNTS abnormal", "suggest...", 0x8018) \ + _D(EX_JOINT_EC_SLAVE_OVER_CURRENT, 10470, "joint" _PH1_ " error: slave MCU detected motor phase current over safe threshold", "suggest...", 0x8019) \ + _D(EX_JOINT_EC_SLAVE_OVER_VOLTAGE, 10471, "joint" _PH1_ " error: slave MCU detected DC bus voltage over upper threshold", "suggest...", 0x801A) \ + _D(EX_JOINT_EC_SLAVE_UNDER_VOLTAGE, 10472, "joint" _PH1_ " error: slave MCU detected DC bus voltage below lower threshold", "suggest...", 0x801B) \ + _D(EX_JOINT_EC_SLAVE_POS_ERR, 10473, "joint" _PH1_ " error: slave MCU detected master-slave motor position deviation out of range", "suggest...", 0x801C) \ + _D(EX_JOINT_EC_SLAVE_SPEED_ERR, 10474, "joint" _PH1_ " error: slave MCU detected master-slave motor speed deviation out of range", "suggest...", 0x801D) \ + _D(EX_JOINT_EC_SLAVE_TRACE_ERR, 10475, "joint" _PH1_ " error: slave MCU detected position following error out of control range", "suggest...", 0x801E) \ + _D(EX_JOINT_EC_SLAVE_ABS_ERR, 10476, "joint" _PH1_ " error: slave MCU detected absolute encoder feedback abnormal", "suggest...", 0x801F) \ + _D(EX_JOINT_EC_SLAVE_ADC_ZERO_OFFSET, 10477, "joint" _PH1_ " error: slave MCU detected current sampling zero offset out of calibration range", "suggest...", 0x8020) \ + _D(EX_JOINT_EC_SLAVE_ENC_POLLUTE, 10478, "joint" _PH1_ " error: slave MCU detected encoder signal quality degradation", "suggest...", 0x8021) \ + _D(EX_JOINT_EC_SLAVE_ENC_Z_LOST, 10479, "joint" _PH1_ " error: slave MCU detected encoder Z reference signal lost", "suggest...", 0x8022) \ + _D(EX_JOINT_EC_SLAVE_COMM_OVER_TM, 10480, "joint" _PH1_ " error: slave MCU detected master-slave communication timeout", "suggest...", 0x8023) \ + _D(EX_JOINT_EC_SLAVE_TRQ_ERR, 10481, "joint" _PH1_ " error: slave MCU detected master-slave motor torque deviation out of range", "suggest...", 0x8024) \ + _D(EX_JOINT_EC_BRAKE_TYPE_ERR, 10482, "joint" _PH1_ " error: brake type config mismatch with hardware", "suggest...", 0x8025) \ + _D(EX_JOINT_EC_PHASE_ALIGN, 10483, "joint" _PH1_ " error: phase alignment failed", "suggest...", 0xFF02) \ + _D(EX_JOINT_EC_POS_OVER_LIMIT_WARNING, 10484, "joint" _PH1_ " error: position over limit", "suggest...", 0x8026) \ + _D(EX_JOINT_EC_PHASE_ALIGN_WARNING, 10485, "joint" _PH1_ " error: phase alignment warning", "suggest...", 0xFF03) \ + _D(EX_JOINT_EC_TASK_STACK_SHORTAGE, 10486, "joint" _PH1_ " error: task stack insufficient", "suggest...", 0xFF04) \ + _D(EX_JOINT_EC_TASK_STACK_OVERFLOW, 10487, "joint" _PH1_ " error: task stack overflow", "suggest...", 0xFF05) \ + _D(EX_JOINT_EC_SERVO_STEP, 10488, "joint" _PH1_ " servo process step", "For information only. No action required.", 0x6105) \ + _D(EX_JOINT_EC_UNKNOWN, 10800, "joint" _PH1_ " error: unknown error", "suggest...", 0xFFFF) + +#define EXT_AXIS_ERRORS \ + _D(EXT_AXIS_ERR_COMMON, 11001, "ext axis" _PH1_ " error: common", "Check communication with ext axis drive.") \ + _D(EXT_AXIS_ERR_OVER_CURRENT, 11002, "ext axis" _PH1_ " error: over current", "Check wiring/short circuit; reboot; if repeated replace drive/motor.") \ + _D(EXT_AXIS_ERR_OVER_VOLTAGE, 11003, "ext axis" _PH1_ " error: over voltage", "Check DC supply, regen, energy eater; reboot.") \ + _D(EXT_AXIS_ERR_LOW_VOLTAGE, 11004, "ext axis" _PH1_ " error: low voltage", "Check DC supply and cabling; reboot.") \ + _D(EXT_AXIS_ERR_OVER_TEMP, 11005, "ext axis" _PH1_ " error: over temperature", "Check environment/cooling; reboot.") \ + _D(EXT_AXIS_ERR_HALL, 11006, "ext axis" _PH1_ " error: hall fault", "Check hall sensor and motor cabling.") \ + _D(EXT_AXIS_ERR_ENCODER, 11007, "ext axis" _PH1_ " error: encoder fault", "Check encoder connection/cable/noise.") \ + _D(EXT_AXIS_ERR_ABS_ENCODER, 11008, "ext axis" _PH1_ " error: absolute encoder fault", "Check abs encoder power/cable; reboot.") \ + _D(EXT_AXIS_ERR_CUR_CALIB, 11009, "ext axis" _PH1_ " error: current calibration fault", "Reboot; check current sensing circuit.") \ + _D(EXT_AXIS_ERR_Q_CURRENT, 11010, "ext axis" _PH1_ " error: current detect fault", "Reboot; check current sensing circuit.") \ + _D(EXT_AXIS_ERR_ENC_POLL, 11011, "ext axis" _PH1_ " error: encoder pollution", "Check encoder contamination/noise; improve shielding.") \ + _D(EXT_AXIS_ERR_ENC_Z_SIGNAL, 11012, "ext axis" _PH1_ " error: encoder Z signal fault", "Check encoder Z channel and wiring.") \ + _D(EXT_AXIS_ERR_ENC_CAL, 11013, "ext axis" _PH1_ " error: encoder calibrate invalid", "Redo calibration; check encoder.") \ + _D(EXT_AXIS_ERR_IMU, 11014, "ext axis" _PH1_ " error: IMU fault", "Check IMU sensor and connection.") \ + _D(EXT_AXIS_ERR_TEMP_SENSOR, 11015, "ext axis" _PH1_ " error: temperature sensor fault", "Check temp sensor wiring; reboot.") \ + _D(EXT_AXIS_ERR_ECAT_BUS, 11016, "ext axis" _PH1_ " error: EtherCAT bus error", "Check EtherCAT cabling/topology/sync; reboot master/drive.") \ + _D(EXT_AXIS_ERR_ECAT_CONFIG, 11017, "ext axis" _PH1_ " error: EtherCAT config/ESI/SM/PDO fault", "Check ESI, Mailbox/SM/PDO mapping, vendor/product/revision match.") \ + _D(EXT_AXIS_ERR_ECAT_SYNC, 11018, "ext axis" _PH1_ " error: EtherCAT sync/frame/period fault", "Check DC sync, cycle time, frame loss; verify NIC/IRQ affinity.") \ + _D(EXT_AXIS_ERR_SYS_CUR, 11019, "ext axis" _PH1_ " error: system current fault", "Check current loop and load; reboot.") \ + _D(EXT_AXIS_ERR_SYS_POS, 11020, "ext axis" _PH1_ " error: position out of range", "Check encoder/scale/limits; reboot.") \ + _D(EXT_AXIS_ERR_OVER_SPEED, 11021, "ext axis" _PH1_ " error: over speed", "Check command limits and tuning parameters.") \ + _D(EXT_AXIS_ERR_OVER_ACC, 11022, "ext axis" _PH1_ " error: over acceleration", "Reduce acceleration/jerk; check tuning.") \ + _D(EXT_AXIS_ERR_FOLLOW_ERROR, 11023, "ext axis" _PH1_ " error: following error", "Check gains, load, saturation; verify feedback.") \ + _D(EXT_AXIS_ERR_TAG_POS_OVER, 11024, "ext axis" _PH1_ " error: target position out of range", "Check target limits and homing.") \ + _D(EXT_AXIS_ERR_TAG_SPEED_OVER, 11025, "ext axis" _PH1_ " error: target speed out of range", "Clamp speed; check profile settings.") \ + _D(EXT_AXIS_ERR_TAG_CURRENT_OVER, 11026, "ext axis" _PH1_ " error: target current out of range", "Clamp current/torque; check load.") \ + _D(EXT_AXIS_ERR_COLLISION, 11027, "ext axis" _PH1_ " error: collision", "Remove obstruction; check torque/force limits.") \ + _D(EXT_AXIS_ERR_ADC_ZERO_OFFSET, 11028, "ext axis" _PH1_ " error: ADC zero offset", "Reboot; check ADC/current sensor offset.") \ + _D(EXT_AXIS_ERR_IPM_NTC, 11029, "ext axis" _PH1_ " error: IPM NTC fault", "Check power module temperature sensing.") \ + _D(EXT_AXIS_ERR_SHORT_CIRCUIT, 11030, "ext axis" _PH1_ " error: short circuit", "Check motor phase wiring; insulation test.") \ + _D(EXT_AXIS_ERR_MOTOR_STALL, 11031, "ext axis" _PH1_ " error: motor stall", "Check mechanical jam/load; reduce accel; reboot.") \ + _D(EXT_AXIS_ERR_ABS_MULTITURN, 11032, "ext axis" _PH1_ " error: abs encoder multiturn fault", "Check abs encoder battery/params; reboot.") \ + _D(EXT_AXIS_ERR_PHASE_LOST, 11033, "ext axis" _PH1_ " error: motor phase lost", "Check phase wiring/connector; measure continuity.") \ + _D(EXT_AXIS_ERR_BRAKE, 11034, "ext axis" _PH1_ " error: brake fault", "Check brake wiring/power; verify brake release.") \ + _D(EXT_AXIS_ERR_REDUCER_OVER_TEMP, 11035, "ext axis" _PH1_ " error: reducer over temperature", "Check reducer temperature/cooling.") \ + _D(EXT_AXIS_ERR_REDUCER_NTC, 11036, "ext axis" _PH1_ " error: reducer NTC fault", "Check reducer temperature sensor.") \ + _D(EXT_AXIS_ERR_FIRMWARE_UPDATE, 11037, "ext axis" _PH1_ " error: firmware update fault", "Retry update; check power stability.") \ + _D(EXT_AXIS_ERR_FLASH_OP, 11038, "ext axis" _PH1_ " error: flash operation fault", "Retry; if persistent replace drive.") \ + _D(EXT_AXIS_ERR_EXT_ABS_ENC, 11039, "ext axis" _PH1_ " error: motor-side abs encoder comm fault", "Check external abs encoder link/power.") \ + _D(EXT_AXIS_ERR_DRIVE_FAULT, 11040, "ext axis" _PH1_ " error: drive fault", "Check drive alarm code; reboot; replace if repeated.") \ + _D(EXT_AXIS_ERR_OVERLOAD, 11041, "ext axis" _PH1_ " error: overload", "Reduce load; check mechanics and tuning.") \ + _D(EXT_AXIS_ERR_HARDWARE_LIMIT, 11042, "ext axis" _PH1_ " error: hardware limit triggered", "Move away from limit; check limit switch.") \ + _D(EXT_AXIS_ERR_SERVO_MODE_TIMEOUT, 11043, "ext axis" _PH1_ " error: switch servo mode timeout", "Check mode transition and comm; reboot.") \ + _D(EXT_AXIS_ERR_UVW_ABZ, 11044, "ext axis" _PH1_ " error: UVW/ABZ fault", "Check phase/encoder signals wiring.") \ + _D(EXT_AXIS_ERR_BATTERY_LOW, 11045, "ext axis" _PH1_ " error: battery low", "Replace encoder battery; reboot.") \ + _D(EXT_AXIS_ERR_PHASE_ALIGN, 11046, "ext axis" _PH1_ " error: phase align fail", "Redo phase alignment; check motor params.") \ + _D(EXT_AXIS_ERR_POS_DISCONTINUOUS, 11047, "ext axis" _PH1_ " error: position command discontinuous", "Check trajectory generation and limits.") \ + _D(EXT_AXIS_ERR_POS_INIT, 11048, "ext axis" _PH1_ " error: position initialization failure", "Check encoder init/homing procedure.") \ + _D(EXT_AXIS_ERR_TORQUE_SENSOR, 11049, "ext axis" _PH1_ " error: torque sensor fault", "Check torque sensor wiring/calibration.") \ + _D(EXT_AXIS_ERR_ABS_ENC_LOW_VOLT, 11050, "ext axis" _PH1_ " error: abs encoder low voltage", "Check encoder supply voltage and cable.") \ + _D(EXT_AXIS_ERR_OFFLINE, 11051, "ext axis" _PH1_ " error: ext axis offline", "Check hardware and axis id; check EtherCAT state.") \ + _D(EXT_AXIS_ERR_BOOTLOADER, 11052, "ext axis" _PH1_ " error: ext axis in bootloader", "Retry firmware update.") \ + _D(EXT_AXIS_ERR_SLAVE_OFFLINE, 11053, "ext axis slave" _PH1_ " error: slave offline", "Check slave hardware and id.") \ + _D(EXT_AXIS_ERR_SLAVE_BOOTLOADER, 11054, "ext axis slave" _PH1_ " error: slave in bootloader", "Retry firmware update.") \ + _D(EXT_AXIS_ERR_EEPROM, 11055, "ext axis" _PH1_ " error: EEPROM/param store fault", "Check EEPROM/parameter storage; power cycle.") \ + _D(EXT_AXIS_ERR_PARAM_CONFIG, 11056, "ext axis" _PH1_ " error: parameter/config fault", "Verify parameter set; restore defaults if needed.") \ + _D(EXT_AXIS_ERR_STO, 11057, "ext axis" _PH1_ " error: STO safety fault", "Check STO wiring/safety chain; reset safety.") \ + _D(EXT_AXIS_ERR_ENCRYPT_CHIP, 11058, "ext axis" _PH1_ " error: encrypt chip/key fault", "Check encryption chip/keys/firmware compatibility.") \ + _D(EXT_AXIS_ERR_BRAKE_RES_OVERLOAD, 11059, "ext axis" _PH1_ " error: brake resistor overload", "Check brake resistor/regen circuit; duty cycle.") \ + _D(EXT_AXIS_ERR_POWER_LINE_OPEN, 11060, "ext axis" _PH1_ " error: motor power line open", "Check motor power cable continuity/connector.") \ + _D(EXT_AXIS_ERR_HOMING, 11061, "ext axis" _PH1_ " error: homing fault", "Check homing sensor/origin procedure; retry.") \ + _D(EXT_AXIS_ERR_TUNING_FAIL, 11062, "ext axis" _PH1_ " error: tuning fail", "Redo tuning; reduce resonance; check mechanics.") \ + _D(EXT_AXIS_ERR_INERTIA_ID_FAIL, 11063, "ext axis" _PH1_ " error: inertia identification fail", "Check load; redo inertia ID; adjust conditions.") \ + _D(EXT_AXIS_ERR_FLYAWAY, 11064, "ext axis" _PH1_ " error: flyaway", "Emergency stop; check feedback polarity/scale; inspect drive params.") \ + _D(EXT_AXIS_ERR_SPEED_PULSE_OVER, 11065, "ext axis" _PH1_ " error: feedback pulse overspeed", "Check encoder feedback and scaling; reduce speed.") \ + _D(EXT_AXIS_ERR_CTRL_LOOP, 11066, "ext axis" _PH1_ " error: control loop/timeout fault", "Check sampling/current loop/comm timeout; reboot.") + +#define TOOL_ERRORS \ + _D(TOOL_FLASH_VERIFY_FAILED, 40001, "Flash write verify failed", "suggest...") \ + _D(TOOL_PROGRAM_CRC_FAILED, 40002, "Program flash checksum failed during bootloading", "suggest...") \ + _D(TOOL_PROGRAM_CRC_FAILED2, 40003, "Program flash checksum failed at runtime", "suggest...") \ + _D(TOOL_ID_UNDIFINED, 40004, "Tool ID is undefined", "suggest...") \ + _D(TOOL_ILLEGAL_BL_CMD, 40005, "Illegal bootloader command", "suggest...") \ + _D(TOOL_FW_WRONG, 40006, "Wrong firmware at the joint", "suggest...") \ + _D(TOOL_HW_INVALID, 40007, "Invalid hardware revision", "suggest...") \ + _D(TOOL_SHORT_CURCUIT_H, 40011, "Short circuit detected on Digital Output: " _PH1_ " high side", "suggest...") \ + _D(TOOL_SHORT_CURCUIT_L, 40012, "Short circuit detected on Digital Output: " _PH1_ " low side", "suggest...") \ + _D(TOOL_AVERAGE_CURR_HIGH, 40013, "10 second Average tool IO Current of " _PH1_ " A is outside of the allowed range.", "suggest...") \ + _D(TOOL_POWER_PIN_OVER_CURR, 40014, "Current of " _PH1_ " A on the POWER pin is outside of the allowed range.", "suggest...") \ + _D(TOOL_DOUT_PIN_OVER_CURR, 40015, "Current of " _PH1_ " A on the Digital Output pins is outside of the allowed range.", "suggest...") \ + _D(TOOL_GROUND_PIN_OVER_CURR, 40016, "Current of " _PH1_ " A on the ground pin is outside of the allowed range.", "suggest...") \ + _D(TOOL_RX_FRAMING, 40021, "RX framing error", "suggest...") \ + _D(TOOL_RX_PARITY, 40022, "RX Parity error", "suggest...") \ + _D(TOOL_48V_LOW, 40031, "48V input is too low", "suggest...") \ + _D(TOOL_48V_HIGH, 40032, "48V input is too high", "suggest...") \ + _D(TOOL_ERR_OFFLINE, 40033, "tool error: tool may be offline", "(a) Check tool's hardware. (b) Check joint's id.") \ + _D(TOOL_ERR_BOOTLOADER, 40034, "tool error: The tool is in bootloader mode. Retry firmware update. ", "suggest...") + +#define EX_TOOL_ERRORS \ + _D(EX_TOOL_EC_LOW_VOLTAGE, 40101, "tool error: low voltage", "check tool power supply voltage") \ + _D(EX_TOOL_EC_FORCESENSOR_COMM, 40102, "tool error: external force sensor communication error", "check external force sensor communication connection") \ + _D(EX_TOOL_485_SENDFULL_COMM, 40103, "tool error: 485 transparent transmission buffer full", "check 485 communication load and transmission frequency") \ + _D(EX_TOOL_FORCESENSOR_FILTER_ZERO, 40104, "tool error: force sensor filter parameter is zero", "check force sensor filter parameter configuration") \ + _D(EX_TOOL_EC_UNKNOWN, 40200, "tool error: unknown error", "check controller logs and hardware status") + +#define PEDSTRAL_ERRORS \ + _D(PKG_LOST, 50001, "Lost package from pedestal", "suggest...") \ + _D(PEDSTRAL_OFFLINE, 50002, "pedestal error: pedestal may be offline", "(a) Check pedestal's hardware. (b) Check pedestal's id.") \ + _D(PEDESTAL_ERR_BOOTLOADER, 50003, "pedestal error: The pedestal is in bootloader mode. Retry firmware update. ", "suggest...") + +#define EX_PEDSTRAL_ERRORS \ + _D(EX_BASE_EC_LOW_VOLTAGE, 50101, "pedstral error: low voltage", "check power supply voltage and battery status") \ + _D(EX_BASE_EC_OVER_TEMPERATURE_RES, 50102, "pedstral error: resistor over temperature", "check braking resistor temperature and cooling condition") \ + _D(EX_BASE_EC_OVER_TARGET_BRAKE_OPEN_VOLT, 50103, "pedstral error: input voltage close to or exceeds regenerative brake activation voltage", "check input power voltage and regenerative braking configuration") \ + _D(EX_BASE_EC_RES_BREAKAGE, 50104, "pedstral error: brake resistor breakage", "check whether the brake resistor is disconnected or damaged") \ + _D(EX_BASE_EC_IMU_CALIBRATE, 50105, "pedstral error: IMU calibration required", "perform IMU calibration according to maintenance procedure") \ + _D(EX_BASE_EC_TEMP_SENSOR_SHORT, 50106, "pedstral error: temperature sensor short circuit", "check temperature sensor wiring and solder joints for short circuit") \ + _D(EX_BASE_EC_TEMP_SENSOR_BREAK, 50107, "pedstral error: temperature sensor open circuit", "check temperature sensor connection and cable continuity") \ + _D(EX_BASE_EC_96V_INSTANT_OVER_VOLTAGE, 50108, "pedstral error: 96V instantaneous over voltage after regenerative braking", "check regenerative braking behavior and power bus voltage") \ + _D(EX_BASE_EC_UNKNOWN, 50200, "pedstral error: unknown error", "check controller logs and hardware status") + +#define SAFETY_INTERFACE_BOARD_ERRORS \ + _D(IFB_ERR_ROBOTTYPE, 20001, "Robot error type!", "suggest...") \ + _D(IFB_ERR_ADXL_SENS, 20002, "Base Acceleration sensor error!", "suggest...") \ + _D(IFB_ERR_EN_LINE, 20003, "Encoder line error!", "suggest...") \ + _D(IFB_ERR_ENTER_HDG_MODE, 20004, "Robot enter handguide mode!", "suggest...") \ + _D(IFB_ERR_EXIT_HDG_MODE, 20005, "Robot exit handguide mode!", "suggest...") \ + _D(IFB_ERR_MAC_DATA_BREAK, 20006, "MAC data break!", "suggest...") \ + _D(IFB_ERR_DRV_FIRMWARE_VERSION, 20007, "Motor driver firmware version error!", "suggest...") \ + _D(INIT_ERR_EN_DRV, 20008, "Motor driver enable failed!", "suggest...") \ + _D(INIT_ERR_EN_AUTO_BACK, 20009, "Motor driver enable auto back failed!", "suggest...") \ + _D(INIT_ERR_EN_CUR_LOOP, 20010, "Motor driver enable current loop failed!", "suggest...") \ + _D(INIT_ERR_SET_TAG_CUR, 20011, "Motor driver set target current failed!", "suggest...") \ + _D(INIT_ERR_RELEASE_BRAKE, 20012, "Motor driver release brake failed!", "suggest...") \ + _D(INIT_ERR_EN_POS_LOOP, 20013, "Motor driver enable postion loop failed!", "suggest...") \ + _D(INIT_ERR_SET_MAX_ACC, 20014, "Motor set max accelerate failed!", "suggest...") \ + _D(SAFETY_ERR_PROTECTION_STOP_TIMEOUT, 20015, "Protective stop timeout!", "suggest...") \ + _D(SAFETY_ERR_REDUCED_MODE_TIMEOUT, 20016, "Reduced mode timeout!", "suggest...") \ + _D(SYS_ERR_MCU_COM, 20017, "Robot system error: mcu communication error!", "suggest...") \ + _D(SYS_ERR_RS485_COM, 20018, "Robot system error: RS485 communication error!", "suggest...") \ + _D(IFB_ERR_DISCONNECTED, 20019, "Interface board may be disconnected. Please check connection between IPC and Interface board.", "suggest...")\ + _D(IFB_ERR_PAYLOAD_ERROR, 20020, "Payload error.", "suggest...") \ + _D(IFB_OFFLINE, 20021, "ifaceboard error: ifaceboard may be offline", "(a) Check ifaceboard's hardware. (b) Check ifaceboard's id.") \ + _D(IFB_ERR_BOOTLOADER, 20022, "ifaceboard error: The ifaceboard is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(IFB_SLAVE_OFFLINE, 20023, "interface slave board error: interface slave board may be offline", "(a) Check interface slave board's hardware. (b) Check interface slave board's id.") \ + _D(IFB_SLAVE_ERR_BOOTLOADER, 20024, "interface slave board error: The interface slave board is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(IFB_TOOL_ERR_ADXL_SENS, 20025, "Tool Acceleration sensor error!", "suggest...") \ + _D(HANDLE_OFFLINE, 20026, "handle error: handle may be offline", "(a) Check handle's hardware. (b) Check handle's id.") \ + _D(HANDLE_ERR_BOOTLOADER, 20027, "handle error: The handle is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(IFB_POWERLOSS_OFFLINE, 20028, "interface powerloss board error: interface powerloss board may be offline", "(a) Check interface powerloss board's hardware. (b) Check interface powerloss board's id.") \ + _D(IFB_POWERLOSS_ERR_BOOTLOADER, 20029, "interface powerloss board error: The interface powerloss board is in bootloader mode. Retry firmware update. ", "suggest...") \ + _D(HANDLE_COMM_ERROR, 20030, "handle error: handle comm error", "(a) Check handle's hardware. (b) Check handle's id.") + +#define HARDWARE_INTERFACE_ERRORS \ + _D(HW_SCB_SETUP_FAILED, 60001, "Setup of Interface Board failed", "suggest...") \ + _D(HW_PKG_CNT_DISAGEE, 60002, "Packet counter disagreements", "suggest...") \ + _D(HW_SCB_DISCONNECT, 60003, "Connection to Interface Board lost", "suggest...") \ + _D(HW_SCB_PKG_LOST, 60004, "Package lost from Interface Board", "suggest...") \ + _D(HW_SCB_CONN_INIT_FAILED, 60005, "Ethernet connection initialization with Interface Board failed", "suggest...") \ + _D(HW_LOST_JOINT_PKG, 60006, "Lost package from joint " _PH1_ "", "suggest...") \ + _D(HW_LOST_TOOL_PKG, 60007, "Lost package from tool", "suggest...") \ + _D(HW_JOINT_PKG_CNT_DISAGREE, 60008, "Packet counter disagreement in packet from joint " _PH1_ "", "suggest...") \ + _D(HW_TOOL_PKG_CNT_DISAGREE, 60009, "Packet counter disagreement in packet from tool", "suggest...") \ + _D(HW_JOINTS_FAULT, 60011, "" _PH1_ " joint entered the Fault State", "suggest...") \ + _D(HW_JOINTS_VIOLATION, 60012, "" _PH1_ " joint entered the Violation State", "suggest...") \ + _D(HW_TP_FAULT, 60013, "Teach Pendant entered the Fault State", "suggest...") \ + _D(HW_TP_VIOLATION, 60014, "Teach Pendant entered the Violation State", "suggest...") \ + _D(HW_JOINT_MV_TOO_FAR, 60021, "" _PH1_ " joint moved too far before robot entered RUNNING State", "suggest...") \ + _D(HW_JOINT_STOP_NOT_FAST, 60022, "Joint Not stopping fast enough", "suggest...") \ + _D(HW_JOINT_MV_LIMIT, 60023, "Joint moved more than allowable limit", "suggest...") \ + _D(HW_FT_SENSOR_DATA_INVALID, 60024, "Force-Torque Sensor data invalid", "suggest...") \ + _D(HW_NO_FT_SENSOR, 60025, "Force-Torque sensor is expected, but it cannot be detected", "suggest...") \ + _D(HW_FT_SENSOR_NOT_CALIB, 60026, "Force-Torque sensor is detected but not calibrated", "suggest...") \ + _D(HW_RELEASE_BRAKE_FAILED, 60030, "Robot was not able to brake release, see log for details", "suggest...") \ + _D(HW_OVERCURR_SHUTDOWN, 60040, "Overcurrent shutdown", "suggest...") \ + _D(HW_ENERGEY_SURPLUS, 60050, "Energy surplus shutdown", "suggest...") \ + _D(HW_IDLE_POWER_HIGH, 60060, "Idle power consumption to high", "suggest...") \ + _D(HW_ENTER_COLLISION_TIMEOUT, 60071, "Enter collision stop procedure timeout", "suggest...") \ + _D(HW_POWERON_TIMEOUT, 60072, "Poweron robot timeout", "suggest...") \ + _D(HW_NO_NIC_FOUND, 60073, "No network cards found.", "suggest...") \ + _D(HW_IFB_NOT_FOUND, 60074, "No Interface Board found.", "suggest...") \ + _D(HW_IFB_BOOTLOAD, 60075, "The Interface Board is in bootloader mode. Update firmware firstly.", "suggest...") \ + _D(HW_TOOL_NOT_FOUND, 60076, "No Tool Board found.", "suggest...") \ + _D(HW_BASE_NOT_FOUND, 60077, "No Base Board found.", "suggest...") \ + _D(HW_BRINGUP_TIMEOUT, 60078, "Poweron robot timeout", "suggest...") \ + _D(HW_COLLISION_RECOVERY_FAILED, 60079, "Collision recovery failed", "suggest...") \ + _D(HW_TP_ENABLED, 60080, "Teach pendant enabled status changed to " _PH1_, "suggest...") + +// clang-format on + +// 定义硬件抽象层的错误代码 +#define HAL_ERRORS \ + JOINT_ERRORS \ + JOINT_EX_ERRORS \ + EXT_AXIS_ERRORS \ + SAFETY_INTERFACE_BOARD_ERRORS \ + TOOL_ERRORS \ + EX_TOOL_ERRORS \ + PEDSTRAL_ERRORS \ + EX_PEDSTRAL_ERRORS \ + HARDWARE_INTERFACE_ERRORS + +#endif // AUBO_SDK_JOINT_ERROR_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/rtm_error.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/rtm_error.h new file mode 100644 index 00000000..9471a1a1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/rtm_error.h @@ -0,0 +1,187 @@ +/** @file rtm_error.h + * @brief 运行时错误码 + */ +#ifndef AUBO_SDK_RTM_ERROR_H +#define AUBO_SDK_RTM_ERROR_H + +// clang-format off + +#define RTM_ERRORS \ + _D(ROBOT_BE_PULLING, 30001, "Something is pulling the robot.","Please check TCP configuration,payload and mounting settings") \ + _D(PSTOP_ELBOW_POS, 30002, "Protective Stop: Elbow position close to safety plane limits.","Please move robot Elbow joint away from the safety plane") \ + _D(PSTOP_STOP_TIME, 30003, "Protective Stop: Exceeding user safety settings for stopping time.","(a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set") \ + _D(PSTOP_STOP_DISTANCE, 30004, "Protective Stop: Exceeding user safety settings for stopping distance.","(a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set") \ + _D(PSTOP_CLAMP, 30005, "Protective Stop: Danger of clamping between the Robot’s lower arm and tool.","(a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set") \ + _D(PSTOP_POS_LIMIT, 30006, "Protective Stop: Position close to joint limits", "suggest...") \ + _D(PSTOP_ORI_LIMIT, 30007, "Protective Stop: Tool orientation close to limits", "suggest...") \ + _D(PSTOP_PLANE_LIMIT, 30008, "Protective Stop: Position close to safety plane limits", "suggest...") \ + _D(PSTOP_POS_DEVIATE, 30009, "Protective Stop: Position deviates from path", "Check payload, center of gravity and acceleration settings.") \ + _D(JOINT_CHK_PAYLOAD, 30010, "Joint " _PH1_ ": Check payload, center of gravity and acceleration settings. Log screen may contain additional information.", "suggest...") \ + _D(PSTOP_SINGULARITY, 30011, "Protective Stop: Position in singularity.","Please use MoveJ or change the motion") \ + _D(PSTOP_CANNOT_MAINTAIN, 30012, "Protective Stop: Robot cannot maintain its position, check if payload is correct", "suggest...") \ + _D(PSTOP_WRONG_PAYLOAD, 30013, "Protective Stop: Wrong payload or mounting detected, or something is pushing the robot when entering Freedrive mode","Verify that the TCP configuration and mounting in the used installation is correct") \ + _D(PSTOP_JOINT_COLLISION, 30014, "Protective Stop: Collision detected by joint " _PH1_, "Make sure no objects are in the path of the robot and resume the program") \ + _D(PSTOP_POS_DISAGREE, 30015, "Protective stop: The robot was powered off last time due to a joint position disagreement."," (a) Verify that the robot position in the 3D graphics matches the real robot, to ensure that the encoders function before releasing the brakes. Stand back and monitor the robot performing its first program cycle as expected. (b) If the position is not correct, the robot must be repaired. In this case, click Power Off Robot. (c) If the position is correct, please tick the check box below the 3D graphics and click Robot Position Verified") \ + _D(TARGET_JOINT_SPEED_EXCEED, 30016, "Target joint speed exceed limits", "suggest...") \ + _D(TARGET_POS_SUDDEN_CHG, 30017, "Sudden change in target position", "suggest...") \ + _D(SUDDEN_STOP, 30018, "Sudden stop."," To abort a motion, use \"stopj\" or \"stopl\" script commands to generate a smooth deceleration before using \"wait\". Avoid aborting motions between waypoints with blend”") \ + _D(ROBOT_STOP_ABNORMAL, 30019, "Robot has not stopped in the allowed reaction and braking time", "suggest...") \ + _D(PROG_INVALID_SETP, 30020, "Robot program resulted in invalid setpoint.", "Please review waypoints in the program") \ + _D(BLEND_INVALID_SETP, 30021, "Blending failed and resulted in an invalid setpoint.", "Try changing the blend radius or contact technical support") \ + _D(APPROACH_SINGULARITY, 30022, "Robot approaching singularity – Acceleration threshold failed.","Review waypoints in the program, try using MoveJ instead of MoveL in the position close to singularity") \ + _D(TSPEED_UNMATCH_POS, 30023, "Target speed does not match target position", "suggest...") \ + _D(INCONSIS_TPOS_SPD, 30024, "Inconsistency between target position and speed", "suggest...") \ + _D(JOINT_TSPD_UNMATCH_POS, 30025, "Target joint speed does not match target joint position change – Joint " _PH1_ "", "suggest...") \ + _D(FIELDBUS_INPUT_DISCONN, 30026, "Fieldbus input disconnected.","Please check fieldbus connections (RTDE, ModBus, EtherNet/IP and Profinet) or disable the fieldbus in the installation. Check RTDE watchdog feature. Check if a URCap is using this feature.") \ + _D(OPMODE_CHANGED, 30027, "Operational mode changed: " _PH1_ "", "suggest...") \ + _D(NO_KIN_CALIB, 30028, "No Kinematic Calibration found (calibration.conf file is either corrupt or missing).","A new kinematics calibration may be needed if the robot needs to improve its kinematics, otherwise, ignore this message)") \ + _D(KIN_CALIB_UNMATCH_JOINT, 30029, "Kinematic Calibration for the robot does not match the joint(s).", "If moving a program from a different robot to this one, rekinematic calibrate the second robot to improve kinematics, otherwise ignore this message.") \ + _D(KIN_CALIB_UNMATCH_ROBOT, 30030, "Kinematic Calibration does not match the robot.","Please check if the serial number of the robot arm matches the Control Box") \ + _D(JOINT_OFFSET_CHANGED, 30031, "Large movement of the robot detected while it was powered off. The joints were moved while it was powered off, or the encoders do not function", "suggest...") \ + _D(OFFSET_CHANGE_HIGH, 30032, "Change in offset is too high", "suggest...") \ + _D(JOINT_SPEED_LIMIT, 30033, "Close to joint speed safety limit.", "Review program speed and acceleration") \ + _D(TOOL_SPEED_LIMIT, 30034, "Close to tool speed safety limit.", "Review program speed and acceleration") \ + _D(MOMENTUM_LIMIT, 30035, "Close to momentum safety limit.", "Review program speed and acceleration") \ + _D(ROBOT_MV_STOP, 30036, "Robot is moving when in Stop Mode", "suggest...") \ + _D(HAND_PROTECTION, 30037, "Hand protection: Tool is too close to the lower arm: " _PH1_ " meter.","(a) Check wrist position. (b) Verify mounting (c) Do a Complete rebooting sequence (d) Update software (e) Contact your local AUBO Robots service provider for assistance") \ + _D(WRONG_SAFETYMODE, 30038, "Wrong safety mode: " _PH1_, "suggest...") \ + _D(SAFETYMODE_CHANGED, 30039, "Safety mode changed: " _PH1_, "suggest...") \ + _D(JOINT_ACC_LIMIT, 30040, "Close to joint acceleration safety limit", "suggest...") \ + _D(TOOL_ACC_LIMIT, 30041, "Close to tool acceleration safety limit", "suggest...") \ + _D(JOINT_TEMPERATURE_LIMIT, 30042, "Joint " _PH1_ " temperature too high(>" _PH2_ "℃)", "suggest...") \ + _D(CONTROL_BOX_TEMPERATURE_LIMIT, 30043, "Control box temperature too high(>" _PH1_ "℃)", "suggest...") \ + _D(ROBOT_EMERGENCY_STOP, 30044, "Robot emergency stop", "suggest...") \ + _D(ROBOTMODE_CHANGED, 30045, "Robot mode changed: " _PH1_, "suggest...") \ + _D(ROBOTMODE_ERROR, 30046, "Wrong robot mode: " _PH1_, "suggest...") \ + _D(POSE_OUT_OF_REACH, 30047, "Target pose [" _PH1_ "] out of reach", "suggest...") \ + _D(TP_PLAN_FAILED, 30048, "Trajectory plan FAILED." , "suggest...") \ + _D(START_FORCE_FAILED, 30049, "Start force control failed, because force sensor does not exist." , "suggest...") \ + _D(OVER_SAFE_PLANE_LIMIT,30050, _PH1_ " axis exceeds the safety plane limit (Move_type:" _PH2_ " id:" _PH3_ ").","Please move the robot to the safety plane range.") \ + _D(POWERON_FAIL_VIOLATION,30051, "Failed to power on because the robot safety mode is in violation", "suggest...") \ + _D(POWERON_FAIL_SYSTEMEMERGENCYSTOP, 30052, "Failed to power on because the robot safety mode is in system emergency stop", "suggest...") \ + _D(POWERON_FAIL_ROBOTEMERGENCYSTOP, 30053, "Failed to power on because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(POWERON_FAIL_FAULT, 30054, "Failed to power on because the robot safety mode is in fault", "suggest...") \ + _D(STARTUP_FAIL_VIOLATION, 30055, "Failed to startup because the robot safety mode is in violation", "suggest...") \ + _D(STARTUP_FAIL_SYSTEMEMERGENCYSTOP, 30056, "Failed to startup because the robot safety mode is in system emergency stop", "suggest...") \ + _D(STARTUP_FAIL_ROBOTEMERGENCYSTOP, 30057, "Failed to startup because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(STARTUP_FAIL_FAULT, 30058, "Failed to startup because the robot safety mode is in fault", "suggest...") \ + _D(BACKDRIVE_FAIL_VIOLATION, 30059, "Failed to backdrive because the robot safety mode is in violation", "suggest...") \ + _D(BACKDRIVE_FAIL_SYSTEMEMERGENCYSTOP, 30060, "Failed to backdrive because the robot safety mode is in system emergency stop", "suggest...") \ + _D(BACKDRIVE_FAIL_ROBOTEMERGENCYSTOP, 30061, "Failed to backdrive because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(BACKDRIVE_FAIL_FAULT, 30062, "Failed to backdrive because the robot safety mode is in fault", "suggest...") \ + _D(SETSIM_FAIL_VIOLATION, 30063, "Switch sim mode failed because the robot safety mode is in violation", "suggest...") \ + _D(SETSIM_FAIL_SYSTEMEMERGENCYSTOP, 30064, "Switch sim mode failed because the robot safety mode is in system emergency stop", "suggest...") \ + _D(SETSIM_FAIL_ROBOTEMERGENCYSTOP, 30065, "Switch sim mode failed because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(SETSIM_FAIL_FAULT, 30066, "Switch sim mode failed because the robot safety mode is in fault", "suggest...") \ + _D(FREEDRIVE_FAIL_VIOLATION, 30067, "Enable handguide mode failed because the robot safety mode is in violation", "suggest...") \ + _D(FREEDRIVE_FAIL_SYSTEMEMERGENCYSTOP, 30068, "Enable handguide mode failed because the robot safety mode is in system emergency stop", "suggest...") \ + _D(FREEDRIVE_FAIL_ROBOTEMERGENCYSTOP, 30069, "Enable handguide mode failed because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(FREEDRIVE_FAIL_FAULT, 30070, "Enable handguide mode failed because the robot safety mode is in fault", "suggest...") \ + _D(UPFIRMWARE_FAIL_VIOLATION, 30071, "Firmware update failed because the robot safety mode is in violation", "suggest...") \ + _D(UPFIRMWARE_FAIL_SYSTEMEMERGENCYSTOP, 30072, "Firmware update failed because the robot safety mode is in system emergency stop", "suggest...") \ + _D(UPFIRMWARE_FAIL_ROBOTEMERGENCYSTOP, 30073, "Firmware update failed because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(UPFIRMWARE_FAIL_FAULT, 30074, "Firmware update failed because the robot safety mode is in fault", "suggest...") \ + _D(SETPERSOSTENT_FAIL_VIOLATION, 30075, "Set persistent parameter failed because the robot safety mode is in violation", "suggest...") \ + _D(SETPERSOSTENT_FAIL_SYSTEMEMERGENCYSTOP, 30076, "Set persistent parameter failed because the robot safety mode is in system emergency stop", "suggest...") \ + _D(SETPERSOSTENT_FAIL_ROBOTEMERGENCYSTOP, 30077, "Set persistent parameter failed because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(SETPERSOSTENT_FAIL_FAULT, 30078, "Set persistent parameter failed because the robot safety mode is in fault", "suggest...") \ + _D(SETPERSOSTENT_FAIL_PARAM_ERR, 30079, "Set persistent parameter failed", "(a) Check the parameter format, whether all are floating point numbers") \ + _D(ROBOT_CABLE_DISCONN, 30080, "Robot cable not connected", "(a) Make sure the cable between Control Box and Robot Arm is correctly connected and it has no damage. (b) Check for loose connections (c) Do a Complete rebooting sequence (d) Update software (e) Contact your local AUBO Robots service provider for assistance Contact your local AUBO Robots service provider for assistance.") \ + _D(TP_TOO_SHORT, 30081, "The generated trajectory is ignored because it is too short", "(a) Please check if the added waypoints are coincident (b) If it is an arc movement, please check whether the three points are collinear") \ + _D(INV_KIN_FAIL, 30082, "Inverse kinematics solution failed. The target pose may be in a singular position or exceed the joint limits", "(a) Change the target pose and try moving again") \ + _D(FREEDRIVE_ENABLED, 30083, "Freedrive status changed to " _PH1_ "", "suggest...") \ + _D(TP_INV_FAIL_REFERENCE_JOINT_OUT_OF_LIMIT, 30084, "Inverse kinematics solution failed. Reference angle [" _PH1_ "] exceeds joint limit [" _PH2_ "].", "suggest...") \ + _D(TP_INV_FAIL_NO_SOLUTION, 30085, "Inverse kinematics solution failed. The reference angle [" _PH1_ "] and the target angle [" _PH2_ "] are used as parameters. there is no solution in the calculation of the inverse solution process.", "suggest...")\ + _D(SERVO_FAIL_VIOLATION, 30086, "Switch servo mode failed because the robot safety mode is in violation", "suggest...") \ + _D(SERVO_FAIL_SYSTEMEMERGENCYSTOP, 30087, "Switch servo mode failed because the robot safety mode is in system emergency stop", "suggest...") \ + _D(SERVO_FAIL_ROBOTEMERGENCYSTOP, 30088, "Switch servo mode failed because the robot safety mode is in robot emergency stop", "Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion") \ + _D(SERVO_FAIL_FAULT, 30089, "Switch servo mode failed because the robot safety mode is in fault", "suggest...") \ + _D(FREEDRIVE_FAIL_NO_RUNNING, 30090, "Enable handguide mode failed because the robot mode type is " _PH1_ "(not running)", "suggest...") \ + _D(RUNTIME_MACHINE_ERROR, 30091, "The state of the running machine is " _PH1_ ", not " _PH2_ ". " _PH3_ " function execution failed because the state is wrong." , "suggest...") \ + _D(RESUME_FAR_PAUSE_PT, 30092, "Cannot resume from joint position [" _PH1_ "].\\nToo far away from paused point [" _PH2_ "]." , "suggest...") \ + _D(PAYLOAD_LIGHTER_ERROR, 30093, "The payload setting is too small!" , "suggest...") \ + _D(PAYLOAD_OVERLOAD_ERROR, 30094, "The payload setting is too large!" , "suggest...") \ + _D(PAUSE_FAIL_NOT_POSITION_PLAN_MODE, 30095, "This motion does not support the pause function. The motion is stopping." , "suggest...") \ + _D(TP_PLAN_FAILED_CIRCULAR_WAYPOINTS_COINCIDE, 30096, "The planning failed because the three waypoints of the arc were determined to coincide." , "Check the circular waypoints to make sure they are different.") \ + _D(SERVO_WRONG_SAFETYMODE, 30097, "Switch servo mode failed because the robot safety mode is in " _PH1_ "." , "Check the circular waypoints to make sure they are different.") \ + _D(SET_PERSTPARAM_WRONG_SAFETYMODE, 30098, "Set persistent parameter failed because the robot safety mode is in " _PH1_ , "suggest...") \ + _D(SET_KINPARAM_WRONG_SAFETYMODE, 30099, "Set Kinematics Compensate parameters failed because the robot safety mode is in " _PH1_ , "suggest...") \ + _D(SET_ROBOT_ZERO_WRONG_SAFETYMODE, 30100, "Set current joint angles to zero failed because the robot safety mode is in " _PH1_ , "suggest...") \ + _D(UPFIRMWARE_WRONG_SAFETYMODE, 30101, "Firmware update failed because the robot safety mode is in " _PH1_, "suggest...") \ + _D(POWERON_WRONG_SAFETYMODE, 30102, "Failed to power on because the robot safety mode is in " _PH1_, "suggest...") \ + _D(STARTUP_WRONG_SAFETYMODE, 30103, "Failed to startup because the robot safety mode is in " _PH1_, "suggest...") \ + _D(BACKDRIVE_WRONG_SAFETYMODE, 30104, "Failed to backdrive because the robot safety mode is in system emergency stop", "suggest...") \ + _D(SETSIM_WRONG_SAFETYMODE, 30105, "Switch sim mode failed because the robot safety mode is in violation", "suggest...") \ + _D(FREEDRIVE_WRONG_SAFETYMODE, 30106, "Enable handguide mode failed because the robot safety mode is in wrong safety mode: " _PH1_, "suggest...") \ + _D(TP_PLAN_FAILED_JOINT_JUMP_BIGGER, 30107, "Inverse kinematics solution failed. The target point and the current point are in different robot configuration spaces.", "Add a few more points between the target point and the current point.") \ + _D(RUN_PROGRAM_FAILED, 30108, "Run program " _PH1_ " failed.", "suggset...") \ + _D(FREEDRIVE_FAIL_WRONG_RTMSTATE, 30109, "Unable to enter the HandGuide mode as the robot is not currently in a stopped or paused state.", "suggset...") \ + _D(SAFEGUARDSTOP_CONFIGURABLE_INPUT, 30110, "Configurable safety input is triggered.", "suggset...") \ + _D(SAFEGUARDSTOP_3PE, 30111, "3PE is triggered.", "suggset...") \ + _D(SAFEGUARDSTOP_SI, 30112, "SI0/SI1 is triggered.", "suggset...") \ + _D(ROBOT_TYPE_CHANGED, 30200, "Robot type changed to '" _PH1_ "', and robot subtype changed to '" _PH2_ "'", "suggest...") \ + _D(LINKMODE_CHANGED, 30201, "Link mode changed to " _PH1_ "", "suggest...") \ + _D(ROBOT_SELF_COLLISION, 30301, "Detect risk of robot self collision", "suggest...") \ + _D(CONSTANT_INVALID, 30302, "Joint torque constants are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake.", "suggest...") \ + _D(GRAVITY_INVALID, 30303, "Abnormal value of gravity acceleration sensor. HandGuide will be disabled, and the collision protection may be triggered by mistake.", "suggest...") \ + _D(DYNAMICS_INVALID, 30304, "Robot dynamics parameters are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake.", "suggest...") \ + _D(FRICTION_INVALID, 30305, "Joint friction parameters are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake.", "suggest...") \ + _D(HANDGUIDE_UNDER_DEVELOP, 30306, "Robot type of " _PH1_ " function under development. HandGuide will be disabled, and the collision protection may be triggered by mistake.", "suggest...") \ + _D(SLOW_DOWN_INFO, 30307, "Slow down level changed to " _PH1_ "(" _PH2_ "%)", "suggest...") \ + _D(WRONG_JOINT_DESIGNED_LIMIT, 30308, "Joint designed ranges exceeds ranges read from hardware interface.", "suggest...") \ + _D(FREEDRIVE_IN_SIMULATION, 30309, "Enable handguide mode failed because the robot is in simulation mode.", "suggest...") \ + _D(ROBOT_STOPPING_TIMEOUT, 30310, "Robot stopping timeout.", "suggest...") \ + _D(PSTOP_INCORRECT_FORCE_OFFSET, 30311, "Protective Stop: Sudden change in force control target position. Force sensor offset may be incorrect or force sensor fault.", "suggest...") \ + _D(WRONG_JOINT_SAFETY_LIMIT, 30312, "Joint safety ranges exceeds designed ranges.", "suggest...") \ + _D(PSTOP_TCP_PLANE_VIOLATION, 30401, "Protective Stop: TCP position close to safety plane limits.", "suggest...") \ + _D(PSTOP_ELBOW_PLANE_VIOLATION, 30402, "Protective Stop: elbow position close to safety plane limits.", "suggest...") \ + _D(PSTOP_JOINT_TORQUE_VIOLATION, 30403, "Protective Stop: joint" _PH1_ " exceeds torque limit.", "suggest...") \ + _D(PSTOP_JOINT_POSITION_VIOLATION, 30404, "Protective Stop: joint" _PH1_ " exceeds position limit.", "suggest...") \ + _D(PSTOP_JOINT_SPEED_VIOLATION, 30405, "Protective Stop: joint" _PH1_ " exceeds speed limit.", "suggest...") \ + _D(PSTOP_TCP_SPEED_VIOLATION, 30406, "Protective Stop: TCP speed close to safety limits.", "suggest...") \ + _D(PSTOP_ELBOW_SPEED_VIOLATION, 30407, "Protective Stop: elbow speed close to safety limits.", "suggest...") \ + _D(PSTOP_TCP_FORCE_VIOLATION, 30408, "Protective Stop: TCP foece close to safety limits.", "suggest...") \ + _D(PSTOP_ELBOW_TORQUE_VIOLATION, 30409, "Protective Stop: elbow torque close to safety limits.", "suggest...") \ + _D(PSTOP_POWER_VIOLATION, 30410, "Protective Stop: robot power close to safety limits.", "suggest...") \ + _D(PSTOP_MOMENTUM_VIOLATION, 30411, "Protective Stop: robot momentum close to safety limits.", "suggest...") \ + _D(PSTOP_TCP_CUBE_VIOLATION, 30412, "Protective Stop: TCP position close to safety cube.", "suggest...") \ + _D(PSTOP_ELBOW_CUBE_VIOLATION, 30413, "Protective Stop: TCP position close to safety cube.", "suggest...") \ + _D(REDUCE_ELBOW_PLANE_TRIGGER, 30414, "Reduce mode: elbow close to safety plane triggers reduction mode.", "suggest...") \ + _D(REDUCE_TCP_PLANE_TRIGGER, 30415, "Reduce mode: TCP close to safety plane triggers reduction mode.", "suggest...") \ + _D(PSTOP_MOVE_OUT_RANGE, 30416, "Joint " _PH1_ " has exceeded the limit, please do not continue to move out of the range", "suggest...") \ + _D(RESUME_PAUSE_FAILED, 30417, "Resume Failed: Safety mode type is " _PH1_ "", "suggest...") \ + _D(FIRMWARE_UPDATE_FAIL_EMERGENCYSTOP, 30418, "Failed to firmware update because the robot safety mode is in " _PH1_ , "Release emergency stop when the robot is in a safe range of motion") \ + _D(TOOL_SENSOR_CHANGED, 30419, "Tool sensor type changed to " _PH1_ "", "suggest...") \ + _D(TOOL_SENSOR_REMOVED, 30420, "Tool sensor is removed.", "suggest...") \ + _D(CAL_TARGET_CURRENT_ERR, 30421, "The calculation of the target current failed. Please try again later.", "suggest...") \ + _D(CONVEYOR_MODE_CHANGED, 30422, "Conveyor" _PH1_ ": track mode changed to " _PH2_ ", track item id is " _PH3_, "suggest...") \ + _D(CONVEYOR_ENQUEUE, 30423, "Conveyor" _PH1_ ": the queue has been changed, item" _PH2_ " is enqueue", "suggest...") \ + _D(CONVEYOR_DEQUEUE_FINISH, 30424, "Conveyor" _PH1_ ": the queue has been changed, item" _PH2_ " dequeue due to track finished", "suggest...") \ + _D(CONVEYOR_DEQUEUE_STARTWINDOW, 30425, "Conveyor" _PH1_ ": the queue has been changed, item" _PH2_ " dequeue due to exceeds startwindow", "suggest...") \ + _D(CONVEYOR_DEQUEUE_LIMIT, 30426, "Conveyor" _PH1_ ": the queue has been changed, item" _PH2_ " dequeue due to exceed limit area", "suggest...") \ + _D(CONVEYOR_DEQUEUE_CLEAR, 30427, "Conveyor" _PH1_ ": item queue is cleared", "suggest...") \ + _D(CONVEYOR_NEXT_TRACK, 30428, "Conveyor" _PH1_ ": item" _PH2_ " inside the start window that can be tracked ", "suggest...") \ + _D(CONVEYOR_EXCEED_LIMIT, 30429, "Conveyor" _PH1_ ": item" _PH2_ " exceeds the limit area during tracking", "suggest...") \ + _D(WRONG_POWER_SAFETY_LIMIT, 30430, "Robot power safety value exceeds designed value.", "suggest...") \ + _D(WRONG_POWER_DESIGNED_LIMIT, 30431, "Power designed value exceeds value read from hardware interface.", "suggest...") \ + _D(TOOL_SENSOR_STATUS_CHANGED, 30432, "Tool sensor status changed to " _PH1_, "suggest...") \ + _D(COLLISION_THRESHOLD_INVALID, 30433, "Robot collision threshold parameters are invalid.Please reidentify the threshold or modify the configuration to ensure that it does not cause accidental collisions.", "suggest...") \ + _D(GRIPPER_DISCONNECT, 30434, "The gripper " _PH1_ " is disconnected.", "suggest...") \ + _D(GRIPPER_UNKNOWN_FAULT, 30435, "There is an unknown fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_CURRENT_ANOMALY_FAULT, 30436, "There is an abnormal current fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_VOLTAGE_ANOMALY_FAULT, 30437, "There is an abnormal voltage fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_OVER_TEMPERATURE_FAULT, 30438, "There is an over-temperature fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_INTERNAL_FAULT, 30439, "There is an internal fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_COMMUNICATION_FAULT, 30440, "There is an communication fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_CONTROL_COMMAND_FAULT, 30441, "There is an control command fault with the gripper " _PH1_ , "suggest...") \ + _D(GRIPPER_ENABLE_FAULT, 30442, "There is an enable fault with the gripper " _PH1_ , "suggest...") \ + _D(WRIST_SINGULARITY_RISK, 30443,"Wrist singularity detected. Linear motion may cause excessive joint speed.Adjust robot posture to avoid J5 near 0° or 180°, or use joint motion instead of linear motion.","suggest...") \ + _D(PSTOP_PATH_OFFSET_OVER_LIMIT, 30444, "Protective Stop: the offset of the robot has exceeded the limit.", "suggest...") \ + _D(EXT_AXIS_SET_PARAM_FAILED_BUSY, 30445, "Set external axis parameter " _PH1_ " failed because the robot mode is in " _PH2_ ". Please power off the robot before changing this parameter.", "Power off the robot and try again.") \ + _D(WRONG_JOINT_POS_LIMIT, 30446, "Joint limit max pos less than min pos.", "suggest...") \ + _D(WRONG_JOINT_VEL_LIMIT, 30447, "Joint limit max vel is invalid.", "suggest...") \ + _D(AUTO_RESUME_FAR_PAUSE_PT, 30448, "Robot is still paused after switching to automatic mode. Current joint position [" _PH1_ "] is too far away from pause position [" _PH2_ "]. Resuming directly may cause collision.", "Move the robot back to the pause position or stop the program before resuming.") \ + _D(CONVEYOR_TRACK_CAPACITY_EXCEEDED, 30449, "Conveyor" _PH1_ ": item" _PH2_ " tracking capacity exceeded, tracking stop started. Capacity usage is " _PH3_ "%, actual conveyor speed is " _PH4_ " m/s.", "Reduce conveyor speed, shorten tracking distance, or adjust tracking posture.") +// clang-format on + +#endif // AUBO_SDK_RTM_ERROR_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/system_error.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/system_error.h new file mode 100644 index 00000000..67d3ed9e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/error_stack/system_error.h @@ -0,0 +1,60 @@ +/** @file system_error.h + * @brief 系统错误码 + */ +#ifndef AUBO_SDK_SYSTEM_ERROR_H +#define AUBO_SDK_SYSTEM_ERROR_H + +#define SYSTEM_ERRORS \ + _D(DEBUG, 0, "Debug message " _PH1_, "suggest...") \ + _D(POPUP, 1, "Popup title: " _PH1_ ", msg: " _PH2_ ", mode: " _PH3_, \ + "suggest...") \ + _D(POPUP_DISMISS, 2, _PH1_, "suggest...") \ + _D(SYSTEM_HALT, 3, _PH1_, "suggest...") \ + _D(INV_ARGUMENTS, 4, "Invalid arguments.", "suggest...") \ + _D(USER_NOTIFY, 5, _PH1_, "suggest...") \ + _D(POPUP_DISMISS_BY_ID, 6, _PH1_, "suggest...") \ + _D(MODBUS_SIGNAL_CREATED, 10, "Modbus signal " _PH1_ " created.", \ + "suggest...") \ + _D(MODBUS_SIGNAL_REMOVED, 11, "Modbus signal " _PH1_ " removed.", \ + "suggest...") \ + _D(MODBUS_SIGNAL_VALUE_CHANGED, 12, \ + "Modbus signal " _PH1_ " value changed to " _PH2_, "suggest...") \ + _D(RUNTIME_CONTEXT, 13, \ + "tid: " _PH1_ " lineno: " _PH2_ " index: " _PH3_ " comment: " _PH4_, \ + "suggest...") \ + _D(INTERP_CONTEXT, 14, \ + "tid: " _PH1_ " lineno: " _PH2_ " index: " _PH3_ " comment: " _PH4_, \ + "suggest...") \ + _D(PROGRAM_LOADED, 15, "program loaded: " _PH1_, "suggest...") \ + _D(TASK_DELETED, 16, "tid: " _PH1_, " was deleted") \ + _D(MODBUS_SLAVE_BIT, 20, "Modbus slave address: " _PH1_ " value " _PH2_, \ + "suggest...") \ + _D(MODBUS_SLAVE_REG, 21, "Modbus slave address: " _PH1_ " value " _PH2_, \ + "suggest...") \ + _D(PNIO_SLAVE_SLOT_VALUE, 30, \ + "PNIO slot: " _PH1_ " subslot " _PH2_ " index " _PH3_ " value " _PH4_, \ + "suggest...") \ + _D(PNIO_CONNECT_STATUS, 31, "PNIO connection status changed to " _PH1_, \ + "suggest...") \ + _D(PNIO_DEVICE_NAME, 32, "PNIO device name changed to " _PH1_, \ + "suggest...") \ + _D(PNIO_IP, 33, "PNIO ip " _PH1_ " mask " _PH2_ " gateway " _PH3_, \ + "suggest...") \ + _D(ICM_SERVER_STATUS, 40, " ICM server status changed to " _PH1_, \ + "suggest...") \ + _D(EIP_SLAVE_VALUE, 50, \ + "EIP slave: trans_type " _PH1_ " index " _PH2_ " value " _PH3_, \ + "suggest...") \ + _D(EIP_SLAVE_CONNECT_STATUS, 51, \ + "EIP slave connection status changed to " _PH1_, "suggest...") \ + _D(LOG_PROGRAM_SUCCESS, 100, \ + "[" _PH1_ "] Load program " _PH2_ " successful", "suggest...") \ + _D(LOG_PROGRAM_FAILED, 101, \ + "[" _PH1_ "] Load program " _PH2_ " failed, file not found", \ + "suggest...") \ + _D(LOG_PROGRAM_FAILED2, 102, \ + "[" _PH1_ "] Load program " _PH2_ \ + " failed, configuration file (.ins) does not match", \ + "suggest...") + +#endif // AUBO_SDK_SYSTEM_ERROR_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/global_config.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/global_config.h new file mode 100644 index 00000000..3673c806 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/global_config.h @@ -0,0 +1,178 @@ +/* + global_config.h + this file is generated. Do not change! +*/ + +#ifndef ARCS_GLOBALCONFIG_H +#define ARCS_GLOBALCONFIG_H + +/* #undef ARCS_BUILD_SHARED_LIBS */ +/* #undef ARCS_ENABLE_THREADING_SUPPORT */ + +//------------------------------------------------------------------- +// Header Availability +//------------------------------------------------------------------- + +/* #undef ARCS_HAVE_CXXABI_H */ + +//------------------------------------------------------------------- +// Version information +//------------------------------------------------------------------- + +#define INTERFACE_VERSION_MAJOR 0 +#define INTERFACE_VERSION_MINOR 26 +#define INTERFACE_VERSION_PATCH 0 +#define INTERFACE_VERSION "0.26.0" + +//------------------------------------------------------------------- +// Platform defines +//------------------------------------------------------------------- + +#if defined(__APPLE__) +#define ARCS_PLATFORM_APPLE +#endif + +#if defined(__linux__) +#define ARCS_PLATFORM_LINUX +#endif + +#if defined(_WIN32) || defined(_WIN64) +#define ARCS_PLATFORM_WINDOWS +#else +#define ARCS_PLATFORM_POSIX +#endif + +/* #undef ARCS_BIG_ENDIAN */ +/* #undef ARCS_LITTLE_ENDIAN */ + +#define ARCS_LIB_PREFIX "lib" +#define ARCS_LIB_EXT ".so" +#define ARCS_EXE_EXT "" + +#ifdef NDEBUG // Defined by cmake UNLESS Debug build type is chosen +#define ARCS_LIB_POSTFIX "" +#else +#define ARCS_LIB_POSTFIX \ + "" // Set in top level CMakeList.txt +#endif + +#define ARCS_FUNCTION // 函数接口 +#define ARCS_INSTRUCT // 指令接口 + +///------------------------------------------------------------------- +// Macros for import/export declarations +//------------------------------------------------------------------- + +#if defined(ARCS_PLATFORM_WINDOWS) +#define ARCS_ABI_EXPORT __declspec(dllexport) +#define ARCS_ABI_IMPORT __declspec(dllimport) +#define ARCS_ABI_LOCAL +#elif defined(ARCS_HAVE_VISIBILITY_ATTRIBUTE) +#define ARCS_ABI_EXPORT __attribute__((visibility("default"))) +#define ARCS_ABI_IMPORT __attribute__((visibility("default"))) +#define ARCS_ABI_LOCAL __attribute__((visibility("hidden"))) +#else +#define ARCS_ABI_EXPORT +#define ARCS_ABI_IMPORT +#define ARCS_ABI_LOCAL +#endif + +#ifdef ARCS_BUILDING_STAGE +#define ARCS_ABI ARCS_ABI_EXPORT +#else +#define ARCS_ABI ARCS_ABI_IMPORT +#endif + +//------------------------------------------------------------------- +// Macros for suppressing warnings +//------------------------------------------------------------------- + +#ifdef _MSC_VER +#define ARCS_MSVC_PUSH_DISABLE_WARNING(wn) \ + __pragma(warning(push)) __pragma(warning(disable : wn)) +#define ARCS_MSVC_POP_WARNING __pragma(warning(pop)) +#define ARCS_MSVC_DISABLE_WARNING(wn) __pragma(warning(disable : wn)) +#else +#define ARCS_MSVC_PUSH_DISABLE_WARNING(wn) +#define ARCS_MSVC_POP_WARNING +#define ARCS_MSVC_DISABLE_WARNING(wn) +#endif + +#ifdef __GNUC__ +#define aubo_gcc_pragma_expand(x) _Pragma(#x) +#define ARCS_GCC_PUSH_DISABLE_WARNING(wn) \ + _Pragma("GCC diagnostic push") \ + aubo_gcc_pragma_expand(GCC diagnostic ignored "-W" #wn) +#define ARCS_GCC_POP_WARNING _Pragma("GCC diagnostic pop") +#else +#define ARCS_GCC_PUSH_DISABLE_WARNING(wn) +#define ARCS_GCC_POP_WARNING +#endif + +#if defined(__GNUC__) +#define ARCS_DEPRECATED __attribute__((deprecated)) +#elif defined(_MSC_VER) +#define ARCS_DEPRECATED __declspec(deprecated) +#else +#pragma message( \ + "WARNING: You need to implement ARCS_DEPRECATED for your compiler!") +#define ARCS_DEPRECATED +#endif + +// Do not warn about the usage of deprecated unsafe functions +ARCS_MSVC_DISABLE_WARNING(4996) + +// Mark a variable or expression result as unused +#define ARCS_UNUSED(x) (void)(x) + +//------------------------------------------------------------------- +// C++ Language features +//------------------------------------------------------------------- + +/* #undef ARCS_HAVE_THREAD_LOCAL */ + +//------------------------------------------------------------------- +// C++ Library features +//------------------------------------------------------------------- + +/* #undef ARCS_HAVE_REGEX */ + +//------------------------------------------------------------------- +// Hash Container +//------------------------------------------------------------------- + +#define ARCS_HASH_FUNCTION_BEGIN(type) \ + namespace std { \ + template <> \ + struct hash \ + { \ + std::size_t operator()(const type &arg) const \ + { +#define ARCS_HASH_FUNCTION_END \ + } \ + } \ + ; \ + } + +//------------------------------------------------------------------- +// Utility macros +//------------------------------------------------------------------- + +#define ARCS_STR_(x) #x +#define ARCS_STR(x) ARCS_STR_(x) +#define ARCS_CONCAT_(x, y) x##y +#define ARCS_CONCAT(x, y) ARCS_CONCAT_(x, y) + +//------------------------------------------------------------------- +// Backwards compatibility macros +//------------------------------------------------------------------- + +#if !defined(__clang__) && __GNUC__ == 4 && __GNUC_MINOR__ < 7 +#define ARCS_FUTURE_READY true +#define ARCS_FUTURE_TIMEOUT false +#else +#define ARCS_FUTURE_READY std::future_status::ready +#define ARCS_FUTURE_TIMEOUT std::future_status::timeout +#endif + +#endif // ARCS_GLOBALCONFIG_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/gripper_interface.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/gripper_interface.h new file mode 100644 index 00000000..ddedc478 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/gripper_interface.h @@ -0,0 +1,320 @@ +/** @file gripper_interface.h + * @brief 通用夹爪接口 + */ +#ifndef AUBO_SDK_GRIPPER_INTERFACE_H +#define AUBO_SDK_GRIPPER_INTERFACE_H + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup GripperInterface GripperInterface (夹爪) + * 通用夹爪API接口 + * \endchinese + * + * \english + * @defgroup GripperInterface Gripper Interface + * Common Gripper API interface + * \endenglish + */ +class ARCS_ABI_EXPORT GripperInterface +{ +public: + GripperInterface(); + virtual ~GripperInterface(); + + /** + * @ingroup GripperInterface + * \chinese + * 获取支持的所有夹爪 + * + * @return + * \endchinese + */ + std::vector gripperGetSupportedModels(); + + /** + * @ingroup GripperInterface + * \chinese + * 扫描该型号下的所有设备 + * + * @param model 夹爪品牌型号 + * @param device_name 设备名 + * @return 成功返回设备列表和0,失败返回错误码 + * \endchinese + */ + ResultWithErrno2 gripperScanDevices(const std::string &model, + const std::string &device_name); + + /** + * @ingroup GripperInterface + * \chinese + * 获取已添加的夹爪 + * @return + */ + std::vector gripperGetNames(); + + /** + * @ingroup GripperInterface + * \chinese + * 添加夹爪 + * + * @param name 用户自定义名字,唯一 + * @param model 夹爪品牌及型号 + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperAdd(const std::string &name, const std::string &model); + + /** + * @ingroup GripperInterface + * \chinese + * 删除夹爪 + * + * @param name 用户自定义名字 + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperDelete(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 删除所有夹爪 + * + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperDeleteAll(); + + /** + * @ingroup GripperInterface + * \chinese + * 修改夹爪名 + * + * @param name + * @param new_name 新名字 + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperRename(const std::string &name, const std::string &new_name); + + /** + * @ingroup GripperInterface + * \chinese + * 夹爪连接 + * + * @param name + * @param device_name 设备名 + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperConnect(const std::string &name, const std::string &device_name); + + /** + * @ingroup GripperInterface + * \chinese + * 夹爪断开连接 + * + * @param name + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperDisconnect(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 夹爪是否连接 + * + * @param name + * @return 已连接返回true,未连接返回false + * \endchinese + */ + bool gripperIsConnected(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 设置工作模式 + * + * @param name + * @param work_mode 工作模式 + * @return 成功返回0,失败返回错误码 + * \endchinese + */ + int gripperSetWorkMode(const std::string &name, int work_mode); + + /** + * @ingroup GripperInterface + * \chinese + * 获取工作模式 + * + * @param name + * @return 返回工作模式 + * \endchinese + */ + int gripperGetWorkMode(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 设置夹爪安装偏移 + * + * @param name + * @param isVisibled 是否显示 + * @param pose 末端(不包括手指)相对法兰的位姿 + * @return 成功返回true,失败返回false + * \endchinese + */ + int gripperSetMountPose(const std::string &name, + const std::vector &pose, + bool enable_collision); + + /** + * @brief 获取夹爪安装偏移 + * @param name + * @return 返回夹爪安装偏移 + */ + std::vector gripperGetMountPose(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 使能夹爪 + * + * @param name + * @return + * \endchinese + */ + int gripperEnable(const std::string &name, bool enable); + + /** + * \chinese + * 等待夹爪使能完成(硬件激活),超时15s + * 初始化成功后再添加 gripper_link 到运动学模型 + * + * @param name 夹爪名称 + * @return 成功返回0,超时返回错误码 + * \endchinese + */ + int gripperWaitEnableFinished(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 夹爪是否使能 + * + * @param name + * @return + * \endchinese + */ + bool gripperIsEnabled(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 设置运动参数 + * + * @param name + * @param position 位置,单位:m/Pa + * @param velocity_percent 速度,单位:%,范围:[0, 1] + * @param force 夹持力,单位:N + * @param angle 旋转角度,单位:rad + * @param r_velocity_percent 旋转速度,单位:%,范围:[0, 1] + * @param torque_percent 旋转扭矩,单位:%,范围:[0, 1] + * + * @return + * \endchinese + */ + int gripperSetPosition(const std::string &name, const double position); + int gripperSetVelocity(const std::string &name, + const double velocity_percent); + int gripperSetForce(const std::string &name, const double force); + int gripperSetAngle(const std::string &name, const double angle); + int gripperSetRVelocity(const std::string &name, + const double r_velocity_percent); + int gripperSetTorque(const std::string &name, const double torque_percent); + + /** + * @ingroup GripperInterface + * \chinese + * 开始运动 + * + * @param name + * @return + * \endchinese + */ + int gripperMove(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 停止运动 + * + * @param name + * @return + * \endchinese + */ + int gripperStop(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 获取夹爪状态 + * + * @param name + * @return + * + * @note 位置,速度,夹持力,旋转角度,旋转速度,旋转扭矩的单位与Set接口一致 + * + * \endchinese + */ + std::string gripperGetHardwareVersion(const std::string &name); + std::string gripperGetSoftwareVersion(const std::string &name); + double gripperGetPosition(const std::string &name); + double gripperGetVelocity(const std::string &name); + double gripperGetForce(const std::string &name); + double gripperGetAngle(const std::string &name); + double gripperGetRVelocity(const std::string &name); + double gripperGetTorque(const std::string &name); + bool gripperGetObjectDetection(const std::string &name); + bool gripperGetMotionState(const std::string &name); + double gripperGetVoltage(const std::string &name); + double gripperGetTemperature(const std::string &name); + + /** + * @ingroup GripperInterface + * \chinese + * 重置modbus从站ID + * + * @param name + * @param slave_id 从站Id + * @return + * \endchinese + */ + int gripperResetSlaveId(const std::string &name, const int slave_id); + + /** + * @ingroup GripperInterface + * \chinese + * 获取夹爪状态 + * @param name + * @return 状态 + * \endchinese + */ + int gripperGetStatusCode(const std::string &name); + +protected: + void *d_; +}; +using GripperInterfacePtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_GRIPPER_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/math.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/math.h new file mode 100644 index 00000000..e3f957a9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/math.h @@ -0,0 +1,1084 @@ +/** @file math.h + * \~chinese @brief 数学方法接口,如欧拉角与四元数转换、位姿的加减运算 + * \~english @brief Mathematic operation interface, such as euler to quaternion conversion, addition/subtraction of poses + */ +#ifndef AUBO_SDK_MATH_INTERFACE_H +#define AUBO_SDK_MATH_INTERFACE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup Math Math (数学工具) + * 数学工具API接口 + * \endchinese + * + * \english + * @defgroup Math Math + * Math API interface + * \endenglish + */ +class ARCS_ABI_EXPORT Math +{ +public: + Math(); + virtual ~Math(); + + /** + * @ingroup Math + * \english + * Pose addition + * + * Both arguments contain three position parameters (x, y, z) jointly called + * P, and three rotation parameters (R_x, R_y, R_z) jointly called R. This + * function calculates the result x_3 as the addition of the given poses as + * follows: + * + * p_3.P = p_1.P + p_2.P + * + * p_3.R = p_1.R * p_2.R + * + * @param p1 Tool pose 1 + * @param p2 Tool pose 2 + * @return sum of position parts and product of rotation parts (pose) + * + * @par Python interface prototype + * poseAdd(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua interface prototype + * poseAdd(p1: table, p2: table) -> table + * + * @par Lua example + * pose_add = poseAdd({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseAdd","params":[[0.2, 0.5, 0.1, 1.57, + * 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.4,1.0,0.7,3.14,-0.0,0.0]} + * \endengish + * + * \chinese + * 位姿相加。 + * 两个参数都包含三个位置参数(x、y、z),统称为P, + * 以及三个旋转参数(R_x、R_y、R_z),统称为R。 + * 此函数根据以下方式计算结果 p_3,即给定位姿的相加: + * p_3.P = p_1.P + p_2.P, + * p_3.R = p_1.R * p_2.R + * + * @param p1 工具位姿1(pose) + * @param p2 工具位姿2(pose) + * @return 位置部分之和和旋转部分之积(pose) + * + * @par Python函数原型 + * poseAdd(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua函数原型 + * poseAdd(p1: table, p2: table) -> table + * + * @par Lua示例 + * pose_add = poseAdd({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseAdd","params":[[0.2, 0.5, 0.1, 1.57, + * 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.4,1.0,0.7,3.14,-0.0,0.0]} + * \endchinese + */ + std::vector poseAdd(const std::vector &p1, + const std::vector &p2); + + /** + * @ingroup Math + * \chinese + * 位姿相减 + * + * 两个参数都包含三个位置参数(x、y、z),统称为P, + * 以及三个旋转参数(R_x、R_y、R_z),统称为R。 + * 此函数根据以下方式计算结果 p_3,即给定位姿的相加: + * p_3.P = p_1.P - p_2.P, + * p_3.R = p_1.R * p_2.R.inverse + * + * @param p1 工具位姿1 + * @param p2 工具位姿2 + * @return 位姿相减计算结果 + * + * @par Python函数原型 + * poseSub(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua函数原型 + * poseSub(p1: table, p2: table) -> table + * + * @par Lua示例 + * pose_sub = poseSub({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseSub","params":[[0.2, 0.5, 0.1, 1.57, + * 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,-0.5,0.0,-0.0,0.0]} + * \endchinese + * + * \english + * Pose subtraction + * + * Both arguments contain three position parameters (x, y, z) jointly called + * P, and three rotation parameters (R_x, R_y, R_z) jointly called R. This + * function calculates the result x_3 as the addition of the given poses as + * follows: + * + * p_3.P = p_1.P - p_2.P, + * + * p_3.R = p_1.R * p_2.R.inverse + * + * @param p1 tool pose 1 + * @param p2 tool pose 2 + * @return difference between two poses + * + * @par Python interface prototype + * poseSub(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua interface prototype + * poseSub(p1: table, p2: table) -> table + * + * @par Lua example + * pose_sub = poseSub({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseSub","params":[[0.2, 0.5, 0.1, 1.57, + * 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,-0.5,0.0,-0.0,0.0]} + * \endenglish + */ + std::vector poseSub(const std::vector &p1, + const std::vector &p2); + + /** + * @ingroup Math + * \chinese + * 计算线性插值 + * + * @param p1 起点的TCP位姿 + * @param p2 终点的TCP位姿 + * @param alpha 系数, + * 当01,返回p2; + * 当alpha<0,返回p1; + * @return 插值计算结果 + * + * @par Python函数原型 + * interpolatePose(self: pyaubo_sdk.Math, arg0: List[float], arg1: + * List[float], arg2: float) -> List[float] + * + * @par Lua函数原型 + * interpolatePose(p1: table, p2: table, alpha: number) -> table + * + * @par Lua示例 + * pose_interpolate = interpolatePose({0.2, 0.2, 0.4, 0, 0, 0},{0.2, 0.2, 0.6, 0, 0, 0},0.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.interpolatePose","params":[[0.2, 0.2, + * 0.4, 0, 0, 0],[0.2, 0.2, 0.6, 0, 0, 0],0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.2,0.2,0.5,0.0,-0.0,0.0]} + * \endchinese + * + * \english + * Calculate linear interpolation + * + * @param p1 starting TCP pose + * @param p2 ending TCP pose + * @param alpha coefficient; + * When 01, return p2; + * When alpha<0,return p1; + * @return interpolation result + * + * @par Python interface prototype + * interpolatePose(self: pyaubo_sdk.Math, arg0: List[float], arg1: + * List[float], arg2: float) -> List[float] + * + * @par Lua interface prototype + * interpolatePose(p1: table, p2: table, alpha: number) -> table + * + * @par Lua example + * pose_interpolate = interpolatePose({0.2, 0.2, 0.4, 0, 0, 0},{0.2, 0.2, 0.6, 0, 0, 0},0.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.interpolatePose","params":[[0.2, 0.2, + * 0.4, 0, 0, 0],[0.2, 0.2, 0.6, 0, 0, 0],0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.2,0.2,0.5,0.0,-0.0,0.0]} + * \endenglish + * + */ + std::vector interpolatePose(const std::vector &p1, + const std::vector &p2, + double alpha); + /** + * @ingroup Math + * \chinese + * 位姿变换 + * + * 第一个参数 p_from 用于转换第二个参数 p_from_to,并返回结果。 + * 这意味着结果是从 p_from 的坐标系开始, + * 然后在该坐标系中移动 p_from_to后的位姿。 + * + * 这个函数可以从两个不同的角度来看。 + * 一种是函数将 p_from_to 根据 p_from 的参数进行转换,即平移和旋转。 + * 另一种是函数被用于获取结果姿态,先对 p_from 进行移动,然后再对 p_from_to + * 进行移动。 如果将姿态视为转换矩阵,它看起来像是: + * + * T_world->to = T_world->from * T_from->to, + * T_x->to = T_x->from * T_from->to + * + * 这两个方程描述了姿态变换的基本原理,根据给定的起始姿态和相对于起始姿态的姿态变化,可以计算出目标姿态。 + * + * 举个例子,已知B相对于A的位姿、C相对于B的位姿,求C相对于A的位姿。 + * 第一个参数是B相对于A的位姿,第二个参数是C相对于B的位姿, + * 返回值是C相对于A的位姿。 + * + * @param pose_from 起始位姿(空间向量) + * @param pose_from_to 相对于起始位姿的姿态变化(空间向量) + * @return 结果位姿 (空间向量) + * + * @par Python函数原型 + * poseTrans(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua函数原型 + * poseTrans(pose_from: table, pose_from_to: table) -> table + * + * @par Lua示例 + * pose_trans = poseTrans({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseTrans","params":[[0.2, 0.5, + * 0.1, 1.57, 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.4,-0.09960164640373415,0.6004776374923573,3.14,-0.0,0.0]} + * \endchinese + * + * \english + * Pose transformation + * + * The first argument, p_from, is used to transform the second argument, + * p_from_to, and the result is then returned. This means that the result is + * the resulting pose, when starting at the coordinate system of p_from, and + * then in that coordinate system moving p_from_to. + * + * This function can be seen in two different views. Either the function + * transforms, that is translates and rotates, p_from_to by the parameters + * of p_from. Or the function is used to get the resulting pose, when first + * making a move of p_from and then from there, a move of p_from_to. If the + * poses were regarded as transformation matrices, it would look like: + * + * T_world->to = T_world->from * T_from->to, + * T_x->to = T_x->from * T_from->to + * + * + * These two equations describes the foundations for pose transformation. + * Based on a starting pose and the pose transformation relative to the starting pose, we can get the target pose. + * + * For example, we know pose of B relative to A, pose of C relative to B, find pose of C relative to A. + * param 1 is pose of B relative to A,param 2 is pose of C relative to B, + * the return value is the pose of C relative to A + * + * @param pose_from starting pose(vector in 3D space) + * @param pose_from_to pose transformation relative to starting pose(vector in 3D space) + * @return final pose (vector in 3D space) + * + * @par Python interface prototype + * poseTrans(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) -> + * List[float] + * + * @par Lua interface prototype + * poseTrans(pose_from: table, pose_from_to: table) -> table + * + * @par Lua example + * pose_trans = poseTrans({0.2, 0.5, 0.1, 1.57, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseTrans","params":[[0.2, 0.5, + * 0.1, 1.57, 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.4,-0.09960164640373415,0.6004776374923573,3.14,-0.0,0.0]} + * \endenglish + */ + std::vector poseTrans(const std::vector &pose_from, + const std::vector &pose_from_to); + + /** + * \english + * Pose inverse transformation + * + * Given pose of C relative to A, pose of C relative to B, find pose of B relative to A. + * param 1 is pose of C relative to A,param 2 is pose of C relative to B, + * the return value is the pose of B relative to A + * + * @param pose_from starting pose + * @param pose_to_from pose transformation relative to final pose + * @return resulting pose + * + * @par Python interface prototype + * poseTransInv(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) + * -> List[float] + * + * @par Lua interface prototype + * poseTransInv(pose_from: table, pose_to_from: table) -> table + * + * @par Lua example + * pose_trans_inv = poseTransInv({0.4, -0.0996016, 0.600478, 3.14, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseTransInv","params":[[0.4, -0.0996016, + * 0.600478, 3.14, 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.2,0.5000000464037341,0.10000036250764266,1.57,-0.0,0.0]} + * \endenglish + * + * @ingroup Math + * \chinese + * 姿态逆变换 + * + * 已知C相对于A的位姿、C相对于B的位姿,求B相对于A的位姿。 + * 第一个参数是C相对于A的位姿,第二个参数是C相对于B的位姿, + * 返回值是B相对于A的位姿。 + * + * @param pose_from 起始位姿 + * @param pose_to_from 相对于结果位姿的姿态变化 + * @return 结果位姿 + * + * @par Python函数原型 + * poseTransInv(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) + * -> List[float] + * + * @par Lua函数原型 + * poseTransInv(pose_from: table, pose_to_from: table) -> table + * + * @par Lua示例 + * pose_trans_inv = poseTransInv({0.4, -0.0996016, 0.600478, 3.14, 0, 0},{0.2, 0.5, 0.6, 1.57, 0, 0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseTransInv","params":[[0.4, -0.0996016, + * 0.600478, 3.14, 0, 0],[0.2, 0.5, 0.6, 1.57, 0, 0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.2,0.5000000464037341,0.10000036250764266,1.57,-0.0,0.0]} + * \endchinese + */ + std::vector poseTransInv(const std::vector &pose_from, + const std::vector &pose_to_from); + + /** + * @ingroup Math + * \chinese + * 获取位姿的逆 + * + * @param pose 工具位姿(空间向量) + * @return 工具位姿的逆转换(空间向量) + * + * @par Python函数原型 + * poseInverse(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua函数原型 + * poseInverse(pose: table) -> table + * + * @par Lua示例 + * pose_inverse = poseInverse({0.2, 0.5, 0.1, 1.57, 0, 3.14}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseInverse","params":[[0.2, 0.5, + * 0.1, 1.57, 0, 3.14]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.19920341988726448,-0.09960155178838484,-0.5003973704832628, + * 1.5699999989900404,-0.0015926530848129354,-3.1415913853161266]} + * + * \endchinese + * + * \english + * Get the inverse of a pose + * + * @param pose tool pose (spatial vector) + * @return inverse tool pose transformation (spatial vector) + * + * @par Python interface prototype + * poseInverse(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua interface prototype + * poseInverse(pose: table) -> table + * + * @par Lua example + * pose_inverse = poseInverse({0.2, 0.5, 0.1, 1.57, 0, 3.14}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseInverse","params":[[0.2, 0.5, + * 0.1, 1.57, 0, 3.14]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.19920341988726448,-0.09960155178838484,-0.5003973704832628, + * 1.5699999989900404,-0.0015926530848129354,-3.1415913853161266]} + * \endenglish + * + */ + std::vector poseInverse(const std::vector &pose); + + /** + * @ingroup Math + * \chinese + * 计算两个位姿的位置距离 + * + * @param p1 位姿1 + * @param p2 位姿2 + * @return 两个位姿的位置距离 + * + * @par Lua函数原型 + * poseDistance(p1: table, p2: table) -> number + * + * @par Lua示例 + * pose_distance = poseDistance({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.2, 0.5, 0.6, 0, -0.172, 0.0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseDistance","params":[[0.1, 0.3, 0.1, + * 0.3142, 0.0, 1.571],[0.2, 0.5, 0.6, 0, -0.172, 0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.5477225575051661} + * \endchinese + * + * \english + * Calculate distance between two poses + * + * @param p1 pose 1 + * @param p2 pose 2 + * @return distance between the poses + * + * @par Lua function prototype + * poseDistance(p1: table, p2: table) -> number + * + * @par Lua example + * pose_distance = poseDistance({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.2, 0.5, 0.6, 0, -0.172, 0.0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseDistance","params":[[0.1, 0.3, 0.1, + * 0.3142, 0.0, 1.571],[0.2, 0.5, 0.6, 0, -0.172, 0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.5477225575051661} + * \endenglish + * + */ + double poseDistance(const std::vector &p1, + const std::vector &p2); + + /** + * @ingroup Math + * \chinese + * 计算两个位姿的轴角距离 + * + * @param p1 位姿1 + * @param p2 位姿2 + * @return 轴角距离 + * + * @par Lua函数原型 + * poseAngleDistance(p1: table, p2: table) -> number + * + * @par Lua示例 + * pose_angle_distance = poseAngleDistance({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.2, 0.5, 0.6, 0, -0.172, 0.0}) + * + * \endchinese + * + * \english + * Calculate axis-angle difference between two poses + * + * @param p1 pose 1 + * @param p2 pose 2 + * @return axis angle difference + * + * @par Lua函数原型 + * poseAngleDistance(p1: table, p2: table) -> number + * + * @par Lua示例 + * pose_angle_distance = poseAngleDistance({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.2, 0.5, 0.6, 0, -0.172, 0.0}) + * + * \endenglish + */ + double poseAngleDistance(const std::vector &p1, + + const std::vector &p2); + + /** + * @ingroup Math + * \chinese + * 判断两个位姿是否相等 + * + * @param p1 位姿1 + * @param p2 位姿2 + * @param eps 误差 + * @return 相等返回true,反之返回false + * + * @par Lua函数原型 + * poseEqual(p1: table, p2: table, eps: number) -> boolean + * + * @par Lua示例 + * pose_equal = poseEqual({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711},0.01) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.poseEqual","params":[[0.1, 0.3, 0.1, + * 0.3142, 0.0, 1.571],[0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711],0.01]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * + * \english + * Determine if two poses are equivalent + * + * @param p1 pose 1 + * @param p2 pose 2 + * @param eps error margin + * @return true or false + * + * @par Lua函数原型 + * poseEqual(p1: table, p2: table, eps: number) -> boolean + * + * @par Lua示例 + * pose_equal = poseEqual({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},{0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711},0.01) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.poseEqual","params":[[0.1, 0.3, 0.1, + * 0.3142, 0.0, 1.571],[0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711],0.01],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + bool poseEqual(const std::vector &p1, const std::vector &p2, + double eps = 5e-5); + + /** + * @ingroup Math + * \chinese + * @param F_b_a_old + * @param V_in_a + * @param type + * @return + * + * @par Python函数原型 + * transferRefFrame(self: pyaubo_sdk.Math, arg0: List[float], arg1: + * List[float[3]], arg2: int) -> List[float] + * + * @par Lua函数原型 + * transferRefFrame(F_b_a_old: table, V_in_a: table, type: number) -> table + * \endchinese + * + * \english + * @param F_b_a_old + * @param V_in_a + * @param type + * @return + * + * @par Python interface prototype + * transferRefFrame(self: pyaubo_sdk.Math, arg0: List[float], arg1: + * List[float[3]], arg2: int) -> List[float] + * + * @par Lua interface prototype + * transferRefFrame(F_b_a_old: table, V_in_a: table, type: number) -> table + * \endenglish + */ + std::vector transferRefFrame(const std::vector &F_b_a_old, + const Vector3d &V_in_a, int type); + + /** + * @ingroup Math + * \chinese + * 姿态旋转 + * + * @param pose + * @param rotv + * @return + * + * @par Python函数原型 + * poseRotation(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) + * -> List[float] + * + * @par Lua函数原型 + * poseRotation(pose: table, rotv: table) -> table + * \endchinese + * + * \english + * Pose rotation + * + * @param pose + * @param rotv + * @return + * + * @par Python interface prototype + * poseRotation(self: pyaubo_sdk.Math, arg0: List[float], arg1: List[float]) + * -> List[float] + * + * @par Lua interface prototype + * poseRotation(pose: table, rotv: table) -> table + * \endenglish + */ + std::vector poseRotation(const std::vector &pose, + const std::vector &rotv); + + /** + * @ingroup Math + * \chinese + * 欧拉角转四元数 + * + * @param rpy 欧拉角 + * @return 四元数 + * + * @par Python函数原型 + * rpyToQuaternion(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua函数原型 + * rpyToQuaternion(rpy: table) -> table + * + * @par Lua示例 + * quaternion = rpyToQuaternion({0.611, 0.785, 0.960}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.rpyToQuaternion","params":[[0.611, 0.785, + * 0.960]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.834721517970497,0.07804256900772265,0.4518931575790371,0.3048637712043723]} + * \endchinese + * + * \english + * Euler angles to quaternions + * + * @param rpy euler angles + * @return quaternions + * + * @par Python interface prototype + * rpyToQuaternion(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua interface prototype + * rpyToQuaternion(rpy: table) -> table + * + * @par Lua example + * quaternion = rpyToQuaternion({0.611, 0.785, 0.960}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.rpyToQuaternion","params":[[0.611, 0.785, + * 0.960]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.834721517970497,0.07804256900772265,0.4518931575790371,0.3048637712043723]} + * \endenglish + */ + std::vector rpyToQuaternion(const std::vector &rpy); + + /** + * @ingroup Math + * \chinese + * 四元数转欧拉角 + * + * @param quat 四元数 + * @return 欧拉角 + * + * @par Python函数原型 + * quaternionToRpy(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua函数原型 + * quaternionToRpy(quat: table) -> table + * + * @par Lua示例 + * rpy = quaternionToRpy({0.834722,0.0780426, 0.451893, 0.304864}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.quaternionToRpy","params":[[0.834722, + * 0.0780426, 0.451893, 0.304864]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.6110000520523781,0.7849996877683915,0.960000543982093]} + * \endchinese + * + * \english + * Quaternions to euler angles + * + * @param quat quaternions + * @return euler angles + * + * @par Python interface prototype + * quaternionToRpy(self: pyaubo_sdk.Math, arg0: List[float]) -> List[float] + * + * @par Lua interface prototype + * quaternionToRpy(quat: table) -> table + * + * @par Lua example + * rpy = quaternionToRpy({0.834722,0.0780426, 0.451893, 0.304864}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.quaternionToRpy","params":[[0.834722, + * 0.0780426, 0.451893, 0.304864]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.6110000520523781,0.7849996877683915,0.960000543982093]} + * \endenglish + */ + std::vector quaternionToRpy(const std::vector &quat); + + /** + * @ingroup Math + * \chinese + * 四点法标定TCP偏移 + * + * 找一个尖点,将机械臂工具末端点绕着尖点示教四个位置,姿态差别要大。 + * 设置完毕后即可计算出来结果。 + * + * @param poses 四个点的位姿集合 + * @return TCP标定结果和标定结果是否有效 + * + * @par Python函数原型 + * tcpOffsetIdentify(self: pyaubo_sdk.Math, arg0: List[List[float]]) -> + * Tuple[List[float], int] + * + * @par Lua函数原型 + * tcpOffsetIdentify(poses: table) -> table + * + * @par Lua示例 + * p1 = {0.48659,0.10456,0.24824,-3.135,0.004,1.569} \n + * p2 = {0.38610,0.09096,0.22432,2.552,-0.437,1.008} \n + * p3 = {0.38610,0.05349,0.16791,-3.021,-0.981,0.517} \n + * p4 = {0.49675,0.06417,0.21408,-2.438,0.458,0.651} \n + * p = {p1,p2,p3,p4} \n + * tcp_result = tcpOffsetIdentify(p) + * + * \endchinese + * + * \english + * Four point method calibration for TCP offset + * + * About a sharp point, move the robot's tcp in four different poses. Difference between each pose should be drastic. + * Result can be obtained based on these four poses + * + * @param poses combination of four different poses + * @return TCP calibration result and whether successfull + * + * @par Python interface prototype + * tcpOffsetIdentify(self: pyaubo_sdk.Math, arg0: List[List[float]]) -> + * Tuple[List[float], int] + * + * @par Lua interface prototype + * tcpOffsetIdentify(poses: table) -> table + * + * @par Lua example + * p1 = {0.48659,0.10456,0.24824,-3.135,0.004,1.569} \n + * p2 = {0.38610,0.09096,0.22432,2.552,-0.437,1.008} \n + * p3 = {0.38610,0.05349,0.16791,-3.021,-0.981,0.517} \n + * p4 = {0.49675,0.06417,0.21408,-2.438,0.458,0.651} \n + * p = {p1,p2,p3,p4} \n + * tcp_result = tcpOffsetIdentify(p) + * + * \endenglish + */ + ResultWithErrno tcpOffsetIdentify( + const std::vector> &poses); + + /** + * @ingroup Math + * \chinese + * 三点法标定坐标系 + * + * @param poses 三个点的位姿集合 + * @param type 类型:\n + * 0 - oxy 原点 x轴正方向 xy平面(y轴正方向)\n + * 1 - oxz 原点 x轴正方向 xz平面(z轴正方向)\n + * 2 - oyz 原点 y轴正方向 yz平面(z轴正方向)\n + * 3 - oyx 原点 y轴正方向 yx平面(x轴正方向)\n + * 4 - ozx 原点 z轴正方向 zx平面(x轴正方向)\n + * 5 - ozy 原点 z轴正方向 zy平面(y轴正方向)\n + * @return 坐标系标定结果和标定结果是否有效 + * + * @par Lua函数原型 + * calibrateCoordinate(poses: table, type: int) -> table, number + * + * @par Lua示例 + * p1 = {0.55462,0.06219,0.37175,-3.142,0.0,1.580} \n + * p2 = {0.63746,0.11805,0.37175,-3.142,0.0,1.580} \n + * p3 = {0.40441,0.28489,0.37174,-3.142,0.0,1.580} \n + * p = {p1,p2,p3} \n + * coord_pose, cal_result = calibrateCoordinate(p,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.calibrateCoordinate","params":[[[0.55462,0.06219,0.37175,-3.142,0.0,1.580], + * [0.63746,0.11805,0.37175,-3.142,0.0,1.580],[0.40441,0.28489,0.37174,-3.142,0.0,1.580]],0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.55462,0.06219,0.37175,-3.722688983883945e-05,-1.6940658945086007e-21,0.5932768162455785],0]} + * \endchinese + * + * \english + * Calibrate coordinate system with 3 points + * + * @param poses set of 3 poses + * @param type type:\n + * 0 - oxy origin, +x axis, xy plane (+y direction) \n + * 1 - oxz origin, +x axis, xz plane (+z direction) \n + * 2 - oyz origin, +y axis, yz plane (+z direction) \n + * 3 - oyx origin, +y axis, yx plane (+x direction) \n + * 4 - ozx origin, +z axis, zx plane (+x direction) \n + * 5 - ozy origin, +z axis, zy plane (+y direction) \n + * @return Coordinate system calibration result and whether the calibration result is valid + * + * @par Lua function prototype + * calibrateCoordinate(poses: table, type: int) -> table, number + * + * @par Lua example + * p1 = {0.55462,0.06219,0.37175,-3.142,0.0,1.580} \n + * p2 = {0.63746,0.11805,0.37175,-3.142,0.0,1.580} \n + * p3 = {0.40441,0.28489,0.37174,-3.142,0.0,1.580} \n + * p = {p1,p2,p3} \n + * coord_pose, cal_result = calibrateCoordinate(p,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.calibrateCoordinate","params":[[[0.55462,0.06219,0.37175,-3.142,0.0,1.580], + * [0.63746,0.11805,0.37175,-3.142,0.0,1.580],[0.40441,0.28489,0.37174,-3.142,0.0,1.580]],0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.55462,0.06219,0.37175,-3.722688983883945e-05,-1.6940658945086007e-21,0.5932768162455785],0]} + * \endenglish + */ + ResultWithErrno calibrateCoordinate( + const std::vector> &poses, int type); + + /** + * @ingroup Math + * \chinese + * 根据圆弧的三个点,计算出拟合成的圆的另一半圆弧的中间点位置 + * + * @param p1 圆弧的起始点 + * @param p2 圆弧的中间点 + * @param p3 圆弧的结束点 + * @param mode 当mode等于1的时候,表示需要对姿态进行圆弧规划; + * 当mode等于0的时候,表示不需要对姿态进行圆弧规划 + * + * @return 拟合成的圆的另一半圆弧的中间点位置和计算结果是否有效 + * + * @par Lua函数原型 + * calculateCircleFourthPoint(p1: table, p2: table, p3: table, mode: int) + * + * @par Lua示例 + * center_pose, cal_result = calculateCircleFourthPoint({0.5488696249770836,-0.1214996547187204,0.2631931199112321,-3.14159198038469,-3.673205103150083e-06,1.570796326792424}, + * {0.5488696249770835,-0.1214996547187207,0.3599720701808493,-3.14159198038469,-3.6732051029273e-06,1.570796326792423}, + * {0.5488696249770836,-0.0389996547187214,0.3599720701808496,-3.141591980384691,-3.673205102557476e-06,1.570796326792422},1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Math.calculateCircleFourthPoint","params":[[0.5488696249770836,-0.1214996547187204,0.2631931199112321,-3.14159198038469,-3.673205103150083e-06,1.570796326792424], + * [0.5488696249770835,-0.1214996547187207,0.3599720701808493,-3.14159198038469,-3.6732051029273e-06,1.570796326792423], + * [0.5488696249770836,-0.0389996547187214,0.3599720701808496,-3.141591980384691,-3.673205102557476e-06, + * 1.570796326792422],1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.5488696249770837,-0.031860179583911546,0.27033259504604207,-3.1415919803846903,-3.67320510285378e-06,1.570796326792423],1]} + * + * \endchinese + * + * \english + * Based on three points on an arc, calculate the position of the midpoint of the other half of the fitted circle's arc + * + * @param p1 start point of the arc + * @param p2 middle point of the arc + * @param p3 end point of the arc + * @param mode when mode = 1, need to plan for orientation around arc; + * when mode = 0, do not need to plan for orientation around arc. + * @return position of the midpoint of the other half of the fitted circle's arc and whether the result is valid. + * + * + * @par Lua函数原型 + * calculateCircleFourthPoint(p1: table, p2: table, p3: table, mode: int) + * + * @par Lua示例 + * center_pose, cal_result = calculateCircleFourthPoint({0.5488696249770836,-0.1214996547187204,0.2631931199112321,-3.14159198038469,-3.673205103150083e-06,1.570796326792424}, + * {0.5488696249770835,-0.1214996547187207,0.3599720701808493,-3.14159198038469,-3.6732051029273e-06,1.570796326792423}, + * {0.5488696249770836,-0.0389996547187214,0.3599720701808496,-3.141591980384691,-3.673205102557476e-06,1.570796326792422},1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Math.calculateCircleFourthPoint","params":[[0.5488696249770836,-0.1214996547187204,0.2631931199112321,-3.14159198038469,-3.673205103150083e-06,1.570796326792424], + * [0.5488696249770835,-0.1214996547187207,0.3599720701808493,-3.14159198038469,-3.6732051029273e-06,1.570796326792423], + * [0.5488696249770836,-0.0389996547187214,0.3599720701808496,-3.141591980384691,-3.673205102557476e-06, + * 1.570796326792422],1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.5488696249770837,-0.031860179583911546,0.27033259504604207,-3.1415919803846903,-3.67320510285378e-06,1.570796326792423],1]} + * + * \endenglish + */ + ResultWithErrno calculateCircleFourthPoint(const std::vector &p1, + const std::vector &p2, + const std::vector &p3, + int mode); + /** + * @ingroup Math + * \chinese + * @brief forceTrans: + * 变换力和力矩的参考坐标系 force_in_b = pose_a_in_b * force_in_a + * @param pose_a_in_b: a 坐标系在 b 坐标系的位姿 + * @param force_in_a: 力和力矩在 a 坐标系的描述 + * @return force_in_b,力和力矩在 b 坐标系的描述 + * \endchinese + * + * \english + * @brief forceTrans: + * Transform the reference frame of force and torque: force_in_b = pose_a_in_b * force_in_a + * @param pose_a_in_b: pose of frame a in frame b + * @param force_in_a: force and torque described in frame a + * @return Force_in_b, force and torque described in frame b + * \endenglish + */ + std::vector forceTrans(const std::vector &pose_a_in_b, + const std::vector &force_in_a); + + /** + * @ingroup Math + * \chinese + * @brief 通过距离计算工具坐标系下的位姿增量 + * @param distances: N 个距离, N >=3 + * @param position: 距离参考轨迹的保持高度 + * @param radius: 传感器中心距离末端tcp的等效半径 + * @param track_scale: 跟踪比例, 设置范围(0, 1], 1表示跟踪更快 + * @return 基于工具坐标系的位姿增量 + * \endchinese + * + * \english + * @brief Calculate pose increment in tool coordinate system based on sensor data + * @param distances: N distances, N >= 3 + * @param position: reference height to maintain from the trajectory + * @param radius: effective radius from sensor center to tool TCP + * @param track_scale: tracking ratio, range (0, 1], 1 means faster tracking + * @return Pose increment in tool coordinate system + * \endenglish + */ + std::vector getDeltaPoseBySensorDistance( + const std::vector &distances, double position, double radius, + double track_scale); + + /** + * @ingroup Math + * \chinese + * @brief changeFTFrame: 变换力和力矩的参考坐标系 + * @param pose_a_in_b: a 坐标系在 b 坐标系的位姿 + * @param ft_in_a: 作用在 a 点的力和力矩在 a 坐标系的描述 + * @return ft_in_b,作用在 b 点的力和力矩在 b 坐标系的描述 + * \endchinese + * + * \english + * @brief changeFTFrame: Transform the reference frame of force and torque + * @param pose_a_in_b: pose of frame a in frame b + * @param ft_in_a: force and torque applied at point a, described in frame a + * @return ft_in_b, force and torque applied at point b, described in frame b + * \endenglish + */ + std::vector deltaPoseTrans(const std::vector &pose_a_in_b, + const std::vector &ft_in_a); + + /** + * @ingroup Math + * \chinese + * @brief addDeltaPose: 计算以给定速度变换单位时间后的位姿 + * @param pose_a_in_b: 当前时刻 a 相对于 b 的位姿 + * @param v_in_b: 当前时刻 a 坐标系的速度在 b 的描述 + * @return pose_in_b, 单位时间后的位姿在 b 的描述 + * \endchinese + * + * \english + * @brief addDeltaPose: Calculate the pose after unit time given a velocity + * @param pose_a_in_b: current pose of a relative to b + * @param v_in_b: velocity of frame a described in frame b at current time + * @return pose_in_b, pose after unit time described in frame b + * \endenglish + */ + std::vector deltaPoseAdd(const std::vector &pose_a_in_b, + const std::vector &v_in_b); + + /** + * @ingroup Math + * \chinese + * @brief changePoseWithXYRef: 修改 pose_tar 的xy轴方向,尽量与 pose_ref 一致, + * @param pose_tar: 需要修改的目标位姿 + * @param pose_ref: 参考位姿 + * @return 修改后的位姿,采用pose_tar的 xyz 坐标和 z 轴方向 + * \endchinese + * + * \english + * @brief changePoseWithXYRef: Modify the XY axis direction of pose_tar to be as consistent as possible with pose_ref + * @param pose_tar: target pose to be modified + * @param pose_ref: reference pose + * @return Modified pose, using the xyz coordinates and z axis direction of pose_tar + * \endenglish + */ + std::vector changePoseWithXYRef( + const std::vector &pose_tar, + const std::vector &pose_ref); + + /** + * @ingroup Math + * \chinese + * @brief homMatrixToPose: 由齐次变换矩阵得到位姿 + * @param homMatrix: 4*4 齐次变换矩阵, 输入元素采用横向排列 + * @return 对应的位姿 + * \endchinese + * + * \english + * @brief homMatrixToPose: Get pose from homogeneous transformation matrix + * @param homMatrix: 4x4 homogeneous transformation matrix, input elements are arranged row-wise + * @return corresponding pose + * \endenglish + */ + std::vector homMatrixToPose(const std::vector &homMatrix); + + /** + * @ingroup Math + * \chinese + * @brief poseToHomMatrix: 位姿变换得到齐次变换矩阵 + * @param pose: 输入的位姿 + * @return 输出的齐次变换矩阵,元素横向排列 + * \endchinese + * + * \english + * @brief poseToHomMatrix: Get homogeneous transformation matrix from pose + * @param pose: input pose + * @return output homogeneous transformation matrix, elements arranged row-wise + * \endenglish + */ + std::vector poseToHomMatrix(const std::vector &pose); + +protected: + void *d_; +}; +using MathPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/register_control.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/register_control.h new file mode 100644 index 00000000..fe08eca2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/register_control.h @@ -0,0 +1,3559 @@ +/** @file register_control.h + * @brief 寄存器操作接口,用于三个模块之间的数据交换功能 + */ +#ifndef AUBO_SDK_REGISTER_CONTROL_INTERFACE_H +#define AUBO_SDK_REGISTER_CONTROL_INTERFACE_H + +#include +#include +#include + +#include +#include + +enum ModbusErrorNum +{ + /** MODBUS unit not initiallized + */ + MB_ERR_NOT_INIT = -1, + + /** MODBUS unit disconnected + */ + MB_ERR_DISCONNECTED = -2, + + /** The function code received in the query is not an allowable action for + * the server (or slave). + */ + MB_ERR_ILLEGAL_FUNCTION = 1, + + /** The function code received in the query is not an allowable action for + * the server (or slave), check that the entered signal address corresponds + * to the setup of the remote MODBUS server. + */ + MB_ERR_ILLEGAL_DATA_ADDRESS = 2, + + /** A value contained in the query data field is not an allowable value for + * server (or slave), check that the enterd signal value is valid for the + * specified address on the remote MODBUS server. + */ + MB_ERR_ILLEGAL_DATA_VALUE = 3, + + /** An unrecoverable error occurred while the server (or slave) was + * attempting to perform the requested action. + */ + MB_ERR_SLAVE_DEVICE_FAILURE = 4, + + /** Specialized use in conjunction with programming commands sent to the + * remote MODBUS unit. + */ + MB_ERR_ACKNOWLEDGE = 5, + + /** Specialized use in conjunction with programming commands sent to the + * remote MODBUS unit, the slave (server) is not able to respond now + */ + MB_ERR_SLAVE_DEVICE_BUSY = 6, +}; + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RegisterControl RegisterControl (寄存器操作) + * 通用寄存器 + * \chinese + * + * \english + * @defgroup RegisterControl Register Operation + * Common register + */ +class ARCS_ABI_EXPORT RegisterControl +{ +public: + RegisterControl(); + virtual ~RegisterControl(); + + /** + * @ingroup RegisterControl + * \chinese + * + * 从一个输入寄存器中读取布尔值,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器的地址(0:127) + * @return 寄存器中保存的布尔值(true、false) + * + * @note 布尔输入寄存器的较低范围[0:63]保留供FieldBus/PLC接口使用。 + * 较高范围[64:127]无法通过FieldBus/PLC接口访问,因为它保留供外部RTDE客户端使用。 + * + * @par Python函数原型 + * getBoolInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getBoolInput(address: number) -> boolean + * + * @par Lua示例 + * BoolInput_0 = getBoolInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getBoolInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * + * \english + * Reads the boolean from one of the input registers, which can also be + * accessed by a Field bus. Note, uses its own memory space. + * + * @param address Address of the register (0:127) + * @return Boolean value held by the register (true, false) + * + * @note The lower range of the boolean input registers [0:63] is reserved + * for FieldBus/PLC interface usage. The upper range [64:127] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getBoolInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> bool + * + * @par Lua interface prototype + * getBoolInput(address: number) -> boolean + * + * @par Lua example + * BoolInput_0 = getBoolInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getBoolInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool getBoolInput(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address + * @param value + * @return + * + * @note 只有在实现 RTDE/Modbus Slave/PLC 服务端时使用 + * + * @par Python函数原型 + * setBoolInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: bool) -> + * int + * + * @par Lua函数原型 + * setBoolInput(address: number, value: boolean) -> nil + * + * @par Lua示例 + * setBoolInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setBoolInput","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:127) + * @param value Boolean value to set (true or false) + * @return Returns 0 on success, or an error code + * + * @note Only used when implementing RTDE/Modbus Slave/PLC server + * + * @par Python interface prototype + * setBoolInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: bool) -> + * int + * + * @par Lua interface prototype + * setBoolInput(address: number, value: boolean) -> nil + * + * @par Lua example + * setBoolInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setBoolInput","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setBoolInput(uint32_t address, bool value); + + /** + * @ingroup RegisterControl + * \chinese + * + * 从一个输入寄存器中读取整数值,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器的地址(0:47) + * @return 寄存器中保存的整数值[-2,147,483,648 : 2,147,483,647] + * + * @note 整数输入寄存器的较低范围[0:23]保留供FieldBus/PLC接口使用。 + * 较高范围[24:47]无法通过FieldBus/PLC接口访问,因为它保留供外部RTDE客户端使用。 + * + * @par Python函数原型 + * getInt32Input(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua函数原型 + * getInt32Input(address: number) -> number + * + * @par Lua示例 + * Int32Input_0 = getInt32Input(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32Input","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Reads the integer from one of the input registers, which can also be + * accessed by a FieldBus. Note, uses it’s own memory space. + * + * @param address Address of the register (0:47) + * @return The value held by the register [-2,147,483,648 : 2,147,483,647] + * + * @note The lower range of the integer input registers [0:23] is reserved + * for FieldBus/PLC interface usage. The upper range [24:47] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getInt32Input(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua interface prototype + * getInt32Input(address: number) -> number + * + * @par Lua example + * Int32Input_0 = getInt32Input(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32Input","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int getInt32Input(uint32_t address); + + /** + * @ingroup RegisterControl + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器的地址(0:47) + * @param value 要设置的整数值 + * @return 返回0表示成功,其他为错误码 + * + * @note 只有在实现 RTDE/Modbus Slave/PLC 服务端时使用 + * + * @par Python函数原型 + * setInt32Input(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) -> + * int + * + * @par Lua函数原型 + * setInt32Input(address: number, value: number) -> nil + * + * @par Lua示例 + * setInt32Input(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32Input","params":[0,33],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:47) + * @param value Integer value to set + * @return Returns 0 on success, or an error code + * + * @note Only used when implementing RTDE/Modbus Slave/PLC server + * + * @par Python interface prototype + * setInt32Input(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) -> + * int + * + * @par Lua interface prototype + * setInt32Input(address: number, value: number) -> nil + * + * @par Lua example + * setInt32Input(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32Input","params":[0,33],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setInt32Input(uint32_t address, int value); + + /** + * @ingroup RegisterControl + * \chinese + * Reads the float from one of the input registers, which can also be + * accessed by a Field bus. Note, uses it’s own memory space. + * + * 从一个输入寄存器中读取浮点数,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address Address of the register (0:47) + * 寄存器地址(0:47) + * @return The value held by the register (float) + * 寄存器中保存的浮点数值 + * + * @note The lower range of the float input registers [0:23] is reserved + * for FieldBus/PLC interface usage. The upper range [24:47] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * 浮点数输入寄存器的较低范围[0:23]保留供现场总线/PLC接口使用。 + * 较高范围[24:47]不能通过现场总线/PLC接口访问,因为它们是为外部RTDE客户端保留的。 + * + * @par Python函数原型 + * getFloatInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua函数原型 + * getFloatInput(address: number) -> number + * + * @par Lua示例 + * FloatInput_0 = getFloatInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getFloatInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * + * \english + * Reads the float from one of the input registers, which can also be + * accessed by a Field bus. Note, uses it’s own memory space. + * + * @param address Address of the register (0:47) + * @return The value held by the register (float) + * + * @note The lower range of the float input registers [0:23] is reserved + * for FieldBus/PLC interface usage. The upper range [24:47] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getFloatInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua interface prototype + * getFloatInput(address: number) -> number + * + * @par Lua example + * FloatInput_0_0 = getFloatInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getFloatInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + */ + float getFloatInput(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器的地址(0:47) + * @param value 要设置的浮点数值 + * @return 返回0表示成功,其他为错误码 + * + * @note 只有在实现 RTDE/Modbus Slave/PLC 服务端时使用 + * + * @par Python函数原型 + * setFloatInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua函数原型 + * setFloatInput(address: number, value: number) -> nil + * + * @par Lua示例 + * setFloatInput(0, 3.3) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setFloatInput","params":[0,3.3],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:47) + * @param value Float value to set + * @return Returns 0 on success, or an error code + * + * @note Only used when implementing RTDE/Modbus Slave/PLC server + * + * @par Python interface prototype + * setFloatInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua interface prototype + * setFloatInput(address: number, value: number) -> nil + * + * @par Lua example + * setFloatInput(0, 3.3) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setFloatInput","params":[0,3.3],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setFloatInput(uint32_t address, float value); + + /** + * @ingroup RegisterControl + * \chinese + * + * 从一个输入寄存器中读取双精度浮点数,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器的地址(0:47) + * @return 寄存器中保存的双精度浮点数值 + * + * @par Python函数原型 + * getDoubleInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua函数原型 + * getDoubleInput(address: number) -> number + * + * @par Lua示例 + * DoubleInput_0 = getDoubleInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getDoubleInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * + * Reads the double value from one of the input registers, which can also be + * accessed by a FieldBus. Note, uses its own memory space. + * + * @param address Address of the register (0:47) + * @return The double value held by the register + * + * @par Python interface prototype + * getDoubleInput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua interface prototype + * getDoubleInput(address: number) -> number + * + * @par Lua example + * DoubleInput_0 = getDoubleInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getDoubleInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getDoubleInput(uint32_t address); + + /** + * \english + * @param address + * @param value + * @return + * + * @note Only used when implementing RTDE/Modbus Slave/PLC server + * + * @par Python interface prototype + * setDoubleInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua interface prototype + * setDoubleInput(address: number, value: number) -> nil + * + * @par Lua example + * setDoubleInput(0, 3.3) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setDoubleInput","params":[0,6.6],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * + * @ingroup RegisterControl + * \chinese + * @param address + * @param value + * @return + * + * @note 只有在实现 RTDE/Modbus Slave/PLC 服务端时使用 + * + * @par Python函数原型 + * setDoubleInput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua函数原型 + * setDoubleInput(address: number, value: number) -> nil + * + * @par Lua示例 + * setDoubleInput(0, 3.3) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setDoubleInput","params":[0,6.6],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int setDoubleInput(uint32_t address, double value); + + /** + * @ingroup RegisterControl + * \chinese + * 从一个输出寄存器中读取布尔值,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器地址(0:127) + * @return 寄存器中保存的布尔值(true, false) + * + * @note 布尔输出寄存器的较低范围[0:63]保留供现场总线/PLC接口使用。 + * 较高范围[64:127]不能通过现场总线/PLC接口访问,因为它们是为外部RTDE客户端保留的。 + * + * @par Python函数原型 + * getBoolOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getBoolOutput(address: number) -> boolean + * + * @par Lua示例 + * BoolOutput_0 = getBoolOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getBoolOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * + * \english + * Reads the boolean from one of the output registers, which can also be + * accessed by a Field bus. + * Note, uses its own memory space. + * + * @param address Address of the register (0:127) + * @return The boolean value held by the register (true, false) + * + * @note The lower range of the boolean output registers [0:63] is reserved + * for FieldBus/PLC interface usage. The upper range [64:127] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getBoolOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> bool + * + * @par Lua interface prototype + * getBoolOutput(address: number) -> boolean + * + * @par Lua example + * BoolOutput_0 = getBoolOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getBoolOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool getBoolOutput(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器地址(0:127) + * @param value 要设置的布尔值(true 或 false) + * @return 返回0表示成功,其他为错误码 + * + * @par Python函数原型 + * setBoolOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: bool) -> + * int + * + * @par Lua函数原型 + * setBoolOutput(address: number, value: boolean) -> nil + * + * @par Lua示例 + * setBoolOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setBoolOutput","params":[0,false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:127) + * @param value Boolean value to set (true or false) + * @return Returns 0 on success, or an error code + * + * @par Python interface prototype + * setBoolOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: bool) -> + * int + * + * @par Lua interface prototype + * setBoolOutput(address: number, value: boolean) -> nil + * + * @par Lua example + * setBoolOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setBoolOutput","params":[0,false],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setBoolOutput(uint32_t address, bool value); + + /** + * @ingroup RegisterControl + * \chinese + * 从一个输出寄存器中读取整数值,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器地址(0:47) + * @return 寄存器中保存的整数值(-2,147,483,648 : 2,147,483,647) + * + * @note 整数输出寄存器的较低范围[0:23]保留供现场总线/PLC接口使用。 + * 较高范围[24:47]不能通过现场总线/PLC接口访问,因为它们是为外部RTDE客户端保留的。 + * + * @par Python函数原型 + * getInt32Output(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua函数原型 + * getInt32Output(address: number) -> number + * + * @par Lua示例 + * Int32Output_0 = getInt32Output(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32Output","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Reads the integer from one of the output registers, which can also be + * accessed by a FieldBus. Note, uses its own memory space. + * + * @param address Address of the register (0:47) + * @return The int value held by the register [-2,147,483,648 : + * 2,147,483,647] + * + * @note The lower range of the integer output registers [0:23] is reserved + * for FieldBus/PLC interface usage. The upper range [24:47] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getInt32Output(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua interface prototype + * getInt32Output(address: number) -> number + * + * @par Lua example + * Int32Output_0 = getInt32Output(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32Output","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getInt32Output(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器地址(0:47) + * @param value 要设置的整数值 + * @return 返回0表示成功,其他为错误码 + * + * @par Python函数原型 + * setInt32Output(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) -> + * int + * + * @par Lua函数原型 + * setInt32Output(address: number, value: number) -> nil + * + * @par Lua示例 + * setInt32Output(0, 100) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32Output","params":[0,100],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:47) + * @param value Integer value to set + * @return Returns 0 on success, or an error code + * + * @par Python interface prototype + * setInt32Output(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) -> + * int + * + * @par Lua interface prototype + * setInt32Output(address: number, value: number) -> nil + * + * @par Lua example + * setInt32Output(0, 100) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32Output","params":[0,100],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setInt32Output(uint32_t address, int value); + + /** + * @ingroup RegisterControl + * \chinese + * 从一个输出寄存器中读取浮点数,也可以通过现场总线进行访问。 + * 注意,它使用自己的内存空间。 + * + * @param address 寄存器地址(0:47) + * @return 寄存器中保存的浮点数值(float) + * + * @note 浮点数输出寄存器的较低范围[0:23]保留供现场总线/PLC接口使用。 + * 较高范围[24:47]不能通过现场总线/PLC接口访问,因为它们是为外部RTDE客户端保留的。 + * + * @par Python函数原型 + * getFloatOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua函数原型 + * getFloatOutput(address: number) -> number + * + * @par Lua示例 + * FloatOutput_0 = getFloatOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getFloatOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":3.3} + * \endchinese + * + * \english + * Reads the float from one of the output registers, which can also be + * accessed by a FieldBus. Note, uses its own memory space. + * + * @param address Address of the register (0:47) + * @return The value held by the register (float) + * + * @note The lower range of the float output registers [0:23] is reserved + * for FieldBus/PLC interface usage. The upper range [24:47] cannot be + * accessed by FieldBus/PLC interfaces, since it is reserved for external + * RTDE clients. + * + * @par Python interface prototype + * getFloatOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua interface prototype + * getFloatOutput(address: number) -> number + * + * @par Lua example + * FloatOutput_0 = getFloatOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getFloatOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":3.3} + * \endenglish + */ + float getFloatOutput(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器地址(0:47) + * @param value 要设置的浮点数值 + * @return 返回0表示成功,其他为错误码 + * + * @par Python函数原型 + * setFloatOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua函数原型 + * setFloatOutput(address: number, value: number) -> nil + * + * @par Lua示例 + * setFloatOutput(0,5.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setFloatOutput","params":[0,5.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register (0:47) + * @param value Float value to set + * @return Returns 0 on success, or an error code + * + * @par Python interface prototype + * setFloatOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua interface prototype + * setFloatOutput(address: number, value: number) -> nil + * + * @par Lua example + * setFloatOutput(0,5.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setFloatOutput","params":[0,5.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setFloatOutput(uint32_t address, float value); + + /** + * @ingroup RegisterControl + * \chinese + * + * 从一个输出寄存器中读取双精度浮点数。 + * + * @param address 寄存器地址 + * @return 寄存器中保存的双精度浮点数值 + * + * @par Python函数原型 + * getDoubleOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua函数原型 + * getDoubleOutput(address: number) -> number + * + * @par Lua示例 + * DoubleOutput_0 = getDoubleOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getDoubleOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * + * Reads the double value from one of the output registers. + * + * @param address Address of the register + * @return The double value held by the register + * + * @par Python interface prototype + * getDoubleOutput(self: pyaubo_sdk.RegisterControl, arg0: int) -> float + * + * @par Lua interface prototype + * getDoubleOutput(address: number) -> number + * + * @par Lua example + * DoubleOutput_0 = getDoubleOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getDoubleOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getDoubleOutput(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器地址 + * @param value 要设置的双精度浮点数值 + * @return 返回0表示成功,其他为错误码 + * + * @par Python函数原型 + * setDoubleOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua函数原型 + * setDoubleOutput(address: number, value: number) -> nil + * + * @par Lua示例 + * setDoubleOutput(0,4.4) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setDoubleOutput","params":[0,4.4],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Address of the register + * @param value Double value to set + * @return Returns 0 on success, or an error code + * + * @par Python interface prototype + * setDoubleOutput(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: float) + * -> int + * + * @par Lua interface prototype + * setDoubleOutput(address: number, value: number) -> nil + * + * @par Lua example + * setDoubleOutput(0,4.4) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setDoubleOutput","params":[0,4.4],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setDoubleOutput(uint32_t address, double value); + + /** + * @ingroup RegisterControl + * \chinese + * 用于 Modbus Slave + * + * @param address + * @return + * + * @par Python函数原型 + * getInt16Register(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua函数原型 + * getInt16Register(address: number) -> number + * + * @par Lua示例 + * Int16Register_0 = getInt16Register(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getInt16Register","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Used for Modbus Slave + * + * @param address + * @return + * + * @par Python interface prototype + * getInt16Register(self: pyaubo_sdk.RegisterControl, arg0: int) -> int + * + * @par Lua interface prototype + * getInt16Register(address: number) -> number + * + * @par Lua example + * Int16Register_0 = getInt16Register(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getInt16Register","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int16_t getInt16Register(uint32_t address); + + /** + * @ingroup RegisterControl + * \chinese + * + * @param address 寄存器地址 + * @param value 要设置的值 + * @return 返回0表示成功,其他为错误码 + * + * @par Python函数原型 + * setInt16Register(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) + * -> int + * + * @par Lua函数原型 + * setInt16Register(address: number, value: number) -> nil + * + * @par Lua示例 + * setInt16Register(0,4.4) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setInt16Register","params":[0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * + * @param address Register address + * @param value Value to set + * @return Returns 0 on success, otherwise error code + * + * @par Python interface prototype + * setInt16Register(self: pyaubo_sdk.RegisterControl, arg0: int, arg1: int) + * -> int + * + * @par Lua interface prototype + * setInt16Register(address: number, value: number) -> nil + * + * @par Lua example + * setInt16Register(0,4.4) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setInt16Register","params":[0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setInt16Register(uint32_t address, int16_t value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取 Int16 寄存器的某个bit的状态 + * + * @param address: Int16 寄存器地址 + * @param bit_offset: 寄存器中的bit偏移,0 ~ 15 + * @return 指定bit的状态,true表示1,false表示0或参数无效 + * + * @par Python函数原型 + * getInt16RegisterBit(self: pyaubo_sdk.RegisterControl, address: int, + * bit_offset: int) -> bool + * + * @par Lua函数原型 + * getInt16RegisterBit(address: number, bit_offset: number) -> boolean + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getInt16RegisterBit","params":[1, + * 5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Get the status of a specific bit in an Int16 register + * + * @param address Int16 register address + * @param bit_offset Bit offset in the register, 0 ~ 15 + * @return Status of the specified bit, true for 1, false for 0 or invalid + * parameters + * + * @par Python interface prototype + * getInt16RegisterBit(self: pyaubo_sdk.RegisterControl, address: int, + * bit_offset: int) -> bool + * + * @par Lua interface prototype + * getInt16RegisterBit(address: number, bit_offset: number) -> boolean + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getInt16RegisterBit","params":[1, + * 5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool getInt16RegisterBit(uint32_t address, uint8_t bit_offset); + + /** + * @ingroup RegisterControl + * \chinese + * 设置 Int16 寄存器的某个bit的状态 + * + * @param address: Int16 寄存器地址 + * @param bit_offset: 寄存器中的bit偏移,0 ~ 15 + * @param value: 要设置的值,true表示置1,false表示清0 + * @return 成功返回0,失败返回错误码 + * + * @par Python函数原型 + * setInt16RegisterBit(self: pyaubo_sdk.RegisterControl, address: int, + * bit_offset: int, value: bool) -> int + * + * @par Lua函数原型 + * setInt16RegisterBit(address: number, bit_offset: number, value: boolean) + * -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setInt16RegisterBit","params":[1, + * 5, true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the status of a specific bit in an Int16 register + * + * @param address Int16 register address + * @param bit_offset Bit offset in the register, 0 ~ 15 + * @param value Value to set, true to set to 1, false to clear to 0 + * @return Returns 0 on success, error code on failure + * + * @par Python interface prototype + * setInt16RegisterBit(self: pyaubo_sdk.RegisterControl, address: int, + * bit_offset: int, value: bool) -> int + * + * @par Lua interface prototype + * setInt16RegisterBit(address: number, bit_offset: number, value: boolean) + * -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setInt16RegisterBit","params":[1, + * 5, true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setInt16RegisterBit(uint32_t address, uint8_t bit_offset, bool value); + + /** + * @ingroup RegisterControl + * \chinese + * 具名变量是否存在 + * + * @param key 变量名 + * @return + * + * @par Lua函数原型 + * hasNamedVariable(key: string) -> boolean + * + * @par Lua示例 + * NamedVariable = hasNamedVariable("custom") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.hasNamedVariable","params":["custom"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Whether the named variable exists + * + * @param key Variable name + * @return + * + * @par Lua interface prototype + * hasNamedVariable(key: string) -> boolean + * + * @par Lua example + * NamedVariable = hasNamedVariable("custom") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.hasNamedVariable","params":["custom"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool hasNamedVariable(const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 获取具名变量的类型 + * + * @param key + * @return + * + * @par Lua函数原型 + * getNamedVariableType(key: string) -> string + * + * @par Lua示例 + * NamedVariableType = getNamedVariableType("custom") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getNamedVariableType","params":["custom"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"NONE"} + * + * \endchinese + * \english + * Get the type of a named variable + * + * @param key + * @return + * + * @par Lua interface prototype + * getNamedVariableType(key: string) -> string + * + * @par Lua example + * NamedVariableType = getNamedVariableType("custom") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getNamedVariableType","params":["custom"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"NONE"} + * + * \endenglish + */ + std::string getNamedVariableType(const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 具名变量是否更新 + * + * @param key + * @param since + * @return + * + * @par Python函数原型 + * variableUpdated(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) + * -> bool + * + * @par Lua函数原型 + * variableUpdated(key: string, since: number) -> boolean + * + * @par Lua示例 + * Variable_Updated = variableUpdated("custom" , 0) + * + * \endchinese + * + * \english + * Whether the named variable has been updated + * + * @param key + * @param since + * @return + * + * @par Python interface prototype + * variableUpdated(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) + * -> bool + * + * @par Lua interface prototype + * variableUpdated(key: string, since: number) -> boolean + * + * @par Lua example + * Variable_Updated = variableUpdated("custom" , 0) + * + * \endchinese + */ + bool variableUpdated(const std::string &key, uint64_t since); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getBool(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: bool) -> bool + * + * @par Lua函数原型 + * getBool(key: string, default_value: boolean) -> boolean + * + * @par Lua示例 + * Bool_var = getBool("custom",false) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getBool","params":["custom",false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getBool(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: bool) -> bool + * + * @par Lua interface prototype + * getBool(key: string, default_value: boolean) -> boolean + * + * @par Lua example + * Bool_var = getBool("custom",false) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getBool","params":["custom",false],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool getBool(const std::string &key, bool default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setBool(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: bool) -> int + * + * @par Lua函数原型 + * setBool(key: string, value: boolean) -> nil + * + * @par Lua示例 + * setBool("custom",true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setBool","params":["custom",true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return Returns 0 on success, otherwise error code + * + * @par Python interface prototype + * setBool(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: bool) -> int + * + * @par Lua interface prototype + * setBool(key: string, value: boolean) -> nil + * + * @par Lua example + * setBool("custom",true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setBool","params":["custom",true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setBool(const std::string &key, bool value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getVecChar(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[str]) + * -> List[str] + * + * @par Lua函数原型 + * getVecChar(key: string, default_value: table) -> table + * + * @par Lua示例 + * VecChar = getVecChar("custom",{}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getVecChar","params":["custom",[]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0,1,0]} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getVecChar(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[str]) + * -> List[str] + * + * @par Lua interface prototype + * getVecChar(key: string, default_value: table) -> table + * + * @par Lua example + * VecChar = getVecChar("custom",{}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getVecChar","params":["custom",[]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0,1,0]} + * + * \endenglish + */ + std::vector getVecChar(const std::string &key, + const std::vector &default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setVecChar(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[str]) + * -> int + * + * @par Lua函数原型 + * setVecChar(key: string, value: table) -> nil + * + * @par Lua示例 + * setVecChar("custom",{0,1,0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setVecChar","params":["custom",[0,1,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return Returns 0 on success, otherwise error code + * + * @par Python interface prototype + * setVecChar(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[str]) + * -> int + * + * @par Lua interface prototype + * setVecChar(key: string, value: table) -> nil + * + * @par Lua example + * setVecChar("custom",{0,1,0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setVecChar","params":["custom",[0,1,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setVecChar(const std::string &key, const std::vector &value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) -> int + * + * @par Lua函数原型 + * getInt32(key: string, default_value: number) -> number + * + * @par Lua示例 + * Int32 = getInt32("custom",0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32","params":["custom",0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) -> int + * + * @par Lua interface prototype + * getInt32(key: string, default_value: number) -> number + * + * @par Lua example + * Int32 = getInt32("custom",0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getInt32","params":["custom",0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6} + * + * \endenglish + */ + int getInt32(const std::string &key, int default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) -> int + * + * @par Lua函数原型 + * setInt32(key: string, value: number) -> nil + * + * @par Lua示例 + * setInt32("custom",6) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32","params":["custom",6],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int) -> int + * + * @par Lua interface prototype + * setInt32(key: string, value: number) -> nil + * + * @par Lua example + * setInt32("custom",6) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setInt32","params":["custom",6],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setInt32(const std::string &key, int value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getVecInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[int]) + * -> List[int] + * + * @par Lua函数原型 + * getVecInt32(key: string, default_value: table) -> table + * + * @par Lua示例 + * VecInt32 = getVecInt32("custom",{}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getVecInt32","params":["custom",[]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1,2,3,4]} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getVecInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[int]) + * -> List[int] + * + * @par Lua interface prototype + * getVecInt32(key: string, default_value: table) -> table + * + * @par Lua example + * VecInt32 = getVecInt32("custom",{}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getVecInt32","params":["custom",[]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1,2,3,4]} + * + * \endenglish + */ + std::vector getVecInt32(const std::string &key, + const std::vector &default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setVecInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[int]) + * -> int + * + * @par Lua函数原型 + * setVecInt32(key: string, value: table) -> nil + * + * @par Lua示例 + * setVecInt32("custom",{1,2,3,4}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setVecInt32","params":["custom",[1,2,3,4]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setVecInt32(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: List[int]) + * -> int + * + * @par Lua interface prototype + * setVecInt32(key: string, value: table) -> nil + * + * @par Lua example + * setVecInt32("custom",{1,2,3,4}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setVecInt32","params":["custom",[1,2,3,4]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setVecInt32(const std::string &key, const std::vector &value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * float + * + * @par Lua函数原型 + * getFloat(key: string, default_value: number) -> number + * + * @par Lua示例 + * var_Float = getFloat("custom",0.0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getFloat","params":["custom",0.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":4.400000095367432} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * float + * + * @par Lua interface prototype + * getFloat(key: string, default_value: number) -> number + * + * @par Lua example + * var_Float = getFloat("custom",0.0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getFloat","params":["custom",0.0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":4.400000095367432} + * + * \endenglish + */ + float getFloat(const std::string &key, float default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> int + * + * @par Lua函数原型 + * setFloat(key: string, value: number) -> nil + * + * @par Lua示例 + * setFloat("custom",4.4) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setFloat","params":["custom",4.4],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> int + * + * @par Lua interface prototype + * setFloat(key: string, value: number) -> nil + * + * @par Lua example + * setFloat("custom",4.4) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setFloat","params":["custom",4.4],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setFloat(const std::string &key, float value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getVecFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> List[float] + * + * @par Lua函数原型 + * getVecFloat(key: string, default_value: table) -> table + * + * @par Lua示例 + * VecFloat = getVecFloat("custom",{}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getVecFloat","params":["custom",[]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.10000000149011612,3.299999952316284]} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getVecFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> List[float] + * + * @par Lua interface prototype + * getVecFloat(key: string, default_value: table) -> table + * + * @par Lua example + * VecFloat = getVecFloat("custom",{}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getVecFloat","params":["custom",[]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.10000000149011612,3.299999952316284]} + * + * \endenglish + */ + std::vector getVecFloat(const std::string &key, + const std::vector &default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setVecFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua函数原型 + * setVecFloat(key: string, value: table) -> nil + * + * @par Lua示例 + * setVecFloat("custom", {0.0,0.1,3.3}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setVecFloat","params":["custom",[0.0,0.1,3.3]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setVecFloat(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua interface prototype + * setVecFloat(key: string, value: table) -> nil + * + * @par Lua example + * setVecFloat("custom", {0.0,0.1,3.3}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setVecFloat","params":["custom",[0.0,0.1,3.3]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setVecFloat(const std::string &key, const std::vector &value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * float + * + * @par Lua函数原型 + * getDouble(key: string, default_value: number) -> number + * + * @par Lua示例 + * var_Double = getDouble("custom",0.0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getDouble","params":["custom",0.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * float + * + * @par Lua interface prototype + * getDouble(key: string, default_value: number) -> number + * + * @par Lua example + * var_Double = getDouble("custom",0.0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getDouble","params":["custom",0.0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getDouble(const std::string &key, double default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * int + * + * @par Lua函数原型 + * setDouble(key: string, value: number) -> nil + * + * @par Lua示例 + * setDouble("custom",6.6) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setDouble","params":["custom",6.6],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: float) -> + * int + * + * @par Lua interface prototype + * setDouble(key: string, value: number) -> nil + * + * @par Lua example + * setDouble("custom",6.6) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setDouble","params":["custom",6.6],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setDouble(const std::string &key, double value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getVecDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> List[float] + * + * @par Lua函数原型 + * getVecDouble(key: string, default_value: table) -> table + * + * @par Lua示例 + * VecDouble = getVecDouble("custom",{}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getVecDouble","params":["custom",[]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.1,0.2,0.3]} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getVecDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> List[float] + * + * @par Lua interface prototype + * getVecDouble(key: string, default_value: table) -> table + * + * @par Lua example + * VecDouble = getVecDouble("custom",{}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getVecDouble","params":["custom",[]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.1,0.2,0.3]} + * + * \endenglish + */ + std::vector getVecDouble(const std::string &key, + const std::vector &default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setVecDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua函数原型 + * setVecDouble(key: string, value: table) -> nil + * + * @par Lua示例 + * setVecDouble("custom",{0.1,0.2,0.3}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setVecDouble","params":["custom",[0.1,0.2,0.3]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return + * + * @par Python interface prototype + * setVecDouble(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua interface prototype + * setVecDouble(key: string, value: table) -> nil + * + * @par Lua example + * setVecDouble("custom",{0.1,0.2,0.3}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setVecDouble","params":["custom",[0.1,0.2,0.3]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setVecDouble(const std::string &key, const std::vector &value); + + /** + * @ingroup RegisterControl + * \chinese + * 获取变量值 + * + * @param key + * @param default_value + * @return + * + * @par Python函数原型 + * getString(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: str) -> str + * + * @par Lua函数原型 + * getString(key: string, default_value: string) -> string + * + * @par Lua示例 + * var_String = getString("custom","") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getString","params":["custom",""],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"test"} + * + * \endchinese + * \english + * Get variable value + * + * @param key + * @param default_value + * @return + * + * @par Python interface prototype + * getString(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: str) -> str + * + * @par Lua interface prototype + * getString(key: string, default_value: string) -> string + * + * @par Lua example + * var_String = getString("custom","") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getString","params":["custom",""],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"test"} + * + * \endenglish + */ + std::string getString(const std::string &key, + const std::string &default_value); + + /** + * @ingroup RegisterControl + * \chinese + * 设置/更新变量值 + * + * @param key + * @param value + * @return + * + * @par Python函数原型 + * setString(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * setString(key: string, value: string) -> nil + * + * @par Lua示例 + * setString("custom","test") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.setString","params":["custom","test"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set or update the variable value + * + * @param key + * @param value + * @return Returns 0 on success, otherwise error code + * + * @par Python interface prototype + * setString(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: str) -> int + * + * @par Lua interface prototype + * setString(key: string, value: string) -> nil + * + * @par Lua example + * setString("custom","test") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.setString","params":["custom","test"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setString(const std::string &key, const std::string &value); + + /** + * @ingroup RegisterControl + * \chinese + * 清除变量 + * + * @param key + * @return + * + * @par Python函数原型 + * clearNamedVariable(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua函数原型 + * clearNamedVariable(key: string) -> nil + * + * @par Lua示例 + * clearNamedVariable("custom") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.clearNamedVariable","params":["custom"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endchinese + * \english + * Clear variable + * + * @param key + * @return + * + * @par Python interface prototype + * clearNamedVariable(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua interface prototype + * clearNamedVariable(key: string) -> nil + * + * @par Lua example + * clearNamedVariable("custom") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.clearNamedVariable","params":["custom"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endenglish + */ + int clearNamedVariable(const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 设置看门狗 + * + * 看门狗被触发之后控制器会执行对应的动作,并自动删除看门狗 + * + * @param key + * @param timeout 超时时间,单位秒(s),超时时间最小为 0.1s + * @param action + * NONE (0): 无动作 + * PAUSE(1): 暂停运行时 + * STOP (2): 停止运行时/停止机器人运动 + * PROTECTIVE_STOP (3): 触发防护停止 + * @return + * \endchinese + * \english + * Set the watchdog + * + * After the watchdog is triggered, the controller will perform the + * corresponding action and automatically delete the watchdog. + * + * @param key + * @param timeout Timeout in seconds (s), minimum timeout is 0.1s + * @param action + * NONE (0): No action + * PAUSE(1): Pause runtime + * STOP (2): Stop runtime/stop robot motion + * PROTECTIVE_STOP (3): Trigger protective stop + * @return + * \endenglish + */ + int setWatchDog(const std::string &key, double timeout, int action); + + /** + * @ingroup RegisterControl + * \chinese + * 获取看门狗动作 + * + * @param key + * @return + * \endchinese + * \english + * Get the watchdog action + * + * @param key + * @return + * \endenglish + */ + int getWatchDogAction(const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 获取看门狗超时时间 + * + * @param key + * @return + * \endchinese + * \english + * Get the watchdog timeout value + * + * @param key + * @return + * \endenglish + */ + int getWatchDogTimeout(const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 添加一个新的Modbus信号以供控制器监视。不需要返回响应。 + * + * @param device_info 设备信息 + * 设备信息是RTU格式,例如:"serial_port,baud,parity,data_bit,stop_bit" + * (1)serial_port参数指定串口的名称,例如,在Linux上为"/dev/ttyS0"或"/dev/ttyUSB0",在Windows上为"\.\COM10" + * (2)baud参数指定通信的波特率,例如9600、19200、57600、115200等 + * (3)parity参数指定奇偶校验方式,N表示无校验,E表示偶校验,O表示奇校验 + * (4)data_bit参数指定数据位数,允许的值为5、6、7和8 + * (5)stop_bit参数指定停止位数,允许的值为1和2 + * + * 设备信息是TCP格式,例如:"ip address,port" + * (1)ip address参数指定服务器的IP地址 + * (2)port参数指定服务器监听的端口号 + * @param slave_number 通常不使用,设置为255即可,但可以在0到255之间自由选择 + * @param signal_address + * 指定新信号应该反映的线圈或寄存器的地址。请参考Modbus单元的配置以获取此信息。 + * @param signal_type 指定要添加的信号类型。0 = 数字输入,1 = 数字输出,2 = + * 寄存器输入,3 = 寄存器输出。 + * @param signal_name + * 唯一标识信号的名词。如果提供的字符串与已添加的信号相等,则新信号将替换旧信号。字符串的长度不能超过20个字符。 + * @param sequential_mode + * 设置为True会强制Modbus客户端在发送下一个请求之前等待响应。某些fieldbus单元需要此模式。可选参数。 + * @return + * + * @par Python函数原型 + * modbusAddSignal(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int, + * arg2: int, arg3: int, arg4: str, arg5: bool) -> int + * + * @par Lua函数原型 + * modbusAddSignal(device_info: string, slave_number: number, + * signal_address: number, signal_type: number, signal_name: string, + * sequential_mode: boolean) -> nil + * + * @par Lua示例 + * modbusAddSignal("/dev/ttyRobotTool,115200,N,8,1", 1, signal_address: + * number, 264, "Modbus_0", false) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusAddSignal","params":["/dev/ttyRobotTool,115200,N,8,1",1,264,3,"Modbus_0",false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Adds a new modbus signal for the controller to supervise. Expects no + * response. + * + * @param device_info is rtu format. + * eg,"serial_port,baud,parity,data_bit,stop_bit" + * (1)The serial_port argument specifies the name of the serial port eg. On + * Linux ,"/dev/ttyS0" or "/dev/ttyUSB0". On Windows, "\.\COM10". (2)The + * baud argument specifies the baud rate of the communication, eg. 9600, + * 19200, 57600, 115200, etc. (3)parity:N for none,E for even,O for odd. + * (4)data_bit:The data_bits argument specifies the number of bits of data, + * the allowed values are 5, 6, 7 and 8. (5)stop_bit:The stop_bits argument + * specifies the bits of stop, the allowed values are 1 and 2. + * + * device_info is tcp format.eg,"ip address,port" + * (1)The ip address parameter specifies the ip address of the server + * (2)The port parameter specifies the port number that the server is + * listening on. + * @param slave_number An integer normally not used and set to 255, but is a + * free choice between 0 and 255. + * @param signal_address An integer specifying the address of the either the + * coil or the register that this new signal should reflect. Consult the + * configuration of the modbus unit for this information. + * @param signal_type An integer specifying the type of signal to add. 0 = + * digital input, 1 = digital output, 2 = register input and 3 = register + * output. + * @param signal_name A string uniquely identifying the signal. If a string + * is supplied which is equal to an already added signal, the new signal + * will replace the old one. The length of the string cannot exceed 20 + * characters. + * @param sequential_mode Setting to True forces the modbus client to wait + * for a response before sending the next request. This mode is required by + * some fieldbus units (Optional). + * @return + * + * @par Python interface prototype + * modbusAddSignal(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: int, + * arg2: int, arg3: int, arg4: str, arg5: bool) -> int + * + * @par Lua interface prototype + * modbusAddSignal(device_info: string, slave_number: number, + * signal_address: number, signal_type: number, signal_name: string, + * sequential_mode: boolean) -> nil + * + * @par Lua example + * modbusAddSignal("/dev/ttyRobotTool,115200,N,8,1", 1, signal_address: + * number, 264, "Modbus_0", false) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusAddSignal","params":["/dev/ttyRobotTool,115200,N,8,1",1,264,3,"Modbus_0",false],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusAddSignal(const std::string &device_info, int slave_number, + int signal_address, int signal_type, + const std::string &signal_name, bool sequential_mode); + + /** + * @ingroup RegisterControl + * \chinese + * 为指定Modbus寄存器信号创建固定读取分组,优化连续地址的批量读取效率 + * + * 功能:根据传入的起始信号名定位到对应的16位Modbus寄存器地址, + * 并基于该起始地址和连续数量创建“不可扩展的固定分组”,该分组会被独立管理, + * 不会与其他普通分组合并或扩展,适用于需要稳定、原子化读取的连续寄存器地址段; + * 固定分组创建后,对该段地址的读取操作会严格按照分组范围执行,避免因动态分组扩展导致的读取范围变化。 + * + * @param signal_name + * 起始信号名(作为固定分组的基准信号,需为已通过modbusAddSignal创建的16位Modbus寄存器信号, + * 支持保持寄存器/输入寄存器类型,不支持数字量信号) + * @param count 固定分组包含的连续信号(寄存器)数量(大于等于1): + * - 值为1: + * 仅包含起始信号对应的单个寄存器地址(取消包含该信号的固定分组); + * - 值>1: + * 从起始信号地址开始的连续count个寄存器地址,需确保地址连续且不超出设备支持范围; + * + * @return 成功返回0,失败返回错误码。 + * + * @note + * 1. 该接口仅针对16位Modbus寄存器信号(signal_type为2/3)生效; + * 2. 单个固定分组的最大连续数量受设备限制(默认最大30个); + * 3. 重复为同一信号创建固定分组会覆盖原有配置(以最后一次的count值为准)。 + * + * @par Python接口原型 + * addFixedModbusGroup(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * int) -> int + * + * @par Lua接口原型 + * addFixedModbusGroup(signal_name: string, count: number) -> nil + * + * @par Lua示例 + * -- 为起始信号"Modbus_0"创建包含10个连续寄存器的固定分组 + * addFixedModbusGroup("Modbus_0", 10) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.addFixedModbusGroup","params":["Modbus_0",10],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Create a fixed read group for the specified Modbus register signal to + * optimize the batch reading efficiency of continuous addresses + * + * Function: Locate the address of the corresponding 16-bit Modbus register + * according to the input start signal name, and create a "non-extensible + * fixed group" based on the start address and continuous count. This group + * will be managed independently, and will not be merged or expanded with + * other normal groups. It is suitable for continuous register address + * segments that require stable and atomic reading; After the fixed group is + * created, the read operation for this address segment will be strictly + * executed according to the group range, avoiding read range changes caused + * by dynamic group expansion. + * + * @param signal_name + * Start signal name (used as the reference signal for the fixed group, must + * be a 16-bit Modbus register signal created via modbusAddSignal, + * supporting holding register/input register types, not supporting digital + * signals) + * @param count Number of continuous signals (registers) contained in the + * fixed group (greater than or equal to 1): + * - Value = 1: Only include the single register address + * corresponding to the start signal (cancel the fixed group containing this + * signal); + * - Value > 1: Continuous count register addresses starting + * from the start signal address, ensure the addresses are continuous and do + * not exceed the device support range; + * + * @return Returns 0 on success, returns an error code on failure. + * + * @note + * 1. This interface only takes effect for 16-bit Modbus register signals + * (signal_type is 2/3); + * 2. The maximum continuous count of a single fixed group is limited by the + * device (default maximum 30); + * 3. Repeated creation of a fixed group for the same start signal will + * overwrite the original configuration (the last count value shall + * prevail). + * + * @par Python interface prototype + * addFixedModbusGroup(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * int) -> int + * + * @par Lua interface prototype + * addFixedModbusGroup(signal_name: string, count: number) -> nil + * + * @par Lua example + * -- Create a fixed group containing 10 consecutive registers for the start + * signal "Modbus_0" addFixedModbusGroup("Modbus_0", 10) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.addFixedModbusGroup","params":["Modbus_0",10],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int addFixedModbusGroup(const std::string &signal_name, int count); + + /** + * @ingroup RegisterControl + * \chinese + * 删除指定名称的信号。 + * + * @param signal_name 要删除的信号的名称 + * @return + * + * @par Python函数原型 + * modbusDeleteSignal(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua函数原型 + * modbusDeleteSignal(signal_name: string) -> nil + * + * @par Lua示例 + * modbusDeleteSignal("Modbus_1") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusDeleteSignal","params":["Modbus_1"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Deletes the signal identified by the supplied signal name. + * + * @param signal_name A string equal to the name of the signal that should + * be deleted. + * @return + * + * @par Python interface prototype + * modbusDeleteSignal(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua interface prototype + * modbusDeleteSignal(signal_name: string) -> nil + * + * @par Lua example + * modbusDeleteSignal("Modbus_1") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusDeleteSignal","params":["Modbus_1"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusDeleteSignal(const std::string &signal_name); + + /** + * @ingroup RegisterControl + * \chinese + * 删除所有modbus信号 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusDeleteAllSignals","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete all modbus signals + * + * @return + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusDeleteAllSignals","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int modbusDeleteAllSignals(); + + /** + * @ingroup RegisterControl + * \chinese + * 读取特定信号的当前值。 + * + * @param signal_name 要获取值的信号的名称 + * @return 对于数字信号:1或0。 + * 对于寄存器信号:表示为整数的寄存器值。如果值为-1,则表示该信号不存在。 + * + * @par Python函数原型 + * modbusGetSignalStatus(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua函数原型 + * modbusGetSignalStatus(signal_name: string) -> number + * + * @par Lua示例 + * var0 = modbusGetSignalStatus("Modbus_0") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalStatus","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + * \english + * Reads the current value of a specific signal. + * + * @param signal_name A string equal to the name of the signal for which the + * value should be gotten. + * @return An integer or a boolean. For digital signals: 1 or 0. For + * register signals: The register value expressed as an integer. If the + * value is -1, it means the signal does not exist. + * + * @par Python interface prototype + * modbusGetSignalStatus(self: pyaubo_sdk.RegisterControl, arg0: str) -> int + * + * @par Lua interface prototype + * modbusGetSignalStatus(signal_name: string) -> number + * + * @par Lua example + * var0 = modbusGetSignalStatus("Modbus_0") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalStatus","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * \endenglish + */ + int modbusGetSignalStatus(const std::string &signal_name); + + /** + * @ingroup RegisterControl + * \chinese + * 获取所有信号的名字集合 + * + * @return 所有信号的名字集合 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalNames","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["Modbus_0"]} + * + * \endchinese + * \english + * Get the collection of all signal names + * + * @return Collection of all signal names + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalNames","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["Modbus_0"]} + * + * \endenglish + */ + std::vector modbusGetSignalNames(); + + /** + * @ingroup RegisterControl + * \chinese + * 获取所有信号的类型集合 + * + * @return 所有信号的类型集合 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalTypes","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1,0,2,3]} + * + * \endchinese + * \english + * Get the collection of all signal types + * + * @return Collection of all signal types + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalTypes","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1,0,2,3]} + * + * \endenglish + */ + std::vector modbusGetSignalTypes(); + + /** + * @ingroup RegisterControl + * \chinese + * 获取所有信号的数值集合 + * + * @return 所有信号的数值集合 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalValues","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1,1,88,33]} + * + * \endchinese + * \english + * Get the collection of all signal values + * + * @return Collection of all signal values + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalValues","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1,1,88,33]} + * + * \endenglish + */ + std::vector modbusGetSignalValues(); + + /** + * @ingroup RegisterControl + * \chinese + * 获取所有信号的请求是否有错误(0:无错误,其他:有错误)集合 + * + * @return ModbusErrorNum + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalErrors","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[6,6,6,6]} + * + * \endchinese + * \english + * Get the error status of all signal requests (0: no error, others: error) + * as a collection + * + * @return ModbusErrorNum + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalErrors","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[6,6,6,6]} + * + * \endenglish + */ + std::vector modbusGetSignalErrors(); + + /** + * @ingroup RegisterControl + * \chinese + * 将用户指定的命令发送到指定IP地址上的Modbus单元。 + * 由于不会接收到响应,因此不能用于请求数据。 + * 用户负责提供对所提供的功能码有意义的数据。 + * 内置函数负责构建Modbus帧,因此用户不需要关心命令的长度。 + * + * @param device_info 设备信息 + * 设备信息是RTU格式,例如:"serial_port,baud,parity,data_bit,stop_bit" + * (1)serial_port参数指定串口的名称,例如,在Linux上为"/dev/ttyS0"或"/dev/ttyUSB0",在Windows上为"\.\COM10" + * (2)baud参数指定通信的波特率,例如9600、19200、57600、115200等 + * (3)parity参数指定奇偶校验方式,N表示无校验,E表示偶校验,O表示奇校验 + * (4)data_bit参数指定数据位数,允许的值为5、6、7和8 + * (5)stop_bit参数指定停止位数,允许的值为1和2 + * + * 设备信息是TCP格式,例如:"ip address,port" + * (1)ip address参数指定服务器的IP地址 + * (2)port参数指定服务器监听的端口号 + * @param slave_number 指定用于自定义命令的从站号 + * @param function_code 指定自定义命令的功能码 + * + * Modbus功能码 + * MODBUS_FC_READ_COILS 0x01 + * MODBUS_FC_READ_DISCRETE_INPUTS 0x02 + * MODBUS_FC_READ_HOLDING_REGISTERS 0x03 + * MODBUS_FC_READ_INPUT_REGISTERS 0x04 + * MODBUS_FC_WRITE_SINGLE_COIL 0x05 + * MODBUS_FC_WRITE_SINGLE_REGISTER 0x06 + * MODBUS_FC_READ_EXCEPTION_STATUS 0x07 + * MODBUS_FC_WRITE_MULTIPLE_COILS 0x0F + * MODBUS_FC_WRITE_MULTIPLE_REGISTERS 0x10 + * MODBUS_FC_REPORT_SLAVE_ID 0x11 + * MODBUS_FC_MASK_WRITE_REGISTER 0x16 + * MODBUS_FC_WRITE_AND_READ_REGISTERS 0x17 + * + * @param data 必须是有效的字节值(0-255) + * @return + * + * @par Python函数原型 + * modbusSendCustomCommand(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: int, arg2: int, arg3: List[int]) -> int + * + * @par Lua函数原型 + * modbusSendCustomCommand(device_info: string, slave_number: number, + * function_code: number, data: table) -> nil + * + * @par Lua示例 + * modbusSendCustomCommand("/dev/ttyRobotTool,115200,N,8,1", 1, 10, + * {1,2,0,2,4,0,0,0,0}) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSendCustomCommand","params":["/dev/ttyRobotTool,115200,N,8,1",1,10,[1,2,0,2,4,0,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sends a command specified by the user to the modbus unit located on the + * specified IP address. Cannot be used to request data, since the response + * will not be received. The user is responsible for supplying data which + * is meaningful to the supplied function code. The builtin function takes + * care of constructing the modbus frame, so the user should not be + * concerned with the length of the command. + * + * @param device_info is rtu format. + * eg,"serial_port,baud,parity,data_bit,stop_bit" + * (1)The serial_port argument specifies the name of the serial port eg. On + * Linux ,"/dev/ttyS0" or "/dev/ttyUSB0". On Windows, "\.\COM10". + * (2)The baud argument specifies the baud rate of the communication, eg. + * 9600, 19200, 57600, 115200, etc. + * (3)parity:N for none,E for even,O for odd. + * (4)data_bit:The data_bits argument specifies the number of bits of data, + * the allowed values are 5, 6, 7 and 8. + * (5)stop_bit:The stop_bits argument + * specifies the bits of stop, the allowed values are 1 and 2. + * + * device_info is tcp format.eg,"ip address,port" + * (1)The ip address parameter specifies the ip address of the server + * (2)The port parameter specifies the port number that the server is + * listening on. + * @param slave_number An integer specifying the slave number to use for + * the custom command. + * @param function_code An integer specifying the function code for the + * custom command. + * + * Modbus function codes + * MODBUS_FC_READ_COILS 0x01 + * MODBUS_FC_READ_DISCRETE_INPUTS 0x02 + * MODBUS_FC_READ_HOLDING_REGISTERS 0x03 + * MODBUS_FC_READ_INPUT_REGISTERS 0x04 + * MODBUS_FC_WRITE_SINGLE_COIL 0x05 + * MODBUS_FC_WRITE_SINGLE_REGISTER 0x06 + * MODBUS_FC_READ_EXCEPTION_STATUS 0x07 + * MODBUS_FC_WRITE_MULTIPLE_COILS 0x0F + * MODBUS_FC_WRITE_MULTIPLE_REGISTERS 0x10 + * MODBUS_FC_REPORT_SLAVE_ID 0x11 + * MODBUS_FC_MASK_WRITE_REGISTER 0x16 + * MODBUS_FC_WRITE_AND_READ_REGISTERS 0x17 + * + * @param data An array of integers in which each entry must be a valid + * byte (0-255) value. + * @return + * + * @par Python interface prototype + * modbusSendCustomCommand(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: int, arg2: int, arg3: List[int]) -> int + * + * @par Lua interface prototype + * modbusSendCustomCommand(device_info: string, slave_number: number, + * function_code: number, data: table) -> nil + * + * @par Lua example + * modbusSendCustomCommand("/dev/ttyRobotTool,115200,N,8,1", 1, 10, + * {1,2,0,2,4,0,0,0,0}) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSendCustomCommand","params":["/dev/ttyRobotTool,115200,N,8,1",1,10,[1,2,0,2,4,0,0,0,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSendCustomCommand(const std::string &device_info, + int slave_number, int function_code, + const std::vector &data); + + /** + * @ingroup RegisterControl + * \chinese + * 将选择的数字输入信号设置为“default”或“freedrive” + * + * @param robot_name 连接的机器人名称 + * @param signal_name 先前被添加的数字输入信号 + * @param action 操作类型。操作可以是“default”或“freedrive” + * @return + * + * @par Python函数原型 + * modbusSetDigitalInputAction(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: str, arg2: int) + * + * @par Lua函数原型 + * modbusSetDigitalInputAction(robot_name: string, signal_name: string, + * action: number) -> nil + * + * @par Lua示例 + * modbusSetDigitalInputAction("rob1", "Modbus_0","Handguide") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetDigitalInputAction","params":["rob1","Modbus_0","Handguide"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sets the selected digital input signal to either a "default" or + * "freedrive" action. + * + * @param robot_name A string identifying a robot name that connected robot + * @param signal_name A string identifying a digital input signal that was + * previously added. + * @param action The type of action. The action can either be "default" or + * "freedrive". (string) + * @return + * + * @par Python interface prototype + * modbusSetDigitalInputAction(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: str, arg2: int) + * + * @par Lua interface prototype + * modbusSetDigitalInputAction(robot_name: string, signal_name: string, + * action: number) -> nil + * + * @par Lua example + * modbusSetDigitalInputAction("rob1", "Modbus_0","Handguide") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetDigitalInputAction","params":["rob1","Modbus_0","Handguide"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetDigitalInputAction(const std::string &robot_name, + const std::string &signal_name, + StandardInputAction action); + + /** + * @ingroup RegisterControl + * \chinese + * 设置 Modbus 信号输出动作 + * + * @param robot_name + * @param signal_name + * @param runstate + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputRunstate","params":["rob1","Modbus_0","None"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set Modbus signal output action + * + * @param robot_name + * @param signal_name + * @param runstate + * @return + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputRunstate","params":["rob1","Modbus_0","None"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int modbusSetOutputRunstate(const std::string &robot_name, + const std::string &signal_name, + StandardOutputRunState runstate); + + /** + * @ingroup RegisterControl + * \chinese + * 设置 Modbus 信号输出动作,并支持基于路点/平面/障碍物的条件阈值判断。 + * + * 详细说明:当需要根据机器人是否到达某个路点或与某个平面/障碍物的距离来触发Modbus信号时, + * 可通过本接口指定条件对象及阈值。在条件满足时会将指定的Modbus信号设置为对应的运行状态。 + * + * @param robot_name 目标机器人的名称,用于标识要监听/触发条件的机器人实例 + * @param signal_name + * 要设置的 Modbus 信号名称(需已通过 modbusAddSignal添加) + * @param runstate 输出动作状态 + * @param object_name 条件对象的名称(需为系统中已定义的唯一标识) + * @param threshold 判断阈值: + * - 对于路点:表示角度阈值,单位为弧度(rad) + * - 对于平面/障碍物:表示距离阈值,单位为米(m) + * + * @return 返回操作结果码: + * - 0: 操作成功 + * - 非0: 操作失败,返回具体错误码(参见系统错误码定义) + * + * @par Python接口原型 + * modbusSetOutputRunstate1(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: str, arg2: str, arg3: str, arg4: float) -> int + * + * @par Lua接口原型 + * modbusSetOutputRunstate1(robot_name: string, signal_name: string, + * runstate: string, object_name: string, threshold: number) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputRunstate1","params":["rob1","Modbus_0","WaypointArrived","P1",3],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @note 使用说明: + * 1. 请确保 object_name 与 object_type 对应且已在系统中定义; + * 2. threshold 的单位依据 object_type 不同而不同, + * 务必使用正确单位以避免触发误判; + * \endchinese + * \english + * Set Modbus signal output action with optional condition checking based on + * waypoint, plane or obstacle thresholds. + * + * Detailed description: Use this API to control a Modbus output signal when + * a specified robot condition is met (for example, waypoint arrival or + * distance to a plane/obstacle). Specify an object type, name and a + * threshold value to enable conditional triggering. When the condition is + * satisfied, the given Modbus signal will be set to the requested + * runstate. + * + * @param robot_name The target robot name identifying which robot's + * conditions to monitor. + * @param signal_name The Modbus signal name to set (must be previously + * added via modbusAddSignal). + * @param runstate The desired output action. + * @param object_name Unique identifier of the condition object + * @param threshold Condition threshold: angle in radians for waypoints, or + * distance in meters for planes/obstacles + * + * @return Returns 0 on success, non-zero error code on failure. + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputRunstate1","params":["rob1","Modbus_0","WaypointArrived","P1",3],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetOutputRunstate1(const std::string &robot_name, + const std::string &signal_name, + StandardOutputRunState runstate, + const std::string &object_name, + double threshold); + + /** + * @ingroup RegisterControl + * \chinese + * 将指定名称的输出寄存器信号设置为给定的值 + * + * @param signal_name 提前被添加的输出寄存器信号 + * @param value 必须是有效的整数,范围是 0-65535 + * @return + * + * @par Python函数原型 + * modbusSetOutputSignal(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * int) -> int + * + * @par Lua函数原型 + * modbusSetOutputSignal(signal_name: string, value: number) -> nil + * + * @par Lua示例 + * modbusSetOutputSignal("Modbus_0",0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignal","params":["Modbus_0",0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sets the output register signal identified by the given name to the given + * value. + * + * @param signal_name A string identifying an output register signal that in + * advance has been added. + * @param value An integer which must be a valid word (0-65535) + * @return + * + * @par Python interface prototype + * modbusSetOutputSignal(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * int) -> int + * + * @par Lua interface prototype + * modbusSetOutputSignal(signal_name: string, value: number) -> nil + * + * @par Lua example + * modbusSetOutputSignal("Modbus_0",0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignal","params":["Modbus_0",0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetOutputSignal(const std::string &signal_name, uint16_t value); + + /** + * @ingroup RegisterControl + * \chinese + * 将从指定名称开始的若干个连续输出寄存器信号设置为给定的值 + * + * @param signal_name 提前被添加的输出寄存器信号的起始名称 + * @param values 整数数组,每个元素范围是 0-65535,对应连续的多个信号 + * @return + * + * @par Python函数原型 + * modbusSetOutputSignal1(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * list[int]) -> int + * + * @par Lua函数原型 + * modbusSetOutputSignal1(signal_name: string, value: table) -> nil + * + * @par Lua示例 + * modbusSetOutputSignal1("Modbus_0", {0, 1, 2}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignal1","params":["Modbus_0",[0,1,2]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sets multiple consecutive output register signals starting from the given + * name to the given values. + * + * @param signal_name A string identifying the starting output register + * signal that in advance has been added. + * @param values An array of integers where each element must be a valid + * word (0-65535), corresponding to multiple consecutive signals + * @return + * + * @par Python interface prototype + * modbusSetOutputSignal1(self: pyaubo_sdk.RegisterControl, arg0: str, arg1: + * list[int]) -> int + * + * @par Lua interface prototype + * modbusSetOutputSignal1(signal_name: string, value: table) -> nil + * + * @par Lua example + * modbusSetOutputSignal1("Modbus_0", {0, 1, 2}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignal1","params":["Modbus_0",[0,1,2]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetOutputSignal1(const std::string &signal_name, + const std::vector &values); + + /** + * \chinese + * 将指定名称的输出寄存器信号设置为给定的值,并且带超时判断 + * + * @param signal_name 提前被添加的输出寄存器信号 + * @param value 必须是有效的整数,范围是 0-65535 + * @param timeout 超时时间,单位秒 + * @return + * + * @par Python函数原型 + * modbusSetOutputSignalWithTimeout(self: pyaubo_sdk.RegisterControl, arg0: + * str, arg1: int, arg2: double) -> int + * + * @par Lua函数原型 + * modbusSetOutputSignalWithTimeout(signal_name: string, value: number, + * timeout: number) -> nil + * + * @par Lua示例 + * modbusSetOutputSignalWithTimeout("Modbus_0",0,0.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignalWithTimeout","params":["Modbus_0",0,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sets the output register signal identified by the given name to the + * given, with timeout value. + * + * @param signal_name A string identifying an output register signal that in + * advance has been added. + * @param value An integer which must be a valid word (0-65535) + * @param timeout seconds + * @return + * + * @par Python interface prototype + * modbusSetOutputSignalWithTimeout(self: pyaubo_sdk.RegisterControl, arg0: + * str, arg1: int, arg2: timeout) -> int + * + * @par Lua interface prototype + * modbusSetOutputSignalWithTimeout(signal_name: string, value: number, + * timeout: number) -> nil + * + * @par Lua example + * modbusSetOutputSignalWithTimeout("Modbus_0",0,0.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignalWithTimeout","params":["Modbus_0",0,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetOutputSignalWithTimeout(const std::string &signal_name, + uint16_t value, double timeout); + + /** + * @ingroup RegisterControl + * \chinese + * 设置modbus信号输出脉冲(仅支持线圈输出类型) + * + * @param signal_name: 提前被添加的输出寄存器信号 + * @param value: 必须是有效的整数,范围是 0-65535 + * @param duration: 信号持续时间,单位为秒 + * @return + * + * @par Python函数原型 + * modbusSetOutputSignalPulse(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: int, arg2 double) -> int + * + * @par Lua函数原型 + * modbusSetOutputSignalPulse(signal_name: string, value: number, duration: + * number) -> nil + * + * @par Lua示例 + * modbusSetOutputSignalPulse("Modbus_0",1,0.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignalPulse","params":["Modbus_0",1,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set modbus signal output pulse (only supports coil output type) + * + * @param signal_name: A string identifying an output register signal that + * has been added in advance. + * @param value: An integer which must be a valid word (0-65535) + * @param duration: Duration of the signal, in seconds + * @return + * + * @par Python interface prototype + * modbusSetOutputSignalPulse(self: pyaubo_sdk.RegisterControl, arg0: str, + * arg1: int, arg2: double) -> int + * + * @par Lua interface prototype + * modbusSetOutputSignalPulse(signal_name: string, value: number, duration: + * number) -> nil + * + * @par Lua example + * modbusSetOutputSignalPulse("Modbus_0",1,0.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetOutputSignalPulse","params":["Modbus_0",1,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int modbusSetOutputSignalPulse(const std::string &signal_name, + uint16_t value, double duration); + + /** + * @ingroup RegisterControl + * \chinese + * 设置机器人向Modbus控制器发送请求的频率,用于读取或写入信号值 + * + * @param signal_name 提前被添加的输出数字信号 + * @param update_frequency 更新频率(以赫兹为单位),范围是0-125 + * @return + * + * @par Python函数原型 + * modbusSetSignalUpdateFrequency(self: pyaubo_sdk.RegisterControl, arg0: + * str, arg1: int) -> int + * + * @par Lua函数原型 + * modbusSetSignalUpdateFrequency(signal_name: string, update_frequency: + * number) -> nil + * + * @par Lua示例 + * modbusSetSignalUpdateFrequency("Modbus_0",1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetSignalUpdateFrequency","params":["Modbus_0",1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Sets the frequency with which the robot will send requests to the Modbus + * controller to either read or write the signal value. + * + * @param signal_name A string identifying an output digital signal that + * in advance has been added. + * @param update_frequency An integer in the range 0-125 specifying the + * update frequency in Hz. + * @return + * + * @par Python interface prototype + * modbusSetSignalUpdateFrequency(self: pyaubo_sdk.RegisterControl, arg0: + * str, arg1: int) -> int + * + * @par Lua interface prototype + * modbusSetSignalUpdateFrequency(signal_name: string, update_frequency: + * number) -> nil + * + * @par Lua example + * modbusSetSignalUpdateFrequency("Modbus_0",1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusSetSignalUpdateFrequency","params":["Modbus_0",1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int modbusSetSignalUpdateFrequency(const std::string &signal_name, + int update_frequency); + + /** + * @ingroup RegisterControl + * \chinese + * 获取指定 modbus 信号索引,从0开始,不能存在则返回-1 + * + * @param signal_name + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalIndex","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the index of the specified modbus signal, starting from 0. Returns -1 + * if it does not exist. + * + * @param signal_name + * @return + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalIndex","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int modbusGetSignalIndex(const std::string &signal_name); + + /** + * @ingroup RegisterControl + * \chinese + * 获取指定 modbus 信号的错误状态 + * + * @param signal_name + * @return 返回错误代码 ModbusErrorNum + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalError","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6} + * \endchinese + * \english + * Get the error status of the specified modbus signal + * + * @param signal_name + * @return Returns error code ModbusErrorNum + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.modbusGetSignalError","params":["Modbus_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6} + * \endenglish + */ + int modbusGetSignalError(const std::string &signal_name); + + /** + * @ingroup RegisterControl + * \chinese + * 获取指定 modbus 设备的连接状态 + * + * @param device_name + * 设备名是TCP格式,"ip:port", 例如:"127.0.0.1:502" \n + * 设备名是RTU格式,"serial_port", 例如:"/dev/ttyUSB0" \n + * + * @return + * 0: 表示设备处于连接状态 + * -1: 表示设备不存在 + * -2: 表示设备处于断开状态 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RegisterControl.getModbusDeviceStatus","params":["172.16.26.248:502"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the connection status of the specified modbus device + * + * @param device_name + * Device name in TCP format: "ip:port", e.g. "127.0.0.1:502" \n + * Device name in RTU format: "serial_port", e.g. "/dev/ttyUSB0" \n + * + * @return + * 0: Device is connected + * -1: Device does not exist + * -2: Device is disconnected + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"RegisterControl.getModbusDeviceStatus","params":["172.16.26.248:502"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getModbusDeviceStatus(const std::string &device_name); + + /** + * @ingroup RegisterControl + * \chinese + * 将某个 modbus 寄存器信号作为编码器 + * + * @param encoder_id 不能为0 + * @param signal_name modbus 信号名字,必须为寄存器类型 + * @return + * \endchinese + * \english + * Use a modbus register signal as an encoder + * + * @param encoder_id Must not be 0 + * @param signal_name Name of the modbus signal, must be of register type + * @return + * \endenglish + */ + int addModbusEncoder(int encoder_id, int range_id, + const std::string &signal_name); + + /** + * @ingroup RegisterControl + * \chinese + * 添加Int32寄存器的虚拟编码器 + * + * @param encoder_id 编码器ID + * @param range_id 范围ID + * @param key 变量名 + * @return + * \endchinese + * \english + * Add a virtual encoder for an Int32 register + * + * @param encoder_id Encoder ID + * @param range_id Range ID + * @param key Variable name + * @return + * \endenglish + */ + int addInt32RegEncoder(int encoder_id, int range_id, + const std::string &key); + + /** + * @ingroup RegisterControl + * \chinese + * 删除虚拟编码器 + * + * @param encoder_id + * @return + * \endchinese + * \english + * Delete virtual encoder + * + * @param encoder_id + * @return + * \endenglish + */ + int deleteVirtualEncoder(int encoder_id); + +protected: + void *d_; +}; +using RegisterControlPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_REGISTER_CONTROL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/force_control.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/force_control.h new file mode 100644 index 00000000..9e5db8e5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/force_control.h @@ -0,0 +1,2624 @@ +/** + * \chinese + * @file force_control.h + * @brief 力控接口 + * + * 力控的限制 + * 当机器人处于力控模式时,以下功能不可用: + * + * • 碰撞检测(选项 613-1)\n + * • SoftMove(选项 885-1)\n + * • 跟踪功能,如输送带跟踪(选项 606-1)、光学跟踪(6601)和焊接引导(815-2)\n + * • 传感器同步或模拟同步\n + * • 世界区域(选项 608-1)\n + * • 独立轴(选项 610-1)\n + * • 路径偏移(选项 612-1)\n + * • 弧焊选项\n + * • PickMaster 选项\n + * • 关节软伺服(指令 SoftAct)\n + * • 当机器人以 MultiMove 协调模式(选项 604-1)运行时,不能激活力控。\n + * • 如果力控与 SafeMove(选项 810-2)或电子位置开关(选项 810-1)一起使用,必须使用操作安全范围功能。请参阅这些选项的相关手册。\n + * • RAPID 指令如 FCAct、FCDeact、FCConditionWaitWhile 和 FCRefStop 只能从运动任务的普通级别调用。 + * + * 应用:抛光、打磨、清洁\n + * FC Pressure\n + * 设置轨迹坐标系的 z 方向为力控轴,spring 设置为 0\n + * 在还没接触前设置输出力为 0,spring 设置为固定值(根据 vel 确定)\n + * 离开接触面:设置输出力为 0,spring 设置为固定值\n + * + * 活塞装配\n + * Forward clutch hub\n + * 设置力控终止模式 + * + * 基于末端力传感器的拖动示教\n + * spring = 0; force_ref = 0; 参考轨迹点任意 + * \endchinese + * \english + * @file force_control.h + * @brief Force control interface + * + * Force control limitations + * When the robot is force controlled, the following functionality is not accessible: + * + * • Collision Detection (option 613-1) \n + * • SoftMove (option 885-1) \n + * • Tracking functionality like Conveyor Tracking (option 606-1), Optical Tracking (6601) and Weld Guide (815-2) \n + * • Sensor Synchronization or Analog Synchronization \n + * • World Zones (option 608-1) \n + * • Independent Axes (option 610-1) \n + * • Path Offset (option 612-1) \n + * • Arc options \n + * • PickMaster options \n + * • Joint soft servo (instruction SoftAct) \n + * • Force Control cannot be activated when the robot is running in MultiMove Coordinated mode (option 604-1). \n + * • If Force Control is used together with SafeMove (option 810-2) or Electronic Position Switches (option 810-1), the function Operational Safety Range must be used. See the respective manual for these options. \n + * • RAPID instructions such as FCAct, FCDeact, FCConditionWaitWhile and FCRefStop can only be called from normal level in a motion task. + * + * Applications: polishing, grinding, cleaning \n + * FC Pressure \n + * Set the z direction of the trajectory coordinate system as the force control axis, set spring to 0 \n + * Before contact, set output force to 0, spring to a fixed value (determined by vel) \n + * Leaving the contact surface: set output force to 0, spring to a fixed value \n + * + * Piston assembly \n + * Forward clutch hub \n + * Set force control termination mode + * + * Drag teaching based on end force sensor \n + * spring = 0; force_ref = 0; reference trajectory point arbitrary + * \endenglish + */ +#ifndef AUBO_SDK_FORCE_CONTROL_INTERFACE_H +#define AUBO_SDK_FORCE_CONTROL_INTERFACE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** +* \chinese + * @defgroup ForceControl ForceControl(力控模块) + * @ingroup RobotInterface + * 力控接口抽象类 + * \endchinese + + * \english + * @defgroup ForceControl Force Control Module + * @ingroup RobotInterface + * Abstract class for force control interface + * \endenglish + */ +class ARCS_ABI_EXPORT ForceControl +{ +public: + ForceControl(); + virtual ~ForceControl(); + + /** + * @ingroup ForceControl + * \chinese + * 使能力控。 + * fcEnable 被用于使能力控。 在力控被使能的同时, + * fcEnable 用于定义力控的坐标系,并调整力和力矩的阻尼。 + * 如果在 fcEnable 中未指定坐标系, + * 则会创建一个默认的力控制坐标系,其方向与工作对象坐标系相同。 + * 所有力控制监管功能都被 fcEnable 激活。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * fcEnable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * fcEnable() -> nil + * + * @par Lua示例 + * fcEnable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.fcEnable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * + * \english + * Start force control + * + * fcEnable is used to enable Force Control. At the same time as Force + * Control is enabled, fcEnable is used to define the coordinate system + * for Force Control, and tune the force and torque damping. If a coordinate + * system is not specified in fcEnable a default force control coordinate + * system is created with the same orientation as the work object coordinate + * system. All Force Control supervisions are activated by fcEnable. + * + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * fcEnable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * fcEnable() -> nil + * + * @par Lua example + * fcEnable() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.fcEnable","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + + int fcEnable(); + + /** + * @ingroup ForceControl + * \chinese + * 失能力控。 + * fcDisable 被用于失能力控。 在成功失能力控之后,机器人将回到位置控制模式。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * fcDisable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * fcDisable() -> nil + * + * @par Lua示例 + * fcDisable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.fcDisable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * End force control + * + * fcDisable is used to disable Force Control. After a successful + * deactivation the robot is back in position control. + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * fcDisable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * fcDisable() -> nil + * + * @par Lua example + * fcDisable() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.fcDisable","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + + int fcDisable(); + + /** + * @ingroup ForceControl + * \chinese + * 判断力控是否被使能 + * + * @return 使能返回true,失能返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isFcEnabled(self: pyaubo_sdk.ForceControl) -> bool + * + * @par Lua函数原型 + * isFcEnabled() -> boolean + * + * @par Lua示例 + * Fc_status = isFcEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isFcEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * + * \english + * Check if force control is enabled + * + * @return Returns true if enabled, false if disabled + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * isFcEnabled(self: pyaubo_sdk.ForceControl) -> bool + * + * @par Lua Function Prototype + * isFcEnabled() -> boolean + * + * @par Lua example + * Fc_status = isFcEnabled() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isFcEnabled","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isFcEnabled(); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控参考(目标)值 + * + * @param feature: 参考几何特征,用于生成力控参考坐标系 + * @param compliance: 柔性轴(方向)选择 + * @param wrench: 目标力/力矩 + * @param limits: 速度限制 + * @param type: 力控参考坐标系类型 + * + * 使用说明: + * 1. 基坐标系: + * feature = {0,0,0,0,0,0} + * type = TaskFrameType::NONE + * + * 2. 法兰坐标系: + * feature = {0,0,0,0,0,0} + * type = TaskFrameType::TOOL_FORCE + * + * 3. TCP坐标系: + * feature = tcp_offset + * type = TaskFrameType::TOOL_FORCE + * + * 4. 用户坐标系(FRAME_FORCE): + * type = TaskFrameType::FRAME_FORCE + * feature 设为用户定义的参考坐标,例如 getTcpPose() 表示以当前 TCP 坐标作为力控坐标系。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setTargetForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[bool], arg2: List[float], arg3: List[float], arg4: + * arcs::common_interface::TaskFrameType) -> int + * + * @par Lua函数原型 + * setTargetForce(feature: table, compliance: table, wrench: table, limits: + * table, type: number) -> nil + * + * @par Lua示例 + * setTargetForce({0,0,0,0,0,0},{true,false,false,false,false,false},{10,0,0,0,0,0},{0,0,0,0,0,0},4) + * + * \endchinese + * \english + * Set force control reference (target) value + * + * @param feature: Reference geometric feature for generating force control reference frame + * @param compliance: Compliance axis (direction) selection + * @param wrench: Target force/torque + * @param limits: Velocity limits + * @param type: Force control reference frame type + * + * Usage Examples: + * 1. Base Coordinate Frame: + * feature = {0,0,0,0,0,0} + * type = TaskFrameType::NONE + * + * 2. Flange Coordinate Frame: + * feature = {0,0,0,0,0,0} + * type = TaskFrameType::TOOL_FORCE + * + * 3. TCP Coordinate Frame: + * feature = tcp_offset + * type = TaskFrameType::TOOL_FORCE + * + * 4. User Coordinate Frame (FRAME_FORCE): + * type = TaskFrameType::FRAME_FORCE + * feature should be the user-defined reference frame, + * for example, getTcpPose() means setting the force control frame to current TCP pose. + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setTargetForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[bool], arg2: List[float], arg3: List[float], arg4: + * arcs::common_interface::TaskFrameType) -> int + * + * @par Lua Function Prototype + * setTargetForce(feature: table, compliance: table, wrench: table, limits: + * table, type: number) -> nil + * + * @par Lua example + * setTargetForce({0,0,0,0,0,0},{true,false,false,false,false,false},{10,0,0,0,0,0},{0,0,0,0,0,0},4) + * + * \endenglish + */ + int setTargetForce(const std::vector &feature, + const std::vector &compliance, + const std::vector &wrench, + const std::vector &limits, + TaskFrameType type = TaskFrameType::FRAME_FORCE); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控动力学模型 + * + * @param env_stiff: 环境刚度,表示为接触轴方向上的工件刚度,取值范围[0, 1],默认为0 + * @param damp_scale: 表征阻尼水平的参数,取值范围[0, 1],默认为0.5 + * @param stiff_scale: 表征软硬程度的参数,取值范围[0, 1],默认为0.5 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDynamicModel1(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> int + * + * @par Lua函数原型 + * setDynamicModel1(env_stiff: table, damp_scale: table, stiff_scale: + * table) -> nil + * + * @par Lua示例 + * setDynamicModel1({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endchinese + * \english + * Set force control dynamics model + * + * @param env_stiff: Environment stiffness, representing the workpiece stiffness in the contact axis direction, range [0, 1], default 0 + * @param damp_scale: Parameter representing damping level, range [0, 1], default 0.5 + * @param stiff_scale: Parameter representing stiffness level, range [0, 1], default 0.5 + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDynamicModel1(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> int + * + * @par Lua Function Prototype + * setDynamicModel1(env_stiff: table, damp_scale: table, stiff_scale: + * table) -> nil + * + * @par Lua example + * setDynamicModel1({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endenglish + */ + int setDynamicModel1(const std::vector &env_stiff, + const std::vector &damp_scale, + const std::vector &stiff_scale); + + /** + * @ingroup ForceControl + * \chinese + * 计算力控动力学模型 + * + * @param env_stiff: 环境刚度,表示为接触轴方向上的工件刚度,取值范围[0, 1],默认为0 + * @param damp_scale: 表征阻尼水平的参数,取值范围[0, 1],默认为0.5 + * @param stiff_scale: 表征软硬程度的参数,取值范围[0, 1],默认为0.5 + * + * @return 力控动力学模型MDK + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * fcCalDynamicModel(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> Tuple[List[float], List[float], List[float]] + * + * @par Lua函数原型 + * fcCalDynamicModel(env_stiff: table, damp_scale: table, stiff_scale: table) -> table + * + * @par Lua示例 + * fc_table = fcCalDynamicModel({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endchinese + * \english + * Calculate force control dynamics model + * + * @param env_stiff: Environment stiffness, representing the workpiece stiffness in the contact axis direction, range [0, 1], default 0 + * @param damp_scale: Parameter representing damping level, range [0, 1], default 0.5 + * @param stiff_scale: Parameter representing stiffness level, range [0, 1], default 0.5 + * + * @return Force control dynamics model MDK + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * fcCalDynamicModel(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> Tuple[List[float], List[float], List[float]] + * + * @par Lua Function Prototype + * fcCalDynamicModel(env_stiff: table, damp_scale: table, stiff_scale: table) -> table + * + * @par Lua example + * fc_table = fcCalDynamicModel({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endenglish + */ + DynamicsModel fcCalDynamicModel(const std::vector &env_stiff, + const std::vector &damp_scale, + const std::vector &stiff_scale); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控搜孔场景下的动力学模型 + * + * @param damp_scale: 表征阻尼水平的参数,取值范围[0, 1],默认为0.5 + * @param stiff_scale: 表征软硬程度的参数,取值范围[0, 1],默认为0.5 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDynamicModelSearch(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float]) -> int + * + * @par Lua函数原型 + * setDynamicModelSearch(damp_scale: table, stiff_scale: table) -> nil + * + * @par Lua示例 + * setDynamicModelSearch({0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endchinese + * \english + * Set force control dynamics model for hole searching scenario + * + * @param damp_scale: Parameter representing damping level, range [0, 1], default 0.5 + * @param stiff_scale: Parameter representing stiffness level, range [0, 1], default 0.5 + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDynamicModelSearch(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float]) -> int + * + * @par Lua Function Prototype + * setDynamicModelSearch(damp_scale: table, stiff_scale: table) -> nil + * + * @par Lua example + * setDynamicModelSearch({0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endenglish + */ + int setDynamicModelSearch(const std::vector &damp_scale, + const std::vector &stiff_scale); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控插/拔孔场景下的动力学模型 + * + * @param damp_scale: 表征阻尼水平的参数,取值范围[0, 1],默认为0.5 + * @param stiff_scale: 表征软硬程度的参数,取值范围[0, 1],默认为0.5 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDynamicModelInsert(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float]) -> int + * + * @par Lua函数原型 + * setDynamicModelInsert(damp_scale: table, stiff_scale: table) -> nil + * + * @par Lua示例 + * setDynamicModelInsert({0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endchinese + * \english + * Set force control dynamics model for insertion/extraction scenario + * + * @param damp_scale: Parameter representing damping level, range [0, 1], default 0.5 + * @param stiff_scale: Parameter representing stiffness level, range [0, 1], default 0.5 + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDynamicModelInsert(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float]) -> int + * + * @par Lua Function Prototype + * setDynamicModelInsert(damp_scale: table, stiff_scale: table) -> nil + * + * @par Lua example + * setDynamicModelInsert({0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endenglish + */ + int setDynamicModelInsert(const std::vector &damp_scale, + const std::vector &stiff_scale); + /** + * @ingroup ForceControl + * \chinese + * 设置力控接触场景下的动力学模型 + * + * @param env_stiff: 表征环境刚度的参数,取值范围[0, 1],默认为0 + * @param damp_scale: 表征阻尼水平的参数,取值范围[0, 1],默认为0.5 + * @param stiff_scale: 表征软硬程度的参数,取值范围[0, 1],默认为0.5 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDynamicModelContact(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> int + * + * @par Lua函数原型 + * setDynamicModelContact(env_stiff: table, damp_scale: table, stiff_scale: + * table) -> nil + * + * @par Lua示例 + * setDynamicModelContact({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endchinese + * \english + * Set force control dynamics model for contact scenario + * + * @param env_stiff: Parameter representing environment stiffness, range [0, 1], default 0 + * @param damp_scale: Parameter representing damping level, range [0, 1], default 0.5 + * @param stiff_scale: Parameter representing stiffness level, range [0, 1], default 0.5 + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDynamicModelContact(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> int + * + * @par Lua Function Prototype + * setDynamicModelContact(env_stiff: table, damp_scale: table, stiff_scale: + * table) -> nil + * + * @par Lua example + * setDynamicModelContact({0,0,0,0,0,0},{0.5,0.5,0.5,0.5,0.5,0.5},{0.5,0.5,0.5,0.5,0.5,0.5}) + * + * \endenglish + */ + int setDynamicModelContact(const std::vector &env_stiff, + const std::vector &damp_scale, + const std::vector &stiff_scale); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控动力学模型 + * + * @param m 质量参数 + * @param d 阻尼参数 + * @param k 刚度参数 + * + * 参数单位说明: + * - 质量: + * - 笛卡尔空间:单位为 kg,长度为工作空间维度(一般为6),顺序为 [x, y, z, Rx, Ry, Rz] + * - 关节空间:单位为 kg·m²,长度为机器人自由度(一般为6),顺序为 [J1, J2, J3, J4, J5, J6] + * - 阻尼: + * - 笛卡尔空间:单位为 N·s/m,顺序为 [x, y, z, Rx, Ry, Rz] + * - 关节空间:单位为 N·m·s/rad,顺序为 [J1, J2, J3, J4, J5, J6] + * - 刚度: + * - 笛卡尔空间:单位为 N/m,顺序为 [x, y, z, Rx, Ry, Rz] + * - 关节空间:单位为 N·m/rad,顺序为 [J1, J2, J3, J4, J5, J6] + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDynamicModel(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: List[float]) -> int + * + * @par Lua函数原型 + * setDynamicModel(m: table, d: table, k: table) -> nil + * + * @par Lua示例 + * setDynamicModel({20.0, 20.0, 20.0, 10.0, 10.0, 10.0},{2000, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0}) + * + * \endchinese + * \english + * Set force control dynamics model + * + * @param m Mass parameters + * @param d Damping parameters + * @param k Stiffness parameters + * + * Parameter unit description: + * - Mass: + * - Cartesian space: unit is kg, length is 6, order is [x, y, z, Rx, Ry, Rz] + * - Joint space: unit is kg·m², length is 6, order is [J1, J2, J3, J4, J5, J6] + * - Damping: + * - Cartesian space: unit is N·s/m, order is [x, y, z, Rx, Ry, Rz] + * - Joint space: unit is N·m·s/rad, order is [J1, J2, J3, J4, J5, J6] + * - Stiffness: + * - Cartesian space: unit is N/m, order is [x, y, z, Rx, Ry, Rz] + * - Joint space: unit is N·m/rad, order is [J1, J2, J3, J4, J5, J6] + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDynamicModel(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: List[float]) -> int + * + * @par Lua Function Prototype + * setDynamicModel(m: table, d: table, k: table) -> nil + * + * @par Lua example + * setDynamicModel({20.0, 20.0, 20.0, 10.0, 10.0, 10.0},{2000, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0}) + * + * \endenglish + */ + int setDynamicModel(const std::vector &m, + const std::vector &d, + const std::vector &k); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控阈值 + * + * @param thresholds: 力控阈值 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * fcSetSensorThresholds(self: pyaubo_sdk.ForceControl, arg0: + * List[float]) -> int + * + * @par Lua函数原型 + * fcSetSensorThresholds(thresholds: table) -> nil + * + * @par Lua示例 + * fcSetSensorThresholds({1.0,1.0,1.0,0.5,0.5,0.5}) + * + * \endch + * \endchinese + * \english + * Set force control thresholds + * + * @param thresholds: Force control thresholds + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * fcSetSensorThresholds(self: pyaubo_sdk.ForceControl, arg0: + * List[float]) -> int + * + * @par Lua Function Prototype + * fcSetSensorThresholds(thresholds: table) -> nil + * + * @par Lua example + * fcSetSensorThresholds({1.0,1.0,1.0,0.5,0.5,0.5}) + * + * \endenglish + */ + int fcSetSensorThresholds(const std::vector &thresholds); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控最大受力限制 + * + * @param limits: 力限制 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * fcSetSensorLimits(self: pyaubo_sdk.ForceControl, arg0: + * List[float]) -> int + * + * @par Lua函数原型 + * fcSetSensorLimits(limits: table) -> nil + * + * @par Lua示例 + * fcSetSensorLimits({200.0,200.0,200.0,50.0,50.0,50.0}) + * + * \endchinese + * \english + * Set force control maximum force limits + * + * @param limits: Force limits + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * fcSetSensorLimits(self: pyaubo_sdk.ForceControl, arg0: + * List[float]) -> int + * + * @par Lua Function Prototype + * fcSetSensorLimits(limits: table) -> nil + * + * @par Lua example + * fcSetSensorLimits({200.0,200.0,200.0,50.0,50.0,50.0}) + * + * \endenglish + */ + int fcSetSensorLimits(const std::vector &limits); + + /** + * @ingroup ForceControl + * \chinese + * 获取力控阈值 + * + * @return 力控最小力阈值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getFcSensorThresholds(self: pyaubo_sdk.ForceControl) -> list + * + * @par Lua函数原型 + * getFcSensorThresholds() -> table + * + * @par Lua函数示例 + * Fc_Thresholds = getFcSensorThresholds() + * + * \endchinese + * \english + * Get force control thresholds + * + * @return Minimum force control thresholds + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * getFcSensorThresholds(self: pyaubo_sdk.ForceControl) -> list + * + * @par Lua Function Prototype + * getFcSensorThresholds() -> table + * + * @par Lua example + * Fc_Thresholds = getFcSensorThresholds() + * + * \endenglish + */ + std::vector getFcSensorThresholds(); + + /** + * @ingroup ForceControl + * \chinese + * 获取最大力限制 + * + * @return 力控最大力限制 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getFcSensorLimits(self: pyaubo_sdk.ForceControl) -> list + * + * @par Lua函数原型 + * getFcSensorLimits() -> table + * + * @par Lua示例 + * Fc_Limits = getFcSensorLimits() + * + * \endchinese + * \english + * Get maximum force limits + * + * @return Force control maximum force limits + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * getFcSensorLimits(self: pyaubo_sdk.ForceControl) -> list + * + * @par Lua Function Prototype + * getFcSensorLimits() -> table + * + * @par Lua example + * Fc_Limits = getFcSensorLimits() + * + * \endenglish + */ + std::vector getFcSensorLimits(); + + /** + * @ingroup ForceControl + * \chinese + * 获取力控动力学模型 + * + * @return 力控动力学模型 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDynamicModel(self: pyaubo_sdk.ForceControl) -> Tuple[List[float], + * List[float], List[float]] + * + * @par Lua函数原型 + * getDynamicModel() -> table + * + * @par Lua示例 + * Fc_Model = getDynamicModel() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.getDynamicModel","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[],[20.0,20.0,20.0,5.0,5.0,5.0],[]]} + * \endchinese + * \english + * Get force control dynamics model + * + * @return Force control dynamics model + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * getDynamicModel(self: pyaubo_sdk.ForceControl) -> Tuple[List[float], + * List[float], List[float]] + * + * @par Lua Function Prototype + * getDynamicModel() -> table + * + * @par Lua example + * Fc_Model = getDynamicModel() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.getDynamicModel","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":[[],[20.0,20.0,20.0,5.0,5.0,5.0],[]]} + * \endenglish + */ + DynamicsModel getDynamicModel(); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控终止条件:力,当测量的力在设置的范围之内,力控算法将保持运行,直到设置的条件不满足,力控将退出 + * + * The condition is lateractivated by calling the instruction + * FCCondWaitWhile, which will wait and hold the program execution while the + * specified condition is true. This allows the reference force, torque and + * movement to continue until the force is outside the specified limits. + * + * A force condition is set up by defining minimum and maximum limits for + * the force in the directions of the force control coordinate system. Once + * activated with FCCondWaitWhile, the program execution will continue to + * wait while the measured force is within its specified limits. + * + * It is possible to specify that the condition is fulfilled when the force + * is outside the specified limits instead. This is done by using the switch + * argument Outside. The condition on force is specified in the force + * control coordinate system. This coordinate system is setup by the user in + * the instruction FCAct. + * + * @param min 各方向最小的力/力矩 + * @param max 各方向最大的力/力矩 + * @param outside false 在设置条件的范围之内有效 + * true 在设置条件的范围之外有效 + * @param timeout + * 时间限制,单位s(秒),从开始力控到达该时间时,不管是否满足力控终止条件,都会终止力控 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: bool, arg3: float) -> int + * + * @par Lua函数原型 + * setCondForce(min: table, max: table, outside: boolean, timeout: number) + * -> nil + * @par Lua示例 + * setCondForce({0.1,0.1,0.1,0.1,0.1,0.1},{50,50,50,5,5,5},{true,true,true,true,true,true},10) + * + * \endchinese + * \english + * Set force control termination condition: Force. When the measured force is within + * the specified range, the force control algorithm will continue to run until the set + * condition is not met, at which point force control will exit. + * + * The condition is lateractivated by calling the instruction + * FCCondWaitWhile, which will wait and hold the program execution while the + * specified condition is true. This allows the reference force, torque and + * movement to continue until the force is outside the specified limits. + * + * A force condition is set up by defining minimum and maximum limits for + * the force in the directions of the force control coordinate system. Once + * activated with FCCondWaitWhile, the program execution will continue to + * wait while the measured force is within its specified limits. + * + * It is possible to specify that the condition is fulfilled when the force + * is outside the specified limits instead. This is done by using the switch + * argument Outside. The condition on force is specified in the force + * control coordinate system. This coordinate system is setup by the user in + * the instruction FCAct. + * + * @param min Minimum force/torque in each direction + * @param max Maximum force/torque in each direction + * @param outside false: valid within the specified range + * true: valid outside the specified range + * @param timeout + * Time limit in seconds; when this time is reached from the start of force control, + * force control will terminate regardless of whether the end condition is met + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: bool, arg3: float) -> int + * + * @par Lua Function Prototype + * setCondForce(min: table, max: table, outside: boolean, timeout: number) + * -> nil + * @par Lua example + * setCondForce({0.1,0.1,0.1,0.1,0.1,0.1},{50,50,50,5,5,5},{true,true,true,true,true,true},10) + * + * \endenglish + */ + int setCondForce(const std::vector &min, + const std::vector &max, bool outside, + double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 设置力控终止条件:姿态,当测量的姿态在设置的范围之内,力控算法将保持运行,直到设置的条件不满足,力控将退出. + * + * setCondOrient is used to set up an end condition for the tool orientation. + * The condition is lateractivated by calling the instruction + * FCCondWaitWhile, which will wait and hold the program execution while the + * specified condition is true. This allows the reference force, torque and + * movement to continue until the orientation is outside the specified + * limits. + * + * An orientation condition is set up by defining a maximum angle and a + * maximum rotation from a reference orientation. The reference orientation + * is either defined by the current z direction of the tool, or by + * specifying an orientation in relation to the z direction of the work + * object. + * + * Once activated, the tool orientation must be within the limits (or + * outside, if the argument Outside is used). + * + * @param frame + * @param max_angle + * @param max_rot + * @param outside + * @param timeout + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondOrient(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: float, arg3: bool, arg4: float) -> int + * + * @par Lua函数原型 + * setCondOrient(frame: table, max_angle: number, max_rot: number, outside: + * boolean, timeout: number) -> nil + * + * @par Lua示例 + * setCondOrient({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},30.0,20.0,true,10.0) + * + * \endchinese + * + * \english + * setCondOrient is used to set up an end condition for the tool orientation. + * The condition will wait and hold the program execution while the + * specified condition is true. This allows the reference force, torque and + * movement to continue until the orientation is outside the specified + * limits. + * + * An orientation condition is set up by defining a maximum angle and a + * maximum rotation from a reference orientation. The reference orientation + * is either defined by the current z direction of the tool, or by + * specifying an orientation in relation to the z direction of the work + * object. + * + * Once activated, the tool orientation must be within the limits (or + * outside, if the argument Outside is used). + * + * @param frame + * @param max_angle + * @param max_rot + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondOrient(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: float, arg3: bool, arg4: float) -> int + * + * @par Lua Function Prototype + * setCondOrient(frame: table, max_angle: number, max_rot: number, outside: + * boolean, timeout: number) -> nil + * + * @par Lua example + * setCondOrient({0.1, 0.3, 0.1, 0.3142, 0.0, 1.571},30.0,20.0,true,10.0) + * + * \endenglish + */ + int setCondOrient(const std::vector &frame, double max_angle, + double max_rot, bool outside, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 指定力控有效平面,x-y平面,z方向有效 + * + * @param plane={A,B,C,D} + * 平面表示方法 Ax +By +Cz + D = 0 + * 其中,n = (A, B, C)是平面的法向量, + * D 是将平面平移到坐标原点所需距离(所以D=0时,平面过原点) + * @param timeout + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondPlane(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float) -> int + * + * @par Lua函数原型 + * setCondPlane(plane: table, timeout: number) -> nil + * + * @par Lua示例 + * setCondPlane({0.1, 0.3, 0.1, 0.3},10.0) + * + * \endchinese + * \english + * Specify a valid force control plane, x-y plane, z direction is valid + * + * @param plane={A,B,C,D} + * Plane equation: Ax + By + Cz + D = 0 + * where n = (A, B, C) is the normal vector of the plane, + * D is the distance required to move the plane to the origin (so D=0 means the plane passes through the origin) + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondPlane(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float) -> int + * + * @par Lua Function Prototype + * setCondPlane(plane: table, timeout: number) -> nil + * + * @par Lua example + * setCondPlane({0.1, 0.3, 0.1, 0.3},10.0) + * + * \endenglish + */ + int setCondPlane(const std::vector &plane, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 指定力控有效圆柱体,提供中心轴和圆柱半径,可以指定圆柱内部还是外部 + * + * @param axis + * @param radius + * @param outside + * @param timeout + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondCylinder(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: bool, arg3: float) -> int + * + * @par Lua函数原型 + * setCondCylinder(axis: table, radius: number, outside: boolean, timeout: + * number) -> nil + * + * @par Lua示例 + * setCondCylinder({0,1,0},10.0,true,5,0) + * + * \endchinese + * \english + * Specify a valid force control cylinder by providing the central axis and cylinder radius, and specify whether the inside or outside of the cylinder is valid. + * + * @param axis + * @param radius + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondCylinder(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: bool, arg3: float) -> int + * + * @par Lua Function Prototype + * setCondCylinder(axis: table, radius: number, outside: boolean, timeout: + * number) -> nil + * + * @par Lua example + * setCondCylinder({0,1,0},10.0,true,5,0) + * + * \endenglish + */ + int setCondCylinder(const std::vector &axis, double radius, + bool outside, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 指定力控有效球体,提供球心和半径,可以指定球体内部还是外部 + * + * @param center + * @param radius + * @param outside + * @param timeout + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondSphere(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: bool, arg3: float) -> int + * + * @par Lua函数原型 + * setCondSphere(center: table, radius: number, outside: boolean, timeout: + * number) -> nil + * + * @par Lua示例 + * setCondSphere({0.2, 0.5, 0.1, 1.57, 0, 0},10.0,true,5,0) + * + * \endchinese + * \english + * Specify a valid force control sphere by providing the center and radius, and specify whether the inside or outside of the sphere is valid. + * + * @param center + * @param radius + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondSphere(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: bool, arg3: float) -> int + * + * @par Lua Function Prototype + * setCondSphere(center: table, radius: number, outside: boolean, timeout: + * number) -> nil + * + * @par Lua example + * setCondSphere({0.2, 0.5, 0.1, 1.57, 0, 0},10.0,true,5,0) + * + * \endenglish + */ + int setCondSphere(const std::vector ¢er, double radius, + bool outside, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 设置TCP速度的终止条件。该条件可通过调用FCCondWaitWhile指令激活, + * 在指定条件为真时,程序将等待并保持执行。这样可以使参考力、力矩和运动继续, + * 直到速度超出指定范围。 + * + * 通过定义TCP在工作对象所有方向上的最小和最大速度限制来设置TCP速度条件。 + * 一旦通过FCCondWaitWhile激活,程序将在测量速度处于指定范围内时继续等待。 + * + * 也可以指定当速度超出指定范围时条件成立,通过使用outside参数实现。 + * TCP速度条件在工作对象坐标系中指定。 + * + * @param min 最小速度 + * @param max 最大速度 + * @param outside 是否在范围外有效 + * @param timeout 超时时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondTcpSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: bool, arg3: float) -> int + * + * @par Lua函数原型 + * setCondTcpSpeed(min: table, max: table, outside: boolean, timeout: + * number) -> nil + * + * @par Lua示例 + * setCondTcpSpeed({0.2, 0.2, 0.2, 0.2, 0.2, 0.2},{1.2, 1.2, 1.2, 1.2, 1.2, 1.2},true,5,0) + * + * \endchinese + * \english + * setCondTcpSpeed is used to setup an end condition for the TCP speed. The + * condition is later activated by calling the instruction FCCondWaitWhile, + * which will wait and hold the program execution while the specified + * condition is true. This allows the reference force, torque and movement + * to continue until the speed is outside the specified limits. + * + * A TCP speed condition is set up by defining minimum and maximum limits + * for the TCP speed in all directions of the work object. Once activated + * with FCCondWaitWhile, the program execution will continue to wait while + * the measured speed is within its specified limits. + * + * It is possible to specify that the condition is fulfilled when the speed + * is outside the specified limits instead. This is done by using the + * switch argument Outside. The condition on TCP speed is specified in the + * work object coordinate system. + * + * @param min + * @param max + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondTcpSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float], arg2: bool, arg3: float) -> int + * + * @par Lua Function Prototype + * setCondTcpSpeed(min: table, max: table, outside: boolean, timeout: + * number) -> nil + * + * @par Lua example + * setCondTcpSpeed({0.2, 0.2, 0.2, 0.2, 0.2, 0.2},{1.2, 1.2, 1.2, 1.2, 1.2, 1.2},true,5,0) + * + * \endenglish + */ + int setCondTcpSpeed(const std::vector &min, + const std::vector &max, bool outside, + double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 力控终止条件-距离 + * + * @param distance 距离 + * @param timeout 超时时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setCondDistance(distance: number, timeout: number) + * + * @par Lua示例 + * setCondDistance(0.2, 10.0) + * + * \endchinese + * \english + * Force control termination condition - distance + * + * @param distance Distance + * @param timeout Timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua Function Prototype + * setCondDistance(distance: number, timeout: number) + * + * @par Lua example + * setCondDistance(0.2, 10.0) + * + * \endenglish + */ + int setCondDistance(double distance, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 高级力控终止条件 + * + * @param type 类型 + * @param args 参数 + * @param timeout 超时时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setCondAdvanced(type: number, args: table, timeout: number) + * + * @par Lua示例 + * setCondAdvanced(1, {0,1,0,0,0,0},10) + * + * \endchinese + * \english + * Advanced force control termination condition + * + * @param type Type + * @param args Arguments + * @param timeout Timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua Function Prototype + * setCondAdvanced(type: number, args: table, timeout: number) + * + * @par Lua example + * setCondAdvanced(1, {0,1,0,0,0,0},10) + * + * \endenglish + */ + int setCondAdvanced(const std::string &type, + const std::vector &args, double timeout); + + /** + * @ingroup ForceControl + * \chinese + * 激活力控终止条件 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCondActive(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * setCondActive() -> nil + * + * @par Lua示例 + * setCondActive() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.setCondActive","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Activate force control termination condition + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setCondActive(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * setCondActive() -> nil + * + * @par Lua example + * setCondActive() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.setCondActive","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setCondActive(); + + /** + * @ingroup ForceControl + * \chinese + * 力控终止条件是否已经满足 + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isCondFullfiled(self: pyaubo_sdk.ForceControl) -> bool + * + * @par Lua函数原型 + * isCondFullfiled() -> boolean + * + * @par Lua示例 + * status = isCondFullfiled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isCondFullfiled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Check if the force control termination condition has been fulfilled + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * isCondFullfiled(self: pyaubo_sdk.ForceControl) -> bool + * + * @par Lua Function Prototype + * isCondFullfiled() -> boolean + * + * @par Lua example + * status = isCondFullfiled() + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isCondFullfiled","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isCondFullfiled(); + + /** + * @ingroup ForceControl + * \chinese + * setSupvForce 用于在力控中设置力监督。监督在通过 FCAct 指令激活力控时被激活。 + * + * 力监督通过在力控坐标系的各个方向上定义最小和最大力限制来设置。 + * 一旦激活,如果力超出允许的范围,监督将停止执行。力监督在力控坐标系中指定。 + * 该坐标系由用户通过 FCAct 指令设置。 + * + * @param min 最小力限制 + * @param max 最大力限制 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float]) -> int + * + * @par Lua函数原型 + * setSupvForce(min: table, max: table) -> nil + * + * @par Lua示例 + * setSupvForce({0.1 ,0.1 ,0.1 ,0.1 ,0.1 ,0.1}, {10.0 ,10.0 ,10.0 ,10.0 ,10.0 ,10.0}) + * + * \endchinese + * \english + * setSupvForce is used to set up force supervision in Force Control. The + * supervision is activated when Force Control is activated with the + * instruction FCAct. + * + * The force supervision is set up by defining minimum and maximum limits + * for the force in the directions of the force control coordinate system. + * Once activated, the supervision will stop the execution if the force is + * outside the allowed values. The force supervision is specified in the + * force control coordinate system. This coordinate system is setup by the + * user with the instruction FCAct. + * + * @param min + * @param max + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvForce(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float]) -> int + * + * @par Lua Function Prototype + * setSupvForce(min: table, max: table) -> nil + * + * @par Lua example + * setSupvForce({0.1 ,0.1 ,0.1 ,0.1 ,0.1 ,0.1}, {10.0 ,10.0 ,10.0 ,10.0 ,10.0 ,10.0}) + * + * \endenglish + */ + int setSupvForce(const std::vector &min, + const std::vector &max); + + /** + * @ingroup ForceControl + * \chinese + * setSupvOrient 用于设置工具姿态的监督条件。 + * 当通过 FCAct 指令激活力控时,监督条件被激活。 + * + * 姿态监督通过定义相对于参考姿态的最大角度和最大旋转来设置。 + * 参考姿态可以由工具当前的z方向定义,也可以通过指定相对于工作对象z方向的姿态来定义。 + * + * 一旦激活,工具姿态必须在限制范围内,否则监督将停止执行。 + * + * @param frame + * @param max_angle + * @param max_rot + * @param outside + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvOrient(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: float, arg3: bool) -> int + * + * @par Lua函数原型 + * setSupvOrient(frame: table, max_angle: number, max_rot: number, + * outside: boolean) -> nil + * \endchinese + * \english + * setSupvOrient is used to set up an supervision for the tool orientation. + * The supervision is activated when Force Control is activated with the + * instruction FCAct. + * + * An orientation supervision is set up by defining a maximum angle and a + * maximum rotation from a reference orientation. The reference orientation + * is either defined by the current z direction of the tool, or by + * specifying an orientation in relation to the z direction of the work + * object. + * + * Once activated, the tool orientation must be within the limits otherwise + * the supervision will stop the execution. + * + * @param frame + * @param max_angle + * @param max_rot + * @param outside + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvOrient(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * float, arg2: float, arg3: bool) -> int + * + * @par Lua Function Prototype + * setSupvOrient(frame: table, max_angle: number, max_rot: number, + * outside: boolean) -> nil + * \endenglish + */ + int setSupvOrient(const std::vector &frame, double max_angle, + double max_rot, bool outside); + + /** + * @ingroup ForceControl + * \chinese + * setSupvPosBox 用于在力控中设置位置监督。监督在通过 FCAct 指令激活力控时被激活。 + * 位置监督通过为TCP定义空间体积来设置。一旦激活,如果TCP超出该体积,监督将停止执行。 + * + * @param frame + * @param box + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvPosBox(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float[6]]) -> int + * + * @par Lua函数原型 + * setSupvPosBox(frame: table, box: table) -> nil + * \endchinese + * \english + * setSupvPosBox is used to set up position supervision in Force Control. + * Supervision is activated when Force Control is activated with the + * instruction FCAct. Position supervision is set up by defining a volume in + * space for the TCP. Once activated, the supervision will stop the + * execution if the TCP is outside this volume. + * + * @param frame + * @param box + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvPosBox(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float[6]]) -> int + * + * @par Lua Function Prototype + * setSupvPosBox(frame: table, box: table) -> nil + * \endenglish + */ + int setSupvPosBox(const std::vector &frame, const Box &box); + + /** + * @ingroup ForceControl + * \chinese + * + * @param frame + * @param cylinder + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvPosCylinder(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float[5]]) -> int + * + * @par Lua函数原型 + * setSupvPosCylinder(frame: table, cylinder: table) -> nil + * + * \endchinese + * \english + * + * @param frame + * @param cylinder + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvPosCylinder(self: pyaubo_sdk.ForceControl, arg0: List[float], + * arg1: List[float[5]]) -> int + * + * @par Lua Function Prototype + * setSupvPosCylinder(frame: table, cylinder: table) -> nil + * + * \endenglish + */ + int setSupvPosCylinder(const std::vector &frame, + const Cylinder &cylinder); + + /** + * @ingroup ForceControl + * \chinese + * + * @param frame + * @param sphere + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvPosSphere(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float[3]]) -> int + * + * @par Lua函数原型 + * setSupvPosSphere(frame: table, sphere: table) -> nil + * + * \endchinese + * \english + * + * @param frame + * @param sphere + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvPosSphere(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: + * List[float[3]]) -> int + * + * @par Lua Function Prototype + * setSupvPosSphere(frame: table, sphere: table) -> nil + * + * \endenglish + */ + int setSupvPosSphere(const std::vector &frame, + const Sphere &sphere); + + /** + * @ingroup ForceControl + * \chinese + * setSupvReoriSpeed 用于在力控中设置重新定向速度监督。监督在通过 FCAct 指令激活力控时被激活。 + * + * 重新定向速度监督通过定义工作对象坐标系轴周围重新定向速度的最小和最大限制来设置。 + * 一旦激活,如果重新定向速度的值过高,监督将停止执行。 + * + * 有两种速度监督:FCSupvReoriSpeed 和 FCSupvTCPSpeed,后者在第199页的 FCSupvTCPSpeed 部分有描述。 + * 可能需要两种监督,因为: + * - 机器人轴可以在 TCP 静止时高速旋转。 + * - 当 TCP 距离旋转轴较远时,轴的微小旋转可能导致 TCP 的高速运动。 + * + * @param speed_limit 速度限制 + * @param outside 是否在范围外有效 + * @param timeout 超时时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvReoriSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: bool, arg2: float) -> int + * + * @par Lua函数原型 + * setSupvReoriSpeed(speed_limit: table, outside: boolean, timeout: number) -> nil + * \endchinese + * \english + * setSupvReoriSpeed is used to set up reorientation speed supervision in Force Control. The supervision is activated when Force Control is activated with the instruction FCAct. + * + * The reorientation speed supervision is set up by defining minimum and maximum limits for the reorientation speed around the axis of the work object coordinate system. Once activated, the supervision will stop the execution if the values of the reorientation speed are too high. + * + * There are two speed supervisions: FCSupvReoriSpeed and FCSupvTCPSpeed, which is described in section FCSupvTCPSpeed on page 199. + * Both supervisions may be required because: + * - A robot axis can rotate with high speed while the TCP is stationary. + * - The TCP can be far from the rotating axis and a small axis rotation may result in a high speed movement of the TCP. + * + * @param speed_limit + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvReoriSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: bool, arg2: float) -> int + * + * @par Lua Function Prototype + * setSupvReoriSpeed(speed_limit: table, outside: boolean, timeout: number) -> nil + * \endenglish + */ + int setSupvReoriSpeed(const std::vector &speed_limit, bool outside, + double timeout); + + /** + * @ingroup ForceControl + * \chinese + * setSupvTcpSpeed 用于在力控中设置TCP速度监督。监督在通过 FCAct 指令激活力控时被激活。 + * TCP速度监督通过定义工作对象坐标系各方向上的最小和最大速度限制来设置。 + * 一旦激活,如果检测到过高的TCP速度值,监督将停止执行。 + * + * 有两种速度监督:FCSupvTCPSpeed 和 FCSupvReoriSpeed,后者在第197页的 FCSupvReoriSpeed 部分有描述。 + * + * 可能需要两种监督,因为: + * - 机器人轴可以在TCP静止时高速旋转。 + * - 当TCP距离旋转轴较远时,轴的微小旋转可能导致TCP的高速运动。 + * + * @param speed_limit 速度限制 + * @param outside 是否在范围外有效 + * @param timeout 超时时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSupvTcpSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: bool, arg2: float) -> int + * + * @par Lua函数原型 + * setSupvTcpSpeed(speed_limit: table, outside: boolean, timeout: number) -> nil + * \endchinese + * \english + * setSupvTcpSpeed is used to set up TCP speed supervision in Force Control. + * The supervision is activated when Force Control is activated with the + * instruction FCAct. The TCP speed supervision is set up by defining + * minimum and maximum limits for the TCP speed in the directions of the + * work object coordinate system. Once activated, the supervision will stop + * the execution if too high TCP speed values are detected. + * + * There are two speed supervisions: FCSupvTCPSpeed and FCSupvReoriSpeed, + * which is described in section FCSupvReoriSpeed on page 197. + * + * Both supervisions may be required because: + * - A robot axis can rotate with high speed while the TCP is stationary. + * - The TCP can be far from the rotating axis and a small axis rotation may + * result in a high speed movement of the TCP. + * + * @param speed_limit + * @param outside + * @param timeout + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setSupvTcpSpeed(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: bool, arg2: float) -> int + * + * @par Lua Function Prototype + * setSupvTcpSpeed(speed_limit: table, outside: boolean, timeout: number) -> nil + * \endenglish + */ + int setSupvTcpSpeed(const std::vector &speed_limit, bool outside, + double timeout); + + // 设置低通滤波器 + // --- force frame filter: 过滤测量到的力/力矩 + // +++ force loop filter: 力控输出参考速度的滤波器 + + /** + * @ingroup ForceControl + * \chinese + * 设置低通滤波器 + * + * --- force frame filter: 过滤测量到的力/力矩 + * +++ force loop filter: 力控输出参考速度的滤波器 + * + * @param cutoff_freq 截止频率 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setLpFilter(self: pyaubo_sdk.ForceControl, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setLpFilter(cutoff_freq: table) -> nil + * \endchinese + * \english + * Set low-pass filter + * + * --- force frame filter: filter measured force/torque + * +++ force loop filter: filter for force control output reference speed + * + * FCSetLPFilterTune is used to change the response of force loop according to + * the description in Damping and LP-filter on page 103. + * + * @param cutoff_freq Cutoff frequency + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setLpFilter(self: pyaubo_sdk.ForceControl, arg0: List[float]) -> int + * + * @par Lua Function Prototype + * setLpFilter(cutoff_freq: table) -> nil + * \endenglish + */ + int setLpFilter(const std::vector &cutoff_freq); + + /** + * @ingroup ForceControl + * \chinese + * 重置低通滤波器 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resetLpFilter(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * resetLpFilter() -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.resetLpFilter","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Reset low-pass filter + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * resetLpFilter(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * resetLpFilter() -> nil + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.resetLpFilter","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int resetLpFilter(); + + /** + * @ingroup ForceControl + * \chinese + * speedChangeEnable 用于激活 FC SpeedChange 功能,并设置期望的参考力和恢复行为。 + * 当 FC SpeedChange 功能被激活时,机器人速度会根据测量信号与参考值的接近程度自动降低或提高。 + * + * @param ref_force 参考力 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * speedChangeEnable(self: pyaubo_sdk.ForceControl, arg0: float) -> int + * + * @par Lua函数原型 + * speedChangeEnable(ref_force: number) -> nil + * \endchinese + * \english + * The speedChangeEnable is used to activate FC SpeedChange function with desired + * reference and recover behavior. When FC SpeedChange function is active, + * the robot speed will be reduced/increased in order to keep the measured + * signal close to the reference. + * + * @param ref_force + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * speedChangeEnable(self: pyaubo_sdk.ForceControl, arg0: float) -> int + * + * @par Lua Function Prototype + * speedChangeEnable(ref_force: number) -> nil + * \endenglish + */ + int speedChangeEnable(double ref_force); + + /** + * @ingroup ForceControl + * \chinese + * 停用 FC SpeedChange 功能。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * speedChangeDisable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * speedChangeDisable() -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.speedChangeDisable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Deactivate FC SpeedChange function. + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * speedChangeDisable(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * speedChangeDisable() -> nil + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.speedChangeDisable","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int speedChangeDisable(); + + /** + * @ingroup ForceControl + * \chinese + * speedChangeTune 用于将 FC SpeedChange 系统参数设置为新值。 + * + * @param speed_levels 速度级别 + * @param speed_ratio_min 最小速度比例 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * speedChangeTune(self: pyaubo_sdk.ForceControl, arg0: int, arg1: float) -> int + * + * @par Lua函数原型 + * speedChangeTune(speed_levels: number, speed_ratio_min: number) -> nil + * \endchinese + * \english + * speedChangeTune is used to set FC SpeedChange system parameters to a new value. + * + * @param speed_levels + * @param speed_ratio_min + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * speedChangeTune(self: pyaubo_sdk.ForceControl, arg0: int, arg1: float) -> int + * + * @par Lua Function Prototype + * speedChangeTune(speed_levels: number, speed_ratio_min: number) -> nil + * \endenglish + */ + int speedChangeTune(int speed_levels, double speed_ratio_min); + + /* Defines how many Newtons are required to make the robot move 1 m/s. The + higher the value, the less responsive the robot gets. + The damping can be tuned (as a percentage of the system parameter values) + by the RAPID instruction FCAct. */ + // 设置阻尼系数,阻尼的系统参数需要通过配置文件设置 + // [damping_fx, damping_fy, damping_fz, damping_tx, damping_ty, damping_tz] + // A value between min and 10,000,000 Ns/m. + // A value between minimum and 10,000,000 Nms/rad. + + /** + * @ingroup ForceControl + * \chinese + * setDamping 用于在力控坐标系中调整阻尼。可调参数包括扭矩x方向到扭矩z方向的阻尼(见第255页)以及力x方向到力z方向的阻尼(见第254页)。 + * + * 阻尼可以通过配置文件或FCAct指令设置。不同之处在于本指令可在力控激活时使用。FCSetDampingTune调整的是FCAct指令设置的实际值,而不是配置文件中的值。 + * + * @param damping 阻尼参数 + * @param ramp_time 斜坡时间 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDamping(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: float) -> int + * + * @par Lua函数原型 + * setDamping(damping: table, ramp_time: number) -> nil + * \endchinese + * \english + * setDamping is used to tune the damping in the force control coordinate systems. The parameters tuned are those described in Damping in Torque x Direction - Damping in Torque z Direction on page 255 and Damping in Force x Direction - Damping in Force z Direction on page 254. + * + * Damping can be set in the configuration file or by the instruction FCAct. The difference is that this instruction can be used when force control is active. FCSetDampingTune tunes the actual values set by the instruction FCAct, not the value in the configuration file. + * + * @param damping + * @param ramp_time + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * setDamping(self: pyaubo_sdk.ForceControl, arg0: List[float], arg1: float) -> int + * + * @par Lua Function Prototype + * setDamping(damping: table, ramp_time: number) -> nil + * \endenglish + */ + int setDamping(const std::vector &damping, double ramp_time); + + /** + * @ingroup ForceControl + * \chinese + * 重置阻尼参数 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resetDamping(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua函数原型 + * resetDamping() -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.resetDamping","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Reset damping parameters + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python Function Prototype + * resetDamping(self: pyaubo_sdk.ForceControl) -> int + * + * @par Lua Function Prototype + * resetDamping() -> nil + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.resetDamping","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int resetDamping(); + + /** + * @ingroup ForceControl + * \chinese + * 启用软浮动功能。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.softFloatEnable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Enable soft float function. + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.softFloatEnable","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int softFloatEnable(); + + /** + * @ingroup ForceControl + * \chinese + * 停用软浮动功能。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.softFloatDisable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endchinese + * \english + * Disable soft float function. + * + * @return Return 0 if succeeded; return error code if failed + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.softFloatDisable","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endenglish + */ + int softFloatDisable(); + + /** + * @ingroup ForceControl + * \chinese + * 返回是否开启了软浮动 + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isSoftFloatEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Returns whether soft float is enabled + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC Request example + * {"jsonrpc":"2.0","method":"rob1.ForceControl.isSoftFloatEnabled","params":[],"id":1} + * + * @par JSON-RPC Response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isSoftFloatEnabled(); + + /** + * @ingroup ForceControl + * \chinese + * 设置软浮动参数 + * + * @param joint_softfloat 是否在关节空间启用软浮动 + * @param select 选择哪些自由度启用软浮动 + * @param stiff_percent 刚度百分比 + * @param stiff_damp_ratio 刚度阻尼比 + * @param force_threshold 力阈值 + * @param force_limit 力限制 + * @return 返回0表示成功,其他为错误码 + * \endchinese + * \english + * Set soft float parameters + * + * @param joint_softfloat Whether to enable soft float in joint space + * @param select Select which degrees of freedom to enable soft float + * @param stiff_percent Stiffness percentage + * @param stiff_damp_ratio Stiffness damping ratio + * @param force_threshold Force threshold + * @param force_limit Force limit + * @return Return 0 if succeeded, otherwise error code + * \endenglish + */ + int setSoftFloatParams(bool joint_space, const std::vector &select, + const std::vector &stiff_percent, + const std::vector &stiff_damp_ratio, + const std::vector &force_threshold, + const std::vector &force_limit); + + /** + * @ingroup ForceControl + * \chinese + * 检测工具和外部物体的接触 + * + * @param direction + * 预期的接触方向,如果所有的元素为0,表示检测所有方向的接触 + * @return + * 返回从当前点回退到碰撞开始点的周期步数,如果返回值为0,表示没有接触 + * \endchinese + * \english + * Detect contact between the tool and external objects + * + * @param direction + * Expected contact direction. If all elements are 0, detect contact in all directions. + * @return + * Returns the number of cycle steps back from the current point to the collision start point. If the return value is 0, no contact is detected. + * \endenglish + */ + int toolContact(const std::vector &direction); + + /** + * @ingroup ForceControl + * \chinese + * @brief 获取历史关节角度 + * + * 根据给定的周期步数,从关节状态历史中回退指定数量的周期,获取当时的关节角度数据。 + * + * @param steps + * 需要回退的周期数(单位:控制周期数),值越大表示获取越早的历史数据 + * @return std::vector + * 对应时间点的各关节角度(单位:弧度) + * \endchinese + * \english + * @brief Get historical joint positions + * + * According to the given number of cycle steps, go back the specified number of cycles from the joint state history to obtain the joint position data at that time. + * + * @param steps + * Number of cycles to go back (unit: control cycles), the larger the value, the earlier the historical data is obtained + * @return std::vector + * Joint positions (unit: radians) at the corresponding time point + * \endenglish + */ + std::vector getActualJointPositionsHistory(int steps); + +protected: + void *d_{ nullptr }; +}; +using ForceControlPtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_FORCE_CONTROL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/io_control.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/io_control.h new file mode 100644 index 00000000..c309f2ba --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/io_control.h @@ -0,0 +1,6079 @@ +/** @file io_control.h + * @brief IO控制接口 + */ +#ifndef AUBO_SDK_IO_CONTROL_INTERFACE_H +#define AUBO_SDK_IO_CONTROL_INTERFACE_H + +#include +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup IoControl IoControl (IO输入输出控制) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup IoControl IO Input/Output Control + * @ingroup RobotInterface + * \endenglish + * + * \chinese + * IoControl类提供了一系列的接口对机器人标配的一些数字、模拟IO进行配置,输出状态设置、读取 + * + * 1. 获取各种IO的数量 \n + * 2. 配置IO的输入输出功能 \n + * 3. 可配置IO的配置 \n + * 4. 模拟IO的输入输出范围设置、读取 + * + * 标准数字输入输出:控制柜IO面板上的标准IO \n + * 工具端数字输入输出:通过工具末端航插暴露的数字IO \n + * 可配置输入输出:可以配置为安全IO或者普通数字IO \n + * \endchinese + * \english + * The IoControl class provides a series of interfaces for configuring and + * reading the robot's standard digital and analog IO, as well as setting output + * states. + * + * 1. Get the number of various IOs \n + * 2. Configure IO input/output functions \n + * 3. Configuration of configurable IOs \n + * 4. Set and read the input/output range of analog IOs + * + * Standard digital input/output: Standard IOs on the control cabinet IO panel + * \n Tool digital input/output: Digital IOs exposed via the tool-end connector + * \n Configurable input/output: Can be configured as safety IO or general + * digital IO \n \endenglish + */ +class ARCS_ABI_EXPORT IoControl +{ +public: + IoControl(); + virtual ~IoControl(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输入数量 + * + * @return 标准数字输入数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardDigitalInputNum() -> number + * + * @par Lua示例 + * num = getStandardDigitalInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endchinese + * \english + * Get the number of standard digital inputs. + * + * @return Number of standard digital inputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardDigitalInputNum() -> number + * + * @par Lua example + * num = getStandardDigitalInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endenglish + */ + int getStandardDigitalInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字IO数量(包括数字输入和数字输出) + * + * @return 工具端数字IO数量(包括数字输入和数字输出) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolDigitalInputNum() -> number + * + * @par Lua示例 + * num = getStandardDigitalInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":4} + * + * \endchinese + * \english + * Get the number of tool digital IOs (including digital inputs and + * outputs). + * + * @return Number of tool digital IOs (including digital inputs and + * outputs). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolDigitalInputNum() -> number + * + * @par Lua example + * num = getStandardDigitalInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":4} + * + * \endenglish + */ + int getToolDigitalInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取可配置数字输入数量 + * + * @return 可配置数字输入数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getConfigurableDigitalInputNum() -> number + * + * @par Lua示例 + * num = getConfigurableDigitalInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endchinese + * \english + * Get the number of configurable digital inputs. + * + * @return Number of configurable digital inputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getConfigurableDigitalInputNum() -> number + * + * @par Lua example + * num = getConfigurableDigitalInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endenglish + */ + int getConfigurableDigitalInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输出数量 + * + * @return 标准数字输出数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardDigitalOutputNum() -> number + * + * @par Lua示例 + * num = getStandardDigitalOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":8} + * + * \endchinese + * \english + * Get the number of standard digital outputs. + * + * @return Number of standard digital outputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardDigitalOutputNum() -> number + * + * @par Lua example + * num = getStandardDigitalOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":8} + * + * \endenglish + */ + int getStandardDigitalOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字IO数量(包括数字输入和数字输出) + * + * @return 工具端数字IO数量(包括数字输入和数字输出) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolDigitalOutputNum() -> number + * + * @par Lua示例 + * num = getToolDigitalOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":4} + * + * \endchinese + * \english + * Get the number of tool digital IOs (including digital inputs and + * outputs). + * + * @return Number of tool digital IOs (including digital inputs and + * outputs). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolDigitalOutputNum() -> number + * + * @par Lua example + * num = getToolDigitalOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":4} + * + * \endenglish + */ + int getToolDigitalOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 设置指定的工具端数字IO为输入或输出 + * + * 工具端数字IO比较特殊,IO可以配置为输入或者输出 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param input: 表示指定IO是否为输入。 + * input 为true时,设置指定IO为输入,否则为输出 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolIoInput(self: pyaubo_sdk.IoControl, arg0: int, arg1: bool) -> int + * + * @par Lua函数原型 + * setToolIoInput(index: number, input: boolean) -> nil + * + * @par Lua示例 + * setToolIoInput(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolIoInput","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the specified tool digital IO as input or output. + * + * Tool digital IOs are special and can be configured as input or output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param input: Indicates whether the specified IO is input. + * If input is true, set the IO as input; otherwise, set as output. + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolIoInput(self: pyaubo_sdk.IoControl, arg0: int, arg1: bool) -> int + * + * @par Lua function prototype + * setToolIoInput(index: number, input: boolean) -> nil + * + * @par Lua example + * setToolIoInput(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolIoInput","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolIoInput(int index, bool input); + + /** + * @ingroup IoControl + * \chinese + * 判断指定的工具端数字IO类型是否为输入 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 当指定的IO为输入时返回 true, 否则为 false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isToolIoInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua函数原型 + * isToolIoInput(index: number) -> boolean + * + * @par Lua示例 + * status = isToolIoInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.isToolIoInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Determine whether the specified tool digital IO is configured as input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Returns true if the specified IO is input, otherwise false. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isToolIoInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua function prototype + * isToolIoInput(index: number) -> boolean + * + * @par Lua example + * status = isToolIoInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.isToolIoInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool isToolIoInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取可配置数字输出数量 + * + * @return 可配置数字输出数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getConfigurableDigitalOutputNum() -> number + * + * @par Lua示例 + * num = getConfigurableDigitalOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endchinese + * \english + * Get the number of configurable digital outputs. + * + * @return Number of configurable digital outputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getConfigurableDigitalOutputNum() -> number + * + * @par Lua example + * num = getConfigurableDigitalOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":16} + * + * \endenglish + */ + int getConfigurableDigitalOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输入数量 + * + * @return 标准模拟输入数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardAnalogInputNum() -> number + * + * @par Lua示例 + * num = getStandardAnalogInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endchinese + * \english + * Get the number of standard analog inputs. + * + * @return Number of standard analog inputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardAnalogInputNum() -> number + * + * @par Lua example + * num = getStandardAnalogInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endenglish + */ + int getStandardAnalogInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输入数量 + * + * @return 工具端模拟输入数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolAnalogInputNum() -> number + * + * @par Lua示例 + * num = getToolAnalogInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endchinese + * \english + * Get the number of tool analog inputs. + * + * @return Number of tool analog inputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolAnalogInputNum() -> number + * + * @par Lua example + * num = getToolAnalogInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endenglish + */ + int getToolAnalogInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输出数量 + * + * @return 标准模拟输出数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardAnalogOutputNum() -> number + * + * @par Lua示例 + * num = getStandardAnalogOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endchinese + * \english + * Get the number of standard analog outputs. + * + * @return Number of standard analog outputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardAnalogOutputNum() -> number + * + * @par Lua example + * num = getStandardAnalogOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":2} + * + * \endenglish + */ + int getStandardAnalogOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输出数量 + * + * @return 工具端模拟输出数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolAnalogOutputNum() -> number + * + * @par Lua示例 + * num = getToolAnalogOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the number of tool analog outputs. + * + * @return Number of tool analog outputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolAnalogOutputNum() -> number + * + * @par Lua example + * num = getToolAnalogOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getToolAnalogOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 设置所有数字输入动作为无触发 + * + * @note + * 当输入动作为无触发时,用户设置数字输入值为高电平,不会触发机器人发生动作 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDigitalInputActionDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * setDigitalInputActionDefault() -> nil + * + * @par Lua示例 + * setDigitalInputActionDefault() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalInputActionDefault","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set all digital input actions to no trigger. + * + * @note + * When the input action is set to no trigger, setting the digital input + * value to high will not trigger any robot action. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setDigitalInputActionDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * setDigitalInputActionDefault() -> nil + * + * @par Lua example + * setDigitalInputActionDefault() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalInputActionDefault","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setDigitalInputActionDefault(); + + /** + * @ingroup IoControl + * \chinese + * 设置标准数字输入触发动作 + * + * @note + * 当给输入设置为无触发动作(StandardInputAction::Default)时, + * 用户设置数字输入值为高电平,不会触发机器人发生动作。\n + * 当给输入设置触发动作时,用户设置数字输入值为高电平,会触发机器人执行相应的动作。\n + * 例如,当设置DI0的触发动作为拖动示教(StandardInputAction::Handguide)时, + * 用户设置DI0为高电平,机器人会进入拖动示教。 + * 设置DI0为低电平,机器人会退出拖动示教。 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param action: 触发动作 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardInputAction) -> int + * + * @par Lua函数原型 + * setStandardDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua示例 + * setStandardDigitalInputAction(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the trigger action for standard digital input. + * + * @note + * When the input is set to no trigger action + * (StandardInputAction::Default), setting the digital input value to high + * will not trigger any robot action.\n When a trigger action is set, + * setting the digital input value to high will trigger the corresponding + * robot action.\n For example, if DI0 is set to trigger Handguide + * (StandardInputAction::Handguide), setting DI0 to high will enable + * hand-guiding mode. Setting DI0 to low will exit hand-guiding mode. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param action: Trigger action + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardInputAction) -> int + * + * @par Lua function prototype + * setStandardDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua example + * setStandardDigitalInputAction(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardDigitalInputAction(int index, StandardInputAction action); + + /** + * @ingroup IoControl + * \chinese + * 设置工具数字输入触发动作 + * + * @note + * 当给输入设置为无触发动作(StandardInputAction::Default)时, + * 用户设置工具数字输入值为高电平,不会触发机器人发生动作。\n + * 当给输入设置触发动作时,用户设置工具数字输入值为高电平,会触发机器人执行相应的动作。\n + * 例如,当设置TOOL_IO[0]的类型为输入而且触发动作为拖动示教(StandardInputAction::Handguide)时, + * 用户设置TOOL_IO[0]为高电平,机器人会进入拖动示教。 + * 设置TOOL_IO[0]为低电平,机器人会退出拖动示教。 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param action: 触发动作 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardInputAction) -> int + * + * @par Lua函数原型 + * setToolDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua示例 + * setToolDigitalInputAction(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the trigger action for tool digital input. + * + * @note + * When the input is set to no trigger action + * (StandardInputAction::Default), setting the tool digital input value to + * high will not trigger any robot action.\n When a trigger action is set, + * setting the tool digital input value to high will trigger the + * corresponding robot action.\n For example, if TOOL_IO[0] is set as input + * and its trigger action is Handguide (StandardInputAction::Handguide), + * setting TOOL_IO[0] to high will enable hand-guiding mode. + * Setting TOOL_IO[0] to low will exit hand-guiding mode. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param action: Trigger action + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardInputAction) -> int + * + * @par Lua function prototype + * setToolDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua example + * setToolDigitalInputAction(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolDigitalInputAction(int index, StandardInputAction action); + + /** + * @ingroup IoControl + * \chinese + * 设置可配置数字输入触发动作 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param action: 触发动作 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @note 需要将可配置输入的安全输入动作设置为 + * SafetyInputAction::Unassigned时这个函数的配置才会生效 + * + * @par Python函数原型 + * setConfigurableDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardInputAction) -> int + * + * @par Lua函数原型 + * setConfigurableDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua示例 + * setConfigurableDigitalInputAction(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the trigger action for configurable digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param action: Trigger action + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @note This function takes effect only when the safety input action of the + * configurable input is set to SafetyInputAction::Unassigned. + * + * @par Python function prototype + * setConfigurableDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardInputAction) -> int + * + * @par Lua function prototype + * setConfigurableDigitalInputAction(index: number, action: number) -> nil + * + * @par Lua example + * setConfigurableDigitalInputAction(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalInputAction","params":[0,"Handguide"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConfigurableDigitalInputAction(int index, + StandardInputAction action); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输入触发动作 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 标准数字输入触发动作 + * + * @par Python函数原型 + * getStandardDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardInputAction + * + * @par Lua函数原型 + * getStandardDigitalInputAction(index: number) -> number + * + * @par Lua示例 + * num = getStandardDigitalInputAction(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endchinese + * \english + * Get the trigger action for standard digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Standard digital input trigger action + * + * @par Python function prototype + * getStandardDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardInputAction + * + * @par Lua function prototype + * getStandardDigitalInputAction(index: number) -> number + * + * @par Lua example + * num = getStandardDigitalInputAction(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endenglish + */ + StandardInputAction getStandardDigitalInputAction(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字输入触发动作 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 工具端数字输入触发动作 + * + * @par Python函数原型 + * getToolDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardInputAction + * + * @par Lua函数原型 + * getToolDigitalInputAction(index: number) -> number + * + * @par Lua示例 + * getToolDigitalInputAction(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endchinese + * \english + * Get the trigger action for tool digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Tool digital input trigger action + * + * @par Python function prototype + * getToolDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardInputAction + * + * @par Lua function prototype + * getToolDigitalInputAction(index: number) -> number + * + * @par Lua example + * getToolDigitalInputAction(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endenglish + */ + StandardInputAction getToolDigitalInputAction(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取可配置数字输入的输入触发动作 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 返回输入触发动作 + * + * @par Python函数原型 + * getConfigurableDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) + * -> arcs::common_interface::StandardInputAction + * + * @par Lua函数原型 + * getConfigurableDigitalInputAction(index: number) -> number + * + * @par Lua示例 + * num = getConfigurableDigitalInputAction(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endchinese + * \english + * Get the trigger action for configurable digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Returns the input trigger action. + * + * @par Python function prototype + * getConfigurableDigitalInputAction(self: pyaubo_sdk.IoControl, arg0: int) + * -> arcs::common_interface::StandardInputAction + * + * @par Lua function prototype + * getConfigurableDigitalInputAction(index: number) -> number + * + * @par Lua example + * num = getConfigurableDigitalInputAction(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputAction","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Default"} + * + * \endenglish + */ + StandardInputAction getConfigurableDigitalInputAction(int index); + + /** + * @ingroup IoControl + * \chinese + * 设置所有数字输出状态选择为无 + * + * @note + * 当给输出状态设置为无(StandardOutputRunState::None)时, + * 用户可以设置数字输出值。\n + * 当给输出设置状态时,用户不可设置数字输出值,控制器会自动设置数字输出值。\n + * 例如,当设置DO0的输出状态为高电平指示正在拖动示教(StandardOutputRunState::Handguiding)时, + * 机器人进入拖动示教,DO0会自动变为高电平。 + * 机器人退出拖动示教,DO0会自动变为低电平。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDigitalOutputRunstateDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * setDigitalOutputRunstateDefault() -> nil + * + * @par Lua示例 + * setDigitalOutputRunstateDefault() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalOutputRunstateDefault","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set all digital output runstates to None. + * + * @note + * When the output runstate is set to None (StandardOutputRunState::None), + * users can set the digital output value.\n + * When the output runstate is set, users cannot set the digital output + * value, and the controller will set it automatically.\n For example, when + * DO0's output runstate is set to indicate hand-guiding + * (StandardOutputRunState::Handguiding), the robot enters hand-guiding mode + * and DO0 will automatically become high. When the robot exits + * hand-guiding, DO0 will automatically become low. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setDigitalOutputRunstateDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * setDigitalOutputRunstateDefault() -> nil + * + * @par Lua example + * setDigitalOutputRunstateDefault() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalOutputRunstateDefault","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setDigitalOutputRunstateDefault(); + + /** + * @ingroup IoControl + * \chinese + * 设置标准数字输出状态选择 + * + * @note + * 当给输出状态设置为无(StandardOutputRunState::None)时, + * 用户可以设置数字输出值。\n + * 当给输出设置状态时,用户不可设置数字输出值,控制器会自动设置数字输出值。\n + * 例如,当设置DO0的输出状态为高电平指示正在拖动示教(StandardOutputRunState::Handguiding)时, + * 机器人进入拖动示教,DO0会自动变为高电平。 + * 机器人退出拖动示教,DO0会自动变为低电平。 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param runstate: 输出状态选择 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua函数原型 + * setStandardDigitalOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua示例 + * setStandardDigitalOutputRunstate(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputRunstate","params":[0,"PowerOn"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the runstate for standard digital output. + * + * @note + * When the output runstate is set to None (StandardOutputRunState::None), + * users can set the digital output value.\n + * When the output runstate is set, users cannot set the digital output + * value, and the controller will set it automatically.\n For example, when + * DO0's output runstate is set to indicate hand-guiding + * (StandardOutputRunState::Handguiding), the robot enters hand-guiding mode + * and DO0 will automatically become high. When the robot exits + * hand-guiding, DO0 will automatically become low. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param runstate: Output runstate selection + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua function prototype + * setStandardDigitalOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua example + * setStandardDigitalOutputRunstate(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputRunstate","params":[0,"PowerOn"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端数字输出状态选择 + * + * @note + * 当给输出状态设置为无(StandardOutputRunState::None)时, + * 用户可以设置数字输出值。\n + * 当给输出设置状态时,用户不可设置数字输出值,控制器会自动设置数字输出值。\n + * 例如,当设置TOOL_IO[0]类型为输出且输出状态为高电平指示正在拖动示教(StandardOutputRunState::Handguiding)时, + * 机器人进入拖动示教,TOOL_IO[0]会自动变为高电平。 + * 机器人退出拖动示教,TOOL_IO[0]会自动变为低电平。 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param runstate: 输出状态选择 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua函数原型 + * setToolDigitalOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua示例 + * setToolDigitalOutputRunstate(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the runstate for tool digital output. + * + * @note + * When the output runstate is set to None (StandardOutputRunState::None), + * users can set the digital output value.\n + * When the output runstate is set, users cannot set the digital output + * value, and the controller will set it automatically.\n For example, when + * TOOL_IO[0] is set as output and its runstate is set to indicate + * hand-guiding (StandardOutputRunState::Handguiding), the robot enters + * hand-guiding mode and TOOL_IO[0] will automatically become high. When the + * robot exits hand-guiding, TOOL_IO[0] will automatically become low. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param runstate: Output runstate selection + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua function prototype + * setToolDigitalOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua example + * setToolDigitalOutputRunstate(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + + /** + * @ingroup IoControl + * \chinese + * 设置可配置数字输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param runstate: 输出状态选择 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConfigurableDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: + * int, arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua函数原型 + * setConfigurableDigitalOutputRunstate(index: number, runstate: number) -> + * nil + * + * @par Lua示例 + * setConfigurableDigitalOutputRunstate(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the runstate for configurable digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param runstate: Output runstate selection + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConfigurableDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: + * int, arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua function prototype + * setConfigurableDigitalOutputRunstate(index: number, runstate: number) -> + * nil + * + * @par Lua example + * setConfigurableDigitalOutputRunstate(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConfigurableDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + + /** + * @ingroup IoControl + * \chinese + * 设置数字输出的状态选择,并支持基于路点/平面/障碍物的条件阈值判断。 + * + * 详细说明:当需要根据机器人是否到达某个路点或与某个平面/障碍物的距离来触发数字输出时, + * 可通过本接口指定条件对象及阈值。在条件满足时会将指定的数字输出设置为对应的运行状态。 + * + * @param io_type + * 数字输出类型(0=标准数字输出、1=工具数字输出、2=可配置数字输出),用整数表示 + * @param index 输出口的索引,管脚编号从0开始 + * @param runstate 输出动作状态 + * @param object_name 条件对象的名称 + * @param threshold + * 判断阈值:对路点为角度阈值,单位为弧度(rad),对平面/障碍物为距离阈值,单位为米(m) + * + * @return 返回操作结果码:0 表示成功,非0 表示失败 + * + * @par Python函数原型 + * setDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int, arg2: arcs::common_interface::StandardOutputRunState, arg3: str="", + * arg4: float=0.0) -> int + * + * @par Lua函数原型 + * setDigitalOutputRunstate(io_type: number, index: number, runstate: + * number, object_name: string="", threshold: number=0.0) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalOutputRunstate","params":[1,0,"WaypointArrived","P1",3],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set digital output runstate with optional condition checking based on + * waypoint, plane or obstacle thresholds. + * + * Use this API to control a digital output when a specified condition is + * met (for example, waypoint arrival or distance to a plane/obstacle). + * Specify an object type, name and a threshold value to enable conditional + * triggering. When the condition is satisfied, the given digital output + * will be set to the requested runstate. + * + * @param io_type Numeric IO type (e.g. 0=standard, 1=tool, 2=configurable) + * @param index IO pin index starting from 0 + * @param runstate The desired output action + * @param object_name Unique identifier of the condition object (optional) + * @param threshold Condition threshold: angle in radians for waypoints, + * or distance in meters for planes/obstacles (optional) + * + * @return Returns 0 on success, non-zero error code on failure. + * \endenglish + */ + int setDigitalOutputRunstate(int io_type, int index, + StandardOutputRunState runstate, + const std::string &object_name, + double threshold); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 输出状态选择 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) + * -> arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getStandardDigitalOutputRunstate(index: number) -> number + * + * @par Lua示例 + * num = getStandardDigitalOutputRunstate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endchinese + * \english + * Get the runstate for standard digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Output runstate selection + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) + * -> arcs::common_interface::StandardOutputRunState + * + * @par Lua function prototype + * getStandardDigitalOutputRunstate(index: number) -> number + * + * @par Lua example + * num = getStandardDigitalOutputRunstate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endenglish + */ + StandardOutputRunState getStandardDigitalOutputRunstate(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 输出状态选择 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getToolDigitalOutputRunstate(index: number) -> number + * + * @par Lua示例 + * num = getToolDigitalOutputRunstate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endchinese + * \english + * Get the runstate for tool digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Output runstate selection + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua function prototype + * getToolDigitalOutputRunstate(index: number) -> number + * + * @par Lua example + * num = getToolDigitalOutputRunstate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endenglish + */ + StandardOutputRunState getToolDigitalOutputRunstate(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取可配置数字输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 输出状态选择 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: + * int) + * -> arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getConfigurableDigitalOutputRunstate(index: number) -> number + * + * @par Lua示例 + * num = getConfigurableDigitalOutputRunstate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endchinese + * \english + * Get the runstate for configurable digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Output runstate selection + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: + * int) + * -> arcs::common_interface::StandardOutputRunState + * + * @par Lua function prototype + * getConfigurableDigitalOutputRunstate(index: number) -> number + * + * @par Lua example + * num = getConfigurableDigitalOutputRunstate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endenglish + */ + StandardOutputRunState getConfigurableDigitalOutputRunstate(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取指定类型数字输出状态选择。 + * + * 用于查询不同类型的数字输出(标准数字输出、工具端数字输出、可配置数字输出)的 + * 当前运行状态选择(例如 WaypointArrived 等), + * 一般跟 setDigitalOutputRunstate 一起使用。 + * + * @param io_type + * 数字输出类型(0=标准数字输出、1=工具数字输出、2=可配置数字输出) + * @param index 输出口的索引,管脚编号从0开始 + * @return 返回对应的 `StandardOutputRunState` 枚举值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDigitalOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getDigitalOutputRunstate(io_type: number, index: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getDigitalOutputRunstate","params":[1,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endchinese + * \english + * Get the current runstate of a digital output of the specified type. + * + * Use this API to query the runstate selection (for example None, + * Handguiding, WaypointArrived) of different digital output types + * (standard, tool, configurable). + * + * @param io_type Numeric IO type (0=standard, 1=tool, 2=configurable) + * @param index IO pin index starting from 0 + * @return Returns the corresponding `StandardOutputRunState` enum value + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + StandardOutputRunState getDigitalOutputRunstate(int io_type, int index); + + /** + * @ingroup IoControl + * \chinese + * 新增一条 DIO Cross Connection 逻辑规则。 + * + * 支持 digital/bool 类 DIO 信号和虚拟 DO 信号。规则添加成功后立即生效; + * DI 只能作为 actor 被读取,不能作为 result 写入。actor_inverts 表示各 + * actor 读取原始 bool 值后是否取反参与运算,不改变 IO 的硬件方向。 + * + * result_type 和 actor_types 使用同一套数字类型。作为 result 时表示输出侧, + * 作为 actor 时表示输入侧或可读的虚拟 DO: + * - 0:标准数字 IO,result 表示标准 DO,actor 表示标准 DI。 + * - 1:工具数字 IO,result 表示工具 DO,actor 表示工具 DI。 + * - 2:可配置数字 IO,result 表示可配置 DO,actor 表示可配置 DI。 + * - 3:虚拟 DO,不占用真实 DO 口,可作为级联中间结果;作为 result 时写入 + * 虚拟 DO,作为 actor 时读取虚拟 DO。 + * + * operator_type 由控制器实现解释,建议统一为 0=FWD、1=NOT、2=AND、 + * 3=OR。FWD/NOT 必须恰好 1 个 actor,AND/OR 必须为 2-5 个 actor。 + * actor_types、actor_pins、actor_inverts 长度必须一致。 + * + * 限制: + * - Cross Connection 规则总数最大 300。 + * - 规则 id 最大 32 个字符,且不能重复。 + * - 虚拟 DO 级联深度最大 20。 + * - 不允许形成闭环依赖。 + * - 不允许多个规则写同一个 result,包括真实 DO 和虚拟 DO。 + * - 虚拟 DO actor 必须由前序规则生成,读取未定义虚拟 DO 应返回失败。 + * - 虚拟 DO pin/index 只要求非负,不占用真实 DO 口。 + * - 已被 Cross Connection 写入的真实 DO 不应再配置 runstate;后续手动 + * set/pulse 该 DO 时应拒绝并提示该 DO 已被对应 Cross Connection 占用。 + * + * @param id 规则唯一 ID + * @param operator_type 逻辑运算类型 + * @param result_type 结果信号类型,必须是可写输出类类型或虚拟 DO + * @param result_pin 结果信号 pin/index;虚拟 DO 使用虚拟信号 index + * @param actor_types actor 信号类型列表,可读取 DI 或虚拟 DO + * @param actor_pins actor 信号 pin/index 列表;虚拟 DO 使用虚拟信号 index + * @param actor_inverts actor 极性列表 + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * addCrossConnection(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, + * arg2: int, arg3: int, arg4: List[int], arg5: List[int], + * arg6: List[bool]) -> int + * + * @par Lua函数原型 + * addCrossConnection(id: string, operator_type: number, + * result_type: number, result_pin: number, actor_types: table, + * actor_pins: table, actor_inverts: table) -> number + * + * @par Lua示例 + * addCrossConnection("start_permit", 2, 0, 0, {0, 0}, {3, 4}, + * {false, true}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["start_permit",2,0,0,[0,0],[3,4],[false,true]],"id":1} + * + * @par JSON-RPC虚拟 DO 级联示例 + * 先生成中间信号 VirtualDO[0] = DI[0] AND NOT DI[1],再输出 + * DO[0] = VirtualDO[0] OR DI[2]: + * {"jsonrpc":"2.0","method":"rob1.IoControl.clearCrossConnections","params":[],"id":10} + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["v0_di0_and_not_di1",2,3,0,[0,0],[0,1],[false,true]],"id":11} + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["v0_or_di2_to_do0",3,0,0,[3,0],[0,2],[false,false]],"id":12} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Add a DIO Cross Connection logic rule. + * + * Supports digital/bool DIO signals and virtual DO signals. The rule takes + * effect immediately after it is added successfully. DI signals may only be + * read as actors and cannot be written as results. actor_inverts tells the + * controller whether to invert each actor's raw bool value before + * evaluating the rule; it does not change the hardware IO direction. + * + * result_type and actor_types use the same numeric type set. As a result, + * the value denotes the output side; as an actor, it denotes the input side + * or a readable virtual DO: + * - 0: Standard digital IO. result means standard DO, actor means standard + * DI. + * - 1: Tool digital IO. result means tool DO, actor means tool DI. + * - 2: Configurable digital IO. result means configurable DO, actor means + * configurable DI. + * - 3: Virtual DO. It does not occupy a real DO pin and can be used as an + * intermediate result for cascaded rules. As a result it writes the + * virtual DO; as an actor it reads the virtual DO. + * + * operator_type is interpreted by the controller implementation; the + * recommended mapping is 0=FWD, 1=NOT, 2=AND, 3=OR. FWD/NOT require exactly + * one actor, and AND/OR require 2 to 5 actors. actor_types, actor_pins, and + * actor_inverts must have the same length. + * + * Limits: + * - Up to 300 Cross Connection rules are allowed. + * - A rule id can contain up to 32 characters and must be unique. + * - Virtual DO cascade depth is limited to 20. + * - Cyclic dependencies are not allowed. + * - Multiple rules cannot write the same result, including real DO and + * virtual DO results. + * - A virtual DO actor must be produced by an earlier rule; reading an + * undefined virtual DO should fail. + * - A virtual DO pin/index only needs to be non-negative and does not + * occupy a real DO pin. + * - A real DO written by Cross Connection should not also have a runstate + * configured. Later manual set/pulse calls to that DO should be rejected + * with a message that names the owning Cross Connection. + * + * @param id Unique rule ID + * @param operator_type Logic operator type + * @param result_type Result signal type; must be writable output type or + * virtual DO + * @param result_pin Result signal pin/index; virtual DO uses virtual signal + * index + * @param actor_types Actor signal type list; may read DI or virtual DO + * @param actor_pins Actor signal pin/index list; virtual DO uses virtual + * signal index + * @param actor_inverts Actor polarity list + * @return Returns 0 on success, non-zero error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * addCrossConnection(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, + * arg2: int, arg3: int, arg4: List[int], arg5: List[int], + * arg6: List[bool]) -> int + * + * @par Lua function prototype + * addCrossConnection(id: string, operator_type: number, + * result_type: number, result_pin: number, actor_types: table, + * actor_pins: table, actor_inverts: table) -> number + * + * @par Lua example + * addCrossConnection("start_permit", 2, 0, 0, {0, 0}, {3, 4}, + * {false, true}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["start_permit",2,0,0,[0,0],[3,4],[false,true]],"id":1} + * + * @par JSON-RPC virtual DO cascade example + * First generate the intermediate signal VirtualDO[0] = DI[0] AND NOT + * DI[1], then drive DO[0] = VirtualDO[0] OR DI[2]: + * {"jsonrpc":"2.0","method":"rob1.IoControl.clearCrossConnections","params":[],"id":10} + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["v0_di0_and_not_di1",2,3,0,[0,0],[0,1],[false,true]],"id":11} + * {"jsonrpc":"2.0","method":"rob1.IoControl.addCrossConnection","params":["v0_or_di2_to_do0",3,0,0,[3,0],[0,2],[false,false]],"id":12} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int addCrossConnection(const std::string &id, int operator_type, + int result_type, int result_pin, + const std::vector &actor_types, + const std::vector &actor_pins, + const std::vector &actor_inverts); + + /** + * @ingroup IoControl + * \chinese + * 删除一条 DIO Cross Connection 逻辑规则。 + * + * @param id 规则唯一 ID + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * deleteCrossConnection(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua函数原型 + * deleteCrossConnection(id: string) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteCrossConnection","params":["start_permit"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete a DIO Cross Connection logic rule. + * + * @param id Unique rule ID + * @return Returns 0 on success, non-zero error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * deleteCrossConnection(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua function prototype + * deleteCrossConnection(id: string) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteCrossConnection","params":["start_permit"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int deleteCrossConnection(const std::string &id); + + /** + * @ingroup IoControl + * \chinese + * 清空所有 DIO Cross Connection 逻辑规则。 + * + * 该接口只清空规则,不清空或重置真实数字输出值。 + * + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * clearCrossConnections(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * clearCrossConnections() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.clearCrossConnections","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Clear all DIO Cross Connection logic rules. + * + * This only clears rules. It does not clear or reset real digital output + * values. + * + * @return Returns 0 on success, non-zero error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * clearCrossConnections(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * clearCrossConnections() -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.clearCrossConnections","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int clearCrossConnections(); + + /** + * @ingroup IoControl + * \chinese + * 设置标准模拟输出状态选择 + * + * @note + * 当给输出状态设置为无(StandardOutputRunState::None)时, + * 用户可以设置模拟输出值。\n + * 当给输出设置状态时,用户不可设置模拟输出值,控制器会自动设置模拟输出值。\n + * 例如,当设置AO0的输出状态为高电平指示正在拖动示教(StandardOutputRunState::Handguiding)时, + * 机器人进入拖动示教,AO0的值会自动变为最大值。 + * 机器人退出拖动示教,AO0的值会自动变为0。 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param runstate: 输出状态选择 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua函数原型 + * setStandardAnalogOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua示例 + * setStandardAnalogOutputRunstate(0,6) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the runstate for standard analog output. + * + * @note + * When the output runstate is set to None (StandardOutputRunState::None), + * users can set the analog output value.\n + * When the output runstate is set, users cannot set the analog output + * value, and the controller will set it automatically.\n For example, when + * AO0's output runstate is set to indicate hand-guiding + * (StandardOutputRunState::Handguiding), the robot enters hand-guiding mode + * and AO0 will automatically become the maximum value. When the robot exits + * hand-guiding, AO0 will automatically become 0. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param runstate: Output runstate selection + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua function prototype + * setStandardAnalogOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua example + * setStandardAnalogOutputRunstate(0,6) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardAnalogOutputRunstate(int index, + StandardOutputRunState runstate); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端模拟输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param runstate: 输出状态选择 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua函数原型 + * setToolAnalogOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua示例 + * setToolAnalogOutputRunstate(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the runstate for tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param runstate: Output runstate selection + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * arcs::common_interface::StandardOutputRunState) -> int + * + * @par Lua function prototype + * setToolAnalogOutputRunstate(index: number, runstate: number) -> nil + * + * @par Lua example + * setToolAnalogOutputRunstate(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogOutputRunstate","params":[0,"None"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolAnalogOutputRunstate(int index, StandardOutputRunState runstate); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 标准模拟输出状态选择 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getStandardAnalogOutputRunstate(index: number) -> number + * + * @par Lua示例 + * num = getStandardAnalogOutputRunstate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endchinese + * \english + * Get the runstate for standard analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Standard analog output runstate selection + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua function prototype + * getStandardAnalogOutputRunstate(index: number) -> number + * + * @par Lua example + * num = getStandardAnalogOutputRunstate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endenglish + */ + StandardOutputRunState getStandardAnalogOutputRunstate(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输出状态选择 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 工具端模拟输出状态选择 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua函数原型 + * getToolAnalogOutputRunstate(index: number) -> number + * + * @par Lua示例 + * num = getToolAnalogOutputRunstate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endchinese + * \english + * Get the runstate for tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Tool analog output runstate selection + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogOutputRunstate(self: pyaubo_sdk.IoControl, arg0: int) -> + * arcs::common_interface::StandardOutputRunState + * + * @par Lua function prototype + * getToolAnalogOutputRunstate(index: number) -> number + * + * @par Lua example + * num = getToolAnalogOutputRunstate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputRunstate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * + * \endenglish + */ + StandardOutputRunState getToolAnalogOutputRunstate(int index); + + /** + * @ingroup IoControl + * \chinese + * 设置所有数字输出急停后状态为默认(不做改变) + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setDigitalOutputAfterEStopDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * setDigitalOutputAfterEStopDefault() -> nil + * + * @par Lua示例 + * setDigitalOutputAfterEStopDefault() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalOutputAfterEStopDefault","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set all digital output states after emergency stop to default(no change) + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setDigitalOutputAfterEStopDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * setDigitalOutputAfterEStopDefault() -> nil + * + * @par Lua example + * setDigitalOutputAfterEStopDefault() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setDigitalOutputAfterEStopDefault","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setDigitalOutputAfterEStopDefault(); + + /** + * @ingroup IoControl + * \chinese + * 设置所有模拟输出急停后状态为默认(不做改变) + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setAnalogOutputAfterEStopDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * setAnalogOutputAfterEStopDefault() -> nil + * + * @par Lua示例 + * setAnalogOutputAfterEStopDefault() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setAnalogOutputAfterEStopDefault","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set all analog output states after emergency stop to default(no change) + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setAnalogOutputAfterEStopDefault(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * setAnalogOutputAfterEStopDefault() -> nil + * + * @par Lua example + * setAnalogOutputAfterEStopDefault() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setAnalogOutputAfterEStopDefault","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setAnalogOutputAfterEStopDefault(); + + /** + * @ingroup IoControl + * \chinese + * 设置标准数字输出急停后的输出值 + * + * @param index: 表示IO口的管脚, + * @param value: 输出值 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardDigitalOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool) -> int + * + * @par Lua函数原型 + * setStandardDigitalOutputAfterEStop(index: number, value: boolean) -> nil + * + * @par Lua示例 + * setStandardDigitalOutputAfterEStop(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputAfterEStop","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the value of a standard digital output after emergency stop + * + * @param index: Indicates the IO pin. + * @param value: Output value. + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardDigitalOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool) -> int + * + * @par Lua function prototype + * setStandardDigitalOutputAfterEStop(index: number, value: boolean) -> nil + * + * @par Lua example + * setStandardDigitalOutputAfterEStop(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputAfterEStop","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardDigitalOutputAfterEStop(int index, bool value); + + /** + * @ingroup IoControl + * \chinese + * 设置可配置数字输出急停后的输出值 + * + * @param index: 表示IO口的管脚, + * @param value: 输出值 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConfigurableDigitalOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: + * int, arg1: bool) -> int + * + * @par Lua函数原型 + * setConfigurableDigitalOutputAfterEStop(index: number, value: boolean) -> + * nil + * + * @par Lua示例 + * setConfigurableDigitalOutputAfterEStop(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputAfterEStop","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the value of a configurable digital output after emergency stop + * + * @param index: Indicates the IO pin. + * @param value: Output value. + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConfigurableDigitalOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: + * int, arg1: bool) -> int + * + * @par Lua function prototype + * setConfigurableDigitalOutputAfterEStop(index: number, value: boolean) -> + * nil + * + * @par Lua example + * setConfigurableDigitalOutputAfterEStop(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputAfterEStop","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConfigurableDigitalOutputAfterEStop(int index, bool value); + + /** + * @ingroup IoControl + * \chinese + * 设置标准模拟输出急停后的输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param value: 模拟输出值 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardAnalogOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: float) -> int + * + * @par Lua函数原型 + * setStandardAnalogOutputAfterEStop(index: number, value: number) -> nil + * + * @par Lua示例 + * setStandardAnalogOutputAfterEStop(0,5.4) + * + * \endchinese + * \english + * Set the value of standard analog output after emergency stop + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param value: Output value. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardAnalogOutputAfterEStop(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: float) -> int + * + * @par Lua function prototype + * setStandardAnalogOutputAfterEStop(index: number, value: number) -> nil + * + * @par Lua example + * setStandardAnalogOutputAfterEStop(0,5.4) + * + * \endenglish + */ + int setStandardAnalogOutputAfterEStop(int index, double value); + + /** + * @ingroup IoControl + * \chinese + * 设置标准模拟输入的范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param domain: 输入的范围 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua函数原型 + * setStandardAnalogInputDomain(index: number, domain: number) -> nil + * + * @par Lua示例 + * setStandardAnalogInputDomain(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogInputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the range of standard analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param domain: Input range + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua function prototype + * setStandardAnalogInputDomain(index: number, domain: number) -> nil + * + * @par Lua example + * setStandardAnalogInputDomain(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogInputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardAnalogInputDomain(int index, int domain); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端模拟输入的范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param domain: 输入的范围 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua函数原型 + * setToolAnalogInputDomain(index: number, domain: number) -> nil + * + * @par Lua示例 + * setToolAnalogInputDomain(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogInputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the range of tool analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param domain: Input range + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua function prototype + * setToolAnalogInputDomain(index: number, domain: number) -> nil + * + * @par Lua example + * setToolAnalogInputDomain(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogInputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolAnalogInputDomain(int index, int domain); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模式输入范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 标准模式输入范围 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> + * int + * + * @par Lua函数原型 + * getStandardAnalogInputDomain(index: number) -> number + * + * @par Lua示例 + * num = getStandardAnalogInputDomain(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInputDomain","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the domain of standard analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Standard analog input domain + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> + * int + * + * @par Lua function prototype + * getStandardAnalogInputDomain(index: number) -> number + * + * @par Lua example + * num = getStandardAnalogInputDomain(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInputDomain","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getStandardAnalogInputDomain(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模式输入范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 工具端模式输入范围 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua函数原型 + * getToolAnalogInputDomain(index: number) -> number + * + * @par Lua示例 + * num = getToolAnalogInputDomain(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInputDomain","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":10} + * + * \endchinese + * \english + * Get the domain of tool analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Tool analog input domain + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogInputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua function prototype + * getToolAnalogInputDomain(index: number) -> number + * + * @par Lua example + * num = getToolAnalogInputDomain(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInputDomain","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":10} + * + * \endenglish + */ + int getToolAnalogInputDomain(int index); + + /** + * @ingroup IoControl + * \chinese + * 设置标准模拟输出的范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param domain: 输出的范围 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: int) -> int + * + * @par Lua函数原型 + * setStandardAnalogOutputDomain(index: number, domain: number) -> nil + * + * @par Lua示例 + * setStandardAnalogOutputDomain(0,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogOutputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the range of standard analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param domain: Output range + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: int) -> int + * + * @par Lua function prototype + * setStandardAnalogOutputDomain(index: number, domain: number) -> nil + * + * @par Lua example + * setStandardAnalogOutputDomain(0,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardAnalogOutputDomain","params":[0,8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardAnalogOutputDomain(int index, int domain); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端模拟输出范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param domain: 输出的范围 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua函数原型 + * setToolAnalogOutputDomain(index: number, domain: number) -> nil + * + * @par Lua示例 + * setToolAnalogOutputDomain(0,1) + * + * \endchinese + * \english + * Set the range of tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param domain: Output range + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * int) -> int + * + * @par Lua function prototype + * setToolAnalogOutputDomain(index: number, domain: number) -> nil + * + * @par Lua example + * setToolAnalogOutputDomain(0,1) + * + * \endenglish + */ + int setToolAnalogOutputDomain(int index, int domain); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输出范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 标准模拟输出范围 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> + * int + * + * @par Lua函数原型 + * getStandardAnalogOutputDomain(index: number) -> number + * + * @par Lua示例 + * num = getStandardAnalogOutputDomain(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputDomain","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the domain of standard analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Standard analog output domain + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> + * int + * + * @par Lua function prototype + * getStandardAnalogOutputDomain(index: number) -> number + * + * @par Lua example + * num = getStandardAnalogOutputDomain(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutputDomain","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getStandardAnalogOutputDomain(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输出范围 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @return 工具端模拟输出范围 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua函数原型 + * getToolAnalogOutputDomain(index: number) -> number + * + * @par Lua示例 + * num = getToolAnalogOutputDomain(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputDomain","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the domain of tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @return Tool analog output domain + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua function prototype + * getToolAnalogOutputDomain(index: number) -> number + * + * @par Lua example + * num = getToolAnalogOutputDomain(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutputDomain","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getToolAnalogOutputDomain(int index); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端电源电压值(单位V) + * + * @param domain: 工具端电源电压值,可选三个档位,分别为0、12和24。\n + * 0表示0V, 12表示12V, 24表示24V。 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolVoltageOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua函数原型 + * setToolVoltageOutputDomain(domain: number) -> nil + * + * @par Lua示例 + * setToolVoltageOutputDomain(24) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolVoltageOutputDomain","params":[24],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the tool voltage output value (unit: V) + * + * @param domain: Tool voltage output value, can be 0, 12, or 24.\n + * 0 means 0V, 12 means 12V, 24 means 24V. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolVoltageOutputDomain(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua function prototype + * setToolVoltageOutputDomain(domain: number) -> nil + * + * @par Lua example + * setToolVoltageOutputDomain(24) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolVoltageOutputDomain","params":[24],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolVoltageOutputDomain(int domain); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端电源电压值(单位V) + * + * @return 工具端电源电压值(单位V) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolVoltageOutputDomain(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolVoltageOutputDomain() -> number + * + * @par Lua示例 + * num = getToolVoltageOutputDomain() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolVoltageOutputDomain","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the tool voltage output value (unit: V) + * + * @return Tool voltage output value (unit: V) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolVoltageOutputDomain(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolVoltageOutputDomain() -> number + * + * @par Lua example + * num = getToolVoltageOutputDomain() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolVoltageOutputDomain","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getToolVoltageOutputDomain(); + + /** + * @ingroup IoControl + * \chinese + * 设置标准数字输出值 + * + * @param index: 表示IO口的管脚, + * @param value: 输出值 + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua函数原型 + * setStandardDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua示例 + * setStandardDigitalOutput(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the value of a standard digital output. + * + * @param index: Indicates the IO pin. + * @param value: Output value. + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua function prototype + * setStandardDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua example + * setStandardDigitalOutput(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardDigitalOutput(int index, bool value); + + /** + * @ingroup IoControl + * \chinese + * 注册组数字输出 + * + * 注册一个按名称访问的数字输出组。 + * `indexes[0]` 对应 bit0,`indexes[1]` 对应 bit1,以此类推。 + * + * @param name: 组名称。 + * @param io_type: IO类型,0表示Standard,1表示Tool,2表示Configurable。 + * @param indexes: 组成员对应的数字输出索引列表。 + * + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * addGroupOutput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, arg2: + * List[int]) -> int + * + * @par Lua函数原型 + * addGroupOutput(name: string, io_type: number, indexes: table) -> nil + * + * @par Lua示例 + * addGroupOutput("go_state", 0, {4,5,6,7}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.addGroupOutput","params":["go_state",0,[4,5,6,7]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Register a grouped digital output. + * + * Registers a named digital output group. `indexes[0]` maps to bit0, + * `indexes[1]` maps to bit1, and so on. + * + * @param name: Group name. + * @param io_type: IO type. 0 means Standard, 1 means Tool, and 2 means + * Configurable. + * @param indexes: Index list of digital outputs in the group. + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * addGroupOutput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, arg2: + * List[int]) -> int + * + * @par Lua function prototype + * addGroupOutput(name: string, io_type: number, indexes: table) -> nil + * + * @par Lua example + * addGroupOutput("go_state", 0, {4,5,6,7}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.addGroupOutput","params":["go_state",0,[4,5,6,7]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int addGroupOutput(const std::string &name, int io_type, + const std::vector &indexes); + + /** + * @ingroup IoControl + * \chinese + * 删除组数字输出 + * + * @param name: 组名称。 + * + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * deleteGroupOutput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua函数原型 + * deleteGroupOutput(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteGroupOutput","params":["go_state"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete a grouped digital output. + * + * @param name: Group name. + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * deleteGroupOutput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua function prototype + * deleteGroupOutput(name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteGroupOutput","params":["go_state"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int deleteGroupOutput(const std::string &name); + + /** + * @ingroup IoControl + * \chinese + * 设置组数字输出值 + * + * 按名称查找组数字输出后,将 `value` 按位拆分写入对应组成员。 + * + * @param name: 组名称。 + * @param value: 需要写入组数字输出的整数值。 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setGroupOutput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int) -> int + * + * @par Lua函数原型 + * setGroupOutput(name: string, value: number) -> nil + * + * @par Lua示例 + * setGroupOutput("go_state", 13) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setGroupOutput","params":["go_state",13],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the grouped digital output value. + * + * Looks up the named grouped digital output and writes `value` to the + * group's members bit by bit. + * + * @param name: Group name. + * @param value: Integer value to write to the grouped digital output. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setGroupOutput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int) -> int + * + * @par Lua function prototype + * setGroupOutput(name: string, value: number) -> nil + * + * @par Lua example + * setGroupOutput("go_state", 13) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setGroupOutput","params":["go_state",13],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setGroupOutput(const std::string &name, uint32_t value); + + /** + * @ingroup IoControl + * \chinese + * 设置数字输出脉冲 + * + * @param index + * @param value + * @param duration + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool, arg2: float) -> int + * + * @par Lua函数原型 + * setStandardDigitalOutputPulse(index: number, value: boolean, duration: + * number) -> nil + * + * @par Lua示例 + * setStandardDigitalOutputPulse(0,true,2.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set digital output pulse. + * + * @param index + * @param value + * @param duration + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool, arg2: float) -> int + * + * @par Lua function prototype + * setStandardDigitalOutputPulse(index: number, value: boolean, duration: + * number) -> nil + * + * @par Lua example + * setStandardDigitalOutputPulse(0,true,2.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setStandardDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setStandardDigitalOutputPulse(int index, bool value, double duration); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端数字输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param value: 数字输出值 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: bool) + * -> int + * + * @par Lua函数原型 + * setToolDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua示例 + * setToolDigitalOutput(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the value of tool digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param value: Output value. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: bool) + * -> int + * + * @par Lua function prototype + * setToolDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua example + * setToolDigitalOutput(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolDigitalOutput(int index, bool value); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端数字输出脉冲 + * + * @param index + * @param value + * @param duration + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool, arg2: float) -> int + * + * @par Lua函数原型 + * setToolDigitalOutputPulse(index: number, value: boolean, duration: + * number) -> nil + * + * @par Lua示例 + * setToolDigitalOutputPulse(0,true,2) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set tool digital output pulse. + * + * @param index + * @param value + * @param duration + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool, arg2: float) -> int + * + * @par Lua function prototype + * setToolDigitalOutputPulse(index: number, value: boolean, duration: + * number) -> nil + * + * @par Lua example + * setToolDigitalOutputPulse(0,true,2) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setToolDigitalOutputPulse(int index, bool value, double duration); + + /** + * @ingroup IoControl + * \chinese + * 设置可配置数字输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param value: 数字输出值 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConfigurableDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua函数原型 + * setConfigurableDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua示例 + * setConfigurableDigitalOutput(0,true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the value of configurable digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param value: Output value. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConfigurableDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua function prototype + * setConfigurableDigitalOutput(index: number, value: boolean) -> nil + * + * @par Lua example + * setConfigurableDigitalOutput(0,true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutput","params":[0,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConfigurableDigitalOutput(int index, bool value); + + /** + * @ingroup IoControl + * \chinese + * 设置可配置数字输出脉冲 + * + * @param index + * @param value + * @param duration + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConfigurableDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool, arg2: float) -> int + * + * @par Lua函数原型 + * setConfigurableDigitalOutputPulse(index: number, value: boolean, + * duration: number) -> nil + * + * @par Lua示例 + * setConfigurableDigitalOutputPulse(0,true,2.3) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set configurable digital output pulse. + * + * @param index + * @param value + * @param duration + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConfigurableDigitalOutputPulse(self: pyaubo_sdk.IoControl, arg0: int, + * arg1: bool, arg2: float) -> int + * + * @par Lua function prototype + * setConfigurableDigitalOutputPulse(index: number, value: boolean, + * duration: number) -> nil + * + * @par Lua example + * setConfigurableDigitalOutputPulse(0,true,2.3) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setConfigurableDigitalOutputPulse","params":[0,true,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConfigurableDigitalOutputPulse(int index, bool value, + double duration); + + /** + * @ingroup IoControl + * \chinese + * 设置标准模拟输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param value: 模拟输出值 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setStandardAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * float) -> int + * + * @par Lua函数原型 + * setStandardAnalogOutput(index: number, value: number) -> nil + * + * @par Lua示例 + * setStandardAnalogOutput(0,5.4) + * + * \endchinese + * \english + * Set the value of standard analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param value: Output value. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setStandardAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * float) -> int + * + * @par Lua function prototype + * setStandardAnalogOutput(index: number, value: number) -> nil + * + * @par Lua example + * setStandardAnalogOutput(0,5.4) + * + * \endenglish + */ + int setStandardAnalogOutput(int index, double value); + + /** + * @ingroup IoControl + * \chinese + * 设置工具端模拟输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * @param value: 模拟输出 + * + * @return 成功返回0;失败返回错误码 + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: float) + * -> int + * + * @par Lua函数原型 + * setToolAnalogOutput(index: number, value: number) -> nil + * + * @par Lua示例 + * setToolAnalogOutput(0,1.2) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogOutput","params":[0,0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endchinese + * \english + * Set the value of tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * @param value: Output value. + * + * @return Returns 0 on success; error code on failure. + * AUBO_REQUEST_IGNORE + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int, arg1: float) + * -> int + * + * @par Lua function prototype + * setToolAnalogOutput(index: number, value: number) -> nil + * + * @par Lua example + * setToolAnalogOutput(0,1.2) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setToolAnalogOutput","params":[0,0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endenglish + */ + int setToolAnalogOutput(int index, double value); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输入值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getStandardDigitalInput(index: number) -> boolean + * + * @par Lua示例 + * status = getStandardDigitalInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the value of a standard digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua function prototype + * getStandardDigitalInput(index: number) -> boolean + * + * @par Lua example + * status = getStandardDigitalInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool getStandardDigitalInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的标准数字输入值 + * + * @return 所有的标准数字输入值 \n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的标准数字输入状态值, + * 最后一位表示DI00的输入状态值,倒数第二位表示DI01的输入状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardDigitalInputs() -> number + * + * @par Lua示例 + * num = getStandardDigitalInputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get all standard digital input values. + * + * @return All standard digital input values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all standard digital inputs, the least significant bit + * indicates the input status of DI00, the second least significant bit + * indicates DI01, and so on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardDigitalInputs() -> number + * + * @par Lua example + * num = getStandardDigitalInputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getStandardDigitalInputs(); + + /** + * @ingroup IoControl + * \chinese + * 注册组数字输入 + * + * 注册一个按名称访问的数字输入组。 + * `indexes[0]` 对应 bit0,`indexes[1]` 对应 bit1,以此类推。 + * + * @param name: 组名称。 + * @param io_type: IO类型,0表示Standard,1表示Tool,2表示Configurable。 + * @param indexes: 组成员对应的数字输入索引列表。 + * + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * addGroupInput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, arg2: + * List[int]) -> int + * + * @par Lua函数原型 + * addGroupInput(name: string, io_type: number, indexes: table) -> nil + * + * @par Lua示例 + * addGroupInput("gi_state", 0, {0,1,2,3}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.addGroupInput","params":["gi_state",0,[0,1,2,3]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Register a grouped digital input. + * + * Registers a named digital input group. `indexes[0]` maps to bit0, + * `indexes[1]` maps to bit1, and so on. + * + * @param name: Group name. + * @param io_type: IO type. 0 means Standard, 1 means Tool, and 2 means + * Configurable. + * @param indexes: Index list of digital inputs in the group. + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * addGroupInput(self: pyaubo_sdk.IoControl, arg0: str, arg1: int, arg2: + * List[int]) -> int + * + * @par Lua function prototype + * addGroupInput(name: string, io_type: number, indexes: table) -> nil + * + * @par Lua example + * addGroupInput("gi_state", 0, {0,1,2,3}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.addGroupInput","params":["gi_state",0,[0,1,2,3]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int addGroupInput(const std::string &name, int io_type, + const std::vector &indexes); + + /** + * @ingroup IoControl + * \chinese + * 删除组数字输入 + * + * @param name: 组名称。 + * + * @return 成功返回0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * deleteGroupInput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua函数原型 + * deleteGroupInput(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteGroupInput","params":["gi_state"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete a grouped digital input. + * + * @param name: Group name. + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * deleteGroupInput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua function prototype + * deleteGroupInput(name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteGroupInput","params":["gi_state"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int deleteGroupInput(const std::string &name); + + /** + * @ingroup IoControl + * \chinese + * 获取组数字输入值 + * + * 按名称查找组数字输入后,读取对应组成员并按位拼装返回整数值。 + * + * @param name: 组名称。 + * + * @return 返回组数字输入的组合值。 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getGroupInput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua函数原型 + * getGroupInput(name: string) -> number + * + * @par Lua示例 + * value = getGroupInput("gi_state") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getGroupInput","params":["gi_state"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endchinese + * \english + * Get the grouped digital input value. + * + * Looks up the named grouped digital input, reads the group's members, and + * combines them into an integer value. + * + * @param name: Group name. + * + * @return Returns the combined grouped digital input value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getGroupInput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua function prototype + * getGroupInput(name: string) -> number + * + * @par Lua example + * value = getGroupInput("gi_state") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getGroupInput","params":["gi_state"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endenglish + */ + uint32_t getGroupInput(const std::string &name); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字输入值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getToolDigitalInput(index: number) -> boolean + * + * @par Lua示例 + * status = getToolDigitalInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the value of tool digital input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua function prototype + * getToolDigitalInput(index: number) -> boolean + * + * @par Lua example + * status = getToolDigitalInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool getToolDigitalInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的工具端数字输入值 + * + * @return 返回所有的工具端数字输入值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolDigitalInputs() -> number + * + * @par Lua示例 + * num = getToolDigitalInputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get all tool digital input values. + * + * @return Returns all tool digital input values. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolDigitalInputs() -> number + * + * @par Lua example + * num = getToolDigitalInputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getToolDigitalInputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取可配置数字输入值 + * + * @note 可用于获取安全IO的输入值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> + * bool + * + * @par Lua函数原型 + * getConfigurableDigitalInput(index: number) -> boolean + * + * @par Lua示例 + * status = getConfigurableDigitalInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the value of configurable digital input. + * + * @note Can be used to get the value of safety IO. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalInput(self: pyaubo_sdk.IoControl, arg0: int) -> + * bool + * + * @par Lua function prototype + * getConfigurableDigitalInput(index: number) -> boolean + * + * @par Lua example + * status = getConfigurableDigitalInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool getConfigurableDigitalInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的可配置数字输入值 + * + * @note 可用于获取安全IO的输入值 + * + * @return 所有的可配置数字输入值\n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的输入状态值, + * 最后一位表示管脚0的输入状态值,倒数第二位表示管脚1的输入状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getConfigurableDigitalInputs() -> number + * + * @par Lua示例 + * num = getConfigurableDigitalInputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get all configurable digital input values. + * + * @note Can be used to get the value of safety IO. + * + * @return All configurable digital input values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all input pins, the least significant bit indicates the input + * status of pin 0, the second least significant bit indicates pin 1, and so + * on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getConfigurableDigitalInputs() -> number + * + * @par Lua example + * num = getConfigurableDigitalInputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalInputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getConfigurableDigitalInputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准数字输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getStandardDigitalOutput(index: number) -> boolean + * + * @par Lua示例 + * status = getStandardDigitalOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Get the value of a standard digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua function prototype + * getStandardDigitalOutput(index: number) -> boolean + * + * @par Lua example + * status = getStandardDigitalOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool getStandardDigitalOutput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的标准数字输出值 + * + * @return 所有的标准数字输出值 \n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的标准数字输出状态值, + * 最后一位表示DI00的输出状态值,倒数第二位表示DI01的输出状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态. + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStandardDigitalOutputs() -> number + * + * @par Lua示例 + * num = getStandardDigitalOutputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":69} + * + * \endchinese + * \english + * Get all standard digital output values. + * + * @return All standard digital output values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all standard digital outputs, the least significant bit + * indicates the output status of DO00, the second least significant bit + * indicates DO01, and so on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStandardDigitalOutputs() -> number + * + * @par Lua example + * num = getStandardDigitalOutputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":69} + * + * \endenglish + */ + uint32_t getStandardDigitalOutputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取组数字输出值 + * + * 按名称查找组数字输出后,读取对应组成员并按位拼装返回整数值。 + * + * @param name: 组名称。 + * + * @return 返回组数字输出的组合值。 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getGroupOutput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua函数原型 + * getGroupOutput(name: string) -> number + * + * @par Lua示例 + * value = getGroupOutput("go_state") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getGroupOutput","params":["go_state"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endchinese + * \english + * Get the grouped digital output value. + * + * Looks up the named grouped digital output, reads the group's members, + * and combines them into an integer value. + * + * @param name: Group name. + * + * @return Returns the combined grouped digital output value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getGroupOutput(self: pyaubo_sdk.IoControl, arg0: str) -> int + * + * @par Lua function prototype + * getGroupOutput(name: string) -> number + * + * @par Lua example + * value = getGroupOutput("go_state") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getGroupOutput","params":["go_state"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":13} + * + * \endenglish + */ + uint32_t getGroupOutput(const std::string &name); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端数字输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua函数原型 + * getToolDigitalOutput(index: number) -> boolean + * + * @par Lua示例 + * status = getToolDigitalOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the value of tool digital output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> bool + * + * @par Lua function prototype + * getToolDigitalOutput(index: number) -> boolean + * + * @par Lua example + * status = getToolDigitalOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool getToolDigitalOutput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的工具端数字输出值 + * + * @return 所有的工具端数字输出值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getToolDigitalOutputs() -> number + * + * @par Lua示例 + * num = getToolDigitalOutputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":9} + * + * \endchinese + * \english + * Get all tool digital output values. + * + * @return All tool digital output values. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getToolDigitalOutputs() -> number + * + * @par Lua example + * num = getToolDigitalOutputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":9} + * + * \endenglish + */ + uint32_t getToolDigitalOutputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取可配值数字输出值 + * + * @note 可用于获取安全IO的输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 高电平返回true; 低电平返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> + * bool + * + * @par Lua函数原型 + * getConfigurableDigitalOutput(index: number) -> boolean + * + * @par Lua示例 + * status = getConfigurableDigitalOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Get the value of configurable digital output. + * + * @note Can be used to get the value of safety IO. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Returns true for high level; false for low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalOutput(self: pyaubo_sdk.IoControl, arg0: int) -> + * bool + * + * @par Lua function prototype + * getConfigurableDigitalOutput(index: number) -> boolean + * + * @par Lua example + * status = getConfigurableDigitalOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool getConfigurableDigitalOutput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的可配值数字输出值 + * + * @note 可用于获取安全IO的输出值 + * + * @return 所有的可配值数字输出\n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的输出值, + * 最后一位表示管脚0的输出状态值,倒数第二位表示管脚1的输出状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态. + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConfigurableDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getConfigurableDigitalOutputs() -> number + * + * @par Lua示例 + * num = getConfigurableDigitalOutputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endchinese + * \english + * Get all configurable digital output values. + * + * @note Can be used to get the value of safety IO. + * + * @return All configurable digital output values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all output pins, the least significant bit indicates the output + * status of pin 0, the second least significant bit indicates pin 1, and so + * on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConfigurableDigitalOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getConfigurableDigitalOutputs() -> number + * + * @par Lua example + * num = getConfigurableDigitalOutputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getConfigurableDigitalOutputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endenglish + */ + uint32_t getConfigurableDigitalOutputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输入值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 标准模拟输入值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogInput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua函数原型 + * getStandardAnalogInput(index: number) -> number + * + * @par Lua示例 + * getStandardAnalogInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the value of standard analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Standard analog input value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogInput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua function prototype + * getStandardAnalogInput(index: number) -> number + * + * @par Lua example + * getStandardAnalogInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getStandardAnalogInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输入值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 工具端模拟输入值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogInput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua函数原型 + * getToolAnalogInput(index: number) -> number + * + * @par Lua示例 + * num = getToolAnalogInput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the value of tool analog input. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Tool analog input value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogInput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua function prototype + * getToolAnalogInput(index: number) -> number + * + * @par Lua example + * num = getToolAnalogInput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogInput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getToolAnalogInput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取标准模拟输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 标准模拟输出值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStandardAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua函数原型 + * getStandardAnalogOutput(index: number) -> number + * + * @par Lua示例 + * num = getStandardAnalogOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the value of standard analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Standard analog output value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStandardAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua function prototype + * getStandardAnalogOutput(index: number) -> number + * + * @par Lua example + * num = getStandardAnalogOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStandardAnalogOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getStandardAnalogOutput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取工具端模拟输出值 + * + * @param index: 表示IO口的管脚,管脚编号从0开始。 + * 例如,0表示第一个管脚。 + * + * @return 工具端模拟输出值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua函数原型 + * getToolAnalogOutput(index: number) -> number + * + * @par Lua示例 + * num = getToolAnalogOutput(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutput","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the value of tool analog output. + * + * @param index: Indicates the IO pin, starting from 0. + * For example, 0 means the first pin. + * + * @return Tool analog output value. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolAnalogOutput(self: pyaubo_sdk.IoControl, arg0: int) -> float + * + * @par Lua function prototype + * getToolAnalogOutput(index: number) -> number + * + * @par Lua example + * num = getToolAnalogOutput(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolAnalogOutput","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getToolAnalogOutput(int index); + + /** + * @ingroup IoControl + * \chinese + * 获取联动输入数量 + * + * @return 联动输入数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStaticLinkInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStaticLinkInputNum() -> number + * + * @par Lua示例 + * num = getStaticLinkInputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkInputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":8} + * + * \endchinese + * \english + * Get the number of static link inputs. + * + * @return Number of static link inputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStaticLinkInputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStaticLinkInputNum() -> number + * + * @par Lua example + * num = getStaticLinkInputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkInputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":8} + * + * \endenglish + */ + int getStaticLinkInputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取联动输出数量 + * + * @return 联动输出数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStaticLinkOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStaticLinkOutputNum() -> number + * + * @par Lua示例 + * num = getStaticLinkOutputNum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkOutputNum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the number of static link outputs. + * + * @return Number of static link outputs. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStaticLinkOutputNum(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStaticLinkOutputNum() -> number + * + * @par Lua example + * num = getStaticLinkOutputNum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkOutputNum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getStaticLinkOutputNum(); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的联动输入值 + * + * @return 所有的联动输入值\n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的联动输入状态值, + * 最后一位表示管脚0的输入状态值,倒数第二位表示管脚1的输入状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态. + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStaticLinkInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStaticLinkInputs() -> number + * + * @par Lua示例 + * num = getStaticLinkInputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkInputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get all static link input values. + * + * @return All static link input values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all static link inputs, the least significant bit indicates the + * input status of pin 0, the second least significant bit indicates pin 1, + * and so on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStaticLinkInputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStaticLinkInputs() -> number + * + * @par Lua example + * num = getStaticLinkInputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkInputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getStaticLinkInputs(); + + /** + * @ingroup IoControl + * \chinese + * 获取所有的联动输出值 + * + * @return 返回所有的联动输出值 \n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的联动输出状态值, + * 最后一位表示管脚0的输出状态值,倒数第二位表示管脚1的输出状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态. + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getStaticLinkOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getStaticLinkOutputs() -> number + * + * @par Lua示例 + * num = getStaticLinkOutputs() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkOutputs","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get all static link output values. + * + * @return Returns all static link output values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all static link outputs, the least significant bit indicates + * the output status of pin 0, the second least significant bit indicates + * pin 1, and so on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getStaticLinkOutputs(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getStaticLinkOutputs() -> number + * + * @par Lua example + * num = getStaticLinkOutputs() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getStaticLinkOutputs","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getStaticLinkOutputs(); + + /** + * @ingroup IoControl + * \chinese + * 机器人是否配置了编码器 + * 集成编码器的编号为 0 + * + * @return 机器人配置编码器返回 true, 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.hasEncoderSensor","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Whether the robot is equipped with an encoder. + * The integrated encoder number is 0. + * + * @return Returns true if the robot is equipped with an encoder, otherwise + * false. + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.hasEncoderSensor","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool hasEncoderSensor(); + /** + * @ingroup IoControl + * \chinese + * 设置集成编码器的解码方式 + * + * @param type + * 0-禁用编码器 + * 1-AB正交 + * 2-AB正交+Z + * 3-AB差分正交 + * 4-AB差分正交+Z差分 + * + * @param range_id + * 0 表示32位有符号编码器,范围为 [-2147483648, 2147483647] + * 1 表示8位无符号编码器,范围为 [0, 255] + * 2 表示16位无符号编码器,范围为 [0, 65535] + * 3 表示24位无符号编码器,范围为 [0, 16777215] + * 4 表示32位无符号编码器,范围为 [0, 4294967295] + * + * @return 成功返回0;失败返回错误码 + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set the decoding method of the integrated encoder. + * + * @param type + * 0 - Disable encoder + * 1 - AB quadrature + * 2 - AB quadrature + Z + * 3 - AB differential quadrature + * 4 - AB differential quadrature + Z differential + * + * @param range_id + * 0 is a 32-bit signed encoder, range [-2147483648, 2147483647] + * 1 is an 8-bit unsigned encoder, range [0, 255] + * 2 is a 16-bit unsigned encoder, range [0, 65535] + * 3 is a 24-bit unsigned encoder, range [0, 16777215] + * 4 is a 32-bit unsigned encoder, range [0, 4294967295] + * + * @return Returns 0 on success; error code on failure. + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setEncDecoderType(int type, int range_id); + + /** + * @ingroup IoControl + * \chinese + * 设置集成编码器脉冲数 + * + * @param tick 脉冲数 + * + * @return 成功返回0;失败返回错误码 + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set the tick count of the integrated encoder. + * + * @param tick Tick count + * + * @return Returns 0 on success; error code on failure. + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setEncTickCount(int tick); + + /** + * @ingroup IoControl + * \chinese + * 获取编码器的解码方式 + * + * @return 成功返回0;失败返回错误码 + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getEncDecoderType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the decoder type of the encoder. + * + * @return Returns 0 on success; error code on failure. + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getEncDecoderType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getEncDecoderType(); + + /** + * @ingroup IoControl + * \chinese + * 获取脉冲数 + * + * @return 成功返回0;失败返回错误码 + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getEncTickCount","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the tick count + * + * @return Returns 0 on success; error code on failure. + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getEncTickCount","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getEncTickCount(); + + /** + * @ingroup IoControl + * \chinese + * 防止在计数超出范围时计数错误 + * + * @param delta_count + * + * @return 成功返回0;失败返回错误码 + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Prevent counting errors when the count exceeds the range + * + * @param delta_count + * + * @return Returns 0 on success; error code on failure. + * AUBO_NO_ACCESS + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int unwindEncDeltaTickCount(int delta_count); + + /** + * @ingroup IoControl + * \chinese + * 获取末端按钮状态 + * + * @return 按下返回true; 否则返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolButtonStatus() -> bool + * + * @par Lua函数原型 + * getToolButtonStatus() -> boolean + * + * @par Lua示例 + * status = getToolButtonStatus() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolButtonStatus","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the status of the tool button. + * + * @return Returns true if pressed; otherwise false. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolButtonStatus() -> bool + * + * @par Lua function prototype + * getToolButtonStatus() -> boolean + * + * @par Lua example + * status = getToolButtonStatus() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getToolButtonStatus","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool getToolButtonStatus(); + + /** + * @ingroup IoControl + * \chinese + * 获取手柄按键状态 + * + * @note 获取手柄按键状态 + * + * @return 所有的手柄按键输入值\n + * 例如,当返回值是2863267846时,换成2进制后是10101010101010100000000000000110。 + * 后16位就是所有的输入状态值, + * 最后一位表示管脚0的输入状态值,倒数第二位表示管脚1的输入状态值,以此类推。\n + * 1表示高电平状态,0表示低电平状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleIoStatus(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua函数原型 + * getHandleIoStatus() -> number + * + * @par Lua示例 + * num = getHandleIoStatus() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getHandleIoStatus","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the status of handle buttons. + * + * @note Get the status of handle buttons. + * + * @return All handle button input values.\n + * For example, if the return value is 2863267846, its binary representation + * is 10101010101010100000000000000110. The lower 16 bits represent the + * status of all input pins, the least significant bit indicates the input + * status of pin 0, the second least significant bit indicates pin 1, and so + * on.\n 1 means high level, 0 means low level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleIoStatus(self: pyaubo_sdk.IoControl) -> int + * + * @par Lua function prototype + * getHandleIoStatus() -> number + * + * @par Lua example + * num = getHandleIoStatus() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getHandleIoStatus","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + uint32_t getHandleIoStatus(); + + /** + * @ingroup IoControl + * \chinese + * 获取手柄类型 + * + * @return type + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleType() -> int + * + * @par Lua函数原型 + * getHandleType() -> int + * + * @par Lua示例 + * int_num = getHandleType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getHandleType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the handle type. + * + * @return type + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleType() -> int + * + * @par Lua function prototype + * getHandleType() -> int + * + * @par Lua example + * int_num = getHandleType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getHandleType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getHandleType(); + + /** + * @ingroup IoControl + * \chinese + * 新增或更新一个干涉区(按 id upsert)。 + * + * @param zone 干涉区配置(几何盒 + 各区独立 IO 绑定), 按 id upsert(同 id 覆盖、 + * 新 id 追加); 各字段含义(id/enabled/outside/base_vertex/opposite_vertex/margin/ + * tool_radius/brake_margin/occupied_do_index/occupied_active_high/permit_di_index/ + * permit_active_high)见 WorldZone 结构体。enabled=true 时校验几何/余量: + * brake_margin>0、盒不退化、outside 内缩后体积>0 + * @return 成功返回 AUBO_OK(0); 校验失败或占用 DO 与交叉连接冲突返回 + * -AUBO_INVL_ARGUMENT(-5) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setWorldZone(self: pyaubo_sdk.IoControl, arg0: + * WorldZone) -> int + * + * @par Lua函数原型 + * setWorldZone(zone: table) -> number + * + * @par Lua示例 + * zone = { id = 1, enabled = true, outside = false, + * base_vertex = {0.3, -0.2, 0.1}, opposite_vertex = {0.8, 0.4, 0.7}, + * margin = 0.02, tool_radius = 0.05, brake_margin = 0.1, + * occupied_do_index = 0, occupied_active_high = true, + * permit_di_index = 0, permit_active_high = true } + * ret = setWorldZone(zone) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.setWorldZone","params":[{"id":1,"enabled":true,"outside":false,"base_vertex":[0.3,-0.2,0.1],"opposite_vertex":[0.8,0.4,0.7],"margin":0.02,"tool_radius":0.05,"brake_margin":0.1,"occupied_do_index":0,"occupied_active_high":true,"permit_di_index":0,"permit_active_high":true}],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Add or update an world zone (upsert by id). + * + * @param zone Zone config (geometry box + per-zone IO bindings), upserted by + * id (same id overwrites, new id appends); see the WorldZone struct for the + * meaning of each field (id/enabled/outside/base_vertex/opposite_vertex/margin/ + * tool_radius/brake_margin/occupied_do_index/occupied_active_high/ + * permit_di_index/permit_active_high). When enabled=true the geometry/margins + * are validated: brake_margin>0, box not degenerate, outside shrink volume>0. + * @return AUBO_OK (0) on success; -AUBO_INVL_ARGUMENT (-5) on validation + * failure or occupied-DO conflict with a cross connection. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setWorldZone(self: pyaubo_sdk.IoControl, arg0: + * WorldZone) -> int + * + * @par Lua function prototype + * setWorldZone(zone: table) -> number + * + * @par Lua example + * zone = { id = 1, enabled = true, outside = false, + * base_vertex = {0.3, -0.2, 0.1}, opposite_vertex = {0.8, 0.4, 0.7}, + * margin = 0.02, tool_radius = 0.05, brake_margin = 0.1, + * occupied_do_index = 0, occupied_active_high = true, + * permit_di_index = 0, permit_active_high = true } + * ret = setWorldZone(zone) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.setWorldZone","params":[{"id":1,"enabled":true,"outside":false,"base_vertex":[0.3,-0.2,0.1],"opposite_vertex":[0.8,0.4,0.7],"margin":0.02,"tool_radius":0.05,"brake_margin":0.1,"occupied_do_index":0,"occupied_active_high":true,"permit_di_index":0,"permit_active_high":true}],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setWorldZone(const WorldZone &zone); + + /** + * @ingroup IoControl + * \chinese + * 删除指定 id 的干涉区。 + * + * @param id 要删除的干涉区 id(setWorldZone 时指定的唯一标识) + * @return 成功返回 AUBO_OK(0); 无此 id 返回 -AUBO_INVL_ARGUMENT(-5) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * deleteWorldZone(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua函数原型 + * deleteWorldZone(id: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteWorldZone","params":[1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete the world zone with the given id. + * + * @param id Id of the zone to delete (the unique key set in setWorldZone) + * @return AUBO_OK (0) on success; -AUBO_INVL_ARGUMENT (-5) if the id does + * not exist. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * deleteWorldZone(self: pyaubo_sdk.IoControl, arg0: int) -> int + * + * @par Lua function prototype + * deleteWorldZone(id: number) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.deleteWorldZone","params":[1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int deleteWorldZone(int id); + + /** + * @ingroup IoControl + * \chinese + * 启用/停用指定 id 的干涉区。 + * + * @param id 目标干涉区 id + * @param enabled true=启用(启用前校验几何/余量, 不合法则失败)/false=停用(仅翻 enable 位) + * @return 成功返回 AUBO_OK(0); 无此 id 或启用时校验失败返回 + * -AUBO_INVL_ARGUMENT(-5) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * enableWorldZone(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua函数原型 + * enableWorldZone(id: number, enabled: boolean) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.enableWorldZone","params":[1,true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Enable or disable the world zone with the given id. + * + * @param id Id of the target zone + * @param enabled true=enable (geometry/margins validated first; invalid -> + * fail) / false=disable (just flips the enable flag) + * @return AUBO_OK (0) on success; -AUBO_INVL_ARGUMENT (-5) if id not found + * or enable validation fails. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * enableWorldZone(self: pyaubo_sdk.IoControl, arg0: int, arg1: + * bool) -> int + * + * @par Lua function prototype + * enableWorldZone(id: number, enabled: boolean) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.enableWorldZone","params":[1,true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int enableWorldZone(int id, bool enabled); + + /** + * @ingroup IoControl + * \chinese + * 读取所有干涉区配置。 + * + * @return 干涉区配置列表 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getWorldZones(self: pyaubo_sdk.IoControl) -> + * List[WorldZone] + * + * @par Lua函数原型 + * getWorldZones() -> table + * + * @par Lua示例 + * zones = getWorldZones() + * first_zone_id = zones[1].id + * first_base_x = zones[1].base_vertex[1] + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getWorldZones","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[{"id":1,"enabled":true,"outside":false,"base_vertex":[0.3,-0.2,0.1],"opposite_vertex":[0.8,0.4,0.7],"margin":0.02,"tool_radius":0.05,"brake_margin":0.1,"occupied_do_index":0,"occupied_active_high":true,"permit_di_index":0,"permit_active_high":true}]} + * + * \endchinese + * \english + * Get all world zone configurations. + * + * @return List of zone configurations. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getWorldZones(self: pyaubo_sdk.IoControl) -> + * List[WorldZone] + * + * @par Lua function prototype + * getWorldZones() -> table + * + * @par Lua example + * zones = getWorldZones() + * first_zone_id = zones[1].id + * first_base_x = zones[1].base_vertex[1] + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getWorldZones","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[{"id":1,"enabled":true,"outside":false,"base_vertex":[0.3,-0.2,0.1],"opposite_vertex":[0.8,0.4,0.7],"margin":0.02,"tool_radius":0.05,"brake_margin":0.1,"occupied_do_index":0,"occupied_active_high":true,"permit_di_index":0,"permit_active_high":true}]} + * + * \endenglish + */ + std::vector getWorldZones(); + + /** + * @ingroup IoControl + * \chinese + * 读取干涉区聚合运行状态(只读)。 + * + * @return 运行状态(占用/保持/阻塞/阻塞区 id; 各区 permit 独立, 看 blocking_ids 定位) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getWorldZoneState(self: pyaubo_sdk.IoControl) -> + * WorldZoneState + * + * @par Lua函数原型 + * getWorldZoneState() -> table + * + * @par Lua示例 + * state = getWorldZoneState() + * occupied = state.any_occupied + * first_blocking_id = state.blocking_ids[1] + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.IoControl.getWorldZoneState","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{"any_occupied":false,"holding":true,"blocking":true,"blocking_ids":[1]}} + * + * \endchinese + * \english + * Get the aggregated world zone runtime state (read-only). + * + * @return Runtime state (occupied/holding/blocking/blocking zone ids; + * each zone's permit is independent, see blocking_ids). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getWorldZoneState(self: pyaubo_sdk.IoControl) -> + * WorldZoneState + * + * @par Lua function prototype + * getWorldZoneState() -> table + * + * @par Lua example + * state = getWorldZoneState() + * occupied = state.any_occupied + * first_blocking_id = state.blocking_ids[1] + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.IoControl.getWorldZoneState","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":{"any_occupied":false,"holding":true,"blocking":true,"blocking_ids":[1]}} + * + * \endenglish + */ + WorldZoneState getWorldZoneState(); + +protected: + void *d_; +}; +using IoControlPtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_IO_CONTROL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/motion_control.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/motion_control.h new file mode 100644 index 00000000..0ff393d8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/motion_control.h @@ -0,0 +1,6966 @@ +/** @file motion_control.h + * \~chinese @brief 运动控制接口 + * \~english @brief Motion control interface + */ +#ifndef AUBO_SDK_MOTION_CONTROL_INTERFACE_H +#define AUBO_SDK_MOTION_CONTROL_INTERFACE_H + +#include +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * pathBuffer类型 + * + * 机器人运动被编程为位姿到位姿的运动,即从当前位置移动到新位置。两点之间的路径由机器人自动计算。 + * \endchinese + * \english + * + * pathBuffer Type + * + * The robot movements are programmed as pose-to-pose movements, that is move + * from the current position to a new position. The path between these two + * positions is then automatically calculated by the robot. + * \endenglish + */ + +enum PathBufferType +{ + PathBuffer_TOPPRA = 1, ///< \~chinese 1: toppra 时间最优路径规划 \~english + ///< 1: toppra time optimal path planning + PathBuffer_CubicSpline = + 2, ///< \~chinese 2: cubic_spline(录制的轨迹) \~english 2: cubic_spline + ///< (recorded trajectory) + + /// \~chinese 3: 关节B样条插值,最少三个点 \~english 3: Joint B-spline + /// interpolation, at least three points + /// \~chinese 废弃,建议用5替代,现在实际是关节空间 CUBIC_SPLINE \~english + /// Deprecated, use 5 instead, currently it is joint space CUBIC_SPLINE + PathBuffer_JointSpline = 3, + + /// \~chinese 4:关节B样条插值,最少三个点,但是传入的是笛卡尔空间位姿 + /// \~english 4: Joint B-spline interpolation, at least three points, but + /// the input is Cartesian space pose 废弃,建议用6替代,现在实际是关节空间 + /// CUBIC_SPLINE + PathBuffer_JointSplineC = 4, + + ///< \~chinese 5: 关节B样条插值,最少三个点 \~english 5: Joint B-spline + ///< interpolation, at least three points + PathBuffer_JointBSpline = 5, + + /// \~chinese 6:关节B样条插值,最少三个点,但是传入的是笛卡尔空间位姿 + /// \~english 6: Joint B-spline interpolation, at least three points, but + /// the input is Cartesian space pose + PathBuffer_JointBSplineC = 6, +}; + +/** + * \chinese + * @defgroup MotionControl MotionControl (运动规划与控制) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup MotionControl Motion Planning and Control + * @ingroup RobotInterface + * \endenglish + * MotionControl + */ +class ARCS_ABI_EXPORT MotionControl +{ +public: + MotionControl(); + virtual ~MotionControl(); + + /** + * @ingroup MotionControl + * \chinese + * 获取等效半径,单位 m + * moveLine/moveCircle时,末端姿态旋转的角度等效到末端位置移动 + * 可以通过 setEqradius 设置,默认为1 + * + * @return 返回等效半径 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getEqradius(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua函数原型 + * getEqradius() -> number + * + * @par Lua 示例 + * num = getEqradius() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getEqradius","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endchinese + * \english + * Get the equivalent radius, in meters. + * When using moveLine/moveCircle, the rotation angle of the end effector's + * pose is converted to an equivalent end position movement. Can be set via + * setEqradius, default is 1. + * + * @return Returns the equivalent radius. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getEqradius(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua function prototype + * getEqradius() -> number + * + * @par Lua example + * num = getEqradius() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getEqradius","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endenglish + */ + double getEqradius(); + + /** + * @ingroup MotionControl + * \chinese + * 设置等效半径,单位 m + * moveLine/moveCircle时,末端姿态旋转的角度等效到末端位置移动,数值越大,姿态旋转速度越快 + * + * @param eqradius 0表示只规划移动,姿态旋转跟随移动 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setEqradius","params":[0.8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par Python函数原型 + * setEqradius(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua函数原型 + * setEqradius(eqradius: number) -> number + * + * @par Lua示例 + * num = setEqradius(1) + * + * \endchinese + * \english + * Set the equivalent radius, in meters. + * When using moveLine/moveCircle, the rotation angle of the end effector's + * pose is converted to an equivalent end position movement. The larger the + * value, the faster the posture rotation speed. + * + * @param eqradius 0 means only plan the movement, and the posture rotation + * follows the movement. + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setEqradius","params":[0.8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par Python function prototype + * setEqradius(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua function prototype + * setEqradius(eqradius: number) -> number + * + * @par Lua example + * num = setEqradius(1) + * + * \endenglish + */ + int setEqradius(double eqradius); + + /** + * @ingroup MotionControl + * \chinese + * 动态调整机器人运行速度和加速度比例 (0., 1.] + * + * @param fraction 机器人运行速度和加速度比例 + * @return 成功返回0; 失败返回错误码 + * AUBO_INVL_ARGUMENT + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSpeedFraction(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua函数原型 + * setSpeedFraction(fraction: number) -> nil + * + * @par Lua示例 + * setSpeedFraction(0.5) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setSpeedFraction","params":[0.8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Dynamically adjust the robot's speed and acceleration ratio (0., 1.] + * + * @param fraction The ratio of robot speed and acceleration + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_INVL_ARGUMENT + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setSpeedFraction(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua function prototype + * setSpeedFraction(fraction: number) -> nil + * + * @par Lua example + * setSpeedFraction(0.5) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setSpeedFraction","params":[0.8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setSpeedFraction(double fraction); + + /** + * @ingroup MotionControl + * \chinese + * 获取速度和加速度比例,默认为 1 + * 可以通过 setSpeedFraction 接口设置 + * + * @return 返回速度和加速度比例 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSpeedFraction(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua函数原型 + * getSpeedFraction() -> number + * + * @par Lua示例 + * num = getSpeedFraction() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getSpeedFraction","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endchinese + * \english + * Get the speed and acceleration ratio, default is 1. + * Can be set via setSpeedFraction interface. + * + * @return Returns the speed and acceleration ratio. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSpeedFraction(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua function prototype + * getSpeedFraction() -> number + * + * @par Lua example + * num = getSpeedFraction() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getSpeedFraction","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endenglish + */ + double getSpeedFraction(); + + /** + * @ingroup MotionControl + * \chinese + * 速度比例设置临界区,使能之后速度比例被强制设定为1. , + * 失能之后恢复之前的速度比例 + * + * @param enable + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * speedFractionCritical() -> int + * + * @par Lua示例 + * speedFractionCritical(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedFractionCritical","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Speed fraction critical section. When enabled, the speed fraction is + * forced to 1. When disabled, the previous speed fraction is restored. + * + * @param enable + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * speedFractionCritical() -> int + * + * @par Lua example + * speedFractionCritical(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedFractionCritical","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int speedFractionCritical(bool enable); + + /** + * @ingroup MotionControl + * \chinese + * 速度比例设置临界区,使能之后速度比例被强制设定为当前生效的比例, + * 失能之后恢复之前的速度比例 + * + * @param enable + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * speedFractionCritical1() -> int + * + * @par Lua示例 + * speedFractionCritical1(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedFractionCritical1","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Speed fraction critical section. When enabled, the speed fraction is + * forced to the currently effective speed fraction. When disabled, the + * previous speed fraction is restored. + * + * @param enable + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * speedFractionCritical1() -> int + * + * @par Lua example + * speedFractionCritical1(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedFractionCritical1","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int speedFractionCritical1(bool enable); + + /** + * @ingroup MotionControl + * \chinese + * 是否处于速度比例设置临界区 + * + * @return 处于速度比例设置临界区返回 true; 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isSpeedFractionCritical() -> bool + * + * @par Lua示例 + * status = isSpeedFractionCritical() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isSpeedFractionCritical","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Whether it is in the speed fraction critical section + * + * @return Returns true if in the speed fraction critical section; otherwise + * returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isSpeedFractionCritical() -> bool + * + * @par Lua example + * status = isSpeedFractionCritical() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isSpeedFractionCritical","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isSpeedFractionCritical(); + + /** + * @ingroup MotionControl + * \chinese + * 是否处交融区 + * + * @return 处交融区返回 true; 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isBlending() -> bool + * + * @par Lua示例 + * status = isBlending() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isBlending","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Whether it is in the blending area + * + * @return Returns true if in the blending area; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isBlending() -> bool + * + * @par Lua example + * status = isBlending() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isBlending","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isBlending(); + + /** + * @ingroup MotionControl + * \chinese + * 设置偏移的最大速度和最大加速度 + * 仅对pathOffsetSet中 type=1 有效 + * @param v 最大速度 + * @param a 最大加速度 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetLimits(self: pyaubo_sdk.MotionControl, arg0: float, arg1: + * float) -> int + * + * @par Lua函数原型 + * pathOffsetLimits(v: number, a: number) -> nil + * + * @par Lua示例 + * pathOffsetLimits(1.5,2.5) + * + * \endchinese + * \english + * Set the maximum speed and maximum acceleration for offset. + * Only valid when type=1 in pathOffsetSet. + * @param v Maximum speed + * @param a Maximum acceleration + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetLimits(self: pyaubo_sdk.MotionControl, arg0: float, arg1: + * float) -> int + * + * @par Lua function prototype + * pathOffsetLimits(v: number, a: number) -> nil + * + * @par Lua example + * pathOffsetLimits(1.5,2.5) + * + * \endenglish + */ + int pathOffsetLimits(double v, double a); + + /** + * @ingroup MotionControl + * \chinese + * 设置偏移的参考坐标系 + * 仅对pathOffsetSet中 type=1 有效 + * @param ref_coord 参考坐标系 0-基坐标系 1-TCP + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetCoordinate(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua函数原型 + * pathOffsetCoordinate(ref_coord: number) -> number + * + * @par Lua示例 + * num = pathOffsetCoordinate(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetCoordinate","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the reference coordinate system for offset. + * Only valid when type=1 in pathOffsetSet. + * @param ref_coord Reference coordinate system: 0-base coordinate, 1-TCP + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetCoordinate(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua function prototype + * pathOffsetCoordinate(ref_coord: number) -> number + * + * @par Lua example + * num = pathOffsetCoordinate(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetCoordinate","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathOffsetCoordinate(int ref_coord); + + /** + * @ingroup MotionControl + * \chinese + * 路径偏移使能 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetEnable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * pathOffsetEnable() -> number + * + * @par Lua示例 + * num = pathOffsetEnable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetEnable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Enable path offset + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetEnable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * pathOffsetEnable() -> number + * + * @par Lua example + * num = pathOffsetEnable() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetEnable","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathOffsetEnable(); + + /** + * @ingroup MotionControl + * \chinese + * 设置路径偏移 + * + * @param offset 在各方向的位姿偏移 + * @param type 运动类型 0-位置规划 1-速度规划 + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetSet(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * int) -> int + * + * @par Lua函数原型 + * pathOffsetSet(offset: table, type: number) -> nil + * + * @par Lua 示例 + * pathOffsetSet({ 0, 0, 0.1, 0, 0, 0 }, 0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetSet","params":[[0,0,0.01,0,0,0],0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set path offset + * + * @param offset Pose offset in each direction + * @param type Motion type 0-position planning 1-velocity planning + * @return Returns 0 on success; otherwise returns error code + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetSet(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * int) -> int + * + * @par Lua function prototype + * pathOffsetSet(offset: table, type: number) -> nil + * + * @par Lua example + * pathOffsetSet({ 0, 0, 0.1, 0, 0, 0 }, 0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetSet","params":[[0,0,0.01,0,0,0],0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathOffsetSet(const std::vector &offset, int type = 0); + + /** + * @ingroup MotionControl + * \chinese + * 路径偏移失能 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetDisable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * pathOffsetDisable() -> nil + * + * @par Lua示例 + * pathOffsetDisable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetDisable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Disable path offset + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetDisable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * pathOffsetDisable() -> nil + * + * @par Lua example + * pathOffsetDisable() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathOffsetDisable","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathOffsetDisable(); + + /** + * @ingroup MotionControl + * \chinese + * @brief 监控轨迹偏移范围 + * @param min: 沿坐标轴负方向最大偏移量 + * @param max: 沿坐标轴正方向最大偏移量 + * @param strategy: 达到最大偏移量后监控策略 + *     0-禁用监控 + *     1-饱和限制,即维持最大姿态 + *     2-保护停止 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathOffsetSupv(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * List[float], arg2: int) -> int + * + * @par Lua函数原型 + * pathOffsetSupv(min: table, max: table, strategy: number) -> number + * + * @par Lua示例 + * num = pathOffsetSupv({0,0,-0.2,0,0,0},{0,0,0.5,0,0,0},0) + * + * \endchinese + * \english + * @brief Monitor trajectory offset range + * @param min: Maximum offset in the negative direction of the coordinate + * axis + * @param max: Maximum offset in the positive direction of the coordinate + * axis + * @param strategy: Monitoring strategy after reaching the maximum offset + *     0 - Disable monitoring + *     1 - Saturation limit, i.e., maintain maximum pose + *     2 - Protective stop + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathOffsetSupv(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * List[float], arg2: int) -> int + * + * @par Lua function prototype + * pathOffsetSupv(min: table, max: table, strategy: number) -> number + * + * @par Lua example + * num = pathOffsetSupv({0,0,-0.2,0,0,0},{0,0,0.5,0,0,0},0) + * + * \endenglish + */ + int pathOffsetSupv(const std::vector &min, + const std::vector &max, int strategy); + + /** + * @ingroup MotionControl + * \chinese + * 关节偏移使能 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * jointOffsetEnable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * jointOffsetEnable() -> nil + * + * @par Lua示例 + * jointOffsetEnable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetEnable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Enable joint offset + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * jointOffsetEnable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * jointOffsetEnable() -> nil + * + * @par Lua example + * jointOffsetEnable() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetEnable","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int jointOffsetEnable(); + + /** + * @ingroup MotionControl + * \chinese + * 设置关节偏移 + * + * @param offset 在各关节的位姿偏移 + * @param type + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * jointOffsetSet(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * int) -> int + * + * @par Lua函数原型 + * jointOffsetSet(offset: table, type: number) -> nil + * + * @par Lua示例 + * jointOffsetSet({0.1,0,0,0,0,0},1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetSet","params":[[0.1,0,0,0,0],1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set joint offset + * + * @param offset Pose offset for each joint + * @param type + * @return Returns 0 on success; otherwise returns error code + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * jointOffsetSet(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * int) -> int + * + * @par Lua function prototype + * jointOffsetSet(offset: table, type: number) -> nil + * + * @par Lua example + * jointOffsetSet({0.1,0,0,0,0,0},1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetSet","params":[[0.1,0,0,0,0],1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int jointOffsetSet(const std::vector &offset, int type = 1); + + /** + * @ingroup MotionControl + * \chinese + * 关节偏移失能 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * jointOffsetDisable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * jointOffsetDisable() -> nil + * + * @par Lua示例 + * jointOffsetDisable() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetDisable","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Disable joint offset + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * jointOffsetDisable(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * jointOffsetDisable() -> nil + * + * @par Lua example + * jointOffsetDisable() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.jointOffsetDisable","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int jointOffsetDisable(); + + /** + * @ingroup MotionControl + * \chinese + * 获取已经入队的指令段(INST)数量,运动指令包括 + * moveJoint/moveLine/moveCircle 等运动指令以及 setPayload 等配置指令 + * + * 指令一般会在接口宏定义里面用 _INST 指示, 比如 moveJoint + * _INST(MotionControl, 5, moveJoint, q, a, v, blend_radius, duration) + * + * @return 已经入队的指令段数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getQueueSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * getQueueSize() -> number + * + * @par Lua示例 + * num = getQueueSize() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getQueueSize","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the number of enqueued instruction segments (INST), including motion + * instructions such as moveJoint/moveLine/moveCircle and configuration + * instructions such as setPayload. + * + * Instructions are generally indicated with _INST in macro definitions, for + * example: _INST(MotionControl, 5, moveJoint, q, a, v, blend_radius, + * duration) + * + * @return The number of enqueued instruction segments. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getQueueSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * getQueueSize() -> number + * + * @par Lua example + * num = getQueueSize() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getQueueSize","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getQueueSize(); + + /** + * @ingroup MotionControl + * \chinese + * 获取已经入队的运动规划插补点数量 + * + * @return 已经入队的运动规划插补点数量 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTrajectoryQueueSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * getTrajectoryQueueSize() -> number + * + * @par Lua示例 + * num = getTrajectoryQueueSize() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getTrajectoryQueueSize","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the number of enqueued motion planning interpolation points + * + * @return The number of enqueued motion planning interpolation points + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTrajectoryQueueSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * getTrajectoryQueueSize() -> number + * + * @par Lua example + * num = getTrajectoryQueueSize() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getTrajectoryQueueSize","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getTrajectoryQueueSize(); + + /** + * @ingroup MotionControl + * \chinese + * 获取当前正在插补的运动指令段的ID + * + * @return 当前正在插补的运动指令段的ID + * @retval -1 表示轨迹队列为空 \n + * 像movePathBuffer运动中的buffer或者规划器(moveJoint和moveLine等)里的队列都属于轨迹队列 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getExecId(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * getExecId() -> number + * + * @par Lua示例 + * num = getExecId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getExecId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Get the ID of the currently interpolating motion instruction segment. + * + * @return The ID of the currently interpolating motion instruction segment. + * @retval -1 Indicates the trajectory queue is empty. \n + * Both the buffer in movePathBuffer motion and the queue in the planner + * (such as moveJoint and moveLine) belong to the trajectory queue. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getExecId(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * getExecId() -> number + * + * @par Lua example + * num = getExecId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getExecId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int getExecId(); + + /** + * @ingroup MotionControl + * \chinese + * 获取指定ID的运动指令段的预期执行时间 + * + * @param id 运动指令段ID + * @return 返回预期执行时间 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDuration(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua函数原型 + * getDuration(id: number) -> number + * + * @par Lua示例 + * num = getDuration(16) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getDuration","params":[16],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the expected execution duration of the motion segment with the + * specified ID. + * + * @param id Motion segment ID + * @return Returns the expected execution duration + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDuration(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua function prototype + * getDuration(id: number) -> number + * + * @par Lua example + * num = getDuration(16) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getDuration","params":[16],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getDuration(int id); + + /** + * @ingroup MotionControl + * \chinese + * 获取指定ID的运动指令段的剩余执行时间 + * + * @param id 运动指令段ID + * @return 返回剩余执行时间 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMotionLeftTime(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua函数原型 + * getMotionLeftTime(id: number) -> number + * + * @par Lua示例 + * num = getMotionLeftTime(16) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getMotionLeftTime","params":[16],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Get the remaining execution time of the motion segment with the specified + * ID. + * + * @param id Motion segment ID + * @return Returns the remaining execution time + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMotionLeftTime(self: pyaubo_sdk.MotionControl, arg0: int) -> float + * + * @par Lua function prototype + * getMotionLeftTime(id: number) -> number + * + * @par Lua example + * num = getMotionLeftTime(16) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getMotionLeftTime","params":[16],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + double getMotionLeftTime(int id); + + /** + * @ingroup MotionControl + * \chinese + * StopMove 用于临时停止机器人和外部轴的运动以及相关工艺进程。如果调用 + * StartMove 指令,则运动和工艺进程将恢复。 + * + * 该指令可用于中断处理程序中,在发生中断时临时停止机器人。 + * + * @param quick true: 以最快速度在路径上停止机器人。未指定 quick + * 参数时,机器人将在路径上停止,但制动距离较长(与普通程序停止相同)。 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * StopMove(quick: bool,all_tasks: bool) -> number + * + * @par Lua示例 + * num = StopMove(true,true) + * + * \endchinese + * \english + * StopMove is used to stop robot and external axes movements and any + * belonging process temporarily. If the instruction StartMove is given then + * the movement and process resumes. + * + * This instruction can, for example, be used in a trap routine to stop the + * robot temporarily when an interrupt occurs. + * + * @param quick true: Stops the robot on the path as fast as possible. + * Without the optional parameter \Quick, the robot stops on the path, but + * the braking distance is longer (same as for normal Program Stop). + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * StopMove(quick: bool,all_tasks: bool) -> number + * + * @par Lua example + * num = StopMove(true,true) + * + * \endenglish + */ + int stopMove(bool quick, bool all_tasks); + + /** + * @ingroup MotionControl + * \chinese + * StartMove 用于在以下情况下恢复机器人、外部轴的运动以及相关工艺进程: + * • 通过 StopMove 指令停止后。 + * • 执行 StorePath ... RestoPath 序列后。 + * • 发生异步运动错误(如 ERR_PATH_STOP)或特定工艺错误并在 ERROR + * 处理器中处理后。 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * startMove() -> number + * + * @par Lua示例 + * num = startMove() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.startMove","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * StartMove is used to resume robot, external axes movement and belonging + * process after the movement has been stopped + * + * • by the instruction StopMove. + * • after execution of StorePath ... RestoPath sequence. + * • after asynchronously raised movements errors, such as ERR_PATH_STOP or + * specific process error after handling in the ERROR handler. + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * startMove() -> number + * + * @par Lua example + * num = startMove() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.startMove","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int startMove(); + + /** + * @ingroup MotionControl + * \chinese + * storePath + * + * @param keep_sync + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * storePath(keep_sync: bool) -> number + * + * @par Lua示例 + * num = storePath() + * + * \endchinese + * \english + * storePath + * + * @param keep_sync + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * storePath(keep_sync: bool) -> number + * + * @par Lua example + * num = storePath() + * + * \endenglish + */ + int storePath(bool keep_sync); + + /** + * @ingroup MotionControl + * \chinese + * ClearPath (清除路径) 清除当前运动路径层级(基础层级或 StorePath + * 层级)上的所有运动路径。 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * clearPath() -> number + * + * @par Lua示例 + * num = clearPath() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.clearPath","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * ClearPath clears the whole motion path on the current motion path level + * (base level or StorePath level). + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * clearPath() -> number + * + * @par Lua example + * num = clearPath() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.clearPath","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int clearPath(); + + /** + * @ingroup MotionControl + * \chinese + * restoPath + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * restoPath() -> number + * + * @par Lua示例 + * num = restoPath() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.restoPath","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * restoPath + * + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * restoPath() -> number + * + * @par Lua example + * num restoPath() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.restoPath","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int restoPath(); + + /** + * @ingroup MotionControl + * \chinese + * 获取当前运动指令段的执行进度 + * + * @return 返回执行进度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getProgress(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua函数原型 + * getProgress() -> number + * + * @par Lua示例 + * num = getProgress() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getProgress","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endchinese + * \english + * Get the execution progress of the current motion instruction segment. + * + * @return Returns the execution progress. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getProgress(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua function prototype + * getProgress() -> number + * + * @par Lua example + * num = getProgress() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getProgress","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * + * \endenglish + */ + double getProgress(); + + /** + * @ingroup MotionControl + * \chinese + * 当工件安装在另外一台机器人的末端或者外部轴上时,指定其名字和安装位置 + * + * @note 暂未实现 + * + * @param module_name 控制模块名字 + * @param mounting_pose 抓取的相对位置, + * 如果是机器人,则相对于机器人末端中心点(非TCP点) + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setWorkObjectHold(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua函数原型 + * setWorkObjectHold(module_name: string, mounting_pose: table) -> nil + * + * @par Lua示例 + * setWorkObjectHold("object",{0.2,0.1,-0.4,3.14,0,-1.57}) + * + * \endchinese + * \english + * Specify the name and mounting position when the workpiece is installed on + * the end of another robot or external axis. + * + * @note Not implemented yet + * + * @param module_name Name of the control module + * @param mounting_pose Relative position of the grasp, + * if it is a robot, it is relative to the robot's end center point (not the + * TCP point) + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setWorkObjectHold(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[float]) -> int + * + * @par Lua function prototype + * setWorkObjectHold(module_name: string, mounting_pose: table) -> nil + * + * @par Lua example + * setWorkObjectHold("object",{0.2,0.1,-0.4,3.14,0,-1.57}) + * + * \endenglish + */ + int setWorkObjectHold(const std::string &module_name, + const std::vector &mounting_pose); + + /** + * @ingroup MotionControl + * \chinese + * 获取工件安装信息 + * + * @note 暂未实现 + * + * @return 返回一个包含控制模块名字和安装位姿的元组 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getWorkObjectHold(self: pyaubo_sdk.MotionControl) -> Tuple[str, + * List[float]] + * + * @par Lua函数原型 + * getWorkObjectHold() -> table + * + * @par Lua示例 + * Object_table = getWorkObjectHold() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getWorkObjectHold","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["",[]]} + * \endchinese + * \english + * getWorkObjectHold + * + * @note Not implemented yet + * + * @return Returns a tuple containing the control module name and mounting + * pose + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getWorkObjectHold(self: pyaubo_sdk.MotionControl) -> Tuple[str, + * List[float]] + * + * @par Lua function prototype + * getWorkObjectHold() -> table + * + * @par Lua example + * Object_table = getWorkObjectHold() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getWorkObjectHold","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["",[]]} + * \endenglish + */ + std::tuple> getWorkObjectHold(); + + /** + * @ingroup MotionControl + * \chinese + * @note 获取暂停点关节位置 + * + * 常用于运行工程时发生碰撞后继续运动过程中(先通过resumeMoveJoint或resumeMoveLine运动到暂停位置,再恢复工程) + * + * @return 暂停关节位置 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPauseJointPositions(self: pyaubo_sdk.MotionControl) -> List[float] + * + * @par Lua函数原型 + * getPauseJointPositions() -> table + * + * @par Lua示例 + * JointPositions = getPauseJointPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getPauseJointPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[8.2321e-13,-0.200999,1.33999,0.334999,1.206,-6.39383e-12]} + * \endchinese + * \english + * @note Get the joint positions at the pause point. + * + * Commonly used during process recovery after a collision occurs (first + * move to the pause position using resumeMoveJoint or resumeMoveLine, then + * resume the process). + * + * @return Pause joint positions + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPauseJointPositions(self: pyaubo_sdk.MotionControl) -> List[float] + * + * @par Lua function prototype + * getPauseJointPositions() -> table + * + * @par Lua example + * JointPositions = getPauseJointPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getPauseJointPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[8.2321e-13,-0.200999,1.33999,0.334999,1.206,-6.39383e-12]} + * \endenglish + */ + std::vector getPauseJointPositions(); + + /** + * @ingroup MotionControl + * \chinese + * 设置继续运动参数 + * + * @param q 继续运动起始位置 + * @param move_type 0:关节空间 1:笛卡尔空间 + * @param blend_radius 交融半径 + * @param qdmax 关节运动最大速度(6维度数据) + * @param qddmax 关节运动最大加速度(6维度数据) + * @param vmax 直线运动最大线速度,角速度(2维度数据) + * @param amax 直线运动最大线加速度,角加速度(2维度数据) + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setResumeStartPoint(self: pyaubo_sdk.MotionControl, + * arg0:List[float],arg1: int, arg2: float,arg3: List[float], arg4: + * List[float],arg5:float,arg5:float) -> int + * + * @par Lua函数原型 + * setResumeStartPoint(q : table, move_type: number,blend_radius: + * number, qdmax: table, qddmax: + * table,vmax:number,amax:number) -> nilr + * + * @par Lua示例 + * setResumeStartPoint({0,0,0,0,0,0},1,1,{0,0,0,0,0,0},{0,0,0,0,0,0},{1,1},{1,1}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setResumeStartPoint","params":[[0,0,0,0,0,0],1,1,[0,0,0,0,0,0],[0,0,0,0,0,0],1,1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set resume motion parameters + * + * @param q Resume start position + * @param move_type 0: Joint space, 1: Cartesian space + * @param blend_radius Blend radius + * @param qdmax Maximum joint speed (6 elements) + * @param qddmax Maximum joint acceleration (6 elements) + * @param vmax Maximum linear and angular speed for linear motion (2 + * elements) + * @param amax Maximum linear and angular acceleration for linear motion (2 + * elements) + * @return Returns 0 on success; otherwise returns error code + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setResumeStartPoint(self: pyaubo_sdk.MotionControl, + * arg0: List[float], arg1: int, arg2: float, arg3: List[float], arg4: + * List[float], arg5: float, arg6: float) -> int + * + * @par Lua function prototype + * setResumeStartPoint(q: table, move_type: number, blend_radius: + * number, qdmax: table, qddmax: + * table, vmax: number, amax: number) -> nil + * + * @par Lua example + * setResumeStartPoint({0,0,0,0,0,0},1,1,{0,0,0,0,0,0},{0,0,0,0,0,0},{1,1},{1,1}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setResumeStartPoint","params":[[0,0,0,0,0,0],1,1,[0,0,0,0,0,0],[0,0,0,0,0,0],1,1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setResumeStartPoint(const std::vector &q, int move_type, + double blend_radius, + const std::vector &qdmax, + const std::vector &qddmax, + const std::vector &vmax, + const std::vector &amax); + /** + * @ingroup MotionControl + * \chinese + * 获取继续运动模式 + * + * @return 0:继续运动起始点为暂停点 1:继续运动起始点为指定点 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getResumeMode(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * getResumeMode() -> int + * + * @par Lua示例 + * num = getResumeMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getResumeMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get resume motion mode + * + * @return 0: Resume start point is the pause point; 1: Resume start point + * is the specified point + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getResumeMode(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * getResumeMode() -> int + * + * @par Lua example + * num = getResumeMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getResumeMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + int getResumeMode(); + + /** + * @ingroup MotionControl + * \chinese + * 设置伺服模式 + * 使用 setServoModeSelect 替代 + * + * @param enable 是否使能 + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setServoMode(self: pyaubo_sdk.MotionControl, arg0: bool) -> int + * + * @par Lua函数原型 + * setServoMode(enable: boolean) -> nil + * + * @par Lua示例 + * setServoMode(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setServoMode","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set servo mode + * Use setServoModeSelect instead + * + * @param enable Whether to enable + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setServoMode(self: pyaubo_sdk.MotionControl, arg0: bool) -> int + * + * @par Lua function prototype + * setServoMode(enable: boolean) -> nil + * + * @par Lua example + * setServoMode(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setServoMode","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + ARCS_DEPRECATED int setServoMode(bool enable); + + /** + * @ingroup MotionControl + * \chinese + * 判断伺服模式是否使能 + * 使用 getServoModeSelect 替代 + * + * @return 已使能返回true,反之则返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isServoModeEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua函数原型 + * isServoModeEnabled() -> boolean + * + * @par Lua示例 + * Servo_status = isServoModeEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isServoModeEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Determine whether the servo mode is enabled. + * Use getServoModeSelect instead. + * + * @return Returns true if enabled, otherwise returns false. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isServoModeEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * isServoModeEnabled() -> boolean + * + * @par Lua example + * Servo_status = isServoModeEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isServoModeEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + ARCS_DEPRECATED bool isServoModeEnabled(); + + /** + * @ingroup MotionControl + * \chinese + * 设置伺服运动模式 + * + * @param mode + * 0-退出伺服模式 + * 1-(截断式)规划伺服模式 + * 2-透传模式(直接下发) + * 3-透传模式(缓存) + * 4-1ms透传模式(缓存) + * 5-规划伺服模式 + * 6-(截断式)规划伺服模式, 可以叠加力控 + * 7-规划伺服模式,可以叠加力控 + * 伺服模式1添加路点后,会实时调整目标点和规划路线(当前的目标点被更新后,不能保证达到之前设定的目标点) + * 伺服模式5添加路点后,能保证经过所有目标点 + * @return + * + * @par Lua函数原型 + * setServoModeSelect(0) -> nil + * + * @par Lua示例 + * setServoModeSelect(0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setServoModeSelect","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set servo motion mode + * + * @param mode + * 0 - Exit servo mode + * 1 - Planning servo mode + * 2 - Transparent mode (direct send) + * 3 - Transparent mode (buffered) + * @return + * + * @par Lua function prototype + * setServoModeSelect(0) -> nil + * + * @par Lua example + * setServoModeSelect(0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setServoModeSelect","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setServoModeSelect(int mode); + + /** + * @ingroup MotionControl + * \chinese + * 获取伺服运动模式 + * + * @return + * + * @par Lua函数原型 + * getServoModeSelect() -> number + * + * @par Lua示例 + * num = getServoModeSelect() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getServoModeSelect","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Get the servo motion mode + * + * @return + * + * @par Lua function prototype + * getServoModeSelect() -> number + * + * @par Lua example + * num = getServoModeSelect() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getServoModeSelect","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int getServoModeSelect(); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间伺服 + * + * 目前可用参数只有 q 和 t; + * @param q 关节角, 单位 rad, + * @param a 加速度, 单位 rad/s^2, + * @param v 速度,单位 rad/s, + * @param t 运行时间,单位 s \n + * t 值越大,机器臂运动越慢,反之,运动越快; + * 该参数最优值为连续调用 servoJoint 接口的间隔时间。 + * @param lookahead_time 前瞻时间,单位 s \n + * 指定机器臂开始减速前要运动的时长,用前瞻时间来平滑轨迹[0.03, 0.2], + * 当 lookahead_time 小于一个控制周期时,越小则超调量越大, + * 该参数最优值为一个控制周期。 + * @param gain 比例增益 + * 跟踪目标位置的比例增益[100, 200], + * 用于控制运动的顺滑性和精度, + * 比例增益越大,到达目标位置的时间越长,超调量越小。 + * + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_QUEUE_FULL(2) 规划队列已满 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * @retval -AUBO_INVL_ARGUMENT(-5) + * 轨迹位置超限、速度超限或相邻点角度差超限(±15°) + * @retval -AUBO_REQUEST_IGNORE(-13) 当前处于非 servo 模式 + * @retval -AUBO_POS_BOUND_ERR(-18) 关节位置超出机器人最大限制 + * @retval -AUBO_TRAJ_SELF_COLLISION(-22) 轨迹存在自碰撞风险 + * @retval -AUBO_ALGORITHM_PLAN_FAILED(-30) 轨迹规划失败 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * servoJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua函数原型 + * servoJoint(q: table, a: number, v: number, t: number, lookahead_time: + * number, gain: number) -> nil + * + * @par Lua示例 + * servoJoint({0,0,0,0,0,0},0,0,10,0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.servoJoint","params":[[0,0,0,0,0,0],0,0,10,0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-13} + * + * \endchinese + * \english + * Joint space servo + * + * Currently only q and t parameters are available; + * @param q Joint angles, unit: rad + * @param a Acceleration, unit: rad/s^2 + * @param v Velocity, unit: rad/s + * @param t Execution time, unit: s \n + * The larger the t value, the slower the robot moves, and vice versa; + * The optimal value for this parameter is the interval time for continuous + * calls to the servoJoint interface. + * @param lookahead_time Lookahead time, unit: s \n + * Specifies the duration to move before the robot starts to decelerate, + * used to smooth the trajectory [0.03, 0.2]. When lookahead_time is less + * than one control cycle, the smaller it is, the greater the overshoot. The + * optimal value for this parameter is one control cycle. + * @param gain Proportional gain + * Proportional gain for tracking the target position [100, 200], + * used to control the smoothness and accuracy of the motion. + * The larger the proportional gain, the longer it takes to reach the target + * position, and the smaller the overshoot. + * + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_QUEUE_FULL(2) Planning queue is full + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) + * Possible reasons include but are not limited to: thread has been + * detached, thread terminated, task_id not found, or the current robot mode + * is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * @retval -AUBO_INVL_ARGUMENT(-5) Trajectory position out of range, + * velocity out of range, or adjacent points angle difference exceeded(±15°) + * @retval -AUBO_REQUEST_IGNORE(-13) Not in servo mode + * @retval -AUBO_POS_BOUND_ERR(-18) Joint position exceeds robot maximum + * limits + * @retval -AUBO_TRAJ_SELF_COLLISION(-22) Trajectory has self-collision risk + * @retval -AUBO_ALGORITHM_PLAN_FAILED(-30) Trajectory planning failed + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * servoJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua function prototype + * servoJoint(q: table, a: number, v: number, t: number, lookahead_time: + * number, gain: number) -> nil + * + * @par Lua example + * servoJoint({0,0,0,0,0,0},0,0,10,0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.servoJoint","params":[[0,0,0,0,0,0],0,0,10,0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-13} + * + * \endenglish + */ + int servoJoint(const std::vector &q, double a, double v, double t, + double lookahead_time, double gain); + + /** + * @ingroup MotionControl + * \chinese + * 笛卡尔空间伺服 + * + * 目前可用参数只有 pose 和 t; + * @param pose 位姿, 单位 m, + * @param a 加速度, 单位 m/s^2, + * @param v 速度,单位 m/s, + * @param t 运行时间,单位 s \n + * t 值越大,机器臂运动越慢,反之,运动越快; + * 该参数最优值为连续调用 servoCartesian 接口的间隔时间。 + * @param lookahead_time 前瞻时间,单位 s \n + * 指定机器臂开始减速前要运动的时长,用前瞻时间来平滑轨迹[0.03, 0.2], + * 当 lookahead_time 小于一个控制周期时,越小则超调量越大, + * 该参数最优值为一个控制周期。 + * @param gain 比例增益 + * 跟踪目标位置的比例增益[100, 200], + * 用于控制运动的顺滑性和精度, + * 比例增益越大,到达目标位置的时间越长,超调量越小。 + * + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_QUEUE_FULL(2) 规划队列已满 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * @retval -AUBO_INVL_ARGUMENT(-5) 轨迹位置超限或速度超限 + * @retval -AUBO_REQUEST_IGNORE(-13) 当前处于非 servo 模式 + * @retval -AUBO_IK_NO_CONVERGE(-23) 逆解计算不收敛,计算出错; + * @retval -AUBO_IK_OUT_OF_RANGE(-24) 逆解计算超出机器人最大限制; + * @retval AUBO_IK_CONFIG_DISMATCH(-25) 逆解输入配置存在错误; + * @retval -AUBO_IK_JACOBIAN_FAILED(-26) 逆解雅可比矩阵计算失败; + * @retval -AUBO_IK_NO_SOLU(-27) 目标点存在解析解,但均不满足选解条件; + * @retval -AUBO_IK_UNKOWN_ERROR(-28) 逆解返回未知类型错误; + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * servoCartesian(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua函数原型 + * servoCartesian(pose: table, a: number, v: number, t: number, + * lookahead_time: number, gain: number) -> nil + * + * @par Lua示例 + * servoCartesian({0.58712,-0.15775,0.48703,2.76,0.344,1.432},0,0,10,0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.servoCartesian","params":[[0.58712,-0.15775,0.48703,2.76,0.344,1.432],0,0,10,0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-13} + * \endchinese + * \english + * Cartesian space servo + * + * Currently, only pose and t parameters are available; + * @param pose Pose, unit: m + * @param a Acceleration, unit: m/s^2 + * @param v Velocity, unit: m/s + * @param t Execution time, unit: s \n + * The larger the t value, the slower the robot moves, and vice versa; + * The optimal value for this parameter is the interval time for continuous + * calls to the servoCartesian interface. + * @param lookahead_time Lookahead time, unit: s \n + * Specifies the duration to move before the robot starts to decelerate, + * used to smooth the trajectory [0.03, 0.2]. When lookahead_time is less + * than one control cycle, the smaller it is, the greater the overshoot. The + * optimal value for this parameter is one control cycle. + * @param gain Proportional gain + * Proportional gain for tracking the target position [100, 200], + * used to control the smoothness and accuracy of the motion, + * The larger the proportional gain, the longer it takes to reach the target + * position, and the smaller the overshoot. + * + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_QUEUE_FULL(2) Planning queue is full + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) + * Possible reasons include but are not limited to: thread has been + * detached, thread terminated, task_id not found, or the current robot mode + * is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * @retval -AUBO_INVL_ARGUMENT(-5) Trajectory position or velocity out of + * range + * @retval -AUBO_REQUEST_IGNORE(-13) Not in servo mode + * @retval -AUBO_IK_NO_CONVERGE(-23) Inverse kinematics calculation does not + * converge, calculation error; + * @retval -AUBO_IK_OUT_OF_RANGE(-24) Inverse kinematics calculation exceeds + * robot maximum limits; + * @retval AUBO_IK_CONFIG_DISMATCH(-25) Inverse kinematics input + * configuration error; + * @retval -AUBO_IK_JACOBIAN_FAILED(-26) Inverse kinematics Jacobian + * calculation failed; + * @retval -AUBO_IK_NO_SOLU(-27) Analytical solution exists for the target + * point, but none meet the selection criteria; + * @retval -AUBO_IK_UNKOWN_ERROR(-28) Inverse kinematics returned an unknown + * error type; + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * servoCartesian(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua function prototype + * servoCartesian(pose: table, a: number, v: number, t: number, + * lookahead_time: number, gain: number) -> nil + * + * @par Lua example + * servoCartesian({0.58712,-0.15775,0.48703,2.76,0.344,1.432},0,0,10,0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.servoCartesian","params":[[0.58712,-0.15775,0.48703,2.76,0.344,1.432],0,0,10,0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-13} + * \endenglish + */ + int servoCartesian(const std::vector &pose, double a, double v, + double t, double lookahead_time, double gain); + + /** + * @ingroup MotionControl + * \chinese + * 伺服运动(带外部轴),用于执行离线轨迹、透传用户规划轨迹等 + * + * @param q + * @param extq + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * \endchinese + * \english + * Servo motion (with external axes), used for executing offline + * trajectories, pass-through user planned trajectories, etc. + * + * @param q + * @param extq + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * \endenglish + */ + int servoJointWithAxes(const std::vector &q, + const std::vector &extq, double a, double v, + double t, double lookahead_time, double gain); + + int servoJointWithAxisGroup(const std::vector &q, double a, + double v, double t, double lookahead_time, + double gain, const std::string &group_name, + const std::vector &extq); + + /** + * @ingroup MotionControl + * \chinese + * 伺服运动(带外部轴),用于执行离线轨迹、透传用户规划轨迹等 + * 与 servoJointWithAxes 区别在于接收笛卡尔空间位姿而不是关节角度 + * (由软件内部直接做逆解) + * + * @param pose + * @param extq + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * \endchinese + * \english + * Servo motion (with external axes), used for executing offline + * trajectories, pass-through user planned trajectories, etc. The difference + * from servoJointWithAxes is that it receives Cartesian poses instead of + * joint angles (inverse kinematics is performed internally by the + * software). + * + * @param pose + * @param extq + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * \endenglish + */ + int servoCartesianWithAxes(const std::vector &pose, + const std::vector &extq, double a, + double v, double t, double lookahead_time, + double gain); + + int servoCartesianWithAxisGroup(const std::vector &pose, double a, + double v, double t, double lookahead_time, + double gain, const std::string &group_name, + const std::vector &extq); + + /** + * @ingroup MotionControl + * \chinese + * 跟踪运动,用于执行离线轨迹、透传用户规划轨迹等 + * + * @param q + * @param smooth_scale + * @param delay_sacle + * @return + * + * @par Lua函数原型 + * trackJoint(q: table,t: number,smooth_scale: number,delay_sacle: number) + * -> nil + * + * @par Lua示例 + * trackJoint({0,0,0,0,0,0},0.01,0.5,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.trackJoint","params":[[0,0,0,0,0,0],0.01,0.5,1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Tracking motion, used for executing offline trajectories or passing + * through user-planned trajectories, etc. + * + * @param q + * @param smooth_scale + * @param delay_sacle + * @return + * + * @par Lua function prototype + * trackJoint(q: table,t: number,smooth_scale: number,delay_sacle: number) + * -> nil + * + * @par Lua example + * trackJoint({0,0,0,0,0,0},0.01,0.5,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.trackJoint","params":[[0,0,0,0,0,0],0.01,0.5,1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int trackJoint(const std::vector &q, double t, double smooth_scale, + double delay_sacle); + + /** + * @ingroup MotionControl + * \chinese + * 跟踪运动,用于执行离线轨迹、透传用户规划轨迹等 + * 与 trackJoint 区别在于接收笛卡尔空间位姿而不是关节角度 + * (由软件内部直接做逆解) + * + * @param pose + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * + * @par Lua函数原型 + * trackCartesian(pose: table,t: number,smooth_scale: number,delay_sacle: + * number) -> nil + * + * @par Lua示例 + * trackCartesian({0.58712,-0.15775,0.48703,2.76,0.344,1.432},0.01,0.5,1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.trackCartesian","params":[[0.58712,-0.15775,0.48703,2.76,0.344,1.432],0.01,0.5,1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Tracking motion, used for executing offline trajectories or passing + * through user-planned trajectories, etc. The difference from trackJoint is + * that it receives Cartesian poses instead of joint angles (inverse + * kinematics is performed internally by the software). + * + * @param pose + * @param t + * @param smooth_scale + * @param delay_sacle + * @return + * + * @par Lua function prototype + * trackCartesian(pose: table,t: number,smooth_scale: number,delay_sacle: + * number) -> nil + * + * @par Lua example + * trackCartesian({0.58712,-0.15775,0.48703,2.76,0.344,1.432},0.01,0.5,1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.trackCartesian","params":[[0.58712,-0.15775,0.48703,2.76,0.344,1.432],0.01,0.5,1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int trackCartesian(const std::vector &pose, double t, + double smooth_scale, double delay_sacle); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间跟随 + * + * @note 暂未实现 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * followJoint(self: pyaubo_sdk.MotionControl, arg0: List[float]) -> int + * + * @par Lua函数原型 + * followJoint(q: table) -> nil + * + * @par Lua示例 + * followJoint({0,0,0,0,0,0}) + * + * \endchinese + * \english + * Joint space following + * + * @note Not implemented yet + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * followJoint(self: pyaubo_sdk.MotionControl, arg0: List[float]) -> int + * + * @par Lua function prototype + * followJoint(q: table) -> nil + * + * @par Lua example + * followJoint({0,0,0,0,0,0}) + * + * \endenglish + */ + int followJoint(const std::vector &q); + + /** + * @ingroup MotionControl + * \chinese + * 笛卡尔空间跟随 + * + * @note 暂未实现 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * followLine(self: pyaubo_sdk.MotionControl, arg0: List[float]) -> int + * + * @par Lua函数原型 + * followLine(pose: table) -> nil + * + * @par Lua示例 + * followLine({0.58712,-0.15775,0.48703,2.76,0.344,1.432}) + * + * \endchinese + * \english + * Cartesian space following + * + * @note Not implemented yet + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * followLine(self: pyaubo_sdk.MotionControl, arg0: List[float]) -> int + * + * @par Lua function prototype + * followLine(pose: table) -> nil + * + * @par Lua example + * followLine({0.58712,-0.15775,0.48703,2.76,0.344,1.432}) + * + * \endenglish + */ + int followLine(const std::vector &pose); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间速度跟随 + * + * 当机械臂还没达到目标速度的时候,给一个新的目标速度,机械臂会立刻达到新的目标速度 + * + * @param qd 目标关节速度, 单位 rad/s + * @param a 主轴的加速度, 单位 rad/s^2 + * @param t 函数返回所需要的时间, 单位 s \n + * 如果 t = 0,当达到目标速度的时候,函数将返回; + * 反之,则经过 t 时间后,函数返回,不管是否达到目标速度。\n + * 如果没有达到目标速度,会减速到零。 + * 如果达到了目标速度就是按照目标速度匀速运动。 + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * @retval -AUBO_INVL_ARGUMENT(-5) 参数数组qd的长度小于当前机器臂的自由度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * speedJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua函数原型 + * speedJoint(qd: table, a: number, t: number) -> nil + * + * @par Lua示例 + * speedJoint({0.2,0,0,0,0,0}, 1.5,10) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedJoint","params":[[0.2,0,0,0,0,0],1.5,100],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Joint space velocity following + * + * When the robot arm has not yet reached the target velocity, giving a new + * target velocity will cause the robot arm to immediately reach the new + * target velocity. + * + * @param qd Target joint velocity, unit: rad/s + * @param a Main axis acceleration, unit: rad/s^2 + * @param t Time required for the function to return, unit: s \n + * If t = 0, the function returns when the target velocity is reached; + * otherwise, the function returns after t seconds, regardless of whether + * the target velocity is reached.\n If the target velocity is not reached, + * it will decelerate to zero. If the target velocity is reached, it will + * move at a constant speed. + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) + * Possible reasons include but are not limited to: thread has been + * detached, thread terminated, task_id not found, or the current robot mode + * is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * @retval -AUBO_INVL_ARGUMENT(-5) The length of the qd array is less than + * the degrees of freedom of the current robot arm + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * speedJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua function prototype + * speedJoint(qd: table, a: number, t: number) -> nil + * + * @par Lua example + * speedJoint({0.2,0,0,0,0,0}, 1.5,10) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedJoint","params":[[0.2,0,0,0,0,0],1.5,100],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int speedJoint(const std::vector &qd, double a, double t); + + /** + * @ingroup MotionControl + * \chinese + * 机械臂与外部轴组关节空间速度跟随。 + * + * @param qd 机械臂目标关节速度,单位 rad/s + * @param a 加速度,单位 rad/s^2 + * @param t 函数返回所需要的时间,单位 s + * @param group_name 外部轴组名称 + * @param axis_qd 外部轴目标速度 + * @return 成功返回0;失败返回错误码 + * \endchinese + * \english + * Joint-space velocity following with an external axis group. + * + * @param qd Robot target joint velocity, unit: rad/s + * @param a Acceleration, unit: rad/s^2 + * @param t Time required for the function to return, unit: s + * @param group_name External axis group name + * @param axis_qd External axis target velocity + * @return Returns 0 on success; otherwise returns error code + * \endenglish + */ + int speedJointWithAxisGroup(const std::vector &qd, double a, + double t, const std::string &group_name, + const std::vector &axis_qd); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间速度跟随(机械臂运行工程时发生碰撞,通过此接口移动到安全位置) + * + * 当机械臂还没达到目标速度的时候,给一个新的目标速度,机械臂会立刻达到新的目标速度 + * + * @param qd 目标关节速度, 单位 rad/s + * @param a 主轴的加速度, 单位 rad/s^2 + * @param t 函数返回所需要的时间, 单位 s + * 如果 t = 0,当达到目标速度的时候,函数将返回; + * 反之,则经过 t 时间后,函数返回,不管是否达到目标速度。 + * 如果没有达到目标速度,会减速到零。 + * 如果达到了目标速度就是按照目标速度匀速运动。 + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeSpeedJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua函数原型 + * resumeSpeedJoint(q: table, a: number, t: number) -> nil + * + * @par Lua示例 + * resumeSpeedJoint({0.2,0,0,0,0,0},1.5,10) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeSpeedJoint","params":[[0.2,0,0,0,0,0],1.5,100],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endchinese + * \english + * Joint space velocity following (used to move to a safe position after a + * collision during process execution) + * + * When the robot arm has not yet reached the target velocity, giving a new + * target velocity will cause the robot arm to immediately reach the new + * target velocity. + * + * @param qd Target joint velocity, unit: rad/s + * @param a Main axis acceleration, unit: rad/s^2 + * @param t Time required for the function to return, unit: s + * If t = 0, the function returns when the target velocity is reached; + * otherwise, the function returns after t seconds, regardless of whether + * the target velocity is reached. If the target velocity is not reached, it + * will decelerate to zero. If the target velocity is reached, it will move + * at a constant speed. + * @return Returns 0 on success; otherwise returns error code + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeSpeedJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua function prototype + * resumeSpeedJoint(q: table, a: number, t: number) -> nil + * + * @par Lua example + * resumeSpeedJoint({0.2,0,0,0,0,0},1.5,10) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeSpeedJoint","params":[[0.2,0,0,0,0,0],1.5,100],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endenglish + */ + int resumeSpeedJoint(const std::vector &qd, double a, double t); + + /** + * @ingroup MotionControl + * \chinese + * 笛卡尔空间速度跟随 + * + * 当机械臂还没达到目标速度的时候,给一个新的目标速度,机械臂会立刻达到新的目标速度 + * + * @param xd 工具速度, 单位 m/s + * @param a 工具位置加速度, 单位 m/s^2 + * @param t 函数返回所需要的时间, 单位 s \n + * 如果 t = 0,当达到目标速度的时候,函数将返回; + * 反之,则经过 t 时间后,函数返回,不管是否达到目标速度。 + * 如果没有达到目标速度,会减速到零。 + * 如果达到了目标速度就是按照目标速度匀速运动。 + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * speedLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float) -> int + * + * @par Lua函数原型 + * speedLine(pose: table, a: number, t: number) -> nil + * + * @par Lua示例 + * speedLine({0.25,0,0,0,0,0},1.2,100) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedLine","params":[[0.25,0,0,0,0,0],1.2,100],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Cartesian space velocity following + * + * When the robot arm has not yet reached the target velocity, giving a new + * target velocity will cause the robot arm to immediately reach the new + * target velocity. + * + * @param xd Tool velocity, unit: m/s + * @param a Tool position acceleration, unit: m/s^2 + * @param t Time required for the function to return, unit: s \n + * If t = 0, the function returns when the target velocity is reached; + * otherwise, the function returns after t seconds, regardless of whether + * the target velocity is reached. If the target velocity is not reached, it + * will decelerate to zero. If the target velocity is reached, it will move + * at a constant speed. + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) + * Possible reasons include but are not limited to: thread has been + * detached, thread terminated, task_id not found, or the current robot mode + * is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * speedLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float) -> int + * + * @par Lua function prototype + * speedLine(pose: table, a: number, t: number) -> nil + * + * @par Lua example + * speedLine({0.25,0,0,0,0,0},1.2,100) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.speedLine","params":[[0.25,0,0,0,0,0],1.2,100],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int speedLine(const std::vector &xd, double a, double t); + + /** + * @ingroup MotionControl + * \chinese + * 笛卡尔空间速度跟随(机械臂运行工程时发生碰撞,通过此接口移动到安全位置) + * + * 当机械臂还没达到目标速度的时候,给一个新的目标速度,机械臂会立刻达到新的目标速度 + * + * @param xd 工具速度, 单位 m/s + * @param a 工具位置加速度, 单位 m/s^2 + * @param t 函数返回所需要的时间, 单位 s \n + * 如果 t = 0,当达到目标速度的时候,函数将返回; + * 反之,则经过 t 时间后,函数返回,不管是否达到目标速度。 + * 如果没有达到目标速度,会减速到零。 + * 如果达到了目标速度就是按照目标速度匀速运动。 + * @return 成功返回0; 失败返回错误码 + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeSpeedLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua函数原型 + * resumeSpeedLine(pose: table, a: number, t: number) -> nil + * + * @par Lua示例 + * resumeSpeedLine({0.25,0,0,0,0,0},1.2,100) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeSpeedLine","params":[[0.25,0,0,0,0,0],1.2,100],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endchinese + * \english + * Cartesian space velocity following (used to move to a safe position after + * a collision during process execution) + * + * When the robot arm has not yet reached the target velocity, giving a new + * target velocity will cause the robot arm to immediately reach the new + * target velocity. + * + * @param xd Tool velocity, unit: m/s + * @param a Tool position acceleration, unit: m/s^2 + * @param t Time required for the function to return, unit: s \n + * If t = 0, the function returns when the target velocity is reached; + * otherwise, the function returns after t seconds, regardless of whether + * the target velocity is reached. If the target velocity is not reached, it + * will decelerate to zero. If the target velocity is reached, it will move + * at a constant speed. + * @return Returns 0 on success; otherwise returns error code + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeSpeedLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float) -> int + * + * @par Lua function prototype + * resumeSpeedLine(pose: table, a: number, t: number) -> nil + * + * @par Lua example + * resumeSpeedLine({0.25,0,0,0,0,0},1.2,100) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeSpeedLine","params":[[0.25,0,0,0,0,0],1.2,100],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endenglish + */ + int resumeSpeedLine(const std::vector &xd, double a, double t); + + /** + * @ingroup MotionControl + * \chinese + * 在关节空间做样条插值 + * + * @param q 关节角度,如果传入参数维度为0,表示样条运动结束 + * @param a 加速度, 单位 rad/s^2, + * 最大值可通过RobotConfig类中的接口getJointMaxAccelerations()来获取 + * @param v 速度, 单位 rad/s, + * 最大值可通过RobotConfig类中的接口getJointMaxSpeeds()来获取 + * @param duration + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveSpline(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua函数原型 + * moveSpline(q: table, a: number, v: number, duration: number) -> nil + * + * @par Lua示例 + * moveSpline({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},1.3,1.0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveSpline","params":[[0,0,0,0,0,0],1,1,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Perform spline interpolation in joint space + * + * @param q Joint angles. If the input vector is of size 0, it indicates the + * end of the spline motion. + * @param a Acceleration, unit: rad/s^2. The maximum value can be obtained + * via RobotConfig::getJointMaxAccelerations(). + * @param v Velocity, unit: rad/s. The maximum value can be obtained via + * RobotConfig::getJointMaxSpeeds(). + * @param duration + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveSpline(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua function prototype + * moveSpline(q: table, a: number, v: number, duration: number) -> nil + * + * @par Lua example + * moveSpline({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},1.3,1.0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveSpline","params":[[0,0,0,0,0,0],1,1,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int moveSpline(const std::vector &q, double a, double v, + double duration); + + /** + * @ingroup MotionControl + * \chinese + * 添加关节运动 + * + * @param q 关节角, 单位 rad + * @param a 加速度, 单位 rad/s^2, + * 最大值可通过RobotConfig类中的接口getJointMaxAccelerations()来获取 + * @param v 速度, 单位 rad/s, + * 最大值可通过RobotConfig类中的接口getJointMaxSpeeds()来获取 + * @param blend_radius 交融半径, 单位 m + * @param duration 运行时间,单位 s \n + * 通常当给定了速度和加速度,便能够确定轨迹的运行时间。 + * 如果想延长轨迹的运行时间,便要设置 duration 这个参数。 + * duration 可以延长轨迹运动的时间,但是不能缩短轨迹时间。\n + * 当 duration = 0的时候, + * 表示不指定运行时间,即没有明确完成运动的时间,将根据速度与加速度计算运行时间。 + * 如果duration不等于0,a 和 v 的值将被忽略。 + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_QUEUE_FULL(2) 规划队列已满 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * @retval -AUBO_INVL_ARGUMENT(-5) 参数数组q的长度小于当前机器臂的自由度 + * @retval AUBO_REQUEST_IGNORE(13) 参数数组q的长度太短且无需在该点停留 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float, arg3: float, arg4: float) -> int + * + * @par Lua函数原型 + * moveJoint(q: table, a: number, v: number, blend_radius: number, duration: + * number) -> nil + * + * @par Lua示例 + * moveJoint({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},0.3,0.3,0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveJoint","params":[[-2.05177, + * -0.400292, 1.19625, 0.0285152, 1.57033, -2.28774],0.3,0.3,0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Add joint motion + * + * @param q Joint angles, unit: rad + * @param a Acceleration, unit: rad/s^2, + * The maximum value can be obtained via + * RobotConfig::getJointMaxAccelerations() + * @param v Velocity, unit: rad/s, + * The maximum value can be obtained via RobotConfig::getJointMaxSpeeds() + * @param blend_radius Blend radius, unit: m + * @param duration Execution time, unit: s \n + * Normally, when speed and acceleration are given, the trajectory duration + * can be determined. If you want to extend the trajectory duration, set the + * duration parameter. Duration can extend the trajectory time, but cannot + * shorten it.\n When duration = 0, it means the execution time is not + * specified, and the time will be calculated based on speed and + * acceleration. If duration is not 0, a and v values will be ignored. + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_QUEUE_FULL(2) Planning queue is full + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) + * Possible reasons include but are not limited to: thread has been + * detached, thread terminated, task_id not found, or the current robot mode + * is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * @retval -AUBO_INVL_ARGUMENT(-5) The length of q is less than the degrees + * of freedom of the current robot arm + * @retval AUBO_REQUEST_IGNORE(13) The length of q is too short and there is + * no need to stop at that point + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float, arg3: float, arg4: float) -> int + * + * @par Lua function prototype + * moveJoint(q: table, a: number, v: number, blend_radius: number, duration: + * number) -> nil + * + * @par Lua example + * moveJoint({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},0.3,0.3,0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveJoint","params":[[-2.05177, + * -0.400292, 1.19625, 0.0285152, 1.57033, -2.28774],0.3,0.3,0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int moveJoint(const std::vector &q, double a, double v, + double blend_radius, double duration); + + /** + * @ingroup MotionControl + * \chinese + * 机器人与外部轴同步运动 + * + * @param group_name + * @param q + * @param a + * @param v + * @param blend_radius + * @param duration + * @return + * \endchinese + * \english + * Synchronous motion of robot and external axes + * + * @param group_name + * @param q + * @param a + * @param v + * @param blend_radius + * @param duration + * @return + * \endenglish + */ + int moveJointWithAxisGroup(const std::vector &q, double a, double v, + double blend_radius, double duration, + const std::string &group_name, + const std::vector &extq); + + /** + * @ingroup MotionControl + * \chinese + * 通过关节运动移动到暂停点的位置 + * + * @param q 关节角, 单位 rad + * @param a 加速度, 单位 rad/s^2 + * @param v 速度, 单位 rad/s + * @param duration 运行时间,单位 s \n + * 通常当给定了速度和加速度,便能够确定轨迹的运行时间。 + * 如果想延长轨迹的运行时间,便要设置 duration 这个参数。 + * duration 可以延长轨迹运动的时间,但是不能缩短轨迹时间。\n + * 当 duration = 0的时候, + * 表示不指定运行时间,即没有明确完成运动的时间,将根据速度与加速度计算运行时间。 + * 如果duration不等于0,a 和 v 的值将被忽略。 + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeMoveJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua函数原型 + * resumeMoveJoint(q: table, a: number, v: number, duration: number) -> nil + * + * @par Lua示例 + * resumeMoveJoint({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},1.3,1.0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeMoveJoint","params":[[-2.05177, + * -0.400292, 1.19625, 0.0285152, 1.57033, -2.28774],0.3,0.3,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endchinese + * \english + * Move to the pause point using joint motion. + * + * @param q Joint angles, unit: rad + * @param a Acceleration, unit: rad/s^2 + * @param v Velocity, unit: rad/s + * @param duration Execution time, unit: s \n + * Normally, when speed and acceleration are given, the trajectory duration + * can be determined. If you want to extend the trajectory duration, set the + * duration parameter. Duration can extend the trajectory time, but cannot + * shorten it.\n When duration = 0, it means the execution time is not + * specified, and the time will be calculated based on speed and + * acceleration. If duration is not 0, a and v values will be ignored. + * @return Returns 0 on success; otherwise returns error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeMoveJoint(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua function prototype + * resumeMoveJoint(q: table, a: number, v: number, duration: number) -> nil + * + * @par Lua example + * resumeMoveJoint({-2.05177,-0.400292, 1.19625, 0.0285152, 1.57033, + * -2.28774},1.3,1.0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeMoveJoint","params":[[-2.05177, + * -0.400292, 1.19625, 0.0285152, 1.57033, -2.28774],0.3,0.3,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * \endenglish + */ + int resumeMoveJoint(const std::vector &q, double a, double v, + double duration); + + /** + * @ingroup MotionControl + * \chinese + * 添加直线运动 + * + * @param pose 目标位姿 + * @param a 加速度(如果位置变化小于1mm,姿态变化大于 1e-4 + * rad,此加速度会被作为角加速度,单位 rad/s^2.否则为线加速度,单位 m/s^2) + * 最大值可通过RobotConfig类中的接口getTcpMaxAccelerations()来获取 + * @param v 速度(如果位置变化小于1mm,姿态变化大于 1e-4 + * rad,此速度会被作为角速度,单位 rad/s.否则为线速度,单位 m/s) + * 最大值可通过RobotConfig类中的接口getTcpMaxSpeeds()来获取 + * @param blend_radius 交融半径,单位 m,值介于0.001和1之间 + * @param duration 运行时间,单位 s \n + * 通常当给定了速度和加速度,便能够确定轨迹的运行时间。 + * 如果想延长轨迹的运行时间,便要设置 duration 这个参数。 + * duration 可以延长轨迹运动的时间,但是不能缩短轨迹时间。\n + * 当 duration = 0的时候, + * 表示不指定运行时间,即没有明确完成运动的时间,将根据速度与加速度计算运行时间。 + * 如果duration不等于0,a 和 v 的值将被忽略。 + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_QUEUE_FULL(2) 轨迹队列已满 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * @retval -AUBO_INVL_ARGUMENT(-5) 参数数组 pose + * 的长度小于当前机器臂的自由度 + * @retval AUBO_REQUEST_IGNORE(13) 参数数组 pose + * 路径长度太短且无需在该点停留 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float, arg3: float, arg4: float) -> int + * + * @par Lua函数原型 + * moveLine(pose: table, a: number, v: number, blend_radius: number, + * duration: number) -> nil + * + * @par Lua示例 + * moveLine({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.3,1.0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveLine","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Add linear motion + * + * @param pose Target pose + * @param a Acceleration (if the position change is less than 1mm and the + * posture change is greater than 1e-4 rad, this acceleration is treated as + * angular acceleration in rad/s^2; otherwise, as linear acceleration in + * m/s^2). The maximum value can be obtained via + * RobotConfig::getTcpMaxAccelerations(). + * @param v Velocity (if the position change is less than 1mm and the + * posture change is greater than 1e-4 rad, this velocity is treated as + * angular velocity in rad/s; otherwise, as linear velocity in m/s). The + * maximum value can be obtained via RobotConfig::getTcpMaxSpeeds(). + * @param blend_radius Blend radius, unit: m, value between 0.001 and 1 + * @param duration Execution time, unit: s \n + * Normally, when speed and acceleration are given, the trajectory duration + * can be determined. If you want to extend the trajectory duration, set the + * duration parameter. Duration can extend the trajectory time, but cannot + * shorten it.\n When duration = 0, it means the execution time is not + * specified, and the time will be calculated based on speed and + * acceleration. If duration is not 0, a and v values will be ignored. + * @retval 0 Success + * @retval AUBO_BAD_STATE(1) The current safety mode is not Normal, + * ReducedMode, or Recovery + * @retval AUBO_QUEUE_FULL(2) Trajectory queue is full + * @retval AUBO_BUSY(3) The previous instruction is being executed + * @retval -AUBO_BAD_STATE(-1) Possible reasons include but are not limited + * to: thread has been detached, thread terminated, task_id not found, or + * the current robot mode is not Running + * @retval -AUBO_TIMEOUT(-4) Interface call timeout + * @retval -AUBO_INVL_ARGUMENT(-5) The length of the pose array is less than + * the degrees of freedom of the current robot arm + * @retval AUBO_REQUEST_IGNORE(13) The length of the pose array is too short + * and there is no need to stop at that point + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: float, + * arg2: float, arg3: float, arg4: float) -> int + * + * @par Lua function prototype + * moveLine(pose: table, a: number, v: number, blend_radius: number, + * duration: number) -> nil + * + * @par Lua example + * moveLine({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.3,1.0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveLine","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int moveLine(const std::vector &pose, double a, double v, + double blend_radius, double duration); + + /** + * @ingroup MotionControl + * \chinese + * 直线运动与外部轴同步运动 + * + * @param group_name 外部轴组名称 + * @param pose 目标位姿 + * @param a 加速度 + * @param v 速度 + * @param blend_radius 交融半径 + * @param duration 运行时间 + * @return + * \endchinese + * \english + * Linear motion synchronized with external axes + * + * @param group_name Name of the external axis group + * @param pose Target pose + * @param a Acceleration + * @param v Velocity + * @param blend_radius Blend radius + * @param duration Execution time + * @return + * \endenglish + */ + int moveLineWithAxisGroup(const std::vector &pose, double a, + double v, double blend_radius, double duration, + const std::string &group_name, + const std::vector &extq); + + /** + * @ingroup MotionControl + * \chinese + * 添加工艺运动 + * + * @param pose + * @param a + * @param v + * @param blend_radius + * @return 成功返回0;失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * moveProcess(pose: table, a: number, v: number, blend_radius: number, + * duration: number) -> nil + * + * @par Lua示例 + * moveProcess({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.2,0.25,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveProcess","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Add process motion + * + * @param pose + * @param a + * @param v + * @param blend_radius + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * moveProcess(pose: table, a: number, v: number, blend_radius: number, + * duration: number) -> nil + * + * @par Lua example + * moveProcess({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.2,0.25,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveProcess","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int moveProcess(const std::vector &pose, double a, double v, + double blend_radius); + + /** + * @ingroup MotionControl + * \chinese + * 通过直线运动移动到暂停点的位置 + * + * @param pose 目标位姿 + * @param a 加速度, 单位 m/s^2 + * @param v 速度, 单位 m/s + * @param duration 运行时间,单位 s \n + * 通常当给定了速度和加速度,便能够确定轨迹的运行时间。 + * 如果想延长轨迹的运行时间,便要设置 duration 这个参数。 + * duration 可以延长轨迹运动的时间,但是不能缩短轨迹时间。\n + * 当 duration = 0的时候, + * 表示不指定运行时间,即没有明确完成运动的时间,将根据速度与加速度计算运行时间。 + * 如果duration不等于0,a 和 v 的值将被忽略。 + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeMoveLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua函数原型 + * resumeMoveLine(pose: table, a: number, v: number,duration: number) -> nil + * + * @par Lua示例 + * resumeMoveLine({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.2,0.25,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeMoveLine","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Move to the pause point using linear motion. + * + * @param pose Target pose + * @param a Acceleration, unit: m/s^2 + * @param v Velocity, unit: m/s + * @param duration Execution time, unit: s \n + * Normally, when speed and acceleration are given, the trajectory duration + * can be determined. If you want to extend the trajectory duration, set the + * duration parameter. Duration can extend the trajectory time, but cannot + * shorten it.\n When duration = 0, it means the execution time is not + * specified, and the time will be calculated based on speed and + * acceleration. If duration is not 0, a and v values will be ignored. + * @return Returns 0 on success; otherwise returns error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeMoveLine(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float) -> int + * + * @par Lua function prototype + * resumeMoveLine(pose: table, a: number, v: number, duration: number) -> + * nil + * + * @par Lua example + * resumeMoveLine({0.58815,0.0532,0.62391,2.46,0.479,1.619},1.2,0.25,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeMoveLine","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],1.2,0.25,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int resumeMoveLine(const std::vector &pose, double a, double v, + double duration); + + /** + * @ingroup MotionControl + * \chinese + * 添加圆弧运动 + * + * @todo 可以由多段圆弧组成圆周运动 + * + * @param via_pose 圆弧运动途中点的位姿 + * @param end_pose 圆弧运动结束点的位姿 + * @param a 加速度(如果via_pose与上一个路点位置变化小于1mm,姿态变化大于 1e-4 + * rad, 此加速度会被作为角加速度,单位 rad/s^2.否则为线加速度,单位 m/s^2) + * @param v 速度(如果via_pose与上一个路点位置变化小于1mm, 姿态变化大于 1e-4 + * rad, 此速度会被作为角速度, 单位 rad / s.否则为线速度, 单位 m / s) + * @param blend_radius 交融半径,单位: m + * @param duration 运行时间,单位: s \n + * 通常当给定了速度和加速度,便能够确定轨迹的运行时间。 + * 如果想延长轨迹的运行时间,便要设置 duration 这个参数。 + * duration 可以延长轨迹运动的时间,但是不能缩短轨迹时间。\n + * 当 duration = 0 的时候, + * 表示不指定运行时间,即没有明确完成运动的时间,将根据速度与加速度计算运行时间。 + * 如果duration不等于0,a 和 v 的值将被忽略。 + * @return 成功返回0;失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveCircle(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * List[float], arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua函数原型 + * moveCircle(via_pose: table, end_pose: table, a: number, v: number, + * blend_radius: number, duration: number) -> nil + * + * @par Lua示例 + * moveCircle({0.440164,-0.00249391,0.398658,2.45651,0,1.5708},{0.440164,0.166256,0.297599,2.45651,0,1.5708},1.2,0.25,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveCircle","params":[[0.440164,-0.00249391,0.398658,2.45651,0,1.5708],[0.440164,0.166256,0.297599,2.45651,0,1.5708],1.2,0.25,0,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Add circular arc motion + * + * @todo Can be composed of multiple arcs to form a circular motion + * + * @param via_pose The pose of the via point during the arc motion + * @param end_pose The pose of the end point of the arc motion + * @param a Acceleration (if the position change between via_pose and the + * previous waypoint is less than 1mm and the posture change is greater than + * 1e-4 rad, this acceleration is treated as angular acceleration in + * rad/s^2; otherwise, as linear acceleration in m/s^2) + * @param v Velocity (if the position change between via_pose and the + * previous waypoint is less than 1mm and the posture change is greater than + * 1e-4 rad, this velocity is treated as angular velocity in rad/s; + * otherwise, as linear velocity in m/s) + * @param blend_radius Blend radius, unit: m + * @param duration Execution time, unit: s \n + * Normally, when speed and acceleration are given, the trajectory duration + * can be determined. If you want to extend the trajectory duration, set the + * duration parameter. Duration can extend the trajectory time, but cannot + * shorten it.\n When duration = 0, it means the execution time is not + * specified, and the time will be calculated based on speed and + * acceleration. If duration is not 0, a and v values will be ignored. + * @return Returns 0 on success; otherwise returns error code + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveCircle(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * List[float], arg2: float, arg3: float, arg4: float, arg5: float) -> int + * + * @par Lua function prototype + * moveCircle(via_pose: table, end_pose: table, a: number, v: number, + * blend_radius: number, duration: number) -> nil + * + * @par Lua example + * moveCircle({0.440164,-0.00249391,0.398658,2.45651,0,1.5708},{0.440164,0.166256,0.297599,2.45651,0,1.5708},1.2,0.25,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveCircle","params":[[0.440164,-0.00249391,0.398658,2.45651,0,1.5708],[0.440164,0.166256,0.297599,2.45651,0,1.5708],1.2,0.25,0,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int moveCircle(const std::vector &via_pose, + const std::vector &end_pose, double a, double v, + double blend_radius, double duration); + + /** + * @ingroup MotionControl + * \chinese + * moveCircle 与外部轴同步运动 + * + * @param group_name 外部轴组名称 + * @param via_pose 圆弧运动途中点的位姿 + * @param end_pose 圆弧运动结束点的位姿 + * @param a 加速度 + * @param v 速度 + * @param blend_radius 交融半径 + * @param duration 运行时间 + * @return + * \endchinese + * \english + * moveCircle with external axes synchronized motion + * + * @param group_name Name of the external axis group + * @param via_pose The pose of the via point during the arc motion + * @param end_pose The pose of the end point of the arc motion + * @param a Acceleration + * @param v Velocity + * @param blend_radius Blend radius + * @param duration Execution time + * @return + * \endenglish + */ + int moveCircleWithAxisGroup(const std::vector &via_pose, + const std::vector &end_pose, double a, + double v, double blend_radius, double duration, + const std::string &group_name, + const std::vector &extq); + + /** + * @ingroup MotionControl + * \chinese + * 设置圆弧路径模式 + * + * @param mode 模式 \n + * 0:工具姿态相对于圆弧路径点坐标系保持不变 \n + * 1:姿态线性变化,绕着空间定轴转动,从起始点姿态变化到目标点姿态 \n + * 2:从起点姿态开始经过中间点姿态,变化到目标点姿态 + * @return 成功返回0;失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCirclePathMode(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua函数原型 + * setCirclePathMode(mode: number) -> nil + * + * @par Lua示例 + * setCirclePathMode(1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setCirclePathMode","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set circle path mode + * + * @param mode Mode \n + * 0: Tool orientation remains unchanged relative to the arc path point + * coordinate system \n 1: Orientation changes linearly, rotating around a + * fixed axis in space, from the start orientation to the target orientation + * \n 2: Orientation changes from the start orientation, through the via + * point orientation, to the target orientation + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setCirclePathMode(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua function prototype + * setCirclePathMode(mode: number) -> nil + * + * @par Lua example + * setCirclePathMode(1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setCirclePathMode","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setCirclePathMode(int mode); + + /** + * @ingroup MotionControl + * \chinese + * 高级圆弧或者圆周运动 + * + * @param param 圆周运动参数 + * @return 成功返回0;失败返回错误码 + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveCircle2(self: pyaubo_sdk.MotionControl, arg0: + * arcs::common_interface::CircleParameters) -> int + * + * @par Lua函数原型 + * moveCircle2(param: table) -> nil + * + * @par Lua示例 + * moveCircle2({0.440164,-0.00249391,0.398658,2.45651,0,1.570},{0.440164,0.166256,0.297599,2.45651,0,1.5708},1.2,0.25,0,0,0,0,0,0) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveCircle2","params":[{"pose_via":[0.440164,-0.00249391,0.398658,2.45651,0,1.570], + * "pose_to":[0.440164,0.166256,0.297599,2.45651,0,1.5708],"a":1.2,"v":0.25,"blend_radius":0,"duration":0,"helix":0, + * "spiral":0,"direction":0,"loop_times":0}],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Advanced arc or circular motion + * + * @param param Circular motion parameters + * @return Returns 0 on success; otherwise returns an error code: + * AUBO_BAD_STATE + * AUBO_BUSY + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveCircle2(self: pyaubo_sdk.MotionControl, arg0: + * arcs::common_interface::CircleParameters) -> int + * + * @par Lua function prototype + * moveCircle2(param: table) -> nil + * + * @par Lua example + * moveCircle2({0.440164,-0.00249391,0.398658,2.45651,0,1.570},{0.440164,0.166256,0.297599,2.45651,0,1.5708},1.2,0.25,0,0,0,0,0,0) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveCircle2","params":[{"pose_via":[0.440164,-0.00249391,0.398658,2.45651,0,1.570], + * "pose_to":[0.440164,0.166256,0.297599,2.45651,0,1.5708],"a":1.2,"v":0.25,"blend_radius":0,"duration":0,"helix":0, + * "spiral":0,"direction":0,"loop_times":0}],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int moveCircle2(const CircleParameters ¶m); + + /** + * @ingroup MotionControl + * \chinese + * 新建一个路径点缓存 + * + * @param name 指定路径的名字 + * @param type 路径的类型 \n + * 1: toppra 时间最优路径规划 \n + * 2: cubic_spline(录制的轨迹) \n + * 3: 关节B样条插值,最少三个点 + * @param size 缓存区大小 + * @return 新建成功返回 AUBO_OK(0) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferAlloc(self: pyaubo_sdk.MotionControl, arg0: str, arg1: int, + * arg2: int) -> int + * + * @par Lua函数原型 + * pathBufferAlloc(name: string, type: number, size: number) -> nil + * + * @par Lua示例 + * pathBufferAlloc("traje_name",5,100) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferAlloc","params":["rec",2,3],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Create a new path point buffer + * + * @param name Name of the path + * @param type Type of the path \n + * 1: toppra time-optimal path planning \n + * 2: cubic_spline (recorded trajectory) \n + * 3: Joint B-spline interpolation, at least three points + * @param size Buffer size + * @return Returns AUBO_OK(0) on success + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferAlloc(self: pyaubo_sdk.MotionControl, arg0: str, arg1: int, + * arg2: int) -> int + * + * @par Lua function prototype + * pathBufferAlloc(name: string, type: number, size: number) -> nil + * + * @par Lua exmaple + * pathBufferAlloc("traje_name",5,100) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferAlloc","params":["rec",2,3],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int pathBufferAlloc(const std::string &name, int type, int size); + + /** + * @ingroup MotionControl + * \chinese + * 向路径缓存添加路点 + * + * @param name 路径缓存的名字 + * @param waypoints 路点 + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferAppend(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[List[float]]) -> int + * + * @par Lua函数原型 + * pathBufferAppend(name: string, waypoints: table) -> nil + * + * @par Lua示例 + * pathBufferAppend("traje_name",{{-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000},{-0.000001,0.000010,-0.000002,0.000000,0.000003,0.000002}}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferAppend","params":["rec",[[-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000],[-0.000001,0.000010,-0.000002,0.000000,0.000003,0.000002]]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Add waypoints to the path buffer + * + * @param name Name of the path buffer + * @param waypoints Waypoints + * @return Returns 0 on success; otherwise returns an error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferAppend(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[List[float]]) -> int + * + * @par Lua function prototype + * pathBufferAppend(name: string, waypoints: table) -> nil + * + * @par Lua example + * pathBufferAppend("traje_name",{{-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000},{-0.000001,0.000010,-0.000002,0.000000,0.000003,0.000002}}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferAppend","params":["rec",[[-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000],[-0.000001,0.000010,-0.000002,0.000000,0.000003,0.000002]]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathBufferAppend(const std::string &name, + const std::vector> &waypoints); + + /** + * @ingroup MotionControl + * \chinese + * 计算、优化等耗时操作,传入的参数相同时不会重新计算 + * + * @param name 通过pathBufferAlloc新建的路径点缓存的名字 + * @param a 关节加速度限制,需要和机器人自由度大小相同,单位 rad/s^2 + * @param v 关节速度限制,需要和机器人自由度大小相同,单位 rad/s + * @param t 时间 \n + * pathBufferAlloc 这个接口分配内存的时候要指定类型, + * 根据pathBufferAlloc这个接口的类型:\n + * 类型为1时,表示运动持续时间\n + * 类型为2时,表示采样时间间隔\n + * 类型为3时:t表示运动持续时间\n + * 若 t=0, 则由使用软件内部默认的时间(推荐使用)\n + * 若 t!=0, t需要设置为 路径点数*相邻点时间间隔(points * + * interval,interval >= 0.01) + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferEval(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[float], arg2: List[float], arg3: float) -> int + * + * @par Lua函数原型 + * pathBufferEval(name: string, a: table, v: table, t: number) -> nil + * + * @par Lua示例 + * pathBufferEval("traje_name",{1,1,1,1,1,1},{1,1,1,1,1,1},0.02) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferEval","params":["rec",[1,1,1,1,1,1],[1,1,1,1,1,1],0.02],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Perform computation and optimization (time-consuming operations). If the + * input parameters are the same, the calculation will not be repeated. + * + * @param name Name of the path point buffer created by pathBufferAlloc + * @param a Joint acceleration limits, must match the robot DOF, unit: + * rad/s^2 + * @param v Joint velocity limits, must match the robot DOF, unit: rad/s + * @param t Time \n + * When allocating memory with pathBufferAlloc, the type must be specified. + * According to the type in pathBufferAlloc:\n + * Type 1: t means motion duration\n + * Type 2: t means sampling interval\n + * Type 3: t means motion duration\n + * If t=0, the internal default time is used (recommended)\n + * If t!=0, t should be set to number_of_points * + * interval_between_points (interval >= 0.01) + * @return Returns 0 on success; otherwise returns an error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferEval(self: pyaubo_sdk.MotionControl, arg0: str, arg1: + * List[float], arg2: List[float], arg3: float) -> int + * + * @par Lua function prototype + * pathBufferEval(name: string, a: table, v: table, t: number) -> nil + * + * @par Lua example + * pathBufferEval("traje_name",{1,1,1,1,1,1},{1,1,1,1,1,1},0.02) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferEval","params":["rec",[1,1,1,1,1,1],[1,1,1,1,1,1],0.02],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int pathBufferEval(const std::string &name, const std::vector &a, + const std::vector &v, double t); + + /** + * @ingroup MotionControl + * \chinese + * 指定名字的buffer是否有效 + * + * buffer需要满足三个条件有效: \n + * 1、buffer存在,已经分配过内存 \n + * 2、传进buffer的点要大于等于buffer的大小 \n + * 3、要执行一次pathBufferEval + * + * @param name buffer的名字 + * @return 有效返回true; 无效返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferValid(self: pyaubo_sdk.MotionControl, arg0: str) -> bool + * + * @par Lua函数原型 + * pathBufferValid(name: string) -> boolean + * + * @par Lua示例 + * buffer_status = pathBufferValid("traje_name") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferValid","params":["rec"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Whether the buffer with the specified name is valid + * + * The buffer must meet three conditions to be valid: \n + * 1. The buffer exists and memory has been allocated \n + * 2. The number of points passed into the buffer must be greater than or + * equal to the buffer size \n + * 3. pathBufferEval must be executed once + * + * @param name Name of the buffer + * @return Returns true if valid; false otherwise + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferValid(self: pyaubo_sdk.MotionControl, arg0: str) -> bool + * + * @par Lua function prototype + * pathBufferValid(name: string) -> boolean + * + * @par Lua example + * buffer_status = pathBufferValid("traje_name") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferValid","params":["rec"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool pathBufferValid(const std::string &name); + + /** + * @ingroup MotionControl + * \chinese + * 释放路径缓存 + * + * @param name 缓存路径的名字 + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferFree(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * + * @par Lua函数原型 + * pathBufferFree(name: string) -> nil + * + * @par Lua示例 + * pathBufferFree("traje_name") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferFree","params":["rec"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-5} + * + * \endchinese + * \english + * Release path buffer + * + * @param name Name of the path buffer + * @return Returns 0 on success; otherwise returns an error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferFree(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * + * @par Lua function prototype + * pathBufferFree(name: string) -> nil + * + * @par Lua example + * pathBufferFree("traje_name") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferFree","params":["rec"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-5} + * + * \endenglish + */ + int pathBufferFree(const std::string &name); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间路径滤波器 + * + * @brief pathBufferFilter + * + * @param name 缓存路径的名称 + * @param order 滤波器阶数(一般取2) + * @param fd 截止频率,越小越光滑,但是延迟会大(一般取3-20) + * @param fs 离散数据的采样频率(一般取20-500) + * + * @return 成功返回0 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferFilter(self: pyaubo_sdk.MotionControl, arg0: str, arg1: int, + * arg2: float, arg3: float) -> int + * + * @par Lua函数原型 + * pathBufferFilter(name: string, order: number, fd: number, fs:number) -> + * nil + * + * @par Lua示例 + * pathBufferFilter("traje_name",2,5,125) + * + * \endchinese + * \english + * Joint space path filter + * + * @brief pathBufferFilter + * + * @param name Name of the path buffer + * @param order Filter order (usually 2) + * @param fd Cutoff frequency, the smaller the smoother but with more delay + * (usually 3-20) + * @param fs Sampling frequency of discrete data (usually 20-500) + * + * @return Returns 0 on success + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferFilter(self: pyaubo_sdk.MotionControl, arg0: str, arg1: int, + * arg2: float, arg3: float) -> int + * + * @par Lua function prototype + * pathBufferFilter(name: string, order: number, fd: number, fs:number) -> + * nil + * + * @par Lua example + * pathBufferFilter("traje_name",2,5,125) + * + * \endenglish + */ + int pathBufferFilter(const std::string &name, int order, double fd, + double fs); + + /** + * @ingroup MotionControl + * \chinese + * 列出所有缓存路径的名字 + * + * @return 返回所有缓存路径的名字 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBufferList(self: pyaubo_sdk.MotionControl) -> List[str] + * + * @par Lua函数原型 + * pathBufferList() -> table + * + * @par Lua示例 + * Buffer_table = pathBufferList() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferList","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * List all cached path names + * + * @return Returns all cached path names + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBufferList(self: pyaubo_sdk.MotionControl) -> List[str] + * + * @par Lua function prototype + * pathBufferList() -> table + * + * @par Lua example + * Buffer_table = pathBufferList() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.pathBufferList","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector pathBufferList(); + + /** + * @ingroup MotionControl + * \chinese + * 执行缓存的路径 + * + * @param name 缓存路径的名字 + * @return 成功返回0;失败返回错误码 + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * movePathBuffer(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * + * @par Lua函数原型 + * movePathBuffer(name: string) -> nil + * + * @par Lua示例 + * movePathBuffer("traje_name") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.movePathBuffer","params":["rec"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Execute the cached path + * + * @param name Name of the cached path + * @return Returns 0 on success; otherwise returns an error code + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * movePathBuffer(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * + * @par Lua function prototype + * movePathBuffer(name: string) -> nil + * + * @par Lua example + * movePathBuffer("traje_name") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.movePathBuffer","params":["rec"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int movePathBuffer(const std::string &name); + + /** + * @ingroup MotionControl + * \chinese + * 相贯线接口 + * + * @param pose 由三个示教位姿组成(首先需要运动到起始点,起始点的要求:过主圆柱 + * 柱体轴心且与子圆柱体轴线平行的平面与子圆柱体在底部的交点) + * p1:过子圆柱体轴线且与大圆柱体轴线平行的平面,与小圆柱体在左侧顶部的交点 + * p2:过子圆柱体轴线且与大圆柱体轴线平行的平面,与大圆柱体在左侧底部的交点 + * p3:过子圆柱体轴线且与大圆柱体轴线平行的平面,与大圆柱体在右侧底部的交点 + * @param v 速度 + * @param a 加速度 + * @param main_pipe_radius 主圆柱体半径 + * @param sub_pipe_radius 子圆柱体半径 + * @param normal_distance 两圆柱体轴线距离 + * @param normal_alpha 两圆柱体轴线的夹角 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * moveIntersection(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float, arg6: float) + * -> int + * + * @par Lua函数原型 + * moveIntersection(poses: table, a: number, v: number, + * main_pipe_radius: number, sub_pipe_radius: number, normal_distance: + * number, normal_alpha: number) -> nil \endchinese \english Intersection + * interface + * + * @param poses Consists of three taught poses (first, move to the starting + * point. The starting point requirement: the intersection of the plane + * passing through the main cylinder axis and parallel to the sub-cylinder + * axis with the sub-cylinder at the bottom) p1: Intersection of the plane + * passing through the sub-cylinder axis and parallel to the main cylinder + * axis with the sub-cylinder at the left top p2: Intersection of the plane + * passing through the sub-cylinder axis and parallel to the main cylinder + * axis with the main cylinder at the left bottom p3: Intersection of the + * plane passing through the sub-cylinder axis and parallel to the main + * cylinder axis with the main cylinder at the right bottom + * @param v Velocity + * @param a Acceleration + * @param main_pipe_radius Main cylinder radius + * @param sub_pipe_radius Sub cylinder radius + * @param normal_distance Distance between the two cylinder axes + * @param normal_alpha Angle between the two cylinder axes + * + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * moveIntersection(self: pyaubo_sdk.MotionControl, arg0: List[float], arg1: + * float, arg2: float, arg3: float, arg4: float, arg5: float, arg6: float) + * -> int + * + * @par Lua function prototype + * moveIntersection(poses: table, a: number, v: number, + * main_pipe_radius: number, sub_pipe_radius: number, normal_distance: + * number, normal_alpha: number) -> nil \endenglish + */ + int moveIntersection(const std::vector> &poses, + double a, double v, double main_pipe_radius, + double sub_pipe_radius, double normal_distance, + double normal_alpha); + /** + * @ingroup MotionControl + * \chinese + * 关节空间停止运动 + * + * @param acc 关节加速度,单位: rad/s^2 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * stopJoint(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua函数原型 + * stopJoint(acc: number) -> nil + * + * @par Lua示例 + * stopJoint(2) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.stopJoint","params":[31],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Stop motion in joint space + * + * @param acc Joint acceleration, unit: rad/s^2 + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * stopJoint(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua function prototype + * stopJoint(acc: number) -> nil + * + * @par Lua example + * stopJoint(2) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.stopJoint","params":[31],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int stopJoint(double acc); + + /** + * @ingroup MotionControl + * \chinese + * 关节空间停止运动(机械臂运行工程时发生碰撞,通过resumeSpeedJoint接口移动到安全位置后需要停止时调用此接口) + * + * @param acc 关节加速度,单位: rad/s^2 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeStopJoint(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua函数原型 + * resumeStopJoint(acc: number) -> nil + * + * @par Lua示例 + * resumeStopJoint(31) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeStopJoint","params":[31],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Stop motion in joint space (used after moving to a safe position via + * resumeSpeedJoint following a collision during process execution) + * + * @param acc Joint acceleration, unit: rad/s^2 + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeStopJoint(self: pyaubo_sdk.MotionControl, arg0: float) -> int + * + * @par Lua function prototype + * resumeStopJoint(acc: number) -> nil + * + * @par Lua example + * resumeStopJoint(31) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeStopJoint","params":[31],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int resumeStopJoint(double acc); + + /** + * @ingroup MotionControl + * \chinese + * 停止 moveLine/moveCircle 等在笛卡尔空间的运动 + * + * @param acc 工具加速度, 单位: m/s^2 + * @param acc_rot + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * stopLine(self: pyaubo_sdk.MotionControl, arg0: float, arg1: float) -> int + * + * @par Lua函数原型 + * stopLine(acc: number, acc_rot: number) -> nil + * + * @par Lua示例 + * stopLine(10,10) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.stopLine","params":[10,10],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Stop motions in Cartesian space such as moveLine/moveCircle. + * + * @param acc Tool acceleration, unit: m/s^2 + * @param acc_rot + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * stopLine(self: pyaubo_sdk.MotionControl, arg0: float, arg1: float) -> int + * + * @par Lua function prototype + * stopLine(acc: number, acc_rot: number) -> nil + * + * @par Lua example + * stopLine(10,10) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.stopLine","params":[10,10],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int stopLine(double acc, double acc_rot); + + /** + * @ingroup MotionControl + * \chinese + * 笛卡尔空间停止运动(机械臂运行工程时发生碰撞,通过resumeSpeedLine接口移动到安全位置后需要停止时调用此接口) + * + * @param acc 位置加速度, 单位: m/s^2 + * @param acc_rot 姿态加速度,单位: rad/s^2 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * resumeStopLine(self: pyaubo_sdk.MotionControl, arg0: float, arg1: float) + * -> int + * + * @par Lua函数原型 + * resumeStopLine(acc: number, acc_rot: number) -> nil + * + * @par Lua示例 + * resumeStopLine(10,10) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeStopLine","params":[10,10],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Stop motion in Cartesian space (used after moving to a safe position via + * resumeSpeedLine following a collision during process execution) + * + * @param acc Position acceleration, unit: m/s^2 + * @param acc_rot Orientation acceleration, unit: rad/s^2 + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * resumeStopLine(self: pyaubo_sdk.MotionControl, arg0: float, arg1: float) + * -> int + * + * @par Lua function prototype + * resumeStopLine(acc: number, acc_rot: number) -> nil + * + * @par Lua example + * resumeStopLine(10,10) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resumeStopLine","params":[10,10],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int resumeStopLine(double acc, double acc_rot); + + /** + * @ingroup MotionControl + * \chinese + * + * \warning 调用 weaveStart 前,需提前开启 RuntimeMachine 规划器 start。 + * + * 开始摆动:在 weaveStart 与 weaveEnd 之间的 + * moveLine/moveCircle/moveProcess 根据 params 执行摆动。 + * + * @param params Json 字符串。 + * + * @par 自 v0.29 起的字段 + * - "type": —— 波形类型:"SINE" | + * "SPIRAL" | "TRIANGLE" | "TRAPEZOIDAL"(区分大小写)。 + * - "step": —— + * 相邻摆动采样的弧长步长,单位 m。 + * - "amplitude": [,] —— 摆弧幅度左右侧,单位 m。 + * - "hold_distance": [,] —— + * 在幅度峰值处沿路径的停留距离,单位 m。 + * - "hold_time": [,] —— + * 在幅度峰值处的停留时间,单位 s。 + * - "angle": —— + * 叠加方向与法平面的夹角,单位 rad。 + * - "direction": —— + * 起始摆动方向:0=上方,1=下方。 + * - "movep_uniform_vel": —— moveProcess + * 匀速规划,布尔量。 + * + * @par 自 v0.31 起 + * - 与 v0.29 相同。 + * + * @par 自 v0.32 起新增/变更 + * - "angle": [,] ——运动叠加方向与法平面的夹角,单位 rad。 + * - "frequency": —— 摆动频率,单位 Hz(范围[0.1, 5])。 + * - "ori_weave_range": [,,] —— 姿态摆动范围 + * [x,y,z],单位 rad;常与阿基米德螺旋用于力控搜孔。 + * - "ori_weave_frequency": [,,] —— 姿态摆动频率 + * [x,y,z],单位 m^-1(按路径弧长计;范围 [0, 1])。 + * - "adjust_cycle_num": —— + * 动态调节频率/幅值的过渡段数量。 + * - "azimuth": —— 摆焊波形方位角,单位 rad。 + * - "ridge_height": —— 中心上升高度,单位 m。 + * + * \warning 可使用关系 **frequency = vel / step** 与外部速度 vel 关联(vel + * 单位 m·s^-1)。 + * \warning **hold_time** 仅在 **SINE**下可用,且可左右不对称。 + * \warning "hold_distance"/"hold_time" 互斥,仅一个生效 + * + * \note + * - 数组约定:"amplitude"/"hold_distance"/"hold_time" 为 + * [left,right];"ori_weave_*" 为姿态 [x,y,z]。 + * - 所有角度均为弧度(rad)。 + * + * @return 成功返回0; 失败返回错误码 + * - AUBO_BUSY + * - AUBO_BAD_STATE + * - -AUBO_INVL_ARGUMENT + * - -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par 示例 v0.29/v0.31 + * \code{.json} + * params = { + * "type": "SINE", + * "step": 0.005, + * "amplitude": [0.01, 0.01], + * "hold_distance": [0.001, 0.001], + * "hold_time": [0, 0], + * "angle": 0, + * "direction": 0, + * "movep_uniform_vel": false + * } + * \endcode + * + * @par 示例 v0.32 + * \code{.json} + * params = { + * "type" : "SINE", // "SINE" "SPIRAL" "TRIANGLE" "SAWTOOTH" "CRESCENT" + * "step" : 0.0, // 可用 frequency = vel / step(vel: m·s^-1) + * "frequency" : 0.0, // [0.1, 5] Hz + * "amplitude" : [0.01, 0.01], // m + * "hold_distance" : [0.001, 0.001], // m + * "hold_time" : [0, 0], // s(仅 SINE) + * "angle" : [0, 0], // rad + * "direction" : 0, + * "ori_weave_range" : [0.001, 0.001, 0.001], // rad + * "ori_weave_frequency": [0.001, 0.001, 0.001], // m^-1 + * "adjust_cycle_num": 0, + * "azimuth" : 0, // rad + * "ridge_height" : 0 // m + * } + * \endcode + * + * @par Python 函数原型 + * \code{.py} + * weaveStart(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * \endcode + * + * @par Python 示例 + * \code{.py} + * robot_name = rpc_cli.getRobotNames()[0] + * robot_interface = rpc_cli.getRobotInterface(robot_name) + * robot_interface.getMotionControl().weaveStart(params) + * \endcode + * + * @par Lua 函数原型 + * \code{.lua} + * weaveStart(params: string) -> nil + * \endcode + * + * @par Lua 示例(v0.29/0.31) + * \code{.lua} + * weaveStart("{\"type\":\"SINE\",\"step\":0.005,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"movep_uniform_vel\":false}") + * \endcode + * + * @par Lua 示例(v0.32) + * \code{.lua} + * weaveStart("{\"type\":\"SINE\",\"step\":0.0,\"frequency\":2.0,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"ori_weave_range\":[0.001,0.001,0.001],\"ori_weave_frequency\":[0.001,0.001,0.001],\"adjust_cycle_num\":0,\"azimuth\":0,\"ridge_height\":0}") + * \endcode + * + * @par JSON-RPC 请求示例(v0.29/0.31) + * \code{.json} + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveStart","params":["{\"type\":\"SINE\",\"step\":0.005,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"movep_uniform_vel\":false}"],"id":1} + * \endcode + * + * @par JSON-RPC 请求示例(v0.32) + * \code{.json} + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveStart","params":["{\"type\":\"SINE\",\"step\":0.0,\"frequency\":2.0,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"ori_weave_range\":[0.001,0.001,0.001],\"ori_weave_frequency\":[0.001,0.001,0.001],\"adjust_cycle_num\":0,\"azimuth\":0,\"ridge_height\":0}"],"id":1} + * \endcode + * + * @par JSON-RPC 响应示例 + * \code{.json} + * {"id":1,"jsonrpc":"2.0","result":0} + * \endcode + * \endchinese + * + * \english + * Start weaving: between weaveStart and weaveEnd, + * moveLine/moveCircle/moveProcess follows params. + * + * \warning Start RuntimeMachine before calling weaveStart. + * + * @param params Json string. + * + * @par Since v0.29 + * - "type": — Waveform: "SINE" | "SPIRAL" + * | "TRIANGLE" | "TRAPEZOIDAL" (case-sensitive). + * - "step": — Arc-length sampling step, + * m. + * - "amplitude": [,] — Left/right weave amplitude, + * m. + * - "hold_distance": [,] — Dwell distance at peak + * amplitude along path, m. + * - "hold_time": [,] — Dwell time at peak + * amplitude, s. + * - "angle": — Angle to normal plane, rad. + * - "direction": — Initial direction: 0=above + * path, 1=below path. + * - "movep_uniform_vel": — Uniform-velocity planning + * (boolean value). + * + * @par Since v0.31 + * - Same as v0.29. + * + * @par New/changed in v0.32 + * - "frequency": — Weave frequency, Hz (range + * [0.1, 5]). + * - "ori_weave_range": [,,] — Attitude weave + * range [x,y,z], rad; often used with Archimedean spiral for force-guided + * hole finding. + * - "ori_weave_frequency": [,,] — Attitude weave + * frequency [x,y,z], m^-1 (per unit arc; range [0, 1]). + * - "adjust_cycle_num": — Number of transition + * cycles. + * - "azimuth": — Waveform azimuth, rad. + * - "ridge_height": — Center raise height, m. + * + * \warning **hold_time** is supported for **SINE** only and may be + * asymmetric. \warning You may relate **frequency = vel / step** when an + * external path speed vel (m·s^-1) is available. + * + * \note + * - Two-element arrays are [left,right]; three-element arrays are attitude + * [x,y,z]. + * - All angles are in radians (rad). + * + * @return Returns 0 on success; otherwise returns an error code: + * - AUBO_BUSY + * - AUBO_BAD_STATE + * - -AUBO_INVL_ARGUMENT + * - -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Example v0.29/v0.31 + * \code{.json} + * params = { + * "type": "SINE", + * "step": 0.005, + * "amplitude": [0.01, 0.01], + * "hold_distance": [0.001, 0.001], + * "hold_time": [0, 0], + * "angle": 0, + * "direction": 0, + * "movep_uniform_vel": false + * } + * \endcode + * + * @par Example v0.32 + * \code{.json} + * params = { + * "type" : "SINE", // "SINE" "SPIRAL" "TRIANGLE" "TRAPEZOIDAL" + * "step" : 0.0, // frequency = vel / step (vel: m·s^-1) + * "frequency" : 0.0, // [0.1, 5] Hz + * "amplitude" : [0.01, 0.01], // m + * "hold_distance" : [0.001, 0.001], // m + * "hold_time" : [0, 0], // s (SINE only) + * "angle" : 0, // rad + * "direction" : 0, + * "ori_weave_range" : [0.001, 0.001, 0.001], // rad + * "ori_weave_frequency": [0.001, 0.001, 0.001], // m^-1 + * "adjust_cycle_num": 0, + * "azimuth" : 0, // rad + * "ridge_height" : 0 // m + * } + * \endcode + * + * @par Python function prototype + * \code{.py} + * weaveStart(self: pyaubo_sdk.MotionControl, arg0: str) -> int + * \endcode + * + * @par Python example + * \code{.py} + * robot_name = rpc_cli.getRobotNames()[0] + * robot_interface = rpc_cli.getRobotInterface(robot_name) + * robot_interface.getMotionControl().weaveStart(params) + * \endcode + * + * @par Lua function prototype + * \code{.lua} + * weaveStart(params: string) -> nil + * \endcode + * + * @par Lua example (v0.29/0.31) + * \code{.lua} + * weaveStart("{\"type\":\"SINE\",\"step\":0.005,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"movep_uniform_vel\":false}") + * \endcode + * + * @par Lua example (v0.32) + * \code{.lua} + * weaveStart("{\"type\":\"SINE\",\"step\":0.0,\"frequency\":2.0,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"ori_weave_range\":[0.001,0.001,0.001],\"ori_weave_frequency\":[0.001,0.001,0.001],\"adjust_cycle_num\":0,\"azimuth\":0,\"ridge_height\":0}") + * \endcode + * + * @par JSON-RPC request example (v0.29/0.31) + * \code{.json} + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveStart","params":["{\"type\":\"SINE\",\"step\":0.005,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"movep_uniform_vel\":false}"],"id":1} + * \endcode + * + * @par JSON-RPC request example (v0.32) + * \code{.json} + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveStart","params":["{\"type\":\"SINE\",\"step\":0.0,\"frequency\":2.0,\"amplitude\":[0.01,0.01],\"hold_distance\":[0.001,0.001],\"hold_time\":[0,0],\"angle\":0,\"direction\":0,\"ori_weave_range\":[0.001,0.001,0.001],\"ori_weave_frequency\":[0.001,0.001,0.001],\"adjust_cycle_num\":0,\"azimuth\":0,\"ridge_height\":0}"],"id":1} + * \endcode + * + * @par JSON-RPC response example + * \code{.json} + * {"id":1,"jsonrpc":"2.0","result":0} + * \endcode + * \endenglish + */ + int weaveStart(const std::string ¶ms); + + /** + * @ingroup MotionControl + * \chinese + * 结束摆动 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveEnd","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * End weaving + * + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.weaveEnd","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int weaveEnd(); + + /** + * @ingroup MotionControl + * \chinese + * 设置未来路径上点的采样时间间隔 + * + * @param sample_time 采样时间间隔 单位: m/s^2 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set the sampling interval for points on the future path + * + * @param sample_time Sampling interval, unit: m/s^2 + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setFuturePointSamplePeriod(double sample_time); + + /** + * @ingroup MotionControl + * \chinese + * 获取未来路径上的轨迹点 + * + * @return 路点(100ms * 10) + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getFuturePathPointsJoint","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * Get trajectory points on the future path + * + * @return Waypoints (100ms * 10) + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getFuturePathPointsJoint","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector> getFuturePathPointsJoint(); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带编码器参数 + * + * @param encoder_id 预留 + * @param tick_per_meter + * 线性传送带===>一米的脉冲值 + * 环形传送带===>一圈的脉冲值 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackEncoder(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * setConveyorTrackEncoder(encoder_id: bumber,tick_per_meter: number) -> int + * + * @par Lua示例 + * num = setConveyorTrackEncoder(1,40000) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackEncoder","params":[1,40000],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set conveyor encoder parameters + * + * @param encoder_id Reserved + * @param tick_per_meter + * Linear conveyor: pulses per meter + * Circular conveyor: pulses per revolution + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackEncoder(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * setConveyorTrackEncoder(encoder_id: bumber,tick_per_meter: number) -> int + * + * @par Lua example + * num = setConveyorTrackEncoder(1,40000) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackEncoder","params":[1,40000],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConveyorTrackEncoder(int encoder_id, int tick_per_meter); + /** + * @ingroup MotionControl + * \chinese + * 圆形传送带跟随 + * + * @note 暂未实现 + * + * @param encoder_id + * 0-集成传感器 + * @param rotate_tool + * @return + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Circular conveyor tracking + * + * @note Not implemented yet + * + * @param encoder_id + * 0 - integrated sensor + * @param rotate_tool + * @return + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int conveyorTrackCircle(int encoder_id, const std::vector ¢er, + bool rotate_tool); + + /** + * @ingroup MotionControl + * \chinese + * 线性传送带跟随 + * + * @param encoder_id 预留 + * @param direction 传送带相对机器人基坐标系的移动方向 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * conveyorTrackLine(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * conveyorTrackLine -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackLine","params":[1,[1.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Linear conveyor tracking + * + * @param encoder_id Reserved + * @param direction The movement direction of the conveyor relative to the + * robot base coordinate system + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * conveyorTrackLine(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * conveyorTrackLine -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackLine","params":[1,[1.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int conveyorTrackLine(int encoder_id, const std::vector &direction); + + /** + * @ingroup MotionControl + * \chinese + * 终止传送带跟随 + * + * @param encoder_id 预留 + * @param a 预留 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * conveyorTrackStop(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * conveyorTrackStop -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackStop","params":[0,1.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Stop conveyor tracking + * + * @param encoder_id Reserved + * @param a Reserved + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * conveyorTrackStop(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * conveyorTrackStop -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackStop","params":[0,1.0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int conveyorTrackStop(int encoder_id, double a); + + /** + * @ingroup MotionControl + * \chinese + * 切换传送带追踪物品 + * 如果当前物品正在处于跟踪状态,则将该物品出队,不再跟踪,返回true + * 如果没有物品正在处于跟踪状态,返回false + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @param encoder_id 预留 + * + * @par Python函数原型 + * conveyorTrackSwitch(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua函数原型 + * conveyorTrackSwitch() -> boolean + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackSwitch","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Switch conveyor tracking item. + * If the current item is being tracked, it will be dequeued and no longer + * tracked, returning true. If no item is currently being tracked, returns + * false. + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @param encoder_id Reserved + * + * @par Python function prototype + * conveyorTrackSwitch(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * conveyorTrackSwitch() -> boolean + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackSwitch","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool conveyorTrackSwitch(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 传送带上是否有物品可以跟踪 + * @param encoder_id 预留 + * @return + * 如果队列第一个物品为跟踪状态,返回true + * 如果队列第一个物品不为跟踪状态,则对队列中其余物品进行是否在启动窗口内的判断 + * 超出启动窗口则出队,直到有物品处于启动窗口内,使其变为跟踪状态返回true, + * 队列中没有一个物品在启动窗口内返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * hasItemOnConveyorToTrack(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua函数原型 + * hasItemOnConveyorToTrack() -> boolean + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.hasItemOnConveyorToTrack","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{true}} + * \endchinese + * \english + * Whether there is an item on the conveyor that can be tracked + * @param encoder_id Reserved + * @return + * If the first item in the queue is in tracking state, returns true. + * If the first item is not in tracking state, checks the rest of the queue + * for items within the start window. Items outside the start window are + * dequeued until an item is found within the window, which is then set to + * tracking state and returns true. If no item in the queue is within the + * start window, returns false. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * hasItemOnConveyorToTrack(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * hasItemOnConveyorToTrack() -> boolean + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.hasItemOnConveyorToTrack","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":{true}} + * \endenglish + */ + bool hasItemOnConveyorToTrack(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 增加传送带队列 + * + * @param encoder_id 预留 + * @param item_id 物品ID + * @param offset 当前物品点位相对于模板物品点位的偏移值 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * conveyorTrackCreatItem(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1:int, arg2: List[float]) -> int + * + * @par Lua函数原型 + * conveyorTrackCreatItem(encoder_id: number, item_id: number, offset: + * table) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackCreatItem","params":[0,2, + * {0.0,0.0,0.0,0.0,0.0,0.0}],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Add an item to the conveyor queue + * + * @param encoder_id Reserved + * @param item_id Item ID + * @param offset Offset of the current item position relative to the + * template item position + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * conveyorTrackCreatItem(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1:int, arg2: List[float]) -> int + * + * @par Lua function prototype + * conveyorTrackCreatItem(encoder_id: number, item_id: number, offset: + * table) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackCreatItem","params":[0,2, + * {0.0,0.0,0.0,0.0,0.0,0.0}],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + int conveyorTrackCreatItem(int encoder_id, int item_id, + const std::vector &offset); + /** + * @ingroup MotionControl + * \chinese + * 设置传送带跟踪的补偿值 + * + * @param encoder_id 预留 + * @param comp 传送带补偿值 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackCompensate(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: float) -> int + * + * @par Lua函数原型 + * setConveyorTrackCompensate(comp: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackCompensate","params":[0, + * 0.1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the compensation value for conveyor tracking + * + * @param encoder_id Reserved + * @param comp Conveyor compensation value + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackCompensate(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: float) -> int + * + * @par Lua function prototype + * setConveyorTrackCompensate(comp: number) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackCompensate","params":[0, + * 0.1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setConveyorTrackCompensate(int encoder_id, double comp); + + /** + * @ingroup MotionControl + * \chinese + * 判断传送带与机械臂之间是否达到相对静止 + * + * @param encoder_id 预留 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isConveyorTrackSync(self: pyaubo_sdk.MotionControl, arg0: int) -> bool + * + * @par Lua函数原型 + * isConveyorTrackSync(encoder_id: number) -> bool + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isConveyorTrackSync","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Determine whether the conveyor and the robot arm have reached relative + * rest + * + * @param encoder_id Reserved + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isConveyorTrackSync(self: pyaubo_sdk.MotionControl, arg0: int) -> bool + * + * @par Lua function prototype + * isConveyorTrackSync(encoder_id: number) -> bool + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isConveyorTrackSync","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool isConveyorTrackSync(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带跟踪的最大距离限制 + * + * @param encoder_id 预留 + * @param limit + * 传送带跟踪的最大距离限制,单位:米 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackLimit(self: pyaubo_sdk.MotionControl, arg0: int, arg1: + * double) -> int + * + * @par Lua函数原型 + * setConveyorTrackLimit(encoder_id: number, limit: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackLimit","params":[0, + * 1.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the maximum distance limit for conveyor tracking + * + * @param encoder_id Reserved + * @param limit + * Maximum distance limit for conveyor tracking, unit: meter + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackLimit(self: pyaubo_sdk.MotionControl, arg0: int, arg1: + * double) -> int + * + * @par Lua function prototype + * setConveyorTrackLimit(encoder_id: number, limit: number) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackLimit","params":[0, + * 1.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setConveyorTrackLimit(int encoder_id, double limit); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带跟踪的启动窗口 + * + * @param encoder_id 预留 + * @param min_window + * 启动窗口的起始位置,单位:米 + * @param max_window + * 启动窗口的结束位置,单位:米 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackStartWindow(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double, arg2: double) -> int + * + * @par Lua函数原型 + * setConveyorTrackStartWindow(encoder_id: number, min_window: number, + * max_window: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackStartWindow","params":[0, + * 0.2, 1.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the start window for conveyor tracking + * + * @param encoder_id Reserved + * @param min_window + * Start position of the window, unit: meter + * @param max_window + * End position of the window, unit: meter + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackStartWindow(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double, arg2: double) -> int + * + * @par Lua function prototype + * setConveyorTrackStartWindow(encoder_id: number, min_window: number, + * max_window: number) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackStartWindow","params":[0, + * 0.2, 1.0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConveyorTrackStartWindow(int encoder_id, double window_min, + double window_max); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带示教位置到同步开关之间的距离 + * + * @param encoder_id 预留 + * @param offset + * 传送带示教位置到同步开关之间的距离,单位:米 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackSensorOffset(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double) -> int + * + * @par Lua函数原型 + * setConveyorTrackSensorOffset(encoder_id: number, offset: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackSensorOffset","params":[0, + * 0.2],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set the distance from the conveyor teaching position to the sync switch + * + * @param encoder_id Reserved + * @param offset + * Distance from the conveyor teaching position to the sync switch, unit: + * meter + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackSensorOffset(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double) -> int + * + * @par Lua function prototype + * setConveyorTrackSensorOffset(encoder_id: number, offset: number) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackSensorOffset","params":[0, + * 0.2],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConveyorTrackSensorOffset(int encoder_id, double offset); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带同步分离,用于过滤掉同步开关中不需要的信号 + * + * @param encoder_id 预留 + * @param distance + * 从出现一个同步信号后到把一个新的同步信号接受为一个有效对象前走的最短距离,单位:米 + * @param time + * 从出现一个同步信号后到把一个新的同步信号接受为一个有效对象前走的最短时间,单位:秒 + * + * distance和time设置数值大于0即为生效 + * 当distance与time同时设置时,优先生效distance + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackSyncSeparation(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double, arg2: double) -> int + * + * @par Lua函数原型 + * setConveyorTrackSyncSeparation(encoder_id: number, distance: number, + * time: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackSyncSeparation","params":[0, + * 0.05, 0.2],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set conveyor sync separation, used to filter out unwanted signals from + * the sync switch. + * + * @param encoder_id Reserved + * @param distance + * The minimum distance to travel after a sync signal appears before + * accepting a new sync signal as a valid object, unit: meter + * @param time + * The minimum time to elapse after a sync signal appears before accepting a + * new sync signal as a valid object, unit: second + * + * If distance and time are both set greater than 0, the setting takes + * effect. If both distance and time are set, distance takes precedence. + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackSyncSeparation(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double, arg2: double) -> int + * + * @par Lua function prototype + * setConveyorTrackSyncSeparation(encoder_id: number, distance: number, + * time: number) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackSyncSeparation","params":[0, + * 0.05, 0.2],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setConveyorTrackSyncSeparation(int encoder_id, double distance, + double time); + + /** + * @ingroup MotionControl + * \chinese + * 设置传送带运行速度阈值,用于过滤掉编码器突变值导致的位置突变 + * + * @param encoder_id 预留 + * @param threshold + * 传送带运行时期望容许的最大速度(默认为0.2),单位:米/秒 + * + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorTrackVelThreshold(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double) -> int + * + * @par Lua函数原型 + * setConveyorTrackVelThreshold(encoder_id: number, threshold: number) -> + * int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackVelThreshold","params":[0, + * 0.2],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the conveyor velocity threshold used to suppress position jumps + * caused by abnormal encoder spikes. + * + * @param encoder_id Reserved + * @param threshold + * The maximum allowable conveyor speed during operation, unit: + * meter/second. Default: 0.2 m/s. + * + * @return + * 0 on success; otherwise a non-zero error code. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorTrackVelThreshold(self: pyaubo_sdk.MotionControl, arg0: int, + * arg1: double) -> int + * + * @par Lua function prototype + * setConveyorTrackVelThreshold(encoder_id: number, threshold: number) -> + * int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorTrackVelThreshold","params":[0, + * 0.2],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setConveyorTrackVelThreshold(int encoder_id, double threshold); + + /** + * \chinese + * 传送带上工件的移动距离是否超过最大限值 + * + * @param encoder_id 预留 + * @return + * true : 移动距离超过了最大限值 + * false : 移动距离没有超过了最大限值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isConveyorTrackExceed(self: pyaubo_sdk.MotionControl, arg0: int) -> bool + * + * @par Lua函数原型 + * isConveyorTrackExceed(encoder_id: number) -> bool + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isConveyorTrackExceed","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Whether the workpiece on the conveyor has moved beyond the maximum limit + * + * @param encoder_id Reserved + * @return + * true : The movement distance exceeds the maximum limit + * false : The movement distance does not exceed the maximum limit + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isConveyorTrackExceed(self: pyaubo_sdk.MotionControl, arg0: int) -> bool + * + * @par Lua function prototype + * isConveyorTrackExceed(encoder_id: number) -> bool + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isConveyorTrackExceed","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isConveyorTrackExceed(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 清空传动带队列中的所有对象 + * + * @param encoder_id 预留 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * conveyorTrackClearItems(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua函数原型 + * conveyorTrackClearItems(encoder_id: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackClearItems","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Clear all items in the conveyor queue + * + * @param encoder_id Reserved + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * conveyorTrackClearItems(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua function prototype + * conveyorTrackClearItems(encoder_id: number) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.conveyorTrackClearItems","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int conveyorTrackClearItems(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 设置传动带x(encoder_id)来料检测IO + * + * @param encoder_id 传送带id + * @param io_type 触发IO类型 + * @param io_index 触发IO索引 + * @param trig_edge 触发沿 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setConveyorItemTrigIO(self: pyaubo_sdk.MotionControl, arg0: int, arg1: + * int, arg2: int, arg3: bool) -> int + * + * @par Lua函数原型 + * setConveyorItemTrigIO(encoder_id: number, io_type: number, io_index: + * number, trig_edge:bool) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorItemTrigIO","params":[0, + * 0, 1, true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set incoming material detection IO for conveyor x (encoder_id) + * + * @param encoder_id conveyor id + * @param io_type trig IO type + * @param io_index trig IO index + * @param trig_edge trig IO edge + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setConveyorItemTrigIO(self: pyaubo_sdk.MotionControl, arg0: int, arg1: + * int, arg2: int, arg3: bool) -> int + * + * @par Lua function prototype + * setConveyorItemTrigIO(encoder_id: number, io_type: number, io_index: + * number, trig_edge:bool) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setConveyorItemTrigIO","params":[0, + * 0, 1, true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setConveyorItemTrigIO(int encoder_id, RobotIOType io_type, int io_index, + bool trig_edge); + + /** + * @ingroup MotionControl + * \chinese + * 获取传送带队列的编码器值 + * + * @param encoder_id 预留 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConveyorTrackQueue(self: pyaubo_sdk.MotionControl, arg0: int) -> + * List[int] + * @par Lua函数原型 + * getConveyorTrackQueue(encoder_id: number) -> table + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getConveyorTrackQueue","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{[-500,-200,150,-50]}} + * \endchinese + * \english + * Get encoder values of the conveyor queue + * + * @param encoder_id Reserved + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConveyorTrackQueue(self: pyaubo_sdk.MotionControl, arg0: int) -> + * List[int] + * @par Lua function prototype + * getConveyorTrackQueue(encoder_id: number) -> table + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getConveyorTrackQueue","params":[0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":{[-500,-200,150,-50]}} + * \endenglish + */ + std::vector getConveyorTrackQueue(int encoder_id); + /** + * \chinese + * 获取下一个跟踪的传送带物品的id + * + * @param encoder_id 预留 + * @return + * 返回物品id,没有next item返回 -1 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getConveyorTrackNextItem(self: pyaubo_sdk.MotionControl, arg0: int) -> + * int + * @par Lua函数原型 + * getConveyorTrackNextItem(encoder_id: number) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getConveyorTrackNextItem","params":[0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{10}} + * \endchinese + * \english + * Get the ID of the next item on the conveyor to be tracked + * + * @param encoder_id Reserved + * @return + * Returns the item ID; returns -1 if there is no next item + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getConveyorTrackNextItem(self: pyaubo_sdk.MotionControl, arg0: int) -> + * int + * @par Lua function prototype + * getConveyorTrackNextItem(encoder_id: number) -> int + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getConveyorTrackNextItem","params":[0],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":{10}} + * \endenglish + */ + + int getConveyorTrackNextItem(int encoder_id); + + /** + * @ingroup MotionControl + * \chinese + * 螺旋线运动 + * + * @param param 封装的参数 + * @param blend_radius + * @param v + * @param a + * @param t + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveSpiral", + * "params":[{"spiral":0.005,"helix":0.005,"angle":18.84,"plane":0,"frame":[0,0,0,0,0,0]},0,0.25,1.2,0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Spiral motion + * + * @param param Encapsulated parameters + * @param blend_radius + * @param v + * @param a + * @param t + * @return Returns 0 on success; otherwise returns an error code + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.moveSpiral", + * "params":[{"spiral":0.005,"helix":0.005,"angle":18.84,"plane":0,"frame":[0,0,0,0,0,0]},0,0.25,1.2,0],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int moveSpiral(const SpiralParameters ¶m, double blend_radius, double v, + double a, double t); + + /** + * @ingroup MotionControl + * \chinese + * 获取前瞻段数 + * + * @return 返回前瞻段数 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLookAheadSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * getLookAheadSize() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getLookAheadSize","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endchinese + * \english + * Get look-ahead segment size + * + * @return Returns the look-ahead segment size + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLookAheadSize(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * getLookAheadSize() -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getLookAheadSize","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endenglish + */ + int getLookAheadSize(); + + /** + * @ingroup MotionControl + * \chinese + * 设置前瞻段数 + * 1.对于有较高速度平稳性要求的任务,如数控加工,涂胶,焊接等匀速需求,较长的前瞻段数可以提供更优的速度规划,产生的运动会更加平滑; + * 2.对于快速响应的抓取类任务,更倾向于较短的前瞻段数,以提高反应速度,但可能因为进给的路径不够及时导致速度波动很大. + * + * @return 成功返回0 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setLookAheadSize(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua函数原型 + * setLookAheadSize(eqradius: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setLookAheadSize","params":[1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set look-ahead segment size + * 1. For tasks requiring high speed smoothness, such as CNC machining, + * gluing, welding, etc., a longer look-ahead segment size can provide + * better speed planning and smoother motion. + * 2. For fast-response tasks such as picking, a shorter look-ahead segment + * size is preferred to improve response speed, but may cause large speed + * fluctuations due to insufficiently timely path feeding. + * + * @return Returns 0 on success + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setLookAheadSize(self: pyaubo_sdk.MotionControl, arg0: int) -> int + * + * @par Lua function prototype + * setLookAheadSize(eqradius: number) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setLookAheadSize","params":[1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setLookAheadSize(int size); + + /** + * @ingroup MotionControl + * \chinese + * 更新摆动过程中的频率和振幅 + * + * @param params Json字符串用于定义摆动参数 + * { + * "frequency": , + * "amplitude": {,} + * } + * + * @return 成功返回0 + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Update frequency and amplitude during weaving process + * + * @param params Json string used to define weaving parameters + * { + * "frequency": , + * "amplitude": {,} + * } + * + * @return Returns 0 on success + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int weaveUpdateParameters(const std::string ¶ms); + + /** + * @ingroup MotionControl + * \chinese + * 设置关节电流环刚度系数 + * + * @param stiffness 各个关节刚度系数,百分比。[0 -> 1],值越大,表现为越硬。 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * enableJointSoftServo(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> + * int + * + * @par Lua函数原型 + * enableJointSoftServo(stiffness: table) -> int + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.enableJointSoftServo","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set joint current loop stiffness coefficient + * + * @param stiffness Stiffness coefficient for each joint, as a percentage [0 + * -> 1]. The larger the value, the stiffer the joint. + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * enableJointSoftServo(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> + * int + * + * @par Lua function prototype + * enableJointSoftServo(stiffness: table) -> int + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.enableJointSoftServo","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int enableJointSoftServo(const std::vector &stiffness); + + /** + * @ingroup MotionControl + * \chinese + * 关闭关节电流环刚度系数 + * + * @return 返回0表示成功,其他为错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * disableJointSoftServo(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * disableJointSoftServo() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.disableJointSoftServo","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + * \english + * Disable joint current loop stiffness coefficient + * + * @return Returns 0 on success, otherwise error code + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * disableJointSoftServo(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua function prototype + * disableJointSoftServo() -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.disableJointSoftServo","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * \endenglish + */ + int disableJointSoftServo(); + + /** + * @ingroup MotionControl + * \chinese + * 判断关节电流环刚度系数是否使能 + * + * @return 已使能返回true,反之则返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isJointSoftServoEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua函数原型 + * isJointSoftServoEnabled() -> boolean + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isJointSoftServoEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + * \english + * Determine whether the joint current loop stiffness coefficient is + * enabled. + * + * @return Returns true if enabled, otherwise returns false. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isJointSoftServoEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * isJointSoftServoEnabled() -> boolean + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isJointSoftServoEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * \endenglish + */ + bool isJointSoftServoEnabled(); + + /** + * @ingroup MotionControl + * \chinese + * 打开振动抑制 + * + * @param omega 振动抑制频率,长度一般为笛卡尔维度或关节自由度.为0时关闭抑制 + * \n + * @param zeta 振动抑制阻尼比,长度一般为笛卡尔维度或关节自由度.为0时关闭抑制 + * \n + * @param level + * 振动抑制等级(1~3),等级越高抑制效果越明显响应速度相应变慢.等级0关闭振动抑制 + * \n + * @retval 0 成功 + * @retval AUBO_BAD_STATE(1) 当前安全模式处于非 + * Normal、ReducedMode、Recovery 状态 + * @retval AUBO_QUEUE_FULL(2) 规划队列已满 + * @retval AUBO_BUSY(3) 上一条指令正在执行中 + * @retval -AUBO_BAD_STATE(-1) + * 可能的原因包括但不限于:线程已分离、线程被终止、task_id + * 未找到,或者当前机器人模式非 Running + * @retval -AUBO_TIMEOUT(-4) 调用接口超时 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * enableVibrationSuppress(self: pyaubo_sdk.MotionControl, arg0: + * list[float], arg1: list[float], arg2: int) -> int + * + * @par Lua函数原型 + * enableVibrationSuppress(omega: table, zeta: table, level: number) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.enableVibrationSuppress","params":[[0.5,0.5,0.5,0.5,0.5,0.5],[0.5,0.5,0.5,0.5,0.5,0.5],2],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + */ + int enableVibrationSuppress(const std::vector &omega, + const std::vector &zeta, int level); + /** + * @ingroup MotionControl + * \chinese + * 关闭振动抑制 + * + * @return 已使能返回true,反之则返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * disbaleVibrationSuppress(self: pyaubo_sdk.MotionControl) -> int + * + * @par Lua函数原型 + * disbaleVibrationSuppress() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.disbaleVibrationSuppress","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + */ + int disbaleVibrationSuppress(); + + /** + * @ingroup MotionControl + * \chinese + * 设置时间最优算法 默认关闭 + * + * @param enable + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setTimeOptimalEnable() -> bool + * + * @par Lua示例 + * setTimeOptimalEnable(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setTimeOptimalEnable","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * + * @param enable + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * setTimeOptimalEnable() -> number + * + * @par Lua example + * setTimeOptimalEnable(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setTimeOptimalEnable","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setTimeOptimalEnable(bool enable); + + /** + * @ingroup MotionControl + * \chinese + * 获取时间最优算法状态: + * true - 开启 + * false - 关闭 + * + * @return 返回时间最优算法状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isTimeOptimalEnabled(self: pyaubo_sdk.MotionControl) -> float + * + * @par Lua函数原型 + * isTimeOptimalEnabled() -> number + * + * @par Lua 示例 + * num = isTimeOptimalEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isTimeOptimalEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endchinese + * \english + * Get the time optimal algorithm state: + * true - enable + * false - disable + * + * @return Returns the time optimal algorithm state + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isTimeOptimalEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * isTimeOptimalEnabled() -> boolean + * + * @par Lua example + * flag = isTimeOptimalEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isTimeOptimalEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isTimeOptimalEnabled(); + + /** + * @ingroup MotionControl + * \chinese + * 获取是否支持时间最优算法: + * true - 支持 + * false - 不支持 + * + * @return 返回是否支持时间最优算法 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isTimeOptimalEnabled(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua函数原型 + * isSupportedTimeOptimal() -> boolean + * + * @par Lua 示例 + * num = isSupportedTimeOptimal() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isSupportedTimeOptimal","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1.0} + * \endchinese + * \english + * Check whether the time optimal algorithm is supported + * true - supported + * false - not supported + * + * @return Return whether the time-optimal algorithm is supported + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isSupportedTimeOptimal(self: pyaubo_sdk.MotionControl) -> bool + * + * @par Lua function prototype + * isSupportedTimeOptimal() -> boolean + * + * @par Lua example + * flag = isSupportedTimeOptimal() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isSupportedTimeOptimal","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isSupportedTimeOptimal(); + + /** + * @ingroup MotionControl + * \chinese + * 设置TCP最大线速度 + * + * @param v TCP最大线速度值,单位为m/s(米/秒) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setTcpMaxLinearVelocity(number) -> number + * + * @par Lua示例 + * setTcpMaxLinearVelocity(0.5) -- 设置TCP最大线速度为0.5米/秒 + * + * @par Python函数原型 + * setTcpMaxLinearVelocity(v: float) -> int + * + * @par Python示例 + * setTcpMaxLinearVelocity(0.5) -- 设置TCP最大线速度为0.5米/秒 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setTcpMaxLinearVelocity","params":[0.5],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set TCP maximum linear velocity + * + * @param v TCP maximum linear velocity value, unit is m/s + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * setTcpMaxLinearVelocity(number) -> number + * + * @par Lua example + * setTcpMaxLinearVelocity(0.5) -- Set TCP maximum linear velocity to 0.5 + * meters per second + * + * @par Python function prototype + * setTcpMaxLinearVelocity(v: float) -> int + * + * @par Python example + * setTcpMaxLinearVelocity(0.5) -- Set TCP maximum linear velocity to 0.5 + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setTcpMaxLinearVelocity","params":[0.5],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setTcpMaxLinearVelocity(double v); + + /** + * @ingroup MotionControl + * \chinese + * 获取TCP最大线速度 + * + * @return 当前TCP最大线速度值,单位为m/s(米/秒) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * getTcpMaxLinearVelocity() -> number + * + * @par Lua示例 + * local v = getTcpMaxLinearVelocity() -- 获取TCP最大线速度 + * + * @par Python函数原型 + * getTcpMaxLinearVelocity() -> float + * + * @par Python示例 + * v = getTcpMaxLinearVelocity() # 获取TCP最大线速度 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getTcpMaxLinearVelocity","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.5} + * \endchinese + * \english + * Get TCP maximum linear velocity + * + * @return Current TCP maximum linear velocity value, unit is m/s + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * getTcpMaxLinearVelocity() -> number + * + * @par Lua example + * local v = getTcpMaxLinearVelocity() -- Get TCP maximum linear velocity + * + * @par Python function prototype + * getTcpMaxLinearVelocity() -> float + * + * @par Python example + * v = getTcpMaxLinearVelocity() # Get TCP maximum linear velocity + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getTcpMaxLinearVelocity","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.5} + * \endenglish + */ + double getTcpMaxLinearVelocity(); + + /** + * @ingroup MotionControl + * \chinese + * 重置 TCP 最大线速度 + * + * 清除通过 setTcpMaxLinearVelocity 接口设置的 TCP 最大线速度覆盖值 + * + * @return 成功返回 0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * resetTcpMaxLinearVelocity() -> number + * + * @par Lua示例 + * resetTcpMaxLinearVelocity() -- 重置 TCP 最大线速度为安全配置中的值 + * + * @par Python函数原型 + * resetTcpMaxLinearVelocity() -> int + * + * @par Python示例 + * resetTcpMaxLinearVelocity() -- 重置 TCP 最大线速度为安全配置中的值 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resetTcpMaxLinearVelocity","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Reset TCP maximum linear velocity + * + * Clear the TCP maximum linear velocity override set by + * setTcpMaxLinearVelocity + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * resetTcpMaxLinearVelocity() -> number + * + * @par Lua example + * resetTcpMaxLinearVelocity() -- Reset TCP maximum linear velocity to + * the value in the safety configuration + * + * @par Python function prototype + * resetTcpMaxLinearVelocity() -> int + * + * @par Python example + * resetTcpMaxLinearVelocity() -- Reset TCP maximum linear velocity + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.resetTcpMaxLinearVelocity","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int resetTcpMaxLinearVelocity(); + + /** + * @ingroup MotionControl + * \chinese + * 设置轨迹终止点(以当前轨迹段为界) + * + * 显式指定以当前正在执行的轨迹段为边界,终止后续轨迹段的交融(blending)。 + * 当前轨迹段将完整执行完毕,但不会与后续轨迹进行速度或位置上的平滑过渡, + * 后续轨迹段将被视为新的独立轨迹起点。 + * + * 该接口不会触发急停,也不会中断当前轨迹段的执行,仅影响轨迹段之间的交融行为。 + * + * @return 成功返回 0;失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setEndPath() -> number + * + * @par Lua示例 + * setEndPath() -- 以当前轨迹段为界,终止后续轨迹交融 + * + * @par Python函数原型 + * setEndPath() -> int + * + * @par Python示例 + * setEndPath() # 以当前轨迹段为界,终止后续轨迹交融 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setEndPath","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Set end path (terminate blending at current trajectory segment) + * + * Explicitly specifies the currently executing trajectory segment as the + * boundary at which trajectory blending is terminated. The current + * trajectory segment will be executed completely, but no velocity or + * position blending will be applied with subsequent trajectory segments. + * + * This interface does not trigger an emergency stop and does not interrupt + * the execution of the current trajectory segment. It only affects the + * blending behavior between trajectory segments. + * + * @return Returns 0 on success; error code on failure. + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * setEndPath() -> number + * + * @par Lua example + * setEndPath() -- Terminate trajectory blending at the current segment + * + * @par Python function prototype + * setEndPath() -> int + * + * @par Python example + * setEndPath() # Terminate trajectory blending at the current segment + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setEndPath","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setEndPath(); + + /** + * @ingroup MotionControl + * \chinese + * 获取当前摆焊轨迹点方向 + * + * 获取机器人当前执行轨迹点在摆焊(Weave)运动中的方向状态, + * 用于指示该点位于摆焊坐标系 Y 轴的正半轴或负半轴区域。 + * + * 当机器人正在执行摆焊轨迹时,该接口返回当前摆焊点所属的摆动方向, + * 可用于判断摆焊运动处于正向摆动阶段或反向摆动阶段。 + * + * 当机器人未执行摆焊轨迹时,该接口返回 0。 + * + * 该接口为状态查询接口,不会影响当前轨迹执行,也不会改变机器人运动状态。 + * + * @return 返回当前摆焊方向,对应 WeaveDirection 枚举值: + * - 0 : NONE 当前未执行摆焊轨迹 + * - 1 : POSITIVE 当前位于摆焊坐标系 Y 轴正半轴区域 + * - 2 : NEGATIVE 当前位于摆焊坐标系 Y 轴负半轴区域 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * getWeaveDirection() -> number + * + * @par Lua示例 + * local dir = getWeaveDirection() + * if dir == 1 then + * -- 正方向摆动 + * elseif dir == 2 then + * -- 负方向摆动 + * end + * + * @par Python函数原型 + * getWeaveDirection() -> int + * + * @par Python示例 + * dir = getWeaveDirection() + * if dir == 1: + * # positive direction + * pass + * elif dir == 2: + * # negative direction + * pass + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getWeaveDirection","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endchinese + * + * \english + * Get current weave trajectory direction + * + * Retrieves the directional state of the current trajectory point during + * weave motion, indicating whether the point is located on the positive or + * negative side of the weave coordinate system Y-axis. + * + * When no weave trajectory is active, this interface returns 0. + * + * This is a state query interface and does not affect trajectory execution + * or robot motion. + * + * @return Returns current weave direction corresponding to WeaveDirection + * enum: + * - 0 : NONE No active weave trajectory + * - 1 : POSITIVE Positive Y-axis side + * - 2 : NEGATIVE Negative Y-axis side + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * getWeaveDirection() -> number + * + * @par Lua example + * local dir = getWeaveDirection() + * + * @par Python function prototype + * getWeaveDirection() -> int + * + * @par Python example + * dir = getWeaveDirection() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getWeaveDirection","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endenglish + */ + int getWeaveDirection(); + + /** + * @ingroup MotionControl + * \chinese + * 获取是否开启融合半径自适应增大功能 + * + * @return true-开启,false-关闭 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isAdaptiveBlendRadiusEnabled() -> bool + * + * @par Lua示例 + * local ret = isAdaptiveBlendRadiusEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isAdaptiveBlendRadiusEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Get whether adaptive blend radius increase is enabled + * + * @return true - enabled, false - disabled + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isAdaptiveBlendRadiusEnabled() -> bool + * + * @par Lua example + * local ret = isAdaptiveBlendRadiusEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isAdaptiveBlendRadiusEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isAdaptiveBlendRadiusEnabled(); + + /** + * @ingroup MotionControl + * \chinese + * 设置是否开启融合半径自适应增大功能,默认关闭 + * + * @param enable true-开启,false-关闭 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * setAdaptiveBlendRadiusEnable() -> number + * + * @par Lua示例 + * setAdaptiveBlendRadiusEnable(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setAdaptiveBlendRadiusEnable","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Enable or disable adaptive blend radius increase function, disabled by + * default + * + * @param enable true - enable, false - disable + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * setAdaptiveBlendRadiusEnable() -> number + * + * @par Lua example + * setAdaptiveBlendRadiusEnable(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.MotionControl.setAdaptiveBlendRadiusEnable","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setAdaptiveBlendRadiusEnable(bool enable); + +protected: + void *d_; +}; +using MotionControlPtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_MOTION_CONTROL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_algorithm.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_algorithm.h new file mode 100644 index 00000000..99d51c33 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_algorithm.h @@ -0,0 +1,2372 @@ +/** @file robot_algorithm.h + * @brief 机器人算法相关的对外接口 + */ +#ifndef AUBO_SDK_ROBOT_ALGORITHM_INTERFACE_H +#define AUBO_SDK_ROBOT_ALGORITHM_INTERFACE_H + +#include +#include +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +// clang-format off + +/** + * \chinese + * @defgroup RobotAlgorithm RobotAlgorithm (机器人算法工具) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup RobotAlgorithm Robot Algorithm Tool + * @ingroup RobotInterface + * \endenglish + * + * \chinese + * 机器人算法相关的对外接口 + * \endchinese + * \english + * Interfaces related to robot algorithms + * \endenglish + */ +class ARCS_ABI_EXPORT RobotAlgorithm +{ +public: + RobotAlgorithm(); + virtual ~RobotAlgorithm(); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 力传感器标定算法(三点标定法) + * + * @param force 力数据 + * @param q 关节角度 + * @return 标定结果 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * calibrateTcpForceSensor(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: List[List[float]]) -> Tuple[List[float], + * List[float], float, List[float]] + * + * @par Lua函数原型 + * calibrateTcpForceSensor(force: table, q: table) -> table + * + * @par Lua示例 + * cal_table = calibrateTcpForceSensor({10.0,10.0,10.0,-1.2,-1.2,-1.2}, {3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * \endchinese + * \english + * Force sensor calibration algorithm (three-point calibration method) + * + * @param force Force data + * @param q Joint angles + * @return Calibration result + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * calibrateTcpForceSensor(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: List[List[float]]) -> Tuple[List[float], + * List[float], float, List[float]] + * + * @par Lua function prototype + * calibrateTcpForceSensor(force: table, q: table) -> table + * + * @par Lua example + * cal_table = calibrateTcpForceSensor({10.0,10.0,10.0,-1.2,-1.2,-1.2}, {3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * \endenglish + */ + ForceSensorCalibResult calibrateTcpForceSensor( + const std::vector> &forces, + const std::vector> &poses); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 力传感器标定算法(三点标定法) + * @param forces + * @param poses + * @return force_offset, com, mass, angle error + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Force sensor calibration algorithm (three-point calibration method) + * @param forces + * @param poses + * @return force_offset, com, mass, angle error + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + ForceSensorCalibResultWithError calibrateTcpForceSensor2( + const std::vector> &forces, + const std::vector> &poses); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 力传感器偏置标定算法 + * + * @param force 力数据 + * @param poses 位姿 + * @param mass 质量, 单位: kg + * @param cog 重心, 单位: m, 形式为(CoGx, CoGy, CoGz) + * @return 标定结果 + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Force sensor offset calibration algorithm + * + * @param forces Force data + * @param poses + * @param m Mass, unit: kg + * @param cog Center of gravity, unit: m, format (CoGx, CoGy, CoGz) + * @return Calibration result + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + ResultWithErrno calibrateTcpForceSensor3( + const std::vector> &forces, + const std::vector> &poses, const double &mass, + const std::vector&cog); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 基于电流的负载辨识算法接口 + * + * 需要采集空载时运行激励轨迹的位置、速度、电流以及带负载时运行激励轨迹的位置、速度、电流 + * + * @param data_file_no_payload + * 空载时运行激励轨迹各关节数据的文件路径(.csv格式),共18列,依次为6个关节位置、6个关节速度、6个关节电流 + * @param data_file_with_payload + * 带负载运行激励轨迹各关节数据的文件路径(.csv格式),共18列,依次为6个关节位置、6个关节速度、6个关节电流 + * @return 辨识的结果 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * payloadIdentify(self: pyaubo_sdk.RobotAlgorithm, arg0: List[List[float]], + * arg1: List[List[float]]) -> Tuple[List[float], List[float], float, + * List[float]] + * + * @par Lua函数原型 + * payloadIdentify(data_with_payload: table, data_with_payload: table) -> + * table + * \endchinese + * \english + * Payload identification algorithm interface based on current + * + * Requires collecting position, velocity, and current data when running the excitation trajectory without load, as well as with load. + * + * @param data_file_no_payload + * File path of joint data when running the excitation trajectory without load (.csv format), 18 columns in total: 6 joint positions, 6 joint velocities, 6 joint currents + * @param data_file_with_payload + * File path of joint data when running the excitation trajectory with load (.csv format), 18 columns in total: 6 joint positions, 6 joint velocities, 6 joint currents + * @return Identification result + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * payloadIdentify(self: pyaubo_sdk.RobotAlgorithm, arg0: List[List[float]], + * arg1: List[List[float]]) -> Tuple[List[float], List[float], float, + * List[float]] + * + * @par Lua function prototype + * payloadIdentify(data_with_payload: table, data_with_payload: table) -> + * table + * \endenglish + */ + int payloadIdentify(const std::string &data_file_no_payload, + const std::string &data_file_with_payload); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 新版基于电流的负载辨识算法接口 + * + * 需要采集带载时运行最少三个点的位置、速度、加速度、电流、温度、末端传感器数据、底座数据 + * + * @param data + * 带负载的各关节数据的文件路径(.csv格式),共42列,末端传感器数据、底座数据默认为0 + * @return 辨识的结果 + * \endchinese + * \english + * New version of payload identification algorithm interface based on current + * + * Requires collecting at least three points of position, velocity, acceleration, current, temperature, end sensor data, and base data when running with load + * + * @param data + * File path of joint data with load (.csv format), 42 columns in total, end sensor data and base data default to 0 + * @return Identification result + * \endenglish + */ + int payloadIdentify1(const std::string &file_name); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 负载辨识是否计算完成 + * @return 完成返回0; 正在进行中返回1; 计算失败返回<0; + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.payloadCalculateFinished","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Whether payload identification calculation is finished + * @return 0 if finished; 1 if in progress; <0 if failed; + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.payloadCalculateFinished","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int payloadCalculateFinished(); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 获取负载辨识结果 + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.getPayloadIdentifyResult","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,[],[],[]]} + * + * \endchinese + * \english + * Get the result of payload identification + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.getPayloadIdentifyResult","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,[],[],[]]} + * + * \endenglish + */ + Payload getPayloadIdentifyResult(); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 关节摩擦力模型辨识算法接口 + * + * @param q 关节角度 + * @param qd 关节速度 + * @param qdd 关节加速度 + * @param temp 关节温度 + * @return 是否辨识成功 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * frictionModelIdentify(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: List[List[float]], arg2: List[List[float]], + * arg3: List[List[float]]) -> bool + * + * @par Lua函数原型 + * frictionModelIdentify(q: table, qd: table, qdd: table, temp: table) -> + * boolean + * + * @par Lua示例 + * Identify_result = frictionModelIdentify({3.083,1.227,1.098,0.670,-1.870,-0.397}, + * {10.0,10.0,10.0,10.0,10.0,10.0},{20.0,20.0,20.0,20.0,20.0,20.0},{30.0,30.0,30.0,30.0,30.0,30.0}) + * + * \endchinese + * \english + * Joint friction model identification algorithm interface + * + * @param q Joint positions + * @param qd Joint velocities + * @param qdd Joint accelerations + * @param temp Joint temperatures + * @return Whether identification succeeded + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * frictionModelIdentify(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: List[List[float]], arg2: List[List[float]], + * arg3: List[List[float]]) -> bool + * + * @par Lua function prototype + * frictionModelIdentify(q: table, qd: table, qdd: table, temp: table) -> + * boolean + * + * @par Lua example + * Identify_result = frictionModelIdentify({3.083,1.227,1.098,0.670,-1.870,-0.397}, + * {10.0,10.0,10.0,10.0,10.0,10.0},{20.0,20.0,20.0,20.0,20.0,20.0},{30.0,30.0,30.0,30.0,30.0,30.0}) + * + * \endenglish + */ + bool frictionModelIdentify(const std::vector> &q, + const std::vector> &qd, + const std::vector> &qdd, + const std::vector> &temp); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 工件坐标系标定算法接口(需要在调用之前正确的设置机器人的TCP偏移) + * 输入多组关节角度和标定类型,输出工件坐标系位姿(相对于机器人基坐标系) + * + * @param q 关节角度 + * @param type 标定类型 + * @return 计算结果(工件坐标系位姿)以及错误代码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * calibWorkpieceCoordinatePara(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: int) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * calibWorkpieceCoordinatePara(q: table, type: number) -> table, number + * + * @par Lua示例 + * coord_pose,coord_num = calibWorkpieceCoordinatePara({3.083,1.227,1.098,0.670,-1.870,-0.397},1) + * + * \endchinese + * \english + * Workpiece coordinate calibration algorithm interface (requires correct TCP offset set before calling) + * Input multiple sets of joint angles and calibration type, output workpiece coordinate pose (relative to robot base) + * + * @param q Joint angles + * @param type Calibration type + * @return Calculation result (workpiece coordinate pose) and error code + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * calibWorkpieceCoordinatePara(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: int) -> Tuple[List[float], int] + * + * @par Lua function prototype + * calibWorkpieceCoordinatePara(q: table, type: number) -> table, number + * + * @par Lua example + * coord_pose,coord_num = calibWorkpieceCoordinatePara({3.083,1.227,1.098,0.670,-1.870,-0.397},1) + * + * \endenglish + */ + ResultWithErrno calibWorkpieceCoordinatePara( + const std::vector> &q, int type); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 动力学正解 + * + * @param q 关节角 + * @param torqs + * @return 计算结果以及错误代码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * forwardDynamics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * forwardDynamics(q: table, torqs: table) -> table, number + * + * @par Lua示例 + * Dynamics, fk_result = forwardDynamics({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endchinese + * \english + * Forward dynamics + * + * @param q Joint angles + * @param torqs + * @return Calculation result and error code + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * forwardDynamics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * forwardDynamics(q: table, torqs: table) -> table, number + * + * @par Lua example + * Dynamics, fk_result = forwardDynamics({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endenglish + */ + ResultWithErrno forwardDynamics(const std::vector &q, + const std::vector &torqs); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 动力学正解,基于给定的TCP偏移 + * + * @param q 关节角 + * @param torqs + * @param tcp_offset TCP偏移 + * @return 计算结果以及错误代码,同forwardDynamics + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * forwardDynamics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * List[float], arg2: List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * forwardDynamics1(q: table, torqs: table, tcp_offset: table) -> table, number + * + * @par Lua示例 + * Dynamics, fk_result = forwardDynamics1({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.0,0.0,0.0,0.0,0.0},{0.0,0.13201,0.03879,0,0,0}) + * + * \endchinese + * \english + * Forward dynamics based on the given TCP offset + * + * @param q Joint angles + * @param torqs + * @param tcp_offset TCP offset + * @return Calculation result and error code, same as forwardDynamics + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * forwardDynamics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * List[float], arg2: List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * forwardDynamics1(q: table, torqs: table, tcp_offset: table) -> table, number + * + * @par Lua example + * Dynamics, fk_result = forwardDynamics1({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.0,0.0,0.0,0.0,0.0},{0.0,0.13201,0.03879,0,0,0}) + * + * \endenglish + */ + ResultWithErrno forwardDynamics1(const std::vector &q, + const std::vector &torqs, + const std::vector &tcp_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学正解, 基于激活的TCP偏移(最近的通过 setTcpOffset 设置的参数) + * 输入关节角度,输出TCP位姿 + * + * @param q 关节角 + * @return TCP位姿和正解结果是否有效 + * 返回值的第一个参数为正解结果,第二个为正解错误码,错误码返回值列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的关节角无效(维度错误) + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * forwardKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> + * Tuple[List[float], int] + * + * @par Lua函数原型 + * forwardKinematics(q: table) -> table, number + * + * @par Lua示例 + * pose, fk_result = forwardKinematics({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematics","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.7137448715395925,0.08416057568819092,0.6707994191515292,2.4599818776908724,0.4789772388601265,1.6189630435878408],0]} + * \endchinese + * \english + * Forward kinematics, based on the activated TCP offset (the most recently set via setTcpOffset) + * Input joint angles, output TCP pose + * + * @param q Joint angles + * @return TCP pose and whether the result is valid + * The first parameter of the return value is the forward kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input joint angles is invalid (dimension error) + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * forwardKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> + * Tuple[List[float], int] + * + * @par Lua function prototype + * forwardKinematics(q: table) -> table, number + * + * @par Lua example + * pose, fk_result = forwardKinematics({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematics","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.7137448715395925,0.08416057568819092,0.6707994191515292,2.4599818776908724,0.4789772388601265,1.6189630435878408],0]} + * \endenglish + */ + ResultWithErrno forwardKinematics(const std::vector &q); + /** + * @ingroup RobotAlgorithm + * \chinese + * 外部轴轴组协同正解。 + * + * @param q 机械臂关节角 + * @param axis_q 外部轴关节位置 + * @return TCP 在工件坐标系下的位姿和正解结果是否有效 + * \endchinese + * \english + * Coordinated forward kinematics with an external axis group. + * + * @param q Robot joint angles + * @param axis_q External axis joint positions + * @return TCP pose in workpiece frame and whether the result is valid + * \endenglish + */ + ResultWithErrno forwardKinematicsWithAxisGroup( + const std::vector &q, const std::vector &axis_q); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学正解 + * 输入关节角度,输出TCP位姿 + * @param q 关节角 + * @param tcp_offset tcp偏移 + * @return TCP位姿和正解结果是否有效 + * 返回值的第一个参数为正解结果,第二个为正解错误码,错误码返回值列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的关节角或tcp偏移无效(维度错误) + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * forwardKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * forwardKinematics1(q: table, tcp_offset: table) -> table, number + * + * @par Lua示例 + * pose, fk_result = forwardKinematics1({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.13201,0.03879,0,0,0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematics1","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.7137636726659518,0.0837705432006433,0.6710022027216355,2.459981877690872,0.4789772388601267,1.6189630435878408],0]} + * + * @since 0.24.1 + * \endchinese + * \english + * Forward kinematics + * Input joint angles, output TCP pose + * + * @param q Joint angles + * @param tcp_offset TCP offset + * @return TCP pose and whether the result is valid + * The first parameter of the return value is the forward kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input joint angles or tcp offset is invalid (dimension error) + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * forwardKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * forwardKinematics1(q: table, tcp_offset: table) -> table, number + * + * @par Lua example + * pose, fk_result = forwardKinematics1({3.083,1.227,1.098,0.670,-1.870,-0.397},{0.0,0.13201,0.03879,0,0,0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematics1","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.7137636726659518,0.0837705432006433,0.6710022027216355,2.459981877690872,0.4789772388601267,1.6189630435878408],0]} + * + * @since 0.24.1 + * \endenglish + */ + ResultWithErrno forwardKinematics1(const std::vector &q, + const std::vector &tcp_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学正解(忽略 TCP 偏移值) + * + * @param q 关节角 + * @return 法兰盘中心位姿和正解结果是否有效 + * 返回值的第一个参数为正解结果,第二个为正解错误码,错误码返回值列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的关节角无效(维度错误) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * forwardToolKinematics(q: table) -> table, number + * + * @par Lua示例 + * pose, fk_result = forwardToolKinematics({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardToolKinematics","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.5881351149440136,0.05323734739426938,0.623922550656701,2.4599818776908724,0.4789772388601265,1.6189630435878408],0]} + * \endchinese + * \english + * Forward kinematics (ignoring TCP offset) + * + * @param q Joint angles + * @return Flange center pose and whether the result is valid + * The first parameter of the return value is the forward kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input joint angles is invalid (dimension error) + * + * @par Lua function prototype + * forwardToolKinematics(q: table) -> table, number + * + * @par Lua example + * pose, fk_result = forwardToolKinematics({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardToolKinematics","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.5881351149440136,0.05323734739426938,0.623922550656701,2.4599818776908724,0.4789772388601265,1.6189630435878408],0]} + * \endenglish + */ + ResultWithErrno forwardToolKinematics(const std::vector &q); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学正解, 基于激活的TCP偏移(最近的通过 setTcpOffset 设置的参数) + * 输入关节角度,输出各连杆位姿 + * + * @param q 关节角 + * @return 各个连杆位姿和正解结果是否有效 + * 返回值的第一个参数为正解结果,第二个为正解错误码,错误码返回值列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的关节角无效(维度错误) + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * forwardKinematicsAll(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> + * Tuple[List[List[float]], int] + * + * @par Lua函数原型 + * forwardKinematicsAll(q: table) -> table, number + * + * @par Lua示例 + * poses, fk_result = forwardKinematicsAll({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematicsAll","params":{"q":[-7.32945e-11,-0.261799,1.74533,0.436332,1.5708,-2.14136e-10]},"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[[0.0010004,0.0,0.122,0.0,0.0,3.141592653589793], + * [0.0010003999910823934,-0.12166795404953117,0.12205392567412496,1.5690838552993878,-1.3089969602251492,0.0016541204887245322], + * [0.10659809449330016,-0.12166124765791932,0.5161518260534821,-1.5718540206872664,0.43633111081725523,-0.002370419930605744], + * [0.4482255342315581,-0.1226390142692,0.3568490758201224,-0.000788980482890453,1.5665204619271216,-1.5719618592940798], + * [0.5519603828181741,-0.12282266347465487,0.35639753697117343,1.5707938201843654,0.0042721909279596635,1.569044569428874], + * [0.5513243939877184,-0.12401224959696328,0.2615193425222568,-3.1349118101994096,0.004272190926529066,1.569044569643007], + * [0.7494883076798231,-0.025647479212994567,-0.04023458911333461,-3.1349118101994096,0.004272190926529066,1.569044569643007]],0]} + * \endchinese + * \english + * Forward kinematics, based on the activated TCP offset (the most recently set via setTcpOffset) + * Input joint angles, output links poses + * + * @param q Joint angles + * @return links poses and whether the result is valid + * The first parameter of the return value is the forward kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input joint angles is invalid (dimension error) + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * forwardKinematicsAll(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> + * Tuple[List[List[float]], int] + * + * @par Lua function prototype + * forwardKinematicsAll(q: table) -> table, number + * + * @par Lua example + * pose, fk_result = forwardKinematicsAll({3.083,1.227,1.098,0.670,-1.870,-0.397}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.forwardKinematicsAll","params":{"q":[-7.32945e-11,-0.261799,1.74533,0.436332,1.5708,-2.14136e-10]},"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[[0.0010004,0.0,0.122,0.0,0.0,3.141592653589793], + * [0.0010003999910823934,-0.12166795404953117,0.12205392567412496,1.5690838552993878,-1.3089969602251492,0.0016541204887245322], + * [0.10659809449330016,-0.12166124765791932,0.5161518260534821,-1.5718540206872664,0.43633111081725523,-0.002370419930605744], + * [0.4482255342315581,-0.1226390142692,0.3568490758201224,-0.000788980482890453,1.5665204619271216,-1.5719618592940798], + * [0.5519603828181741,-0.12282266347465487,0.35639753697117343,1.5707938201843654,0.0042721909279596635,1.569044569428874], + * [0.5513243939877184,-0.12401224959696328,0.2615193425222568,-3.1349118101994096,0.004272190926529066,1.569044569643007], + * [0.7494883076798231,-0.025647479212994567,-0.04023458911333461,-3.1349118101994096,0.004272190926529066,1.569044569643007]],0]} + * \endenglish + */ + ResultWithErrno1 forwardKinematicsAll(const std::vector &q); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学逆解 + * 输入TCP位姿和参考关节角度,输出关节角度 + * + * @param qnear 参考关节角 + * @param pose TCP位姿 + * @return 关节角和逆解结果是否有效 + * 返回值的第一个参数为逆解结果,第二个为逆解错误码,错误码返回列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的参考关节角或TCP位姿无效(维度错误) + * -23 - 逆解计算不收敛,计算出错 + * -24 - 逆解计算超出机器人最大限制 + * -25 - 逆解输入配置存在错误 + * -26 - 逆解雅可比矩阵计算失败 + * -27 - 目标点存在解析解,但均不满足选解条件 + * -28 - 逆解返回未知类型错误 + * 若错误码非0,则返回值的第一个参数为输入参考关节角qnear + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * inverseKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * inverseKinematics(qnear: table, pose: table) -> table, int + * + * @par Lua示例 + * joint,ik_result = inverseKinematics({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],0]} + * \endchinese + * \english + * Inverse kinematics + * Input TCP pose and reference joint angles, output joint angles + * + * @param qnear Reference joint angles + * @param pose TCP pose + * @return Joint angles and whether the inverse kinematics result is valid + * The first parameter of the return value is the inverse kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input reference joint angles or tcp pose is invalid (dimension error) + * -23 - Inverse kinematics calculation does not converge, calculation error + * -24 - Inverse kinematics calculation exceeds robot limits + * -25 - Inverse kinematics input configuration error + * -26 - Inverse kinematics Jacobian calculation failed + * -27 - Analytical solution exists but none satisfy the selection criteria + * -28 - Unknown error in inverse kinematics + * If the error code is not 0, the first parameter of the return value is the input reference joint angles qnear + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * inverseKinematics(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * inverseKinematics(qnear: table, pose: table) -> table, int + * + * @par Lua example + * joint,ik_result = inverseKinematics({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],0]} + * \endenglish + */ + ResultWithErrno inverseKinematics(const std::vector &qnear, + const std::vector &pose); + /** + * @ingroup RobotAlgorithm + * \chinese + * 外部轴轴组协同逆解。 + * + * @param qnear 机械臂参考关节角 + * @param axis_q 外部轴关节位置 + * @param pose TCP 在工件坐标系下的目标位姿 + * @return 机械臂关节角和逆解结果是否有效 + * \endchinese + * \english + * Coordinated inverse kinematics with an external axis group. + * + * @param qnear Robot reference joint angles + * @param axis_q External axis joint positions + * @param pose Target TCP pose in workpiece frame + * @return Robot joint angles and whether the result is valid + * \endenglish + */ + ResultWithErrno inverseKinematicsWithAxisGroup( + const std::vector &qnear, const std::vector &axis_q, + const std::vector &pose); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学逆解 + * 输入TCP位姿和参考关节角度,输出关节角度 + * + * @param qnear 参考关节角 + * @param pose TCP位姿 + * @param tcp_offset TCP偏移 + * @return 关节角和逆解结果是否有效,同 inverseKinematics + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * inverseKinematics1(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * inverseKinematics1(qnear: table, pose: table, tcp_offset: table) -> table, int + * + * @par Lua示例 + * joint,ik_result = inverseKinematics1({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569},{0.04,-0.035,0.1,0,0,0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics1","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[3.084454549595208,1.2278265883747776,1.0986586440159576,0.6708221281915528,-1.8712459848518375,-0.3965111476861782],0]} + * \endchinese + * \english + * Inverse kinematics + * Input TCP pose and reference joint angles, output joint angles + * + * @param qnear Reference joint angles + * @param pose TCP pose + * @param tcp_offset TCP offset + * @return Joint angles and whether the result is valid, same as inverseKinematics + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * inverseKinematics1(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float], arg2: List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * inverseKinematics1(qnear: table, pose: table, tcp_offset: table) -> table, int + * + * @par Lua example + * joint,ik_result = inverseKinematics1({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569},{0.04,-0.035,0.1,0,0,0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics1","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[3.084454549595208,1.2278265883747776,1.0986586440159576,0.6708221281915528,-1.8712459848518375,-0.3965111476861782],0]} + * \endenglish + */ + ResultWithErrno inverseKinematics1(const std::vector &qnear, + const std::vector &pose, + const std::vector &tcp_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 同构型最小关节变化逆解 + * 按照 qnear 的机械臂构型计算目标 TCP 位姿逆解,并在同构型逆解中选择相对 qnear 关节变化最小的一组 + * 基于激活的 TCP 偏移(最近的通过 setTcpOffset 设置的参数) + * + * @param qnear 参考关节角 + * @param pose TCP位姿,基于激活的 TCP 偏移(最近的通过 setTcpOffset 设置的参数) + * @return 关节角和逆解结果是否有效 + * 返回值的第一个参数为逆解结果,第二个为逆解错误码,错误码返回列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的参考关节角或TCP位姿无效(维度错误) + * -23 - 逆解计算不收敛,计算出错 + * -24 - 逆解计算超出机器人最大限制 + * -25 - 逆解输入配置存在错误 + * -26 - 逆解雅可比矩阵计算失败 + * -27 - 目标点存在解析解,但均不满足同构型最小关节变化选解条件 + * -28 - 逆解返回未知类型错误 + * 若错误码非0,则返回值的第一个参数为输入参考关节角qnear + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * inverseKinematics2(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * inverseKinematics2(qnear: table, pose: table) -> table, int + * + * @par Lua示例 + * joint,ik_result = inverseKinematics2({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics2","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],0]} + * \endchinese + * \english + * Inverse kinematics with the same robot configuration and minimum joint change + * Calculate the inverse kinematics solution for the target TCP pose according to the robot configuration of qnear, and select the solution with the minimum joint change relative to qnear among solutions with the same configuration. + * This interface is based on the activated TCP offset, which is the latest parameter set by setTcpOffset. + * + * @param qnear Reference joint angles + * @param pose TCP pose, based on the activated TCP offset, which is the latest parameter set by setTcpOffset + * @return Joint angles and whether the result is valid + * The first parameter of the return value is the inverse kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input reference joint angles or tcp pose is invalid (dimension error) + * -23 - Inverse kinematics calculation does not converge, calculation error + * -24 - Inverse kinematics calculation exceeds robot limits + * -25 - Inverse kinematics input configuration error + * -26 - Inverse kinematics Jacobian calculation failed + * -27 - Analytical solution exists but none satisfy the same-configuration minimum-joint-change selection criteria + * -28 - Unknown error in inverse kinematics + * If the error code is not 0, the first parameter of the return value is the input reference joint angles qnear + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * inverseKinematics2(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: List[float]) -> Tuple[List[float], int] + * + * @par Lua function prototype + * inverseKinematics2(qnear: table, pose: table) -> table, int + * + * @par Lua example + * joint,ik_result = inverseKinematics2({0,0,0,0,0,0},{0.81665,-0.20419,0.43873,-3.135,0.004,1.569}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematics2","params":[[0,0,0,0,0,0],[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627],0]} + * \endenglish + */ + ResultWithErrno inverseKinematics2(const std::vector &qnear, + const std::vector &pose); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 求出所有的逆解, 基于激活的 TCP 偏移 + * + * @param pose TCP位姿 + * @return 关节角和逆解结果是否有效 + * 返回的错误码同inverseKinematics + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematicsAll","params":[[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627], + * [3.081056801097411,0.17985038037652645,-1.0991717292664145,-0.4806460200109001,-1.869182975312333,-0.402066016835411], + * [0.4090095277807992,-0.1623365054641728,1.081775890307679,0.26993250263224805,0.9738255833642309,0.000572556627720845], + * [0.4116449425067969,-1.1931664523907126,-1.0822709833775688,-0.8665964106161371,0.9732141569888207,0.006484919654891586]],0]} + * \endchinese + * \english + * Solve all inverse kinematics solutions based on the activated TCP offset + * + * @param pose TCP pose + * @return Joint angles and whether the result is valid + * The returned error code is the same as inverseKinematics + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematicsAll","params":[[0.71374,0.08417,0.6708,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627], + * [3.081056801097411,0.17985038037652645,-1.0991717292664145,-0.4806460200109001,-1.869182975312333,-0.402066016835411], + * [0.4090095277807992,-0.1623365054641728,1.081775890307679,0.26993250263224805,0.9738255833642309,0.000572556627720845], + * [0.4116449425067969,-1.1931664523907126,-1.0822709833775688,-0.8665964106161371,0.9732141569888207,0.006484919654891586]],0]} + * \endenglish + */ + ResultWithErrno1 inverseKinematicsAll(const std::vector &pose); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 求出所有的逆解, 基于提供的 TCP 偏移 + * + * @param pose TCP位姿 + * @param tcp_offset TCP偏移 + * @return 关节角和逆解结果是否有效,同 inverseKinematicsAll + * 返回的错误码同inverseKinematics + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematicsAll1","params":[[0.71374,0.08417,0.6708,2.46,0.479,1.619],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[[3.084454549595208,1.2278265883747776,1.0986586440159576,0.6708221281915528,-1.8712459848518375,-0.3965111476861782], + * [3.0818224058231602,0.17980369843203092,-1.0997576631122077,-0.48102131527371267,-1.8697135490338517,-0.40149459722060593], + * [0.40972960018231047,-0.16226026285489026,1.0823403816496,0.2700204411869427,0.9734251963887868,0.0012903686498106507], + * [0.41236549588802296,-1.193621392918341,-1.0828346680836718,-0.8671097369314354,0.972815367289568,0.007206851371073478]],0]} + * \endchinese + * \english + * Solve all inverse kinematics solutions based on the provided TCP offset + * + * @param pose TCP pose + * @param tcp_offset TCP offset + * @return Joint angles and whether the result is valid, same as inverseKinematicsAll + * The returned error code is the same as inverseKinematics + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseKinematicsAll1","params":[[0.71374,0.08417,0.6708,2.46,0.479,1.619],[0.0, + * 0.13201,0.03879,0,0,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[[3.084454549595208,1.2278265883747776,1.0986586440159576,0.6708221281915528,-1.8712459848518375,-0.3965111476861782], + * [3.0818224058231602,0.17980369843203092,-1.0997576631122077,-0.48102131527371267,-1.8697135490338517,-0.40149459722060593], + * [0.40972960018231047,-0.16226026285489026,1.0823403816496,0.2700204411869427,0.9734251963887868,0.0012903686498106507], + * [0.41236549588802296,-1.193621392918341,-1.0828346680836718,-0.8671097369314354,0.972815367289568,0.007206851371073478]],0]} + * \endenglish + */ + ResultWithErrno1 inverseKinematicsAll1( + const std::vector &pose, const std::vector &tcp_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学逆解(忽略 TCP 偏移值) + * + * @param qnear 参考关节角 + * @param pose 法兰盘中心的位姿 + * @return 关节角和逆解结果是否有效 + * 返回值的第一个参数为逆解结果,第二个为逆解错误码,错误码返回列表如下 + * 0 - 成功 + * -1 - 机械臂状态不对(未初始化完成,可尝试再次调用) + * -5 - 输入的参考关节角或位姿无效(维度错误) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * inverseToolKinematics(qnear: table, pose: table) -> table, int + * + * @par Lua示例 + * joint, ik_result = inverseToolKinematics({0,0,0,0,0,0},{0.58815,0.0532,0.62391,2.46,0.479,1.619}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseToolKinematics","params":[[0,0,0,0,0,0],[0.58815,0.0532,0.62391,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[3.083609363838651,1.22736129158332,1.098095443698268,0.6705395395487186,-1.8706605026855632,-0.39714507002376465],0]} + * \endchinese + * \english + * Inverse kinematics (ignoring TCP offset) + * + * @param qnear Reference joint angles + * @param pose Flange center pose + * @return Joint angles and whether the result is valid + * The first parameter of the return value is the inverse kinematics result, the second is the error code. Error codes are as follows: + * 0 - Success + * -1 - The status of the robot is incorrect (not initialized yet, you can try calling it again) + * -5 - The input reference joint angles or pose is invalid (dimension error) + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * inverseToolKinematics(qnear: table, pose: table) -> table, int + * + * @par Lua example + * joint, ik_result = inverseToolKinematics({0,0,0,0,0,0},{0.58815,0.0532,0.62391,2.46,0.479,1.619}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseToolKinematics","params":[[0,0,0,0,0,0],[0.58815,0.0532,0.62391,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[3.083609363838651,1.22736129158332,1.098095443698268,0.6705395395487186,-1.8706605026855632,-0.39714507002376465],0]} + * \endenglish + */ + ResultWithErrno inverseToolKinematics(const std::vector &qnear, + const std::vector &pose); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 运动学逆解(忽略 TCP 偏移值) + * + * @param qnear 参考关节角 + * @param pose 法兰盘中心的位姿 + * @return 关节角和逆解结果是否有效 + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseToolKinematicsAll","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[[3.083609363838651,1.22736129158332,1.098095443698268,0.6705395395487186,-1.8706605026855632,-0.39714507002376465], + * [3.0809781797426523,0.17987122696706134,-1.0991932793263717,-0.4807053707530958,-1.8691282890274434,-0.40212516672751814], + * [0.40892195618737215,-0.16235398607358653,1.081812753177426,0.27003586475871766,0.9738744130114284,0.00048462518316674287], + * [0.41155633414333076,-1.1932173012004512,-1.082306542045813,-0.8665312056504818,0.9732632365861417,0.0063958311601771175]],0]} + * \endchinese + * \english + * Inverse kinematics (ignoring TCP offset) + * + * @param qnear Reference joint angles + * @param pose Flange center pose + * @return Joint angles and whether the result is valid + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.inverseToolKinematicsAll","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[[3.083609363838651,1.22736129158332,1.098095443698268,0.6705395395487186,-1.8706605026855632,-0.39714507002376465], + * [3.0809781797426523,0.17987122696706134,-1.0991932793263717,-0.4807053707530958,-1.8691282890274434,-0.40212516672751814], + * [0.40892195618737215,-0.16235398607358653,1.081812753177426,0.27003586475871766,0.9738744130114284,0.00048462518316674287], + * [0.41155633414333076,-1.1932173012004512,-1.082306542045813,-0.8665312056504818,0.9732632365861417,0.0063958311601771175]],0]} + * \endenglish + */ + ResultWithErrno1 inverseToolKinematicsAll(const std::vector &pose); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 根据输入的关节角计算并返回对应的机械臂构型 + * + * 机械臂构型由三个维度的状态组合而成,各维度定义如下: + * - 肩部方向:LEFT(肩部朝左) / RIGHT(肩部朝右) + * - 肘部方向:UP(肘部朝上) / DOWN(肘部朝下) + * - 腕部状态:FLIP(腕部翻转) / NOFLIP(腕部不翻转) + * + * 三个维度两两组合共形成8种基础构型(L/R + U/D + F/N),该接口会根据输入的关节角解析出当前对应的构型类型, + * 并返回其枚举值对应的整数形式及错误码(注:接口返回的是组合构型值,如LUF对应0,而非单独的LEFT/UP/FLIP枚举值)。 + * + * @param q 输入的关节角数组,6轴机械臂为6个元素,单位:弧度(rad) + * @return 机械臂构型结果及错误码(类型为ResultWithErrno3,即std::tuple): + * - 第一个int:机械臂构型枚举(RobotConfiguration)对应的整数值,取值范围及含义: + * -1 (NONE) - 无效构型 + * 0 (LUF) - LEFT+UP+FLIP(左肩、肘上、腕翻转) + * 1 (LUN) - LEFT+UP+NOFLIP(左肩、肘上、腕不翻转) + * 2 (LDF) - LEFT+DOWN+FLIP(左肩、肘下、腕翻转) + * 3 (LDN) - LEFT+DOWN+NOFLIP(左肩、肘下、腕不翻转) + * 4 (RUF) - RIGHT+UP+FLIP(右肩、肘上、腕翻转) + * 5 (RUN) - RIGHT+UP+NOFLIP(右肩、肘上、腕不翻转) + * 6 (RDF) - RIGHT+DOWN+FLIP(右肩、肘下、腕翻转) + * 7 (RDN) - RIGHT+DOWN+NOFLIP(右肩、肘下、腕不翻转) + * - 第二个int:错误码,错误码含义如下: + * 0 - 成功:构型计算完成,返回有效构型值 + * -1 - 机械臂状态异常:未初始化完成,可尝试重新初始化后调用 + * -5 - 输入参数无效:关节角数组维度错误(非6个元素)或数值超出合理范围 + * + * @throws arcs::common_interface::AuboException 输入参数非法(如空数组、元素数量错误)时抛出 + * + * @par Python函数原型 + * getRobotConfiguration(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> Tuple[int, int] + * + * @par Lua函数原型 + * getRobotConfiguration(q: table) -> number, number + * + * @par Lua示例 + * -- 输入6轴关节角(单位:rad),获取构型及错误码 + * local joint_angles = {3.083,1.227,1.098,0.670,-1.870,-0.397} + * local config_val, err_code = getRobotConfiguration(joint_angles) + * if err_code == 0 then + * print("机械臂构型值:", config_val) -- 示例输出:4(对应RUF,右肩、肘上、腕翻转) + * else + * print("获取构型失败,错误码:", err_code) + * end + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.getRobotConfiguration","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[4,0]} + * \endchinese + * \english + * Calculate and return the corresponding robot configuration based on input joint angles + * + * The robot configuration consists of three dimensions of states, with the following definitions for each dimension: + * - Shoulder direction: LEFT (Shoulder to the left) / RIGHT (Shoulder to the right) + * - Elbow direction: UP (Elbow up) / DOWN (Elbow down) + * - Wrist state: FLIP (Wrist flipped) / NOFLIP (Wrist not flipped) + * + * The combination of the three dimensions forms 8 basic configurations (L/R + U/D + F/N). This interface parses the current + * configuration type from the input joint angles and returns its integer value corresponding to the RobotConfiguration enumeration + * and an error code (Note: The interface returns combined configuration values, e.g., LUF corresponds to 0, not the individual + * enumeration values of LEFT/UP/FLIP). + * + * @param q Input joint angle array, 6 elements for 6-axis robot, unit: radians (rad) + * @return Robot configuration result and error code (type: ResultWithErrno3, i.e., std::tuple): + * - First int: Integer value corresponding to the RobotConfiguration enumeration, value range and meanings: + * -1 (NONE) - Invalid configuration + * 0 (LUF) - LEFT+UP+FLIP (Left shoulder, elbow up, wrist flipped) + * 1 (LUN) - LEFT+UP+NOFLIP (Left shoulder, elbow up, wrist not flipped) + * 2 (LDF) - LEFT+DOWN+FLIP (Left shoulder, elbow down, wrist flipped) + * 3 (LDN) - LEFT+DOWN+NOFLIP (Left shoulder, elbow down, wrist not flipped) + * 4 (RUF) - RIGHT+UP+FLIP (Right shoulder, elbow up, wrist flipped) + * 5 (RUN) - RIGHT+UP+NOFLIP (Right shoulder, elbow up, wrist not flipped) + * 6 (RDF) - RIGHT+DOWN+FLIP (Right shoulder, elbow down, wrist flipped) + * 7 (RDN) - RIGHT+DOWN+NOFLIP (Right shoulder, elbow down, wrist not flipped) + * - Second int: Error code with the following meanings: + * 0 - Success: Configuration calculation completed, valid configuration value returned + * -1 - Abnormal robot state: Not initialized completely, try reinitializing before calling + * -5 - Invalid input parameters: Incorrect dimension of joint angle array (not 6 elements) or values out of reasonable range + * + * @throws arcs::common_interface::AuboException Thrown when input parameters are illegal (e.g., empty array, wrong number of elements) + * + * @par Python function prototype + * getRobotConfiguration(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float]) -> Tuple[int, int] + * + * @par Lua function prototype + * getRobotConfiguration(q: table) -> number, number + * + * @par Lua example + * -- Input 6-axis joint angles (unit: rad) to get configuration and error code + * local joint_angles = {3.083,1.227,1.098,0.670,-1.870,-0.397} + * local config_val, err_code = getRobotConfiguration(joint_angles) + * if err_code == 0 then + * print("Robot configuration value: ", config_val) -- Example output: 4 (corresponding to RUF, Right shoulder, elbow up, wrist flipped) + * else + * print("Failed to get configuration, error code: ", err_code) + * end + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.getRobotConfiguration","params":[[3.083688522170976,1.2273215976885394,1.098072739631141,0.6705738810610149,-1.870715392248607,-0.39708546603119627]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[4,0]} + * \endenglish + */ + ResultWithErrno3 getRobotConfiguration(const std::vector& q); + + /** + * \chinese + * 求解movej之间的轨迹点 + * + * @param q1 movej的起点 + * @param r1 在q1处的交融半径 + * @param q2 movej的终点 + * @param r2 在q2处的交融半径 + * @param d 采样距离 + * @return q1~q2 之间笛卡尔空间离散轨迹点(x,y,z,rx,ry,rz)集合 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathMovej(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * float, arg2: List[float], arg3: float, arg4: float) -> List[List[float]] + * + * @par Lua函数原型 + * pathMovej(q1: table, r1: number, q2: table, r2: number, d: number) -> + * table, number + * + * @par Lua示例 + * path , num = pathMovej({0.0,-0.2618,1.7453,0.4364,1.5711,0.0},0.25,{0.3234,-0.5405,1.5403,0.5881,1.2962,0.7435},0.03,0.2) + * + * \endchinese + * \english + * Solve the trajectory points between movej + * + * @param q1 Start point of movej + * @param r1 Blend radius at q1 + * @param q2 End point of movej + * @param r2 Blend radius at q2 + * @param d Sampling distance + * @return Discrete trajectory points (x, y, z, rx, ry, rz) between q1 and q2 in Cartesian space + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathMovej(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], arg1: + * float, arg2: List[float], arg3: float, arg4: float) -> List[List[float]] + * + * @par Lua function prototype + * pathMovej(q1: table, r1: number, q2: table, r2: number, d: number) -> + * table, number + * + * @par Lua example + * path , num = pathMovej({0.0,-0.2618,1.7453,0.4364,1.5711,0.0},0.25,{0.3234,-0.5405,1.5403,0.5881,1.2962,0.7435},0.03,0.2) + * + * \endenglish + */ + std::vector> pathMovej(const std::vector &q1, + double r1, + const std::vector &q2, + double r2, double d); + /** + * @ingroup RobotAlgorithm + * \chinese + * 计算机械臂末端的雅克比矩阵 + * + * @param q 关节角 + * @param base_or_end 参考坐标系为基坐标系(或者末端坐标系) + * true: 在 base 下描述 + * false: 在 末端坐标系 下描述 + * @return 雅克比矩阵是否有效 + * 返回值的第一个参数为该构型下对应的雅克比矩阵,第二个为逆解错误码 + * 此接口的错误码返回值在0.28.1-rc.21 0.29.0-alpha.25版本之后做了修改。 + * 此前逆解错误时返回 30082 ,修改后错误码返回列表如下 + * 0 - 成功 + * -23 - 逆解计算不收敛,计算出错 + * -24 - 逆解计算超出机器人最大限制 + * -25 - 逆解输入配置存在错误 + * -26 - 逆解雅可比矩阵计算失败 + * -27 - 目标点存在解析解,但均不满足选解条件 + * -28 - 逆解返回未知类型错误 + * 若错误码非0,则返回值的第一个参数为输入参考关节角qnear + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * calJacobian(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: bool) -> Tuple[List[float], int] + * + * @par Lua函数原型 + * calJacobian(q: table, base_or_end: boolean) -> table + * + * @par Lua示例 + * calJ_result = calJacobian({0.58815,0.0532,0.62391,2.46,0.479,1.619},true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.calcJacobian","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[[0.20822779551242535,-0.5409416184208162,0.2019786999613013,0.061264982268770196,-0.026269884327316487, + * 0.10131708699859962,0.26388933410019777,-0.36074292664199115,0.1346954733416397,0.04085636647597124,-0.07244204452918337,0.0708466286633346, + * 0.0,0.10401808481666497,-0.12571344758923886,-0.07741290545882097,0.18818543519232858,0.04628646442706299,0.0,0.5548228314607867, + * -0.5548228314607868,0.5548228314607868,-0.7901273140338193,0.37230961532208007,0.0,-0.8319685244586092,0.8319685244586091,-0.8319685244586091, + * -0.5269197820578843,-0.8184088260676008,1.0,3.749399456654644e-33,-6.512048180336603e-18,1.0956823467534067e-16,-0.31313634553301894, + * 0.43771285536682175],0]} + * \endchinese + * \english + * Calculate the Jacobian matrix at the robot end-effector + * + * @param q Joint angles + * @param base_or_end Reference frame: base (or end-effector) + * true: described in base frame + * false: described in end-effector frame + * @return Whether the Jacobian matrix is valid + * The first parameter of the return value is the Jacobian matrix for this configuration, the second is the error code. + * The error code list was updated after versions 0.28.1-rc.21 and 0.29.0-alpha.25. + * Previously, inverse kinematics errors returned 30082. The updated error codes are: + * 0 - Success + * -23 - Inverse kinematics calculation does not converge, calculation error + * -24 - Inverse kinematics calculation exceeds robot limits + * -25 - Inverse kinematics input configuration error + * -26 - Inverse kinematics Jacobian calculation failed + * -27 - Analytical solution exists but none satisfy the selection criteria + * -28 - Unknown error in inverse kinematics + * If the error code is not 0, the first parameter of the return value is the input reference joint angles qnear + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * calJacobian(self: pyaubo_sdk.RobotAlgorithm, arg0: List[float], + * arg1: bool) -> Tuple[List[float], int] + * + * @par Lua function prototype + * calJacobian(q: table, base_or_end: boolean) -> table + * + * @par Lua example + * calJ_result = calJacobian({0.58815,0.0532,0.62391,2.46,0.479,1.619},true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.calcJacobian","params":[[0.58815,0.0532,0.62391,2.46,0.479,1.619],true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[[0.20822779551242535,-0.5409416184208162,0.2019786999613013,0.061264982268770196,-0.026269884327316487, + * 0.10131708699859962,0.26388933410019777,-0.36074292664199115,0.1346954733416397,0.04085636647597124,-0.07244204452918337,0.0708466286633346, + * 0.0,0.10401808481666497,-0.12571344758923886,-0.07741290545882097,0.18818543519232858,0.04628646442706299,0.0,0.5548228314607867, + * -0.5548228314607868,0.5548228314607868,-0.7901273140338193,0.37230961532208007,0.0,-0.8319685244586092,0.8319685244586091,-0.8319685244586091, + * -0.5269197820578843,-0.8184088260676008,1.0,3.749399456654644e-33,-6.512048180336603e-18,1.0956823467534067e-16,-0.31313634553301894, + * 0.43771285536682175],0]} + * \endenglish + */ + ResultWithErrno calcJacobian(const std::vector &q, + bool base_or_end); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 求解交融的轨迹点 + * + * @param type + * 0-movej 和 movej + * 1-movej 和 movel + * 2-movel 和 movej + * 3-movel 和 movel + * @param q_start 交融前路径的起点 + * @param q_via 交融点 + * @param q_to 交融后路径的终点 + * @param r 在q_via处的交融半径 + * @param d 采样距离 + * @return q_via处的交融段笛卡尔空间离散轨迹点(x,y,z)集合 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * pathBlend3Points(self: pyaubo_sdk.RobotAlgorithm, arg0: int, arg1: + * List[float], arg2: List[float], arg3: List[float], arg4: float, arg5: + * float) -> List[List[float]] + * + * @par Lua函数原型 + * pathBlend3Points(type: number, q_start: table, q_via: table, q_to: table, + * r: number, d: number) -> table, number + * + * @par Lua示例 + * q_via , num = pathBlend3Points(1,{0.58815,0.0532,0.62391,2.46,0.479,1.619},{0.0,-0.2618,1.7453,0.4364,1.5711,0.0}, + * {0.3234,-0.5405,1.5403,0.5881,1.2962,0.7435},0.25,0.02) + * + * \endchinese + * \english + * Solve the blended trajectory points + * + * @param type + * 0-movej and movej + * 1-movej and movel + * 2-movel and movej + * 3-movel and movel + * @param q_start Start point before blending + * @param q_via Blending point + * @param q_to End point after blending + * @param r Blend radius at q_via + * @param d Sampling distance + * @return Discrete trajectory points (x, y, z) of the blend segment at q_via in Cartesian space + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * pathBlend3Points(self: pyaubo_sdk.RobotAlgorithm, arg0: int, arg1: + * List[float], arg2: List[float], arg3: List[float], arg4: float, arg5: + * float) -> List[List[float]] + * + * @par Lua function prototype + * pathBlend3Points(type: number, q_start: table, q_via: table, q_to: table, + * r: number, d: number) -> table, number + * + * @par Lua example + * q_via , num = pathBlend3Points(1,{0.58815,0.0532,0.62391,2.46,0.479,1.619},{0.0,-0.2618,1.7453,0.4364,1.5711,0.0}, + * {0.3234,-0.5405,1.5403,0.5881,1.2962,0.7435},0.25,0.02) + * + * \endenglish + */ + std::vector> pathBlend3Points( + int type, const std::vector &q_start, + const std::vector &q_via, const std::vector &q_to, + double r, double d); + + /** + * \chinese + * 计算交融段轨迹点及笛卡尔速度预览结果。 + * + * @param type + * 0-movej和movej + * 1-movej和movel + * 2-movel和movej + * 3-movel和movel + * @param q_start 交融前路径的起点 + * @param q_via 交融点 + * @param q_to 交融后路径的终点 + * @param r 在q_via处的交融半径 + * @param d 采样距离 + * @return 交融段笛卡尔位姿和速度预览结果集合,每行格式为 + * [x,y,z,rx,ry,rz,vx,vy,vz,wx,wy,wz] + * + * \endchinese + * \english + * Solve blended trajectory points with Cartesian velocity preview. + * + * @param type + * 0-movej and movej + * 1-movej and movel + * 2-movel and movej + * 3-movel and movel + * @param q_start Start point before blending + * @param q_via Blending point + * @param q_to End point after blending + * @param r Blend radius at q_via + * @param d Sampling distance + * @return Cartesian pose and velocity preview points of the blend segment. + * Each row is [x,y,z,rx,ry,rz,vx,vy,vz,wx,wy,wz]. + * + * \endenglish + */ + std::vector> pathBlend3Points1( + int type, const std::vector &q_start, + const std::vector &q_via, const std::vector &q_to, + double r, double d); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 生成用于负载辨识的激励轨迹 + * 此接口内部调用pathBufferAppend + * 将离线轨迹存入buffer中,后续可通过movePathBuffer运行离线轨迹 + * @param name 轨迹名字 + * @param traj_conf 各关节轨迹的限制条件 + * traj_conf.move_axis: 运动的轴 + * 由于实际用户现场可能不希望在负载辨识时控制机械臂多关节大幅度运动,故最好选用traj_conf.move_axis=LoadIdentifyMoveAxis::Joint_4_6; + * traj_conf.init_joint: + * 运动初始关节角,为了避免关节5接近零位时的奇异问题,应设置traj_conf.init_joint[4]的绝对值不小于0.3(rad),接近1.57(rad)为宜。其余关节的关节角可任意设置 + * traj_conf.lower_joint_bound, traj_conf.upper_joint_bound: + * 关节角上下限,维度应与config.move_axis维度保持一致,推荐设置upper_joint_bound为2,lower_joint_bound为-2 + * config.max_velocity, config.max_acceleration: + * 关节角速度角加速度限制,维度应与config.move_axis维度保持一致,出于安全和驱动器跟随性能的考虑,推荐设置max_velocity=3,max_acceleration=5 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Generate excitation trajectory for payload identification + * This interface internally calls pathBufferAppend + * The offline trajectory is stored in the buffer, and can be executed later via movePathBuffer + * @param name Trajectory name + * @param traj_conf Joint trajectory constraints + * traj_conf.move_axis: Moving axes + * Since users may not want large multi-joint movements during payload identification, it is recommended to use traj_conf.move_axis=LoadIdentifyMoveAxis::Joint_4_6; + * traj_conf.init_joint: + * Initial joint angles. To avoid singularity issues near joint 5 zero position, set abs(traj_conf.init_joint[4]) >= 0.3(rad), preferably close to 1.57(rad). Other joints can be set arbitrarily. + * traj_conf.lower_joint_bound, traj_conf.upper_joint_bound: + * Joint angle limits, dimensions should match config.move_axis. Recommended: upper_joint_bound=2, lower_joint_bound=-2 + * config.max_velocity, config.max_acceleration: + * Joint velocity and acceleration limits, dimensions should match config.move_axis. For safety and driver performance, recommended: max_velocity=3, max_acceleration=5 + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int generatePayloadIdentifyTraj(const std::string &name, + const TrajConfig &traj_conf); + /** + * @ingroup RobotAlgorithm + * \chinese + * 负载辨识轨迹是否生成完成 + * + * @return 完成返回0; 正在进行中返回1; 计算失败返回<0; + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.payloadIdentifyTrajGenFinished","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Whether payload identification trajectory generation is finished + * + * @return 0 if finished; 1 if in progress; <0 if failed; + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.payloadIdentifyTrajGenFinished","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int payloadIdentifyTrajGenFinished(); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 求解 moveS 的轨迹点 + * + * @brief pathMoveS + * @param qs 样条轨迹生成点集合 + * @param d 采样距离 + * @return + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Solve the trajectory points for moveS + * + * @brief pathMoveS + * @param qs Spline trajectory generation point set + * @param d Sampling distance + * @return + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + std::vector> pathMoveS( + const std::vector> &qs, double d); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 振动抑制参数辨识算法接口 + * + * @param q 当前关节角度 + * @param qd 当前关节速度 + * @param target_q 目标关节角度 + * @param target_qd 关节速度 + * @param target_qdd 关节加速度 + * @param tool_offset 工具TCP信息 + * @param omega 振动频率 + * @param zeta 振动阻尼比 + * @return 振动抑制参数和是否辨识成功 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * calibVibrationParams(self: pyaubo_sdk.RobotAlgorithm, arg0: + * List[List[float]], arg1: List[List[float]], arg2: List[List[float]], arg3: List[List[float]], + * arg4: List[List[float]], arg5: List[float]) -> list[list[float]],int + * + * @par Lua函数原型 + * calibVibrationParams(q: table,qd: table, target_q: table, target_qd: table, + * target_qdd: table, tool_offset: table, omega: table, zeta: table) -> table,number + * \endchinese + */ + ResultWithErrno1 calibVibrationParams(const std::vector> &q, + const std::vector> &qd, + const std::vector> &target_q, + const std::vector> &target_qd, + const std::vector> &target_qdd, + const std::vector &tool_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 振动抑制参数辨识算法接口1 + * + * @param record_cache_name 目标缓存名称 + * @param tool_offset 工具TCP信息 + * @return 振动抑制参数和是否辨识成功 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * calibVibrationParams(self: pyaubo_sdk.RobotAlgorithm, arg0: + * string, arg1: List[float]) -> list[list[float]],int + * + * @par Lua函数原型 + * calibVibrationParams(record_cache_name: string, tool_offset: table) -> table,number + * \endchinese + */ + ResultWithErrno1 calibVibrationParams1(const std::string &record_cache_name, const std::vector &tool_offset); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 判断是否需要重新辨识振动参数 + * + * @param param1 参考参数(如上一次辨识结果) + * @param param2 当前参数(如新测量结果) + * @param threshold 变化阈值(0~1),超过则需重新辨识 + * @return >0 需要重新辨识,=0 不需要,<0 出错 + * + * @par Lua函数原型 + * needVibrationRecalib(param1: table, param2: table, threshold: number) -> number + * + * @par JSON-RPC示例 + * {"jsonrpc":"2.0","method":"VibrationController.needVibrationRecalib", + * "params":[param1_obj, param2_obj, 0.1],"id":1} + * \endchinese + */ + int needVibrationRecalib(const VibrationRecalibrationParameter ¶m1, + const VibrationRecalibrationParameter ¶m2, + double threshold); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 添加立方体碰撞对象 + * + * 该接口用于向当前机器人算法场景中添加一个命名的立方体碰撞对象组。 + * + * @param name 碰撞对象唯一标识 + * @param link_name 碰撞对象挂载的参考 link 名称。常用名称包括: + * `world`、`base_link`、`shoulder_Link`、`upperArm_Link`、 + * `foreArm_Link`、`wrist1_Link`、`wrist2_Link`、`wrist3_Link`、 + * `end_effector` + * @param sizes 立方体尺寸列表。每个元素格式为 + * `[length, width, height]`,单位:m + * @param poses 碰撞对象位姿列表。每个元素表示相对参考 link 的位姿, + * 格式为 `[x, y, z, rx, ry, rz]` + * @return 0 表示成功,非 0 表示失败 + * + * @par Lua函数原型 + * addCollisionBox(name, link_name, sizes, poses) -> integer + * + * @par Lua示例 + * -- 添加挂载到 world 的环境碰撞体 + * addCollisionBox("env_box", "world", + * {{0.4, 0.4, 0.2}}, + * {{0.6, 0.0, 0.1, 0.0, 0.0, 0.0}}) + * + * -- 添加挂载到 end_effector 的末端碰撞体 + * addCollisionBox("tool_box", "end_effector", + * {{0.1, 0.08, 0.06}}, + * {{0.0, 0.0, 0.05, 0.0, 0.0, 0.0}}) + * + * @par Python函数原型 + * addCollisionBox(name: str, link_name: str, sizes: list[list[float]], + * poses: list[list[float]]) -> int + * + * @par Python示例 + * # 添加挂载到 world 的环境碰撞体 + * robot_algorithm.addCollisionBox( + * "env_box", "world", + * [[0.4, 0.4, 0.2]], + * [[0.6, 0.0, 0.1, 0.0, 0.0, 0.0]] + * ) + * + * # 添加挂载到 end_effector 的末端碰撞体 + * robot_algorithm.addCollisionBox( + * "tool_box", "end_effector", + * [[0.1, 0.08, 0.06]], + * [[0.0, 0.0, 0.05, 0.0, 0.0, 0.0]] + * ) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.addCollisionBox", + * "params":["env_box","world",[[0.4,0.4,0.2]], + * [[0.6,0.0,0.1,0.0,0.0,0.0]]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Add a box collision object + * + * This interface adds a named group of box collision objects into the + * current robot algorithm scene. + * + * @param name Unique identifier of the collision object + * @param link_name Name of the reference link the collision object is + * attached to. Common names include: `world`, `base_link`, + * `shoulder_Link`, `upperArm_Link`, `foreArm_Link`, `wrist1_Link`, + * `wrist2_Link`, `wrist3_Link`, and `end_effector` + * @param sizes List of box sizes. Each element is in the format + * `[length, width, height]`, unit: m + * @param poses List of collision object poses. Each element is a pose + * relative to the reference link in the format `[x, y, z, rx, ry, rz]` + * @return 0 on success, non-zero on failure + * + * @par Lua function prototype + * addCollisionBox(name, link_name, sizes, poses) -> integer + * + * @par Lua example + * -- Add an environment collision box attached to world + * addCollisionBox("env_box", "world", + * {{0.4, 0.4, 0.2}}, + * {{0.6, 0.0, 0.1, 0.0, 0.0, 0.0}}) + * + * -- Add a tool collision box attached to end_effector + * addCollisionBox("tool_box", "end_effector", + * {{0.1, 0.08, 0.06}}, + * {{0.0, 0.0, 0.05, 0.0, 0.0, 0.0}}) + * + * @par Python function prototype + * addCollisionBox(name: str, link_name: str, sizes: list[list[float]], + * poses: list[list[float]]) -> int + * + * @par Python example + * # Add an environment collision box attached to world + * robot_algorithm.addCollisionBox( + * "env_box", "world", + * [[0.4, 0.4, 0.2]], + * [[0.6, 0.0, 0.1, 0.0, 0.0, 0.0]] + * ) + * + * # Add a tool collision box attached to end_effector + * robot_algorithm.addCollisionBox( + * "tool_box", "end_effector", + * [[0.1, 0.08, 0.06]], + * [[0.0, 0.0, 0.05, 0.0, 0.0, 0.0]] + * ) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.addCollisionBox", + * "params":["env_box","world",[[0.4,0.4,0.2]], + * [[0.6,0.0,0.1,0.0,0.0,0.0]]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int addCollisionBox(const std::string &name, + const std::string &link_name, + const std::vector> &sizes, + const std::vector> &poses); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 删除指定的碰撞对象 + * + * @param name 需要删除的碰撞对象名称 + * @return 0 表示成功,非 0 表示失败 + * + * @par Lua函数原型 + * removeCollisionObject(name) -> integer + * + * @par Lua示例 + * removeCollisionObject("tool_box") + * + * @par Python函数原型 + * removeCollisionObject(name: str) -> int + * + * @par Python示例 + * robot_algorithm.removeCollisionObject("tool_box") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.removeCollisionObject", + * "params":["tool_box"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Remove a collision object by name + * + * @param name Name of the collision object to remove + * @return 0 on success, non-zero on failure + * + * @par Lua function prototype + * removeCollisionObject(name) -> integer + * + * @par Lua example + * removeCollisionObject("tool_box") + * + * @par Python function prototype + * removeCollisionObject(name: str) -> int + * + * @par Python example + * robot_algorithm.removeCollisionObject("tool_box") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.removeCollisionObject", + * "params":["tool_box"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int removeCollisionObject(const std::string &name); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 验证机器人运动路径从起点到终点的可达性,不启用外部碰撞检测。 + * + * 该接口保留用于兼容旧版 SDK、Lua、JSON-RPC 和 ROS 服务调用。 + * + * @param type 路径类型标识,用于指定起点和终点的数据类型: + * 0 - 起点:关节角,终点:关节角 + * 1 - 起点:位姿,终点:位姿 + * @param start 路径起点数据 + * @param r1 起点交融半径,单位:m(米) + * @param end 路径终点数据 + * @param r2 终点交融半径,单位:m(米) + * @param d 路径采样间隔,单位:m(米),间隔越小验证精度越高,但耗时越长 + * @return 路径可达性结果码 + * + * \endchinese + * + * \english + * Validate the reachability of the robot's motion path from start point to + * end point without external collision checks. + * + * This interface is kept for compatibility with existing SDK, Lua, + * JSON-RPC, and ROS service calls. + * + * @param type Path type identifier, used to specify the data types of + * start and end: + * 0 - Start: Joint angles, End: Joint angles + * 1 - Start: Pose, End: Pose + * @param start Start point data of the path + * @param r1 Start point blending radius, unit: m (meters) + * @param end End point data of the path + * @param r2 End point blending radius, unit: m (meters) + * @param d Path sampling interval, unit: m (meters). A smaller interval + * improves validation accuracy but takes more time. + * @return Path reachability result code + * + * \endenglish + */ + int validatePath(int type, const std::vector &start, double r1, + const std::vector &end, double r2, double d); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 验证机器人运动路径从起点到终点的可达性,可选择是否启用外部碰撞检测。 + * + * 该接口通过采样的方式验证指定路径是否存在超限、自碰撞、外部碰撞、 + * 奇异等不可达情况,支持关节角<->关节角、位姿<->位姿两种路径类型验证。 + * + * @param type 路径类型标识,用于指定起点和终点的数据类型: + * 0 - 起点:关节角,终点:关节角 + * 1 - 起点:位姿,终点:位姿 + * @param start 路径起点数据 + * @param r1 起点交融半径,单位:m(米) + * @param end 路径终点数据 + * @param r2 终点交融半径,单位:m(米) + * @param d 路径采样间隔,单位:m(米),间隔越小验证精度越高,但耗时越长 + * @param check_external_collision 是否启用外部碰撞检测: + * false - 保持原有路径可达性与自碰撞校验 + * true - 在原有校验基础上增加与外部对象的碰撞检测 + * @return 路径可达性结果码: + * 0 - 可达:路径无异常,可正常运动 + * -18 - 路径中存在关节超限/笛卡尔空间超限 + * -21 - 轨迹生成失败 + * -22 - 路径中机器人本体发生自碰撞 + * -24 - 路径中经过机器人奇异位形 + * -27 - 目标点有解但超出关节限位 + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * validatePath1(type, start, r1, end, r2, d, check_external_collision) -> number + * + * @par Lua示例 + * local result = + * validatePath1(0, start_joint, 0.01, end_joint, 0.01, 0.05, true) + * + * @par Python函数原型 + * validatePath1(type: int, start: list[float], r1: float, end: list[float], + * r2: float, d: float, check_external_collision: bool) -> int + * + * @par Python示例 + * result = validatePath1(1, start_joint, 0.01, end_pose, 0.01, 0.05, True) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.validatePath1","params":[0, + * [0.0,0.0,1.57,0.0,1.57,0.0], 0.01, [0.52,0.0,1.57,0.0,1.57,0.0], 0.01, + * 0.05, true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * + * \english + * Validate the reachability of the robot's motion path from start point to + * end point, with optional external collision checks. + * + * This interface verifies whether the specified path has unreachable + * conditions such as out-of-limit, self-collision, collision with external + * objects, singularity, etc., by sampling. It supports two path type + * validations: Joint-Joint and Pose-Pose. + * + * @param type Path type identifier, used to specify the data types of + * start and end: + * 0 - Start: Joint angles, End: Joint angles + * 1 - Start: Pose, End: Pose + * @param start Start point data of the path + * @param r1 Start point blending radius, unit: m (meters) + * @param end End point data of the path + * @param r2 End point blending radius, unit: m (meters) + * @param d Path sampling interval, unit: m (meters). A smaller interval + * improves validation accuracy but takes more time. + * @param check_external_collision Whether to enable external collision + * checks: + * false - Keep the original reachability and self-collision checks + * true - Add collision checks against external objects + * + * @return Path reachability result code: + * 0 - Reachable: Path is normal, movement is possible + * -18 - Joint/Cartesian space limits exceeded in the path + * -21 - Trajectory generation failed + * -22 - Self-collision of the robot body in the path + * -24 - Path passing through robot singular configuration + * -27 - The target point has a solution but exceeds joint limits + * + * @throws arcs::common_interface::AuboException Thrown when parameters are + * invalid. + * + * @par Lua function prototype + * validatePath1(type, start, r1, end, r2, d, check_external_collision) -> integer + * + * @par Lua example + * result = validatePath1(0, start_joint, 0.01, end_joint, 0.01, 0.05, true) + * + * @par Python function prototype + * validatePath1(type: int, start: list[float], r1: float, end: list[float], + * r2: float, d: float, check_external_collision: bool) -> int + * + * @par Python example + * result = validatePath1(1, start_joint, 0.01, end_pose, 0.01, 0.005, True) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotAlgorithm.validatePath1","params":[0, + * [0.0,0.0,1.57,0.0,1.57,0.0], 0.01, [0.52,0.0,1.57,0.0,1.57,0.0], 0.01, + * 0.005, true],"id":1} + * + * @par JSON-RPC response example {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int validatePath1(int type, const std::vector &start, double r1, + const std::vector &end, double r2, double d, + bool check_external_collision); + + /** + * @ingroup RobotAlgorithm + * \chinese + * 标定远端特征坐标系的位置和姿态在基坐标系的描述 + * + * 通过三点法标定远端特征坐标系的位置和姿态,并返回该远端坐标系在基坐标系下的描述。 + * 三个标定点的含义由姿态标定方法 type 决定。 + * + * 标定类型 type 说明: + * 0 - oxy 原点 -> X轴正方向 -> XY平面(Y轴正方向) + * 1 - oxz 原点 -> X轴正方向 -> XZ平面(Z轴正方向) + * 2 - oyz 原点 -> Y轴正方向 -> YZ平面(Z轴正方向) + * 3 - oyx 原点 -> Y轴正方向 -> YX平面(X轴正方向) + * 4 - ozx 原点 -> Z轴正方向 -> ZX平面(X轴正方向) + * 5 - ozy 原点 -> Z轴正方向 -> ZY平面(Y轴正方向) + * + * 以标定类型 type = 0(O_X_XY / oxy)为例说明三点含义: + * 1) 运动到远端特征坐标系原点,记录末端在基坐标系下的位姿 → pose[0] + * 2) 沿远端坐标系 X 轴正方向移动一段距离,记录末端位姿 → pose[1] + * 3) 在远端坐标系 XY 平面内移动一段距离(确定Y轴方向),记录末端位姿 → pose[2] + * + * @param pose 输入:三个标定点处,末端坐标系在基坐标系下的位姿集合 + * 每个位姿格式:[x, y, z, rx, ry, rz] + * @param type 输入:姿态标定类型(0~5),决定三点的几何含义 + * @return 计算结果:包含远端特征坐标系在基坐标系下的位姿 + 错误码 + * 错误码 < 0 表示标定失败;>= 0 表示标定成功 + * + * @par Lua 函数原型 + * calibRemoteFeatureFrame(pose: table, type: number) -> table, number + * + * @par Lua 示例 + * local p1 = {0.55462, 0.06219, 0.37175, -3.142, 0.0, 1.580} + * local p2 = {0.63746, 0.11805, 0.37175, -3.142, 0.0, 1.580} + * local p3 = {0.40441, 0.28489, 0.37174, -3.142, 0.0, 1.580} + * local points = {p1, p2, p3} + * local type = 0 + * local remote_pose, ret = calibRemoteFeatureFrame(points, type) + * + * \endchinese + * + * \english + * Calibrate the pose of the remote feature frame in the base frame + * + * Calibrate the position and orientation of a remote feature frame using three points, + * and return the pose of the remote feature frame represented in the base frame. + * The definition of the three calibration points is determined by the calibration type. + * + * Calibration Type (type): + * 0 - oxy Origin -> Positive X -> XY plane (Positive Y) + * 1 - oxz Origin -> Positive X -> XZ plane (Positive Z) + * 2 - oyz Origin -> Positive Y -> YZ plane (Positive Z) + * 3 - oyx Origin -> Positive Y -> YX plane (Positive X) + * 4 - ozx Origin -> Positive Z -> ZX plane (Positive X) + * 5 - ozy Origin -> Positive Z -> ZY plane (Positive Y) + * + * Take type = 0 (O_X_XY / oxy) as an example: + * 1) Move to the origin of the remote feature frame, record end-effector pose → pose[0] + * 2) Move along positive X of the remote frame, record end-effector pose → pose[1] + * 3) Move within XY plane of the remote frame, record end-effector pose → pose[2] + * + * @param pose Input: Three poses of the end-effector frame in the base frame + * Each pose format: [x, y, z, rx, ry, rz] + * @param type Input: Calibration type (0~5), defines the geometry of the three points + * @return Result: Contains the remote feature frame pose in base frame + error code + * Error code < 0: calibration failed; >= 0: calibration succeeded + * + * @par Lua prototype + * calibRemoteFeatureFrame(pose: table, type: number) -> table, number + * + * @par Lua example + * local p1 = {0.55462, 0.06219, 0.37175, -3.142, 0.0, 1.580} + * local p2 = {0.63746, 0.11805, 0.37175, -3.142, 0.0, 1.580} + * local p3 = {0.40441, 0.28489, 0.37174, -3.142, 0.0, 1.580} + * local points = {p1, p2, p3} + * local type = 0 + * local remote_pose, ret = calibRemoteFeatureFrame(points, type) + * + * \endenglish + */ + ResultWithErrno calibRemoteFeatureFrame(const std::vector>& pose, int type); + + /** + * @ingroup RobotAlgorithm + * \chinese + * @brief 标定末端特征坐标系相对于法兰坐标系的姿态 + * + * 通过三点法标定末端特征坐标系的姿态,求解其在**法兰坐标系**下的旋转矩阵。 + * 标定过程中需保持**末端特征坐标系姿态固定不变**,仅改变位置。 + * 三个标定点的几何含义由 type 标定类型决定。 + * + * 标定类型 type 说明: + * 0 - oxy 原点 -> X轴正方向 -> XY平面(Y轴正方向) + * 1 - oxz 原点 -> X轴正方向 -> XZ平面(Z轴正方向) + * 2 - oyz 原点 -> Y轴正方向 -> YZ平面(Z轴正方向) + * 3 - oyx 原点 -> Y轴正方向 -> YX平面(X轴正方向) + * 4 - ozx 原点 -> Z轴正方向 -> ZX平面(X轴正方向) + * 5 - ozy 原点 -> Z轴正方向 -> ZY平面(Y轴正方向) + * + * 以标定类型 type = 0(O_X_XY / oxy)为例说明操作步骤: + * 1) 移动到末端特征坐标系原点,保持姿态固定,记录法兰在基坐标系下位姿 → pose[0] + * 2) 保持姿态固定,沿末端特征坐标系 X 轴正方向移动,记录法兰位姿 → pose[1] + * 3) 保持姿态固定,沿末端特征坐标系 XY 平面移动,记录法兰位姿 → pose[2] + * + * @param pose 输入:3个位姿,每个位姿是法兰在基坐标系下的描述 [x,y,z,rx,ry,rz] + * @param type 输入:姿态标定类型(0~5),定义三点几何关系 + * @return ResultWithErrno 包含: + * - 标定结果:末端特征坐标系在法兰坐标系下的姿态旋转矩阵 + * - 错误码:<0 标定失败,>=0 标定成功 + * + * @par Lua 函数原型 + * calibEndFeatureOriInFlange(pose: table, type: number) -> table, number + * + * \endchinese + * + * \english + * @brief Calibrate the orientation of the end feature frame relative to the flange frame + * + * Calibrate the orientation of the end feature frame using three points, + * and compute its rotation matrix with respect to the **flange frame**. + * The orientation of the end feature frame must remain **fixed** during calibration. + * + * Calibration Type (type): + * 0 - oxy Origin -> Positive X -> XY plane (Positive Y) + * 1 - oxz Origin -> Positive X -> XZ plane (Positive Z) + * 2 - oyz Origin -> Positive Y -> YZ plane (Positive Z) + * 3 - oyx Origin -> Positive Y -> YX plane (Positive X) + * 4 - ozx Origin -> Positive Z -> ZX plane (Positive X) + * 5 - ozy Origin -> Positive Z -> ZY plane (Positive Y) + * + * Example for type = 0 (O_X_XY / oxy): + * 1) Move to origin of end feature frame, record flange pose in base → pose[0] + * 2) Keep orientation fixed, move along +X of end feature frame, record flange pose → pose[1] + * 3) Keep orientation fixed, move in XY plane, record flange pose → pose[2] + * + * @param pose Input: 3 poses of flange frame in base frame [x,y,z,rx,ry,rz] + * @param type Input: Calibration type (0~5) + * @return ResultWithErrno Includes: + * - Calibrated orientation of end feature frame w.r.t. flange frame + * - Error code: <0 fail, >=0 success + * \endenglish + */ + ResultWithErrno calibEndFeatureOriInFlange(const std::vector>& pose, int type); + + + /** + * @ingroup RobotAlgorithm + * \chinese + * @brief 四点/多点法标定机器人末端特征坐标系原点在法兰坐标系下的位置 + * + * 标定原理: + * 保持末端特征坐标系原点在空间中固定不动,控制机器人以4种及以上不同姿态触碰该固定点, + * 记录每个姿态下法兰在基坐标系中的位姿,通过球面拟合计算得到特征原点在法兰坐标系下的位置。 + * + * 输入位姿格式:[x, y, z, rx, ry, rz] + * 输入点数要求:>= 4 + * + * @param pose 输入:多组法兰在基坐标系下的位姿 + * @return ResultWithErrno 标定结果与错误码 + * 第一个返回值:std::vector,长度固定为4 + * [0] = x 末端特征原点在法兰坐标系下X坐标 + * [1] = y 末端特征原点在法兰坐标系下Y坐标 + * [2] = z 末端特征原点在法兰坐标系下Z坐标 + * [3] = 标定拟合误差 + * 第二个返回值:int 错误码,<0 标定失败,>=0 标定成功 + * + * @par Lua 函数原型 + * calibEndFeaturePosInFlange(pose: table) -> result_table, number + * + * @par Lua 示例 + * local p1 = {0.5546, 0.0621, 0.3717, -3.142, 0.0, 1.580} + * local p2 = {0.6374, 0.1180, 0.3717, -3.142, 0.0, 1.580} + * local p3 = {0.4044, 0.2848, 0.3717, -3.142, 0.0, 1.580} + * local p4 = {0.4800, 0.1900, 0.3717, -3.142, 0.0, 1.580} + * local points = {p1, p2, p3, p4} + * local res, err = calibEndFeaturePosInFlange(points) + * -- res[1]=x, res[2]=y, res[3]=z, res[4]=error + * + * @par Python 函数原型 + * calibEndFeaturePosInFlange(pose: list[list[float]]) -> tuple[list[float], int] + * + * @par Python 示例 + * p1 = [0.5546, 0.0621, 0.3717, -3.142, 0.0, 1.580] + * p2 = [0.6374, 0.1180, 0.3717, -3.142, 0.0, 1.580] + * p3 = [0.4044, 0.2848, 0.3717, -3.142, 0.0, 1.580] + * p4 = [0.4800, 0.1900, 0.3717, -3.142, 0.0, 1.580] + * points = [p1, p2, p3, p4] + * res, err = calibEndFeaturePosInFlange(points) + * # res[0]=x, res[1]=y, res[2]=z, res[3]=error + * + * \endchinese + * + * \english + * @brief Calibrate end feature frame origin position in flange frame (4-point / multi-point) + * + * Calibrate TCP position by fixing the end feature point and recording >=4 flange poses + * in base frame with different robot orientations. + * + * Input pose format: [x, y, z, rx, ry, rz] + * Input size: >=4 poses + * + * @param pose Input: flange poses in base frame + * @return ResultWithErrno Result and error code + * First: vector size=4 + * [0]=x, [1]=y, [2]=z: feature origin in flange frame + * [3]: calibration error + * Second: int error code, <0 fail, >=0 success + * + * @par Lua prototype + * calibEndFeaturePosInFlange(pose: table) -> result_table, number + * + * @par Python prototype + * calibEndFeaturePosInFlange(pose: list[list[float]]) -> tuple[list[float], int] + * + * \endenglish + */ + ResultWithErrno calibEndFeaturePosInFlange(const std::vector>& pose); + + + /** + * @ingroup RobotAlgorithm + * \chinese + * @brief 合并稠密路径点 / 剔除过短路径段,对输入路径点进行稀疏化处理 + * + * 处理原理: + * 根据指定的最小段长阈值,遍历输入路径点序列,剔除两点之间距离小于最小段长的稠密点, + * 保留关键路径点,生成更平滑、点数更少的优化后路径,支持不同类型的路径点合并规则。 + * + * 输入点格式:通用路径点格式 [x, y, z, rx, ry, rz, ...] + * + * @param type 输入:合并算法类型 / 模式选择 + * @param points 输入:原始稠密路径点序列 + * @param min_segment_length 输入:最小路径段长度阈值,小于该值的段会被合并/剔除 + * @return ResultWithErrno1 处理结果与错误码 + * 第一个返回值:std::vector>,处理后的稀疏路径点 + * 第二个返回值:int 错误码,<0 处理失败,>=0 处理成功 + * + * @par Lua 函数原型 + * mergeDenseWaypoints(type: number, points: table, min_segment_length: number) -> result_table, number + * + * @par Lua 示例 + * local type = 0 + * local min_len = 0.01 + * local wp1 = {0.1, 0.2, 0.3, -3.142, 0.0, 0.0} + * local wp2 = {0.1005, 0.2003, 0.3002, -3.142, 0.0, 0.0} + * local wp3 = {0.12, 0.22, 0.32, -3.142, 0.0, 0.0} + * local input_wps = {wp1, wp2, wp3} + * local res, err = mergeDenseWaypoints(type, input_wps, min_len) + * -- res 为剔除稠密点后的路径点表 + * + * @par Python 函数原型 + * mergeDenseWaypoints(type: int, points: list[list[float]], min_segment_length: float) -> tuple[list[list[float]], int] + * + * @par Python 示例 + * type = 0 + * min_len = 0.01 + * wp1 = [0.1, 0.2, 0.3, -3.142, 0.0, 0.0] + * wp2 = [0.1005, 0.2003, 0.3002, -3.142, 0.0, 0.0] + * wp3 = [0.12, 0.22, 0.32, -3.142, 0.0, 0.0] + * input_wps = [wp1, wp2, wp3] + * res, err = mergeDenseWaypoints(type, input_wps, min_len) + * # res 为处理后的稀疏路径点列表 + * + * \endchinese + * + * \english + * @brief Merge dense waypoints / remove short segments, sparsify input path points + * + * Processing principle: + * Iterate the input waypoint sequence based on the specified minimum segment length threshold, + * remove dense points with distance less than the threshold, keep key waypoints, + * generate optimized path with fewer points and smoother trajectory, support different merge modes. + * + * Input point format: general path point [x, y, z, rx, ry, rz, ...] + * + * @param type Input: merge algorithm type / mode selection + * @param points Input: original dense waypoint sequence + * @param min_segment_length Input: minimum segment length threshold, segments shorter than this will be merged/removed + * @return ResultWithErrno1 Processing result and error code + * First: vector>, sparsified waypoints after processing + * Second: int error code, <0 fail, >=0 success + * + * @par Lua prototype + * mergeDenseWaypoints(type: number, points: table, min_segment_length: number) -> result_table, number + * + * @par Python prototype + * mergeDenseWaypoints(type: int, points: list[list[float]], min_segment_length: float) -> tuple[list[list[float]], int] + * + * \endenglish + */ + ResultWithErrno1 mergeDenseWaypoints(int type, const std::vector> &points, double min_segment_length); + +protected: + void *d_; +}; +using RobotAlgorithmPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_ROBOT_ALGORITHM_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_config.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_config.h new file mode 100644 index 00000000..bddd804a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_config.h @@ -0,0 +1,3837 @@ +/** @file robot_config.h + * @brief 获取机器人配置接口,如获取DH参数、碰撞等级、安装位姿等等 + */ +#ifndef AUBO_SDK_ROBOT_CONFIG_H +#define AUBO_SDK_ROBOT_CONFIG_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RobotConfig RobotConfig (机器人配置管理) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup RobotConfig Robot Configuration Management + * @ingroup RobotInterface + * \endenglish + * RobotConfig + */ +class ARCS_ABI_EXPORT RobotConfig +{ +public: + RobotConfig(); + virtual ~RobotConfig(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人的名字 + * + * @return 返回机器人的名字 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getName(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua函数原型 + * getName() -> string + * + * @par Lua示例 + * robot_name = getName() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getName","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"rob1"} + * \endchinese + * \english + * Get the robot's name. + * + * @return The robot's name. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getName(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua function prototype + * getName() -> string + * + * @par Lua example + * robot_name = getName() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getName","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"rob1"} + * \endenglish + */ + std::string getName(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人的自由度(从硬件抽象层读取) + * + * @return 返回机器人的自由度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDof(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua函数原型 + * getDof() -> number + * + * @par Lua示例 + * robot_dof = getDof() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDof","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6} + * \endchinese + * \english + * Get the robot's degrees of freedom (from the hardware abstraction layer). + * + * @return The robot's degrees of freedom. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDof(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua function prototype + * getDof() -> number + * + * @par Lua example + * robot_dof = getDof() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDof","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6} + * \endenglish + */ + int getDof(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人的伺服控制周期(从硬件抽象层读取) + * + * @return 机器人的伺服控制周期 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getCycletime(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua函数原型 + * getCycletime() -> number + * + * @par Lua示例 + * robot_Cycletime = getCycletime() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCycletime","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.005} + * \endchinese + * \english + * Get the robot's servo control cycle time (from the hardware abstraction + * layer). + * + * @return The robot's servo control cycle time. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getCycletime(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua function prototype + * getCycletime() -> number + * + * @par Lua example + * robot_Cycletime = getCycletime() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCycletime","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.005} + * \endenglish + */ + double getCycletime(); + + /** + * @ingroup RobotConfig + * \chinese + * 预设缓速模式下的速度缩减比例 + * + * @param level 缓速等级 1, 2 + * @param fraction + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setSlowDownFraction","params":[1,0.8],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the speed reduction ratio for the preset slow-down mode. + * + * @param level Slow-down level 1, 2 + * @param fraction + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setSlowDownFraction","params":[1,0.8],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setSlowDownFraction(int level, double fraction); + + /** + * @ingroup RobotConfig + * \chinese + * 获取预设的缓速模式下的速度缩减比例 + * + * @param level 缓速等级 1, 2 + * @return 返回预设的缓速模式下的速度缩减比例 + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSlowDownFraction","params":[1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.5} + * \endchinese + * \english + * Get the speed reduction ratio for the preset slow-down mode. + * + * @param level Slow-down level 1, 2 + * @return The speed reduction ratio for the preset slow-down mode. + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSlowDownFraction","params":[1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.5} + * \endenglish + */ + double getSlowDownFraction(int level); + + /** + * @ingroup RobotConfig + * \chinese + * 获取默认的工具端加速度,单位m/s^2 + * + * @return 默认的工具端加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDefaultToolAcc(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua函数原型 + * getDefaultToolAcc() -> number + * + * @par Lua示例 + * DefaultToolAcc = getDefaultToolAcc() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultToolAcc","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Get the default tool acceleration, in m/s^2. + * + * @return The default tool acceleration. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDefaultToolAcc(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua function prototype + * getDefaultToolAcc() -> number + * + * @par Lua example + * DefaultToolAcc = getDefaultToolAcc() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultToolAcc","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + double getDefaultToolAcc(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取默认的工具端速度,单位m/s + * + * @return 默认的工具端速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDefaultToolSpeed(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua函数原型 + * getDefaultToolSpeed() -> number + * + * @par Lua示例 + * DefaultToolSpeed = getDefaultToolSpeed() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultToolSpeed","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Get the default tool speed, in m/s. + * + * @return The default tool speed. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDefaultToolSpeed(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua function prototype + * getDefaultToolSpeed() -> number + * + * @par Lua example + * DefaultToolSpeed = getDefaultToolSpeed() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultToolSpeed","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + double getDefaultToolSpeed(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取默认的关节加速度,单位rad/s^2 + * + * @return 默认的关节加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDefaultJointAcc(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua函数原型 + * getDefaultJointAcc() -> number + * + * @par Lua示例 + * DefaultJointAcc = getDefaultJointAcc() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultJointAcc","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Get the default joint acceleration, in rad/s^2. + * + * @return The default joint acceleration. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDefaultJointAcc(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua function prototype + * getDefaultJointAcc() -> number + * + * @par Lua example + * DefaultJointAcc = getDefaultJointAcc() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultJointAcc","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + double getDefaultJointAcc(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取默认的关节速度,单位rad/s + * + * @return 默认的关节速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getDefaultJointSpeed(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua函数原型 + * getDefaultJointSpeed() -> number + * + * @par Lua示例 + * DefaultJointSpeed = getDefaultJointSpeed() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultJointSpeed","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endchinese + * \english + * Get the default joint speed, in rad/s. + * + * @return The default joint speed. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getDefaultJointSpeed(self: pyaubo_sdk.RobotConfig) -> float + * + * @par Lua function prototype + * getDefaultJointSpeed() -> number + * + * @par Lua example + * DefaultJointSpeed = getDefaultJointSpeed() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getDefaultJointSpeed","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.0} + * \endenglish + */ + double getDefaultJointSpeed(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人类型代码 + * + * @return 机器人类型代码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua函数原型 + * getRobotType() -> string + * + * @par Lua示例 + * RobotType = getRobotType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"aubo_i5H"} + * \endchinese + * \english + * Get the robot type code. + * + * @return The robot type code. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua function prototype + * getRobotType() -> string + * + * @par Lua example + * RobotType = getRobotType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"aubo_i5H"} + * \endenglish + */ + std::string getRobotType(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人子类型代码 + * + * @return 机器人子类型代码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotSubType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua函数原型 + * getRobotSubType() -> string + * + * @par Lua示例 + * RobotSubType = getRobotSubType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotSubType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"B0"} + * \endchinese + * \english + * Get the robot sub-type code. + * + * @return The robot sub-type code. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotSubType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua function prototype + * getRobotSubType() -> string + * + * @par Lua example + * RobotSubType = getRobotSubType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotSubType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"B0"} + * \endenglish + */ + std::string getRobotSubType(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取控制柜类型代码 + * + * @return 控制柜类型代码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getControlBoxType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua函数原型 + * getControlBoxType() -> string + * + * @par Lua示例 + * ControlBoxType = getControlBoxType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getControlBoxType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"cb_ISStation"} + * \endchinese + * \english + * Get the control box type code. + * + * @return The control box type code. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getControlBoxType(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua function prototype + * getControlBoxType() -> string + * + * @par Lua example + * ControlBoxType = getControlBoxType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getControlBoxType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"cb_ISStation"} + * \endenglish + */ + std::string getControlBoxType(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置安装位姿(机器人的基坐标系相对于世界坐标系) world->base + * + * 一般在多机器人系统中使用,默认为 [0,0,0,0,0,0] + * + * @param pose 安装位姿 + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setMountingPose(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setMountingPose(pose: table) -> nil + * + * @par Lua示例 + * setMountingPose({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setMountingPose","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the mounting pose (robot base coordinate system relative to world + * coordinate system) world->base + * + * Typically used in multi-robot systems, default is [0,0,0,0,0,0] + * + * @param pose Mounting pose + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setMountingPose(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setMountingPose(pose: table) -> nil + * + * @par Lua example + * setMountingPose({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setMountingPose","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setMountingPose(const std::vector &pose); + + /** + * @ingroup RobotConfig + * \chinese + * 获取安装位姿(机器人的基坐标系相对于世界坐标系) + * + * @return 安装位姿 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMountingPose(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getMountingPose() -> table + * + * @par Lua示例 + * MountingPose = getMountingPose() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getMountingPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the mounting pose (robot base coordinate system relative to world + * coordinate system) + * + * @return Mounting pose + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMountingPose(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getMountingPose() -> table + * + * @par Lua example + * MountingPose = getMountingPose() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getMountingPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getMountingPose(); + + /** + * @ingroup RobotConfig + * \chinese + * 将机器人绑定到一个坐标系,如果这个坐标系是运动的,那机器人也会跟着运动 + * 应用于地轨或者龙门 + * 这个函数调用的时候 frame 和 ROBOTBASE 的相对关系就固定了 + * \endchinese + * \english + * Attach the robot base to a coordinate frame. If this frame moves, the + * robot will move accordingly. Used for applications like ground rails or + * gantries. When this function is called, the relationship between the + * frame and ROBOTBASE is fixed. \endenglish + */ + int attachRobotBaseTo(const std::string &frame); + std::string getRobotBaseParent(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置工件数据,编程点位都是基于工件坐标系 + * \endchinese + * \english + * Set work object data. All programmed points are based on the work object + * coordinate system. \endenglish + */ + + int setWorkObjectData(const WObjectData &wobj); + + /** + * @ingroup RobotConfig + * \chinese + * 设置碰撞灵敏度等级 + * 数值越大越灵敏 + * + * @param level 碰撞灵敏度等级 + * 0: 关闭碰撞检测功能 + * 1~9: 碰撞灵敏等级 + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCollisionLevel(self: pyaubo_sdk.RobotConfig, arg0: int) -> int + * + * @par Lua函数原型 + * setCollisionLevel(level: number) -> nil + * + * @par Lua示例 + * setCollisionLevel(6) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionLevel","params":[6],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the collision sensitivity level. + * The higher the value, the more sensitive. + * + * @param level Collision sensitivity level + * 0: Disable collision detection + * 1~9: Collision sensitivity levels + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setCollisionLevel(self: pyaubo_sdk.RobotConfig, arg0: int) -> int + * + * @par Lua function prototype + * setCollisionLevel(level: number) -> nil + * + * @par Lua example + * setCollisionLevel(6) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionLevel","params":[6],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setCollisionLevel(int level); + + /** + * @ingroup RobotConfig + * \chinese + * 获取碰撞灵敏度等级 + * + * @return 碰撞灵敏度等级 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getCollisionLevel(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua函数原型 + * getCollisionLevel() -> number + * + * @par Lua示例 + * CollisionLevel = getCollisionLevel() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCollisionLevel","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6} + * \endchinese + * \english + * Get the collision sensitivity level. + * + * @return Collision sensitivity level. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getCollisionLevel(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua function prototype + * getCollisionLevel() -> number + * + * @par Lua example + * CollisionLevel = getCollisionLevel() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCollisionLevel","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6} + * \endenglish + */ + int getCollisionLevel(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置碰撞停止类型 + * + * @param type 类型 \n + * 0: 碰撞后浮动,即碰撞之后进入拖动示教模式 \n + * 1: 碰撞后静止 \n + * 2: 碰撞后抱闸 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCollisionStopType(self: pyaubo_sdk.RobotConfig, arg0: int) -> int + * + * @par Lua函数原型 + * setCollisionStopType(type: number) -> nil + * + * @par Lua示例 + * setCollisionStopType(1) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionStopType","params":[1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the collision stop type. + * + * @param type Type \n + * 0: Floating after collision, i.e., enters freedrive mode after collision + * \n 1: Stop after collision \n 2: Brake after collision + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setCollisionStopType(self: pyaubo_sdk.RobotConfig, arg0: int) -> int + * + * @par Lua function prototype + * setCollisionStopType(type: number) -> nil + * + * @par Lua example + * setCollisionStopType(1) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionStopType","params":[1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setCollisionStopType(int type); + + /** + * @ingroup RobotConfig + * \chinese + * 获取碰撞停止类型 + * + * @return 返回碰撞停止类型 \n + * 0: 碰撞后浮动,即碰撞之后进入拖动示教模式 \n + * 1: 碰撞后静止 \n + * 2: 碰撞后抱闸 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getCollisionStopType(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua函数原型 + * getCollisionStopType() -> number + * + * @par Lua示例 + * CollisionStopType = getCollisionStopType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCollisionStopType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endchinese + * \english + * Get the collision stop type. + * + * @return The collision stop type. \n + * 0: Floating after collision, i.e., enters freedrive mode after collision + * \n 1: Stop after collision \n 2: Brake after collision + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getCollisionStopType(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua function prototype + * getCollisionStopType() -> number + * + * @par Lua example + * CollisionStopType = getCollisionStopType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCollisionStopType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * + * \endenglish + */ + int getCollisionStopType(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置机器人的原点位置 + * + * @param positions 关节角度 + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setHomePosition","params":[[0.0,-0.2617993877991494,1.74532925199433,0.4363323129985824,1.570796326794897,0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the robot's home position. + * + * @param positions Joint angles + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setHomePosition","params":[[0.0,-0.2617993877991494,1.74532925199433,0.4363323129985824,1.570796326794897,0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setHomePosition(const std::vector &positions); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人的原点位置 + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getHomePosition","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.2617993877991494,1.74532925199433,0.4363323129985824,1.570796326794897,0.0]} + * \endchinese + * \english + * Get the robot's home position. + * + * @return + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getHomePosition","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.2617993877991494,1.74532925199433,0.4363323129985824,1.570796326794897,0.0]} + * \endenglish + */ + std::vector getHomePosition(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置拖动阻尼 + * + * @param damp 阻尼 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setFreedriveDamp(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setFreedriveDamp(damp: table) -> nil + * + * @par Lua示例 + * setFreedriveDamp({0.5,0.5,0.5,0.5,0.5,0.5}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setFreedriveDamp","params":[[0.5,0.5,0.5,0.5,0.5,0.5]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set freedrive damping. + * + * @param damp Damping values. + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setFreedriveDamp(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setFreedriveDamp(damp: table) -> nil + * + * @par Lua example + * setFreedriveDamp({0.5,0.5,0.5,0.5,0.5,0.5}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setFreedriveDamp","params":[[0.5,0.5,0.5,0.5,0.5,0.5]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setFreedriveDamp(const std::vector &damp); + + /** + * @ingroup RobotConfig + * \chinese + * 获取拖动阻尼 + * + * @return 拖动阻尼 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getFreedriveDamp(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getFreedriveDamp() -> table + * + * @par Lua示例 + * FreedriveDamp = getFreedriveDamp() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getFreedriveDamp","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.5,0.5,0.5,0.5,0.5,0.5]} + * \endchinese + * \english + * Get freedrive damping. + * + * @return Freedrive damping values. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getFreedriveDamp(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getFreedriveDamp() -> table + * + * @par Lua example + * FreedriveDamp = getFreedriveDamp() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getFreedriveDamp","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.5,0.5,0.5,0.5,0.5,0.5]} + * \endenglish + */ + std::vector getFreedriveDamp(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置混合拖动阻尼 + * + * @param damp 阻尼 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setHandguidDamp(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setHandguidDamp(damp: table) -> number + * + * @par Lua示例 + * setHandguidDamp({0.5,0.5,0.5,0.5,0.5,0.5}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setHandguidDamp","params":[[0.5,0.5,0.5,0.5,0.5,0.5]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set handguiding damping. + * + * @param damp damping coef. + * + * @return return 0 for success;return rror code for failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setHandguidDamp(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setHandguidDamp(damp: table) -> number + * + * @par Lua example + * setHandguidDamp({0.5,0.5,0.5,0.5,0.5,0.5}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setHandguidDamp","params":[[0.5,0.5,0.5,0.5,0.5,0.5]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setHandguidDamp(const std::vector &damp); + + /** + * @ingroup RobotConfig + * \chinese + * 获取混合拖动阻尼 + * + * @return 拖动阻尼 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandguidDamp(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getHandguidDamp() -> table + * + * @par Lua示例 + * HandguidDamp = getHandguidDamp() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getHandguidDamp","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.5,0.5,0.5,0.5,0.5,0.5]} + * \endchinese + * \english + * Get handguiding damping. + * + * @return handguuiding damping + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandguidDamp(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua fuunction prototype + * getHandguidDamp() -> table + * + * @par Lua example + * HandguidDamp = getHandguidDamp() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getHandguidDamp","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.5,0.5,0.5,0.5,0.5,0.5]} + * \endenglish + */ + std::vector getHandguidDamp(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人DH参数 + * alpha a d theta beta + * + * @param real 读取真实参数(理论值+补偿值)或者理论参数 + * @return 返回机器人DH参数 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getKinematicsParam(self: pyaubo_sdk.RobotConfig, arg0: bool) -> Dict[str, + * List[float]] + * + * @par Lua函数原型 + * getKinematicsParam(real: boolean) -> table + * + * @par Lua示例 + * KinematicsParam = getKinematicsParam(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getKinematicsParam","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{"a":[0.0,-0.0001255999959539622,0.4086348000024445,0.3757601999930339,-0.00018950000230688602,3.7000001611886546e-05], + * "alpha":[0.0,-1.5701173967707458,3.1440308735524347,3.14650750358636,-1.5703093767832055,1.5751177669179182],"beta":[0.0,0.0,0.0,0.0,0.0,0.0], + * "d":[0.122,0.12154769999941345,-4.769999941345304e-05,4.769999941345304e-05,0.10287890000385232,0.116], + * "theta":[3.141592653589793,-1.5707963267948966,0.0,-1.5707963267948966,0.0,0.0]}} + * \endchinese + * \english + * Get the robot's DH parameters: alpha, a, d, theta, beta. + * + * @param real Read real parameters (theoretical + compensation) or + * theoretical parameters. + * @return Returns the robot's DH parameters. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getKinematicsParam(self: pyaubo_sdk.RobotConfig, arg0: bool) -> Dict[str, + * List[float]] + * + * @par Lua function prototype + * getKinematicsParam(real: boolean) -> table + * + * @par Lua example + * KinematicsParam = getKinematicsParam(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getKinematicsParam","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":{"a":[0.0,-0.0001255999959539622,0.4086348000024445,0.3757601999930339,-0.00018950000230688602,3.7000001611886546e-05], + * "alpha":[0.0,-1.5701173967707458,3.1440308735524347,3.14650750358636,-1.5703093767832055,1.5751177669179182],"beta":[0.0,0.0,0.0,0.0,0.0,0.0], + * "d":[0.122,0.12154769999941345,-4.769999941345304e-05,4.769999941345304e-05,0.10287890000385232,0.116], + * "theta":[3.141592653589793,-1.5707963267948966,0.0,-1.5707963267948966,0.0,0.0]}} + * \endenglish + */ + std::unordered_map> getKinematicsParam( + bool real); + + /** + * @ingroup RobotConfig + * \chinese + * 获取指定温度下的DH参数补偿值:alpha a d theta beta + * + * @param ref_temperature 参考温度 ℃,默认20℃ + * @return 返回DH参数补偿值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getKinematicsCompensate(self: pyaubo_sdk.RobotConfig, arg0: float) -> + * Dict[str, List[float]] + * + * @par Lua函数原型 + * getKinematicsCompensate(ref_temperature: number) -> table + * + * @par Lua示例 + * KinematicsCompensate = getKinematicsCompensate(20) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getKinematicsCompensate","params":[20],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":{"a":[0.0,-0.0001255999959539622,0.0006348000024445355,-0.0002398000069661066,-0.00018950000230688602,3.7000001611886546e-05], + * "alpha":[0.0,0.000678930024150759,0.002438219962641597,0.0049148499965667725,0.00048695001169107854,0.004321440123021603], + * "beta":[0.0,0.0,0.0,0.0,0.0,0.0],"d":[0.0,4.769999941345304e-05,-4.769999941345304e-05,4.769999941345304e-05,0.0003789000038523227,0.0], + * "theta":[0.0,0.0,0.0,0.0,0.0,0.0]}} + * \endchinese + * \english + * Get DH parameter compensation values (alpha, a, d, theta, beta) at the + * specified temperature. + * + * @param ref_temperature Reference temperature in ℃, default is 20℃ + * @return Returns DH parameter compensation values. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getKinematicsCompensate(self: pyaubo_sdk.RobotConfig, arg0: float) -> + * Dict[str, List[float]] + * + * @par Lua function prototype + * getKinematicsCompensate(ref_temperature: number) -> table + * + * @par Lua example + * KinematicsCompensate = getKinematicsCompensate(20) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getKinematicsCompensate","params":[20],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":{"a":[0.0,-0.0001255999959539622,0.0006348000024445355,-0.0002398000069661066,-0.00018950000230688602,3.7000001611886546e-05], + * "alpha":[0.0,0.000678930024150759,0.002438219962641597,0.0049148499965667725,0.00048695001169107854,0.004321440123021603], + * "beta":[0.0,0.0,0.0,0.0,0.0,0.0],"d":[0.0,4.769999941345304e-05,-4.769999941345304e-05,4.769999941345304e-05,0.0003789000038523227,0.0], + * "theta":[0.0,0.0,0.0,0.0,0.0,0.0]}} + * \endenglish + */ + std::unordered_map> + getKinematicsCompensate(double ref_temperature); + + /** + * @ingroup RobotConfig + * \chinese + * 设置标准 DH 补偿到机器人 + * + * @param param + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set standard DH compensation to the robot. + * + * @param param + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setKinematicsCompensate( + const std::unordered_map> ¶m); + + /** + * @ingroup RobotConfig + * \chinese + * 设置需要保存到接口板底座的参数 + * + * @param param 补偿数据 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setPersistentParameters(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua函数原型 + * setPersistentParameters(param: string) -> nil + * + * \endchinese + * \english + * Set parameters to be saved to the interface board base. + * + * @param param Compensation data. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setPersistentParameters(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua function prototype + * setPersistentParameters(param: string) -> nil + * + * \endenglish + */ + int setPersistentParameters(const std::string ¶m); + + /** + * @ingroup RobotConfig + * \chinese + * 设置硬件抽象层自定义参数 + * 目的是为了做不同硬件之间的兼容 + * + * @param param 自定义参数 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set custom parameters for the hardware abstraction layer. + * The purpose is to ensure compatibility between different hardware. + * + * @param param Custom parameters. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setHardwareCustomParameters(const std::string ¶m); + + /** + * @ingroup RobotConfig + * \chinese + * 获取硬件抽象层自定义参数 + * + * @param + * @return 返回硬件抽象层自定义的参数 + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Get custom parameters from the hardware abstraction layer. + * + * @param + * @return Returns custom parameters from the hardware abstraction layer. + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + std::string getHardwareCustomParameters(const std::string ¶m); + + /** + * @ingroup RobotConfig + * \chinese + * 设置机器人关节零位 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setRobotZero(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua函数原型 + * setRobotZero() -> nil + * + * @par Lua示例 + * setRobotZero() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setRobotZero","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the robot joint zero position. + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setRobotZero(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua function prototype + * setRobotZero() -> nil + * + * @par Lua example + * setRobotZero() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setRobotZero","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setRobotZero(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取可用的末端力矩传感器的名字 + * + * @return 返回可用的末端力矩传感器的名字 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpForceSensorNames(self: pyaubo_sdk.RobotConfig) -> List[str] + * + * @par Lua函数原型 + * getTcpForceSensorNames() -> table + * + * @par Lua示例 + * TcpForceSensorNames = getTcpForceSensorNames() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceSensorNames","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * Get the names of available TCP force sensors. + * + * @return Returns the names of available TCP force sensors. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpForceSensorNames(self: pyaubo_sdk.RobotConfig) -> List[str] + * + * @par Lua function prototype + * getTcpForceSensorNames() -> table + * + * @par Lua example + * TcpForceSensorNames = getTcpForceSensorNames() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceSensorNames","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector getTcpForceSensorNames(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置末端力矩传感器 + * 如果存在内置的末端力矩传感器,默认将使用内置的力矩传感器 + * + * @param name 末端力矩传感器的名字 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * selectTcpForceSensor(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua函数原型 + * selectTcpForceSensor(name: string) -> nil + * \endchinese + * \english + * Set the TCP force sensor. + * If there is a built-in TCP force sensor, the built-in sensor will be used + * by default. + * + * @param name Name of the TCP force sensor. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * selectTcpForceSensor(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua function prototype + * selectTcpForceSensor(name: string) -> nil + * \endenglish + */ + int selectTcpForceSensor(const std::string &name); + + /** + * @ingroup RobotConfig + * \chinese + * 设置传感器安装位姿 + * + * @param sensor_pose 传感器安装位姿 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Set the sensor mounting pose. + * + * @param sensor_pose Sensor mounting pose + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setTcpForceSensorPose(const std::vector &sensor_pose); + + /** + * @ingroup RobotConfig + * \chinese + * 获取传感器安装位姿 + * + * @return 传感器安装位姿 + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceSensorPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the sensor mounting pose. + * + * @return Sensor mounting pose. + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceSensorPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpForceSensorPose(); + + /** + * @ingroup RobotConfig + * \chinese + * 是否安装了末端力矩传感器 + * + * @return 安装返回true; 没有安装返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * hasTcpForceSensor(self: pyaubo_sdk.RobotConfig) -> bool + * + * @par Lua函数原型 + * hasTcpForceSensor() -> boolean + * + * @par Lua示例 + * hasTcpForceSensor = hasTcpForceSensor() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.hasTcpForceSensor","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Whether a TCP force sensor is installed. + * + * @return Returns true if installed; false otherwise. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * hasTcpForceSensor(self: pyaubo_sdk.RobotConfig) -> bool + * + * @par Lua function prototype + * hasTcpForceSensor() -> boolean + * + * @par Lua example + * hasTcpForceSensor = hasTcpForceSensor() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.hasTcpForceSensor","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool hasTcpForceSensor(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置末端力矩偏移 + * + * @param force_offset 末端力矩偏移 + * @return 成功返回0; 失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setTcpForceOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setTcpForceOffset(force_offset: table) -> nil + * + * @par Lua示例 + * setTcpForceOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endchinese + * \english + * Set the TCP force/torque offset. + * + * @param force_offset TCP force/torque offset + * @return Returns 0 on success; error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setTcpForceOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setTcpForceOffset(force_offset: table) -> nil + * + * @par Lua example + * setTcpForceOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endenglish + */ + int setTcpForceOffset(const std::vector &force_offset); + + /** + * @ingroup RobotConfig + * \chinese + * 获取末端力矩偏移 + * + * @return 返回末端力矩偏移 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpForceOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getTcpForceOffset() -> table + * + * @par Lua示例 + * TcpForceOffset = getTcpForceOffset() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceOffset","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP force/torque offset. + * + * @return Returns the TCP force/torque offset. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpForceOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getTcpForceOffset() -> table + * + * @par Lua example + * TcpForceOffset = getTcpForceOffset() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpForceOffset","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpForceOffset(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取可用的底座力矩传感器的名字 + * + * @return 返回可用的底座力矩传感器的名字 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getBaseForceSensorNames(self: pyaubo_sdk.RobotConfig) -> List[str] + * + * @par Lua函数原型 + * getBaseForceSensorNames() -> table + * + * @par Lua示例 + * BaseForceSensorNames = getBaseForceSensorNames() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getBaseForceSensorNames","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * Get the names of available base force sensors. + * + * @return Returns the names of available base force sensors. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getBaseForceSensorNames(self: pyaubo_sdk.RobotConfig) -> List[str] + * + * @par Lua function prototype + * getBaseForceSensorNames() -> table + * + * @par Lua example + * BaseForceSensorNames = getBaseForceSensorNames() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getBaseForceSensorNames","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector getBaseForceSensorNames(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置底座力矩传感器 + * 如果存在内置的底座力矩传感器,默认将使用内置的力矩传感器 + * + * @param name 底座力矩传感器的名字 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * selectBaseForceSensor(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua函数原型 + * selectBaseForceSensor(name: string) -> nil + * \endchinese + * \english + * Set the base force sensor. + * If there is a built-in base force sensor, the built-in sensor will be + * used by default. + * + * @param name Name of the base force sensor. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * selectBaseForceSensor(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua function prototype + * selectBaseForceSensor(name: string) -> nil + * \endenglish + */ + int selectBaseForceSensor(const std::string &name); + + /** + * @ingroup RobotConfig + * \chinese + * 是否安装了底座力矩传感器 + * + * @return 安装返回true;没有安装返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * hasBaseForceSensor(self: pyaubo_sdk.RobotConfig) -> bool + * + * @par Lua函数原型 + * hasBaseForceSensor() -> boolean + * + * @par Lua示例 + * hasBaseForceSensor = hasBaseForceSensor() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.hasBaseForceSensor","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Whether a base force sensor is installed. + * + * @return Returns true if installed; false otherwise. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * hasBaseForceSensor(self: pyaubo_sdk.RobotConfig) -> bool + * + * @par Lua function prototype + * hasBaseForceSensor() -> boolean + * + * @par Lua example + * hasBaseForceSensor = hasBaseForceSensor() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.hasBaseForceSensor","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool hasBaseForceSensor(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置底座力矩偏移 + * + * @param force_offset 底座力矩偏移 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setBaseForceOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> + * int + * + * @par Lua函数原型 + * setBaseForceOffset(force_offset: table) -> nil + * + * @par Lua示例 + * setBaseForceOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endchinese + * \english + * Set the base force/torque offset. + * + * @param force_offset Base force/torque offset + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setBaseForceOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> + * int + * + * @par Lua function prototype + * setBaseForceOffset(force_offset: table) -> nil + * + * @par Lua示例 + * setBaseForceOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * \endenglish + */ + int setBaseForceOffset(const std::vector &force_offset); + + /** + * @ingroup RobotConfig + * \chinese + * 获取底座力矩偏移 + * + * @return 返回底座力矩偏移 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getBaseForceOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getBaseForceOffset() -> table + * + * @par Lua示例 + * BaseForceOffset = getBaseForceOffset() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getBaseForceOffset","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * Get the base force/torque offset. + * + * @return Returns the base force/torque offset. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getBaseForceOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getBaseForceOffset() -> table + * + * @par Lua example + * BaseForceOffset = getBaseForceOffset() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getBaseForceOffset","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector getBaseForceOffset(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取安全参数校验码 CRC32 + * + * @return 返回安全参数校验码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSafetyParametersCheckSum(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua函数原型 + * getSafetyParametersCheckSum() -> number + * + * @par Lua示例 + * SafetyParametersCheckSum = getSafetyParametersCheckSum() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafetyParametersCheckSum","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":2033397241} + * + * \endchinese + * \english + * Get the safety parameter checksum CRC32. + * + * @return Returns the safety parameter checksum. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSafetyParametersCheckSum(self: pyaubo_sdk.RobotConfig) -> int + * + * @par Lua function prototype + * getSafetyParametersCheckSum() -> number + * + * @par Lua示例 + * SafetyParametersCheckSum = getSafetyParametersCheckSum() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafetyParametersCheckSum","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":2033397241} + * + * \endenglish + */ + uint32_t getSafetyParametersCheckSum(); + + /** + * @ingroup RobotConfig + * \chinese + * 发起确认安全配置参数请求: + * 将安全配置参数写入到安全接口板flash或文件 + * + * @param parameters 安全配置参数 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * confirmSafetyParameters(self: pyaubo_sdk.RobotConfig, arg0: + * arcs::common_interface::RobotSafetyParameterRange) -> int + * + * @par Lua函数原型 + * + * \endchinese + * \english + * Initiate a request to confirm safety configuration parameters: + * Write safety configuration parameters to the safety interface board flash + * or file. + * + * @param parameters Safety configuration parameters. + * + * @return Returns 0 on success; error code on failure. + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * confirmSafetyParameters(self: pyaubo_sdk.RobotConfig, arg0: + * arcs::common_interface::RobotSafetyParameterRange) -> int + * + * @par Lua function prototype + * + * \endenglish + */ + int confirmSafetyParameters(const RobotSafetyParameterRange ¶meters); + + /** + * @ingroup RobotConfig + * \chinese + * 计算安全参数的 CRC32 校验值 + * + * @return crc32 + * + * @throws arcs::common_interface::AuboException + * \endchinese + * \english + * Calculate the CRC32 checksum of safety parameters. + * + * @return crc32 + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + uint32_t calcSafetyParametersCheckSum( + const RobotSafetyParameterRange ¶meters); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大位置(物理极限) + * + * @return 返回关节最大位置 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointMaxPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getJointMaxPositions() -> table + * + * @par Lua示例 + * JointMaxPositions = getJointMaxPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586]} + * \endchinese + * \english + * Get the joint maximum positions (physical limits). + * + * @return Returns the joint maximum positions. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointMaxPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getJointMaxPositions() -> table + * + * @par Lua example + * JointMaxPositions = getJointMaxPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586,6.283185307179586]} + * \endenglish + */ + std::vector getJointMaxPositions(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最小位置(物理极限) + * + * @return 返回关节最小位置 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointMinPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getJointMinPositions() -> table + * + * @par Lua示例 + * JointMinPositions = getJointMinPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMinPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586]} + * \endchinese + * \english + * Get the joint minimum positions (physical limits). + * + * @return Returns the joint minimum positions. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointMinPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getJointMinPositions() -> table + * + * @par Lua example + * JointMinPositions = getJointMinPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMinPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586,-6.283185307179586]} + * \endenglish + */ + std::vector getJointMinPositions(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大速度(物理极限) + * + * @return 返回关节最大速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getJointMaxSpeeds() -> table + * + * @par Lua示例 + * JointMaxSpeeds = getJointMaxSpeeds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[3.892084231947355,3.892084231947355,3.892084231947355,3.1066860685499065,3.1066860685499065,3.1066860685499065]} + * \endchinese + * \english + * Get the joint maximum speeds (physical limits). + * + * @return Returns the joint maximum speeds. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getJointMaxSpeeds() -> table + * + * @par Lua example + * JointMaxSpeeds = getJointMaxSpeeds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[3.892084231947355,3.892084231947355,3.892084231947355,3.1066860685499065,3.1066860685499065,3.1066860685499065]} + * \endenglish + */ + std::vector getJointMaxSpeeds(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大加速度(物理极限) + * + * @return 返回关节最大加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getJointMaxAccelerations() -> table + * + * @par Lua示例 + * JointMaxAccelerations = getJointMaxAccelerations() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[31.104877758314785,31.104877758314785,31.104877758314785,20.73625684294463,20.73625684294463,20.73625684294463]} + * \endchinese + * \english + * Get the joint maximum accelerations (physical limits). + * + * @return Returns the joint maximum accelerations. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getJointMaxAccelerations() -> table + * + * @par Lua example + * JointMaxAccelerations = getJointMaxAccelerations() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getJointMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[31.104877758314785,31.104877758314785,31.104877758314785,20.73625684294463,20.73625684294463,20.73625684294463]} + * \endenglish + */ + std::vector getJointMaxAccelerations(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取TCP最大速度(物理极限) + * + * @return 返回TCP最大速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getTcpMaxSpeeds() -> table + * + * @par Lua示例 + * TcpMaxSpeeds = getTcpMaxSpeeds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[2.0,5.0]} + * \endchinese + * \english + * Get the TCP maximum speed (physical limits). + * + * @return Returns the TCP maximum speed. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getTcpMaxSpeeds() -> table + * + * @par Lua example + * TcpMaxSpeeds = getTcpMaxSpeeds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[2.0,5.0]} + * \endenglish + */ + std::vector getTcpMaxSpeeds(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取TCP最大加速度(物理极限) + * + * @return 返回TCP最大加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getTcpMaxAccelerations() -> table + * + * @par Lua示例 + * TcpMaxAccelerations = getTcpMaxAccelerations() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[10.0,10.0]} + * + * \endchinese + * \english + * Get the TCP maximum acceleration (physical limits). + * + * @return Returns the TCP maximum acceleration. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getTcpMaxAccelerations() -> table + * + * @par Lua example + * TcpMaxAccelerations = getTcpMaxAccelerations() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[10.0,10.0]} + * \endenglish + */ + std::vector getTcpMaxAccelerations(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置机器人安装姿态 + * + * @param gravity 安装姿态 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setGravity(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setGravity(gravity: table) -> nil + * + * @par Lua示例 + * setGravity({0.0,0.0,-9.87654321}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setGravity","params":[[0.0,0.0,-9.87654321]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the robot installation attitude (gravity vector). + * + * @param gravity Installation attitude (gravity vector) + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setGravity(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setGravity(gravity: table) -> nil + * + * @par Lua example + * setGravity({0.0,0.0,-9.87654321}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setGravity","params":[[0.0,0.0,-9.87654321]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setGravity(const std::vector &gravity); + + /** + * @ingroup RobotConfig + * \chinese + * 获取机器人的安装姿态 + * + * 如果机器人底座安装了姿态传感器,则从传感器读取数据,否则按照用户设置 + * + * @return 返回安装姿态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getGravity(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getGravity() -> table + * + * @par Lua示例 + * Gravity = getGravity() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getGravity","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,-9.87654321]} + * + * \endchinese + * \english + * Get the robot's installation attitude (gravity vector). + * + * If the robot base is equipped with an attitude sensor, data is read from + * the sensor; otherwise, the user setting is used. + * + * @return Returns the installation attitude. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getGravity(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getGravity() -> table + * + * @par Lua example + * Gravity = getGravity() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getGravity","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,-9.87654321]} + * + * \endenglish + */ + std::vector getGravity(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置当前的TCP偏移 + * + * TCP偏移表示形式为(x,y,z,rx,ry,rz)。 + * 其中x、y、z是工具中心点(TCP)在基坐标系下相对于法兰盘中心的位置偏移,单位是m。 + * rx、ry、rz是工具中心点(TCP)在基坐标系下相对于法兰盘中心的的姿态偏移,是ZYX欧拉角,单位是rad。 + * + * @param offset 当前的TCP偏移,形式为(x,y,z,rx,ry,rz) + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setTcpOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua函数原型 + * setTcpOffset(offset: table) -> nil + * + * @par Lua示例 + * setTcpOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setTcpOffset","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the current TCP offset. + * + * The TCP offset is represented as (x, y, z, rx, ry, rz). + * x, y, z are the position offsets of the Tool Center Point (TCP) relative + * to the flange center in the base coordinate system, in meters. rx, ry, rz + * are the orientation offsets of the TCP relative to the flange center in + * the base coordinate system, as ZYX Euler angles in radians. + * + * @param offset The current TCP offset, in the form (x, y, z, rx, ry, rz) + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setTcpOffset(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> int + * + * @par Lua function prototype + * setTcpOffset(offset: table) -> nil + * + * @par Lua example + * setTcpOffset({0.0,0.0,0.0,0.0,0.0,0.0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setTcpOffset","params":[[0.0,0.0,0.0,0.0,0.0,0.0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setTcpOffset(const std::vector &offset); + + /** + * @ingroup RobotConfig + * \chinese + * 获取当前的TCP偏移 + * + * TCP偏移表示形式为(x,y,z,rx,ry,rz)。 + * 其中x、y、z是工具中心点(TCP)在基坐标系下相对于法兰盘中心的位置偏移,单位是m。 + * rx、ry、rz是工具中心点(TCP)在基坐标系下相对于法兰盘中心的的姿态偏移,是ZYX欧拉角,单位是rad。 + * + * @return 当前的TCP偏移,形式为(x,y,z,rx,ry,rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getTcpOffset() -> table + * + * @par Lua示例 + * TcpOffset = getTcpOffset() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpOffset","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the current TCP offset. + * + * The TCP offset is represented as (x, y, z, rx, ry, rz). + * x, y, z are the position offsets of the Tool Center Point (TCP) relative + * to the flange center in the base coordinate system, in meters. rx, ry, rz + * are the orientation offsets of the TCP relative to the flange center in + * the base coordinate system, as ZYX Euler angles in radians. + * + * @return The current TCP offset, in the form (x, y, z, rx, ry, rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpOffset(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getTcpOffset() -> table + * + * @par Lua example + * TcpOffset = getTcpOffset() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getTcpOffset","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpOffset(); + + /** + * @ingroup RobotConfig + * \chinese + * 设置工具端质量、质心及惯量 + * + * @param m 工具端质量 + * @param com 质心 + * @param inertial 惯量 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setToolInertial(self: pyaubo_sdk.RobotConfig, arg0: float, arg1: + * List[float], arg2: List[float]) -> int + * + * @par Lua函数原型 + * setToolInertial(m: number, com: table, inertial: table) -> nil + * + * @par Lua示例 + * setToolInertial(3, {0,0,0}, {0,0,0}, {0,0,0,0,0,0,0,0,0}) + * + * \endchinese + * \english + * Set tool mass, center of mass, and inertia. + * + * @param m Tool mass + * @param com Center of mass + * @param inertial Inertia + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setToolInertial(self: pyaubo_sdk.RobotConfig, arg0: float, arg1: + * List[float], arg2: List[float]) -> int + * + * @par Lua function prototype + * setToolInertial(m: number, com: table, inertial: table) -> nil + * + * @par Lua example + * setToolInertial(3, {0,0,0}, {0,0,0}, {0,0,0,0,0,0,0,0,0}) + * + * \endenglish + */ + int setToolInertial(double m, const std::vector &com, + const std::vector &inertial); + + /** + * @ingroup RobotConfig + * \chinese + * 设置有效负载 + * + * @param m 质量, 单位: kg + * @param cog 重心, 单位: m, 形式为(CoGx, CoGy, CoGz) + * @param aom 力矩轴的方向, 单位: rad, 形式为(rx, ry, rz) + * @param inertia 惯量, 单位: kg*m^2, 形式为(Ixx, Iyy, Izz, Ixy, Ixz, + * Iyz)或(Ixx, Ixy, Ixz, Iyx, Iyy, Iyz, Izx, Izy, Izz) + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setPayload(self: pyaubo_sdk.RobotConfig, arg0: float, arg1: List[float], + * arg2: List[float], arg3: List[float]) -> int + * + * @par Lua函数原型 + * setPayload(m: number, cog: table, aom: table, inertia: table) -> nil + * + * @par Lua示例 + * setPayload(3, {0,0,0}, {0,0,0}, {0,0,0,0,0,0,0,0,0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setPayload","params":[3,[0,0,0],[0,0,0],[0,0,0,0,0,0,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set the payload. + * + * @param m Mass, unit: kg + * @param cog Center of gravity, unit: m, format (CoGx, CoGy, CoGz) + * @param aom Axis of moment, unit: rad, format (rx, ry, rz) + * @param inertia Inertia, unit: kg*m^2, format (Ixx, Iyy, Izz, Ixy, Ixz, + * Iyz) or (Ixx, Ixy, Ixz, Iyx, Iyy, Iyz, Izx, Izy, Izz) + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setPayload(self: pyaubo_sdk.RobotConfig, arg0: float, arg1: List[float], + * arg2: List[float], arg3: List[float]) -> int + * + * @par Lua function prototype + * setPayload(m: number, cog: table, aom: table, inertia: table) -> nil + * + * @par Lua example + * setPayload(3, {0,0,0}, {0,0,0}, {0,0,0,0,0,0,0,0,0}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setPayload","params":[3,[0,0,0],[0,0,0],[0,0,0,0,0,0,0,0,0]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int setPayload(double m, const std::vector &cog, + const std::vector &aom, + const std::vector &inertia); + + /** + * @ingroup RobotConfig + * \chinese + * 获取有效负载 + * + * @return 有效负载. + * 第一个元素表示质量, 单位: kg; + * 第二个元素表示重心, 单位: m, 形式为(CoGx, CoGy, CoGz); + * 第三个元素表示力矩轴的方向, 单位: rad, 形式为(rx, ry, rz); + * 第四个元素表示惯量, 单位: kg*m^2, 形式为(Ixx, Iyy, Izz, Ixy, Ixz, Iyz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPayload(self: pyaubo_sdk.RobotConfig) -> Tuple[float, List[float], + * List[float], List[float]] + * + * @par Lua函数原型 + * getPayload() -> number, table, table, table + * + * @par Lua示例 + * m, cog, aom, inertia = getPayload() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getPayload","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[3.0,[0.0,0.0,0.0],[0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0]]} + * \endchinese + * \english + * Get the payload. + * + * @return The payload. + * The first element is the mass in kg; + * The second element is the center of gravity in meters, format (CoGx, + * CoGy, CoGz); The third element is the axis of moment in radians, format + * (rx, ry, rz); The fourth element is the inertia in kg*m^2, format (Ixx, + * Iyy, Izz, Ixy, Ixz, Iyz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPayload(self: pyaubo_sdk.RobotConfig) -> Tuple[float, List[float], + * List[float], List[float]] + * + * @par Lua function prototype + * getPayload() -> number, table, table, table + * + * @par Lua example + * m, cog, aom, inertia = getPayload() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getPayload","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[3.0,[0.0,0.0,0.0],[0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0]]} + * \endenglish + */ + Payload getPayload(); + + /** + * @ingroup RobotConfig + * \chinese + * 末端位姿是否在安全范围之内 + * + * @param pose 末端位姿 + * @return 在安全范围内返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * toolSpaceInRange(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> bool + * + * @par Lua函数原型 + * toolSpaceInRange(pose: table) -> boolean + * + * @par Lua示例 + * SpaceInRange = toolSpaceInRange({0.58712,-0.15775, 0.48703, 2.76, + * 0.344, 1.432}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.toolSpaceInRange","params":[[0.58712, + * -0.15775, 0.48703, 2.76, 0.344, 1.432]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Whether the end-effector pose is within the safety range. + * + * @param pose End-effector pose + * @return Returns true if within the safety range; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * toolSpaceInRange(self: pyaubo_sdk.RobotConfig, arg0: List[float]) -> bool + * + * @par Lua function prototype + * toolSpaceInRange(pose: table) -> boolean + * + * @par Lua example + * SpaceInRange = toolSpaceInRange({0.58712,-0.15775, 0.48703, 2.76, + * 0.344, 1.432}) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.toolSpaceInRange","params":[[0.58712, + * -0.15775, 0.48703, 2.76, 0.344, 1.432]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool toolSpaceInRange(const std::vector &pose); + + /** + * @ingroup RobotConfig + * \chinese + * 发起固件升级请求,控制器软件将进入固件升级模式 + * + * @param fw 固件升级路径。该路径的格式为: 固件安装包路径\#升级节点列表。 + * 其中固件安装包路径和升级节点列表以井号(#)分隔,升级节点以逗号(,)分隔。 + * 如果节点名称后带有!,则表示强制(不带版本校验)升级该节点; + * 反之,则表示带校验版本地升级节点, + * 即在升级该节点前,会先判断当前版本和目标版本是否相同,如果相同就不升级该节点。\n + * 可以根据实际需求灵活设置需要升级的节点。\n + * 例如, + * /tmp/firmware_update-1.0.42-rc.5+2347b0d.firm\#master_mcu!,slace_mcu!, + * base!,tool!,joint1!,joint2!,joint3!,joint4!,joint5!,joint6! + * 表示强制升级接口板主板、接口板从板、基座、工具和6个关节(joint1至joint6)。\n + * all表示所有的节点,例如 + * /tmp/firm_XXX.firm\#all 表示带校验版本地升级全部节点, + * /tmp/firm_XXX.firm\#all!表示强制升级全部节点 + * + * @return 指令下发成功返回0; 失败返回错误码。 \n + * -AUBO_BAD_STATE: 运行时(RuntimeMachine)的当前状态不是Stopped, + * 固件升级请求被拒绝。AUBO_BAD_STATE的值是1。 \n + * -AUBO_TIMEOUT: 超时。AUBO_TIMEOUT的值是4。 \n + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * firmwareUpdate(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua函数原型 + * firmwareUpdate(fw: string) -> nil + * + * @par Lua示例 + * firmwareUpdate("/tmp/firmware_update-1.0.42-rc.12+3e33eac.firm#master_mcu") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.firmwareUpdate","params":["/tmp/firmware_update-1.0.42-rc.12+3e33eac.firm#master_mcu"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Initiate a firmware upgrade request. The controller software will enter + * firmware upgrade mode. + * + * @param fw Firmware upgrade path. The format is: firmware package + * path\#upgrade node list. The firmware package path and node list are + * separated by a hash (#), and nodes are separated by commas (,). If a node + * name ends with !, it means to force upgrade (without version check) that + * node; otherwise, the node will be upgraded only if the current version + * differs from the target version. You can flexibly specify which nodes to + * upgrade as needed. For example, + * /tmp/firmware_update-1.0.42-rc.5+2347b0d.firm#master_mcu!,slace_mcu!,base!,tool!,joint1!,joint2!,joint3!,joint4!,joint5!,joint6! + * means to force upgrade the interface board main, interface board slave, + * base, tool, and joints 1-6. "all" means all nodes, e.g. + * /tmp/firm_XXX.firm#all means upgrade all nodes with version check, + * /tmp/firm_XXX.firm#all! means force upgrade all nodes. + * + * @return Returns 0 if the command is sent successfully; otherwise, returns + * an error code. -AUBO_BAD_STATE: The current state of the RuntimeMachine + * is not Stopped, so the firmware upgrade request is rejected. + * AUBO_BAD_STATE = 1. -AUBO_TIMEOUT: Timeout. AUBO_TIMEOUT = 4. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * firmwareUpdate(self: pyaubo_sdk.RobotConfig, arg0: str) -> int + * + * @par Lua function prototype + * firmwareUpdate(fw: string) -> nil + * + * @par Lua example + * firmwareUpdate("/tmp/firmware_update-1.0.42-rc.12+3e33eac.firm#master_mcu") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.firmwareUpdate","params":["/tmp/firmware_update-1.0.42-rc.12+3e33eac.firm#master_mcu"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int firmwareUpdate(const std::string &fw); + + /** + * @ingroup RobotConfig + * \chinese + * 获取当前的固件升级的进程 + * + * @return 当前的固件升级进程。 \n + * 第一个元素表示步骤名称。如果是failed,则表示固件升级失败 \n + * 第二个元素表示升级的进度(0~1),完成之后,返回("", 1) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getFirmwareUpdateProcess(self: pyaubo_sdk.RobotConfig) -> Tuple[str, + * float] + * + * @par Lua函数原型 + * getFirmwareUpdateProcess() -> table + * + * @par Lua示例 + * step,progress = getFirmwareUpdateProcess() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getFirmwareUpdateProcess","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[" ",0.0]} + * + * \endchinese + * \english + * Get the current firmware upgrade process. + * + * @return The current firmware upgrade process. \n + * The first element is the step name. If it is "failed", the firmware + * upgrade failed. \n The second element is the upgrade progress (0~1). When + * finished, returns ("", 1) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getFirmwareUpdateProcess(self: pyaubo_sdk.RobotConfig) -> Tuple[str, + * float] + * + * @par Lua function prototype + * getFirmwareUpdateProcess() -> table + * + * @par Lua example + * step,progress = getFirmwareUpdateProcess() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getFirmwareUpdateProcess","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[" ",0.0]} + * + * \endenglish + */ + std::tuple getFirmwareUpdateProcess(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大位置(当前正在使用的限制值) + * + * @return 返回关节最大位置(当前正在使用的限制值) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLimitJointMaxPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getLimitJointMaxPositions() -> table + * + * @par Lua示例 + * LimitJointMaxPositions = getLimitJointMaxPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465]} + * \endchinese + * \english + * Get the joint maximum positions (currently used limit values). + * + * @return Returns the joint maximum positions (currently used limit + * values). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLimitJointMaxPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getLimitJointMaxPositions() -> table + * + * @par Lua example + * LimitJointMaxPositions = getLimitJointMaxPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465,6.2831854820251465]} + * \endenglish + */ + std::vector getLimitJointMaxPositions(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最小位置(当前正在使用的限制值) + * + * @return 返回关节最小位置(当前正在使用的限制值) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLimitJointMinPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getLimitJointMinPositions() -> table + * + * @par Lua示例 + * LimitJointMinPositions = getLimitJointMinPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMinPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465]} + * \endchinese + * \english + * Get the joint minimum positions (currently used limit values). + * + * @return Returns the joint minimum positions (currently used limit + * values). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLimitJointMinPositions(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getLimitJointMinPositions() -> table + * + * @par Lua example + * LimitJointMinPositions = getLimitJointMinPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMinPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465,-6.2831854820251465]} + * \endenglish + */ + std::vector getLimitJointMinPositions(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大速度(当前正在使用的限制值) + * + * @return 返回关节最大速度(当前正在使用的限制值) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLimitJointMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getLimitJointMaxSpeeds() -> table + * + * @par Lua示例 + * LimitJointMaxSpeeds = getLimitJointMaxSpeeds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[3.8920841217041016,3.8920841217041016,3.8920841217041016,3.1066861152648926,3.1066861152648926,3.1066861152648926]} + * \endchinese + * \english + * Get the joint maximum speeds (currently used limit values). + * + * @return Returns the joint maximum speeds (currently used limit values). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLimitJointMaxSpeeds(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getLimitJointMaxSpeeds() -> table + * + * @par Lua example + * LimitJointMaxSpeeds = getLimitJointMaxSpeeds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxSpeeds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[3.8920841217041016,3.8920841217041016,3.8920841217041016,3.1066861152648926,3.1066861152648926,3.1066861152648926]} + * \endenglish + */ + std::vector getLimitJointMaxSpeeds(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取关节最大加速度(当前正在使用的限制值) + * + * @return 返回关节最大加速度(当前正在使用的限制值) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLimitJointMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> + * List[float] + * + * @par Lua函数原型 + * getLimitJointMaxAccelerations() -> table + * + * @par Lua示例 + * LimitJointMaxAccelerations = getLimitJointMaxAccelerations() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[31.104877758314785,31.104877758314785,31.104877758314785,20.73625684294463,20.73625684294463,20.73625684294463]} + * \endchinese + * \english + * Get the joint maximum accelerations (currently used limit values). + * + * @return Returns the joint maximum accelerations (currently used limit + * values). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLimitJointMaxAccelerations(self: pyaubo_sdk.RobotConfig) -> + * List[float] + * + * @par Lua function prototype + * getLimitJointMaxAccelerations() -> table + * + * @par Lua example + * LimitJointMaxAccelerations = getLimitJointMaxAccelerations() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitJointMaxAccelerations","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[31.104877758314785,31.104877758314785,31.104877758314785,20.73625684294463,20.73625684294463,20.73625684294463]} + * \endenglish + */ + std::vector getLimitJointMaxAccelerations(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取TCP最大速度(当前正在使用的限制值) + * + * @return 返回TCP最大速度(当前正在使用的限制值) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getLimitTcpMaxSpeed(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getLimitTcpMaxSpeed() -> number + * + * @par Lua示例 + * LimitTcpMaxSpeed = getLimitTcpMaxSpeed() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitTcpMaxSpeed","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":2.0} + * \endchinese + * \english + * Get the TCP maximum speed (currently used limit value). + * + * @return Returns the TCP maximum speed (currently used limit value). + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getLimitTcpMaxSpeed(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getLimitTcpMaxSpeed() -> number + * + * @par Lua example + * LimitTcpMaxSpeed = getLimitTcpMaxSpeed() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getLimitTcpMaxSpeed","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":2.0} + * \endenglish + */ + double getLimitTcpMaxSpeed(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取当前安全停止的类型 + * + * @return 返回当前安全停止的类型 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafeguardStopType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endchinese + * \english + * Get the current safeguard stop type. + * + * @return Returns the current safeguard stop type. + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafeguardStopType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endenglish + */ + SafeguedStopType getSafeguardStopType(); + + /** + * @ingroup RobotConfig + * \chinese + * 按位获取完整的安全停止触发源 + * + * @return 返回所有安全停止触发源 + * + * 安全停止的原因: + * 手动模式下可配置安全IO触发的安全停止 - 1<<0 + * 自动模式下可配置安全IO触发的安全停止 - 1<<1 + * 控制柜SI输入触发的安全停止 - 1<<2 + * 示教器三态开关触发的安全停止 - 1<<3 + * 自动切手动触发的安全停止 - 1<<4 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafeguardStopSource","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the complete safeguard stop source as a bitmask. + * + * @return Returns all safeguard stop sources. + * + * Reasons for safeguard stop: + * Safeguard stop triggered by configurable safety IO in manual mode - 1<<0 + * Safeguard stop triggered by configurable safety IO in automatic mode - + * 1<<1 Safeguard stop triggered by control box SI input - 1<<2 Safeguard + * stop triggered by teach pendant three-position switch - 1<<3 Safeguard + * stop triggered by switching from auto to manual - 1<<4 + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSafeguardStopSource","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getSafeguardStopSource(); + + /** + * @ingroup RobotConfig + * \chinese + * 按位获取完整的机器人紧急停止触发源 + * + * @return 返回所有机器人紧急停止触发源 + * + * 紧急停止的原因: + * 控制柜紧急停止按钮触发 - 1<<0 + * 示教器紧急停止按钮触发 - 1<<1 + * 手柄紧急停止按钮触发 - 1<<2 + * 固定IO紧急停止触发 - 1<<3 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotEmergencyStopSource","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the complete robot emergency stop source as a bitmask. + * + * @return Returns all robot emergency stop sources. + * + * Reasons for emergency stop: + * Emergency stop triggered by control box button - 1<<0 + * Emergency stop triggered by teach pendant button - 1<<1 + * Emergency stop triggered by handle button - 1<<2 + * Emergency stop triggered by fixed IO - 1<<3 + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getRobotEmergencyStopSource","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getRobotEmergencyStopSource(); + + /** + * @ingroup RobotConfig + * \chinese + * 获取工具端力矩传感器的名字 + * + * @return 当前工具端力矩传感器名字 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSelectedTcpForceSensorName(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua函数原型 + * getSelectedTcpForceSensorName() -> str + * + * @par Lua示例 + * TcpForceSensorName = getSelectedTcpForceSensorName() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSelectedTcpForceSensorName","params":[],"id":1} + * \endchinese + * \english + * Get the name of the selected TCP force sensor. + * + * @return The name of the currently selected TCP force sensor. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSelectedTcpForceSensorName(self: pyaubo_sdk.RobotConfig) -> str + * + * @par Lua function prototype + * getSelectedTcpForceSensorName() -> str + * + * @par Lua example + * TcpForceSensorName = getSelectedTcpForceSensorName() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getSelectedTcpForceSensorName","params":[],"id":1} + * \endenglish + */ + std::string getSelectedTcpForceSensorName(); + + /** + * \chinese + * 获取末端力矩传感器的厂商编码(仅支持v2.0内置传感器) + * + * @return 返回末端力矩传感器的厂商编码,如果不是内置传感器返回空字符串 + * \endchinese + */ + std::string getTcpForceSensorVendorCode(); + + /** + * \chinese + * 获取末端力矩传感器的量程(仅支持v2.0内置传感器) + * + * @return 返回末端力矩传感器的量程,如果不是内置传感器返回空数组 + * \endchinese + */ + std::vector getTcpForceSensorRange(); + + /** + * @ingroup RobotConfig + * \chinese + * 添加焊枪动力学参数 + * + * @param m 质量, 单位: kg + * @param cog 质心, 单位: m, 形式为(CoGx, CoGy, CoGz) + * @param inertia 惯性张量, 单位: kg*m^2, 形式为(Ixx, Iyy, Izz, Ixy, + * Ixz, Iyz)或(Ixx, Ixy, Ixz, Iyx, Iyy, Iyz, Izx, Izy, Izz) + * @return 成功返回0; 失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * attachWeldingGun(self: pyaubo_sdk.RobotConfig, arg0: float, arg1: + * List[float], arg2: List[float]) -> int + * + * @par Lua函数原型 + * attachWeldingGun(m: number, cog: table, inertia: table) -> nil + * + * @par Lua示例 + * attachWeldingGun(3, {0,0,0}, {0,0,0,0,0,0,0,0,0}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.attachWeldingGun","params":[3,[0,0,0],[0,0,0,0,0,0,0,0,0]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int attachWeldingGun(double m, const std::vector &cog, + const std::vector &inertia); + /** + * @ingroup RobotConfig + * \chinese + * 设置碰撞阈值 + * + * @param threshold 碰撞阈值 + * @return 成功返回0; 失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setCollisionThreshold(self: pyaubo_sdk.RobotConfig, arg0: List[float]) + * -> int + * + * @par Lua函数原型 + * setCollisionThreshold(threshold: table) -> nil + * + * @par Lua示例 + * setCollisionThreshold({99.0, + * 114.0, + * 103.0, 56.0, 51.0, 60.0,54.6111111, 66.22222222, 59.66666667, 28.94444444, + * 27.05555556, 30.11111111,19.1, 28.0, 25.0, 7.3, 7.9, 6.2}) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionThreshold","params":[[99.0, + * 114.0, + * 103.0, 56.0, 51.0, 60.0,54.6111111, 66.22222222, 59.66666667, 28.94444444, + * 27.05555556, 30.11111111,19.1, 28.0, 25.0, 7.3, 7.9, 6.2]],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Enable optimized collision force. + * + * @param threshold + * @return Returns 0 on success; error code on failure. + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.setCollisionThreshold","params":[[99.0, + * 114.0, + * 103.0, 56.0, 51.0, 60.0,54.6111111, 66.22222222, 59.66666667, 28.94444444, + * 27.05555556, 30.11111111,19.1, 28.0, 25.0, 7.3, 7.9, 6.2]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endenglish + */ + int setCollisionThreshold(const std::vector &threshold); + + /** + * @ingroup RobotConfig + * \chinese + * 获取碰撞阈值 + * + * @return 碰撞阈值 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getCollisionThreshold(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * getCollisionThreshold() -> table + * + * @par Lua示例 + * CollisionThreshold = getCollisionThreshold() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.getCollisionThreshold","params":[99.0, + * 114.0, 103.0, 56.0, 51.0, 60.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + * \english + * Get collision threshold. + * + * @return collision threshold. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getCollisionThreshold(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua function prototype + * getCollisionThreshold() -> table + * + * @par Lua example + * CollisionThreshold = getCollisionThreshold() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.getCollisionThreshold","params":[[99.0, + * 114.0, + * 103.0, 56.0, 51.0, 60.0,54.6111111, 66.22222222, 59.66666667, 28.94444444, + * 27.05555556, 30.11111111,19.1, 28.0, 25.0, 7.3, 7.9, 6.2]],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endenglish + */ + std::vector getCollisionThreshold(); + + int enableAxisGroup(const std::string &group_name); + int disableAxisGroup(); + + /** + * @ingroup RobotConfig + * \chinese + * 使能末端碰撞检测 + * + * @param enable 使能碰撞阈值 + * @return 成功返回0; 失败返回错误码 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * enableEndCollisionCheck(self: pyaubo_sdk.RobotConfig, arg0: bool) + * -> int + * + * @par Lua函数原型 + * enableEndCollisionCheck(threshold: table) -> nil + * + * @par Lua示例 + * enableEndCollisionCheck(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.enableEndCollisionCheck","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Set end collision threshold. + * + * @param threshold + * @return Returns 0 on success; error code on failure. + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.enableEndCollisionCheck","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"None"} + * \endenglish + */ + int enableEndCollisionCheck(bool enable); + + /** + * @ingroup RobotConfig + * \chinese + * 获取末端碰撞检测是否使能 + * + * @return 是否使能末端碰撞检测 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isEndCollisionCheckEnabled(self: pyaubo_sdk.RobotConfig) -> List[float] + * + * @par Lua函数原型 + * isEndCollisionCheckEnabled() -> table + * + * @par Lua示例 + * IsEndCollisionCheckEnabled = isEndCollisionCheckEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.MotionControl.isEndCollisionCheckEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Get collision check is enabled. + * + * @return end collision threshold. + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isEndCollisionCheckEnabled(self: pyaubo_sdk.RobotConfig) -> bool + * + * @par Lua function prototype + * isEndCollisionCheckEnabled() -> bool + * + * @par Lua example + * IsEndCollisionCheckEnabled = isEndCollisionCheckEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotConfig.isEndCollisionCheckEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isEndCollisionCheckEnabled(); + +protected: + void *d_; +}; +using RobotConfigPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif // AUBO_SDK_ROBOT_CONFIG_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_manage.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_manage.h new file mode 100644 index 00000000..7ee8f89c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_manage.h @@ -0,0 +1,1929 @@ +/** @file robot_manage.h + * @brief 机器人管理接口,如上电、启动、拖动示教模式等 + */ +#ifndef AUBO_SDK_ROBOT_CONTROL_INTERFACE_H +#define AUBO_SDK_ROBOT_CONTROL_INTERFACE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RobotManage RobotManage (机器人生命周期管理) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup RobotManage Robot Lifecycle Management + * @ingroup RobotInterface + * \endenglish + * + * RobotManage + */ +class ARCS_ABI_EXPORT RobotManage +{ +public: + RobotManage(); + virtual ~RobotManage(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人上电请求 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * poweron(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * poweron() -> number + * + * @par Lua示例 + * num = poweron() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.poweron","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ 实例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->poweron(); + * @endcode + * + * \endchinese + * + * \english + * Initiate robot power-on request + * + * @return Returns 0 on success; error code on failure + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * poweron(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * poweron() -> number + * + * @par Lua example + * num = poweron() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.poweron","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->poweron(); + * @endcode + * \endenglish + */ + int poweron(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人启动请求 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * startup(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * startup() -> number + * + * @par Lua示例 + * num = startup() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.startup","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->startup(); + * @endcode + * \endchinese + * + * \english + * Initiate robot startup request + * + * @return Returns 0 on success; error code on failure + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * startup(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * startup() -> number + * + * @par Lua example + * num = startup() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.startup","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->startup(); + * @endcode + * \endenglish + */ + int startup(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人松开刹车请求 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * releaseRobotBrake(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * releaseRobotBrake() -> number + * + * @par Lua示例 + * num = releaseRobotBrake() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.releaseRobotBrake","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->releaseRobotBrake(); + * @endcode + * \endchinese + * + * \english + * Initiate robot brake release request + * + * @return Returns 0 on success; error code on failure + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * releaseRobotBrake(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * releaseRobotBrake() -> number + * + * @par Lua example + * num = releaseRobotBrake() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.releaseRobotBrake","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->releaseRobotBrake(); + * @endcode + * \endenglish + */ + int releaseRobotBrake(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人刹车请求 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * lockRobotBrake(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * lockRobotBrake() -> number + * + * @par Lua示例 + * num = lockRobotBrake() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.lockRobotBrake","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->lockRobotBrake(); + * @endcode + * \endchinese + * + * \english + * Initiate robot brake lock request + * + * @return Returns 0 on success; error code on failure + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * lockRobotBrake(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * lockRobotBrake() -> number + * + * @par Lua example + * num = lockRobotBrake() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.lockRobotBrake","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->lockRobotBrake(); + * @endcode + * \endenglish + */ + int lockRobotBrake(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人断电请求 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * poweroff(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * poweroff() -> number + * + * @par Lua示例 + * num = poweroff() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.poweroff","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->poweroff(); + * @endcode + * \endchinese + * + * \english + * Initiate robot power-off request + * + * @return Returns 0 on success; error code on failure + * AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * poweroff(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * poweroff() -> number + * + * @par Lua example + * num = poweroff() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.poweroff","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->poweroff(); + * @endcode + * \endenglish + */ + int poweroff(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人反向驱动请求 + * + * @param enable + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * backdrive(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua函数原型 + * backdrive(enable: boolean) -> number + * + * @par Lua示例 + * num = backdrive(false) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.backdrive","params":[false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->backdrive(true); + * @endcode + * \endchinese + * + * \english + * Initiate robot backdrive request + * + * @param enable + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * backdrive(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua function prototype + * backdrive(enable: boolean) -> number + * + * @par Lua example + * num = backdrive(false) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.backdrive","params":[false],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->backdrive(true); + * @endcode + * \endenglish + */ + int backdrive(bool enable); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人自由驱动请求 + * 接口在软件版本 0.31.x 后已废弃,使用 handguideMode 接口替换 + * handguideMode({1,1,1,1,1}, {0,0,0,0,0,0}) + * + * @param enable + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * freedrive(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua函数原型 + * freedrive(enable: boolean) -> number + * + * @par Lua示例 + * num = freedrive(false) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.freedrive","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->freedrive(true); + * @endcode + * \endchinese + * + * \english + * Initiate robot freedrive request + * This interface is deprecated after software version 0.31.x, use + * handguideMode instead: handguideMode({1,1,1,1,1}, {0,0,0,0,0,0}) + * + * @param enable + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * freedrive(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua function prototype + * freedrive(enable: boolean) -> number + * + * @par Lua example + * num = freedrive(false) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.freedrive","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->freedrive(true); + * @endcode + * \endenglish + */ + int freedrive(bool enable); + + /** + * @ingroup RobotManage + * \chinese + * 设置拖动示教参数 + * + * @param freeAxes 可以拖动的轴 0-不能拖动 1-可以拖动 + * @param feature 如果维度为0,代表基于 TCP 坐标系拖动 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * + * \english + * Advanced hand-guiding mode + * + * @param freeAxes Axes that can be moved: 0-cannot move, 1-can move + * @param feature If the dimension is 0, it means hand-guiding based on + * the TCP coordinate system + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int setHandguideParams(const std::vector &freeAxes, + const std::vector &feature); + + /** + * @ingroup RobotManage + * \chinese + * 获取拖动轴 + * \endchinese + * + * \english + * Get Axes that can be moved + * \endenglish + */ + std::vector getHandguideFreeAxes(); + + /** + * @ingroup RobotManage + * \chinese + * 获取拖动参考坐标系 + * \endchinese + * + * \english + * Get the drag reference coordinate system + * \endenglish + */ + std::vector getHandguideFeature(); + + /** + * @ingroup RobotManage + * \chinese + * 高阶拖动示教 + * + * @param freeAxes 可以拖动的轴 0-不能拖动 1-可以拖动 + * @param feature 如果维度为0,代表基于 TCP 坐标系拖动 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * + * \english + * Advanced hand-guiding mode + * + * @param freeAxes Axes that can be moved: 0-cannot move, 1-can move + * @param feature If the dimension is 0, it means hand-guiding based on the + * TCP coordinate system + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int handguideMode(const std::vector &freeAxes, + const std::vector &feature); + + /** + * @ingroup RobotManage + * \chinese + * 退出拖动示教 + * + * @note 需 0.31.x 及以后软件版本 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endchinese + * + * \english + * Exit hand-guiding mode + * + * @note Requires software version 0.31.x or later + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int exitHandguideMode(); + + /** + * @ingroup RobotManage + * \chinese + * 获取拖动示教器的状态(是否处于奇异空间) + * + * @note 暂未实现 + * + * @return + * • 0 - 正常操作. + * • 1 - 接近奇异空间. + * • 2 - 极其接近奇异点,将产生较大的拖动阻尼. + * + * @throws arcs::common_interface::AuboException + * \endchinese + * + * \english + * Get the status of the hand-guiding device (whether it is in a singular + * space) + * + * @note Not implemented yet + * + * @return + * • 0 - Normal operation. + * • 1 - Approaching singular space. + * • 2 - Extremely close to a singularity, large hand-guiding damping will + * occur. + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int getHandguideStatus(); + + /** + * @ingroup RobotManage + * \chinese + * 获取拖动示教器触发源 + * + * @note 暂未实现 + * + * @return + * + * @throws arcs::common_interface::AuboException + * \endchinese + * + * \english + * Get the trigger source of the hand-guiding device + * + * @note Not implemented yet + * + * @return + * + * @throws arcs::common_interface::AuboException + * \endenglish + */ + int getHandguideTrigger(); + + /** + * @ingroup RobotManage + * \chinese + * 获取拖动示教使能状态 + * + * @return 使能返回true; 失能返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isHandguideEnabled() -> boolean + * + * @par Lua示例 + * Handguide = isHandguideEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isHandguideEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endchinese + * \english + * Get the hand-guiding enable status + * + * @return Returns true if enabled; false if disabled + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isHandguideEnabled() -> boolean + * + * @par Lua example + * Handguide = isHandguideEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isHandguideEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * \endenglish + */ + bool isHandguideEnabled(); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人进入/退出仿真模式请求 + * + * @param enable + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setSim(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua函数原型 + * setSim(enable: boolean) -> number + * + * @par Lua示例 + * num = setSim(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setSim","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setSim(true); + * @endcode + * \endchinese + * + * \english + * Initiate robot enter/exit simulation mode request + * + * @param enable + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setSim(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua function prototype + * setSim(enable: boolean) -> number + * + * @par Lua example + * num = setSim(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setSim","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setSim(true); + * @endcode + * \endenglish + */ + int setSim(bool enable); + + /** + * @ingroup RobotManage + * \chinese + * 设置机器人操作模式 + * + * @param mode 操作模式 + * + * @return 成功返回0; 失败返回错误码 + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setOperationalMode(self: pyaubo_sdk.RobotManage, arg0: + * arcs::common_interface::OperationalModeType) -> int + * + * @par Lua函数原型 + * setOperationalMode(mode: number) -> number + * + * @par Lua示例 + * num = setOperationalMode("Manual") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setOperationalMode","params":["Manual"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setOperationalMode(OperationalModeType::Automatic); + * @endcode + * \endchinese + * \english + * Set the robot operational mode + * + * @param mode Operational mode + * + * @return Returns 0 on success; error code on failure + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setOperationalMode(self: pyaubo_sdk.RobotManage, arg0: + * arcs::common_interface::OperationalModeType) -> int + * + * @par Lua function prototype + * setOperationalMode(mode: number) -> number + * + * @par Lua example + * num = setOperationalMode("Manual") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setOperationalMode","params":["Manual"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setOperationalMode(OperationalModeType::Automatic); + * @endcode + * \endenglish + */ + int setOperationalMode(OperationalModeType mode); + + /** + * @ingroup RobotManage + * \chinese + * 获取机器人操作模式 + * + * @return 机器人操作模式 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getOperationalMode(self: pyaubo_sdk.RobotManage) -> + * arcs::common_interface::OperationalModeType + * + * @par Lua函数原型 + * getOperationalMode() -> number + * + * @par Lua示例 + * num = getOperationalMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.getOperationalMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Manual"} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * OperationalModeType mode = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->getOperationalMode(); + * @endcode + * \endchinese + * \english + * Get the robot operational mode + * + * @return Robot operational mode + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getOperationalMode(self: pyaubo_sdk.RobotManage) -> + * arcs::common_interface::OperationalModeType + * + * @par Lua function prototype + * getOperationalMode() -> number + * + * @par Lua example + * num = getOperationalMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.getOperationalMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Manual"} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * OperationalModeType mode = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->getOperationalMode(); + * @endcode + * \endenglish + */ + OperationalModeType getOperationalMode(); + + /** + * @ingroup RobotManage + * \chinese + * 获取控制模式 + * + * @return 控制模式 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotControlMode(self: pyaubo_sdk.RobotManage) -> + * arcs::common_interface::RobotControlModeType + * + * @par Lua函数原型 + * getRobotControlMode() -> number + * + * @par Lua示例 + * num = getRobotControlMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.getRobotControlMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Position"} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotControlModeType mode = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->getRobotControlMode(); + * @endcode + * \endchinese + * \english + * Get the control mode + * + * @return Control mode + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotControlMode(self: pyaubo_sdk.RobotManage) -> + * arcs::common_interface::RobotControlModeType + * + * @par Lua function prototype + * getRobotControlMode() -> number + * + * @par Lua example + * num = getRobotControlMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.getRobotControlMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Position"} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotControlModeType mode = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->getRobotControlMode(); + * @endcode + * \endenglish + */ + RobotControlModeType getRobotControlMode(); + + /** + * @ingroup RobotManage + * \chinese + * 是否使能了拖动示教模式 + * + * @return 使能返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isFreedriveEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua函数原型 + * isFreedriveEnabled() -> boolean + * + * @par Lua示例 + * FreedriveEnabled = isFreedriveEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isFreedriveEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isFreedriveEnabled(); + * @endcode + * \endchinese + * \english + * Whether the freedrive mode is enabled + * + * @return Returns true if enabled; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isFreedriveEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua function prototype + * isFreedriveEnabled() -> boolean + * + * @par Lua example + * FreedriveEnabled = isFreedriveEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isFreedriveEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isFreedriveEnabled(); + * @endcode + * \endenglish + */ + bool isFreedriveEnabled(); + + /** + * @ingroup RobotManage + * \chinese + * 是否使能了反向驱动模式 + * + * @return 使能返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isBackdriveEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua函数原型 + * isBackdriveEnabled() -> boolean + * + * @par Lua示例 + * BackdriveEnabled = isBackdriveEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isBackdriveEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isBackdriveEnabled(); + * @endcode + * \endchinese + * \english + * Whether the backdrive mode is enabled + * + * @return Returns true if enabled; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isBackdriveEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua function prototype + * isBackdriveEnabled() -> boolean + * + * @par Lua example + * BackdriveEnabled = isBackdriveEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isBackdriveEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isBackdriveEnabled(); + * @endcode + * \endenglish + */ + bool isBackdriveEnabled(); + + /** + * @ingroup RobotManage + * \chinese + * 是否使能了仿真模式 + * + * @return 使能返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isSimulationEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua函数原型 + * isSimulationEnabled() -> boolean + * + * @par Lua示例 + * SimulationEnabled = isSimulationEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isSimulationEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isSimulationEnabled(); + * @endcode + * \endchinese + * \english + * Whether the simulation mode is enabled + * + * @return Returns true if enabled; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isSimulationEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua function prototype + * isSimulationEnabled() -> boolean + * + * @par Lua example + * SimulationEnabled = isSimulationEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isSimulationEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isSimulationEnabled(); + * @endcode + * \endenglish + */ + bool isSimulationEnabled(); + + /** + * @ingroup RobotManage + * \chinese + * 清除防护停机,包括碰撞停机 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setUnlockProtectiveStop(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * setUnlockProtectiveStop() -> number + * + * @par Lua示例 + * num = setUnlockProtectiveStop() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setUnlockProtectiveStop","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setUnlockProtectiveStop(); + * @endcode + * \endchinese + * \english + * Clear protective stop, including collision stop + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setUnlockProtectiveStop(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * setUnlockProtectiveStop() -> number + * + * @par Lua example + * num = setUnlockProtectiveStop() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setUnlockProtectiveStop","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setUnlockProtectiveStop(); + * @endcode + * \endenglish + */ + int setUnlockProtectiveStop(); + + /** + * @ingroup RobotManage + * \chinese + * 重置安全接口板,一般在机器人断电之后需要重置时调用,比如机器人急停、故障等之后 + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * restartInterfaceBoard(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua函数原型 + * restartInterfaceBoard() -> number + * + * @par Lua示例 + * num = restartInterfaceBoard() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.restartInterfaceBoard","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->restartInterfaceBoard(); + * @endcode + * \endchinese + * \english + * Reset the safety interface board, usually called after the robot is + * powered off and needs to be reset, such as after emergency stop or fault. + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * restartInterfaceBoard(self: pyaubo_sdk.RobotManage) -> int + * + * @par Lua function prototype + * restartInterfaceBoard() -> number + * + * @par Lua example + * num = restartInterfaceBoard() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.restartInterfaceBoard","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->restartInterfaceBoard(); + * @endcode + * \endenglish + */ + int restartInterfaceBoard(); + + /** + * @ingroup RobotManage + * \chinese + * 释放并清空指定内存缓存的记录数据 + * + * @param name + * 缓存名称 + * + * @return 成功返回0;失败返回错误码(<0) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * recordCacheFree(name: string) -> nil + * + * @par Lua示例 + * recordCacheFree("rec") + * + * \endchinese + * \english + * Free and clear recorded data of the specified memory cache + * + * @param name + * Cache name + * + * @return Returns 0 on success; negative error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * recordCacheFree(name: string) -> nil + * + * @par Lua example + * recordCacheFree("rec") + * + * \endenglish + */ + int recordCacheFree(const std::string &name); + + /** + * @ingroup RobotManage + * \chinese + * 开始实时轨迹的内存缓存记录(不落盘) + * + * @param name + * 缓存名称(用于索引内存中的记录数据)。空字符串将返回参数错误。 + * + * @return 成功返回0;失败返回错误码(<0) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * startRecordCache(name: string) -> nil + * + * @par Lua示例 + * startRecordCache("rec") + * + * \endchinese + * \english + * Start real-time trajectory recording to memory cache (no file output) + * + * @param name + * Cache name used to index recorded data in memory. Empty string returns + * invalid argument. + * + * @return Returns 0 on success; negative error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * startRecordCache(name: string) -> nil + * + * @par Lua example + * startRecordCache("rec") + * + * \endenglish + */ + int startRecordCache(const std::string &name); + + /** + * @ingroup RobotManage + * \chinese + * 停止当前实时轨迹内存缓存记录 + * + * @return 成功返回0;失败返回错误码(<0) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * stopRecordCache() -> nil + * + * @par Lua示例 + * stopRecordCache() + * + * \endchinese + * \english + * Stop current real-time trajectory recording to memory cache + * + * @return Returns 0 on success; negative error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * stopRecordCache() -> nil + * + * @par Lua example + * stopRecordCache() + * + * \endenglish + */ + int stopRecordCache(); + + /** + * @ingroup RobotManage + * \chinese + * 暂停/恢复当前实时轨迹内存缓存记录 + * + * @param pause + * true:暂停缓存记录;false:恢复缓存记录 + * + * @return 成功返回0;失败返回错误码(<0) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * pauseRecordCache(pause: boolean) -> nil + * + * @par Lua示例 + * pauseRecordCache(true) -- 暂停 + * pauseRecordCache(false) -- 恢复 + * + * \endchinese + * \english + * Pause or resume current real-time trajectory recording to memory cache + * + * @param pause + * true to pause cache recording; false to resume cache recording + * + * @return Returns 0 on success; negative error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * pauseRecordCache(pause: boolean) -> nil + * + * @par Lua example + * pauseRecordCache(true) -- pause + * pauseRecordCache(false) -- resume + * + * \endenglish + */ + int pauseRecordCache(bool pause); + + /** + * @ingroup RobotManage + * \chinese + * 获取指定内存缓存的记录数据 + * + * @param name + * 缓存名称 + * + * @param frames + * 获取帧数上限: + * - frames=0:获取全部已记录帧(1帧=1周期) + * - frames>0:最多获取最近 frames 帧 + * + * @return 成功返回获取到的帧数(>=0);失败返回错误码(<0) + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * getRecordCache(name: string, frames: number = 0) -> number + * + * @par Lua示例 + * n = getRecordCache("rec") -- 获取全部,返回帧数 + * n = getRecordCache("rec", 2000) -- 获取最近2000帧,返回帧数 + * + * \endchinese + * \english + * Get recorded data from the specified memory cache + * + * @param name + * Cache name + * + * @param frames + * Frame limit: + * - frames=0: get all recorded frames (1 frame = 1 control cycle) + * - frames>0: get up to the latest 'frames' frames + * + * @return Returns the number of frames fetched (>=0) on success; + * negative error code on failure + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * getRecordCache(name: string, frames: number = 0) -> number + * + * @par Lua example + * n = getRecordCache("rec") -- all frames, returns count + * n = getRecordCache("rec", 2000) -- latest 2000 frames, returns count + * + * \endenglish + */ + int getRecordCache(const std::string &name, size_t frames = 0); + + /** + * @ingroup RobotManage + * \chinese + * 开始实时轨迹的记录 + * + * @param file_name + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * startRecord(fiel_name: string) -> nil + * + * @par Lua示例 + * startRecord("traje.csv") + * + * \endchinese + * \english + * Start real-time trajectory recording + * + * @param file_name + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_INVL_ARGUMENT + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * startRecord(fiel_name: string) -> nil + * + * @par Lua example + * startRecord("traje.csv") + * + * \endenglish + */ + int startRecord(const std::string &file_name); + + /** + * @ingroup RobotManage + * \chinese + * 停止实时记录 + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * stopRecord() -> nil + * + * @par Lua示例 + * stopRecord() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.stopRecord","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Stop real-time recording + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * stopRecord() -> nil + * + * @par Lua example + * stopRecord() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.stopRecord","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int stopRecord(); + + /** + * @ingroup RobotManage + * \chinese + * 暂停实时记录 + * + * @param pause + * + * @return 成功返回0;失败返回错误码 + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.pauseRecord","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Pause real-time recording + * + * @param pause + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_BAD_STATE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.pauseRecord","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int pauseRecord(bool pause); + + /** + * @ingroup RobotManage + * \chinese + * 发起机器人进入/退出联动模式请求, + * 只有操作模式为自动或者无时,才能使能联动模式 + * + * @param enable + * + * @return 成功返回0; 失败返回错误码 + * AUBO_BUSY + * AUBO_REQUEST_IGNORE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * setLinkModeEnable(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua函数原型 + * setLinkModeEnable(enable: boolean) -> number + * + * @par Lua示例 + * num = setLinkModeEnable(true) + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setLinkModeEnable","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setLinkModeEnable(true); + * @endcode + * \endchinese + * \english + * Initiate robot enter/exit link mode request. + * Link mode can only be enabled when the operation mode is Automatic or + * None. + * + * @param enable + * + * @return Returns 0 on success; error code on failure + * AUBO_BUSY + * AUBO_REQUEST_IGNORE + * -AUBO_BAD_STATE + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * setLinkModeEnable(self: pyaubo_sdk.RobotManage, arg0: bool) -> int + * + * @par Lua function prototype + * setLinkModeEnable(enable: boolean) -> number + * + * @par Lua example + * num = setLinkModeEnable(true) + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.setLinkModeEnable","params":[true],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->setLinkModeEnable(true); + * @endcode + * \endenglish + */ + int setLinkModeEnable(bool enable); + + /** + * @ingroup RobotManage + * \chinese + * 是否使能了联动模式,联动模式下用户可以通过外部IO控制机器人(用户可以对IO的功能进行配置) + * + * @return 使能返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isLinkModeEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua函数原型 + * isLinkModeEnabled() -> boolean + * + * @par Lua示例 + * LinkModeEnabled = isLinkModeEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isLinkModeEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isLinkModeEnabled(); + * @endcode + * \endchinese + * \english + * Whether the link mode is enabled. In link mode, users can control the + * robot via external IO (users can configure the IO functions). + * + * @return Returns true if enabled; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isLinkModeEnabled(self: pyaubo_sdk.RobotManage) -> bool + * + * @par Lua function prototype + * isLinkModeEnabled() -> boolean + * + * @par Lua example + * LinkModeEnabled = isLinkModeEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.isLinkModeEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->isLinkModeEnabled(); + * @endcode + * \endenglish + */ + bool isLinkModeEnabled(); + + /** + * @ingroup RobotManage + * \chinese + * 手动触发生成诊断文件 + * + * @return 指令下发成功返回0; 失败返回错误码。 \n + * -AUBO_BAD_STATE: 运行时(RuntimeMachine)的当前状态不是Stopped, + * 固件升级请求被拒绝。AUBO_BAD_STATE的值是1。 \n + * -AUBO_TIMEOUT: 超时。AUBO_TIMEOUT的值是4。 \n + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * generateDiagnoseFile(self: pyaubo_sdk.RobotManage, arg0: str) -> int + * + * @par Lua函数原型 + * generateDiagnoseFile(reason: string) -> nil + * + * @par Lua示例 + * generateDiagnoseFile("reason") + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotManage.generateDiagnoseFile","params":["reason"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->generateDiagnoseFile("reason"); + * @endcode + * \endchinese + * \english + * Manually trigger the generation of a diagnostic file + * + * @return Returns 0 if the command is successfully issued; error code on + * failure. \n -AUBO_BAD_STATE: The current state of the RuntimeMachine is + * not Stopped, the firmware upgrade request is rejected. The value of + * AUBO_BAD_STATE is 1. \n -AUBO_TIMEOUT: Timeout. The value of AUBO_TIMEOUT + * is 4. \n + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * generateDiagnoseFile(self: pyaubo_sdk.RobotManage, arg0: str) -> int + * + * @par Lua function prototype + * generateDiagnoseFile(reason: string) -> nil + * + * @par Lua example + * generateDiagnoseFile("reason") + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotManage.generateDiagnoseFile","params":["reason"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * bool isEnabled = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage()->generateDiagnoseFile("reason"); + * @endcode + * \endenglish + */ + int generateDiagnoseFile(const std::string &reason); + +protected: + void *d_; +}; +using RobotManagePtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_ROBOT_CONTROL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_state.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_state.h new file mode 100644 index 00000000..c576d9bb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot/robot_state.h @@ -0,0 +1,3583 @@ +/** @file robot_state.h + * @brief 获取机器人状态接口,如关节速度、关节角度、固件/硬件版本 + */ +#ifndef AUBO_SDK_ROBOT_STATE_INTERFACE_H +#define AUBO_SDK_ROBOT_STATE_INTERFACE_H + +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RobotState RobotState (机器人状态查询) + * @ingroup RobotInterface + * \endchinese + * + * \english + * @defgroup RobotState Robot State Query + * @ingroup RobotInterface + * \endenglish + * RobotState + */ +class ARCS_ABI_EXPORT RobotState +{ +public: + RobotState(); + virtual ~RobotState(); + + /** + * @ingroup RobotState + * \chinese + * 获取机器人的模式状态 + * + * @return 机器人的模式状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotModeType(self: pyaubo_sdk.RobotState) -> + * arcs::common_interface::RobotModeType + * + * @par Lua函数原型 + * getRobotModeType() -> number + * + * @par Lua示例 + * RobotModeType = getRobotModeType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotModeType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Running"} + * + *\endchinese + *\english + * Get the robot mode state + * + * @return The robot's mode state + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotModeType(self: pyaubo_sdk.RobotState) -> + * arcs::common_interface::RobotModeType + * + * @par Lua function prototype + * getRobotModeType() -> number + * + * @par Lua example + * RobotModeType = getRobotModeType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotModeType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Running"} + *\endenglish + */ + + RobotModeType getRobotModeType(); + + /** + * @ingroup RobotState + * \chinese + * 获取安全模式 + * + * @return 安全模式 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSafetyModeType(self: pyaubo_sdk.RobotState) -> + * arcs::common_interface::SafetyModeType + * + * @par Lua函数原型 + * getSafetyModeType() -> number + * + * @par Lua示例 + * SafetyModeType = getSafetyModeType() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSafetyModeType","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Normal"} + * \endchinese + * \english + * Get the safety mode + * + * @return The safety mode + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSafetyModeType(self: pyaubo_sdk.RobotState) -> + * arcs::common_interface::SafetyModeType + * + * @par Lua function prototype + * getSafetyModeType() -> number + * + * @par Lua example + * SafetyModeType = getSafetyModeType() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSafetyModeType","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"Normal"} + * \endenglish + */ + SafetyModeType getSafetyModeType(); + + /** + * @ingroup RobotState + * \chinese + * 获取机器人通电状态 + * + * @return 机器人通电返回 true; 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isPowerOn() -> boolean + * + * @par Lua示例 + * PowerOn = isPowerOn() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isPowerOn","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Get the robot power-on state + * + * @return Returns true if the robot is powered on; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isPowerOn() -> boolean + * + * @par Lua example + * PowerOn = isPowerOn() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isPowerOn","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isPowerOn(); + + /** + * @ingroup RobotState + * \chinese + * 机器人是否已经停止下来 + * + * @return 停止返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isSteady(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua函数原型 + * isSteady() -> boolean + * + * @par Lua示例 + * Steady = isSteady() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isSteady","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Whether the robot has stopped + * + * @return Returns true if stopped; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isSteady(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua function prototype + * isSteady() -> boolean + * + * @par Lua exaple + * Steady = isSteady() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isSteady","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isSteady(); + + /** + * @ingroup RobotState + * \chinese + * 机器人是否发生了碰撞 + * + * @return 发生碰撞返回 true; 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua函数原型 + * isCollisionOccurred() -> boolean + * + * @par Lua示例 + * CollisionOccurred = isCollisionOccurred() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isCollisionOccurred","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":false} + * \endchinese + * \english + * Whether a collision has occurred + * + * @return Returns true if a collision occurred; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Lua function prototype + * isCollisionOccurred() -> boolean + * + * @par Lua example + * CollisionOccurred = isCollisionOccurred() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isCollisionOccurred","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":false} + * \endenglish + */ + bool isCollisionOccurred(); + + /** + * @ingroup RobotState + * \chinese + * 机器人是否已经在安全限制之内 + * + * @return 在安全限制之内返回true; 反之返回false + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isWithinSafetyLimits(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua函数原型 + * isWithinSafetyLimits() -> boolean + * + * @par Lua示例 + * WithinSafetyLimits = isWithinSafetyLimits() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isWithinSafetyLimits","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Whether the robot is within safety limits + * + * @return Returns true if within safety limits; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isWithinSafetyLimits(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua function prototype + * isWithinSafetyLimits() -> boolean + * + * @par Lua example + * WithinSafetyLimits = isWithinSafetyLimits() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isWithinSafetyLimits","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isWithinSafetyLimits(); + + /** + * @ingroup RobotState + * \chinese + * 获取当前的TCP位姿,其 TCP 偏移可以通过 getActualTcpOffset 获取 + * + * 位姿表示形式为(x,y,z,rx,ry,rz)。 + * 其中x、y、z是工具中心点(TCP)在基坐标系下的位置,单位是m。 + * rx、ry、rz是工具中心点(TCP)在基坐标系下的姿态,是ZYX欧拉角,单位是rad。 + * + * @return TCP的位姿,形式为(x,y,z,rx,ry,rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpPose() -> table + * + * @par Lua示例 + * TcpPose = getTcpPose() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.41777839846910425,-0.13250000000000012,0.20928451364415995,3.1415792312578987,0.0,1.5707963267948963]} + * \endchinese + * \english + * Get the current TCP pose. The TCP offset can be obtained by + * getActualTcpOffset. + * + * The pose is represented as (x, y, z, rx, ry, rz). + * x, y, z are the position of the Tool Center Point (TCP) in the base + * coordinate system, in meters. rx, ry, rz are the orientation of the TCP + * in the base coordinate system, as ZYX Euler angles in radians. + * + * @return The TCP pose, in the form (x, y, z, rx, ry, rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpPose() -> table + * + * @par Lua example + * TcpPose = getTcpPose() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.41777839846910425,-0.13250000000000012,0.20928451364415995,3.1415792312578987,0.0,1.5707963267948963]} + * \endenglish + */ + std::vector getTcpPose(); + /** + * @ingroup RobotState + * \chinese + * 获取当前已启用外部轴轴组协同 TCP 位姿。 + * + * @return TCP 在工件坐标系下的位姿 + * \endchinese + * \english + * Get current coordinated TCP pose with the enabled external axis group. + * + * @return TCP pose in workpiece frame + * \endenglish + */ + std::vector getTcpPoseWithAxisGroup(); + + /** + * @ingroup RobotState + * \chinese + * 获取当前的 TCP 偏移,也就是 getTcpPose 返回的 pose 用到的 TCP 偏移 + * + * @return 当前的 TCP 偏移 + * + * @par Lua函数原型 + * getActualTcpOffset() -> table + * + * @par Lua示例 + * ActualTcpOffset = getActualTcpOffset() + * + * \endchinese + * \english + * Get the current TCP offset, which is the TCP offset used by the pose + * returned from getTcpPose + * + * @return The current TCP offset + * + * @par Lua function prototype + * getActualTcpOffset() -> table + * + * @par Lua example + * ActualTcpOffset = getActualTcpOffset() + * + * \endenglish + */ + std::vector getActualTcpOffset(); + + /** + * @ingroup RobotState + * \chinese + * 获取下一个目标路点 + * 注意与 getTcpTargetPose 的区别,此处定义存在歧义,命名需要优化 + * + * 位姿表示形式为(x,y,z,rx,ry,rz)。 + * 其中x、y、z是工具中心点(TCP)在基坐标系下的目标位置,单位是m。 + * rx、ry、rz是工具中心点(TCP)在基坐标系下的目标姿态,是ZYX欧拉角,单位是rad。 + * + * @return 当前目标位姿,形式为(x,y,z,rx,ry,rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTargetTcpPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTargetTcpPose() -> table + * + * @par Lua示例 + * TargetTcpPose = getTargetTcpPose() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTargetTcpPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.4173932217619493,-0.13250000000000012,0.43296496133045825,3.141577313781914,0.0,1.5707963267948963]} + * \endchinese + * \english + * Get the next target waypoint. + * Note the difference from getTcpTargetPose; the definition here is + * ambiguous and the naming needs improvement. + * + * The pose is represented as (x, y, z, rx, ry, rz). + * x, y, z are the target position of the Tool Center Point (TCP) in the + * base coordinate system, in meters. rx, ry, rz are the target orientation + * of the TCP in the base coordinate system, as ZYX Euler angles in radians. + * + * @return The current target pose, in the form (x, y, z, rx, ry, rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTargetTcpPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTargetTcpPose() -> table + * + * @par Lua example + * TargetTcpPose = getTargetTcpPose() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTargetTcpPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.4173932217619493,-0.13250000000000012,0.43296496133045825,3.141577313781914,0.0,1.5707963267948963]} + * \endenglish + */ + std::vector getTargetTcpPose(); + + /** + * @ingroup RobotState + * \chinese + * 获取工具端的位姿(不带TCP偏移) + * + * 位姿表示形式为(x,y,z,rx,ry,rz)。 + * 其中x、y、z是法兰盘中心在基坐标系下的目标位置,单位是m。 + * rx、ry、rz是法兰盘中心在基坐标系下的目标姿态,是ZYX欧拉角,单位是rad。 + * + * @return 工具端的位姿,形式为(x,y,z,rx,ry,rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getToolPose() -> table + * + * @par Lua示例 + * ToolPose = getToolPose() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.41777820858878617,-0.13250000000000012,0.20928410288421018,3.141579231257899,0.0,1.5707963267948963]} + * \endchinese + * \english + * Get the tool pose (without TCP offset) + * + * The pose is represented as (x, y, z, rx, ry, rz). + * x, y, z are the target position of the flange center in the base + * coordinate system, in meters. rx, ry, rz are the target orientation of + * the flange center in the base coordinate system, as ZYX Euler angles in + * radians. + * + * @return The tool pose, in the form (x, y, z, rx, ry, rz) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getToolPose() -> table + * + * @par Lua example + * ToolPose = getToolPose() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.41777820858878617,-0.13250000000000012,0.20928410288421018,3.141579231257899,0.0,1.5707963267948963]} + * \endenglish + */ + std::vector getToolPose(); + + /** + * @ingroup RobotState + * \chinese + * 获取TCP速度 + * + * @return TCP速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpSpeed(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpSpeed() -> table + * + * @par Lua示例 + * TcpSpeed = getTcpSpeed() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpSpeed","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP speed + * + * @return TCP speed + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpSpeed(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpSpeed() -> table + * + * @par Lua example + * TcpSpeed = getTcpSpeed() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpSpeed","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpSpeed(); + + /** + * @ingroup RobotState + * \chinese + * 获取TCP的力/力矩 + * + * @return TCP的力/力矩 + * + * @par Python函数原型 + * getTcpForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpForce() -> table + * + * @par Lua示例 + * TcpForce = getTcpForce() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpForce","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP force/torque + * + * @return TCP force/torque + * + * @par Python function prototype + * getTcpForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpForce() -> table + * + * @par Lua example + * TcpForce = getTcpForce() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpForce","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpForce(); + + /** + * @ingroup RobotState + * \chinese + * 获取肘部的位置 + * + * @return 肘部的位置 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getElbowPosistion(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getElbowPosistion() -> table + * + * @par Lua示例 + * ElbowPosistion = getElbowPosistion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getElbowPosistion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.07355755887512408,-0.1325,0.43200874126125227,-1.5707963267948968,0.433006344376404,0.0]} + * \endchinese + * \english + * Get the position of the elbow + * + * @return The position of the elbow + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getElbowPosistion(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getElbowPosistion() -> table + * + * @par Lua example + * ElbowPosistion = getElbowPosistion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getElbowPosistion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.07355755887512408,-0.1325,0.43200874126125227,-1.5707963267948968,0.433006344376404,0.0]} + * \endenglish + */ + std::vector getElbowPosistion(); + + /** + * @ingroup RobotState + * \chinese + * 获取肘部速度 + * + * @return 肘部速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getElbowVelocity(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getElbowVelocity() -> table + * + * @par Lua示例 + * ElbowVelocity = getElbowVelocity() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getElbowVelocity","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the elbow velocity + * + * @return Elbow velocity + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getElbowVelocity(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getElbowVelocity() -> table + * + * @par Lua example + * ElbowVelocity = getElbowVelocity() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getElbowVelocity","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getElbowVelocity(); + + /** + * @ingroup RobotState + * \chinese + * 获取基座力/力矩 + * + * @return 基座力/力矩 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getBaseForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getBaseForce() -> table + * + * @par Lua示例 + * BaseForce = getBaseForce() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getBaseForce","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the base force/torque + * + * @return Base force/torque + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getBaseForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getBaseForce() -> table + * + * @par Lua example + * BaseForce = getBaseForce() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getBaseForce","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getBaseForce(); + + /** + * @ingroup RobotState + * \chinese + * 获取上一次发送的TCP目标位姿 + * + * @return TCP目标位姿 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpTargetPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpTargetPose() -> table + * + * @par Lua示例 + * TcpTargetPose = getTcpTargetPose() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetPose","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.41777829240862013,-0.13250000000000012,0.2092832117232601,3.1415812372223217,0.0,1.5707963267948963]} + * \endchinese + * \english + * Get the last sent TCP target pose + * + * @return TCP target pose + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpTargetPose(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpTargetPose() -> table + * + * @par Lua example + * TcpTargetPose = getTcpTargetPose() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetPose","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.41777829240862013,-0.13250000000000012,0.2092832117232601,3.1415812372223217,0.0,1.5707963267948963]} + * \endenglish + */ + std::vector getTcpTargetPose(); + + /** + * @ingroup RobotState + * \chinese + * 获取TCP目标速度 + * + * @return TCP目标速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpTargetSpeed(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpTargetSpeed() -> table + * + * @par Lua示例 + * TcpTargetSpeed = getTcpTargetSpeed() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetSpeed","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP target speed + * + * @return TCP target speed + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpTargetSpeed(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpTargetSpeed() -> table + * + * @par Lua example + * TcpTargetSpeed = getTcpTargetSpeed() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetSpeed","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpTargetSpeed(); + + /** + * @ingroup RobotState + * \chinese + * 获取TCP目标力/力矩 + * + * @return TCP目标力/力矩 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpTargetForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpTargetForce() -> table + * + * @par Lua示例 + * TcpTargetForce = getTcpTargetForce() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetForce","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP target force/torque + * + * @return TCP target force/torque + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpTargetForce(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpTargetForce() -> table + * + * @par Lua example + * TcpTargetForce = getTcpTargetForce() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpTargetForce","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpTargetForce(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节标志 + * + * @return 机械臂关节标志 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointState(self: pyaubo_sdk.RobotState) -> + * List[arcs::common_interface::JointStateType] + * + * @par Lua函数原型 + * getJointState() -> table + * + * @par Lua示例 + * JointState = getJointState() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointState","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["Running","Running","Running","Running","Running","Running"]} + * \endchinese + * \english + * Get the joint state of the manipulator + * + * @return Joint state of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointState(self: pyaubo_sdk.RobotState) -> + * List[arcs::common_interface::JointStateType] + * + * @par Lua function prototype + * getJointState() -> table + * + * @par Lua example + * JointState = getJointState() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointState","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["Running","Running","Running","Running","Running","Running"]} + * \endenglish + */ + std::vector getJointState(); + + /** + * @ingroup RobotState + * \chinese + * 获取关节的伺服状态 + * + * @return 关节的伺服状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointServoMode(self: pyaubo_sdk.RobotState) -> + * List[arcs::common_interface::JointServoModeType] + * + * @par Lua函数原型 + * getJointServoMode() -> table + * + * @par Lua示例 + * JointServoMode = getJointServoMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointServoMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["Position","Position","Position","Position","Position","Position"]} + * \endchinese + * \english + * Get the servo state of the joints + * + * @return The servo state of the joints + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointServoMode(self: pyaubo_sdk.RobotState) -> + * List[arcs::common_interface::JointServoModeType] + * + * @par Lua function prototype + * getJointServoMode() -> table + * + * @par Lua example + * JointServoMode = getJointServoMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointServoMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["Position","Position","Position","Position","Position","Position"]} + * \endenglish + */ + std::vector getJointServoMode(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节角度 + * + * @return 机械臂关节角度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointPositions(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointPositions() -> table + * + * @par Lua示例 + * JointPositions = getJointPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.26199241371495835,1.7418102574563423,0.4330197667082982,1.5707963267948966,0.0]} + * \endchinese + * \english + * Get the joint positions of the manipulator + * + * @return Joint positions of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointPositions(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointPositions() -> table + * + * @par Lua example + * JointPositions = getJointPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.26199241371495835,1.7418102574563423,0.4330197667082982,1.5707963267948966,0.0]} + * \endenglish + */ + std::vector getJointPositions(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂历史关节角度 + * + * @param steps 步数 + * @return 机械臂历史关节角度 + * \endchinese + * \english + * Get the historical joint positions of the manipulator + * + * @param steps Number of steps + * @return Historical joint positions of the manipulator + * \endenglish + */ + std::vector getJointPositionsHistory(int steps); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节速度 + * + * @return 机械臂关节速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointSpeeds(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointSpeeds() -> table + * + * @par Lua示例 + * JointSpeeds = getJointSpeeds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointSpeeds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the joint speeds of the manipulator + * + * @return Joint speeds of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointSpeeds(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointSpeeds() -> table + * + * @par Lua example + * JointSpeeds = getJointSpeeds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointSpeeds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointSpeeds(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节加速度 + * + * @return 机械臂关节加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointAccelerations(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointAccelerations() -> table + * + * @par Lua示例 + * JointAccelerations = getJointAccelerations() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointAccelerations","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the joint accelerations of the manipulator + * + * @return Joint accelerations of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointAccelerations(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointAccelerations() -> table + * + * @par Lua example + * JointAccelerations = getJointAccelerations() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointAccelerations","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointAccelerations(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节力矩 + * + * @return 机械臂关节力矩 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTorqueSensors(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTorqueSensors() -> table + * + * @par Lua示例 + * JointTorqueSensors = getJointTorqueSensors() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTorqueSensors","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,6275.367736816406,-7704.2816162109375,3586.9766235351563,503.0364990234375,1506.0882568359375]} + * \endchinese + * \english + * Get the joint torques of the manipulator + * + * @return Joint torques of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTorqueSensors(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTorqueSensors() -> table + * + * @par Lua example + * JointTorqueSensors = getJointTorqueSensors() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTorqueSensors","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,6275.367736816406,-7704.2816162109375,3586.9766235351563,503.0364990234375,1506.0882568359375]} + * \endenglish + */ + std::vector getJointTorqueSensors(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂的关节力矩 + * + * @return 机械臂标定后的关节力矩,单位:Nm + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTorques() -> table + * + * @par Lua示例 + * JointTorques = getJointTorques() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTorques","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the joint torques + * + * @return joint torques in Nm + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTorques() -> table + * + * @par Lua example + * JointTorques = getJointTorques() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTorques","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointTorques(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节接触力矩(外力距) + * + * @return 机械臂关节接触力矩 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointContactTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointContactTorques() -> table + * + * @par Lua示例 + * JointContactTorques = getJointContactTorques() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointContactTorques","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the joint contact torques (external torques) of the manipulator + * + * @return Joint contact torques of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointContactTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointContactTorques() -> table + * + * @par Lua example + * JointContactTorques = getJointContactTorques() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointContactTorques","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointContactTorques(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节重力矩 + * + * @return 机械臂关节重力矩,包含6个关节的力矩值(单位:Nm) + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointGravityTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointGravityTorques() -> table + * + * @par Lua示例 + * local jointGravityTorques = getJointGravityTorques() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointGravityTorques","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1.23, -2.34, 3.45, -4.56, 0.78, -0.12]} + * \endchinese + * \english + * Get the joint gravity torque of the manipulator + * + * @return Joint gravity torque of the manipulator, containing torque values + * for 6 joints (unit: Nm) + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointGravityTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointGravityTorques() -> table + * + * @par Lua example + * local jointGravityTorques = getJointGravityTorques() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointGravityTorques","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1.23, -2.34, 3.45, -4.56, 0.78, -0.12]} + * \endenglish + */ + std::vector getJointGravityTorques(); + + /** + * \chinese + * 获取底座力传感器读数 + * + * @return 底座力传感器读数 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getBaseForceSensor(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getBaseForceSensor() -> table + * + * @par Lua示例 + * BaseForceSensor = getBaseForceSensor() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getBaseForceSensor","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the base force sensor readings + * + * @return Base force sensor readings + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getBaseForceSensor(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getBaseForceSensor() -> table + * + * @par Lua example + * BaseForceSensor = getBaseForceSensor() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getBaseForceSensor","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getBaseForceSensor(); + + /** + * @ingroup RobotState + * \chinese + * 获取TCP力传感器读数 + * + * @return TCP力传感器读数 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getTcpForceSensors(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getTcpForceSensors() -> table + * + * @par Lua示例 + * TcpForceSensors = getTcpForceSensors() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpForceSensors","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the TCP force sensor readings + * + * @return TCP force sensor readings + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getTcpForceSensors(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getTcpForceSensors() -> table + * + * @par Lua example + * TcpForceSensors = getTcpForceSensors() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpForceSensors","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getTcpForceSensors(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节电流 + * + * @return 机械臂关节电流 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointCurrents(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointCurrents() -> table + * + * @par Lua示例 + * JointCurrents = getJointCurrents() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointCurrents","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,1.25885009765625,-1.5289306640625,0.71868896484375,0.1007080078125,0.3021240234375]} + * \endchinese + * \english + * Get the joint currents of the manipulator + * + * @return Joint currents of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointCurrents(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointCurrents() -> table + * + * @par Lua example + * JointCurrents = getJointCurrents() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointCurrents","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,1.25885009765625,-1.5289306640625,0.71868896484375,0.1007080078125,0.3021240234375]} + * \endenglish + */ + std::vector getJointCurrents(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节电压 + * + * @return 机械臂关节电压 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointVoltages(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointVoltages() -> table + * + * @par Lua示例 + * JointVoltages = getJointVoltages() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointVoltages","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[2.0,2.5,3.0,2.0,2.5,2.0]} + * \endchinese + * \english + * Get the joint voltages of the manipulator + * + * @return Joint voltages of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointVoltages(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointVoltages() -> table + * + * @par Lua example + * JointVoltages = getJointVoltages() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointVoltages","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[2.0,2.5,3.0,2.0,2.5,2.0]} + * \endenglish + */ + std::vector getJointVoltages(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节温度 + * + * @return 机械臂关节温度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTemperatures(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTemperatures() -> table + * + * @par Lua示例 + * JointTemperatures = getJointTemperatures() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTemperatures","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[38.0,38.0,38.0,39.0,38.0,39.0]} + * \endchinese + * \english + * Get the joint temperatures of the manipulator + * + * @return Joint temperatures of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTemperatures(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTemperatures() -> table + * + * @par Lua example + * JointTemperatures = getJointTemperatures() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTemperatures","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[38.0,38.0,38.0,39.0,38.0,39.0]} + * \endenglish + */ + std::vector getJointTemperatures(); + + /** + * @ingroup RobotState + * \chinese + * 获取关节全球唯一ID + * + * @return 关节全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointUniqueIds(self: pyaubo_sdk.RobotState) -> List[str] + * + * @par Lua函数原型 + * getJointUniqueIds() -> table + * + * @par Lua示例 + * JointUniqueIds = getJointUniqueIds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointUniqueIds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["00800020ffffffff31405153","00800020ffffffff3e3f5153","00800020ffffffff414b5153","00800020ffffffff31065153","00800020ffffffff41535153","00800020ffffffff41545153"]} + * \endchinese + * \english + * Get the globally unique IDs of the joints + * + * @return Globally unique IDs of the joints + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointUniqueIds(self: pyaubo_sdk.RobotState) -> List[str] + * + * @par Lua function prototype + * getJointUniqueIds() -> table + * + * @par Lua example + * JointUniqueIds = getJointUniqueIds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointUniqueIds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":["00800020ffffffff31405153","00800020ffffffff3e3f5153","00800020ffffffff414b5153","00800020ffffffff31065153","00800020ffffffff41535153","00800020ffffffff41545153"]} + * \endenglish + */ + std::vector getJointUniqueIds(); + + /** + * @ingroup RobotState + * \chinese + * 获取关节固件版本 + * + * @return 关节固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointFirmwareVersions(self: pyaubo_sdk.RobotState) -> List[int] + * + * @par Lua函数原型 + * getJointFirmwareVersions() -> table + * + * @par Lua示例 + * JointFirmwareVersions = getJointFirmwareVersions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointFirmwareVersions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1000010,1000010,1000010,1000010,1000010,1000010]} + * \endchinese + * \english + * Get the joint firmware versions + * + * @return Joint firmware versions + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointFirmwareVersions(self: pyaubo_sdk.RobotState) -> List[int] + * + * @par Lua function prototype + * getJointFirmwareVersions() -> table + * + * @par Lua example + * JointFirmwareVersions = getJointFirmwareVersions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointFirmwareVersions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1000010,1000010,1000010,1000010,1000010,1000010]} + * \endenglish + */ + std::vector getJointFirmwareVersions(); + + /** + * @ingroup RobotState + * \chinese + * 获取关节硬件版本 + * + * @return 关节硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointHardwareVersions(self: pyaubo_sdk.RobotState) -> List[int] + * + * @par Lua函数原型 + * getJointHardwareVersions() -> table + * + * @par Lua示例 + * JointHardwareVersions = getJointHardwareVersions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointHardwareVersions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[1000000,1000000,1004000,1004000,1004000,1004000]} + * \endchinese + * \english + * Get the joint hardware versions + * + * @return Joint hardware versions + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointHardwareVersions(self: pyaubo_sdk.RobotState) -> List[int] + * + * @par Lua function prototype + * getJointHardwareVersions() -> table + * + * @par Lua example + * JointHardwareVersions = getJointHardwareVersions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointHardwareVersions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[1000000,1000000,1004000,1004000,1004000,1004000]} + * \endenglish + */ + std::vector getJointHardwareVersions(); + + /** + * @ingroup RobotState + * \chinese + * 获取MasterBoard全球唯一ID + * + * @return MasterBoard全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMasterBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getMasterBoardUniqueId() -> string + * + * @par Lua示例 + * MasterBoardUniqueId = getMasterBoardUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"001e0044510f343037323637"} + * \endchinese + * \english + * Get the globally unique ID of the MasterBoard + * + * @return Globally unique ID of the MasterBoard + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMasterBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getMasterBoardUniqueId() -> string + * + * @par Lua example + * MasterBoardUniqueId = getMasterBoardUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"001e0044510f343037323637"} + * \endenglish + */ + std::string getMasterBoardUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取MasterBoard固件版本 + * + * @return MasterBoard固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMasterBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getMasterBoardFirmwareVersion() -> number + * + * @par Lua示例 + * MasterBoardFirmwareVersion = getMasterBoardFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1000004} + * \endchinese + * \english + * Get the MasterBoard firmware version + * + * @return MasterBoard firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMasterBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getMasterBoardFirmwareVersion() -> number + * + * @par Lua example + * MasterBoardFirmwareVersion = getMasterBoardFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1000004} + * \endenglish + */ + int getMasterBoardFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取MasterBoard硬件版本 + * + * @return MasterBoard硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMasterBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getMasterBoardHardwareVersion() -> number + * + * @par Lua示例 + * MasterBoardHardwareVersion = getMasterBoardHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1000000} + * \endchinese + * \english + * Get the MasterBoard hardware version + * + * @return MasterBoard hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMasterBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getMasterBoardHardwareVersion() -> number + * + * @par Lua example + * MasterBoardHardwareVersion = getMasterBoardHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMasterBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1000000} + * \endenglish + */ + int getMasterBoardHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取SlaveBoard全球唯一ID + * + * @return SlaveBoard全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSlaveBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getSlaveBoardUniqueId() -> string + * + * @par Lua示例 + * SlaveBoardUniqueId = getSlaveBoardUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endchinese + * \english + * Get the globally unique ID of the SlaveBoard + * + * @return Globally unique ID of the SlaveBoard + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSlaveBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getSlaveBoardUniqueId() -> string + * + * @par Lua example + * SlaveBoardUniqueId = getSlaveBoardUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endenglish + */ + std::string getSlaveBoardUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取SlaveBoard固件版本 + * + * @return SlaveBoard固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSlaveBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getSlaveBoardFirmwareVersion() -> number + * + * @par Lua示例 + * SlaveBoardFirmwareVersion = getSlaveBoardFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the SlaveBoard firmware version + * + * @return SlaveBoard firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSlaveBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getSlaveBoardFirmwareVersion() -> number + * + * @par Lua example + * SlaveBoardFirmwareVersion = getSlaveBoardFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getSlaveBoardFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取SlaveBoard硬件版本 + * + * @return SlaveBoard硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getSlaveBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getSlaveBoardHardwareVersion() -> number + * + * @par Lua示例 + * SlaveBoardHardwareVersion = getSlaveBoardHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endchinese + * \english + * Get the SlaveBoard hardware version + * + * @return SlaveBoard hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getSlaveBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getSlaveBoardHardwareVersion() -> number + * + * @par Lua example + * SlaveBoardHardwareVersion = getSlaveBoardHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlaveBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endenglish + */ + int getSlaveBoardHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取Handle全球唯一ID + * + * @return Handle全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getHandleUniqueId() -> string + * + * @par Lua示例 + * HandleUniqueId = getHandleUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endchinese + * \english + * Get the globally unique ID of the Handle + * + * @return Globally unique ID of the Handle + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getHandleUniqueId() -> string + * + * @par Lua example + * HandleUniqueId = getHandleUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endenglish + */ + std::string getHandleUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取Handle固件版本 + * + * @return Handle固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getHandleFirmwareVersion() -> number + * + * @par Lua示例 + * HandleFirmwareVersion = getHandleFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the Handle firmware version + * + * @return Handle firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getHandleFirmwareVersion() -> number + * + * @par Lua example + * HandleFirmwareVersion = getHandleFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getHandleFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取Handle硬件版本 + * + * @return Handle硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getHandleHardwareVersion() -> number + * + * @par Lua示例 + * HandleHardwareVersion = getHandleHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endchinese + * \english + * Get the Handle hardware version + * + * @return Handle hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getHandleHardwareVersion() -> number + * + * @par Lua example + * HandleHardwareVersion = getHandleHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endenglish + */ + int getHandleHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取Handle状态 + * + * @return Handle状态 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleState(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getHandleState() -> number + * + * @par Lua示例 + * HandleState = getHandleState() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleState","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endchinese + * \english + * Get the Handle state + * + * @return Handle state + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleState(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getHandleState() -> number + * + * @par Lua example + * HandleState = getHandleState() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleState","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endenglish + */ + HandleStateType getHandleState(); + + /** + * @ingroup RobotState + * \chinese + * 获取Handle类型 + * + * @return Handle类型 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getHandleMode(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getHandleMode() -> number + * + * @par Lua示例 + * HandleMode = getHandleMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endchinese + * \english + * Get the Handle mode + * + * @return Handle mode + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getHandleMode(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getHandleMode() -> number + * + * @par Lua example + * HandleMode = getHandleMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getHandleMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * \endenglish + */ + HandleModeType getHandleMode(); + + /** + * @ingroup RobotState + * \chinese + * 获取PowerlossBoard全球唯一ID + * + * @return PowerlossBoard全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPowerlossBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getPowerlossBoardUniqueId() -> string + * + * @par Lua示例 + * PowerlossBoardUniqueId = getPowerlossBoardUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endchinese + * \english + * Get the globally unique ID of the PowerlossBoard + * + * @return Globally unique ID of the PowerlossBoard + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPowerlossBoardUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getPowerlossBoardUniqueId() -> string + * + * @par Lua example + * PowerlossBoardUniqueId = getPowerlossBoardUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"736572630080000000000000"} + * \endenglish + */ + std::string getPowerlossBoardUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取PowerlossBoard固件版本 + * + * @return PowerlossBoard固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPowerlossBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getPowerlossBoardFirmwareVersion() -> number + * + * @par Lua示例 + * PowerlossBoardFirmwareVersion = getPowerlossBoardFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the PowerlossBoard firmware version + * + * @return PowerlossBoard firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPowerlossBoardFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getPowerlossBoardFirmwareVersion() -> number + * + * @par Lua example + * PowerlossBoardFirmwareVersion = getPowerlossBoardFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getPowerlossBoardFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取PowerlossBoard硬件版本 + * + * @return PowerlossBoard硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPowerlossBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getPowerlossBoardHardwareVersion() -> number + * + * @par Lua示例 + * PowerlossBoardHardwareVersion = getPowerlossBoardHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endchinese + * \english + * Get the PowerlossBoard hardware version + * + * @return PowerlossBoard hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPowerlossBoardHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getPowerlossBoardHardwareVersion() -> number + * + * @par Lua example + * PowerlossBoardHardwareVersion = getPowerlossBoardHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPowerlossBoardHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":6030098} + * \endenglish + */ + int getPowerlossBoardHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取工具端全球唯一ID + * + * @return 工具端全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getToolUniqueId() -> string + * + * @par Lua示例 + * ToolUniqueId = getToolUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"397d4e5331541252314d3042"} + * \endchinese + * \english + * Get the globally unique ID of the tool + * + * @return Globally unique ID of the tool + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getToolUniqueId() -> string + * + * @par Lua example + * ToolUniqueId = getToolUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"397d4e5331541252314d3042"} + * \endenglish + */ + std::string getToolUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取工具端固件版本 + * + * @return 工具端固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getToolFirmwareVersion() -> number + * + * @par Lua示例 + * ToolFirmwareVersion = getToolFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1001003} + * \endchinese + * \english + * Get the tool firmware version + * + * @return Tool firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getToolFirmwareVersion() -> number + * + * @par Lua example + * ToolFirmwareVersion = getToolFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1001003} + * \endenglish + */ + int getToolFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取工具端硬件版本 + * + * @return 工具端硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getToolHardwareVersion() -> number + * + * @par Lua示例 + * ToolHardwareVersion = getToolHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1000000} + * \endchinese + * \english + * Get the tool hardware version + * + * @return Tool hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getToolHardwareVersion() -> number + * + * @par Lua example + * ToolHardwareVersion = getToolHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1000000} + * \endenglish + */ + int getToolHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取末端通信模式 + * + * @return 末端通信模式 + * 0: 表示无串口 + * 1: 表示只有串口 + * 2: 表示带力传感器和串口 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getToolCommMode(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getToolCommMode() -> number + * + * @par Lua示例 + * ToolCommMode = getToolCommMode() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolCommMode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1} + * \endchinese + * \english + * Get the tool communication mode + * + * @return Tool communication mode + * 0: No serial port + * 1: Serial port only + * 2: With force sensor and serial port + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getToolCommMode(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getToolCommMode() -> number + * + * @par Lua example + * ToolCommMode = getToolCommMode() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getToolCommMode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1} + * \endenglish + */ + int getToolCommMode(); + + /** + * @ingroup RobotState + * \chinese + * 获取底座全球唯一ID + * + * @return 底座全球唯一ID + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPedestalUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua函数原型 + * getPedestalUniqueId() -> string + * + * @par Lua示例 + * PedestalUniqueId = getPedestalUniqueId() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalUniqueId","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"205257533543065248544339"} + * \endchinese + * \english + * Get the globally unique ID of the pedestal + * + * @return Globally unique ID of the pedestal + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPedestalUniqueId(self: pyaubo_sdk.RobotState) -> str + * + * @par Lua function prototype + * getPedestalUniqueId() -> string + * + * @par Lua example + * PedestalUniqueId = getPedestalUniqueId() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalUniqueId","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"205257533543065248544339"} + * \endenglish + */ + std::string getPedestalUniqueId(); + + /** + * @ingroup RobotState + * \chinese + * 获取底座固件版本 + * + * @return 底座固件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPedestalFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getPedestalFirmwareVersion() -> number + * + * @par Lua示例 + * PedestalFirmwareVersion = getPedestalFirmwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1000004} + * \endchinese + * \english + * Get the pedestal firmware version + * + * @return Pedestal firmware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPedestalFirmwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getPedestalFirmwareVersion() -> number + * + * @par Lua example + * PedestalFirmwareVersion = getPedestalFirmwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalFirmwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1000004} + * \endenglish + */ + int getPedestalFirmwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取底座硬件版本 + * + * @return 底座硬件版本 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPedestalHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua函数原型 + * getPedestalHardwareVersion() -> number + * + * @par Lua示例 + * PedestalHardwareVersion = getPedestalHardwareVersion() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":1007000} + * \endchinese + * \english + * Get the pedestal hardware version + * + * @return Pedestal hardware version + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPedestalHardwareVersion(self: pyaubo_sdk.RobotState) -> int + * + * @par Lua function prototype + * getPedestalHardwareVersion() -> number + * + * @par Lua example + * PedestalHardwareVersion = getPedestalHardwareVersion() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalHardwareVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":1007000} + * \endenglish + */ + int getPedestalHardwareVersion(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节目标位置角度 + * + * @return 机械臂关节目标位置角度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTargetPositions(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTargetPositions() -> table + * + * @par Lua示例 + * JointTargetPositions = getJointTargetPositions() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetPositions","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.2619944355631239,1.7418124015308052,0.4330219266665035,1.5707963267948966,0.0]} + * \endchinese + * \english + * Get the target joint positions (angles) of the manipulator + * + * @return Target joint positions (angles) of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTargetPositions(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTargetPositions() -> table + * + * @par Lua example + * JointTargetPositions = getJointTargetPositions() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetPositions","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.2619944355631239,1.7418124015308052,0.4330219266665035,1.5707963267948966,0.0]} + * \endenglish + */ + std::vector getJointTargetPositions(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节目标速度 + * + * @return 机械臂关节目标速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTargetSpeeds(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTargetSpeeds() -> table + * + * @par Lua示例 + * JointTargetSpeeds = getJointTargetSpeeds() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetSpeeds","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.00024227101509399773,0.0016521760307419697,0.0026521060731088397,0.0,0.0]} + * \endchinese + * \english + * Get the target joint speeds of the manipulator + * + * @return Target joint speeds of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTargetSpeeds(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTargetSpeeds() -> table + * + * @par Lua example + * JointTargetSpeeds = getJointTargetSpeeds() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetSpeeds","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.00024227101509399773,0.0016521760307419697,0.0026521060731088397,0.0,0.0]} + * \endenglish + */ + std::vector getJointTargetSpeeds(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节目标加速度 + * + * @return 机械臂关节目标加速度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTargetAccelerations(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTargetAccelerations() -> table + * + * @par Lua示例 + * JointTargetAccelerations = getJointTargetAccelerations() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetAccelerations","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.6737932929246071,-12.610253240108449,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the target joint accelerations of the manipulator + * + * @return Target joint accelerations of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTargetAccelerations(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTargetAccelerations() -> table + * + * @par Lua example + * JointTargetAccelerations = getJointTargetAccelerations() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetAccelerations","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,-0.6737932929246071,-12.610253240108449,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointTargetAccelerations(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节目标力矩 + * + * @return 机械臂关节目标力矩 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTargetTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTargetTorques() -> table + * + * @par Lua示例 + * JointTargetTorques = getJointTargetTorques() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetTorques","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the target joint torques of the manipulator + * + * @return Target joint torques of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTargetTorques(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTargetTorques() -> table + * + * @par Lua example + * JointTargetTorques = getJointTargetTorques() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetTorques","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointTargetTorques(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂关节目标电流 + * + * @return 机械臂关节目标电流 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getJointTargetCurrents(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua函数原型 + * getJointTargetCurrents() -> table + * + * @par Lua示例 + * JointTargetCurrents = getJointTargetCurrents() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetCurrents","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endchinese + * \english + * Get the target joint currents of the manipulator + * + * @return Target joint currents of the manipulator + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getJointTargetCurrents(self: pyaubo_sdk.RobotState) -> List[float] + * + * @par Lua function prototype + * getJointTargetCurrents() -> table + * + * @par Lua example + * JointTargetCurrents = getJointTargetCurrents() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getJointTargetCurrents","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":[0.0,0.0,0.0,0.0,0.0,0.0]} + * \endenglish + */ + std::vector getJointTargetCurrents(); + + /** + * @ingroup RobotState + * \chinese + * 获取示教器是否已启用 + * 指示教器使能按钮是否处于按下状态 + * + * @return 按下示教器使能按钮返回 false; 反之返回 true + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isTeachPendantEnabled(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua函数原型 + * isTeachPendantEnabled() -> boolean + * + * @par Lua示例 + * TeachPendantEnabled = isTeachPendantEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isTeachPendantEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Get whether the teach pendant is enabled. + * Indicates whether the enable button of teach pendant is in the pressed + * state. + * + * @return Returns false if the enable button of teach pendant is pressed; + * otherwise returns true + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isTeachPendantEnabled(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua function prototype + * isTeachPendantEnabled() -> boolean + * + * @par Lua example + * TeachPendantEnabled = isTeachPendantEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isTeachPendantEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isTeachPendantEnabled(); + + /** + * @ingroup RobotState + * \chinese + * 获取机械臂末端是否已启用 + * + * @return 无末端返回 false; 有末端返回 true + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * isToolFlangeEnabled(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua函数原型 + * isToolFlangeEnabled() -> boolean + * + * @par Lua示例 + * toolEnabled = isToolFlangeEnabled() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.isToolFlangeEnabled","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * \endchinese + * \english + * Get whether the tool flange is enabled. + * + * @return Returns false if the tool flange is disabled; otherwise returns + * true + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * isToolFlangeEnabled(self: pyaubo_sdk.RobotState) -> bool + * + * @par Lua function prototype + * isToolFlangeEnabled() -> boolean + * + * @par Lua example + * toolEnabled = isToolFlangeEnabled() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.isToolFlangeEnabled","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":true} + * \endenglish + */ + bool isToolFlangeEnabled(); + + /** + * @ingroup RobotState + * \chinese + * 获取控制柜温度 + * + * @return 控制柜温度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getControlBoxTemperature(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getControlBoxTemperature() -> number + * + * @par Lua示例 + * ControlBoxTemperature = getControlBoxTemperature() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getControlBoxTemperature","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":25.0} + * \endchinese + * \english + * Get the control box temperature + * + * @return Control box temperature + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getControlBoxTemperature(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getControlBoxTemperature() -> number + * + * @par Lua example + * ControlBoxTemperature = getControlBoxTemperature() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getControlBoxTemperature","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":25.0} + * \endenglish + */ + double getControlBoxTemperature(); + + /** + * @ingroup RobotState + * \chinese + * 获取控制柜湿度 + * + * @return 控制柜湿度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getControlBoxHumidity(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getControlBoxHumidity() -> number + * + * @par Lua示例 + * ControlBoxHumidity = getControlBoxHumidity() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getControlBoxHumidity","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":20.0} + * \endchinese + * \english + * Get the control box humidity + * + * @return Control box humidity + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getControlBoxHumidity(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getControlBoxHumidity() -> number + * + * @par Lua example + * ControlBoxHumidity = getControlBoxHumidity() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getControlBoxHumidity","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":20.0} + * \endenglish + */ + double getControlBoxHumidity(); + + /** + * @ingroup RobotState + * \chinese + * 获取母线电压 + * + * @return 母线电压 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMainVoltage(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getMainVoltage() -> number + * + * @par Lua示例 + * MainVoltage = getMainVoltage() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMainVoltage","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":52.75} + * \endchinese + * \english + * Get the main bus voltage + * + * @return Main bus voltage + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMainVoltage(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getMainVoltage() -> number + * + * @par Lua example + * MainVoltage = getMainVoltage() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMainVoltage","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":52.75} + * \endenglish + */ + double getMainVoltage(); + + /** + * @ingroup RobotState + * \chinese + * 获取母线电流 + * + * @return 母线电流 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getMainCurrent(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getMainCurrent() -> number + * + * @par Lua示例 + * MainCurrent = getMainCurrent() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMainCurrent","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.3204345703125} + * \endchinese + * \english + * Get the main bus current + * + * @return Main bus current + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getMainCurrent(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getMainCurrent() -> number + * + * @par Lua example + * MainCurrent = getMainCurrent() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getMainCurrent","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.3204345703125} + * \endenglish + */ + double getMainCurrent(); + + /** + * @ingroup RobotState + * \chinese + * 获取机器人电压 + * + * @return 机器人电压 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotVoltage(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getRobotVoltage() -> number + * + * @par Lua示例 + * RobotVoltage = getRobotVoltage() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotVoltage","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":52.75} + * \endchinese + * \english + * Get the robot voltage + * + * @return Robot voltage + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotVoltage(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getRobotVoltage() -> number + * + * @par Lua example + * RobotVoltage = getRobotVoltage() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotVoltage","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":52.75} + * \endenglish + */ + double getRobotVoltage(); + + /** + * @ingroup RobotState + * \chinese + * 获取机器人电流 + * + * @return 机器人电流 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getRobotCurrent(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getRobotCurrent() -> number + * + * @par Lua示例 + * RobotCurrent = getRobotCurrent() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotCurrent","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0.3204345703125} + * \endchinese + * \english + * Get the robot current + * + * @return Robot current + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getRobotCurrent(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getRobotCurrent() -> number + * + * @par Lua example + * RobotCurrent = getRobotCurrent() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getRobotCurrent","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0.3204345703125} + * \endenglish + */ + double getRobotCurrent(); + + /** + * @ingroup RobotState + * \chinese + * 获取底座制动电阻温度 + * + * @return 底座制动电阻温度 + * + * @throws arcs::common_interface::AuboException + * + * @par Python函数原型 + * getPedestalBrakeResTemp(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua函数原型 + * getPedestalBrakeResTemp() -> number + * + * @par Lua示例 + * PedestalBrakeResTemp = getPedestalBrakeResTemp() + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalBrakeResTemp","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":23.1111} + * \endchinese + * \english + * Get the Pedestal Brake Res Temp + * + * @return Pedestal Brake Res Temp + * + * @throws arcs::common_interface::AuboException + * + * @par Python function prototype + * getPedestalBrakeResTemp(self: pyaubo_sdk.RobotState) -> float + * + * @par Lua function prototype + * getPedestalBrakeResTemp() -> number + * + * @par Lua example + * PedestalBrakeResTemp = getPedestalBrakeResTemp() + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getPedestalBrakeResTemp","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":24.235} + * \endenglish + */ + double getPedestalBrakeResTemp(); + + /** + * @ingroup RobotState + * \chinese + * 获取机器人缓速等级 + * + * @return 机器人缓速等级 + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlowDownLevel","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the robot slow down level + * + * @return Robot slow down level + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlowDownLevel","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int getSlowDownLevel(); + + /** + * @ingroup RobotState + * \chinese + * 获取末端力传感器通信状态 + * + * @param name 力传感器名称,与 selectTcpForceSensor 的参数一致 + * @return 通信正常返回 true; 反之返回 false + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.RobotState.getTcpForceSensorStatus","params":["tool.KWR75A"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Get the communication status of the tool force sensor + * + * @param name force sensor name, it is consistent with the parameters of + * 'selectTcpForceSensor' + * @return Returns true if communication is normal; otherwise returns false + * + * @throws arcs::common_interface::AuboException + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.RobotState.getSlowDownLevel","params":["tool.KWR75A"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + bool getTcpForceSensorStatus(const std::string &name); + +protected: + void *d_; +}; +using RobotStatePtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs +#endif // AUBO_SDK_ROBOT_STATE_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot_interface.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot_interface.h new file mode 100644 index 00000000..6e6656e4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/robot_interface.h @@ -0,0 +1,403 @@ +/** @file robot_interface.h + * @brief 机器人API 接口 + */ +#ifndef AUBO_SDK_ROBOT_INTERFACE_H +#define AUBO_SDK_ROBOT_INTERFACE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RobotInterface RobotInterface(机器人模块) + * 机器人模块 + * \endchinese + * + * \english + * @defgroup RobotInterface Robot Module + * Robot Module + * \endenglish + */ +class ARCS_ABI_EXPORT RobotInterface +{ +public: + RobotInterface(); + virtual ~RobotInterface(); + + /** + * @ingroup RobotInterface + * @ref RobotConfig + * \chinese + * 获取RobotConfig接口 + * + * @return RobotConfigPtr对象的指针 + * + * @par Python函数原型 + * getRobotConfig(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotConfig + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotConfigPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotConfig(); + * @endcode + * \endchinese + * \english + * Get RobotConfig interface + * + * @return Pointer to RobotConfig object + * + * @par Python function prototype + * getRobotConfig(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotConfig + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotConfigPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotConfig(); + * @endcode + * \endenglish + */ + + RobotConfigPtr getRobotConfig(); + + /** + * @ingroup RobotInterface + * @ref MotionControl + * \chinese + * 获取运动规划接口 + * + * @return MotionControlPtr对象的指针 + * + * @par Python函数原型 + * getMotionControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::MotionControl + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * MotionControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getMotionControl(); + * @endcode + * \endchinese + * \english + * Get motion planning interface + * + * @return Pointer to MotionControl object + * + * @par Python function prototype + * getMotionControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::MotionControl + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * MotionControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getMotionControl(); + * @endcode + * \endenglish + */ + MotionControlPtr getMotionControl(); + + /** + * @ingroup RobotInterface + * @ref ForceControl + * \chinese + * 获取力控接口 + * + * @return ForceControlPtr对象的指针 + * + * @par Python函数原型 + * getForceControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::ForceControl + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * ForceControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getForceControl(); + * @endcode + * \endchinese + * \english + * Get force control interface + * + * @return Pointer to ForceControl object + * + * @par Python function prototype + * getForceControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::ForceControl + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * ForceControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getForceControl(); + * @endcode + * \endenglish + */ + ForceControlPtr getForceControl(); + + /** + * @ingroup RobotInterface + * @ref IoControl + * \chinese + * 获取IO控制的接口 + * + * @return IoControlPtr对象的指针 + * + * @par Python函数原型 + * getIoControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::IoControl + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * IoControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getIoControl(); + * @endcode + * \endchinese + * \english + * Get IO control interface + * + * @return Pointer to IoControl object + * + * @par Python function prototype + * getIoControl(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::IoControl + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * IoControlPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getIoControl(); + * @endcode + * \endenglish + */ + IoControlPtr getIoControl(); + + /** + * @ingroup RobotInterface + * @ref SyncMove + * \chinese + * 获取同步运动接口 + * + * @return SyncMovePtr对象的指针 + * + * @par Python函数原型 + * getSyncMove(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::SyncMove + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * SyncMovePtr ptr = rpc_cli->getRobotInterface(robot_name)->getSyncMove(); + * @endcode + * \endchinese + * \english + * Get synchronized motion interface + * + * @return Pointer to SyncMove object + * + * @par Python function prototype + * getSyncMove(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::SyncMove + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * SyncMovePtr ptr = rpc_cli->getRobotInterface(robot_name)->getSyncMove(); + * @endcode + * \endenglish + */ + SyncMovePtr getSyncMove(); + + /** + * @ingroup RobotInterface + * @ref RobotAlgorithm + * \chinese + * 获取机器人实用算法接口 + * + * @return RobotAlgorithmPtr对象的指针 + * + * @par Python函数原型 + * getRobotAlgorithm(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotAlgorithm + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotAlgorithmPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotAlgorithm(); + * @endcode + * \endchinese + * \english + * Get robot utility algorithm interface + * + * @return Pointer to RobotAlgorithm object + * + * @par Python function prototype + * getRobotAlgorithm(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotAlgorithm + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotAlgorithmPtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotAlgorithm(); + * @endcode + * \endenglish + */ + RobotAlgorithmPtr getRobotAlgorithm(); + + /** + * @ingroup RobotInterface + * @ref RobotManage + * \chinese + * 获取机器人管理接口(上电、启动、停止等) + * + * @return RobotManagePtr对象的指针 + * + * @par Python函数原型 + * getRobotManage(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotManage + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotManagePtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage(); + * @endcode + * \endchinese + * \english + * Get robot management interface (power on, start, stop, etc.) + * + * @return Pointer to RobotManage object + * + * @par Python function prototype + * getRobotManage(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotManage + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotManagePtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotManage(); + * @endcode + * \endenglish + */ + RobotManagePtr getRobotManage(); + + /** + * @ingroup RobotInterface + * @ref RobotState + * \chinese + * 获取机器人状态接口 + * + * @return RobotStatePtr对象的指针 + * + * @par Python函数原型 + * getRobotState(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotState + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotStatePtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotState(); + * @endcode + * \endchinese + * \english + * Get robot state interface + * + * @return Pointer to RobotState object + * + * @par Python function prototype + * getRobotState(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::RobotState + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotStatePtr ptr = + * rpc_cli->getRobotInterface(robot_name)->getRobotState(); + * @endcode + * \endenglish + */ + RobotStatePtr getRobotState(); + + /** + * @ingroup RobotInterface + * @ref Trace + * \chinese + * 获取告警信息接口 + * + * @return TracePtr对象的指针 + * + * @par Python函数原型 + * getTrace(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::Trace + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * TracePtr ptr = rpc_cli->getRobotInterface(robot_name)->getTrace(); + * @endcode + * \endchinese + * \english + * Get alarm information interface + * + * @return Pointer to Trace object + * + * @par Python function prototype + * getTrace(self: pyaubo_sdk.RobotInterface) -> + * arcs::common_interface::Trace + * + * @par C++ example + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * TracePtr ptr = rpc_cli->getRobotInterface(robot_name)->getTrace(); + * @endcode + * \endenglish + */ + TracePtr getTrace(); + +protected: + void *d_; +}; +using RobotInterfacePtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs + +#endif // AUBO_SDK_ROBOT_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/runtime_machine.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/runtime_machine.h new file mode 100644 index 00000000..f6587f3c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/runtime_machine.h @@ -0,0 +1,1629 @@ +/** @file runtime_machine.h + * @brief Script interpreter runtime interface, + * allows pausing the script interpreter and setting/removing breakpoints. + */ +#ifndef AUBO_SDK_RUNTIME_MACHINE_INTERFACE_H +#define AUBO_SDK_RUNTIME_MACHINE_INTERFACE_H + +#include +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup RuntimeMachine RuntimeMachine (运行时管理) + * \endchinese + * + * \english + * @defgroup RuntimeMachine Runtime Management + * \endenglish + */ +class ARCS_ABI_EXPORT RuntimeMachine +{ +public: + RuntimeMachine(); + virtual ~RuntimeMachine(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 返回 task_id + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.newTask","params":[false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":26} + * \endchinese + * \english + * Returns the task_id + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.newTask","params":[false],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":26} + * \endenglish + */ + int newTask(bool daemon = false); + + /** + * @ingroup RuntimeMachine + * \chinese + * 删除 task,会终止正在执行的运动 + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.deleteTask","params":[26],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete a task, which will terminate any ongoing motion. + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.deleteTask","params":[26],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int deleteTask(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 等待 task 自然结束 + * + * @param tid + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.detachTask","params":[26],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Wait for the task to finish naturally + * + * @param tid + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.detachTask","params":[26],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int detachTask(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 判断任务是否存活 + * + * @param tid + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.isTaskAlive","params":[26],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endchinese + * \english + * Check if the task is alive + * + * @param tid + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.isTaskAlive","params":[26],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":true} + * + * \endenglish + */ + bool isTaskAlive(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取任务中缓存的指令的数量 + * + * @param tid + * @return + * \endchinese + * \english + * Get the number of cached instructions in the task + * + * @param tid + * @return + * \endenglish + */ + int getTaskQueueSize(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 切换当前线程,切换之后接下来的指令将被插入切换后的线程中 + * + * @param tid + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.switchTask","params":[26],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Switch the current thread. After switching, subsequent instructions will + * be inserted into the switched thread. + * + * @param tid + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.switchTask","params":[26],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int switchTask(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 标记记下来的指令的行号和注释 + * + * @param lineno + * @param comment + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.setLabel","params":[5,"moveJoint"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Mark the line number and comment of the recorded instruction + * + * @param lineno + * @param comment + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.setLabel","params":[5,"moveJoint"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setLabel(int lineno, const std::string &comment); + + /** + * @ingroup RuntimeMachine + * \chinese + * 向aubo_control日志中添加注释 + * 使用 setLabel 替换 + * + * @param tid 指令的线程ID + * @param lineno 行号 + * @param comment 注释 + * @return + * + * @par Python函数原型 + * setPlanContext(self: pyaubo_sdk.RuntimeMachine, arg0: int, arg1: int, + * arg2: str) -> int + * + * @par Lua函数原型 + * setPlanContext(tid: number, lineno: number, comment: string) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.setPlanContext","params":[26,3,"moveJoint"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Add a comment to the aubo_control log + * Use setLabel instead + * + * @param tid Thread ID of the instruction + * @param lineno Line number + * @param comment Comment + * @return + * + * @par Python function prototype + * setPlanContext(self: pyaubo_sdk.RuntimeMachine, arg0: int, arg1: int, + * arg2: str) -> int + * + * @par Lua function prototype + * setPlanContext(tid: number, lineno: number, comment: string) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.setPlanContext","params":[26,3,"moveJoint"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + ARCS_DEPRECATED int setPlanContext(int tid, int lineno, + const std::string &comment); + + /** + * @ingroup RuntimeMachine + * \chinese + * 空操作 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.nop","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * No operation + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.nop","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int nop(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取耗时的接口(INST)执行状态, 如 setPersistentParameters + * + * @return 指令名字, 执行状态 + * 执行状态: EXECUTING/FINISHED + * + * @par Python函数原型 + * getExecutionStatus(self: pyaubo_sdk.RuntimeMachine) -> Tuple[str, str, + * int] + * + * @par Lua函数原型 + * getExecutionStatus() -> string, string, number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getExecutionStatus","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["confirmSafetyParameters","FINISHED"]} + * + * \endchinese + * \english + * Get the execution status of time-consuming interfaces (INST), such as + * setPersistentParameters + * + * @return Instruction name, execution status + * Execution status: EXECUTING/FINISHED + * + * @par Python function prototype + * getExecutionStatus(self: pyaubo_sdk.RuntimeMachine) -> Tuple[str, str, + * int] + * + * @par Lua function prototype + * getExecutionStatus() -> string, string, number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getExecutionStatus","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":["confirmSafetyParameters","FINISHED"]} + * + * \endenglish + */ + std::tuple getExecutionStatus(); + std::tuple getExecutionStatus1(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 跳转到指定行号 + * + * @param lineno + * @return + * + * @par Python函数原型 + * gotoLine(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua函数原型 + * gotoLine(lineno: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.gotoLine","params":[10],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Jump to the specified line number + * + * @param lineno + * @return + * + * @par Python function prototype + * gotoLine(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua function prototype + * gotoLine(lineno: number) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.gotoLine","params":[10],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int gotoLine(int lineno); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取当前运行上下文 + * + * @param tid 任务编号 + * 如果指定(不是-1),返回对应任务的运行上下文;如果不指定(是-1),返回正在运行的线程的运行上下文 + * + * @return + * + * @par Python函数原型 + * getPlanContext(self: pyaubo_sdk.RuntimeMachine) -> Tuple[int, int, str] + * + * @par Lua函数原型 + * getPlanContext() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getPlanContext","params":[-1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[-1,0,""]} + * + * \endchinese + * \english + * Get the current runtime context + * + * @param tid Task ID + * If specified (not -1), returns the runtime context of the corresponding + * task; if not specified (is -1), returns the runtime context of the + * currently running thread + * + * @return + * + * @par Python function prototype + * getPlanContext(self: pyaubo_sdk.RuntimeMachine) -> Tuple[int, int, str] + * + * @par Lua function prototype + * getPlanContext() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getPlanContext","params":[-1],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":[-1,0,""]} + * + * \endenglish + */ + std::tuple getPlanContext(int tid = -1); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取提前运行规划器的上下文信息 + * + * @param tid 任务编号 + * 如果指定(不是-1),返回对应任务运行规划器的上下文信息;如果不指定(是-1),返回正在运行的线程运行规划器的上下文信息 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePlanContext","params":[-1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[-1,-1,""]} + * + * \endchinese + * \english + * Get the context information of the advance planner + * + * @param tid Task ID + * If specified (not -1), returns the context information of the advance + * planner for the corresponding task; if not specified (is -1), returns the + * context information of the advance planner for the currently running + * thread + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePlanContext","params":[-1],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":[-1,-1,""]} + * + * \endenglish + */ + std::tuple getAdvancePlanContext(int tid = -1); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取AdvanceRun的程序指针 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePtr","params":[-1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Get the program pointer of AdvanceRun + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getAdvancePtr","params":[-1],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int getAdvancePtr(int tid = -1); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取机器人运动的程序指针 + * + * @param tid 任务编号 + * 如果指定(不是-1),返回对应任务的程序指针;如果不指定(是-1),返回正在运行线程的程序指针 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getMainPtr","params":[-1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Get the program pointer of robot motion + * + * @param tid Task ID + * If specified (not -1), returns the program pointer of the corresponding + * task; if not specified (is -1), returns the program pointer of the + * currently running thread + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getMainPtr","params":[-1],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int getMainPtr(int tid = -1); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取最近解释过的指令指针 + * + * @param tid + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getInterpPtr","params":[26],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endchinese + * \english + * Get the pointer of the most recently interpreted instruction + * + * @param tid + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getInterpPtr","params":[26],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":-1} + * + * \endenglish + */ + int getInterpPtr(int tid); + + /** + * @ingroup RuntimeMachine + * \chinese + * 加载本地工程文件 + * Lua 脚本,只需要给出文件名字,不需要后缀,需要从 ${ARCS_WS}/program + * 目录中查找 + * + * @param program + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.loadProgram","params":["demo"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Load a local project file. + * For Lua scripts, only the file name is required (no extension), and it + * will be searched in the ${ARCS_WS}/program directory. + * + * @param program + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.loadProgram","params":["demo"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int loadProgram(const std::string &program); + + /** + * @ingroup RuntimeMachine + * \chinese + * 预加载工程文件 + * + * @param index 0~99 工程索引号 + * @param program 工程名字 + * @return + * \endchinese + * \english + * Preload project file + * + * @param index Project index number (0~99) + * @param program Project name + * @return + * \endenglish + */ + int preloadProgram(int index, const std::string &program); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取预加载工程文件名字,如果没有加载或者超出索引范围则返回空字符串 + * + * @param index 0~99 工程索引号 + * @return 工程文件名字 + * \endchinese + * \english + * Get the name of the preloaded project file. Returns an empty string if + * not loaded or index is out of range. + * + * @param index Project index number (0~99) + * @return Project file name + * \endenglish + */ + std::string getPreloadProgram(int index); + + /** + * @ingroup RuntimeMachine + * \chinese + * 清除所有已预加载的工程文件 + * 调用此方法将释放所有通过 preloadProgram + * 预加载的工程索引及其关联的工程名称 + * + * @return 成功返回0; + * \endchinese + * \english + * Clear all preloaded project files. + * Calling this method will release all project indices and their associated + * program names that were previously preloaded via preloadProgram. + * + * @return Returns 0 on success; + * \endenglish + */ + int clearPreloadPrograms(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 运行已经加载的工程文件 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.runProgram","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Run the already loaded project file + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.runProgram","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int runProgram(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 开始运行时 + * + * @return + * + * @par Python函数原型 + * start(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * start() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.start","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Start the runtime + * + * @return + * + * @par Python function prototype + * start(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * start() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.start","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int start(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 停止运行时即脚本运行,无法停止运行时状态为 Stopped 时的机器人运动 + * + * 如果考虑停止机器人所有运动,可以调用 RuntimeMachine::abort 接口 + * + * @return + * + * @par Python函数原型 + * stop(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * stop() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.stop","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Stop the runtime, i.e., stop script execution. Cannot stop robot motion + * when the runtime state is Stopped. + * + * If you want to stop all robot motion, use the RuntimeMachine::abort + * interface. + * + * @return + * + * @par Python function prototype + * stop(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * stop() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.stop","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int stop(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 终止机器人运行. + * + * 如果只是考虑停止运行时,可以调用 RuntimeMachine::stop 接口 + * + * 如果脚本运行时处于 Running 状态,则终止运行时;如果运行时处于 Stopped + * 且机器人正在移动,则停止机器人移动;如果此时力控开启了,则机器人停止力控 + * + * @return + * + * @par Python函数原型 + * abort(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * abort() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.abort","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Abort robot operation. + * + * If you only want to stop the runtime, you can call the + * RuntimeMachine::stop interface. + * + * If the script runtime is in the Running state, aborts the runtime; if the + * runtime is Stopped and the robot is moving, stops the robot motion; if + * force control is enabled, stops force control. + * + * @return + * + * @par Python function prototype + * abort(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * abort() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.abort","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int abort(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 暂停解释器 + * + * @return + * + * @par Python函数原型 + * pause(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * pause() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.pause","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Pause the interpreter + * + * @return + * + * @par Python function prototype + * pause(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * pause() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.pause","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int pause(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 单步运行 + * + * @return + * + * @par Python函数原型 + * step(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * step() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.step","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Execute a single step + * + * @return + * + * @par Python function prototype + * step(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * step() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.step","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int step(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 恢复解释器 + * + * @return + * + * @par Python函数原型 + * resume(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * resume() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.resume","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Resume the interpreter + * + * @return + * + * @par Python function prototype + * resume(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * resume() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.resume","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int resume(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 恢复解释器(不检查当前点和暂停点距离) + * + * @return + * + * @par Python函数原型 + * arbitraryResume(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * arbitraryResume() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.arbitraryResume","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Resume the interpreter + * + * @return + * + * @par Python function prototype + * arbitraryResume(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * arbitraryResume() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.arbitraryResume","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int arbitraryResume(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 恢复解释器之前等待恢复前之前的序列完成 + * + * @param wait + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.setResumeWait","params":[true],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Wait for the previous sequence to complete before resuming the + * interpreter + * + * @param wait + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.setResumeWait","params":[true],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setResumeWait(bool wait); + + /** + * @ingroup RuntimeMachine + * \chinese + * 进入临界区,abort 命令会被推迟执行,避免临界区内的指令被打断 + * + * @param timeout 单位秒,范围 0~5 秒,表示 abort + * 命令最大推迟时间,超过这个时间自动退出临界区并 abort + * @return + * + * @par Python函数原型 + * enterCritical(self: pyaubo_sdk.RuntimeMachine, arg0: double) -> int + * + * @par Lua函数原型 + * enterCritical(timeout: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.enterCritical","params":[5.0],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * The abort command is deferred during critical sections to avoid + * interrupting internal instructions. + * + * @param timeout (seconds, 0~5): max deferral time for abort. Exceeding it + * forces exit from critical section and triggers abort. + * @return + * + * @par Python function prototype + * enterCritical(self: pyaubo_sdk.RuntimeMachine, arg0: double) -> int + * + * @par Lua function prototype + * enterCritical(timeout: number) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.enterCritical","params":[5.0],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int enterCritical(double timeout); + + /** + * @ingroup RuntimeMachine + * \chinese + * 退出临界区 + * + * @param + * @return + * + * @par Python函数原型 + * exitCritical(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * exitCritical() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.exitCritical","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Exit the critical section + * + * @param + * @return + * + * @par Python function prototype + * exitCritical(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * exitCritical() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.exitCritical","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int exitCritical(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取规划器的状态 + * + * @return + * + * @par Python函数原型 + * getStatus(self: pyaubo_sdk.RuntimeMachine) -> + * arcs::common_interface::RuntimeState + * + * @par Lua函数原型 + * getStatus() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getStatus","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"Running"} + * + * \endchinese + * \english + * Get the status of the planner + * + * @return + * + * @par Python function prototype + * getStatus(self: pyaubo_sdk.RuntimeMachine) -> + * arcs::common_interface::RuntimeState + * + * @par Lua function prototype + * getStatus() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getStatus","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":"Running"} + * + * \endenglish + */ + ARCS_DEPRECATED RuntimeState getStatus(); + RuntimeState getRuntimeState(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 设置断点 + * + * @param lineno + * @return + * + * @par Python函数原型 + * setBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua函数原型 + * setBreakPoint(lineno: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.setBreakPoint","params":[15],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Set a breakpoint + * + * @param lineno + * @return + * + * @par Python function prototype + * setBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua function prototype + * setBreakPoint(lineno: number) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.setBreakPoint","params":[15],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int setBreakPoint(int lineno); + + /** + * @ingroup RuntimeMachine + * \chinese + * 移除断点 + * + * @param lineno + * @return + * + * @par Python函数原型 + * removeBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua函数原型 + * removeBreakPoint(lineno: number) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.removeBreakPoint","params":[15],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Remove a breakpoint + * + * @param lineno + * @return + * + * @par Python function prototype + * removeBreakPoint(self: pyaubo_sdk.RuntimeMachine, arg0: int) -> int + * + * @par Lua function prototype + * removeBreakPoint(lineno: number) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.removeBreakPoint","params":[15],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int removeBreakPoint(int lineno); + + /** + * @ingroup RuntimeMachine + * \chinese + * 清除所有断点 + * + * @return + * + * @par Python函数原型 + * clearBreakPoints(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua函数原型 + * clearBreakPoints() -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.clearBreakPoints","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Clear all breakpoints + * + * @return + * + * @par Python function prototype + * clearBreakPoints(self: pyaubo_sdk.RuntimeMachine) -> int + * + * @par Lua function prototype + * clearBreakPoints() -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.clearBreakPoints","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int clearBreakPoints(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 定时器开始 + * + * @param name + * @return + * + * @par Python函数原型 + * timerStart(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua函数原型 + * timerStart(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStart","params":["timer"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Start the timer + * + * @param name + * @return + * + * @par Python function prototype + * timerStart(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua function prototype + * timerStart(name: string) -> nil + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStart","params":["timer"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int timerStart(const std::string &name); + + /** + * @ingroup RuntimeMachine + * \chinese + * 定时器结束 + * + * @param name + * @return + * + * @par Python函数原型 + * timerStop(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua函数原型 + * timerStop(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStop","params":["timer"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Stop the timer + * + * @param name + * @return + * + * @par Python function prototype + * timerStop(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua function prototype + * timerStop(name: string) -> nil + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerStop","params":["timer"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int timerStop(const std::string &name); + + /** + * @ingroup RuntimeMachine + * \chinese + * 定时器重置 + * + * @param name + * @return + * + * @par Python函数原型 + * timerReset(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua函数原型 + * timerReset(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerReset","params":["timer"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Reset the timer + * + * @param name + * @return + * + * @par Python function prototype + * timerReset(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua function prototype + * timerReset(name: string) -> nil + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerReset","params":["timer"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int timerReset(const std::string &name); + + /** + * @ingroup RuntimeMachine + * \chinese + * 定时器删除 + * + * @param name + * @return + * + * @par Python函数原型 + * timerDelete(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua函数原型 + * timerDelete(name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerDelete","params":["timer"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Delete the timer + * + * @param name + * @return + * + * @par Python function prototype + * timerDelete(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> int + * + * @par Lua function prototype + * timerDelete(name: string) -> nil + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.timerDelete","params":["timer"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int timerDelete(const std::string &name); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取定时器数值 + * + * @param name + * @return + * + * @par Python函数原型 + * getTimer(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> float + * + * @par Lua函数原型 + * getTimer(name: string) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getTimer","params":["timer"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":25.409769612} + * + * \endchinese + * \english + * Get the timer value + * + * @param name + * @return + * + * @par Python function prototype + * getTimer(self: pyaubo_sdk.RuntimeMachine, arg0: str) -> float + * + * @par Lua function prototype + * getTimer(name: string) -> number + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getTimer","params":["timer"],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":25.409769612} + * + * \endenglish + */ + double getTimer(const std::string &name); + + /** + * @ingroup RuntimeMachine + * \chinese + * 开始配置触发 + * + * @param distance + * @param delay + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.triggBegin","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * Start configuring trigger + * + * @param distance + * @param delay + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.triggBegin","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int triggBegin(double distance, double delay); + + /** + * @ingroup RuntimeMachine + * \chinese + * 终止配置触发 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.triggEnd","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endchinese + * \english + * End configuring trigger + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.triggEnd","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":0} + * + * \endenglish + */ + int triggEnd(); + + /** + * @ingroup RuntimeMachine + * \chinese + * 返回自动分配的中断号 + * + * @param distance + * @param delay + * @param intnum + * @return + * \endchinese + * \english + * Returns the automatically assigned interrupt number + * + * @param distance + * @param delay + * @param intnum + * @return + * \endenglish + */ + int triggInterrupt(double distance, double delay); + + /** + * @ingroup RuntimeMachine + * \chinese + * 获取所有的中断号列表 + * + * @return + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"RuntimeMachine.getTriggInterrupts","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endchinese + * \english + * Get the list of all interrupt numbers + * + * @return + * + * @par JSON-RPC Request Example + * {"jsonrpc":"2.0","method":"RuntimeMachine.getTriggInterrupts","params":[],"id":1} + * + * @par JSON-RPC Response Example + * {"id":1,"jsonrpc":"2.0","result":[]} + * + * \endenglish + */ + std::vector getTriggInterrupts(); + +protected: + void *d_; +}; + +using RuntimeMachinePtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif // AUBO_SDK_RUNTIME_MACHINE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/serial.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/serial.h new file mode 100644 index 00000000..04210729 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/serial.h @@ -0,0 +1,417 @@ +/** @file serial.h + * @brief 串口通信 + */ +#ifndef AUBO_SDK_SERIAL_INTERFACE_H +#define AUBO_SDK_SERIAL_INTERFACE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup Serial Serial (串口通信) + * 串口通信 + * \endchinese + * + * \english + * @defgroup Serial Serial Communication + * Serial communication + * \endenglish + */ +class ARCS_ABI_EXPORT Serial +{ +public: + Serial(); + virtual ~Serial(); + + /** + * @ingroup Serial + * \chinese + * 打开TCP/IP以太网通信串口 + * + * @param device 设备名 + * @param baud 波特率 + * @param stop_bits 停止位 + * @param even 校验位 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialOpen(self: pyaubo_sdk.Serial, arg0: str, arg1: int, arg2: float, + * arg3: int, arg4: str) -> int + * + * @par Lua函数原型 + * serialOpen(device: string, baud: number, stop_bits: number, even: number, + * serial_name: string) -> nil + * \endchinese + * \english + * Open TCP/IP ethernet communication serial + * + * @param device + * @param baud + * @param stop_bits + * @param even + * @param serial_name + * @return + * + * @par Python function prototype + * serialOpen(self: pyaubo_sdk.Serial, arg0: str, arg1: int, arg2: float, + * arg3: int, arg4: str) -> int + * + * @par Lua function prototype + * serialOpen(device: string, baud: number, stop_bits: number, even: number, + * serial_name: string) -> nil + * \endenglish + */ + + int serialOpen(const std::string &device, int baud, float stop_bits, + int even, const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 关闭TCP/IP串口通信 + * 关闭与服务器的串口连接。 + * + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialClose(self: pyaubo_sdk.Serial, arg0: str) -> int + * + * @par Lua函数原型 + * serialClose(serial_name: string) -> nil + * \endchinese + * \english + * Close TCP/IP serial communication + * Close down the serial connection to the server. + * + * @param serial_name + * @return + * + * @par Python function prototype + * serialClose(self: pyaubo_sdk.Serial, arg0: str) -> int + * + * @par Lua function prototype + * serialClose(serial_name: string) -> nil + * \endenglish + */ + int serialClose(const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 从串口读取指定数量的字节。字节为网络字节序。一次最多可读取30个值。 + * + * @param variable 变量 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialReadByte(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * serialReadByte(variable: string, serial_name: string) -> number + * \endchinese + * \english + * Reads a number of bytes from the serial. Bytes are in network byte + * order. A maximum of 30 values can be read in one command. + * + * @param variable + * @param serial_name + * @return + * + * @par Python function prototype + * serialReadByte(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * serialReadByte(variable: string, serial_name: string) -> number + * \endenglish + */ + int serialReadByte(const std::string &variable, + const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 从串口读取指定数量的字节。字节为网络字节序。一次最多可读取30个值。 + * 返回读取到的数字列表(int列表,长度=number+1)。 + * + * @param number 读取的字节数 + * @param variable 变量 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialReadByteList(self: pyaubo_sdk.Serial, arg0: int, arg1: str, arg2: str) -> int + * + * @par Lua函数原型 + * serialReadByteList(number: number, variable: string, serial_name: string) -> number + * \endchinese + * \english + * Reads a number of bytes from the serial. Bytes are in network byte + * order. A maximum of 30 values can be read in one command. + * A list of numbers read (list of ints, length=number+1) + * + * @param number Number of bytes to read + * @param variable + * @param serial_name Serial port name + * @return Return value + * + * @par Python function prototype + * serialReadByteList(self: pyaubo_sdk.Serial, arg0: int, arg1: str, arg2: str) -> int + * + * @par Lua function prototype + * serialReadByteList(number: number, variable: string, serial_name: string) -> number + * \endenglish + */ + int serialReadByteList(int number, const std::string &variable, + const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 从串口读取所有数据,并将数据作为字符串返回。 + * 字节为网络字节序。 + * + * 可选参数 "prefix" 和 "suffix" 用于指定从串口提取的内容。 + * "prefix" 指定提取子串(消息)的起始位置。直到 "prefix" 结束的数据会被忽略并从串口移除。 + * "suffix" 指定提取子串(消息)的结束位置。串口中 "suffix" 之后的剩余数据会被保留。 + * 例如,如果串口服务器发送字符串 "noise>hello<",控制器可以通过设置 prefix=">" 和 suffix="<" 来接收 "hello"。 + * 通过使用 "prefix" 和 "suffix",还可以一次向控制器发送多条字符串,因为 "suffix" 定义了消息的结束位置。 + * 例如发送 ">hello<>world<" + * + * @param variable 变量 + * @param serial_name 串口名称 + * @param prefix 前缀 + * @param suffix 后缀 + * @param interpret_escape 是否解释转义字符 + * @return 返回值 + * + * @par Python函数原型 + * serialReadString(self: pyaubo_sdk.Serial, arg0: str, arg1: str, arg2: str, arg3: str, arg4: bool) -> int + * + * @par Lua函数原型 + * serialReadString(variable: string, serial_name: string, prefix: string, suffix: string, interpret_escape: boolean) -> number + * \endchinese + * \english + * Reads all data from the serial and returns the data as a string. + * Bytes are in network byte order. + * + * The optional parameters "prefix" and "suffix", can be used to express + * what is extracted from the serial. The "prefix" specifies the start + * of the substring (message) extracted from the serial. The data up to + * the end of the "prefix" will be ignored and removed from the serial. + * The "suffix" specifies the end of the substring (message) extracted + * from the serial. Any remaining data on the serial, after the "suffix", + * will be preserved. E.g. if the serial server sends a string + * "noise>hello<", the controller can receive the "hello" by calling this + * script function with the prefix=">" and suffix="<". By using the + * "prefix" and "suffix" it is also possible send multiple string to the + * controller at once, because the suffix defines where the message ends. + * E.g. sending ">hello<>world<" + * + * @param variable + * @param serial_name + * @param prefix + * @param suffix + * @param interpret_escape + * @return + * + * @par Python function prototype + * serialReadString(self: pyaubo_sdk.Serial, arg0: str, arg1: str, arg2: str, arg3: str, arg4: bool) -> int + * + * @par Lua function prototype + * serialReadString(variable: string, serial_name: string, prefix: string, suffix: string, interpret_escape: boolean) -> number + * \endenglish + */ + int serialReadString(const std::string &variable, + const std::string &serial_name = "serial_0", + const std::string &prefix = "", + const std::string &suffix = "", + bool interpret_escape = false); + + /** + * @ingroup Serial + * \chinese + * 发送一个字节到服务器 + * 通过串口发送字节 。不期望有响应。可用于发送特殊的ASCII字符;10为换行符,2为文本开始,3为文本结束。 + * + * @param value 字节值 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialSendByte(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * serialSendByte(value: string, serial_name: string) -> nil + * \endchinese + * \english + * Sends a byte to the server + * Sends the byte through the serial. Expects no response. Can + * be used to send special ASCII characters; 10 is newline, 2 is start of + * text, 3 is end of text. + * + * @param value + * @param serial_name + * @return + * + * @par Python function prototype + * serialSendByte(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * serialSendByte(value: string, serial_name: string) -> nil + * \endenglish + */ + int serialSendByte(char value, const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 发送一个整数(int32_t)到服务器 + * 通过串口发送整数 。以网络字节序发送。不期望有响应。 + * + * @param value 整数值 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialSendInt(self: pyaubo_sdk.Serial, arg0: int, arg1: str) -> int + * + * @par Lua函数原型 + * serialSendInt(value: number, serial_name: string) -> nil + * \endchinese + * \english + * Sends an int (int32_t) to the server + * Sends the int through the serial. Send in network byte order. + * Expects no response. + * + * @param value + * @param serial_name + * @return + * + * @par Python function prototype + * serialSendInt(self: pyaubo_sdk.Serial, arg0: int, arg1: str) -> int + * + * @par Lua function prototype + * serialSendInt(value: number, serial_name: string) -> nil + * \endenglish + */ + int serialSendInt(int value, const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 发送带有换行符的字符串到服务器 + * 以ASCII编码通过串口发送字符串,并在末尾添加换行符。不期望有响应。 + * + * @param str 字符串 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialSendLine(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * serialSendLine(str: string, serial_name: string) -> nil + * \endchinese + * \english + * Sends a string with a newline character to the server + * Sends the string through the serial in ASCII coding, appending a newline at the end. Expects no response. + * + * @param str + * @param serial_name + * @return + * + * @par Python function prototype + * serialSendLine(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * serialSendLine(str: string, serial_name: string) -> nil + * \endenglish + */ + int serialSendLine(const std::string &str, + const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * 发送字符串到服务器 + * 以ASCII编码通过串口发送字符串。不期望有响应。 + * + * @param str 字符串 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialSendString(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * serialSendString(str: string, serial_name: string) -> nil + * \endchinese + * \english + * Sends a string to the server + * Sends the string through the serial in ASCII coding. Expects no + * response. + * + * @param str + * @param serial_name + * @return + * + * @par Python function prototype + * serialSendString(self: pyaubo_sdk.Serial, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * serialSendString(str: string, serial_name: string) -> nil + * \endenglish + */ + int serialSendString(const std::string &str, + const std::string &serial_name = "serial_0"); + + /** + * @ingroup Serial + * \chinese + * + * @param is_check 是否校验 + * @param str 字符串数组 + * @param serial_name 串口名称 + * @return 返回值 + * + * @par Python函数原型 + * serialSendAllString(self: pyaubo_sdk.Serial, arg0: bool, arg1: List[str], arg2: str) -> int + * + * @par Lua函数原型 + * serialSendAllString(is_check: boolean, str: table, serial_name: string) -> nil + * \endchinese + * \english + * + * @param is_check Whether to check + * @param str Array of strings + * @param serial_name Serial port name + * @return Return value + * + * @par Python function prototype + * serialSendAllString(self: pyaubo_sdk.Serial, arg0: bool, arg1: List[str], arg2: str) -> int + * + * @par Lua function prototype + * serialSendAllString(is_check: boolean, str: table, serial_name: string) -> nil + * \endenglish + */ + int serialSendAllString(bool is_check, const std::vector &str, + const std::string &serial_name = "serial_0"); + +protected: + void *d_; +}; +using SerialPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/socket.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/socket.h new file mode 100644 index 00000000..2cb96159 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/socket.h @@ -0,0 +1,667 @@ +/** @file socket.h + * @brief socket通信 + */ +#ifndef AUBO_SDK_SOCKET_INTERFACE_H +#define AUBO_SDK_SOCKET_INTERFACE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + + +/** + * \chinese + * @defgroup Socket Socket (socket网络通信) + * 串口通信 + * \endchinese + * + * \english + * @defgroup Socket Socket Network Communication + * Socket communication + * \endenglish + */ +class ARCS_ABI_EXPORT Socket +{ +public: + Socket(); + virtual ~Socket(); + + /** + * @ingroup Socket + * \english + * Open TCP/IP ethernet communication socket + * + * Instruction + * + * @param address + * @param port + * @param socket_name + * @return + * + * @par Python function prototype + * socketOpen(self: pyaubo_sdk.Socket, arg0: str, arg1: int, arg2: str) -> int + * + * @par Lua function prototype + * socketOpen(address: string, port: number, socket_name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketOpen","params":["172.16.26.248",8000,"socket_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 打开TCP/IP以太网通信socket + * + * 指令 + * + * @param address 地址 + * @param port 端口 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketOpen(self: pyaubo_sdk.Socket, arg0: str, arg1: int, arg2: str) -> int + * + * @par Lua函数原型 + * socketOpen(address: string, port: number, socket_name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketOpen","params":["172.16.26.248",8000,"socket_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketOpen(const std::string &address, int port, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Closes TCP/IP socket communication + * Closes down the socket connection to the server. + * + * Instruction + * + * @param socket_name + * @return + * + * @par Python function prototype + * socketClose(self: pyaubo_sdk.Socket, arg0: str) -> int + * + * @par Lua function prototype + * socketClose(socket_name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketClose","params":["socket_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 关闭TCP/IP socket 通信 + * 关闭与服务器的 socket 连接。 + * + * 指令 + * + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketClose(self: pyaubo_sdk.Socket, arg0: str) -> int + * + * @par Lua函数原型 + * socketClose(socket_name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketClose","params":["socket_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketClose(const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Reads a number of ascii formatted floats from the socket. A maximum + * of 30 values can be read in one command. + * A list of numbers read (list of floats, length=number+1) + * + * Result will be stored in a register named reg_key. Use getFloatVec + * to retrieve data + * + * @param number + * @param variable + * @param socket_name + * @return + * + * @par Python function prototype + * socketReadAsciiFloat(self: pyaubo_sdk.Socket, arg0: int, arg1: str, arg2: + * str) -> int + * + * @par Lua function prototype + * socketReadAsciiFloat(number: number, variable: string, socket_name: + * string) -> number + * \endenglish + * \chinese + * 从socket读取指定数量的ASCII格式浮点数。一次最多可读取30个值。 + * 读取到的数字列表(浮点数列表,长度=number+1) + * + * 结果将存储在名为reg_key的寄存器中。使用getFloatVec获取数据 + * + * @param number 数量 + * @param variable 变量名 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketReadAsciiFloat(self: pyaubo_sdk.Socket, arg0: int, arg1: str, arg2: + * str) -> int + * + * @par Lua函数原型 + * socketReadAsciiFloat(number: number, variable: string, socket_name: + * string) -> number + * \endchinese + */ + int socketReadAsciiFloat(int number, const std::string &variable, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Reads a number of 32 bit integers from the socket. Bytes are in + * network byte order. A maximum of 30 values can be read in one + * command. + * A list of numbers read (list of ints, length=number+1) + * + * Instruction + * + * std::vector + * + * @param number + * @param variable + * @param socket_name + * @return + * + * @par Python function prototype + * socketReadBinaryInteger(self: pyaubo_sdk.Socket, arg0: int, arg1: str, + * arg2: str) -> int + * + * @par Lua function prototype + * socketReadBinaryInteger(number: number, variable: string, socket_name: + * string) -> number + * \endenglish + * \chinese + * 从socket读取指定数量的32位整数。字节为网络字节序。一次最多可读取30个值。 + * 读取到的数字列表(整数列表,长度=number+1) + * + * 指令 + * + * std::vector + * + * @param number 数量 + * @param variable 变量名 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketReadBinaryInteger(self: pyaubo_sdk.Socket, arg0: int, arg1: str, + * arg2: str) -> int + * + * @par Lua函数原型 + * socketReadBinaryInteger(number: number, variable: string, socket_name: + * string) -> number + * \endchinese + */ + int socketReadBinaryInteger(int number, const std::string &variable, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Reads a number of bytes from the socket. Bytes are in network byte + * order. A maximum of 30 values can be read in one command. + * A list of numbers read (list of ints, length=number+1) + * + * Instruction + * + * std::vector + * + * @param number + * @param variable + * @param socket_name + * @return + * + * @par Python function prototype + * socketReadByteList(self: pyaubo_sdk.Socket, arg0: int, arg1: str, arg2: + * str) -> int + * + * @par Lua function prototype + * socketReadByteList(number: number, variable: string, socket_name: string) + * -> number + * \endenglish + * \chinese + * 从socket读取指定数量的字节。字节为网络字节序。一次最多可读取30个值。 + * 读取到的数字列表(整数列表,长度=number+1) + * + * 指令 + * + * std::vector + * + * @param number 数量 + * @param variable 变量名 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketReadByteList(self: pyaubo_sdk.Socket, arg0: int, arg1: str, arg2: + * str) -> int + * + * @par Lua函数原型 + * socketReadByteList(number: number, variable: string, socket_name: string) + * -> number + * \endchinese + */ + int socketReadByteList(int number, const std::string &variable, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Reads all data from the socket and returns the data as a string. + * Bytes are in network byte order. + * + * The optional parameters "prefix" and "suffix", can be used to express + * what is extracted from the socket. The "prefix" specifies the start + * of the substring (message) extracted from the socket. The data up to + * the end of the "prefix" will be ignored and removed from the socket. + * The "suffix" specifies the end of the substring (message) extracted + * from the socket. Any remaining data on the socket, after the "suffix", + * will be preserved. E.g. if the socket server sends a string + * "noise>hello<", the controller can receive the "hello" by calling this + * script function with the prefix=">" and suffix="<". By using the + * "prefix" and "suffix" it is also possible send multiple string to the + * controller at once, because the suffix defines where the message ends. + * E.g. sending ">hello<>world<" + * + * Instruction + * + * std::string + * + * @param variable + * @param socket_name + * @param prefix + * @param suffix + * @param interpret_escape + * @return + * + * @par Python function prototype + * socketReadString(self: pyaubo_sdk.Socket, arg0: str, arg1: str, arg2: + * str, arg3: str, arg4: bool) -> int + * + * @par Lua function prototype + * socketReadString(variable: string, socket_name: string, prefix: string, + * suffix: string, interpret_escape: boolean) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketReadString","params":["camera","socket_0","","",false],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 从socket读取所有数据并将其作为字符串返回。 + * 字节为网络字节序。 + * + * 可选参数"prefix"和"suffix"可用于指定从socket中提取的内容。 + * "prefix"指定提取子字符串(消息)的起始位置。直到"prefix"结尾的数据将被忽略并从socket中移除。 + * "suffix"指定提取子字符串(消息)的结束位置。"suffix"之后的任何剩余数据将保留在socket中。 + * 例如,如果socket服务器发送字符串"noise>hello<",控制器可以通过调用此脚本函数并设置prefix=">"和suffix="<"来接收"hello"。 + * 通过使用"prefix"和"suffix",还可以一次向控制器发送多条字符串,因为"suffix"定义了消息的结束位置。例如发送">hello<>world<" + * + * 指令 + * + * std::string + * + * @param variable 变量名 + * @param socket_name 套接字名称 + * @param prefix 前缀 + * @param suffix 后缀 + * @param interpret_escape 是否解释转义字符 + * @return 返回值 + * + * @par Python函数原型 + * socketReadString(self: pyaubo_sdk.Socket, arg0: str, arg1: str, arg2: + * str, arg3: str, arg4: bool) -> int + * + * @par Lua函数原型 + * socketReadString(variable: string, socket_name: string, prefix: string, + * suffix: string, interpret_escape: boolean) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketReadString","params":["camera","socket_0","","",false],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketReadString(const std::string &variable, + const std::string &socket_name = "socket_0", + const std::string &prefix = "", + const std::string &suffix = "", + bool interpret_escape = false); + + /** + * @ingroup Socket + * \english + * Reads all data from the socket and returns the data as a vector of chars. + * + * Instruction + * std::vector + * + * @param variable + * @param socket_name + * @return + * + * @par Python function prototype + * socketReadAllString(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * socketReadAllString(variable: string, socket_name: string) -> number + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketReadAllString","params":["camera","socket_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 从socket读取所有数据并将其作为char向量返回。 + * + * 指令 + * std::vector + * + * @param variable 变量名 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketReadAllString(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * socketReadAllString(variable: string, socket_name: string) -> number + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketReadAllString","params":["camera","socket_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketReadAllString(const std::string &variable, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Sends a byte to the server + * Sends the byte through the socket. Expects no response. Can + * be used to send special ASCII characters; 10 is newline, 2 is start of + * text, 3 is end of text. + * + * Instruction + * + * @param value + * @param socket_name + * @return + * + * @par Python function prototype + * socketSendByte(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * socketSendByte(value: string, socket_name: string) -> nil + * + * \endenglish + * \chinese + * 发送一个字节到服务器 + * 通过socket发送字节,不期望响应。可用于发送特殊ASCII字符;10为换行符,2为文本开始,3为文本结束。 + * + * 指令 + * + * @param value 字节值 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketSendByte(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * socketSendByte(value: string, socket_name: string) -> nil + * + * \endchinese + */ + int socketSendByte(char value, const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Sends an int (int32_t) to the server + * Sends the int through the socket. Send in network byte order. + * Expects no response + * + * Instruction + * + * @param value + * @param socket_name + * @return + * + * @par Python function prototype + * socketSendInt(self: pyaubo_sdk.Socket, arg0: int, arg1: str) -> int + * + * @par Lua function prototype + * socketSendInt(value: number, socket_name: string) -> nil + * + * \endenglish + * \chinese + * 发送一个int(int32_t)到服务器 + * 通过socket发送int ,以网络字节序发送。不期望响应。 + * + * 指令 + * + * @param value 整数值 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketSendInt(self: pyaubo_sdk.Socket, arg0: int, arg1: str) -> int + * + * @par Lua函数原型 + * socketSendInt(value: number, socket_name: string) -> nil + * + * \endchinese + */ + int socketSendInt(int value, const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Sends a string with a newline character to the server + * Sends the string through the socket in ASCII coding. Expects no + * response. + * + * Instruction + * + * @param str + * @param socket_name + * @return + * + * @par Python function prototype + * socketSendLine(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * socketSendLine(str: string, socket_name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketSendLine","params":["abcd","socket_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 发送带有换行符的字符串到服务器. + * 通过socket以ASCII编码发送字符串,不期望响应。 + * + * 指令 + * + * @param str 字符串 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketSendLine(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * socketSendLine(str: string, socket_name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketSendLine","params":["abcd","socket_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketSendLine(const std::string &str, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Sends a string to the server + * Sends the string through the socket in ASCII coding. Expects no + * response. + * + * Instruction + * + * @param str + * @param socket_name + * @return + * + * @par Python function prototype + * socketSendString(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua function prototype + * socketSendString(str: string, socket_name: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"Socket.socketSendString","params":["abcd","socket_0"],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + * \chinese + * 发送字符串到服务器 + * 通过socket以ASCII编码发送字符串,不期望响应。 + * + * 指令 + * + * @param str 字符串 + * @param socket_name 套接字名称 + * @return 返回值 + * + * @par Python函数原型 + * socketSendString(self: pyaubo_sdk.Socket, arg0: str, arg1: str) -> int + * + * @par Lua函数原型 + * socketSendString(str: string, socket_name: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"Socket.socketSendString","params":["abcd","socket_0"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + */ + int socketSendString(const std::string &str, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Sends all data in the given vector of chars to the server. + * + * @param is_check Whether to check the sending status + * @param str The data to send as a vector of chars + * @param socket_name The name of the socket + * @return Status code + * + * @par Python function prototype + * socketSendAllString(self: pyaubo_sdk.Socket, arg0: bool, arg1: List[str], arg2: str) -> int + * + * @par Lua function prototype + * socketSendAllString(is_check: boolean, str: table, socket_name: string) -> nil + * \endenglish + * \chinese + * 发送给定char向量中的所有数据到服务器。 + * + * @param is_check 是否检查发送状态 + * @param str 要发送的数据,char向量 + * @param socket_name 套接字名称 + * @return 状态码 + * + * @par Python函数原型 + * socketSendAllString(self: pyaubo_sdk.Socket, arg0: bool, arg1: List[str], arg2: str) -> int + * + * @par Lua函数原型 + * socketSendAllString(is_check: boolean, str: table, socket_name: string) -> nil + * \endchinese + */ + int socketSendAllString(bool is_check, const std::vector &str, + const std::string &socket_name = "socket_0"); + + /** + * @ingroup Socket + * \english + * Check if the socket is connected + * @brief socketHasConnected + * @param socket_name + * + * @return + * + * @par Python function prototype + * socketHasConnected(self: pyaubo_sdk.Socket, arg0: str) -> bool + * + * @par Lua function prototype + * socketHasConnected(socket_name: string) -> boolean + * \endenglish + * \chinese + * 检测 socket 连接是否成功 + * @brief socketHasConnected + * @param socket_name + * + * @return + * + * @par Python函数原型 + * socketHasConnected(self: pyaubo_sdk.Socket, arg0: str) -> bool + * + * @par Lua函数原型 + * socketHasConnected(socket_name: string) -> boolean + * \endchinese + */ + bool socketHasConnected(const std::string &socket_name = "socket_0"); + +protected: + void *d_; +}; +using SocketPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/sync_move.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/sync_move.h new file mode 100644 index 00000000..bf321122 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/sync_move.h @@ -0,0 +1,1021 @@ +/** @file sync_move.h + * @brief 同步运行 + * + * 1. Independent movements + * If the different task programs, and their robots, work independently, no + * synchronization or coordination is needed. Each task program is then + * written as if it was the program for a single robot system. + * + * 2. Semi coordinated movements + * Several robots can work with the same work object, without synchronized + * movements, as long as the work object is not moving. + * A positioner can move the work object when the robots are not coordinated + * to it, and the robots can be coordinated to the work object when it is not + * moving. Switching between moving the object and coordinating the robots is + * called semi coordinated movements. + * + * 3. Coordinated synchronized movements + * Several robots can work with the same moving work object. + * The positioner or robot that holds the work object and the robots that work + * with the work object must have synchronized movements. This means that the + * RAPID task programs, that handle one mechanical unit each, execute their + * move instructions simultaneously. + */ +#ifndef AUBO_SDK_SYNC_MOVE_INTERFACE_H +#define AUBO_SDK_SYNC_MOVE_INTERFACE_H + +#include +#include +#include +#include +#include + +namespace arcs { +namespace common_interface { + +typedef std::unordered_set TaskSet; + +/** + * \chinese + * @defgroup SyncMove SyncMove (同步运动控制和轴组管理) + * 同步运动控制和轴组管理API接口 + * \endchinese + * + * \english + * @defgroup SyncMove Synchronized Movement Control and Axis Group Management + * Synchronized movement control and axis group management API interface + * \endenglish + */ +class ARCS_ABI_EXPORT SyncMove +{ +public: + SyncMove(); + virtual ~SyncMove(); + + /** + * @ingroup SyncMove + * \chinese + * syncMoveOn 用于启动同步运动模式。 + * + * syncMoveOn 指令会等待其他任务程序。当所有任务程序都到达 syncMoveOn 时, + * 它们将继续以同步运动模式执行。不同任务程序中的移动指令将同时执行, + * 直到执行 syncMoveOff 指令为止。在 syncMoveOn 指令之前必须编程一个停止点。 + * + * @param syncident + * @param taskset + * @return + * + * @par Python函数原型 + * syncMoveOn(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) -> int + * + * @par Lua函数原型 + * syncMoveOn(syncident: string, taskset: table) -> nil + * @endcoe + * \endchinese + * \english + * syncMoveOn is used to start synchronized movement mode. + * + * A syncMoveOn instruction will wait for the other task programs. When + * all task programs have reached the syncMoveOn, they will continue + * their execution in synchronized movement mode. The move instructions + * in the different task programs are executed simultaneously, until the + * instruction syncMoveOff is executed. + * A stop point must be programmed before the syncMoveOn instruction. + * + * @param syncident + * @param taskset + * @return + * + * @par Python function prototype + * syncMoveOn(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) -> int + * + * @par Lua function prototype + * syncMoveOn(syncident: string, taskset: table) -> nil + * @endcoe + * \endenglish + */ + int syncMoveOn(const std::string &syncident, const TaskSet &taskset); + + /** + * @ingroup SyncMove + * \chinese + * 设置同步路径段的ID + * 在同步运动模式下,所有同时执行的移动指令必须全部编程为圆角区(corner zones)或全部为停止点(stop points)。 + * 这意味着具有相同ID的移动指令要么全部带有圆角区,要么全部带有停止点。 + * 如果在各自的任务程序中同步执行的移动指令中,一个带有圆角区而另一个带有停止点,则会发生错误。 + * 同步执行的移动指令可以有不同大小的圆角区(例如,一个使用z10,另一个使用z50)。 + * + * @param id + * @return + * + * @par Python函数原型 + * syncMoveSegment(self: pyaubo_sdk.SyncMove, arg0: int) -> bool + * + * @par Lua函数原型 + * syncMoveSegment(id: number) -> boolean + * @endcoe + * \endchinese + * \english + * Set the ID for the synchronized path segment. + * In synchronized movements mode, all or none of the simultaneous move instructions must be programmed with corner zones. + * This means that move instructions with the same ID must either all have corner zones, or all have stop points. + * If a move instruction with a corner zone and a move instruction with a stop point are synchronously executed in their respective task program, an error will occur. + * Synchronously executed move instructions can have corner zones of different sizes (e.g. one uses z10 and one uses z50). + * + * @param id + * @return + * + * @par Python prototype + * syncMoveSegment(self: pyaubo_sdk.SyncMove, arg0: int) -> bool + * + * @par Lua prototype + * syncMoveSegment(id: number) -> boolean + * @endcoe + * \endenglish + */ + bool syncMoveSegment(int id); + + /** + * @ingroup SyncMove + * \chinese + * syncMoveOff 用于结束同步运动模式。 + * + * syncMoveOff 指令会等待其他任务程序。当所有任务程序都到达 syncMoveOff 时, + * 它们将继续以非同步模式执行。在 syncMoveOff 指令之前必须编程一个停止点。 + * + * @param syncident + * @return + * + * @par Python函数原型 + * syncMoveOff(self: pyaubo_sdk.SyncMove, arg0: str) -> int + * + * @par Lua函数原型 + * syncMoveOff(syncident: string) -> nil + * @endcoe + * \endchinese + * \english + * syncMoveOff is used to end synchronized movement mode. + * + * A syncMoveOff instruction will wait for the other task programs. When + * all task programs have reached the syncMoveOff, they will continue + * their execution in unsynchronized mode. + * A stop point must be programmed before the syncMoveOff instruction. + * + * @param syncident + * @return + * + * @par Python prototype + * syncMoveOff(self: pyaubo_sdk.SyncMove, arg0: str) -> int + * + * @par Lua prototype + * syncMoveOff(syncident: string) -> nil + * @endcoe + * \endenglish + */ + int syncMoveOff(const std::string &syncident); + + /** + * @ingroup SyncMove + * \chinese + * syncMoveUndo 用于关闭同步运动,即使不是所有其他任务程序都执行了 syncMoveUndo 指令。 + * + * syncMoveUndo 主要用于 UNDO 处理程序。当程序指针从过程移动时,syncMoveUndo 用于关闭同步。 + * + * @return + * + * @par Python函数原型 + * syncMoveUndo(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua函数原型 + * syncMoveUndo() -> nil + * @endcoe + * \endchinese + * \english + * syncMoveUndo is used to turn off synchronized movements, even if not + * all the other task programs execute the syncMoveUndo instruction. + * + * syncMoveUndo is intended for UNDO handlers. When the program + * pointer is moved from the procedure, syncMoveUndo is used to turn off + * the synchronization. + * + * @return + * + * @par Python prototype + * syncMoveUndo(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua prototype + * syncMoveUndo() -> nil + * @endcoe + * \endenglish + */ + int syncMoveUndo(); + + /** + * @ingroup SyncMove + * \chinese + * waitSyncTasks 用于在程序中的特定点同步多个任务程序。 + * + * waitSyncTasks 指令会等待其他任务程序。当所有任务程序都到达 waitSyncTasks 指令时, + * 它们将继续执行。 + * + * @param syncident + * @param taskset + * @return + * + * @par Python函数原型 + * waitSyncTasks(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) -> int + * + * @par Lua函数原型 + * waitSyncTasks(syncident: string, taskset: table) -> nil + * @endcoe + * \endchinese + * \english + * waitSyncTasks is used to synchronize several task programs at a specific + * point in the program. + * + * A waitSyncTasks instruction will wait for the other task programs. When all + * task programs have reached the waitSyncTasks instruction, they will continue + * their execution. + * + * @param syncident + * @param taskset + * @return + * + * @par Python prototype + * waitSyncTasks(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) -> int + * + * @par Lua prototype + * waitSyncTasks(syncident: string, taskset: table) -> nil + * @endcoe + * \endenglish + */ + int waitSyncTasks(const std::string &syncident, const TaskSet &taskset); + + /** + * @ingroup SyncMove + * \chinese + * isSyncMoveOn 用于判断机械单元组是否处于同步运动模式。 + * + * 不控制任何机械单元的任务可以通过该函数判断参数“使用机械单元组”中定义的机械单元是否处于同步运动模式。 + * + * @return + * + * @par Python函数原型 + * isSyncMoveOn(self: pyaubo_sdk.SyncMove) -> bool + * + * @par Lua函数原型 + * isSyncMoveOn() -> boolean + * \endchinese + * \english + * isSyncMoveOn is used to tell if the mechanical unit group is in synchronized movement mode. + * + * A task that does not control any mechanical unit can find out if the mechanical units defined in the parameter Use Mechanical Unit Group are in synchronized movement mode. + * + * @return + * + * @par Python prototype + * isSyncMoveOn(self: pyaubo_sdk.SyncMove) -> bool + * + * @par Lua prototype + * isSyncMoveOn() -> boolean + * \endenglish + */ + bool isSyncMoveOn(); + + /** + * @ingroup SyncMove + * \chinese + * 暂停同步运动模式。 + * + * @return + * + * @par Python函数原型 + * syncMoveSuspend(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua函数原型 + * syncMoveSuspend() -> nil + * \endchinese + * \english + * Suspend synchronized movement mode. + * + * @return + * + * @par Python prototype + * syncMoveSuspend(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua prototype + * syncMoveSuspend() -> nil + * \endenglish + */ + int syncMoveSuspend(); + + /** + * @ingroup SyncMove + * \chinese + * 恢复同步运动模式。 + * + * @return + * + * @par Python函数原型 + * syncMoveResume(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua函数原型 + * syncMoveResume() -> nil + * \endchinese + * \english + * Resume synchronized movement mode. + * + * @return + * + * @par Python prototype + * syncMoveResume(self: pyaubo_sdk.SyncMove) -> int + * + * @par Lua prototype + * syncMoveResume() -> nil + * \endenglish + */ + int syncMoveResume(); + + /** + * @ingroup SyncMove + * \chinese + * 添加一个名为 name 的坐标系,其初始位姿为 pose,位姿以 ref_frame 坐标系表达。 + * 此命令仅向世界模型添加一个坐标系,并不会将其附加到 ref_frame 坐标系。 + * 如需将新添加的坐标系附加到 ref_frame,请使用 frameAttach()。 + * + * @param name: 要添加的坐标系名称。名称不能与任何已存在的世界模型对象(坐标系、轴或轴组)重复,否则会抛出异常。 + * @param pose: 新对象的初始位姿。 + * @param ref_frame: 位姿所表达的参考坐标系对象名称。若未指定,默认使用机器人“base”坐标系。 + * + * @return + * \endchinese + * \english + * Add a frame with the name "name" initialized at the specified pose + * expressed in the ref_frame coordinate frame. This command only adds a + * frame to the world, it does not attach it to the ref_frame coordinate + * frame. Use frameAttach() to attach the newly added frame to ref_frame if + * desired. + * + * @param name: name of the frame to be added. The name must not be the same + * as any existing world model object (frame, axis, or axis group), + * otherwise an exception is thrown + * @param pose: initial pose of the new object + * @param ref_frame: name of the world model object whose coordinate frame + * the pose is expressed in. If nothing is provided here, the default is the + * robot “base” frame. + * + * @return + * \endenglish + */ + int frameAdd(const std::string &name, const std::vector &pose, + const std::string &ref_name); + + /** + * @ingroup SyncMove + * \chinese + * 将子坐标系附加到父世界模型对象。附加时会设置父子之间的相对变换,使得子坐标系在世界中不会移动。 + * + * 子坐标系不能为“world”、“flange”、“tcp”,也不能与父坐标系同名。 + * + * 如果子或父不是已存在的坐标系,或导致形成闭环,则操作会失败。 + * + * 如果用于 MotionPlus,parent 参数可以是外部轴或轴组的名称。 + * + * @param child: 要附加的子坐标系名称,不能为“world”、“flange”或“tcp”。 + * @param parent: 子坐标系将要附加到的父对象名称。 + * + * @return + * \endchinese + * \english + * Attaches the child frame to the parent world model object. The relative + * transform between the parent and child will be set such that the child + * does not move in the world when the attachment occurs. + * + * The child cannot be “world”, “flange”, “tcp”, or the same as parent. + * + * This will fail if child or parent is not an existing frame, or this makes + * the attachments form a closed chain. + * + * If being used with the MotionPlus, the parent argument can be the name of + * an external axis or axis group. + * + * @param child: name of the frame to be attached. The name must not be + * “world”, “flange”, or “tcp”. + * @param parent: name of the object that the child frame will be attached + * to. + * + * @return + * \endenglish + */ + int frameAttach(const std::string &child, const std::string &parent); + + /** + * @ingroup SyncMove + * \chinese + * 删除所有已添加到世界模型的坐标系。 + * + * “world”、“base”、“flange”和“tcp”坐标系不能被删除。 + * + * 任何附加到被删除坐标系的坐标系将会被附加到“world”坐标系,并设置新的偏移,使得被分离的坐标系在世界中不会移动。 + * + * @return + * \endchinese + * \english + * Delete all frames that have been added to the world model. + * + * The “world”, “base”, “flange”, and “tcp” frames cannot be deleted. + * + * Any frames that are attached to the deleted frames will be attached to + * the “world” frame with new frame offsets set such that the detached + * frames do not move in the world. + * + * @return + * \endenglish + */ + int frameDeleteAll(); + + /** + * @ingroup SyncMove + * \chinese + * 删除指定名称的坐标系。 + * + * “world”、“base”、“flange”和“tcp”坐标系不能被删除。 + * + * 任何附加到被删除坐标系的坐标系将会被附加到“world”坐标系,并设置新的偏移,使得被分离的坐标系在世界中不会移动。 + * + * 如果指定的坐标系不存在,则操作会失败。 + * + * @param name: 要删除的坐标系名称 + * + * @return + * \endchinese + * \english + * Delete the frame with name from the world model. + * + * The “world”, “base”, “flange”, and “tcp” frames cannot be deleted. + * + * Any frames that are attached to the deleted frame will be attached to the + * “world” frame with new frame offsets set such that the detached frame + * does not move in the world. + * + * This command will fail if the frame does not exist. + * + * @param name: name of the frame to be deleted + * + * @return + * \endenglish + */ + int frameDelete(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 更改名为 name 的坐标系的位置,将其移动到由 pose 指定的新位置,pose 以 ref_name 坐标系表达。 + * + * 如果 name 为 “world”、“flange”、“tcp”,或该坐标系不存在,则操作会失败。注意:如需移动 “tcp” 坐标系,请使用 set_tcp() 命令。 + * + * 如果用于 MotionPlus,ref_name 参数可以是外部轴或轴组的名称。 + * + * @param name: 要移动的坐标系名称 + * @param pose: 新的位置 + * @param ref_name: pose 所表达的参考坐标系,默认值为机器人的 “base” 坐标系。 + * + * @return + * \endchinese + * \english + * Changes the placement of the coordinate frame named name to the new + * placement given by pose that is defined in the ref_name coordinate frame. + * + * This will fail if name is “world”, “flange”, “tcp”, or if the frame does + * not exist. Note: to move the “tcp” frame, use the set_tcp() command + * instead. + * + * If being used with the MotionPlus, the ref_name argument can be the name + * of an external axis or axis group. + * + * @param name: the name of the frame to move + * @param pose: the new placement + * @param ref_name: the coordinate frame that pose is expressed in. The + * default value is the robot’s “base” frame. + * + * @return + * \endenglish + */ + int frameMove(const std::string &name, const std::vector &pose, + const std::string &ref_name); + + /** + * @ingroup SyncMove + * \chinese + * 获取名为 name 的坐标系相对于 rel_frame 坐标系的位姿,并以 ref_frame 坐标系表达。 + * 如果未提供 ref_frame,则返回 name 坐标系相对于 rel_frame 坐标系的位姿,并以 rel_frame 坐标系表达。 + * + * 如果任一参数不是已存在的坐标系,则操作会失败。 + * + * 如果用于 MotionPlus,所有三个参数也可以是外部轴或轴组的名称。 + * + * @param name: 要查询的坐标系名称。 + * @param rel_frame: “相对坐标系”,用于计算相对位姿的坐标系。 + * @param ref_frame: “参考坐标系”,用于表达结果相对位姿的坐标系。如果未提供,则默认为 rel_frame。 + * + * @return 以 ref_frame 坐标系表达的 name 坐标系的位姿。 + * \endchinese + * \english + * Get the pose of the name frame relative to the rel_frame frame but + * expressed in the coordinates of the ref_frame frame. If ref_frame is not + * provided, then this returns the pose of the name frame relative to and + * expressed in the same frame as rel_frame. + * + * This will fail if any arguments are not an existing frame. + * + * If being used with MotionPlus, all three arguments can also be the names + * of external axes or axis groups. + * + * @param name: name of the frame to query. + * @param rel_frame: short for “relative frame” is the frame where the pose + * is computed relative to + * @param ref_frame: short for “reference frame” is the frame to express the + * coordinates of resulting relative pose in. If this is not provided, then + * it will default to match the value of rel_frame. + * + * @return The pose of the frame expressed in the ref_frame coordinates. + * \endenglish + */ + std::vector frameGetPose(const std::string &name, + const std::string &rel_frame, + const std::string &ref_frame); + + /** + * @ingroup SyncMove + * \chinese + * 将位姿从 from_frame 坐标系转换到 to_frame 坐标系。 + * + * 如果任一坐标系参数不是已存在的坐标系,则操作会失败。 + * + * 如果用于 MotionPlus,所有三个参数也可以是外部轴或轴组的名称。 + * + * @param pose: 要转换的位姿 + * @param from_frame: 原始坐标系的参考坐标系名称 + * @param to_frame: 新坐标系的参考坐标系名称 + * + * @return 以 to_frame 坐标系表达的 pose 值。 + * \endchinese + * \english + * Convert pose from from_frame to to_frame. + * + * This will fail if either coordinate system argument is not an existing + * frame. + * + * If being used with MotionPlus, all three arguments can also be the names + * of external axes or axis groups. + * + * @param pose: pose to be converted + * @param from_frame: name of reference frame at origin of old coordinate + * system + * @param to_frame: name of reference frame at origin of new coordinate + * system + * + * @return Value of pose expressed in the coordinates of to_frame. + * \endenglish + */ + std::vector frameConvertPose(const std::vector &pose, + const std::string &from_frame, + const std::string &to_frame); + + /** + * @ingroup SyncMove + * \chinese + * 查询指定名称的坐标系是否存在。 + * + * @param name: 要查询的坐标系名称。 + * + * @return 如果存在该名称的坐标系则返回 true,否则返回 false。 + * \endchinese + * \english + * Queries for the existence of a frame by the given name. + * + * @param name: name of the frame to be queried. + * + * @return Returns true if there is a frame by the given name, false if not. + * \endenglish + */ + bool frameExist(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 获取名为 name 的坐标系在世界模型中的父坐标系名称。 + * + * 如果该坐标系没有附加到其他坐标系,则其父坐标系为 "world"。 + * + * @param name: 要查询的坐标系名称 + * + * @return 父坐标系的名称,字符串类型 + * \endchinese + * \english + * Get the parent of the frame named name in the world model. + * + * If the frame is not attached to another frame, then “world” is the + * parent. + * + * @param name: the frame being queried + * + * @return name of the parent as a string + * \endenglish + */ + std::string frameGetParent(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 返回指定父对象的直接子对象坐标系名称列表。父子关系由世界模型的附加关系定义。 + * 如果用于 MotionPlus,子对象也可以是轴组或轴。 + * + * @param name: 父对象的名称。 + * + * @return 直接子对象坐标系名称列表 + * \endchinese + * \english + * Returns a list of immediate child object frame names. Parent-child + * relationships are defined by world model attachments. If being used with + * MotionPlus, the child objects may also be an axis group or an axis. + * + * @param name: the name of the parent object. + * + * @return a list of immediate child object frame names + * \endenglish + */ + std::vector frameGetChildren(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 向世界模型添加一个新的轴组,名称为 name。轴组基座放置在 ref_frame 坐标系下的 pose 位置。 + * + * 轴组只能附加到世界坐标系。 + * + * 每个轴组的基座都附加有一个坐标系,可以通过轴组名称作为参数传递给其他世界模型函数。 + * + * 世界模型最多可添加 6 个轴组。 + * + * @param name: 要添加的轴组名称,不能为空字符串。世界模型对象(如坐标系、轴组、轴等)的名称必须唯一。 + * @param pose: 轴组基座在参考坐标系下的位姿。 + * @param ref_frame (可选): pose 所在的参考坐标系名称,可以是任何带有坐标系的世界模型实体(如坐标系、轴组、轴等)。默认值 "base" 表示机器人基座坐标系。 + * + * @return + * \endchinese + * \english + * Adds a new axis group with the given name to the world model. It is + * placed at the given pose in the reference coordinate frame defined by + * ref_frame. + * + * An axis group can only be attached to the world coordinate frame. + * + * Each axis group has a coordinate frame attached to its base, which can be + * used as an argument to other world model functions by referring the name + * of the group. + * + * At most 6 axis groups can be added to the world model. + * + * @param name: (string) Name of the axis group to add. The name cannot be + * an empty string. Names used by world model objects (e.g., frame, axis + * group, axis, etc.) must be unique. + * + * @param pose: (pose) Pose of the axis group’s base, in the reference + * coordinate frame. + * + * @param ref_frame (optional): (string) Name of the reference coordinate + * frame that pose is defined in. This can be any world model entity with a + * coordinate system (e.g., frame, axis group, axis, etc.). The default + * value "base" refers to the robot’s base frame. + * + * @return + * \endenglish + */ + int axisGroupAdd(const std::string &name, const std::vector &pose, + const std::string &ref_frame); + + /** + * @ingroup SyncMove + * \chinese + * 删除具有给定名称的轴组。 + * + * 所有附加的轴也会被禁用(如果处于活动状态)并删除。 + * + * 如果该轴组正被其他函数控制,则操作会失败。 + * + * @param name: 要删除的轴组名称。该名称的轴组必须存在。 + * + * @return + * \endchinese + * \english + * Deletes the axis group with the given name from the world model. + * + * All attached axes are also disabled (if live) and deleted. + * + * This function will fail, if this axis group is under control by another function. + * + * @param name: (string) Name of the axis group to delete. Axis group with + * such name must exist. + * + * @return + * \endenglish + */ + int axisGroupDelete(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 向名为 group_name 的轴组添加一个名为 name 的外部轴。该轴在 parent 坐标系下的 pose 位置附加,pose 表示轴位置为 0 时的位姿。 + * 轴的类型、最大速度、最大加速度、位置限制和索引分别由 type、v_limit、a_limit、q_limits 和 axis_index 定义。 + * pose 参数通常通过外部轴调试标定流程获得。 + * 如果该轴组正被其他函数控制,或附加关系形成闭环,则操作会失败。 + * + * @param group_name: 要添加轴的轴组名称,需已通过 axis_group_add() 创建且存在。 + * @param name: 新轴的名称,不能为空且需唯一。 + * @param parent: 父轴名称,若为空或与 group_name 相同,则附加到轴组基座。父轴需已存在于该轴组。 + * @param pose: 轴在父坐标系下的零位姿。type 为 0(旋转轴)时,z 轴为旋转轴;type 为 1(直线轴)时,z 轴为移动方向。 + * @param type: 轴类型,0 表示旋转轴,1 表示直线轴。 + * @param v_limit: 最大速度。 + * @param a_limit: 最大加速度。 + * @param q_limits: 位置限制。 + * @param axis_index: 轴索引。 + * \endchinese + * \english + * Adds an external axis with the given name to the axis group named group_name. + * The axis is attached at the given pose in the reference coordinate frame defined by parent when its axis position is 0. + * The type, max velocity, max acceleration, position limits, and index of this axis are defined by type, v_limit, a_limit, q_limits, and axis_index, respectively. + * The pose parameter is typically obtained from a calibration process when the external axis is commissioned. + * This function will fail if this axis group is under control of another function, or if the kinematic chain created by the attachment forms a closed chain. + * + * @param group_name: Name of the axis group this new axis is added to. The axis group would have been created using axis_group_add(). Axis group with such name must exist. + * @param name: Name of the new axis. The name cannot be an empty string. Names used by world model objects (e.g., frame, axis group, axis, etc.) must be unique. + * @param parent: Name of the parent axis. If it’s empty or the same as group_name, the new axis will be attached to the base of the axis group. Axis with such name must exist in the axis group. + * @param pose: The zero-position pose, in the parent coordinate frame, this axis will be placed and attached to. This is the pose the axis will be (relative to its parent) when its axis position is 0. If type is 0 (rotary), then the z axis of the frame corresponds to the axis of rotation. If type is 1 (linear), then the z axis is the axis of translation. + * @param type: Axis type, 0 for rotary, 1 for linear. + * @param v_limit: Maximum velocity. + * @param a_limit: Maximum acceleration. + * @param q_limits: Position limits. + * @param axis_index: Axis index. + * \endenglish + */ + int axisGroupAddAxis(const std::string &group_name, const std::string &name, + const std::string &parent, + const std::vector &pose); + + /** + * @ingroup SyncMove + * \chinese + * 更新指定名称的轴的相关属性。pose 参数通常通过外部轴调试标定流程获得。 + * 如果该轴所属的轴组正被其他命令控制,则操作会失败。 + * 如果该轴组中任何已附加的轴处于激活和使能状态,则操作会失败。 + * + * @param name: 要更新的轴的名称,需已存在。 + * @param pose (可选): 轴在父轴(或轴组)坐标系下的零位姿。即轴位置为 0 时的位姿。 + * \endchinese + * \english + * Updates the corresponding properties of axis with name. The pose + * parameter is typically obtained from a calibration process when the + * external axis is commissioned. See here for a guide on a basic routine + * for calibrating a single rotary axis. + * + * This function will fail, if the axis group the axis attached to is + * already being controlled by another command. + * This function will fail, if any attached axis of the axis group is live + * and enabled. + * + * @param name: (string) Name of the axis to update. Axis with such name + * must exist. + * + * @param pose (optional): (pose) New zero-position pose, in the coordinate + * frame of the parent axis (or axis group), of the axis. This is the pose + * of the axis when its axis position is 0. + * \endenglish + */ + int axisGroupUpdateAxis(const std::string &name, + const std::vector &pose); + + /** + * @ingroup SyncMove + * \chinese + * 返回指定轴名称在 RTDE 目标位置和实际位置数组中的索引。 + * + * @param axis_name: (string) 要查询的轴名称。该名称的轴必须存在。 + * + * @return integer: 该轴在 RTDE 目标位置和实际位置数组中的索引。 + * \endchinese + * \english + * Returns the index of the axis with given axis_name in the RTDE target + * positions and actual positions arrays. + * + * @param axis_name: (string) Name of the axis in query. + * Axis with such name must exist. + * + * @return integer: Index of the axis in the RTDE target positions and + * actual positions arrays. + * \endenglish + */ + int axisGroupGetAxisIndex(const std::string &name); + + /** + * @ingroup SyncMove + * \chinese + * 返回指定轴索引对应的轴名称。 + * + * @param axis_index: (整数) 要查询的轴索引。该索引的轴必须存在。 + * + * @return 字符串: 轴的名称。 + * \endchinese + * \english + * Returns the name of the axis with the given axis_index. + * + * @param axis_index: (integer) Index of the axis in query. + * Axis with such index must exist. + * + * @return string: Name of the axis. + * \endenglish + */ + std::string axisGroupGetAxisName(int index); + + /** + * @ingroup SyncMove + * \chinese + * 返回指定轴组的当前目标位置。 + * 如果未指定 group_name,则返回所有外部轴的目标位置。 + * + * 如果外部轴总线被禁用,则该函数会失败。 + * + * @param group_name (可选): (string) 要查询的轴组名称。该名称的轴组必须真实存在。 + * + * @return Double[]: 涉及轴的目标位置,顺序为其外部轴索引顺序。 + * \endchinese + * \english + * Returns the current target positions of the axis group with group_name. + * If group_name is not provided, the target positions of all external axes + * will be returned. + * + * This function will fail, if the external axis bus is disabled. + * + * @param group_name (optional): (string) Name of the axis group in query. + * Axis group with such name must REALLY exist. + * + * @return Double[]: Target positions of the involved axes, in the order of + * their external axis indices. + * \endenglish + */ + std::vector axisGroupGetTargetPositions( + const std::string &group_name); + + /** + * @ingroup SyncMove + * \chinese + * 返回指定轴组的当前实际位置。 + * 如果未指定 group_name,则返回所有外部轴的实际位置。 + * + * 如果外部轴总线被禁用,则该函数会失败。 + * + * @param group_name (可选): (string) 要查询的轴组名称。该名称的轴组必须真实存在。 + * + * @return Double[]: 涉及轴的实际位置,顺序为其外部轴索引顺序。 + * \endchinese + * \english + * Returns the current actual positions of the axis group with group_name. + * If group_name is not provided, the actual positions of all external axes + * will be returned. + * + * This function will fail, if the external axis bus is disabled. + * + * @param group_name (optional): (string) Name of the axis group in query. + * Axis group with such name must exist. + * + * @return Double[]: Actual positions of the involved axes, in the order of + * their external axis indices. + * \endenglish + */ + std::vector axisGroupGetActualPositions( + const std::string &group_name); + + /** + * @ingroup SyncMove + * \chinese + * 通过给定的 offset,将轴组 group_name 的目标位置和实际位置整体偏移。 + * + * 这是一个仅在控制器内部进行的软件偏移,不会影响外部轴驱动器。该偏移也会应用于通过 RTDE 发布的任何目标和实际位置流。 + * + * @param group_name: (string) 要应用偏移的轴组名称。该名称的轴组必须存在。 + * + * @param offset: (float[]) 目标和实际位置需要整体偏移的量。offset 的大小必须与该轴组所包含的轴数量一致。 + * + * @return + * \endchinese + * \english + * Shifts the target and actual positions of the axis group group_name by + * the given offset. + * + * This is a software shift that happens in the controller only, it does not + * affect external axis drives. The shift is also applied to any streamed + * target and actual positions published on RTDE. + * + * @param group_name: (string) Name of the axis group to apply the offset + * positions to. Axis group with such name must exist. + * + * @param offset: (float[]) Offsets that the target and actual positions + * should be shifted by. The size of offset must match the number of axes + * attached to the given group. + * + * @return + * \endenglish + */ + int axisGroupOffsetPositions(const std::string &group_name, + const std::vector &offset); + + /** + * @ingroup SyncMove + * \chinese + * 以梯形速度曲线将名为 group_name 的轴组移动到新的位置 q。 + * 参数 a 指定本次运动的最大加速度占各轴加速度极限的百分比。 + * 参数 v 指定本次运动的最大速度占各轴速度极限的百分比。 + * + * 实际的加速度和速度由最受限制的轴决定,以确保所有轴在加速、匀速和减速阶段同时完成。 + * + * @param group_name: (string) 要移动的轴组名称。该名称的轴组必须存在。 + * @param q: (float[]) 目标位置,旋转轴为弧度,直线轴为米。如果目标超出位置极限,则会被限制在最近的极限值。涉及的轴按其索引递增排序。q 的大小必须与该轴组包含的轴数量一致。 + * @param a: (float) 本次运动的最大加速度因子,取值范围 (0,1],表示占加速度极限的百分比。 + * @param v: (float) 本次运动的最大速度因子,取值范围 (0,1],表示占速度极限的百分比。 + * + * 返回值: 无 + * \endchinese + * \english + * Moves the axes of axis group named group_name to new positions q, using a + * trapezoidal velocity profile. Factor a specifying the percentage of the + * max profile accelerations out of the acceleration limits of each axes. + * Factor v specifying the percentage of the max profile velocities out of + * the velocity limits of each axes. + * + * The actual accelerations and velocities are determined by the most + * constraining axis, so that all the axes complete the acceleration, + * cruise, and deceleration phases at the same time. + * + * @param group_name: (string) Name of the axis group to move. + * Axis group with such name must exist. + * + * @param q: (float[]) Target positions in rad (rotary) or in m (linear). If + * the target exceeds the position limits, then it is set to the nearest + * limit. The involved axes are ordered increasingly by their axis indices. + * The size of q must match the number of axes attached to the given group. + * + * @param a: (float) Factor specifying the max accelerations of this move + * out of the acceleration limits. a must be in range of (0,1]. + * + * @param v: (float) Factor specifying the max velocities of this move out + * of the velocity limits. v must be in range of (0,1]. + * + * Return: n/a + * \endenglish + */ + int axisGroupMoveJoint(const std::string &group_name, + const std::vector &q, double a, double v); + + /** + * @ingroup SyncMove + * \chinese + * 以指定的加速度因子 a,将名为 group_name 的轴组加速到目标速度 qd。该函数会运行 t 秒。 + * @param group_name: (string) 要控制的外部轴组名称,必须已存在。 + * @param qd: (float[]) 轴组各轴的目标速度。如果目标速度超过速度极限,则会被限制在极限值。涉及的轴按其索引递增排序。qd 的大小必须与该轴组包含的轴数量一致。 + * @param a: (float) 本次运动的最大加速度因子,取值范围 (0,1],表示占加速度极限的百分比。 + * @param t (可选): (float) 函数运行的持续时间(秒)。若 t < 0,则函数将在目标速度达到时返回;若 t ≥ 0,则函数将在该持续时间后返回,无论实际速度是否达到目标值。 + * \endchinese + * \english + * Accelerates the axes of axis group named group_name up to the target + * velocities qd. Factor a specifying the percentage of the max + * accelerations out of the acceleration limits of each axes. The function + * will run for a period of t seconds. + * + * @param group_name: (string) Name of the external axis group to control. + * Axis group with such name must exist. + * + * @param qd: (float[]) Target velocities for the axes in the axis group. If + * the target exceeds the velocity limits, then it is set to the limit. The + * involved axes are ordered increasingly by their axis indices. The size of + * qd must match the number of axes attached to the given group. + * + * @param a: (float) Factor specifying the max accelerations of this move + * out of the acceleration limits. a must be in range of (0,1]. + * + * @param t (optional): (float) Duration in seconds before the function + * returns. If t < 0, then the function will return when the target + * velocities are reached. if t ≥ 0, then the function will return after + * this duration, regardless of what the achieved axes velocities are. + * \endenglish + */ + int axisGroupSpeedJoint(const std::string &group_name, + const std::vector &qd, double a, double t); + +protected: + void *d_; +}; + +using SyncMovePtr = std::shared_ptr; +} // namespace common_interface +} // namespace arcs +#endif // AUBO_SDK_SYNC_MOVE_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/system_info.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/system_info.h new file mode 100644 index 00000000..f2fc2dc2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/system_info.h @@ -0,0 +1,359 @@ +/** @file system_info.h + * @brief 获取系统信息接口,如接口板的版本号、示教器软件的版本号 + */ +#ifndef AUBO_SDK_SYSTEM_INFO_INTERFACE_H +#define AUBO_SDK_SYSTEM_INFO_INTERFACE_H + +#include +#include +#include + +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup SystemInfo SystemInfo (系统信息) + * 系统信息 + * \endchinese + * + * \english + * @defgroup SystemInfo System Information + * System Information + * \endenglish + */ +class ARCS_ABI_EXPORT SystemInfo +{ +public: + SystemInfo(); + virtual ~SystemInfo(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取控制器软件版本号 + * + * @return 返回控制器软件版本号 + * + * @par Python函数原型 + * getControlSoftwareVersionCode(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua函数原型 + * getControlSoftwareVersionCode() -> number + * + * @par C++示例 + * @code + * int control_version = + * rpc_cli->getSystemInfo()->getControlSoftwareVersionCode(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareVersionCode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":28003} + * + * \endchinese + * \english + * Get the controller software version code + * + * @return Returns the controller software version code + * + * @par Python prototype + * getControlSoftwareVersionCode(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua prototype + * getControlSoftwareVersionCode() -> number + * + * @par C++ example + * @code + * int control_version = + * rpc_cli->getSystemInfo()->getControlSoftwareVersionCode(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareVersionCode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":28003} + * + * \endenglish + */ + int getControlSoftwareVersionCode(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取完整控制器软件版本号 + * + * @return 返回完整控制器软件版本号 + * + * @par Python函数原型 + * getControlSoftwareFullVersion(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua函数原型 + * getControlSoftwareFullVersion() -> string + * + * @par C++示例 + * @code + * std::string control_version = + * rpc_cli->getSystemInfo()->getControlSoftwareFullVersion(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareFullVersion","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"0.31.0-alpha.16+20alc76"} + * + * \endchinese + * \english + * Get the full controller software version + * + * @return Returns the full controller software version + * + * @par Python prototype + * getControlSoftwareFullVersion(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua prototype + * getControlSoftwareFullVersion() -> string + * + * @par C++ example + * @code + * std::string control_version = + * rpc_cli->getSystemInfo()->getControlSoftwareFullVersion(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareFullVersion","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"0.31.0-alpha.16+20alc76"} + * + * \endenglish + */ + std::string getControlSoftwareFullVersion(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取接口版本号 + * + * @return 返回接口版本号 + * + * @par Python函数原型 + * getInterfaceVersionCode(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua函数原型 + * getInterfaceVersionCode() -> number + * + * @par C++示例 + * @code + * int interface_version = + * rpc_cli->getSystemInfo()->getInterfaceVersionCode(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getInterfaceVersionCode","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":22003} + * + * \endchinese + * \english + * Get the interface version code + * + * @return Returns the interface version code + * + * @par Python prototype + * getInterfaceVersionCode(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua prototype + * getInterfaceVersionCode() -> number + * + * @par C++ example + * @code + * int interface_version = + * rpc_cli->getSystemInfo()->getInterfaceVersionCode(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getInterfaceVersionCode","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":22003} + * + * \endenglish + */ + int getInterfaceVersionCode(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取控制器软件构建时间 + * + * @return 返回控制器软件构建时间 + * + * @par Python函数原型 + * getControlSoftwareBuildDate(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua函数原型 + * getControlSoftwareBuildDate() -> string + * + * @par C++示例 + * @code + * std::string build_date = + * rpc_cli->getSystemInfo()->getControlSoftwareBuildDate(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareBuildDate","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"2024-3-5 07:03:20"} + * + * \endchinese + * \english + * Get the controller software build date + * + * @return Returns the controller software build date + * + * @par Python prototype + * getControlSoftwareBuildDate(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua prototype + * getControlSoftwareBuildDate() -> string + * + * @par C++ example + * @code + * std::string build_date = + * rpc_cli->getSystemInfo()->getControlSoftwareBuildDate(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareBuildDate","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"2024-3-5 07:03:20"} + * + * \endenglish + */ + std::string getControlSoftwareBuildDate(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取控制器软件git版本 + * + * @return 返回控制器软件git版本 + * + * @par Python函数原型 + * getControlSoftwareVersionHash(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua函数原型 + * getControlSoftwareVersionHash() -> string + * + * @par C++示例 + * @code + * std::string git_version = + * rpc_cli->getSystemInfo()->getControlSoftwareVersionHash(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareVersionHash","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":"fa4f64a"} + * + * \endchinese + * \english + * Get the controller software git version + * + * @return Returns the controller software git version + * + * @par Python prototype + * getControlSoftwareVersionHash(self: pyaubo_sdk.SystemInfo) -> str + * + * @par Lua prototype + * getControlSoftwareVersionHash() -> string + * + * @par C++ example + * @code + * std::string git_version = + * rpc_cli->getSystemInfo()->getControlSoftwareVersionHash(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSoftwareVersionHash","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":"fa4f64a"} + * + * \endenglish + */ + std::string getControlSoftwareVersionHash(); + + /** + * @ingroup SystemInfo + * \chinese + * 获取系统时间(软件启动时间 ns 纳秒) + * + * @return 返回系统时间(软件启动时间 ns 纳秒) + * + * @par Python函数原型 + * getControlSystemTime(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua函数原型 + * getControlSystemTime() -> number + * + * @par C++示例 + * @code + * std::string system_time = + * rpc_cli->getSystemInfo()->getControlSystemTime(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSystemTime","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":9287799079682} + * + * \endchinese + * \english + * Get the system time (software start time in nanoseconds) + * + * @return Returns the system time (software start time in nanoseconds) + * + * @par Python prototype + * getControlSystemTime(self: pyaubo_sdk.SystemInfo) -> int + * + * @par Lua prototype + * getControlSystemTime() -> number + * + * @par C++ example + * @code + * std::string system_time = + * rpc_cli->getSystemInfo()->getControlSystemTime(); + * @endcode + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"SystemInfo.getControlSystemTime","params":[],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":9287799079682} + * + * \endenglish + */ + uint64_t getControlSystemTime(); + +protected: + void *d_; +}; + +using SystemInfoPtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/trace.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/trace.h new file mode 100644 index 00000000..762f35dd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/trace.h @@ -0,0 +1,243 @@ +/** @file trace.h + * \~chinese @brief 向控制器日志系统注入日志方面的接口 \~english @brief Interface for injecting logs into the controller's logging system + */ +#ifndef AUBO_SDK_TRACE_INTERFACE_H +#define AUBO_SDK_TRACE_INTERFACE_H + +#include +#include +#include +#include + +#include +#include + +namespace arcs { +namespace common_interface { + +/** + * \chinese + * @defgroup Trace Trace (日志与弹窗) + * 提供给控制器扩展程序的日志记录系统 + * \endchinese + * + * \english + * @defgroup Trace Log and Pop-up + * Log recording system for controller extension programs + * \endenglish + */ +class ARCS_ABI_EXPORT Trace +{ +public: + Trace(); + virtual ~Trace(); + + /** + * @ingroup Trace + * \~chinese 向 aubo_control 日志注入告警信息 \~english Injects alarm information into the aubo_control log + * + * TraceLevel: \n + * 0 - FATAL \n + * 1 - ERROR \n + * 2 - WARNING \n + * 3 - INFO \n + * 4 - DEBUG \n + * + * \~chinese code定义参考 error_stack \~english Code definitions refer to error_stack + * + * @param level + * @param code + * @param args + * @return + * + * \~chinese @par Python函数原型 \~english @par Python function prototype + * alarm(self: pyaubo_sdk.Trace, arg0: arcs::common_interface::TraceLevel, + * arg1: int, arg2: List[str]) -> int + * + * \~chinese @par Lua函数原型 \~english @par Lua function prototype + * alarm(level: number, code: number, args: table) -> nil + * + * \~chinese @par JSON-RPC请求示例 \~english @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.Trace.alarm","params":["",1,["Error","Trajectory + * planning failed!","1"]],"id":1} + * + * \~chinese @par JSON-RPC响应示例 \~engish @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * + */ + int alarm(TraceLevel level, int code, + const std::vector &args = {}); + + /** + * @ingroup Trace + * \chinese + * 打印文本信息到日志中 + * + * @param msg 文本信息 + * @return + * + * @par Python函数原型 + * textmsg(self: pyaubo_sdk.Trace, arg0: str) -> int + * + * @par Lua函数原型 + * textmsg(msg: string) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.Trace.textmsg","params":["test"],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * print message into log + * + * @param msg message information + * @return + * + * @par Python function prototype + * textmsg(self: pyaubo_sdk.Trace, arg0: str) -> int + * + * @par Lua function prototype + * textmsg(msg: string) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.Trace.textmsg","params":["test"],"id":1} + * + * @par JSON-RPC responose example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int textmsg(const std::string &msg); + + /** + * \~chinese 通知上位机 \~english Notify the system + * + * @param msg + * @return + */ + int notify(const std::string &msg); + + /** + * @ingroup Trace + * \chinese + * 向连接的 RTDE 客户端发送弹窗请求 + * + * @param level + * @param title + * @param msg + * @param mode 模式 \n + * 0: 普通模式 \n + * 1: 阻塞模式 \n + * 2: 输入模式 bool \n + * 3: 输入模式 int \n + * 4: 输入模式 double \n + * 5: 输入模式 string \n + * @return + * + * @par Python函数原型 + * popup(self: pyaubo_sdk.Trace, arg0: arcs::common_interface::TraceLevel, + * arg1: str, arg2: str, arg3: int) -> int + * + * @par Lua函数原型 + * popup(level: number, title: string, msg: string, mode: number) -> nil + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.Trace.popup","params":["","Error","Trajectory + * planning failed!",1],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":0} + * \endchinese + * \english + * Send a popup request to the connected RTDE client + * + * @param level + * @param title + * @param msg + * @param mode mode \n + * 0: normal mode \n + * 1: blocking mode \n + * 2: input mode bool \n + * 3: input mode int \n + * 4: input mode double \n + * 5: input mode string \n + * @return + * + * @par Python function prototype + * popup(self: pyaubo_sdk.Trace, arg0: arcs::common_interface::TraceLevel, + * arg1: str, arg2: str, arg3: int) -> int + * + * @par Lua function prototype + * popup(level: number, title: string, msg: string, mode: number) -> nil + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.Trace.popup","params":["","Error","Trajectory + * planning failed!",1],"id":1} + * + * @par JSON-RPC response example + * {"id":1,"jsonrpc":"2.0","result":0} + * \endenglish + */ + int popup(TraceLevel level, const std::string &title, + const std::string &msg, int mode); + + /** + * @ingroup Trace + * \chinese + * peek最新的 AlarmInfo(上次一获取之后) + * + * last_time设置为0时,可以获取到所有的AlarmInfo + * + * @param num + * @param last_time + * @return + * + * @par Python函数原型 + * peek(self: pyaubo_sdk.Trace, arg0: int, arg1: int) -> + * List[arcs::common_interface::RobotMsg] + * + * @par Lua函数原型 + * peek(num: number, last_time: number) -> table + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"rob1.Trace.peek","params":[1,0],"id":1} + * + * @par JSON-RPC响应示例 + * {{"id":1,"jsonrpc":"2.0","result":[{"args":["RobotModeType.Running"], + * "code":30045,"level":"INFO","source":"rob1","timestamp":5102883064300}]} + * \endchinese + * \english + * peek the latest AlarmInfo (after the last retrieval) + * + * When last_time is set as 0, retrieve all AlarmInfo + * + * @param num + * @param last_time + * @return + * + * @par Python function prototype + * peek(self: pyaubo_sdk.Trace, arg0: int, arg1: int) -> + * List[arcs::common_interface::RobotMsg] + * + * @par Lua function prototype + * peek(num: number, last_time: number) -> table + * + * @par JSON-RPC request example + * {"jsonrpc":"2.0","method":"rob1.Trace.peek","params":[1,0],"id":1} + * + * @par JSON-RPC response example + * {{"id":1,"jsonrpc":"2.0","result":[{"args":["RobotModeType.Running"], + * "code":30045,"level":"INFO","source":"rob1","timestamp":5102883064300}]} + * \endenglish + */ + RobotMsgVector peek(size_t num, uint64_t last_time = 0); + +protected: + void *d_; +}; + +using TracePtr = std::shared_ptr; + +} // namespace common_interface +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/type_def.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/type_def.h new file mode 100644 index 00000000..3081fcba --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo/type_def.h @@ -0,0 +1,1105 @@ +/** @file type_def.h + * \~chinese @brief 数据类型的定义 \~english @brief enum type definitions + */ +#ifndef AUBO_SDK_TYPE_DEF_H +#define AUBO_SDK_TYPE_DEF_H + +#include +#include +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma execution_character_set("utf-8") +#endif + +// clang-format off + +namespace arcs { +namespace common_interface { + +/// Cartesion degree of freedom, 6 for x,y,z,rx,ry,rz +#define CARTESIAN_DOF 6 +#define SAFETY_PARAM_SELECT_NUM 2 ///< \~chinese 正常 + 缩减 \~english normal + reduced +#define SAFETY_PLANES_NUM 8 ///< \~chinese 安全平面的数量 \~english Number of safety planes +#define SAFETY_CUBIC_NUM 10 ///< \~chinese 安全立方体的数量 \~english Number of safety cubes +#define TOOL_CONFIGURATION_NUM 3 ///< \~chinese 工具配置数量 \~english Number of tool configurations + +using Vector3d = std::array; +using Vector4d = std::array; +using Vector3f = std::array; +using Vector4f = std::array; +using Vector6f = std::array; + +struct RobotSafetyParameterRange +{ + RobotSafetyParameterRange() + { + for (int i = 0; i < SAFETY_PARAM_SELECT_NUM; i++) { + params[i].power = 0.; + params[i].momentum = 0.; + params[i].stop_time = 0.; + params[i].stop_distance = 0.; + params[i].reduced_entry_time = 0.; + params[i].reduced_entry_distance = 0.; + params[i].tcp_speed = 0.; + params[i].elbow_speed = 0.; + params[i].tcp_force = 0.; + params[i].elbow_force = 0.; + std::fill(params[i].qmin.begin(), params[i].qmin.end(), 0.); + std::fill(params[i].qmax.begin(), params[i].qmax.end(), 0.); + std::fill(params[i].qdmax.begin(), params[i].qdmax.end(), 0.); + std::fill(params[i].joint_torque.begin(), + params[i].joint_torque.end(), 0.); + params[i].tool_orientation.fill(0.); + params[i].tool_deviation = 0.; + for (int j = 0; j < SAFETY_PLANES_NUM; j++) { + params[i].planes[j].fill(0.); + params[i].restrict_elbow[j] = 0; + } + } + for (int i = 0; i < SAFETY_PLANES_NUM; i++) { + trigger_planes[i].plane.fill(0.); + trigger_planes[i].restrict_elbow = 0; + } + for (int i = 0; i < SAFETY_CUBIC_NUM; i++) { + cubic[i].orig.fill(0.); + cubic[i].size.fill(0.); + cubic[i].restrict_elbow = 0; + } + for (int i = 0; i < TOOL_CONFIGURATION_NUM; i++) { + tools[i].fill(0.); + } + + tool_inclination = 0.; + tool_azimuth = 0.; + std::fill(safety_home.begin(), safety_home.end(), 0.); + + safety_input_emergency_stop = 0; + safety_input_safeguard_stop = 0; + safety_input_safeguard_reset = 0; + safety_input_auto_safeguard_stop = 0; + safety_input_auto_safeguard_reset = 0; + safety_input_three_position_switch = 0; + safety_input_operational_mode = 0; + safety_input_reduced_mode = 0; + safety_input_handguide = 0; + + safety_output_emergency_stop = 0; + safety_output_not_emergency_stop = 0; + safety_output_robot_moving = 0; + safety_output_robot_steady = 0; + safety_output_reduced_mode = 0; + safety_output_not_reduced_mode = 0; + safety_output_safe_home = 0; + safety_output_robot_not_stopping = 0; + safety_output_safetyguard_stop = 0; + + tp_3pe_for_handguide = 1; + allow_manual_high_speed = 0; + } + + uint32_t crc32{ 0 }; + + /// \~chinese 最多可以保存2套参数, 默认使用第 0 套参数 \~english At most 2 + /// sets of parameters can be saved, default is the 0th set + struct + { + float power; ///< \~chinese 关节力矩与关节角速度的乘积之和 \~english sum of joint torques times joint angular speeds + float momentum; ///< \~chinese 机器人动量限制 \~english robot momentum limit + float stop_time; ///< \~chinese 停机时间 ms \~english stop time in milliseconds + float stop_distance; ///< \~chinese 停机距离 m \~english stop distance in meters + float reduced_entry_time; ///< \~chinese 进入缩减模式的最大时间 \~english maximum time to enter reduced mode + float reduced_entry_distance; ///< \~chinese 进入缩减模式的最大距离(可由安全平面触发) \~english maximum distance to enter reduced mode (can be triggered by safety planes) + float tcp_speed; + float elbow_speed; + float tcp_force; + float elbow_force; + std::vector qmin; + std::vector qmax; + std::vector qdmax; + std::vector joint_torque; + Vector3f tool_orientation; ///< + float tool_deviation; + Vector4f planes[SAFETY_PLANES_NUM]; /// x,y,z,displacement + int restrict_elbow[SAFETY_PLANES_NUM]; + } params[SAFETY_PARAM_SELECT_NUM]; + + /// \~chinese 8个触发平面 \~english 8 trigger planes + struct + { + Vector4f plane; /// x,y,z,displacement + int restrict_elbow; + } trigger_planes[SAFETY_PLANES_NUM]; + + struct + { + Vector6f orig; ///< \~chinese 立方块的原点 (x,y,z,rx,ry,rz) \~english origin of the cubic (x,y,z,rx,ry,rz) + Vector3f size; ///< \~chinese 立方块的尺寸 (x,y,z) \~english size of the cubic (x,y,z) + int restrict_elbow; + } cubic[SAFETY_CUBIC_NUM]; ///< \~chinese 10个安全空间 \~english 10 safety spaces + + /// \~chinese 3个工具 \~english 3 tools + Vector4f tools[TOOL_CONFIGURATION_NUM]; /// x,y,z,radius + + float tool_inclination{ + 0. + }; ///< \~chinese 倾角 \~english inclination angle + float tool_azimuth{ 0. }; ///< \~chinese 方位角 \~english azimuth angle + std::vector safety_home; + + /// \~chinese 可配置IO的输入输出安全功能配置 \~english Configurable IO input + /// and output safety functions + uint32_t safety_input_emergency_stop; + uint32_t safety_input_safeguard_stop; + uint32_t safety_input_safeguard_reset; + uint32_t safety_input_auto_safeguard_stop; + uint32_t safety_input_auto_safeguard_reset; + uint32_t safety_input_three_position_switch; + uint32_t safety_input_operational_mode; + uint32_t safety_input_reduced_mode; + uint32_t safety_input_handguide; + + uint32_t safety_output_emergency_stop; + uint32_t safety_output_not_emergency_stop; + uint32_t safety_output_robot_moving; + uint32_t safety_output_robot_steady; + uint32_t safety_output_reduced_mode; + uint32_t safety_output_not_reduced_mode; + uint32_t safety_output_safe_home; + uint32_t safety_output_robot_not_stopping; + uint32_t safety_output_safetyguard_stop; + + int tp_3pe_for_handguide; ///< \~chinese 是否将示教器三档位开关作为拖动功能开关 \~english Whether to use the three-position switch of the teach pendant as a hand guiding function switch + int allow_manual_high_speed; ///< \~chinese 手动模式下允许高速运行 /~english Allow high-speed operation in manual mode +}; + +inline std::ostream &operator<<(std::ostream &os, + const RobotSafetyParameterRange &vd) +{ + // os << (int)vd; + return os; +} + +struct WObjectData +{ + /// \~chinese 是否为外部工具 \~english Whether it is an external tool + bool remote_tool{ false }; + + /// \~chinese 工件坐标系耦合的 \~english Coupled with the workpiece + /// coordinate system + std::string attach_frame{ "" }; + + /// \~english User coordinate system. \~chinese 用户坐标系 + /// \~chinese 如果 robhold 为 false, 那 uframe 的数值是基于 world \~english + /// If robhold is false, the values of uframe are based on world. + /// \~chinese 否则,uframe 的数值是基于 flange \~english Otherwise, the + /// values of uframe are based on flange. + std::vector user_coord{ std::vector(6, 0) }; + + /// \~chinese 工件坐标系,基于 uframe \~english tool coordinate system, + /// based on uframe + std::vector obj_coord{ std::vector(6, 0) }; +}; + +inline std::ostream &operator<<(std::ostream &os, WObjectData p) +{ + return os; +} + + +struct VibrationRecalibrationParameter{ + double mass; // 负载质量 + std::vector cog; // 负载质心 + std::vector inertia; // 负载惯量 + std::vector> points; // 路点,关节角 + std::vector> stiff_section; // 关节刚度数据 + std::vector> stiff_param; // 关节刚度数据 +}; + +inline std::ostream &operator<<(std::ostream &os, const VibrationRecalibrationParameter p) +{ + return os; +} + +/// \~chinese 接口函数返回值定义 \~english Error codes definition +/// +/// \~chinese 整数为警告,负数为错误,0为没有错误也没有警告 \~english whole +/// number is warning, negative number is error, 0 is no error and no warning +#define ENUM_AuboErrorCodes_DECLARES \ + ENUM_ITEM(AUBO_OK, 0, "Success") \ + ENUM_ITEM(AUBO_BAD_STATE, 1, "State error") \ + ENUM_ITEM(AUBO_QUEUE_FULL, 2, "Planning queue full") \ + ENUM_ITEM(AUBO_BUSY, 3, "The previous command is executing") \ + ENUM_ITEM(AUBO_TIMEOUT, 4, "Timeout") \ + ENUM_ITEM(AUBO_INVL_ARGUMENT, 5, "Invalid parameters") \ + ENUM_ITEM(AUBO_NOT_IMPLETEMENT, 6, "Interface not implemented") \ + ENUM_ITEM(AUBO_NO_ACCESS, 7, "Cannot access") \ + ENUM_ITEM(AUBO_CONN_REFUSED, 8, "Connection refused") \ + ENUM_ITEM(AUBO_CONN_RESET, 9, "Connection is reset") \ + ENUM_ITEM(AUBO_INPROGRESS, 10, "Execution in progress") \ + ENUM_ITEM(AUBO_EIO, 11, "Input/Output error") \ + ENUM_ITEM(AUBO_NOBUFFS, 12, "") \ + ENUM_ITEM(AUBO_REQUEST_IGNORE, 13, "Request was ignored") \ + ENUM_ITEM(AUBO_ALGORITHM_PLAN_FAILED, 14, \ + "Motion planning algorithm error") \ + ENUM_ITEM(AUBO_VERSION_INCOMPAT, 15, "Interface version unmatch") \ + ENUM_ITEM(AUBO_DIMENSION_ERR, 16, \ + "Input parameter dimension is incorrect") \ + ENUM_ITEM(AUBO_SINGULAR_ERR, 17, "Input configuration may be singular") \ + ENUM_ITEM(AUBO_POS_BOUND_ERR, 18, \ + "Input position boundary exceeds the limit range") \ + ENUM_ITEM(AUBO_INIT_POS_ERR, 19, "Initial position input is unreasonable") \ + ENUM_ITEM(AUBO_ELP_SETTING_ERR, 20, "Envelope body setting error") \ + ENUM_ITEM(AUBO_TRAJ_GEN_FAIL, 21, "Trajectory generation failed") \ + ENUM_ITEM(AUBO_TRAJ_SELF_COLLISION, 22, "Trajectory self collision") \ + ENUM_ITEM( \ + AUBO_IK_NO_CONVERGE, 23, \ + "Inverse kinematics computation did not converge; computation failed") \ + ENUM_ITEM(AUBO_IK_OUT_OF_RANGE, 24, \ + "Inverse kinematics result out of robot range") \ + ENUM_ITEM(AUBO_IK_CONFIG_DISMATCH, 25, \ + "Inverse kinematics input configuration contains errors") \ + ENUM_ITEM(AUBO_IK_JACOBIAN_FAILED, 26, \ + "The calculation of the inverse Jacobian matrix failed") \ + ENUM_ITEM(AUBO_IK_NO_SOLU, 27, \ + "The target point has solutions, but it has exceeded the joint " \ + "limit conditions") \ + ENUM_ITEM(AUBO_IK_UNKOWN_ERROR, 28, "Inverse kinematics unkown error") \ + ENUM_ITEM(AUBO_MOVE_IGNORED_SERVOMODE, 29, \ + "Robot is in servo mode where movement is disabled") \ + ENUM_ITEM(AUBO_MOVE_INVALID_SPEED_VALUE, 30, \ + "Movement speed must be a valid positive value (cannot be zero or negative)") \ + ENUM_ITEM(AUBO_MOVE_INVALID_ACCELERATION_VALUE, 31, \ + "Movement acceleration must be a valid positive value (cannot be zero or negative)") \ + ENUM_ITEM(AUBO_INVALID_FILE_PATH, 32, \ + "Please verify the file path. It appears to be invalid.") \ + ENUM_ITEM(AUBO_INST_QUEUED, 100, "Instruction pused into queue succeed") \ + ENUM_ITEM(AUBO_INTERNAL_ERR, 101, "Internal error caused by alg .etc.") \ + ENUM_ITEM(AUBO_BADSTATE_THREAD_DETACHED, 200, \ + "Bad state: Operation not allowed on detached thread") \ + ENUM_ITEM(AUBO_BADSTATE_THREAD_KILLED, 201, \ + "Bad state: Operation not allowed on killed thread") \ + ENUM_ITEM(AUBO_BADSTATE_TASK_NOT_FOUND, 202, \ + "Bad state: Specified task id does not exist in the task queue")\ + ENUM_ITEM(AUBO_BADSTATE_RTM_NOT_STARTED, 203, \ + "Bad state: RuntimeMachine has not been started yet") \ + ENUM_ITEM(AUBO_BADSTATE_RTM_NOT_STOPPED, 204, \ + "Bad state: RuntimeMachine must be in Stopped state for this operation") \ + ENUM_ITEM(AUBO_BADSTATE_RTM_NOT_PAUSED, 205, \ + "Bad state: RuntimeMachine must be in Paused state for this operation") \ + ENUM_ITEM(AUBO_BADSTATE_RTM_ABORTING, 206, "Bad state: RuntimeMachine is in aborting state") \ + ENUM_ITEM(AUBO_BADSTATE_PSTOP, 207, "Bad state: Operation blocked by protective stop") \ + ENUM_ITEM(AUBO_BADSTATE_ROBOT_ESTOP, 208, "Bad state: Robot emergency stop triggered") \ + ENUM_ITEM(AUBO_BADSTATE_SYSTEM_ESTOP, 209, "Bad state: System emergency stop triggered") \ + ENUM_ITEM(AUBO_BADSTATE_INVALID_ROBOT_MODE, 210, \ + "Bad state: Robot is not in required operation mode") \ + ENUM_ITEM(AUBO_BADSTATE_INVALID_SAFETY_MODE, 211, \ + "Bad state: Robot is not in required safety mode") \ + ENUM_ITEM(AUBO_BADSTATE_ROBOT_NOT_RUNNING, 212, \ + "Bad state: Robot must be in Running mode for this operation") \ + ENUM_ITEM(AUBO_BADSTATE_ROBOT_NOT_POWERED_OFF, 213, \ + "Bad state: Robot must be in PowerOff mode for this operation") \ + ENUM_ITEM(AUBO_BADSTATE_SERIAL_OPEN_FAILED, 214, "Bad state: Failed to open serial device") \ + ENUM_ITEM(AUBO_BADSTATE_SERIAL_NOT_A_TERMINAL, 215, \ + "Bad state: Specified device is not a terminal") \ + ENUM_ITEM(AUBO_BADSTATE_SERIAL_CONFIG_FAILED, 216, \ + "Bad state: Failed to configure serial port parameters") \ + ENUM_ITEM(AUBO_BADSTATE_KINEMATICS_COMPENSATE_FAILED, 217, \ + "Bad state: Failed to set kinematics compensation parameters") \ + ENUM_ITEM(AUBO_BADSTATE_ROBOT_NOT_STEADY, 218, "Bad state: Robot is not in steady state") \ + ENUM_ITEM(AUBO_BADSTATE_FREE_DRIVE_ACTIVE, 219, "Bad state: Free-drive mode is active") \ + ENUM_ITEM(AUBO_BADSTATE_FORCE_CTRL_ACTIVE, 220, "Bad state: Force control mode is active") \ + ENUM_ITEM(AUBO_BADSTATE_SIMULATION_MODE_ACTIVE, 221, \ + "Bad state: Operation not allowed in simulation mode") \ + ENUM_ITEM(AUBO_BADSTATE_MB_ERROR, 222, "Bad state: Modbus signal has error") \ + ENUM_ITEM(AUBO_BADSTATE_MB_TIMEOUT, 223, "Bad state: Modbus signal timeout") \ + ENUM_ITEM(AUBO_ERR_UNKOWN, 99999, "Unkown error occurred.") + +/** + * The RuntimeState enum + * + */ +#define ENUM_RuntimeState_DECLARES \ + ENUM_ITEM(Running, 0, "正在运行中") \ + ENUM_ITEM(Retracting, 1, "倒退") \ + ENUM_ITEM(Pausing, 2, "暂停中") \ + ENUM_ITEM(Paused, 3, "暂停状态") \ + ENUM_ITEM(Stepping, 4, "单步执行中") \ + ENUM_ITEM(Stopping, 5, "受控停止中(保持原有轨迹)") \ + ENUM_ITEM(Stopped, 6, "已停止") \ + ENUM_ITEM(Aborting, 7, "停止(最大速度关节运动停机)") + +/** + * \chinese + * @brief The RobotModeType enum + * + * 硬件强相关 + * \endchinese + * + * \english + * @brief The RobotModeType enum + * + * Hardware related + * \endenglish + */ +#define ENUM_RobotModeType_DECLARES \ + ENUM_ITEM(NoController, -1, "提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController") \ + ENUM_ITEM(Disconnected, 0, "没有连接到机械臂本体(控制器与接口板断开连接或是 EtherCAT 等总线断开)") \ + ENUM_ITEM(ConfirmSafety, 1, "正在进行安全配置, 断电状态下进行") \ + ENUM_ITEM(Booting, 2, "机械臂本体正在上电初始化") \ + ENUM_ITEM(PowerOff, 3, "机械臂本体处于断电状态") \ + ENUM_ITEM(PowerOn, 4, "机械臂本体上电成功, 刹车暂未松开(抱死), 关节初始状态未获取") \ + ENUM_ITEM(Idle, 5, "机械臂上电成功, 刹车暂未松开(抱死), 电机不通电, 关节初始状态获取完成") \ + ENUM_ITEM(BrakeReleasing, 6, "机械臂上电成功, 刹车正在松开") \ + ENUM_ITEM(BackDrive, 7, "反向驱动:刹车松开, 电机不通电") \ + ENUM_ITEM(Running, 8, "机械臂刹车松开, 运行模式, 控制权由硬件移交给软件") \ + ENUM_ITEM(Maintaince, 9, "维护模式: 包括固件升级、参数写入等") \ + ENUM_ITEM(Error, 10, "") \ + ENUM_ITEM(PowerOffing, 11, "机械臂本体处于断电过程中") + +#define ENUM_SafetyModeType_DECLARES \ + ENUM_ITEM(Undefined, 0, "安全状态待定") \ + ENUM_ITEM(Normal, 1, "正常运行模式") \ + ENUM_ITEM(ReducedMode, 2, "缩减运行模式") \ + ENUM_ITEM(Recovery, 3, "启动时如果在安全限制之外, 机器人将进入recovery模式") \ + ENUM_ITEM(Violation, 4, "超出安全限制(根据安全配置, 例如速度超限等)") \ + ENUM_ITEM(ProtectiveStop, 5, "软件触发的停机(保持轨迹, 不抱闸, 不断电)") \ + ENUM_ITEM(SafeguardStop, 6, "IO触发的防护停机(不保持轨迹, 抱闸, 不断电)") \ + ENUM_ITEM(SystemEmergencyStop,7, "系统急停:急停信号由外部输入(可配置输入), 不对外输出急停信号") \ + ENUM_ITEM(RobotEmergencyStop, 8, "机器人急停:控制柜急停输入或者示教器急停按键触发, 对外输出急停信号") \ + ENUM_ITEM(Fault, 9, "机械臂硬件故障或者系统故障") + //ValidateJointId + +/** + * \chinese + * 根据ISO 10218-1:2011(E) 5.7节 + * Automatic: In automatic mode, the robot shall execute the task programme and + * the safeguarding measures shall be functioning. Automatic operation shall be + * prevented if any stop condition is detected. Switching from this mode shall + * result in a stop. + * \endchinese + * \english + * Based on ISO 10218-1:2011(E) Section 5.7 + * Automatic: In automatic mode, the robot shall execute the task programme and + * the safeguarding measures shall be functioning. Automatic operation shall be + * prevented if any stop condition is detected. Switching from this mode shall + * result in a stop. + * \endenglish + */ +#define ENUM_OperationalModeType_DECLARES \ + ENUM_ITEM(Disabled, 0, "禁用模式: 不使用 Operational Mode") \ + ENUM_ITEM(Automatic, 1, "自动模式: 机器人正常工作模式, 运行速度不会被限制 (auto mode: robot normal operation, speed will not be limited)") \ + ENUM_ITEM(Manual, 2, "手动模式: 机器人编程示教模式(T1), 机器人运行速度将会被限制或者机器人程序校验模式(T2) (manual mode: robot programming teaching mode (T1), robot running speed will be limited or robot program verification mode (T2)") \ + +/** + * \~chinese 机器人的控制模式, 最终的控制对象 \~english Robot control mode, the final control object + */ +#define ENUM_RobotControlModeType_DECLARES \ + ENUM_ITEM(Unknown, 0, "未知的控制模式 (unknown control mode)") \ + ENUM_ITEM(Position, 1, "位置控制 movej (position control)") \ + ENUM_ITEM(Speed, 2, "速度控制 speedj/speedl (speed control)") \ + ENUM_ITEM(Servo, 3, "位置控制 servoj (position control)") \ + ENUM_ITEM(Freedrive, 4, "拖动示教 freedrive_mode") \ + ENUM_ITEM(Force, 5, "末端力控 force_mode") \ + ENUM_ITEM(Torque, 6, "关节力矩控制 (joint torque control)") \ + ENUM_ITEM(Collision, 7, "碰撞模式 (collision mode)") \ + +#define ENUM_JointServoModeType_DECLARES \ + ENUM_ITEM(Unknown, -1, "未知") \ + ENUM_ITEM(Open, 0, "开环模式 (open loop mode)") \ + ENUM_ITEM(Current, 1, "电流伺服模式 (current servo mode)") \ + ENUM_ITEM(Velocity, 2, "速度伺服模式 (speed servo mode)") \ + ENUM_ITEM(Position, 3, "位置伺服模式 (position servo mode)") \ + ENUM_ITEM(Torque, 4, "力矩伺服模式 (torque servo mode)") \ + +#define ENUM_JointStateType_DECLARES \ + ENUM_ITEM(Poweroff, 0, "节点未连接到接口板或者已经断电 (node not conected to interface board or already powered off)") \ + ENUM_ITEM(Idle, 2, "节点空闲 (node idle)") \ + ENUM_ITEM(Fault, 3, "节点错误, 节点停止伺服运动, 刹车抱死 (node error, node stopped servo move, brake engaged)") \ + ENUM_ITEM(Running, 4, "节点伺服 (node servo)") \ + ENUM_ITEM(Bootload, 5, "节点bootloader状态, 暂停一切通讯 (node bootloader state, pause all communication)") \ + +#define ENUM_StandardInputAction_DECLARES \ + ENUM_ITEM(Default, 0, "无触发") \ + ENUM_ITEM(Handguide, 1, "拖动示教,高电平触发") \ + ENUM_ITEM(GoHome, 2, "运动到工程初始位姿,高电平触发") \ + ENUM_ITEM(StartProgram, 3, "开始工程,上升沿触发") \ + ENUM_ITEM(StopProgram, 4, "停止工程,上升沿触发") \ + ENUM_ITEM(PauseProgram, 5, "暂停工程,上升沿触发") \ + ENUM_ITEM(PopupDismiss, 6, "消除弹窗,上升沿触发") \ + ENUM_ITEM(PowerOn, 7, "机器人上电/松刹车,上升沿触发") \ + ENUM_ITEM(PowerOff, 8, "机器人抱死刹车/断电,上升沿触发") \ + ENUM_ITEM(ResumeProgram, 9, "恢复工程,上升沿触发") \ + ENUM_ITEM(SlowDown1, 10, "机器人减速触发1,高电平触发") \ + ENUM_ITEM(SlowDown2, 11, "机器人减速触发2,高电平触发") \ + ENUM_ITEM(SafeStop, 12, "安全停止,高电平触发") \ + ENUM_ITEM(RunningGuard, 13, "信号,高电平有效") \ + ENUM_ITEM(MoveToFirstPoint, 14, "运动到工程初始位姿,高电平触发") \ + ENUM_ITEM(xSlowDown1, 15, "机器人减速触发1,低电平触发") \ + ENUM_ITEM(xSlowDown2, 16, "机器人减速触发2,低电平触发") \ + ENUM_ITEM(ConveyorTrack, 17, "传送带1检测到物品触发,高电平触发") \ + ENUM_ITEM(xConveyorTrack, 18, "传送带1检测到物品触发,低电平触发") \ + ENUM_ITEM(UnlockProtectiveStop, 19, "解除保护性停止,上升沿触发") \ + ENUM_ITEM(ArbitraryResumeProgram , 20, "恢复工程,不检查当前位置和暂停点之间的距离,上升沿触发") + +#define ENUM_StandardOutputRunState_DECLARES \ + ENUM_ITEM(None, 0, "标准输出状态未定义") \ + ENUM_ITEM(StopLow, 1, "低电平指示工程停止") \ + ENUM_ITEM(StopHigh, 2, "高电平指示机器人停止") \ + ENUM_ITEM(RunningHigh, 3, "指示工程正在运行") \ + ENUM_ITEM(PausedHigh, 4, "指示工程已经暂停") \ + ENUM_ITEM(AtHome, 5, "高电平指示机器人正在拖动") \ + ENUM_ITEM(Handguiding, 6, "高电平指示机器人正在拖动") \ + ENUM_ITEM(PowerOn, 7, "高电平指示机器人已经上电") \ + ENUM_ITEM(RobotEmergencyStop, 8, "高电平指示机器人急停按下") \ + ENUM_ITEM(SystemEmergencyStop, 9, "高电平指示外部输入系统急停按下") \ + ENUM_ITEM(InternalEmergencyStop, 8, "高电平指示机器人急停按下") \ + ENUM_ITEM(ExternalEmergencyStop, 9, "高电平指示外部输入系统急停按下") \ + ENUM_ITEM(SystemError, 10, "系统错误,包括故障、超限、急停、安全停止、防护停止 ") \ + ENUM_ITEM(NotSystemError, 11, "无系统错误,包括普通模式、缩减模式和恢复模式 ") \ + ENUM_ITEM(RobotOperable, 12, "机器人可操作,机器人上电且松刹车了 ") \ + ENUM_ITEM(OperationalMode, 13, "高电平指示自动模式,低电平指示手动模式") \ + ENUM_ITEM(SafeguardStop, 14, "高电平指示处于安全停止状态") \ + ENUM_ITEM(ProtectiveStop, 15, "高电平指示处于防护停止状态") \ + ENUM_ITEM(ProgramAborted, 16, "高电平指示工程意外停止") \ + ENUM_ITEM(WaypointArrived, 17, "高电平指示机器人到达路点") + +#define ENUM_SafetyInputAction_DECLARES \ + ENUM_ITEM(Unassigned, 0, "安全输入未分配动作") \ + ENUM_ITEM(EmergencyStop, 1, "安全输入触发急停") \ + ENUM_ITEM(SafeguardStop, 2, "安全输入触发防护停止, 边沿触发") \ + ENUM_ITEM(SafeguardReset, 3, "安全输入触发防护重置, 边沿触发") \ + ENUM_ITEM(ThreePositionSwitch, 4, "3档位使能开关") \ + ENUM_ITEM(OperationalMode, 5, "切换自动模式和手动模式") \ + ENUM_ITEM(HandGuide, 6, "拖动示教") \ + ENUM_ITEM(ReducedMode, 7, "安全参数切换1(缩减模式),序号越低优先级越高,三路输出都无效时,选用第0组安全参数") \ + ENUM_ITEM(AutomaticModeSafeguardStop, 8, "自动模式下防护停机输入(需要配置三档位使能设备)") \ + ENUM_ITEM(AutomaticModeSafeguardReset, 9, "自动模式下上升沿触发防护重置(需要配置三档位使能设备)") + +#define ENUM_SafetyOutputRunState_DECLARES \ + ENUM_ITEM(Unassigned, 0, "安全输出未定义") \ + ENUM_ITEM(SystemEmergencyStop, 1, "输出高当有机器人急停输入或者急停按键被按下") \ + ENUM_ITEM(NotSystemEmergencyStop, 2, "输出低当有机器人急停输入或者急停按键被按下") \ + ENUM_ITEM(RobotMoving, 3, "输出高当有关节运动速度超过 0.1rad/s") \ + ENUM_ITEM(RobotNotMoving, 4, "输出高当所有的关节运动速度不超过 0.1rad/s") \ + ENUM_ITEM(ReducedMode, 5, "输出高当机器人处于缩减模式") \ + ENUM_ITEM(NotReducedMode, 6, "输出高当机器人不处于缩减模式") \ + ENUM_ITEM(SafeHome, 7, "输出高当机器人已经处于安全Home位姿") \ + ENUM_ITEM(RobotNotStopping, 8, "输出低当机器人正在急停或者安全停止中") + +#define ENUM_PayloadIdentifyMoveAxis_DECLARES \ + ENUM_ITEM(Joint_2_6, 0,"第2和6关节运动") \ + ENUM_ITEM(Joint_3_6, 1,"第3和6关节运动") \ + ENUM_ITEM(Joint_4_6, 2,"第4和6关节运动") \ + ENUM_ITEM(Joint_4_5_6, 3,"第4、5、6关节运动") \ + +#define ENUM_EnvelopingShape_DECLARES \ + ENUM_ITEM(Cube, 1,"立方体") \ + ENUM_ITEM(Column, 2,"柱状体") \ + ENUM_ITEM(Stl, 3,"以STL文件的形式描述负载碰撞集合体") + +#define ENUM_TaskFrameType_DECLARES \ + ENUM_ITEM(NONE, 0,"") \ + ENUM_ITEM(POINT_FORCE, 1, "力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向" \ + "力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向" \ + "机器人TCP与所选特征的起点之间的距离至少为10mm" \ + "优先选择X轴, 为所选特征的X轴在力控坐标系Y轴垂直平面上的投影, 如果所选特征的X轴与力控坐标系的Y轴平行, " \ + "通过类似方法确定力控坐标系Z轴, Y-X或者Y-Z轴确定之后, 通过右手法则确定剩下的轴") \ + ENUM_ITEM(FRAME_FORCE, 2,"力控坐标系不发生变换 SIMPLE_FORC") \ + ENUM_ITEM(MOTION_FORCE, 3,"力控坐标系发生变换, 使得力控参考坐标系的x轴为机器人TCP速度在所选特征x-y平面上的投影y轴将垂直于机械臂运动, 并在所选特征的x-y平面内")\ + ENUM_ITEM(TOOL_FORCE, 4,"以工具末端坐标系作为力控参考坐标系") + +#ifdef ERROR +#undef ERROR +#endif + +#define ENUM_TraceLevel_DECLARES \ + ENUM_ITEM(FATAL, 0, "") \ + ENUM_ITEM(ERROR, 1, "") \ + ENUM_ITEM(WARNING, 2, "") \ + ENUM_ITEM(INFO, 3, "") \ + ENUM_ITEM(DEBUG, 4, "") + +#define ENUM_AxisModeType_DECLARES \ + ENUM_ITEM(NoController, -1, "提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController") \ + ENUM_ITEM(Disconnected, 0, "未连接") \ + ENUM_ITEM(PowerOff, 1, "断电") \ + ENUM_ITEM(BrakeReleasing, 2, "刹车松开中") \ + ENUM_ITEM(Idle, 3, "空闲") \ + ENUM_ITEM(Running, 4, "运行中") \ + ENUM_ITEM(Fault, 5, "错误状态") + +#define ENUM_HandleStateType_DECLARES \ + ENUM_ITEM(Disconnected, 0, "未连接") \ + ENUM_ITEM(Init, 1, "初始化中") \ + ENUM_ITEM(Connected, 2, "已连接") \ + ENUM_ITEM(Lock, 3, "锁定") \ + ENUM_ITEM(Fault, 4, "错误状态") \ + +#define ENUM_HandleModeType_DECLARES \ + ENUM_ITEM(None, 0, "不支持手柄") \ + ENUM_ITEM(Default, 1, "S等系列默认手柄") \ + ENUM_ITEM(MultiFuncG1, 2, "G系列第一代多功能手柄") \ + +#define ENUM_SafeguedStopType_DECLARES \ + ENUM_ITEM(None, 0, "无安全停止") \ + ENUM_ITEM(SafeguedStopIOInput, 1, "安全停止(IO输入)") \ + ENUM_ITEM(SafeguedStop3PE, 2, "安全停止(三态开关)") \ + ENUM_ITEM(SafeguedStopOperational, 3, "安全停止(操作模式)") + +#define ENUM_RobotEmergencyStopType_DECLARES \ + ENUM_ITEM(RobotEmergencyStopNone, 0, "无紧急停止") \ + ENUM_ITEM(RobotEmergencyStopControlBox, 1, "紧急停止(控制柜急停)") \ + ENUM_ITEM(RobotEmergencyStopTeachPendant, 2, "紧急停止(示教器急停)") \ + ENUM_ITEM(RobotEmergencyStopHandle, 3, "紧急停止(手柄急停)") \ + ENUM_ITEM(RobotEmergencyStopEI, 4, "紧急停止(固定IO急停)") + +#define ENUM_RobotIOType_DECLARES \ + ENUM_ITEM(IONone, 0, "无IO") \ + ENUM_ITEM(StandardDigitalOutput, 1, "标准数字输出IO") \ + ENUM_ITEM(ToolDigitalOutput, 2, "工具端数字输出IO") \ + ENUM_ITEM(ConfigurableDigitalOutput, 3, "可配置数字输出IO") \ + ENUM_ITEM(StandardDigitalInput, 4, "标准数字输入IO") \ + ENUM_ITEM(ToolDigitalInput, 5, "工具端数字输入IO") \ + ENUM_ITEM(ConfigurableDigitalInput, 6, "可配置数字输入IO") \ + ENUM_ITEM(StandardAnalogOutput, 7, "标准模拟输出IO") \ + ENUM_ITEM(ToolAnalogOutput, 8, "工具端模拟输出IO") \ + ENUM_ITEM(StandardAnalogInput, 9, "标准模拟输入IO") \ + ENUM_ITEM(ToolAnalogInput, 10, "工具端模拟输入IO") + +#define ENUM_ITEM(c, n, ...) c = n, +enum AuboErrorCodes : int +{ + ENUM_AuboErrorCodes_DECLARES +}; + +enum class RuntimeState : int +{ + ENUM_RuntimeState_DECLARES +}; + +enum class RobotModeType : int +{ + ENUM_RobotModeType_DECLARES +}; + +enum class AxisModeType : int +{ + ENUM_AxisModeType_DECLARES +}; + +enum class HandleStateType : int +{ + ENUM_HandleStateType_DECLARES +}; + +enum class HandleModeType : int +{ + ENUM_HandleModeType_DECLARES +}; + +/** + * \~chinese 安全状态: \~english Safety Mode + * + */ +enum class SafetyModeType : int +{ + ENUM_SafetyModeType_DECLARES +}; + +/** + * \~chinese 操作模式 \~english Operational Mode + */ +enum class OperationalModeType : int +{ + ENUM_OperationalModeType_DECLARES +}; + +/** + * \~chinese 机器人控制模式 \~english Robot Control Mode + */ +enum class RobotControlModeType : int +{ + ENUM_RobotControlModeType_DECLARES +}; + +/** + * \~chinese 关节伺服模式 \~english Joint Servo Mode + */ +enum class JointServoModeType : int +{ + ENUM_JointServoModeType_DECLARES +}; + +/** + * \~chinese 关节状态 \~english Joint State + */ +enum class JointStateType : int +{ + ENUM_JointStateType_DECLARES +}; + +/** + * \~chinese 标准输出运行状态 \~english Standard Output Run State + */ +enum class StandardOutputRunState : int +{ + ENUM_StandardOutputRunState_DECLARES +}; + +/** + * @brief The StandardInputAction enum + */ +enum class StandardInputAction : int +{ + ENUM_StandardInputAction_DECLARES +}; + +enum class SafetyInputAction : int +{ + ENUM_SafetyInputAction_DECLARES +}; + +enum class SafetyOutputRunState : int +{ + ENUM_SafetyOutputRunState_DECLARES +}; + +enum TaskFrameType +{ + ENUM_TaskFrameType_DECLARES +}; + +enum EnvelopingShape : int +{ + ENUM_EnvelopingShape_DECLARES +}; + +enum PayloadIdentifyMoveAxis : int +{ + ENUM_PayloadIdentifyMoveAxis_DECLARES +}; + +enum TraceLevel +{ + ENUM_TraceLevel_DECLARES +}; + +enum SafeguedStopType : int +{ + ENUM_SafeguedStopType_DECLARES +}; + +enum RobotEmergencyStopType : int +{ + ENUM_RobotEmergencyStopType_DECLARES +}; + +enum RobotIOType : int +{ + ENUM_RobotIOType_DECLARES +}; +#undef ENUM_ITEM + +#define DECL_TO_STRING_FUNC(ENUM) \ + inline std::string toString(ENUM v) \ + { \ + using T = ENUM; \ + std::string name = #ENUM "."; \ + ENUM_##ENUM##_DECLARES \ + \ + return #ENUM ".Unkown"; \ + } \ + inline std::ostream &operator<<(std::ostream &os, ENUM v) \ + { \ + os << toString(v); \ + return os; \ + } + +#define ENUM_ITEM(c, n, ...) \ + if (v == T::c) { \ + return name + #c; \ + } + +DECL_TO_STRING_FUNC(RuntimeState) +DECL_TO_STRING_FUNC(RobotModeType) +DECL_TO_STRING_FUNC(AxisModeType) +DECL_TO_STRING_FUNC(SafetyModeType) +DECL_TO_STRING_FUNC(OperationalModeType) +DECL_TO_STRING_FUNC(RobotControlModeType) +DECL_TO_STRING_FUNC(JointServoModeType) +DECL_TO_STRING_FUNC(JointStateType) +DECL_TO_STRING_FUNC(StandardInputAction) +DECL_TO_STRING_FUNC(StandardOutputRunState) +DECL_TO_STRING_FUNC(SafetyInputAction) +DECL_TO_STRING_FUNC(SafetyOutputRunState) +DECL_TO_STRING_FUNC(TaskFrameType) +DECL_TO_STRING_FUNC(TraceLevel) +DECL_TO_STRING_FUNC(HandleModeType) +DECL_TO_STRING_FUNC(HandleStateType) +DECL_TO_STRING_FUNC(RobotIOType) + +#undef ENUM_ITEM + +enum class ForceControlState +{ + Stopped, + Starting, + Stropping, + Running +}; + +enum class RefFrameType +{ + None, /// + Tool, ///< \~chinese 工具坐标系 \~english Tool coordinate system + Path, ///< \~chinese 轨迹坐标系 \~english Trajectory coordinate system + Base ///< \~chinese 基坐标系 \~english Base coordinate system +}; + +/// \~chinese 圆周运动参数定义 \~english Circular motion parameters definition +struct CircleParameters +{ + std::vector pose_via; ///< \~chinese 圆周运动途中点的位姿 \~english Pose of the intermediate point in circular motion + std::vector pose_to; ///< \~chinese 圆周运动结束点的位姿 \~english Pose of the end point in circular motion + double a; ///< \~chinese 加速度, 单位: m/s^2 \~english Acceleration, unit: m/s^2 + double v; ///< \~chinese 速度,单位: m/s \~english Speed, unit: m/s + double blend_radius; ///< \~chinese 交融半径,单位: m \~english Blending radius, unit: m + double duration; ///< \~chinese 运行时间,单位: s \~english Running time, unit: s + double helix; + double spiral; + double direction; + int loop_times; ///< \~chinese 暂不支持 \~english Currently not supported +}; + +inline std::ostream &operator<<(std::ostream &os, CircleParameters p) +{ + return os; +} + +struct SpiralParameters +{ + std::vector frame; ///< \~chinese 参考点,螺旋线的中心点和参考坐标系 \~english Reference point, the center point of the spiral and the reference coordinate system + int plane; ///< \~chinese 参考平面选择 0-XY 1-YZ 2-ZX \~english Reference plane selection 0-XY 1-YZ 2-ZX + double angle; ///< \~chinese 转动的角度,如果为正数,机器人逆时针旋转 \~english The angle of rotation, if positive, the robot rotates counterclockwise + double spiral; ///< \~chinese 正数外扩 \~english Positive outward + double helix; ///< \~chinese 正数上升 \~english Positive upward +}; + +inline std::ostream &operator<<(std::ostream &os, SpiralParameters p) +{ + return os; +} + +struct Enveloping +{ + EnvelopingShape shape; // \~chinese 包络体形状 \~english Enveloping shape + std::vector ep_args; // \~chinese 包络体组合,shape为None或Stl时无需对ep_args赋值; \~english Enveloping combination, when shape is None or Stl, no need to assign value to ep_args. + // \~chinese shape为Cube时ep_args有9个元素,分别为xmin,xmax,ymin,ymax,zmin,zmax,rx,ry,rz; \~english When shape is Cube, ep_args has 9 elements, which are xmin, xmax, ymin, ymax, zmin, zmax, rx, ry, rz; + // \~chinese shape为Column时ep_args有5个元素,分别为radius,height,rx,ry,rz; \~english When shape is Column, ep_args has 5 elements, which are radius, height, rx, ry, rz; + std::string stl_path; // \~chinese stl的路径(绝对路径),stl文件需为二进制文件, \~english Path of the stl file (absolute path), the stl file must be a binary file, \~chinese shape设置为Stl时,此项生效 \~english When shape is set to Stl, this item takes effect +}; + +inline std::ostream &operator<<(std::ostream &os, Enveloping p) +{ + return os; +} + +/// \~chinese 用于负载辨识的轨迹配置 \~english Trajectory configuration for +/// payload identification +struct TrajConfig +{ + std::vector envelopings; // \~chinese 包络体组合 \~english Enveloping combination + PayloadIdentifyMoveAxis move_axis; // \~chinese 运动的轴(ID), 下标从0开始 \~english Axis of movement (ID), index starts from 0 + std::vector init_joint; // \~chinese 关节初始位置 \~english Initial joint positions + std::vector upper_joint_bound; // \~chinese 运动轴上限 \~english Upper joint limits + std::vector lower_joint_bound; // \~chinese 运动轴下限 \~english Lower joint limits + std::vector max_velocity; // \~chinese 关节运动的最大速度,默认值为 3.0 \~english Maximum joint velocities, default value is 3.0 + std::vector max_acceleration; // \~chinese 关节运动的最大加速度,默认值为 5.0 \~english Maximum joint accelerations, default value is 5.0 +}; + +inline std::ostream &operator<<(std::ostream &os, TrajConfig p) +{ + return os; +} + +// result with error code +using ResultWithErrno = std::tuple, int>; +using ResultWithErrno1 = std::tuple>, int>; +using ResultWithErrno2 = std::tuple, int>; +using ResultWithErrno3 = std::tuple; + +// mass, cog, aom, inertia +using Payload = std::tuple, std::vector, + std::vector>; + +// force_offset, com, mass, angle +using ForceSensorCalibResult = + std::tuple, std::vector, double, + std::vector>; + +// force_offset, com, mass, angle error +using ForceSensorCalibResultWithError = + std::tuple, std::vector, double, + std::vector, double>; + +// \~chinese 动力学模型m,d,k \~english Dynamics model m, d, k +using DynamicsModel = + std::tuple, std::vector, std::vector>; + +// double xmin; +// double xmax; +// double ymin; +// double ymax; +// double zmin; +// double zmax; +using Box = std::vector; + +// double xcbottom; +// double ycbottom; +// double zcbottom; +// double height; +// double radius; +using Cylinder = std::vector; + +// double xc; +// double yc; +// double radius; +using Sphere = std::vector; + +struct RobotMsg +{ + uint64_t timestamp; ///< \~chinese 时间戳,即系统时间 \~english Timestamp, + ///< i.e., system time + TraceLevel level; ///< \~chinese 日志等级 \~english Log level + int code; ///< \~chinese 错误码 \~english Error code + std::string + source; ///< \~chinese 发送消息的机器人别名 alias \~english Alias of the + ///< robot sending the message + ///< \~chinese 可在 /root/arcs_ws/config/aubo_control.conf + ///< \~english Can be found in + ///< /root/arcs_ws/config/aubo_control.conf + ///< \~chinese 配置文件中查到机器人的alias \~english The robot's + ///< alias can be found in the configuration file + ///< /root/arcs_ws/config/aubo_control.conf + std::vector args; ///< \~chinese 机器人参数 \~english Robot parameters +}; +using RobotMsgVector = std::vector; + +struct GripperStatus +{ + std::string name; + bool is_connected; + bool is_enabled; + double position; + double velocity; + double force; + double angle; + double r_velocity; + double torque; + bool object_detection; + bool motion_state; + double voltage; + double temperature; + int status_code; +}; +using GripperStatusVector = std::vector; + +/// \~chinese RTDE菜单 \~english RTDE menu +struct RtdeRecipe +{ + bool to_server; ///< \~chinese 输入/输出 \~english Input/Output + int chanel; ///< \~chinese 通道 \~english Channel + double frequency; ///< \~chinese 更新频率 \~english Update frequency + int trigger; ///< \~chinese 触发方式(该功能暂未实现): 0 - 周期; 1 - 变化 + ///< \~english Trigger method (this feature is not yet + ///< implemented): 0 - Periodic; 1 - Change + std::vector segments; ///< \~chinese 字段列表 \~english segment list +}; + +/// \~chinese 干涉区配置: 轴对齐长方体 + 余量 + 本区独立 IO(standard DI/DO)。 +/// \~english WorldZone zone config: axis-aligned box + margins + per-zone IO. +struct WorldZone +{ + /// \~chinese 区域唯一标识 \~english Unique zone id + int id{ 0 }; + /// \~chinese 是否启用 \~english Whether enabled + bool enabled{ false }; + /// \~chinese false=腔内危险(外扩), true=腔外危险(内缩) + /// \~english false=inside is danger (expand), true=outside is danger (shrink) + bool outside{ false }; + /// \~chinese 体对角顶点 [x,y,z], 基坐标系, m \~english diagonal vertex + std::array base_vertex{ { 0, 0, 0 } }; + /// \~chinese 体对角的另一顶点 \~english opposite diagonal vertex + std::array opposite_vertex{ { 0, 0, 0 } }; + /// \~chinese 工艺余量, m \~english process margin + double margin{ 0.0 }; + /// \~chinese 工具包络半径, m \~english tool envelope radius + double tool_radius{ 0.0 }; + /// \~chinese 制动距离余量, m; 启用时必 >0 \~english brake margin, must >0 when enabled + double brake_margin{ 0.0 }; + /// \~chinese 本区占用输出 standard DO 序号, -1=不绑 \~english per-zone occupancy DO index + int occupied_do_index{ -1 }; + /// \~chinese 占用极性 \~english occupancy polarity + bool occupied_active_high{ true }; + /// \~chinese 本区允许输入 standard DI 序号, -1=不绑(恒许可) \~english per-zone permit DI index + int permit_di_index{ -1 }; + /// \~chinese 允许极性 \~english permit polarity + bool permit_active_high{ true }; + + bool operator==(const WorldZone &o) const + { + return id == o.id && enabled == o.enabled && outside == o.outside && + base_vertex == o.base_vertex && + opposite_vertex == o.opposite_vertex && margin == o.margin && + tool_radius == o.tool_radius && brake_margin == o.brake_margin && + occupied_do_index == o.occupied_do_index && + occupied_active_high == o.occupied_active_high && + permit_di_index == o.permit_di_index && + permit_active_high == o.permit_active_high; + } +}; + +inline std::ostream &operator<<(std::ostream &os, const WorldZone &zone) +{ + (void)zone; + return os; +} + +/// \~chinese 干涉区只读运行状态(聚合)。 +/// \~english WorldZone zone read-only runtime state (aggregated). +struct WorldZoneState +{ + /// \~chinese TCP 在任一区内 \~english TCP in any zone + bool any_occupied{ false }; + /// \~chinese 是否正因干涉区保持 \~english holding due to world zone + bool holding{ false }; + /// \~chinese 任一区 need_area && !permit \~english any zone blocking + bool blocking{ false }; + /// \~chinese 导致保持/阻塞的区 id(各区 permit 独立, 看此表定位) \~english blocking zone ids + std::vector blocking_ids; + + bool operator==(const WorldZoneState &o) const + { + return any_occupied == o.any_occupied && holding == o.holding && + blocking == o.blocking && blocking_ids == o.blocking_ids; + } +}; + +inline std::ostream &operator<<(std::ostream &os, const WorldZoneState &state) +{ + (void)state; + return os; +} + +/// \~chinese 异常类型 \~english Error type +enum error_type +{ + parse_error = -32700, ///< \~chinese 解析错误 \~english Parse error + invalid_request = -32600, ///< \~chinese 无效请求 \~english Invalid request + method_not_found = -32601, ///< \~chinese 方法未找到 \~english Method not found + invalid_params = -32602, ///< \~chinese 无效参数 \~english Invalid parameters + internal_error = -32603, ///< \~chinese 内部错误 \~english Internal error + server_error = -32500, ///< \~chinese 服务器错误 \~english Server error + invalid = -32400 ///< \~chinese 无效 \~english Invalid +}; + +/// \~chinese 异常码 \~english Exception code +enum ExceptionCode +{ + EC_DISCONNECTED = -1, ///< \~chinese 断开连接 \~english Disconnected + EC_NOT_LOGINED = -2, ///< \~chinese 未登录 \~english Not logged in + EC_INVAL_SOCKET = -3, ///< \~chinese 无效套接字 \~english Invalid socket + EC_REQUEST_BUSY = -4, ///< \~chinese 请求繁忙 \~english Request busy + EC_SEND_FAILED = -5, ///< \~chinese 发送失败 \~english Send failed + EC_RECV_TIMEOUT = -6, ///< \~chinese 接收超时 \~english Receive timeout + EC_RECV_ERROR = -7, ///< \~chinese 接收错误 \~english Receive error + EC_PARSE_ERROR = -8, ///< \~chinese 解析错误 \~english Parse error + EC_INVALID_REQUEST = -9, ///< \~chinese 无效请求 \~english Invalid request + EC_METHOD_NOT_FOUND = -10, ///< \~chinese 方法未找到 \~english Method not found + EC_INVALID_PARAMS = -11, ///< \~chinese 无效参数 \~english Invalid parameters + EC_INTERNAL_ERROR = -12, ///< \~chinese 内部错误 \~english Internal error + EC_SERVER_ERROR = -13, ///< \~chinese 服务器错误 \~english Server error + EC_INVALID = -14 ///< \~chinese 无效 \~english Invalid +}; + +/// \~chinese 自定义异常类 AuboException \~english Custom exception class +/// AuboException +class AuboException : public std::exception +{ +public: + AuboException(int code, const std::string &prefix, + const std::string &message) noexcept + : code_(code), message_(prefix + "-" + message) + { + } + + AuboException(int code, const std::string &message) noexcept + : code_(code), message_(message) + { + } + + error_type type() const + { + if (code_ >= -32603 && code_ <= -32600) { + return static_cast(code_); + } else if (code_ >= -32099 && code_ <= -32000) { + return server_error; + } else if (code_ == -32700) { + return parse_error; + } + return invalid; + } + + int code() const { return code_; } + const char *what() const noexcept override { return message_.c_str(); } + +private: + int code_; ///< \~chinese 异常码 \~english Exception code + std::string message_; ///< \~chinese 异常消息 \~chinese Exception message +}; + +inline const char *returnValue2Str(int retval) +{ + static const char *retval_str[] = { +#define ENUM_ITEM(n, v, s) s, + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + }; + + enum arcs_index + { +#define ENUM_ITEM(n, v, s) n##_INDEX, + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + }; + + int index = -1; + +#define ENUM_ITEM(n, v, s) \ + if (abs(retval) == v) \ + index = n##_INDEX; + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + + if (index == -1) + { + index = AUBO_ERR_UNKOWN_INDEX; + } + + return retval_str[(unsigned)index]; +} + +} // namespace common_interface +} // namespace arcs +#endif + +// clang-format on + +#if defined ENABLE_JSON_TYPES +#include "bindings/jsonrpc/json_types.h" +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/math_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/math_c.h new file mode 100644 index 00000000..8eca724a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/math_c.h @@ -0,0 +1,53 @@ +#ifndef AUBO_SDK_Math_C_H +#define AUBO_SDK_Math_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int poseAdd(MATH_HANDLER h, const double *p1, const double *p2, + double *result); +ARCS_ABI int poseSub(MATH_HANDLER h, const double *p1, const double *p2, + double *result); +ARCS_ABI int interpolatePose(MATH_HANDLER h, const double *p1, const double *p2, + double alpha, double *result); +ARCS_ABI int poseTrans(MATH_HANDLER h, const double *pose_from, + const double *pose_from_to, double *result); +ARCS_ABI int poseTransInv(MATH_HANDLER h, const double *pose_from, + const double *pose_to_from, double *result); +ARCS_ABI int poseInverse(MATH_HANDLER h, const double *pose, double *result); +ARCS_ABI double poseDistance(MATH_HANDLER h, const double *p1, + const double *p2); +ARCS_ABI double poseAngleDistance(MATH_HANDLER h, const double *p1, + const double *p2); +ARCS_ABI BOOL poseEqual(MATH_HANDLER h, const double *p1, const double *p2, + double eps); +ARCS_ABI int transferRefFrame(MATH_HANDLER h, const double *F_b_a_old, + Vector3d_C V_in_a, int type, double *result); +ARCS_ABI int poseRotation(MATH_HANDLER h, const double *pose, + const double *rotv, double *result); +ARCS_ABI int rpyToQuaternion(MATH_HANDLER h, const double *rpy, double *result); +ARCS_ABI int quaternionToRpy(MATH_HANDLER h, const double *quant, + double *result); +ARCS_ABI int tcpOffsetIdentify(MATH_HANDLER h, const double *poses, int rows, + double *result); +ARCS_ABI int calibrateCoordinate(MATH_HANDLER h, const double *poses, int rows, + int type, double *result); +ARCS_ABI int calculateCircleFourthPoint(MATH_HANDLER h, const double *p1, + const double *p2, const double *p3, + int mode, double *result); +ARCS_ABI int forceTrans(MATH_HANDLER h, const double *pose_a_in_b, + const double *force_in_a, double *result); +ARCS_ABI int getDeltaPoseBySensorDistance(MATH_HANDLER h, + const double *distances, + double position, double radius, + double track_scale, double *result); +ARCS_ABI int deltaPoseTrans(MATH_HANDLER h, const double *pose_a_in_b, + const double *ft_in_a, double *result); +ARCS_ABI int deltaPoseAdd(MATH_HANDLER h, const double *pose_a_in_b, + const double *v_in_b, double *result); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/register_control_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/register_control_c.h new file mode 100644 index 00000000..c3e38858 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/register_control_c.h @@ -0,0 +1,120 @@ +#ifndef AUBO_SDK_RegisterControl_C_H +#define AUBO_SDK_RegisterControl_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI BOOL getBoolInput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setBoolInput(REGISTER_CONTROL_HANDLER h, uint32_t address, + BOOL value); +ARCS_ABI int getInt32Input(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setInt32Input(REGISTER_CONTROL_HANDLER h, uint32_t address, + int value); +ARCS_ABI float getFloatInput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setFloatInput(REGISTER_CONTROL_HANDLER h, uint32_t address, + float value); +ARCS_ABI double getDoubleInput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setDoubleInput(REGISTER_CONTROL_HANDLER h, uint32_t address, + double value); +ARCS_ABI BOOL getBoolOutput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setBoolOutput(REGISTER_CONTROL_HANDLER h, uint32_t address, + BOOL value); +ARCS_ABI int getInt32Output(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setInt32Output(REGISTER_CONTROL_HANDLER h, uint32_t address, + int value); +ARCS_ABI float getFloatOutput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setFloatOutput(REGISTER_CONTROL_HANDLER h, uint32_t address, + float value); +ARCS_ABI double getDoubleOutput(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setDoubleOutput(REGISTER_CONTROL_HANDLER h, uint32_t address, + double value); +ARCS_ABI int16_t getInt16Register(REGISTER_CONTROL_HANDLER h, uint32_t address); +ARCS_ABI int setInt16Register(REGISTER_CONTROL_HANDLER h, uint32_t address, + int16_t value); +ARCS_ABI BOOL variableUpdated(REGISTER_CONTROL_HANDLER h, const char *key, + uint64_t since); +ARCS_ABI BOOL hasNamedVariable(REGISTER_CONTROL_HANDLER h, const char *key); +ARCS_ABI int getNamedVariableType(REGISTER_CONTROL_HANDLER h, const char *key, + char *result); +ARCS_ABI BOOL getBool(REGISTER_CONTROL_HANDLER h, const char *key, + BOOL default_value); +ARCS_ABI int setBool(REGISTER_CONTROL_HANDLER h, const char *key, BOOL value); +ARCS_ABI int getVecChar(REGISTER_CONTROL_HANDLER h, const char *key, + const char *default_value, char *result, int sz); +ARCS_ABI int setVecChar(REGISTER_CONTROL_HANDLER h, const char *key, + const char *value, int sz); +ARCS_ABI int getInt32(REGISTER_CONTROL_HANDLER h, const char *key, + int default_value); +ARCS_ABI int setInt32(REGISTER_CONTROL_HANDLER h, const char *key, int value); +ARCS_ABI int getVecInt32(REGISTER_CONTROL_HANDLER h, const char *key, + int32_t *default_value, int *result); +ARCS_ABI int setVecInt32(REGISTER_CONTROL_HANDLER h, const char *key, + int32_t *value); +ARCS_ABI float getFloat(REGISTER_CONTROL_HANDLER h, const char *key, + float default_value); +ARCS_ABI int setFloat(REGISTER_CONTROL_HANDLER h, const char *key, float value); +ARCS_ABI int getVecFloat(REGISTER_CONTROL_HANDLER h, const char *key, + const float *default_value, float *result); +ARCS_ABI int setVecFloat(REGISTER_CONTROL_HANDLER h, const char *key, + const float *value); +ARCS_ABI double getDouble(REGISTER_CONTROL_HANDLER h, const char *key, + double default_value); +ARCS_ABI int setDouble(REGISTER_CONTROL_HANDLER h, const char *key, + double value); +ARCS_ABI int getVecDouble(REGISTER_CONTROL_HANDLER h, const char *key, + const double *default_value, double *result); +ARCS_ABI int setVecDouble(REGISTER_CONTROL_HANDLER h, const char *key, + const double *value); +ARCS_ABI int getString(REGISTER_CONTROL_HANDLER h, const char *key, + const char *default_value, char *result); +ARCS_ABI int setString(REGISTER_CONTROL_HANDLER h, const char *key, + const char *value); +ARCS_ABI int clearNamedVariable(REGISTER_CONTROL_HANDLER h, const char *key); +ARCS_ABI int setWatchDog(REGISTER_CONTROL_HANDLER h, const char *key, + double timeout, int action); +ARCS_ABI int getWatchDogAction(REGISTER_CONTROL_HANDLER h, const char *key); +ARCS_ABI int getWatchDogTimeout(REGISTER_CONTROL_HANDLER h, const char *key); +ARCS_ABI int modbusAddSignal(REGISTER_CONTROL_HANDLER h, + const char *device_info, int slave_number, + int signal_address, int signal_type, + const char *signal_name, BOOL sequential_mode); +ARCS_ABI int modbusDeleteSignal(REGISTER_CONTROL_HANDLER h, + const char *signal_name); +ARCS_ABI int modbusDeleteAllSignals(REGISTER_CONTROL_HANDLER h); +ARCS_ABI int modbusGetSignalStatus(REGISTER_CONTROL_HANDLER h, + const char *signal_name); +ARCS_ABI int modbusGetSignalNames(REGISTER_CONTROL_HANDLER h, char **result); +ARCS_ABI int modbusGetSignalTypes(REGISTER_CONTROL_HANDLER h, int *result); +ARCS_ABI int modbusGetSignalValues(REGISTER_CONTROL_HANDLER h, int *result); +ARCS_ABI int modbusGetSignalErrors(REGISTER_CONTROL_HANDLER h, int *result); +ARCS_ABI int modbusSendCustomCommand(REGISTER_CONTROL_HANDLER h, const char *IP, + int slave_number, int function_code, + uint8_t *data, int sz); +ARCS_ABI int modbusSetDigitalInputAction(REGISTER_CONTROL_HANDLER h, + const char *robot_name, + const char *signal_name, + StandardInputAction_C action); +ARCS_ABI int modbusSetOutputRunstate(REGISTER_CONTROL_HANDLER h, + const char *robot_name, + const char *signal_name, + StandardOutputRunState_C runstate); +ARCS_ABI int modbusSetOutputSignal(REGISTER_CONTROL_HANDLER h, + const char *signal_name, uint16_t value); +ARCS_ABI int modbusSetOutputSignalPulse(REGISTER_CONTROL_HANDLER h, + const char *signal_name, uint16_t value, + double duration); +ARCS_ABI int modbusSetSignalUpdateFrequency(REGISTER_CONTROL_HANDLER h, + const char *signal_name, + int update_frequency); +ARCS_ABI int modbusGetSignalIndex(REGISTER_CONTROL_HANDLER h, + const char *signal_name); +ARCS_ABI int modbusGetSignalError(REGISTER_CONTROL_HANDLER h, + const char *signal_name); +ARCS_ABI int getModbusDeviceStatus(REGISTER_CONTROL_HANDLER h, + const char *device_name); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/force_control_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/force_control_c.h new file mode 100644 index 00000000..55ccc592 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/force_control_c.h @@ -0,0 +1,78 @@ +#ifndef AUBO_SDK_ForceControl_C_H +#define AUBO_SDK_ForceControl_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int fcEnable(FORCE_CONTROL_HANDLER h); +ARCS_ABI int fcDisable(FORCE_CONTROL_HANDLER h); +ARCS_ABI BOOL isFcEnabled(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setTargetForce(FORCE_CONTROL_HANDLER h, const double *feature, + const uint8_t *compliance, const double *wrench, + const double *limits, TaskFrameType_C type); +ARCS_ABI int setDynamicModel(FORCE_CONTROL_HANDLER h, const double *m, + const double *d, const double *k); +ARCS_ABI DynamicsModel_C getDynamicModel(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setDynamicModelContact(FORCE_CONTROL_HANDLER h, + const double *env_stiff, + const double *damp_scale, + const double *stiff_scale); +ARCS_ABI int setCondForce(FORCE_CONTROL_HANDLER h, const double *min, + const double *max, BOOL outside, double timeout); +ARCS_ABI int setCondOrient(FORCE_CONTROL_HANDLER h, const double *frame, + double max_angle, double max_rot, BOOL outside, + double timeout); +ARCS_ABI int setCondPlane(FORCE_CONTROL_HANDLER h, const double *plane, + double timeout); +ARCS_ABI int setCondCylinder(FORCE_CONTROL_HANDLER h, const double *axis, + double radius, BOOL outside, double timeout); +ARCS_ABI int setCondSphere(FORCE_CONTROL_HANDLER h, const double *center, + double radius, BOOL outside, double timeout); +ARCS_ABI int setCondTcpSpeed(FORCE_CONTROL_HANDLER h, const double *min, + const double *max, BOOL outside, double timeout); +ARCS_ABI int setCondActive(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setCondDistance(FORCE_CONTROL_HANDLER h, double distance, + double timeout); +ARCS_ABI int setCondAdvanced(FORCE_CONTROL_HANDLER h, const char *type, + const double *args, double timeout); +ARCS_ABI BOOL isCondFullfiled(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setSupvForce(FORCE_CONTROL_HANDLER h, const double *min, + const double *max); +ARCS_ABI int setSupvOrient(FORCE_CONTROL_HANDLER h, const double *frame, + double max_angle, double max_rot, BOOL outside); +ARCS_ABI int setSupvPosBox(FORCE_CONTROL_HANDLER h, const double *frame, + const double *box); +ARCS_ABI int setSupvPosCylinder(FORCE_CONTROL_HANDLER h, const double *frame, + const double *cylinder); +ARCS_ABI int setSupvPosSphere(FORCE_CONTROL_HANDLER h, const double *frame, + const double *sphere); +ARCS_ABI int setSupvReoriSpeed(FORCE_CONTROL_HANDLER h, + const double *speed_limit, BOOL outside, + double timeout); +ARCS_ABI int setSupvTcpSpeed(FORCE_CONTROL_HANDLER h, const double *speed_limit, + BOOL outside, double timeout); +ARCS_ABI int setLpFilter(FORCE_CONTROL_HANDLER h, const double *cutoff_freq); +ARCS_ABI int resetLpFilter(FORCE_CONTROL_HANDLER h); +ARCS_ABI int speedChangeTune(FORCE_CONTROL_HANDLER h, int speed_levels, + double speed_ratio_min); +ARCS_ABI int speedChangeEnable(FORCE_CONTROL_HANDLER h, double ref_force); +ARCS_ABI int speedChangeDisable(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setDamping(FORCE_CONTROL_HANDLER h, const double *damping, + double ramp_time); +ARCS_ABI int resetDamping(FORCE_CONTROL_HANDLER h); +ARCS_ABI int softFloatEnable(FORCE_CONTROL_HANDLER h); +ARCS_ABI int softFloatDisable(FORCE_CONTROL_HANDLER h); +ARCS_ABI BOOL isSoftFloatEnabled(FORCE_CONTROL_HANDLER h); +ARCS_ABI int setSoftFloatParams(FORCE_CONTROL_HANDLER h, BOOL joint_space, + const uint8_t *select, + const double *stiff_percent, + const double *stiff_damp_ratio, + const double *force_threshold, + const double *force_limit); +ARCS_ABI int toolContact(FORCE_CONTROL_HANDLER h, const uint8_t *direction); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/io_control_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/io_control_c.h new file mode 100644 index 00000000..45565338 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/io_control_c.h @@ -0,0 +1,113 @@ +#ifndef AUBO_SDK_IoControl_C_H +#define AUBO_SDK_IoControl_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int getStandardDigitalInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getToolDigitalInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getConfigurableDigitalInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getStandardDigitalOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getToolDigitalOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int setToolIoInput(IO_CONTROL_HANDLER h, int index, BOOL input); +ARCS_ABI BOOL isToolIoInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int getConfigurableDigitalOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getStandardAnalogInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getToolAnalogInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getStandardAnalogOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getToolAnalogOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int setDigitalInputActionDefault(IO_CONTROL_HANDLER h); +ARCS_ABI int setStandardDigitalInputAction(IO_CONTROL_HANDLER h, int index, + StandardInputAction_C action); +ARCS_ABI int setToolDigitalInputAction(IO_CONTROL_HANDLER h, int index, + StandardInputAction_C action); +ARCS_ABI int setConfigurableDigitalInputAction(IO_CONTROL_HANDLER h, int index, + StandardInputAction_C action); +ARCS_ABI StandardInputAction_C +getStandardDigitalInputAction(IO_CONTROL_HANDLER h, int index); +ARCS_ABI StandardInputAction_C getToolDigitalInputAction(IO_CONTROL_HANDLER h, + int index); +ARCS_ABI StandardInputAction_C +getConfigurableDigitalInputAction(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int setDigitalOutputRunstateDefault(IO_CONTROL_HANDLER h); +ARCS_ABI int setStandardDigitalOutputRunstate( + IO_CONTROL_HANDLER h, int index, StandardOutputRunState_C runstate); +ARCS_ABI int setToolDigitalOutputRunstate(IO_CONTROL_HANDLER h, int index, + StandardOutputRunState_C runstate); +ARCS_ABI int setConfigurableDigitalOutputRunstate( + IO_CONTROL_HANDLER h, int index, StandardOutputRunState_C runstate); +ARCS_ABI StandardOutputRunState_C +getStandardDigitalOutputRunstate(IO_CONTROL_HANDLER h, int index); +ARCS_ABI StandardOutputRunState_C +getToolDigitalOutputRunstate(IO_CONTROL_HANDLER h, int index); +ARCS_ABI StandardOutputRunState_C +getConfigurableDigitalOutputRunstate(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int setStandardAnalogOutputRunstate(IO_CONTROL_HANDLER h, int index, + StandardOutputRunState_C runstate); +ARCS_ABI int setToolAnalogOutputRunstate(IO_CONTROL_HANDLER h, int index, + StandardOutputRunState_C runstate); +ARCS_ABI StandardOutputRunState_C +getStandardAnalogOutputRunstate(IO_CONTROL_HANDLER h, int index); +ARCS_ABI StandardOutputRunState_C +getToolAnalogOutputRunstate(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int setStandardAnalogInputDomain(IO_CONTROL_HANDLER h, int index, + int domain); +ARCS_ABI int setToolAnalogInputDomain(IO_CONTROL_HANDLER h, int index, + int domain); +ARCS_ABI int getStandardAnalogInputDomain(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int getToolAnalogInputDomain(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int setStandardAnalogOutputDomain(IO_CONTROL_HANDLER h, int index, + int domain); +ARCS_ABI int setToolAnalogOutputDomain(IO_CONTROL_HANDLER h, int index, + int domain); +ARCS_ABI int setToolVoltageOutputDomain(IO_CONTROL_HANDLER h, int domain); +ARCS_ABI int getToolVoltageOutputDomain(IO_CONTROL_HANDLER h); +ARCS_ABI int getStandardAnalogOutputDomain(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int getToolAnalogOutputDomain(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int setStandardDigitalOutput(IO_CONTROL_HANDLER h, int index, + BOOL value); +ARCS_ABI int setStandardDigitalOutputPulse(IO_CONTROL_HANDLER h, int index, + BOOL value, double duration); +ARCS_ABI int setToolDigitalOutput(IO_CONTROL_HANDLER h, int index, BOOL value); +ARCS_ABI int setToolDigitalOutputPulse(IO_CONTROL_HANDLER h, int index, + BOOL value, double duration); +ARCS_ABI int setConfigurableDigitalOutput(IO_CONTROL_HANDLER h, int index, + BOOL value); +ARCS_ABI int setConfigurableDigitalOutputPulse(IO_CONTROL_HANDLER h, int index, + BOOL value, double duration); +ARCS_ABI int setStandardAnalogOutput(IO_CONTROL_HANDLER h, int index, + double value); +ARCS_ABI int setToolAnalogOutput(IO_CONTROL_HANDLER h, int index, double value); +ARCS_ABI BOOL getStandardDigitalInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getStandardDigitalInputs(IO_CONTROL_HANDLER h); +ARCS_ABI BOOL getToolDigitalInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getToolDigitalInputs(IO_CONTROL_HANDLER h); +ARCS_ABI BOOL getConfigurableDigitalInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getConfigurableDigitalInputs(IO_CONTROL_HANDLER h); +ARCS_ABI double getStandardAnalogInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI double getToolAnalogInput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI BOOL getStandardDigitalOutput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getStandardDigitalOutputs(IO_CONTROL_HANDLER h); +ARCS_ABI BOOL getToolDigitalOutput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getToolDigitalOutputs(IO_CONTROL_HANDLER h); +ARCS_ABI BOOL getConfigurableDigitalOutput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI uint32_t getConfigurableDigitalOutputs(IO_CONTROL_HANDLER h); +ARCS_ABI double getStandardAnalogOutput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI double getToolAnalogOutput(IO_CONTROL_HANDLER h, int index); +ARCS_ABI int getStaticLinkInputNum(IO_CONTROL_HANDLER h); +ARCS_ABI int getStaticLinkOutputNum(IO_CONTROL_HANDLER h); +ARCS_ABI uint32_t getStaticLinkInputs(IO_CONTROL_HANDLER h); +ARCS_ABI uint32_t getStaticLinkOutputs(IO_CONTROL_HANDLER h); +ARCS_ABI BOOL hasEncoderSensor(IO_CONTROL_HANDLER h); +ARCS_ABI int setEncDecoderType(IO_CONTROL_HANDLER h, int type, int range_id); +ARCS_ABI int setEncTickCount(IO_CONTROL_HANDLER h, int tick); +ARCS_ABI int getEncDecoderType(IO_CONTROL_HANDLER h); +ARCS_ABI int getEncTickCount(IO_CONTROL_HANDLER h); +ARCS_ABI int unwindEncDeltaTickCount(IO_CONTROL_HANDLER h, int delta_count); +ARCS_ABI BOOL getToolButtonStatus(IO_CONTROL_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/motion_control_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/motion_control_c.h new file mode 100644 index 00000000..16b78741 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/motion_control_c.h @@ -0,0 +1,157 @@ +#ifndef AUBO_SDK_MotionControl_C_H +#define AUBO_SDK_MotionControl_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI double getEqradius(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setEqradius(MOTION_CONTROL_HANDLER h, double eqradius); +ARCS_ABI double getSpeedFraction(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setSpeedFraction(MOTION_CONTROL_HANDLER h, double fraction); +ARCS_ABI int speedFractionCritical(MOTION_CONTROL_HANDLER h, BOOL enable); +ARCS_ABI BOOL isSpeedFractionCritical(MOTION_CONTROL_HANDLER h); +ARCS_ABI BOOL isBlending(MOTION_CONTROL_HANDLER h); +ARCS_ABI int pathOffsetEnable(MOTION_CONTROL_HANDLER h); +ARCS_ABI int pathOffsetSet(MOTION_CONTROL_HANDLER h, const double *offset, + int type); +ARCS_ABI int pathOffsetDisable(MOTION_CONTROL_HANDLER h); +ARCS_ABI int jointOffsetEnable(MOTION_CONTROL_HANDLER h); +ARCS_ABI int jointOffsetSet(MOTION_CONTROL_HANDLER h, const double *offset, + int type); +ARCS_ABI int jointOffsetDisable(MOTION_CONTROL_HANDLER h); +ARCS_ABI int getTrajectoryQueueSize(MOTION_CONTROL_HANDLER h); +ARCS_ABI int getQueueSize(MOTION_CONTROL_HANDLER h); +ARCS_ABI int getExecId(MOTION_CONTROL_HANDLER h); +ARCS_ABI double getDuration(MOTION_CONTROL_HANDLER h, int id); +ARCS_ABI double getMotionLeftTime(MOTION_CONTROL_HANDLER h, int id); +ARCS_ABI double getProgress(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setWorkObjectHold(MOTION_CONTROL_HANDLER h, + const char *module_name, + const double *mounting_pose); +ARCS_ABI char *getWorkObjectHold(MOTION_CONTROL_HANDLER h); +ARCS_ABI int getPauseJointPositions(MOTION_CONTROL_HANDLER h, double *result); +ARCS_ABI int setServoMode(MOTION_CONTROL_HANDLER h, BOOL enable); +ARCS_ABI BOOL isServoModeEnabled(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setServoModeSelect(MOTION_CONTROL_HANDLER h, int mode); +ARCS_ABI int getServoModeSelect(MOTION_CONTROL_HANDLER h); +ARCS_ABI int servoJoint(MOTION_CONTROL_HANDLER h, const double *q, double a, + double v, double t, double lookahead_time, double gain); +ARCS_ABI int servoCartesian(MOTION_CONTROL_HANDLER h, const double *pose, + double a, double v, double t, double lookahead_time, + double gain); +ARCS_ABI int servoJointWithAxes(MOTION_CONTROL_HANDLER h, const double *q, + const double *extq, double a, double v, + double t, double lookahead_time, double gain); +ARCS_ABI int servoCartesianWithAxes(MOTION_CONTROL_HANDLER h, + const double *pose, const double *extq, + double a, double v, double t, + double lookahead_time, double gain); +ARCS_ABI int trackJoint(MOTION_CONTROL_HANDLER h, const double *q, double t, + double smooth_scale, double delay_sacle); +ARCS_ABI int trackCartesian(MOTION_CONTROL_HANDLER h, const double *pose, + double t, double smooth_scale, double delay_sacle); +ARCS_ABI int followJoint(MOTION_CONTROL_HANDLER h, const double *q); +ARCS_ABI int followLine(MOTION_CONTROL_HANDLER h, const double *pose); +ARCS_ABI int speedJoint(MOTION_CONTROL_HANDLER h, const double *qd, double a, + double t); +ARCS_ABI int resumeSpeedJoint(MOTION_CONTROL_HANDLER h, const double *qd, + double a, double t); +ARCS_ABI int speedLine(MOTION_CONTROL_HANDLER h, const double *xd, double a, + double t); +ARCS_ABI int resumeSpeedLine(MOTION_CONTROL_HANDLER h, const double *xd, + double a, double t); +ARCS_ABI int moveSpline(MOTION_CONTROL_HANDLER h, const double *q, double a, + double v, double duration); +ARCS_ABI int moveJoint(MOTION_CONTROL_HANDLER h, const double *q, double a, + double v, double blend_radius, double duration); +ARCS_ABI int resumeMoveJoint(MOTION_CONTROL_HANDLER h, const double *q, + double a, double v, double duration); +ARCS_ABI int moveLine(MOTION_CONTROL_HANDLER h, const double *pose, double a, + double v, double blend_radius, double duration); +ARCS_ABI int moveProcess(MOTION_CONTROL_HANDLER h, const double *pose, double a, + double v, double blend_radius); +ARCS_ABI int resumeMoveLine(MOTION_CONTROL_HANDLER h, const double *pose, + double a, double v, double duration); +ARCS_ABI int moveCircle(MOTION_CONTROL_HANDLER h, const double *via_pose, + const double *end_pose, double a, double v, + double blend_radius, double duration); +ARCS_ABI int setCirclePathMode(MOTION_CONTROL_HANDLER h, int mode); +ARCS_ABI int moveCircle2(MOTION_CONTROL_HANDLER h, + const CircleParameters_C *param); +ARCS_ABI int pathBufferAlloc(MOTION_CONTROL_HANDLER h, const char *name, + int type, int size); +ARCS_ABI int pathBufferAppend(MOTION_CONTROL_HANDLER h, const char *name, + const double *waypoints, int rows); +ARCS_ABI int pathBufferEval(MOTION_CONTROL_HANDLER h, const char *name, + const double *a, const double *v, double t); +ARCS_ABI BOOL pathBufferValid(MOTION_CONTROL_HANDLER h, const char *name); +ARCS_ABI int pathBufferFree(MOTION_CONTROL_HANDLER h, const char *name); +ARCS_ABI int pathBufferList(MOTION_CONTROL_HANDLER h, char **result); +ARCS_ABI int movePathBuffer(MOTION_CONTROL_HANDLER h, const char *name); +ARCS_ABI int moveIntersection(MOTION_CONTROL_HANDLER h, const double *poses, + int rows, double a, double v, + double main_pipe_radius, double sub_pipe_radius, + double normal_distance, double normal_alpha); +ARCS_ABI int stopJoint(MOTION_CONTROL_HANDLER h, double acc); +ARCS_ABI int resumeStopJoint(MOTION_CONTROL_HANDLER h, double acc); +ARCS_ABI int stopLine(MOTION_CONTROL_HANDLER h, double acc, double acc_rot); +ARCS_ABI int resumeStopLine(MOTION_CONTROL_HANDLER h, double acc, + double acc_rot); +ARCS_ABI int weaveStart(MOTION_CONTROL_HANDLER h, const char *params); +ARCS_ABI int weaveEnd(MOTION_CONTROL_HANDLER h); +ARCS_ABI int storePath(MOTION_CONTROL_HANDLER h, BOOL keep_sync); +ARCS_ABI int stopMove(MOTION_CONTROL_HANDLER h, BOOL quick, BOOL all_tasks); +ARCS_ABI int startMove(MOTION_CONTROL_HANDLER h); +ARCS_ABI int clearPath(MOTION_CONTROL_HANDLER h); +ARCS_ABI int restoPath(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setFuturePointSamplePeriod(MOTION_CONTROL_HANDLER h, + double sample_time); +ARCS_ABI int getFuturePathPointsJoint(MOTION_CONTROL_HANDLER h, + double **result); +ARCS_ABI int conveyorTrackCircle(MOTION_CONTROL_HANDLER h, int encoder_id, + const double *center, BOOL rotate_tool); +ARCS_ABI int conveyorTrackLine(MOTION_CONTROL_HANDLER h, int encoder_id, + const double *direction); +ARCS_ABI int conveyorTrackStop(MOTION_CONTROL_HANDLER h, int encoder_id, + double a); +ARCS_ABI int setConveyorTrackEncoder(MOTION_CONTROL_HANDLER h, int encoder_id, + int tick_per_meter); +ARCS_ABI int setConveyorTrackLimit(MOTION_CONTROL_HANDLER h, int encoder_id, + double limit); +ARCS_ABI int setConveyorTrackStartWindow(MOTION_CONTROL_HANDLER h, + int encoder_id, double window_min, + double window_max); +ARCS_ABI int setConveyorTrackSensorOffset(MOTION_CONTROL_HANDLER h, + int encoder_id, double offset); +ARCS_ABI int setConveyorTrackSyncSeparation(MOTION_CONTROL_HANDLER h, + int encoder_id, double distance, + double time); +ARCS_ABI int setConveyorTrackCompensate(MOTION_CONTROL_HANDLER h, + int encoder_id, double comp); +ARCS_ABI BOOL isConveyorTrackSync(MOTION_CONTROL_HANDLER h, int encoder_id); +ARCS_ABI BOOL isConveyorTrackExceed(MOTION_CONTROL_HANDLER h, int encoder_id); +ARCS_ABI int getConveyorTrackQueue(MOTION_CONTROL_HANDLER h, int encoder_id, + double *result); +ARCS_ABI int getConveyorTrackNextItem(MOTION_CONTROL_HANDLER h, int encoder_id); +ARCS_ABI int conveyorTrackCreatItem(MOTION_CONTROL_HANDLER h, int encoder_id, + int item_id, const double *offset); +ARCS_ABI BOOL hasItemOnConveyorToTrack(MOTION_CONTROL_HANDLER h, + int encoder_id); +ARCS_ABI BOOL conveyorTrackSwitch(MOTION_CONTROL_HANDLER h, int encoder_id); +ARCS_ABI int conveyorTrackClearItems(MOTION_CONTROL_HANDLER h, int encoder_id); +ARCS_ABI int setConveyorItemTrigIO(MOTION_CONTROL_HANDLER h, int encoder_id, + RobotIOType_C io_type, int io_index, + BOOL trig_edge); +ARCS_ABI int moveSpiral(MOTION_CONTROL_HANDLER h, + const SpiralParameters_C *param, double blend_radius, + double v, double a, double t); +ARCS_ABI int pathOffsetLimits(MOTION_CONTROL_HANDLER h, double v, double a); +ARCS_ABI int pathOffsetCoordinate(MOTION_CONTROL_HANDLER h, int ref_coord); +ARCS_ABI int getLookAheadSize(MOTION_CONTROL_HANDLER h); +ARCS_ABI int setLookAheadSize(MOTION_CONTROL_HANDLER h, int size); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_algorithm_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_algorithm_c.h new file mode 100644 index 00000000..87bf7fcd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_algorithm_c.h @@ -0,0 +1,73 @@ +#ifndef AUBO_SDK_RobotAlgorithm_C_H +#define AUBO_SDK_RobotAlgorithm_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI ForceSensorCalibResult_C +calibrateTcpForceSensor(ROBOT_ALGORITHM_HANDLER h, const double *forces, + int forces_rows, const double *poses, int poses_rows); +ARCS_ABI ForceSensorCalibResult_C +calibrateTcpForceSensor2(ROBOT_ALGORITHM_HANDLER h, const double *forces, + int forces_rows, const double *poses, int poses_rows); +ARCS_ABI int payloadIdentify(ROBOT_ALGORITHM_HANDLER h, + const char *data_no_payload, + const char *data_with_payload); +ARCS_ABI int payloadIdentify1(ROBOT_ALGORITHM_HANDLER h, const char *file_name); +ARCS_ABI int payloadCalculateFinished(ROBOT_ALGORITHM_HANDLER h); +ARCS_ABI Payload_C getPayloadIdentifyResult(ROBOT_ALGORITHM_HANDLER h); +ARCS_ABI int generatePayloadIdentifyTraj(ROBOT_ALGORITHM_HANDLER h, + const char *name, + const TrajConfig_C *traj_config); +ARCS_ABI int payloadIdentifyTrajGenFinished(ROBOT_ALGORITHM_HANDLER h); +ARCS_ABI BOOL frictionModelIdentify(ROBOT_ALGORITHM_HANDLER h, const double *q, + int q_rows, const double *qd, int qd_rows, + const double *qdd, int qdd_rows, + const double *temp, int temp_rows); +ARCS_ABI int calibWorkpieceCoordinatePara(ROBOT_ALGORITHM_HANDLER h, + const double *q, int q_rows, int type, + double *result); +ARCS_ABI int forwardDynamics(ROBOT_ALGORITHM_HANDLER h, const double *q, + const double *torqs, double *result); +ARCS_ABI int forwardKinematics(ROBOT_ALGORITHM_HANDLER h, const double *q, + double *result); +ARCS_ABI int forwardToolKinematics(ROBOT_ALGORITHM_HANDLER h, const double *q, + double *result); +ARCS_ABI int forwardDynamics1(ROBOT_ALGORITHM_HANDLER h, const double *q, + const double *torqs, const double *tcp_offset, + double *result); +ARCS_ABI int forwardKinematics1(ROBOT_ALGORITHM_HANDLER h, const double *q, + const double *tcp_offset, double *result); +ARCS_ABI int inverseKinematics(ROBOT_ALGORITHM_HANDLER h, const double *qnear, + const double *pose, double *result); +ARCS_ABI int inverseKinematicsAll(ROBOT_ALGORITHM_HANDLER h, const double *pose, + double **result); +ARCS_ABI int inverseKinematics1(ROBOT_ALGORITHM_HANDLER h, const double *qnear, + const double *pose, const double *tcp_offset, + double *result); +ARCS_ABI int inverseKinematicsAll1(ROBOT_ALGORITHM_HANDLER h, + const double *pose, const double *tcp_offset, + double **result); +ARCS_ABI int inverseToolKinematics(ROBOT_ALGORITHM_HANDLER h, + const double *qnear, const double *pose, + double *result); +ARCS_ABI int inverseToolKinematicsAll(ROBOT_ALGORITHM_HANDLER h, + const double *pose, double **result); +ARCS_ABI int pathMovej(ROBOT_ALGORITHM_HANDLER h, const double *q1, double r1, + const double *q2, double r2, double d, double **result); +ARCS_ABI int pathBlend3Points(ROBOT_ALGORITHM_HANDLER h, int type, + const double *q_start, const double *q_via, + const double *q_to, double r, double d, + double **result); +ARCS_ABI int pathBlend3Points1(ROBOT_ALGORITHM_HANDLER h, int type, + const double *q_start, const double *q_via, + const double *q_to, double r, double d, + double **result); +ARCS_ABI int calcJacobian(ROBOT_ALGORITHM_HANDLER h, const double *q, + BOOL base_or_end, double *result); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_config_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_config_c.h new file mode 100644 index 00000000..7dc9fd99 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_config_c.h @@ -0,0 +1,92 @@ +#ifndef AUBO_SDK_RobotConfig_C_H +#define AUBO_SDK_RobotConfig_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int getDof(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int getName(ROBOT_CONFIG_HANDLER h, char *result); +ARCS_ABI double getCycletime(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setSlowDownFraction(ROBOT_CONFIG_HANDLER h, int level, + double fraction); +ARCS_ABI double getSlowDownFraction(ROBOT_CONFIG_HANDLER h, int level); +ARCS_ABI int getRobotType(ROBOT_CONFIG_HANDLER h, char *result); +ARCS_ABI int getRobotSubType(ROBOT_CONFIG_HANDLER h, char *result); +ARCS_ABI int getControlBoxType(ROBOT_CONFIG_HANDLER h, char *result); +ARCS_ABI double getDefaultToolAcc(ROBOT_CONFIG_HANDLER h); +ARCS_ABI double getDefaultToolSpeed(ROBOT_CONFIG_HANDLER h); +ARCS_ABI double getDefaultJointAcc(ROBOT_CONFIG_HANDLER h); +ARCS_ABI double getDefaultJointSpeed(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setMountingPose(ROBOT_CONFIG_HANDLER h, const double *pose); +ARCS_ABI int getMountingPose(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int setCollisionLevel(ROBOT_CONFIG_HANDLER h, int level); +ARCS_ABI int getCollisionLevel(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setCollisionStopType(ROBOT_CONFIG_HANDLER h, int type); +ARCS_ABI int getCollisionStopType(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setHomePosition(ROBOT_CONFIG_HANDLER h, const double *positions); +ARCS_ABI int getHomePosition(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int setFreedriveDamp(ROBOT_CONFIG_HANDLER h, const double *damp); +ARCS_ABI int getFreedriveDamp(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getTcpForceSensorNames(ROBOT_CONFIG_HANDLER h, char **result); +ARCS_ABI int selectTcpForceSensor(ROBOT_CONFIG_HANDLER h, const char *name); +ARCS_ABI BOOL hasTcpForceSensor(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setTcpForceOffset(ROBOT_CONFIG_HANDLER h, + const double *force_offset); +ARCS_ABI int getTcpForceOffset(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getBaseForceSensorNames(ROBOT_CONFIG_HANDLER h, char **result); +ARCS_ABI int selectBaseForceSensor(ROBOT_CONFIG_HANDLER h, const char *name); +ARCS_ABI BOOL hasBaseForceSensor(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setBaseForceOffset(ROBOT_CONFIG_HANDLER h, + const double *force_offset); +ARCS_ABI int getBaseForceOffset(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int setPersistentParameters(ROBOT_CONFIG_HANDLER h, const char *param); +ARCS_ABI int setKinematicsCompensate(ROBOT_CONFIG_HANDLER h, + const DHParam_C *param); +ARCS_ABI int setHardwareCustomParameters(ROBOT_CONFIG_HANDLER h, + const char *param); +ARCS_ABI int getHardwareCustomParameters(ROBOT_CONFIG_HANDLER h, + const char *param, char *result); +ARCS_ABI int setRobotZero(ROBOT_CONFIG_HANDLER h); +ARCS_ABI DHParam_C *getKinematicsParam(ROBOT_CONFIG_HANDLER h, BOOL real); +ARCS_ABI DHComp_C *getKinematicsCompensate(ROBOT_CONFIG_HANDLER h, + double ref_temperature); +ARCS_ABI uint32_t getSafetyParametersCheckSum(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int confirmSafetyParameters( + ROBOT_CONFIG_HANDLER h, const RobotSafetyParameterRange_C *parameters); +ARCS_ABI uint32_t calcSafetyParametersCheckSum( + ROBOT_CONFIG_HANDLER h, const RobotSafetyParameterRange_C *parameters); +ARCS_ABI int getJointMaxPositions(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getJointMinPositions(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getJointMaxSpeeds(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getJointMaxAccelerations(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getTcpMaxSpeeds(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getTcpMaxAccelerations(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI BOOL toolSpaceInRange(ROBOT_CONFIG_HANDLER h, const double *pose); +ARCS_ABI int setPayload(ROBOT_CONFIG_HANDLER h, double m, const double *cog, + const double *aom, const double *inertia); +ARCS_ABI Payload_C getPayload(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int getTcpOffset(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getGravity(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int setGravity(ROBOT_CONFIG_HANDLER h, const double *gravity); +ARCS_ABI int setTcpOffset(ROBOT_CONFIG_HANDLER h, const double *offset); +ARCS_ABI int setToolInertial(ROBOT_CONFIG_HANDLER h, double m, + const double *com, const double *inertial); +ARCS_ABI int firmwareUpdate(ROBOT_CONFIG_HANDLER h, const char *fw); +ARCS_ABI double getFirmwareUpdateProcess(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int setTcpForceSensorPose(ROBOT_CONFIG_HANDLER h, + const double *sensor_pose); +ARCS_ABI int getTcpForceSensorPose(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getLimitJointMaxPositions(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getLimitJointMinPositions(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getLimitJointMaxSpeeds(ROBOT_CONFIG_HANDLER h, double *result); +ARCS_ABI int getLimitJointMaxAccelerations(ROBOT_CONFIG_HANDLER h, + double *result); +ARCS_ABI double getLimitTcpMaxSpeed(ROBOT_CONFIG_HANDLER h); +ARCS_ABI SafeguedStopType_C getSafeguardStopType(ROBOT_CONFIG_HANDLER h); +ARCS_ABI int getSafeguardStopSource(ROBOT_CONFIG_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_interface_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_interface_c.h new file mode 100644 index 00000000..ca8521a0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_interface_c.h @@ -0,0 +1,22 @@ +#ifndef AUBO_SDK_RobotInterface_C_H +#define AUBO_SDK_RobotInterface_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI ROBOT_CONFIG_HANDLER robot_getRobotConfig(ROBOT_HANDLER robot); +ARCS_ABI MOTION_CONTROL_HANDLER robot_getMotionControl(ROBOT_HANDLER robot); +ARCS_ABI FORCE_CONTROL_HANDLER robot_getForceControl(ROBOT_HANDLER robot); +ARCS_ABI IO_CONTROL_HANDLER robot_getIoControl(ROBOT_HANDLER robot); +ARCS_ABI SYNC_MOVE_HANDLER robot_getSyncMove(ROBOT_HANDLER robot); +ARCS_ABI ROBOT_ALGORITHM_HANDLER robot_getRobotAlgorithm(ROBOT_HANDLER robot); +ARCS_ABI ROBOT_MANAGE_HANDLER robot_getRobotManage(ROBOT_HANDLER robot); +ARCS_ABI ROBOT_STATE_HANDLER robot_getRobotState(ROBOT_HANDLER robot); +ARCS_ABI TRACE_HANDLER robot_getTrace(ROBOT_HANDLER robot); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_manage_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_manage_c.h new file mode 100644 index 00000000..7b94f3cb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_manage_c.h @@ -0,0 +1,38 @@ +#ifndef AUBO_SDK_RobotManage_C_H +#define AUBO_SDK_RobotManage_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int poweron(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int startup(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int poweroff(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int backdrive(ROBOT_MANAGE_HANDLER h, BOOL enable); +ARCS_ABI int freedrive(ROBOT_MANAGE_HANDLER h, BOOL enable); +ARCS_ABI int handguideMode(ROBOT_MANAGE_HANDLER h, int32_t *freeAxes, + const double *feature); +ARCS_ABI int exitHandguideMode(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int getHandguideStatus(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int getHandguideTrigger(ROBOT_MANAGE_HANDLER h); +ARCS_ABI BOOL isHandguideEnabled(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int setSim(ROBOT_MANAGE_HANDLER h, BOOL enable); +ARCS_ABI int setOperationalMode(ROBOT_MANAGE_HANDLER h, + OperationalModeType_C mode); +ARCS_ABI OperationalModeType_C getOperationalMode(ROBOT_MANAGE_HANDLER h); +ARCS_ABI RobotControlModeType_C getRobotControlMode(ROBOT_MANAGE_HANDLER h); +ARCS_ABI BOOL isSimulationEnabled(ROBOT_MANAGE_HANDLER h); +ARCS_ABI BOOL isFreedriveEnabled(ROBOT_MANAGE_HANDLER h); +ARCS_ABI BOOL isBackdriveEnabled(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int setUnlockProtectiveStop(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int startRecord(ROBOT_MANAGE_HANDLER h, const char *file_name); +ARCS_ABI int stopRecord(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int pauseRecord(ROBOT_MANAGE_HANDLER h, BOOL pause); +ARCS_ABI int restartInterfaceBoard(ROBOT_MANAGE_HANDLER h); +ARCS_ABI int setLinkModeEnable(ROBOT_MANAGE_HANDLER h, BOOL enable); +ARCS_ABI BOOL isLinkModeEnabled(ROBOT_MANAGE_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_state_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_state_c.h new file mode 100644 index 00000000..a8f03e9f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/robot/robot_state_c.h @@ -0,0 +1,78 @@ +#ifndef AUBO_SDK_RobotState_C_H +#define AUBO_SDK_RobotState_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI RobotModeType_C getRobotModeType(ROBOT_STATE_HANDLER h); +ARCS_ABI SafetyModeType_C getSafetyModeType(ROBOT_STATE_HANDLER h); +ARCS_ABI BOOL isPowerOn(ROBOT_STATE_HANDLER h); +ARCS_ABI BOOL isSteady(ROBOT_STATE_HANDLER h); +ARCS_ABI BOOL isCollisionOccurred(ROBOT_STATE_HANDLER h); +ARCS_ABI BOOL isWithinSafetyLimits(ROBOT_STATE_HANDLER h); +ARCS_ABI int getTcpPose(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getActualTcpOffset(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTargetTcpPose(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getToolPose(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpSpeed(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpForce(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getElbowPosistion(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getElbowVelocity(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getBaseForce(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpTargetPose(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpTargetSpeed(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpTargetForce(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointState(ROBOT_STATE_HANDLER h, JointStateType_C *result); +ARCS_ABI int getJointServoMode(ROBOT_STATE_HANDLER h, + JointServoModeType_C *result); +ARCS_ABI int getJointPositions(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointPositionsHistory(ROBOT_STATE_HANDLER h, int steps, + double *result); +ARCS_ABI int getJointSpeeds(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointAccelerations(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTorqueSensors(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointContactTorques(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getBaseForceSensor(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getTcpForceSensors(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointCurrents(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointVoltages(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTemperatures(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointUniqueIds(ROBOT_STATE_HANDLER h, char **result); +ARCS_ABI int getJointFirmwareVersions(ROBOT_STATE_HANDLER h, int *result); +ARCS_ABI int getJointHardwareVersions(ROBOT_STATE_HANDLER h, int *result); +ARCS_ABI int getMasterBoardUniqueId(ROBOT_STATE_HANDLER h, char *result); +ARCS_ABI int getMasterBoardFirmwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getMasterBoardHardwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getSlaveBoardUniqueId(ROBOT_STATE_HANDLER h, char *result); +ARCS_ABI int getSlaveBoardFirmwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getSlaveBoardHardwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getToolUniqueId(ROBOT_STATE_HANDLER h, char *result); +ARCS_ABI int getToolFirmwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getToolHardwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getToolCommMode(ROBOT_STATE_HANDLER h); +ARCS_ABI int getPedestalUniqueId(ROBOT_STATE_HANDLER h, char *result); +ARCS_ABI int getPedestalFirmwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getPedestalHardwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getJointTargetPositions(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTargetSpeeds(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTargetAccelerations(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTargetTorques(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI int getJointTargetCurrents(ROBOT_STATE_HANDLER h, double *result); +ARCS_ABI double getControlBoxTemperature(ROBOT_STATE_HANDLER h); +ARCS_ABI double getControlBoxHumidity(ROBOT_STATE_HANDLER h); +ARCS_ABI double getMainVoltage(ROBOT_STATE_HANDLER h); +ARCS_ABI double getMainCurrent(ROBOT_STATE_HANDLER h); +ARCS_ABI double getRobotVoltage(ROBOT_STATE_HANDLER h); +ARCS_ABI double getRobotCurrent(ROBOT_STATE_HANDLER h); +ARCS_ABI int getSlowDownLevel(ROBOT_STATE_HANDLER h); +ARCS_ABI HandleStateType_C getHandleState(ROBOT_STATE_HANDLER h); +ARCS_ABI HandleModeType_C getHandleMode(ROBOT_STATE_HANDLER h); +ARCS_ABI int getHandleUniqueId(ROBOT_STATE_HANDLER h, char *result); +ARCS_ABI int getHandleFirmwareVersion(ROBOT_STATE_HANDLER h); +ARCS_ABI int getHandleHardwareVersion(ROBOT_STATE_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc.h new file mode 100644 index 00000000..d2f57469 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc.h @@ -0,0 +1,179 @@ +/** @file rpc.h + * @brief 用于RPC模块的交互,如登录、连接等功能 + */ + +#ifndef AUBO_SDK_RPC_H +#define AUBO_SDK_RPC_H + +#include + +#include +#include + +namespace arcs { +namespace aubo_sdk { +using namespace arcs::common_interface; + +/// RPC客户端 +class ARCS_ABI RpcClient : public AuboApi +{ +public: + enum Event + { + Connected = 0, + Disconnected = 1, + }; + + /** + * @brief RpcClient + * @param mode 0-TCP 1-UDS + */ + RpcClient(int mode = 0); + ~RpcClient(); + + /** + * 设置日志处理器 + * + * 此函数可设置自定义的日志处理函数来处理日志消息。 \n + * Aubo SDK 有一套默认的日志系统,按照默认的格式输出到默认的文件。 + * 如果用户不希望采用默认的格式或者不希望输出到默认的文件,那就可以通过这个接口重新自定义格式,或者输出路径。 + * 这个函数可以将用户自定义的日志系统与 Aubo SDK 默认的日志系统合并。 + * + * @note setLogHandler函数要放在即将触发的日志之前, + * 否则会按照默认的形式输出日志。 + * + * @param handler 日志处理函数 \n + * 此日志处理函数的下定义如下: \n + * void handler(int level, const char* filename, int line, const + * std::string& message) \n + * level 表示日志等级 \n + *   0: LOGLEVEL_FATAL 严重的错误 \n + *   1: LOGLEVEL_ERROR 错误 \n + *   2: LOGLEVEL_WARNING 警告 \n + *   3: LOGLEVEL_INFO 通知 \n + *   4: LOGLEVEL_DEBUG 调试 \n + *   5: LOGLEVEL_BACKTRACE 跟踪 \n + * filename 表示文件名 \n + * line 表示代码行号 \n + * message 表示日志信息 \n + * @return 无 + */ + void setLogHandler( + std::function + handler); + + /** + * 连接到RPC服务 + * + * @param ip IP地址 + * @param port 端口号,RPC的端口号是30004 + * @param ip和port为空时,采用unix domain sockets通讯方式 + * @retval 0 RPC连接成功 + * @retval -8 RPC连接失败,RPC连接被拒绝 + * @retval -15 RPC连接失败,SDK版本与Server版本不兼容 + */ + int connect(const std::string &ip = "", int port = 0); + + /** + * 断开RPC连接 + * + * @retval 0 成功 + * @retval -1 失败 + */ + int disconnect(); + + /** + * 判断是否连接RPC + * + * @retval true 已连接RPC + * @retval false 未连接RPC + */ + bool hasConnected() const; + + /** + * 登录 + * + * @param usrname 用户名 + * @param passwd 密码 + * @return 0 + */ + int login(const std::string &usrname, const std::string &passwd); + + /** + * 登出 + * + * @return 0 + */ + int logout(); + + /** + * 判断是否登录 + * + * @retval true 已登录 + * @retval false 未登录 + */ + bool hasLogined(); + + /** + * 设置RPC请求超时时间 + * + * @param timeout 请求超时时间,单位 ms + * @return 0 + */ + int setRequestTimeout(int timeout = 100); + + /** + * 设置事件处理 + * + * @param cb + * @return + */ + int setEventHandler(std::function cb); + + /** + * 是否关闭异常抛出 + * + * @param enable + * @return + */ + int setExceptionFree(bool enable); + + /** + * 返回错误代码 + * + * @return + */ + int errorCode() const; + + /** + * 设备关机 + * + * @return + */ + int shutdown(); + + /** + * 控制服务端RPC日志打印 + * + * @param enable true 启用服务端日志打印,false 禁用服务端日志打印 + * @return 0 成功 + */ + int enableServerRpcLogging(bool enable); +}; +using RpcClientPtr = std::shared_ptr; + +} // namespace aubo_sdk +} // namespace arcs + +#ifdef __cplusplus +extern "C" { +#endif + +ARCS_ABI arcs::aubo_sdk::RpcClient *createRpcClient(int mode = 0); +ARCS_ABI void destroyRpcClient(arcs::aubo_sdk::RpcClient *cli); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc_c.h new file mode 100644 index 00000000..00ade7be --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rpc_c.h @@ -0,0 +1,321 @@ +/** @file rpc_c.h + * @brief 用于RPC模块的交互,如登录、连接等功能 + */ + +#ifndef AUBO_SDK_RPC_C_H +#define AUBO_SDK_RPC_C_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +enum Event +{ + Event_Connected = 0, + Event_Disconnected = 1, +}; + +ARCS_ABI RPC_HANDLER rpc_create_client(int mode = 0); +ARCS_ABI void rpc_destroy_client(RPC_HANDLER cli); + +/** + * 设置日志处理器 + * + * 此函数可设置自定义的日志处理函数来处理日志消息。 \n + * Aubo SDK 有一套默认的日志系统,按照默认的格式输出到默认的文件。 + * 如果用户不希望采用默认的格式或者不希望输出到默认的文件,那就可以通过这个接口重新自定义格式,或者输出路径。 + * 这个函数可以将用户自定义的日志系统与 Aubo SDK 默认的日志系统合并。 + * + * @note setLogHandler函数要放在即将触发的日志之前, + * 否则会按照默认的形式输出日志。 + * + * @param handler 日志处理函数 \n + * 此日志处理函数的下定义如下: \n + * void handler(int level, const char* filename, int line, const + * std::string& message) \n + * level 表示日志等级 \n + *   0: LOGLEVEL_FATAL 严重的错误 \n + *   1: LOGLEVEL_ERROR 错误 \n + *   2: LOGLEVEL_WARNING 警告 \n + *   3: LOGLEVEL_INFO 通知 \n + *   4: LOGLEVEL_DEBUG 调试 \n + *   5: LOGLEVEL_BACKTRACE 跟踪 \n + * filename 表示文件名 \n + * line 表示代码行号 \n + * message 表示日志信息 \n + * @return 无 + */ +ARCS_ABI void rpc_setLogHandler(RPC_HANDLER cli, LOG_HANDLER handler); + +/** + * 连接到RPC服务 + * + * @param ip IP地址 + * @param port 端口号,RPC的端口号是30004 + * @param ip和port为空时,采用unix domain sockets通讯方式 + * @retval 0 RPC连接成功 + * @retval -8 RPC连接失败,RPC连接被拒绝 + * @retval -15 RPC连接失败,SDK版本与Server版本不兼容 + */ +ARCS_ABI int rpc_connect(RPC_HANDLER cli, const char *ip = "", int port = 0); + +/** + * 断开RPC连接 + * + * @retval 0 成功 + * @retval -1 失败 + */ +ARCS_ABI int rpc_disconnect(RPC_HANDLER cli); + +/** + * 判断是否连接RPC + * + * @retval true 已连接RPC + * @retval false 未连接RPC + */ +ARCS_ABI bool rpc_hasConnected(RPC_HANDLER cli); + +/** + * 登录 + * + * @param usrname 用户名 + * @param passwd 密码 + * @return 0 + */ +ARCS_ABI int rpc_login(RPC_HANDLER cli, const char *usrname, + const char *passwd); + +/** + * 登出 + * + * @return 0 + */ +ARCS_ABI int rpc_logout(RPC_HANDLER cli); + +/** + * 判断是否登录 + * + * @retval true 已登录 + * @retval false 未登录 + */ +ARCS_ABI bool rpc_hasLogined(RPC_HANDLER cli); + +/** + * 设置RPC请求超时时间 + * + * @param timeout 请求超时时间,单位 ms + * @return 0 + */ +ARCS_ABI int rpc_setRequestTimeout(RPC_HANDLER cli, int timeout = 10); + +/** + * 设置事件处理 + * + * @param cb + * @return + */ +ARCS_ABI int rpc_setEventHandler(RPC_HANDLER cli, EVENT_CALLBACK cb); + +/** + * 是否关闭异常抛出 + * + * @param enable + * @return + */ +ARCS_ABI int rpc_set_exception_free(RPC_HANDLER cli, bool enable); + +/** + * 返回错误代码 + * + * @return + */ +ARCS_ABI int rpc_errorCode(RPC_HANDLER cli); + +/** + * 设备关机 + * + * @return + */ +ARCS_ABI int rpc_shutdown(RPC_HANDLER cli); + +/** + * 获取纯数学相关接口 + * + * @return MathPtr对象的指针 + * + * @par Python函数原型 + * getMath(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.Math + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * MathPtr ptr = rpc_cli->getMath(); + * @endcode + * + */ +ARCS_ABI MATH_HANDLER rpc_getMath(RPC_HANDLER cli); + +/** + * 获取系统信息 + * + * @return SystemInfoPtr对象的指针 + * + * @par Python函数原型 + * getSystemInfo(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.SystemInfo + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SystemInfoPtr ptr = rpc_cli->getSystemInfo(); + * @endcode + * + */ +ARCS_ABI SYSTEM_INFO_HANDLER rpc_getSystemInfo(RPC_HANDLER cli); + +/** + * 获取运行时接口 + * + * @return RuntimeMachinePtr对象的指针 + * + * @par Python函数原型 + * getRuntimeMachine(self: pyaubo_sdk.AuboApi) -> pyaubo_sdk.RuntimeMachine + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * RuntimeMachinePtr ptr = rpc_cli->getRuntimeMachine(); + * @endcode + * + */ +ARCS_ABI RUNTIME_MACHINE_HANDLER rpc_getRuntimeMachine(RPC_HANDLER cli); + +/** + * 对外寄存器接口 + * + * @return RegisterControlPtr对象的指针 + * + * @par Python函数原型 + * getRegisterControl(self: pyaubo_sdk.AuboApi) -> + * pyaubo_sdk.RegisterControl + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * RegisterControlPtr ptr = rpc_cli->getRegisterControl(); + * @endcode + * + */ +ARCS_ABI REGISTER_CONTROL_HANDLER rpc_getRegisterControl(RPC_HANDLER cli); + +/** + * 获取机器人列表 + * + * @return 机器人列表 + * + * @par Python函数原型 + * getRobotNames(self: pyaubo_sdk.AuboApi) -> List[str] + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * @endcode + * + * @par JSON-RPC请求示例 + * {"jsonrpc":"2.0","method":"getRobotNames","params":[],"id":1} + * + * @par JSON-RPC响应示例 + * {"id":1,"jsonrpc":"2.0","result":["rob1"]} + * + */ +ARCS_ABI int rpc_getRobotNames(RPC_HANDLER cli, char **names); + +/** + * 根据名字获取 RobotInterfacePtr 接口 + * + * @param name 机器人名字 + * @return RobotInterfacePtr对象的指针 + * + * @par Python函数原型 + * getRobotInterface(self: pyaubo_sdk.AuboApi, arg0: str) -> + * pyaubo_sdk.RobotInterface + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * auto robot_name = rpc_cli->getRobotNames().front(); + * RobotInterfacePtr ptr = rpc_cli->getRobotInterface(robot_name); + * @endcode + * + */ +ARCS_ABI ROBOT_HANDLER rpc_getRobotInterface(RPC_HANDLER cli, const char *name); + +/** + * 获取外部轴列表 + * + * @return + */ +ARCS_ABI int rpc_getAxisNames(RPC_HANDLER cli, char **names); + +/** + * 获取外部轴接口 + * + * @param name + * @return + */ +ARCS_ABI AXIS_HANDLER rpc_getAxisInterface(RPC_HANDLER cli, const char *name); + +/// 获取独立 IO 模块接口 + +/** + * 获取 socket + * @return SocketPtr对象的指针 + * + * @par Python函数原型 + * getSocket(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Socket + * @endcode + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SocketPtr ptr = rpc_cli->getSocket(); + * @endcode + * + */ +ARCS_ABI SOCKET_HANDLER rpc_getSocket(RPC_HANDLER cli); + +/** + * + * @return SerialPtr对象的指针 + * + * @par Python函数原型 + * getSerial(self: pyaubo_sdk.AuboApi) -> arcs::common_interface::Serial + * + * @par C++示例 + * @code + * auto rpc_cli = std::make_shared(); + * SerialPtr ptr = rpc_cli->getSerial(); + * @endcode + */ +ARCS_ABI SERIAL_HANDLER rpc_getSerial(RPC_HANDLER cli); + +/** + * 获取同步运动接口 + * + * @return SyncMovePtr对象的指针 + */ +ARCS_ABI SYNC_MOVE_HANDLER rpc_getSyncMove(RPC_HANDLER cli, const char *name); + +/** + * 获取告警信息接口 + * + * @return TracePtr对象的指针 + */ +ARCS_ABI TRACE_HANDLER rpc_getTrace(RPC_HANDLER cli, const char *name); + +#ifdef __cplusplus +} +#endif +#endif // #define AUBO_SDK_RPC_C_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde.h new file mode 100644 index 00000000..9a23a303 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde.h @@ -0,0 +1,305 @@ +/** @file rtde.h + * @brief 用于RPC模块的交互,如订阅、发布等功能 + */ +#ifndef AUBO_SDK_RTDE_H +#define AUBO_SDK_RTDE_H + +#include +#include +#include +#include +#include +#include + +#include +#include + +namespace arcs { +namespace aubo_sdk { + +class RtdeClient; + +/// 向输出数据中增加 +class ARCS_ABI OutputBuilder +{ +public: + OutputBuilder(); + ~OutputBuilder(); + + OutputBuilder &push(int val); + OutputBuilder &push(double val); + OutputBuilder &push(const std::vector &val); + OutputBuilder &push(const std::tuple &val); + OutputBuilder &push(int16_t &val); + OutputBuilder &push(const std::vector &val); + OutputBuilder &push(const std::vector &val); + OutputBuilder &push(const std::string &val); + OutputBuilder &push(char val); + OutputBuilder &push(const common_interface::RtdeRecipe &val); + +private: + friend RtdeClient; + class Impl; + Impl *impl; +}; + +/// 解析输入 +class ARCS_ABI InputParser +{ +public: + InputParser(); + ~InputParser(); + + bool popBool(); + int popInt32(); + int64_t popInt64(); + int16_t popInt16(); + double popDouble(); + char popChar(); + std::vector popVectorInt(); + std::vector popVectorInt16(); + std::vector popVectorDouble(); + std::vector> popVectorVectorDouble(); + std::vector popVectorJointStateType(); + common_interface::RobotModeType popRobotModeType(); + common_interface::OperationalModeType popOperationalModeType(); + common_interface::SafetyModeType popSafetyModeType(); + common_interface::RuntimeState popRuntimeState(); + common_interface::RobotMsgVector popRobotMsgVector(); + common_interface::Payload popPayload(); + common_interface::GripperStatusVector popGripperStatusVector(); + common_interface::HandleStateType popHandleStateType(); + common_interface::HandleModeType popHandleModeType(); + +private: + friend RtdeClient; + class Impl; + Impl *impl; +}; + +/// RTDE客户端 +class ARCS_ABI RtdeClient +{ +public: + enum Event + { + Connected, + Disconnected, + }; + + /** + * RTDE客户端初始化 + * + * @param mode 设置通讯方式, 0 tcp通讯 1 uds通讯 + */ + RtdeClient(int mode = 0); + ~RtdeClient(); + + /** + * 设置日志处理器 + * + * 此函数可设置自定义的日志处理函数来处理日志消息。 \n + * Aubo SDK 有一套默认的日志系统,按照默认的格式输出到默认的文件。 + * 如果用户不希望采用默认的格式或者不希望输出到默认的文件,那就可以通过这个接口重新自定义格式,或者输出路径。 + * 这个函数可以将用户自定义的日志系统与 Aubo SDK 默认的日志系统合并。 + * + * @note setLogHandler函数要放在即将触发的日志之前, + * 否则会按照默认的形式输出日志。 + * + * @param handler 日志处理函数 \n + * 此日志处理函数的下定义如下: \n + * void handler(int level, const char* filename, int line, const + * std::string& message) \n + * level 表示日志等级 \n + *   0: LOGLEVEL_FATAL 严重的错误 \n + *   1: LOGLEVEL_ERROR 错误 \n + *   2: LOGLEVEL_WARNING 警告 \n + *   3: LOGLEVEL_INFO 通知 \n + *   4: LOGLEVEL_DEBUG 调试 \n + *   5: LOGLEVEL_BACKTRACE 跟踪 \n + * filename 表示文件名 \n + * line 表示代码行号 \n + * message 表示日志信息 \n + * @return 无 + */ + void setLogHandler( + std::function + handler); + + /** + * 连接到服务器 + * + * @param ip IP地址 + * @param port 端口号,RTDE 端口号为30010 + * @retval 0 连接成功 + * @retval 1 在执行函数前,已连接 + * @retval -1 连接失败 + */ + int connect(const std::string &ip = "", int port = 0); + + /** + * socket 是否已连接 + * + * @retval true 已连接socket + * @retval false 未连接socket + */ + bool hasConnected() const; + + /** + * socket 是否已连接 + * + * @param callback + * @retval true 已连接socket + * @retval false 未连接socket + */ + bool hasConnected1(std::function callback); + + /** + * 登录 + * + * @param usrname 用户名 + * @param passwd 密码 + * @retval 0 成功 + * @retval -1 失败 + */ + int login(const std::string &usrname, const std::string &passwd); + + /** + * 是否已经登录 + * + * @retval true 已登录 + * @retval false 未登录 + */ + bool hasLogined(); + + /** + * 登出 + * + * @return 0 + */ + int logout(); + + /** + * 断开连接 + * + * @retval 0 成功 + * @retval -1 失败 + */ + int disconnect(); + + /** + * 获取协议版本号 + * + * @return 协议版本号 + */ + int getProtocolVersion(); + + /** + * 获取输入列表 + * + * @return 输入列表 + */ + std::map getInputMaps(); + + /** + * 获取输出列表 + * + * @return 输出列表 + */ + std::map getOutputMaps(); + + /** + * 设置话题 + * + * @param to_server 数据流向。 + * true 表示客户端给服务器发送消息,false 表示服务器给客户端发送消息 + * @param names 服务器推送的信息列表 + * @param freq 服务器推送信息的频率 + * @param expected_chanel 通道。 + * 取值范围:0~99, + * 发布不同的话题走不同的通道 + * @retval expected_chanel参数的值 成功 + * @retval -1 失败 + */ + int setTopic(bool to_server, const std::vector &names, + double freq, int expected_chanel); + + /** + * 取消订阅 + * + * @param to_server 数据流向 + * true 表示客户端给服务器发送消息,false 表示服务器给客户端发送消息 + * @param chanel 通道 + * @retval 0 成功 + * @retval 1 失败 + */ + int removeTopic(bool to_server, int chanel); + + /** + * 获取已注册的输入菜单 + * + * @return 已注册的输入菜单 + */ + std::unordered_map + getRegisteredInputRecipe(); + + /** + * 获取已注册的输出菜单 + * + * @return 已注册的输出菜单 + */ + std::unordered_map + getRegisteredOutputRecipe(); + + /** + * 订阅 subscribe from output + * + * @param chanel 通道 + * @param callback 回调函数,用于处理订阅的输入信息。\n + * 回调函数的定义如下: + * void callback(InputParser &parser) + * @return 0 + */ + int subscribe(int chanel, std::function callback); + + /** + * 发布 publish to input + * + * @param chanel 通道 + * @param callback 回调函数,用于构建发布的输出信息。\n + * 回调函数的定义如下: + * void callback(OutputBuilder &builder) + * @retval 0 成功 + * @retval -1 失败 + */ + int publish(int chanel, std::function callback); + + /** + * 设置事件处理 + * + * @param cb + * @return + */ + int setEventHandler(std::function cb); + +private: + class Impl; + Impl *impl; +}; +using RtdeClientPtr = std::shared_ptr; + +} // namespace aubo_sdk +} // namespace arcs + +#ifdef __cplusplus +extern "C" { +#endif + +ARCS_ABI arcs::aubo_sdk::RtdeClient *createRtdeClient(int mode = 0); +ARCS_ABI void destroyRtdeClient(arcs::aubo_sdk::RtdeClient *cli); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde_c.h new file mode 100644 index 00000000..527bf2d9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/rtde_c.h @@ -0,0 +1,180 @@ +#ifndef AUBO_SDK_RTDE_C_H +#define AUBO_SDK_RTDE_C_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief 创建 RTDE 客户端实例。 + * + * @param mode 设置通讯方式,0 表示 TCP 通讯,1 表示 UDS 通讯。 + * @return 成功返回 RTDE 客户端句柄,失败返回 NULL。 + */ +ARCS_ABI RTDE_HANDLE rtde_create_client(int mode); + +/** + * @brief 销毁 RTDE 客户端实例。 + * + * @param cli RTDE 客户端句柄。 + */ +ARCS_ABI void rtde_destroy_client(RTDE_HANDLE cli); + +/** + * @brief 设置日志处理器。 + * + * @param cli RTDE 客户端句柄。 + * @param handler 日志处理函数。 + */ +ARCS_ABI void rtde_setLogHandler(RTDE_HANDLE cli, + void (*handler)(int level, + const char *filename, int line, + const char *message)); + +/** + * @brief 连接到服务器。 + * + * @param cli RTDE 客户端句柄。 + * @param ip IP 地址,NULL 表示使用默认地址。 + * @param port 端口号,0 表示使用默认端口。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_connect(RTDE_HANDLE cli, const char *ip, int port); + +/** + * @brief 检查是否已连接。 + * + * @param cli RTDE 客户端句柄。 + * @return true 表示已连接,false 表示未连接。 + */ +ARCS_ABI bool rtde_hasConnected(RTDE_HANDLE cli); + +/** + * @brief 登录到服务器。 + * + * @param cli RTDE 客户端句柄。 + * @param username 用户名。 + * @param password 密码。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_login(RTDE_HANDLE cli, const char *username, + const char *password); + +/** + * @brief 检查是否已登录。 + * + * @param cli RTDE 客户端句柄。 + * @return true 表示已登录,false 表示未登录。 + */ +ARCS_ABI bool rtde_hasLogined(RTDE_HANDLE cli); + +/** + * @brief 登出。 + * + * @param cli RTDE 客户端句柄。 + * @return 0 表示成功。 + */ +ARCS_ABI int rtde_logout(RTDE_HANDLE cli); + +/** + * @brief 断开连接。 + * + * @param cli RTDE 客户端句柄。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_disconnect(RTDE_HANDLE cli); + +/** + * @brief 获取协议版本号。 + * + * @param cli RTDE 客户端句柄。 + * @return 协议版本号。 + */ +ARCS_ABI int rtde_getProtocolVersion(RTDE_HANDLE cli); + +/** + * @brief 设置话题。 + * + * @param cli RTDE 客户端句柄。 + * @param to_server 数据流向,true 表示客户端发送消息,false + * 表示服务器发送消息。 + * @param names 信息列表(逗号分隔的字符串)。 + * @param freq 推送频率。 + * @param expected_chanel 通道号。 + * @return 成功返回通道号,失败返回 -1。 + */ +ARCS_ABI int rtde_setTopic(RTDE_HANDLE cli, bool to_server, const char *names, + double freq, int expected_chanel); + +/** + * @brief 取消订阅。 + * + * @param cli RTDE 客户端句柄。 + * @param to_server 数据流向。 + * @param chanel 通道号。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_removeTopic(RTDE_HANDLE cli, bool to_server, int chanel); + +/** + * @brief 订阅主题。 + * + * @param cli RTDE 客户端句柄。 + * @param chanel 通道号。 + * @param callback 回调函数,用于处理订阅的数据。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_subscribe(RTDE_HANDLE cli, int chanel, + void (*callback)(void *parser)); + +/** + * @brief 发布数据。 + * + * @param cli RTDE 客户端句柄。 + * @param chanel 通道号。 + * @param callback 回调函数,用于生成发布数据。 + * @return 0 表示成功,-1 表示失败。 + */ +ARCS_ABI int rtde_publish(RTDE_HANDLE cli, int chanel, + void (*callback)(void *builder)); + +// OutputBuilder +ARCS_ABI int rtde_pushInt(OUTPUT_BUILDER_HANDLE builder, int val); +ARCS_ABI int rtde_pushDouble(OUTPUT_BUILDER_HANDLE builder, double val); +ARCS_ABI int rtde_pushVectorDouble(OUTPUT_BUILDER_HANDLE builder, const double* val, int size); +ARCS_ABI int rtde_pushTupleIntBool(OUTPUT_BUILDER_HANDLE builder, int first, bool second); +ARCS_ABI int rtde_pushInt16(OUTPUT_BUILDER_HANDLE builder, int16_t val); +ARCS_ABI int rtde_pushVectorInt16(OUTPUT_BUILDER_HANDLE builder, const int16_t* val, int size); +ARCS_ABI int rtde_pushVectorInt(OUTPUT_BUILDER_HANDLE builder, const int* val, int size); +ARCS_ABI int rtde_pushString(OUTPUT_BUILDER_HANDLE builder, const char* val); +ARCS_ABI int rtde_pushChar(OUTPUT_BUILDER_HANDLE builder, char val); +ARCS_ABI int rtde_pushRtdeRecipe(OUTPUT_BUILDER_HANDLE builder, const struct RtdeRecipe_C* val); + +// InputParser +ARCS_ABI bool rtde_popBool(INPUT_PARSER_HANDLE parser); +ARCS_ABI int32_t rtde_popInt32(INPUT_PARSER_HANDLE parser); +ARCS_ABI int64_t rtde_popInt64(INPUT_PARSER_HANDLE parser); +ARCS_ABI int16_t rtde_popInt16(INPUT_PARSER_HANDLE parser); +ARCS_ABI double rtde_popDouble(INPUT_PARSER_HANDLE parser); +ARCS_ABI char rtde_popChar(INPUT_PARSER_HANDLE parser); + +ARCS_ABI int rtde_popVectorInt(INPUT_PARSER_HANDLE* parser, int* data, int size); +ARCS_ABI int rtde_popVectorInt16(INPUT_PARSER_HANDLE parser, int16_t* data, int size); +ARCS_ABI int rtde_popVectorDouble(INPUT_PARSER_HANDLE parser, double* data, int size); +ARCS_ABI int rtde_popVectorVectorDouble(INPUT_PARSER_HANDLE parser, double*** data, int rows, int cols); + +ARCS_ABI JointStateType_C rtde_popVectorJointStateType(INPUT_PARSER_HANDLE parser); +ARCS_ABI RobotModeType_C rtde_popRobotModeType(INPUT_PARSER_HANDLE parser); +ARCS_ABI OperationalModeType_C rtde_popOperationalModeType(INPUT_PARSER_HANDLE parser); +ARCS_ABI SafetyModeType_C rtde_popSafetyModeType(INPUT_PARSER_HANDLE parser); +ARCS_ABI RuntimeState_C rtde_popRuntimeState(INPUT_PARSER_HANDLE parser); +ARCS_ABI int rtde_popRobotMsgVector(INPUT_PARSER_HANDLE parser, struct RobotMsgVector_C* robot_msg_vec); +ARCS_ABI int rtde_popPayload(INPUT_PARSER_HANDLE parser, struct Payload_C* payload); + +#ifdef __cplusplus +} +#endif + +#endif // AUBO_SDK_RTDE_C_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/runtime_machine_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/runtime_machine_c.h new file mode 100644 index 00000000..0afd4c75 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/runtime_machine_c.h @@ -0,0 +1,60 @@ +#ifndef AUBO_SDK_RuntimeMachine_C_H +#define AUBO_SDK_RuntimeMachine_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif + +ARCS_ABI int newTask(RUNTIME_MACHINE_HADNLER h, BOOL daemon); +ARCS_ABI int deleteTask(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int detachTask(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI BOOL isTaskAlive(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int nop(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int switchTask(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int setLabel(RUNTIME_MACHINE_HADNLER h, int tid, const char *lineno); +ARCS_ABI int setPlanContext(RUNTIME_MACHINE_HADNLER h, int tid, int lineno, + const char *comment); +ARCS_ABI int gotoLine(RUNTIME_MACHINE_HADNLER h, int lineno); +ARCS_ABI int getAdvancePlanContext(RUNTIME_MACHINE_HADNLER h, int tid, + struct PlanContext_C *result); +ARCS_ABI int getAdvancePtr(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int getMainPtr(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int getInterpPtr(RUNTIME_MACHINE_HADNLER h, int tid); +ARCS_ABI int getPlanContext(RUNTIME_MACHINE_HADNLER h, int tid, + struct PlanContext_C *result); +ARCS_ABI int getExecutionStatus(RUNTIME_MACHINE_HADNLER h, + struct ExecutionStatus_C *result); +ARCS_ABI int getExecutionStatus1(RUNTIME_MACHINE_HADNLER h, + struct ExecutionStatus1_C *result); +ARCS_ABI int loadProgram(RUNTIME_MACHINE_HADNLER h, const char *program); +ARCS_ABI int runProgram(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int start(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int stop(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int abort1(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int pause(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int step(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int setResumeWait(RUNTIME_MACHINE_HADNLER h, BOOL wait); +ARCS_ABI int resume(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI RuntimeState_C getStatus(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI RuntimeState_C getRuntimeState(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int setBreakPoint(RUNTIME_MACHINE_HADNLER h, int lineno); +ARCS_ABI int removeBreakPoint(RUNTIME_MACHINE_HADNLER h, int lineno); +ARCS_ABI int clearBreakPoints(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int timerStart(RUNTIME_MACHINE_HADNLER h, const char *name); +ARCS_ABI int timerStop(RUNTIME_MACHINE_HADNLER h, const char *name); +ARCS_ABI int timerReset(RUNTIME_MACHINE_HADNLER h, const char *name); +ARCS_ABI int timerDelete(RUNTIME_MACHINE_HADNLER h, const char *name); +ARCS_ABI double getTimer(RUNTIME_MACHINE_HADNLER h, const char *name); +ARCS_ABI int triggBegin(RUNTIME_MACHINE_HADNLER h, double distance, + double delay); +ARCS_ABI int triggEnd(RUNTIME_MACHINE_HADNLER h); +ARCS_ABI int triggInterrupt(RUNTIME_MACHINE_HADNLER h, double distance, + double delay); +ARCS_ABI int getTriggInterrupts(RUNTIME_MACHINE_HADNLER h, int *result); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/script.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/script.h new file mode 100644 index 00000000..8cb97fe7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/script.h @@ -0,0 +1,209 @@ +/** @file script.h + * @brief 用于SCRIPT模块的交互,如向服务器发送脚本 + */ +#ifndef AUBO_SDK_SCRIPT_H +#define AUBO_SDK_SCRIPT_H + +#include +#include +#include +#include + +namespace arcs { +namespace aubo_sdk { + +class ScriptWriter +{ +public: + virtual ~ScriptWriter() = default; + + virtual ScriptWriter &append(const std::string &line) = 0; + virtual ScriptWriter &append(const char *buf, size_t len) = 0; + virtual ScriptWriter &moveJoint() = 0; + virtual ScriptWriter &moveLine() = 0; + virtual ScriptWriter &ifCondition() = 0; + virtual ScriptWriter &elseCondition() = 0; + virtual ScriptWriter &elseIfCondition() = 0; + virtual ScriptWriter &whileCondition() = 0; + virtual ScriptWriter &end() = 0; +}; + +/// SCRIPT客户端 +class ARCS_ABI ScriptClient +{ +public: + enum Event + { + Connected, + Disconnected, + }; + + ScriptClient(int mode = 0); + ~ScriptClient(); + + /** + * 设置日志处理器 + * + * 此函数可设置自定义的日志处理函数来处理日志消息。 \n + * Aubo SDK 有一套默认的日志系统,按照默认的格式输出到默认的文件。 + * 如果用户不希望采用默认的格式或者不希望输出到默认的文件,那就可以通过这个接口重新自定义格式,或者输出路径。 + * 这个函数可以将用户自定义的日志系统与 Aubo SDK 默认的日志系统合并。 + * + * @note setLogHandler函数要放在即将触发的日志之前, + * 否则会按照默认的形式输出日志。 + * + * @param handler 日志处理函数 \n + * 此日志处理函数的下定义如下: \n + * void handler(int level, const char* filename, int line, const + * std::string& message) \n + * level 表示日志等级 \n + *   0: LOGLEVEL_FATAL 严重的错误 \n + *   1: LOGLEVEL_ERROR 错误 \n + *   2: LOGLEVEL_WARNING 警告 \n + *   3: LOGLEVEL_INFO 通知 \n + *   4: LOGLEVEL_DEBUG 调试 \n + *   5: LOGLEVEL_BACKTRACE 跟踪 \n + * filename 表示文件名 \n + * line 表示代码行号 \n + * message 表示日志信息 \n + * @return 无 + */ + void setLogHandler( + std::function + handler); + + /** + * 连接到服务器 + * + * @param ip IP地址 + * @param port 端口号。SCRIPT端口号为30004 + * @retval 0 连接成功 + * @retval 1 在执行函数前,已连接 + * @retval -1 连接失败 + */ + int connect(const std::string &ip = "", int port = 0); + + /** + * 是否处于连接状态 + * + * @retval true 已连接 + * @retval false 未连接 + */ + bool hasConnected() const; + + /** + * 登录 + * + * @param usrname 用户名 + * @param passwd 密码 + * @retval 0 成功 + * @retval -1 失败 + */ + int login(const std::string &usrname, const std::string &passwd); + + /** + * 返回客户端是否登录 + * + * @retval true 已登录 + * @retval false 未登录 + */ + bool hasLogined(); + + /** + * 登出 + * + * @return 0 + */ + int logout(); + + /** + * 断开连接 + * + * @retval 0 成功 + * @retval -1 失败 + */ + int disconnect(); + + /** + * 发送脚本文件 + * + * 远程调用机器人的脚本 + * + * @param path 文件在机器人端的路径 + * @retval 0 成功 + * @retval -1 失败 + */ + int sendFile(const std::string &path); + + /** + * 发送脚本内容 + * + * 调用本地的脚本 + * + * @param script 脚本内容 + * @retval 0 成功 + * @retval -1 失败 + */ + int sendString(const std::string &script); + + /** + * 使用ScriptWriter构建服务器脚本 + * + * @param chunck_name + * @param cb + * @retval 0 成功 + * @retval -1 失败 + */ + int send(const std::string &chunck_name, + std::function cb); + + /** + * 设置服务器脚本的全局变量 + * + * @param cb 脚本的全局变量 + * @return 0 + */ + int subscribeVariableUpdate( + std::function cb); + + /** + * 设置服务器脚本的错误码 + * + * @param cb 脚本的错误码 + * @return 0 + */ + ARCS_DEPRECATED int subscribeScriptError( + std::function cb); + + int subscribeScriptError2( + std::function cb); + + /** + * 设置事件处理 + * + * @param cb + * @return + */ + int setEventHandler(std::function cb); + +private: + class Impl; + Impl *impl; +}; +using ScriptClientPtr = std::shared_ptr; + +} // namespace aubo_sdk +} // namespace arcs + +#ifdef __cplusplus +extern "C" { +#endif + +ARCS_ABI arcs::aubo_sdk::ScriptClient *createScriptClient(int mode = 0); +ARCS_ABI void destroyScriptClient(arcs::aubo_sdk::ScriptClient *cli); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/serial_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/serial_c.h new file mode 100644 index 00000000..bac17286 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/serial_c.h @@ -0,0 +1,32 @@ +#ifndef AUBO_SDK_Serial_C_H +#define AUBO_SDK_Serial_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int serialOpen(SERIAL_HANDLER h, const char *device, int baud, + float stop_bits, int even, const char *serial_name); +ARCS_ABI int serialClose(SERIAL_HANDLER h, const char *serial_name); +ARCS_ABI int serialReadByte(SERIAL_HANDLER h, const char *variable, + const char *serial_name); +ARCS_ABI int serialReadByteList(SERIAL_HANDLER h, int number, + const char *variable, const char *serial_name); +ARCS_ABI int serialReadString(SERIAL_HANDLER h, const char *variable, + const char *serial_name, const char *prefix, + const char *suffix, BOOL interpret_escape); +ARCS_ABI int serialSendByte(SERIAL_HANDLER h, char value, + const char *serial_name); +ARCS_ABI int serialSendInt(SERIAL_HANDLER h, int value, + const char *serial_name); +ARCS_ABI int serialSendLine(SERIAL_HANDLER h, const char *str, + const char *serial_name); +ARCS_ABI int serialSendString(SERIAL_HANDLER h, const char *str, + const char *serial_name); +ARCS_ABI int serialSendAllString(SERIAL_HANDLER h, BOOL is_check, + const char *str, const char *serial_name); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/socket_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/socket_c.h new file mode 100644 index 00000000..ba95fa56 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/socket_c.h @@ -0,0 +1,38 @@ +#ifndef AUBO_SDK_Socket_C_H +#define AUBO_SDK_Socket_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int socketOpen(SOCKET_HANDLER h, const char *address, int port, + const char *socket_name); +ARCS_ABI int socketClose(SOCKET_HANDLER h, const char *socket_name); +ARCS_ABI int socketReadAsciiFloat(SOCKET_HANDLER h, int number, + const char *variable, + const char *socket_name); +ARCS_ABI int socketReadBinaryInteger(SOCKET_HANDLER h, int number, + const char *variable, + const char *socket_name); +ARCS_ABI int socketReadByteList(SOCKET_HANDLER h, int number, + const char *variable, const char *socket_name); +ARCS_ABI int socketReadString(SOCKET_HANDLER h, const char *variable, + const char *socket_name, const char *prefix, + const char *suffix, BOOL interpret_escape); +ARCS_ABI int socketReadAllString(SOCKET_HANDLER h, const char *variable, + const char *socket_name); +ARCS_ABI int socketSendByte(SOCKET_HANDLER h, char value, + const char *socket_name); +ARCS_ABI int socketSendInt(SOCKET_HANDLER h, int value, + const char *socket_name); +ARCS_ABI int socketSendLine(SOCKET_HANDLER h, const char *str, + const char *socket_name); +ARCS_ABI int socketSendString(SOCKET_HANDLER h, const char *str, + const char *socket_name); +ARCS_ABI int socketSendAllString(SOCKET_HANDLER h, BOOL is_check, + const char *str, const char *socket_name); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/sync_move_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/sync_move_c.h new file mode 100644 index 00000000..2b8048f8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/sync_move_c.h @@ -0,0 +1,22 @@ +#ifndef AUBO_SDK_SyncMove_C_H +#define AUBO_SDK_SyncMove_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int syncMoveOn(SYNC_MOVE_HANDLER h, const char *syncident, + const char **taskset); +ARCS_ABI BOOL syncMoveSegment(SYNC_MOVE_HANDLER h, int id); +ARCS_ABI int syncMoveOff(SYNC_MOVE_HANDLER h, const char *syncident); +ARCS_ABI int syncMoveUndo(SYNC_MOVE_HANDLER h); +ARCS_ABI int waitSyncTasks(SYNC_MOVE_HANDLER h, const char *syncident, + const char **taskset); +ARCS_ABI BOOL isSyncMoveOn(SYNC_MOVE_HANDLER h); +ARCS_ABI int syncMoveSuspend(SYNC_MOVE_HANDLER h); +ARCS_ABI int syncMoveResume(SYNC_MOVE_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/system_info_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/system_info_c.h new file mode 100644 index 00000000..7f37e318 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/system_info_c.h @@ -0,0 +1,18 @@ +#ifndef AUBO_SDK_SystemInfo_C_H +#define AUBO_SDK_SystemInfo_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int getControlSoftwareVersionCode(SYSTEM_INFO_HANDLER h); +ARCS_ABI int getControlSoftwareFullVersion(SYSTEM_INFO_HANDLER h, char *result); +ARCS_ABI int getInterfaceVersionCode(SYSTEM_INFO_HANDLER h); +ARCS_ABI int getControlSoftwareBuildDate(SYSTEM_INFO_HANDLER h, char *result); +ARCS_ABI int getControlSoftwareVersionHash(SYSTEM_INFO_HANDLER h, char *result); +ARCS_ABI uint64_t getControlSystemTime(SYSTEM_INFO_HANDLER h); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/trace_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/trace_c.h new file mode 100644 index 00000000..fd46477a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/trace_c.h @@ -0,0 +1,20 @@ +#ifndef AUBO_SDK_Trace_C_H +#define AUBO_SDK_Trace_C_H +#include + +#ifdef __cplusplus +extern "C" { +#endif +ARCS_ABI int alarm(TRACE_HANDLER h, TraceLevel_C level, int code, + const char **args); +ARCS_ABI int popup(TRACE_HANDLER h, TraceLevel_C level, const char *title, + const char *msg, int mode); +ARCS_ABI int textmsg(TRACE_HANDLER h, const char *msg); +ARCS_ABI int notify(TRACE_HANDLER h, const char *msg); +ARCS_ABI int peek(TRACE_HANDLER h, uint64_t num, uint64_t last_time, + struct RobotMsg_C *result); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/type_def_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/type_def_c.h new file mode 100644 index 00000000..c7ca51ff --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/aubo_sdk/type_def_c.h @@ -0,0 +1,800 @@ +#ifndef AUBO_SDK_TYPE_DEF_C_H +#define AUBO_SDK_TYPE_DEF_C_H +#include +#include +#include + +#ifdef _MSC_VER +// MSVC /utf-8 or /execution-charset is set by the project; +// #pragma execution_character_set is not supported in that mode. +// (See MSVC error C3437) +//#pragma execution_character_set("utf-8") +#endif + +/// Cartesion degree of freedom, 6 for x,y,z,rx,ry,rz +#define CARTESIAN_DOF 6 +#define SAFETY_PARAM_SELECT_NUM 2 /// normal + reduced +#define SAFETY_PLANES_NUM 8 /// 安全平面的数量 +#define SAFETY_CUBIC_NUM 10 /// 安全立方体的数量 +#define TOOL_CONFIGURATION_NUM 3 /// 工具配置数量 +#define MAX_DOF 7 /// 工具配置数量 +#define TRUE 1 +#define FALSE 0 + +typedef uint8_t BOOL; +typedef double Vector3d_C[3]; +typedef double Vector4d_C[4]; +typedef float Vector3f_C[3]; +typedef float Vector4f_C[4]; +typedef float Vector6f_C[6]; + +typedef void *RPC_HANDLER; +typedef void *RTDE_HANDLE; +typedef void *INPUT_PARSER_HANDLE; +typedef void *OUTPUT_BUILDER_HANDLE; +typedef void *MATH_HANDLER; +typedef void *SYSTEM_INFO_HANDLER; +typedef void *RUNTIME_MACHINE_HANDLER; +typedef void *REGISTER_CONTROL_HANDLER; +typedef void *RUNTIME_MACHINE_HADNLER; +typedef void *ROBOT_HANDLER; +typedef void *AXIS_HANDLER; +typedef void *SOCKET_HANDLER; +typedef void *SERIAL_HANDLER; +typedef void *SYNC_MOVE_HANDLER; +typedef void *TRACE_HANDLER; +typedef void *FORCE_CONTROL_HANDLER; +typedef void *IO_CONTROL_HANDLER; +typedef void *MOTION_CONTROL_HANDLER; +typedef void *ROBOT_ALGORITHM_HANDLER; +typedef void *ROBOT_MANAGE_HANDLER; +typedef void *ROBOT_CONFIG_HANDLER; +typedef void *ROBOT_STATE_HANDLER; + +typedef void (*LOG_HANDLER)(int /*level*/, const char * /*filename*/, + int /*line*/, const char * /*message*/); +typedef void (*EVENT_CALLBACK)(int /*event*/); + +struct RobotSafetyParameterRange_C +{ + uint32_t crc32{ 0 }; + + /// 最多可以保存2套参数, 默认使用第 0 套参数 + struct + { + float power; ///< sum of joint torques times joint angular speeds + float momentum; ///< 机器人动量限制 + float stop_time; ///< 停机时间 ms + float stop_distance; ///< 停机距离 m + float reduced_entry_time; ///< 进入缩减模式的最大时间 + float + reduced_entry_distance; ///< 进入缩减模式的最大距离(可由安全平面触发) + float tcp_speed; + float elbow_speed; + float tcp_force; + float elbow_force; + float qmin[MAX_DOF]; + float qmax[MAX_DOF]; + float qdmax[MAX_DOF]; + float joint_torque[MAX_DOF]; + Vector3f_C tool_orientation; ///< + float tool_deviation; + Vector4f_C planes[SAFETY_PLANES_NUM]; /// x,y,z,displacement + int restrict_elbow[SAFETY_PLANES_NUM]; + } params[SAFETY_PARAM_SELECT_NUM]; + + /// 8个触发平面 + struct + { + Vector4f_C plane; /// x,y,z,displacement + int restrict_elbow; + } trigger_planes[SAFETY_PLANES_NUM]; + + struct + { + Vector6f_C orig; ///< 立方块的原点 (x,y,z,rx,ry,rz) + Vector3f_C size; ///< 立方块的尺寸 (x,y,z) + int restrict_elbow; + } cubic[SAFETY_CUBIC_NUM]; ///< 10个安全空间 + + /// 3个工具 + Vector4f_C tools[TOOL_CONFIGURATION_NUM]; /// x,y,z,radius + + float tool_inclination{ 0. }; ///< 倾角 + float tool_azimuth{ 0. }; ///< 方位角 + float safety_home[MAX_DOF]; + + /// 可配置IO的输入输出安全功能配置 + uint32_t safety_input_emergency_stop; + uint32_t safety_input_safeguard_stop; + uint32_t safety_input_safeguard_reset; + uint32_t safety_input_auto_safeguard_stop; + uint32_t safety_input_auto_safeguard_reset; + uint32_t safety_input_three_position_switch; + uint32_t safety_input_operational_mode; + uint32_t safety_input_reduced_mode; + uint32_t safety_input_handguide; + + uint32_t safety_output_emergency_stop; + uint32_t safety_output_not_emergency_stop; + uint32_t safety_output_robot_moving; + uint32_t safety_output_robot_steady; + uint32_t safety_output_reduced_mode; + uint32_t safety_output_not_reduced_mode; + uint32_t safety_output_safe_home; + uint32_t safety_output_robot_not_stopping; + uint32_t safety_output_safetyguard_stop; + + int tp_3pe_for_handguide; ///< 是否将示教器三档位开关作为拖动功能开关 + int allow_manual_high_speed; ///< 手动模式下允许高速运行 +}; + +inline void RobotSafetyParameterRange_init( + struct RobotSafetyParameterRange_C *range) +{ + memset(range, 0, sizeof(struct RobotSafetyParameterRange_C)); + range->tp_3pe_for_handguide = 1; +} + +struct WObjectData_C +{ + /// 是否为外部工具 + bool remote_tool; + + /// 工件坐标系耦合的 + char attach_frame[100]; + + /// 用户坐标系 + /// 如果 robhold 为 false, 那 uframe 的数值是基于 world + /// 否则,uframe 的数值是基于 flange + double user_coord[6]; + + /// 工件坐标系,基于 uframe + double obj_coord[6]; +}; + +/// 接口函数返回值定义 +/// +/// 整数为警告,负数为错误,0为没有错误也没有警告 +#define ENUM_AuboErrorCodes_DECLARES \ + ENUM_ITEM(AUBO_OK, 0, "Success") \ + ENUM_ITEM(AUBO_BAD_STATE, 1, "State error") \ + ENUM_ITEM(AUBO_QUEUE_FULL, 2, "Planning queue full") \ + ENUM_ITEM(AUBO_BUSY, 3, "The previous command is executing") \ + ENUM_ITEM(AUBO_TIMEOUT, 4, "Timeout") \ + ENUM_ITEM(AUBO_INVL_ARGUMENT, 5, "Invalid parameters") \ + ENUM_ITEM(AUBO_NOT_IMPLETEMENT, 6, "Interface not implemented") \ + ENUM_ITEM(AUBO_NO_ACCESS, 7, "Cannot access") \ + ENUM_ITEM(AUBO_CONN_REFUSED, 8, "Connection refused") \ + ENUM_ITEM(AUBO_CONN_RESET, 9, "Connection is reset") \ + ENUM_ITEM(AUBO_INPROGRESS, 10, "Execution in progress") \ + ENUM_ITEM(AUBO_EIO, 11, "Input/Output error") \ + ENUM_ITEM(AUBO_NOBUFFS, 12, "") \ + ENUM_ITEM(AUBO_REQUEST_IGNORE, 13, "Request was ignored") \ + ENUM_ITEM(AUBO_ALGORITHM_PLAN_FAILED, 14, \ + "Motion planning algorithm error") \ + ENUM_ITEM(AUBO_VERSION_INCOMPAT, 15, "Interface version unmatch") \ + ENUM_ITEM(AUBO_DIMENSION_ERR, 16, \ + "Input parameter dimension is incorrect") \ + ENUM_ITEM(AUBO_SINGULAR_ERR, 17, "Input configuration may be singular") \ + ENUM_ITEM(AUBO_POS_BOUND_ERR, 18, \ + "Input position boundary exceeds the limit range") \ + ENUM_ITEM(AUBO_INIT_POS_ERR, 19, "Initial position input is unreasonable") \ + ENUM_ITEM(AUBO_ELP_SETTING_ERR, 20, "Envelope body setting error") \ + ENUM_ITEM(AUBO_TRAJ_GEN_FAIL, 21, "Trajectory generation failed") \ + ENUM_ITEM(AUBO_TRAJ_SELF_COLLISION, 22, "Trajectory self collision") \ + ENUM_ITEM( \ + AUBO_IK_NO_CONVERGE, 23, \ + "Inverse kinematics computation did not converge; computation failed") \ + ENUM_ITEM(AUBO_IK_OUT_OF_RANGE, 24, \ + "Inverse kinematics result out of robot range") \ + ENUM_ITEM(AUBO_IK_CONFIG_DISMATCH, 25, \ + "Inverse kinematics input configuration contains errors") \ + ENUM_ITEM(AUBO_IK_JACOBIAN_FAILED, 26, \ + "The calculation of the inverse Jacobian matrix failed") \ + ENUM_ITEM(AUBO_IK_NO_SOLU, 27, \ + "The target point has solutions, but it has exceeded the joint " \ + "limit conditions") \ + ENUM_ITEM(AUBO_IK_UNKOWN_ERROR, 28, "Inverse kinematics unkown error") \ + ENUM_ITEM(AUBO_ERR_UNKOWN, 99999, "Unkown error occurred.") + +// clang-format off +/** + * The RuntimeState enum + * + */ +#define ENUM_RuntimeState_DECLARES \ + ENUM_ITEM(Running, 0, "正在运行中") \ + ENUM_ITEM(Retracting, 1, "倒退") \ + ENUM_ITEM(Pausing, 2, "暂停中") \ + ENUM_ITEM(Paused, 3, "暂停状态") \ + ENUM_ITEM(Stepping, 4, "单步执行中") \ + ENUM_ITEM(Stopping, 5, "受控停止中(保持原有轨迹)") \ + ENUM_ITEM(Stopped, 6, "已停止") \ + ENUM_ITEM(Aborting, 7, "停止(最大速度关节运动停机)") + +/** + * @brief The RobotModeType enum + * + * 硬件强相关 + */ +#define ENUM_RobotModeType_DECLARES \ + ENUM_ITEM(NoController, -1, "提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController") \ + ENUM_ITEM(Disconnected, 0, "没有连接到机械臂本体(控制器与接口板断开连接或是 EtherCAT 等总线断开)") \ + ENUM_ITEM(ConfirmSafety, 1, "正在进行安全配置, 断电状态下进行") \ + ENUM_ITEM(Booting, 2, "机械臂本体正在上电初始化") \ + ENUM_ITEM(PowerOff, 3, "机械臂本体处于断电状态") \ + ENUM_ITEM(PowerOn, 4, "机械臂本体上电成功, 刹车暂未松开(抱死), 关节初始状态未获取") \ + ENUM_ITEM(Idle, 5, "机械臂上电成功, 刹车暂未松开(抱死), 电机不通电, 关节初始状态获取完成") \ + ENUM_ITEM(BrakeReleasing, 6, "机械臂上电成功, 刹车正在松开") \ + ENUM_ITEM(BackDrive, 7, "反向驱动:刹车松开, 电机不通电") \ + ENUM_ITEM(Running, 8, "机械臂刹车松开, 运行模式, 控制权由硬件移交给软件") \ + ENUM_ITEM(Maintaince, 9, "维护模式: 包括固件升级、参数写入等") \ + ENUM_ITEM(Error, 10, "") \ + ENUM_ITEM(PowerOffing, 11, "机械臂本体处于断电过程中") + +#define ENUM_SafetyModeType_DECLARES \ + ENUM_ITEM(Undefined, 0, "安全状态待定") \ + ENUM_ITEM(Normal, 1, "正常运行模式") \ + ENUM_ITEM(ReducedMode, 2, "缩减运行模式") \ + ENUM_ITEM(Recovery, 3, "启动时如果在安全限制之外, 机器人将进入recovery模式") \ + ENUM_ITEM(Violation, 4, "超出安全限制(根据安全配置, 例如速度超限等)") \ + ENUM_ITEM(ProtectiveStop, 5, "软件触发的停机(保持轨迹, 不抱闸, 不断电)") \ + ENUM_ITEM(SafeguardStop, 6, "IO触发的防护停机(不保持轨迹, 抱闸, 不断电)") \ + ENUM_ITEM(SystemEmergencyStop,7, "系统急停:急停信号由外部输入(可配置输入), 不对外输出急停信号") \ + ENUM_ITEM(RobotEmergencyStop, 8, "机器人急停:控制柜急停输入或者示教器急停按键触发, 对外输出急停信号") \ + ENUM_ITEM(Fault, 9, "机械臂硬件故障或者系统故障") + //ValidateJointId + +/** + * 根据ISO 10218-1:2011(E) 5.7节 + * Automatic: In automatic mode, the robot shall execute the task programme and + * the safeguarding measures shall be functioning. Automatic operation shall be + * prevented if any stop condition is detected. Switching from this mode shall + * result in a stop. + */ +#define ENUM_OperationalModeType_DECLARES \ + ENUM_ITEM(Disabled, 0, "禁用模式: 不使用Operational Mode") \ + ENUM_ITEM(Automatic, 1, "自动模式: 机器人正常工作模式, 运行速度不会被限制") \ + ENUM_ITEM(Manual, 2, "手动模式: 机器人编程示教模式(T1), 机器人运行速度将会被限制或者机器人程序校验模式(T2)") + +/** + * 机器人的控制模式, 最终的控制对象 + */ +#define ENUM_RobotControlModeType_DECLARES \ + ENUM_ITEM(Unknown, 0, "未知的控制模式") \ + ENUM_ITEM(Position, 1, "位置控制 movej") \ + ENUM_ITEM(Speed, 2, "速度控制 speedj/speedl") \ + ENUM_ITEM(Servo, 3, "位置控制 servoj") \ + ENUM_ITEM(Freedrive, 4, "拖动示教 freedrive_mode") \ + ENUM_ITEM(Force, 5, "末端力控 force_mode") \ + ENUM_ITEM(Torque, 6, "关节力矩控制") \ + ENUM_ITEM(Collision, 7, "碰撞模式") + +#define ENUM_JointServoModeType_DECLARES \ + ENUM_ITEM(Unknown, -1, "未知") \ + ENUM_ITEM(Open, 0, "开环模式") \ + ENUM_ITEM(Current, 1, "电流伺服模式") \ + ENUM_ITEM(Velocity, 2, "速度伺服模式") \ + ENUM_ITEM(Position, 3, "位置伺服模式") \ + ENUM_ITEM(Torque, 4, "力矩伺服模式") + +#define ENUM_JointStateType_DECLARES \ + ENUM_ITEM(Poweroff, 0, "节点未连接到接口板或者已经断电") \ + ENUM_ITEM(Idle, 2, "节点空闲") \ + ENUM_ITEM(Fault, 3, "节点错误, 节点停止伺服运动, 刹车抱死") \ + ENUM_ITEM(Running, 4, "节点伺服") \ + ENUM_ITEM(Bootload, 5, "节点bootloader状态, 暂停一切通讯") + +#define ENUM_StandardInputAction_DECLARES \ + ENUM_ITEM(Default, 0, "无触发") \ + ENUM_ITEM(Handguide, 1, "拖动示教,高电平触发") \ + ENUM_ITEM(GoHome, 2, "运动到工程初始位姿,高电平触发") \ + ENUM_ITEM(StartProgram, 3, "开始工程,上升沿触发") \ + ENUM_ITEM(StopProgram, 4, "停止工程,上升沿触发") \ + ENUM_ITEM(PauseProgram, 5, "暂停工程,上升沿触发") \ + ENUM_ITEM(PopupDismiss, 6, "消除弹窗,上升沿触发") \ + ENUM_ITEM(PowerOn, 7, "机器人上电/松刹车,上升沿触发") \ + ENUM_ITEM(PowerOff, 8, "机器人抱死刹车/断电,上升沿触发") \ + ENUM_ITEM(ResumeProgram, 9, "恢复工程,上升沿触发") \ + ENUM_ITEM(SlowDown1, 10, "机器人减速触发1,高电平触发") \ + ENUM_ITEM(SlowDown2, 11, "机器人减速触发2,高电平触发") \ + ENUM_ITEM(SafeStop, 12, "安全停止,高电平触发") \ + ENUM_ITEM(RunningGuard, 13, "信号,高电平有效") \ + ENUM_ITEM(MoveToFirstPoint, 14, "运动到工程初始位姿,高电平触发") \ + ENUM_ITEM(xSlowDown1, 15, "机器人减速触发1,低电平触发") \ + ENUM_ITEM(xSlowDown2, 16, "机器人减速触发2,低电平触发") \ + ENUM_ITEM(ConveyorTrack, 17, "传送带检测到物品触发,高电平触发") \ + ENUM_ITEM(xConveyorTrack, 18, "传送带检测到物品触发,低电平触发") + +#define ENUM_StandardOutputRunState_DECLARES \ + ENUM_ITEM(None, 0, "标准输出状态未定义") \ + ENUM_ITEM(StopLow, 1, "低电平指示工程停止") \ + ENUM_ITEM(StopHigh, 2, "高电平指示机器人停止") \ + ENUM_ITEM(RunningHigh, 3, "指示工程正在运行") \ + ENUM_ITEM(PausedHigh, 4, "指示工程已经暂停") \ + ENUM_ITEM(AtHome, 5, "高电平指示机器人正在拖动") \ + ENUM_ITEM(Handguiding, 6, "高电平指示机器人正在拖动") \ + ENUM_ITEM(PowerOn, 7, "高电平指示机器人已经上电") \ + ENUM_ITEM(RobotEmergencyStop, 8, "高电平指示机器人急停按下") \ + ENUM_ITEM(SystemEmergencyStop, 9, "高电平指示外部输入系统急停按下") \ + ENUM_ITEM(InternalEmergencyStop, 8, "高电平指示机器人急停按下") \ + ENUM_ITEM(ExternalEmergencyStop, 9, "高电平指示外部输入系统急停按下") \ + ENUM_ITEM(SystemError, 10, "系统错误,包括故障、超限、急停、安全停止、防护停止 ") \ + ENUM_ITEM(NotSystemError, 11, "无系统错误,包括普通模式、缩减模式和恢复模式 ") \ + ENUM_ITEM(RobotOperable, 12, "机器人可操作,机器人上电且松刹车了 ") + +#define ENUM_SafetyInputAction_DECLARES \ + ENUM_ITEM(Unassigned, 0, "安全输入未分配动作") \ + ENUM_ITEM(EmergencyStop, 1, "安全输入触发急停") \ + ENUM_ITEM(SafeguardStop, 2, "安全输入触发防护停止, 边沿触发") \ + ENUM_ITEM(SafeguardReset, 3, "安全输入触发防护重置, 边沿触发") \ + ENUM_ITEM(ThreePositionSwitch, 4, "3档位使能开关") \ + ENUM_ITEM(OperationalMode, 5, "切换自动模式和手动模式") \ + ENUM_ITEM(HandGuide, 6, "拖动示教") \ + ENUM_ITEM(ReducedMode, 7, "安全参数切换1(缩减模式),序号越低优先级越高,三路输出都无效时,选用第0组安全参数") \ + ENUM_ITEM(AutomaticModeSafeguardStop, 8, "自动模式下防护停机输入(需要配置三档位使能设备)") \ + ENUM_ITEM(AutomaticModeSafeguardReset, 9, "自动模式下上升沿触发防护重置(需要配置三档位使能设备)") + +#define ENUM_SafetyOutputRunState_DECLARES \ + ENUM_ITEM(Unassigned, 0, "安全输出未定义") \ + ENUM_ITEM(SystemEmergencyStop, 1, "输出高当有机器人急停输入或者急停按键被按下") \ + ENUM_ITEM(NotSystemEmergencyStop, 2, "输出低当有机器人急停输入或者急停按键被按下") \ + ENUM_ITEM(RobotMoving, 3, "输出高当有关节运动速度超过 0.1rad/s") \ + ENUM_ITEM(RobotNotMoving, 4, "输出高当所有的关节运动速度不超过 0.1rad/s") \ + ENUM_ITEM(ReducedMode, 5, "输出高当机器人处于缩减模式") \ + ENUM_ITEM(NotReducedMode, 6, "输出高当机器人不处于缩减模式") \ + ENUM_ITEM(SafeHome, 7, "输出高当机器人已经处于安全Home位姿") \ + ENUM_ITEM(RobotNotStopping, 8, "输出低当机器人正在急停或者安全停止中") + +#define ENUM_PayloadIdentifyMoveAxis_DECLARES \ + ENUM_ITEM(Joint_2_6, 0,"第2和6关节运动") \ + ENUM_ITEM(Joint_3_6, 1,"第3和6关节运动") \ + ENUM_ITEM(Joint_4_6, 2,"第4和6关节运动") \ + ENUM_ITEM(Joint_4_5_6, 3,"第4、5、6关节运动") \ + +#define ENUM_EnvelopingShape_DECLARES \ + ENUM_ITEM(Cube, 1,"立方体") \ + ENUM_ITEM(Column, 2,"柱状体") \ + ENUM_ITEM(Stl, 3,"以STL文件的形式描述负载碰撞集合体") + +#define ENUM_TaskFrameType_DECLARES \ + ENUM_ITEM(NONE, 0,"") \ + ENUM_ITEM(POINT_FORCE, 1, "力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向" \ + "力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向" \ + "机器人TCP与所选特征的起点之间的距离至少为10mm" \ + "优先选择X轴, 为所选特征的X轴在力控坐标系Y轴垂直平面上的投影, 如果所选特征的X轴与力控坐标系的Y轴平行, " \ + "通过类似方法确定力控坐标系Z轴, Y-X或者Y-Z轴确定之后, 通过右手法则确定剩下的轴") \ + ENUM_ITEM(FRAME_FORCE, 2,"力控坐标系不发生变换 SIMPLE_FORC") \ + ENUM_ITEM(MOTION_FORCE, 3,"力控坐标系发生变换, 使得力控参考坐标系的x轴为机器人TCP速度在所选特征x-y平面上的投影y轴将垂直于机械臂运动, 并在所选特征的x-y平面内")\ + ENUM_ITEM(TOOL_FORCE, 4,"以工具末端坐标系作为力控参考坐标系") + +#ifdef ERROR +#undef ERROR +#endif + +#define ENUM_TraceLevel_DECLARES \ + ENUM_ITEM(FATAL, 0, "") \ + ENUM_ITEM(ERROR, 1, "") \ + ENUM_ITEM(WARNING, 2, "") \ + ENUM_ITEM(INFO, 3, "") \ + ENUM_ITEM(DEBUG, 4, "") + +#define ENUM_AxisModeType_DECLARES \ + ENUM_ITEM(NoController, -1, "提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController") \ + ENUM_ITEM(Disconnected, 0, "未连接") \ + ENUM_ITEM(PowerOff, 1, "断电") \ + ENUM_ITEM(BrakeReleasing, 2, "刹车松开中") \ + ENUM_ITEM(Idle, 3, "空闲") \ + ENUM_ITEM(Running, 4, "运行中") \ + ENUM_ITEM(Fault, 5, "错误状态") + +#define ENUM_SafeguedStopType_DECLARES \ + ENUM_ITEM(None, 0, "无安全停止") \ + ENUM_ITEM(SafeguedStopIOInput, 1, "安全停止(IO输入)") \ + ENUM_ITEM(SafeguedStop3PE, 2, "安全停止(三态开关)") \ + ENUM_ITEM(SafeguedStopOperational, 3, "安全停止(操作模式)") + +#define ENUM_HandleStateType_DECLARES \ + ENUM_ITEM(Disconnected, 0, "未连接") \ + ENUM_ITEM(Init, 1, "初始化中") \ + ENUM_ITEM(Connected, 2, "已连接") \ + ENUM_ITEM(Lock, 3, "锁定") \ + ENUM_ITEM(Fault, 4, "错误状态") + +#define ENUM_HandleModeType_DECLARES \ + ENUM_ITEM(None, 0, "不支持手柄") \ + ENUM_ITEM(Default, 1, "S等系列默认手柄") \ + ENUM_ITEM(MultiFuncG1, 2, "G系列第一代多功能手柄") + +#define ENUM_RobotIOType_DECLARES \ + ENUM_ITEM(IONone, 0, "无IO") \ + ENUM_ITEM(StandardDigitalOutput, 1, "标准数字输出IO") \ + ENUM_ITEM(ToolDigitalOutput, 2, "工具端数字输出IO") \ + ENUM_ITEM(ConfigurableDigitalOutput, 3, "可配置数字输出IO") \ + ENUM_ITEM(StandardDigitalInput, 4, "标准数字输入IO") \ + ENUM_ITEM(ToolDigitalInput, 5, "工具端数字输入IO") \ + ENUM_ITEM(ConfigurableDigitalInput, 6, "可配置数字输入IO") \ + ENUM_ITEM(StandardAnalogOutput, 7, "标准模拟输出IO") \ + ENUM_ITEM(ToolAnalogOutput, 8, "工具端模拟输出IO") \ + ENUM_ITEM(StandardAnalogInput, 9, "标准模拟输入IO") \ + ENUM_ITEM(ToolAnalogInput, 10, "工具端模拟输入IO") + +// clang-format on + +#define ENUM_ITEM(c, n, ...) c = n, +enum AuboErrorCodes_C : int +{ + ENUM_AuboErrorCodes_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) RuntimeState_##c = n, +enum RuntimeState_C : int +{ + ENUM_RuntimeState_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) RobotModeType_##c = n, +enum RobotModeType_C : int +{ + ENUM_RobotModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) AxisModeType_##c = n, +enum AxisModeType_C : int +{ + ENUM_AxisModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) SafetyModeType_##c = n, +enum SafetyModeType_C : int +{ + ENUM_SafetyModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) OperationalModeType_##c = n, +enum OperationalModeType_C : int +{ + ENUM_OperationalModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) RobotControlModeType_##c = n, +enum RobotControlModeType_C : int +{ + ENUM_RobotControlModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) JointServoModeType_##c = n, +enum JointServoModeType_C : int +{ + ENUM_JointServoModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) JointStateType_##c = n, +enum JointStateType_C : int +{ + ENUM_JointStateType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) StandardOutputRunState_##c = n, +enum StandardOutputRunState_C : int +{ + ENUM_StandardOutputRunState_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) StandardInputAction_##c = n, +enum StandardInputAction_C : int +{ + ENUM_StandardInputAction_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) SafetyInputAction_##c = n, +enum SafetyInputAction_C : int +{ + ENUM_SafetyInputAction_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) SafetyOutputRunState_##c = n, +enum SafetyOutputRunState_C : int +{ + ENUM_SafetyOutputRunState_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) TaskFrameType_##c = n, +enum TaskFrameType_C +{ + ENUM_TaskFrameType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) EnvelopingShape_##c = n, +enum EnvelopingShape_C : int +{ + ENUM_EnvelopingShape_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) PayloadIdentifyMoveAxis_##c = n, +enum PayloadIdentifyMoveAxis_C : int +{ + ENUM_PayloadIdentifyMoveAxis_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) TraceLevel_##c = n, +enum TraceLevel_C +{ + ENUM_TraceLevel_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) SafeguedStopType_##c = n, +enum SafeguedStopType_C : int +{ + ENUM_SafeguedStopType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) HandleStateType_##c = n, +enum class HandleStateType_C : int +{ + ENUM_HandleStateType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) HandleModeType_##c = n, +enum class HandleModeType_C : int +{ + ENUM_HandleModeType_DECLARES +}; +#undef ENUM_ITEM + +#define ENUM_ITEM(c, n, ...) RobotIOType_##c = n, +enum class RobotIOType_C : int +{ + ENUM_RobotIOType_DECLARES +}; +#undef ENUM_ITEM + +enum ForceControlState_C +{ + ForceControlState_Stopped, + ForceControlState_Starting, + ForceControlState_Stropping, + ForceControlState_Running +}; + +enum RefFrameType_C +{ + RefFrameType_None, /// + RefFrameType_Tool, ///< 工具坐标系 + RefFrameType_Path, ///< 轨迹坐标系 + RefFrameType_Base ///< 基坐标系 +}; + +/// 圆周运动参数定义 +struct CircleParameters_C +{ + double pose_via[6]; ///< 圆周运动途中点的位姿 + double pose_to[6]; ///< 圆周运动结束点的位姿 + double a; ///< 加速度, 单位: m/s^2 + double v; ///< 速度,单位: m/s + double blend_radius; ///< 交融半径,单位: m + double duration; ///< 运行时间,单位: s + double helix; + double spiral; + double direction; + int loop_times; ///< 暂不支持 +}; + +struct SpiralParameters_C +{ + double frame[6]; ///< 参考点,螺旋线的中心点和参考坐标系 + int plane; ///< 参考平面选择 0-XY 1-YZ 2-ZX + double angle; ///< 转动的角度,如果为正数,机器人逆时针旋转 + double spiral; ///< 正数外扩 + double helix; ///< 正数上升 +}; + +struct Enveloping_C +{ + EnvelopingShape_C shape; // 包络体形状 + double ep_args + [6]; // 包络体组合,shape为None或Stl时无需对ep_args赋值; + // shape为Cube时ep_args有9个元素,分别为xmin,xmax,ymin,ymax,zmin,zmax,rx,ry,rz; + // shape为Column时ep_args有5个元素,分别为radius,height,rx,ry,rz; + char stl_path[100]; // stl的路径(绝对路径),stl文件需为二进制文件, + // shape设置为Stl时,此项生效 +}; + +/// 用于负载辨识的轨迹配置 +struct TrajConfig_C +{ + Enveloping_C *envelopings; // 包络体组合 + PayloadIdentifyMoveAxis_C move_axis; // 运动的轴(ID), 下标从0开始 + double init_joint[MAX_DOF]; // 关节初始位置 + double upper_joint_bound[MAX_DOF]; // 运动轴上限 + double lower_joint_bound[MAX_DOF]; // 运动轴下限 + double max_velocity; // 关节运动的最大速度,默认值为 3.0 + double max_acceleration; // 关节运动的最大加速度,默认值为 5.0 +}; + +struct DHParam_C +{ + double theta[6]; + double beta[6]; + double d[6]; + double a[6]; + double alpha[6]; +}; + +struct DHComp_C +{ + double theta_comp[6]; + double beta_comp[6]; + double d_comp[6]; + double a_comp[6]; + double alpha_comp[6]; +}; + +struct Payload_C +{ + double mass; + double cog[3]; + double aom[3]; + double inertia[6]; +}; + +struct PlanContext_C +{ + int tid; + int lineno; + char comment[100]; +}; + +struct ExecutionStatus_C +{ + char name[100]; + char status[100]; +}; + +struct ExecutionStatus1_C +{ + char name[100]; + char status[100]; + int retval; +}; + +struct UpdateProcess_C +{ + char name[100]; + int process; +}; + +struct WorkObjectHold_C +{ + char module_name[100]; + double mounting_pose[][6]; +}; + +struct ForceSensorCalibResult_C +{ + double force_offset[6]; + double com[3]; + double mass; + double angle[6]; +}; + +// 动力学模型m,d,k +struct DynamicsModel_C +{ + double m[6]; + double d[6]; + double k[6]; +}; + +struct RobotMsg_C +{ + uint64_t timestamp; ///< 时间戳,即系统时间 + TraceLevel_C level; ///< 日志等级 + int code; ///< 错误码 + char source[100]; ///< 发送消息的机器人别名 alias + ///< 可在 /root/arcs_ws/config/aubo_control.conf + ///< 配置文件中查到机器人的alias + char **args; ///< 机器人参数(指针数组) + int args_count; ///< 参数数量 +}; + +struct RobotMsgVector_C +{ + struct RobotMsg_C *data; // 数组指针 + int size; // 数组元素个数 +}; + +/// RTDE菜单 +struct RtdeRecipe_C +{ + bool to_server; ///< 输入/输出 + int chanel; ///< 通道 + double frequency; ///< 更新频率 + int trigger; ///< 触发方式(该功能暂未实现): 0 - 周期; 1 - 变化 + char **segments; ///< 字段列表 + int segments_count; ///< 字段数量 +}; + +/// 异常类型 +enum error_type_C +{ + parse_error = -32700, ///< 解析错误 + invalid_request = -32600, ///< 无效请求 + method_not_found = -32601, ///< 方法未找到 + invalid_params = -32602, ///< 无效参数 + internal_error = -32603, ///< 内部错误 + server_error = -32500, ///< 服务器错误 + invalid = -32400 ///< 无效 +}; + +/// 异常码 +enum ExceptionCode_C +{ + EC_DISCONNECTED = -1, ///< 断开连接 + EC_NOT_LOGINED = -2, ///< 未登录 + EC_INVAL_SOCKET = -3, ///< 无效套接字 + EC_REQUEST_BUSY = -4, ///< 请求繁忙 + EC_SEND_FAILED = -5, ///< 发送失败 + EC_RECV_TIMEOUT = -6, ///< 接收超时 + EC_RECV_ERROR = -7, ///< 接收错误 + EC_PARSE_ERROR = -8, ///< 解析错误 + EC_INVALID_REQUEST = -9, ///< 无效请求 + EC_METHOD_NOT_FOUND = -10, ///< 方法未找到 + EC_INVALID_PARAMS = -11, ///< 无效参数 + EC_INTERNAL_ERROR = -12, ///< 内部错误 + EC_SERVER_ERROR = -13, ///< 服务器错误 + EC_INVALID = -14 ///< 无效 +}; + +inline const char *returnValue2Str(int retval) +{ + static const char *retval_str[] = { +#define ENUM_ITEM(n, v, s) s, + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + }; + + enum arcs_index_C + { +#define ENUM_ITEM(n, v, s) n##_INDEX, + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + }; + + int index = -1; + +#define ENUM_ITEM(n, v, s) \ + if (retval == v) \ + index = n##_INDEX; + ENUM_AuboErrorCodes_DECLARES +#undef ENUM_ITEM + + if (index == -1) + { + index = AUBO_ERR_UNKOWN; + } + + return retval_str[(unsigned)index]; +} + +#endif // AUBO_SDK_TYPE_DEF_C_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/rci_types.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/rci_types.h new file mode 100644 index 00000000..e262140c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/rci_types.h @@ -0,0 +1,72 @@ +#include + +namespace arcs { +namespace research_interface { + +#pragma pack(push, 1) + +/// 机器人状态 +struct RobotState +{ + uint64_t message_id; + int dof; + + /// 机器人状态 + int robot_mode; + + /// 安全状态 + int safety_mode; + + /// 错误代码(针对这个科研接口) + int error_code; + + uint32_t tool_io; + uint32_t standard_di; + uint32_t standard_do; + uint32_t config_di; + uint32_t config_do; + std::array analog_in; + std::array analog_out; + std::array tool_analog_in; + + /// 关节的实际状态 + std::array q, qd, qdd, current, friction, voltage; + + /// 关节的目标状态 + std::array target_q, target_qd, target_qdd, target_current; + + std::array pose, target_pose; + std::array tcp_offset; + std::array temperature; + + /// 基于法兰坐标系的力 + std::array tcp_force; + + /// 负载参数 + struct + { + double mass; + std::array cog; + } payload; +}; + +/// 机器人指令 +struct RobotCommand +{ + uint64_t message_id; + + /// 目标模式 + int target_mode; + + /// 指令关节角度 + std::array cmd_q, cmd_qd, cmd_current; + + /// 指令位姿 + std::array cmd_pose; + + bool finished; +}; + +#pragma pack(pop) +} // namespace research_interface +} // namespace arcs diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/robot.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/robot.h new file mode 100644 index 00000000..ef8eb96e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/research_interface/robot.h @@ -0,0 +1,71 @@ +#ifndef ARCS_RESEARCH_INTERFACE_ROBOT_H +#define ARCS_RESEARCH_INTERFACE_ROBOT_H + +#include +#include +#include +#include +#include +#include "aubo_sdk/rpc.h" + +namespace arcs { +namespace research_interface { + +struct JointPositions +{ + JointPositions() {} + JointPositions(const std::array &joint_positions) + : q(joint_positions) + { + } + JointPositions(std::initializer_list joint_positions) + { + if (joint_positions.size() != q.size()) { + throw std::invalid_argument( + "Invalid number of elements in joint_positions."); + } + std::copy(joint_positions.begin(), joint_positions.end(), q.begin()); + } + + std::array q{}; + bool finished{ false }; +}; + +class ARCS_ABI Robot +{ +public: + Robot(const std::string &ip, int port = 30030); + ~Robot(); + + // 启动机器人 + int startup(); + + int setControlPeriod(int period = 5000); + + int movej(const JointPositions &jnt_pos); + + // 位置控制 + void control( + std::function + control_callback, + bool limit_rate = false, double cutoff_frequency = 100, + bool loop = false); + + // 实时读取机器人的状态 + void read(std::function read_callback); + + // 开始轨迹记录 + int startRecord(std::string csv_file); + + // 停止轨迹记录 + int stopRecord(); + +protected: + void *d_{ nullptr }; + bool init_{ false }; +}; + +} // namespace research_interface +} // namespace arcs + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/realtime_robot_state.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/realtime_robot_state.h new file mode 100644 index 00000000..37441874 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/realtime_robot_state.h @@ -0,0 +1,504 @@ +#ifndef AUBO_SCOPE_REALTIME_ROBOT_STATE_H +#define AUBO_SCOPE_REALTIME_ROBOT_STATE_H + +#include +#include + +#include +#include + +namespace arcs { +namespace aubo_sdk { +using namespace common_interface; + +struct RobotInfo +{ + std::string robot_type_; + std::string robot_subtype_; + std::string cb_type_; + int dof_{ 6 }; + + Payload actual_payload_{ 0., std::vector(3, 0.), + std::vector(3, 0.), + std::vector(9, 0.) }; + + std::vector actual_q_{ std::vector(6, 0.) }; + std::vector actual_current_{ std::vector(6, 0.) }; + std::vector actual_TCP_pose_{ std::vector(6, 0.) }; + std::vector actual_TCP_speed_{ std::vector(6, 0.) }; + std::vector actual_tool_pose_{ std::vector(6, 0.) }; + std::vector actual_tcp_force_{ std::vector(6, 0.) }; + std::vector actual_tcp_force_sensor_{ std::vector(6, 0.) }; + + std::vector joint_voltages_{ std::vector(6, 0.) }; + std::vector joint_temperatures_{ std::vector(6, 0.) }; + std::vector joint_mode_{ std::vector( + 6, JointStateType::Idle) }; + RobotModeType robot_mode_{ RobotModeType::NoController }; + SafetyModeType safety_mode_{ SafetyModeType::Normal }; + OperationalModeType operational_mode_{ OperationalModeType::Disabled }; + HandleStateType handle_state_{ HandleStateType::Disconnected }; + HandleModeType handle_mode_{ HandleModeType::None }; + bool link_mode_{ false }; + bool freedrive_enabled_{ false }; + + double actual_main_voltage_{ 0 }; + double actual_robot_voltage_{ 0 }; + double actual_robot_current_{ 0 }; + double cb_temperature_{ 0 }; + double cb_humidity_{ 0 }; + int collision_level_{ 0 }; + int slow_down_level_{ 0 }; + + std::string tool_uuid_; + std::string mb_uuid_; + std::string sb_uuid_; + std::string pedestal_uuid_; + std::vector joint_uuids_; + std::string handle_uuid_; + + std::string hardware_interface_verion_{ "" }; + + std::vector joint_fw_; + std::vector joint_hw_; + int tool_fw_; + int tool_hw_; + int m_ifb_fw_; + int m_ifb_hw_; + int s_ifb_fw_; + int s_ifb_hw_; + int pedestal_fw_; + int pedestal_hw_; + int handle_fw_; + int handle_hw_; + + int standardDigitalInputNum_{ 0 }; + int toolDigitalInputNum_{ 0 }; + int configurableDigitalInputNum_{ 0 }; + + int standardDigitalOutputNum_{ 0 }; + int toolDigitalOutputNum_{ 0 }; + int configurableDigitalOutputNum_{ 0 }; + + int standardAnalogInputNum_{ 0 }; + int toolAnalogInputNum_{ 0 }; + + int standardAnalogOutputNum_{ 0 }; + int toolAnalogOutputNum_{ 0 }; + int staticLinkInputNum_{ 0 }; + int staticLinkOutputNum_{ 0 }; + + std::unordered_map> dh_; + std::unordered_map> threory_dh_; + + std::vector standard_digital_input_data_{ std::vector(64, + false) }; + std::vector tool_digital_input_data_{ std::vector(64, false) }; + std::vector configurable_digital_input_data_{ std::vector( + 64, false) }; + std::vector link_digital_input_data_{ std::vector(64, false) }; + std::vector standard_digital_output_data_{ std::vector(64, + false) }; + std::vector tool_digital_output_data_{ std::vector(64, false) }; + std::vector configurable_digital_output_data_{ std::vector( + 64, false) }; + std::vector link_digital_output_data_{ std::vector(64, false) }; + + std::vector standard_analog_input_data_; + std::vector tool_analog_input_data_; + std::vector standard_analog_output_data_; + std::vector tool_analog_output_data_; + + std::vector joints_model_type_; + std::vector joint_max_positions_{ std::vector(6, 0.) }; + std::vector joint_min_positions_{ std::vector(6, 0.) }; + std::vector joint_max_speeds_{ std::vector(6, 0.) }; + std::vector joint_max_accelerations_{ std::vector(6, 0.) }; + std::vector tcp_max_speeds_{ std::vector(6, 0.) }; + std::vector tcp_max_accelerations_{ std::vector(6, 0.) }; + std::vector gravity_{ std::vector{ 0, 0, -9.81 } }; + + bool simulation_enabled_{ false }; + double speed_fraction_{ 0 }; + quint32 handle_io_status_{ 0 }; + + std::vector enc_tick_count_; +}; + +class ARCS_ABI RealtimeRobotState : public QObject +{ + Q_OBJECT + friend class RobotProxy; + +public: + RealtimeRobotState(RpcClientPtr client, RtdeClientPtr rtde); + + ~RealtimeRobotState(); + + int updateRobotInformationOnLogin(); + int updateRobotInformationOnPoweron(int robot_index = -1); + int updateHDParamOnRobotTypeChanged(int robot_index = -1); + + std::vector getRobotNames() const; + + int getLineNumber(); + /// 弃用,只能返回主线程号 + ARCS_DEPRECATED int getThreadID(); + + RuntimeState getRuntimeState(); + + int getDof(); + + bool isSimulationEnabled(); + double getSpeedFraction(); + + std::string getRobotType() const; + std::string getRobotSubType() const; + std::string getControlBoxType() const; + + OperationalModeType getOperationalMode() const; + bool isLinkModeEnabled() const; + bool isFreedriveEnabled() const; + int getSlowDownLevel() const; + + int updateOperationMode(int robot_index); + int updateIsLinkModeEnabled(int robot_index); + + // 获取机器人的模式状态 + RobotModeType getRobotModeType(); + + // 获取安全模式 + SafetyModeType getSafetyModeType(); + + // 获取手柄类型 + HandleModeType getHandleModeType(); + + // 获取手柄状态 + HandleStateType getHandleStateType(); + + // 获取TCP的位姿 + std::vector getTcpPose(); + + // 获取工具端的位姿(不带TCP偏移) + std::vector getToolPose(); + + // 获取TCP速度 + std::vector getTcpSpeed(); + + // 获取TCP的力/力矩 + std::vector getTcpForce(); + std::vector getTcpForce(const std::vector &pose); + + std::vector getTcpForceSensor(); + + // 获取肘部的位置 + std::vector getElbowPosistion(); + + // 获取肘部速度 + std::vector getElbowVelocity(); + + // 获取基座力/力矩 + std::vector getBaseForce(); + + // 获取TCP目标位姿 + std::vector getTcpTargetPose(); + + // 获取TCP目标速度 + std::vector getTcpTargetSpeed(); + + // 获取TCP目标力/力矩 + std::vector getTcpTargetForce(); + + // 获取机械臂关节标志接口 + std::vector getJointState(); + + // 获取关节的伺服状态 + std::vector getJointServoMode(); + + // 获取实际负载 + Payload getPayload(); + + // 获取机械臂关节角度接口 + std::vector getJointPositions(); + + // 获取机械臂关节速度接口 + std::vector getJointSpeeds(); + + // 获取机械臂关节加速度接口 + std::vector getJointAccelerations(); + + // 获取机械臂关节力矩接口 + std::vector getJointTorqueSensors(); + + // 获取底座力传感器读数 + std::vector getBaseForceSensor(); + + // 获取TCP力传感器读数 + std::vector getTcpForceSensors(); + + // 获取机械臂关节电流接口 + std::vector getJointCurrents(); + + // 获取机械臂关节电压接口 + std::vector getJointVoltages(); + + // 获取机械臂关节温度接口 + std::vector getJointTemperatures(); + + // 获取关节固件版本 + std::vector getJointFirmwareVersions(); + + // 获取关节硬件版本 + std::vector getJointHardwareVersions(); + + std::string getToolUniqueId(); + std::string getMasterBoardUniqueId(); + std::string getSlaveBoardUniqueId(); + std::string getPedestalUniqueId(); + std::string getHandleUniqueId(); + std::vector getJointUniqueIds(); + + int getEncTickCount(int index); + + // 获取新老协议区分 + std::string getHardwareInterfaceVersion(); + + // 获取 MasterBoard 固件版本 + int getMasterBoardFirmwareVersion(); + + // 获取 MasterBoard 硬件版本 + int getMasterBoardHardwareVersion(); + + // 获取 SlaveBoard 固件版本 + int getSlaveBoardFirmwareVersion(); + + // 获取 SlaveBoard 硬件版本 + int getSlaveBoardHardwareVersion(); + + // 获取工具端固件版本 + int getToolFirmwareVersion(); + + // 获取工具端硬件版本 + int getToolHardwareVersion(); + + // 获取 Pedestal 固件版本 + int getPedestalFirmwareVersion(); + + // 获取 Pedestal 硬件版本 + int getPedestalHardwareVersion(); + + // 获取 Handle 固件版本 + int getHandleFirmwareVersion(); + + // 获取 Handle 硬件版本 + int getHandleHardwareVersion(); + + // 获取机械臂关节目标位置角度接口 + std::vector getJointTargetPositions(); + + // 获取机械臂关节目标速度 + std::vector getJointTargetSpeeds(); + + // 获取机械臂关节目标加速度 + std::vector getJointTargetAccelerations(); + + // 获取机械臂关节目标力矩 + std::vector getJointTargetTorques(); + + // 获取机械臂关节目标电流 + std::vector getJointTargetCurrents(); + + // 获取关节最大位置(物理极限) + std::vector getJointMaxPositions(); + + // 获取关节最小位置(物理极限) + std::vector getJointMinPositions(); + + // 获取关节最大速度(物理极限) + std::vector getJointMaxSpeeds(); + + // 获取关节最大加速度(物理极限) + std::vector getJointMaxAccelerations(); + + // 获取TCP最大速度(物理极限) + std::vector getTcpMaxSpeeds(); + + // 获取TCP最大加速度(物理极限) + std::vector getTcpMaxAccelerations(); + + // 获取控制柜温度 + double getControlBoxTemperature(); + + // 获取控制柜湿度 + double getControlBoxHumidity(); + + // 获取母线电压 + double getMainVoltage(); + + // 获取母线电流 + double getMainCurrent(); + + int getCollisionLevel(); + + // 获取机器人电压 + double getRobotVoltage(); + + // 获取机器人电流 + double getRobotCurrent(); + + // 获取手柄 IO 状态 + uint32_t getHandleIoStatus(); + + int getStandardDigitalInputNum(); + int getToolDigitalInputNum(); + int getConfigurableDigitalInputNum(); + + int getStandardDigitalOutputNum(); + int getToolDigitalOutputNum(); + int getConfigurableDigitalOutputNum(); + + int getStandardAnalogInputNum(); + int getToolAnalogInputNum(); + + int getStandardAnalogOutputNum(); + int getToolAnalogOutputNum(); + + SafetyInputAction getConfigurableInputAction(int index); + SafetyOutputRunState getConfigurableOutputRunstate(int index); + + int setStandardDigitalInputAction(int index, StandardInputAction action); + int setToolDigitalInputAction(int index, StandardInputAction action); + int setConfigurableDigitalInputAction(int index, + StandardInputAction action); + + StandardInputAction getStandardDigitalInputAction(int index); + StandardInputAction getToolDigitalInputAction(int index); + StandardInputAction getConfigurableDigitalInputAction(int index); + + int setStandardDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + int setToolDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + int setConfigurableDigitalOutputRunstate(int index, + StandardOutputRunState runstate); + StandardOutputRunState getStandardDigitalOutputRunstate(int index); + StandardOutputRunState getToolDigitalOutputRunstate(int index); + StandardOutputRunState getConfigurableDigitalOutputRunstate(int index); + + int setStandardAnalogOutputRunstate(int index, + StandardOutputRunState runstate); + int setToolAnalogOutputRunstate(int index, StandardOutputRunState runstate); + + StandardOutputRunState getStandardAnalogOutputRunstate(int index); + StandardOutputRunState getToolAnalogOutputRunstate(int index); + + int setStandardAnalogInputDomain(int index, int domain); + int setToolAnalogInputDomain(int index, int domain); + + int getStandardAnalogInputDomain(int index); + int getToolAnalogInputDomain(int index); + + int setStandardAnalogOutputDomain(int index, int domain); + int setToolAnalogOutputDomain(int index, int domain); + + int getStandardAnalogOutputDomain(int index); + int getToolAnalogOutputDomain(int index); + + int setStandardDigitalOutput(int index, bool value); + int setToolDigitalOutput(int index, bool value); + int setConfigurableDigitalOutput(int index, bool value); + + int setStandardAnalogOutput(int index, double value); + int setToolAnalogOutput(int index, double value); + + bool getStandardDigitalInput(int index); + bool getToolDigitalInput(int index); + bool getConfigurableDigitalInput(int index); + + bool getStandardDigitalOutput(int index); + bool getToolDigitalOutput(int index); + bool getConfigurableDigitalOutput(int index); + + double getStandardAnalogInput(int index); + double getToolAnalogInput(int index); + + double getStandardAnalogOutput(int index); + double getToolAnalogOutput(int index); + + int getStaticLinkInputNum(); + int getStaticLinkOutputNum(); + bool getStaticLinkInput(int index); + bool getStaticLinkOutput(int index); + + int configSubscribe(); + int selectRobot(int index); + + void reset(); + + void updateModbusSignalNames(); + void addModbusSignalName(const std::string &name); + void removeModbusSignalName(const std::string &name); + std::vector getModbusSignalNames() const; + std::vector getModbusSignalValues() const; + std::vector getModbusSignalErrors() const; + std::vector getGravity(); + std::unordered_map> getRealDHParam(); + std::unordered_map> getTheoryDHParam(); + + int updateGravity(int robot_index); + + int startTrackRecord( + const std::function & /*q*/, + const std::vector & /*pose*/)> &cb, + double interval = 0.1); + + int stopTrackRecord(); + + // 获取关节类型 + std::vector getJointsModelType(); + + GripperStatus getGripperStatusDataByName(const std::string &name_id); + common_interface::GripperStatusVector getAllGripperStatusData(); + +signals: + void interfaceBoardVersionInfoUpdated(int robot_index); + void jointVersionInfoUpdated(int robot_index); + void runtimeStateChanged(arcs::common_interface::RuntimeState state); + void safetyModeChanged(int robot_index, + arcs::common_interface::SafetyModeType mode); + void robotModeChanged(int robot_index, + arcs::common_interface::RobotModeType mode); + +private: + RpcClientPtr rpc_client_{ nullptr }; + RtdeClientPtr rtde_client_{ nullptr }; + mutable std::mutex rtde_mtx_; + + std::vector names_; + std::string name_; + int robot_index_{ -1 }; + + int tid_{ -1 }; + int line_{ -1 }; + RuntimeState runtime_state_{ RuntimeState::Stopped }; + + std::vector modbus_signals_; + std::vector modbus_signals_errors_; + std::vector modbus_names_; + + RobotInfo info_[4]; + + common_interface::GripperStatusVector gripper_status_; + + std::function &, + const std::vector &)> + track_record_callback_; + int track_record_sample_cnt_{ 0 }; + int track_record_sample_index_{ 0 }; +}; + +using RealtimeRobotStatePtr = std::shared_ptr; + +} // namespace aubo_sdk +} // namespace arcs +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/robot_proxy.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/robot_proxy.h new file mode 100644 index 00000000..06f4c197 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robot_proxy/robot_proxy.h @@ -0,0 +1,302 @@ +#ifndef AUBO_SCOPE_ROBOT_PROXY_H +#define AUBO_SCOPE_ROBOT_PROXY_H + +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include + +namespace arcs { +namespace aubo_sdk { +class RtdeClient; +class ScriptClient; +class RpcClient; +using RtdeClientPtr = std::shared_ptr; +using ScriptClientPtr = std::shared_ptr; +using RpcClientPtr = std::shared_ptr; + +using arcs::common_interface::ForceControlPtr; +using arcs::common_interface::IoControlPtr; +using arcs::common_interface::MotionControlPtr; +using arcs::common_interface::RegisterControlPtr; +using arcs::common_interface::RobotAlgorithmPtr; +using arcs::common_interface::RobotConfigPtr; +using arcs::common_interface::RobotInterfacePtr; +using arcs::common_interface::RobotManagePtr; +using arcs::common_interface::RobotStatePtr; +using arcs::common_interface::RuntimeMachinePtr; +using arcs::common_interface::SyncMovePtr; +using arcs::common_interface::SystemInfoPtr; +using arcs::common_interface::TracePtr; + +using RobotInterface = common_interface::RobotInterface; + +/** + * 单个机器人代理接口类 + */ +class ARCS_ABI RobotProxy : public QObject +{ + Q_OBJECT + +public: + RobotProxy(QObject *parent = NULL); + ~RobotProxy(); + + /// 获取当前机器人的名称 + QString getRobotName() const; + + /// 获取当前机器人在所有机器人中的索引 + int getRobotIndex() const; + + /// 获取所有机器人的名字 + std::vector getRobotNames(); + + /// 连接到当前机器人 + int connect(const QString &ip, int port); + + /// 连接到当前机器人 + int nonblock_connect(const QString &ip, int port, + std::function cb); + int nonblock_connect2(const QString &ip, int port, + std::function cb); + + /// 登录到当前机器人 + int login(const QString &usrname, const QString &passwd); + + /// 断开与机器人的连接,如果不指定名称,则断开当前选中的机器人 + int disconnectFromServer(); + + /// 机器人是否已经连接,如果不指定名称,则断开当前选中的机器人 + bool hasConnected(); + + /// 机器人是否已经登录,如果不指定名称,则断开当前选中的机器人 + bool hasLogined(); + + /// 发送脚本程序到当前机器人 + int sendScript(const std::string &script); + + /// 获取当前机器人的脚本程序 + std::string getScript() const; + + /// 使用 RealtimeRobotState 中的 getRealDHParam getTheoryDHParam 替代 + ARCS_DEPRECATED std::unordered_map> getDH( + bool real = true); + + SystemInfoPtr getSystemInfo(); + RuntimeMachinePtr getRuntimeMachine(); + RegisterControlPtr getRegisterControl(); + GripperInterfacePtr getGripperInterface(); + + /// 获取RobotConfig接口 + RobotConfigPtr getRobotConfig(); + + /// 获取运动规划接口 + MotionControlPtr getMotionControl(); + + /// 获取力控接口 + ForceControlPtr getForceControl(); + + /// 获取IO控制的接口 + IoControlPtr getIoControl(); + + /// 获取同步运动接口 + SyncMovePtr getSyncMove(); + + /// 获取机器人实用算法接口 + RobotAlgorithmPtr getRobotAlgorithm(); + + /// 获取机器人管理接口(上电、启动、停止等) + RobotManagePtr getRobotManage(); + + /// 获取机器人状态接口 + RobotStatePtr getRobotState(); + + RealtimeRobotStatePtr getRealTimeState(); + + /// 获取告警信息接口 + TracePtr getTrace(); + + /// 根据机器人名字获取机器人接口 + RobotInterfacePtr getRobotInterface(const std::string &name); + + /// 切换机器人 + int selectRobot(int index); + + aubo_sdk::RpcClientPtr getRpcClient(); + aubo_sdk::RtdeClientPtr getRtdeClient(); + aubo_sdk::ScriptClientPtr getScriptClient(); + + /// 通过错误码获取消息文本 + QString getErrorCodeMsg(int code); + + /// 获取 ICM 连接状态 + bool icmIsConnected(); + + /// 获取 Profinet 地址表数据 + std::vector> getPnAddressData(); + + // EIP + /// 获取 EIP 连接状态 + int getEipConnected(); + /// 获取 EtherNet/IP 地址表数据 + std::vector> getEipAddressData(); + + /// 外部轴 + std::vector getAxisNames(); + AxisInterfacePtr getAxisInterface(const std::string &name); + +signals: + // FIXME: 断开连接和登出的信号需要从 RobotProxy 类主动发出 + + /// 建立连接的信号 + void connected(const QString &ip, int port); + + /// 断开连接的信号 + void disconnected(); + + /// 登录或者登出 + void logined(bool has_login); + + /// 弹窗信号 + void popup(int robot_index, int level, const QString &title, + const QString &msg, int mode); + + /// 解除弹窗信号 + void popupDismiss(const QString &src); + + /// 从控制器层上传的系统关机信号 + void systemHalt(const QString &src); + + /// 已弃用,推荐使用下面的重载函数 + ARCS_DEPRECATED void scriptError(const QString &); + /// aubo_control 报错 + void scriptError(int lineno, const QString &error); + /// 脚本运行报错 + void scriptError2(const QString &, const QString &); + + /// 脚本运行时里面的变量发生变化 + void variableUpdate(const QString &, const QString &); + + /// 运行时状态发生变化 + void runtimeStateChanged(arcs::common_interface::RuntimeState state); + + /// 拖动示教器使能状态切换 + void freedriveEnabled(int robot_index, bool enabled); + + /// 接收到机器人控制端消息 + void robotMessageRecieved(int robot_index, QString src, int level, int code, + const QString &msg); + void robotMessageRecieved(int robot_index, const QString &src, int level, + const RobotMsg &msg); + + /// 操作模式切换 + void operationalModeChanged( + int robot_index, arcs::common_interface::OperationalModeType mode); + + /// 联动模式切换 + void linkModeChanged(int robot_index, bool enable); + + /// 安全模式切换 + void safetyModeChanged(int robot_index, + arcs::common_interface::SafetyModeType mode); + + /// 机器人状态切换 + void robotModeChanged(int robot_index, + arcs::common_interface::RobotModeType mode); + + /// 机器人型号切换 + void robotTypeChanged(const QString &type, const QString &subtype); + + /// 缓速切换 + void slowDownChanged(int robot_index, int level); + + /// 运行时上下文更新 + void runtimeContextUpdated(int tid, int lineno, int index, + const QString &comment); + void interpContextUpdated(int tid, int lineno, int index, + const QString &comment); + void taskDeleted(int tid); + + /// ICM 插件状态变化 + void icmStatusChanged(bool status); + + /// PNIO 从站数据变化 + void pnioDeviceChanged(const QString &name); + void pnioNetworkChanged(const QString &ip, const QString &subnet_mask, + const QString &gateway); + + // EIP 连接状态变化 + void sigEipConnectionStatusChanged(int); + + /// 示教器启用状态变化 + void teachPendantEnabledChanged(bool status); + + /// Modbus master + void modbusSignalCreated(const QString &name); + void modbusSignalRemoved(const QString &name); + + void jointMovedDuringPoweroff(int robot_index); + void robotCollisionOccurred(int robot_index, const QString &msg); + + void robotToolSensorChanged(int robot_index, const QString &sensor_id); + void robotToolSensorRemoved(int robot_index); + void robotToolSensorStatusChanged(int robot_index, bool status); + void programLoaded(int robot_index, const QString &program); + +private: + RobotInterfacePtr currentRobotRpcInterface(); + void robotMessageCallback(InputParser &parser); + void sendDisconnectedSignal(); + + // Profinet 地址表数据 + void initPNCacheData(); + void pnValueChanged(const std::vector &data); + + // EtherNet/IP 地址表数据 + void initEIPCacheData(); + void eipValueChanged(const std::vector &data); + +private: + QString name_; + int robot_index_{ -1 }; + std::vector robot_names_; + + std::string ip_; + int port_; + + aubo_sdk::RpcClientPtr rpc_client_{ nullptr }; + aubo_sdk::RtdeClientPtr rtde_client_{ nullptr }; + aubo_sdk::ScriptClientPtr script_client_{ nullptr }; + + RealtimeRobotStatePtr rt_state_{ nullptr }; + + bool initiallized_{ false }; + + QMap script_; + + bool icm_connected_{ false }; + bool pn_connected_{ false }; + std::atomic_int eip_connected_{ 0 }; + + // Profinet 地址表数据 + std::shared_mutex mtx_pn_address_; + std::vector> cache_pn_address_; + + // EtherNet/IP 地址表数据 + std::shared_mutex mtx_eip_address_; + std::vector> cache_eip_address_; +}; +using RobotProxyPtr = std::shared_ptr; + +} // namespace aubo_sdk +} // namespace arcs +Q_DECLARE_METATYPE(arcs::aubo_sdk::RobotProxyPtr) +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robotiomatetype.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robotiomatetype.h new file mode 100644 index 00000000..6b867005 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/robotiomatetype.h @@ -0,0 +1,103 @@ +#ifndef ROBOTIOMATETYPE_H +#define ROBOTIOMATETYPE_H + +//接口板用户DI 名称定义 +#define UESR_IO_DI_00_NAME "U_DI_00" +#define UESR_IO_DI_01_NAME "U_DI_01" +#define UESR_IO_DI_02_NAME "U_DI_02" +#define UESR_IO_DI_03_NAME "U_DI_03" +#define UESR_IO_DI_04_NAME "U_DI_04" +#define UESR_IO_DI_05_NAME "U_DI_05" +#define UESR_IO_DI_06_NAME "U_DI_06" +#define UESR_IO_DI_07_NAME "U_DI_07" +#define UESR_IO_DI_10_NAME "U_DI_10" +#define UESR_IO_DI_11_NAME "U_DI_11" +#define UESR_IO_DI_12_NAME "U_DI_12" +#define UESR_IO_DI_13_NAME "U_DI_13" +#define UESR_IO_DI_14_NAME "U_DI_14" +#define UESR_IO_DI_15_NAME "U_DI_15" +#define UESR_IO_DI_16_NAME "U_DI_16" +#define UESR_IO_DI_17_NAME "U_DI_17" + +//接口板用户DI 地址定义 +#define UESR_IO_DI_00_ADDR 0X24 +#define UESR_IO_DI_01_ADDR 0X25 +#define UESR_IO_DI_02_ADDR 0X26 +#define UESR_IO_DI_03_ADDR 0X27 +#define UESR_IO_DI_04_ADDR 0X28 +#define UESR_IO_DI_05_ADDR 0X29 +#define UESR_IO_DI_06_ADDR 0X2A +#define UESR_IO_DI_07_ADDR 0X2B +#define UESR_IO_DI_10_ADDR 0X2C +#define UESR_IO_DI_11_ADDR 0X2D +#define UESR_IO_DI_12_ADDR 0X2E +#define UESR_IO_DI_13_ADDR 0X2F +#define UESR_IO_DI_14_ADDR 0X30 +#define UESR_IO_DI_15_ADDR 0X31 +#define UESR_IO_DI_16_ADDR 0X32 +#define UESR_IO_DI_17_ADDR 0X33 + + +//接口板用户DO 名称定义 +#define UESR_IO_DO_00_NAME "U_DO_00" +#define UESR_IO_DO_01_NAME "U_DO_01" +#define UESR_IO_DO_02_NAME "U_DO_02" +#define UESR_IO_DO_03_NAME "U_DO_03" +#define UESR_IO_DO_04_NAME "U_DO_04" +#define UESR_IO_DO_05_NAME "U_DO_05" +#define UESR_IO_DO_06_NAME "U_DO_06" +#define UESR_IO_DO_07_NAME "U_DO_07" +#define UESR_IO_DO_10_NAME "U_DO_10" +#define UESR_IO_DO_11_NAME "U_DO_11" +#define UESR_IO_DO_12_NAME "U_DO_12" +#define UESR_IO_DO_13_NAME "U_DO_13" +#define UESR_IO_DO_14_NAME "U_DO_14" +#define UESR_IO_DO_15_NAME "U_DO_15" +#define UESR_IO_DO_16_NAME "U_DO_16" +#define UESR_IO_DO_17_NAME "U_DO_17" + +//接口板用户DO 地址定义 +#define UESR_IO_DO_00_ADDR 0X20 +#define UESR_IO_DO_01_ADDR 0X21 +#define UESR_IO_DO_02_ADDR 0X22 +#define UESR_IO_DO_03_ADDR 0X23 +#define UESR_IO_DO_04_ADDR 0X24 +#define UESR_IO_DO_05_ADDR 0X25 +#define UESR_IO_DO_06_ADDR 0X26 +#define UESR_IO_DO_07_ADDR 0X27 +#define UESR_IO_DO_10_ADDR 0X28 +#define UESR_IO_DO_11_ADDR 0X29 +#define UESR_IO_DO_12_ADDR 0X2A +#define UESR_IO_DO_13_ADDR 0X2B +#define UESR_IO_DO_14_ADDR 0X2C +#define UESR_IO_DO_15_ADDR 0X2D +#define UESR_IO_DO_16_ADDR 0X2E +#define UESR_IO_DO_17_ADDR 0X2F + + +//接口板用户AI 名称定义 +#define UESR_IO_AI_00_NAME "VI0" +#define UESR_IO_AI_01_NAME "VI1" +#define UESR_IO_AI_02_NAME "VI2" +#define UESR_IO_AI_03_NAME "VI3" + +//接口板用户AI 地址定义 +#define UESR_IO_AI_00_ADDR 0X00 +#define UESR_IO_AI_01_ADDR 0X01 +#define UESR_IO_AI_02_ADDR 0X02 +#define UESR_IO_AI_03_ADDR 0X03 + +//接口板用户AI 名称定义 +#define UESR_IO_AO_00_NAME "VO0" +#define UESR_IO_AO_01_NAME "VO1" +#define UESR_IO_AO_02_NAME "VO2" +#define UESR_IO_AO_03_NAME "VO3" + +//接口板用户AI 地址定义 +#define UESR_IO_AO_00_ADDR 0X00 +#define UESR_IO_AO_01_ADDR 0X01 +#define UESR_IO_AO_02_ADDR 0X02 +#define UESR_IO_AO_03_ADDR 0X03 + + +#endif // ROBOTIOMATETYPE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rsdef.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rsdef.h new file mode 100644 index 00000000..bf34a7bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rsdef.h @@ -0,0 +1,1583 @@ +#ifndef RSDEF_H +#define RSDEF_H +#include +#include "rstype.h" +#include "AuboRobotMetaType.h" + +#define TRUE 1 +#define FALSE 0 +#define RS_SUCC 0 +#define RS_FAILED -1 +#define MAX_RS_INSTANCE 32 +#define POS_SIZE 3 +#define ORI_SIZE 4 +#define INERTIA_SIZE 6 +#define JOINT_RADIAN_SIZE 6 + +#define RS_UNUSED(x) (void)x; +//#define _DEBUG + +using namespace aubo_robot_namespace; + +typedef CoordCalibrateByJointAngleAndTool CoordCalibrate; + +typedef struct +{ + CoordCalibrate user_coord; + char used; +} CustomUserCoord; + +typedef struct +{ + double rotateAxis[3]; +} Move_Rotate_Axis; + +typedef struct +{ + wayPoint_S waypoint[8]; + int solution_count; +} ik_solutions; + +#ifdef __cplusplus +extern "C" { +#endif + +// library initialize and uninitialize +/** + * @brief 初始化机械臂控制库 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_initialize(void); + +/** + * @brief 反初始化机械臂控制库 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_uninitialize(void); + +// robot service context +/** + * @brief 创建机械臂控制上下文句柄 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_create_context( + RSHD *rshd /*returned context handle*/); + +/** + * @brief 注销机械臂控制上下文句柄 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_destory_context(RSHD rshd); + +// login logout +/** + * @brief 链接机械臂服务器 + * @param rshd 械臂控制上下文句柄 + * @param addr 机械臂服务器的IP地址 + * @param port 机械臂服务器的端口号 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_login(RSHD rshd, const char *addr, + int port); + +/** + * @brief 断开机械臂服务器链接 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_logout(RSHD rshd); + +/** + * @brief 获取当前的连接状态 + * @param rshd 械臂控制上下文句柄 + * @param status true 在线 false 离线 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_login_status(RSHD rshd, bool *status); +// set move profile +/** + * @brief 初始化全局的运动属性 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_init_global_move_profile(RSHD rshd); + +// joint max acc,velc +/** + * @brief 设置六个关节的最大加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 六个关节的最大加速度,单位(rad/ss) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_joint_maxacc( + RSHD rshd, const JointVelcAccParam *max_acc); + +/** + * @brief 设置六个关节的最大速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 六个关节的最大速度,单位(rad/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_joint_maxvelc( + RSHD rshd, const JointVelcAccParam *max_velc); + +/** + * @brief 获取六个关节的最大加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 返回六个关节的最大加速度单位(rad/s^2) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_joint_maxacc( + RSHD rshd, JointVelcAccParam *max_acc); + +/** + * @brief 获取六个关节的最大速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 返回六个关节的最大加度单位(rad/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_joint_maxvelc( + RSHD rshd, JointVelcAccParam *max_velc); + +// end line max acc,velc +/** + * @brief 设置机械臂末端最大线加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 末端最大加线速度,单位(m/s^2) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_end_max_line_acc(RSHD rshd, + double max_acc); + +/** + * @brief 设置机械臂末端最大线速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 末端最大线速度,单位(m/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_end_max_line_velc( + RSHD rshd, double max_velc); + +/** + * @brief 获取机械臂末端最大线加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 机械臂末端最大线加速度,单位(m/s^2) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_end_max_line_acc( + RSHD rshd, double *max_acc); + +/** + * @brief 获取机械臂末端最大线速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 机械臂末端最大线速度,单位(m/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_end_max_line_velc( + RSHD rshd, double *max_velc); + +// end line max acc,velc +/** + * @brief 设置机械臂末端最大角加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 末端最大角加速度,单位(rad/s^2) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_end_max_angle_acc( + RSHD rshd, double max_acc); + +/** + * @brief 设置机械臂末端最大角速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 末端最大速度,单位(rad/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_global_end_max_angle_velc( + RSHD rshd, double max_velc); + +/** + * @brief 获取机械臂末端最大角加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_acc 机械臂末端最大角加速度,单位(m/s^2) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_end_max_angle_acc( + RSHD rshd, double *max_acc); + +/** + * @brief 获取机械臂末端最大角加速度 + * @param rshd 械臂控制上下文句柄 + * @param max_velc 机械臂末端最大角速度,单位(m/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_global_end_max_angle_velc( + RSHD rshd, double *max_velc); + +/** + * @brief 设置机械臂关节运动范围 + * @param rshd 械臂控制上下文句柄 + * @param joint_range + * 机械臂每个关节的运动范围(±175°)注意!!!单位使用弧度(rad) + * @param enable 使能关节运动范围控制 true:启用 false:禁用 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_joint_motion_range( + RSHD rshd, RangeOfMotion joint_range[ARM_DOF], bool enable = true); + +// robot move +/** + * @brief 机械臂轴动 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 六个关节的关节角,单位(rad) + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_joint(RSHD rshd, + double joint_radian[ARM_DOF], + bool isblock = true); + +/** + * @brief 机械臂轴动 + * @param rshd 械臂控制上下文句柄 + * @param move_profile 运动属性 + * @param joint_radian 六个关节的关节角,单位(rad) + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_joint_ex(RSHD rshd, + MoveProfile_t *move_profile, + double joint_radian[ARM_DOF], + bool isblock = true); + +/** + * @brief 跟随模式机械臂轴动 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 六个关节的关节角,单位(rad) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_follow_mode_move_joint( + RSHD rshd, double joint_radian[ARM_DOF]); + +/** + * @brief 机械臂保持当前姿态直线运动 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 六个关节的关节角,单位(rad) + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_line(RSHD rshd, + double joint_radian[ARM_DOF], + bool isblock = true); + +/** + * @brief 机械臂保持当前姿态直线运动 + * @param rshd 械臂控制上下文句柄 + * @param move_profile 运动属性 + * @param joint_radian 六个关节的关节角,单位(rad) + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_line_ex(RSHD rshd, + MoveProfile_t *move_profile, + double joint_radian[ARM_DOF], + bool isblock = true); + +/** + * @brief rs_move_rotate_to_waypoint保持当前位置变换姿态旋转运动至目标路点 + * @param rshd 械臂控制上下文句柄 + * @param target_waypiont 目标路点 + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_rotate_to_waypoint( + RSHD rshd, aubo_robot_namespace::wayPoint_S *target_waypiont, + bool isblock = true); + +/** + * @brief 保持当前位置变换姿态做旋转运动 + * @param rshd 械臂控制上下文句柄 + * @param user_coord 用户坐标系 + * @param rotate_axis :转轴(x,y,z) 例如:(1,0,0)表示沿Y轴转动 + * @param rotate_angle 旋转角度 单位(rad) + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_rotate( + RSHD rshd, const CoordCalibrate *user_coord, + const Move_Rotate_Axis *rotate_axis, double rotate_angle, + bool isblock = true); + +/** + * rs_get_rotate_target_waypiont + * 根据根据起始点姿态及基坐标系下描述的旋转轴、旋转角,获取目标位姿 + * @param rshd 械臂控制上下文句柄 + * @param originateWayPointOnBaseCoord 起始路点信息 + * @param rotateAxisOnBaseCoord 基坐标系下表示的旋转轴 + * @param rotateAngle 旋转角 + * @param targetWayPointOnBaseCoord 目标路点信息 (传出参数) + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_rotate_target_waypiont( + RSHD rshd, + const aubo_robot_namespace::wayPoint_S *originateWayPointOnBaseCoord, + const double rotateAxisOnBaseCoord[], double rotateAngle, + aubo_robot_namespace::wayPoint_S *targetWayPointOnBaseCoord); + +/** + * @brief rs_get_rotateaxis_user_to_Base + * 将用户坐标系下描述的旋转轴转换到基坐标系下描述 + * @param rshd 械臂控制上下文句柄 + * @param oriOnUserCoord 用户做标系旋转姿态 + * @param rotateAxisOnUserCoord 用户坐标系下描述的旋转轴 + * @param rotateAxisOnBaseCoord 基坐标系下描述的旋转轴 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_rotateaxis_user_to_Base( + RSHD rshd, const aubo_robot_namespace::Ori *oriOnUserCoord, + const double rotateAxisOnUserCoord[], double rotateAxisOnBaseCoord[]); + +/** + * @brief 清除所有已经设置的全局路点 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_remove_all_waypoint(RSHD rshd); + +/** + * @brief 添加全局路点用于轨迹运动 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 六个关节的关节角,单位(rad) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_add_waypoint(RSHD rshd, + double joint_radian[ARM_DOF]); + +/** + * @brief 设置交融半径 + * @param rshd 械臂控制上下文句柄 + * @param radius 交融半径,单位(m) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_blend_radius(RSHD rshd, double radius); + +/** + * @brief 设置圆运动圈数 + * @param rshd 械臂控制上下文句柄 + * @param times 当times大于0时,机械臂进行圆运动times次 + * 当times等于0时,机械臂进行圆弧轨迹运动 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_circular_loop_times(RSHD rshd, + int times); + +/** + * @brief 设置用户坐标系 + * @param rshd 械臂控制上下文句柄 + * @param user_coord 用户坐标系 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_user_coord( + RSHD rshd, const CoordCalibrate *user_coord); + +/** + * @brief 设置基座坐标系 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_base_coord(RSHD rshd); + +/** + * @brief 检查用户坐标系参数设置是否合理 + * @param rshd 械臂控制上下文句柄 + * @param user_coord 用户坐标系 + * @return RS_SUCC 成功 其他失败 合理返回: 0 不合理返回: 其他 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_check_user_coord( + RSHD rshd, const CoordCalibrate *user_coord); + +/** + * @brief 检查用户坐标系标定 + * @param rshd + * @param user_coord + * @param bInWPos 在世界坐标系中的位置 + * @param bInWOri 在世界坐标系中的姿态 + * @param wInBPos 在基座坐标系中的位置 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_user_coord_calibrate( + RSHD rshd, const CoordCalibrate *user_coord, double bInWPos[3], + double bInWOri[9], double wInBPos[3]); + +/** + * @brief rs_tool_calibration 工具标定  该函数能标定出工具的位置信息和姿态信息 + * @param toolCalibrate 工具标定结构体 用于储存标定点,标定方法等 + * @param toolInEndDesc       标定的结果 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_tool_calibration( + RSHD rshd, const ToolCalibrate &toolCalibrate, + ToolInEndDesc &toolInEndDesc); +/** + * @brief 设置基于基座标系运动偏移量 + * @param rshd 械臂控制上下文句柄 + * @param relative 相对位移(x, y, z) 单位(m) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_relative_offset_on_base( + RSHD rshd, const MoveRelative *relative); + +/** + * @brief 设置基于用户标系运动偏移量 + * @param rshd 械臂控制上下文句柄 + * @param relative 相对位移(x, y, z) 单位(m) + * @param user_coord 用户坐标系 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_relative_offset_on_user( + RSHD rshd, const MoveRelative *relative, const CoordCalibrate *user_coord); + +/** + * @brief 取消提前到位设置 + * @param rshd + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_no_arrival_ahead(RSHD rshd); + +/** + * @brief 设置距离模式下的提前到位距离 + * @param rshd + * @param distance 提前到位距离 单位(米) + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_arrival_ahead_distance(RSHD rshd, + double distance); + +/** + * @brief 设置时间模式下的提前到位时间 + * @param rshd + * @param sec 提前到位时间 单位(秒) + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_arrival_ahead_time(RSHD rshd, + double sec); + +/** + * @brief 设置距离模式下交融半径距离 + * @param rshd + * @param distance 提前到位距离 单位(米) + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_arrival_ahead_blend(RSHD rshd, + double radius); + +/** + * @brief 轨迹运动 + * @param rshd 械臂控制上下文句柄 + * @param sub_move_mode 轨迹类型: + * 2:圆弧 + * 3:轨迹 + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_track(RSHD rshd, + move_track sub_move_mode, + bool isblock = true); + +/** + * @brief + * 保持当前位姿通过直线运动的方式运动到目标位置,其中目标位置是通过相对当前位置的偏移给出 + * @param rshd 械臂控制上下文句柄 + * @param target 基于用户平面表示的目标位置 + * @param tool 工具参数 + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_line_to(RSHD rshd, const Pos *target, + const ToolInEndDesc *tool, + bool isblock = true); + +/** + * @brief 保持当前位姿通过关节运动的方式运动到目标位置 + * @param rshd 械臂控制上下文句柄 + * @param target 基于用户平面表示的目标位置 + * @param tool 工具参数 + * @param isblock isblock==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 isblock==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_joint_to(RSHD rshd, const Pos *target, + const ToolInEndDesc *tool, + bool isblock = true); + +/** + * @brief 设置示教坐标系 + * @param rshd 械臂控制上下文句柄 + * @param user_coord 示教坐标系 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_teach_coord( + RSHD rshd, const CoordCalibrate *teach_coord); + +/** + * @brief 开始轴动示教 + * @param rshd 械臂控制上下文句柄 + * @param mode 示教关节:JOINT1,JOINT2,JOINT3, JOINT4,JOINT5,JOINT6, + * 位置示教:MOV_X,MOV_Y,MOV_Z 姿态示教:ROT_X,ROT_Y,ROT_Z + * @param dir 运动方向 正方向true 反方向false + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_teach_move_start(RSHD rshd, teach_mode mode, + bool dir); + +/** + * @brief 结束示教 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_teach_move_stop(RSHD rshd); + +/** + * @brief 清理服务器上的非在线轨迹运动数据 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_clear_offline_track(RSHD rshd); + +/** + * @brief 向服务器添加非在线轨迹运动路点 + * @param rshd 械臂控制上下文句柄 + * @param waypoints 路点数组 (路点个数小于等于3000) + * @param waypoint_count 路点数组大小 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_append_offline_track_waypoint( + RSHD rshd, const JointParam waypoints[], int waypoint_count); + +/** + * @brief 向服务器添加非在线轨迹运动路点文件 + * @param rshd 械臂控制上下文句柄 + * @param filename + * 路点文件全路径,路点文件的每一行包含六个关节的关节角(弧度),用逗号隔开 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_append_offline_track_file( + RSHD rshd, const char *filename); + +/** + * @brief 通知服务器启动非在线轨迹运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_startup_offline_track(RSHD rshd); + +/** + * @brief 通知服务器停止非在线轨迹运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_stop_offline_track(RSHD rshd); + +/** + * @brief 通知服务器启动非在线轨迹运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_startup_excit_traj_track( + RSHD rshd, const char *trackfile, char type, char subtype); + +/** + * @brief 设置轨迹回放采样周期 + * @param rshd 械臂控制上下文句柄 + * @param second 采样周期(秒) + * @param RS_SUCC 成功 其他失败 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_track_playback_cycle(RSHD rshd, + double second); + +/** + * @brief rs_get_dynidentify_results + * @param param + * @param len + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT bool rs_get_dynidentify_results( + RSHD rshd, std::vector ¶mVector); + +/** + * @brief 通知服务器进入TCP2CANBUS透传模式 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enter_tcp2canbus_mode(RSHD rshd); + +/** + * @brief 通知服务器退出TCP2CANBUS透传模式 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_leave_tcp2canbus_mode(RSHD rshd); + +/** + * @brief 透传运动路点到CANBUS + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_waypoint_to_canbus( + RSHD rshd, double joint_radian[ARM_DOF]); + +/** + * @brief 透传运动路点到CANBUS + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_waypoints_to_canbus( + RSHD rshd, double joint_radian[][ARM_DOF], int waypint_count); + +/** + * @brief 正解     此函数为正解函数,已知关节角求对应位置的位置和姿态。 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 六个关节的关节角,单位(rad) + * @param waypoint 六个关节角,位置,姿态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_forward_kin( + RSHD rshd, const double joint_radian[ARM_DOF], wayPoint_S *waypoint); + +/** + * @brief 逆解 + * 此函数为机械臂逆解函数,根据位置信息(x,y,z)和对应位置的参考姿态(w,x,y,z)得到对应位置的关节角信息。 + * @param rshd 械臂控制上下文句柄 + * @param joint_radian 参考关节角(通常为当前机械臂位置)单位(rad) + * @param pos 目标路点的位置 单位:米 + * @param ori 目标路点的参考姿态 + * @param waypoint 目标路点信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_inverse_kin(RSHD rshd, + double joint_radian[ARM_DOF], + const Pos *pos, const Ori *ori, + wayPoint_S *waypoint); + +/** + * @brief 逆解 + * 此函数为机械臂逆解函数,根据位置信息(x,y,z)和对应位置的参考姿态(w,x,y,z)得到对应位置的关节角信息。 + * @param rshd 械臂控制上下文句柄 + * @param pos 目标路点的位置 单位:米 + * @param ori 目标路点的参考姿态 + * @param ik_solutions + * 目标路点信息(最多返回八组解,逆解结果超过8个则仅返回前8个) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_inverse_kin_closed_form( + RSHD rshd, const Pos *pos, const Ori *ori, ik_solutions *solutions); + +/** + * @brief 用户坐标系转基座坐标系 + * 概述: + * 将法兰盘中心基于基座标系下的位置和姿态 转成 工具末端基于用户座标系下的位置和姿态。 + * + *  扩展1: 法兰盘中心可以看成是一个特殊的工具,即工具的位置为(0,0,0) + * + * 因此当工具为(0,0,0)时,相当于将法兰盘中心基于基座标系下的位置和姿态 转成 法兰盘中心基于用户座标系下的位置和姿态。 + * + *     扩展2: 用户坐标系也可以选择成基座标系,  即:userCoord.coordType = + * BaseCoordinate + * 因此当用户平面为基座标系时,相当于将法兰盘中心基于基座标系下的位置和姿态 转成 工具末端基于基座标系下的位置和姿态, + * 即在基座标系加工具。 + * @param rshd 械臂控制上下文句柄 + * @param pos_onbase 基于基座标系的法兰盘中心位置信息(x,y,z) 单位(m) + * @param ori_onbase 基于基座标系的姿态信息(w, x, y, z) + * @param user_coord 用户坐标系 + * @param tool_pos 工具信息 + * @param pos_onuser 基于用户座标系的工具末端位置信息,输出参数 + * @param ori_onuser 基于用户座标系的工具末端姿态信息,输出参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_base_to_user( + RSHD rshd, const Pos *pos_onbase, const Ori *ori_onbase, + const CoordCalibrate *user_coord, const ToolInEndDesc *tool_pos, + Pos *pos_onuser, Ori *ori_onuser); + +/** + * @brief 用户坐标系转基座标系 + * @param rshd 械臂控制上下文句柄 + * @param pos_onuser 基于用户座标系的工具末端位置信息 + * @param ori_onuser 基于用户座标系的工具末端姿态信息 + * @param user_coord 用户坐标系 + * @param tool_pos 工具信息 + * @param pos_onbase 基于基座标系的法兰盘中心位置信息 + * @param ori_onbase 基于基座标系的姿态信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_user_to_base( + RSHD rshd, const Pos *pos_onuser, const Ori *ori_onuser, + const CoordCalibrate *user_coord, const ToolInEndDesc *tool_pos, + Pos *pos_onbase, Ori *ori_onbase); + +/** + * @brief  基坐标系转基座标得到工具末端点的位置和姿态 + * @param rshd 械臂控制上下文句柄 + * @param flange_center_pos_onbase 基于基座标系的法兰盘中心位置信息 + * @param flange_center_ori_onbase 基于基座标系的姿态信息 + * @param tool 工具信息 + * @param tool_end_pos_onbase 基于基座标系的工具末端位置信息 + * @param tool_end_ori_onbase 基于基座标系的工具末端姿态信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_base_to_base_additional_tool( + RSHD rshd, const Pos *flange_center_pos_onbase, + const Ori *flange_center_ori_onbase, const ToolInEndDesc *tool, + Pos *tool_end_pos_onbase, Ori *tool_end_ori_onbase); + +/** + * @brief rs_get_target_waypoint_by_position   根据位置获取目标路点信息 + * @param sourceWayPointOnBaseCoord     起始路点(基于基坐标系) + * @param userCoordSystem           用户坐标系 + * @param toolEndPosition           工具末端位置 + * @param toolInEndDesc            工具末端偏移 + * @param targetWayPointOnBaseCoord     目标路点(基于基坐标系) + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_target_waypoint_by_position( + RSHD rshd, + const aubo_robot_namespace::wayPoint_S &sourceWayPointOnBaseCoord, + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoordSystem, + const aubo_robot_namespace::Pos &toolEndPosition, + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + aubo_robot_namespace::wayPoint_S &targetWayPointOnBaseCoord); + +/** + * @brief 欧拉角转四元素 + * @param rshd 械臂控制上下文句柄 + * @param rpy 姿态的欧拉角表示方法 + * @param ori 姿态的四元素表示方法 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_rpy_to_quaternion(RSHD rshd, const Rpy *rpy, + Ori *ori); + +/** + * @brief 四元素转欧拉角 + * @param rshd 械臂控制上下文句柄 + * @param ori 姿态的四元素表示方法 + * @param rpy 姿态的欧拉角表示方法 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_quaternion_to_rpy(RSHD rshd, const Ori *ori, + Rpy *rpy); + +/** + * @brief 设置工具的运动学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的运动学参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_end_param( + RSHD rshd, const ToolInEndDesc *tool); + +// end tool parameters +/** + * @brief 设置无工具的动力学参数 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_none_tool_dynamics_param(RSHD rshd); + +/** + * @brief 设置工具的动力学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的动力学参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_dynamics_param( + RSHD rshd, const ToolDynamicsParam *tool); + +/** + * @brief 获取工具的动力学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的动力学参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_tool_dynamics_param( + RSHD rshd, ToolDynamicsParam *tool); + +/** + * @brief 获取工具的动力学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的动力学参数 + * @return RS_SUCC 成功 其他失败 + * @note 由于rs_get_tool_dynamics_param获取的位置值单位是mm,增加此 + * 函数将单位与rs_set_tool_dynamics_param统一 + */ +inline int rs_get_tool_dynamics_param2(RSHD rshd, ToolDynamicsParam *tool) +{ + int retval = rs_get_tool_dynamics_param(rshd, tool); + tool->positionX /= 1000.; + tool->positionY /= 1000.; + tool->positionZ /= 1000.; + + return retval; +} + +/** + * @brief 设置无工具运动学参数 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_none_tool_kinematics_param(RSHD rshd); + +/** + * @brief 设置工具的运动学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的运动学参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_kinematics_param( + RSHD rshd, const ToolKinematicsParam *tool); + +/** + * @brief 获取工具的运动学参数 + * @param rshd 械臂控制上下文句柄 + * @param tool 工具的运动学参数 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_tool_kinematics_param( + RSHD rshd, ToolKinematicsParam *tool); + +// robot control +/** + * @brief 启动机械臂 + * @param rshd 械臂控制上下文句柄 + * @param tool_dynamics 动力学参数 + * @param colli_class 碰撞等级 + * @param read_pos 是否允许读取位置 + * @param static_colli_detect 是否允许侦测静态碰撞 + * @param board_maxacc 接口板允许的最大加速度 + * @param state 机械臂启动状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_robot_startup( + RSHD rshd, const ToolDynamicsParam *tool_dynamics, uint8 colli_class, + bool read_pos, bool static_colli_detect, int board_maxacc, + ROBOT_SERVICE_STATE *state); + +/** + * @brief 关闭机械臂 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_robot_shutdown(RSHD rshd); + +/** + * @brief 停止机械臂运动加速度设置 + * @param rshd 械臂控制上下文句柄 + * @param jerkRatio [0.1,20] + * @param double acc 6维数组, + * 1,末端型运动,只使用acc[0] 最大加速度 + * 2,轴动,使用acc[0,5] 关节最大加速度 + * @param size 6 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_reduce_para(RSHD rshd, + const double jerkRatio, + const double acc[], + int size); + +/** + * @brief 停止机械臂运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_stop(RSHD rshd); + +/** + * @brief 停止机械臂运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_fast_stop(RSHD rshd); + +/** + * @brief 暂停机械臂运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_pause(RSHD rshd); + +/** + * @brief 暂停后回复机械臂运动 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_continue(RSHD rshd); + +/** + * @brief 机械臂碰撞后恢复 + * @param rshd 械臂控制上下文句柄 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_collision_recover(RSHD rshd); + +/** + * @brief 获取机械臂当前状态 + * @param rshd 械臂控制上下文句柄 + * @param state 机械臂当前状态 + * 机械臂当前停止:RobotStatus.Stopped + * 机械臂当前运行:RobotStatus.Running + * 机械臂当前暂停:RobotStatus.Paused + * 机械臂当前恢复:RobotStatus.Resumed + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_state(RSHD rshd, + RobotState *state); + +/** + * @brief 设置机械臂运动进入缩减模式 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT bool rs_enter_reduce_mode(RSHD rshd); + +/** + * @brief 设置机械臂运动退出缩减模式 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT bool rs_exit_reduce_mode(RSHD rshd); + +/** + * @brief 通知机械臂工程启动,服务器同时开始检测安全IO + * @param rshd + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT bool rs_project_startup(RSHD rshd); + +/** + * @brief 通知机械臂工程停止,服务器停止检测安全IO + * @param rshd + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT bool rs_project_stop(RSHD rshd); + +// tool interface + +// robot parameters +/** + * @brief 设置机械臂服务器工作模式 + * @param rshd 械臂控制上下文句柄 + * @param mode 机械臂服务器工作模式 + * 机械臂仿真模式:RobotRunningMode.RobotModeSimulator + * 机械臂真实模式:RobotRunningMode.RobotModeReal + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_work_mode(RSHD rshd, + RobotWorkMode mode); + +/** + * @brief 获取机械臂服务器当前工作模式 + * @param rshd 械臂控制上下文句柄 + * @param mode 机械臂服务器工作模式 + * 机械臂仿真模式:RobotRunningMode.RobotModeSimulator + * 机械臂真实模式:RobotRunningMode.RobotModeReal + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_work_mode(RSHD rshd, + RobotWorkMode *mode); + +/** + * @brief 获取重力分量 + * @param rshd 械臂控制上下文句柄 + * @param gravity 重力分量 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_gravity_component( + RSHD rshd, RobotGravityComponent *gravity); + +/** + * @brief 设置机械臂碰撞等级 + * @param rshd 械臂控制上下文句柄 + * @param grade 碰撞等级 范围(0~10) + * @param mode 碰撞模式 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_collision_class(RSHD rshd, int grade); +SERVICE_INTERFACE_ABI_EXPORT int rs_set_collision_class2(RSHD rshd, int grade, + CollisionMode mode); + +/** + * @brief 获取当前碰撞等级 + * @param rshd 机械臂控制上下文句柄 + * @param grade 碰撞等级 范围(0~10) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_collision_class(RSHD rshd, int *grade); + +/** + * @brief 获取设备信息 + * @param rshd 械臂控制上下文句柄 + * @param dev 设备信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_device_info(RSHD rshd, + RobotDevInfo *dev); + +/** + * @brief 获取当前是否已经链接真实机械臂 + * @param rshd 械臂控制上下文句柄 + * @param exist true:存在 false:不存在 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_is_have_real_robot(RSHD rshd, bool *exist); + +/** + * @brief 当前机械臂是否运行在联机模式 + * @param rshd 械臂控制上下文句柄 + * @param isonline true:在 false:不在 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_is_online_mode(RSHD rshd, bool *isonline); + +/** + * @brief 当前机械臂是否运行在联机主模式 + * @param rshd 械臂控制上下文句柄 + * @param ismaster true:主模式 false:从模式 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_is_online_master_mode(RSHD rshd, + bool *ismaster); + +/** + * @brief 获取机械臂当前状态信息 + * @param rshd 械臂控制上下文句柄 + * @param jointStatus 返回六个关节状态,包括:电流,电压,温度 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_joint_status( + RSHD rshd, JointStatus jointStatus[ARM_DOF]); + +/** + * @brief 获取机械臂当前位置信息 + * @param rshd 械臂控制上下文句柄 + * @param waypoint 关节位置信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_current_waypoint(RSHD rshd, + wayPoint_S *waypoint); + +/** + * @brief 获取机械臂诊断信息 + * @param rshd 械臂控制上下文句柄 + * @param info 机械臂诊断信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_diagnosis_info( + RSHD rshd, RobotDiagnosis *robotDiagnosisInfo); + +/** + * @brief 根据错误号获取错误信息 + * @param rshd 机械臂控制上下文句柄 + * @param err_code 错误号 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ +SERVICE_INTERFACE_ABI_EXPORT const char *rs_get_error_information_by_errcode( + RSHD rshd, RobotErrorCode err_code); + +/** + * @brief 获取socket链接状态 + * @param rshd 械臂控制上下文句柄 + * @param connected true:已连接 false:未连接 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_socket_status(RSHD rshd, + bool *connected); + +/** + * @brief 获取机械表末端速度 + * @param rshd 械臂控制上下文句柄 + * @param endspeed 末端速度 单位(m/s) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_end_speed(RSHD rshd, + float *endspeed); + +// IO interaface +/** + * @brief 获取接口板指定IO集合的配置信息 + * @param rshd 械臂控制上下文句柄 + * @param type IO类型 + * @param config IO配置信息集合 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_board_io_config( + RSHD rshd, RobotIoType type, std::vector *config); + +/** + * @brief 根据接口板IO类型和地址设置IO状态 + * @param rshd 械臂控制上下文句柄 + * @param type IO类型 + * @param name IO名称 + * @param val IO状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_board_io_status_by_name( + RSHD rshd, RobotIoType type, const char *name, double val); + +/** + * @brief 根据接口板IO类型和地址设置IO状态 + * @param rshd 械臂控制上下文句柄 + * @param type IO类型 + * @param addr IO状态 + * @param val IO状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_board_io_status_by_addr( + RSHD rshd, RobotIoType type, int addr, double val); + +/** + * @brief 根据接口板IO类型和地址获取IO状态 + * @param rshd 械臂控制上下文句柄 + * @param type IO类型 + * @param name IO名称 + * @param val IO状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_board_io_status_by_name( + RSHD rshd, RobotIoType type, const char *name, double *val); + +/** + * @brief 根据接口板IO类型和地址获取IO状态 + * @param rshd 械臂控制上下文句柄 + * @param type IO类型 + * @param addr IO地址 + * @param val + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_board_io_status_by_addr( + RSHD rshd, RobotIoType type, int addr, double *val); + +// tool device interface +/** + * @brief 设置工具端电源电压类型 + * @param rshd 械臂控制上下文句柄 + * @param type ower_type:电源类型 + * 0:.OUT_0V + * 1:.OUT_12V + * 2:.OUT_24V + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_power_type(RSHD rshd, + ToolPowerType type); + +/** + * @brief 获取工具端电源电压类型 + * @param rshd 械臂控制上下文句柄 + * @param type ower_type:电源类型 + * 0:.OUT_0V + * 1:.OUT_12V + * 2:.OUT_24V + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_tool_power_type(RSHD rshd, + ToolPowerType *type); + +/** + * @brief 设置工具端数字量IO的类型 + * @param rshd 械臂控制上下文句柄 + * @param addr 地址 + * @param type 类型 0:输入 1:输出 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_io_type(RSHD rshd, + ToolDigitalIOAddr addr, + ToolIOType type); + +/** + * @brief 获取工具端电压数值 + * @param rshd 械臂控制上下文句柄 + * @param voltage 电压数值,单位(伏特) + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_tool_power_voltage(RSHD rshd, + double *voltage); + +/** + * @brief 获取工具端IO状态 + * @param rshd 械臂控制上下文句柄 + * @param name IO名称 + * @param val 工具端IO状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_tool_io_status(RSHD rshd, + const char *name, + double *val); + +/** + * @brief 设置工具端IO状态 + * @param rshd 械臂控制上下文句柄 + * @param name IO名称 + * @param status 工具端IO状态 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_tool_do_status(RSHD rshd, + const char *name, + IO_STATUS status); + +/** + * @brief 暂停工程 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_client_status_pause(RSHD rshd); + +/** + * @brief 继续工程 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_client_status_continue(RSHD rshd); + +/** + * @brief 工程停止 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_client_status_stop(RSHD rshd); + +/** + * @brief 工程启动 + * @param rshd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_client_status_run(RSHD rshd); + +/** + * @brief 通知接口板上位机停止状态 + * @param data + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_orpe_stop(RSHD rshd, uint8 data); + +/** + * @brief rs_robot_control + * @param rshd + * @param cmd + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_robot_control(RSHD rshd, + RobotControlCommand cmd); + +/** + * @brief 设置机械臂辨识参数 + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_recognition_param( + RSHD rshd, const RobotRecongnitionParam *param); + +/** + * @brief 获取机械臂辨识参数 + * @param type + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_recognition_param( + RSHD rshd, int type, RobotRecongnitionParam *param); + +/** + * @brief 获取机械臂安全配置 + * @param rshd + * @param safetyConfig + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_safety_config( + RSHD rshd, RobotSafetyConfig *param); + +/** + * @brief 获取机械臂安全配置 + * @param rshd + * @param safetyConfig + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_safety_config( + RSHD rshd, RobotSafetyConfig *param); + +/** + * @brief 获取机械臂安全状态 + * @param rshd + * @param safetyStatus + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_safety_status( + RSHD rshd, OrpeSafetyStatus *param); + +//#ifndef FOR_FORCE_LIBRARY +/** + * @brief 设置底座参数信息 + * @param rshd + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_base_parameters( + RSHD rshd, const RobotBaseParameters *param); + +/** + * @brief 获取底座参数信息 + * @param rshd + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_base_parameters( + RSHD rshd, RobotBaseParameters *param); + +/** + * @brief 设置关节参数信息 + * @param rshd + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_robot_joints_parameter( + RSHD rshd, const RobotJointsParameter *param); + +/** + * @brief 获取关节参数信息 + * @param rshd + * @param param + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_joints_parameter( + RSHD rshd, RobotJointsParameter *param); + +/** + * @brief 刷新关节参数信息 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_robot_refresh_robot_arm_paramter( + RSHD rshd); + +//#else + +/** + * @brief 设置调速模式配置 + * @param rshd + * @param config + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_regulate_speed_param( + RSHD rshd, const RegulateSpeedModeParamConfig_t *config); + +/** + * @brief 获取调速模式配置 + * @param rshd + * @param config + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_regulate_speed_param( + RSHD rshd, RegulateSpeedModeParamConfig_t *config); + +/** + * @brief 使能/失能调速模式 + * @param rshd + * @param enbaleFlag + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enable_regulate_speed_mode(RSHD rshd, + bool enbaleFlag); + +/** + * @brief 获取"主动探寻力"参数 + * @param rshd + * @param forceLimit + * @param distLimit + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_force_control_mode_explore_force_param( + RSHD rshd, double *forceLimit, double *distLimit); + +/** + * @brief 设置"主动探寻力"参数 + * @param rshd + * @param forceLimit + * @param distLimit + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_set_force_control_mode_explore_force_param( + RSHD rshd, double forceLimit, double distLimit); + +/** + * @brief 使能/失能力控模式 + * @param rshd + * @param enbaleFlag + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enable_force_control_mode(RSHD rshd, + bool enbaleFlag); + +/** + * @brief 获取实时力数据 + * @param rshd + * @param 传出参数 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_get_realtime_force_data( + RSHD rshd, double forceData[6]); + +/** + * @brief 将一个轨迹文件(位置+姿态)转换为路点容器,进行平滑处理和限制条件检查 + * @param rshd 械臂控制上下文句柄 + * @param filePath 轨迹文件路径 输入参数 + * @param poseType 位姿类型 + * @param referPointJointAngle 逆解参考点的关节角 输入参数 + * @param toolInEndDesc 末端工具的信息 输入参数 + * @param wayPointVector 路点集合 输出参数 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_parse_file_as_roadpoint_collection( + RSHD rshd, const char *filePath, + aubo_robot_namespace::POSITION_ORIENTATION_TYPE poseType, + const double *referPointJointAngle, + const aubo_robot_namespace::ToolInEndDesc *toolInEndDesc, + aubo_robot_namespace::wayPoint_S wayPoint[], int waypointSize, + int *sizeReturn); + +/** + * @brief 解析路点文件并缓存结果 + * @param rshd 械臂控制上下文句柄 + * @param filePath 轨迹文件路径 输入参数 + * @param referPointJointAngle 逆解参考点的关节角 输入参数 + * @param toolInEndDesc 末端工具的信息 输入参数 + * @param firstWayPoint 轨迹的第一个点 输出参数 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_parse_roadpoint_file_and_cache_result( + RSHD rshd, const char *filePath, const double *referPointJointAngle, + aubo_robot_namespace::ToolInEndDesc *toolInEndDesc, + aubo_robot_namespace::wayPoint_S *firstWayPoint); +/** + * @brief 运行缓存好的轨迹 + * 即:运行rs_parse_roadpoint_file_and_cache_result的结果 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_move_cached_track(RSHD rshd); + +//#endif + +// callback +/** + * @brief 注册用于获取实时路点的回调函数 + * @param rshd 械臂控制上下文句柄 + * @param ptr 获取实时路点信息的函数指针 + * @param arg + * 这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_realtime_roadpoint( + RSHD rshd, const RealTimeRoadPointCallback ptr, void *arg); + +/** + * @brief 注册用于获取关节状态的回调函数 + * @param rshd 械臂控制上下文句柄 + * @param ptr 获取实时关节状态信息的函数指针 + * @param arg + * 这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_realtime_joint_status( + RSHD rshd, const RealTimeJointStatusCallback ptr, void *arg); + +/** + * @brief 注册用于获取实时末端速度的回调函数 + * @param rshd 械臂控制上下文句柄 + * @param ptr 获取实时末端速度的函数指针 + * @param arg + * 个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_realtime_end_speed( + RSHD rshd, const RealTimeEndSpeedCallback ptr, void *arg); + +/** + * @brief 注册用于获取机械臂事件信息的回调函数 + * @param rshd 械臂控制上下文句柄 + * @param ptr 获取机械臂事件信息的函数指针 + * @param arg + * 个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_robot_event( + RSHD rshd, const RobotEventCallback ptr, void *arg); + +/** + * @brief 注册用于获取函数的日志信息的回调函数 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_robot_loginfo( + RSHD rshd, const RobotLogPrintCallback ptr, void *arg); + +/** + * @brief 注册用于获取MOVEP运动进度信息的回调函数 + * @return + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_setcallback_movep_step_num( + RSHD rshd, const RealTimeMovepStepNumNotifyCallback ptr, void *arg); + +// enable push information +/** + * @brief 设置是否允许实时路点信息推送 + * @param rshd 械臂控制上下文句柄 + * @param enable true表示允许 false表示不允许 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enable_push_realtime_roadpoint(RSHD rshd, + bool enable); + +/** + * @brief 设置是否允许实时关节状态推送 + * @param rshd 械臂控制上下文句柄 + * @param enable true表示允许 false表示不允许 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enable_push_realtime_joint_status( + RSHD rshd, bool enable); + +/** + * @brief 设置是否允许实时末端速度推送 + * @param rshd 械臂控制上下文句柄 + * @param enable true表示允许 false表示不允许 + * @return RS_SUCC 成功 其他失败 + */ +SERVICE_INTERFACE_ABI_EXPORT int rs_enable_push_realtime_end_speed(RSHD rshd, + bool enable); + +// other +SERVICE_INTERFACE_ABI_EXPORT const char *rs_str_error(RSHD rshd, int err); +SERVICE_INTERFACE_ABI_EXPORT void print_plan(const CoordCalibrate *user_coord); +SERVICE_INTERFACE_ABI_EXPORT void print_move_relative_offset( + const MoveRelative *relative); +SERVICE_INTERFACE_ABI_EXPORT void print_waypoint(wayPoint_S *waypoint); +SERVICE_INTERFACE_ABI_EXPORT void print_tool_dynamics( + ToolDynamicsParam *tool_dynamics); + +#ifdef __cplusplus +} +#endif + +#endif // RSDEF_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rserrors.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rserrors.h new file mode 100644 index 00000000..d7b1c7ab --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rserrors.h @@ -0,0 +1,12 @@ +#ifndef RSERRORS_H +#define RSERRORS_H + +/*robot service errors*/ +#define RSERR_BASE 1000 +#define RSERR_SUCC 0 +#define RSERR_NOT_ENOUGH_RSHD_BUFFER RSERR_BASE + 1 +#define RSERR_RSHD_NO_FOUND RSERR_BASE + 2 +#define RSERR_PARAMETER_ERROR RSERR_BASE + 3 +#define RSERR_CREATE_THREAD_ERROR RSERR_BASE + 4 + +#endif // RSERRORS_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rspidcfg.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rspidcfg.h new file mode 100644 index 00000000..81bd8bd9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rspidcfg.h @@ -0,0 +1,125 @@ +#ifndef RSPIDCFG_H +#define RSPIDCFG_H +#include "rstype.h" +#include "AuboRobotMetaType.h" + +using namespace aubo_robot_namespace; + +typedef struct +{ + JointCommonData data[ARM_DOF]; +} RobotJointCommonData; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief 获取机械臂配置表 + * @param rshd + * @param data 六个关节配置数据 + * @return + */ +int rs_get_joint_common_data(RSHD rshd, RobotJointCommonData &data); + +/** + * @brief 设置机械臂电流环参数P + * @param joint_id 机械臂ID(1~6) + * @param P 电流环参数P + * @return + */ +int rs_set_current_ip(RSHD rshd, int joint_id, uint16 P); + +/** + * @brief 设置机械臂电流环参数I + * @param joint_id 机械臂ID(1~6) + * @param I 电流环参数I + * @return + */ +int rs_set_current_ii(RSHD rshd, int joint_id, uint16 I); + +/** + * @brief 设置机械臂电流环参数D + * @param joint_id 机械臂ID(1~6) + * @param D 电流环参数D + * @return + */ +int rs_set_current_id(RSHD rshd, int joint_id, uint16 D); + +/** + * @brief 设置机械臂速度环参数P + * @param joint_id 机械臂ID(1~6) + * @param P 速度环参数P + * @return + */ +int rs_set_speed_p(RSHD rshd, int joint_id, uint16 P); + +/** + * @brief 设置机械臂速度环参数I + * @param joint_id 机械臂ID(1~6) + * @param I 速度环参数I + * @return + */ +int rs_set_speed_i(RSHD rshd, int joint_id, uint16 I); + +/** + * @brief 设置机械臂速度环参数D + * @param joint_id 机械臂ID(1~6) + * @param D 速度环参数D + * @return + */ +int rs_set_speed_d(RSHD rshd, int joint_id, uint16 D); + +/** + * @brief 设置机械臂速度环参数DS + * @param joint_id 机械臂ID(1~6) + * @param DS 速度环参数DS + * @return + */ +int rs_set_speed_ds(RSHD rshd, int joint_id, uint16 DS); + +/** + * @brief 设置机械臂位置环参数P + * @param joint_id 机械臂ID(1~6) + * @param P 位置环参数P + * @return + */ +int rs_set_pos_p(RSHD rshd, int joint_id, uint16 P); + +/** + * @brief 设置机械臂位置环参数I + * @param joint_id 机械臂ID(1~6) + * @param I 位置环参数I + * @return + */ +int rs_set_pos_i(RSHD rshd, int joint_id, uint16 I); + +/** + * @brief 设置机械臂位置环参数D + * @param joint_id 机械臂ID(1~6) + * @param D 位置环参数D + * @return + */ +int rs_set_pos_d(RSHD rshd, int joint_id, uint16 D); + +/** + * @brief 设置机械臂位置环参数DS + * @param joint_id 机械臂ID(1~6) + * @param DS 位置环参数DS + * @return + */ +int rs_set_pos_ds(RSHD rshd, int joint_id, uint16 DS); + +/** + * @brief 保存机械臂PID参数到关节flash + * @param rshd + * @param joint_id + * @return + */ +int rs_joint_save_data_flash(RSHD rshd, int joint_id); + +#ifdef __cplusplus +} +#endif + +#endif // RSPIDCFG_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rstype.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rstype.h new file mode 100644 index 00000000..fa1a2488 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/rstype.h @@ -0,0 +1,29 @@ +#ifndef RSTYPE_H +#define RSTYPE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +/* General types */ +typedef uint8_t boolean; +typedef int8_t int8; +typedef int16_t int16; +typedef int32_t int32; +typedef uint8_t uint8; +typedef uint16_t uint16; +typedef uint32_t uint32; +typedef int64_t int64; +typedef uint64_t uint64; +typedef float float32; +typedef double float64; + +typedef uint16_t RSHD; // robot servcie handle + +#ifdef __cplusplus +} +#endif + +#endif // RSTYPE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/serviceinterface.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/serviceinterface.h new file mode 100644 index 00000000..31355f2b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/serviceinterface.h @@ -0,0 +1,1943 @@ +/** +CopyRight © AUBO Robotics Technology Co.Ltd. All Rights Reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of mosquitto nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +*/ + +#ifndef SERVICEINTERFACE_H +#define SERVICEINTERFACE_H + +#include +#include + +#include "AuboRobotMetaType.h" //接口需要用到的数据类型 +#include + +namespace arcs { +namespace aubo_sdk { +class RpcClient; +typedef std::shared_ptr RpcClientPtr; + +class RtdeClient; +typedef std::shared_ptr RtdeClientPtr; +} // namespace aubo_sdk +} // namespace arcs + +// 对外接口类 : 为用户提供开发接口 +class SERVICE_INTERFACE_ABI_EXPORT ServiceInterface +{ +public: + ServiceInterface(); + ~ServiceInterface(); + + /** 数据类型初始化*/ + static void initPosDataType(aubo_robot_namespace::Pos &postion); + static void initOriDataType(aubo_robot_namespace::Ori &ori); + static void initMoveRelativeDataType( + aubo_robot_namespace::MoveRelative &moveRelative); + static void initWayPointDataType( + aubo_robot_namespace::wayPoint_S &wayPoint); + static void initToolInEndDescDataType( + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc); + static void initCoordCalibrateByJointAngleAndToolDataType( + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool &coord); + static void initToolInertiaDataType( + aubo_robot_namespace::ToolInertia &toolInertia); + static void initToolDynamicsParamDataType( + aubo_robot_namespace::ToolDynamicsParam &toolDynamicsParam); + + /********************************************************************************************************************************************** + ***********                                 机械臂系统接口                                 ********** + **********************************************************************************************************************************************/ + /** + * @brief 登录  与机械臂服务器建立网络连接; + * 该接口的成功是调用其他接口的前提。 + * + * @param host 机械臂服务器的IP地址 + * @param port 机械臂服务器的端口号 + * @param userName 用户名 默认为Aubo + * @param possword 密码   默认为123456 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceLogin(const char *host, int port, const char *userName, + const char *password); + + int robotServiceLogin(const char *host, int port, const char *userName, + const char *password, + aubo_robot_namespace::RobotType &robotType, + aubo_robot_namespace::RobotDhPara &robotDhPara); + + /** + * @brief robotServiceGetConnectStatus 获取当前的连接状态 + * @param connectStatus           输出参数 + */ + void robotServiceGetConnectStatus(bool &connectStatus); + + /** + * @brief 退出登录 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceLogout(); + + // + int robotServiceRobotHandShake(bool isBlock); + + aubo_robot_namespace::RobotType getRobotType(); + + /********************************************************************************************************************************************** + *****                                 状态推送                                         ******* + **********************************************************************************************************************************************/ + + /** + * @brief robotServiceSetRealTimeJointStatusPush + * 设置是否允许实时关节状态推送 + * @param enable true表示允许   false表示不允许 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRealTimeJointStatusPush(bool enable); + + /** + * @brief robotServiceRegisterRealTimeJointStatusCallback + * 注册用于获取关节状态的回调函数 + * 注册回调函数后,服务器实时推送当前的关节状态信息. + * @param ptr + * 获取实时关节状态信息的函数指针,当ptr==NULL时,相当于取消回调函数的注册,取消该推送信息也可以通过该接口robotServiceSetRealTimeJointStatusPush进行。 + * @param arg + * 这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回。 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRegisterRealTimeJointStatusCallback( + RealTimeJointStatusCallback ptr, void *arg); + + /** + * @brief robotServiceSetRealTimeRoadPointPush 设置是否允许实时路点信息推送 + * @param enable  true表示允许   false表示不允许 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRealTimeRoadPointPush(bool enable); + + /** + * @brief robotServiceRegisterRealTimeRoadPointCallback + * 注册用于获取实时路点的回调函数 + * 注册回调函数后,服务器会推送当前的路点信息 当ptr==NULL时,相等于取消回调函数的注册。 + * @param ptr + * 获取实时路点信息的函数指针,当ptr==NULL时,相当于取消回调函数的注册,取消该推送信息也可以通过该接口robotServiceSetRealTimeRoadPointPush进行。 + * @param + * arg 这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回。 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRegisterRealTimeRoadPointCallback( + const RealTimeRoadPointCallback ptr, void *arg); + + /** + * @brief robotServiceSetRealTimeEndSpeedPush 设置是否允许实时末端速度推送 + * @param enable true表示允许   false表示不允许 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRealTimeEndSpeedPush(bool enable); + + /** + * @brief robotServiceRegisterRealTimeEndSpeedCallback + * 注册用于获取实时末端速度的回调函数 + * @param ptr + * 获取实时末端速度的函数指针 当ptr==NULL时,相等于取消回调函数的注册,取消该推送信息也可以通过该接口robotServiceSetRealTimeEndSpeedPush进行。 + * @param + * arg 这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回。 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRegisterRealTimeEndSpeedCallback( + const RealTimeEndSpeedCallback ptr, void *arg); + + /** + * @brief robotServiceRegisterRobotEventInfoCallback + * 注册用于获取机械臂事件信息的回调函数 + * 注:关于事件信息信息的推送没有提供是否允许推送的接口,因为机械臂的很多重要通知都是通过事件推送实现的,所以事件信息是系统默认推送的,不允许取消的。 + * @param ptr + * 获取机械臂事件信息的函数指针 当ptr==NULL时,相等于取消回调函数的注册。 + * @param + * arg  这个参数系统不做任何处理,只是进行了缓存,当回调函数触发时该参数会通过回调函数的参数传回。 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRegisterRobotEventInfoCallback(RobotEventCallback ptr, + void *arg); + + //注册movep进度通知的回调函数 + int robotServiceRegisterMovepStepNumNotifyCallback( + RealTimeMovepStepNumNotifyCallback ptr, void *arg); + + //注册日志输出回调函数 + int robotServiceRegisterLogPrintCallback(RobotLogPrintCallback ptr, + void *arg); + + /** + * @brief robotServiceInitGlobalMoveProfile 初始化全局的运动属性 + * 调用此函数时机械臂不运动,该函数初始化各个运动属性为默认值。 + *     初始化后各属性的默认值为: + * 0:关节型运动的最大速度和加速度属性: 关节最大速度默认为25度米每秒;关节最大加速度默认为25度米每秒方 + * 1:末端型运动的最大速度和加速度属性: + * 末端最大速度默认为3米每秒;末端最大加速度3米每秒方 + * 2:路点信息缓存属性:  默认路点缓存为空 + * 3:交融半径属性: 默认为0.02米 + * 4:圆的圈数属性: 默认为0 + * 5:偏移量属性属性: 默认没有偏移 + * 6:工具参数属性属性: 无工具即工具的位置为000; + * 7:示教坐标系属性:  示教坐标系为基座标系 + * + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceInitGlobalMoveProfile(); + + /** + * 设置和获取 关节型 运动的最大速度和加速度 + * 关节型运动包含: + *     关节运动; + *     示教运动中的关节示教(JOINT1,JOINT2,JOINT3,JOINT4,JOINT5,JOINT6) + *     轨迹运动下的(JIONT_CUBICSPLINE,JOINT_UBSPLINEINTP) + * + * 注意:用户在设置速度和加速度时,需要根据运动的类型设置, + *    关节型运动设置关节型运动的最大速度和加速度,关节型运动的最大速度是180度每秒,最大加速度为180度每秒方; + *    末端型运动会设置末端型运动的最大速度和加速度,末端型运动的最大速度为2米每秒,最大加速度为2米每秒方; + * + **/ + int robotServiceSetGlobalMoveJointMaxAcc( + const aubo_robot_namespace::JointVelcAccParam &moveMaxAcc); + + int robotServiceSetGlobalMoveJointMaxVelc( + const aubo_robot_namespace::JointVelcAccParam &moveMaxVelc); + + void robotServiceGetGlobalMoveJointMaxAcc( + aubo_robot_namespace::JointVelcAccParam &moveMaxAcc); + + void robotServiceGetGlobalMoveJointMaxVelc( + aubo_robot_namespace::JointVelcAccParam &moveMaxVelc); + + /** + * 设置和获取 末端型 运动的最大速度和加速度 + * 末端型包含: 直线运动(MODEL); + *     示教运动中的位置示教和姿态示教(MOV_X,MOV_Y,MOV_Z,ROT_X,ROT_Y,ROT_Z); + *     轨迹运动下的(ARC_CIR, CARTESIAN_MOVEP, CARTESIAN_CUBICSPLINE, CARTESIAN_UBSPLINEINTP) + * + * 注意:用户在设置速度和加速度时,需要根据运动的类型设置, + * 关节型运动设置关节型运动的最大速度和加速度,关节型运动的最大速度是180度每秒,最大加速度为180度每秒方; + *    末端型运动会设置末端型运动的最大速度和加速度,末端型运动的最大速度为2米每秒,最大加速度为2米每秒方; + * + **/ + int robotServiceSetGlobalMoveEndMaxLineAcc(double moveMaxAcc); + + int robotServiceSetGlobalMoveEndMaxLineVelc(double moveMaxVelc); + + void robotServiceGetGlobalMoveEndMaxLineAcc(double &moveMaxAcc); + + void robotServiceGetGlobalMoveEndMaxLineVelc(double &moveMaxVelc); + + int robotServiceSetGlobalMoveEndMaxAngleAcc(double moveMaxAcc); + + int robotServiceSetGlobalMoveEndMaxAngleVelc(double moveMaxVelc); + + void robotServiceGetGlobalMoveEndMaxAngleAcc(double &moveMaxAcc); + + void robotServiceGetGlobalMoveEndMaxAngleVelc(double &moveMaxVelc); + + /** + * 设置加加速度 + */ + int robotServiceSetJerkAccRatio(double acc); + + void robotServiceGetJerkAccRatio(double &acc); + + int robotServiceSetAngleJerkAccRatio(double acc); + + void robotServiceGetAngleJerkAccRatio(double &acc); + + /** 运动属性中的路点设置与获取 多用于轨迹运动**/ + void robotServiceClearGlobalWayPointVector(); + + /** + * @brief robotServiceAddGlobalWayPoint + * 添加路点,一般用于robotServiceTrackMove中 + * @param wayPoint  法兰盘中心基于基座标系的路点信息 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceAddGlobalWayPoint( + const aubo_robot_namespace::wayPoint_S &wayPoint); + + /** + * @brief robotServiceAddGlobalWayPoint + *添加路点,一般用于robotServiceTrackMove中 + * @param jointAngle    关节信息 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + **/ + + int robotServiceAddGlobalWayPoint( + const double jointAngle[aubo_robot_namespace::ARM_DOF]); + + void robotServiceGetGlobalWayPointVector( + std::vector &wayPointVector); + + /** 运动属性之交融半径的设置与获取 交融半径的范围:0.001m~1m + * 注意:交融半径必须大于或等于 0.001 + **/ + float robotServiceGetGlobalBlendRadius(); + + int robotServiceSetGlobalBlendRadius(float value); + + double robotServiceGetTrackPlaybackCycle(); + + int robotServiceSetTrackPlaybackCycle(double second); + + /** 运动属性之圆轨迹时圆的圈数 + * 当轨迹类型为ARC_CIR时有效,当圆的圈数属性(CircularLoopTimes)为0时,表示圆弧轨迹; + * 当圆的圈数属性(CircularLoopTimes)大于0时,表示圆轨迹。 + **/ + int robotServiceGetGlobalCircularLoopTimes(); + + void robotServiceSetGlobalCircularLoopTimes(int times); + + /** + * @brief robotServiceSetMoveRelativeParam 设置运动属性中的偏移属性 + * @param relativeMove 基于基座标系的偏移 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetMoveRelativeParam( + const aubo_robot_namespace::MoveRelative + &relativeMoveOnBase); //基于基座标系 + + /** + * @brief robotServiceSetMoveRelativeParam 设置运动属性中的偏移属性 + * @param relativeMoveOnUserCoord 基于用户坐标系(下面参数userCoord)下的偏移 + * @param userCoord 用户坐标系 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetMoveRelativeParam( + const aubo_robot_namespace::MoveRelative &relativeMoveOnUserCoord, + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord); //基于自定义坐标系 + + /** 跟随模式之提前到位 当前仅适用于关节运动**/ + int robotServiceSetNoArrivalAhead(); + + int robotServiceSetArrivalAheadDistanceMode(double distance /*米*/); + + int robotServiceSetArrivalAheadTimeMode(double second /*秒*/); + + int robotServiceSetArrivalAheadBlendDistanceMode(double distance /*米*/); + + /** + * @brief robotServiceSetTeachCoordinateSystem 设置示教运动的坐标系 + * @param coordSystem   用户坐标系 + * 通过该参数确定一个坐标系,具体使用参考类型定义处的使用说明 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetTeachCoordinateSystem( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &coordSystem); + int waitarrive(); + /** + * @brief robotServiceJointMove 运动接口之关节运动 + * 属于关节型运动,调用该函数机械臂开始运动 + * @param wayPoint  目标路点信息 + * @param IsBolck IsBolck==true + * 代表阻塞,机械臂运动直到到达目标位置或者出现故障后返回。 IsBolck==false + * 代表非阻塞,立即返回,运动指令发送成功就返回,函数返回后机械臂开始运动。 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceJointMove(aubo_robot_namespace::wayPoint_S &wayPoint, + bool IsBolck); + + int robotServiceJointMove(double jointAngle[aubo_robot_namespace::ARM_DOF], + bool IsBolck); + + int robotServiceJointMove(aubo_robot_namespace::MoveProfile_t &moveProfile, + double jointAngle[aubo_robot_namespace::ARM_DOF], + bool IsBolck); + + //基于跟随模式的轴动接口 + int robotServiceFollowModeJointMove( + double jointAngle[aubo_robot_namespace::ARM_DOF]); + + /** + * @brief robotServiceLineMove 运动接口之直线运动 + * 属于末端型运动,调用该函数机械臂开始运动 + * @param wayPoint   目标路点信息 + * @param IsBolck 参考robotServiceJointMove函数的解释 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceLineMove(aubo_robot_namespace::wayPoint_S &wayPoint, + bool IsBolck); + + int robotServiceLineMove(double jointAngle[aubo_robot_namespace::ARM_DOF], + bool IsBolck); + + int robotServiceLineMove(aubo_robot_namespace::MoveProfile_t &moveProfile, + double jointAngle[aubo_robot_namespace::ARM_DOF], + bool IsBolck); + + /** + * @brief robotServiceRotateMove 运动接口之保持当前位置变换姿态做旋转运动 + * @param rotateAxis 转轴[x,y,z] 当绕X转,[1,0,0] + * @param rotateAngle  转角 + * @param IsBolck 是否阻塞 + * @return + */ + int robotServiceRotateMove( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + const double rotateAxisOnUserCoord[3], double rotateAngle, + bool IsBolck); + /** 旋转运动到目标路点 **/ + int robotServiceRotateMoveToWaypoint( + const aubo_robot_namespace::wayPoint_S &targetWayPointOnBaseCoord, + bool IsBolck); + + /** + * @brief robotServiceGetRotateTargetWaypiont + * 根据当前位姿及基坐标系下表示的旋转轴、旋转角,获取目标位姿 + * @param originateWayPointOnBaseCoord 起始路点信息 + * @param rotateAxisOnBaseCoord 基坐标系下表示的旋转轴 + * @param rotateAngle 旋转角 + * @param targetWayPointOnBaseCoord 目标路点信息 (传出参数) + * @return + */ + int robotServiceGetRotateTargetWaypiont( + const aubo_robot_namespace::wayPoint_S &originateWayPointOnBaseCoord, + const double rotateAxisOnBaseCoord[], double rotateAngle, + aubo_robot_namespace::wayPoint_S &targetWayPointOnBaseCoord); + + /** + * @brief robotServiceGetRotateAxisUserToBase + * 将用户坐标系描述的旋转轴变换到基坐标系下描述 + * @param oriOnUserCoord 用户坐标系姿态 + * @param rotateAxisOnUserCoord 用户坐标系下描述的旋转轴 + * @param rotateAxisOnBaseCoord 基坐标系下描述的旋转轴(传出参数) + * @return + */ + int robotServiceGetRotateAxisUserToBase( + const aubo_robot_namespace::Ori &oriOnUserCoord, + const double rotateAxisOnUserCoord[], double rotateAxisOnBaseCoord[]); + + /** + * @brief robotServiceTrackMove 运动接口之轨迹运动 + * + * @param subMoveMode + * 当subMoveMode==ARC_CIR, CARTESIAN_MOVEP, CARTESIAN_CUBICSPLINE, CARTESIAN_UBSPLINEINTP时,该运动属于末端型运动; + * 当subMoveMode==JIONT_CUBICSPLINE,JOINT_UBSPLINEINTP时,该运动属于关节型运动; + * + * 当subMoveMode==ARC_CIR 表示圆或者圆弧    当圆的圈数属性(CircularLoopTimes)为0时,表示圆弧轨迹, + * + * 当圆的圈数属性(CircularLoopTimes)大于0时,表示圆轨迹。 + * + * 当subMoveMode==CARTESIAN_MOVEP + *      表示MOVEP轨迹,需要用户这只交融半径的属性。 + * + * 当subMoveMode==JOINT_UBSPLINEINTP    轨迹复现接口 + * + * @param IsBolck    参考robotServiceJointMove函数的解释 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceTrackMove(aubo_robot_namespace::move_track subMoveMode, + bool IsBolck); + + /** + * @brief robotMoveLineToTargetPosition + * 保持当前位姿通过直线运动的方式运动到目标位置,其中目标位置是通过相对当前位置的偏移给出 + * @param userCoord + * 用户坐标系 该坐标系参数(userCoord),表示下面的偏移量参数(relativeMoveOnUserCoord)是基于该平面的。 + * @param toolInEndDesc 工具参数   当没有使用工具时,将此参数设置为0; + * @param relativeMoveOnUserCoord 基于用户坐标系下的偏移 + * @param + * IsBolck                是否阻塞   参考robotServiceJointMove函数的解释 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotMoveLineToTargetPositionByRelative( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + const aubo_robot_namespace::MoveRelative + &relativeMoveOnUserCoord, //目标位置相对当前位置的偏移 + bool IsBolck); //是否阻塞 + + /** 保持当前位姿通过关节运动的方式运动到目标位置 + * 参数描述参考robotMoveJointToTargetPosition **/ + int robotMoveJointToTargetPositionByRelative( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + const aubo_robot_namespace::MoveRelative + &relativeMoveOnUserCoord, //目标位置相对当前位置的偏移 + bool IsBolck = false); //是否阻塞 + + //不进行运动 + int getJointAngleByTargetPositionKeepCurrentOri( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &coordSystem, + const aubo_robot_namespace::Pos &toolEndPositionOnUserCoord, + const aubo_robot_namespace::ToolInEndDesc + &toolInEndDesc, //相对于用户坐标系的目标位置 + double jointAngle[aubo_robot_namespace::ARM_DOF]); + + int getJointAngleByTargetPositionKeepCurrentOri( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoordSystem, + const aubo_robot_namespace::Pos &position, + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + aubo_robot_namespace::wayPoint_S &targetWayPointOnBaseCoord); + + /** + * @brief robotMoveLineToTargetPosition + * 保持当前位姿通过直线运动的方式运动到目标位置。 + * @param userCoord + * 用户坐标系 该坐标系参数(userCoord),表示下面的目标位置(positionOnUserCoord)是基于该平面的。 + * @param positionOnUserCoord 基于用户平面表示的目标位置 + * @param toolInEndDesc + 工具参数   当没有使用工具时,将此参数设置为0; + * @param + * IsBolck               是否阻塞   参考robotServiceJointMove函数的解释 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotMoveLineToTargetPosition( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + const aubo_robot_namespace::Pos &toolEndPositionOnUserCoord, + const aubo_robot_namespace::ToolInEndDesc + &toolInEndDesc, //相对于用户坐标系的目标位置 + bool IsBolck = false); //是否阻塞 + + /** 保持当前位姿通过关节运动的方式运动到目标位置 + * 参数描述参考robotMoveJointToTargetPosition **/ + int robotMoveJointToTargetPosition( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + const aubo_robot_namespace::Pos &toolEndPositionOnUserCoord, + const aubo_robot_namespace::ToolInEndDesc + &toolInEndDesc, //相对于用户坐标系的目标位置 + bool IsBolck = false); //是否阻塞 + + /** + * @brief 获取机械臂运动轨迹(目前支持轴动及笛卡尔直线运动) + * @param mode 运动类型: 0为轴动,1为笛卡尔直线运动 + * @param resolution 轨迹点的更新步长,单位:m + * @param joint_start 起始点六个关节弧度值 + * @param joint_end 终点六个关节弧度值 + * @param wayPoint_Vector 两点之间轨迹路点的六个关节角度值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetTrackAtResolutionLength( + int mode, double resolution, const double joint_start[], + const double joint_end[], + std::vector &way_point); + + /** + * @brief 开始示教 + * @param mode 示教关节:JOINT1,JOINT2,JOINT3, JOINT4,JOINT5,JOINT6, + * 位置示教:MOV_X,MOV_Y,MOV_Z 姿态示教:ROT_X,ROT_Y,ROT_Z + * @param direction 运动方向 正方向true 反方向false + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceTeachStart(aubo_robot_namespace::teach_mode mode, + bool direction); + + /** @brief 结束示教 **/ + int robotServiceTeachStop(); + + /** + * @brief 机械臂运动控制 停止,暂停,继续 + * 注意: 调用前,需要确保已通过robotServiceSetRobotOrpeStop启动规划器 + * @param cmd 控制命令 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int rootServiceRobotMoveControl( + aubo_robot_namespace::RobotMoveControlCommand cmd); + + /** @brief 机械臂运动快速停止 **/ + int robotMoveFastStop(); + + /** @brief 终止机械臂运动**/ + int robotMoveStop(); + + /** + * @brief 等待非阻塞运动到位或结束 + * @param timeout_ms 等待超时时间(ms) 默认 0-不限时 + */ + int robotWaitMotionFinish(int timeout_ms = 0); + + /** + * @brief robotSetReducePara + * @param jerkRatio [0.1,20] + * @param acc 6维数组, + * 1,末端型运动,只使用acc[0] 最大加速度 + * 2,轴动,使用acc[0,5] 关节最大加速度 + * @param size + * @return 0 成功,其他失败 + */ + int robotSetReducePara(const double jerkRatio, const double acc[], + int size); + + /** 离线轨迹 **/ + /** @brief 将离线路点缓存进类成员变量中 + * @param wayPointVector 离线路点 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceOfflineTrackWaypointAppend( + const std::vector &wayPointVector); + + /** + * @brief robotServiceOfflineTrackWaypointAppend + * 从文件中读取路点并缓存进类成员变量 + * @param fileName + * 路点存储文件名 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceOfflineTrackWaypointAppend(const char *fileName); + + /** + * @brief robotServiceOfflineTrackWaypointClear + * 清空离线路点缓存 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceOfflineTrackWaypointClear(); + + /** + * @brief robotServiceOfflineTrackMoveStartup + * 离线轨迹开始运动 + * @param IsBolck + * 是否阻塞 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceOfflineTrackMoveStartup(bool IsBolck); + + /** + * @brief robotServiceOfflineTrackMoveStop + * 终止离线轨迹运动 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceOfflineTrackMoveStop(); + + /** tcp转can透传 **/ + /** + * @brief robotServiceEnterTcp2CanbusMode + * 进入tcp转can透传模式 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceEnterTcp2CanbusMode(); + + /** + * @brief robotServiceLeaveTcp2CanbusMode + * 退出tcp转can透传模式 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceLeaveTcp2CanbusMode(); + + /** + * @brief robotServiceSetRobotPosData2Canbus + * 机械臂位姿tcp转can透传 + * @param jointAngle + * 机械臂关节角度 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceSetRobotPosData2Canbus( + double jointAngle[aubo_robot_namespace::ARM_DOF]); + + /** + * @brief robotServiceSetRobotPosData2Canbus + * 机械臂位姿tcp转can透传 + * @param wayPointVector + * 路点 + * @return 调用成功返回ErrnoSucc + */ + int robotServiceSetRobotPosData2Canbus( + const std::vector &wayPointVector); + + int startupOfflineExcitTrajService( + const char *trackFile, + aubo_robot_namespace::Robot_Dyn_identify_traj type, int subtype, + bool isBolck); + + int getDynIdentifyResultsService(std::vector ¶mVector); + + int startMoveGroup(aubo_robot_namespace::MoveModeType type = + aubo_robot_namespace::MoveModeType::MOVE_GROUP, + bool conveyer = false, int conveyer_index = 0); + + int setEndOfMoveGroup(); + + int waitMoveGroupFinished(); + + /*******************************************************************工具接口************************************************************* + * 工具接口:正解接口, + * 逆解接口, + * 工具标定接口 + * 坐标系标定接口 + *      基座标系转用户坐标系接口 + *      用户坐标系转基坐标系接口 + * + **************************************************************************************************************************************************/ + /** + * @brief 正解     此函数为正解函数,已知关节角求对应位置的位置和姿态。 + * @param jointAngle 六个关节的关节角    输入参数 单位:弧度(rad) + * @param size 关节角数组长度 规定为6个 + * @param wayPoint 正解结果    输出参数 + *    结果示例: 六个关节角 {'joint': [1.0, 1.0, 1.0, 1.0, 1.0, 1.0], + * 位置 'pos': [-0.06403157614989634, -0.4185973810159096, + * 0.816883228463401], 姿态 'ori': [-0.11863209307193756, + * 0.3820514380931854, 0.0, 0.9164950251579285]} + * + * @return 调用成功返回ErrnoSucc;错误返回错误号 + * 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRobotFk(const double *jointAngle, int size, + aubo_robot_namespace::wayPoint_S &wayPoint); + //内部使用 + int robotServiceRobotFk(const double *jointAngle, int size, + std::vector &pose_out); + + /** + * @brief用于计算第五、六关节后盖位置。 + * @param jointAngle 六个关节的关节角    输入参数 单位:弧度(rad) + * @param size 需要计算的关节 规定为 4(五关节)或5(六关节) + * @param wayPoint 结果    输出参数 + *调用示例,计算第六关节后盖位置,size为5,补偿值为-0.0598 + * ret = robotService.robotServiceRobotFk(wp_start, + *5,true,-0.0598,wayPoint); + * @return 调用成功返回ErrnoSucc;错误返回错误号 + *调用成功返回ErrnoSucc;错误返回错误号 + **/ + int robotServiceRobotFk(const double *jointAngle, int size, bool enable, + double compensate, + aubo_robot_namespace::wayPoint_S &wayPoint); + + /** + * @brief + * 逆解     此函数为机械臂逆解函数,根据位置信息(x,y,z)和对应位置的参考姿态(w,x,y,z)得到对应位置的关节角信息。 + * 机器人运动学方程的逆解,也称机器人的逆运动学问题。 + * 逆运动学问题:对某个机器人,当给出机器人手部(法兰盘中心)在基座标系中所处的位置和姿态时,求出其对应的关节角信息。 + * @param position 目标路点的位置    单位:米 输入参数 + * @param ori 目标路点的参考姿态 + *  输入参数    例如:可以获取当前位置位姿作为此参数,这样相当于保持当前姿态 + * @param wayPoint 计算结果----目标路点信息 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRobotIk(const double *startPointJointAngle, + const aubo_robot_namespace::Pos &position, + const aubo_robot_namespace::Ori &ori, + aubo_robot_namespace::wayPoint_S &wayPoint); + + int robotServiceRobotIk( + const aubo_robot_namespace::Pos &position, + const aubo_robot_namespace::Ori &ori, + std::vector &wayPointVector); + + //工具标定 + int robotServiceToolCalibration( + const std::vector &wayPointPosVector, + char poseCalibMethod, + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc); + + /** + * @brief toolCalibration + *  工具标定  该函数能标定出工具的位置信息和姿态信息 + * @param wayPointPosCalibVector  提供4个或4个以上的点用于位置标定 + * @param wayPointOriCalibVector  提供两个点用于姿态标定 + * @param poseCalibMethod      标定方法 + * @param toolInEndDesc       标定的结果 + * @return + */ + int robotServiceToolCalibration( + const std::vector + &wayPointPosCalibVector, + const std::vector + &wayPointOriCalibVector, + aubo_robot_namespace::ToolKinematicsOriCalibrateMathod poseCalibMethod, + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc); + + /** + * @brief robotServiceCheckUserCoordinate 检查提供的参数是否标定出一个坐标系 + * @param coordSystem    坐标系提供的参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceCheckUserCoordinate( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &coordSystem); + int calculate_Feature_Poses( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, + std::vector &coord_arcs); + /** + * @brief robotServiceUserCoordinateCalibration 用户坐标系校准 + * @param coordSystem 坐标系提供的参数 + * @param bInWPos + * @param bInWOri + * @param wInBPos + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceUserCoordinateCalibration( + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &coordSystem, + double bInWPos[3], double bInWOri[9], double wInBPos[3]); + bool circleFourthPoint(const std::vector &p1, + const std::vector &p2, + const std::vector &p3, + std::vector &p4); + int robotServiceOriMatrixToQuaternion(double eerot[], + aubo_robot_namespace::Ori &result); + + /** + * @brief baseToUserCoordinate 基座标系转用户坐标系 + * + * 概述: + * 将法兰盘中心基于基座标系下的位置和姿态 转成 工具末端基于用户座标系下的位置和姿态。 + * + *  扩展1: + * 法兰盘中心可以看成是一个特殊的工具,即工具的位置为(0,0,0)姿态为(1,0,0,0) + * + * 因此当工具为(0,0,0)时,相当于将法兰盘中心基于基座标系下的位置和姿态 转成 法兰盘中心基于用户座标系下的位置和姿态。 + * + *     扩展2: + * 用户坐标系也可以选择成基座标系,  即:userCoord.coordType = + * BaseCoordinate + * 因此当用户平面为基座标系时,相当于将法兰盘中心基于基座标系下的位置和姿态 转成 工具末端基于基座标系下的位置和姿态, + * 即在基座标系加工具。 + * + * @param flangeCenterPositionOnBase + * 基于基座标系的法兰盘中心位置信息(x,y,z) 单位(m) + * @param flangeCenterOrientationOnBase 基于基座标系的姿态信息(w, x, + * y, z) + * @param userCoord 用户坐标系 + * 通过该参数确定一个坐标系 + * @param toolInEndDesc 工具信息 + * @param toolEndPositionOnUserCoord 基于用户座标系的工具末端位置信息 + * 输出参数 + * @param toolEndOrientationOnUserCoord 基于用户座标系的工具末端姿态信息 + * 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int baseToUserCoordinate( + const aubo_robot_namespace::Pos + &flangeCenterPositionOnBase, //基于基座标系的法兰盘中心位置信息 + const aubo_robot_namespace::Ori + &flangeCenterOrientationOnBase, //基于基座标系的姿态信息 + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, //用户坐标系 + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, //工具参数 + aubo_robot_namespace::Pos + &toolEndPositionOnUserCoord, //基于用户座标系的工具末端位置信息 + aubo_robot_namespace::Ori + &toolEndOrientationOnUserCoord //基于用户座标系的工具末端姿态信息 + ); + + /** + * @brief baseToBaseAdditionalTool + *  基坐标系转基座标得到工具末端点的位置和姿态 + * + * @param flangeCenterPositionOnBase 基于基座标系的法兰盘中心位置信息 + * @param flangeCenterOrientationOnBase 基于基座标系的姿态信息 + * @param toolInEndDesc 工具信息 + * @param toolEndPositionOnUserCoord 基于基座标系的工具末端位置信息 + * 输出参数 + * @param toolEndOrientationOnUserCoord 基于基座标系的工具末端姿态信息 + * 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int baseToBaseAdditionalTool( + const aubo_robot_namespace::Pos + &flangeCenterPositionOnBase, //基于基座标系的法兰盘中心位置信息 + const aubo_robot_namespace::Ori + &flangeCenterOrientationOnBase, //基于基座标系的法兰盘姿态信息 + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, //工具信息 + aubo_robot_namespace::Pos + &toolEndPositionOnBase, //基于基座标系的工具末端位置信息 + aubo_robot_namespace::Ori + &toolEndOrientationOnBase //基于基座标系的工具末端姿态信息); + ); + + /** + * @brief userToBaseCoordinate + * 用户坐标系位置和姿态信息转基座标系下位置和姿态信息 + * + * 概述: + * 将工具末端基于用户座标系下的位置和姿态 转成 法兰盘中心基于基座标系下的位置和姿态。 + * + *  扩展1: + * 法兰盘中心可以看成是一个特殊的工具,即工具的位置为(0,0,0)姿态为(1,0,0,0) + * + * 因此当工具工具的位置为(0,0,0)姿态为(1,0,0,0)时,表示toolEndPositionOnUserCoord和toolEndOrientationOnUserCoord是无工具的。 + * + *     扩展2: + * 用户坐标系也可以选择成基座标系,  即:userCoord.coordType = + * BaseCoordinate 因此当用户平面为基座标系时,相当于 + * 将工具末端基于基座标系下的位置和姿态 转成 法兰盘中心基于基座标系下的位置和姿态, + * 即在基座标系去工具. + * + * 扩展3: + * 利用该函数和逆解组合实现     当用户提供自定义坐标系(特殊为基座标系)下工具末端的位置和姿态 得到 基座标系下法兰盘中心的位置和姿态 + *         然后在逆解,得到目标路点。 + * + * @param toolEndPositionOnUserCoord 基于用户座标系的工具末端位置信息 + * @param toolEndOrientationOnUserCoord 基于用户座标系的工具末端姿态信息 + * @param userCoord 用户坐标系 + * 通过该参数确定一个坐标系 + * @param toolInEndDesc 工具信息 + * @param flangeCenterPositionOnBase 基于基座标系的法兰盘中心位置信息 + * @param flangeCenterOrientationOnBase 基于基座标系的姿态信息 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + * + * 注:这个的坐标系转换不支持末端系  即不支持userCoord==EndCoordinate,如果userCoord==EndCoordinate会报参数错误(ErrCode_ParamError) + */ + int userToBaseCoordinate( + const aubo_robot_namespace::Pos + &toolEndPositionOnUserCoord, //基于用户座标系的工具末端位置信息 + const aubo_robot_namespace::Ori + &toolEndOrientationOnUserCoord, //基于用户座标系的工具末端姿态信息 + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoord, //用户坐标系 + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, //工具信息 + aubo_robot_namespace::Pos + &flangeCenterPositionOnBase, //基于基座标系的法兰盘中心位置信息 + aubo_robot_namespace::Ori + &flangeCenterOrientationOnBase //基于基座标系的法兰盘中心姿态信息 + ); + + /** + * @brief userCoordPointToBasePoint + * 将空间内一个基于用户坐标系的位置信息(x,y,z) 转换成基于 基座标下的位置信息(x,y,z) + * + * @param userCoordPoint 用户坐标系下的位置信息 + * x,y,z(必须的基于下面参数提供的坐标系下的) + * @param userCoordSystem    用户坐标系描述 + * 通过该参数确定一个坐标系 不能为末端坐标系 如果userCoord==EndCoordinate会报参数错误(ErrCode_ParamError) + * @param basePoint        基于基坐标系下的位置信息x,y,z + * @return 调用成功返回ErrnoSucc;错误返回错误号 + * + * 注:这个的坐标系转换不支持末端系  即不支持userCoord==EndCoordinate,如果userCoord==EndCoordinate会报参数错误(ErrCode_ParamError) + */ + int userCoordPointToBasePoint( + const aubo_robot_namespace::Pos &userCoordPoint, + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoordSystem, + aubo_robot_namespace::Pos &basePoint); + + //法兰盘姿态转成工具姿态 + static int endOrientation2ToolOrientation( + aubo_robot_namespace::Ori &tcpOriInEnd, + const aubo_robot_namespace::Ori &endOri, + aubo_robot_namespace::Ori &toolOri); + + //工具姿态转成法兰盘姿态 + static int toolOrientation2EndOrientation( + aubo_robot_namespace::Ori &tcpOriInEnd, + const aubo_robot_namespace::Ori &toolOri, + aubo_robot_namespace::Ori &endOri); + + //根据位置获取目标路点信息 + int getTargetWaypointByPosition( + const aubo_robot_namespace::wayPoint_S &sourceWayPointOnBaseCoord, + const aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + &userCoordSystem, + const aubo_robot_namespace::Pos &toolEndPosition, + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + aubo_robot_namespace::wayPoint_S &targetWayPointOnBaseCoord); + + /** + * @brief quaternionToRPY 四元素转欧拉角 + * @param ori     姿态的四元素表示方法 + * @param rpy     姿态的欧拉角表示方法 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + static int quaternionToRPY(const aubo_robot_namespace::Ori &ori, + aubo_robot_namespace::Rpy &rpy); + + /** + * @brief RPYToQuaternion 欧拉角转四元素 + * @param rpy 姿态的欧拉角表示方法 + * @param ori 姿态的四元素表示方法 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + static int RPYToQuaternion(const aubo_robot_namespace::Rpy &rpy, + aubo_robot_namespace::Ori &ori); + + /** + * @brief 坐标变换(F_c_a = F_c_b * F_b_a) + * @param F_b_a: a 相对于 b 的位姿 + * @param F_c_b: b 相对于 c 的位姿 + * @return a 相对于 c 的位姿 + */ + int poseTrans(const aubo_robot_namespace::PositionAndQuaternion &F_b_a, + const aubo_robot_namespace::PositionAndQuaternion &F_c_b, + aubo_robot_namespace::PositionAndQuaternion &F_c_a); + + /** + * @brief 齐次变换矩阵的逆 + * @param F_b_a: a 相对于 b 的位姿 + * @return b 相对于 a 的位姿 + */ + int poseInv(const aubo_robot_namespace::PositionAndQuaternion &F_b_a, + aubo_robot_namespace::PositionAndQuaternion &F_a_b); + + /** + * @brief getErrDescByCode 根据错误号获取错误信息 + * @param code  错误号 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + std::string getErrDescByCode(aubo_robot_namespace::RobotErrorCode code); + + /********************************************************************************************************************************************** + ************************************************************机械臂控制接口********************************************************************** + **********************************************************************************************************************************************/ + /** + * @brief 机械臂控制 + * @param cmd 控制命令 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int rootServiceRobotControl( + const aubo_robot_namespace::RobotControlCommand cmd); + + /** + * @brief 设置机械臂的电源状态 + * @param value + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServicePowerControl(bool value); + + int robotServiceReleaseBrake(); + + /** + * @brief rootServiceRobotStartup + * 启动机械臂-----该操作会完成机械臂的上电,松刹车,设置碰撞等级,设置动力学参数等功能。 + * @param toolDynamicsParam      动力学参数 + * @param collisionClass        碰撞等级 + * @param readPose 是否允许读取位置   默认是true + * @param staticCollisionDetect + * @param boardBaxAcc + * @param result + * @param IsBolck + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int rootServiceRobotStartup( + const aubo_robot_namespace::ToolDynamicsParam &toolDynamicsParam, + uint8 collisionClass, bool readPose, bool staticCollisionDetect, + int boardBaxAcc, aubo_robot_namespace::ROBOT_SERVICE_STATE &result, + bool IsBolck = true); + + /** + * @brief 关机 + * @param IsBolck 是否阻塞 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceRobotShutdown(bool IsBolck = true); + + /********************************************************************************************************************************************** + ********************************************************************************************************************************************** + ************************************************************关于末端工具的接口******************************************************************* + ********************************************************************************************************************************************** + **********************************************************************************************************************************************/ + /** 设置无工具的动力学参数 **/ + int robotServiceSetNoneToolDynamicsParam(); + + /** 设置工具的动力学参数  **/ + int robotServiceSetToolDynamicsParam( + const aubo_robot_namespace::ToolDynamicsParam &toolDynamicsParam); + + /** 获取工具的动力学参数  **/ + int robotServiceGetToolDynamicsParam( + aubo_robot_namespace::ToolDynamicsParam &toolDynamicsParam); + + /** 设置无工具运动学参数  **/ + int robotServiceSetNoneToolKinematicsParam(); + + /** 设置工具的运动学参数  **/ + int robotServiceSetToolKinematicsParam( + const aubo_robot_namespace::ToolKinematicsParam &toolKinematicsParam); + + /** 获取工具的运动学参数  **/ + int robotServiceGetToolKinematicsParam( + aubo_robot_namespace::ToolKinematicsParam &toolKinematicsParam); + + /********************************************************************************************************************************************** + ************************************************************机械臂相关参数设置与获取的接口********************************************************* + **********************************************************************************************************************************************/ + /** + * @brief robotServiceGetRobotWorkMode   获取当前机械臂模式 + * @param mode 输出参数  仿真或真实的枚举类型 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotWorkMode(aubo_robot_namespace::RobotWorkMode &mode); + + /** + * @brief robotServiceSetRobotWorkMode 设置当前机械臂模式 仿真或真实 + * @param mode   仿真或真实的枚举类型 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRobotWorkMode(aubo_robot_namespace::RobotWorkMode mode); + + /** + * @brief robotServiceSetEnableForceTeachWhenProjectIsRunning + * 在工程运行的时候使能/失能力控模式 + * @param enable true:使能 false:失能 + * @return + */ + int robotServiceSetEnableForceTeachWhenProjectIsRunning(bool enable); + + /** + * @brief robotServiceSetRobotWorkMode 获取重力分量 + * @param mode   输出参数  仿真或真实的枚举类型 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotGravityComponent( + aubo_robot_namespace::RobotGravityComponent &gravityComponent); + + //业务接口: 获取当前碰撞等级 + int robotServiceGetRobotCollisionCurrentService(int &collisionGrade); + + //业务接口: 设置碰撞等级 + int robotServiceSetRobotCollisionClass(int grade); + int robotServiceSetRobotCollisionClass( + int grade, aubo_robot_namespace::CollisionMode collision_mode); + + //业务接口:获取设备信息 + int robotServiceGetRobotDevInfoService( + aubo_robot_namespace::RobotDevInfo &devInfo); + int robotServiceGetRobotIoConfigService( + aubo_robot_namespace::IoConfig &ioconfig); + + //设置最大加速度 + int robotServiceSetRobotMaxACC(int maxAcc); + + //碰撞恢复 + int robotServiceCollisionRecover(); + + // 关节回复到安全限制以内 + int robotServiceJointPosRecover(bool confirm); + + //获取机械臂当前状态 + int robotServiceGetRobotCurrentState( + aubo_robot_namespace::RobotState &state); + + //获取通讯状态 + int robotServiceGetMacCommunicationStatus(bool &value); + + /** + * @brief robotServiceGetIsRealRobotExist 获取是否存在真实机械臂 + * @param value 输出参数  存在为true,不存在为false + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetIsRealRobotExist(bool &value); + + /** + * @brief robotServiceGetJoint6Rotate360EnableFlag 获取6关节旋转360使能标志 + * @param value + * @return + */ + int robotServiceGetJoint6Rotate360EnableFlag(bool &value); + + /** + * @brief robotServiceGetRobotJointStatus 获取机械臂关节状态 + * @param jointStatus 关节角缓冲区  输出参数 + * @param size 关节角缓冲区长度 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotJointStatus( + aubo_robot_namespace::JointStatus *jointStatus, int size); + + /** + * @brief robotServiceGetRobotDiagnosisInfo 获取机械臂诊断信息 + * @param robotDiagnosisInfo 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotDiagnosisInfo( + aubo_robot_namespace::RobotDiagnosis &robotDiagnosisInfo); + + /** + * @brief robotServiceGetJointAngleInfo 获取机械臂当前关节角信息 + * @param jointParam 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetJointAngleInfo( + aubo_robot_namespace::JointParam &jointParam); + + int robotServiceGetCorrectedWaypoint( + const aubo_robot_namespace::wayPoint_S source, + aubo_robot_namespace::wayPoint_S &waypint); + + /** + * @brief robotServiceGetCurrentWaypointInfo 获取机械臂当前路点信息 + * @param wayPoint 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetCurrentWaypointInfo( + aubo_robot_namespace::wayPoint_S &wayPoint); + + /** + * @brief robotServerGetToolForceSensorData 获取力传感器数据 + * @param data 输出力传感器数据 + * @return 调用成功返回ErrnoSucc + */ + int robotServerGetToolForceSensorData( + aubo_robot_namespace::ForceSensorData &data); + + /** + * @brief robotServiceSetJointRangeOfMotion 设置关节运动范围 + * @param rangeOfMotion + * @return + */ + int robotServiceSetJointRangeOfMotion( + const aubo_robot_namespace::JointRangeOfMotion &rangeOfMotion); + + /** + * @brief robotServiceGetJointRangeOfMotion 获取关节运动范围 + * @param rangeOfMotion + * @return + */ + int robotServiceGetJointRangeOfMotion( + aubo_robot_namespace::JointRangeOfMotion &rangeOfMotion); + int robotServiceGetJointPositionLimit( + aubo_robot_namespace::JointRangeOfMotion &rangeOfMotion); + + /*****************************************************************************************************************************************************/ + /* 安全IO相关 */ + /* */ + /****************************************************************************************************************************************************/ + int robotServiceSetRobotAtOriginPose(); + + /** + * @brief 通知接口板上位机暂停状态 + * @param data 0x01-暂停 0x02-恢复 + * @return + */ + int robotServiceSetRobotOrpePause(uint8 data); + + /** + * @brief 通知接口板上位机停止状态 + * @param data 0x02-启动 0x01-停止 + * @return + */ + int robotServiceSetRobotOrpeStop(uint8 data); + + /** + * @brief 通知机械臂工程启动,服务器同时开始检测安全IO + * @return + */ + int robotServiceSetRobotProjectStartup(); + + /** + * @brief 通知机械臂工程停止,服务器停止检测安全IO + * @return + */ + int robotServiceSetRobotProjectStop(); + + /** + * @brief 通知接口板上位机错误 + * @param 16个字节的错误数据,每个错误占一个bit + * @return + */ + int robotServiceSetRobotOrpeError(uint8 data[], int len); + + /** + * @brief 解除系统紧急停止输出信号 0-无动作 1-解除 + * @param data + * @return + */ + int robotServiceClearSystemEmergencyStop(uint8 data); + + /** + * @brief 解除缩减模式错误 0-无效 1-解除 + * @param data + * @return + */ + int robotServiceClearReducedModeError(uint8 data); + + /** + * @brief 防护重置成功 0-无动作 1-解除 + * @param data + * @return + */ + int robotServiceRobotSafetyguardResetSucc(uint8 data); + + /** + * @brief 设置机械臂运动进入缩减模式 + * @return + */ + bool robotServiceEnterRobotReduceMode(); + + /** + * @brief 设置机械臂运动退出缩减模式 + * @return + */ + bool robotServiceExitRobotReduceMode(); + + /********************************************************************************************************************************************** + ************************************************************关于接口板IO的接口********************************************************************** + **********************************************************************************************************************************************/ + /** + * @brief 获取接口板指定IO集合的配置信息 + * @param ioType IO类型的集合 输入参数 + * @param configVector IO配置信息的集合 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetBoardIOConfig( + const std::vector &ioType, + std::vector &configVector); + + /** + * @brief 获取接口板指定IO集合的状态信息 + * @param ioType + * @param statusVector + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetBoardIOStatus( + const std::vector ioType, + std::vector &statusVector); + + /** + * @brief 根据接口板IO类型和名称设置IO状态 + * @param type IO类型 + * @param name IO名称 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetBoardIOStatus(aubo_robot_namespace::RobotIoType type, + std::string name, double value); + + /** + * @brief 根据接口板IO类型和地址设置IO状态 + * @param type IO类型 + * @param addr IO地址 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetBoardIOStatus(aubo_robot_namespace::RobotIoType type, + int addr, double value); + + /** + * @brief 根据接口板IO类型和名称设置脉冲 + * @param type IO类型 + * @param addr IO地址 + * @param value IO状态 + * @param duration 脉冲时长(ms) + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetBoardIOPulse(aubo_robot_namespace::RobotIoType type, + std::string name, double value, + int millisecond); + + /** + * @brief 根据接口板IO类型和地址设置脉冲 + * @param type IO类型 + * @param addr IO地址 + * @param value IO状态 + * @param duration 脉冲时长(ms) + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetBoardIOPulse(aubo_robot_namespace::RobotIoType type, + int addr, double value, int millisecond); + + /** + * @brief 根据接口板IO类型和名称获取IO状态 + * @param type IO类型 + * @param name IO名称 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetBoardIOStatus(aubo_robot_namespace::RobotIoType type, + std::string name, double &value); + + /** + * @brief 根据接口板IO类型和地址获取IO状态 + * @param type IO类型 + * @param addr IO地址 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetBoardIOStatus(aubo_robot_namespace::RobotIoType type, + int addr, double &value); + + /** + * @brief 返回当前机械臂是否运行在联机模式 + * @param isOnlineMode true:联机 false:非联机 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceIsOnlineMode(bool &isOnlineMode); + + /** + * @brief 返回当前机械臂是否运行在联机主模式 + * @param isOnlineMode true:联机主模式 false:联机从模式 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceIsOnlineMasterMode(bool &isOnlineMasterMode); + + //业务接口: 获取机械臂安全配置 + int robotServiceGetRobotSafetyConfig( + aubo_robot_namespace::RobotSafetyConfig &safetyConfig); + + //业务接口: 设置机械臂安全配置 + int robotServiceSetRobotSafetyConfig( + const aubo_robot_namespace::RobotSafetyConfig &safetyConfig); + + //业务接口: 获取机械臂安全状态 + int robotServiceGetOrpeSafetyStatus( + aubo_robot_namespace::OrpeSafetyStatus &safetyStatus); + + /********************************************************************************************************************************************** + ************************************************************关于tool + *IO的接口********************************************************************** + **********************************************************************************************************************************************/ + /** + * @brief 设置工具端电源电压类型 + * @param type 电源电压类型 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolPowerVoltageType( + aubo_robot_namespace::ToolPowerType type); + + /** + * @brief 获取工具端电源电压类型 + * @param 输出参数 接口调用成功后返回的电源电压类型 + * @return + */ + int robotServiceGetToolPowerVoltageType( + aubo_robot_namespace::ToolPowerType &type); + + /** + * @brief 获取工具端的电源电压 + * @param value 输出参数 + * @return + */ + int robotServiceGetToolPowerVoltageStatus(double &value); + + /** + * @brief robotServiceSetToolPowerTypeAndDigitalIOType + * 设置工具端电源电压类型and所有数字量IO的类型 + * @param type + * @param io0 + * @param io1 + * @param io2 + * @param io3 + * @return + */ + int robotServiceSetToolPowerTypeAndDigitalIOType( + aubo_robot_namespace::ToolPowerType type, + aubo_robot_namespace::ToolIOType io0, + aubo_robot_namespace::ToolIOType io1, + aubo_robot_namespace::ToolIOType io2, + aubo_robot_namespace::ToolIOType io3); + + /** + * @brief 设置工具端数字量IO的类型 输入或者输出 + * @param 地址 + * @param 类型 输入或者输出 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolDigitalIOType( + aubo_robot_namespace::ToolDigitalIOAddr addr, + aubo_robot_namespace::ToolIOType type); + + /** + * @brief 获取工具端所有数字量IO的状态 + * @param statusVector 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetAllToolDigitalIOStatus( + std::vector &statusVector); + + /** + * @brief 根据地址设置工具端数字量IO的状态 + * @param addr IO地址 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolDOStatus( + aubo_robot_namespace::ToolDigitalIOAddr addr, + aubo_robot_namespace::IO_STATUS value); + + /** + * @brief 根据名称设置工具端数字量IO的状态 + * @param addr IO地址 + * @param value IO状态 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolDOStatus(std::string name, + aubo_robot_namespace::IO_STATUS value); + + /** + * @brief 根据地址设置工具端数字量IO的脉冲 + * @param addr IO地址 + * @param value IO状态 + * @param duration 脉冲时长(ms) + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolDOPulse(int addr, double value, int millisecond); + + /** + * @brief 根据名称设置工具端数字量IO的脉冲 + * @param addr IO地址 + * @param value IO状态 + * @param duration 脉冲时长(ms) + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetToolDOPulse(std::string name, double value, + int millisecond); + + /** + * @brief 根据名称获取工具端IO的状态 + * @param name IO名称 + * @param value IO状态 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetToolIoStatus(std::string name, double &value); + + /** + * @brief 获取工具端所有AI的状态 + * @param 输出参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetAllToolAIStatus( + std::vector &statusVector); + + /** + * @brief robotServiceUpdateRobotBoardFirmware 接口板固件升级 + * @param cmd 接口板固件升级类型 + * @param data + * @param length z + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceUpdateRobotBoardFirmware( + aubo_robot_namespace::update_board_firmware_cmd cmd, const void *data, + uint16 length); + + /** + * @brief robotServiceGetBoardFirmwareUpdateResultService + * 获取接口板固件升级结果 + * @param value 返回是否成功 + * @return + */ + int robotServiceGetBoardFirmwareUpdateResultService(bool &value); + + /** + * @brief robotServiceGetRobotEthernetDeviceName 获取网卡设备名称 + * @param ethernetDeviceName 返回网卡设备名称 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotEthernetDeviceName(std::string ðernetDeviceName); + + //获取服务器版本信息 + int robotServiceGetServerVersionInfo(std::string &versionInfo); + + /** + * @brief 设置关节碰撞补偿(范围0.00~0.51度) + * @param jointOffset + * @return + */ + int robotServiceSetRobotJointOffset( + aubo_robot_namespace::RobotJointOffset &jointOffset); + + int robotServiceSetConveyorEncoderReset(void); + + /** + * @brief 启动传送带 + * @return + */ + int robotServiceSetConveyorStartup(void); + + /** + * @brief 停止传送带 + * @return + */ + int robotServiceSetConveyorStop(void); + + /** + * @brief 设置传送带方向 + * @param dir + * @return + */ + int robotServiceSetConveyorDir(int dir); + + /** + * @brief 设置手眼标定结果关系 + * @param robotCameraCalib + */ + int robotServiceSetRobotCameraCalib( + const aubo_robot_namespace::RobotCameraCalib &robotCameraCalib); + + /** + * @brief 设置传送带线速度 + * @param conveyorVelc (米/秒) + */ + int robotServiceSetConveyorVelc(const double conveyorVelc); + + /** + * @brief 设置编码器距离关系 + * @param encoderValPerMeter 编码器距离关系(编码器脉冲个数/米) + */ + int robotServiceSetEncoderValPerMeter(const uint32_t &encoderValPerMeter); + + /** + * @brief 设置传送带起始窗口上限 + * @param startWindowUpstream 单位:米 + */ + int robotServiceSetStartWindowUpstream(double startWindowUpstream); + + /** + * @brief 设置传送带起始窗口下限 + * @param startWindowDownstream 单位:米 + */ + int robotServiceSetStartWindowDownstream(double startWindowDownstream); + + /** + * @brief 设置传送带跟踪轨迹下限 单位:米 + * @param trackDownstream + */ + int robotServiceSetConveyorTrackDownstream(double trackDownstream); + + /** + * @brief robotServiceAppendObject2ConveyorTrackQueue + * 在传送带队列中添加object + * @param objectPos object位置 + * @param objectOri object姿态 + * @param timestamp + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceAppendObject2ConveyorTrackQueue( + const aubo_robot_namespace::Pos &objectPos, + const aubo_robot_namespace::Ori &objectOri, uint32_t timestamp); + + /** + * @brief robotServiceEnableConveyorTrack 使能传送带跟踪 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceEnableConveyorTrack(); + + /** + * @brief robotServiceGetConveyorEncoderVal 获取传送带编码器速度 + * @param value 返回的速度值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetConveyorEncoderVal(int &value); + + //设置传送带跟踪的最大速度 + int robotServiceSetRobotConveyorTrackMaxVelc( + double robotConveyorTrackMaxVelc); + + //设置传送带跟踪的最大加速度 + int robotServiceSetRobotConveyorTrackMaxAcc( + double robotConveyorTrackMaxAcc); + + //设置传送带跟踪的系统延时时间 + int robotServiceSetRobotConveyorSystemDelay( + double robotConveyorSystemDelay); + + //设置机械臂工具 + int robotServiceSetRobotTool( + const aubo_robot_namespace::ToolInEndDesc &robotTool); + /** + * @brief robotServiceSetWeaveMoveParameters 设置焊接摇摆 + * @param weaveMove 焊接摇摆结构体 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetWeaveMoveParameters( + const aubo_robot_namespace::WeaveMove &weaveMove); + + /** + * @brief robotServiceSetRobotRecognitionParam 设置机械臂辨识参数 + * @param param 机械臂辨识参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRobotRecognitionParam( + const aubo_robot_namespace::RobotRecongnitionParam ¶m); + + /** + * @brief robotServiceGetRobotRecognitionParam 获取机械臂辨识参数 + * @param type + * @param param 机械臂辨识参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotRecognitionParam( + int type, aubo_robot_namespace::RobotRecongnitionParam ¶m); + + /** + * @brief robotServiceSetSeamTrackingParameters 设置焊缝跟踪参数 + * @param seamTrack 焊缝跟踪参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetSeamTrackingParameters( + const aubo_robot_namespace::SeamTracking &seamTrack); + + /** + * @brief robotServiceGetSeamTrackingParameters 获取焊缝跟踪参数 + * @param seamTrack 焊缝跟踪参数 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetSeamTrackingParameters( + aubo_robot_namespace::SeamTracking &seamTrack); + + /** + * @brief robotServiceGetJointCommonData 获取机械臂关节数据 + * @param jointCommonDataArray 机械臂关节数据 + * @param size + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetJointCommonData( + aubo_robot_namespace::JointCommonData jointCommonDataArray[], int size); + + /** + * @brief robotServiceSetJointParam_CurrentIP 设置关节电流P值 + * @param jointID 关节角ID + * @param P P值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_CurrentIP(int jointID, uint16 P); + + /** + * @brief robotServiceSetJointParam_CurrentII 设置关节电流I值 + * @param jointID 关节角ID + * @param I I值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_CurrentII(int jointID, uint16 I); + + /** + * @brief robotServiceSetJointParam_CurrentID 设置关节电流D值 + * @param jointID 关节角ID + * @param D D值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_CurrentID(int jointID, uint16 D); + + /** + * @brief robotServiceSetJointParam_SpeedP 设置关节速度P值 + * @param jointID 关节角ID + * @param P P值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_SpeedP(int jointID, uint16 P); + + /** + * @brief robotServiceSetJointParam_SpeedI 设置关节速度I值 + * @param jointID 关节角ID + * @param I I值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_SpeedI(int jointID, uint16 I); + + /** + * @brief robotServiceSetJointParam_SpeedD 设置关节速度D值 + * @param jointID 关节角ID + * @param D D值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_SpeedD(int jointID, uint16 D); + + /** + * @brief robotServiceSetJointParam_SpeedDS 设置关节速度死区 + * @param jointID 关节角ID + * @param DS 死区 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_SpeedDS(int jointID, uint16 DS); + + /** + * @brief robotServiceSetJointParam_PosP 设置关节位置P值 + * @param jointID 关节角ID + * @param P P值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_PosP(int jointID, uint16 P); + + /** + * @brief robotServiceSetJointParam_PosI 设置关节位置I值 + * @param jointID 关节角ID + * @param I I值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_PosI(int jointID, uint16 I); + + /** + * @brief robotServiceSetJointParam_PosD 设置关节位置D值 + * @param jointID 关节角ID + * @param D D值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_PosD(int jointID, uint16 D); + + /** + * @brief robotServiceSetJointParam_PosDS 设置关节位置DS值 + * @param jointID 关节角ID + * @param DS DS值 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetJointParam_PosDS(int jointID, uint16 DS); + + int robotServiceJointSaveDataFlash(int jointID); + + /** + * @brief robotServiceSetRobotBaseParameters 设置机械臂基础数据 + * @param baseParameters 机械臂基础数据 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRobotBaseParameters( + const aubo_robot_namespace::RobotBaseParameters &baseParameters); + + //设置调速模式配置 + int robotServiceSetRegulateSpeedModeParam( + const aubo_robot_namespace::RegulateSpeedModeParamConfig_t + ®ulateSpeedModeConfig); + + /** + * @brief robotServiceGetRobotBaseParameters 获取机械臂基础数据 + * @param baseParameters 机械臂基础数据 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotBaseParameters( + aubo_robot_namespace::RobotBaseParameters &baseParameters); + + //获取调速模式配置 + int robotServiceGetRegulateSpeedModeParam( + aubo_robot_namespace::RegulateSpeedModeParamConfig_t + ®ulateSpeedModeConfig); + + /** + * @brief robotServiceSetRobotJointsParameter 设置机械臂关节数据 + * @param jointsParameter 机械臂关节数据 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceSetRobotJointsParameter( + const aubo_robot_namespace::RobotJointsParameter &jointsParameter); + + //使能/失能调速模式 + int robotServiceEnableRegulateSpeedMode(bool enbaleFlag); + + /** + * @brief robotServiceGetRobotJointsParameter 获取机械臂关节数据 + * @param jointsParameter 机械臂关节数据 + * @return 调用成功返回ErrnoSucc;错误返回错误号 + */ + int robotServiceGetRobotJointsParameter( + aubo_robot_namespace::RobotJointsParameter &jointsParameter); + + //获取力控参数 + int robotServiceGetForceControlModeAdmittancePatam( + aubo_robot_namespace::AdmittancePatam_t &admittancePatam); + + int robotServiceRefreshRobotArmParamter(); + //设置力控参数 + int robotServiceSetForceControlModeAdmittancePatam( + const aubo_robot_namespace::AdmittancePatam_t &admittancePatam); + + //获取"主动探寻力"参数 + int robotServiceGetForceControlModeExploreForceParam(double &forceLimit, + double &distLimit); + + // int robotServiceGetForceSensorData(WrenchParam &data); + //设置"主动探寻力"参数 + int robotServiceSetForceControlModeExploreForceParam(double forceLimit, + double distLimit); + + // int robotServiceCalibToolAndSensor(aubo_robot_namespace::JointParam + // JointParamGroup[3], WrenchParam wrenchParamGroup[3], FtSensorCalResult + // &result); 使能/失能力控模式 + int robotServicEnableForceControlModeService(bool enbaleFlag); + + int robotServiceEnableForceControlPlan(bool enableFlag); + //获取实时力数据 + int robotServiceGetRealtimeForceData(double forceData[6]); + + int robotServiceSetForceDeviation(double data[6]); + + /** + * @brief parseFileAsRoadpointCollection + * 将一个轨迹文件(位置+姿态)转换为路点容器,进行平滑处理和限制条件检查 + * @param filePath 轨迹文件路径 输入参数 + * @param referPointJointAngle 逆解参考点的关节角 输入参数 + * @param toolInEndDesc 末端工具的信息 输入参数 + * @param wayPointVector 路点集合 输出参数 + * @return + */ + int parseFileAsRoadpointCollection( + const char *filePath, + aubo_robot_namespace::POSITION_ORIENTATION_TYPE poseType, + const double *referPointJointAngle, + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + std::vector &wayPointVector); + + int robotServiceSetForceMaxValue(double data[6]); + /** + * @brief parsePoseListeAsRoadpointCollection + * 将位姿集合(位置+四元数)转换为路点容器, 进行平滑处理和限制条件检查 + * @param referPointJointAngle 逆解参考点的关节角 输入参数 + * @param toolInEndDesc 末端工具的信息 输入参数 + * @param toolEndPoseVector 位姿集合 输入参数 + * @param wayPointVector 路点集合 输出参数 + * @return + */ + int parsePoseListeAsRoadpointCollection( + const double *referPointJointAngle, + const aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + const std::vector + &toolEndPoseVector, + std::vector &wayPointVector); + + int robotServiceSetForceControlStiffness(double data[6]); + + int robotServiceSetForceControlDamp(double data[6]); + //解析路点文件并缓存结果 + int parseRoadPointFileAndCacheResult( + const char *filePath, const double *referPointJointAngle, + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + aubo_robot_namespace::wayPoint_S &firstWayPoint); + + int robotServiceSetForceControlMass(double data[6]); + //运行缓存轨迹(parseRoadPointFileAndCacheResult 结果) + int moveCacheTrack(); + + int robotServiceForceControlCalibrationZero(); + + int HandlePosesFromFile( + const char *filePath, const double *referPointJointAngle, + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + std::vector &wayPointVector); + + // 脚本管理 + int robotServiceScriptRunSetSpeedLimitPercent(const double speedLimit); + + //针对瀚维的轨迹处理 + int hanweiRoadPointHandle( + const char *filePath, const double *referPointJointAngle, + aubo_robot_namespace::ToolInEndDesc &toolInEndDesc, + aubo_robot_namespace::wayPoint_S &firstWayPoint); + + //针对瀚维使用 + int moveHanweiTrack(); + + //获取SDK版本 + std::string getVersion(); + + arcs::aubo_sdk::RpcClientPtr getRpcClient(); + arcs::aubo_sdk::RtdeClientPtr getRtdeClient(); + + // private: + class PrivateData; + PrivateData *pd_ = nullptr; + + bool fast_stop_{ false }; + int standard_do_count_{ 0 }; + int standard_di_count_{ 0 }; +}; +#endif // SERVICEINTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control.h new file mode 100644 index 00000000..37cdd3f4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control.h @@ -0,0 +1,330 @@ +// 力控相关的工艺封装接口 +#ifndef AUBO_SDK_SKILL_INTERFACE_H +#define AUBO_SDK_SKILL_INTERFACE_H + +#include +#include +#include +#include +#include + +using namespace arcs::common_interface; + +namespace arcs { +namespace aubo_sdk { + +class RtdeClient; +class RpcClient; +using RtdeClientPtr = std::shared_ptr; +using RpcClientPtr = std::shared_ptr; + +class GuideTrajMove; +using GuideTrajMovePtr = std::shared_ptr; + +class ARCS_ABI ForceControl +{ +public: + enum ForceStage + { + TOUCH = 1, // 接近 + SEARCH = 2, // 搜孔 + INSERT = 3, // 插孔 + CONSTANT = 4, // 恒力 + + }; // enum ForceStage + + enum StateCode + { + // 失败状态码 + TimeOut = -100, // 超时 + Search_MaxForce = -4, // 搜孔达到最大力 + Insert_MaxForce = -3, // 插入达到最大力 + Constant_NotTouch = -2, // 恒力过程中未接触 + Touch_Distance = -1, // 超出探寻距离 + + Running = 0, // 力控执行中 + + // 成功状态码 + Touch_Succeed = 1, // 接触成功 + Insert_Succeed = 2, // 插孔成功 + Search_Succeed = 3, // 搜孔成功 + Constant_Succeed = 4, // 接触成功 + + }; // StateCode + + // 轨迹类型 + enum GuideTrajType + { + NONE = 0, // 无参考轨迹 + LINE1 = 1, // 直线 speedLine + LINE2 = 2, // 直线 moveLine + SPIRAL = 3, // 螺旋线 + WEAVE = 4, // 摆线 + }; + + // 螺旋线平面 + enum class SpiralPlane + { + xy = 0, + yz = 1, + zx = 2 + }; + + // 螺旋线轨迹参数 + struct SpiralTrajParams + { + double step = 0.0; // 圈数 + double direction = -1; // 旋转方向 -1顺时针旋转,1逆时针旋转 + SpiralPlane plane = SpiralPlane::xy; // 参考平面选择 + double spiral = 0.0; // 螺旋线外扩 + double helix = 0.0; // 螺旋上升 m + double radius = 0.0; // 第一圈半径 m + }; + + // 摆线方向 + enum class WeaveSelect + { + x = 1, + y = 2, + z = 3, + rx = 4, + ry = 5, + rz = 6 + }; + + // 摆线轨迹参数 + struct WeaveTrajParams + { + double step = 0.0; // 周期 + double amplitude = 0.0; // 幅度 + WeaveSelect direction = WeaveSelect::x; // 方向 + double hold_distance = 0.0; // 保持距离 m + double angle = 0.0; // 角度 + double type; // 类型 + }; + + // 插孔方向 + enum class InsertSelect + { + x = 1, + y = 2, + z = 3, + }; + + // 插孔参数 + struct InsertParams + { + InsertSelect insert_select = InsertSelect::z; // 插入方向,可选x\y\z + double hole_diameter = 0.0; // 轴孔直径 m + double insert_max_speed = 0.01; // 插入速度限制 m/s + double insert_time = 1000; // 插入时间限制 ms + GuideTrajType guide_traj_type = NONE; // 主动轨迹类型 + std::vector insert_max_force = { + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + }; // 最大力限制 + double insert_max_depth = 0.01; // 插入距离限制 m + double insert_guide_force = 10; // 插入引导力 + // 力控调节参数 + std::vector insert_damp_scale = { + 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 + }; + std::vector insert_stiff_scale = { + 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 + }; + + SpiralTrajParams spiral_param; // 螺旋轨迹参数 + WeaveTrajParams weave_param; // 摆动轨迹参数 + }; + + // 搜孔平面 + enum class SearchPlane + { + yz = 1, + xz = 2, + xy = 3 + }; + + // 搜孔参数 + struct SearchParams + { + SearchPlane search_plane = SearchPlane::xy; // 搜孔平面 + double hole_diameter = 0.0; // 轴孔直径 m + double search_range = 0.1; // 搜孔范围 + double search_time = 1000; // 搜孔时间限制 ms + GuideTrajType guide_traj_type = NONE; // 搜孔过程主动轨迹类型 + double search_max_force = 10; // 最大力限制 + double search_guide_force = 1; // 搜孔引导力 + // 力控调节参数 + std::vector search_damp_scale = { + 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 + }; + std::vector search_stiff_scale = { + 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 + }; + + SpiralTrajParams spiral_param; + WeaveTrajParams weave_param; + }; + + struct ConstantParams + { + TaskFrameType frame_type = MOTION_FORCE; + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector compliance = { true, true, true, true, true, true }; + std::vector wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + + // 力控调节参数 + std::vector env_stiff = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector damp_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + std::vector stiff_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + + std::vector contact_threshold = { + 1.0, 1.0, 1.0, 0.2, 0.2, 0.2 + }; // 接触判断阈值 + double constant_time = 5000; // 默认5s + }; + + struct TouchParams + { + TaskFrameType frame_type = TOOL_FORCE; + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector compliance = { true, true, true, true, true, true }; + std::vector wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector env_stiff = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // std::vector damp_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, + // 0.5 }; + std::vector stiff_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + std::vector speed = { 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 }; + double distance = 0.0; + double touch_time = 1000; // 默认5s + }; + + ForceControl(const RpcClientPtr rpc, const RtdeClientPtr rtde); + ~ForceControl(); + + /** + * @brief 获取实时力控参考系下的力描述 + * + * @return 未开启力控时返回全0 + */ + std::vector getTaskForce(const TaskFrameType &type, + const std::vector &feature); + + // 接近 + int fcTouch(const TouchParams ¶m); + + // 恒力 + int fcConstant(const ConstantParams ¶m); + + // 插入 + int fcInsert(const InsertParams ¶m); + + // 搜孔 + int fcSearch(const SearchParams ¶m); + + // 等待力控结束 + int fcWaitCondition(); + + int fcExit(); + + // 注册状态回调函数 + void registerStateCallBack(std::function func); + +private: + // 注册实时状态订阅 + void subscribeRealtimeState(); + + // 力控过程监控线程 + void monitor(); + + // 超时监控 + void timeoutMonitor(); + + // 距离监控 + void distanceMonitor(); + + // 单方向距离监控 + void signalDistanceMonitor(); + + // 力监控 + void forceMonitor(); + + // 接触监控 + void contactMonitor(); + +private: + RpcClientPtr rpc_; + RtdeClientPtr rtde_; + + std::atomic_bool is_exit_; + std::atomic_bool is_stop_; + std::mutex monitor_thread_mutex_; + std::condition_variable monitor_cond_; + std::thread *monitor_thread_ptr_; + + // 用于恒力和接近之间的切换 + std::atomic_bool last_is_contact_; + + // 记录当前参数 + std::shared_mutex mutex_; + TaskFrameType frame_type_; + std::vector feature_; + ForceStage cur_process_type_; + std::vector compliance_; + std::vector env_stiff_; + std::vector damp_scale_; + std::vector stiff_scale_; + std::vector wrench_; + std::vector start_tcp_pose_; // 开始力控位姿 + double distance_; // 力控执行距离 + double direction_; // 搜孔/插孔方向 + std::chrono::steady_clock::time_point start_time_; // 开启力控时间点 + double interval_; // 超时间隔 + + // 参考轨迹运行 + GuideTrajMovePtr guide_traj_move_; + + // 状态回调函数 + std::atomic state_code_ = Running; + std::function func_; + + // RTDE相关 + std::shared_mutex rtde_mutex_; + std::vector actual_tcp_pose_; + std::vector actual_tcp_speed_; + std::vector actual_tcp_force_; + std::vector actual_tcp_force_sensor_; +}; // namespace aubo_sdk + +class GuideTrajMove +{ +public: + GuideTrajMove(const RpcClientPtr rpc); + ~GuideTrajMove(); + + void speedLine(const std::vector &speed, const double &time); + void moveLine(const std::vector &target_pose, const double &speed); + void moveSpiral(const ForceControl::SpiralTrajParams &spiral_param); + void moveWeave(const ForceControl::WeaveTrajParams &weave_param, + const int &move_direction); + + void stop(); + +private: + int waitArrival(); + + RpcClientPtr rpc_; + + std::atomic_bool is_exit_; + std::atomic_bool is_stop_; + std::mutex thread_mutex_; + std::condition_variable cond_; + std::thread thread_; + + ForceControl::GuideTrajType traj_type_ = ForceControl::NONE; +}; + +} // namespace aubo_sdk +} // namespace arcs + +#endif // AUBO_SDK_SKILL_INTERFACE_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control_c.h new file mode 100644 index 00000000..44a3734e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/force_control_c.h @@ -0,0 +1,200 @@ +#ifndef AUBO_SDK_ForceControl_C_H +#define AUBO_SDK_ForceControl_C_H +#include + +typedef void *FC_HANDLER; + +enum ForceStage_C +{ + TOUCH = 1, // 接近 + SEARCH = 2, // 搜孔 + INSERT = 3, // 插孔 + CONSTANT = 4, // 恒力 + +}; // enum ForceStage + +enum StateCode_C +{ + // 失败状态码 + TimeOut = -100, // 超时 + Search_MaxForce = -4, // 搜孔达到最大力 + Insert_MaxForce = -3, // 插入达到最大力 + Constant_NotTouch = -2, // 恒力过程中未接触 + Touch_Distance = -1, // 超出探寻距离 + + Running = 0, // 力控执行中 + + // 成功状态码 + Touch_Succeed = 1, // 接触成功 + Insert_Succeed = 2, // 插孔成功 + Search_Succeed = 3, // 搜孔成功 + Constant_Succeed = 4, // 接触成功 + +}; // StateCode + +// 轨迹类型 +enum GuideTrajType_C +{ + NONE = 0, // 无参考轨迹 + LINE1 = 1, // 直线 speedLine + LINE2 = 2, // 直线 moveLine + SPIRAL = 3, // 螺旋线 + WEAVE = 4, // 摆线 +}; + +// 螺旋线平面 +enum class SpiralPlane_C +{ + xy = 0, + yz = 1, + zx = 2 +}; + +// 螺旋线轨迹参数 +struct SpiralTrajParams_C +{ + double step = 0.0; // 圈数 + double direction = -1; // 旋转方向 -1顺时针旋转,1逆时针旋转 + SpiralPlane_C plane = SpiralPlane_C::xy; // 参考平面选择 + double spiral = 0.0; // 螺旋线外扩 + double helix = 0.0; // 螺旋上升 m + double radius = 0.0; // 第一圈半径 m +}; + +// 摆线方向 +enum class WeaveSelect_C +{ + x = 1, + y = 2, + z = 3, + rx = 4, + ry = 5, + rz = 6 +}; + +// 摆线轨迹参数 +struct WeaveTrajParams_C +{ + double step = 0.0; // 周期 + double amplitude = 0.0; // 幅度 + WeaveSelect_C direction = WeaveSelect_C::x; // 方向 + double hold_distance = 0.0; // 保持距离 m + double angle = 0.0; // 角度 + double type; // 类型 +}; + +// 插孔方向 +enum class InsertSelect_C +{ + x = 1, + y = 2, + z = 3, +}; + +// 插孔参数 +struct InsertParams_C +{ + InsertSelect_C insert_select = InsertSelect_C::z; // 插入方向,可选x\y\z + double hole_diameter = 0.0; // 轴孔直径 m + double insert_max_speed = 0.01; // 插入速度限制 m/s + double insert_time = 1000; // 插入时间限制 ms + GuideTrajType_C guide_traj_type = NONE; // 主动轨迹类型 + double insert_max_force[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; // 最大力限制 + double insert_max_depth = 0.01; // 插入距离限制 m + double insert_guide_force = 10; // 插入引导力 + // 力控调节参数 + double insert_damp_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + double insert_stiff_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + + SpiralTrajParams_C spiral_param; // 螺旋轨迹参数 + WeaveTrajParams_C weave_param; // 摆动轨迹参数 +}; + +// 搜孔平面 +enum class SearchPlane_C +{ + yz = 1, + xz = 2, + xy = 3 +}; + +// 搜孔参数 +struct SearchParams_C +{ + SearchPlane_C search_plane = SearchPlane_C::xy; // 搜孔平面 + double hole_diameter = 0.0; // 轴孔直径 m + double search_range = 0.1; // 搜孔范围 + double search_time = 1000; // 搜孔时间限制 ms + GuideTrajType_C guide_traj_type = NONE; // 搜孔过程主动轨迹类型 + double search_max_force = 10; // 最大力限制 + double search_guide_force = 1; // 搜孔引导力 + // 力控调节参数 + double search_damp_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + double search_stiff_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + + SpiralTrajParams_C spiral_param; + WeaveTrajParams_C weave_param; +}; + +struct ConstantParams_C +{ + TaskFrameType_C frame_type = TaskFrameType_MOTION_FORCE; + double feature[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + bool compliance[6] = { true, true, true, true, true, true }; + double wrench[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + + // 力控调节参数 + double env_stiff[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + double damp_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + double stiff_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + + double contact_threshold[6] = { + 1.0, 1.0, 1.0, 0.2, 0.2, 0.2 + }; // 接触判断阈值 + double constant_time = 5000; // 默认5s +}; + +struct TouchParams_C +{ + TaskFrameType_C frame_type = TaskFrameType_TOOL_FORCE; + double feature[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + bool compliance[6] = { true, true, true, true, true, true }; + double wrench[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + double env_stiff[6] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // std::vector damp_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, + // 0.5 }; + double stiff_scale[6] = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + double speed[6] = { 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 }; + double distance = 0.0; + double touch_time = 1000; // 默认5s +}; + +#ifdef __cplusplus +extern "C" { +#endif + +ARCS_ABI FC_HANDLER create_fc_ptr(void *rpc, void *rtde); +ARCS_ABI void destroy_fc_ptr(void *ptr); + +ARCS_ABI int getTaskForce(FORCE_CONTROL_HANDLER h, TaskFrameType_C type, + const double *feature, double *result); + +ARCS_ABI int fcTouch(FORCE_CONTROL_HANDLER h, const TouchParams_C ¶m); + +ARCS_ABI int fcConstant(FORCE_CONTROL_HANDLER h, const ConstantParams_C ¶m); + +ARCS_ABI int fcInsert(FORCE_CONTROL_HANDLER h, const InsertParams_C ¶m); + +ARCS_ABI int fcSearch(FORCE_CONTROL_HANDLER h, const SearchParams_C ¶m); + +ARCS_ABI int fcWaitCondition(FORCE_CONTROL_HANDLER h); + +ARCS_ABI int fcExit(FORCE_CONTROL_HANDLER h); + +// ARCS_ABI void registerStateCallBack(std::function func); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/tcp_auto_calib.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/tcp_auto_calib.h new file mode 100644 index 00000000..067567c5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/tcp_auto_calib.h @@ -0,0 +1,138 @@ +#ifndef TCP_AUTO_CALIB_H +#define TCP_AUTO_CALIB_H + +#include +#include + +#include + +using namespace arcs::common_interface; + +namespace arcs { +namespace aubo_sdk { + +class RtdeClient; +class RpcClient; +using RtdeClientPtr = std::shared_ptr; +using RpcClientPtr = std::shared_ptr; + +using Vec3 = std::array; + +class ARCS_ABI TcpAutoCalib +{ +public: + TcpAutoCalib(RpcClientPtr rpc, RtdeClientPtr rtde); + + /** + * @brief setTcpAutoCalibParam + * 设置TCP自动标定参数 + * @param circle_radius 圆周运动半径,单位:m,默认值:0.01m + * @param second_plane_offset 第二个圆周运动相对于第一个圆周运动在当前TCP + * Z+方向偏移的距离,单位:m,默认值:0.01m + * @param move_line_speed 运动速度,单位:m/s,默认值:0.005m/s + * @param move_line_r_speed 运动角速度,单位:rad/s,默认值:0.05rad/s + * @param rotation_angle + * TCP自动标定计算姿态角度,单位:rad,默认值:0.523599(30°) + * @param depth_offset + * TCP自动标定向下移动距离,单位:m,默认值:0.005m + * @return + */ + int setTcpAutoCalibParam(const double circle_radius, + const double second_plane_offset, + const double move_line_speed, + const double move_line_r_speed, + const double rotation_angle, + const double depth_offset); + + /** + * @brief tcpAutoCalibrate + * 基于交叉激光传感器的TCP位置自动标定 + * 要求: + * 1. 调用该接口前需要设置估计的TCP位置 + * 2. 示教TCP位于传感器中心并且TCP Z方向垂直于传感器平面 + * @param io_index_1 DI索引 + * @param io_index_2 DI索引 + * @return 成功返回0和TCP位置(x,y,z),失败返回-1 + */ + ResultWithErrno tcpAutoCalibrate(const int io_index_1, + const int io_index_2); + + /** + * @brief tcpAutoCorrect + * 基于交叉激光传感器的TCP自动纠偏 + * 要求: + * 1. 调用该接口前需要示教TCP位于传感器中心并且TCP Z方向垂直于传感器平面 + * @param sensor_pose 传感器位姿 + * @param io_index_1 DI索引 + * @param io_index_2 DI索引 + * @return 成功返回0和纠偏后的TCP,失败返回-1 + */ + ResultWithErrno tcpAutoCorrect(const std::vector &sensor_pose, + const int io_index_1, const int io_index_2); + + /** + * @brief calibrateSensorPoseWithTCP + * 已知TCP标定传感器位姿 + * 要求: + * 1. 调用该接口前需要示教TCP位于传感器中心并且TCP Z方向垂直于传感器平面 + * @param io_index_1 DI索引 + * @param io_index_2 DI索引 + * @return 成功返回0和传感器位姿,失败返回-1 + */ + ResultWithErrno calibrateSensorPoseWithTCP(const int io_index_1, + const int io_index_2); + +private: + void subscribeRealtimeState(); + + std::pair>, + std::vector>> + runTwoCirclesCapture(const bool checkOccl = true); + + std::vector> runOneCircleAndCaptureFlange( + const std::vector &circle_center, const bool flag = true); + + std::vector> genCirclePoints( + const std::vector ¢er, double radius, int npts, + bool is_offset = false); + + void moveTcpPoseAlignZ(const Vec3 &target_z); + + std::vector alignTcpZToBaseZ(); + + std::vector probeAlongAxisFromPointWithZOffset( + const Vec3 &axis_origin, const Vec3 &axis_z, double start_along_z); + + int waitArrival(); + + int waitDIEdgeChanged(const int timeout); + +private: + double second_plane_offset_ = 0.01; + double circle_radius_ = 0.01; + double move_line_acc_ = 0.8; + double move_line_speed_ = 0.005; + double move_line_r_speed_ = 0.05; + double rotation_angle_ = 0.523599; // TCP自动标定计算位姿角度,默认30° + double depth_offset_ = 0.005; // TCP自动标定向下移动距离 + + RpcClientPtr rpc_; + RtdeClientPtr rtde_; + RobotInterfacePtr robot_; + int task_id_{ -1 }; + + std::atomic_int io_index_1_{ 0 }; + std::atomic_int io_index_2_{ 0 }; + + std::shared_mutex tool_poses_mutex_; + std::vector> tool_poses_; + std::atomic_bool io_1_state_{ false }; + std::atomic_bool io_2_state_{ false }; + + bool offset_45_{ false }; +}; + +} // namespace aubo_sdk +} // namespace arcs + +#endif // TCP_AUTO_CALIB_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/type_convert.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/type_convert.h new file mode 100644 index 00000000..b5156202 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/include/skill_interface/type_convert.h @@ -0,0 +1,135 @@ +#ifndef AUBO_SDK_FORCE_CONTROL_TYPE_CONVERT_C_H +#define AUBO_SDK_FORCE_CONTROL_TYPE_CONVERT_C_H + +#include +#include + +// 用于将SpiralTrajParams_C转化为SpiralTrajParams +inline arcs::aubo_sdk::ForceControl::SpiralTrajParams convertToSpiralTrajParams( + const SpiralTrajParams_C &source) +{ + arcs::aubo_sdk::ForceControl::SpiralTrajParams result; + + result.step = source.step; + result.direction = source.direction; + result.plane = (arcs::aubo_sdk::ForceControl::SpiralPlane)source.plane; + result.spiral = source.spiral; + result.helix = source.helix; + result.radius = source.radius; + + return result; +} + +// 用于将WeaveTrajParams_C转化为WeaveTrajParams +inline arcs::aubo_sdk::ForceControl::WeaveTrajParams convertToWeaveTrajParams( + const WeaveTrajParams_C &source) +{ + arcs::aubo_sdk::ForceControl::WeaveTrajParams result; + + result.step = source.step; + result.amplitude = source.amplitude; + result.direction = + (arcs::aubo_sdk::ForceControl::WeaveSelect)source.direction; + result.hold_distance = source.hold_distance; + result.angle = source.angle; + result.type = source.type; + + return result; +} + +// 用于将TouchParams_C转化为TouchParams +inline arcs::aubo_sdk::ForceControl::TouchParams convertToTouchParams( + const TouchParams_C &source) +{ + arcs::aubo_sdk::ForceControl::TouchParams result; + + result.frame_type = + (arcs::common_interface::TaskFrameType)source.frame_type; + + for (int i = 0; i < 6; i++) { + result.feature[i] = source.feature[i]; + result.compliance[i] = source.compliance[i]; + result.wrench[i] = source.wrench[i]; + result.env_stiff[i] = source.env_stiff[i]; + result.stiff_scale[i] = source.stiff_scale[i]; + result.speed[i] = source.speed[i]; + } + result.distance = source.distance; + result.touch_time = source.touch_time; + + return result; +} + +inline arcs::aubo_sdk::ForceControl::ConstantParams convertToConstantParams( + const ConstantParams_C &source) +{ + arcs::aubo_sdk::ForceControl::ConstantParams result; + + result.frame_type = + (arcs::common_interface::TaskFrameType)source.frame_type; + for (int i = 0; i < 6; i++) { + result.feature[i] = source.feature[i]; + result.compliance[i] = source.compliance[i]; + result.wrench[i] = source.wrench[i]; + result.env_stiff[i] = source.env_stiff[i]; + result.damp_scale[i] = source.damp_scale[i]; + result.stiff_scale[i] = source.stiff_scale[i]; + result.contact_threshold[i] = source.contact_threshold[i]; + } // 接触判断阈值 + result.constant_time = source.constant_time; // 默认5sams result; + + return result; +} + +inline arcs::aubo_sdk::ForceControl::InsertParams convertToInsertParams( + const InsertParams_C &source) +{ + arcs::aubo_sdk::ForceControl::InsertParams result; + + result.insert_select = + (arcs::aubo_sdk::ForceControl::InsertSelect)source.insert_select; + result.hole_diameter = source.hole_diameter; + result.insert_max_speed = source.insert_max_speed; + result.insert_time = source.insert_time; + result.guide_traj_type = + (arcs::aubo_sdk::ForceControl::GuideTrajType)source.guide_traj_type; + result.insert_max_depth = source.insert_max_depth; + result.insert_guide_force = source.insert_guide_force; + for (int i = 0; i < 6; i++) { + result.insert_max_force[i] = source.insert_max_force[i]; + result.insert_damp_scale[i] = source.insert_damp_scale[i]; + result.insert_stiff_scale[i] = source.insert_stiff_scale[i]; + } + + result.spiral_param = convertToSpiralTrajParams(source.spiral_param); + result.weave_param = convertToWeaveTrajParams(source.weave_param); + + return result; +} + +// 用于将SearchParams_C转化为SearchParams +inline arcs::aubo_sdk::ForceControl::SearchParams convertToSearchParams( + const SearchParams_C &source) +{ + arcs::aubo_sdk::ForceControl::SearchParams result; + + result.search_plane = + (arcs::aubo_sdk::ForceControl::SearchPlane)source.search_plane; + result.hole_diameter = source.hole_diameter; + result.search_range = source.search_range; + result.search_time = source.search_time; + result.guide_traj_type = + (arcs::aubo_sdk::ForceControl::GuideTrajType)source.guide_traj_type; + result.search_max_force = source.search_max_force; + result.search_guide_force = source.search_guide_force; + for (int i = 0; i < 6; i++) { + result.search_damp_scale[i] = source.search_damp_scale[i]; + result.search_stiff_scale[i] = source.search_stiff_scale[i]; + } + result.spiral_param = convertToSpiralTrajParams(source.spiral_param); + result.weave_param = convertToWeaveTrajParams(source.weave_param); + + return result; +} + +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfig.cmake b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfig.cmake new file mode 100644 index 00000000..4ee1eb53 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfig.cmake @@ -0,0 +1,11 @@ +include(CMakeFindDependencyMacro) + +# 如果想要获取Config阶段的变量,可以使用这个 +# set(my-config-var ) + +# 如果你的项目需要依赖其他的库,可以使用下面语句,用法与find_package相同 +# find_dependency(MYDEP REQUIRED) + +# Any extra setup +# Add the targets file +include("${CMAKE_CURRENT_LIST_DIR}/aubo_sdkTargets.cmake") diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfigVersion.cmake b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfigVersion.cmake new file mode 100644 index 00000000..00f8ba94 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkConfigVersion.cmake @@ -0,0 +1,48 @@ +# 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. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "0.26.0") + +if (PACKAGE_FIND_VERSION_RANGE) + # Package version must be in the requested version range + if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + endif() +else() + if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + 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/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-debug.cmake b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-debug.cmake new file mode 100644 index 00000000..da9656a7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-debug.cmake @@ -0,0 +1,29 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "aubo_sdk::aubo_sdk" for configuration "Debug" +set_property(TARGET aubo_sdk::aubo_sdk APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(aubo_sdk::aubo_sdk PROPERTIES + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libaubo_sdkd.so" + IMPORTED_SONAME_DEBUG "libaubo_sdkd.so" + ) + +list(APPEND _IMPORT_CHECK_TARGETS aubo_sdk::aubo_sdk ) +list(APPEND _IMPORT_CHECK_FILES_FOR_aubo_sdk::aubo_sdk "${_IMPORT_PREFIX}/lib/libaubo_sdkd.so" ) + +# Import target "aubo_sdk::robot_proxy" for configuration "Debug" +set_property(TARGET aubo_sdk::robot_proxy APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(aubo_sdk::robot_proxy PROPERTIES + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/librobot_proxyd.so" + IMPORTED_SONAME_DEBUG "librobot_proxyd.so" + ) + +list(APPEND _IMPORT_CHECK_TARGETS aubo_sdk::robot_proxy ) +list(APPEND _IMPORT_CHECK_FILES_FOR_aubo_sdk::robot_proxy "${_IMPORT_PREFIX}/lib/librobot_proxyd.so" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-release.cmake b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-release.cmake new file mode 100644 index 00000000..b050b4e8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets-release.cmake @@ -0,0 +1,29 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Release". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "aubo_sdk::aubo_sdk" for configuration "Release" +set_property(TARGET aubo_sdk::aubo_sdk APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(aubo_sdk::aubo_sdk PROPERTIES + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libaubo_sdk.so" + IMPORTED_SONAME_RELEASE "libaubo_sdk.so" + ) + +list(APPEND _IMPORT_CHECK_TARGETS aubo_sdk::aubo_sdk ) +list(APPEND _IMPORT_CHECK_FILES_FOR_aubo_sdk::aubo_sdk "${_IMPORT_PREFIX}/lib/libaubo_sdk.so" ) + +# Import target "aubo_sdk::robot_proxy" for configuration "Release" +set_property(TARGET aubo_sdk::robot_proxy APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(aubo_sdk::robot_proxy PROPERTIES + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/librobot_proxy.so" + IMPORTED_SONAME_RELEASE "librobot_proxy.so" + ) + +list(APPEND _IMPORT_CHECK_TARGETS aubo_sdk::robot_proxy ) +list(APPEND _IMPORT_CHECK_FILES_FOR_aubo_sdk::robot_proxy "${_IMPORT_PREFIX}/lib/librobot_proxy.so" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets.cmake b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets.cmake new file mode 100644 index 00000000..39078bbe --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/cmake/aubo_sdk/aubo_sdkTargets.cmake @@ -0,0 +1,114 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5) + message(FATAL_ERROR "CMake >= 2.6.0 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.6...3.18) +#---------------------------------------------------------------- +# 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 aubo_sdk::aubo_sdk aubo_sdk::common_interface aubo_sdk::robot_proxy) + 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 aubo_sdk::aubo_sdk +add_library(aubo_sdk::aubo_sdk SHARED IMPORTED) + +set_target_properties(aubo_sdk::aubo_sdk PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "aubo_sdk::common_interface" +) + +# Create imported target aubo_sdk::common_interface +add_library(aubo_sdk::common_interface INTERFACE IMPORTED) + +set_target_properties(aubo_sdk::common_interface PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target aubo_sdk::robot_proxy +add_library(aubo_sdk::robot_proxy SHARED IMPORTED) + +set_target_properties(aubo_sdk::robot_proxy PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "aubo_sdk::aubo_sdk;Qt5::Core" +) + +if(CMAKE_VERSION VERSION_LESS 3.0.0) + message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.") +endif() + +# Load information for each installed configuration. +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/aubo_sdkTargets-*.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/aubo_sdk/v0.27.1/lib/libaubo_sdk.so b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libaubo_sdk.so new file mode 100644 index 00000000..17d357f0 Binary files /dev/null and b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libaubo_sdk.so differ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libaubo_sdkd.so b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libaubo_sdkd.so new file mode 100644 index 00000000..063efed8 Binary files /dev/null and b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libaubo_sdkd.so differ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxy.so b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxy.so new file mode 100644 index 00000000..11ff15ae Binary files /dev/null and b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxy.so differ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxyd.so b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxyd.so new file mode 100644 index 00000000..dd54cd32 Binary files /dev/null and b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/librobot_proxyd.so differ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6 b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6 new file mode 120000 index 00000000..470f7733 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6 @@ -0,0 +1 @@ +libstdc++.so.6.0.25 \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6.0.25 b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6.0.25 new file mode 100644 index 00000000..c47b099c Binary files /dev/null and b/dependency/x86/third_party/aubo_sdk/v0.27.1/lib/libstdc++.so.6.0.25 differ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/CMakeLists.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/CMakeLists.txt new file mode 100644 index 00000000..578da520 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/CMakeLists.txt @@ -0,0 +1,25 @@ +cmake_minimum_required(VERSION 3.5) +project(aubo_interfaces) + +find_package(ament_cmake REQUIRED) +find_package(rosidl_default_generators REQUIRED) +find_package(builtin_interfaces REQUIRED) + +set(INTERFACE_LIST_FILE "${CMAKE_CURRENT_SOURCE_DIR}/generated_interfaces.txt") + +if(EXISTS "${INTERFACE_LIST_FILE}") + file(STRINGS "${INTERFACE_LIST_FILE}" INTERFACES) +else() + message(FATAL_ERROR "generated_interfaces.txt not found: ${INTERFACE_LIST_FILE}") +endif() + +list(FILTER INTERFACES EXCLUDE REGEX "^[ \t]*$") + +rosidl_generate_interfaces(${PROJECT_NAME} + ${INTERFACES} + DEPENDENCIES builtin_interfaces +) + +ament_export_dependencies(rosidl_default_runtime) +ament_package() + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/action/ServoMode.action b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/action/ServoMode.action new file mode 100644 index 00000000..3801a5e4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/action/ServoMode.action @@ -0,0 +1,11 @@ +string robot_name +uint32 dof +float64 watchdog_timeout +--- +int32 code +string message +uint64 accepted_commands +--- +bool active +uint64 accepted_commands +float64[] target_positions diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/generated_interfaces.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/generated_interfaces.txt new file mode 100644 index 00000000..1bb2d8f3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/generated_interfaces.txt @@ -0,0 +1,664 @@ +srv/PoseAdd.srv +srv/PoseSub.srv +srv/InterpolatePose.srv +srv/PoseTrans.srv +srv/PoseTransInv.srv +srv/PoseInverse.srv +srv/PoseDistance.srv +srv/PoseAngleDistance.srv +srv/PoseEqual.srv +srv/TransferRefFrame.srv +srv/PoseRotation.srv +srv/RpyToQuaternion.srv +srv/QuaternionToRpy.srv +srv/TcpOffsetIdentify.srv +srv/CalibrateCoordinate.srv +srv/CalculateCircleFourthPoint.srv +srv/ForceTrans.srv +srv/GetDeltaPoseBySensorDistance.srv +srv/DeltaPoseTrans.srv +srv/DeltaPoseAdd.srv +srv/SerialOpen.srv +srv/SerialClose.srv +srv/SerialReadByte.srv +srv/SerialReadByteList.srv +srv/SerialReadString.srv +srv/SerialSendByte.srv +srv/SerialSendInt.srv +srv/SerialSendLine.srv +srv/SerialSendString.srv +srv/SerialSendAllString.srv +srv/SocketOpen.srv +srv/SocketClose.srv +srv/SocketReadAsciiFloat.srv +srv/SocketReadBinaryInteger.srv +srv/SocketReadByteList.srv +srv/SocketReadString.srv +srv/SocketReadAllString.srv +srv/SocketSendByte.srv +srv/SocketSendInt.srv +srv/SocketSendLine.srv +srv/SocketSendString.srv +srv/SocketSendAllString.srv +srv/SocketHasConnected.srv +srv/GetControlSoftwareVersionCode.srv +srv/GetControlSoftwareFullVersion.srv +srv/GetInterfaceVersionCode.srv +srv/GetControlSoftwareBuildDate.srv +srv/GetControlSoftwareVersionHash.srv +srv/GetControlSystemTime.srv +srv/NewTask.srv +srv/DeleteTask.srv +srv/DetachTask.srv +srv/IsTaskAlive.srv +srv/GetTaskQueueSize.srv +srv/Nop.srv +srv/SwitchTask.srv +srv/SetLabel.srv +srv/SetPlanContext.srv +srv/GotoLine.srv +srv/GetAdvancePlanContext.srv +srv/GetAdvancePtr.srv +srv/GetMainPtr.srv +srv/GetInterpPtr.srv +srv/GetPlanContext.srv +srv/GetExecutionStatus.srv +srv/GetExecutionStatus1.srv +srv/LoadProgram.srv +srv/PreloadProgram.srv +srv/GetPreloadProgram.srv +srv/ClearPreloadPrograms.srv +srv/RunProgram.srv +srv/Start.srv +srv/Stop.srv +srv/Abort.srv +srv/Pause.srv +srv/Step.srv +srv/SetResumeWait.srv +srv/Resume.srv +srv/EnterCritical.srv +srv/ExitCritical.srv +srv/ArbitraryResume.srv +srv/GetStatus.srv +srv/GetRuntimeState.srv +srv/SetBreakPoint.srv +srv/RemoveBreakPoint.srv +srv/ClearBreakPoints.srv +srv/TimerStart.srv +srv/TimerStop.srv +srv/TimerReset.srv +srv/TimerDelete.srv +srv/GetTimer.srv +srv/TriggBegin.srv +srv/TriggEnd.srv +srv/TriggInterrupt.srv +srv/GetTriggInterrupts.srv +srv/GetBoolInput.srv +srv/SetBoolInput.srv +srv/GetInt32Input.srv +srv/SetInt32Input.srv +srv/GetFloatInput.srv +srv/SetFloatInput.srv +srv/GetDoubleInput.srv +srv/SetDoubleInput.srv +srv/GetBoolOutput.srv +srv/SetBoolOutput.srv +srv/GetInt32Output.srv +srv/SetInt32Output.srv +srv/GetFloatOutput.srv +srv/SetFloatOutput.srv +srv/GetDoubleOutput.srv +srv/SetDoubleOutput.srv +srv/GetInt16Register.srv +srv/SetInt16Register.srv +srv/GetInt16RegisterBit.srv +srv/SetInt16RegisterBit.srv +srv/VariableUpdated.srv +srv/HasNamedVariable.srv +srv/GetNamedVariableType.srv +srv/GetBool.srv +srv/SetBool.srv +srv/GetVecChar.srv +srv/SetVecChar.srv +srv/GetInt32.srv +srv/SetInt32.srv +srv/GetVecInt32.srv +srv/SetVecInt32.srv +srv/GetFloat.srv +srv/SetFloat.srv +srv/GetVecFloat.srv +srv/SetVecFloat.srv +srv/GetDouble.srv +srv/SetDouble.srv +srv/GetVecDouble.srv +srv/SetVecDouble.srv +srv/GetString.srv +srv/SetString.srv +srv/ClearNamedVariable.srv +srv/SetWatchDog.srv +srv/GetWatchDogAction.srv +srv/GetWatchDogTimeout.srv +srv/ModbusAddSignal.srv +srv/ModbusDeleteSignal.srv +srv/ModbusDeleteAllSignals.srv +srv/ModbusGetSignalStatus.srv +srv/ModbusGetSignalNames.srv +srv/ModbusGetSignalTypes.srv +srv/ModbusGetSignalValues.srv +srv/ModbusGetSignalErrors.srv +srv/ModbusSendCustomCommand.srv +srv/ModbusSetDigitalInputAction.srv +srv/ModbusSetOutputRunstate.srv +srv/ModbusSetOutputSignal.srv +srv/ModbusSetOutputSignal1.srv +srv/ModbusSetOutputSignalWithTimeout.srv +srv/ModbusSetOutputSignalPulse.srv +srv/ModbusSetSignalUpdateFrequency.srv +srv/ModbusGetSignalIndex.srv +srv/ModbusGetSignalError.srv +srv/GetModbusDeviceStatus.srv +srv/AddModbusEncoder.srv +srv/AddInt32RegEncoder.srv +srv/DeleteVirtualEncoder.srv +srv/SyncMoveOn.srv +srv/SyncMoveSegment.srv +srv/SyncMoveOff.srv +srv/SyncMoveUndo.srv +srv/WaitSyncTasks.srv +srv/IsSyncMoveOn.srv +srv/SyncMoveSuspend.srv +srv/SyncMoveResume.srv +srv/FrameAdd.srv +srv/FrameAttach.srv +srv/FrameDeleteAll.srv +srv/FrameDelete.srv +srv/FrameMove.srv +srv/FrameGetPose.srv +srv/FrameConvertPose.srv +srv/FrameExist.srv +srv/FrameGetParent.srv +srv/FrameGetChildren.srv +srv/AxisGroupAdd.srv +srv/AxisGroupDelete.srv +srv/AxisGroupAddAxis.srv +srv/AxisGroupUpdateAxis.srv +srv/AxisGroupGetAxisIndex.srv +srv/AxisGroupGetAxisName.srv +srv/AxisGroupGetTargetPositions.srv +srv/AxisGroupGetActualPositions.srv +srv/AxisGroupOffsetPositions.srv +srv/AxisGroupMoveJoint.srv +srv/AxisGroupSpeedJoint.srv +srv/Alarm.srv +srv/Popup.srv +srv/Textmsg.srv +srv/Notify.srv +srv/Peek.srv +srv/GetDof.srv +srv/GetName.srv +srv/GetCycletime.srv +srv/SetSlowDownFraction.srv +srv/GetSlowDownFraction.srv +srv/GetRobotType.srv +srv/GetRobotSubType.srv +srv/GetControlBoxType.srv +srv/GetDefaultToolAcc.srv +srv/GetDefaultToolSpeed.srv +srv/GetDefaultJointAcc.srv +srv/GetDefaultJointSpeed.srv +srv/SetMountingPose.srv +srv/GetMountingPose.srv +srv/SetCollisionLevel.srv +srv/GetCollisionLevel.srv +srv/SetCollisionStopType.srv +srv/GetCollisionStopType.srv +srv/SetHomePosition.srv +srv/GetHomePosition.srv +srv/SetFreedriveDamp.srv +srv/GetFreedriveDamp.srv +srv/SetHandguidDamp.srv +srv/GetHandguidDamp.srv +srv/GetTcpForceSensorNames.srv +srv/SelectTcpForceSensor.srv +srv/HasTcpForceSensor.srv +srv/SetTcpForceOffset.srv +srv/GetTcpForceOffset.srv +srv/GetBaseForceSensorNames.srv +srv/SelectBaseForceSensor.srv +srv/HasBaseForceSensor.srv +srv/SetBaseForceOffset.srv +srv/GetBaseForceOffset.srv +srv/SetPersistentParameters.srv +srv/SetKinematicsCompensate.srv +srv/SetHardwareCustomParameters.srv +srv/GetHardwareCustomParameters.srv +srv/SetRobotZero.srv +srv/GetKinematicsParam.srv +srv/GetKinematicsCompensate.srv +srv/GetSafetyParametersCheckSum.srv +srv/ConfirmSafetyParameters.srv +srv/CalcSafetyParametersCheckSum.srv +srv/GetJointMaxPositions.srv +srv/GetJointMinPositions.srv +srv/GetJointMaxSpeeds.srv +srv/GetJointMaxAccelerations.srv +srv/GetTcpMaxSpeeds.srv +srv/GetTcpMaxAccelerations.srv +srv/ToolSpaceInRange.srv +srv/SetPayload.srv +srv/GetPayload.srv +srv/GetTcpOffset.srv +srv/GetGravity.srv +srv/SetGravity.srv +srv/SetTcpOffset.srv +srv/SetToolInertial.srv +srv/FirmwareUpdate.srv +srv/GetFirmwareUpdateProcess.srv +srv/SetTcpForceSensorPose.srv +srv/GetTcpForceSensorPose.srv +srv/GetLimitJointMaxPositions.srv +srv/GetLimitJointMinPositions.srv +srv/GetLimitJointMaxSpeeds.srv +srv/GetLimitJointMaxAccelerations.srv +srv/GetLimitTcpMaxSpeed.srv +srv/GetSafeguardStopType.srv +srv/GetSafeguardStopSource.srv +srv/AttachRobotBaseTo.srv +srv/GetRobotBaseParent.srv +srv/SetWorkObjectData.srv +srv/GetRobotEmergencyStopSource.srv +srv/GetSelectedTcpForceSensorName.srv +srv/AttachWeldingGun.srv +srv/SetCollisionThreshold.srv +srv/GetCollisionThreshold.srv +srv/EnableAxisGroup.srv +srv/DisableAxisGroup.srv +srv/EnableEndCollisionCheck.srv +srv/IsEndCollisionCheckEnabled.srv +srv/GetEqradius.srv +srv/SetEqradius.srv +srv/GetSpeedFraction.srv +srv/SetSpeedFraction.srv +srv/SpeedFractionCritical.srv +srv/IsSpeedFractionCritical.srv +srv/IsBlending.srv +srv/PathOffsetEnable.srv +srv/PathOffsetSet.srv +srv/PathOffsetDisable.srv +srv/JointOffsetEnable.srv +srv/JointOffsetSet.srv +srv/JointOffsetDisable.srv +srv/GetTrajectoryQueueSize.srv +srv/GetQueueSize.srv +srv/GetExecId.srv +srv/GetDuration.srv +srv/GetMotionLeftTime.srv +srv/GetProgress.srv +srv/SetWorkObjectHold.srv +srv/GetWorkObjectHold.srv +srv/GetPauseJointPositions.srv +srv/SetResumeStartPoint.srv +srv/GetResumeMode.srv +srv/SetServoMode.srv +srv/IsServoModeEnabled.srv +srv/SetServoModeSelect.srv +srv/GetServoModeSelect.srv +srv/ServoJoint.srv +srv/ServoCartesian.srv +srv/ServoJointWithAxes.srv +srv/ServoJointWithAxisGroup.srv +srv/ServoCartesianWithAxes.srv +srv/ServoCartesianWithAxisGroup.srv +srv/TrackJoint.srv +srv/TrackCartesian.srv +srv/FollowJoint.srv +srv/FollowLine.srv +srv/SpeedJoint.srv +srv/ResumeSpeedJoint.srv +srv/SpeedLine.srv +srv/ResumeSpeedLine.srv +srv/MoveSpline.srv +srv/MoveJoint.srv +srv/MoveJointWithAxisGroup.srv +srv/ResumeMoveJoint.srv +srv/MoveLine.srv +srv/MoveLineWithAxisGroup.srv +srv/MoveProcess.srv +srv/ResumeMoveLine.srv +srv/MoveCircle.srv +srv/MoveCircleWithAxisGroup.srv +srv/SetCirclePathMode.srv +srv/MoveCircle2.srv +srv/PathBufferAlloc.srv +srv/PathBufferAppend.srv +srv/PathBufferEval.srv +srv/PathBufferValid.srv +srv/PathBufferFree.srv +srv/PathBufferList.srv +srv/MovePathBuffer.srv +srv/MoveIntersection.srv +srv/StopJoint.srv +srv/ResumeStopJoint.srv +srv/StopLine.srv +srv/ResumeStopLine.srv +srv/WeaveStart.srv +srv/WeaveEnd.srv +srv/StorePath.srv +srv/StopMove.srv +srv/StartMove.srv +srv/ClearPath.srv +srv/RestoPath.srv +srv/SetFuturePointSamplePeriod.srv +srv/GetFuturePathPointsJoint.srv +srv/ConveyorTrackCircle.srv +srv/ConveyorTrackLine.srv +srv/ConveyorTrackStop.srv +srv/ConveyorTrackSwitch.srv +srv/HasItemOnConveyorToTrack.srv +srv/ConveyorTrackCreatItem.srv +srv/SetConveyorTrackEncoder.srv +srv/SetConveyorTrackCompensate.srv +srv/SetConveyorTrackLimit.srv +srv/SetConveyorTrackStartWindow.srv +srv/SetConveyorTrackSensorOffset.srv +srv/SetConveyorTrackSyncSeparation.srv +srv/IsConveyorTrackExceed.srv +srv/IsConveyorTrackSync.srv +srv/ConveyorTrackClearItems.srv +srv/GetConveyorTrackQueue.srv +srv/GetConveyorTrackNextItem.srv +srv/MoveSpiral.srv +srv/PathOffsetLimits.srv +srv/PathOffsetCoordinate.srv +srv/GetLookAheadSize.srv +srv/SetLookAheadSize.srv +srv/PathOffsetSupv.srv +srv/PathBufferFilter.srv +srv/WeaveUpdateParameters.srv +srv/EnableJointSoftServo.srv +srv/DisableJointSoftServo.srv +srv/IsJointSoftServoEnabled.srv +srv/EnableVibrationSuppress.srv +srv/DisbaleVibrationSuppress.srv +srv/SetTimeOptimalEnable.srv +srv/IsTimeOptimalEnabled.srv +srv/IsSupportedTimeOptimal.srv +srv/SetTcpMaxLinearVelocity.srv +srv/GetTcpMaxLinearVelocity.srv +srv/ResetTcpMaxLinearVelocity.srv +srv/SetEndPath.srv +srv/FcEnable.srv +srv/FcDisable.srv +srv/IsFcEnabled.srv +srv/SetTargetForce.srv +srv/FcSetSensorThresholds.srv +srv/FcSetSensorLimits.srv +srv/GetFcSensorThresholds.srv +srv/GetFcSensorLimits.srv +srv/SetDynamicModel1.srv +srv/FcCalDynamicModel.srv +srv/SetDynamicModelSearch.srv +srv/SetDynamicModelInsert.srv +srv/SetDynamicModelContact.srv +srv/SetDynamicModel.srv +srv/GetDynamicModel.srv +srv/SetCondForce.srv +srv/SetCondOrient.srv +srv/SetCondPlane.srv +srv/SetCondCylinder.srv +srv/SetCondSphere.srv +srv/SetCondTcpSpeed.srv +srv/SetCondActive.srv +srv/SetCondDistance.srv +srv/SetCondAdvanced.srv +srv/IsCondFullfiled.srv +srv/SetSupvForce.srv +srv/SetSupvOrient.srv +srv/SetSupvPosBox.srv +srv/SetSupvPosCylinder.srv +srv/SetSupvPosSphere.srv +srv/SetSupvReoriSpeed.srv +srv/SetSupvTcpSpeed.srv +srv/SetLpFilter.srv +srv/ResetLpFilter.srv +srv/SpeedChangeTune.srv +srv/SpeedChangeEnable.srv +srv/SpeedChangeDisable.srv +srv/SetDamping.srv +srv/ResetDamping.srv +srv/SoftFloatEnable.srv +srv/SoftFloatDisable.srv +srv/IsSoftFloatEnabled.srv +srv/SetSoftFloatParams.srv +srv/ToolContact.srv +srv/GetActualJointPositionsHistory.srv +srv/GetStandardDigitalInputNum.srv +srv/GetToolDigitalInputNum.srv +srv/GetConfigurableDigitalInputNum.srv +srv/GetStandardDigitalOutputNum.srv +srv/GetToolDigitalOutputNum.srv +srv/SetToolIoInput.srv +srv/IsToolIoInput.srv +srv/GetConfigurableDigitalOutputNum.srv +srv/GetStandardAnalogInputNum.srv +srv/GetToolAnalogInputNum.srv +srv/GetStandardAnalogOutputNum.srv +srv/GetToolAnalogOutputNum.srv +srv/SetDigitalInputActionDefault.srv +srv/SetStandardDigitalInputAction.srv +srv/SetToolDigitalInputAction.srv +srv/SetConfigurableDigitalInputAction.srv +srv/GetStandardDigitalInputAction.srv +srv/GetToolDigitalInputAction.srv +srv/GetConfigurableDigitalInputAction.srv +srv/SetDigitalOutputRunstateDefault.srv +srv/SetStandardDigitalOutputRunstate.srv +srv/SetToolDigitalOutputRunstate.srv +srv/SetConfigurableDigitalOutputRunstate.srv +srv/GetStandardDigitalOutputRunstate.srv +srv/GetToolDigitalOutputRunstate.srv +srv/GetConfigurableDigitalOutputRunstate.srv +srv/SetStandardAnalogOutputRunstate.srv +srv/SetToolAnalogOutputRunstate.srv +srv/GetStandardAnalogOutputRunstate.srv +srv/GetToolAnalogOutputRunstate.srv +srv/SetDigitalOutputAfterEStopDefault.srv +srv/SetAnalogOutputAfterEStopDefault.srv +srv/SetStandardDigitalOutputAfterEStop.srv +srv/SetConfigurableDigitalOutputAfterEStop.srv +srv/SetStandardAnalogOutputAfterEStop.srv +srv/SetStandardAnalogInputDomain.srv +srv/SetToolAnalogInputDomain.srv +srv/GetStandardAnalogInputDomain.srv +srv/GetToolAnalogInputDomain.srv +srv/SetStandardAnalogOutputDomain.srv +srv/SetToolAnalogOutputDomain.srv +srv/SetToolVoltageOutputDomain.srv +srv/GetToolVoltageOutputDomain.srv +srv/GetStandardAnalogOutputDomain.srv +srv/GetToolAnalogOutputDomain.srv +srv/SetStandardDigitalOutput.srv +srv/SetStandardDigitalOutputPulse.srv +srv/SetToolDigitalOutput.srv +srv/SetToolDigitalOutputPulse.srv +srv/SetConfigurableDigitalOutput.srv +srv/SetConfigurableDigitalOutputPulse.srv +srv/SetStandardAnalogOutput.srv +srv/SetToolAnalogOutput.srv +srv/GetStandardDigitalInput.srv +srv/GetStandardDigitalInputs.srv +srv/GetToolDigitalInput.srv +srv/GetToolDigitalInputs.srv +srv/GetConfigurableDigitalInput.srv +srv/GetConfigurableDigitalInputs.srv +srv/GetStandardAnalogInput.srv +srv/GetToolAnalogInput.srv +srv/GetStandardDigitalOutput.srv +srv/GetStandardDigitalOutputs.srv +srv/GetToolDigitalOutput.srv +srv/GetToolDigitalOutputs.srv +srv/GetConfigurableDigitalOutput.srv +srv/GetConfigurableDigitalOutputs.srv +srv/GetStandardAnalogOutput.srv +srv/GetToolAnalogOutput.srv +srv/GetStaticLinkInputNum.srv +srv/GetStaticLinkOutputNum.srv +srv/GetStaticLinkInputs.srv +srv/GetStaticLinkOutputs.srv +srv/HasEncoderSensor.srv +srv/SetEncDecoderType.srv +srv/SetEncTickCount.srv +srv/GetEncDecoderType.srv +srv/GetEncTickCount.srv +srv/UnwindEncDeltaTickCount.srv +srv/GetToolButtonStatus.srv +srv/GetHandleIoStatus.srv +srv/GetHandleType.srv +srv/CalibrateTcpForceSensor.srv +srv/CalibrateTcpForceSensor2.srv +srv/CalibrateTcpForceSensor3.srv +srv/PayloadIdentify.srv +srv/PayloadIdentify1.srv +srv/PayloadCalculateFinished.srv +srv/GetPayloadIdentifyResult.srv +srv/GeneratePayloadIdentifyTraj.srv +srv/PayloadIdentifyTrajGenFinished.srv +srv/FrictionModelIdentify.srv +srv/CalibWorkpieceCoordinatePara.srv +srv/ForwardDynamics.srv +srv/ForwardKinematics.srv +srv/ForwardKinematicsAll.srv +srv/ForwardToolKinematics.srv +srv/ForwardDynamics1.srv +srv/ForwardKinematics1.srv +srv/InverseKinematics.srv +srv/InverseKinematicsAll.srv +srv/InverseKinematics1.srv +srv/InverseKinematicsAll1.srv +srv/InverseToolKinematics.srv +srv/InverseToolKinematicsAll.srv +srv/GetRobotConfiguration.srv +srv/PathMovej.srv +srv/PathBlend3Points.srv +srv/CalcJacobian.srv +srv/PathMoveS.srv +srv/CalibVibrationParams.srv +srv/CalibVibrationParams1.srv +srv/NeedVibrationRecalib.srv +srv/ValidatePath.srv +srv/Poweron.srv +srv/Startup.srv +srv/ReleaseRobotBrake.srv +srv/LockRobotBrake.srv +srv/Poweroff.srv +srv/Backdrive.srv +srv/Freedrive.srv +srv/SetHandguideParams.srv +srv/GetHandguideFreeAxes.srv +srv/GetHandguideFeature.srv +srv/HandguideMode.srv +srv/ExitHandguideMode.srv +srv/GetHandguideStatus.srv +srv/GetHandguideTrigger.srv +srv/IsHandguideEnabled.srv +srv/SetSim.srv +srv/SetOperationalMode.srv +srv/GetOperationalMode.srv +srv/GetRobotControlMode.srv +srv/IsSimulationEnabled.srv +srv/IsFreedriveEnabled.srv +srv/IsBackdriveEnabled.srv +srv/SetUnlockProtectiveStop.srv +srv/RecordCacheFree.srv +srv/StartRecordCache.srv +srv/StopRecordCache.srv +srv/PauseRecordCache.srv +srv/StartRecord.srv +srv/StopRecord.srv +srv/PauseRecord.srv +srv/RestartInterfaceBoard.srv +srv/SetLinkModeEnable.srv +srv/IsLinkModeEnabled.srv +srv/GenerateDiagnoseFile.srv +srv/GetRobotModeType.srv +srv/GetSafetyModeType.srv +srv/IsPowerOn.srv +srv/IsSteady.srv +srv/IsCollisionOccurred.srv +srv/IsWithinSafetyLimits.srv +srv/GetTcpPose.srv +srv/GetActualTcpOffset.srv +srv/GetTargetTcpPose.srv +srv/GetToolPose.srv +srv/GetTcpSpeed.srv +srv/GetTcpForce.srv +srv/GetElbowPosistion.srv +srv/GetElbowVelocity.srv +srv/GetBaseForce.srv +srv/GetTcpTargetPose.srv +srv/GetTcpTargetSpeed.srv +srv/GetTcpTargetForce.srv +srv/GetJointState.srv +srv/GetJointServoMode.srv +srv/GetJointPositions.srv +srv/GetJointPositionsHistory.srv +srv/GetJointSpeeds.srv +srv/GetJointAccelerations.srv +srv/GetJointTorqueSensors.srv +srv/GetJointContactTorques.srv +srv/GetJointGravityTorques.srv +srv/GetBaseForceSensor.srv +srv/GetTcpForceSensors.srv +srv/GetJointCurrents.srv +srv/GetJointVoltages.srv +srv/GetJointTemperatures.srv +srv/GetJointUniqueIds.srv +srv/GetJointFirmwareVersions.srv +srv/GetJointHardwareVersions.srv +srv/GetMasterBoardUniqueId.srv +srv/GetMasterBoardFirmwareVersion.srv +srv/GetMasterBoardHardwareVersion.srv +srv/GetSlaveBoardUniqueId.srv +srv/GetSlaveBoardFirmwareVersion.srv +srv/GetSlaveBoardHardwareVersion.srv +srv/GetToolUniqueId.srv +srv/GetToolFirmwareVersion.srv +srv/GetToolHardwareVersion.srv +srv/GetToolCommMode.srv +srv/GetPedestalUniqueId.srv +srv/GetPedestalFirmwareVersion.srv +srv/GetPedestalHardwareVersion.srv +srv/GetJointTargetPositions.srv +srv/GetJointTargetSpeeds.srv +srv/GetJointTargetAccelerations.srv +srv/GetJointTargetTorques.srv +srv/GetJointTargetCurrents.srv +srv/IsTeachPendantEnabled.srv +srv/IsToolFlangeEnabled.srv +srv/GetControlBoxTemperature.srv +srv/GetControlBoxHumidity.srv +srv/GetMainVoltage.srv +srv/GetMainCurrent.srv +srv/GetRobotVoltage.srv +srv/GetRobotCurrent.srv +srv/GetSlowDownLevel.srv +srv/GetTcpForceSensorStatus.srv +msg/Float64Array.msg +msg/Float64ArrayList.msg +msg/StringFloat64ArrayKV.msg +msg/StringFloat64ArrayMap.msg +msg/RobotSafetyParameterRange.msg +msg/WObjectData.msg +msg/CircleParameters.msg +msg/SpiralParameters.msg +msg/TrajConfig.msg +msg/VibrationRecalibrationParameter.msg +msg/Vector3f.msg +msg/Vector4f.msg +msg/Vector6f.msg +msg/RobotSafetyParameterRangeParam.msg +msg/RobotSafetyParameterTriggerPlane.msg +msg/RobotSafetyParameterCubic.msg +msg/Enveloping.msg +msg/Float64Row.msg +action/ServoMode.action diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/CircleParameters.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/CircleParameters.msg new file mode 100644 index 00000000..95540ac6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/CircleParameters.msg @@ -0,0 +1,10 @@ +float64[] pose_via +float64[] pose_to +float64 a +float64 v +float64 blend_radius +float64 duration +float64 helix +float64 spiral +float64 direction +int32 loop_times diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Enveloping.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Enveloping.msg new file mode 100644 index 00000000..8e2d440c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Enveloping.msg @@ -0,0 +1,3 @@ +int32 shape +float64[] ep_args +string stl_path diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Array.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Array.msg new file mode 100644 index 00000000..922220fa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Array.msg @@ -0,0 +1 @@ +float64[] data diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64ArrayList.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64ArrayList.msg new file mode 100644 index 00000000..50cf1f16 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64ArrayList.msg @@ -0,0 +1 @@ +Float64Array[] rows diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Row.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Row.msg new file mode 100644 index 00000000..922220fa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Float64Row.msg @@ -0,0 +1 @@ +float64[] data diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterCubic.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterCubic.msg new file mode 100644 index 00000000..025b1e89 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterCubic.msg @@ -0,0 +1,3 @@ +Vector6f orig +Vector3f size +int32 restrict_elbow diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRange.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRange.msg new file mode 100644 index 00000000..0522e63d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRange.msg @@ -0,0 +1,28 @@ +uint32 crc32 +RobotSafetyParameterRangeParam[] params +RobotSafetyParameterTriggerPlane[] trigger_planes +RobotSafetyParameterCubic[] cubic +Vector4f[] tools +float32 tool_inclination +float32 tool_azimuth +float32[] safety_home +uint32 safety_input_emergency_stop +uint32 safety_input_safeguard_stop +uint32 safety_input_safeguard_reset +uint32 safety_input_auto_safeguard_stop +uint32 safety_input_auto_safeguard_reset +uint32 safety_input_three_position_switch +uint32 safety_input_operational_mode +uint32 safety_input_reduced_mode +uint32 safety_input_handguide +uint32 safety_output_emergency_stop +uint32 safety_output_not_emergency_stop +uint32 safety_output_robot_moving +uint32 safety_output_robot_steady +uint32 safety_output_reduced_mode +uint32 safety_output_not_reduced_mode +uint32 safety_output_safe_home +uint32 safety_output_robot_not_stopping +uint32 safety_output_safetyguard_stop +int32 tp_3pe_for_handguide +int32 allow_manual_high_speed diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRangeParam.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRangeParam.msg new file mode 100644 index 00000000..e110d459 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterRangeParam.msg @@ -0,0 +1,19 @@ +float32 power +float32 momentum +float32 stop_time +float32 stop_distance +float32 reduced_entry_time +float32 reduced_entry_distance +float32 tcp_speed +float32 elbow_speed +float32 tcp_force +float32 elbow_force +float32[] qmin +float32[] qmax +float32[] qdmax +float32[] joint_torque +Vector3f tool_orientation +float32 tool_deviation +uint32 planes_size +Vector4f[] planes +int32[] restrict_elbow diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterTriggerPlane.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterTriggerPlane.msg new file mode 100644 index 00000000..bab90d2c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/RobotSafetyParameterTriggerPlane.msg @@ -0,0 +1,2 @@ +Vector4f plane +int32 restrict_elbow diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/SpiralParameters.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/SpiralParameters.msg new file mode 100644 index 00000000..47be8ca2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/SpiralParameters.msg @@ -0,0 +1,5 @@ +float64[] frame +int32 plane +float64 angle +float64 spiral +float64 helix diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayKV.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayKV.msg new file mode 100644 index 00000000..8cf7bc77 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayKV.msg @@ -0,0 +1,2 @@ +string key +float64[] value diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayMap.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayMap.msg new file mode 100644 index 00000000..91d86195 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/StringFloat64ArrayMap.msg @@ -0,0 +1 @@ +StringFloat64ArrayKV[] items diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/TrajConfig.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/TrajConfig.msg new file mode 100644 index 00000000..5c75c96c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/TrajConfig.msg @@ -0,0 +1,7 @@ +Enveloping[] envelopings +int32 move_axis +float64[] init_joint +float64[] upper_joint_bound +float64[] lower_joint_bound +float64[] max_velocity +float64[] max_acceleration diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector3f.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector3f.msg new file mode 100644 index 00000000..a8f73e8b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector3f.msg @@ -0,0 +1 @@ +float64[3] data diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector4f.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector4f.msg new file mode 100644 index 00000000..742e7241 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector4f.msg @@ -0,0 +1 @@ +float64[4] data diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector6f.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector6f.msg new file mode 100644 index 00000000..7e2f5c35 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/Vector6f.msg @@ -0,0 +1 @@ +float64[6] data diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/VibrationRecalibrationParameter.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/VibrationRecalibrationParameter.msg new file mode 100644 index 00000000..6b1d0022 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/VibrationRecalibrationParameter.msg @@ -0,0 +1,6 @@ +float64 mass +float64[] cog +float64[] inertia +Float64Row[] points +Float64Row[] stiff_section +Float64Row[] stiff_param diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/WObjectData.msg b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/WObjectData.msg new file mode 100644 index 00000000..97f2b0f4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/msg/WObjectData.msg @@ -0,0 +1,4 @@ +bool remote_tool +string attach_frame +float64[] user_coord +float64[] obj_coord diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/package.xml b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/package.xml new file mode 100644 index 00000000..a8ad01e6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/package.xml @@ -0,0 +1,24 @@ + + + aubo_interfaces + 0.0.1 + AUBO generated ROS2 interfaces (.srv/.msg) + + aubo_peter + BSD-3-Clause + + aubo_peter + + ament_cmake + + rosidl_default_generators + rosidl_default_runtime + + builtin_interfaces + + rosidl_interface_packages + + + ament_cmake + + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Abort.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Abort.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Abort.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddInt32RegEncoder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddInt32RegEncoder.srv new file mode 100644 index 00000000..0b3c346e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddInt32RegEncoder.srv @@ -0,0 +1,7 @@ +int32 encoder_id +int32 range_id +string key +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddModbusEncoder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddModbusEncoder.srv new file mode 100644 index 00000000..e836c0fc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AddModbusEncoder.srv @@ -0,0 +1,7 @@ +int32 encoder_id +int32 range_id +string signal_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Alarm.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Alarm.srv new file mode 100644 index 00000000..3672e3f9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Alarm.srv @@ -0,0 +1,7 @@ +int32 level +int32 code +string[] args +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ArbitraryResume.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ArbitraryResume.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ArbitraryResume.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachRobotBaseTo.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachRobotBaseTo.srv new file mode 100644 index 00000000..9b9e5af7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachRobotBaseTo.srv @@ -0,0 +1,5 @@ +string frame +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachWeldingGun.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachWeldingGun.srv new file mode 100644 index 00000000..144c3d0c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AttachWeldingGun.srv @@ -0,0 +1,7 @@ +float64 m +float64[] cog +float64[] inertial +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAdd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAdd.srv new file mode 100644 index 00000000..43f1188d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAdd.srv @@ -0,0 +1,7 @@ +string name +float64[] pose +string ref_frame +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAddAxis.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAddAxis.srv new file mode 100644 index 00000000..cebef6b4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupAddAxis.srv @@ -0,0 +1,8 @@ +string group_name +string name +string parent +float64[] pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupDelete.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupDelete.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupDelete.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetActualPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetActualPositions.srv new file mode 100644 index 00000000..f48dc76d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetActualPositions.srv @@ -0,0 +1,5 @@ +string group_name +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisIndex.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisIndex.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisIndex.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisName.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisName.srv new file mode 100644 index 00000000..278764f8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetAxisName.srv @@ -0,0 +1,5 @@ +int32 index +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetTargetPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetTargetPositions.srv new file mode 100644 index 00000000..f48dc76d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupGetTargetPositions.srv @@ -0,0 +1,5 @@ +string group_name +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupMoveJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupMoveJoint.srv new file mode 100644 index 00000000..cb8ec9e5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupMoveJoint.srv @@ -0,0 +1,8 @@ +string group_name +float64[] q +float64 a +float64 v +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupOffsetPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupOffsetPositions.srv new file mode 100644 index 00000000..c9d4f648 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupOffsetPositions.srv @@ -0,0 +1,6 @@ +string group_name +float64[] offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupSpeedJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupSpeedJoint.srv new file mode 100644 index 00000000..244bbf9a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupSpeedJoint.srv @@ -0,0 +1,8 @@ +string group_name +float64[] qd +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupUpdateAxis.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupUpdateAxis.srv new file mode 100644 index 00000000..1f9c6413 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/AxisGroupUpdateAxis.srv @@ -0,0 +1,6 @@ +string name +float64[] pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Backdrive.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Backdrive.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Backdrive.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcJacobian.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcJacobian.srv new file mode 100644 index 00000000..3b532d66 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcJacobian.srv @@ -0,0 +1,6 @@ +float64[] q +bool base_or_end +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcSafetyParametersCheckSum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcSafetyParametersCheckSum.srv new file mode 100644 index 00000000..d629a543 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalcSafetyParametersCheckSum.srv @@ -0,0 +1,5 @@ +RobotSafetyParameterRange parameters +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalculateCircleFourthPoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalculateCircleFourthPoint.srv new file mode 100644 index 00000000..cfe91ea6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalculateCircleFourthPoint.srv @@ -0,0 +1,8 @@ +float64[] p1 +float64[] p2 +float64[] p3 +int32 mode +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams.srv new file mode 100644 index 00000000..ce835df8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams.srv @@ -0,0 +1,10 @@ +Float64ArrayList q +Float64ArrayList qd +Float64ArrayList target_q +Float64ArrayList target_qd +Float64ArrayList target_qdd +float64[] tool_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams1.srv new file mode 100644 index 00000000..4fbbb8ad --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibVibrationParams1.srv @@ -0,0 +1,6 @@ +string record_cache_name +float64[] tool_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibWorkpieceCoordinatePara.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibWorkpieceCoordinatePara.srv new file mode 100644 index 00000000..c3e2593b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibWorkpieceCoordinatePara.srv @@ -0,0 +1,6 @@ +Float64ArrayList q +int32 type +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateCoordinate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateCoordinate.srv new file mode 100644 index 00000000..15f8b573 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateCoordinate.srv @@ -0,0 +1,6 @@ +Float64ArrayList poses +int32 type +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor.srv new file mode 100644 index 00000000..35c9b23a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor.srv @@ -0,0 +1,6 @@ +Float64ArrayList forces +Float64ArrayList poses +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor2.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor2.srv new file mode 100644 index 00000000..35c9b23a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor2.srv @@ -0,0 +1,6 @@ +Float64ArrayList forces +Float64ArrayList poses +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor3.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor3.srv new file mode 100644 index 00000000..932f369e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/CalibrateTcpForceSensor3.srv @@ -0,0 +1,8 @@ +Float64ArrayList forces +Float64ArrayList poses +float64 mass +float64[] cog +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearBreakPoints.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearBreakPoints.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearBreakPoints.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearNamedVariable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearNamedVariable.srv new file mode 100644 index 00000000..cc4e7aa9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearNamedVariable.srv @@ -0,0 +1,5 @@ +string key +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPath.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPath.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPath.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPreloadPrograms.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPreloadPrograms.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ClearPreloadPrograms.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConfirmSafetyParameters.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConfirmSafetyParameters.srv new file mode 100644 index 00000000..ee99aaa1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConfirmSafetyParameters.srv @@ -0,0 +1,5 @@ +RobotSafetyParameterRange parameters +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCircle.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCircle.srv new file mode 100644 index 00000000..d39df19f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCircle.srv @@ -0,0 +1,7 @@ +int32 encoder_id +float64[] center +bool rotate_tool +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackClearItems.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackClearItems.srv new file mode 100644 index 00000000..18c60a3e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackClearItems.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCreatItem.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCreatItem.srv new file mode 100644 index 00000000..f2b2c46b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackCreatItem.srv @@ -0,0 +1,7 @@ +int32 encoder_id +int32 item_id +float64[] offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackLine.srv new file mode 100644 index 00000000..856c8ed5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackLine.srv @@ -0,0 +1,6 @@ +int32 encoder_id +float64[] direction +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackStop.srv new file mode 100644 index 00000000..e4fe073c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackStop.srv @@ -0,0 +1,6 @@ +int32 encoder_id +float64 a +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackSwitch.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackSwitch.srv new file mode 100644 index 00000000..5a69f93e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ConveyorTrackSwitch.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteTask.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteTask.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteTask.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteVirtualEncoder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteVirtualEncoder.srv new file mode 100644 index 00000000..18c60a3e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeleteVirtualEncoder.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseAdd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseAdd.srv new file mode 100644 index 00000000..0112566e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseAdd.srv @@ -0,0 +1,6 @@ +float64[] pose_a_in_b +float64[] v_in_b +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseTrans.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseTrans.srv new file mode 100644 index 00000000..00f39240 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DeltaPoseTrans.srv @@ -0,0 +1,6 @@ +float64[] pose_a_in_b +float64[] ft_in_a +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DetachTask.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DetachTask.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DetachTask.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableAxisGroup.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableAxisGroup.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableJointSoftServo.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableJointSoftServo.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisableJointSoftServo.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisbaleVibrationSuppress.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisbaleVibrationSuppress.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/DisbaleVibrationSuppress.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableAxisGroup.srv new file mode 100644 index 00000000..d2029422 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableAxisGroup.srv @@ -0,0 +1,5 @@ +string group_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableEndCollisionCheck.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableEndCollisionCheck.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableEndCollisionCheck.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableJointSoftServo.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableJointSoftServo.srv new file mode 100644 index 00000000..568390c8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableJointSoftServo.srv @@ -0,0 +1,5 @@ +float64[] stiffness +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableVibrationSuppress.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableVibrationSuppress.srv new file mode 100644 index 00000000..1dc291f7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnableVibrationSuppress.srv @@ -0,0 +1,7 @@ +float64[] omega +float64[] zeta +int32 level +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnterCritical.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnterCritical.srv new file mode 100644 index 00000000..63a985d4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/EnterCritical.srv @@ -0,0 +1,5 @@ +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitCritical.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitCritical.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitCritical.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitHandguideMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitHandguideMode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ExitHandguideMode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcCalDynamicModel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcCalDynamicModel.srv new file mode 100644 index 00000000..ee00a601 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcCalDynamicModel.srv @@ -0,0 +1,7 @@ +float64[] env_stiff +float64[] damp_scale +float64[] stiff_scale +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcDisable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcDisable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcDisable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcEnable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcEnable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorLimits.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorLimits.srv new file mode 100644 index 00000000..eb04cc34 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorLimits.srv @@ -0,0 +1,5 @@ +float64[] limits +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorThresholds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorThresholds.srv new file mode 100644 index 00000000..e63cb0ad --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FcSetSensorThresholds.srv @@ -0,0 +1,5 @@ +float64[] thresholds +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FirmwareUpdate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FirmwareUpdate.srv new file mode 100644 index 00000000..0942f728 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FirmwareUpdate.srv @@ -0,0 +1,5 @@ +string fw +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowJoint.srv new file mode 100644 index 00000000..e7cd072b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowJoint.srv @@ -0,0 +1,5 @@ +float64[] q +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowLine.srv new file mode 100644 index 00000000..02be3046 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FollowLine.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForceTrans.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForceTrans.srv new file mode 100644 index 00000000..74d053d6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForceTrans.srv @@ -0,0 +1,6 @@ +float64[] pose_a_in_b +float64[] force_in_a +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics.srv new file mode 100644 index 00000000..d974d736 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics.srv @@ -0,0 +1,6 @@ +float64[] q +float64[] torqs +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics1.srv new file mode 100644 index 00000000..5ba5c783 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardDynamics1.srv @@ -0,0 +1,7 @@ +float64[] q +float64[] torqs +float64[] tcp_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics.srv new file mode 100644 index 00000000..4c36fd86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics.srv @@ -0,0 +1,5 @@ +float64[] q +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics1.srv new file mode 100644 index 00000000..87ed660c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematics1.srv @@ -0,0 +1,6 @@ +float64[] q +float64[] tcp_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematicsAll.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematicsAll.srv new file mode 100644 index 00000000..4c36fd86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardKinematicsAll.srv @@ -0,0 +1,5 @@ +float64[] q +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardToolKinematics.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardToolKinematics.srv new file mode 100644 index 00000000..4c36fd86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ForwardToolKinematics.srv @@ -0,0 +1,5 @@ +float64[] q +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAdd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAdd.srv new file mode 100644 index 00000000..a6e0f74e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAdd.srv @@ -0,0 +1,7 @@ +string name +float64[] pose +string ref_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAttach.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAttach.srv new file mode 100644 index 00000000..f7042d9c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameAttach.srv @@ -0,0 +1,6 @@ +string child +string parent +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameConvertPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameConvertPose.srv new file mode 100644 index 00000000..4a348d6d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameConvertPose.srv @@ -0,0 +1,7 @@ +float64[] pose +string from_frame +string to_frame +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDelete.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDelete.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDelete.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDeleteAll.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDeleteAll.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameDeleteAll.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameExist.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameExist.srv new file mode 100644 index 00000000..699bfd48 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameExist.srv @@ -0,0 +1,5 @@ +string name +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetChildren.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetChildren.srv new file mode 100644 index 00000000..e029de96 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetChildren.srv @@ -0,0 +1,5 @@ +string name +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetParent.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetParent.srv new file mode 100644 index 00000000..1e7aa705 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetParent.srv @@ -0,0 +1,5 @@ +string name +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetPose.srv new file mode 100644 index 00000000..c68c853f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameGetPose.srv @@ -0,0 +1,7 @@ +string name +string rel_frame +string ref_frame +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameMove.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameMove.srv new file mode 100644 index 00000000..a6e0f74e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrameMove.srv @@ -0,0 +1,7 @@ +string name +float64[] pose +string ref_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Freedrive.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Freedrive.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Freedrive.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrictionModelIdentify.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrictionModelIdentify.srv new file mode 100644 index 00000000..f6b06505 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/FrictionModelIdentify.srv @@ -0,0 +1,8 @@ +Float64ArrayList q +Float64ArrayList qd +Float64ArrayList qdd +Float64ArrayList temp +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GenerateDiagnoseFile.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GenerateDiagnoseFile.srv new file mode 100644 index 00000000..2debbcb2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GenerateDiagnoseFile.srv @@ -0,0 +1,5 @@ +string reason +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GeneratePayloadIdentifyTraj.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GeneratePayloadIdentifyTraj.srv new file mode 100644 index 00000000..de70c774 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GeneratePayloadIdentifyTraj.srv @@ -0,0 +1,6 @@ +string name +TrajConfig trajconfig +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualJointPositionsHistory.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualJointPositionsHistory.srv new file mode 100644 index 00000000..1c016c9f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualJointPositionsHistory.srv @@ -0,0 +1,5 @@ +int32 steps +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualTcpOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualTcpOffset.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetActualTcpOffset.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePlanContext.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePlanContext.srv new file mode 100644 index 00000000..ae854729 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePlanContext.srv @@ -0,0 +1,5 @@ +int32 tid +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePtr.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePtr.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetAdvancePtr.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForce.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForce.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceOffset.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceOffset.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensor.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensor.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensorNames.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensorNames.srv new file mode 100644 index 00000000..faa93f22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBaseForceSensorNames.srv @@ -0,0 +1,4 @@ +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBool.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBool.srv new file mode 100644 index 00000000..a1061a68 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBool.srv @@ -0,0 +1,6 @@ +string key +bool default_value +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolInput.srv new file mode 100644 index 00000000..728a912b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolInput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolOutput.srv new file mode 100644 index 00000000..728a912b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetBoolOutput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionLevel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionLevel.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionLevel.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionStopType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionStopType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionStopType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionThreshold.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionThreshold.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCollisionThreshold.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputAction.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputAction.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalInputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputRunstate.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputRunstate.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConfigurableDigitalOutputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxHumidity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxHumidity.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxHumidity.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxTemperature.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxTemperature.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxTemperature.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxType.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlBoxType.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareBuildDate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareBuildDate.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareBuildDate.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareFullVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareFullVersion.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareFullVersion.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionCode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionCode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionCode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionHash.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionHash.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSoftwareVersionHash.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSystemTime.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSystemTime.srv new file mode 100644 index 00000000..96d2afc8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetControlSystemTime.srv @@ -0,0 +1,4 @@ +--- +uint64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackNextItem.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackNextItem.srv new file mode 100644 index 00000000..18c60a3e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackNextItem.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackQueue.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackQueue.srv new file mode 100644 index 00000000..2e34f540 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetConveyorTrackQueue.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCycletime.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCycletime.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetCycletime.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointAcc.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointAcc.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointAcc.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointSpeed.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultJointSpeed.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolAcc.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolAcc.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolAcc.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolSpeed.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDefaultToolSpeed.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDeltaPoseBySensorDistance.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDeltaPoseBySensorDistance.srv new file mode 100644 index 00000000..cdcf0deb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDeltaPoseBySensorDistance.srv @@ -0,0 +1,8 @@ +float64[] distances +float64 position +float64 radius +float64 track_scale +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDof.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDof.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDof.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDouble.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDouble.srv new file mode 100644 index 00000000..9739da39 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDouble.srv @@ -0,0 +1,6 @@ +string key +float64 default_value +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleInput.srv new file mode 100644 index 00000000..10d58e57 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleInput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleOutput.srv new file mode 100644 index 00000000..10d58e57 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDoubleOutput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDuration.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDuration.srv new file mode 100644 index 00000000..2623a1be --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDuration.srv @@ -0,0 +1,5 @@ +int32 id +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDynamicModel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDynamicModel.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetDynamicModel.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowPosistion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowPosistion.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowPosistion.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowVelocity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowVelocity.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetElbowVelocity.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncDecoderType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncDecoderType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncDecoderType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncTickCount.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncTickCount.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEncTickCount.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEqradius.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEqradius.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetEqradius.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecId.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecId.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecId.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus1.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetExecutionStatus1.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorLimits.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorLimits.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorLimits.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorThresholds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorThresholds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFcSensorThresholds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFirmwareUpdateProcess.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFirmwareUpdateProcess.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFirmwareUpdateProcess.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloat.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloat.srv new file mode 100644 index 00000000..ecdfaa83 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloat.srv @@ -0,0 +1,6 @@ +string key +float32 default_value +--- +float32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatInput.srv new file mode 100644 index 00000000..9b62a5c7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatInput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +float32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatOutput.srv new file mode 100644 index 00000000..9b62a5c7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFloatOutput.srv @@ -0,0 +1,5 @@ +uint32 address +--- +float32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFreedriveDamp.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFreedriveDamp.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFreedriveDamp.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFuturePathPointsJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFuturePathPointsJoint.srv new file mode 100644 index 00000000..fe5e6c18 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetFuturePathPointsJoint.srv @@ -0,0 +1,4 @@ +--- +Float64ArrayList result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetGravity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetGravity.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetGravity.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguidDamp.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguidDamp.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguidDamp.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFeature.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFeature.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFeature.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFreeAxes.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFreeAxes.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideFreeAxes.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideStatus.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideStatus.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideTrigger.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideTrigger.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandguideTrigger.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleIoStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleIoStatus.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleIoStatus.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHandleType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHardwareCustomParameters.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHardwareCustomParameters.srv new file mode 100644 index 00000000..01bbdd58 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHardwareCustomParameters.srv @@ -0,0 +1,5 @@ +string param +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHomePosition.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHomePosition.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetHomePosition.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16Register.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16Register.srv new file mode 100644 index 00000000..2e4453d7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16Register.srv @@ -0,0 +1,5 @@ +uint32 address +--- +int16 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16RegisterBit.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16RegisterBit.srv new file mode 100644 index 00000000..97d1fa05 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt16RegisterBit.srv @@ -0,0 +1,6 @@ +uint32 address +uint8 bit_offset +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32.srv new file mode 100644 index 00000000..e00e88d7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32.srv @@ -0,0 +1,6 @@ +string key +int32 default_value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Input.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Input.srv new file mode 100644 index 00000000..0fe8bff1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Input.srv @@ -0,0 +1,5 @@ +uint32 address +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Output.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Output.srv new file mode 100644 index 00000000..0fe8bff1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInt32Output.srv @@ -0,0 +1,5 @@ +uint32 address +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterfaceVersionCode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterfaceVersionCode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterfaceVersionCode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterpPtr.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterpPtr.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetInterpPtr.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointAccelerations.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointAccelerations.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointAccelerations.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointContactTorques.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointContactTorques.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointContactTorques.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointCurrents.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointCurrents.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointCurrents.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointFirmwareVersions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointFirmwareVersions.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointFirmwareVersions.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointGravityTorques.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointGravityTorques.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointGravityTorques.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointHardwareVersions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointHardwareVersions.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointHardwareVersions.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxAccelerations.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxAccelerations.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxAccelerations.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxSpeeds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxSpeeds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMaxSpeeds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMinPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMinPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointMinPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositionsHistory.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositionsHistory.srv new file mode 100644 index 00000000..1c016c9f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointPositionsHistory.srv @@ -0,0 +1,5 @@ +int32 steps +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointServoMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointServoMode.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointServoMode.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointSpeeds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointSpeeds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointSpeeds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointState.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointState.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointState.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetAccelerations.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetAccelerations.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetAccelerations.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetCurrents.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetCurrents.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetCurrents.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetSpeeds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetSpeeds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetSpeeds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetTorques.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetTorques.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTargetTorques.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTemperatures.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTemperatures.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTemperatures.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTorqueSensors.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTorqueSensors.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointTorqueSensors.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointUniqueIds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointUniqueIds.srv new file mode 100644 index 00000000..faa93f22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointUniqueIds.srv @@ -0,0 +1,4 @@ +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointVoltages.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointVoltages.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetJointVoltages.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsCompensate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsCompensate.srv new file mode 100644 index 00000000..8cca4b40 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsCompensate.srv @@ -0,0 +1,5 @@ +float64 ref_temperature +--- +StringFloat64ArrayMap result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsParam.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsParam.srv new file mode 100644 index 00000000..58b0b544 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetKinematicsParam.srv @@ -0,0 +1,5 @@ +bool real +--- +StringFloat64ArrayMap result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxAccelerations.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxAccelerations.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxAccelerations.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxSpeeds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxSpeeds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMaxSpeeds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMinPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMinPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitJointMinPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitTcpMaxSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitTcpMaxSpeed.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLimitTcpMaxSpeed.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLookAheadSize.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLookAheadSize.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetLookAheadSize.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainCurrent.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainCurrent.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainCurrent.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainPtr.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainPtr.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainPtr.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainVoltage.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainVoltage.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMainVoltage.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardFirmwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardFirmwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardFirmwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardHardwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardHardwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardHardwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardUniqueId.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardUniqueId.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMasterBoardUniqueId.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetModbusDeviceStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetModbusDeviceStatus.srv new file mode 100644 index 00000000..0adc6b26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetModbusDeviceStatus.srv @@ -0,0 +1,5 @@ +string device_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMotionLeftTime.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMotionLeftTime.srv new file mode 100644 index 00000000..2623a1be --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMotionLeftTime.srv @@ -0,0 +1,5 @@ +int32 id +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMountingPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMountingPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetMountingPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetName.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetName.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetName.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetNamedVariableType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetNamedVariableType.srv new file mode 100644 index 00000000..e93f8854 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetNamedVariableType.srv @@ -0,0 +1,5 @@ +string key +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetOperationalMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetOperationalMode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetOperationalMode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPauseJointPositions.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPauseJointPositions.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPauseJointPositions.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayload.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayload.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayload.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayloadIdentifyResult.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayloadIdentifyResult.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPayloadIdentifyResult.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalFirmwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalFirmwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalFirmwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalHardwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalHardwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalHardwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalUniqueId.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalUniqueId.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPedestalUniqueId.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPlanContext.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPlanContext.srv new file mode 100644 index 00000000..ae854729 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPlanContext.srv @@ -0,0 +1,5 @@ +int32 tid +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPreloadProgram.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPreloadProgram.srv new file mode 100644 index 00000000..278764f8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetPreloadProgram.srv @@ -0,0 +1,5 @@ +int32 index +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetProgress.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetProgress.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetProgress.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetQueueSize.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetQueueSize.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetQueueSize.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetResumeMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetResumeMode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetResumeMode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotBaseParent.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotBaseParent.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotBaseParent.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotConfiguration.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotConfiguration.srv new file mode 100644 index 00000000..4c36fd86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotConfiguration.srv @@ -0,0 +1,5 @@ +float64[] q +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotControlMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotControlMode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotControlMode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotCurrent.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotCurrent.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotCurrent.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotEmergencyStopSource.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotEmergencyStopSource.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotEmergencyStopSource.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotModeType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotModeType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotModeType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotSubType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotSubType.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotSubType.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotType.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotType.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotVoltage.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotVoltage.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRobotVoltage.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRuntimeState.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRuntimeState.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetRuntimeState.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopSource.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopSource.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopSource.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafeguardStopType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyModeType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyModeType.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyModeType.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyParametersCheckSum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyParametersCheckSum.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSafetyParametersCheckSum.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSelectedTcpForceSensorName.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSelectedTcpForceSensorName.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSelectedTcpForceSensorName.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetServoModeSelect.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetServoModeSelect.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetServoModeSelect.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardFirmwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardFirmwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardFirmwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardHardwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardHardwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardHardwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardUniqueId.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardUniqueId.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlaveBoardUniqueId.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownFraction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownFraction.srv new file mode 100644 index 00000000..e2231c2f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownFraction.srv @@ -0,0 +1,5 @@ +int32 level +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownLevel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownLevel.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSlowDownLevel.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSpeedFraction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSpeedFraction.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetSpeedFraction.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInput.srv new file mode 100644 index 00000000..e6a4b090 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputDomain.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputDomain.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutput.srv new file mode 100644 index 00000000..e6a4b090 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutput.srv @@ -0,0 +1,5 @@ +int32 index +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputDomain.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputDomain.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputRunstate.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardAnalogOutputRunstate.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputAction.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputAction.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalInputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputRunstate.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputRunstate.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStandardDigitalOutputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkInputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStaticLinkOutputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStatus.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetStatus.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetString.srv new file mode 100644 index 00000000..5cc9f0d0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetString.srv @@ -0,0 +1,6 @@ +string key +string default_value +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTargetTcpPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTargetTcpPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTargetTcpPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTaskQueueSize.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTaskQueueSize.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTaskQueueSize.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForce.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForce.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceOffset.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceOffset.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorNames.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorNames.srv new file mode 100644 index 00000000..faa93f22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorNames.srv @@ -0,0 +1,4 @@ +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorStatus.srv new file mode 100644 index 00000000..699bfd48 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensorStatus.srv @@ -0,0 +1,5 @@ +string name +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensors.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensors.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpForceSensors.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxAccelerations.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxAccelerations.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxAccelerations.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxLinearVelocity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxLinearVelocity.srv new file mode 100644 index 00000000..d3b6d184 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxLinearVelocity.srv @@ -0,0 +1,4 @@ +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxSpeeds.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxSpeeds.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpMaxSpeeds.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpOffset.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpOffset.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpSpeed.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpSpeed.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetForce.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetForce.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetSpeed.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTcpTargetSpeed.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTimer.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTimer.srv new file mode 100644 index 00000000..b5b31a5d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTimer.srv @@ -0,0 +1,5 @@ +string name +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInput.srv new file mode 100644 index 00000000..e6a4b090 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputDomain.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputDomain.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutput.srv new file mode 100644 index 00000000..e6a4b090 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutput.srv @@ -0,0 +1,5 @@ +int32 index +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputDomain.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputDomain.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputRunstate.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolAnalogOutputRunstate.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolButtonStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolButtonStatus.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolButtonStatus.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolCommMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolCommMode.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolCommMode.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputAction.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputAction.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalInputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputNum.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputNum.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputNum.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputRunstate.srv new file mode 100644 index 00000000..0830491f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputRunstate.srv @@ -0,0 +1,5 @@ +int32 index +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputs.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputs.srv new file mode 100644 index 00000000..71765cc9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolDigitalOutputs.srv @@ -0,0 +1,4 @@ +--- +uint32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolFirmwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolFirmwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolFirmwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolHardwareVersion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolHardwareVersion.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolHardwareVersion.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolPose.srv new file mode 100644 index 00000000..6d8b000a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolPose.srv @@ -0,0 +1,4 @@ +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolUniqueId.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolUniqueId.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolUniqueId.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolVoltageOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolVoltageOutputDomain.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetToolVoltageOutputDomain.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTrajectoryQueueSize.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTrajectoryQueueSize.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTrajectoryQueueSize.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTriggInterrupts.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTriggInterrupts.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetTriggInterrupts.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecChar.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecChar.srv new file mode 100644 index 00000000..3497b312 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecChar.srv @@ -0,0 +1,6 @@ +string key +int8[] default_value +--- +int8[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecDouble.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecDouble.srv new file mode 100644 index 00000000..3bfb22ca --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecDouble.srv @@ -0,0 +1,6 @@ +string key +float64[] default_value +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecFloat.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecFloat.srv new file mode 100644 index 00000000..0650d4d8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecFloat.srv @@ -0,0 +1,6 @@ +string key +float32[] default_value +--- +float32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecInt32.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecInt32.srv new file mode 100644 index 00000000..e5b76dcc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetVecInt32.srv @@ -0,0 +1,6 @@ +string key +int32[] default_value +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogAction.srv new file mode 100644 index 00000000..cc4e7aa9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogAction.srv @@ -0,0 +1,5 @@ +string key +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogTimeout.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogTimeout.srv new file mode 100644 index 00000000..cc4e7aa9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWatchDogTimeout.srv @@ -0,0 +1,5 @@ +string key +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWorkObjectHold.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWorkObjectHold.srv new file mode 100644 index 00000000..307f710a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GetWorkObjectHold.srv @@ -0,0 +1,4 @@ +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GotoLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GotoLine.srv new file mode 100644 index 00000000..6be5711e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/GotoLine.srv @@ -0,0 +1,5 @@ +int32 lineno +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HandguideMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HandguideMode.srv new file mode 100644 index 00000000..932c17aa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HandguideMode.srv @@ -0,0 +1,6 @@ +int32[] freeaxes +float64[] feature +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasBaseForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasBaseForceSensor.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasBaseForceSensor.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasEncoderSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasEncoderSensor.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasEncoderSensor.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasItemOnConveyorToTrack.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasItemOnConveyorToTrack.srv new file mode 100644 index 00000000..5a69f93e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasItemOnConveyorToTrack.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasNamedVariable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasNamedVariable.srv new file mode 100644 index 00000000..9a8d304e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasNamedVariable.srv @@ -0,0 +1,5 @@ +string key +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasTcpForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasTcpForceSensor.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/HasTcpForceSensor.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InterpolatePose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InterpolatePose.srv new file mode 100644 index 00000000..3787560c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InterpolatePose.srv @@ -0,0 +1,7 @@ +float64[] p1 +float64[] p2 +float64 alpha +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics.srv new file mode 100644 index 00000000..e1fe7414 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics.srv @@ -0,0 +1,6 @@ +float64[] qnear +float64[] pose +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics1.srv new file mode 100644 index 00000000..f81acd23 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematics1.srv @@ -0,0 +1,7 @@ +float64[] qnear +float64[] pose +float64[] tcp_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll.srv new file mode 100644 index 00000000..539dda09 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll1.srv new file mode 100644 index 00000000..2b7957c5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseKinematicsAll1.srv @@ -0,0 +1,6 @@ +float64[] pose +float64[] tcp_offset +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematics.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematics.srv new file mode 100644 index 00000000..e1fe7414 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematics.srv @@ -0,0 +1,6 @@ +float64[] qnear +float64[] pose +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematicsAll.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematicsAll.srv new file mode 100644 index 00000000..539dda09 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/InverseToolKinematicsAll.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBackdriveEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBackdriveEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBackdriveEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBlending.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBlending.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsBlending.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCollisionOccurred.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCollisionOccurred.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCollisionOccurred.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCondFullfiled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCondFullfiled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsCondFullfiled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackExceed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackExceed.srv new file mode 100644 index 00000000..5a69f93e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackExceed.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackSync.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackSync.srv new file mode 100644 index 00000000..5a69f93e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsConveyorTrackSync.srv @@ -0,0 +1,5 @@ +int32 encoder_id +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsEndCollisionCheckEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsEndCollisionCheckEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsEndCollisionCheckEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFcEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFcEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFcEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFreedriveEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFreedriveEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsFreedriveEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsHandguideEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsHandguideEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsHandguideEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsJointSoftServoEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsJointSoftServoEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsJointSoftServoEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsLinkModeEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsLinkModeEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsLinkModeEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsPowerOn.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsPowerOn.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsPowerOn.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsServoModeEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsServoModeEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsServoModeEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSimulationEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSimulationEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSimulationEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSoftFloatEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSoftFloatEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSoftFloatEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSpeedFractionCritical.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSpeedFractionCritical.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSpeedFractionCritical.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSteady.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSteady.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSteady.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSupportedTimeOptimal.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSupportedTimeOptimal.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSupportedTimeOptimal.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSyncMoveOn.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSyncMoveOn.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsSyncMoveOn.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTaskAlive.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTaskAlive.srv new file mode 100644 index 00000000..60180ff8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTaskAlive.srv @@ -0,0 +1,5 @@ +int32 tid +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTeachPendantEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTeachPendantEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTeachPendantEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTimeOptimalEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTimeOptimalEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsTimeOptimalEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolFlangeEnabled.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolFlangeEnabled.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolFlangeEnabled.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolIoInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolIoInput.srv new file mode 100644 index 00000000..2629b638 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsToolIoInput.srv @@ -0,0 +1,5 @@ +int32 index +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsWithinSafetyLimits.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsWithinSafetyLimits.srv new file mode 100644 index 00000000..4034f697 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/IsWithinSafetyLimits.srv @@ -0,0 +1,4 @@ +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetDisable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetDisable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetDisable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetEnable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetEnable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetSet.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetSet.srv new file mode 100644 index 00000000..efd0ef56 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/JointOffsetSet.srv @@ -0,0 +1,6 @@ +float64[] offset +int32 type +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LoadProgram.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LoadProgram.srv new file mode 100644 index 00000000..d57581b0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LoadProgram.srv @@ -0,0 +1,5 @@ +string program +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LockRobotBrake.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LockRobotBrake.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/LockRobotBrake.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusAddSignal.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusAddSignal.srv new file mode 100644 index 00000000..55843ae7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusAddSignal.srv @@ -0,0 +1,10 @@ +string device_info +int32 slave_number +int32 signal_address +int32 signal_type +string signal_name +bool sequential_mode +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteAllSignals.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteAllSignals.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteAllSignals.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteSignal.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteSignal.srv new file mode 100644 index 00000000..8ca5875f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusDeleteSignal.srv @@ -0,0 +1,5 @@ +string signal_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalError.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalError.srv new file mode 100644 index 00000000..8ca5875f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalError.srv @@ -0,0 +1,5 @@ +string signal_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalErrors.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalErrors.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalErrors.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalIndex.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalIndex.srv new file mode 100644 index 00000000..8ca5875f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalIndex.srv @@ -0,0 +1,5 @@ +string signal_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalNames.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalNames.srv new file mode 100644 index 00000000..faa93f22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalNames.srv @@ -0,0 +1,4 @@ +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalStatus.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalStatus.srv new file mode 100644 index 00000000..8ca5875f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalStatus.srv @@ -0,0 +1,5 @@ +string signal_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalTypes.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalTypes.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalTypes.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalValues.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalValues.srv new file mode 100644 index 00000000..ed479d29 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusGetSignalValues.srv @@ -0,0 +1,4 @@ +--- +int32[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSendCustomCommand.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSendCustomCommand.srv new file mode 100644 index 00000000..39e9adbd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSendCustomCommand.srv @@ -0,0 +1,8 @@ +string ip +int32 slave_number +int32 function_code +uint8[] data +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetDigitalInputAction.srv new file mode 100644 index 00000000..43b01eb2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetDigitalInputAction.srv @@ -0,0 +1,7 @@ +string robot_name +string signal_name +int32 action +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputRunstate.srv new file mode 100644 index 00000000..b91aca73 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputRunstate.srv @@ -0,0 +1,7 @@ +string robot_name +string signal_name +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal.srv new file mode 100644 index 00000000..72cab1dc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal.srv @@ -0,0 +1,6 @@ +string signal_name +uint16 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal1.srv new file mode 100644 index 00000000..63af2003 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignal1.srv @@ -0,0 +1,6 @@ +string signal_name +uint16[] values +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalPulse.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalPulse.srv new file mode 100644 index 00000000..29451658 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalPulse.srv @@ -0,0 +1,7 @@ +string signal_name +uint16 value +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalWithTimeout.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalWithTimeout.srv new file mode 100644 index 00000000..47b578ff --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetOutputSignalWithTimeout.srv @@ -0,0 +1,7 @@ +string signal_name +uint16 value +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetSignalUpdateFrequency.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetSignalUpdateFrequency.srv new file mode 100644 index 00000000..1e6888ed --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ModbusSetSignalUpdateFrequency.srv @@ -0,0 +1,6 @@ +string signal_name +int32 update_frequency +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle.srv new file mode 100644 index 00000000..ed5ceec8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle.srv @@ -0,0 +1,10 @@ +float64[] via_pose +float64[] end_pose +float64 a +float64 v +float64 blend_radius +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle2.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle2.srv new file mode 100644 index 00000000..789b86d3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircle2.srv @@ -0,0 +1,5 @@ +CircleParameters param +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircleWithAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircleWithAxisGroup.srv new file mode 100644 index 00000000..871c5df7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveCircleWithAxisGroup.srv @@ -0,0 +1,12 @@ +float64[] via_pose +float64[] end_pose +float64 a +float64 v +float64 blend_radius +float64 duration +string group_name +float64[] extq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveIntersection.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveIntersection.srv new file mode 100644 index 00000000..70114191 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveIntersection.srv @@ -0,0 +1,11 @@ +Float64ArrayList poses +float64 a +float64 v +float64 main_pipe_radius +float64 sub_pipe_radius +float64 normal_distance +float64 normal_alpha +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJoint.srv new file mode 100644 index 00000000..67dcbb25 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJoint.srv @@ -0,0 +1,9 @@ +float64[] q +float64 a +float64 v +float64 blend_radius +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJointWithAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJointWithAxisGroup.srv new file mode 100644 index 00000000..1c9fdc18 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveJointWithAxisGroup.srv @@ -0,0 +1,11 @@ +float64[] q +float64 a +float64 v +float64 blend_radius +float64 duration +string group_name +float64[] extq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLine.srv new file mode 100644 index 00000000..23935d67 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLine.srv @@ -0,0 +1,9 @@ +float64[] pose +float64 a +float64 v +float64 blend_radius +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLineWithAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLineWithAxisGroup.srv new file mode 100644 index 00000000..5299b9bd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveLineWithAxisGroup.srv @@ -0,0 +1,11 @@ +float64[] pose +float64 a +float64 v +float64 blend_radius +float64 duration +string group_name +float64[] extq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MovePathBuffer.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MovePathBuffer.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MovePathBuffer.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveProcess.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveProcess.srv new file mode 100644 index 00000000..4d3cf4f3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveProcess.srv @@ -0,0 +1,8 @@ +float64[] pose +float64 a +float64 v +float64 blend_radius +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpiral.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpiral.srv new file mode 100644 index 00000000..b3f04698 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpiral.srv @@ -0,0 +1,9 @@ +SpiralParameters param +float64 blend_radius +float64 v +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpline.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpline.srv new file mode 100644 index 00000000..f9f3b5e8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/MoveSpline.srv @@ -0,0 +1,8 @@ +float64[] q +float64 a +float64 v +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NeedVibrationRecalib.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NeedVibrationRecalib.srv new file mode 100644 index 00000000..ea636c95 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NeedVibrationRecalib.srv @@ -0,0 +1,7 @@ +VibrationRecalibrationParameter param1 +VibrationRecalibrationParameter param2 +float64 threshold +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NewTask.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NewTask.srv new file mode 100644 index 00000000..9f930d10 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/NewTask.srv @@ -0,0 +1,5 @@ +bool daemon +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Nop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Nop.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Nop.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Notify.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Notify.srv new file mode 100644 index 00000000..c78cf00b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Notify.srv @@ -0,0 +1,5 @@ +string msg +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBlend3Points.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBlend3Points.srv new file mode 100644 index 00000000..5138b2c5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBlend3Points.srv @@ -0,0 +1,10 @@ +int32 type +float64[] q_start +float64[] q_via +float64[] q_to +float64 r +float64 d +--- +Float64ArrayList result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAlloc.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAlloc.srv new file mode 100644 index 00000000..a6fba2f1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAlloc.srv @@ -0,0 +1,7 @@ +string name +int32 type +int32 size +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAppend.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAppend.srv new file mode 100644 index 00000000..1003fc26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferAppend.srv @@ -0,0 +1,6 @@ +string name +Float64ArrayList waypoints +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferEval.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferEval.srv new file mode 100644 index 00000000..bb6f462d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferEval.srv @@ -0,0 +1,8 @@ +string name +float64[] a +float64[] v +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFilter.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFilter.srv new file mode 100644 index 00000000..96696a4a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFilter.srv @@ -0,0 +1,8 @@ +string name +int32 order +float64 fd +float64 fs +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFree.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFree.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferFree.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferList.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferList.srv new file mode 100644 index 00000000..faa93f22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferList.srv @@ -0,0 +1,4 @@ +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferValid.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferValid.srv new file mode 100644 index 00000000..699bfd48 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathBufferValid.srv @@ -0,0 +1,5 @@ +string name +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMoveS.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMoveS.srv new file mode 100644 index 00000000..76ba36dd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMoveS.srv @@ -0,0 +1,6 @@ +Float64ArrayList qs +float64 d +--- +Float64ArrayList result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMovej.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMovej.srv new file mode 100644 index 00000000..a6bdf56b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathMovej.srv @@ -0,0 +1,9 @@ +float64[] q1 +float64 r1 +float64[] q2 +float64 r2 +float64 d +--- +Float64ArrayList result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetCoordinate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetCoordinate.srv new file mode 100644 index 00000000..30bcf853 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetCoordinate.srv @@ -0,0 +1,5 @@ +int32 ref_coord +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetDisable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetDisable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetDisable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetEnable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetEnable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetLimits.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetLimits.srv new file mode 100644 index 00000000..35a95992 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetLimits.srv @@ -0,0 +1,6 @@ +float64 v +float64 a +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSet.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSet.srv new file mode 100644 index 00000000..efd0ef56 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSet.srv @@ -0,0 +1,6 @@ +float64[] offset +int32 type +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSupv.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSupv.srv new file mode 100644 index 00000000..707a8c99 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PathOffsetSupv.srv @@ -0,0 +1,7 @@ +float64[] min +float64[] max +int32 strategy +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Pause.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Pause.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Pause.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecord.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecord.srv new file mode 100644 index 00000000..427998da --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecord.srv @@ -0,0 +1,5 @@ +bool pause +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecordCache.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecordCache.srv new file mode 100644 index 00000000..427998da --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PauseRecordCache.srv @@ -0,0 +1,5 @@ +bool pause +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadCalculateFinished.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadCalculateFinished.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadCalculateFinished.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify.srv new file mode 100644 index 00000000..917c6d46 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify.srv @@ -0,0 +1,6 @@ +string data_no_payload +string data_with_payload +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify1.srv new file mode 100644 index 00000000..eec3efef --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentify1.srv @@ -0,0 +1,5 @@ +string file_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentifyTrajGenFinished.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentifyTrajGenFinished.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PayloadIdentifyTrajGenFinished.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Peek.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Peek.srv new file mode 100644 index 00000000..a9f1e80e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Peek.srv @@ -0,0 +1,6 @@ +uint64 num +uint64 last_time +--- +string[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Popup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Popup.srv new file mode 100644 index 00000000..97b9e4ca --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Popup.srv @@ -0,0 +1,8 @@ +int32 level +string title +string msg +int32 mode +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAdd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAdd.srv new file mode 100644 index 00000000..3fbef018 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAdd.srv @@ -0,0 +1,6 @@ +float64[] p1 +float64[] p2 +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAngleDistance.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAngleDistance.srv new file mode 100644 index 00000000..9a71a02b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseAngleDistance.srv @@ -0,0 +1,6 @@ +float64[] p1 +float64[] p2 +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseDistance.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseDistance.srv new file mode 100644 index 00000000..9a71a02b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseDistance.srv @@ -0,0 +1,6 @@ +float64[] p1 +float64[] p2 +--- +float64 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseEqual.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseEqual.srv new file mode 100644 index 00000000..c34f90d8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseEqual.srv @@ -0,0 +1,7 @@ +float64[] p1 +float64[] p2 +float64 eps +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseInverse.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseInverse.srv new file mode 100644 index 00000000..e0cf036e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseInverse.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseRotation.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseRotation.srv new file mode 100644 index 00000000..f911eb02 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseRotation.srv @@ -0,0 +1,6 @@ +float64[] pose +float64[] rotv +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseSub.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseSub.srv new file mode 100644 index 00000000..3fbef018 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseSub.srv @@ -0,0 +1,6 @@ +float64[] p1 +float64[] p2 +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTrans.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTrans.srv new file mode 100644 index 00000000..b12feead --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTrans.srv @@ -0,0 +1,6 @@ +float64[] pose_from +float64[] pose_from_to +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTransInv.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTransInv.srv new file mode 100644 index 00000000..d70d2fe4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PoseTransInv.srv @@ -0,0 +1,6 @@ +float64[] pose_from +float64[] pose_to_from +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweroff.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweroff.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweroff.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweron.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweron.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Poweron.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PreloadProgram.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PreloadProgram.srv new file mode 100644 index 00000000..1cc55b66 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/PreloadProgram.srv @@ -0,0 +1,6 @@ +int32 index +string program +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/QuaternionToRpy.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/QuaternionToRpy.srv new file mode 100644 index 00000000..5ba0228e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/QuaternionToRpy.srv @@ -0,0 +1,5 @@ +float64[] quant +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RecordCacheFree.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RecordCacheFree.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RecordCacheFree.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ReleaseRobotBrake.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ReleaseRobotBrake.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ReleaseRobotBrake.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RemoveBreakPoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RemoveBreakPoint.srv new file mode 100644 index 00000000..6be5711e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RemoveBreakPoint.srv @@ -0,0 +1,5 @@ +int32 lineno +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetDamping.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetDamping.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetDamping.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetLpFilter.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetLpFilter.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetLpFilter.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetTcpMaxLinearVelocity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetTcpMaxLinearVelocity.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResetTcpMaxLinearVelocity.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestartInterfaceBoard.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestartInterfaceBoard.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestartInterfaceBoard.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestoPath.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestoPath.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RestoPath.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Resume.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Resume.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Resume.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveJoint.srv new file mode 100644 index 00000000..f9f3b5e8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveJoint.srv @@ -0,0 +1,8 @@ +float64[] q +float64 a +float64 v +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveLine.srv new file mode 100644 index 00000000..db2862f1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeMoveLine.srv @@ -0,0 +1,8 @@ +float64[] pose +float64 a +float64 v +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedJoint.srv new file mode 100644 index 00000000..3c9682b5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedJoint.srv @@ -0,0 +1,7 @@ +float64[] qd +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedLine.srv new file mode 100644 index 00000000..328a78aa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeSpeedLine.srv @@ -0,0 +1,7 @@ +float64[] xd +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopJoint.srv new file mode 100644 index 00000000..513dce41 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopJoint.srv @@ -0,0 +1,5 @@ +float64 acc +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopLine.srv new file mode 100644 index 00000000..42dc41df --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ResumeStopLine.srv @@ -0,0 +1,6 @@ +float64 acc +float64 acc_rot +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RpyToQuaternion.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RpyToQuaternion.srv new file mode 100644 index 00000000..28171a0e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RpyToQuaternion.srv @@ -0,0 +1,5 @@ +float64[] rpy +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RunProgram.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RunProgram.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/RunProgram.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectBaseForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectBaseForceSensor.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectBaseForceSensor.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectTcpForceSensor.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectTcpForceSensor.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SelectTcpForceSensor.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialClose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialClose.srv new file mode 100644 index 00000000..3b549c5c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialClose.srv @@ -0,0 +1,5 @@ +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialOpen.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialOpen.srv new file mode 100644 index 00000000..61eb88aa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialOpen.srv @@ -0,0 +1,9 @@ +string device +int32 baud +float32 stop_bits +int32 even +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByte.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByte.srv new file mode 100644 index 00000000..b3cb6e22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByte.srv @@ -0,0 +1,6 @@ +string variable +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByteList.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByteList.srv new file mode 100644 index 00000000..498e9ff9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadByteList.srv @@ -0,0 +1,7 @@ +int32 number +string variable +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadString.srv new file mode 100644 index 00000000..35f8cfb4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialReadString.srv @@ -0,0 +1,9 @@ +string variable +string serial_name +string prefix +string suffix +bool interpret_escape +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendAllString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendAllString.srv new file mode 100644 index 00000000..ec92f908 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendAllString.srv @@ -0,0 +1,7 @@ +bool is_check +int8[] str +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendByte.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendByte.srv new file mode 100644 index 00000000..ad23a4bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendByte.srv @@ -0,0 +1,6 @@ +int8 value +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendInt.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendInt.srv new file mode 100644 index 00000000..0f26b11c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendInt.srv @@ -0,0 +1,6 @@ +int32 value +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendLine.srv new file mode 100644 index 00000000..c18024a4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendLine.srv @@ -0,0 +1,6 @@ +string str +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendString.srv new file mode 100644 index 00000000..c18024a4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SerialSendString.srv @@ -0,0 +1,6 @@ +string str +string serial_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesian.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesian.srv new file mode 100644 index 00000000..ded6447f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesian.srv @@ -0,0 +1,10 @@ +float64[] pose +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxes.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxes.srv new file mode 100644 index 00000000..1a3ff415 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxes.srv @@ -0,0 +1,11 @@ +float64[] pose +float64[] extq +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxisGroup.srv new file mode 100644 index 00000000..bfcf0d8f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoCartesianWithAxisGroup.srv @@ -0,0 +1,12 @@ +float64[] pose +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +string group_name +float64[] extq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJoint.srv new file mode 100644 index 00000000..b4e848f7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJoint.srv @@ -0,0 +1,10 @@ +float64[] q +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxes.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxes.srv new file mode 100644 index 00000000..d2d2eb9d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxes.srv @@ -0,0 +1,11 @@ +float64[] q +float64[] extq +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxisGroup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxisGroup.srv new file mode 100644 index 00000000..b6f345b8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ServoJointWithAxisGroup.srv @@ -0,0 +1,12 @@ +float64[] q +float64 a +float64 v +float64 t +float64 lookahead_time +float64 gain +string group_name +float64[] extq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetAnalogOutputAfterEStopDefault.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetAnalogOutputAfterEStopDefault.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetAnalogOutputAfterEStopDefault.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBaseForceOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBaseForceOffset.srv new file mode 100644 index 00000000..60951cbd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBaseForceOffset.srv @@ -0,0 +1,5 @@ +float64[] force_offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBool.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBool.srv new file mode 100644 index 00000000..97f2c140 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBool.srv @@ -0,0 +1,6 @@ +string key +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolInput.srv new file mode 100644 index 00000000..803d3488 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolInput.srv @@ -0,0 +1,6 @@ +uint32 address +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolOutput.srv new file mode 100644 index 00000000..803d3488 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBoolOutput.srv @@ -0,0 +1,6 @@ +uint32 address +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBreakPoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBreakPoint.srv new file mode 100644 index 00000000..6be5711e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetBreakPoint.srv @@ -0,0 +1,5 @@ +int32 lineno +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCirclePathMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCirclePathMode.srv new file mode 100644 index 00000000..3e9ac6c2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCirclePathMode.srv @@ -0,0 +1,5 @@ +int32 mode +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionLevel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionLevel.srv new file mode 100644 index 00000000..1e8aaa45 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionLevel.srv @@ -0,0 +1,5 @@ +int32 level +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionStopType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionStopType.srv new file mode 100644 index 00000000..1da8127f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionStopType.srv @@ -0,0 +1,5 @@ +int32 type +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionThreshold.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionThreshold.srv new file mode 100644 index 00000000..4d1c365d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCollisionThreshold.srv @@ -0,0 +1,5 @@ +float64[] threshold +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondActive.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondActive.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondActive.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondAdvanced.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondAdvanced.srv new file mode 100644 index 00000000..ef9bf380 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondAdvanced.srv @@ -0,0 +1,7 @@ +string type +float64[] args +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondCylinder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondCylinder.srv new file mode 100644 index 00000000..bd660f70 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondCylinder.srv @@ -0,0 +1,8 @@ +float64[] axis +float64 radius +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondDistance.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondDistance.srv new file mode 100644 index 00000000..2ea718c2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondDistance.srv @@ -0,0 +1,6 @@ +float64 distance +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondForce.srv new file mode 100644 index 00000000..815b3768 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondForce.srv @@ -0,0 +1,8 @@ +float64[] min +float64[] max +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondOrient.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondOrient.srv new file mode 100644 index 00000000..0bc27874 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondOrient.srv @@ -0,0 +1,9 @@ +float64[] frame +float64 max_angle +float64 max_rot +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondPlane.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondPlane.srv new file mode 100644 index 00000000..8a2b9b16 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondPlane.srv @@ -0,0 +1,6 @@ +float64[] plane +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondSphere.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondSphere.srv new file mode 100644 index 00000000..10828a6c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondSphere.srv @@ -0,0 +1,8 @@ +float64[] center +float64 radius +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondTcpSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondTcpSpeed.srv new file mode 100644 index 00000000..815b3768 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetCondTcpSpeed.srv @@ -0,0 +1,8 @@ +float64[] min +float64[] max +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalInputAction.srv new file mode 100644 index 00000000..4d087d51 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalInputAction.srv @@ -0,0 +1,6 @@ +int32 index +int32 action +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutput.srv new file mode 100644 index 00000000..b0958034 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutput.srv @@ -0,0 +1,6 @@ +int32 index +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputAfterEStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputAfterEStop.srv new file mode 100644 index 00000000..b0958034 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputAfterEStop.srv @@ -0,0 +1,6 @@ +int32 index +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputPulse.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputPulse.srv new file mode 100644 index 00000000..c1147114 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputPulse.srv @@ -0,0 +1,7 @@ +int32 index +bool value +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputRunstate.srv new file mode 100644 index 00000000..16be2877 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConfigurableDigitalOutputRunstate.srv @@ -0,0 +1,6 @@ +int32 index +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackCompensate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackCompensate.srv new file mode 100644 index 00000000..52e8c85b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackCompensate.srv @@ -0,0 +1,6 @@ +int32 encoder_id +float64 comp +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackEncoder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackEncoder.srv new file mode 100644 index 00000000..7134f078 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackEncoder.srv @@ -0,0 +1,6 @@ +int32 encoder_id +int32 tick_per_meter +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackLimit.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackLimit.srv new file mode 100644 index 00000000..10ae36d1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackLimit.srv @@ -0,0 +1,6 @@ +int32 encoder_id +float64 limit +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSensorOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSensorOffset.srv new file mode 100644 index 00000000..3c31505d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSensorOffset.srv @@ -0,0 +1,6 @@ +int32 encoder_id +float64 offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackStartWindow.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackStartWindow.srv new file mode 100644 index 00000000..65fbd53e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackStartWindow.srv @@ -0,0 +1,7 @@ +int32 encoder_id +float64 window_min +float64 window_max +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSyncSeparation.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSyncSeparation.srv new file mode 100644 index 00000000..02e96d48 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetConveyorTrackSyncSeparation.srv @@ -0,0 +1,7 @@ +int32 encoder_id +float64 distance +float64 time +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDamping.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDamping.srv new file mode 100644 index 00000000..8c652245 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDamping.srv @@ -0,0 +1,6 @@ +float64[] damping +float64 ramp_time +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalInputActionDefault.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalInputActionDefault.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalInputActionDefault.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputAfterEStopDefault.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputAfterEStopDefault.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputAfterEStopDefault.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputRunstateDefault.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputRunstateDefault.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDigitalOutputRunstateDefault.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDouble.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDouble.srv new file mode 100644 index 00000000..16e92949 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDouble.srv @@ -0,0 +1,6 @@ +string key +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleInput.srv new file mode 100644 index 00000000..96640fad --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleInput.srv @@ -0,0 +1,6 @@ +uint32 address +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleOutput.srv new file mode 100644 index 00000000..96640fad --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDoubleOutput.srv @@ -0,0 +1,6 @@ +uint32 address +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel.srv new file mode 100644 index 00000000..5c1b71ed --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel.srv @@ -0,0 +1,7 @@ +float64[] m +float64[] d +float64[] k +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel1.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel1.srv new file mode 100644 index 00000000..987a432e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModel1.srv @@ -0,0 +1,7 @@ +float64[] env_stiff +float64[] damp_scale +float64[] stiff_scale +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelContact.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelContact.srv new file mode 100644 index 00000000..987a432e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelContact.srv @@ -0,0 +1,7 @@ +float64[] env_stiff +float64[] damp_scale +float64[] stiff_scale +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelInsert.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelInsert.srv new file mode 100644 index 00000000..fe608363 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelInsert.srv @@ -0,0 +1,6 @@ +float64[] damp_scale +float64[] stiff_scale +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelSearch.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelSearch.srv new file mode 100644 index 00000000..fe608363 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetDynamicModelSearch.srv @@ -0,0 +1,6 @@ +float64[] damp_scale +float64[] stiff_scale +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncDecoderType.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncDecoderType.srv new file mode 100644 index 00000000..e30934bb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncDecoderType.srv @@ -0,0 +1,6 @@ +int32 type +int32 range_id +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncTickCount.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncTickCount.srv new file mode 100644 index 00000000..d0d3b60a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEncTickCount.srv @@ -0,0 +1,5 @@ +int32 tick +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEndPath.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEndPath.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEndPath.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEqradius.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEqradius.srv new file mode 100644 index 00000000..7d19ac7f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetEqradius.srv @@ -0,0 +1,5 @@ +float64 eqradius +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloat.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloat.srv new file mode 100644 index 00000000..9b3094fc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloat.srv @@ -0,0 +1,6 @@ +string key +float32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatInput.srv new file mode 100644 index 00000000..f005a73d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatInput.srv @@ -0,0 +1,6 @@ +uint32 address +float32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatOutput.srv new file mode 100644 index 00000000..f005a73d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFloatOutput.srv @@ -0,0 +1,6 @@ +uint32 address +float32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFreedriveDamp.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFreedriveDamp.srv new file mode 100644 index 00000000..864daaac --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFreedriveDamp.srv @@ -0,0 +1,5 @@ +float64[] damp +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFuturePointSamplePeriod.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFuturePointSamplePeriod.srv new file mode 100644 index 00000000..b129f346 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetFuturePointSamplePeriod.srv @@ -0,0 +1,5 @@ +float64 sample_time +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetGravity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetGravity.srv new file mode 100644 index 00000000..55341bb3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetGravity.srv @@ -0,0 +1,5 @@ +float64[] gravity +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguidDamp.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguidDamp.srv new file mode 100644 index 00000000..864daaac --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguidDamp.srv @@ -0,0 +1,5 @@ +float64[] damp +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguideParams.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguideParams.srv new file mode 100644 index 00000000..932c17aa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHandguideParams.srv @@ -0,0 +1,6 @@ +int32[] freeaxes +float64[] feature +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHardwareCustomParameters.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHardwareCustomParameters.srv new file mode 100644 index 00000000..f608e4c7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHardwareCustomParameters.srv @@ -0,0 +1,5 @@ +string param +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHomePosition.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHomePosition.srv new file mode 100644 index 00000000..1029ecb4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetHomePosition.srv @@ -0,0 +1,5 @@ +float64[] positions +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16Register.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16Register.srv new file mode 100644 index 00000000..a1bb347c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16Register.srv @@ -0,0 +1,6 @@ +uint32 address +int16 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16RegisterBit.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16RegisterBit.srv new file mode 100644 index 00000000..91201423 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt16RegisterBit.srv @@ -0,0 +1,7 @@ +uint32 address +uint8 bit_offset +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32.srv new file mode 100644 index 00000000..84a03f63 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32.srv @@ -0,0 +1,6 @@ +string key +int32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Input.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Input.srv new file mode 100644 index 00000000..c65315c3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Input.srv @@ -0,0 +1,6 @@ +uint32 address +int32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Output.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Output.srv new file mode 100644 index 00000000..c65315c3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetInt32Output.srv @@ -0,0 +1,6 @@ +uint32 address +int32 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetKinematicsCompensate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetKinematicsCompensate.srv new file mode 100644 index 00000000..f1e0c0ab --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetKinematicsCompensate.srv @@ -0,0 +1,5 @@ +StringFloat64ArrayMap param +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLabel.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLabel.srv new file mode 100644 index 00000000..5df2456a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLabel.srv @@ -0,0 +1,6 @@ +int32 tid +string lineno +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLinkModeEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLinkModeEnable.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLinkModeEnable.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLookAheadSize.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLookAheadSize.srv new file mode 100644 index 00000000..1ff39f0b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLookAheadSize.srv @@ -0,0 +1,5 @@ +int32 size +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLpFilter.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLpFilter.srv new file mode 100644 index 00000000..728a58f0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetLpFilter.srv @@ -0,0 +1,5 @@ +float64[] cutoff_freq +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetMountingPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetMountingPose.srv new file mode 100644 index 00000000..02be3046 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetMountingPose.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetOperationalMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetOperationalMode.srv new file mode 100644 index 00000000..3e9ac6c2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetOperationalMode.srv @@ -0,0 +1,5 @@ +int32 mode +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPayload.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPayload.srv new file mode 100644 index 00000000..b77eee11 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPayload.srv @@ -0,0 +1,8 @@ +float64 m +float64[] cog +float64[] aom +float64[] inertia +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPersistentParameters.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPersistentParameters.srv new file mode 100644 index 00000000..f608e4c7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPersistentParameters.srv @@ -0,0 +1,5 @@ +string param +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPlanContext.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPlanContext.srv new file mode 100644 index 00000000..91262c56 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetPlanContext.srv @@ -0,0 +1,7 @@ +int32 tid +int32 lineno +string comment +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeStartPoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeStartPoint.srv new file mode 100644 index 00000000..123c5b22 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeStartPoint.srv @@ -0,0 +1,11 @@ +float64[] q +int32 move_type +float64 blend_radius +float64[] qdmax +float64[] qddmax +float64[] vmax +float64[] amax +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeWait.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeWait.srv new file mode 100644 index 00000000..e36c9c96 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetResumeWait.srv @@ -0,0 +1,5 @@ +bool wait +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetRobotZero.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetRobotZero.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetRobotZero.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoMode.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoMode.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoMode.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoModeSelect.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoModeSelect.srv new file mode 100644 index 00000000..3e9ac6c2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetServoModeSelect.srv @@ -0,0 +1,5 @@ +int32 mode +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSim.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSim.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSim.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSlowDownFraction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSlowDownFraction.srv new file mode 100644 index 00000000..87bce36c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSlowDownFraction.srv @@ -0,0 +1,6 @@ +int32 level +float64 fraction +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSoftFloatParams.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSoftFloatParams.srv new file mode 100644 index 00000000..74bce352 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSoftFloatParams.srv @@ -0,0 +1,10 @@ +bool joint_space +bool[] select +float64[] stiff_percent +float64[] stiff_damp_ratio +float64[] force_threshold +float64[] force_limit +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSpeedFraction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSpeedFraction.srv new file mode 100644 index 00000000..3edecb86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSpeedFraction.srv @@ -0,0 +1,5 @@ +float64 fraction +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogInputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogInputDomain.srv new file mode 100644 index 00000000..36614e26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogInputDomain.srv @@ -0,0 +1,6 @@ +int32 index +int32 domain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutput.srv new file mode 100644 index 00000000..551e9426 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutput.srv @@ -0,0 +1,6 @@ +int32 index +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputAfterEStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputAfterEStop.srv new file mode 100644 index 00000000..551e9426 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputAfterEStop.srv @@ -0,0 +1,6 @@ +int32 index +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputDomain.srv new file mode 100644 index 00000000..36614e26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputDomain.srv @@ -0,0 +1,6 @@ +int32 index +int32 domain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputRunstate.srv new file mode 100644 index 00000000..16be2877 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardAnalogOutputRunstate.srv @@ -0,0 +1,6 @@ +int32 index +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalInputAction.srv new file mode 100644 index 00000000..4d087d51 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalInputAction.srv @@ -0,0 +1,6 @@ +int32 index +int32 action +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutput.srv new file mode 100644 index 00000000..b0958034 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutput.srv @@ -0,0 +1,6 @@ +int32 index +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputAfterEStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputAfterEStop.srv new file mode 100644 index 00000000..b0958034 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputAfterEStop.srv @@ -0,0 +1,6 @@ +int32 index +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputPulse.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputPulse.srv new file mode 100644 index 00000000..c1147114 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputPulse.srv @@ -0,0 +1,7 @@ +int32 index +bool value +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputRunstate.srv new file mode 100644 index 00000000..16be2877 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetStandardDigitalOutputRunstate.srv @@ -0,0 +1,6 @@ +int32 index +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetString.srv new file mode 100644 index 00000000..c2ce837b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetString.srv @@ -0,0 +1,6 @@ +string key +string value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvForce.srv new file mode 100644 index 00000000..144eff36 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvForce.srv @@ -0,0 +1,6 @@ +float64[] min +float64[] max +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvOrient.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvOrient.srv new file mode 100644 index 00000000..1cb9a466 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvOrient.srv @@ -0,0 +1,8 @@ +float64[] frame +float64 max_angle +float64 max_rot +bool outside +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosBox.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosBox.srv new file mode 100644 index 00000000..bedc5edd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosBox.srv @@ -0,0 +1,6 @@ +float64[] frame +float64[] box +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosCylinder.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosCylinder.srv new file mode 100644 index 00000000..50b0b741 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosCylinder.srv @@ -0,0 +1,6 @@ +float64[] frame +float64[] cylinder +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosSphere.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosSphere.srv new file mode 100644 index 00000000..8d80d309 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvPosSphere.srv @@ -0,0 +1,6 @@ +float64[] frame +float64[] sphere +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvReoriSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvReoriSpeed.srv new file mode 100644 index 00000000..a1c82f1e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvReoriSpeed.srv @@ -0,0 +1,7 @@ +float64[] speed_limit +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvTcpSpeed.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvTcpSpeed.srv new file mode 100644 index 00000000..a1c82f1e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetSupvTcpSpeed.srv @@ -0,0 +1,7 @@ +float64[] speed_limit +bool outside +float64 timeout +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTargetForce.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTargetForce.srv new file mode 100644 index 00000000..4fd14a39 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTargetForce.srv @@ -0,0 +1,9 @@ +float64[] feature +bool[] compliance +float64[] wrench +float64[] limits +int32 type +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceOffset.srv new file mode 100644 index 00000000..60951cbd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceOffset.srv @@ -0,0 +1,5 @@ +float64[] force_offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceSensorPose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceSensorPose.srv new file mode 100644 index 00000000..c8e1bee4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpForceSensorPose.srv @@ -0,0 +1,5 @@ +float64[] sensor_pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpMaxLinearVelocity.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpMaxLinearVelocity.srv new file mode 100644 index 00000000..b089c203 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpMaxLinearVelocity.srv @@ -0,0 +1,5 @@ +float64 v +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpOffset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpOffset.srv new file mode 100644 index 00000000..c3a7b681 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTcpOffset.srv @@ -0,0 +1,5 @@ +float64[] offset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTimeOptimalEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTimeOptimalEnable.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetTimeOptimalEnable.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogInputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogInputDomain.srv new file mode 100644 index 00000000..36614e26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogInputDomain.srv @@ -0,0 +1,6 @@ +int32 index +int32 domain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutput.srv new file mode 100644 index 00000000..551e9426 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutput.srv @@ -0,0 +1,6 @@ +int32 index +float64 value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputDomain.srv new file mode 100644 index 00000000..36614e26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputDomain.srv @@ -0,0 +1,6 @@ +int32 index +int32 domain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputRunstate.srv new file mode 100644 index 00000000..16be2877 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolAnalogOutputRunstate.srv @@ -0,0 +1,6 @@ +int32 index +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalInputAction.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalInputAction.srv new file mode 100644 index 00000000..4d087d51 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalInputAction.srv @@ -0,0 +1,6 @@ +int32 index +int32 action +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutput.srv new file mode 100644 index 00000000..b0958034 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutput.srv @@ -0,0 +1,6 @@ +int32 index +bool value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputPulse.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputPulse.srv new file mode 100644 index 00000000..c1147114 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputPulse.srv @@ -0,0 +1,7 @@ +int32 index +bool value +float64 duration +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputRunstate.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputRunstate.srv new file mode 100644 index 00000000..16be2877 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolDigitalOutputRunstate.srv @@ -0,0 +1,6 @@ +int32 index +int32 runstate +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolInertial.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolInertial.srv new file mode 100644 index 00000000..7e5df87a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolInertial.srv @@ -0,0 +1,7 @@ +float64 m +float64[] com +float64[] inertial +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolIoInput.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolIoInput.srv new file mode 100644 index 00000000..d0fe8c11 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolIoInput.srv @@ -0,0 +1,6 @@ +int32 index +bool input +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolVoltageOutputDomain.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolVoltageOutputDomain.srv new file mode 100644 index 00000000..e0310eb3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetToolVoltageOutputDomain.srv @@ -0,0 +1,5 @@ +int32 domain +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetUnlockProtectiveStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetUnlockProtectiveStop.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetUnlockProtectiveStop.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecChar.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecChar.srv new file mode 100644 index 00000000..3d0e3aff --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecChar.srv @@ -0,0 +1,6 @@ +string key +int8[] value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecDouble.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecDouble.srv new file mode 100644 index 00000000..09305316 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecDouble.srv @@ -0,0 +1,6 @@ +string key +float64[] value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecFloat.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecFloat.srv new file mode 100644 index 00000000..b4018011 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecFloat.srv @@ -0,0 +1,6 @@ +string key +float32[] value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecInt32.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecInt32.srv new file mode 100644 index 00000000..88fb9f05 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetVecInt32.srv @@ -0,0 +1,6 @@ +string key +int32[] value +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWatchDog.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWatchDog.srv new file mode 100644 index 00000000..61442690 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWatchDog.srv @@ -0,0 +1,7 @@ +string key +float64 timeout +int32 action +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectData.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectData.srv new file mode 100644 index 00000000..aadcfd8b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectData.srv @@ -0,0 +1,5 @@ +WObjectData wobj +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectHold.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectHold.srv new file mode 100644 index 00000000..711c4c93 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SetWorkObjectHold.srv @@ -0,0 +1,6 @@ +string module_name +float64[] mounting_pose +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketClose.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketClose.srv new file mode 100644 index 00000000..c31b6788 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketClose.srv @@ -0,0 +1,5 @@ +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketHasConnected.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketHasConnected.srv new file mode 100644 index 00000000..a1e7fe86 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketHasConnected.srv @@ -0,0 +1,5 @@ +string socket_name +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketOpen.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketOpen.srv new file mode 100644 index 00000000..6bd236e7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketOpen.srv @@ -0,0 +1,7 @@ +string address +int32 port +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAllString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAllString.srv new file mode 100644 index 00000000..4611fa3f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAllString.srv @@ -0,0 +1,6 @@ +string variable +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAsciiFloat.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAsciiFloat.srv new file mode 100644 index 00000000..bcde36fd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadAsciiFloat.srv @@ -0,0 +1,7 @@ +int32 number +string variable +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadBinaryInteger.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadBinaryInteger.srv new file mode 100644 index 00000000..bcde36fd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadBinaryInteger.srv @@ -0,0 +1,7 @@ +int32 number +string variable +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadByteList.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadByteList.srv new file mode 100644 index 00000000..bcde36fd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadByteList.srv @@ -0,0 +1,7 @@ +int32 number +string variable +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadString.srv new file mode 100644 index 00000000..1fee1ed7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketReadString.srv @@ -0,0 +1,9 @@ +string variable +string socket_name +string prefix +string suffix +bool interpret_escape +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendAllString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendAllString.srv new file mode 100644 index 00000000..5724cb24 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendAllString.srv @@ -0,0 +1,7 @@ +bool is_check +int8[] str +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendByte.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendByte.srv new file mode 100644 index 00000000..e4e6b141 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendByte.srv @@ -0,0 +1,6 @@ +int8 value +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendInt.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendInt.srv new file mode 100644 index 00000000..c3825b17 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendInt.srv @@ -0,0 +1,6 @@ +int32 value +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendLine.srv new file mode 100644 index 00000000..cfd335bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendLine.srv @@ -0,0 +1,6 @@ +string str +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendString.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendString.srv new file mode 100644 index 00000000..cfd335bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SocketSendString.srv @@ -0,0 +1,6 @@ +string str +string socket_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatDisable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatDisable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatDisable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatEnable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SoftFloatEnable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeDisable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeDisable.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeDisable.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeEnable.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeEnable.srv new file mode 100644 index 00000000..a52f44a8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeEnable.srv @@ -0,0 +1,5 @@ +float64 ref_force +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeTune.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeTune.srv new file mode 100644 index 00000000..f082d364 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedChangeTune.srv @@ -0,0 +1,6 @@ +int32 speed_levels +float64 speed_ratio_min +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedFractionCritical.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedFractionCritical.srv new file mode 100644 index 00000000..2813e03d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedFractionCritical.srv @@ -0,0 +1,5 @@ +bool enable +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedJoint.srv new file mode 100644 index 00000000..3c9682b5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedJoint.srv @@ -0,0 +1,7 @@ +float64[] qd +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedLine.srv new file mode 100644 index 00000000..328a78aa --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SpeedLine.srv @@ -0,0 +1,7 @@ +float64[] xd +float64 a +float64 t +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Start.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Start.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Start.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartMove.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartMove.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartMove.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecord.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecord.srv new file mode 100644 index 00000000..eec3efef --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecord.srv @@ -0,0 +1,5 @@ +string file_name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecordCache.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecordCache.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StartRecordCache.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Startup.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Startup.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Startup.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Step.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Step.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Step.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Stop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Stop.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Stop.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopJoint.srv new file mode 100644 index 00000000..513dce41 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopJoint.srv @@ -0,0 +1,5 @@ +float64 acc +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopLine.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopLine.srv new file mode 100644 index 00000000..42dc41df --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopLine.srv @@ -0,0 +1,6 @@ +float64 acc +float64 acc_rot +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopMove.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopMove.srv new file mode 100644 index 00000000..a277c8fc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopMove.srv @@ -0,0 +1,6 @@ +bool quick +bool all_tasks +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecord.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecord.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecord.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecordCache.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecordCache.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StopRecordCache.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StorePath.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StorePath.srv new file mode 100644 index 00000000..9e8478b7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/StorePath.srv @@ -0,0 +1,5 @@ +bool keep_sync +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SwitchTask.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SwitchTask.srv new file mode 100644 index 00000000..4a927407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SwitchTask.srv @@ -0,0 +1,5 @@ +int32 tid +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOff.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOff.srv new file mode 100644 index 00000000..8f268f46 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOff.srv @@ -0,0 +1,5 @@ +string syncident +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOn.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOn.srv new file mode 100644 index 00000000..44110844 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveOn.srv @@ -0,0 +1,6 @@ +string syncident +string[] taskset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveResume.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveResume.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveResume.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSegment.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSegment.srv new file mode 100644 index 00000000..6f15f740 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSegment.srv @@ -0,0 +1,5 @@ +int32 id +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSuspend.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSuspend.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveSuspend.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveUndo.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveUndo.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/SyncMoveUndo.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TcpOffsetIdentify.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TcpOffsetIdentify.srv new file mode 100644 index 00000000..70090d2a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TcpOffsetIdentify.srv @@ -0,0 +1,5 @@ +Float64ArrayList poses +--- +string result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Textmsg.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Textmsg.srv new file mode 100644 index 00000000..c78cf00b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/Textmsg.srv @@ -0,0 +1,5 @@ +string msg +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerDelete.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerDelete.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerDelete.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerReset.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerReset.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerReset.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStart.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStart.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStart.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStop.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStop.srv new file mode 100644 index 00000000..6bf4dbfb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TimerStop.srv @@ -0,0 +1,5 @@ +string name +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolContact.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolContact.srv new file mode 100644 index 00000000..b10d3193 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolContact.srv @@ -0,0 +1,5 @@ +bool[] direction +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolSpaceInRange.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolSpaceInRange.srv new file mode 100644 index 00000000..249058d6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ToolSpaceInRange.srv @@ -0,0 +1,5 @@ +float64[] pose +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackCartesian.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackCartesian.srv new file mode 100644 index 00000000..64f6fd28 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackCartesian.srv @@ -0,0 +1,8 @@ +float64[] pose +float64 t +float64 smooth_scale +float64 delay_sacle +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackJoint.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackJoint.srv new file mode 100644 index 00000000..16e6f255 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TrackJoint.srv @@ -0,0 +1,8 @@ +float64[] q +float64 t +float64 smooth_scale +float64 delay_sacle +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TransferRefFrame.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TransferRefFrame.srv new file mode 100644 index 00000000..72b63ca1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TransferRefFrame.srv @@ -0,0 +1,7 @@ +float64[] f_b_a_old +float64[3] v_in_a +int32 type +--- +float64[] result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggBegin.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggBegin.srv new file mode 100644 index 00000000..99ff4adb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggBegin.srv @@ -0,0 +1,6 @@ +float64 distance +float64 delay +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggEnd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggEnd.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggEnd.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggInterrupt.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggInterrupt.srv new file mode 100644 index 00000000..99ff4adb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/TriggInterrupt.srv @@ -0,0 +1,6 @@ +float64 distance +float64 delay +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/UnwindEncDeltaTickCount.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/UnwindEncDeltaTickCount.srv new file mode 100644 index 00000000..f784367f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/UnwindEncDeltaTickCount.srv @@ -0,0 +1,5 @@ +int32 delta_count +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ValidatePath.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ValidatePath.srv new file mode 100644 index 00000000..997dca0e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/ValidatePath.srv @@ -0,0 +1,10 @@ +int32 type +float64[] start +float64 r1 +float64[] end +float64 r2 +float64 d +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/VariableUpdated.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/VariableUpdated.srv new file mode 100644 index 00000000..bad98f67 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/VariableUpdated.srv @@ -0,0 +1,6 @@ +string key +uint64 since +--- +bool result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WaitSyncTasks.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WaitSyncTasks.srv new file mode 100644 index 00000000..44110844 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WaitSyncTasks.srv @@ -0,0 +1,6 @@ +string syncident +string[] taskset +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveEnd.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveEnd.srv new file mode 100644 index 00000000..da36592c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveEnd.srv @@ -0,0 +1,4 @@ +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveStart.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveStart.srv new file mode 100644 index 00000000..2ed6313d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveStart.srv @@ -0,0 +1,5 @@ +string params +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveUpdateParameters.srv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveUpdateParameters.srv new file mode 100644 index 00000000..2ed6313d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/aubo_interfaces/srv/WeaveUpdateParameters.srv @@ -0,0 +1,5 @@ +string params +--- +int32 result +int32 code +string message diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/error_code.md b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/error_code.md new file mode 100644 index 00000000..9b197409 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/error_code.md @@ -0,0 +1,555 @@ +--- +layout: doc +title: "错误码" +--- + +# 错误码 + +最后更新时间: 2026-06-29 + +## 系统错误 (0 - 102) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 0 | `DEBUG` | Debug message {} | | | +| 1 | `POPUP` | Popup title: {}, msg: {}, mode: {} | | | +| 2 | `POPUP_DISMISS` | {} | | | +| 3 | `SYSTEM_HALT` | {} | | | +| 4 | `INV_ARGUMENTS` | Invalid arguments. | | | +| 5 | `USER_NOTIFY` | {} | | | +| 6 | `POPUP_DISMISS_BY_ID` | {} | | | +| 10 | `MODBUS_SIGNAL_CREATED` | Modbus signal {} created. | | | +| 11 | `MODBUS_SIGNAL_REMOVED` | Modbus signal {} removed. | | | +| 12 | `MODBUS_SIGNAL_VALUE_CHANGED` | Modbus signal {} value changed to {} | | | +| 13 | `RUNTIME_CONTEXT` | tid: {} lineno: {} index: {} comment: {} | | | +| 14 | `INTERP_CONTEXT` | tid: {} lineno: {} index: {} comment: {} | | | +| 15 | `PROGRAM_LOADED` | program loaded: {} | | | +| 16 | `TASK_DELETED` | tid: {} | | was deleted | +| 20 | `MODBUS_SLAVE_BIT` | Modbus slave address: {} value {} | | | +| 21 | `MODBUS_SLAVE_REG` | Modbus slave address: {} value {} | | | +| 30 | `PNIO_SLAVE_SLOT_VALUE` | PNIO slot: {} subslot {} index {} value {} | | | +| 31 | `PNIO_CONNECT_STATUS` | PNIO connection status changed to {} | | | +| 32 | `PNIO_DEVICE_NAME` | PNIO device name changed to {} | | | +| 33 | `PNIO_IP` | PNIO ip {} mask {} gateway {} | | | +| 40 | `ICM_SERVER_STATUS` | ICM server status changed to {} | | | +| 50 | `EIP_SLAVE_VALUE` | EIP slave: trans_type {} index {} value {} | | | +| 51 | `EIP_SLAVE_CONNECT_STATUS` | EIP slave connection status changed to {} | | | +| 100 | `LOG_PROGRAM_SUCCESS` | [{}] Load program {} successful | | | +| 101 | `LOG_PROGRAM_FAILED` | [{}] Load program {} failed, file not found | | | +| 102 | `LOG_PROGRAM_FAILED2` | [{}] Load program {} failed, configuration file (.ins) does not match | | | + +## 关节错误 (10001 - 10044) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 10001 | `JOINT_ERR_OVER_CURRENET` | joint{} error: over current | | (a) Check for short circuit. (b) Do a Complete rebooting sequence. (c) If this happens more than two times in a row, replace joint | +| 10002 | `JOINT_ERR_OVER_VOLTAGE` | joint{} error: over voltage | | (a) Do a Complete rebooting sequence. (b) Check 48 V Power supply, current distributer, energy eater and Control Board for issues | +| 10003 | `JOINT_ERR_LOW_VOLTAGE` | joint{} error: low voltage | | (a) Do a Complete rebooting sequence. (b) Check for short circuit in robot arm. (c) Check 48 V Power supply, current distributer, energy eater and Control Board for issues | +| 10004 | `JOINT_ERR_OVER_TEMP` | joint{} error: over temperature | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10005 | `JOINT_ERR_HALL` | joint{} error: hall | | | +| 10006 | `JOINT_ERR_ENCODER` | joint{} error: encoder | | Check encoder connections | +| 10007 | `JOINT_ERR_ABS_ENCODER` | joint{} error: abs encoder | | | +| 10008 | `JOINT_ERR_Q_CURRENT` | joint{} error: detect current | | | +| 10009 | `JOINT_ERR_ENC_POLL` | joint{} error: encoder pollustion | | | +| 10010 | `JOINT_ERR_ENC_Z_SIGNAL` | joint{} error: enocder z signal | | | +| 10011 | `JOINT_ERR_ENC_CAL` | joint{} error: encoder calibrate | | | +| 10012 | `JOINT_ERR_IMU_SENS` | joint{} error: IMU sensor | | | +| 10013 | `JOINT_ERR_TEMP_SENS` | joint{} error: TEMP sensor | | | +| 10014 | `JOINT_ERR_CAN_BUS` | joint{} error: CAN bus error | | | +| 10015 | `JOINT_ERR_SYS_CUR` | joint{} error: system current error | | | +| 10016 | `JOINT_ERR_SYS_POS` | joint{} error: system position error | | | +| 10017 | `JOINT_ERR_OVER_SP` | joint{} error: over speed | | | +| 10018 | `JOINT_ERR_OVER_ACC` | joint{} error: over accelerate | | | +| 10019 | `JOINT_ERR_TRACE` | joint{} error: trace accuracy | | | +| 10020 | `JOINT_ERR_TAG_POS_OVER` | joint{} error: target position out of range | | | +| 10021 | `JOINT_ERR_TAG_SP_OVER` | joint{} error: target speed out of range | | | +| 10022 | `JOINT_ERR_COLLISION` | joint{} error: collision | | | +| 10023 | `JOINT_ERR_COMMON` | joint{} error: unkown error. Check communication with joint. | | | +| 10024 | `JOINT_ERR_SWITCH_SERVO_MODE` | joint{} error: switch servo mode timeout. | | | +| 10025 | `JOINT_ERR_MOTOR_STUCK` | joint{} error: motor stucked. | | | +| 10026 | `JOINT_ERR_REDUCER_OVER_TEMP` | joint{} error: reducer over temperature | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10027 | `JOINT_ERR_REDUCER_NTC` | joint{} error: reducer TEMP sensor failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10028 | `JOINT_ERR_ABS_MULTITURN` | joint{} error: absolute encoder multiturn error | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10029 | `JOINT_ERR_ADC_ZERO_OFFSET` | joint{} error: ADC zero offset failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10030 | `JOINT_ERR_SHORT_CIRCUIT` | joint{} error: short circuit | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10031 | `JOINT_ERR_PHASE_LOST` | joint{} error: motor phase lost | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10032 | `JOINT_ERR_BRAKE` | joint{} error: brake failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10033 | `JOINT_ERR_FIRMWARE_UPDATE` | joint{} error: firmware update failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10034 | `JOINT_ERR_BATTERY_LOW` | joint{} error: battery low | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10035 | `JOINT_ERR_PHASE_ALIGN` | joint{} error: phase align | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10036 | `JOINT_ERR_CAN_HW_FAULT` | joint{} error: CAN bus hw fault | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10037 | `JOINT_ERR_POS_DISCONTINUOUS` | joint{} error: target position discontinuous | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10038 | `JOINT_ERR_POS_INIT` | joint{} error: position initiallization failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10039 | `JOINT_ERR_TORQUE_SENSOR` | joint{} error: torqure sensor failure | | (a) Check robot’s environment and make sure the robot is operating within recommended limits. (b) Do a Complete rebooting sequence | +| 10040 | `JOINT_ERR_OFFLINE` | joint{} error: joint may be offline | | (a) Check joint's hardware. (b) Check joint's id. | +| 10041 | `JOINT_ERR_BOOTLOADER` | joint{} error: The joint is in bootloader mode. Retry firmware update. | | | +| 10042 | `JOINT_ERR_SLAVE_OFFLINE` | slave joint{} error: slave joint may be offline | | (a) Check slave joint's hardware. (b) Check slave joint's id. | +| 10043 | `JOINT_ERR_SLAVE_BOOTLOADER` | slave joint{} error: The slave joint is in bootloader mode. Retry firmware update. | | | +| 10044 | `JOINT_ERR_ETHERCAT_BUS` | joint{} error: ETHERCAT bus error | | | + +## 关节扩展错误 (10401 - 10800) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 10401 | `EX_JOINT_EC_SHORT_CIRCUIT` | joint{} error: short circuit protection | | | +| 10402 | `EX_JOINT_EC_SHORT_CURRENT` | joint{} error: over current | | | +| 10403 | `EX_JOINT_EC_PHASEA_CURRENT` | joint{} error: phase A over current | | | +| 10404 | `EX_JOINT_EC_PHASEB_CURRENT` | joint{} error: phase B over current | | | +| 10405 | `EX_JOINT_EC_PHASEC_CURRENT` | joint{} error: phase C over current | | | +| 10406 | `EX_JOINT_EC_PHASE_CURRENT` | joint{} error: phase over current | | | +| 10407 | `EX_JOINT_EC_MOTOR_PHASE_LOSE` | joint{} error: motor phase loss | | | +| 10408 | `EX_JOINT_EC_BUS_OVER_VOLTAGE` | joint{} error: bus over voltage | | | +| 10409 | `EX_JOINT_EC_BUS_LOW_VOLTAGE` | joint{} error: bus under voltage | | | +| 10410 | `EX_JOINT_EC_OVERLOAD` | joint{} error: overload | | | +| 10411 | `EX_JOINT_EC_IPM_OVER_TEMP` | joint{} error: IPM over temperature | | | +| 10412 | `EX_JOINT_EC_REDUCER_OVER_TEMP` | joint{} error: reducer over temperature | | | +| 10413 | `EX_JOINT_EC_ADC_ZERO_OFFSET` | joint{} error: ADC zero offset | | | +| 10414 | `EX_JOINT_EC_REDUCER_NTC` | joint{} error: reducer NTC fault | | | +| 10415 | `EX_JOINT_EC_IPM_NTC` | joint{} error: IPM NTC fault | | | +| 10416 | `EX_JOINT_EC_TORQUE_SENSOR` | joint{} error: torque sensor fault | | | +| 10417 | `EX_JOINT_EC_TORQUE_SENSOR_COMM` | joint{} error: torque sensor communication fault | | | +| 10418 | `EX_JOINT_EC_MOTOR_ABS_ENC_COMM` | joint{} error: motor-side absolute encoder communication fault | | | +| 10419 | `EX_JOINT_EC_REDUCER_ABS_ENC_COMM` | joint{} error: reducer-side absolute encoder communication fault | | | +| 10420 | `EX_JOINT_EC_REDUCER_ABS_ENC_DATA` | joint{} error: reducer-side absolute encoder data channel disabled warning | | | +| 10421 | `EX_JOINT_EC_REDUCER_ABS_ENC_CMD` | joint{} error: reducer-side absolute encoder command invalid warning | | | +| 10422 | `EX_JOINT_EC_REDUCER_ABS_ENC_ERR` | joint{} error: reducer-side absolute encoder fault | | | +| 10423 | `EX_JOINT_EC_REDUCER_ABS_ENC_WARNING` | joint{} error: reducer-side absolute encoder warning | | | +| 10424 | `EX_JOINT_EC_BRAKE` | joint{} error: brake fault | | | +| 10425 | `EX_JOINT_EC_COMM_HWL` | joint{} error: communication hardware layer error | | | +| 10426 | `EX_JOINT_EC_FIRMWARE_UPDATE` | joint{} error: firmware update failed | | | +| 10427 | `EX_JOINT_EC_FLASH_OP` | joint{} error: flash operation failed | | | +| 10428 | `EX_JOINT_EC_MU_SAVE` | joint{} error: multi-turn data error | | | +| 10429 | `EX_JOINT_EC_DEMADATA_LOST` | joint{} error: calibration zero point data lost | | | +| 10430 | `EX_JOINT_EC_PARAMETER` | joint{} error: parameter error | | | +| 10431 | `EX_JOINT_EC_UVW_LOGIC` | joint{} error: hall signal fault | | | +| 10432 | `EX_JOINT_EC_UVW_ABZ` | joint{} error: incremental encoder fault | | | +| 10433 | `EX_JOINT_EC_ENC_Z_LOST` | joint{} error: encoder Z signal lost | | | +| 10434 | `EX_JOINT_EC_ENC_POLLUTE` | joint{} error: encoder pollution | | | +| 10435 | `EX_JOINT_EC_ENC_CALI` | joint{} error: encoder calibration failed | | | +| 10436 | `EX_JOINT_EC_MT_ABS_DATA` | joint{} error: multi-turn absolute data error | | | +| 10437 | `EX_JOINT_EC_ENC_TYPE_INFO` | joint{} error: encoder type identified and saved | | | +| 10438 | `EX_JOINT_EC_ENC_TYPE_ERROR` | joint{} error: encoder type error | | | +| 10439 | `EX_JOINT_EC_ENC_VERIFY` | joint{} error: encoder verification failed | | | +| 10440 | `EX_JOINT_EC_DUAL_ENC_ERROR` | joint{} error: dual encoder deviation too large | | | +| 10441 | `EX_JOINT_EC_DUAL_ENC_EANGLE` | joint{} error: dual encoder electrical angle deviation too large | | | +| 10442 | `EX_JOINT_EC_OBJECT_DICT_ERROR` | joint{} error: object dictionary data error | | | +| 10443 | `EX_JOINT_EC_MOTOR_STALL` | joint{} error: motor stall protection | | | +| 10444 | `EX_JOINT_EC_ABS_ENC_LOW_VOLT` | joint{} error: absolute encoder low voltage | | | +| 10445 | `EX_JOINT_EC_MT_BATTERY_LOW` | joint{} error: multi-turn battery low voltage | | | +| 10446 | `EX_JOINT_EC_POS_CMD` | joint{} error: position command discontinuous | | | +| 10447 | `EX_JOINT_EC_POS_OVER_LIMIT` | joint{} error: position over limit | | | +| 10448 | `EX_JOINT_EC_COMM_PROTO` | joint{} error: communication protocol layer error | | | +| 10449 | `EX_JOINT_EC_GRAVITY_PARA_WARNING` | joint{} error: gravity compensation parameter invalid | | | +| 10450 | `EX_JOINT_EC_GRAVITY_COMPENSATE_ERROR` | joint{} error: gravity compensation value sudden change | | | +| 10451 | `EX_JOINT_EC_LOW_RIGIDITY` | joint{} error: collision soft float abnormal | | | +| 10452 | `EX_JOINT_EC_POS_CMD_WARNING` | joint{} error: position command unchanged during motion | | | +| 10453 | `EX_JOINT_EC_SLAVE_COMM` | joint{} error: master-slave MCU communication fault | | | +| 10454 | `EX_JOINT_EC_POS_ERR` | joint{} error: position following error too large | | | +| 10455 | `EX_JOINT_EC_DUAL_POS_ERR` | joint{} error: dual servo position sync error too large | | | +| 10456 | `EX_JOINT_EC_DUAL_COMM_ERR` | joint{} error: dual servo communication | | | +| 10457 | `EX_JOINT_EC_CAN_BUSOFF` | joint{} error: CAN bus-off warning | | | +| 10458 | `EX_JOINT_EC_SYNC_SNAKE` | joint{} error: sync frame jitter warning | | | +| 10459 | `EX_JOINT_EC_SYNC_DISCON` | joint{} error: sync frame discontinuous warning | | | +| 10460 | `EX_JOINT_EC_RPDO_LOST` | joint{} error: RPDO lost warning | | | +| 10461 | `EX_JOINT_EC_RPDO_MANY` | joint{} error: multiple RPDO in one sync cycle warning | | | +| 10462 | `EX_JOINT_EC_GRAVITY_LOST` | joint{} error: gravity compensation value lost | | | +| 10463 | `EX_JOINT_EC_MAININT_TIME_WARN` | joint{} error: servo main interrupt runtime warning | | | +| 10464 | `EX_JOINT_EC_MAININT_TIME_ERROR` | joint{} error: servo main interrupt runtime error | | | +| 10465 | `EX_JOINT_EC_SPDINT_TIME_WARN` | joint{} error: servo speed loop interrupt runtime warning | | | +| 10466 | `EX_JOINT_EC_SPDINT_TIME_ERROR` | joint{} error: servo speed loop interrupt runtime error | | | +| 10467 | `EX_JOINT_EC_POS_CMD_JUMP_WARNING` | joint{} error: position command sudden jump during motion | | | +| 10468 | `EX_JOINT_EC_SYNC_TIMCOARSE` | joint{} error: clock sync compensation status | | | +| 10469 | `EX_JOINT_EC_ENC_Z_CNTS_ERR` | joint{} error: incremental encoder Z signal or CNTS abnormal | | | +| 10470 | `EX_JOINT_EC_SLAVE_OVER_CURRENT` | joint{} error: slave MCU detected motor phase current over safe threshold | | | +| 10471 | `EX_JOINT_EC_SLAVE_OVER_VOLTAGE` | joint{} error: slave MCU detected DC bus voltage over upper threshold | | | +| 10472 | `EX_JOINT_EC_SLAVE_UNDER_VOLTAGE` | joint{} error: slave MCU detected DC bus voltage below lower threshold | | | +| 10473 | `EX_JOINT_EC_SLAVE_POS_ERR` | joint{} error: slave MCU detected master-slave motor position deviation out of range | | | +| 10474 | `EX_JOINT_EC_SLAVE_SPEED_ERR` | joint{} error: slave MCU detected master-slave motor speed deviation out of range | | | +| 10475 | `EX_JOINT_EC_SLAVE_TRACE_ERR` | joint{} error: slave MCU detected position following error out of control range | | | +| 10476 | `EX_JOINT_EC_SLAVE_ABS_ERR` | joint{} error: slave MCU detected absolute encoder feedback abnormal | | | +| 10477 | `EX_JOINT_EC_SLAVE_ADC_ZERO_OFFSET` | joint{} error: slave MCU detected current sampling zero offset out of calibration range | | | +| 10478 | `EX_JOINT_EC_SLAVE_ENC_POLLUTE` | joint{} error: slave MCU detected encoder signal quality degradation | | | +| 10479 | `EX_JOINT_EC_SLAVE_ENC_Z_LOST` | joint{} error: slave MCU detected encoder Z reference signal lost | | | +| 10480 | `EX_JOINT_EC_SLAVE_COMM_OVER_TM` | joint{} error: slave MCU detected master-slave communication timeout | | | +| 10481 | `EX_JOINT_EC_SLAVE_TRQ_ERR` | joint{} error: slave MCU detected master-slave motor torque deviation out of range | | | +| 10482 | `EX_JOINT_EC_BRAKE_TYPE_ERR` | joint{} error: brake type config mismatch with hardware | | | +| 10483 | `EX_JOINT_EC_PHASE_ALIGN` | joint{} error: phase alignment failed | | | +| 10484 | `EX_JOINT_EC_POS_OVER_LIMIT_WARNING` | joint{} error: position over limit | | | +| 10485 | `EX_JOINT_EC_PHASE_ALIGN_WARNING` | joint{} error: phase alignment warning | | | +| 10486 | `EX_JOINT_EC_TASK_STACK_SHORTAGE` | joint{} error: task stack insufficient | | | +| 10487 | `EX_JOINT_EC_TASK_STACK_OVERFLOW` | joint{} error: task stack overflow | | | +| 10488 | `EX_JOINT_EC_SERVO_STEP` | joint{} servo process step | | For information only. No action required. | +| 10800 | `EX_JOINT_EC_UNKNOWN` | joint{} error: unknown error | | | + +## 扩展轴错误 (11001 - 11066) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 11001 | `EXT_AXIS_ERR_COMMON` | ext axis{} error: common | | Check communication with ext axis drive. | +| 11002 | `EXT_AXIS_ERR_OVER_CURRENT` | ext axis{} error: over current | | Check wiring/short circuit; reboot; if repeated replace drive/motor. | +| 11003 | `EXT_AXIS_ERR_OVER_VOLTAGE` | ext axis{} error: over voltage | | Check DC supply, regen, energy eater; reboot. | +| 11004 | `EXT_AXIS_ERR_LOW_VOLTAGE` | ext axis{} error: low voltage | | Check DC supply and cabling; reboot. | +| 11005 | `EXT_AXIS_ERR_OVER_TEMP` | ext axis{} error: over temperature | | Check environment/cooling; reboot. | +| 11006 | `EXT_AXIS_ERR_HALL` | ext axis{} error: hall fault | | Check hall sensor and motor cabling. | +| 11007 | `EXT_AXIS_ERR_ENCODER` | ext axis{} error: encoder fault | | Check encoder connection/cable/noise. | +| 11008 | `EXT_AXIS_ERR_ABS_ENCODER` | ext axis{} error: absolute encoder fault | | Check abs encoder power/cable; reboot. | +| 11009 | `EXT_AXIS_ERR_CUR_CALIB` | ext axis{} error: current calibration fault | | Reboot; check current sensing circuit. | +| 11010 | `EXT_AXIS_ERR_Q_CURRENT` | ext axis{} error: current detect fault | | Reboot; check current sensing circuit. | +| 11011 | `EXT_AXIS_ERR_ENC_POLL` | ext axis{} error: encoder pollution | | Check encoder contamination/noise; improve shielding. | +| 11012 | `EXT_AXIS_ERR_ENC_Z_SIGNAL` | ext axis{} error: encoder Z signal fault | | Check encoder Z channel and wiring. | +| 11013 | `EXT_AXIS_ERR_ENC_CAL` | ext axis{} error: encoder calibrate invalid | | Redo calibration; check encoder. | +| 11014 | `EXT_AXIS_ERR_IMU` | ext axis{} error: IMU fault | | Check IMU sensor and connection. | +| 11015 | `EXT_AXIS_ERR_TEMP_SENSOR` | ext axis{} error: temperature sensor fault | | Check temp sensor wiring; reboot. | +| 11016 | `EXT_AXIS_ERR_ECAT_BUS` | ext axis{} error: EtherCAT bus error | | Check EtherCAT cabling/topology/sync; reboot master/drive. | +| 11017 | `EXT_AXIS_ERR_ECAT_CONFIG` | ext axis{} error: EtherCAT config/ESI/SM/PDO fault | | Check ESI, Mailbox/SM/PDO mapping, vendor/product/revision match. | +| 11018 | `EXT_AXIS_ERR_ECAT_SYNC` | ext axis{} error: EtherCAT sync/frame/period fault | | Check DC sync, cycle time, frame loss; verify NIC/IRQ affinity. | +| 11019 | `EXT_AXIS_ERR_SYS_CUR` | ext axis{} error: system current fault | | Check current loop and load; reboot. | +| 11020 | `EXT_AXIS_ERR_SYS_POS` | ext axis{} error: position out of range | | Check encoder/scale/limits; reboot. | +| 11021 | `EXT_AXIS_ERR_OVER_SPEED` | ext axis{} error: over speed | | Check command limits and tuning parameters. | +| 11022 | `EXT_AXIS_ERR_OVER_ACC` | ext axis{} error: over acceleration | | Reduce acceleration/jerk; check tuning. | +| 11023 | `EXT_AXIS_ERR_FOLLOW_ERROR` | ext axis{} error: following error | | Check gains, load, saturation; verify feedback. | +| 11024 | `EXT_AXIS_ERR_TAG_POS_OVER` | ext axis{} error: target position out of range | | Check target limits and homing. | +| 11025 | `EXT_AXIS_ERR_TAG_SPEED_OVER` | ext axis{} error: target speed out of range | | Clamp speed; check profile settings. | +| 11026 | `EXT_AXIS_ERR_TAG_CURRENT_OVER` | ext axis{} error: target current out of range | | Clamp current/torque; check load. | +| 11027 | `EXT_AXIS_ERR_COLLISION` | ext axis{} error: collision | | Remove obstruction; check torque/force limits. | +| 11028 | `EXT_AXIS_ERR_ADC_ZERO_OFFSET` | ext axis{} error: ADC zero offset | | Reboot; check ADC/current sensor offset. | +| 11029 | `EXT_AXIS_ERR_IPM_NTC` | ext axis{} error: IPM NTC fault | | Check power module temperature sensing. | +| 11030 | `EXT_AXIS_ERR_SHORT_CIRCUIT` | ext axis{} error: short circuit | | Check motor phase wiring; insulation test. | +| 11031 | `EXT_AXIS_ERR_MOTOR_STALL` | ext axis{} error: motor stall | | Check mechanical jam/load; reduce accel; reboot. | +| 11032 | `EXT_AXIS_ERR_ABS_MULTITURN` | ext axis{} error: abs encoder multiturn fault | | Check abs encoder battery/params; reboot. | +| 11033 | `EXT_AXIS_ERR_PHASE_LOST` | ext axis{} error: motor phase lost | | Check phase wiring/connector; measure continuity. | +| 11034 | `EXT_AXIS_ERR_BRAKE` | ext axis{} error: brake fault | | Check brake wiring/power; verify brake release. | +| 11035 | `EXT_AXIS_ERR_REDUCER_OVER_TEMP` | ext axis{} error: reducer over temperature | | Check reducer temperature/cooling. | +| 11036 | `EXT_AXIS_ERR_REDUCER_NTC` | ext axis{} error: reducer NTC fault | | Check reducer temperature sensor. | +| 11037 | `EXT_AXIS_ERR_FIRMWARE_UPDATE` | ext axis{} error: firmware update fault | | Retry update; check power stability. | +| 11038 | `EXT_AXIS_ERR_FLASH_OP` | ext axis{} error: flash operation fault | | Retry; if persistent replace drive. | +| 11039 | `EXT_AXIS_ERR_EXT_ABS_ENC` | ext axis{} error: motor-side abs encoder comm fault | | Check external abs encoder link/power. | +| 11040 | `EXT_AXIS_ERR_DRIVE_FAULT` | ext axis{} error: drive fault | | Check drive alarm code; reboot; replace if repeated. | +| 11041 | `EXT_AXIS_ERR_OVERLOAD` | ext axis{} error: overload | | Reduce load; check mechanics and tuning. | +| 11042 | `EXT_AXIS_ERR_HARDWARE_LIMIT` | ext axis{} error: hardware limit triggered | | Move away from limit; check limit switch. | +| 11043 | `EXT_AXIS_ERR_SERVO_MODE_TIMEOUT` | ext axis{} error: switch servo mode timeout | | Check mode transition and comm; reboot. | +| 11044 | `EXT_AXIS_ERR_UVW_ABZ` | ext axis{} error: UVW/ABZ fault | | Check phase/encoder signals wiring. | +| 11045 | `EXT_AXIS_ERR_BATTERY_LOW` | ext axis{} error: battery low | | Replace encoder battery; reboot. | +| 11046 | `EXT_AXIS_ERR_PHASE_ALIGN` | ext axis{} error: phase align fail | | Redo phase alignment; check motor params. | +| 11047 | `EXT_AXIS_ERR_POS_DISCONTINUOUS` | ext axis{} error: position command discontinuous | | Check trajectory generation and limits. | +| 11048 | `EXT_AXIS_ERR_POS_INIT` | ext axis{} error: position initialization failure | | Check encoder init/homing procedure. | +| 11049 | `EXT_AXIS_ERR_TORQUE_SENSOR` | ext axis{} error: torque sensor fault | | Check torque sensor wiring/calibration. | +| 11050 | `EXT_AXIS_ERR_ABS_ENC_LOW_VOLT` | ext axis{} error: abs encoder low voltage | | Check encoder supply voltage and cable. | +| 11051 | `EXT_AXIS_ERR_OFFLINE` | ext axis{} error: ext axis offline | | Check hardware and axis id; check EtherCAT state. | +| 11052 | `EXT_AXIS_ERR_BOOTLOADER` | ext axis{} error: ext axis in bootloader | | Retry firmware update. | +| 11053 | `EXT_AXIS_ERR_SLAVE_OFFLINE` | ext axis slave{} error: slave offline | | Check slave hardware and id. | +| 11054 | `EXT_AXIS_ERR_SLAVE_BOOTLOADER` | ext axis slave{} error: slave in bootloader | | Retry firmware update. | +| 11055 | `EXT_AXIS_ERR_EEPROM` | ext axis{} error: EEPROM/param store fault | | Check EEPROM/parameter storage; power cycle. | +| 11056 | `EXT_AXIS_ERR_PARAM_CONFIG` | ext axis{} error: parameter/config fault | | Verify parameter set; restore defaults if needed. | +| 11057 | `EXT_AXIS_ERR_STO` | ext axis{} error: STO safety fault | | Check STO wiring/safety chain; reset safety. | +| 11058 | `EXT_AXIS_ERR_ENCRYPT_CHIP` | ext axis{} error: encrypt chip/key fault | | Check encryption chip/keys/firmware compatibility. | +| 11059 | `EXT_AXIS_ERR_BRAKE_RES_OVERLOAD` | ext axis{} error: brake resistor overload | | Check brake resistor/regen circuit; duty cycle. | +| 11060 | `EXT_AXIS_ERR_POWER_LINE_OPEN` | ext axis{} error: motor power line open | | Check motor power cable continuity/connector. | +| 11061 | `EXT_AXIS_ERR_HOMING` | ext axis{} error: homing fault | | Check homing sensor/origin procedure; retry. | +| 11062 | `EXT_AXIS_ERR_TUNING_FAIL` | ext axis{} error: tuning fail | | Redo tuning; reduce resonance; check mechanics. | +| 11063 | `EXT_AXIS_ERR_INERTIA_ID_FAIL` | ext axis{} error: inertia identification fail | | Check load; redo inertia ID; adjust conditions. | +| 11064 | `EXT_AXIS_ERR_FLYAWAY` | ext axis{} error: flyaway | | Emergency stop; check feedback polarity/scale; inspect drive params. | +| 11065 | `EXT_AXIS_ERR_SPEED_PULSE_OVER` | ext axis{} error: feedback pulse overspeed | | Check encoder feedback and scaling; reduce speed. | +| 11066 | `EXT_AXIS_ERR_CTRL_LOOP` | ext axis{} error: control loop/timeout fault | | Check sampling/current loop/comm timeout; reboot. | + +## 安全接口板错误 (20001 - 20027) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 20001 | `IFB_ERR_ROBOTTYPE` | Robot error type! | | | +| 20002 | `IFB_ERR_ADXL_SENS` | Base Acceleration sensor error! | | | +| 20003 | `IFB_ERR_EN_LINE` | Encoder line error! | | | +| 20004 | `IFB_ERR_ENTER_HDG_MODE` | Robot enter handguide mode! | | | +| 20005 | `IFB_ERR_EXIT_HDG_MODE` | Robot exit handguide mode! | | | +| 20006 | `IFB_ERR_MAC_DATA_BREAK` | MAC data break! | | | +| 20007 | `IFB_ERR_DRV_FIRMWARE_VERSION` | Motor driver firmware version error! | | | +| 20008 | `INIT_ERR_EN_DRV` | Motor driver enable failed! | | | +| 20009 | `INIT_ERR_EN_AUTO_BACK` | Motor driver enable auto back failed! | | | +| 20010 | `INIT_ERR_EN_CUR_LOOP` | Motor driver enable current loop failed! | | | +| 20011 | `INIT_ERR_SET_TAG_CUR` | Motor driver set target current failed! | | | +| 20012 | `INIT_ERR_RELEASE_BRAKE` | Motor driver release brake failed! | | | +| 20013 | `INIT_ERR_EN_POS_LOOP` | Motor driver enable postion loop failed! | | | +| 20014 | `INIT_ERR_SET_MAX_ACC` | Motor set max accelerate failed! | | | +| 20015 | `SAFETY_ERR_PROTECTION_STOP_TIMEOUT` | Protective stop timeout! | | | +| 20016 | `SAFETY_ERR_REDUCED_MODE_TIMEOUT` | Reduced mode timeout! | | | +| 20017 | `SYS_ERR_MCU_COM` | Robot system error: mcu communication error! | | | +| 20018 | `SYS_ERR_RS485_COM` | Robot system error: RS485 communication error! | | | +| 20019 | `IFB_ERR_DISCONNECTED` | Interface board may be disconnected. Please check connection between IPC and Interface board. | | | +| 20020 | `IFB_ERR_PAYLOAD_ERROR` | Payload error. | | | +| 20021 | `IFB_OFFLINE` | ifaceboard error: ifaceboard may be offline | | (a) Check ifaceboard's hardware. (b) Check ifaceboard's id. | +| 20022 | `IFB_ERR_BOOTLOADER` | ifaceboard error: The ifaceboard is in bootloader mode. Retry firmware update. | | | +| 20023 | `IFB_SLAVE_OFFLINE` | interface slave board error: interface slave board may be offline | | (a) Check interface slave board's hardware. (b) Check interface slave board's id. | +| 20024 | `IFB_SLAVE_ERR_BOOTLOADER` | interface slave board error: The interface slave board is in bootloader mode. Retry firmware update. | | | +| 20025 | `IFB_TOOL_ERR_ADXL_SENS` | Tool Acceleration sensor error! | | | +| 20026 | `HANDLE_OFFLINE` | handle error: handle may be offline | | (a) Check handle's hardware. (b) Check handle's id. | +| 20027 | `HANDLE_ERR_BOOTLOADER` | handle error: The handle is in bootloader mode. Retry firmware update. | | | + +## 运行时错误 (30001 - 30444) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 30001 | `ROBOT_BE_PULLING` | Something is pulling the robot. | | Please check TCP configuration,payload and mounting settings | +| 30002 | `PSTOP_ELBOW_POS` | Protective Stop: Elbow position close to safety plane limits. | | Please move robot Elbow joint away from the safety plane | +| 30003 | `PSTOP_STOP_TIME` | Protective Stop: Exceeding user safety settings for stopping time. | | (a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set | +| 30004 | `PSTOP_STOP_DISTANCE` | Protective Stop: Exceeding user safety settings for stopping distance. | | (a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set | +| 30005 | `PSTOP_CLAMP` | Protective Stop: Danger of clamping between the Robot’s lower arm and tool. | | (a) Check speeds and accelerations in the program (b) Check usage of TCP,payload and CoG correctly (c) Check external equipmentactivation if correctly set | +| 30006 | `PSTOP_POS_LIMIT` | Protective Stop: Position close to joint limits | | | +| 30007 | `PSTOP_ORI_LIMIT` | Protective Stop: Tool orientation close to limits | | | +| 30008 | `PSTOP_PLANE_LIMIT` | Protective Stop: Position close to safety plane limits | | | +| 30009 | `PSTOP_POS_DEVIATE` | Protective Stop: Position deviates from path | | Check payload, center of gravity and acceleration settings. | +| 30010 | `JOINT_CHK_PAYLOAD` | Joint {}: Check payload, center of gravity and acceleration settings. Log screen may contain additional information. | | | +| 30011 | `PSTOP_SINGULARITY` | Protective Stop: Position in singularity. | | Please use MoveJ or change the motion | +| 30012 | `PSTOP_CANNOT_MAINTAIN` | Protective Stop: Robot cannot maintain its position, check if payload is correct | | | +| 30013 | `PSTOP_WRONG_PAYLOAD` | Protective Stop: Wrong payload or mounting detected, or something is pushing the robot when entering Freedrive mode | | Verify that the TCP configuration and mounting in the used installation is correct | +| 30014 | `PSTOP_JOINT_COLLISION` | Protective Stop: Collision detected by joint {} | | Make sure no objects are in the path of the robot and resume the program | +| 30015 | `PSTOP_POS_DISAGREE` | Protective stop: The robot was powered off last time due to a joint position disagreement. | | (a) Verify that the robot position in the 3D graphics matches the real robot, to ensure that the encoders function before releasing the brakes. Stand back and monitor the robot performing its first program cycle as expected. (b) If the position is not correct, the robot must be repaired. In this case, click Power Off Robot. (c) If the position is correct, please tick the check box below the 3D graphics and click Robot Position Verified | +| 30016 | `TARGET_JOINT_SPEED_EXCEED` | Target joint speed exceed limits | | | +| 30017 | `TARGET_POS_SUDDEN_CHG` | Sudden change in target position | | | +| 30018 | `SUDDEN_STOP` | Sudden stop. | | To abort a motion, use "stopj" or "stopl" script commands to generate a smooth deceleration before using "wait". Avoid aborting motions between waypoints with blend” | +| 30019 | `ROBOT_STOP_ABNORMAL` | Robot has not stopped in the allowed reaction and braking time | | | +| 30020 | `PROG_INVALID_SETP` | Robot program resulted in invalid setpoint. | | Please review waypoints in the program | +| 30021 | `BLEND_INVALID_SETP` | Blending failed and resulted in an invalid setpoint. | | Try changing the blend radius or contact technical support | +| 30022 | `APPROACH_SINGULARITY` | Robot approaching singularity – Acceleration threshold failed. | | Review waypoints in the program, try using MoveJ instead of MoveL in the position close to singularity | +| 30023 | `TSPEED_UNMATCH_POS` | Target speed does not match target position | | | +| 30024 | `INCONSIS_TPOS_SPD` | Inconsistency between target position and speed | | | +| 30025 | `JOINT_TSPD_UNMATCH_POS` | Target joint speed does not match target joint position change – Joint {} | | | +| 30026 | `FIELDBUS_INPUT_DISCONN` | Fieldbus input disconnected. | | Please check fieldbus connections (RTDE, ModBus, EtherNet/IP and Profinet) or disable the fieldbus in the installation. Check RTDE watchdog feature. Check if a URCap is using this feature. | +| 30027 | `OPMODE_CHANGED` | Operational mode changed: {} | | | +| 30028 | `NO_KIN_CALIB` | No Kinematic Calibration found (calibration.conf file is either corrupt or missing). | | A new kinematics calibration may be needed if the robot needs to improve its kinematics, otherwise, ignore this message) | +| 30029 | `KIN_CALIB_UNMATCH_JOINT` | Kinematic Calibration for the robot does not match the joint(s). | | If moving a program from a different robot to this one, rekinematic calibrate the second robot to improve kinematics, otherwise ignore this message. | +| 30030 | `KIN_CALIB_UNMATCH_ROBOT` | Kinematic Calibration does not match the robot. | | Please check if the serial number of the robot arm matches the Control Box | +| 30031 | `JOINT_OFFSET_CHANGED` | Large movement of the robot detected while it was powered off. The joints were moved while it was powered off, or the encoders do not function | | | +| 30032 | `OFFSET_CHANGE_HIGH` | Change in offset is too high | | | +| 30033 | `JOINT_SPEED_LIMIT` | Close to joint speed safety limit. | | Review program speed and acceleration | +| 30034 | `TOOL_SPEED_LIMIT` | Close to tool speed safety limit. | | Review program speed and acceleration | +| 30035 | `MOMENTUM_LIMIT` | Close to momentum safety limit. | | Review program speed and acceleration | +| 30036 | `ROBOT_MV_STOP` | Robot is moving when in Stop Mode | | | +| 30037 | `HAND_PROTECTION` | Hand protection: Tool is too close to the lower arm: {} meter. | | (a) Check wrist position. (b) Verify mounting (c) Do a Complete rebooting sequence (d) Update software (e) Contact your local AUBO Robots service provider for assistance | +| 30038 | `WRONG_SAFETYMODE` | Wrong safety mode: {} | | | +| 30039 | `SAFETYMODE_CHANGED` | Safety mode changed: {} | | | +| 30040 | `JOINT_ACC_LIMIT` | Close to joint acceleration safety limit | | | +| 30041 | `TOOL_ACC_LIMIT` | Close to tool acceleration safety limit | | | +| 30042 | `JOINT_TEMPERATURE_LIMIT` | Joint {} temperature too high(>{}℃) | | | +| 30043 | `CONTROL_BOX_TEMPERATURE_LIMIT` | Control box temperature too high(>{}℃) | | | +| 30044 | `ROBOT_EMERGENCY_STOP` | Robot emergency stop | | | +| 30045 | `ROBOTMODE_CHANGED` | Robot mode changed: {} | | | +| 30046 | `ROBOTMODE_ERROR` | Wrong robot mode: {} | | | +| 30047 | `POSE_OUT_OF_REACH` | Target pose [{}] out of reach | | | +| 30048 | `TP_PLAN_FAILED` | Trajectory plan FAILED. | | | +| 30049 | `START_FORCE_FAILED` | Start force control failed, because force sensor does not exist. | | | +| 30050 | `OVER_SAFE_PLANE_LIMIT` | {} axis exceeds the safety plane limit (Move_type:{} id:{}). | | Please move the robot to the safety plane range. | +| 30051 | `POWERON_FAIL_VIOLATION` | Failed to power on because the robot safety mode is in violation | | | +| 30052 | `POWERON_FAIL_SYSTEMEMERGENCYSTOP` | Failed to power on because the robot safety mode is in system emergency stop | | | +| 30053 | `POWERON_FAIL_ROBOTEMERGENCYSTOP` | Failed to power on because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30054 | `POWERON_FAIL_FAULT` | Failed to power on because the robot safety mode is in fault | | | +| 30055 | `STARTUP_FAIL_VIOLATION` | Failed to startup because the robot safety mode is in violation | | | +| 30056 | `STARTUP_FAIL_SYSTEMEMERGENCYSTOP` | Failed to startup because the robot safety mode is in system emergency stop | | | +| 30057 | `STARTUP_FAIL_ROBOTEMERGENCYSTOP` | Failed to startup because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30058 | `STARTUP_FAIL_FAULT` | Failed to startup because the robot safety mode is in fault | | | +| 30059 | `BACKDRIVE_FAIL_VIOLATION` | Failed to backdrive because the robot safety mode is in violation | | | +| 30060 | `BACKDRIVE_FAIL_SYSTEMEMERGENCYSTOP` | Failed to backdrive because the robot safety mode is in system emergency stop | | | +| 30061 | `BACKDRIVE_FAIL_ROBOTEMERGENCYSTOP` | Failed to backdrive because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30062 | `BACKDRIVE_FAIL_FAULT` | Failed to backdrive because the robot safety mode is in fault | | | +| 30063 | `SETSIM_FAIL_VIOLATION` | Switch sim mode failed because the robot safety mode is in violation | | | +| 30064 | `SETSIM_FAIL_SYSTEMEMERGENCYSTOP` | Switch sim mode failed because the robot safety mode is in system emergency stop | | | +| 30065 | `SETSIM_FAIL_ROBOTEMERGENCYSTOP` | Switch sim mode failed because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30066 | `SETSIM_FAIL_FAULT` | Switch sim mode failed because the robot safety mode is in fault | | | +| 30067 | `FREEDRIVE_FAIL_VIOLATION` | Enable handguide mode failed because the robot safety mode is in violation | | | +| 30068 | `FREEDRIVE_FAIL_SYSTEMEMERGENCYSTOP` | Enable handguide mode failed because the robot safety mode is in system emergency stop | | | +| 30069 | `FREEDRIVE_FAIL_ROBOTEMERGENCYSTOP` | Enable handguide mode failed because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30070 | `FREEDRIVE_FAIL_FAULT` | Enable handguide mode failed because the robot safety mode is in fault | | | +| 30071 | `UPFIRMWARE_FAIL_VIOLATION` | Firmware update failed because the robot safety mode is in violation | | | +| 30072 | `UPFIRMWARE_FAIL_SYSTEMEMERGENCYSTOP` | Firmware update failed because the robot safety mode is in system emergency stop | | | +| 30073 | `UPFIRMWARE_FAIL_ROBOTEMERGENCYSTOP` | Firmware update failed because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30074 | `UPFIRMWARE_FAIL_FAULT` | Firmware update failed because the robot safety mode is in fault | | | +| 30075 | `SETPERSOSTENT_FAIL_VIOLATION` | Set persistent parameter failed because the robot safety mode is in violation | | | +| 30076 | `SETPERSOSTENT_FAIL_SYSTEMEMERGENCYSTOP` | Set persistent parameter failed because the robot safety mode is in system emergency stop | | | +| 30077 | `SETPERSOSTENT_FAIL_ROBOTEMERGENCYSTOP` | Set persistent parameter failed because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30078 | `SETPERSOSTENT_FAIL_FAULT` | Set persistent parameter failed because the robot safety mode is in fault | | | +| 30079 | `SETPERSOSTENT_FAIL_PARAM_ERR` | Set persistent parameter failed | | (a) Check the parameter format, whether all are floating point numbers | +| 30080 | `ROBOT_CABLE_DISCONN` | Robot cable not connected | | (a) Make sure the cable between Control Box and Robot Arm is correctly connected and it has no damage. (b) Check for loose connections (c) Do a Complete rebooting sequence (d) Update software (e) Contact your local AUBO Robots service provider for assistance Contact your local AUBO Robots service provider for assistance. | +| 30081 | `TP_TOO_SHORT` | The generated trajectory is ignored because it is too short | | (a) Please check if the added waypoints are coincident (b) If it is an arc movement, please check whether the three points are collinear | +| 30082 | `INV_KIN_FAIL` | Inverse kinematics solution failed. The target pose may be in a singular position or exceed the joint limits | | (a) Change the target pose and try moving again | +| 30083 | `FREEDRIVE_ENABLED` | Freedrive status changed to {} | | | +| 30084 | `TP_INV_FAIL_REFERENCE_JOINT_OUT_OF_LIMIT` | Inverse kinematics solution failed. Reference angle [{}] exceeds joint limit [{}]. | | | +| 30085 | `TP_INV_FAIL_NO_SOLUTION` | Inverse kinematics solution failed. The reference angle [{}] and the target angle [{}] are used as parameters. there is no solution in the calculation of the inverse solution process. | | | +| 30086 | `SERVO_FAIL_VIOLATION` | Switch servo mode failed because the robot safety mode is in violation | | | +| 30087 | `SERVO_FAIL_SYSTEMEMERGENCYSTOP` | Switch servo mode failed because the robot safety mode is in system emergency stop | | | +| 30088 | `SERVO_FAIL_ROBOTEMERGENCYSTOP` | Switch servo mode failed because the robot safety mode is in robot emergency stop | | Pop up the red emergency stop button on the teach pendant when the robot is in a safe range of motion | +| 30089 | `SERVO_FAIL_FAULT` | Switch servo mode failed because the robot safety mode is in fault | | | +| 30090 | `FREEDRIVE_FAIL_NO_RUNNING` | Enable handguide mode failed because the robot mode type is {}(not running) | | | +| 30091 | `RUNTIME_MACHINE_ERROR` | The state of the running machine is {}, not {}. {} function execution failed because the state is wrong. | | | +| 30092 | `RESUME_FAR_PAUSE_PT` | Cannot resume from joint position [{}].\nToo far away from paused point [{}]. | | | +| 30093 | `PAYLOAD_LIGHTER_ERROR` | The payload setting is too small! | | | +| 30094 | `PAYLOAD_OVERLOAD_ERROR` | The payload setting is too large! | | | +| 30095 | `PAUSE_FAIL_NOT_POSITION_PLAN_MODE` | This motion does not support the pause function. The motion is stopping. | | | +| 30096 | `TP_PLAN_FAILED_CIRCULAR_WAYPOINTS_COINCIDE` | The planning failed because the three waypoints of the arc were determined to coincide. | | Check the circular waypoints to make sure they are different. | +| 30097 | `SERVO_WRONG_SAFETYMODE` | Switch servo mode failed because the robot safety mode is in {}. | | Check the circular waypoints to make sure they are different. | +| 30098 | `SET_PERSTPARAM_WRONG_SAFETYMODE` | Set persistent parameter failed because the robot safety mode is in {} | | | +| 30099 | `SET_KINPARAM_WRONG_SAFETYMODE` | Set Kinematics Compensate parameters failed because the robot safety mode is in {} | | | +| 30100 | `SET_ROBOT_ZERO_WRONG_SAFETYMODE` | Set current joint angles to zero failed because the robot safety mode is in {} | | | +| 30101 | `UPFIRMWARE_WRONG_SAFETYMODE` | Firmware update failed because the robot safety mode is in {} | | | +| 30102 | `POWERON_WRONG_SAFETYMODE` | Failed to power on because the robot safety mode is in {} | | | +| 30103 | `STARTUP_WRONG_SAFETYMODE` | Failed to startup because the robot safety mode is in {} | | | +| 30104 | `BACKDRIVE_WRONG_SAFETYMODE` | Failed to backdrive because the robot safety mode is in system emergency stop | | | +| 30105 | `SETSIM_WRONG_SAFETYMODE` | Switch sim mode failed because the robot safety mode is in violation | | | +| 30106 | `FREEDRIVE_WRONG_SAFETYMODE` | Enable handguide mode failed because the robot safety mode is in wrong safety mode: {} | | | +| 30107 | `TP_PLAN_FAILED_JOINT_JUMP_BIGGER` | Inverse kinematics solution failed. The target point and the current point are in different robot configuration spaces. | | Add a few more points between the target point and the current point. | +| 30108 | `RUN_PROGRAM_FAILED` | Run program {} failed. | | | +| 30109 | `FREEDRIVE_FAIL_WRONG_RTMSTATE` | Unable to enter the HandGuide mode as the robot is not currently in a stopped or paused state. | | | +| 30110 | `SAFEGUARDSTOP_CONFIGURABLE_INPUT` | Configurable safety input is triggered. | | | +| 30111 | `SAFEGUARDSTOP_3PE` | 3PE is triggered. | | | +| 30112 | `SAFEGUARDSTOP_SI` | SI0/SI1 is triggered. | | | +| 30200 | `ROBOT_TYPE_CHANGED` | Robot type changed to '{}', and robot subtype changed to '{}' | | | +| 30201 | `LINKMODE_CHANGED` | Link mode changed to {} | | | +| 30301 | `ROBOT_SELF_COLLISION` | Detect risk of robot self collision | | | +| 30302 | `CONSTANT_INVALID` | Joint torque constants are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake. | | | +| 30303 | `GRAVITY_INVALID` | Abnormal value of gravity acceleration sensor. HandGuide will be disabled, and the collision protection may be triggered by mistake. | | | +| 30304 | `DYNAMICS_INVALID` | Robot dynamics parameters are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake. | | | +| 30305 | `FRICTION_INVALID` | Joint friction parameters are invalid. HandGuide will be disabled, and the collision protection may be triggered by mistake. | | | +| 30306 | `HANDGUIDE_UNDER_DEVELOP` | Robot type of {} function under development. HandGuide will be disabled, and the collision protection may be triggered by mistake. | | | +| 30307 | `SLOW_DOWN_INFO` | Slow down level changed to {}({}%) | | | +| 30308 | `WRONG_JOINT_DESIGNED_LIMIT` | Joint designed ranges exceeds ranges read from hardware interface. | | | +| 30309 | `FREEDRIVE_IN_SIMULATION` | Enable handguide mode failed because the robot is in simulation mode. | | | +| 30310 | `ROBOT_STOPPING_TIMEOUT` | Robot stopping timeout. | | | +| 30311 | `PSTOP_INCORRECT_FORCE_OFFSET` | Protective Stop: Sudden change in force control target position. Force sensor offset may be incorrect or force sensor fault. | | | +| 30312 | `WRONG_JOINT_SAFETY_LIMIT` | Joint safety ranges exceeds designed ranges. | | | +| 30401 | `PSTOP_TCP_PLANE_VIOLATION` | Protective Stop: TCP position close to safety plane limits. | | | +| 30402 | `PSTOP_ELBOW_PLANE_VIOLATION` | Protective Stop: elbow position close to safety plane limits. | | | +| 30403 | `PSTOP_JOINT_TORQUE_VIOLATION` | Protective Stop: joint{} exceeds torque limit. | | | +| 30404 | `PSTOP_JOINT_POSITION_VIOLATION` | Protective Stop: joint{} exceeds position limit. | | | +| 30405 | `PSTOP_JOINT_SPEED_VIOLATION` | Protective Stop: joint{} exceeds speed limit. | | | +| 30406 | `PSTOP_TCP_SPEED_VIOLATION` | Protective Stop: TCP speed close to safety limits. | | | +| 30407 | `PSTOP_ELBOW_SPEED_VIOLATION` | Protective Stop: elbow speed close to safety limits. | | | +| 30408 | `PSTOP_TCP_FORCE_VIOLATION` | Protective Stop: TCP foece close to safety limits. | | | +| 30409 | `PSTOP_ELBOW_TORQUE_VIOLATION` | Protective Stop: elbow torque close to safety limits. | | | +| 30410 | `PSTOP_POWER_VIOLATION` | Protective Stop: robot power close to safety limits. | | | +| 30411 | `PSTOP_MOMENTUM_VIOLATION` | Protective Stop: robot momentum close to safety limits. | | | +| 30412 | `PSTOP_TCP_CUBE_VIOLATION` | Protective Stop: TCP position close to safety cube. | | | +| 30413 | `PSTOP_ELBOW_CUBE_VIOLATION` | Protective Stop: TCP position close to safety cube. | | | +| 30414 | `REDUCE_ELBOW_PLANE_TRIGGER` | Reduce mode: elbow close to safety plane triggers reduction mode. | | | +| 30415 | `REDUCE_TCP_PLANE_TRIGGER` | Reduce mode: TCP close to safety plane triggers reduction mode. | | | +| 30416 | `PSTOP_MOVE_OUT_RANGE` | Joint {} has exceeded the limit, please do not continue to move out of the range | | | +| 30417 | `RESUME_PAUSE_FAILED` | Resume Failed: Safety mode type is {} | | | +| 30418 | `FIRMWARE_UPDATE_FAIL_EMERGENCYSTOP` | Failed to firmware update because the robot safety mode is in {} | | Release emergency stop when the robot is in a safe range of motion | +| 30419 | `TOOL_SENSOR_CHANGED` | Tool sensor type changed to {} | | | +| 30420 | `TOOL_SENSOR_REMOVED` | Tool sensor is removed. | | | +| 30421 | `CAL_TARGET_CURRENT_ERR` | The calculation of the target current failed. Please try again later. | | | +| 30422 | `CONVEYOR_MODE_CHANGED` | Conveyor{}: track mode changed to {}, track item id is {} | | | +| 30423 | `CONVEYOR_ENQUEUE` | Conveyor{}: the queue has been changed, item{} is enqueue | | | +| 30424 | `CONVEYOR_DEQUEUE_FINISH` | Conveyor{}: the queue has been changed, item{} dequeue due to track finished | | | +| 30425 | `CONVEYOR_DEQUEUE_STARTWINDOW` | Conveyor{}: the queue has been changed, item{} dequeue due to exceeds startwindow | | | +| 30426 | `CONVEYOR_DEQUEUE_LIMIT` | Conveyor{}: the queue has been changed, item{} dequeue due to exceed limit area | | | +| 30427 | `CONVEYOR_DEQUEUE_CLEAR` | Conveyor{}: item queue is cleared | | | +| 30428 | `CONVEYOR_NEXT_TRACK` | Conveyor{}: item{} inside the start window that can be tracked | | | +| 30429 | `CONVEYOR_EXCEED_LIMIT` | Conveyor{}: item{} exceeds the limit area during tracking | | | +| 30430 | `WRONG_POWER_SAFETY_LIMIT` | Robot power safety value exceeds designed value. | | | +| 30431 | `WRONG_POWER_DESIGNED_LIMIT` | Power designed value exceeds value read from hardware interface. | | | +| 30432 | `TOOL_SENSOR_STATUS_CHANGED` | Tool sensor status changed to {} | | | +| 30433 | `COLLISION_THRESHOLD_INVALID` | Robot collision threshold parameters are invalid.Please reidentify the threshold or modify the configuration to ensure that it does not cause accidental collisions. | | | +| 30434 | `GRIPPER_DISCONNECT` | The gripper {} is disconnected. | | | +| 30435 | `GRIPPER_UNKNOWN_FAULT` | There is an unknown fault with the gripper {} | | | +| 30436 | `GRIPPER_CURRENT_ANOMALY_FAULT` | There is an abnormal current fault with the gripper {} | | | +| 30437 | `GRIPPER_VOLTAGE_ANOMALY_FAULT` | There is an abnormal voltage fault with the gripper {} | | | +| 30438 | `GRIPPER_OVER_TEMPERATURE_FAULT` | There is an over-temperature fault with the gripper {} | | | +| 30439 | `GRIPPER_INTERNAL_FAULT` | There is an internal fault with the gripper {} | | | +| 30440 | `GRIPPER_COMMUNICATION_FAULT` | There is an communication fault with the gripper {} | | | +| 30441 | `GRIPPER_CONTROL_COMMAND_FAULT` | There is an control command fault with the gripper {} | | | +| 30442 | `GRIPPER_ENABLE_FAULT` | There is an enable fault with the gripper {} | | | +| 30443 | `WRIST_SINGULARITY_RISK` | Wrist singularity detected. Linear motion may cause excessive joint speed.Adjust robot posture to avoid J5 near 0° or 180°, or use joint motion instead of linear motion. | | | +| 30444 | `PSTOP_PATH_OFFSET_OVER_LIMIT` | Protective Stop: the offset of the robot has exceeded the limit. | | | + +## 工具错误 (40001 - 40034) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 40001 | `TOOL_FLASH_VERIFY_FAILED` | Flash write verify failed | | | +| 40002 | `TOOL_PROGRAM_CRC_FAILED` | Program flash checksum failed during bootloading | | | +| 40003 | `TOOL_PROGRAM_CRC_FAILED2` | Program flash checksum failed at runtime | | | +| 40004 | `TOOL_ID_UNDIFINED` | Tool ID is undefined | | | +| 40005 | `TOOL_ILLEGAL_BL_CMD` | Illegal bootloader command | | | +| 40006 | `TOOL_FW_WRONG` | Wrong firmware at the joint | | | +| 40007 | `TOOL_HW_INVALID` | Invalid hardware revision | | | +| 40011 | `TOOL_SHORT_CURCUIT_H` | Short circuit detected on Digital Output: {} high side | | | +| 40012 | `TOOL_SHORT_CURCUIT_L` | Short circuit detected on Digital Output: {} low side | | | +| 40013 | `TOOL_AVERAGE_CURR_HIGH` | 10 second Average tool IO Current of {} A is outside of the allowed range. | | | +| 40014 | `TOOL_POWER_PIN_OVER_CURR` | Current of {} A on the POWER pin is outside of the allowed range. | | | +| 40015 | `TOOL_DOUT_PIN_OVER_CURR` | Current of {} A on the Digital Output pins is outside of the allowed range. | | | +| 40016 | `TOOL_GROUND_PIN_OVER_CURR` | Current of {} A on the ground pin is outside of the allowed range. | | | +| 40021 | `TOOL_RX_FRAMING` | RX framing error | | | +| 40022 | `TOOL_RX_PARITY` | RX Parity error | | | +| 40031 | `TOOL_48V_LOW` | 48V input is too low | | | +| 40032 | `TOOL_48V_HIGH` | 48V input is too high | | | +| 40033 | `TOOL_ERR_OFFLINE` | tool error: tool may be offline | | (a) Check tool's hardware. (b) Check joint's id. | +| 40034 | `TOOL_ERR_BOOTLOADER` | tool error: The tool is in bootloader mode. Retry firmware update. | | | + +## 工具扩展错误 (40101 - 40200) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 40101 | `EX_TOOL_EC_LOW_VOLTAGE` | tool error: low voltage | | check tool power supply voltage | +| 40102 | `EX_TOOL_EC_FORCESENSOR_COMM` | tool error: external force sensor communication error | | check external force sensor communication connection | +| 40103 | `EX_TOOL_485_SENDFULL_COMM` | tool error: 485 transparent transmission buffer full | | check 485 communication load and transmission frequency | +| 40104 | `EX_TOOL_FORCESENSOR_FILTER_ZERO` | tool error: force sensor filter parameter is zero | | check force sensor filter parameter configuration | +| 40200 | `EX_TOOL_EC_UNKNOWN` | tool error: unknown error | | check controller logs and hardware status | + +## 基座错误 (50001 - 50003) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 50001 | `PKG_LOST` | Lost package from pedestal | | | +| 50002 | `PEDSTRAL_OFFLINE` | pedestal error: pedestal may be offline | | (a) Check pedestal's hardware. (b) Check pedestal's id. | +| 50003 | `PEDESTAL_ERR_BOOTLOADER` | pedestal error: The pedestal is in bootloader mode. Retry firmware update. | | | + +## 基座扩展错误 (50101 - 50200) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 50101 | `EX_BASE_EC_LOW_VOLTAGE` | pedstral error: low voltage | | check power supply voltage and battery status | +| 50102 | `EX_BASE_EC_OVER_TEMPERATURE_RES` | pedstral error: resistor over temperature | | check braking resistor temperature and cooling condition | +| 50103 | `EX_BASE_EC_OVER_TARGET_BRAKE_OPEN_VOLT` | pedstral error: input voltage close to or exceeds regenerative brake activation voltage | | check input power voltage and regenerative braking configuration | +| 50104 | `EX_BASE_EC_RES_BREAKAGE` | pedstral error: brake resistor breakage | | check whether the brake resistor is disconnected or damaged | +| 50105 | `EX_BASE_EC_IMU_CALIBRATE` | pedstral error: IMU calibration required | | perform IMU calibration according to maintenance procedure | +| 50106 | `EX_BASE_EC_TEMP_SENSOR_SHORT` | pedstral error: temperature sensor short circuit | | check temperature sensor wiring and solder joints for short circuit | +| 50107 | `EX_BASE_EC_TEMP_SENSOR_BREAK` | pedstral error: temperature sensor open circuit | | check temperature sensor connection and cable continuity | +| 50108 | `EX_BASE_EC_96V_INSTANT_OVER_VOLTAGE` | pedstral error: 96V instantaneous over voltage after regenerative braking | | check regenerative braking behavior and power bus voltage | +| 50200 | `EX_BASE_EC_UNKNOWN` | pedstral error: unknown error | | check controller logs and hardware status | + +## 硬件接口错误 (60001 - 60080) + +| 错误码 | 名称 | 描述 | 描述(中文) | 建议 | +|--------|------|------|------------|------| +| 60001 | `HW_SCB_SETUP_FAILED` | Setup of Interface Board failed | | | +| 60002 | `HW_PKG_CNT_DISAGEE` | Packet counter disagreements | | | +| 60003 | `HW_SCB_DISCONNECT` | Connection to Interface Board lost | | | +| 60004 | `HW_SCB_PKG_LOST` | Package lost from Interface Board | | | +| 60005 | `HW_SCB_CONN_INIT_FAILED` | Ethernet connection initialization with Interface Board failed | | | +| 60006 | `HW_LOST_JOINT_PKG` | Lost package from joint {} | | | +| 60007 | `HW_LOST_TOOL_PKG` | Lost package from tool | | | +| 60008 | `HW_JOINT_PKG_CNT_DISAGREE` | Packet counter disagreement in packet from joint {} | | | +| 60009 | `HW_TOOL_PKG_CNT_DISAGREE` | Packet counter disagreement in packet from tool | | | +| 60011 | `HW_JOINTS_FAULT` | {} joint entered the Fault State | | | +| 60012 | `HW_JOINTS_VIOLATION` | {} joint entered the Violation State | | | +| 60013 | `HW_TP_FAULT` | Teach Pendant entered the Fault State | | | +| 60014 | `HW_TP_VIOLATION` | Teach Pendant entered the Violation State | | | +| 60021 | `HW_JOINT_MV_TOO_FAR` | {} joint moved too far before robot entered RUNNING State | | | +| 60022 | `HW_JOINT_STOP_NOT_FAST` | Joint Not stopping fast enough | | | +| 60023 | `HW_JOINT_MV_LIMIT` | Joint moved more than allowable limit | | | +| 60024 | `HW_FT_SENSOR_DATA_INVALID` | Force-Torque Sensor data invalid | | | +| 60025 | `HW_NO_FT_SENSOR` | Force-Torque sensor is expected, but it cannot be detected | | | +| 60026 | `HW_FT_SENSOR_NOT_CALIB` | Force-Torque sensor is detected but not calibrated | | | +| 60030 | `HW_RELEASE_BRAKE_FAILED` | Robot was not able to brake release, see log for details | | | +| 60040 | `HW_OVERCURR_SHUTDOWN` | Overcurrent shutdown | | | +| 60050 | `HW_ENERGEY_SURPLUS` | Energy surplus shutdown | | | +| 60060 | `HW_IDLE_POWER_HIGH` | Idle power consumption to high | | | +| 60071 | `HW_ENTER_COLLISION_TIMEOUT` | Enter collision stop procedure timeout | | | +| 60072 | `HW_POWERON_TIMEOUT` | Poweron robot timeout | | | +| 60073 | `HW_NO_NIC_FOUND` | No network cards found. | | | +| 60074 | `HW_IFB_NOT_FOUND` | No Interface Board found. | | | +| 60075 | `HW_IFB_BOOTLOAD` | The Interface Board is in bootloader mode. Update firmware firstly. | | | +| 60076 | `HW_TOOL_NOT_FOUND` | No Tool Board found. | | | +| 60077 | `HW_BASE_NOT_FOUND` | No Base Board found. | | | +| 60078 | `HW_BRINGUP_TIMEOUT` | Poweron robot timeout | | | +| 60079 | `HW_COLLISION_RECOVERY_FAILED` | Collision recovery failed | | | +| 60080 | `HW_TP_ENABLED` | Teach pendant enabled status changed to {} | | | + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/rtde_recipe.md b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/rtde_recipe.md new file mode 100644 index 00000000..fe1023fe --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/doc/rtde_recipe.md @@ -0,0 +1,422 @@ +
+

Aubo Sdk RTDE Recipe

+
+ +## 输入菜单 +| 名称 | 数据类型 | 说明 | +| :----:| :----: | :----: | +|set_recipe|RtdeRecipe|Set | +|input_bit_registers0_to_31|int|General purpose bits This range of the boolean input registers is reserved forFieldBus/PLC interface usage.| +|input_bit_registers32_to_63|int|General purpose bits This range of the boolean input registers is reserved forFieldBus/PLC interface usage.| +|input_bit_registers64_to_127|int64_t|64 general purpose bits X: [64..127] - The upper range of the boolean input registers canbe used by external RTDE clients (i.e aubo_studio plugins).| +|input_int_registers_0|int|48 general purpose integer registers X: [0..23] - The lower range of the integer input registers isreserved for FieldBus/PLC interface usage. X: [24..47] - Theupper range of the integer input registers can be used byexternal RTDE clients (i.e aubo_studio plugins).| +|input_float_registers_0|float|48 general purpose integer registers X: [0..23] - The lower range of the integer input registers isreserved for FieldBus/PLC interface usage. X: [24..47] - Theupper range of the integer input registers can be used byexternal RTDE clients (i.e aubo_studio plugins).| +|input_double_registers_0|double|48 general purpose double registersX: [0..23] - The lower range of the double input registers is reserved for FieldBus/PLC interface usage.X: [24..47] - The upper range of the double input registers can be used by external RTDE clients (i.e aubo_studio plugins).| +|input_int16_registers_0|int16_t|| +|input_int16_registers0_to_63|std::vector|| +|pn_input_int16_registers_256_to_287|std::vector|32 PN specific int16 registers| +|pn_input_int16_registers_288_to_319|std::vector|32 PN specific int16 registers| +|eip_input_int16_registers_320_to_351|std::vector|32 EIP specific int16 registers| +|eip_input_int16_registers_352_to_383|std::vector|32 EIP specific int16 registers| +|R1_speed_slider_mask|double|0 = don't change speed slider with this input
= use speed_slider_fraction to set speed slider value| +|R1_speed_slider_fraction|double|new speed slider value | +|R1_standard_digital_output_mask|uint32_t|Standard digital outputs | +|R1_configurable_digital_output_mask|uint32_t|Configurable digital outputs| +|R1_standard_digital_output|uint32_t|Standard digital outputs | +|R1_configurable_digital_output|uint32_t|Configurable digital outputs| +|R1_tool_digital_output|uint32_t|Tool digital outputs
its 0-1: output state, remaining bits are reserved for future use| +|R1_standard_analog_output_type|std::vector|Output domain {0=current[A], 1=voltage[V]}
Bits 0-1: standard_analog_output_0 | standard_analog_output_1| +|R1_standard_analog_output_mask|uint32_t|Standard analog output 0 (ratio) [0..1] | +|R1_standard_analog_output|std::vector|Standard analog output 1 (ratio) [0..1] | +|R1_debug|uint32_t|Debug for internal use | +|R1_tool_digital_output_mask|uint32_t|Tool digital outputs mask| +|R1_rtde_input_max|int|| +|R2_speed_slider_mask|double|0 = don't change speed slider with this input
= use speed_slider_fraction to set speed slider value| +|R2_speed_slider_fraction|double|new speed slider value | +|R2_standard_digital_output_mask|uint32_t|Standard digital outputs | +|R2_configurable_digital_output_mask|uint32_t|Configurable digital outputs| +|R2_standard_digital_output|uint32_t|Standard digital outputs | +|R2_configurable_digital_output|uint32_t|Configurable digital outputs| +|R2_tool_digital_output|uint32_t|Tool digital outputs
its 0-1: output state, remaining bits are reserved for future use| +|R2_standard_analog_output_type|std::vector|Output domain {0=current[A], 1=voltage[V]}
Bits 0-1: standard_analog_output_0 | standard_analog_output_1| +|R2_standard_analog_output_mask|uint32_t|Standard analog output 0 (ratio) [0..1] | +|R2_standard_analog_output|std::vector|Standard analog output 1 (ratio) [0..1] | +|R2_debug|uint32_t|Debug for internal use | +|R2_tool_digital_output_mask|uint32_t|Tool digital outputs mask| +|R2_rtde_input_max|int|| +|R3_speed_slider_mask|double|0 = don't change speed slider with this input
= use speed_slider_fraction to set speed slider value| +|R3_speed_slider_fraction|double|new speed slider value | +|R3_standard_digital_output_mask|uint32_t|Standard digital outputs | +|R3_configurable_digital_output_mask|uint32_t|Configurable digital outputs| +|R3_standard_digital_output|uint32_t|Standard digital outputs | +|R3_configurable_digital_output|uint32_t|Configurable digital outputs| +|R3_tool_digital_output|uint32_t|Tool digital outputs
its 0-1: output state, remaining bits are reserved for future use| +|R3_standard_analog_output_type|std::vector|Output domain {0=current[A], 1=voltage[V]}
Bits 0-1: standard_analog_output_0 | standard_analog_output_1| +|R3_standard_analog_output_mask|uint32_t|Standard analog output 0 (ratio) [0..1] | +|R3_standard_analog_output|std::vector|Standard analog output 1 (ratio) [0..1] | +|R3_debug|uint32_t|Debug for internal use | +|R3_tool_digital_output_mask|uint32_t|Tool digital outputs mask| +|R3_rtde_input_max|int|| +|R4_speed_slider_mask|double|0 = don't change speed slider with this input
= use speed_slider_fraction to set speed slider value| +|R4_speed_slider_fraction|double|new speed slider value | +|R4_standard_digital_output_mask|uint32_t|Standard digital outputs | +|R4_configurable_digital_output_mask|uint32_t|Configurable digital outputs| +|R4_standard_digital_output|uint32_t|Standard digital outputs | +|R4_configurable_digital_output|uint32_t|Configurable digital outputs| +|R4_tool_digital_output|uint32_t|Tool digital outputs
its 0-1: output state, remaining bits are reserved for future use| +|R4_standard_analog_output_type|std::vector|Output domain {0=current[A], 1=voltage[V]}
Bits 0-1: standard_analog_output_0 | standard_analog_output_1| +|R4_standard_analog_output_mask|uint32_t|Standard analog output 0 (ratio) [0..1] | +|R4_standard_analog_output|std::vector|Standard analog output 1 (ratio) [0..1] | +|R4_debug|uint32_t|Debug for internal use | +|R4_tool_digital_output_mask|uint32_t|Tool digital outputs mask| +|R4_rtde_input_max|int|| +## 输出菜单 +| 名称 | 数据类型 | 说明 | +| :----:| :----: | :----: | +|timestamp|double|Time elapsed since the controller was started [s]| +|line_number|int|line number set by setPlanContext| +|runtime_state|RuntimeState|Program state| +|output_bit_registers_0_to_63|int64_t|64 [000..063] General purpose bits| +|output_bit_registers_64_to_127|int64_t|64 [064..127] general purpose bits| +|output_int_registers_0|int|48 general purpose integer registersX: [0..23] - The lower range of the integer output registers isreserved for FieldBus/PLC interface usage. X: [24..47] - The upper range of the integer output registers can be used by external RTDE clients (i.e aubo_studio plugins).| +|output_float_registers_0|int|48 general purpose integer registersX: [0..23] - The lower range of the integer output registers isreserved for FieldBus/PLC interface usage. X: [24..47] - The upper range of the integer output registers can be used by external RTDE clients (i.e aubo_studio plugins).| +|output_double_registers_0|double|48 general purpose double registersX: [0..23] - The lower range of the double output registers isreserved for FieldBus/PLC interface usage. X: [24..47] - The upper range of the double output registers can be used by external RTDE clients (i.e aubo_studio plugins).| +|input_bit_registers_r0_to_63|int64_t|[0..63] General purpose bits This range of the boolean outputregisters is reserved for FieldBus/PLC interface usage.| +|input_bit_registers_r64_to_127|int64_t|64 [64..127] general purpose bits| +|input_int_registers_r0|int|([0 .. 48]) 48 general purpose integer registersX: [0..23] - The lower range of the integer input registers isreserved for FieldBus/PLC interface usage. X: [24..47] - Theupper range of the integer input registers can be used byexternal RTDE clients (i.e aubo_studio plugins).| +|input_float_registers_r0|int|([0 .. 48]) 48 general purpose integer registersX: [0..23] - The lower range of the integer input registers isreserved for FieldBus/PLC interface usage. X: [24..47] - Theupper range of the integer input registers can be used byexternal RTDE clients (i.e aubo_studio plugins).| +|input_double_registers_r0|double|([0 .. 48]) 48 general purpose double registersX: [0..23] - The lower range of the double input registers isreserved for FieldBus/PLC interface usage. X: [24..47] - Theupper range of the double input registers can be used byexternal RTDE clients (i.e aubo_studio plugins).| +|modbus_signals|std::vector|Modbus signals from connected modbus slaves| +|modbus_signals_errors|std::vector|Modbus signals request status from connected modbus slaves| +|input_int16_registers_r0|int16_t|input_int16_registers_r0| +|input_int16_registers_0_to_63|std::vector| | +|pn_input_int16_registers256_to_287|std::vector|32 PN specific int16 registers| +|pn_input_int16_registers288_to_319|std::vector|32 PN specific int16 registers| +|eip_input_int16_registers320_to_351|std::vector|32 EIP specific int16 registers| +|eip_input_int16_registers352_to_383|std::vector|32 EIP specific int16 registers| +|runtime_context|std::vector| | +|gripper_status|GripperStatus| | +|axis_actual_positions|std::vector|Actual axis positions| +|axis_actual_velocities|std::vector|Actual axis velocities| +|axis_actual_accelerations|std::vector|Actual axis accelerations| +|axis_actual_currents|std::vector|Actual axis currents| +|R1_message|RobotMsg|Robot message from controller| +|R1_target_q|std::vector|Target joint positions| +|R1_target_qd|std::vector|Target joint velocities| +|R1_target_qdd|std::vector|Target joint accelerations| +|R1_target_current|std::vector|Target joint currents| +|R1_target_moment|std::vector|Target joint moments (torques)| +|R1_actual_q|std::vector|Actual joint positions| +|R1_actual_qd|std::vector|Actual joint velocities| +|R1_actual_current|std::vector|Actual joint currents| +|R1_joint_control_output|std::vector|Joint control currents| +|R1_joint_temperatures|std::vector|Temperature of each joint in degrees Celsius| +|R1_actual_joint_voltage|std::vector|Actual joint voltages| +|R1_joint_mode|std::vector|Joint control modes Please see Remote Control Via TCP/IP - 16496| +|R1_actual_execution_time|double|Controller real-time thread execution time| +|R1_robot_mode|RobotModeType|Robot mode Please see Remote Control Via TCP/IP - 16496| +|R1_safety_mode|SafetyModeType|Safety mode Please see Remote Control Via TCP/IP - 16496| +|R1_safety_status|unknown|Safety ststus| +|R1_robot_status_bits|unknown|Bits 0-3: Is power on | Is program running | Isteach button pressed | Is power button pressed| +|R1_safety_status_bits|unknown|Bits 0-10: Is normal mode | Is reduced mode | | Is protectivestopped | Is recovery mode | Is safeguard stopped | Is systememergency stopped | Is robot emergency stopped | Is emergencystopped | Is violation | Is fault | Is stopped due to safety| +|R1_speed_scaling|double|Speed scaling of the trajectory limiter| +|R1_target_speed_fraction|double|Target speed fraction| +|R1_actual_TCP_pose|std::vector|Actual Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R1_actual_TCP_speed|std::vector|Actual speed of the tool given in Cartesian coordinates| +|R1_actual_TCP_force|std::vector|Generalized forces in the TCP| +|R1_target_TCP_pose|std::vector|Target Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R1_target_TCP_speed|std::vector|Target speed of the tool given in Cartesian coordinates| +|R1_elbow_position|std::vector|Position of robot elbow in Cartesian Base Coordinates| +|R1_elbow_velocity|std::vector|Velocity of robot elbow in Cartesian Base Coordinates| +|R1_actual_momentum|std::vector|Norm of Cartesian linear momentum| +|R1_tcp_force_scalar|std::vector|TCP force scalar [N]| +|R1_future_path_points|std::vector>|Get future path points joint| +|R1_actual_main_voltage|unknown|Safety Control Board: Main voltage| +|R1_actual_robot_voltage|unknown|Safety Control Board: Robot voltage (48V)| +|R1_actual_robot_current|unknown|Safety Control Board: Robot current| +|R1_joint_torque_sensor|std::vector|Joint torque sensor| +|R1_joint_torque|std::vector|Calibrated joint torques| +|R1_operationalModeSelectorInput|OperationalModeType|Current state of the operational mode selector input| +|R1_threePositionEnablingDeviceInput|unknown|| +|R1_masterboard_temperature|unknown|| +|R1_standard_digital_input_bits|uint64_t|Current state of the standard digital inputs.| +|R1_tool_digital_input_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R1_configurable_digital_input_bits|uint64_t|Current state of the safety inputs.| +|R1_link_digital_input_bits|uint64_t|Current state of the link digital inputs.| +|R1_standard_digital_output_bits|uint64_t|Current state of the standard digital outputs.| +|R1_tool_digital_output_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R1_configurable_digital_output_bits|uint64_t|Current state of the safety outputs.| +|R1_link_digital_output_bits|uint64_t|Current state of the link digital outputs.| +|R1_standard_analog_input_values|std::vector|Current values of the standard analog inputs.| +|R1_tool_analog_input_values|std::vector|Current values of the tool analog inputs.| +|R1_standard_analog_output_values|std::vector|Current values of the standard analog outputs.| +|R1_tool_analog_output_values|std::vector|Current values of the tool analog outputs.| +|R1_is_simulation_enabled|bool|| +|R1_collision_level|int|| +|R1_master_io_current|unknown|I/O current [A]| +|R1_euromap67_input_bits|unknown|Euromap67 input bits| +|R1_euromap67_output_bits|unknown|Euromap67 output bits| +|R1_euromap67_24V_voltage|unknown|Euromap 24V voltage [V]| +|R1_euromap67_24V_current|unknown|Euromap 24V current [A]| +|R1_tool_mode|unknown|Tool mode Please see Remote Control Via TCP/IP - 16496| +|R1_tool_output_mode|unknown|The current output mode| +|R1_tool_output_voltage|unknown|Tool output voltage [V]| +|R1_tool_output_current|unknown|Tool current [A]| +|R1_tool_voltage_48V|unknown|| +|R1_tool_current|unknown|| +|R1_tool_temperature|unknown|Tool temperature in degrees Celsius| +|R1_actual_tool_accelerometer|unknown|Tool x, y and z accelerometer values| +|R1_motion_progress|unknown|Trajectory running progress| +|R1_actual_qdd|unknown|Actual joint accelerations| +|R1_controlbox_humidity|double|Controbox humidity| +|R1_actual_tool_pose|std::vector|Actual Cartesian coordinates of the tool(without TCP)| +|R1_rtde_output_max|int|| +|R1_actual_TCP_force_sensor|std::vector|TCP force sensor| +|R1_fc_cond_fullfiled|bool|| +|R1_actual_payload|Payload|Actual payload| +|R1_tool_button_status|bool|Tool button status| +|R1_handle_status|uint64_t|Handle button io status| +|R1_enc_tick_count|std::vector|Enc tick count| +|R1_weave_direction|int|Get current weave trajectory direction| +|R1_handle_dev_state|int|Get handle dev state| +|R1_handle_dev_type|int|Get handle dev type| +|R2_message|RobotMsg|Robot message from controller| +|R2_target_q|std::vector|Target joint positions| +|R2_target_qd|std::vector|Target joint velocities| +|R2_target_qdd|std::vector|Target joint accelerations| +|R2_target_current|std::vector|Target joint currents| +|R2_target_moment|std::vector|Target joint moments (torques)| +|R2_actual_q|std::vector|Actual joint positions| +|R2_actual_qd|std::vector|Actual joint velocities| +|R2_actual_current|std::vector|Actual joint currents| +|R2_joint_control_output|std::vector|Joint control currents| +|R2_joint_temperatures|std::vector|Temperature of each joint in degrees Celsius| +|R2_actual_joint_voltage|std::vector|Actual joint voltages| +|R2_joint_mode|std::vector|Joint control modes Please see Remote Control Via TCP/IP - 16496| +|R2_actual_execution_time|double|Controller real-time thread execution time| +|R2_robot_mode|RobotModeType|Robot mode Please see Remote Control Via TCP/IP - 16496| +|R2_safety_mode|SafetyModeType|Safety mode Please see Remote Control Via TCP/IP - 16496| +|R2_safety_status|unknown|Safety ststus| +|R2_robot_status_bits|unknown|Bits 0-3: Is power on | Is program running | Isteach button pressed | Is power button pressed| +|R2_safety_status_bits|unknown|Bits 0-10: Is normal mode | Is reduced mode | | Is protectivestopped | Is recovery mode | Is safeguard stopped | Is systememergency stopped | Is robot emergency stopped | Is emergencystopped | Is violation | Is fault | Is stopped due to safety| +|R2_speed_scaling|double|Speed scaling of the trajectory limiter| +|R2_target_speed_fraction|double|Target speed fraction| +|R2_actual_TCP_pose|std::vector|Actual Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R2_actual_TCP_speed|std::vector|Actual speed of the tool given in Cartesian coordinates| +|R2_actual_TCP_force|std::vector|Generalized forces in the TCP| +|R2_target_TCP_pose|std::vector|Target Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R2_target_TCP_speed|std::vector|Target speed of the tool given in Cartesian coordinates| +|R2_elbow_position|std::vector|Position of robot elbow in Cartesian Base Coordinates| +|R2_elbow_velocity|std::vector|Velocity of robot elbow in Cartesian Base Coordinates| +|R2_actual_momentum|std::vector|Norm of Cartesian linear momentum| +|R2_tcp_force_scalar|std::vector|TCP force scalar [N]| +|R2_future_path_points|std::vector>|Get future path points joint| +|R2_actual_main_voltage|unknown|Safety Control Board: Main voltage| +|R2_actual_robot_voltage|unknown|Safety Control Board: Robot voltage (48V)| +|R2_actual_robot_current|unknown|Safety Control Board: Robot current| +|R2_joint_torque_sensor|std::vector|Joint torque sensor| +|R2_joint_torque|std::vector|Calibrated joint torques| +|R2_operationalModeSelectorInput|OperationalModeType|Current state of the operational mode selector input| +|R2_threePositionEnablingDeviceInput|unknown|| +|R2_masterboard_temperature|unknown|| +|R2_standard_digital_input_bits|uint64_t|Current state of the standard digital inputs.| +|R2_tool_digital_input_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R2_configurable_digital_input_bits|uint64_t|Current state of the safety inputs.| +|R2_link_digital_input_bits|uint64_t|Current state of the link digital inputs.| +|R2_standard_digital_output_bits|uint64_t|Current state of the standard digital outputs.| +|R2_tool_digital_output_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R2_configurable_digital_output_bits|uint64_t|Current state of the safety outputs.| +|R2_link_digital_output_bits|uint64_t|Current state of the link digital outputs.| +|R2_standard_analog_input_values|std::vector|Current values of the standard analog inputs.| +|R2_tool_analog_input_values|std::vector|Current values of the tool analog inputs.| +|R2_standard_analog_output_values|std::vector|Current values of the standard analog outputs.| +|R2_tool_analog_output_values|std::vector|Current values of the tool analog outputs.| +|R2_is_simulation_enabled|bool|| +|R2_collision_level|int|| +|R2_master_io_current|unknown|I/O current [A]| +|R2_euromap67_input_bits|unknown|Euromap67 input bits| +|R2_euromap67_output_bits|unknown|Euromap67 output bits| +|R2_euromap67_24V_voltage|unknown|Euromap 24V voltage [V]| +|R2_euromap67_24V_current|unknown|Euromap 24V current [A]| +|R2_tool_mode|unknown|Tool mode Please see Remote Control Via TCP/IP - 16496| +|R2_tool_output_mode|unknown|The current output mode| +|R2_tool_output_voltage|unknown|Tool output voltage [V]| +|R2_tool_output_current|unknown|Tool current [A]| +|R2_tool_voltage_48V|unknown|| +|R2_tool_current|unknown|| +|R2_tool_temperature|unknown|Tool temperature in degrees Celsius| +|R2_actual_tool_accelerometer|unknown|Tool x, y and z accelerometer values| +|R2_motion_progress|unknown|Trajectory running progress| +|R2_actual_qdd|unknown|Actual joint accelerations| +|R2_controlbox_humidity|double|Controbox humidity| +|R2_actual_tool_pose|std::vector|Actual Cartesian coordinates of the tool(without TCP)| +|R2_rtde_output_max|int|| +|R2_actual_TCP_force_sensor|std::vector|TCP force sensor| +|R2_fc_cond_fullfiled|bool|| +|R2_actual_payload|Payload|Actual payload| +|R2_tool_button_status|bool|Tool button status| +|R2_handle_status|uint64_t|Handle button io status| +|R2_enc_tick_count|std::vector|Enc tick count| +|R2_weave_direction|int|Get current weave trajectory direction| +|R2_handle_dev_state|int|Get handle dev state| +|R2_handle_dev_type|int|Get handle dev type| +|R3_message|RobotMsg|Robot message from controller| +|R3_target_q|std::vector|Target joint positions| +|R3_target_qd|std::vector|Target joint velocities| +|R3_target_qdd|std::vector|Target joint accelerations| +|R3_target_current|std::vector|Target joint currents| +|R3_target_moment|std::vector|Target joint moments (torques)| +|R3_actual_q|std::vector|Actual joint positions| +|R3_actual_qd|std::vector|Actual joint velocities| +|R3_actual_current|std::vector|Actual joint currents| +|R3_joint_control_output|std::vector|Joint control currents| +|R3_joint_temperatures|std::vector|Temperature of each joint in degrees Celsius| +|R3_actual_joint_voltage|std::vector|Actual joint voltages| +|R3_joint_mode|std::vector|Joint control modes Please see Remote Control Via TCP/IP - 16496| +|R3_actual_execution_time|double|Controller real-time thread execution time| +|R3_robot_mode|RobotModeType|Robot mode Please see Remote Control Via TCP/IP - 16496| +|R3_safety_mode|SafetyModeType|Safety mode Please see Remote Control Via TCP/IP - 16496| +|R3_safety_status|unknown|Safety ststus| +|R3_robot_status_bits|unknown|Bits 0-3: Is power on | Is program running | Isteach button pressed | Is power button pressed| +|R3_safety_status_bits|unknown|Bits 0-10: Is normal mode | Is reduced mode | | Is protectivestopped | Is recovery mode | Is safeguard stopped | Is systememergency stopped | Is robot emergency stopped | Is emergencystopped | Is violation | Is fault | Is stopped due to safety| +|R3_speed_scaling|double|Speed scaling of the trajectory limiter| +|R3_target_speed_fraction|double|Target speed fraction| +|R3_actual_TCP_pose|std::vector|Actual Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R3_actual_TCP_speed|std::vector|Actual speed of the tool given in Cartesian coordinates| +|R3_actual_TCP_force|std::vector|Generalized forces in the TCP| +|R3_target_TCP_pose|std::vector|Target Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R3_target_TCP_speed|std::vector|Target speed of the tool given in Cartesian coordinates| +|R3_elbow_position|std::vector|Position of robot elbow in Cartesian Base Coordinates| +|R3_elbow_velocity|std::vector|Velocity of robot elbow in Cartesian Base Coordinates| +|R3_actual_momentum|std::vector|Norm of Cartesian linear momentum| +|R3_tcp_force_scalar|std::vector|TCP force scalar [N]| +|R3_future_path_points|std::vector>|Get future path points joint| +|R3_actual_main_voltage|unknown|Safety Control Board: Main voltage| +|R3_actual_robot_voltage|unknown|Safety Control Board: Robot voltage (48V)| +|R3_actual_robot_current|unknown|Safety Control Board: Robot current| +|R3_joint_torque_sensor|std::vector|Joint torque sensor| +|R3_joint_torque|std::vector|Calibrated joint torques| +|R3_operationalModeSelectorInput|OperationalModeType|Current state of the operational mode selector input| +|R3_threePositionEnablingDeviceInput|unknown|| +|R3_masterboard_temperature|unknown|| +|R3_standard_digital_input_bits|uint64_t|Current state of the standard digital inputs.| +|R3_tool_digital_input_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R3_configurable_digital_input_bits|uint64_t|Current state of the safety inputs.| +|R3_link_digital_input_bits|uint64_t|Current state of the link digital inputs.| +|R3_standard_digital_output_bits|uint64_t|Current state of the standard digital outputs.| +|R3_tool_digital_output_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R3_configurable_digital_output_bits|uint64_t|Current state of the safety outputs.| +|R3_link_digital_output_bits|uint64_t|Current state of the link digital outputs.| +|R3_standard_analog_input_values|std::vector|Current values of the standard analog inputs.| +|R3_tool_analog_input_values|std::vector|Current values of the tool analog inputs.| +|R3_standard_analog_output_values|std::vector|Current values of the standard analog outputs.| +|R3_tool_analog_output_values|std::vector|Current values of the tool analog outputs.| +|R3_is_simulation_enabled|bool|| +|R3_collision_level|int|| +|R3_master_io_current|unknown|I/O current [A]| +|R3_euromap67_input_bits|unknown|Euromap67 input bits| +|R3_euromap67_output_bits|unknown|Euromap67 output bits| +|R3_euromap67_24V_voltage|unknown|Euromap 24V voltage [V]| +|R3_euromap67_24V_current|unknown|Euromap 24V current [A]| +|R3_tool_mode|unknown|Tool mode Please see Remote Control Via TCP/IP - 16496| +|R3_tool_output_mode|unknown|The current output mode| +|R3_tool_output_voltage|unknown|Tool output voltage [V]| +|R3_tool_output_current|unknown|Tool current [A]| +|R3_tool_voltage_48V|unknown|| +|R3_tool_current|unknown|| +|R3_tool_temperature|unknown|Tool temperature in degrees Celsius| +|R3_actual_tool_accelerometer|unknown|Tool x, y and z accelerometer values| +|R3_motion_progress|unknown|Trajectory running progress| +|R3_actual_qdd|unknown|Actual joint accelerations| +|R3_controlbox_humidity|double|Controbox humidity| +|R3_actual_tool_pose|std::vector|Actual Cartesian coordinates of the tool(without TCP)| +|R3_rtde_output_max|int|| +|R3_actual_TCP_force_sensor|std::vector|TCP force sensor| +|R3_fc_cond_fullfiled|bool|| +|R3_actual_payload|Payload|Actual payload| +|R3_tool_button_status|bool|Tool button status| +|R3_handle_status|uint64_t|Handle button io status| +|R3_enc_tick_count|std::vector|Enc tick count| +|R3_weave_direction|int|Get current weave trajectory direction| +|R3_handle_dev_state|int|Get handle dev state| +|R3_handle_dev_type|int|Get handle dev type| +|R4_message|RobotMsg|Robot message from controller| +|R4_target_q|std::vector|Target joint positions| +|R4_target_qd|std::vector|Target joint velocities| +|R4_target_qdd|std::vector|Target joint accelerations| +|R4_target_current|std::vector|Target joint currents| +|R4_target_moment|std::vector|Target joint moments (torques)| +|R4_actual_q|std::vector|Actual joint positions| +|R4_actual_qd|std::vector|Actual joint velocities| +|R4_actual_current|std::vector|Actual joint currents| +|R4_joint_control_output|std::vector|Joint control currents| +|R4_joint_temperatures|std::vector|Temperature of each joint in degrees Celsius| +|R4_actual_joint_voltage|std::vector|Actual joint voltages| +|R4_joint_mode|std::vector|Joint control modes Please see Remote Control Via TCP/IP - 16496| +|R4_actual_execution_time|double|Controller real-time thread execution time| +|R4_robot_mode|RobotModeType|Robot mode Please see Remote Control Via TCP/IP - 16496| +|R4_safety_mode|SafetyModeType|Safety mode Please see Remote Control Via TCP/IP - 16496| +|R4_safety_status|unknown|Safety ststus| +|R4_robot_status_bits|unknown|Bits 0-3: Is power on | Is program running | Isteach button pressed | Is power button pressed| +|R4_safety_status_bits|unknown|Bits 0-10: Is normal mode | Is reduced mode | | Is protectivestopped | Is recovery mode | Is safeguard stopped | Is systememergency stopped | Is robot emergency stopped | Is emergencystopped | Is violation | Is fault | Is stopped due to safety| +|R4_speed_scaling|double|Speed scaling of the trajectory limiter| +|R4_target_speed_fraction|double|Target speed fraction| +|R4_actual_TCP_pose|std::vector|Actual Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R4_actual_TCP_speed|std::vector|Actual speed of the tool given in Cartesian coordinates| +|R4_actual_TCP_force|std::vector|Generalized forces in the TCP| +|R4_target_TCP_pose|std::vector|Target Cartesian coordinates of the tool:(x,y,z,rx,ry,rz), where rx, ry and rz is a rotationvector representation of the tool orientation| +|R4_target_TCP_speed|std::vector|Target speed of the tool given in Cartesian coordinates| +|R4_elbow_position|std::vector|Position of robot elbow in Cartesian Base Coordinates| +|R4_elbow_velocity|std::vector|Velocity of robot elbow in Cartesian Base Coordinates| +|R4_actual_momentum|std::vector|Norm of Cartesian linear momentum| +|R4_tcp_force_scalar|std::vector|TCP force scalar [N]| +|R4_future_path_points|std::vector>|Get future path points joint| +|R4_actual_main_voltage|unknown|Safety Control Board: Main voltage| +|R4_actual_robot_voltage|unknown|Safety Control Board: Robot voltage (48V)| +|R4_actual_robot_current|unknown|Safety Control Board: Robot current| +|R4_joint_torque_sensor|std::vector|Joint torque sensor| +|R4_joint_torque|std::vector|Calibrated joint torques| +|R4_operationalModeSelectorInput|OperationalModeType|Current state of the operational mode selector input| +|R4_threePositionEnablingDeviceInput|unknown|| +|R4_masterboard_temperature|unknown|| +|R4_standard_digital_input_bits|uint64_t|Current state of the standard digital inputs.| +|R4_tool_digital_input_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R4_configurable_digital_input_bits|uint64_t|Current state of the safety inputs.| +|R4_link_digital_input_bits|uint64_t|Current state of the link digital inputs.| +|R4_standard_digital_output_bits|uint64_t|Current state of the standard digital outputs.| +|R4_tool_digital_output_bits|uint64_t|Current state of the tool digital inputs and outputs.| +|R4_configurable_digital_output_bits|uint64_t|Current state of the safety outputs.| +|R4_link_digital_output_bits|uint64_t|Current state of the link digital outputs.| +|R4_standard_analog_input_values|std::vector|Current values of the standard analog inputs.| +|R4_tool_analog_input_values|std::vector|Current values of the tool analog inputs.| +|R4_standard_analog_output_values|std::vector|Current values of the standard analog outputs.| +|R4_tool_analog_output_values|std::vector|Current values of the tool analog outputs.| +|R4_is_simulation_enabled|bool|| +|R4_collision_level|int|| +|R4_master_io_current|unknown|I/O current [A]| +|R4_euromap67_input_bits|unknown|Euromap67 input bits| +|R4_euromap67_output_bits|unknown|Euromap67 output bits| +|R4_euromap67_24V_voltage|unknown|Euromap 24V voltage [V]| +|R4_euromap67_24V_current|unknown|Euromap 24V current [A]| +|R4_tool_mode|unknown|Tool mode Please see Remote Control Via TCP/IP - 16496| +|R4_tool_output_mode|unknown|The current output mode| +|R4_tool_output_voltage|unknown|Tool output voltage [V]| +|R4_tool_output_current|unknown|Tool current [A]| +|R4_tool_voltage_48V|unknown|| +|R4_tool_current|unknown|| +|R4_tool_temperature|unknown|Tool temperature in degrees Celsius| +|R4_actual_tool_accelerometer|unknown|Tool x, y and z accelerometer values| +|R4_motion_progress|unknown|Trajectory running progress| +|R4_actual_qdd|unknown|Actual joint accelerations| +|R4_controlbox_humidity|double|Controbox humidity| +|R4_actual_tool_pose|std::vector|Actual Cartesian coordinates of the tool(without TCP)| +|R4_rtde_output_max|int|| +|R4_actual_TCP_force_sensor|std::vector|TCP force sensor| +|R4_fc_cond_fullfiled|bool|| +|R4_actual_payload|Payload|Actual payload| +|R4_tool_button_status|bool|Tool button status| +|R4_handle_status|uint64_t|Handle button io status| +|R4_enc_tick_count|std::vector|Enc tick count| +|R4_weave_direction|int|Get current weave trajectory direction| +|R4_handle_dev_state|int|Get handle dev state| +|R4_handle_dev_type|int|Get handle dev type| diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_algorithm.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_algorithm.lua new file mode 100644 index 00000000..44cd389c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_algorithm.lua @@ -0,0 +1,140 @@ +--[[ + 功能:机械臂正逆解 + 步骤: + 第一步:逆解 + 第二部:正解 +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_algorithm() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_algorithm.lua") + -- 参考关节角,单位:弧度 + waypoint_0_q = {0.00123059, -0.26063, 1.7441, 0.437503, 1.56957, 0.00107586} + -- 目标位姿 + waypoint_1_p = {0.549273, -0.12094, 0.464501, 3.13802, 0.00122674, 1.57095} + -- 逆解 + -- 对应AUBOPE joint=get_target_pose({0.549273, -0.12094,0.464501}, rpyToQuaternion({3.13802, 0.00122674, 1.57095}),false,{0.0003,0.0001,0.00066},{1,0,0,0}) + waypoint_1_q = inverseKinematics(waypoint_0_q, waypoint_1_p) + textmsg("The result of inverse kinematics is "..table.concat(waypoint_1_q, ', ')) + -- 正解 + waypoint_2_p = forwardKinematics(waypoint_1_q) + textmsg("The result of forward kinematics is "..table.concat(waypoint_2_p, ', ')) + + -- 对应AUBOPE set_global_variable ("V_I_b", 34) + setInt32("V_I_b", 34); + sleep(1) + -- 对应AUBOPE get_global_variable ("V_I_b") + textmsg("V_I_b is "..getInt32("V_I_b", 0)) + + -- 对应AUBOPE set_global_variable ("custom1", true) + setBool("custom1", true) + sleep(1) + -- 对应AUBOPE get_global_variable ("custom1") + custom1 =getBool("custom1", true) + textmsg("custom1 is "..tostring(custom1)) + + -- 对应AUBOPE set_global_variable ("custom3", 0.1) + setFloat("custom3", 0.1) + sleep(1) + -- 对应AUBOPE get_global_variable ("custom3") + textmsg("custom3 is "..getFloat("custom3", 0)) + + -- 对应AUBOPE set_global_variable ("custom4", 0.2) + setDouble("custom4", 0.2) + sleep(1) + -- 对应AUBOPE get_global_variable ("custom4") + textmsg("custom4 is "..getDouble("custom4", 0)) + + -- 对应AUBOPE set_global_variable ("custom5", "test") + setString("custom5", "test") + sleep(1) + -- 对应AUBOPE get_global_variable ("custom5") + textmsg(getString("custom5", "")) + + -- 对应AUBOPE init_global_variables("custom4") + clearNamedVariable("custom4") + textmsg("custom4 is "..getDouble("custom4", 0)) + + --添加保持寄存器(写) + modbusAddSignal( "127.0.0.1,1504", 1, 0x00, 0x05, "READ_HOLDING_REGISTER_W_00", true) + --设置频率 + modbusSetSignalUpdateFrequency("READ_HOLDING_REGISTER_W_00", 1) + --写保持寄存器 + -- 对应AUBOPE set_modbus_io_status("READ_HOLDING_REGISTER_W_00",1) + modbusSetOutputSignal("READ_HOLDING_REGISTER_W_00",0x01) + --删除 + modbusDeleteSignal("READ_HOLDING_REGISTER_W_00") + + --添加保持寄存器(读) + modbusAddSignal( "127.0.0.1,1504", 1, 0x00, 0x03, "READ_HOLDING_REGISTER_R_00", true) + --设置频率 + modbusSetSignalUpdateFrequency("READ_HOLDING_REGISTER_R_00", 1) + --读写保持寄存器 + --AUBOPE get_modbus_io_status("READ_HOLDING_REGISTER_R_00") + textmsg("READ_HOLDING_REGISTER_R_00 is "..modbusGetSignalStatus( "READ_HOLDING_REGISTER_R_00")) + --删除 + modbusDeleteSignal("READ_HOLDING_REGISTER_R_00") +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_algorithm, env) + p_example_algorithm() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_client.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_client.lua new file mode 100644 index 00000000..8ad4a5fc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_client.lua @@ -0,0 +1,94 @@ +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_client() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_client.lua") + -- client.lua + local socket = require("socket") + local host = "127.0.0.1" + local port = 1234 + --对应AUBOPE tcp.client.connect (host, port) + local client = assert(socket.connect(host, port)) + client:settimeout(0) + while 1 do + if client then + textmsg("client successfully connect!") + end + while 1 do + --对应AUBOPE recv=tcp.client.recv_str_data(host, port) + command, emsg = client:receive(); + if emsg == "closed" then + --对应AUBOPE tcp.client.disconnect(host, port) + control:close() + break + end + if command then + textmsg(command) + --对应AUBOPE tcp.client.send_str_data(host, port, "send_str_data") + client:send("send_str_data") + end + end + end +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_client, env) + p_example_client() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_config.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_config.lua new file mode 100644 index 00000000..66de3bce --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_config.lua @@ -0,0 +1,184 @@ +--[[ + 功能:设置和获取机械臂配置 +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_config() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_config.lua") + -- 获取机器人的名字 + robot_name = getName() + textmsg("The name of robot is "..robot_name) + -- 获取机器人的自由度(从硬件抽象层读取) + robot_dof = getDof() + textmsg("The dof of robot is "..robot_dof) + -- 获取机器人的伺服控制周期(从硬件抽象层读取) + cycle_time = getCycletime() + textmsg("The cycle time of robot is "..cycle_time) + -- 获取默认的工具端加速度 + default_tool_acc = getDefaultToolAcc() + textmsg("The default tool acceleraion of robot is "..default_tool_acc) + -- 获取默认的工具端速度 + default_tool_speed = getDefaultToolSpeed() + textmsg("The default tool speed of robot is "..default_tool_speed) + -- 获取默认的关节加速度 + default_joint_acc = getDefaultJointAcc() + textmsg("The default joint acceleration of robot is "..default_joint_acc) + -- 获取默认的关节速度 + default_joint_speed = getDefaultJointSpeed() + textmsg("The default joint speed of robot is "..default_joint_speed) + -- 获取机器人类型代码 + robot_type = getRobotType() + textmsg("The type of robot is "..robot_type) + -- 获取机器人子类型代码 + robot_sub_type = getRobotSubType() + textmsg("The sub type of robot is "..robot_sub_type) + -- 获取控制柜类型代码 + control_box_type = getControlBoxType() + textmsg("The type of control box is "..control_box_type) + -- 设置和获取安装位姿 + mounting_pose = {0.54897, -0.12120, 0.26253, -3.11, 0.01, 1.57} + setMountingPose(mounting_pose) + sleep(1) + mounting_pose = getMountingPose() + textmsg("The mounting pose of robot is "..table.concat(mounting_pose, ', ')) + -- 设置和获取碰撞灵敏度等级 + -- 对应AUBOPE set_robot_collision_class(5) + setCollisionLevel(5) + sleep(1) + collision_level = getCollisionLevel() + textmsg("The collision level of robot is "..collision_level) + -- 设置和获取碰撞停止类型 + setCollisionStopType(2) + sleep(1) + collision_stop_type = getCollisionStopType() + textmsg("The type of collision stop is "..collision_stop_type) + -- 设置和获取工具端电压输出范围 + -- 对应AUBOPE set_tool_power_voltage(ToolPowerType.OUT_12V) + setToolVoltageOutputDomain(24) + sleep(1) + tool_voltage_output_domain = getToolVoltageOutputDomain() + textmsg("The domain of tool voltage output is "..tool_voltage_output_domain) + -- 获取机器人DH参数 + kinematics_param = getKinematicsParam(true) + textmsg("The kinematics param of robot is "..table.concat(kinematics_param,', ')) + -- 获取指定温度下的DH参数补偿值 + kinematics_compensate = getKinematicsCompensate(20) + textmsg("The kinematics compensate of robot is "..table.concat(kinematics_compensate,', ')) + -- 获取可用的末端力矩传感器的名字 + tcp_force_sensor_names = getTcpForceSensorNames() + textmsg("The names of tcp force sensor are "..table.concat(tcp_force_sensor_names, ', ')) + -- 设置末端力矩传感器 + name = "kw_ftsensor" + selectTcpForceSensor(name) + sleep(1) + -- 是否安装了末端力矩传感器 + has_tcp_force_sensor = hasTcpForceSensor() + textmsg("Is the sensor installed? "..tostring(has_tcp_force_sensor)) + -- 获取可用的底座力矩传感器的名字 + base_force_sensor_names = getBaseForceSensorNames() + textmsg("The names of base force sensor are "..table.concat(base_force_sensor_names, ', ')) + -- 获取安全参数校验码 CRC32 + safety_parameters_checksum = getSafetyParametersCheckSum() + textmsg("The checksum of safety parameters is "..safety_parameters_checksum) + -- 获取关节最大位置(物理极限) + joint_max_positions = getJointMaxPositions() + textmsg("The maximum positions of joint are "..table.concat(joint_max_positions, ', ')) + -- 获取关节最小位置(物理极限) + joint_min_positions = getJointMinPositions() + textmsg("The minimum positions of joint are "..table.concat(joint_min_positions, ', ')) + -- 获取关节最大速度(物理极限) + joint_max_speeds = getJointMaxSpeeds() + textmsg("The maximum speeds of joint are "..table.concat(joint_max_speeds, ', ')) + -- 获取TCP最大速度(物理极限) + tcp_max_acc = getTcpMaxAccelerations() + textmsg("The maximum accelerations of tcp are "..table.concat(tcp_max_acc, ', ')) + -- 设置和获取机器人 gravity + gravity = {0.6, 0.03, 0.36} + setGravity(gravity) + sleep(1) + gravity = getGravity() + textmsg("The gravity of robot is "..table.concat(gravity, ', ')) + -- 设置和获取TCP偏移 + -- 对应AUBOPE set_tool_kinematics_param({0, 0, 0.1},{1,0, 0, 0}) + offset = {0, 0, 0.1, 0, 0, 0} + setTcpOffset(offset) + sleep(1) + offset = getTcpOffset() + textmsg("The offset of tcp is "..table.concat(offset, ', ')) + -- 设置和获取末端负载 + -- cset_tool_dynamics_param(0.5,{0.001,0.002,0.003},{0.0,0.0,0.0,0.0,0.0,0.0}) + setPayload(0.5,{0.001,0.002,0.003},{0,0,0},{0.0,0.0,0.0,0.0,0.0,0.0}) + sleep(1) + payload = getPayload() + textmsg("The payload of robot is "..payload) + -- 末端位姿是否在安全范围之内 + pose = {100, 0.2, 0.45, 0, 0, 0} + tool_space_in_range = toolSpaceInRange(pose) + textmsg("Is the tool space in range? "..tostring(tool_space_in_range)) + -- 获取固件升级的进程 + firmware_update_process = getFirmwareUpdateProcess() + textmsg("The process of firmware update is "..firmware_update_process) +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_config, env) + p_example_config() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_io.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_io.lua new file mode 100644 index 00000000..fff85588 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_io.lua @@ -0,0 +1,198 @@ +--[[ + 功能:设置和获取IO相关配置 +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_io() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_io.lua") + + -- 获取标准数字IO的输入和输出数量 + standard_digital_input_num = getStandardDigitalInputNum() + textmsg("standard_digital_input_num: "..standard_digital_input_num) + standard_digital_output_num = getStandardDigitalOutputNum() + textmsg("standard_digital_output_num: "..standard_digital_output_num) + -- 设置所有的输入触发动作为 Default + setDigitalInputActionDefault() + -- 获取输入触发动作 + standard_input_action1 = getStandardDigitalInputAction(0x00000001) + textmsg("standard digital input action: "..standard_input_action1) + -- 设置标准数字输入触发动作为 Freedrive + setStandardDigitalInputAction(0x00000001, 1) + sleep(1) + -- 获取输入触发动作 + standard_input_action2 = getStandardDigitalInputAction(0x00000001) + textmsg("standard digital input action: "..standard_input_action2) + -- 设置所有的输出状态选择为 None + setDigitalOutputRunstateDefault() + -- 获取标准数字输出状态选择 + standard_digital_output_runstate1 = getStandardDigitalOutputRunstate(0x00000001) + textmsg("standard digital output runstate: "..standard_digital_output_runstate1) + -- 设置标准数字输出状态选择为 STOP_HIGH + setStandardDigitalOutputRunstate(0x00000001, 2) + sleep(1) + -- 获取标准数字输出状态选择 + standard_digital_output_runstate2 = getStandardDigitalOutputRunstate(0x00000001) + textmsg("standard digital output runstate: "..standard_digital_output_runstate2) + -- 获取所有的标准数字输入值 + input_value = {} + for i = 1, 16, 1 do + input_value[i] = tostring(getStandardDigitalInput(i-1)) + end + textmsg("The standard digital input values are "..table.concat(input_value, ', ')) + -- 获取所有的标准数字输出值 + output_value = {} + for i = 1, 16, 1 do + output_value[i] = tostring(getStandardDigitalOutput(i-1)) + end + textmsg("The standard digital output values are "..table.concat(output_value, ', ')) + + -- 设置标准数字输出 + -- 对应AUBOPE set_robot_io_status(RobotIOType.RobotBoardUserDO, "U_DO_00", 1) + setStandardDigitalOutput(0,true) + --获取标准数字输出值 + -- 对应AUBOPE get_robot_io_status (RobotIOType.RobotBoardUserDO, "U_DO_00") + textmsg("U_DO_00 is "..tostring(getStandardDigitalOutput(0))) + --获取标准数字输入值 + --get_robot_io_status(RobotIOType.RobotBoardUserDI,"U_DI_00") + textmsg("U_DI_00 is "..tostring(getStandardDigitalInput(0))) + + + + -- 获取标准模拟输入数量 + standard_analog_input_num = getStandardAnalogInputNum() + textmsg("standard analog input number: ".. standard_analog_input_num) + -- 获取标准模拟输出数量 + standard_analog_output_num = getStandardAnalogOutputNum() + textmsg("standard analog output number: "..standard_analog_output_num) + -- 设置标准模拟输入范围 + setStandardAnalogInputDomain(0, 13) + sleep(1) + -- 获取标准模拟输出范围 + standard_analog_input_domain = getStandardAnalogInputDomain(0) + textmsg("standard analog input domain: "..standard_analog_input_domain) + -- 设置标准模拟输出范围 + setStandardAnalogOutputDomain(0, 12) + sleep(1) + -- 获取标准模拟输出范围 + standard_analog_output_domain = getStandardAnalogOutputDomain(0) + textmsg("standard analog output domain: "..standard_analog_output_domain) + -- 设置标准模拟输出状态选择为 RUNNING + setStandardAnalogOutputRunstate(0, 3) + sleep(1) + -- 获取标准模拟输出状态选择 + standard_output_runstate = getStandardAnalogOutputRunstate(0) + textmsg("standard output runstate: "..standard_output_runstate) + + -- 设置标准模拟输出 + -- 对应AUBOPE set_robot_io_status(RobotIOType.RobotBoardUserAO, "U_VO_00", 3) + setStandardAnalogOutput(0,3) + sleep(1) + --获取标准模拟输出值 + -- 对应AUBOPE get_robot_io_status (RobotIOType.RobotBoardUserAO, "U_VO_00") + textmsg("U_VO_00 is "..tostring(getStandardAnalogOutput(0))) + --获取标准模拟输入值 + --get_robot_io_status(RobotIOType.RobotBoardUserAI,"U_VI_00") + textmsg("U_VI_00 is "..tostring(getStandardAnalogInput(0))) + + + -- 获取工具数字IO输入数量 + tool_digital_input_num = getToolDigitalInputNum() + textmsg("tool digital input number: "..tool_digital_input_num) + -- 获取工具数字IO输出数量 + tool_digital_output_num = getToolDigitalOutputNum() + textmsg("tool digital output number: "..tool_digital_output_num) + -- 设置指定的工具端IO为输入 + setToolIoInput(1, true) + sleep(1) + -- 判断指定的工具端IO是否为输入 + isInput = isToolIoInput(1) + textmsg("Is it the input: "..tostring(isInput)) + -- 获取工具端数字IO输入 + -- 对应AUBOPE get_robot_io_status (RobotIOType.RobotToolDI, "T_DI_01") + tool_digital_input = getToolDigitalInput(1) + textmsg("tool digital input: "..tostring(tool_digital_input)) + textmsg("T_DI_01 is "..tostring(tool_digital_input)) + -- 获取工具端模拟输入数量 + tool_analog_input_num = getToolAnalogInputNum() + textmsg("tool analog input number: "..tool_analog_input_num) + -- 获取工具端模拟输入 + -- 对应AUBOPE get_robot_io_status (RobotIOType.RobotToolAI, "T_AI_00") + tool_analog_input_value = getToolAnalogInput(0) + textmsg("tool analog input value: "..tool_analog_input_value) + textmsg("T_AI_00 is "..tool_analog_input_value) + + -- 设置指定的工具端IO为输出 + setToolIoInput(3, false) + -- 判断指定的工具端IO是否为输入 + isInput = isToolIoInput(3) + textmsg("T_DO_03 it the input: "..tostring(isInput)) + -- 设置工具端数字IO输出 + -- 对应AUBOPE set_robot_io_status(RobotIOType.RobotToolDO, "T_DO_03",false) + getToolDigitalOutput(3,false) + -- 获取工具端数字IO输出 + -- 对应AUBOPE get_robot_io_status(RobotIOType.RobotToolDO, "T_DO_03") + textmsg("T_DO_03 is "..tostring(getToolDigitalOutput(3))) +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_io, env) + p_example_io() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_math.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_math.lua new file mode 100644 index 00000000..dc698d20 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_math.lua @@ -0,0 +1,114 @@ +--[[ + 功能:欧拉角与四元数转化 + 步骤: + 第一步:欧拉角转四元数 + 第二步:四元数转四元数 +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_math() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_math.lua") + -- 欧拉角转四元数 + -- 对应AUBOPE rpy2quaternion({0.835, 0.0780, 0.452, 0.305}) + rpy1 = {0.611, 0.785, 0.960} + quat1 = rpyToQuaternion(rpy1) + textmsg("The quaternion is "..table.concat(quat1, ',')) + -- 四元数转欧拉角 + -- 对应AUBOPE quaternion2rpy({0.835, 0.0780, 0.452, 0.305}) + quat2 = {0.835, 0.0780, 0.452, 0.305} + rpy2 = quaternionToRpy(quat2) + textmsg("The rpy is "..table.concat(rpy2, ', ')) + + -- 对应AUBOPE sqrt(9) + textmsg("The sqrt(9) is "..math.sqrt(9)) + -- 对应AUBOPE pow(10,2) + textmsg("The pow(10,2) is "..math.pow(10,2)) + -- 对应AUBOPE ceil(3.2) + textmsg("The ceil(3.2) is "..math.ceil(3.2)) + -- 对应AUBOPE floor(3.2)) + textmsg("The floor(3.2) is "..math.floor(3.2)) + -- 对应AUBOPE cos(3.14) + textmsg("The cos(3.14) is "..math.cos(3.14)) + -- 对应AUBOPE sin(3.14) + textmsg("The sin(3.14) is "..math.sin(3.14)) + -- 对应AUBOPE tan(0) + textmsg("The tan(0) is "..math.tan(0)) + -- 对应AUBOPE acos(1) + textmsg("The acos(1) is "..math.acos(1)) + -- 对应AUBOPE asin(1) + textmsg("The asin(1) is "..math.asin(1)) + -- 对应AUBOPE atan(1) + textmsg("The atan(1) is "..math.atan(1)) + -- 对应AUBOPE atan2(1,1) + textmsg("The atan2(1,1) is "..math.atan2(1,1)) + -- 对应AUBOPE log(10,1000) + --textmsg("The log(10,1000) is "..math.log(10,1000)) + -- 对应AUBOPE d2r(10) + --textmsg("The d2r(10) is "..d2r(10)) + -- 对应AUBOPE r2d(10) + --textmsg("The r2d(10) is "..r2d(10)) + +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_math, env) + p_example_math() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movec_i5.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movec_i5.lua new file mode 100644 index 00000000..279029a5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movec_i5.lua @@ -0,0 +1,50 @@ +--[[ + 功能:圆周运动 + 注意:本示例是根据型号i5而编写的 + 步骤: + 第一步:关节运动到初始点,即路点0 + 第二步:直线运动到圆的第一个点,即路点1 + 第三步:计算圆周的第四个点,即另一半圆弧的中间点 + 第四步:执行圆周运动 + 注意:执行moveCircle接口,机械臂做圆弧运动。 + 此处,一个完整的圆周运动,是由两个圆弧运动拼接而成的。 +]] +return function(api) + local _ENV = require('aubo').sched.select_robot(1) + local sched = require('aubo').sched + sched.sleep(0) + + pi = 3.14159265358979323846 + + -- 设置工具中心点(TCP) + setTcpOffset({0,0,0,0,0,0}) + + -- 路点0,用关节角表示,单位:弧度 + waypoint0_q = {0.0/180*pi, -15/180*pi, 100/180*pi, 25/180*pi, 90.0/180*pi, 0.0/180*pi} + -- 关节运动到初始点,即路点0 + moveJoint(waypoint0_q, 80/180*pi, 60/180*pi, 0, 0) + + -- 路点1,用位姿(x,y,z,rx,ry,rz)表示,位置的单位:米,姿态的单位:弧度 + waypoint1_p = {0.54887, -0.1215, 0.563, 3.142, 0, 1.571} + -- 直线运动到圆的第一个点,即路点1 + moveLine(waypoint1_p, 1.2, 0.25, 0, 0) + + -- 设置圆的路径模式为无拘束模式, + -- 即工具姿态呈线性变化,绕空间定轴转动,从起点姿态变化到目标点姿态 + setCirclePathMode(0) + + -- 路点2,用位姿(x,y,z,rx,ry,rz)表示,位置的单位:米,姿态的单位:弧度 + waypoint2_p = {0.54887, 0.18830, 0.5703, 3.142, 0, 1.571} + + -- 路点3,用位姿(x,y,z,rx,ry,rz)表示,位置的单位:米,姿态的单位:弧度 + waypoint3_p = {0.54887, 0.18830, 0.3055, 3.142, 0, 1.571} + + -- 计算圆周的第四个点,即另一半圆弧的中间点 + waypoint4_p = calculateCircleFourthPoint(waypoint1_p, waypoint2_p, waypoint3_p, 1) + + -- 执行圆周运动的圈数 + for i = 1, 3 do + moveCircle(waypoint2_p, waypoint3_p, 1.2, 0.25, 0, 0) + moveCircle(waypoint4_p, waypoint1_p, 1.2, 0.25, 0, 0) + end +end \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movej.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movej.lua new file mode 100644 index 00000000..20c2e8e1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movej.lua @@ -0,0 +1,27 @@ +--[[ + 功能:关节运动 + 描述:以关节运动的方式依次经过3个路点 +]] +return function(api) + local _ENV = require('aubo').sched.select_robot(1) + local sched = require('aubo').sched + sched.sleep(0) + + pi = 3.14159265358979323846 + + -- 路点,用关节角表示,单位:弧度 + waypoint0_q = {0.0/180*pi, -15/180*pi, 100/180*pi, 25/180*pi, 90.0/180*pi, 0.0/180*pi} + waypoint1_q = {35.92/180*pi, -11.28/180*pi, 59.96/180*pi, -18.76/180*pi, 90.0/180*pi, 35.92/180*pi} + waypoint2_q = {41.04/180*pi, -7.65/180*pi, 98.80/180*pi, 16.44/180*pi, 90.0/180*pi, 11.64/180*pi} + + -- 设置机械臂的速度比率 + setSpeedFraction(0.75) + + -- 关节运动 + moveJoint(waypoint0_q, 80/180*pi, 60/180*pi, 0, 0) + + moveJoint(waypoint1_q, 80/180*pi, 60/180*pi, 0, 0) + + moveJoint(waypoint2_q, 80/180*pi, 60/180*pi, 0, 0) +end + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movel.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movel.lua new file mode 100644 index 00000000..3e18aad1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_movel.lua @@ -0,0 +1,77 @@ +--[[ + 功能:直线运动 + 步骤: + 第一步:关节运动到初始位置 + 第二步:以直线运动的方式依次走3个路点 Waypoint_1_p、Waypoint_2_p和Waypoint_3_p +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_movel() + -- 功能:恢复所有数字输入、数字输出为默认值 + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + + -- 功能:设置末端负载、TCP + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0000,0.0000,0.0000,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + -- 关节运动到初始位置 + q = {-2.40194, 0.103747, 1.7804, 0.108636, 1.57129, -2.6379} + -- 对应AUBOPE move_joint(q,false) + moveJoint(q, 1, 1, 0, 0) + textmsg("moving to initial position") + + Waypoint_1_p = {-0.155944, -0.727344, 0.439066, 3.05165, 0.0324355, 1.80417} + Waypoint_2_p = {-0.581143, -0.357548, 0.439066, 3.05165, 0.0324355, 1.80417} + Waypoint_3_p = {0.503502, -0.420646, 0.439066, 3.05165, 0.0324355, 1.80417} + + -- 以直线运动的方式依次走3个路点: Waypoint_1、Waypoint_2和Waypoint_3 + -- 对应AUBOPE move_line(q,false) + moveLine(Waypoint_1_p, 1, 1, 0, 0) + textmsg("line move to waypoint_1") + + moveLine(Waypoint_2_p, 1, 1, 0, 0) + textmsg("line move to waypoint_2") + + moveLine(Waypoint_3_p, 1, 1, 0, 0) + textmsg("line move to waypoint_3") + +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1(env) + print("start_robot1---") + -- 配置脚本环境 + local _ENV = env + for k,v in pairs(self.api:loadf(1)) do _ENV[k] = v end + p_example_movel() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1(_ENV) +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_server.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_server.lua new file mode 100644 index 00000000..5c564753 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_server.lua @@ -0,0 +1,95 @@ +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_server() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "example_client.lua") + -- server.lua + local socket = require("socket") + local host = "127.0.0.1" + local port = 1234 + --对应AUBOPE tcp.server.listen (port) + local server = assert(socket.bind(host, port)); + while 1 do + textmsg("server: waiting for client connection..."); + --等待client 连接 对应AUBOPE tcp.server.is_connected(ip_client) == true + control = assert(server:accept()); + if control then + textmsg("A client successfully connect!") + end + while 1 do + --对应AUBOPE recv=tcp.server.recv_str_data(ip_client) + command, emsg = control:receive(); + if emsg == "closed" then + control:close() + --对应AUBOPE tcp.server.close() + server:close() + break + end + textmsg(command); + --对应AUBOPE tcp.server.send_str_data(ip_client, "connect succ") + assert(control:send(command)); + end + end +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_server, env) + p_example_server() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_startup.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_startup.lua new file mode 100644 index 00000000..93ba534a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_startup.lua @@ -0,0 +1,71 @@ +-- 示例功能: 机械臂上电与断电 +-- 引入 aubo 模块并选择机器人 +local _ENV = require('aubo').sched.select_robot(1) +local sched = require('aubo').sched +-- 等待机器人当前的模式类型变成目标模式类型 +local function wait_for_target_mode(target_robot_mode_value, target_robot_mode_key) + -- 等待机器人达到目标状态 + while true do + if getSafetyModeType() == SafetyModeType.Fault then + -- 如果当前安全模式为故障,则输出错误信息并返回 -1 + textmsg("Error! The current safety mode is Fault!") + return -1 + else + local current_robot_mode = getRobotModeType() + if current_robot_mode == target_robot_mode_value then + -- 如果当前机器人模式等于目标模式,则输出信息并返回 0 + textmsg("The robot's current mode changes to the target mode: " .. target_robot_mode_key) + return 0 + else + sched.sleep(1) + end + end + end +end +-- 主函数 +local function main(api) + local mass = 0.0 -- 负载质量,单位kg + local cog = {0.0, 0.0, 0.0} -- 负载重心,单位m + local aom = {0.0, 0.0, 0.0} + local inertia = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0} -- 负载惯量 + -- 设置机器人的负载参数 + setPayload(mass, cog, aom, inertia) + sched.sleep(0.1) + -- 获取机器人的负载参数 + mass, cog, aom, inertia = getPayload() + textmsg("The mass of the robot is " .. mass) + textmsg("The cog of the robot is {" .. table.concat(cog, ', ') .. "}") + if getRobotModeType() == RobotModeType.Running then + -- 如果机器人当前模式为运行,则输出信息 + textmsg("The robot's current state is Running.") + textmsg("The robot has released the brake.") + sched.sleep(0.1) + else + -- 机器人上电 + poweron() + -- 等待机器人模式变为空闲 + if wait_for_target_mode(RobotModeType.Idle, "Idle") == -1 then + textmsg("The robot failed to power on!") + return + end + textmsg("Robot powered on successfully!") + -- 机器人松刹车 + startup() + -- 等待机器人模式变为运行 + if wait_for_target_mode(RobotModeType.Running, "Running") == -1 then + textmsg("The robot failed to release the brake!") + return + end + textmsg("Robot released the brake successfully!") + end + -- 机器人断电 + poweroff() + if wait_for_target_mode(RobotModeType.PowerOff, "PowerOff") == -1 then + textmsg("The robot failed to poweroff!") + return + end + textmsg("Robot powered off successfully!") +end +-- 调用主函数 +main() + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_state.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_state.lua new file mode 100644 index 00000000..3b947b52 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_state.lua @@ -0,0 +1,226 @@ +--[[ + 功能:获取机械臂相关的状态 +]] +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +function p_example_robot_state() + setDigitalInputActionDefault() + setDigitalOutputRunstateDefault() + setPayload(0, {0,0,0}, {0,0,0}, {0,0,0,0,0,0}) + setTcpOffset({0.0003,0.0001,0.00066,0,0,0}) + Base = {0,0,0,0,0,0} + Tool = {0,0,0,0,0,0} + + function waitForMotionComplete() + while (getQueueSize() > 0) or (isSteady() == false) do + sync() + end + end + + local function calculate_point_to_move_towards(feature, direction, position_distance) + local posDir={direction[1], direction[2], direction[3]} + if (math.norm(posDir) < 1e-6) then + return getTargetTcpPose() + end + local direction_vector_normalized=math.normalize(posDir) + local displacement_pose={direction_vector_normalized[1] * position_distance,direction_vector_normalized[2] * position_distance,direction_vector_normalized[3] * position_distance,0,0,0} + + local wanted_displacement_in_base_frame=poseSub(poseTrans(feature, displacement_pose), feature) + return poseAdd(getTargetTcpPose(), wanted_displacement_in_base_frame) + end + setPlanContext(0, 1, "Program") + setPlanContext(0, 2, "robot_state.lua") + -- 获取机器人的模式状态 + mode_type = getRobotModeType() + textmsg("The type of robot mode is "..mode_type) + -- 获取安全模式 + safety_mode_type = getSafetyModeType() + textmsg("The type of safety mode is "..safety_mode_type) + -- 机器人是否已经停止下来 + is_steady = isSteady() + textmsg("Is the robot steady? "..tostring(is_steady)) + -- 机器人是否已经在安全限制之内 + is_within_safety_limits = isWithinSafetyLimits() + textmsg("Is the robot within safety limits? "..tostring(is_within_safety_limits)) + -- 获取TCP的位姿 + -- 对应AUBOPE cp_pose =get_current_waypoint + tcp_pose = getTcpPose() + textmsg("The pose of tcp is "..table.concat(tcp_pose, ', ')) + -- 获取当前目标位姿 + target_tcp_pose = getTargetTcpPose() + textmsg("The pose of target tcp is "..table.concat(target_tcp_pose, ', ')) + -- 获取工具端的位姿(不带TCP偏移) + tool_pose = getToolPose() + textmsg("The pose of tool is "..table.concat(tool_pose, ', ')) + -- 获取TCP速度 + tcp_speed = getTcpSpeed() + textmsg("The speed of tcp is "..table.concat(tcp_speed, ', ')) + -- 获取TCP的力/力矩 + tcp_force = getTcpForce() + textmsg("The force of tcp is "..table.concat(tcp_force, ', ')) + -- 获取肘部的位置 + elbow_position = getElbowPosistion() + textmsg("The position of elbow is "..table.concat(elbow_position, ', ')) + -- 获取肘部速度 + elbow_velocity = getElbowVelocity() + textmsg("The velocity of elbow is "..table.concat(elbow_velocity, ', ')) + -- 获取基座力/力矩 + base_force = getBaseForce() + textmsg("The force of base is "..table.concat(base_force, ', ')) + -- 获取TCP目标位姿 + tcp_target_pose = getTcpTargetPose() + textmsg("The pose of target tcp is "..table.concat(tcp_target_pose, ', ')) + -- 获取TCP目标速度 + tcp_target_speed = getTcpTargetSpeed() + textmsg("The speed of target tcp is "..table.concat(tcp_target_speed, ', ')) + -- 获取TCP目标力/力矩 + tcp_target_force = getTcpTargetForce() + textmsg("The force of target tcp is "..table.concat(tcp_target_force, ', ')) + -- 获取机械臂关节标志 + joint_state = getJointState() + textmsg("The state of joint is "..table.concat(joint_state, ', ')) + -- 获取关节的伺服状态 + joint_servo_mode = getJointServoMode() + textmsg("The mode of joint servo is "..table.concat(joint_servo_mode, ', ')) + -- 获取机械臂关节角度 + -- 对应AUBOPE joint_positions =get_current_waypoint + joint_positions = getJointPositions() + textmsg("The positions of joint are "..table.concat(joint_positions, ', ')) + -- 获取机械臂关节速度 + joint_speeds = getJointSpeeds() + textmsg("The speeds of joint are "..table.concat(joint_speeds, ', ')) + -- 获取机械臂关节加速度 + joint_acc = getJointAccelerations() + textmsg("The accelerations of joint are "..table.concat(joint_acc, ', ')) + -- 获取机械臂关节力矩 + joint_torque_sensors = getJointTorqueSensors() + textmsg("The torque sensors of joint are "..table.concat(joint_torque_sensors, ', ')) + -- 获取底座力传感器读数 + base_force_sensor = getBaseForceSensor() + textmsg("The force sensors of base are "..table.concat(base_force_sensor, ', ')) + -- 获取TCP力传感器读数 + tcp_force_sensors = getTcpForceSensors() + textmsg("The force sensors of tcp are "..table.concat(tcp_force_sensors, ', ')) + -- 获取机械臂关节电流 + joint_currents = getJointCurrents() + textmsg("The currents of joint are "..table.concat(joint_currents, ', ')) + -- 获取机械臂关节电压 + joint_voltages = getJointVoltages() + textmsg("The voltages of joint are "..table.concat(joint_voltages, ', ')) + -- 获取机械臂关节温度 + joint_temperature = getJointTemperatures() + textmsg("The temperatures of joint are "..table.concat(joint_temperature, ', ')) + -- 获取关节全球唯一ID + joint_unique_id = getJointUniqueIds() + textmsg("The unique id of joint is "..table.concat(joint_unique_id, ', ')) + -- 获取关节固件版本 + joint_firmware_ver = getJointFirmwareVersions() + textmsg("The firmware version of joint is "..table.concat(joint_firmware_ver, ', ')) + -- 获取关节硬件版本 + joint_hardware_ver = getJointHardwareVersions() + textmsg("The hardware version of joint is "..table.concat(joint_hardware_ver, ', ')) + -- 获取MasterBoard全球唯一ID + master_board_unique_id = getMasterBoardUniqueId() + textmsg("The unique id of master board is "..master_board_unique_id) + -- 获取MasterBoard固件版本 + master_board_firmware_ver = getMasterBoardFirmwareVersion() + textmsg("The firmware version of master board is "..master_board_firmware_ver) + -- 获取MasterBoard硬件版本 + master_board_hardware_ver = getMasterBoardHardwareVersion() + textmsg("The hardware version of master board is "..master_board_hardware_ver) + -- 获取SlaveBoard全球唯一ID + slave_board_unique_id = getSlaveBoardUniqueId() + textmsg("The unique id of slave board is "..slave_board_unique_id) + -- 获取SlaveBoard固件版本 + slave_board_firmware_ver = getSlaveBoardFirmwareVersion() + textmsg("The firmware version of slave board is "..slave_board_firmware_ver) + -- 获取SlaveBoard硬件版本 + slave_board_hardware_ver = getSlaveBoardHardwareVersion() + textmsg("The hardware version of slave board is "..slave_board_hardware_ver) + -- 获取工具端全球唯一ID + tool_unique_id = getToolUniqueId() + textmsg("The unique id of tool is "..tool_unique_id) + -- 获取工具端固件版本 + tool_firmware_ver = getToolFirmwareVersion() + textmsg("The firmware version of tool is "..tool_firmware_ver) + -- 获取工具端硬件版本 + tool_hardware_ver = getToolHardwareVersion() + textmsg("The hardware version of tool is "..tool_hardware_ver) + -- 获取底座全球唯一ID + pedestal_unique_id = getPedestalUniqueId() + textmsg("The unique id of pedestal is "..pedestal_unique_id) + -- 获取底座固件版本 + pedestal_firmware_ver = getPedestalFirmwareVersion() + textmsg("The firmware version of pedestal is "..pedestal_firmware_ver) + -- 获取底座硬件版本 + pedestal_hardware_ver = getPedestalHardwareVersion() + textmsg("The hardware version of pedestal is "..pedestal_hardware_ver) + -- 获取机械臂关节目标位置角度 + joint_target_pos = getJointTargetPositions() + textmsg("The target positions of joint are "..table.concat(joint_target_pos, ', ')) + -- 获取机械臂关节目标速度 + joint_target_speed = getJointTargetSpeeds() + textmsg("The target speeds of joint are "..table.concat(joint_target_speed, ', ')) + -- 获取机械臂关节目标加速度 + joint_target_acc = getJointTargetAccelerations() + textmsg("The target accelerations of joint are "..table.concat(joint_target_acc, ', ')) + -- 获取机械臂关节目标力矩 + joint_target_torques = getJointTargetTorques() + textmsg("The target torques of joint are "..table.concat(joint_target_torques, ', ')) + -- 获取机械臂关节目标电流 + joint_target_currents = getJointTargetCurrents() + textmsg("The target currents of joint are "..table.concat(joint_target_currents, ', ')) + -- 获取控制柜温度 + control_box_temperature = getControlBoxTemperature() + textmsg("The temperature of control box is "..control_box_temperature) + -- 获取母线电压 + main_voltage = getMainVoltage() + textmsg("The main voltage is "..main_voltage) + -- 获取母线电流 + main_current = getMainCurrent() + textmsg("The main current is "..main_current) + -- 获取机器人电压 + robot_voltage = getRobotVoltage() + textmsg("The voltage of robot is "..robot_voltage) + -- 获取机器人电流 + robot_current = getRobotCurrent() + textmsg("The current of robot is "..robot_current) +end + +local plugin = { + PRIORITY = 1000, -- set the plugin priority, which determines plugin execution order + VERSION = "0.1", + VENDOR = "Aubo Robotics", +} + +function plugin:start_robot1() + print("start_robot1---") + -- 配置脚本环境 + local env = self.api:loadf(1) + setmetatable(env, { __index = _G }) + env = require'aubo.scheduler'.trackGlobals(env) or env + require('compat_env').setfenv(p_example_robot_state, env) + p_example_robot_state() +end + +function plugin:start(api) + -- + self.api = api + print("start---") + self:start_robot1() +end + +function plugin:robot_error_handler(name, err) + -- + print("An error hanppen to robot "..name) +end + +-- return our plugin object +return plugin diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_tcp_socket_client.lua b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_tcp_socket_client.lua new file mode 100644 index 00000000..fbe72cfd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/aubo_script/example_tcp_socket_client.lua @@ -0,0 +1,64 @@ +--[[ + 示例功能:通过TCP socket与远程服务器进行通信,发送和接收数据 + 主要步骤包括: + 1. 建立TCP连接 + 2. 发送数据 + 3. 循环接收数据并打印到aubo_control日志,直到接收到有效数据 + 4. 最后关闭连接 +]] +local app = {} +local aubo = require('aubo') +local sched = sched or aubo.sched +local math = aubo.math or math +local realtime = aubo.realtime or realtime + +local sleep = sched.sleep +local thread = sched.thread +local sync = sched.sync +local run = sched.run +local kill = sched.kill +local halt = sched.halt + +-- 示例函数:通过TCP socket进行发送和接收数据 +function example_send_receive_data() + local _ENV = sched.select_robot(1) + ip = "172.16.26.248" -- 目标服务器的IP地址 + port = 8000 -- 目标服务器的端口号 + client_name = "socket_0" -- 定义客户端名称 + rec_key = "camera" -- 接收数据的关键字 + + -- 关闭当前客户端的socket连接 + socketClose(client_name) + -- 打开新的socket连接 + socketOpen(ip, port, client_name) + -- 发送初始数据 "abcd" 到目标服务器 + socketSendLine("abcd", client_name) + sleep(1) + rec_str = "" -- 接收字符串 + + -- 循环等待直到接收到有效的数据 + while(rec_str == nil or rec_str == "") + do + -- 从目标服务器读取数据,并通过指定的关键字存储 + socketReadString(rec_key, client_name, "", "", false) + sleep(0.1) + -- 获取接收到的字符串 + rec_str = getString(rec_key, "") + textmsg("**********") + textmsg(rec_str) + textmsg("**********") + sleep(1) + -- 发送数据到目标服务器 + socketSendLine("dfgh", client_name) + end + -- 在数据接收完成后关闭socket连接 + socketClose(client_name) +end + +function app:start(api) + -- 调用发送接收数据的示例函数 + example_send_receive_data() +end + +return app + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/CMakeLists.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/CMakeLists.txt new file mode 100644 index 00000000..b291d7c3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/CMakeLists.txt @@ -0,0 +1,242 @@ +cmake_minimum_required(VERSION 3.16) +project(aubo_sdk_example) +set(CMAKE_CXX_STANDARD 17) + +add_compile_options("$<$:/utf-8>") +add_compile_options("$<$:/utf-8>") + +add_custom_target(aubo_sdk_example_create_symlink ALL + COMMAND ${CMAKE_COMMAND} -E create_symlink + ${CMAKE_CURRENT_SOURCE_DIR}/trajs/ ${EXECUTABLE_OUTPUT_PATH}/../trajs + COMMENT "Creating symbolic link") + +macro(IMPORT_SDK SDK) + if(DEFINED USING_SDK_SOURCE_CODE) + message(STATUS "Use aubo_sdk source code.") + set(SDK_LIB ${ARGV0}) + if("${ARGV1}" STREQUAL "robot_proxy") + set(PROXY_LIB ${ARGV1}) + endif() + else() + string(REGEX REPLACE "(.+)\\share/example.*" "\\1" AUBO_SDK_PATH ${PROJECT_SOURCE_DIR}) + message(STATUS "FOUND AUBO_SDK PATH ${AUBO_SDK_PATH}") + set(CMAKE_PREFIX_PATH ${AUBO_SDK_PATH}) + find_package(aubo_sdk REQUIRED aubo_sdk) + message(STATUS "Import aubo_sdk::${ARGV0}") + set(SDK_LIB aubo_sdk::${ARGV0}) + if("${ARGV1}" STREQUAL "robot_proxy") + message(STATUS "Import aubo_sdk::${ARGV1}") + set(PROXY_LIB aubo_sdk::${ARGV1}) + endif() + endif() +endmacro(IMPORT_SDK) + +find_package(Qt5 COMPONENTS Widgets) +if(Qt5_FOUND) + IMPORT_SDK(aubo_sdk robot_proxy) + add_subdirectory(robot_proxy EXCLUDE_FROM_ALL) +else() + IMPORT_SDK(aubo_sdk) +endif() + +add_subdirectory(aubope EXCLUDE_FROM_ALL) + +find_package(Threads REQUIRED) +if (NOT EXECUTABLE_OUTPUT_PATH) + set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/build/bin) +endif() + +# example_armplay如果以库的形式编译,需自己手动安装 nlohmann_json +if(DEFINED USING_SDK_SOURCE_CODE) +add_executable(example_armplay armplay.cpp) +target_link_libraries(example_armplay ${SDK_LIB} nlohmann_json::nlohmann_json Threads::Threads) +endif() + +add_executable(example_servoj example_servoj.cpp) +target_link_libraries(example_servoj ${SDK_LIB} Threads::Threads) + +add_executable(example_servoj2 example_servoj2.cpp) +target_link_libraries(example_servoj2 ${SDK_LIB} Threads::Threads) + +add_executable(example_servoj3 example_servoj3.cpp) +target_link_libraries(example_servoj3 ${SDK_LIB} Threads::Threads) + +add_executable(example_servo_cartesian example_servo_cartesian.cpp) +target_link_libraries(example_servo_cartesian ${SDK_LIB} Threads::Threads) + +add_executable(example_trackj example_trackj.cpp) +target_link_libraries(example_trackj ${SDK_LIB} Threads::Threads) + +add_executable(example_spline example_spline.cpp) +target_link_libraries(example_spline ${SDK_LIB} Threads::Threads) + +add_executable(example_record record.cpp) +target_link_libraries(example_record ${SDK_LIB} Threads::Threads) + +add_executable(example_offline_track offline_track.cpp) +target_link_libraries(example_offline_track ${SDK_LIB} Threads::Threads) + +add_executable(example_extract_data example_extract_data.cpp) +target_link_libraries(example_extract_data ${SDK_LIB} Threads::Threads) + +add_executable(example_io example_io.cpp) +target_link_libraries(example_io ${SDK_LIB} Threads::Threads) + +add_executable(example_movej example_movej.cpp) +target_link_libraries(example_movej ${SDK_LIB} Threads::Threads) + +add_executable(example_stable_ik example_stable_ik.cpp) +target_link_libraries(example_stable_ik ${SDK_LIB} Threads::Threads) + +add_executable(example_axis_move_joint example_axis_move_joint.cpp) +target_link_libraries(example_axis_move_joint ${SDK_LIB} Threads::Threads) + +add_executable(example_axis_offline example_axis_offline.cpp) +target_link_libraries(example_axis_offline ${SDK_LIB} Threads::Threads) + +add_executable(example_movel_i5 example_movel_i5.cpp) +target_link_libraries(example_movel_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_movel_weave_i5 example_movel_weave_i5.cpp) +target_link_libraries(example_movel_weave_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_movel_singularity_i5 example_movel_singularity_i5.cpp) +target_link_libraries(example_movel_singularity_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_rtde example_rtde.cpp) +target_link_libraries(example_rtde ${SDK_LIB} Threads::Threads) + +add_executable(example_startup example_startup.cpp) +target_link_libraries(example_startup ${SDK_LIB} Threads::Threads) + +add_executable(example_freedrive example_freedrive.cpp) +target_link_libraries(example_freedrive ${SDK_LIB} Threads::Threads) + +add_executable(example_multi_thread example_multi_thread.cpp) +target_link_libraries(example_multi_thread ${SDK_LIB} Threads::Threads) + +add_executable(example_register example_register.cpp) +target_link_libraries(example_register ${SDK_LIB} Threads::Threads) + +add_executable(example_math example_math.cpp) +target_link_libraries(example_math ${SDK_LIB} Threads::Threads) + +add_executable(example_set_log_handler example_set_log_handler.cpp) +target_link_libraries(example_set_log_handler ${SDK_LIB} Threads::Threads) + +add_executable(example_movec_i5 example_movec_i5.cpp) +target_link_libraries(example_movec_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_config example_config.cpp) +target_link_libraries(example_config ${SDK_LIB} Threads::Threads) + +add_executable(example_config2 example_config2.cpp) +target_link_libraries(example_config2 ${SDK_LIB} Threads::Threads) + +add_executable(example_state example_state.cpp) +target_link_libraries(example_state ${SDK_LIB} Threads::Threads) + +add_executable(example_script example_script.cpp) +target_link_libraries(example_script ${SDK_LIB} Threads::Threads) + +add_executable(example_timer example_timer.cpp) +target_link_libraries(example_timer ${SDK_LIB} Threads::Threads) + +add_executable(example_force_control example_force_control.cpp) +target_link_libraries(example_force_control ${SDK_LIB} Threads::Threads) + +add_executable(example_force_control2 example_force_control2.cpp) +target_link_libraries(example_force_control2 ${SDK_LIB} Threads::Threads) + +add_executable(example_force_control3 example_force_control3.cpp) +target_link_libraries(example_force_control3 ${SDK_LIB} Threads::Threads) + +add_executable(example_spline2 example_spline2.cpp) +target_link_libraries(example_spline2 ${SDK_LIB} Threads::Threads) + +add_executable(example_collision_recovery example_collision_recovery.cpp) +target_link_libraries(example_collision_recovery ${SDK_LIB} Threads::Threads) + +add_executable(example_move_speed example_move_speed.cpp) +target_link_libraries(example_move_speed ${SDK_LIB} Threads::Threads) + +add_executable(example_algorithm example_algorithm.cpp) +target_link_libraries(example_algorithm ${SDK_LIB} Threads::Threads) + +add_executable(example_payload_identify example_payload_identify.cpp) +target_link_libraries(example_payload_identify ${SDK_LIB} Threads::Threads) + +add_executable(example_payload_identify1 example_payload_identify1.cpp) +target_link_libraries(example_payload_identify1 ${SDK_LIB} Threads::Threads) + +add_executable(example_rtde_uds example_rtde_uds.cpp) +target_link_libraries(example_rtde_uds ${SDK_LIB} Threads::Threads) + +add_executable(example_script_uds example_script_uds.cpp) +target_link_libraries(example_script_uds ${SDK_LIB} Threads::Threads) + +add_executable(example_rtde_udp example_rtde_udp.cpp) +target_link_libraries(example_rtde_udp ${SDK_LIB} Threads::Threads) + +add_executable(example_script2 example_script2.cpp) +target_link_libraries(example_script2 ${SDK_LIB} Threads::Threads) + +add_executable(example_data_collect example_data_collect.cpp) +target_link_libraries(example_data_collect ${SDK_LIB} Threads::Threads) + +add_executable(example_fc_assemble example_fc_assemble.cpp) +target_link_libraries(example_fc_assemble ${SDK_LIB} Threads::Threads) + +add_executable(example_fc_assemble_usercoord example_fc_assemble_usercoord.cpp) +target_link_libraries(example_fc_assemble_usercoord ${SDK_LIB} Threads::Threads) + +add_executable(example_moveSpiral_i5 example_moveSpiral_i5.cpp) +target_link_libraries(example_moveSpiral_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_movel_offset example_movel_offset.cpp) +target_link_libraries(example_movel_offset ${SDK_LIB} Threads::Threads) + +add_executable(example_move_speed2 example_move_speed2.cpp) +target_link_libraries(example_move_speed2 ${SDK_LIB} Threads::Threads) + +add_executable(example_run_program example_run_program.cpp) +target_link_libraries(example_run_program ${SDK_LIB} Threads::Threads) + +add_executable(example_popup_dismiss example_popup_dismiss.cpp) +target_link_libraries(example_popup_dismiss ${SDK_LIB} Threads::Threads) + +add_executable(example_step_mode example_step_mode.cpp) +target_link_libraries(example_step_mode ${SDK_LIB} Threads::Threads) + +add_executable(example_pause_resume example_pause_resume.cpp) +target_link_libraries(example_pause_resume ${SDK_LIB} Threads::Threads) + +add_executable(example_offset_weave_i5 example_offset_weave_i5.cpp) +target_link_libraries(example_offset_weave_i5 ${SDK_LIB} Threads::Threads) + +add_executable(example_traj_valid example_traj_valid.cpp) +target_link_libraries(example_traj_valid ${SDK_LIB} Threads::Threads) + +add_executable(example_shutdown example_shutdown.cpp) +target_link_libraries(example_shutdown ${SDK_LIB} Threads::Threads) + +add_executable(example_research_control example_research_control.cpp) +target_link_libraries(example_research_control ${SDK_LIB} Threads::Threads) + +add_executable(example_research_control2 example_research_control2.cpp) +target_link_libraries(example_research_control2 ${SDK_LIB} Threads::Threads) + +add_executable(example_serial example_serial.cpp) +target_link_libraries(example_serial ${SDK_LIB} Threads::Threads) + +add_executable(example_gripper example_gripper.cpp) +target_link_libraries(example_gripper ${SDK_LIB} Threads::Threads) + +add_executable(example_joint_trajectory example_joint_trajectory.cpp) +target_link_libraries(example_joint_trajectory ${SDK_LIB} Threads::Threads) + +add_executable(example_move_axis example_move_axis.cpp) +target_link_libraries(example_move_axis ${SDK_LIB} Threads::Threads) + +add_executable(example_tcp_auto_calib example_tcp_auto_calib.cpp) +target_link_libraries(example_tcp_auto_calib ${SDK_LIB} Threads::Threads robot_math) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/armplay.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/armplay.cpp new file mode 100644 index 00000000..cb3453bb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/armplay.cpp @@ -0,0 +1,196 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include +#include "aubo_sdk/rpc.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +using namespace nlohmann; + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 判断缓存是否有效 +int isBufferValid(RobotInterfacePtr impl) +{ + // 调用pathBufferValid最大的重试次数 + int max_retry_count = 5; + // 调用pathBufferValid的次数 + int cnt = 0; + bool isValid = impl->getMotionControl()->pathBufferValid("rec"); + + while (!isValid) { + if (cnt++ > max_retry_count) { + return -1; + } + isValid = impl->getMotionControl()->pathBufferValid("rec"); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + return 0; +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + // 读取轨迹文件 + std::ifstream f("../trajs/aubo-joint-test-0929-10.armplay"); + + if (!f.is_open()) { + std::cerr << "无法打开轨迹文件. 请检查输入的文件路径是否正确." + << std::endl; + return 0; + } + + // 解析轨迹文件 + auto input = json::parse(f); + + std::vector> traj = input["jointlist"]; + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0" << std::endl; + return 0; + } else { + std::cout << " 加载的路点数量为: " << traj.size() << std::endl; + } + + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc->getRobotNames().front(); + + auto robot_interface = rpc->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(traj[0], 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启规划器运行 + rpc->getRuntimeMachine()->start(); + auto cur_plan_context = rpc->getRuntimeMachine()->getPlanContext(); + // 接口调用: 获取新的线程id + auto task_id = rpc->getRuntimeMachine()->newTask(); + rpc->getRuntimeMachine()->setPlanContext( + task_id, std::get<1>(cur_plan_context), std::get<2>(cur_plan_context)); + + // 接口调用: 清除缓存"rec" + robot_interface->getMotionControl()->pathBufferFree("rec"); + + // 接口调用: 新建一个缓存"rec",并指定轨迹运动类型和轨迹点数量 + robot_interface->getMotionControl()->pathBufferAlloc("rec", 2, traj_sz); + + // 将轨迹文件中的路点分组添加到路径缓存中, + // 以10个点为1组, + // 如果未添加的路点数量小于或者等于10时,则作为最后一组来添加 + size_t offset = 10; + auto it = traj.begin(); + while (true) { + std::cout << "添加轨迹路点 " << offset << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, it + 10 }); + it += 10; + if (offset + 10 >= traj_sz) { + std::cout << "添加轨迹路点 " << traj_sz << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, traj.end() }); + break; + } + + offset += 10; + } + + // 轨迹文件中的采样间隔 + double interval = input["interval"]; + // double interval = 0.02; + + // 接口调用: 计算、优化等耗时操作,来对轨迹进行优化 + robot_interface->getMotionControl()->pathBufferEval( + "rec", { 1, 1, 1, 1, 1, 1 }, { 1, 1, 1, 1, 1, 1 }, interval); + + // 判断路径缓存是否有效 + if (isBufferValid(robot_interface) == -1) { + std::cerr << "路径缓存无效,无法进行轨迹运动" << std::endl; + } else { + // 接口调用: 执行轨迹运动 + robot_interface->getMotionControl()->movePathBuffer("rec"); + + // 等待轨迹运动完成 + ret = waitArrival(rpc->getRobotInterface(robot_name)); + if (ret == -1) { + std::cerr << "轨迹运动失败" << std::endl; + } else { + std::cout << "轨迹运动结束" << std::endl; + } + } + + // 接口调用: 停止规划器运行 + rpc->getRuntimeMachine()->stop(); + // 接口调用: 删除线程 + rpc->getRuntimeMachine()->deleteTask(task_id); + + // 接口调用: RPC 退出登录 + rpc->logout(); + // 接口调用: RPC 断开连接 + rpc->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/CMakeLists.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/CMakeLists.txt new file mode 100644 index 00000000..ecf44edf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.16) + +set(CMAKE_CXX_STANDARD 17) + +file(GLOB _src "*.h" "*.cpp") + +add_executable(example_aubope ${_src}) + +set(THREADS_PREFER_PTHREAD_FLAG ON) + +find_package(Threads REQUIRED) + +target_link_libraries(example_aubope ${SDK_LIB} eigen Threads::Threads) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.cpp new file mode 100644 index 00000000..e8f9fc6a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.cpp @@ -0,0 +1,57 @@ +#include "example_0.h" + +#include "thread" +#include +#include +#include +#include +#include + +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_0::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** If the real robot arm is connected, the arm needs to be + * initialized. **/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + // Tool dynamics parameter + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + ret = robotService.rootServiceRobotStartup( + toolDynamicsParam /**Tool dynamics parameter**/, 6 /*Collision level*/, + true /*Whether to allow reading poses defaults to true*/, + true, /*Leave the default to true */ + 1000, /*Leave the default to 1000 */ + result); /*Robot arm initialization*/ + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "Robot arm initialization succeeded." << std::endl; + } else { + std::cerr << "Robot arm initialization failed." << std::endl; + } + + /** Simulation business **/ + std::cout << "Simulation business..." << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + + /** Robotic arm shutdown **/ + robotService.robotServiceRobotShutdown(); + + /** Interface call: logout **/ + robotService.robotServiceLogout(); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.h new file mode 100644 index 00000000..2a21d91c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_0.h @@ -0,0 +1,18 @@ +#ifndef EXAMPLE_0_H +#define EXAMPLE_0_H + +#include "AuboRobotMetaType.h" +#include "serviceinterface.h" + +class Example_0 +{ +public: + /** + * @brief demo + * + * Use the SDK to build a control engineering for the simplest robotic arm + */ + static void demo(); +}; + +#endif // EXAMPLE_0_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.cpp new file mode 100644 index 00000000..1acb0a49 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.cpp @@ -0,0 +1,141 @@ +#include "example_1.h" +#include "thread" +#include +#include +#include +#include +#include +#include "util.h" + +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_1::RealTimeJointStatusCallback( + const aubo_robot_namespace::JointStatus *jointStatus, int len, void *arg) +{ + (void)arg; + Util::Util::printJointStatus(jointStatus, len); +} + +void Example_1::RealTimeWaypointCallback( + const aubo_robot_namespace::wayPoint_S *wayPointPtr, void *arg) +{ + (void)arg; + aubo_robot_namespace::wayPoint_S waypoint = *wayPointPtr; + Util::printWaypoint(waypoint); +} + +void Example_1::RealTimeEndSpeedCallback(double speed, void *arg) +{ + (void)arg; + std::cout << "Real-time end speed:" << speed << std::endl; +} + +void Example_1::RealTimeEventInfoCallback( + const aubo_robot_namespace::RobotEventInfo *pEventInfo, void *arg) +{ + (void)arg; + Util::printEventInfo(*pEventInfo); +} + +void Example_1::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** If the real robot arm is connected, the arm needs to be initialized.**/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + // Tool dynamics parameter + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + ret = robotService.rootServiceRobotStartup( + toolDynamicsParam /**Tool dynamics parameter**/, 6 /*Collision level*/, + true /*Whether to allow reading poses defaults to true*/, + true, /*Leave the default to true */ + 1000, /*Leave the default to 1000 */ + result); /*Robot arm initialization*/ + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "Robot arm initialization succeeded." << std::endl; + } else { + std::cerr << "Robot arm initialization failed." << std::endl; + } + + robotService.robotServiceRegisterRealTimeRoadPointCallback( + Example_1::RealTimeWaypointCallback, NULL); + + // robotService.robotServiceRegisterRealTimeEndSpeedCallback( + // Example_1::RealTimeEndSpeedCallback, NULL); + + // robotService.robotServiceRegisterRobotEventInfoCallback( + // Example_1::RealTimeEventInfoCallback, NULL); + + // robotService.robotServiceRegisterRealTimeJointStatusCallback( + // Example_1::RealTimeJointStatusCallback, NULL); + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + + /** Robotic arm shutdown **/ + robotService.robotServiceRobotShutdown(); + + /** Interface call: logout **/ + robotService.robotServiceLogout(); +} + +void Example_1::getJointStatus() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** If the real robot arm is connected, the arm needs to be initialized.**/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + // Tool dynamics parameter + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + ret = robotService.rootServiceRobotStartup( + toolDynamicsParam /**Tool dynamics parameter**/, 6 /*Collision level*/, + true /*Whether to allow reading poses defaults to true*/, + true, /*Leave the default to true */ + 1000, /*Leave the default to 1000 */ + result); /*Robot arm initialization*/ + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "Robot arm initialization succeeded." << std::endl; + } else { + std::cerr << "Robot arm initialization failed." << std::endl; + } + + aubo_robot_namespace::JointStatus jointStatus[6]; + ret = robotService.robotServiceGetRobotJointStatus(jointStatus, 6); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "Get joint status successfully." << std::endl; + + Util::printJointStatus(jointStatus, 6); + + } else { + std::cerr << "Failed to get joint state." << std::endl; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(10000)); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.h new file mode 100644 index 00000000..8da60536 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_1.h @@ -0,0 +1,41 @@ +#ifndef EXAMPLE_1_H +#define EXAMPLE_1_H + +#include "AuboRobotMetaType.h" +#include "serviceinterface.h" + +/** + * @brief The Example_1 class + * + * About the acquisition of the relevant state of the robot arm + * + */ + +class Example_1 +{ +public: + // Used to get real-time waypoint callback function + static void RealTimeWaypointCallback( + const aubo_robot_namespace::wayPoint_S *wayPointPtr, void *arg); + + // Get real-time end speed callback function + static void RealTimeEndSpeedCallback(double speed, void *arg); + + // Get real-time robotic arm event callback function + static void RealTimeEventInfoCallback( + const aubo_robot_namespace::RobotEventInfo *pEventInfo, void *arg); + + static void RealTimeJointStatusCallback( + const aubo_robot_namespace::JointStatus *jointStatus, int len, + void *arg); + + /** + * @brief demo + * 回调函数的方式获取实时路点,末端速度,机械臂的事件 + */ + static void demo(); + + static void getJointStatus(); +}; + +#endif // EXAMPLE_1_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_3.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_3.cpp new file mode 100644 index 00000000..1969c8fe --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_3.cpp @@ -0,0 +1,367 @@ +#include "example_3.h" + +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 +void Example_3::demo() +{ + ServiceInterface robotservice; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotservice.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + std::cout << "Robot arm initialization....." << std::endl; + + /** If the real robot arm is connected, the arm needs to be initialized.**/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + /** Business block **/ + /** Interface call: Initialize motion properties ***/ + robotservice.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = + 50.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotservice.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 80.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 80.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 80.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 80.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 80.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = + 80.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotservice.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Robot arm movement to zero posture **/ + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + Util::initJointAngleArray(jointAngle, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + + std::cout << "Calling the motion function" << std::endl; + ret = robotservice.robotServiceJointMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to zero posture failure. ret:" << ret + << std::endl; + } + + for (int i = 0; i > -1; i++) { + // /** Interface call: set offset**/ + // aubo_robot_namespace::MoveRelative relativeMoveOnBase; + // relativeMoveOnBase.ena = true; + // relativeMoveOnBase.relativePosition[0] = 0; + // relativeMoveOnBase.relativePosition[1] = 0; + // relativeMoveOnBase.relativePosition[2] = 0.05*(i%4); //Unit: + // m + + // relativeMoveOnBase.relativeOri.w=1; + // relativeMoveOnBase.relativeOri.x=0; + // relativeMoveOnBase.relativeOri.y=0; + // relativeMoveOnBase.relativeOri.z=0; + // robotservice.robotServiceSetMoveRelativeParam(relativeMoveOnBase); + std::cout << "Movement to waypoint 1" << std::endl; + /** Waypoint 1 movement **/ + Util::initJointAngleArray(jointAngle, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI); + ret = robotservice.robotServiceJointMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 1 failed. ret:" << ret + << std::endl; + break; + } + std::cout << "Movement to waypoint 2" << std::endl; + /** Waypoint 2 movement **/ + Util::initJointAngleArray(jointAngle, 90.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI); + ret = robotservice.robotServiceJointMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 2 failed. ret:" << ret + << std::endl; + break; + } + aubo_robot_namespace::ForceSensorData data; + ret = robotservice.robotServerGetToolForceSensorData(data); + double tmp[6]; + tmp[0] = data.data[0]; + tmp[1] = data.data[1]; + tmp[2] = data.data[2]; + tmp[3] = data.data[3]; + tmp[4] = data.data[4]; + tmp[5] = data.data[5]; + std::cout << "forcesenser data : " << ret << std::endl; + + // for(int j = 0; j < 6; j++) { + // std::cout<<"data"< +#include +#include +#include +#include +#include + +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 +aubo_robot_namespace::wayPoint_S Example_4::s_currentWayPoing; + +void Example_4::RealTimeWaypointCallback( + const aubo_robot_namespace::wayPoint_S *wayPointPtr, void *arg) +{ + (void)arg; + s_currentWayPoing = *wayPointPtr; + // Util::printWaypoint(s_currentWayPoing); +} + +void Example_4::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + // Tool dynamics parameter + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = + 50.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = + 50.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Move to initial pose **/ + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + Util::initJointAngleArray( + jointAngle, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI); + ret = robotService.robotServiceJointMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to zero posture failure. ret:" << ret + << std::endl; + } + + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the end type motion + * Linear motion belongs to the end type motion***/ + double lineMoveMaxAcc; + lineMoveMaxAcc = 2; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(lineMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(lineMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion***/ + double lineMoveMaxVelc; + lineMoveMaxVelc = 2; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(lineMoveMaxVelc); + robotService.robotServiceGetGlobalMoveEndMaxAngleVelc(lineMoveMaxVelc); + + for (int i = 0; i > -1; i++) { + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + Util::initJointAngleArray(jointAngle, -1.63013, -0.727936, 0.558376, + -0.279454, 1.66626, -1.86472); + std::cout << "Moving to waypoint 0." << std::endl; + ret = robotService.robotServiceLineMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 0 failed. ret:" << ret + << std::endl; + } + + Util::initJointAngleArray(jointAngle, -2.42089, -0.529301, 0.867566, + -0.238376, 1.64145, -2.658); + std::cout << "Moving to waypoint 1." << std::endl; + robotService.robotServiceLineMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 1 failed. ret:" << ret + << std::endl; + } + + Util::initJointAngleArray(jointAngle, -0.515177, -0.402876, 1.09792, + 0.0179699, 1.60827, -0.748361); + std::cout << "Moving to waypoint 2." << std::endl; + robotService.robotServiceLineMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 2 failed. ret:" << ret + << std::endl; + } + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_4.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_4.h new file mode 100644 index 00000000..2ec256a0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_4.h @@ -0,0 +1,26 @@ +#ifndef EXAMPLE_4_H +#define EXAMPLE_4_H + +#include "AuboRobotMetaType.h" +#include "serviceinterface.h" + +class Example_4 +{ +public: + /** + * @brief demo + * + * Linear motion + */ + static void demo(); + + static void demo_relativeOri(); + static void example_MoveLtoPosition(); + static void example_quaternion_RPY_Conversion(); + static void RealTimeWaypointCallback( + const aubo_robot_namespace::wayPoint_S *wayPointPtr, void *arg); + + static aubo_robot_namespace::wayPoint_S s_currentWayPoing; +}; + +#endif // EXAMPLE_4_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.cpp new file mode 100644 index 00000000..fee0d1dc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.cpp @@ -0,0 +1,456 @@ +#include "example_5.h" +#include "example_1.h" + +#include +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_5::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** Business block **/ + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = + 50.0 / 180.0 * M_PI; ////The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = + 50.0 / 180.0 * M_PI; ////The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Robot arm movement to zero posture **/ + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(endMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion***/ + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(endMoveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxAngleVelc(endMoveMaxVelc); + + double jointAngle[aubo_robot_namespace::ARM_DOF]; + + for (int i = 0; i < 1; i++) { + // MoveP + robotService.robotServiceInitGlobalMoveProfile(); + + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(endMoveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxAngleVelc(endMoveMaxVelc); + + robotService.robotServiceClearGlobalWayPointVector(); + for (int i = 0; i < 1; i++) { + Util::initJointAngleArray(jointAngle, -1.63013, -0.727936, 0.558376, + -0.279454, 1.66626, -1.86472); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, -2.42089, -0.529301, 0.867566, + -0.238376, 1.64145, -2.658); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, -0.515177, -0.402876, 1.09792, + 0.0179699, 1.60827, -0.748361); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + } + robotService.robotServiceSetGlobalBlendRadius(0); // Blending radius + ret = robotService.robotServiceTrackMove( + aubo_robot_namespace::CARTESIAN_MOVEP, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "TrackMove failed. ret:" << ret << std::endl; + } + } + + /** Robotic arm shutdown**/ + robotService.robotServiceRobotShutdown(); + + /** Interface call: logout **/ + robotService.robotServiceLogout(); +} + +void Example_5::speedl_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** Business block **/ + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = + 50.0 / 180.0 * M_PI; ////The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = + 50.0 / 180.0 * M_PI; ////The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Robot arm movement to zero posture **/ + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(endMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion***/ + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(endMoveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxAngleVelc(endMoveMaxVelc); + + double jointAngle[aubo_robot_namespace::ARM_DOF]; + + std::cout << "Movement to waypoint 1" << std::endl; + /** Waypoint 1 movement **/ + Util::initJointAngleArray(jointAngle, 0, -15.0 / 180.0 * M_PI, + 100.0 / 180.0 * M_PI, 25.0 / 180.0 * M_PI, + 90.0 / 180.0 * M_PI, 0); + robotService.robotServiceJointMove(jointAngle, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 1 failed. ret:" << ret << std::endl; + } + /** robotServiceSetTeachCoordinateSystem**/ + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + userCoord; //用户坐标系 + aubo_robot_namespace::ToolInEndDesc toolInEndDesc; //工具参数 + toolInEndDesc.toolInEndPosition.x = 0; + toolInEndDesc.toolInEndPosition.y = 0; + toolInEndDesc.toolInEndPosition.z = 0; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0; + toolInEndDesc.toolInEndOrientation.y = 0; + toolInEndDesc.toolInEndOrientation.z = 0; + + userCoord.coordType = aubo_robot_namespace::WorldCoordinate; + userCoord.methods = aubo_robot_namespace:: + Origin_AnyPointOnPositiveXAxis_AnyPointOnPositiveYAxis; + // Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + double radian_tem[6] = { 0, + -15 / 180.0 * M_PI, + 100 / 180.0 * M_PI, + 25 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[0].jointPos, radian_tem, sizeof(radian_tem)); + + double radian_tem2[6] = { 9.578 / 180.0 * M_PI, -13.35 / 180.0 * M_PI, + 102.133 / 180.0 * M_PI, 25.484 / 180.0 * M_PI, + 90 / 180.0 * M_PI, 9.578 / 180.0 * M_PI }; + memcpy(userCoord.wayPointArray[1].jointPos, radian_tem2, + sizeof(radian_tem2)); + + double radian_tem3[6] = { 0, + 11.472 / 180.0 * M_PI, + 127.443 / 180.0 * M_PI, + 25.970 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[2].jointPos, radian_tem3, + sizeof(radian_tem3)); + userCoord.toolDesc = toolInEndDesc; + robotService.robotServiceSetTeachCoordinateSystem(userCoord); + /** Robotic 开始示教**/ + std::cout << "TeachStart" << std::endl; + robotService.robotServiceTeachStart(aubo_robot_namespace::MOV_X, true); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + // robotService.robotServiceRegisterRealTimeRoadPointCallback( + // Example_1::RealTimeWaypointCallback, NULL); + robotService.robotServiceRegisterRobotEventInfoCallback( + Example_1::RealTimeEventInfoCallback, NULL); + // robotService.robotServiceTeachStop(); + // std::cout << "TeachStop" << std::endl; +} +void Example_5::circle_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** Business block **/ + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 50.0 / 180.0 * M_PI; + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 50.0 / 180.0 * M_PI; + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Robot arm movement to zero posture **/ + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(endMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion***/ + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(endMoveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxAngleVelc(endMoveMaxVelc); + + double jointAngle[aubo_robot_namespace::ARM_DOF]; + + for (int i = 0; i < 1; i++) { + robotService.robotServiceClearGlobalWayPointVector(); + + Util::initJointAngleArray(jointAngle, 89.25 / 180.0 * M_PI, + -35.33 / 180.0 * M_PI, 69.75 / 180.0 * M_PI, + 15.17 / 180.0 * M_PI, 90 / 180.0 * M_PI, + -0.65 / 180.0 * M_PI); + robotService.robotServiceJointMove(jointAngle, false); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, 82 / 180.0 * M_PI, + -18.04 / 180.0 * M_PI, 95.96 / 180.0 * M_PI, + 24.09 / 180.0 * M_PI, 90.01 / 180.0 * M_PI, + -7.91 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, 106.34 / 180.0 * M_PI, + 16.45 / 180.0 * M_PI, 131.01 / 180.0 * M_PI, + 24.64 / 180.0 * M_PI, 89.97 / 180.0 * M_PI, + 16.43 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + + robotService.robotServiceSetGlobalBlendRadius(0); + ret = + robotService.robotServiceTrackMove(aubo_robot_namespace::ARC, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "TrackMove failed. ret:" << ret << std::endl; + } + } +} +void Example_5::spline_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + /** Business block **/ + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 50.0 / 180.0 * M_PI; + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 50.0 / 180.0 * M_PI; + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Interface call: Initialize motion properties ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Robot arm movement to zero posture **/ + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(endMoveMaxAcc); + robotService.robotServiceSetGlobalMoveEndMaxAngleAcc(endMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion***/ + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(endMoveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxAngleVelc(endMoveMaxVelc); + + double jointAngle[aubo_robot_namespace::ARM_DOF]; + + for (int i = 0; i < 1; i++) { + robotService.robotServiceClearGlobalWayPointVector(); + + Util::initJointAngleArray(jointAngle, 89.25 / 180.0 * M_PI, + -35.33 / 180.0 * M_PI, 69.75 / 180.0 * M_PI, + 15.17 / 180.0 * M_PI, 90 / 180.0 * M_PI, + -0.65 / 180.0 * M_PI); + robotService.robotServiceJointMove(jointAngle, true); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, 82 / 180.0 * M_PI, + -18.04 / 180.0 * M_PI, 95.96 / 180.0 * M_PI, + 24.09 / 180.0 * M_PI, 90.01 / 180.0 * M_PI, + -7.91 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, 106.34 / 180.0 * M_PI, + 16.45 / 180.0 * M_PI, 131.01 / 180.0 * M_PI, + 24.64 / 180.0 * M_PI, 89.97 / 180.0 * M_PI, + 16.43 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray(jointAngle, 107 / 180.0 * M_PI, + 21 / 180.0 * M_PI, 134 / 180.0 * M_PI, + 22 / 180.0 * M_PI, 90.01 / 180.0 * M_PI, + -18 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + Util::initJointAngleArray( + jointAngle, 90 / 180.0 * M_PI, 2 / 180.0 * M_PI, 134 / 180.0 * M_PI, + 2 / 180.0 * M_PI, 90.01 / 180.0 * M_PI, -18 / 180.0 * M_PI); + robotService.robotServiceAddGlobalWayPoint(jointAngle); + + robotService.robotServiceSetGlobalBlendRadius(0); + ret = robotService.robotServiceTrackMove( + aubo_robot_namespace::JOINT_GNUBSPLINEINTP, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "TrackMove failed. ret:" << ret << std::endl; + } + } +} + +void Example_5::OfflineTrack_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + /** 清除路点 **/ + ret = robotService.robotServiceOfflineTrackWaypointClear(); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "robotServiceOfflineTrackWaypointClear failed" + << std::endl; + return; + } + // char *path = get_current_dir_name(); //调用系统API获取当前路径 + /** 追加离线轨迹路点 **/ + ret = robotService.robotServiceOfflineTrackWaypointAppend( + "/home/aubo/git/aubo_sdk/example/c++/trajs/record6.offt"); + + /** 启动离线轨迹 **/ + if (ret == aubo_robot_namespace::ErrnoSucc) { + std::cout << "upload waypoint success." << std::endl; + + ret = robotService.robotServiceOfflineTrackMoveStartup(true); + + if (ret != aubo_robot_namespace::ErrnoSucc) { + std::cout << "failed." << std::endl; + } + std::this_thread::sleep_for(std::chrono::milliseconds(2)); + ret = robotService.robotServiceOfflineTrackMoveStop(); + } else { + std::cout << "upload waypoint failed." << std::endl; + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.h new file mode 100644 index 00000000..51c9f664 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_5.h @@ -0,0 +1,24 @@ +#ifndef EXAMPLE_5_H +#define EXAMPLE_5_H + +#include "AuboRobotMetaType.h" +#include "serviceinterface.h" + +class Example_5 +{ +public: + /** + * @brief demo + * + * Trajectory movement + * + */ + static void demo(); + + static void circle_demo(); + static void speedl_demo(); + static void spline_demo(); + static void OfflineTrack_demo(); +}; + +#endif // EXAMPLE_5_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.cpp new file mode 100644 index 00000000..0a15ec09 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.cpp @@ -0,0 +1,458 @@ +#include "example_6.h" + +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_6::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + aubo_robot_namespace::ToolInEndDesc + toolDesc; // Tools used to calibrate coordinates + toolDesc.toolInEndPosition.x = 0; + toolDesc.toolInEndPosition.y = 0; + toolDesc.toolInEndPosition.z = 0; + + toolDesc.toolInEndOrientation.w = 1; + toolDesc.toolInEndOrientation.x = 0; + toolDesc.toolInEndOrientation.y = 0; + toolDesc.toolInEndOrientation.z = 0; + + /** Set coordinate system parameters **/ + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + userCoord.coordType = aubo_robot_namespace::WorldCoordinate; + userCoord.methods = aubo_robot_namespace:: + Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + userCoord.toolDesc = toolDesc; + + // [0]={0,-0.12726,-1.32112,0.37693,-1.570796,0} + userCoord.wayPointArray[0].jointPos[0] = 0; + userCoord.wayPointArray[0].jointPos[1] = -0.12726; + userCoord.wayPointArray[0].jointPos[2] = -1.32112; + userCoord.wayPointArray[0].jointPos[3] = 0.37693; + userCoord.wayPointArray[0].jointPos[4] = -1.570796; + userCoord.wayPointArray[0].jointPos[5] = 0; + + // [1]={0,-0.26958,-1.43050,0.40987,-1.570796,0} + userCoord.wayPointArray[1].jointPos[0] = 0; + userCoord.wayPointArray[1].jointPos[1] = -0.26958; + userCoord.wayPointArray[1].jointPos[2] = -1.43050; + userCoord.wayPointArray[1].jointPos[3] = 0.40987; + userCoord.wayPointArray[1].jointPos[4] = -1.570796; + userCoord.wayPointArray[1].jointPos[5] = 0; + + // [2]={-0.13974,-0.30070,-1.451246,0.420254,-1.57079,-0.139750} + userCoord.wayPointArray[2].jointPos[0] = -0.13974; + userCoord.wayPointArray[2].jointPos[1] = -0.30070; + userCoord.wayPointArray[2].jointPos[2] = -1.451246; + userCoord.wayPointArray[2].jointPos[3] = 0.420254; + userCoord.wayPointArray[2].jointPos[4] = -1.570796; + userCoord.wayPointArray[2].jointPos[5] = -0.139750; + + /** Interface call: Initialize motion properties***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** Interface call: Set the maximum acceleration of the articulated motion + * ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = + 50.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** Interface call: set the maximum speed of articulated motion ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = + 50.0 / 180.0 * M_PI; // The interface requires the unit to be radians + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** Interface call: Set the maximum acceleration of the end type motion + * Linear motion belongs to the end type motion***/ + double lineMoveMaxAcc; + lineMoveMaxAcc = 2.0; // Units m/s2 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(lineMoveMaxAcc); + + /** Interface call: Set the maximum speed of the end type motion Linear + * motion belongs to the end type motion ***/ + double lineMoveMaxVelc; + lineMoveMaxVelc = 2.0; // Units m/s + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(lineMoveMaxVelc); + + /** The arm moves to the ready position **/ + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = 0; + jointAngle[1] = -0.12726; + jointAngle[2] = -1.32112; + jointAngle[3] = 0.37693; + jointAngle[4] = -1.570796; + jointAngle[5] = 0; + + if (robotService.robotServiceJointMove(jointAngle, true) != + aubo_robot_namespace::InterfaceCallSuccCode) //关节运动至准备点 + { + std::cerr << "Movement to preparation point failed. ret:" << ret + << std::endl; + } + + aubo_robot_namespace::Pos position; + aubo_robot_namespace::ToolInEndDesc toolDesc_1; // Tool during mvoe + toolDesc_1.toolInEndPosition.x = 0; + toolDesc_1.toolInEndPosition.y = 0; + toolDesc_1.toolInEndPosition.z = 0; + + toolDesc_1.toolInEndOrientation.w = 1; + toolDesc_1.toolInEndOrientation.x = 0; + toolDesc_1.toolInEndOrientation.y = 0; + toolDesc_1.toolInEndOrientation.z = 0; + + for (int i = 0; i < 10; i++) { + position.x = 0.0; + position.y = 0.0; + position.z = 0.0; + // Keep the current pose moving through the linear motion to move the + // tool end point (toolDesc_1) to the specified position of the + // specified coordinate system (userCoord). + if (robotService.robotMoveLineToTargetPosition(userCoord, position, + toolDesc_1, true) != + aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "robotMoveLineToTargetPosition. ret:" << ret + << std::endl; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(1)); + + position.x = (i % 3 == 0) ? 0.15 : 0.0; + position.y = (i % 3 == 1) ? 0.15 : 0.0; + ; + position.z = (i % 3 == 2) ? -0.15 : 0.0; + ; + // Keep the current pose moving through the linear motion to move the + // tool end point (toolDesc_1) to the specified position of the + // specified coordinate system (userCoord). + if (robotService.robotMoveLineToTargetPosition(userCoord, position, + toolDesc_1, true) != + aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "robotMoveLineToTargetPosition. ret:" << ret + << std::endl; + } + } + + /** Robotic arm shutdown**/ + robotService.robotServiceRobotShutdown(); + + /** Interface call: logout **/ + robotService.robotServiceLogout(); +} + +void Example_6::example_MoveLtoPosition() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** 接口调用: 登录 ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "登录成功." << std::endl; + } else { + std::cerr << "登录成功." << std::endl; + } + + /** 如果是连接真实机械臂,需要对机械臂进行初始化 **/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + //工具动力学参数 + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + ret = robotService.rootServiceRobotStartup( + toolDynamicsParam /**工具动力学参数**/, 6 /*碰撞等级*/, + true /*是否允许读取位姿 默认为true*/, true, /*保留默认为true */ + 1000, /*保留默认为1000 */ + result); /*机械臂初始化*/ + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "机械臂初始化成功." << std::endl; + } else { + std::cerr << "机械臂初始化失败." << std::endl; + } + /** 接口调用: 初始化运动属性 ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** 接口调用: 设置关节型运动的最大加速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 50.0 / 180.0 * M_PI; //接口要求单位是弧度 + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** 接口调用: 设置关节型运动的最大速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 50.0 / 180.0 * M_PI; //接口要求单位是弧度 + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** 机械臂运动到准备位置 **/ + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = 0.0 / 180.0 * M_PI; + jointAngle[1] = 0.0 / 180.0 * M_PI; + jointAngle[2] = 90.0 / 180.0 * M_PI; + jointAngle[3] = 0.0 / 180.0 * M_PI; + jointAngle[4] = 90.0 / 180.0 * M_PI; + jointAngle[5] = 0.0 / 180.0 * M_PI; + ret = robotService.robotServiceJointMove(jointAngle, true); + //关节运动至准备点 + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "运动0失败. ret:" << ret << std::endl; + } + + /** 接口调用: 初始化运动属性 ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** 接口调用: 设置末端型运动的最大加速度   直线运动属于末端型运动***/ + double lineMoveMaxAcc; + lineMoveMaxAcc = 2; //单位米每秒 + robotService.robotServiceSetGlobalMoveEndMaxLineAcc(lineMoveMaxAcc); + + /** 接口调用: 设置末端型运动的最大速度 直线运动属于末端型运动 ***/ + double lineMoveMaxVelc; + lineMoveMaxVelc = 2; //单位米每秒 + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(lineMoveMaxVelc); + + aubo_robot_namespace::wayPoint_S currentWaypoint; + ret = robotService.robotServiceGetCurrentWaypointInfo(currentWaypoint); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "获取当前路点信息失败. ret:" << ret << std::endl; + } + + /** 设置坐标系参数 **/ + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + userCoord.coordType = aubo_robot_namespace::BaseCoordinate; + + /** 设置工具端参数 **/ + aubo_robot_namespace::ToolInEndDesc toolDesc; + toolDesc.toolInEndPosition.x = 0; + toolDesc.toolInEndPosition.y = 0; + toolDesc.toolInEndPosition.z = 0; + + toolDesc.toolInEndOrientation.w = 1; + toolDesc.toolInEndOrientation.x = 0; + toolDesc.toolInEndOrientation.y = 0; + toolDesc.toolInEndOrientation.z = 0; + + for (int i = 0; i < 10; i++) { + aubo_robot_namespace::Pos position; + double offsetY = (i % 3 > 1) ? 0.0 : (0.18 * (i % 3)); + double offsetZ = (i % 3 > 1) ? 0.0 : (0.18); + position.x = currentWaypoint.cartPos.position.x; + position.y = currentWaypoint.cartPos.position.y + offsetY; + position.z = currentWaypoint.cartPos.position.z + offsetZ; + + //保持当前位姿通过直线运动的方式运动到目标位置 + ret = robotService.robotMoveLineToTargetPosition(userCoord, position, + toolDesc, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "robotMoveLineToTargetPosition. ret:" << ret + << std::endl; + } + } + + /** 机械臂Shutdown **/ + robotService.robotServiceRobotShutdown(); + + /** 接口调用: 退出登录 **/ + robotService.robotServiceLogout(); +} + +void Example_6::example_MoveJtoPosition() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** 接口调用: 登录 ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "登录成功." << std::endl; + } else { + std::cerr << "登录成功." << std::endl; + } + + /** 如果是连接真实机械臂,需要对机械臂进行初始化 **/ + aubo_robot_namespace::ROBOT_SERVICE_STATE result; + + //工具动力学参数 + aubo_robot_namespace::ToolDynamicsParam toolDynamicsParam; + memset(&toolDynamicsParam, 0, sizeof(toolDynamicsParam)); + + ret = robotService.rootServiceRobotStartup( + toolDynamicsParam /**工具动力学参数**/, 6 /*碰撞等级*/, + true /*是否允许读取位姿 默认为true*/, true, /*保留默认为true */ + 1000, /*保留默认为1000 */ + result); /*机械臂初始化*/ + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "机械臂初始化成功." << std::endl; + } else { + std::cerr << "机械臂初始化失败." << std::endl; + } + /** 接口调用: 初始化运动属性 ***/ + robotService.robotServiceInitGlobalMoveProfile(); + + /** 接口调用: 设置关节型运动的最大加速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 50.0 / 180.0 * M_PI; //接口要求单位是弧度 + robotService.robotServiceSetGlobalMoveJointMaxAcc(jointMaxAcc); + + /** 接口调用: 设置关节型运动的最大速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 50.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 50.0 / 180.0 * M_PI; //接口要求单位是弧度 + robotService.robotServiceSetGlobalMoveJointMaxVelc(jointMaxVelc); + + /** 机械臂运动到准备位置 **/ + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = 0.0 / 180.0 * M_PI; + jointAngle[1] = 0.0 / 180.0 * M_PI; + jointAngle[2] = 90.0 / 180.0 * M_PI; + jointAngle[3] = 0.0 / 180.0 * M_PI; + jointAngle[4] = 90.0 / 180.0 * M_PI; + jointAngle[5] = 0.0 / 180.0 * M_PI; + ret = robotService.robotServiceJointMove(jointAngle, true); + //关节运动至准备点 + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "运动0失败. ret:" << ret << std::endl; + } + + aubo_robot_namespace::wayPoint_S currentWaypoint; + ret = robotService.robotServiceGetCurrentWaypointInfo(currentWaypoint); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "获取当前路点信息失败. ret:" << ret << std::endl; + } + /** 设置坐标系参数 **/ + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + userCoord.coordType = aubo_robot_namespace::BaseCoordinate; + /** 设置工具端参数 **/ + aubo_robot_namespace::ToolInEndDesc toolDesc; + toolDesc.toolInEndPosition.x = 0; + toolDesc.toolInEndPosition.y = 0; + toolDesc.toolInEndPosition.z = 0; + + for (int i = 0; i < 10; i++) { + aubo_robot_namespace::Pos position; + double offsetY = (i % 3 > 1) ? 0.0 : (0.18 * (i % 3)); + double offsetZ = (i % 3 > 1) ? 0.0 : (0.18); + position.x = currentWaypoint.cartPos.position.x; + position.y = currentWaypoint.cartPos.position.y + offsetY; + position.z = currentWaypoint.cartPos.position.z + offsetZ; + + //保持当前位姿通过直线运动的方式运动到目标位置 + ret = robotService.robotMoveJointToTargetPosition(userCoord, position, + toolDesc, true); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "robotMoveLineToTargetPosition. ret:" << ret + << std::endl; + } + } + + /** 机械臂Shutdown **/ + robotService.robotServiceRobotShutdown(); + + /** 接口调用: 退出登录 **/ + robotService.robotServiceLogout(); +} + +void Example_6::Robot_Move() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + // set tool kinematics para + aubo_robot_namespace::ToolInEndDesc toolInEndDesc; + toolInEndDesc.toolInEndPosition.x = 0.03; + toolInEndDesc.toolInEndPosition.y = 0.05; + toolInEndDesc.toolInEndPosition.z = 0.08; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0.0; + toolInEndDesc.toolInEndOrientation.y = 0.0; + toolInEndDesc.toolInEndOrientation.z = 0.0; + + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + // userCoord.coordType = aubo_robot_namespace::EndCoordinate; + userCoord.coordType = aubo_robot_namespace::BaseCoordinate; + userCoord.toolDesc = toolInEndDesc; + + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "Movement to waypoint 2 failed. ret:" << ret << std::endl; + } + + double rotateAxisOnUserCoord[] = { 0, 0, 1 }; + aubo_robot_namespace::JointVelcAccParam moveMaxVelc; + for (int i = 0; i < 6; i++) { + moveMaxVelc.jointPara[i] = 175.0; + } + + robotService.robotServiceSetGlobalMoveJointMaxVelc(moveMaxVelc); + robotService.robotServiceSetGlobalMoveEndMaxLineVelc(1.8); + robotService.robotServiceSetToolKinematicsParam(toolInEndDesc); + + robotService.robotServiceRotateMove(userCoord, rotateAxisOnUserCoord, + 60 * M_PI / 180, true); + printf("============== %f \n", 90 * M_PI / 180); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.h new file mode 100644 index 00000000..c97cf132 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_6.h @@ -0,0 +1,20 @@ +#ifndef EXAMPLE_6_H +#define EXAMPLE_6_H + +class Example_6 +{ +public: + /** + * @brief demo + * + * Move to the target position in the form of joint or linear motion + */ + static void demo(); + + static void example_MoveLtoPosition(); + + static void example_MoveJtoPosition(); + static void Robot_Move(); +}; + +#endif // EXAMPLE_6_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.cpp new file mode 100644 index 00000000..32fe3004 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.cpp @@ -0,0 +1,376 @@ +#include "example_8.h" + +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +using namespace aubo_robot_namespace; + +void Example_8::demo() +{ + ServiceInterface robotService; + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + FK(robotService); + IK(robotService); +} + +void Example_8::FK(ServiceInterface &robotService) +{ + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + aubo_robot_namespace::wayPoint_S wayPoint; + + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + + Util::initJointAngleArray( + jointAngle, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI); + + ret = robotService.robotServiceRobotFk( + jointAngle, aubo_robot_namespace::ARM_DOF, wayPoint); + + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + Util::printWaypoint(wayPoint); + } else { + std::cerr << "Calling the positive solution failed" << std::endl; + } +} + +void Example_8::IK(ServiceInterface &robotService) +{ + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + aubo_robot_namespace::wayPoint_S wayPoint; + + double startPointJointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + + Util::initJointAngleArray(startPointJointAngle, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI); + + aubo_robot_namespace::Pos targetPosition; + targetPosition.x = -0.400; + targetPosition.y = -0.1215; + targetPosition.z = 0.5476; + + aubo_robot_namespace::Rpy rpy; + aubo_robot_namespace::Ori targetOri; + + rpy.rx = 180.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = -90.0 / 180.0 * M_PI; + + robotService.RPYToQuaternion(rpy, targetOri); + + // + ret = robotService.robotServiceRobotIk(startPointJointAngle, targetPosition, + targetOri, wayPoint); + + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + Util::printWaypoint(wayPoint); + } else { + std::cerr << "Calling the inverse solution failed" << std::endl; + } +} + +int Example_8::toolPositionOriIk() +{ + ServiceInterface robotService; + int ret = InterfaceCallSuccCode; + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + // 工具描述 单位米 弧度 + aubo_robot_namespace::ToolInEndDesc toolInEndDesc; + toolInEndDesc.toolInEndPosition.x = 0; + toolInEndDesc.toolInEndPosition.y = 0; + toolInEndDesc.toolInEndPosition.z = 0; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0; + toolInEndDesc.toolInEndOrientation.y = 0; + toolInEndDesc.toolInEndOrientation.z = 0; + + Pos toolEndPosition; + toolEndPosition.x = 0.4785; + toolEndPosition.y = -0.1215; + toolEndPosition.z = 0.4125; + Rpy toolEndRpy; + toolEndRpy.rx = 180 / 180 * M_PI; + toolEndRpy.ry = 0; + toolEndRpy.rz = 0; + Ori toolEndQuaternionOnBase; + robotService.RPYToQuaternion(toolEndRpy, toolEndQuaternionOnBase); + // 将用户提供的工具末端点转成法兰中心点 基转基去工具:将工具末端点 + // 转为 法兰中心点 + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + userCoord.coordType = aubo_robot_namespace::BaseCoordinate; + Pos flangePositionOnBase; + Ori flangeQuaternionOnBase; + if (robotService.userToBaseCoordinate( + toolEndPosition, toolEndQuaternionOnBase, userCoord, toolInEndDesc, + flangePositionOnBase, + flangeQuaternionOnBase) != InterfaceCallSuccCode) { + ret = ErrCode_UserToBaseConvertFailed; + } + // 参考位置 + double referPointJointAngle[6]; + referPointJointAngle[0] = -0.000172 / 180 * M_PI; + referPointJointAngle[1] = -7.291862 / 180 * M_PI; + referPointJointAngle[2] = -75.694718 / 180 * M_PI; + referPointJointAngle[3] = 21.596727 / 180 * M_PI; + referPointJointAngle[4] = -89.999982 / 180 * M_PI; + referPointJointAngle[5] = -0.000458 / 180 * M_PI; + wayPoint_S wayPoint; + // 逆解:根据法兰的位置和姿态 求解 关节角 + // 但是逆解一般为多个解,所以需要提供一个参考位置求解得一个最优解,一般参考位置指的是轨迹起点 + ret = robotService.robotServiceRobotIk(referPointJointAngle, + flangePositionOnBase, + flangeQuaternionOnBase, wayPoint); + if (ret != InterfaceCallSuccCode) { + ret = ErrCode_IkFailed; + return ret; + } else { + std::cout << "IK success\n"; + } + std::cout << "joint1:" << wayPoint.jointpos[0] * 180 / M_PI << std::endl; + std::cout << "joint2:" << wayPoint.jointpos[1] * 180 / M_PI << std::endl; + std::cout << "joint3:" << wayPoint.jointpos[2] * 180 / M_PI << std::endl; + std::cout << "joint4:" << wayPoint.jointpos[3] * 180 / M_PI << std::endl; + std::cout << "joint5:" << wayPoint.jointpos[4] * 180 / M_PI << std::endl; + std::cout << "joint6:" << wayPoint.jointpos[5] * 180 / M_PI << std::endl; + ret = robotService.robotServiceJointMove(wayPoint.jointpos, true); + return ret; +} + +int Example_8::baseToUserCoordinate() +{ + ServiceInterface robotService; + int ret = InterfaceCallSuccCode; + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + using namespace aubo_robot_namespace; + aubo_robot_namespace::Pos + flangeCenterPositionOnBase; // 基于基座标系的法兰盘中心位置信息 + aubo_robot_namespace::Ori + flangeCenterOrientationOnBase; // 基于基座标系的姿态信息 + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + userCoord; // 用户坐标系 + aubo_robot_namespace::ToolInEndDesc toolInEndDesc; // 工具参数 + aubo_robot_namespace::Pos + toolEndPositionOnUserCoord; // 基于用户座标系的工具末端位置信息 + aubo_robot_namespace::Ori + toolEndOrientationOnUserCoord; // 基于用户座标系的工具末端姿态信息 + + flangeCenterPositionOnBase.x = 0.548870; + flangeCenterPositionOnBase.y = -0.1215; + flangeCenterPositionOnBase.z = 0.26319; + + aubo_robot_namespace::Rpy rpy; + + rpy.rx = 180.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = 89.9996 / 180.0 * M_PI; + + robotService.RPYToQuaternion(rpy, flangeCenterOrientationOnBase); + + toolInEndDesc.toolInEndPosition.x = 0; + toolInEndDesc.toolInEndPosition.y = 0; + toolInEndDesc.toolInEndPosition.z = 0; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0; + toolInEndDesc.toolInEndOrientation.y = 0; + toolInEndDesc.toolInEndOrientation.z = 0; + + userCoord.coordType = WorldCoordinate; + userCoord.methods = aubo_robot_namespace:: + Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + double radian_tem[6] = { 0, + -15 / 180.0 * M_PI, + 100 / 180.0 * M_PI, + 25 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[0].jointPos, radian_tem, sizeof(radian_tem)); + + double radian_tem2[6] = { 9.578 / 180.0 * M_PI, -13.35 / 180.0 * M_PI, + 102.133 / 180.0 * M_PI, 25.484 / 180.0 * M_PI, + 90 / 180.0 * M_PI, 9.578 / 180.0 * M_PI }; + memcpy(userCoord.wayPointArray[1].jointPos, radian_tem2, + sizeof(radian_tem2)); + + double radian_tem3[6] = { 0, + 11.472 / 180.0 * M_PI, + 127.443 / 180.0 * M_PI, + 25.970 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[2].jointPos, radian_tem3, + sizeof(radian_tem3)); + userCoord.toolDesc = toolInEndDesc; + /** Interface call: baseToUserCoordinate ***/ + ret = robotService.baseToUserCoordinate( + flangeCenterPositionOnBase, flangeCenterOrientationOnBase, userCoord, + toolInEndDesc, toolEndPositionOnUserCoord, + toolEndOrientationOnUserCoord); + + std::cerr << toolEndPositionOnUserCoord.x << "," + << toolEndPositionOnUserCoord.y << "," + << toolEndPositionOnUserCoord.z << std::endl; + /** Interface call: userToBaseCoordinate ***/ + ret = robotService.userToBaseCoordinate( + toolEndPositionOnUserCoord, toolEndOrientationOnUserCoord, userCoord, + toolInEndDesc, flangeCenterPositionOnBase, + flangeCenterOrientationOnBase); + + std::cerr << flangeCenterPositionOnBase.x << "," + << flangeCenterPositionOnBase.y << "," + << flangeCenterPositionOnBase.z << std::endl; + + return ret; +} + +int Example_8::toolToEnd_demo() +{ + ServiceInterface robotService; + int ret = InterfaceCallSuccCode; + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + aubo_robot_namespace::Ori tcpOriInEnd; + tcpOriInEnd.w = 0.8535534; + tcpOriInEnd.x = -0.1464466; + tcpOriInEnd.y = 0.3535534; + tcpOriInEnd.z = 0.3535534; + + aubo_robot_namespace::Ori toolOri; + aubo_robot_namespace::Rpy rpy; + rpy.rx = 180.0 / 180.0 * M_PI; + rpy.ry = -45 / 180.0 * M_PI; + rpy.rz = -134.99 / 180.0 * M_PI; + robotService.RPYToQuaternion(rpy, toolOri); + + aubo_robot_namespace::Ori endOri; + robotService.toolOrientation2EndOrientation(tcpOriInEnd, toolOri, endOri); + std::cerr << endOri.w << "," << endOri.x << "," << endOri.y << "," + << endOri.z << std::endl; + return ret; +} +int Example_8::CoordinateCalibration_demo() +{ + ServiceInterface robotService; + int ret = InterfaceCallSuccCode; + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + using namespace aubo_robot_namespace; + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool + userCoord; // 用户坐标系 + aubo_robot_namespace::ToolInEndDesc toolInEndDesc; // 工具参数 + toolInEndDesc.toolInEndPosition.x = 0; + toolInEndDesc.toolInEndPosition.y = 0; + toolInEndDesc.toolInEndPosition.z = 0; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0; + toolInEndDesc.toolInEndOrientation.y = 0; + toolInEndDesc.toolInEndOrientation.z = 0; + + userCoord.coordType = WorldCoordinate; + userCoord.methods = aubo_robot_namespace:: + Origin_AnyPointOnPositiveXAxis_AnyPointOnPositiveYAxis; + // Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + double radian_tem[6] = { 0, + -15 / 180.0 * M_PI, + 100 / 180.0 * M_PI, + 25 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[0].jointPos, radian_tem, sizeof(radian_tem)); + + double radian_tem2[6] = { 9.578 / 180.0 * M_PI, -13.35 / 180.0 * M_PI, + 102.133 / 180.0 * M_PI, 25.484 / 180.0 * M_PI, + 90 / 180.0 * M_PI, 9.578 / 180.0 * M_PI }; + memcpy(userCoord.wayPointArray[1].jointPos, radian_tem2, + sizeof(radian_tem2)); + + double radian_tem3[6] = { 0, + 11.472 / 180.0 * M_PI, + 127.443 / 180.0 * M_PI, + 25.970 / 180.0 * M_PI, + 90 / 180.0 * M_PI, + 0 }; + memcpy(userCoord.wayPointArray[2].jointPos, radian_tem3, + sizeof(radian_tem3)); + userCoord.toolDesc = toolInEndDesc; + double bInWPos[3], bInWOri[9], wInBPos[3]; + ret = robotService.robotServiceCheckUserCoordinate(userCoord); + if (ret) { + std::cerr << "Unable to calibrate a coordinate system" << std::endl; + return ret; + } + ret = robotService.robotServiceUserCoordinateCalibration(userCoord, bInWPos, + bInWOri, wInBPos); + std::cerr << bInWPos[0] << "," << bInWPos[1] << "," << bInWPos[2] + << std::endl; + for (int i = 0; i < 3; i++) // 行 + { + for (int j = 0; j < 3; j++) // 列 + { + std::cerr << bInWOri[i * 3 + j] << ","; + } + std::cerr << std::endl; + } + std::cerr << wInBPos[0] << " " << wInBPos[1] << " " << wInBPos[2] + << std::endl; + Ori result; + ret = robotService.robotServiceOriMatrixToQuaternion(bInWOri, result); + std::cerr << result.w << "," << result.x << "," << result.y << "," + << result.z << std::endl; + return ret; +} + +int Example_8::FK_IK() +{ + ServiceInterface robotService; + int ret = InterfaceCallSuccCode; + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + aubo_robot_namespace::wayPoint_S wayPoint; + + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + + Util::initJointAngleArray( + jointAngle, 0.0 / 180.0 * M_PI, -15 / 180.0 * M_PI, 100 / 180.0 * M_PI, + 25 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI); + ret = robotService.robotServiceRobotFk( + jointAngle, aubo_robot_namespace::ARM_DOF, wayPoint); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + Util::printWaypoint(wayPoint); + } else { + std::cerr << "Calling the positive solution failed" << std::endl; + } + aubo_robot_namespace::wayPoint_S wayPoint1; + + robotService.robotServiceRobotIk(jointAngle, wayPoint.cartPos.position, + wayPoint.orientation, wayPoint1); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + Util::printWaypoint(wayPoint1); + } else { + std::cerr << "Calling the positive solution failed" << std::endl; + } + return ret; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.h new file mode 100644 index 00000000..950930d6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_8.h @@ -0,0 +1,29 @@ +#ifndef EXAMPLE_8_H +#define EXAMPLE_8_H + +#include "AuboRobotMetaType.h" +#include "serviceinterface.h" +class Example_8 +{ +public: + /** + * @brief demo + * + * Positive and negative solution interface + */ + static void demo(); + + static void FK(ServiceInterface &robotService); + + static void IK(ServiceInterface &robotService); + + static int toolPositionOriIk(); + static int baseToUserCoordinate(); + + static int toolToEnd_demo(); + static int CoordinateCalibration_demo(); + + static int FK_IK(); +}; + +#endif // EXAMPLE_8_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.cpp new file mode 100644 index 00000000..f71c2a61 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.cpp @@ -0,0 +1,159 @@ +#include "example_9.h" + +#include +#include +#include +#include +#include +#include + +#include + +#include "AuboRobotMetaType.h" //Robot arm metadata type +#include "serviceinterface.h" //Robot arm interface + +//#define SERVER_HOST "192.168.1.100" +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_9::demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + // Get digital IO status + double value; + robotService.robotServiceGetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserDI, "U_DI_01", value); + std::cout << "U_DI_01 status:" << value << std::endl; + + std::vector ioType; + std::vector statusVector; + + ioType.push_back(aubo_robot_namespace::RobotBoardUserAI); + robotService.robotServiceGetBoardIOStatus(ioType, statusVector); + + for (int i = 0; i < statusVector.size(); i++) { + std::cout << statusVector[i].ioName << " " << statusVector[i].ioValue + << std::endl; + } + + // Get the analog IO status + robotService.robotServiceGetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserAI, "VI0", value); + std::cerr << "---------VI0 status:" << value << std::endl; + + // Set the analog IO status + ret = robotService.robotServiceSetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserDO, "U_DO_02", 0); + ret = robotService.robotServiceSetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserAO, "VO1", 2); + std::cerr << "ret:" << ret << std::endl; + + /** Interface call: logout **/ + robotService.robotServiceLogout(); +} + +void Example_9::BoardiO_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + /** Interface call: robotServiceGetBoardIOStatus ***/ + std::vector ioType; + ioType.push_back(aubo_robot_namespace::RobotBoardControllerDI); + ioType.push_back(aubo_robot_namespace::RobotBoardControllerDO); + ioType.push_back(aubo_robot_namespace::RobotBoardUserDI); + ioType.push_back(aubo_robot_namespace::RobotBoardUserDO); + ioType.push_back(aubo_robot_namespace::RobotBoardUserAI); + ioType.push_back(aubo_robot_namespace::RobotBoardUserAO); + + std::vector configVector; + robotService.robotServiceGetBoardIOStatus(ioType, configVector); + + for (auto i = 0; i < int(configVector.size()); i++) { + std::cout << "ioType is " << configVector[i].ioType << ",ioName is " + << configVector[i].ioName << ", ioValue is" + << configVector[i].ioValue << ", ioAddr is" + << configVector[i].ioAddr << std::endl; + } + /** Interface call: robotServiceSetBoardIOStatus ***/ + robotService.robotServiceSetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserAO, "CO2", 1); + robotService.robotServiceSetBoardIOStatus( + aubo_robot_namespace::RobotBoardUserDO, "U_DO_10", 1); + /** Interface call: robotServiceIsOnlineMode ***/ + bool isOnlineMode, isOnlineMasterMode; + robotService.robotServiceIsOnlineMode(isOnlineMode); + robotService.robotServiceIsOnlineMasterMode(isOnlineMasterMode); + std::cerr << "isOnlineMode is " << isOnlineMode << std::endl; + std::cerr << "isOnlineMasterMode is " << isOnlineMasterMode << std::endl; +} + +void Example_9::TooliO_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + /** Interface call: robotServiceSetToolDOStatus ***/ + robotService.robotServiceSetToolDOStatus( + aubo_robot_namespace::TOOL_DIGITAL_IO_3, + aubo_robot_namespace::IO_STATUS_INVALID); + robotService.robotServiceSetToolDOStatus( + "TOOL_DIGITAL_IO_1", aubo_robot_namespace::IO_STATUS_VALID); + + /** Interface call: robotServiceGetAllToolAIStatus ***/ + std::vector Vector; + robotService.robotServiceGetAllToolAIStatus(Vector); + robotService.robotServiceGetAllToolDigitalIOStatus(Vector); + for (auto i = 0; i < int(Vector.size()); i++) { + std::cout << "ioName is " << Vector[i].ioName << "ioType is " + << Vector[i].ioType << "ioValue is" << Vector[i].ioValue + << std::endl; + } +} +void Example_9::SafetyConfig_demo() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin(SERVER_HOST, SERVER_PORT, "aubo", + "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + aubo_robot_namespace::RobotSafetyConfig safetyConfig; + ret = robotService.robotServiceSetRobotSafetyConfig(safetyConfig); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.h new file mode 100644 index 00000000..35b5e0cd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_9.h @@ -0,0 +1,25 @@ +#ifndef EXAMPLE_9_H +#define EXAMPLE_9_H + +/** + * @brief The Example_9 class + * + * + * About the use case of io + * + */ +class Example_9 +{ +public: + /** + * @brief demo + * + * IO Control + */ + static void demo(); + static void BoardiO_demo(); + static void TooliO_demo(); + static void SafetyConfig_demo(); +}; + +#endif // EXAMPLE_9_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.cpp new file mode 100644 index 00000000..6d56f7b0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.cpp @@ -0,0 +1,1550 @@ +#include "example_bhwk_c.h" +#include "Eigen/Dense" + +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +using namespace Eigen; + +void example_move_stop(RSHD rshd) +{ + double destJoint[6]{ + -2.86944, -1.3256, -1.42723, 2.79761, -0.886683, -0.714745, + }; + std::cout << "move to start pose " << std::endl; + rs_move_joint(rshd, destJoint, true); + + double zeroJoint[6]{ 0, 0, 0, 0, 0, 0 }; + rs_move_joint(rshd, zeroJoint, false); + std::cout << "move to zero " << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + std::cout << "after sleep " << std::endl; + int ret = rs_move_stop(rshd); + std::cout << "after stop " << std::endl; + + if (RS_SUCC == ret) { + std::cout << "move_stop succ" << std::endl; + } else { + std::cerr << "move_stop failed" << std::endl; + } +} +// 机械臂登录 +bool example_login(RSHD &rshd, const char *addr, int port) +{ + bool result = false; + + rshd = RS_FAILED; + + // 初始化接口库 + if (rs_initialize() == RS_SUCC) { + // 创建上下文 + if (rs_create_context(&rshd) == RS_SUCC) { + // 机械臂登录 + if (rs_login(rshd, addr, port) == RS_SUCC) { + result = true; + std::cout << "机械臂登录成功" << std::endl; + } else { + std::cerr << "机械臂登录失败" << std::endl; + } + } else { + std::cerr << "创建上下文失败" << std::endl; + } + } else { + // 初始化接口库失败 + std::cerr << "初始化接口库失败" << std::endl; + } + + return result; +} + +// 关闭机械臂(必须连接真实机械臂) +bool example_robotShutdown(RSHD rshd) +{ + bool result = false; + if (rs_robot_shutdown(rshd) == RS_SUCC) { + result = true; + std::cout << "机械臂断电成功" << std::endl; + } else { + std::cerr << "机械臂断电失败" << std::endl; + } + return result; +} + +// 设置机械臂实际速度 +void SetRobotActualSpeed(RSHD rshd, double speed) +{ + // speed代表速度比例 + if (speed < 0) + speed = 0.01; + if (speed > 1) + speed = 1; + + /** 初始化运动属性 ***/ + int ret = rs_init_global_move_profile(rshd); + + // 设置关节转角速度 + JointVelcAccParam max_velc; + for (int i = 0; i < ARM_DOF; i++) + max_velc.jointPara[i] = 10.0 / 180.0 * M_PI * speed; + + ret = rs_set_global_joint_maxvelc(rshd, &max_velc); + + // 设置TCP线性速度 + rs_set_global_end_max_line_acc(rshd, 10.0 / 180.0 * M_PI * speed); + rs_set_global_end_max_angle_acc(rshd, 10.0 / 180.0 * M_PI * speed); + rs_set_global_end_max_line_velc(rshd, 10.0 / 180.0 * M_PI * speed); + rs_set_global_end_max_angle_velc(rshd, 10.0 / 180.0 * M_PI * speed); +} + +// 绕基坐标轴旋转角度 +void RotateAroundBaseFrameByAngle(RSHD rshd, double angle, int Axial, + double speed, double acc) +{ + SetRobotActualSpeed(rshd, speed); + + CoordCalibrate UserCoord; + UserCoord.coordType = BaseCoordinate; + + Move_Rotate_Axis rotateAxis_prarm; + rotateAxis_prarm.rotateAxis[0] = 0; + rotateAxis_prarm.rotateAxis[1] = 0; + rotateAxis_prarm.rotateAxis[2] = 0; + + switch (Axial) { + case 1: + rotateAxis_prarm.rotateAxis[0] = 1; // X + break; + case 2: + rotateAxis_prarm.rotateAxis[1] = 1; // Y + break; + case 3: + rotateAxis_prarm.rotateAxis[2] = 1; // Z + break; + default: + break; + } + + double rotate_angle = angle / 180.0 * M_PI; + + int ret = + rs_move_rotate(rshd, &UserCoord, &rotateAxis_prarm, rotate_angle, true); + + if (ret == RS_SUCC) { + std::cout << "机械臂旋转成功!" << std::endl; + + } else { + std::cerr << "机械臂旋转失败!" << std::endl; + } +} + +// 绕TCP坐标系旋转角度 +void RotateAroundTCPFrameByAngle(RSHD rshd, double angle, int Axial, + double speed, double acc) +{ + SetRobotActualSpeed(rshd, speed); + + ToolInEndDesc m_tool; + double tcp[3]; + + m_tool.toolInEndPosition.x = 0.177341; + m_tool.toolInEndPosition.y = 0.002327; + m_tool.toolInEndPosition.z = 0.146822; + + m_tool.toolInEndOrientation.w = 1; + m_tool.toolInEndOrientation.x = 0; + m_tool.toolInEndOrientation.y = 0; + m_tool.toolInEndOrientation.z = 0; + + rs_set_tool_kinematics_param(rshd, &m_tool); + + CoordCalibrate UserCoord; + UserCoord.coordType = EndCoordinate; + UserCoord.toolDesc = m_tool; + + Move_Rotate_Axis rotateAxis_prarm; + rotateAxis_prarm.rotateAxis[0] = 0; + rotateAxis_prarm.rotateAxis[1] = 0; + rotateAxis_prarm.rotateAxis[2] = 0; + + switch (Axial) { + case 1: + rotateAxis_prarm.rotateAxis[0] = 1; // X + break; + case 2: + rotateAxis_prarm.rotateAxis[1] = 1; // Y + break; + case 3: + rotateAxis_prarm.rotateAxis[2] = 1; // Z + break; + default: + break; + } + + double rotate_angle = angle / 180.0 * M_PI; + + int ret = + rs_move_rotate(rshd, &UserCoord, &rotateAxis_prarm, rotate_angle, true); + + if (ret == RS_SUCC) { + std::cout << "机械臂旋转成功!" << std::endl; + + } else { + std::cerr << "机械臂旋转失败!" << std::endl; + } +} + +// 沿基坐标系位置偏移量 +int TransAlongBaseFrameByDistance(RSHD rshd, double distance, int Axial, + double speed, double acc) +{ + SetRobotActualSpeed(rshd, speed); + + ToolInEndDesc tool; + tool.toolInEndPosition.x = 0.177341; + tool.toolInEndPosition.y = 0.002327; + tool.toolInEndPosition.z = 0.146822; + tool.toolInEndOrientation.w = 1; + tool.toolInEndOrientation.x = 0; + tool.toolInEndOrientation.y = 0; + tool.toolInEndOrientation.z = 0; + // 修改 + rs_set_tool_kinematics_param(rshd, &tool); + + // 设置偏移量 + + aubo_robot_namespace::Rpy rpy; + aubo_robot_namespace::Ori targetOri; + + rpy.rx = 0.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = 0.0 / 180.0 * M_PI; + rs_rpy_to_quaternion(rshd, &rpy, &targetOri); + + aubo_robot_namespace::MoveRelative relative; + relative.ena = TRUE; + relative.relativePosition[0] = 0.0; + relative.relativePosition[1] = 0.0; + relative.relativePosition[2] = 0.0; + + MatrixXd TransMatrix(4, 4); + TransMatrix(0, 0) = 1; + TransMatrix(0, 1) = 0; + TransMatrix(0, 2) = 0; + TransMatrix(0, 3) = 0; + TransMatrix(1, 0) = 0; + TransMatrix(1, 1) = 1; + TransMatrix(1, 2) = 0; + TransMatrix(1, 3) = 0; + TransMatrix(2, 0) = 0; + TransMatrix(2, 1) = 0; + TransMatrix(2, 2) = 1; + TransMatrix(2, 3) = 0; + TransMatrix(3, 0) = 0; + TransMatrix(3, 1) = 0; + TransMatrix(3, 2) = 0; + TransMatrix(3, 3) = 1; + + switch (Axial) { + case 1: + relative.relativePosition[0] = distance / 1000.0; // X轴偏移 + TransMatrix(0, 3) = distance / 1000.0; + break; + case 2: + relative.relativePosition[1] = distance / 1000.0; // Y轴偏移 + TransMatrix(1, 3) = distance / 1000.0; + break; + case 3: + relative.relativePosition[2] = distance / 1000.0; // X轴偏移 + TransMatrix(2, 3) = distance / 1000.0; + break; + default: + break; + } + + relative.relativeOri = targetOri; + + CoordCalibrate userCoord; + userCoord.coordType = BaseCoordinate; + + // 基于用户坐标系位置偏移 + + if (RS_SUCC == rs_set_relative_offset_on_base(rshd, &relative)) { + std::cout << "偏移运动成功!" << std::endl; + } else { + std::cerr << "偏移运动失败!" << std::endl; + } + + wayPoint_S m_wayPoint; + int ret = rs_get_current_waypoint(rshd, &m_wayPoint); + + Quaterniond ori(m_wayPoint.orientation.w, m_wayPoint.orientation.x, + m_wayPoint.orientation.y, m_wayPoint.orientation.z); + MatrixXd center_matrix = ori.toRotationMatrix(); + MatrixXd centerToBase(4, 4), TcpToBase(4, 4); + + for (int i = 0; i < 3; i++) + for (int j = 0; j < 3; j++) { + centerToBase(i, j) = center_matrix(i, j); + } + centerToBase(0, 3) = m_wayPoint.cartPos.position.x; + centerToBase(1, 3) = m_wayPoint.cartPos.position.y; + centerToBase(2, 3) = m_wayPoint.cartPos.position.z; + + centerToBase(3, 0) = 0; + centerToBase(3, 1) = 0; + centerToBase(3, 2) = 0; + centerToBase(3, 3) = 1; + + MatrixXd TCP(4, 4); + TCP(0, 0) = 1; + TCP(0, 1) = 0; + TCP(0, 2) = 0; + TCP(0, 3) = 0; + TCP(1, 0) = 0; + TCP(1, 1) = 1; + TCP(1, 2) = 0; + TCP(1, 3) = 0; + TCP(2, 0) = 0; + TCP(2, 1) = 0; + TCP(2, 2) = 1; + TCP(2, 3) = 0; + TCP(3, 0) = 0; + TCP(3, 1) = 0; + TCP(3, 2) = 0; + TCP(3, 3) = 1; + + TcpToBase = TransMatrix * centerToBase * TCP; + + std::cout << "目标位置笛卡尔坐标值:" << TcpToBase(0, 3) << " " + << TcpToBase(1, 3) << " " << TcpToBase(2, 3) << "\n"; + + ret = rs_move_line(rshd, m_wayPoint.jointpos /*, false*/); + + wayPoint_S m_wayPoint1; + int ret1 = rs_get_current_waypoint(rshd, &m_wayPoint1); + + // 由于现在 rs_get_current_waypoint 获取的是TCP在基坐标系下的路点 + // 所以不需要做转换了,便将以下代码注释掉 + // Pos tool_end_pos_onbase; + // Ori tool_end_ori_onbase; + // ret = rs_base_to_base_additional_tool( + // rshd, &(m_wayPoint1.cartPos.position), &(m_wayPoint1.orientation), + // &tool, &tool_end_pos_onbase, &tool_end_ori_onbase); + + // std::cout << "偏移后法兰笛卡尔坐标值:" << tool_end_pos_onbase.x << " + // " + // << tool_end_pos_onbase.y << " " << tool_end_pos_onbase.z << + // "\n"; + + std::cout << "偏移后法兰笛卡尔坐标值:" << m_wayPoint1.cartPos.position.x + << " " << m_wayPoint1.cartPos.position.y << " " + << m_wayPoint1.cartPos.position.z << "\n"; + + if (ret == RS_SUCC) + return RS_SUCC; +} + +// 沿TCP坐标系位置偏移量 +int TransAlongTCPFrameByDistance(RSHD rshd, double distance, int Axial, + double speed, double acc) +{ + SetRobotActualSpeed(rshd, speed); + + ToolInEndDesc tool; + tool.toolInEndPosition.x = 0.17734; + tool.toolInEndPosition.y = 0.00233; + tool.toolInEndPosition.z = 0.14682; + tool.toolInEndOrientation.w = 1; + tool.toolInEndOrientation.x = 0; + tool.toolInEndOrientation.y = 0; + tool.toolInEndOrientation.z = 0; + + rs_set_tool_kinematics_param(rshd, &tool); + + aubo_robot_namespace::Rpy rpy; + aubo_robot_namespace::Ori targetOri; + + rpy.rx = 0.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = 0.0 / 180.0 * M_PI; + rs_rpy_to_quaternion(rshd, &rpy, &targetOri); + + aubo_robot_namespace::MoveRelative relative; + relative.ena = TRUE; + relative.relativePosition[0] = 0.0; + relative.relativePosition[1] = 0.0; + relative.relativePosition[2] = 0.0; + + MatrixXd TransMatrix(4, 4); + TransMatrix(0, 0) = 1; + TransMatrix(0, 1) = 0; + TransMatrix(0, 2) = 0; + TransMatrix(0, 3) = 0; + TransMatrix(1, 0) = 0; + TransMatrix(1, 1) = 1; + TransMatrix(1, 2) = 0; + TransMatrix(1, 3) = 0; + TransMatrix(2, 0) = 0; + TransMatrix(2, 1) = 0; + TransMatrix(2, 2) = 1; + TransMatrix(2, 3) = 0; + TransMatrix(3, 0) = 0; + TransMatrix(3, 1) = 0; + TransMatrix(3, 2) = 0; + TransMatrix(3, 3) = 1; + + MatrixXd TCP(4, 4); + TCP(0, 0) = 1; + TCP(0, 1) = 0; + TCP(0, 2) = 0; + TCP(0, 3) = 0; + TCP(1, 0) = 0; + TCP(1, 1) = 1; + TCP(1, 2) = 0; + TCP(1, 3) = 0; + TCP(2, 0) = 0; + TCP(2, 1) = 0; + TCP(2, 2) = 1; + TCP(2, 3) = 0; + TCP(3, 0) = 0; + TCP(3, 1) = 0; + TCP(3, 2) = 0; + TCP(3, 3) = 1; + + switch (Axial) { + case 1: + relative.relativePosition[0] = distance / 1000.0; // X轴偏移 + TransMatrix(0, 3) = distance / 1000.0; + break; + case 2: + relative.relativePosition[1] = distance / 1000.0; // Y轴偏移 + TransMatrix(1, 3) = distance / 1000.0; + break; + case 3: + relative.relativePosition[2] = distance / 1000.0; // X轴偏移 + TransMatrix(2, 3) = distance / 1000.0; + break; + default: + break; + } + + relative.relativeOri = targetOri; + + CoordCalibrate userCoord; + userCoord.coordType = EndCoordinate; + userCoord.toolDesc = tool; + + // 基于用户坐标系位置偏移 + if (RS_SUCC == + rs_set_relative_offset_on_user(rshd, &relative, &userCoord)) { + std::cout << "偏移运动成功!" << std::endl; + } else { + std::cerr << "偏移运动失败!" << std::endl; + } + + // 获取当前路点 + wayPoint_S m_wayPoint; + int ret = rs_get_current_waypoint(rshd, &m_wayPoint); + + Quaterniond ori(m_wayPoint.orientation.w, m_wayPoint.orientation.x, + m_wayPoint.orientation.y, m_wayPoint.orientation.z); + MatrixXd center_matrix = ori.toRotationMatrix(); + MatrixXd centerToBase(4, 4), TcpToBase(4, 4); + + for (int i = 0; i < 3; i++) + for (int j = 0; j < 3; j++) { + centerToBase(i, j) = center_matrix(i, j); + } + centerToBase(0, 3) = m_wayPoint.cartPos.position.x; + centerToBase(1, 3) = m_wayPoint.cartPos.position.y; + centerToBase(2, 3) = m_wayPoint.cartPos.position.z; + + centerToBase(3, 0) = 0; + centerToBase(3, 1) = 0; + centerToBase(3, 2) = 0; + centerToBase(3, 3) = 1; + + TcpToBase = centerToBase * TCP * TransMatrix; + + std::cout << "目标位置笛卡尔坐标值:" << TcpToBase(0, 3) << " " + << TcpToBase(1, 3) << " " << TcpToBase(2, 3) << "\n"; + + ret = rs_move_line(rshd, m_wayPoint.jointpos /*, false*/); + + wayPoint_S m_wayPoint1; + int ret1 = rs_get_current_waypoint(rshd, &m_wayPoint1); + + // 由于现在 rs_get_current_waypoint 获取的是TCP在基坐标系下的路点 + // 所以不需要做转换了,便将以下代码注释掉 + // Pos tool_end_pos_onbase; + // Ori tool_end_ori_onbase; + // ret = rs_base_to_base_additional_tool( + // rshd, &(m_wayPoint1.cartPos.position), &(m_wayPoint1.orientation), + // &tool, &tool_end_pos_onbase, &tool_end_ori_onbase); + + // std::cout << "偏移后的笛卡尔坐标值:" << tool_end_pos_onbase.x << " " + // << tool_end_pos_onbase.y << " " << tool_end_pos_onbase.z << + // "\n"; + + std::cout << "偏移后法兰笛卡尔坐标值:" << m_wayPoint1.cartPos.position.x + << " " << m_wayPoint1.cartPos.position.y << " " + << m_wayPoint1.cartPos.position.z << "\n"; + + if (ret == RS_SUCC) + return RS_SUCC; +} + +// 打印路点 +void printRoadPoint(const aubo_robot_namespace::wayPoint_S *wayPoint) +{ + std::cout << "pos.x=" << wayPoint->cartPos.position.x << " "; + std::cout << "pos.y=" << wayPoint->cartPos.position.y << " "; + std::cout << "pos.z=" << wayPoint->cartPos.position.z << std::endl; + + std::cout << "ori.w=" << wayPoint->orientation.w << " "; + std::cout << "ori.x=" << wayPoint->orientation.x << " "; + std::cout << "ori.y=" << wayPoint->orientation.y << " "; + std::cout << "ori.z=" << wayPoint->orientation.z << std::endl; + + std::cout << "joint_1=" << wayPoint->jointpos[0] * 180.0 / M_PI << " "; + std::cout << "joint_2=" << wayPoint->jointpos[1] * 180.0 / M_PI << " "; + std::cout << "joint_3=" << wayPoint->jointpos[2] * 180.0 / M_PI << " "; + std::cout << "joint_4=" << wayPoint->jointpos[3] * 180.0 / M_PI << " "; + std::cout << "joint_5=" << wayPoint->jointpos[4] * 180.0 / M_PI << " "; + std::cout << "joint_6=" << wayPoint->jointpos[5] * 180.0 / M_PI + << std::endl; + std::cout << std::endl; +} + +// 实时路点信息回调 +void callback_RealTimeRoadPoint( + const aubo_robot_namespace::wayPoint_S *wayPoint, void *arg) +{ + printRoadPoint(wayPoint); +} + +// 实时事件信息回调 +void callback_RealTimeRobotEvent( + const aubo_robot_namespace::RobotEventInfo *eventInfo, void *arg) +{ + std::cout << "Event type:" << eventInfo->eventType + << " Event code:" << eventInfo->eventCode + << " Event content:" << eventInfo->eventContent << std::endl; +} + +// 实时末端速度回调 +void callback_RealTimeEndSpeed(double speed, void *arg) +{ + std::cout << "Real-time end speed:" << speed << std::endl; +} + +// 实时关节状态回调 +void callback_RealTimeJointStatus( + const aubo_robot_namespace::JointStatus *jointStatus, int len, void *arg) +{ + Util::Util::printJointStatus(jointStatus, len); +} + +// 轨迹运动 rs_move_track +// 示例1:圆运动 +void moveTrack1(RSHD rshd) +{ + // 初始化运动属性 + rs_init_global_move_profile(rshd); + + // 设置关节型运动的最大加速度 + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxacc(rshd, &jointMaxAcc); + + // 设置关节型运动的最大速度 + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxvelc(rshd, &jointMaxVelc); + + // 设置末端型运动的最大加速度 + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_acc(rshd, endMoveMaxAcc); + rs_set_global_end_max_angle_acc(rshd, endMoveMaxAcc); + + // 设置末端型运动的最大速度 + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_velc(rshd, endMoveMaxVelc); + rs_set_global_end_max_angle_velc(rshd, endMoveMaxVelc); + + // 准备点 + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = -0.000003; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + + // 关节运动到准备点 + int ret = rs_move_joint(rshd, jointAngle); + if (ret != RS_SUCC) { + std::cerr << "关节运动到准备点失败。 错误号: " << ret << std::endl; + } + + // 添加圆轨迹路点 + jointAngle[0] = -0.000003; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 0.200000; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570794; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 0.600000; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + // 开始轨迹运动 + ret = rs_move_track(rshd, CIRCLE); + if (RS_SUCC != ret) { + std::cerr << "圆轨迹运动失败。 错误号:" << ret << std::endl; + } else { + std::cout << "圆轨迹运动成功。" << std::endl; + } +} + +// 示例2:圆弧运动 +void moveTrack2(RSHD rshd) +{ + // 初始化运动属性 + rs_init_global_move_profile(rshd); + + // 设置关节型运动的最大加速度 + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxacc(rshd, &jointMaxAcc); + + // 设置关节型运动的最大速度 + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxvelc(rshd, &jointMaxVelc); + + // 设置末端型运动的最大加速度 + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_acc(rshd, endMoveMaxAcc); + rs_set_global_end_max_angle_acc(rshd, endMoveMaxAcc); + + // 设置末端型运动的最大速度 + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_velc(rshd, endMoveMaxVelc); + rs_set_global_end_max_angle_velc(rshd, endMoveMaxVelc); + + // 准备点 + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = -0.000003; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + + // 关节运动到准备点 + int ret = rs_move_joint(rshd, jointAngle); + if (ret != RS_SUCC) { + std::cerr << "关节运动到准备点失败。 错误号: " << ret << std::endl; + } + + // 添加圆弧轨迹路点 + jointAngle[0] = -0.000003; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 0.200000; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570794; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 0.600000; + jointAngle[1] = -0.127267; + jointAngle[2] = -1.321122; + jointAngle[3] = 0.376934; + jointAngle[4] = -1.570796; + jointAngle[5] = -0.000008; + rs_add_waypoint(rshd, jointAngle); + + // 开始轨迹运动 + ret = rs_move_track(rshd, ARC); + if (RS_SUCC != ret) { + std::cerr << "圆弧轨迹运动失败。 错误号:" << ret << std::endl; + } else { + std::cout << "圆弧轨迹运动成功。" << std::endl; + } +} + +// 示例3:MOVEP运动 +void moveTrack3(RSHD rshd) +{ + // 初始化运动属性 + rs_init_global_move_profile(rshd); + + // 设置关节型运动的最大加速度 + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxacc(rshd, &jointMaxAcc); + + // 设置关节型运动的最大速度 + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 30.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxvelc(rshd, &jointMaxVelc); + + // 设置末端型运动的最大加速度 + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_acc(rshd, endMoveMaxAcc); + rs_set_global_end_max_angle_acc(rshd, endMoveMaxAcc); + + // 设置末端型运动的最大速度 + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; // 单位米每秒 + rs_set_global_end_max_line_velc(rshd, endMoveMaxVelc); + rs_set_global_end_max_angle_velc(rshd, endMoveMaxVelc); + + // 准备点 + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + jointAngle[0] = 0; + jointAngle[1] = -14.58 / 180 * M_PI; + jointAngle[2] = 99.29 / 180 * M_PI; + jointAngle[3] = 23.87 / 180 * M_PI; + jointAngle[4] = 90. / 180 * M_PI; + jointAngle[5] = 0; + + // 关节运动到准备点 + int ret = rs_move_joint(rshd, jointAngle); + if (ret != RS_SUCC) { + std::cerr << "关节运动到准备点失败。 错误号: " << ret << std::endl; + } else { + std::cout << "关节运动到准备点成功。" << std::endl; + } + + for (int i = 0; i < 10; i++) { + // 添加MOVEP轨迹路点 + jointAngle[0] = 0; + jointAngle[1] = -14.58 / 180 * M_PI; + jointAngle[2] = 99.29 / 180 * M_PI; + jointAngle[3] = 23.87 / 180 * M_PI; + jointAngle[4] = 90. / 180 * M_PI; + jointAngle[5] = 0; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 0; + jointAngle[1] = -13.75 / 180 * M_PI; + jointAngle[2] = 57.02 / 180 * M_PI; + jointAngle[3] = -19.23 / 180 * M_PI; + jointAngle[4] = 89.99 / 180 * M_PI; + jointAngle[5] = 0; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 42.11 / 180 * M_PI; + jointAngle[1] = 2.63 / 180 * M_PI; + jointAngle[2] = 74.58 / 180 * M_PI; + jointAngle[3] = -17.81 / 180 * M_PI; + jointAngle[4] = 90.13 / 180 * M_PI; + jointAngle[5] = 42.32 / 180 * M_PI; + rs_add_waypoint(rshd, jointAngle); + + jointAngle[0] = 42.57 / 180 * M_PI; + jointAngle[1] = 4.46 / 180 * M_PI; + jointAngle[2] = 106.57 / 180 * M_PI; + jointAngle[3] = 12.35 / 180 * M_PI; + jointAngle[4] = 90.13 / 180 * M_PI; + jointAngle[5] = 42.63 / 180 * M_PI; + rs_add_waypoint(rshd, jointAngle); + } + + // 设置交融半径 + rs_set_blend_radius(rshd, 0.); + + // 开始轨迹运动 + ret = rs_move_track(rshd, CARTESIAN_MOVEP); + if (RS_SUCC != ret) { + std::cerr << "MOVEP轨迹运动失败。 错误号:" << ret << std::endl; + } else { + std::cout << "MOVEP轨迹运动成功。" << std::endl; + } +} + +// 测试问题1:测试DH补偿是否成功 +bool bhwk_test1(RSHD rshd) +{ + bool result = false; + + // 工具的动力学参数 + ToolDynamicsParam tool_dynamics; + // 负载质量,单位:kg + tool_dynamics.payload = 0; + // 负载重心的X坐标,单位:m + tool_dynamics.positionX = 0; + // 负载重心的Y坐标,单位:m + tool_dynamics.positionY = 0; + // 负载重心的Z坐标,单位:m + tool_dynamics.positionZ = 0; + // 工具惯量 + tool_dynamics.toolInertia = { 0 }; + // 机械臂碰撞等级 + uint8 colli_class = 6; + // 机械臂启动是否读取姿态(默认开启) + bool read_pos = true; + // 机械臂静态碰撞检测(默认开启) + bool static_colli_detect = true; + // 机械臂最大加速度(系统自动控制,默认为30000) + int board_maxacc = 30000; + // 机械臂服务启动状态 + ROBOT_SERVICE_STATE state = ROBOT_SERVICE_READY; + + if (rs_robot_startup(rshd, &tool_dynamics, colli_class, read_pos, + static_colli_detect, board_maxacc, + &state) == RS_SUCC) { + result = true; + std::cout << "机械臂上电成功! 机械臂状态:" << state << std::endl; + } else { + std::cerr << "机械臂上电失败!" << std::endl; + } + + wayPoint_S m_waypoint; + Rpy rpy; + int ret = rs_get_current_waypoint(rshd, &m_waypoint); + ret = rs_quaternion_to_rpy(rshd, &m_waypoint.orientation, &rpy); + + std::cout << "当前笛卡尔坐标值(单位:m):" << m_waypoint.cartPos.position.x + << " " << m_waypoint.cartPos.position.y << " " + << m_waypoint.cartPos.position.z << "\n"; + std::cout << "当前位置姿态(单位:rad):" << rpy.rx << " " << rpy.ry << " " + << rpy.rz << "\n"; + + return result; +} + +// 测试问题2:机械臂轴动 +bool bhwk_test2(RSHD rshd) +{ + SetRobotActualSpeed(rshd, 0.2); + bool result = false; + + // 该位置为机械臂的初始位置 + // double initPos[6] = { 49.27 / 180 * M_PI, 55.14 / 180 * M_PI, + // -87.87 / 180 * M_PI, 30.39 / 180 * M_PI, + // 44.63 / 180 * M_PI, -36.66 / 180 * M_PI }; + + double initPos[6] = { -0.211675, -0.325189, -1.466753, + 0.429232, -1.570794, -0.211680 }; + + /*double initPos[6] = { + 0.100000, + -0.147267, + -1.321122, + 0.376934, + -1.570794, + -0.000008 };*/ + + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + result = true; + std::cout << "机械臂轴动成功!" << std::endl; + } else { + std::cerr << "机械臂轴动失败!" << std::endl; + } + + return result; +} + +// 测试问题3:机械臂在工具坐标系下做旋转运动 +void bhwk_test3(RSHD rshd) +{ + SetRobotActualSpeed(rshd, 0.2); + bool result = false; + // 该位置为机械臂的初始位置 + double initPos[6] = { 49.354340 / 180 * M_PI, 55.404920 / 180 * M_PI, + -87.756768 / 180 * M_PI, 30.533112 / 180 * M_PI, + 45.547263 / 180 * M_PI, -36.195731 / 180 * M_PI }; + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + result = true; + std::cout << "轴动到初始位置成功!" << std::endl; + } else { + std::cerr << "轴动到初始位置失败!" << std::endl; + } + + char ch = 'l'; + double angle = 0; + int Axial = 0; + while (1) { + ch = getchar(); + + printf("请输入一个字符 :\n"); + printf(" 'X' 'Y' 'Z' 分别代表 x+ y+ z+ 。 \n"); + printf(" 'U' 'V' 'W' 分别代表 x- y- z- 。\n"); + printf(" 'Q' 代表退出。\n"); + + if (ch == 'Q') + break; + + switch (ch) { + case 'X': + angle = 30.0; + Axial = 1; + break; + case 'Y': + angle = 30.0; + Axial = 2; + break; + case 'Z': + angle = 30.0; + Axial = 3; + break; + case 'U': + angle = -30.0; + Axial = 1; + break; + case 'V': + angle = -30.0; + Axial = 2; + break; + case 'W': + angle = -30.0; + Axial = 3; + break; + default: + break; + } + if (ch == 'X' || ch == 'Y' || ch == 'Z' || ch == 'U' || ch == 'V' || + ch == 'W') { + RotateAroundTCPFrameByAngle(rshd, angle, Axial, 0.2, 0.2); + } + } +} + +// 测试问题4:机械臂在基坐标系下做旋转运动 +void bhwk_test4(RSHD rshd) +{ + SetRobotActualSpeed(rshd, 0.2); + bool result = false; + // 该位置为机械臂的初始位置 + double initPos[6] = { 49.354340 / 180 * M_PI, 55.404920 / 180 * M_PI, + -87.756768 / 180 * M_PI, 30.533112 / 180 * M_PI, + 45.547263 / 180 * M_PI, -36.195731 / 180 * M_PI }; + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + result = true; + std::cout << "轴动到初始位置成功!" << std::endl; + } else { + std::cerr << "轴动到初始位置失败!" << std::endl; + } + + char ch = 'l'; + double angle = 0; + int Axial = 0; + while (1) { + ch = getchar(); + + printf("请输入一个字符: \n"); + printf(" 'X' 'Y' 'Z' 代表 x+ y+ z+ \n"); + printf(" 'U' 'V' 'W' 代表 x- y- z- \n"); + printf(" 'Q' 代表退出 \n"); + + if (ch == 'Q') + break; + + switch (ch) { + case 'X': + angle = 30.0; + Axial = 1; + break; + case 'Y': + angle = 30.0; + Axial = 2; + break; + case 'Z': + angle = 30.0; + Axial = 3; + break; + case 'U': + angle = -30.0; + Axial = 1; + break; + case 'V': + angle = -30.0; + Axial = 2; + break; + case 'W': + angle = -30.0; + Axial = 3; + break; + default: + break; + } + if (ch == 'X' || ch == 'Y' || ch == 'Z' || ch == 'U' || ch == 'V' || + ch == 'W') { + RotateAroundBaseFrameByAngle(rshd, angle, Axial, 0.2, 0.2); + } + } +} + +// 测试问题5:机械臂在工具坐标系下做位置偏移运动 +void bhwk_test5(RSHD rshd) +{ + SetRobotActualSpeed(rshd, 0.2); + bool result = false; + // 该位置为机械臂的初始位置 + double initPos[6] = { 49.354340 / 180 * M_PI, 55.404920 / 180 * M_PI, + -87.756768 / 180 * M_PI, 30.533112 / 180 * M_PI, + 45.547263 / 180 * M_PI, -36.195731 / 180 * M_PI }; + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + result = true; + std::cout << "轴动到初始位置成功!" << std::endl; + } else { + std::cerr << "轴动到初始位置失败!" << std::endl; + } + + char ch = 'l'; + double distance = 0; + int Axial = 0; + while (1) { + ch = getchar(); + + printf("请输入一个字符: \n"); + printf(" 'X' 'Y' 'Z' 代表 x+ y+ z+。 \n"); + printf(" 'U' 'V' 'W' 代表 for x- y- z-。 \n"); + printf(" 'Q' 代表退出。 \n"); + + if (ch == 'Q') + break; + + switch (ch) { + case 'X': + distance = 30.0; + Axial = 1; + break; + case 'Y': + distance = 30.0; + Axial = 2; + break; + case 'Z': + distance = 30.0; + Axial = 3; + break; + case 'U': + distance = -30.0; + Axial = 1; + break; + case 'V': + distance = -30.0; + Axial = 2; + break; + case 'W': + distance = -30.0; + Axial = 3; + break; + default: + break; + } + if (ch == 'X' || ch == 'Y' || ch == 'Z' || ch == 'U' || ch == 'V' || + ch == 'W') { + TransAlongTCPFrameByDistance(rshd, distance, Axial, 0.2, 0.2); + } + } +} + +// 测试问题6:机械臂在基坐标系下做位置偏移运动 +void bhwk_test6(RSHD rshd) +{ + SetRobotActualSpeed(rshd, 0.2); + bool result = false; + // 该位置为机械臂的初始位置(提供6个关节角的关节信息(单位:弧度)) + double initPos[6] = { 49.354340 / 180 * M_PI, 55.404920 / 180 * M_PI, + -87.756768 / 180 * M_PI, 30.533112 / 180 * M_PI, + 45.547263 / 180 * M_PI, -36.195731 / 180 * M_PI }; + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + result = true; + std::cout << "轴动到初始位置成功!" << std::endl; + } else { + std::cerr << "轴动到初始位置失败!" << std::endl; + } + + char ch = 'l'; + double distance = 0; + int Axial = 0; + while (1) { + ch = getchar(); + + printf("请输入一个字符:\n"); + printf(" 'X' 'Y' 'Z' 代表 x+ y+ z+。 \n"); + printf(" 'U' 'V' 'W' 代表 for x- y- z-。 \n"); + printf(" 'Q' 代表退出。 \n"); + + if (ch == 'Q') + break; + + switch (ch) { + case 'X': + distance = 30.0; + Axial = 1; + break; + case 'Y': + distance = 30.0; + Axial = 2; + break; + case 'Z': + distance = 30.0; + Axial = 3; + break; + case 'U': + distance = -30.0; + Axial = 1; + break; + case 'V': + distance = -30.0; + Axial = 2; + break; + case 'W': + distance = -30.0; + Axial = 3; + break; + default: + break; + } + if (ch == 'X' || ch == 'Y' || ch == 'Z' || ch == 'U' || ch == 'V' || + ch == 'W') { + TransAlongBaseFrameByDistance(rshd, distance, Axial, 0.2, 0.2); + } + } +} + +// 测试问题7:测试机械臂正逆解的功能,八组逆解是否DH补偿 +void bhwk_test7(RSHD rshd) +{ + aubo_robot_namespace::wayPoint_S wayPoint; + + ik_solutions solutions; + + aubo_robot_namespace::Pos targetPosition = { -0.235867, -0.5557, 0.237866 }; + aubo_robot_namespace::Ori targetOri = { -0.193377, 0.471923, 0.86038, + -0.00755828 }; + + // 逆解 + double startPointJointAngle[aubo_robot_namespace::ARM_DOF] = { + 1.5632 / 180.0 * M_PI, -62.4792 / 180.0 * M_PI, + -140.7880 / 180.0 * M_PI, 100.1395 / 180.0 * M_PI, + 0.5601 / 180.0 * M_PI, -83.1491 / 180.0 * M_PI + }; + + if (RS_SUCC == rs_inverse_kin(rshd, startPointJointAngle, &targetPosition, + &targetOri, &wayPoint)) { + std::cout << "逆解成功!" << std::endl; + std::cout << "系统默认的最优逆解如下:" << std::endl; + printRoadPoint(&wayPoint); + } else { + std::cerr << "逆解失败!" << std::endl; + } + + if (RS_SUCC == rs_inverse_kin_closed_form(rshd, &targetPosition, &targetOri, + &solutions)) { + std::cout << "逆解的个数 = " << solutions.solution_count << std::endl; + for (int i = 0; i < solutions.solution_count; i++) { + std::cout << "第" << i + 1 << "组逆解" << std::endl; + printRoadPoint(&solutions.waypoint[i]); + } + } else { + std::cerr << "获取逆解集失败!" << std::endl; + } + + /** 接口调用: 初始化运动属性 ***/ + rs_init_global_move_profile(rshd); + + /** 接口调用: 设置关节型运动的最大加速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 10.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 10.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 10.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 10.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 10.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 10.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxacc(rshd, &jointMaxAcc); + + /** 接口调用: 设置关节型运动的最大速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 10.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 10.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 10.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 10.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 10.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 10.0 / 180.0 * M_PI; // 接口要求单位是弧度 + rs_set_global_joint_maxvelc(rshd, &jointMaxVelc); + + rs_move_joint(rshd, startPointJointAngle); + + double target_pos[6]; + for (int i = 0; i < 6; i++) { + target_pos[i] = solutions.waypoint[3].jointpos[i]; + } + rs_move_joint(rshd, target_pos); + + rs_get_current_waypoint(rshd, &wayPoint); + + std::cout << "系统第四组逆解值为:" << wayPoint.cartPos.position.x << " " + << wayPoint.cartPos.position.y << " " + << wayPoint.cartPos.position.z << "\n"; +} + +// 测试问题8:测试move_stop函数 +void bhwk_test8(RSHD rshd) +{ + int ret = rs_move_stop(rshd); + + if (RS_SUCC == ret) { + std::cout << "机械臂运动停止成功!" << std::endl; + } else { + std::cerr << "机械臂运动停止失败!" << std::endl; + } +} + +void startRealtimeRoadPointPush(RSHD rshd) +{ + // 允许实时路点信息推送 + rs_enable_push_realtime_roadpoint(rshd, true); + // 注册用于获取实时路点的回调函数 + // 注意:此接口为阻塞式 + if (RS_SUCC != rs_setcallback_realtime_roadpoint( + rshd, callback_RealTimeRoadPoint, NULL)) { + std::cerr << "获取实时路点信息失败!" << std::endl; + } +} + +void stopRealtimeRoadPointPush(RSHD rshd) +{ + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 取消推送实时信息 + rs_enable_push_realtime_roadpoint(rshd, false); + // 取消推送实时信息 + // rs_setcallback_realtime_roadpoint(rshd, NULL, NULL); + std::cout << "停止实时路点信息推送" << std::endl; + + // 等待 3 秒,观察是否成功停止推送 + std::this_thread::sleep_for(std::chrono::seconds(3)); + + // 恢复推送实时信息 + std::cout << "恢复推送实时信息" << std::endl; + rs_enable_push_realtime_roadpoint(rshd, true); + std::this_thread::sleep_for(std::chrono::seconds(10)); +} + +// 测试问题9:测试实时路点信息回调函数 +void bhwk_test9(RSHD rshd) +{ + std::thread thread1(startRealtimeRoadPointPush, rshd); + std::thread thread2(stopRealtimeRoadPointPush, rshd); + + thread1.join(); + thread2.join(); +} + +// 测试问题10:检测机械臂电源状态 +void bhwk_test10(RSHD rshd) +{ + int i = 0; + while (1) { + if (i == 5) { + if (rs_robot_shutdown(rshd) == RS_SUCC) { + std::cout << "机械臂断电成功" << std::endl; + } else { + std::cerr << "机械臂断电失败" << std::endl; + } + } + RobotDiagnosis info; + int ret = rs_get_diagnosis_info(rshd, &info); + + if (info.armPowerStatus) { + std::cout << "机械臂已上电!" << std::endl; + } else { + std::cout << "机械臂已下电!" << std::endl; + } + std::this_thread::sleep_for(std::chrono::milliseconds(1)); + + i++; + } +} + +// 测试问题11:原路径返回退出奇异区? +bool bhwk_test11(RSHD rshd) +{ + bool result = false; + + // //首先移动到初始位置 + // bhwk_test2(rshd); + + // //获取当前路点信息 + // aubo_robot_namespace::wayPoint_S wayPoint; + + // //逆解位置信息 + // aubo_robot_namespace::wayPoint_S targetPoint; + + // //目标位置对应的关节角 + // double targetRadian[ARM_DOF] = { 0 }; + + // //目标位置 + // Pos pos = { -0.489605, -0.155672, 0.448430 }; + + // if (RS_SUCC == rs_get_current_waypoint(rshd, &wayPoint)) { + // //参考当前姿态逆解得到六个关节角 + // if (RS_SUCC == rs_inverse_kin(rshd, wayPoint.jointpos, &pos, + // &wayPoint.orientation, + // &targetPoint)) { + // //将得到目标位置,将6关节角度设置为用户给定的角度(必须在+-175度) + // targetRadian[0] = targetPoint.jointpos[0]; + // targetRadian[1] = targetPoint.jointpos[1]; + // targetRadian[2] = targetPoint.jointpos[2]; + // targetRadian[3] = targetPoint.jointpos[3]; + // targetRadian[4] = targetPoint.jointpos[4]; + // targetRadian[5] = targetPoint.jointpos[5]; + + // //直线运动到目标位置 + // if (RS_SUCC == rs_move_line(rshd, targetRadian)) { + // std::cout << "直线运动到目标位置!" << std::endl; + // } else { + // std::cerr << "直线运动到目标位置失败!" << std::endl; + // double OriginPos[6] = { + // 49.27 / 180 * M_PI, 55.14 / 180 * M_PI, -87.87 / + // 180 * M_PI, 30.39 / 180 * M_PI, 44.63 / 180 * + // M_PI, -36.66 / 180 * M_PI + // }; + // if (RS_SUCC == rs_move_line(rshd, OriginPos)) { + // std::cout << "原路径返回成功,可正常退出奇异区!" + // << std::endl; + // } + // } + + // } else { + // std::cerr << "逆解失败!" << std::endl; + // } + + // } else { + // std::cerr << "获取当前路点信息失败!" << std::endl; + // } + + SetRobotActualSpeed(rshd, 0.2); + + // 该位置为机械臂的初始位置 + double initPos[6] = { 1.72 / 180 * M_PI, 48.21 / 180 * M_PI, + -2.03 / 180 * M_PI, 39.78 / 180 * M_PI, + -89.82 / 180 * M_PI, 1.70 / 180 * M_PI }; + + // 首先运动到初始位置 + if (rs_move_joint(rshd, initPos) == RS_SUCC) { + std::cout << "机械臂轴动成功!" << std::endl; + } else { + std::cerr << "机械臂轴动失败!" << std::endl; + } + + // 奇异位置 + double pos[6] = { 1.73 / 180 * M_PI, 48.28 / 180 * M_PI, + -1.90 / 180 * M_PI, 39.85 / 180 * M_PI, + -89.82 / 180 * M_PI, 1.71 / 180 * M_PI }; + + // 直线运动到目标位置 + if (RS_SUCC == rs_move_line(rshd, pos)) { + std::cout << "直线运动到目标位置!" << std::endl; + } else { + std::cerr << "直线运动到目标位置失败!" << std::endl; + double OriginPos[6] = { 49.27 / 180 * M_PI, 55.14 / 180 * M_PI, + -87.87 / 180 * M_PI, 30.39 / 180 * M_PI, + 44.63 / 180 * M_PI, -36.66 / 180 * M_PI }; + if (RS_SUCC == rs_move_line(rshd, OriginPos)) { + std::cout << "原路径返回成功,可正常退出奇异区!" << std::endl; + } + } + + return result; +} + +// 测试问题12:机械臂轨迹运动测试——圆弧、圆、MoveP 重点MoveP +void bhwk_test12(RSHD rshd) +{ + // 轨迹运动 rs_move_track + // 示例1:圆运动 + // moveTrack1(rshd); + // 示例2:圆弧运动 + // moveTrack2(rshd); + // 示例3:MOVEP运动 + moveTrack3(rshd); +} + +void startRealtimeRobotEventPush(RSHD rshd) +{ + // 注册用于获取实时事件信息的回调函数 + // 注意:此接口为阻塞式 + rs_setcallback_robot_event(rshd, callback_RealTimeRobotEvent, NULL); +} + +void stopRealtimeRobotEventPush(RSHD rshd) +{ + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 取消推送实时信息 + rs_setcallback_robot_event(rshd, NULL, NULL); + std::cout << "停止实时事件信息推送" << std::endl; + + // 等待 10 秒,例如通过示教器操作机器人上下电,观察是否成功停止推送 + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 恢复推送实时信息 + std::cout << "恢复推送实时信息" << std::endl; + rs_setcallback_robot_event(rshd, callback_RealTimeRobotEvent, NULL); + std::this_thread::sleep_for(std::chrono::seconds(20)); +} + +// 测试问题13: 测试实时事件信息回调函数 +void bhwk_test13(RSHD rshd) +{ + std::thread thread1(startRealtimeRobotEventPush, rshd); + std::thread thread2(stopRealtimeRobotEventPush, rshd); + + thread1.join(); + thread2.join(); +} + +void startRealtimeEndSpeedPush(RSHD rshd) +{ + // 允许实时路点信息推送 + rs_enable_push_realtime_end_speed(rshd, true); + // 注册用于获取实时末端速度的回调函数 + // 注意:此接口为阻塞式 + rs_setcallback_realtime_end_speed(rshd, callback_RealTimeEndSpeed, NULL); +} + +void stopRealtimeEndSpeedPush(RSHD rshd) +{ + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 停止推送实时信息 + rs_enable_push_realtime_end_speed(rshd, false); + // 停止推送实时信息 + // rs_setcallback_realtime_end_speed(rshd, NULL, NULL); + std::cout << "停止实时末端速度信息推送" << std::endl; + + // 等待 3 秒,观察是否成功停止推送 + std::this_thread::sleep_for(std::chrono::seconds(3)); + + std::cout << "恢复推送实时信息" << std::endl; + // 恢复推送实时信息 + rs_enable_push_realtime_end_speed(rshd, true); + std::this_thread::sleep_for(std::chrono::seconds(10)); +} + +// 测试问题14: 测试实时末端速度回调函数 +void bhwk_test14(RSHD rshd) +{ + std::thread thread1(startRealtimeEndSpeedPush, rshd); + std::thread thread2(stopRealtimeEndSpeedPush, rshd); + + thread1.join(); + thread2.join(); +} + +void startRealtimeJointStatusPush(RSHD rshd) +{ + // 允许实时关节状态信息推送 + rs_enable_push_realtime_joint_status(rshd, true); + // 注册用于获取实时关节状态的回调函数 + // 注意:此接口为阻塞式 + rs_setcallback_realtime_joint_status(rshd, callback_RealTimeJointStatus, + NULL); +} + +void stopRealtimeJointStatusPush(RSHD rshd) +{ + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 停止推送实时信息 + rs_enable_push_realtime_joint_status(rshd, false); + // // 停止推送实时信息 + // rs_setcallback_realtime_joint_status(rshd, NULL, NULL); + std::cout << "停止实时关节状态信息推送" << std::endl; + + // 等待 3 秒,观察是否成功停止推送 + std::this_thread::sleep_for(std::chrono::seconds(3)); + + std::cout << "恢复推送实时信息" << std::endl; + // 恢复推送实时信息 + rs_enable_push_realtime_joint_status(rshd, true); + std::this_thread::sleep_for(std::chrono::seconds(10)); +} + +// 测试问题15: 测试实时关节状态回调函数 +void bhwk_test15(RSHD rshd) +{ + // 创建并启动线程 + std::thread thread1(startRealtimeJointStatusPush, rshd); + std::thread thread2(stopRealtimeJointStatusPush, rshd); + + // 等待线程执行完成 + thread1.join(); + thread2.join(); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.h new file mode 100644 index 00000000..94541c30 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_bhwk_c.h @@ -0,0 +1,91 @@ +#ifndef EXAMPLE_BHWK_C_H +#define EXAMPLE_BHWK_C_H + +#include "AuboRobotMetaType.h" +#include "rsdef.h" + +// 机械臂登录 +bool example_login(RSHD &rshd, const char *addr, int port); +void example_move_stop(RSHD rshd); +// 机械臂关机(必须连接真实机械臂) +bool example_robotShutdown(RSHD rshd); + +// 设置机械臂实际速度 +void SetRobotActualSpeed(RSHD rshd, double speed); + +// 绕基坐标轴旋转角度 +void RotateAroundBaseFrameByAngle(RSHD rshd, double angle, int Axial, + double speed, double acc); + +// 绕TCP坐标系旋转角度 +void RotateAroundTCPFrameByAngle(RSHD rshd, double angle, int Axial, + double speed, double acc); +// 沿基坐标系位置偏移量 +int TransAlongBaseFrameByDistance(RSHD rshd, double distance, int Axial, + double speed, double acc); + +// 沿TCP坐标系位置偏移量 +int TransAlongTCPFrameByDistance(RSHD rshd, double distance, int Axial, + double speed, double acc); + +// 打印路点 +void printRoadPoint(const aubo_robot_namespace::wayPoint_S *wayPoint); + +// 实时路点信息回调 +void callback_RealTimeRoadPoint( + const aubo_robot_namespace::wayPoint_S *wayPoint, void *arg); + +// 轨迹运动 rs_move_track +// 示例1:圆运动 +void moveTrack1(RSHD rshd); +// 示例2:圆弧运动 +void moveTrack2(RSHD rshd); +// 示例3:MOVEP运动 +void moveTrack3(RSHD rshd); + +// 测试问题1:测试DH补偿是否成功 +bool bhwk_test1(RSHD rshd); + +// 测试问题2:机械臂轴动 +bool bhwk_test2(RSHD rshd); + +// 测试问题3:机械臂在工具坐标系下做旋转运动 +void bhwk_test3(RSHD rshd); + +// 测试问题4:机械臂在基坐标系下做旋转运动 +void bhwk_test4(RSHD rshd); + +// 测试问题5:机械臂在工具坐标系下做位置偏移运动 +void bhwk_test5(RSHD rshd); + +// 测试问题6:机械臂在基坐标系下做位置偏移运动 +void bhwk_test6(RSHD rshd); + +// 测试问题7:测试机械臂正逆解的功能,八组逆解是否DH补偿 +void bhwk_test7(RSHD rshd); + +// 测试问题8:测试move_stop函数 +void bhwk_test8(RSHD rshd); + +// 测试问题9:测试实时路点信息回调函数 +void bhwk_test9(RSHD rshd); + +// 测试问题10:检测机械臂电源状态 +void bhwk_test10(RSHD rshd); + +// 测试问题11:原路径返回退出奇异区? +bool bhwk_test11(RSHD rshd); + +// 测试问题12:机械臂轨迹运动测试——圆弧、圆、MoveP 重点MoveP +void bhwk_test12(RSHD rshd); + +// 测试问题13: 测试实时事件信息回调函数 +void bhwk_test13(RSHD rshd); + +// 测试问题14: 测试实时末端速度回调函数 +void bhwk_test14(RSHD rshd); + +// 测试问题15: 测试实时关节状态回调函数 +void bhwk_test15(RSHD rshd); + +#endif // EXAMPLE_BHWK_C_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.cpp new file mode 100644 index 00000000..08f6619e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.cpp @@ -0,0 +1,321 @@ +#include "example_c.h" +#include +#include +#include +#include +#include +#include +#include "util.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define SERVER_HOST "127.0.0.1" +#define SERVER_PORT 30000 + +void Example_c::demo_connectrobot() +{ + if (rs_initialize() != RS_SUCC) { + std::cout << "初始化失败" << std::endl; + } + if (rs_create_context(&rshd_) != RS_SUCC) { + std::cout << "创建上下文失败" << std::endl; + } + if (rs_login(rshd_, SERVER_HOST, 30000) != RS_SUCC) { + std::cout << "登录失败" << std::endl; + } else { + std::cout << "登录成功" << std::endl; + } + + //工具的动力学参数和运动学参数 + ToolDynamicsParam tool_dynamics = { 0 }; + //机械臂碰撞等级 + uint8 colli_class = 9; + //机械臂启动是否读取姿态(默认开启) + bool read_pos = true; + //机械臂静态碰撞检测(默认开启) + bool static_colli_detect = true; + //机械臂最大加速度(系统自动控制,默认为30000) + int board_maxacc = 30000; + //机械臂服务启动状态 + ROBOT_SERVICE_STATE m_startState = ROBOT_SERVICE_READY; + + int ret = + rs_robot_startup(rshd_, &tool_dynamics, colli_class, read_pos, + static_colli_detect, board_maxacc, &m_startState); + if (ret != RS_SUCC) { + std::cout << "启动机械臂失败" << std::endl; + } else { + std::cout << "启动机械臂成功" << std::endl; + } + + if (m_startState != ROBOT_SERVICE_WORKING) + std::cout << "机械臂启动状态错误" << std::endl; +} + +void Example_c::demo_disconnect() +{ + bool status = false; + if (rs_get_login_status(rshd_, &status) != RS_SUCC) { + std::cout << "获取当前的连接状态失败" << std::endl; + } + int ret = rs_robot_shutdown(rshd_); + if (ret == RS_SUCC) { + std::cout << "关闭机械臂成功" << std::endl; + } + if (status) { + rs_logout(rshd_); + std::cout << "断开机械臂服务器链接" << std::endl; + } + if (rshd_ > 0) { + rs_destory_context(rshd_); + std::cout << "注销机械臂控制上下文句柄" << std::endl; + } + rs_uninitialize(); +} +void Example_c::demo_circle() +{ + /** 接口调用: 初始化运动属性 ***/ + rs_init_global_move_profile(rshd_); + + /** 接口调用: 设置关节型运动的最大加速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxAcc; + jointMaxAcc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxAcc.jointPara[5] = 30.0 / 180.0 * M_PI; //接口要求单位是弧度 + rs_set_global_joint_maxacc(rshd_, &jointMaxAcc); + + /** 接口调用: 设置关节型运动的最大速度 ***/ + aubo_robot_namespace::JointVelcAccParam jointMaxVelc; + jointMaxVelc.jointPara[0] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[1] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[2] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[3] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[4] = 30.0 / 180.0 * M_PI; + jointMaxVelc.jointPara[5] = 30.0 / 180.0 * M_PI; //接口要求单位是弧度 + rs_set_global_joint_maxvelc(rshd_, &jointMaxVelc); + + /** 接口调用: 设置末端型运动的最大加速度   直线运动属于末端型运动***/ + double endMoveMaxAcc; + endMoveMaxAcc = 0.2; //单位米每秒 + rs_set_global_end_max_line_acc(rshd_, endMoveMaxAcc); + rs_set_global_end_max_angle_acc(rshd_, endMoveMaxAcc); + + /** 接口调用: 设置末端型运动的最大速度 直线运动属于末端型运动***/ + double endMoveMaxVelc; + endMoveMaxVelc = 0.2; //单位米每秒 + rs_set_global_end_max_line_velc(rshd_, endMoveMaxVelc); + rs_set_global_end_max_angle_velc(rshd_, endMoveMaxVelc); + + double jointAngle[aubo_robot_namespace::ARM_DOF]; + + Util::initJointAngleArray(jointAngle, 89.25 / 180.0 * M_PI, + -35.33 / 180.0 * M_PI, 69.75 / 180.0 * M_PI, + 15.17 / 180.0 * M_PI, 90 / 180.0 * M_PI, + -0.65 / 180.0 * M_PI); + //关节运动至准备点 + int ret = rs_move_joint(rshd_, jointAngle, true); + if (ret != RS_SUCC) { + std::cout << "关节运动至准备点失败" << std::endl; + } + + //圆弧 + for (int i = 0; i < 1; i++) { + Util::initJointAngleArray(jointAngle, 89.25 / 180.0 * M_PI, + -35.33 / 180.0 * M_PI, 69.75 / 180.0 * M_PI, + 15.17 / 180.0 * M_PI, 90 / 180.0 * M_PI, + -0.65 / 180.0 * M_PI); + rs_add_waypoint(rshd_, jointAngle); + Util::initJointAngleArray(jointAngle, 82 / 180.0 * M_PI, + -18.04 / 180.0 * M_PI, 95.96 / 180.0 * M_PI, + 24.09 / 180.0 * M_PI, 90.01 / 180.0 * M_PI, + -7.91 / 180.0 * M_PI); + rs_add_waypoint(rshd_, jointAngle); + Util::initJointAngleArray(jointAngle, 106.34 / 180.0 * M_PI, + 16.45 / 180.0 * M_PI, 131.01 / 180.0 * M_PI, + 24.64 / 180.0 * M_PI, 89.97 / 180.0 * M_PI, + 16.43 / 180.0 * M_PI); + rs_add_waypoint(rshd_, jointAngle); + ret = rs_move_track(rshd_, ARC, false); + if (ret != aubo_robot_namespace::InterfaceCallSuccCode) { + std::cerr << "圆弧运动失败. ret:" << ret << std::endl; + } + } +} +void Example_c::demo_relative() +{ + aubo_robot_namespace::Rpy rpy; + aubo_robot_namespace::Ori targetOri; + + rpy.rx = 0.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = 0.0 / 180.0 * M_PI; + rs_rpy_to_quaternion(rshd_, &rpy, &targetOri); + + aubo_robot_namespace::MoveRelative relative; + relative.ena = true; + relative.relativePosition[0] = 0.03; + relative.relativePosition[1] = 0.0; + relative.relativePosition[2] = 0.0; + relative.relativeOri = targetOri; + + //基于基坐标系位置偏移 + + // if (RS_SUCC == rs_set_relative_offset_on_base(rshd_, &relative)) { + // std::cout << "relative_offset SUCC" << std::endl; + // } else { + // std::cerr << "relative_offset error" << std::endl; + // } + + //偏移:TCP在末端坐标系或工具坐标系下偏移 + ToolInEndDesc m_tool; + m_tool.toolInEndPosition.x = 0; + m_tool.toolInEndPosition.y = 0; + m_tool.toolInEndPosition.z = 0; + m_tool.toolInEndOrientation.w = 1; + m_tool.toolInEndOrientation.x = 0; + m_tool.toolInEndOrientation.y = 0; + m_tool.toolInEndOrientation.z = 0; + rs_set_tool_kinematics_param(rshd_, &m_tool); + + aubo_robot_namespace::ToolKinematicsParam tool; + rs_get_tool_kinematics_param(rshd_, &tool); + + CoordCalibrate userCoord; + userCoord.coordType = EndCoordinate; + userCoord.toolDesc = m_tool; + if (RS_SUCC == + rs_set_relative_offset_on_user(rshd_, &relative, &userCoord)) { + std::cout << "relative_offset SUCC" << std::endl; + } else { + std::cerr << "relative_offset error" << std::endl; + } + + wayPoint_S m_wayPoint; + int ret = rs_get_current_waypoint(rshd_, &m_wayPoint); + + ret = rs_move_line(rshd_, m_wayPoint.jointpos /*, false*/); +} +void Example_c::demo_computer() +{ + /* aubo_robot_namespace::wayPoint_S wayPoint; + aubo_robot_namespace::wayPoint_S targetPoint; + double jointAngle[aubo_robot_namespace::ARM_DOF] = { 0 }; + + Util::initJointAngleArray(jointAngle, 0.0 / 180.0 * M_PI, + -15.0 / 180.0 * M_PI, 100.0 / 180.0 * M_PI, + 25.0 / 180.0 * M_PI, 90.0 / 180.0 * M_PI, + 0.0 / 180.0 * M_PI); + + if (RS_SUCC == rs_forward_kin(rshd_, jointAngle, &wayPoint)) { + Util::printWaypoint(wayPoint); + } else { + std::cerr << "fk failed" << std::endl; + } + + Pos pos = { wayPoint.cartPos.position.x + 0.03, + wayPoint.cartPos.position.y, wayPoint.cartPos.position.z }; if (RS_SUCC + == rs_inverse_kin(rshd_, wayPoint.jointpos, &pos, &wayPoint.orientation, + &targetPoint)) { Util::printWaypoint(targetPoint); } else { std::cerr << + "ik failed" << std::endl; + }*/// + //求解全部逆解 + /* + ik_solutions m_inversePoint_array; + rs_inverse_kin_closed_form(rshd_, &pos, &wayPoint.orientation, + &m_inversePoint_array); + for (auto i = 0; i < m_inversePoint_array.solution_count; i++) { + std::cout << "逆解" << i << ": "; + for (unsigned int j = 0; j < 6; j++) { + Util::printWaypoint(m_inversePoint_array.waypoint[i]); + } + std::cout << std::endl; + } + */ + Pos tempos; + tempos.x = 0.4785; + tempos.y = -0.1215; + tempos.z = 0.4125; + Rpy rpy; + rpy.rx = 180 / 180 * M_PI; + rpy.ry = 0; + rpy.rz = 0; + Ori ori; + int ret = rs_rpy_to_quaternion(rshd_, &rpy, &ori); + CoordCalibrate m_coord; + m_coord.coordType = BaseCoordinate; + + ToolInEndDesc toolInEndDesc; + toolInEndDesc.toolInEndPosition.x = 0.02; + toolInEndDesc.toolInEndPosition.y = 0; + toolInEndDesc.toolInEndPosition.z = 0; + toolInEndDesc.toolInEndOrientation.w = 1.0; + toolInEndDesc.toolInEndOrientation.x = 0; + toolInEndDesc.toolInEndOrientation.y = 0; + toolInEndDesc.toolInEndOrientation.z = 0; + Pos flange_pos_onbase; + Ori flange_ori_onbase; + ret = rs_user_to_base(rshd_, &tempos, &ori, &m_coord, &toolInEndDesc, + &flange_pos_onbase, &flange_ori_onbase); + if (ret == RS_SUCC) { + std::cerr << flange_pos_onbase.x << "," << flange_pos_onbase.y << "," + << flange_pos_onbase.z << std::endl; + std::cerr << flange_ori_onbase.x << "," << flange_ori_onbase.y << "," + << flange_ori_onbase.z << std::endl; + } + Pos tool_end_pos_onbase; + Ori tool_end_ori_onbase; + ret = rs_base_to_base_additional_tool( + rshd_, &flange_pos_onbase, &flange_ori_onbase, &toolInEndDesc, + &tool_end_pos_onbase, &tool_end_ori_onbase); + if (ret == RS_SUCC) { + std::cerr << tool_end_pos_onbase.x << "," << tool_end_pos_onbase.y + << "," << tool_end_pos_onbase.z << std::endl; + std::cerr << tool_end_ori_onbase.x << "," << tool_end_ori_onbase.y + << "," << tool_end_ori_onbase.z << std::endl; + } +} +void Example_c::demo_teach() +{ + teach_mode mode = MOV_X; + bool dir = true; + /** Robotic 开始示教**/ + std::cout << "TeachStart" << std::endl; + aubo_robot_namespace::CoordCalibrateByJointAngleAndTool userCoord; + userCoord.coordType = aubo_robot_namespace::BaseCoordinate; + rs_set_teach_coord(rshd_, &userCoord); + rs_teach_move_start(rshd_, mode, dir); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + rs_teach_move_stop(rshd_); +} +void Example_c::demo_rotate() +{ + CoordCalibrate userCoord; + userCoord.coordType = BaseCoordinate; + Move_Rotate_Axis rotateAxis_prarm; + rotateAxis_prarm.rotateAxis[0] = 0; + rotateAxis_prarm.rotateAxis[1] = 0; + rotateAxis_prarm.rotateAxis[2] = 1; + double rotate_angle = 30 / 180.0 * M_PI; + int ret = rs_move_rotate(rshd_, &userCoord, &rotateAxis_prarm, rotate_angle, + true); + if (ret == RS_SUCC) { + std::cout << "旋转运动成功" << std::endl; + } +} +void Example_c::demo_io() +{ + int ret = rs_set_board_io_status_by_name( + rshd_, RobotIoType::RobotBoardUserDO, "U_DO_03", 0); + if (ret != RS_SUCC) { + std::cout << "设置IO失败" << std::endl; + } + double val[1]; + rs_get_board_io_status_by_name(rshd_, RobotIoType::RobotBoardUserDI, + "U_DI_00", val); + if (ret == RS_SUCC) { + std::cout << val[0] << std::endl; + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.h new file mode 100644 index 00000000..d9493335 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/example_c.h @@ -0,0 +1,23 @@ +#ifndef EXAMPLE_C_H +#define EXAMPLE_C_H + +#include "AuboRobotMetaType.h" +#include "rsdef.h" + +class Example_c +{ +public: + void demo_connectrobot(); + void demo_disconnect(); + void demo_circle(); + void demo_relative(); + void demo_computer(); + void demo_teach(); + void demo_rotate(); + void demo_io(); + +private: + RSHD rshd_; +}; + +#endif // EXAMPLE_C_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/main.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/main.cpp new file mode 100644 index 00000000..3de9a0e7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/aubope/main.cpp @@ -0,0 +1,309 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif +#include +#include +#include +#include + +#include "example_0.h" +#include "example_1.h" +#include "example_3.h" +#include "example_4.h" +#include "example_5.h" +#include "example_6.h" +#include "example_8.h" +#include "example_9.h" + +#include "example_c.h" + +#include "example_bhwk_c.h" +#define ROBOT_ADDR "127.0.0.1" +#define ROBOT_PORT 30000 + +RSHD g_rshd = -1; + +#define M_PI 3.1415926 +using namespace std; + +void funcTest() +{ + ServiceInterface robotService; + + int ret = aubo_robot_namespace::InterfaceCallSuccCode; + + /** Interface call: login ***/ + ret = robotService.robotServiceLogin("127.0.0.1", 8899, "aubo", "123456"); + if (ret == aubo_robot_namespace::InterfaceCallSuccCode) { + std::cout << "login successful." << std::endl; + } else { + std::cerr << "login failed." << std::endl; + } + + // aubo_robot_namespace::RobotBaseParameters baseParameters; + + // baseParameters.info.robot_type = 1; + // baseParameters.info.auth_type = 2; + // baseParameters.info.robot_expire = 3; + // baseParameters.info.robot_duration = 4; + + // for(int i=0;i<12;i++) + // baseParameters.info.reserve[i] = i+10; + + // for(int i=0;i<6;i++) + // baseParameters.info.joint_duration[i] = i+30; + + // ret = robotService.robotServiceSetRobotBaseParameters(baseParameters); + + // if(ret!=0) + // { + // std::cout<<"ret:"< +#include +#include +#include +#include +#include +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +// Print waypoint information +void Util::printWaypoint(aubo_robot_namespace::wayPoint_S &wayPoint) +{ + std::cout << std::endl + << "start-------------waypoint---------------" << std::endl; + // position information + std::cout << "position information: "; + std::cout << "x:" << wayPoint.cartPos.position.x << " "; + std::cout << "y:" << wayPoint.cartPos.position.y << " "; + std::cout << "z:" << wayPoint.cartPos.position.z << std::endl; + + // Gesture information + std::cout << "Gesture information: "; + std::cout << "w:" << wayPoint.orientation.w << " "; + std::cout << "x:" << wayPoint.orientation.x << " "; + std::cout << "y:" << wayPoint.orientation.y << " "; + std::cout << "z:" << wayPoint.orientation.z << std::endl; + + // aubo_robot_namespace::Rpy tempRpy; + // robotService.quaternionToRPY(wayPoint.orientation,tempRpy); + // std::cout<<"RX:"< +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +// 模板函数: 打印类型为std::vector的变量 +template +void printVec(std::vector param, std::string name) +{ + std::cout << name << ": "; + + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 模板函数: 打印类型为 std::vector> 的变量 +template +void print2Vec(std::vector param, std::string name) +{ + std::cout << name << ": " << std::endl; + for (size_t i = 0; i < param.size(); i++) { + std::cout << " 第" << i + 1 << "组: "; + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j); + + if (j != param.at(i).size() - 1) { + std::cout << ", "; + } else { + std::cout << std::endl; + } + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +void exampleForwardK(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.1, 0.2, 0.3, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 获取当前的关节角 + std::vector q = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + + // 接口调用: 正解得到当前的TCP的位姿 + auto result = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q); + printVec(std::get<0>(result), "正解得到当前的TCP的位姿"); + + // 接口调用: 正解得到所有连杆的位姿 + auto result2 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematicsAll(q); + print2Vec(std::get<0>(result2), "正解得到当前的连杆位姿"); +} + +void exampleForwardToolK(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.1, 0.2, 0.3, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 获取当前的关节角 + std::vector q = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + + // 接口调用: 正解得到法兰盘末端中心的位姿 + auto result = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardToolKinematics(q); + printVec(std::get<0>(result), "正解得到法兰盘末端中心的位姿"); +} + +void exampleInverseK(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.1, 0.2, 0.3, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 获取当前的关节角 + std::vector qnear = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + + // 接口调用: 获取当前的tcp值作为目标位姿 + std::vector p = + impl->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + printVec(p, "当前TCP的位姿"); + + // 接口调用: 根据TCP位姿,获得最优逆解 + auto result1 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->inverseKinematics(qnear, p); + printVec(std::get<0>(result1), "根据TCP位姿,逆解获得最优的关节角"); + + // 接口调用: 根据TCP位姿,获得所有的逆解 + auto result2 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->inverseKinematicsAll(p); + print2Vec(std::get<0>(result2), "根据TCP位姿,逆解获得所有的关节角"); +} + +void exampleInverseToolK(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.1, 0.2, 0.3, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 获取当前的关节角 + std::vector qnear = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + + // 接口调用: 获取当前的法兰盘末端中心的值作为目标位姿 + std::vector p = + impl->getRobotInterface(robot_name)->getRobotState()->getToolPose(); + printVec(p, "当前法兰盘末端中心的位姿"); + + // 接口调用: 根据法兰盘末端中心的位姿,获得最优逆解 + auto result1 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->inverseToolKinematics(qnear, p); + printVec(std::get<0>(result1), + "根据法兰盘末端中心的位姿,逆解获得最优的关节角"); + + // 接口调用: 根据法兰盘末端中心的位姿,获得所有的逆解 + auto result2 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->inverseToolKinematicsAll(p); + print2Vec(std::get<0>(result2), + "根据法兰盘末端中心的位姿,逆解获得所有的关节角"); +} + +void exampleGetRobotConfiguration(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.1, 0.2, 0.3, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 获取当前的关节角 + std::vector curr_q = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + + // 接口调用: 根据输入的关节角获取对应的机械臂构型 + auto result1 = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->getRobotConfiguration(curr_q); + + std::cout << "当前机器臂的构型为:" << std::get<0>(result1) << std::endl; +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 正解得到TCP的位姿 + exampleForwardK(rpc_cli); + + // 正解得到法兰盘末端中心的位姿 + exampleForwardToolK(rpc_cli); + + // 根据TCP位姿,获得逆解 + exampleInverseK(rpc_cli); + + // 根据法兰盘末端中心的位姿,获得逆解 + exampleInverseToolK(rpc_cli); + + // 根据输入的关节角获取对应的机械臂构型 + exampleGetRobotConfiguration(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_move_joint.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_move_joint.cpp new file mode 100644 index 00000000..25ff374b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_move_joint.cpp @@ -0,0 +1,144 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +#include "unistd.h" +#include +#include + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &vd) +{ + if (vd.size() == 0) { + os << ""; + return os; + } + for (size_t i = 0; i < vd.size(); i++) { + os << vd[i]; + if (i < vd.size() - 1) { + os << ", "; + } + } + return os; +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(const std::vector &axis, + const std::vector names, + const std::vector way) +{ + int cnt_steady = 0; + int cnt = 0; + + while (true) { + for (size_t i = 0; i < names.size(); i++) { + std::cout << "real pos: " << axis[i]->getExtAxisPosition() + << " cmd pos: " << way[i] << std::endl; + if (std::abs(axis[i]->getExtAxisPosition() - way[i]) < 10e-5) { + cnt_steady++; + } + } + if (cnt_steady == (int)names.size()) { + return 0; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + if (cnt++ > 1000) { + cnt = 0; + return -1; + } + } + + return 0; +} + +/** + * 功能: 机械臂关节运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率、以关节运动的方式依次经过3个路点 + * 第三步: RPC 退出登录、断开连接 + */ + +void exampleMovej(RpcClientPtr cli) +{ + std::vector servo_r_j(6, 0.0); + std::vector servo_ex_j(3, 0.0); + std::vector way1(3, 0.0); + + std::vector axis; + auto names = cli->getAxisNames(); + + axis.resize(names.size()); + for (size_t i = 0; i < names.size(); i++) { + axis[i] = cli->getAxisInterface(names[i]); + } + + printf("name: %s\n", names[0].c_str()); + axis[0]->followAnotherAxis(names[0], 0.0, 0.0); + std::cout << "axis: " << axis.size() << std::endl; + std::cout << "names: " << names.size() << std::endl; + + for (;;) { + for (size_t i = 0; i < names.size(); i++) { + way1[i] = -3.0; + axis[i]->moveExtJoint(way1[i], 3.0, 1.0, 0.5); + } + + int ret = waitArrival(axis, names, way1); + if (ret == 0) { + std::cout << "关节运动到路点1成功" << std::endl; + } else { + std::cout << "关节运动到路点1失败" << std::endl; + } + + for (size_t i = 0; i < names.size(); i++) { + way1[i] = 3.0; + axis[i]->moveExtJoint(way1[i], 3.0, 1.0, 0.5); + } + + ret = waitArrival(axis, names, way1); + if (ret == 0) { + std::cout << "关节运动到路点2成功" << std::endl; + } else { + std::cout << "关节运动到路点2失败" << std::endl; + } + } +} + +#define LOCAL_IP "172.16.28.60" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 关节运动 + exampleMovej(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_offline.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_offline.cpp new file mode 100644 index 00000000..cb8da98e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_axis_offline.cpp @@ -0,0 +1,225 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +#include +#include +#include + +#include "trajectory_io.h" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &vd) +{ + if (vd.size() == 0) { + os << ""; + return os; + } + for (size_t i = 0; i < vd.size(); i++) { + os << vd[i]; + if (i < vd.size() - 1) { + os << ", "; + } + } + return os; +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitAxesArrival(const std::vector &axis, + const std::vector names, + const std::vector way) +{ + int cnt_steady = 0; + int cnt = 0; + + while (true) { + for (size_t i = 0; i < names.size(); i++) { + std::cout << "real pos: " << axis[i]->getExtAxisPosition() + << " cmd pos: " << way[i] << std::endl; + if (std::abs(axis[i]->getExtAxisPosition() - way[i]) < 10e-5) { + cnt_steady++; + } + } + if (cnt_steady == (int)names.size()) { + return 0; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + if (cnt++ > 1000) { + cnt = 0; + return -1; + } + } + + return 0; +} + +#define LOCAL_IP "172.19.19.112" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + + rpc_cli->connect("172.19.19.112", 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto robot_name = rpc_cli->getRobotNames().front(); + + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + auto filename = "../trajs/waypoints_dof-9_0-90-1.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + std::vector servo_r_j(6, 0.0); + std::vector servo_ex_j(3, 0.0); + + std::vector axis; + auto names = rpc_cli->getAxisNames(); + + axis.resize(names.size()); + for (size_t i = 0; i < names.size(); i++) { + axis[i] = rpc_cli->getAxisInterface(names[i]); + } + + printf("name: %s\n", names[0].c_str()); + axis[1]->followAnotherAxis(names[0], 0.0, 0.0); + + for (int i = 0; i < 6; i++) { + servo_r_j[i] = traj[0][i]; + } + + for (int i = 0; i < 3; i++) { + servo_ex_j[i] = traj[0][i + 6]; + } + + for (size_t i = 0; i < names.size(); i++) { + // ervo_ex_j[i] = -3.0; + axis[i]->moveExtJoint(servo_ex_j[i], 1.0, 1.0, 0.5); + } + + int ret = waitAxesArrival(axis, names, servo_ex_j); + if (ret == 0) { + std::cout << "外部轴关节运动到路点1成功" << std::endl; + } else { + std::cout << "外部轴关节运动到路点1失败" << std::endl; + } + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(servo_r_j, 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启servo模式 + robot_interface->getMotionControl()->setServoModeSelect(3); + // std::this_thread::sleep_for(std::chrono::milliseconds(3000)); + + // 等待进入 servo 模式 + int i = 0; + while (!robot_interface->getMotionControl()->isServoModeEnabled()) { + if (i++ > 5) { + std::cout << "Servo 模式使能失败! 当前servo状态为 " + << rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + for (size_t i = 1; i < traj.size(); i++) { + for (size_t j = 0; j < 6; j++) { + servo_r_j[j] = traj[i][j]; + } + for (size_t j = 0; j < 3; j++) { + servo_ex_j[j] = traj[i][j + 6]; + } + std::cout << "servo_r_j: " << servo_r_j << std::endl; + // 接口调用: 关节伺服运动 + int ret = rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJointWithAxes(servo_r_j, servo_ex_j, 10.0, 3.1, 10, + 0.1, 200); + if (ret == 2) { + i--; + } + + usleep(1000 * 2); + } + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_calibrate_force_offset.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_calibrate_force_offset.cpp new file mode 100644 index 00000000..e1fec11c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_calibrate_force_offset.cpp @@ -0,0 +1,193 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +#include + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleCalibrateForceOffset(RpcClientPtr impl) +{ + std::vector joint1 = { + 161.01, -18.80, -88.00, -67.45, -91.85, 90.02 + }; + std::vector joint2 = { + 161.01, -18.80, -88.00, -67.45, -91.85, 0.01 + }; + std::vector joint3 = { + 161.01, -18.80, -88.00, 20.00, -91.85, 0.00 + }; + + for (int i = 0; i < 6; i++) { + joint1[i] = joint1[i] / 180.0 * M_PI; + } + + if (impl.get() == nullptr || !impl->hasConnected() || !impl->hasLogined()) { + std::cout << "not login" << std::endl; + return; + } + + auto robot_name = impl->getRobotNames().front(); + int ret = 0; + + // 运动到第一个标定位姿 + std::cout << "[ForceControl] goto p0 {" << joint1[0] << "," << joint1[1] + << "," << joint1[2] << "," << joint1[3] << "," << joint1[4] << "," + << joint1[5] << "}" << std::endl; + if (!(ret = impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joint1, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, + 0))) { + waitArrival(impl->getRobotInterface(robot_name)); + } else { + std::cout << "[ForceControl] 运动到第1个标定位姿错误" << std::endl; + return; + } + //等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + //记录关节位置和tcp force + auto q1 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force1 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "[ForceControl] q1 {" << q1[0] << "," << q1[1] << "," << q1[2] + << "," << q1[3] << "," << q1[4] << "," << q1[5] << "}" + << std::endl; + std::cout << "[ForceControl] tcp_force1 {" << tcp_force1[0] << "," + << tcp_force1[1] << "," << tcp_force1[2] << "," << tcp_force1[3] + << "," << tcp_force1[4] << "," << tcp_force1[5] << "}" + << std::endl; + + // 运动到第二个标定位姿 + std::cout << "[ForceControl] goto p1 {" << joint2[0] << "," << joint2[1] + << "," << joint2[2] << "," << joint2[3] << "," << joint2[4] << "," + << joint2[5] << "}" << std::endl; + if (!(ret = impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joint2, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, + 0))) { + waitArrival(impl->getRobotInterface(robot_name)); + } else { + std::cout << "[ForceControl] 运动到第二个标定位姿错误" << std::endl; + return; + } + //等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + //记录关节位置和tcp force + auto q2 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force2 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "[ForceControl] q2 {" << q2[0] << "," << q2[1] << "," << q2[2] + << "," << q2[3] << "," << q2[4] << "," << q2[5] << "}" + << std::endl; + std::cout << "[ForceControl] tcp_force2 {" << tcp_force2[0] << "," + << tcp_force2[1] << "," << tcp_force2[2] << "," << tcp_force2[3] + << "," << tcp_force2[4] << "," << tcp_force2[5] << "}" + << std::endl; + + // 运动到第三个标定位姿 + std::cout << "[ForceControl] goto p2 {" << joint3[0] << "," << joint3[1] + << "," << joint3[2] << "," << joint3[3] << "," << joint3[4] << "," + << joint3[5] << "}" << std::endl; + if (!(ret = impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joint3, 20 * (M_PI / 180), 10 * (M_PI / 180), 0, + 0))) { + waitArrival(impl->getRobotInterface(robot_name)); + } else { + std::cout << "[ForceControl] 运动到第三个标定位姿错误" << std::endl; + return; + } + //等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + //记录关节位置和tcp force + auto q3 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force3 = impl->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "[ForceControl] q3 {" << q3[0] << "," << q3[1] << "," << q3[2] + << "," << q3[3] << "," << q3[4] << "," << q3[5] << "}" + << std::endl; + std::cout << "[ForceControl] tcp_force3 {" << tcp_force3[0] << "," + << tcp_force3[1] << "," << tcp_force3[2] << "," << tcp_force3[3] + << "," << tcp_force3[4] << "," << tcp_force3[5] << "}" + << std::endl; + + std::vector> calib_forces{ tcp_force1, tcp_force2, + tcp_force3 }; + + std::vector> calib_q{ q1, q2, q3 }; + + auto offset = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->calibrateTcpForceSensorOffset(calib_forces, calib_q); + + printf(" force_offset: %.6f, %.6f, %.6f, %.6f, %.6f, " + "%.6f.\n", + offset[0], offset[1], offset[2], offset[3], offset[4], offset[5]); + + impl->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(offset); +} + +#define LOCAL_IP "192.168.1.102" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + exampleCalibrateForceOffset(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_collision_recovery.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_collision_recovery.cpp new file mode 100644 index 00000000..dc6a53c2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_collision_recovery.cpp @@ -0,0 +1,168 @@ +#include "aubo_sdk/rpc.h" +#include +#ifdef WIN32 +#include +#else +#include +#endif +#include +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 计算当前关节角与目标关节角的绝对差值 +double distance(const std::vector &a, const std::vector &b) +{ + double res = 0.; + if (a.size() != b.size()) { + return -1; + } + + for (int i = 0; i < (int)a.size(); i++) { + res += (a[i] - b[i]) * (a[i] - b[i]); + } + return sqrt(res); +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +void waitArrival(RobotInterfacePtr impl, std::vector target) +{ + while (1) { + // 接口调用: 获取当前的关节角 + std::vector cur = impl->getRobotState()->getJointPositions(); + // 当前关节角与目标关节角的绝对差值小于 0.0001时,跳出循环 + double dis = distance(cur, target); + if (dis < 0.0001) { + break; + } + printf("当前关节角:%f,%f,%f,%f,%f,%f\n", cur.at(0), cur.at(1), + cur.at(2), cur.at(3), cur.at(4), cur.at(5)); + printf("目标关节角:%f,%f,%f,%f,%f,%f\n", target.at(0), target.at(1), + target.at(2), target.at(3), target.at(4), target.at(5)); + std::this_thread::sleep_for(std::chrono::seconds(1)); + } +} + +// 关节运动恢复 +void collision_recovery_movej(RpcClientPtr cli) + +{ + // 接口调用: 获取机器人的名字 + auto name = cli->getRobotNames().front(); + auto impl = cli->getRobotInterface(name); + + // 接口调用: 获取碰撞后要恢复到的位置 + auto joint = impl->getMotionControl()->getPauseJointPositions(); + + // 打印要恢复的位置 + printf("要恢复的位置:%f,%f,%f,%f,%f,%f\n", joint.at(0), joint.at(1), + joint.at(2), joint.at(3), joint.at(4), joint.at(5)); + + // 接口调用: 模拟碰撞后的示教运动 + impl->getMotionControl()->resumeSpeedLine({ 0, 0, -0.05, 0, 0, 0 }, 1.2, + 100); +#ifdef WIN32 + Sleep(1000 * 1); +#else + usleep(1000 * 1000 * 1); +#endif + // 接口调用: 停止示教运动 + impl->getMotionControl()->resumeStopLine(10, 10); +#ifdef WIN32 + Sleep(1000 * 1); +#else + usleep(1000 * 1000 * 1); +#endif + + // 接口调用: 关节运动到暂停点 + impl->getMotionControl()->resumeMoveJoint(joint, 1, 1, 0); + // 阻塞 + waitArrival(impl, joint); + + // 接口调用: 恢复规划器运行 + cli->getRuntimeMachine()->resume(); +} + +// 直线运动恢复 +void collision_recovery_movel(RpcClientPtr cli) + +{ + // 接口调用: 获取机器人的名字 + auto name = cli->getRobotNames().front(); + auto impl = cli->getRobotInterface(name); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + impl->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 获取碰撞后要恢复到的位置 + auto joint = impl->getMotionControl()->getPauseJointPositions(); + + // 打印要恢复的位置 + printf("要恢复的关节角位置:%f,%f,%f,%f,%f,%f\n", joint.at(0), joint.at(1), + joint.at(2), joint.at(3), joint.at(4), joint.at(5)); + + // 接口调用: 模拟碰撞后的示教运动 + impl->getMotionControl()->resumeSpeedLine({ 0, 0, -0.05, 0, 0, 0 }, 1.2, + 100); +#ifdef WIN32 + Sleep(1000 * 1); +#else + usleep(1000 * 1000 * 1); +#endif + // 接口调用: 停止示教运动 + impl->getMotionControl()->resumeStopLine(10, 10); +#ifdef WIN32 + Sleep(1000 * 1); +#else + usleep(1000 * 1000 * 1); +#endif + + // 接口调用: 正解获得暂停点的位置姿态 + auto result = impl->getRobotAlgorithm()->forwardKinematics(joint); + + if (0 == std::get<1>(result)) { + // 接口调用: 直线运动到暂停点 + impl->getMotionControl()->resumeMoveLine(std::get<0>(result), 1.2, 0.25, + 0.0); + } + // 阻塞 + waitArrival(impl, joint); + std::cout << "直线运动到暂停点" << std::endl; + + // 接口调用: 恢复规划器运行 + cli->getRuntimeMachine()->resume(); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 关节运动恢复 + collision_recovery_movej(rpc_cli); + + // 直线运动恢复 + // collision_recovery_movel(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config.cpp new file mode 100644 index 00000000..8630596e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config.cpp @@ -0,0 +1,55 @@ +#include +#include +#include "aubo_sdk/rpc.h" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +/** + * 功能: 设置运动学模型补偿参数和获取DH参数 + * 步骤: + * 第一步: 连接 RPC 服务、机械臂登录 + * 第二步: 设置运动学模型补偿参数 + * 第三步: 获取机器人DH参数 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ + auto rpc_cli = std::make_shared(); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 接口调用: 获取机器人的名字 + auto name = rpc_cli->getRobotNames().front(); + auto impl = rpc_cli->getRobotInterface(name); + + // 运动学模型补偿数据 + std::string value = + "[dh_comp]\r\n" + "alpha = [0.0, 0.000886627, -0.00305258, 0.00168948, 0.000534071, " + "0.00557807]\r\n" + "a = [0.0, -8.72e-05, 0.000741, -0.0001693, -0.0001688, 1.82e-05]\r\n" + "d = [-0.0235, 0.0001258, -0.0001258, 0.0001258, 0.000586, " + "-0.0005141]\r\n" + "theta = [0.0, 0.000439823, -0.0181933, -0.0217206, -0.0178146, " + "0.0]\r\n" + "beta = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]\r\n"; + + // 接口调用: 设置运动学模型补偿参数 + impl->getRobotConfig()->setPersistentParameters(value); + + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 接口调用: 获取机器人DH参数 + auto dh = impl->getRobotConfig()->getKinematicsParam(true); + for (auto iter : dh) { + std::cout << iter.first << ":"; + for (int i = 0; i < (int)iter.second.size(); i++) { + std::cout << iter.second.at(i) << ","; + } + std::cout << std::endl; + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config2.cpp new file mode 100644 index 00000000..60506478 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_config2.cpp @@ -0,0 +1,284 @@ +#include "aubo_sdk/rpc.h" +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::aubo_sdk; + +// 模板函数: 打印类型为std::vector的变量 +template void printVec(std::vector param, std::string name) { + std::cout << name << ": "; + + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 模板函数: 打印类型为 std::vector> 的变量 +template void print2Vec(std::vector param, std::string name) { + std::cout << name << ": " << std::endl; + for (size_t i = 0; i < param.size(); i++) { + std::cout << " 第" << i + 1 << "组: "; + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j); + + if (j != param.at(i).size() - 1) { + std::cout << ", "; + } else { + std::cout << std::endl; + } + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +void exampleConfig(RpcClientPtr cli) { + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + // 接口调用: 获取机器人的名字 + std::string name; + name = cli->getRobotInterface(robot_name)->getRobotConfig()->getName(); + std::cout << "获取机器人的名字:" << name << std::endl; + + // 接口调用: 获取机器人的自由度 + int dof; + dof = cli->getRobotInterface(robot_name)->getRobotConfig()->getDof(); + std::cout << "获取机器人的自由度:" << dof << std::endl; + + // 接口调用: 获取机器人的伺服控制周期(从硬件抽象层读取) + double cycle_time; + cycle_time = + cli->getRobotInterface(robot_name)->getRobotConfig()->getCycletime(); + std::cout << "获取伺服控制周期:" << cycle_time << std::endl; + + // 接口调用: 获取机器人类型代码 + std::string robot_type; + robot_type = + cli->getRobotInterface(robot_name)->getRobotConfig()->getRobotType(); + std::cout << "获取机器人类型代码:" << robot_type << std::endl; + + // 接口调用: 获取机器人子类型代码 + std::string sub_type; + sub_type = + cli->getRobotInterface(robot_name)->getRobotConfig()->getRobotSubType(); + std::cout << "获取机器人子类型代码:" << sub_type << std::endl; + + // 接口调用: 获取控制柜类型代码 + std::string control_box_type; + control_box_type = + cli->getRobotInterface(robot_name)->getRobotConfig()->getControlBoxType(); + std::cout << "获取控制柜类型代码:" << control_box_type << std::endl; + + // 接口调用: 设置碰撞灵敏度等级 + int level = 10; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setCollisionLevel(level); + std::cout << "设置碰撞灵敏度等级:" << level << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取碰撞灵敏度等级 + int collision_level; + collision_level = + cli->getRobotInterface(robot_name)->getRobotConfig()->getCollisionLevel(); + std::cout << "获取碰撞灵敏度等级:" << collision_level << std::endl; + + // 接口调用: 设置碰撞停止类型 + int type = 1; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setCollisionStopType(type); + std::cout << "设置碰撞停止类型:" << type << std::endl; + + // 接口调用: 获取碰撞停止类型 + int collision_stop_type; + collision_stop_type = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getCollisionStopType(); + std::cout << "获取碰撞停止类型:" << collision_stop_type << std::endl; + + // 接口调用: 获取机器人DH参数的理论值 + std::unordered_map> kin_param1; + kin_param1 = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getKinematicsParam(true); + std::cout << "获取机器人DH参数的理论值:" << std::endl; + for (auto it = kin_param1.begin(); it != kin_param1.end(); it++) { + std::cout << it->first << ": "; + int size = it->second.size(); + for (int i = 0; i < size; i++) { + std::cout << it->second.at(i) << " "; + } + std::cout << std::endl; + } + + // 接口调用: 获取机器人DH参数的实际值 + std::unordered_map> kin_param2; + kin_param2 = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getKinematicsParam(false); + std::cout << "获取机器人DH参数的实际值:" << std::endl; + for (auto it = kin_param2.begin(); it != kin_param2.end(); it++) { + std::cout << it->first << ": "; + int size = it->second.size(); + for (int i = 0; i < size; i++) { + std::cout << it->second.at(i) << " "; + } + std::cout << std::endl; + } + + // 接口调用: 获取指定温度下的DH参数补偿值 + std::unordered_map> kin_compensate; + double temperature = 20; + kin_compensate = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getKinematicsCompensate(temperature); + std::cout << "获取机器人DH参数补偿值:" << std::endl; + for (auto it = kin_compensate.begin(); it != kin_compensate.end(); it++) { + std::cout << it->first << ": "; + int size = it->second.size(); + for (int i = 0; i < size; i++) { + std::cout << it->second.at(i) << " "; + } + std::cout << std::endl; + } + + // 接口调用: 获取可用的末端力矩传感器的名字 + std::vector tcp_force_sensor_names; + tcp_force_sensor_names = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getTcpForceSensorNames(); + printVec(tcp_force_sensor_names, "获取末端力矩传感器的名字"); + + // 接口调用: 获取安全参数校验码 CRC32 + uint32_t check_sum; + check_sum = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getSafetyParametersCheckSum(); + std::cout << "获取安全参数校验码 CRC32:" << check_sum << std::endl; + + // 接口调用: 获取关节最大位置(物理极限) + std::vector joint_max_positions; + joint_max_positions = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getJointMaxPositions(); + printVec(joint_max_positions, "获取关节最大位置(物理极限)"); + + // 接口调用: 获取关节最小位置(物理极限) + std::vector joint_min_positions; + joint_min_positions = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getJointMinPositions(); + printVec(joint_min_positions, "获取关节最小位置(物理极限)"); + + // 接口调用: 获取关节最大速度(物理极限) + std::vector joint_max_speeds; + joint_max_speeds = + cli->getRobotInterface(robot_name)->getRobotConfig()->getJointMaxSpeeds(); + printVec(joint_max_speeds, "获取关节最大速度(物理极限)"); + + // 接口调用: 获取关节最大加速度(物理极限) + std::vector joint_max_acc; + joint_max_acc = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getJointMaxAccelerations(); + printVec(joint_max_acc, "获取关节最大加速度(物理极限)"); + + // 接口调用:获取机器人的重力加速度 + std::vector gravity; + gravity = cli->getRobotInterface(robot_name)->getRobotConfig()->getGravity(); + printVec(gravity, "获取机器人的重力加速度"); + + // 接口调用: 设置TCP偏移 + std::vector tcp_offset1 = {-0.1, 0.2, 0.3, 3.14, 0.0, 1.57}; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_offset1); + std::this_thread::sleep_for(std::chrono::seconds(1)); + printVec(tcp_offset1, "设置TCP偏移为"); + + // 接口调用: 获取TCP偏移 + std::vector tcp_offset2; + tcp_offset2 = + cli->getRobotInterface(robot_name)->getRobotConfig()->getTcpOffset(); + printVec(tcp_offset2, "获取TCP偏移"); + + // 接口调用: 设置负载 + double mass1 = 2.5; + std::vector cog1(3, 0.0); + std::vector aom1(3, 0.0); + std::vector inertia1(6, 0.0); + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass1, cog1, aom1, inertia1); + std::this_thread::sleep_for(std::chrono::seconds(1)); + std::cout << "设置末端负载为:" << std::endl; + std::cout << "mass:" << mass1 << std::endl; + printVec(cog1, "cog"); + printVec(aom1, "aom"); + printVec(inertia1, "intertia"); + + // 接口调用: 获取末端负载 + auto payload = + cli->getRobotInterface(robot_name)->getRobotConfig()->getPayload(); + std::cout << "获取末端负载:" << std::endl; + std::cout << "mass:" << std::get<0>(payload) << std::endl; + std::vector cog2 = std::get<1>(payload); + printVec(cog2, "cog"); + std::vector aom2 = std::get<2>(payload); + printVec(aom2, "aom"); + std::vector inertia2 = std::get<3>(payload); + printVec(inertia2, "intertia"); + + // 接口调用: 获取关节摩擦力参数 + auto joint_friction_param = + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getHardwareCustomParameters("joint_friction_params"); + std::cout << "关节摩擦力参数: " << joint_friction_param << std::endl; + +} + +#define ip_local "127.0.0.1" + +/** + * 功能: 获取机械臂配置信息 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、登录 + * 第二步: 获取机械臂相关的配置信息 + * 第三步: 退出登录、断开 RPC 连接 + */ +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(ip_local, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 获取机械臂相关的配置信息 + exampleConfig(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_data_collect.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_data_collect.cpp new file mode 100644 index 00000000..50dbcd69 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_data_collect.cpp @@ -0,0 +1,275 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 判断缓存是否有效 +int isBufferValid(RobotInterfacePtr impl) +{ + // 调用pathBufferValid最大的重试次数 + int max_retry_count = 5; + // 调用pathBufferValid的次数 + int cnt = 0; + bool isValid = impl->getMotionControl()->pathBufferValid("rec"); + + while (!isValid) { + if (cnt++ > max_retry_count) { + return -1; + } + isValid = impl->getMotionControl()->pathBufferValid("rec"); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + return 0; +} + +int runTraj(RpcClientPtr rpc, const std::string &traj_name, + const std::string &record_name) +{ + // 读取轨迹文件 + auto filename = traj_name; + TrajectoryIo input(filename.c_str()); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0" << std::endl; + return 0; + } else { + std::cout << " 加载的路点数量为: " << traj.size() << std::endl; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc->getRobotNames().front(); + + auto robot_interface = rpc->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(traj[0], 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启规划器运行 + rpc->getRuntimeMachine()->start(); + auto cur_plan_context = rpc->getRuntimeMachine()->getPlanContext(); + // 接口调用: 获取新的线程id + auto task_id = rpc->getRuntimeMachine()->newTask(); + rpc->getRuntimeMachine()->setPlanContext( + task_id, std::get<1>(cur_plan_context), std::get<2>(cur_plan_context)); + + // 接口调用: 清除缓存"rec" + robot_interface->getMotionControl()->pathBufferFree("rec"); + + // 接口调用: 新建一个缓存"rec",并指定轨迹运动类型和轨迹点数量 + robot_interface->getMotionControl()->pathBufferAlloc("rec", 2, traj_sz); + + // 将轨迹文件中的路点分组添加到路径缓存中, + // 以10个点为1组, + // 如果未添加的路点数量小于或者等于10时,则作为最后一组来添加 + size_t offset = 10; + auto it = traj.begin(); + while (true) { + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, it + 10 }); + it += 10; + if (offset + 10 >= traj_sz) { + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, traj.end() }); + break; + } + + offset += 10; + } + + // 轨迹文件中的采样间隔 + double interval = 0.005; + // double interval = 0.02; + + // 接口调用: 计算、优化等耗时操作,来对轨迹进行优化 + robot_interface->getMotionControl()->pathBufferEval("rec", {}, {}, + interval); + + // 判断路径缓存是否有效 + if (isBufferValid(robot_interface) == -1) { + std::cerr << "路径缓存无效,无法进行轨迹运动" << std::endl; + } else { + robot_interface->getRobotManage()->startRecord(record_name); + // 接口调用: 执行轨迹运动 + robot_interface->getMotionControl()->movePathBuffer("rec"); + + // 等待轨迹运动完成 + ret = waitArrival(rpc->getRobotInterface(robot_name)); + if (ret == -1) { + std::cerr << "轨迹运动失败" << std::endl; + } else { + std::cout << "轨迹运动结束" << std::endl; + } + } + robot_interface->getRobotManage()->stopRecord(); + // 接口调用: 停止规划器运行 + rpc->getRuntimeMachine()->stop(); + // 接口调用: 删除线程 + rpc->getRuntimeMachine()->deleteTask(task_id); +} + +#define LOCAL_IP "192.168.1.15" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + auto robot_name = rpc->getRobotNames().front(); + + auto robot_interface = rpc->getRobotInterface(robot_name); + + // 设置滤波参数 + std::stringstream ss; + ss << "[filter_freq]" << std::endl; + ss << " vel_filter_freq = [100, 100, 100, 100, 100, 100]" << std::endl; + ss << " acc_filter_freq = [100, 100, 100, 100, 100, 100]" << std::endl; + ss << " curr_filter_freq = [100, 100, 100, 100, 100, 100]" << std::endl; + robot_interface->getRobotConfig()->setHardwareCustomParameters(ss.str()); + + // 设置负载参数 + robot_interface->getRobotConfig()->setPayload( + 4.1768, { 0, 0.1411, 0.0541 }, {}, + { 0.1114, 0, 0, 0.0312, 0.0363, 0.1125 }); + + // 机器人序列号 + std::string robot_serial = "AB1115312D000083"; + + // 轨迹名字 + std::string filename1 = "1_低速"; + std::cout << "开始轨迹: " << filename1 << std::endl; + + // 开始运行轨迹 + runTraj(rpc, "../trajs/collision_traj/" + filename1 + ".csv", + robot_serial + "_" + filename1 + ".csv"); + + std::string filename2 = "2_中速"; + std::cout << "开始轨迹: " << filename2 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename2 + ".csv", + robot_serial + "_" + filename2 + ".csv"); + + std::string filename3 = "3_高速"; + std::cout << "开始轨迹: " << filename3 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename3 + ".csv", + robot_serial + "_" + filename3 + ".csv"); + + std::string filename4 = "4_低加速度"; + std::cout << "开始轨迹: " << filename4 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename4 + ".csv", + robot_serial + "_" + filename4 + ".csv"); + + std::string filename5 = "5_中加速度"; + std::cout << "开始轨迹: " << filename5 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename5 + ".csv", + robot_serial + "_" + filename5 + ".csv"); + + std::string filename6 = "6_大加速度"; + std::cout << "开始轨迹: " << filename6 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename6 + ".csv", + robot_serial + "_" + filename6 + ".csv"); + + std::string filename7 = "7_恒低速"; + std::cout << "开始轨迹: " << filename7 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename7 + ".csv", + robot_serial + "_" + filename7 + ".csv"); + + std::string filename8 = "8_恒中速"; + std::cout << "开始轨迹: " << filename8 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename8 + ".csv", + robot_serial + "_" + filename8 + ".csv"); + + std::string filename9 = "9_恒高速"; + std::cout << "开始轨迹: " << filename9 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename9 + ".csv", + robot_serial + "_" + filename9 + ".csv"); + + std::string filename11 = "11_trajectory_vel2_acc5"; + std::cout << "开始轨迹: " << filename11 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename11 + ".txt", + robot_serial + "_" + filename11 + ".csv"); + + std::string filename12 = "12_trajectory_vel2_acc20"; + std::cout << "开始轨迹: " << filename12 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename12 + ".txt", + robot_serial + "_" + filename12 + ".csv"); + + std::string filename13 = "13_trajectory_vel2_acc30"; + std::cout << "开始轨迹: " << filename13 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename13 + ".txt", + robot_serial + "_" + filename13 + ".csv"); + + std::string filename14 = "14_trajectory_vel2.2_acc10"; + std::cout << "开始轨迹: " << filename14 << std::endl; + runTraj(rpc, "../trajs/collision_traj/" + filename14 + ".txt", + robot_serial + "_" + filename14 + ".csv"); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_extract_data.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_extract_data.cpp new file mode 100644 index 00000000..1b70cb7b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_extract_data.cpp @@ -0,0 +1,258 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +// 读取txt文件,查找关键词并提取数据 +std::vector findKeyword(std::vector data, + std::string waypoint) { + // 读取轨迹文件 + std::ifstream in("../trajs/path1.txt"); + // 目标关键词 + std::string target_keyword; + target_keyword = waypoint; + // 存储读取的一行文本 + std::string line; + // 清空传入的数据向量 + data.clear(); + // 逐行读取文件内容 + while (std::getline(in, line)) { + // 检查当前行是否包含目标关键词 + if (line.find(target_keyword) != std::string::npos) { + // 定位方括号内的内容 + int start = line.find("[") + 1; + int end = line.find("]"); + std::string first_group = line.substr(start, end - start); + // 定义分隔符 + std::string delimiter = ","; + // 初始化字符串查找位置 + size_t pos = 0; + // 用于存储分隔后的数据的字符串 + std::string token; + // 循环分隔字符串并将其转换为浮点数存储在数据向量中 + while ((pos = first_group.find(delimiter)) != std::string::npos) { + token = first_group.substr(0, pos); + // 对vector的容量进行限制,防止其因为关键词的定位导致输入数据超过6个 + if (data.size() < 6) { + data.push_back(std::stod(token)); + } + // 删除已处理的部分 + first_group.erase(0, pos + delimiter.length()); + } + // 处理剩余的数据 + if (data.size() < 6) { + data.push_back(std::stod(first_group)); + } + } + } + return data; +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + std::vector initial, pre_pick, pick, sleep, post_pick, home_1, + pre_place, slide, place, slide_back, post_place, home_2; + initial = findKeyword(initial, "initial"); + pre_pick = findKeyword(pre_pick, "pre_pick (MoveJ)"); + + pick = findKeyword(pick, "pick (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> pick_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(pick); + + post_pick = findKeyword(post_pick, "post_pick (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> post_pick_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(post_pick); + + home_1 = findKeyword(home_1, "home_1 (MoveJ)"); + pre_place = findKeyword(pre_place, "pre_place (MoveJ)"); + + slide = findKeyword(slide, "slide (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> slide_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(slide); + + place = findKeyword(place, "place (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> place_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(place); + + slide_back = findKeyword(slide_back, "slide_back (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> slide_back_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(slide_back); + + post_place = findKeyword(post_place, "post_place (MoveL)"); + // 接口调用: 正解获取位姿 + std::tuple, int> post_place_pose_data = + robot_interface->getRobotAlgorithm()->forwardKinematics(post_place); + + home_2 = findKeyword(home_2, "home_2 (MoveJ)"); + + std::vector in_point = initial; + std::vector p1 = pre_pick; + std::vector p2 = std::get<0>(pick_pose_data); + p2[2] = p2[2] + 0.112; + std::vector p3 = std::get<0>(post_pick_pose_data); + p3[2] = p2[2] + 0.112; + std::vector p4 = home_1; + std::vector p5 = pre_place; + std::vector p6 = std::get<0>(slide_pose_data); + p6[2] = p6[2] + 0.112; + std::vector p7 = std::get<0>(place_pose_data); + p7[2] = p7[2] + 0.112; + std::vector p8 = std::get<0>(slide_back_pose_data); + p8[2] = p8[2] + 0.112; + std::vector p9 = std::get<0>(post_place_pose_data); + p9[2] = p9[2] + 0.112; + std::vector p10 = home_2; + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint(in_point, 80 * (M_PI / 180), + + 60 * (M_PI / 180), 0., 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "Init finish " << std::endl; + + printf("goto the first point\n"); + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint(p1, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0., 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the first point " << std::endl; + + printf("goto the second point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p2, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the second point " << std::endl; + + // sleep for 0.5s + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + std::cout << "SlEEP FOR 0.5S" << std::endl; + + printf("goto the third point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p3, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the third point " << std::endl; + + printf("goto the fourth point\n"); + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint(p4, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0., 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the fourth point " << std::endl; + + printf("goto the fifth point\n"); + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint(p5, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the fifth point " << std::endl; + + printf("goto the sixth point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p6, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the sixth point " << std::endl; + + printf("goto the seventh point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p7, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the seventh point " << std::endl; + + // sleep for 0.5s + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + std::cout << "SlEEP FOR 0.5S" << std::endl; + + printf("goto the eighth point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p8, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the eighth point " << std::endl; + + printf("goto the ninth point\n"); + // 接口调用: 直线运动 + robot_interface->getMotionControl()->moveLine(p9, 1.2, 0.25, 0.025, 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the ninth point " << std::endl; + + printf("goto the tenth point\n"); + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint(in_point, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0., 0.); + // 阻塞 + waitArrival(robot_interface); + std::cout << "reach the tenth point " << std::endl; + std::cout << "Finish the test " << std::endl; + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble.cpp new file mode 100644 index 00000000..c9fc55ec --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble.cpp @@ -0,0 +1,926 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif +#include "thread" +#include + +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define EMBEDDED + +#define INF 99999 + +std::mutex rtde_mtx_; +bool cond_fullfiled_ = false; +std::vector tcp_pose_(6, 0.); +std::vector tcp_force_(6, 0.); +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +inline bool equal(const std::vector &q1, const std::vector &q2, + double eps = 0.002) +{ + if (q1.size() && (q1.size() == q2.size())) { + for (unsigned int i = 0; i < q1.size(); i++) { + if (std::abs(q1[i] - q2[i]) > eps) { + return false; + } + } + return true; + } + return false; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + try { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } catch (std::exception &e) { + } + } + return os; +} + +void tcpSensorTest(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + while (1) { + std::cout << "------------------------------------------" << std::endl; + auto sensor_data = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "force sensor: " << sensor_data << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + auto curr_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + auto payload = + cli->getRobotInterface(robot_name)->getRobotConfig()->getPayload(); + std::cout << "mass: " << std::get<0>(payload) + << " cog: " << std::get<1>(payload) << std::endl; + auto result = + cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->calibrateTcpForceSensor({ sensor_data }, { curr_pose }); + + std::cout << "force offset: " << std::get<0>(result) << std::endl; + std::cout << "------------------------------------------" << std::endl; + } +} + +/** + * @brief condFullfiled 判断力控终止条件是否满足 + * @param timeout 时间限制,如果时间超过timeout,条件未满足,则返回-1; + * 如果timeout=-1,则不对时间进行限制 + * @param target_pose 到达目标点后,条件依然没有满足,则返回 0; + * 如果target_pose={},则不对目标点进行判断 + * + * @param is_use_condfull 是否设置力控条件, 默认设置; + * @return 条件满足返回1;到位后条件不满足返回0;超时返回-1; + * 若timeout=-1,target_pose={},该函数一直阻塞,直到满足条件后退出 + */ +int condFullfiled(double timeout, std::vector target_pose, + bool is_use_condfull = true) +{ + int ret = 0; + int cnt = 0; + cond_fullfiled_ = false; + while (true) { + if (cond_fullfiled_ && is_use_condfull) { + std::cout << "力控条件满足 !" << std::endl; + + ret = 1; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(2)); + if ((timeout > 0) && (cnt++ > timeout * 500)) { + std::cout << "条件等待超时 !" << std::endl; + ret = -1; + break; + } + if ((target_pose.size() == 6) && equal(target_pose, tcp_pose_)) { + std::cout << "机械臂已到位 !" << std::endl; + ret = 0; + break; + } + } + return ret; +} + +/** + * @brief locateZ z方向定位 + * 通过判断z方向力的变化是否超过一定阈值,通过setCondForce实现 + * @param cli + */ +int locateZ(RpcClientPtr cli) +{ + // 力控参数 + // std::vector locate_z_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 + // }; std::vector locate_z_D = { + // 300.0, 250.0, 200.0, 100.0, 100.0, 100.0 + // }; + // std::vector locate_z_K = { + // 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 + // }; + // 阻尼 0-1 + std::vector locate_z_D = { 0.8, 0.8, 0.8, 0.8, 0.8, 0.8 }; + // 刚度 0-1 + std::vector locate_z_K = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + //力控开启方向 + std::vector locate_z_enable = { + true, true, true, false, false, false + }; + // 目标力 + std::vector locate_z_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 探寻距离 + std::vector seeking_distance = { 0.0, 0.0, -0.02, 0.0, 0.0, 0.0 }; + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + // 末端力条件,INF为一个非常大的数值,[-INF,INF]可以认为范围非常大,忽略该方向的监控 + std::vector min_force = { -INF, -INF, -INF, -INF, -INF, -INF }; + std::vector max_force = { INF, INF, 5.0, INF, INF, INF }; + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + // cli->getRobotInterface(robot_name) + // ->getForceControl() + // ->setDynamicModel(locate_z_M, locate_z_D, locate_z_K); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModelSearch(locate_z_D, locate_z_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, locate_z_enable, locate_z_goal_wrench, + speed_limits, frame_type); + // 设置力的监控条件 + double timeout = 1000; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondForce(min_force, max_force, true, timeout); + // 获取当前tcp位置 + auto current_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + // 计算探寻终止位置 + std::vector target_pose(6, 0.); + for (int i = 0; i < 6; i++) { + target_pose[i] = current_pose[i] + seeking_distance[i]; + } + + // 直线运动 + double v = 0.0025, a = 4.0; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(target_pose, a, v, 0, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(-1, target_pose); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + return ret; +} + +/** + * @brief insertDetect 判断螺栓是否插入孔中,前后动两次,两次全部接触认为插入孔中 + * @param cli + * @return + */ +int insertDetect(RpcClientPtr cli) +{ + // 力控参数 + std::vector insert_detect_M = { + 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 + }; + std::vector insert_detect_D = { 1000.0, 1000.0, 500.0, + 100.0, 100.0, 100.0 }; + std::vector insert_detect_K = { 500.0, 500.0, 500.0, + 100.0, 100.0, 100.0 }; + + //力控开启方向 + std::vector insert_detect_enable = { true, true, false, + false, false, false }; + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(insert_detect_M, insert_detect_D, insert_detect_K); + + // 目标力 + std::vector insert_detect_goal_wrench = { -8.0, 0.0, 0.0, + 0.0, 0.0, 0.0 }; + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_detect_enable, + insert_detect_goal_wrench, speed_limits, frame_type); + + double min_force = -INF; + double max_force = 5.0; + std::vector select = { 1., 1., 0., 0., 0., 0. }; + double timeout = -1; + double count = 3.; + double outside = 1; + std::vector args; + args.insert(args.end(), min_force); + args.insert(args.end(), max_force); + args.insert(args.end(), select.begin(), select.end()); + args.insert(args.end(), count); + args.insert(args.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForce", args, timeout); + + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(3, {}); + if (ret < 0) { + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; + } else { + std::cout << "插入检测: 正向接触成功!" << std::endl; + } + // 目标力 + insert_detect_goal_wrench = { 8.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 开始反向接触 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_detect_enable, + insert_detect_goal_wrench, speed_limits, frame_type); + ret = condFullfiled(3, {}); + if (ret < 0) { + std::cout << "插入失败, 插入检测结束!" << std::endl; + return ret; + } else { + std::cout << "插入检测: 反向接触成功!" << std::endl; + } + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +/** + * @brief locateXY 定位螺栓位置,在xy平面走螺旋轨迹 + * @param cli + * @return + */ +int locateXY(RpcClientPtr cli) +{ + // 力控参数 + // std::vector locate_xy_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 + // }; std::vector locate_xy_D = { 1000.0, 1000.0, 500.0, + // 100.0, 100.0, 100.0 }; + // std::vector locate_xy_K = { + // 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 + // }; + // 阻尼 0-1 + std::vector locate_z_D = { 0.8, 0.8, 0.8, 0.8, 0.8, 0.8 }; + // 刚度 0-1 + std::vector locate_z_K = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + + //力控开启方向 + std::vector locate_xy_enable = { + true, true, true, false, false, false + }; + // 目标力 + std::vector locate_xy_goal_wrench = { + 0.0, 0.0, -20.0, 0.0, 0.0, 0.0 + }; + + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + // cli->getRobotInterface(robot_name) + // ->getForceControl() + // ->setDynamicModel(locate_xy_M, locate_xy_D, locate_xy_K); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModelSearch(locate_z_D, locate_z_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, locate_xy_enable, locate_xy_goal_wrench, + speed_limits, frame_type); + double min_force = -INF; + double max_force = 8.0; + std::vector select = { 1., 0., 0., 0., 0., 0. }; + double timeout = -1; + double count = 1.; + double outside = 1; + std::vector args_x; + args_x.insert(args_x.end(), min_force); + args_x.insert(args_x.end(), max_force); + args_x.insert(args_x.end(), select.begin(), select.end()); + args_x.insert(args_x.end(), count); + args_x.insert(args_x.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForce", args_x, timeout); + + select = { 0., 1., 0., 0., 0., 0. }; + std::vector args_y; + args_y.insert(args_y.end(), min_force); + args_y.insert(args_y.end(), max_force); + args_y.insert(args_y.end(), select.begin(), select.end()); + args_y.insert(args_y.end(), count); + args_y.insert(args_y.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForce", args_y, timeout); + + SpiralParameters spiral; + spiral.spiral = 0.002; // 螺旋线步长 + spiral.helix = 0.; // 平面螺旋 + spiral.angle = 5 * 2 * M_PI; // 旋转5圈 + spiral.plane = 0; + double radius = 0.001; // 螺旋线第一圈半径 + + spiral.frame = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + + // 计算螺旋轨迹中心点 + spiral.frame[0] = + std::sqrt(2) * radius / 2 + spiral.frame[0]; //计算螺旋线半径参考点 + spiral.frame[1] = std::sqrt(2) * radius / 2 + spiral.frame[1]; + double v = 0.015, a = 0.2; + // 螺旋运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpiral(spiral, 0, v, a, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(10, {}); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +/** + * @brief calBoltPose 计算螺栓位置 + * @param cli + * @param bolt_len 螺栓长度 + * @return + */ +std::vector calBoltPose(RpcClientPtr cli, double bolt_len) +{ + double max_force = 8.0; + double diameter = 0.008; // 螺栓直径 + auto robot_name = cli->getRobotNames().front(); + auto tcp_wrench = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpForce(); + std::vector bolt_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + + if ((fabs(tcp_wrench[0]) > max_force) && + (fabs(tcp_wrench[1]) < max_force)) { + // x方向力>limi,cht,y方向 max_force)) { + // x方向力limit,向y方向移动 + bolt_pose[1] = + bolt_pose[1] - (tcp_wrench[1] / fabs(tcp_wrench[1])) * diameter; + + } else if ((fabs(tcp_wrench[0]) > max_force) && + (fabs(tcp_wrench[1]) > max_force)) { + // x方向力>limit,y方向>limit,向xy复合方向移动 + double contact_force = std::sqrt(tcp_wrench[0] * tcp_wrench[0] + + tcp_wrench[1] * tcp_wrench[1]); + bolt_pose[0] = + bolt_pose[0] - (tcp_wrench[0] / contact_force) * diameter; + bolt_pose[1] = + bolt_pose[1] - (tcp_wrench[1] / contact_force) * diameter; + } + bolt_pose[2] = bolt_pose[2] + bolt_len; + return bolt_pose; +} + +/** + * @brief moveToBoltPose 移动到螺栓上方 + * @param cli + * @param bolt_pose 螺栓位置 + * @param bolt_len 螺栓长度 + * @return + */ +int moveToBoltPose(RpcClientPtr cli, std::vector &bolt_pose, + double bolt_len) + +{ + // 力控参数 + std::vector move_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector move_D = { 300.0, 250.0, 200.0, 100.0, 100.0, 100.0 }; + std::vector move_K = { 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 }; + //力控开启方向 + std::vector move_fc_enable = { + true, true, false, false, false, false + }; + // 目标力 + std::vector move_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(move_M, move_D, move_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, move_fc_enable, move_goal_wrench, + speed_limits, frame_type); + double v = 0.02, a = 4.0; + std::vector trans_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + trans_pose[2] = trans_pose[2] + bolt_len; + // 移动至过渡点 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(trans_pose, a, v, 0, 0); + + // 先调用运动接口,在开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + waitArrival(cli->getRobotInterface(robot_name)); + // 移动至螺栓上方 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(bolt_pose, a, v, 0, 0); + waitArrival(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + std::this_thread::sleep_for(std::chrono::milliseconds(30)); + return 0; +} + +/** + * @brief seekZ z方向探寻, 在螺栓上方,向下探寻 + * @return + */ +/* +int seekZ(RpcClientPtr cli) +{ + std::vector seek_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector seek_D = { 300.0, 300.0, 500.0, 100.0, 100.0, 100.0 }; + std::vector seek_K = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector seek_fc_enable = { + false, false, true, false, false, false + }; + std::vector seek_goal_wrench = { 0.0, 0.0, 5.0, 0.0, 0.0, 0.0 }; + std::vector seek_force_threshold = { 1.0, 1.0, 1.0, 0.1, 0.1, 0.1 }; + + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(seek_M, seek_D, seek_K); + + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, seek_fc_enable, seek_goal_wrench, + speed_limits, frame_type); + + double min_force = -INF; + double max_force = fabs(seek_goal_wrench[2]) - 2.0; + std::vector select = { 0., 0., 1., 0., 0., 0. }; + double timeout = -1; + double count = 5.; + double outside = 1; + std::vector args; + args.insert(args.end(), min_force); + args.insert(args.end(), max_force); + args.insert(args.end(), select.begin(), select.end()); + args.insert(args.end(), count); + args.insert(args.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForce", args, timeout); + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(5, {}); + if (ret < 0) { + std::cout << "z方向探寻失败, 未找到螺栓!" << std::endl; + } else { + std::cout << "z方向探寻成功!" << std::endl; + } + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} +*/ + +int searchXY(RpcClientPtr cli) +{ + // std::vector search_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + // std::vector search_D = { 600.0, 500.0, 500.0, 200.0, 200.0, + // 200.0 }; std::vector search_K = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + // }; + + // 阻尼 0-1 + std::vector locate_z_D = { 0.8, 0.8, 0.8, 0.8, 0.8, 0.8 }; + // 刚度 0-1 + std::vector locate_z_K = { 0.8, 0.8, 0.1, 0.1, 0.1, 0.1 }; + std::vector search_fc_enable = { + false, false, true, false, false, false, + }; + std::vector search_goal_wrench = { 0.0, 0.0, -25.0, 0.0, 0.0, 0.0 }; + auto robot_name = cli->getRobotNames().front(); + // 力控坐标系选择 基坐标系 + std::vector feature = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + TaskFrameType frame_type = TaskFrameType::FRAME_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + // 设置力阈值 + std::vector threshold = { 5., 5., 15., 1., 1., 1. }; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->fcSetSensorThresholds(threshold); + // 设置力控参数 + // cli->getRobotInterface(robot_name) + // ->getForceControl() + // ->setDynamicModel(search_M, search_D, search_K); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModelSearch(locate_z_D, locate_z_K); + + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, search_fc_enable, search_goal_wrench, + speed_limits, frame_type); + + double min_force = 0; + double max_force = 6; + std::vector select = { 0., 0., 1., 0., 0., 0. }; + double timeout = -1; + double count = 3.; + double outside = 0; + std::vector args_x; + args_x.insert(args_x.end(), min_force); + args_x.insert(args_x.end(), max_force); + args_x.insert(args_x.end(), select.begin(), select.end()); + args_x.insert(args_x.end(), count); + args_x.insert(args_x.end(), outside); + // z方向受力突然变小,认为搜到螺孔 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForce", args_x, timeout); + // 下探2mm,认为搜到螺孔 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondDistance(0.002, -1); + SpiralParameters spiral; + spiral.spiral = 0.001; // 螺旋线步长 + spiral.helix = 0.; // 平面螺旋 + spiral.angle = 10 * 2 * M_PI; // 旋转10圈 + spiral.plane = 0; + double radius = 0.002; // 螺旋线第一圈半径 + + spiral.frame = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + // 计算螺旋轨迹中心点 + spiral.frame[0] = + std::sqrt(2) * radius / 2 + spiral.frame[0]; //计算螺旋线半径参考点 + spiral.frame[1] = std::sqrt(2) * radius / 2 + spiral.frame[1]; + double v = 0.002, a = 0.1; + // 螺旋运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpiral(spiral, 0, v, a, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + + auto ret = condFullfiled(60, {}); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + std::this_thread::sleep_for(std::chrono::milliseconds(30)); + return ret; +} + +int insertZ(RpcClientPtr cli) +{ + std::vector insert_M = { 0.8, 0.8, 0.8, 0.8, 0.8, 0.8 }; + std::vector insert_D = { 0.8, 0.8, 0.8, 0.8, 0.8, 0.8 }; + + std::vector insert_fc_enable = { true, true, true, true, true, true }; + std::vector insert_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector insert_depth = { 0.0, 0.0, -0.05, 0.0, 0.0, 0.0 }; + // 力控坐标系选择 基坐标系 + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + // cli->getRobotInterface(robot_name) + // ->getForceControl() + // ->setDynamicModel(insert_M, insert_D, insert_K); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModelInsert(insert_M, insert_D); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_fc_enable, insert_goal_wrench, + speed_limits, frame_type); + // 获取当前tcp位置 + auto current_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + + std::vector cylinder_center = { current_pose[0], current_pose[1], + current_pose[2] + insert_depth[2] }; + + double radius_ = 1000.; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondCylinder(cylinder_center, radius_, true, -1); + + // 计算插入终止位置 + std::vector target_pose(6, 0.); + for (int i = 0; i < 6; i++) { + target_pose[i] = current_pose[i] + insert_depth[i]; + } + // 直线运动 + double v = 0.0025, a = 4.0; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(target_pose, a, v, 0, 0); + + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + + auto ret = condFullfiled(20, target_pose, false); + + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +int example(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + // 设置TCP偏移 + std::vector tcp_pose = { 0, 0, 0.1, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_pose); + + // 需要标定负载 + // double mass = 0.542767; + // std::vector com = { 0.00650296, -0.000310792, 0.0199925 }; + // // 力传感器偏移需要根据实际情况设置 + // std::vector force_offset = { 13.0463, -11.9162, -33.9405, + // 0.168684, -1.07947, 0.403233 }; + + double mass = 0; + std::vector com = { 0.0, 0.00, 0.0 }; + // 力传感器偏移 + std::vector force_offset = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + // 设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass, com, { 0. }, { 0. }); + + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(force_offset); + + // 需设置开启点位,移到工装上方15mm处 + std::vector q = { -20.43 / 180 * M_PI, -22.89 / 180 * M_PI, + 106.75 / 180 * M_PI, 39.65 / 180 * M_PI, + 89.67 / 180 * M_PI, 111.68 / 180 * M_PI }; + + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + + // 设置力阈值 + std::vector threshold = { 3., 3., 10., 1., 1., 1. }; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->fcSetSensorThresholds(threshold); + // 两次重试机会 + for (int i = 0; i < 2; i++) { + if (locateZ(cli) > 0) { + std::cout << "定位到螺栓,开始xy平面搜索螺孔位置" << std::endl; + if (searchXY(cli) > 0) { + std::cout << "条件满足,开始插入" << std::endl; + + if (insertZ(cli) < 0) { + std::cout << "插入超时,请检查是否插入,或调整等待时间" + << std::endl; + } else { + std::cout << "插入已完成,结束程序" << std::endl; + } + return 0; + + } else { + std::cout << "搜索超时, 退出搜索, 回到起点" << std::endl; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, + 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + continue; + } + } else { + std::cout << "探寻距离已到, 未定位到螺栓, 确认是否插入" + << std::endl; + if (insertDetect(cli) > 0) { + std::cout << "检测到已插入, 开始插入动作" << std::endl; + if (insertZ(cli) < 0) { + std::cout << "插入超时, 请检查是否插入, 或调整等待时间" + << std::endl; + } else { + std::cout << "插入已完成, 结束程序" << std::endl; + } + return 0; + } else { + std::cout << "检测到未插入, 开始xy平面定位螺栓位置" + << std::endl; + if (locateXY(cli) < 0) { + std::cout << "搜索超时, 未定位到螺栓, 结束搜索,回到起点" + << std::endl; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, + 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + continue; + } else { + auto bolt_pose = calBoltPose(cli, 0.015); + std::cout << "定位到螺栓, 螺栓位置为: " << bolt_pose + << std::endl; + moveToBoltPose(cli, bolt_pose, 0.015); + std::cout << "移动到螺栓上方" << std::endl; + } + } + } + } +} + +#define LOCAL_IP "172.17.41.91" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置话题, 力控条件,tcp位置,tcp力 + int topic = rtde_cli->setTopic( + false, + { "R1_fc_cond_fullfiled", "R1_actual_TCP_pose", "R1_actual_TCP_force" }, + 200, 1); + // 接口调用: 订阅 + rtde_cli->subscribe(topic, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + cond_fullfiled_ = parser.popBool(); + tcp_pose_ = parser.popVectorDouble(); + tcp_force_ = parser.popVectorDouble(); + }); + + example(rpc); + // searchXY(rpc); + /* 测试力传感器数据 */ + // tcpSensorTest(rpc); + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble_usercoord.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble_usercoord.cpp new file mode 100644 index 00000000..145145bd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_fc_assemble_usercoord.cpp @@ -0,0 +1,908 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif +#include "thread" +#include + +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define EMBEDDED + +#define INF 99999 + +std::mutex rtde_mtx_; +bool cond_fullfiled_ = false; +std::vector tcp_pose_(6, 0.); +std::vector tcp_force_(6, 0.); +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + try { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } catch (std::exception &e) { + } + } + return os; +} + +inline bool equal(const std::vector &q1, const std::vector &q2, + double eps = 0.001) +{ + // std::cout << "q1: " << q1 << std::endl; + // std::cout << "q2: " << q2 << std::endl; + if (q1.size() && (q1.size() == q2.size())) { + for (unsigned int i = 0; i < q1.size(); i++) { + if (std::abs(q1[i] - q2[i]) > eps) { + return false; + } + } + return true; + } + return false; +} + +void tcpSensorTest(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + while (1) { + std::cout << "------------------------------------------" << std::endl; + auto sensor_data = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "force sensor: " << sensor_data << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + auto curr_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + auto payload = + cli->getRobotInterface(robot_name)->getRobotConfig()->getPayload(); + std::cout << "mass: " << std::get<0>(payload) + << " cog: " << std::get<1>(payload) << std::endl; + auto result = + cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->calibrateTcpForceSensor({ sensor_data }, { curr_pose }); + + std::cout << "force offset: " << std::get<0>(result) << std::endl; + std::cout << "------------------------------------------" << std::endl; + } +} + +/** + * @brief condFullfiled 判断力控终止条件是否满足 + * @param timeout 时间限制,如果时间超过timeout,条件未满足,则返回-1; + * 如果timeout=-1,则不对时间进行限制 + * @param target_pose 到达目标点后,条件依然没有满足,则返回 0; + * 如果target_pose={},则不对目标点进行判断 + * + * @return 条件满足返回1;到位后条件不满足返回0;超时返回-1; + * 若timeout=-1,target_pose={},该函数一直阻塞,直到满足条件后退出 + */ +int condFullfiled(double timeout, std::vector target_pose) +{ + int ret = 0; + int cnt = 0; + + while (!cond_fullfiled_) { + std::this_thread::sleep_for(std::chrono::milliseconds(2)); + if ((timeout > 0) && (cnt++ > timeout * 500)) { + std::cout << "条件等待超时 !" << std::endl; + ret = -1; + break; + } + if ((target_pose.size() == 6) && equal(target_pose, tcp_pose_)) { + std::cout << "机械臂已到位 !" << std::endl; + ret = 0; + break; + } + } + if (cond_fullfiled_) { + // 条件满足, z方向探寻结束 + ret = 1; + } + return ret; +} + +/** + * @brief locateZ z方向定位 + * 通过判断z方向力的变化是否超过一定阈值,通过setCondForce实现 + * @param cli + */ +int locateZ(RpcClientPtr cli, const double bolt_len, + const std::vector &usercoord_in_tcp) +{ + // 力控参数 + std::vector locate_z_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector locate_z_D = { + 300.0, 250.0, 200.0, 100.0, 100.0, 100.0 + }; + std::vector locate_z_K = { + 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 + }; + //力控开启方向 + std::vector locate_z_enable = { + true, true, true, false, false, false + }; + // 目标力 + std::vector locate_z_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 基于usercoord 描述的探寻距离 + std::vector seeking_distance = { + 0.0, 0.0, bolt_len, 0.0, 0.0, 0.0 + }; + // 力控坐标系选择 基坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(locate_z_M, locate_z_D, locate_z_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, locate_z_enable, locate_z_goal_wrench, + speed_limits, frame_type); + double min_force = -INF; + double max_force = 5.0; + std::vector select = { 0, 0., 1., 0., 0., 0. }; + std::vector feature1 = usercoord_in_tcp; + double type = static_cast(TaskFrameType::TOOL_FORCE); + double timeout = -1; + double count = 1.; + double outside = 1; + + std::vector args; + args.insert(args.end(), min_force); + args.insert(args.end(), max_force); + args.insert(args.end(), select.begin(), select.end()); + args.insert(args.end(), feature1.begin(), feature1.end()); + args.insert(args.end(), type); + args.insert(args.end(), count); + args.insert(args.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args, timeout); + + // 获取当前tcp位置 + auto tcp_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + std::vector usercoord_in_base = + cli->getMath()->poseTrans(tcp_pose, usercoord_in_tcp); + + auto tcp_in_usercoord = cli->getMath()->poseInverse(usercoord_in_tcp); + std::vector target_pose_in_usercoord(6, 0.); + for (int i = 0; i < 6; i++) { + target_pose_in_usercoord[i] = tcp_in_usercoord[i] + seeking_distance[i]; + } + auto target_pose_in_base = + cli->getMath()->poseTrans(usercoord_in_base, target_pose_in_usercoord); + // 直线运动 + double v = 0.0025, a = 4.0; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(target_pose_in_base, a, v, 0, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(3, target_pose_in_base); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + + return ret; +} + +/** + * @brief insertDetect 判断螺栓是否插入孔中,前后动两次,两次全部接触认为插入孔中 + * @param cli + * @return + */ +int insertDetect(RpcClientPtr cli, const std::vector &usercoord_in_tcp) +{ + // 力控参数 + std::vector insert_detect_M = { + 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 + }; + std::vector insert_detect_D = { 1000.0, 1000.0, 500.0, + 100.0, 100.0, 100.0 }; + std::vector insert_detect_K = { 500.0, 500.0, 500.0, + 100.0, 100.0, 100.0 }; + //力控开启方向 + std::vector insert_detect_enable = { true, true, false, + false, false, false }; + // 力控坐标系选择 基坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::NONE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(insert_detect_M, insert_detect_D, insert_detect_K); + + // 目标力 + std::vector insert_detect_goal_wrench = { -8.0, 0.0, 0.0, + 0.0, 0.0, 0.0 }; + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_detect_enable, + insert_detect_goal_wrench, speed_limits, frame_type); + + double min_force = -INF; + double max_force = 5.0; + std::vector select = { 1., 1., 0., 0., 0., 0. }; + std::vector feature1 = usercoord_in_tcp; + double type = static_cast(TaskFrameType::TOOL_FORCE); + double timeout = -1; + double count = 3.; + double outside = 1; + + std::vector args; + args.insert(args.end(), min_force); + args.insert(args.end(), max_force); + args.insert(args.end(), select.begin(), select.end()); + args.insert(args.end(), feature1.begin(), feature1.end()); + args.insert(args.end(), type); + args.insert(args.end(), count); + args.insert(args.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args, timeout); + + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(1, {}); + if (ret < 0) { + std::cout << "插入失败, 插入检测结束!" << std::endl; + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; + } else { + std::cout << "插入检测: 正向接触成功!" << std::endl; + } + + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + // 目标力 + insert_detect_goal_wrench = { 8.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 开始反向接触 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_detect_enable, + insert_detect_goal_wrench, speed_limits, frame_type); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args, timeout); + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + ret = condFullfiled(1, {}); + if (ret < 0) { + std::cout << "插入失败, 插入检测结束!" << std::endl; + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; + } else { + std::cout << "插入检测: 反向接触成功!" << std::endl; + } + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +/** + * @brief locateXY 定位螺栓位置,在xy平面走螺旋轨迹 + * @param cli + * @return + */ +int locateXY(RpcClientPtr cli, const std::vector &usercoord_in_tcp) +{ + // 力控参数 + std::vector locate_xy_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector locate_xy_D = { 1000.0, 1000.0, 500.0, + 100.0, 100.0, 100.0 }; + std::vector locate_xy_K = { + 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 + }; + + //力控开启方向 + std::vector locate_xy_enable = { + true, true, true, false, false, false + }; + // 目标力 + std::vector locate_xy_goal_wrench = { + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + }; + + // 力控坐标系选择 工具坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(locate_xy_M, locate_xy_D, locate_xy_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, locate_xy_enable, locate_xy_goal_wrench, + speed_limits, frame_type); + double min_force = -INF; + double max_force = 10.0; + std::vector select = { 1., 0., 0., 0., 0., 0. }; + std::vector feature1 = usercoord_in_tcp; + double type = static_cast(TaskFrameType::TOOL_FORCE); + double timeout = -1; + double count = 1.; + double outside = 1; + std::vector args_x; + args_x.insert(args_x.end(), min_force); + args_x.insert(args_x.end(), max_force); + args_x.insert(args_x.end(), select.begin(), select.end()); + args_x.insert(args_x.end(), feature1.begin(), feature1.end()); + args_x.insert(args_x.end(), type); + args_x.insert(args_x.end(), count); + args_x.insert(args_x.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args_x, timeout); + + select = { 0., 1., 0., 0., 0., 0. }; + std::vector args_y; + args_y.insert(args_y.end(), min_force); + args_y.insert(args_y.end(), max_force); + args_y.insert(args_y.end(), select.begin(), select.end()); + args_y.insert(args_y.end(), feature1.begin(), feature1.end()); + args_y.insert(args_y.end(), type); + args_y.insert(args_y.end(), count); + args_y.insert(args_y.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args_y, timeout); + + SpiralParameters spiral; + spiral.spiral = 0.001; // 螺旋线步长 + spiral.helix = 0.; // 平面螺旋 + spiral.angle = 5 * 2 * M_PI; // 旋转5圈 + spiral.plane = 0; + double radius = 0.001; // 螺旋线第一圈半径 + + spiral.frame = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + + // 计算螺旋轨迹中心点 + spiral.frame[0] = + std::sqrt(2) * radius / 2 + spiral.frame[0]; //计算螺旋线半径参考点 + spiral.frame[1] = std::sqrt(2) * radius / 2 + spiral.frame[1]; + double v = 0.015, a = 0.2; + // 螺旋运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpiral(spiral, 0, v, a, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + auto ret = condFullfiled(10, {}); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +/** + * @brief calBoltPose 计算螺栓位置, 基于基坐标系 + * @param cli + * @param bolt_len 螺栓长度 + * @param max_force 最大力 + * @param diameter 螺栓直径 + * @param user_coord 用户坐标系在工具坐标系下的表示 + * @return 螺栓位置在user坐标系下的表示 + */ +std::vector calBoltPose(RpcClientPtr cli, const double bolt_len, + const double max_force, const double diameter, + const std::vector &usercoord_in_tcp) +{ + auto robot_name = cli->getRobotNames().front(); + + std::vector tcp_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + std::vector usercoord_in_base = + cli->getMath()->poseTrans(tcp_pose, usercoord_in_tcp); + auto tcp_force = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpForce(); + auto tcp_wrench_in_user = cli->getMath()->forceTrans( + cli->getMath()->poseInverse(usercoord_in_base), tcp_force); + std::cout << "tcp_wrench_in_user: " << tcp_wrench_in_user << std::endl; + + // 当前工具末端在用户坐标系的位置 + std::vector bolt_pose_in_user = + cli->getMath()->poseInverse(usercoord_in_tcp); + if ((fabs(tcp_wrench_in_user[0]) > max_force) && + (fabs(tcp_wrench_in_user[1]) < max_force)) { + // x方向力>limi,cht,y方向 max_force)) { + // x方向力limit,向y方向移动 + bolt_pose_in_user[1] = + bolt_pose_in_user[1] - + (tcp_wrench_in_user[1] / fabs(tcp_wrench_in_user[1])) * diameter; + + } else if ((fabs(tcp_wrench_in_user[0]) > max_force) && + (fabs(tcp_wrench_in_user[1]) > max_force)) { + // x方向力>limit,y方向>limit,向xy复合方向移动 + double contact_force = + std::sqrt(tcp_wrench_in_user[0] * tcp_wrench_in_user[0] + + tcp_wrench_in_user[1] * tcp_wrench_in_user[1]); + bolt_pose_in_user[0] = + bolt_pose_in_user[0] - + (tcp_wrench_in_user[0] / contact_force) * diameter; + bolt_pose_in_user[1] = + bolt_pose_in_user[1] - + (tcp_wrench_in_user[1] / contact_force) * diameter; + } else { + std::cout << "计算螺栓位置失败!" << std::endl; + return {}; + } + bolt_pose_in_user[2] = bolt_pose_in_user[2] - bolt_len; + + return bolt_pose_in_user; +} + +/** + * @brief moveToBoltPose 移动到螺栓上方 + * @param cli + * @param bolt_pose_in_user 螺栓位置 + * @param bolt_len 螺栓长度 + * @return + */ +int moveToBoltPose(RpcClientPtr cli, std::vector &bolt_pose_in_user, + const std::vector &usercoord_in_tcp) + +{ + // 力控参数 + std::vector move_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector move_D = { 300.0, 250.0, 200.0, 100.0, 100.0, 100.0 }; + std::vector move_K = { 500.0, 500.0, 500.0, 100.0, 100.0, 100.0 }; + //力控开启方向 + std::vector move_fc_enable = { + true, true, false, false, false, false + }; + // 目标力 + std::vector move_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + + // 力控坐标系选择 基坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(move_M, move_D, move_K); + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, move_fc_enable, move_goal_wrench, + speed_limits, frame_type); + + std::vector tcp_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + std::vector usercoord_in_base = + cli->getMath()->poseTrans(tcp_pose, usercoord_in_tcp); + auto bolt_pose_in_base = + cli->getMath()->poseTrans(usercoord_in_base, bolt_pose_in_user); + std::cout << "current_pose: " << tcp_pose << std::endl; + std::cout << "target_pose: " << bolt_pose_in_base << std::endl; + double v = 0.02, a = 4.0; + std::vector trans_pose = tcp_pose; + trans_pose[2] = bolt_pose_in_base[2]; + // 移动至过渡点 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(trans_pose, a, v, 0, 0); + // 先调用运动接口,在开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + waitArrival(cli->getRobotInterface(robot_name)); + // 移动至螺栓上方 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(bolt_pose_in_base, a, v, 0, 0); + waitArrival(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return 0; +} + +int searchXY(RpcClientPtr cli, const std::vector &usercoord_in_tcp) +{ + std::vector search_M = { 30.0, 30.0, 30.0, 10.0, 10.0, 10.0 }; + std::vector search_D = { 600.0, 500.0, 500.0, 200.0, 200.0, 200.0 }; + std::vector search_K = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + std::vector search_fc_enable = { + false, false, true, false, false, false, + }; + std::vector search_goal_wrench = { 0.0, 0.0, -8.5, 0.0, 0.0, 0.0 }; + + // 力控坐标系选择 基坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(search_M, search_D, search_K); + + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, search_fc_enable, search_goal_wrench, + speed_limits, frame_type); + + // z方向受力突然变小,认为搜到螺孔 + double min_force = -INF; + double max_force = 4.5; + std::vector select = { 0., 0., 1., 0., 0., 0. }; + std::vector feature1 = usercoord_in_tcp; + double type = static_cast(TaskFrameType::TOOL_FORCE); + double timeout = -1; + double count = 3.; + double outside = 0; + + std::vector args; + args.insert(args.end(), min_force); + args.insert(args.end(), max_force); + args.insert(args.end(), select.begin(), select.end()); + args.insert(args.end(), feature1.begin(), feature1.end()); + args.insert(args.end(), type); + args.insert(args.end(), count); + args.insert(args.end(), outside); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondAdvanced("ConditionContactForceOnUsercoord", args, timeout); + + // 下探2mm,认为搜到螺孔 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setCondDistance(0.002, -1); + SpiralParameters spiral; + spiral.spiral = 0.001; // 螺旋线步长 + spiral.helix = 0.; // 平面螺旋 + spiral.angle = 7 * 2 * M_PI; // 旋转5圈 + spiral.plane = 0; + double radius = 0.001; // 螺旋线第一圈半径 + + spiral.frame = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + // 计算螺旋轨迹中心点 + spiral.frame[0] = + std::sqrt(2) * radius / 2 + spiral.frame[0]; //计算螺旋线半径参考点 + spiral.frame[1] = std::sqrt(2) * radius / 2 + spiral.frame[1]; + double v = 0.002, a = 0.1; + // 螺旋运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpiral(spiral, 0, v, a, 0); + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + + auto ret = condFullfiled(60, {}); + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +int insertZ(RpcClientPtr cli, const double bolt_len, + const std::vector &usercoord_in_tcp) +{ + std::vector insert_M = { 30.0, 30.0, 30.0, 5.0, 5.0, 5.0 }; + std::vector insert_D = { 800.0, 800.0, 600.0, 100.0, 100.0, 100.0 }; + std::vector insert_K = { 1.0, 1.0, 500.0, 1.0, 1.0, 400.0 }; + std::vector insert_fc_enable = { true, true, true, true, true, true }; + std::vector insert_goal_wrench = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 力控坐标系选择 基坐标系 + std::vector feature = usercoord_in_tcp; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + // 力控速度限制 + std::vector speed_limits(6, 2.0); + + auto robot_name = cli->getRobotNames().front(); + + // 设置力控参数 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(insert_M, insert_D, insert_K); + + // 设置目标力 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, insert_fc_enable, insert_goal_wrench, + speed_limits, frame_type); + + // 计算插入终止位置 + auto tcp_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + std::vector usercoord_in_base = + cli->getMath()->poseTrans(tcp_pose, usercoord_in_tcp); + + auto tcp_in_usercoord = cli->getMath()->poseInverse(usercoord_in_tcp); + std::vector insert_distance = { 0., 0., bolt_len, 0., 0., 0. }; + std::vector target_pose_in_usercoord(6, 0.); + for (int i = 0; i < 6; i++) { + target_pose_in_usercoord[i] = tcp_in_usercoord[i] + insert_distance[i]; + } + auto target_pose_in_base = + cli->getMath()->poseTrans(usercoord_in_base, target_pose_in_usercoord); + + std::vector box = { -INF, +INF, -INF, +INF, 0, bolt_len }; + // 直线运动 + double v = 0.0025, a = 4.0; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(target_pose_in_base, a, v, 0, 0); + + // 开启力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); + // 激活终止条件 + cli->getRobotInterface(robot_name)->getForceControl()->setCondActive(); + + auto ret = condFullfiled(5, target_pose_in_base); + + cli->getRobotInterface(robot_name)->getMotionControl()->stopJoint(1); + // 关闭力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcDisable(); + return ret; +} + +int example(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + // 设置TCP偏移 + std::vector tcp_offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_offset); + + double mass = 0.578721; + std::vector com = { -0.00661349, 0.00102332, 0.0192072 }; + std::vector force_offset = { 12.9354, -13.0272, -31.889, + 0.186967, -1.06773, 0.385074 }; + + // 设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass, com, { 0. }, { 0. }); + + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(force_offset); + // 用户坐标系 + std::vector usercoord_in_tcp = { 0, 0, 0.04, 0, 0, 0 }; + double bolt_len = 0.010; //螺栓长15mm + double bolt_diameter = 0.006; // 螺栓直径6mm + +//#define TEST +#ifndef TEST + std::vector q = { 14.93 / 180 * M_PI, -24.07 / 180 * M_PI, + 53.31 / 180 * M_PI, -11.51 / 180 * M_PI, + 89.14 / 180 * M_PI, -73.40 / 180 * M_PI }; + + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + + // 两次重试机会 + for (int i = 0; i < 2; i++) { + if (locateZ(cli, bolt_len, usercoord_in_tcp) > 0) { + std::cout << "定位到螺栓,开始xy平面搜索螺孔位置" << std::endl; + if (searchXY(cli, usercoord_in_tcp) > 0) { + std::cout << "条件满足, 确认是否插入" << std::endl; + if (insertDetect(cli, usercoord_in_tcp) > 0) { + std::cout << "检测到已插入, 开始插入动作" << std::endl; + if (insertZ(cli, bolt_len, usercoord_in_tcp) < 0) { + std::cout << "插入超时,请检查是否插入,或调整等待时间" + << std::endl; + } else { + std::cout << "插入已完成,结束程序" << std::endl; + } + return 0; + } else { + std::cout << "检测到未插入,可能插入孔外, 回到起点" + << std::endl; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, + 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + continue; + } + } else { + std::cout << "搜索超时, 退出搜索, 回到起点" << std::endl; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, + 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + continue; + } + } else { + std::cout << "探寻距离已到, 未定位到螺栓, 确认是否插入" + << std::endl; + if (insertDetect(cli, usercoord_in_tcp) > 0) { + std::cout << "检测到已插入, 开始插入动作" << std::endl; + if (insertZ(cli, 0.6, usercoord_in_tcp) < 0) { + std::cout << "插入超时, 请检查是否插入, 或调整等待时间" + << std::endl; + } else { + std::cout << "插入已完成, 结束程序" << std::endl; + } + return 0; + } else { + std::cout << "检测到未插入, 开始xy平面定位螺栓位置" + << std::endl; + if (locateXY(cli, usercoord_in_tcp) < 0) { + std::cout << "搜索超时, 未定位到螺栓, 结束搜索,回到起点" + << std::endl; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 20.0 / 180.0 * M_PI, 20.0 / 180.0 * M_PI, + 0.0, 0.0); + waitArrival(cli->getRobotInterface(robot_name)); + continue; + } else { + auto bolt_pose = calBoltPose( + cli, bolt_len, 10.0, bolt_diameter, usercoord_in_tcp); + std::cout + << "定位到螺栓, 在用户坐标系的位置为: " << bolt_pose + << std::endl; + moveToBoltPose(cli, bolt_pose, usercoord_in_tcp); + std::cout << "移动到螺栓上方" << std::endl; + } + } + } + } +#endif +} + +#define LOCAL_IP "172.16.3.68" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置话题, 力控条件,tcp位置,tcp力 + int topic = rtde_cli->setTopic( + false, + { "R1_fc_cond_fullfiled", "R1_actual_TCP_pose", "R1_actual_TCP_force" }, + 200, 1); + // 接口调用: 订阅 + rtde_cli->subscribe(topic, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + cond_fullfiled_ = parser.popBool(); + tcp_pose_ = parser.popVectorDouble(); + tcp_force_ = parser.popVectorDouble(); + }); + example(rpc); + /* 测试力传感器数据 */ + // tcpSensorTest(rpc); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control.cpp new file mode 100644 index 00000000..e2f9ed0c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control.cpp @@ -0,0 +1,360 @@ +#include +#include "aubo_sdk/rpc.h" +#include +#ifdef _WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define EMBEDDED +std::ofstream file("force.csv", std::ios::app); + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + int cnt = 0; + while (impl->getMotionControl()->getExecId() == -1) { + if (cnt++ > 5) { + std::cout << "Motion fail!" << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + auto id = impl->getMotionControl()->getExecId(); + while (1) { + auto id1 = impl->getMotionControl()->getExecId(); + if (id != id1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +// 计算两点之间的欧氏距离,默认第二点为原点 +inline double calculateDistance( + const std::vector &p1, + const std::vector &p2 = std::vector(6, 0)) +{ + if ((6 == p1.size()) && (6 == p2.size())) { + double sum = 0.; + for (int i = 0; i < 3; i++) { + sum += pow(p1[i] - p2[i], 2); + } + return std::sqrt(sum); + } + return 0; +} + +// 读取力传感器数据并保存到force.csv文件中 +void tcpSensorTest(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto sensor_names = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getTcpForceSensorNames(); + std::cout << "支持的传感器名:" << std::endl; + for (auto &name : sensor_names) { + std::cout << name << ","; + } + + std::cout << std::endl + << "其中embedded为内置传感器,tool." + "XXX为外置传感器(连接到末端485),xxx_" + "ftsensor为外接到控制柜的传感器." + << std::endl; + +#ifdef EMBEDDED + // 设置力传感器类型为内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 设置力传感器类型为外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + while (1) { + auto sensor_data = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + + std::cout << "--------------------------------------" << std::endl; + for (int i = 0; i < sensor_data.size(); i++) { + std::cout << "获取TCP力传感器读数: " << i + 1 << ": " + << sensor_data[i] << std::endl; + } + std::cout << "--------------------------------------" << std::endl; + file << sensor_data << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } +} + +// 力传感器标定 +ForceSensorCalibResult tcpSensorcalibration( + RpcClientPtr cli, std::vector> joints) +{ + auto robot_name = cli->getRobotNames().front(); + + printf("goto p0\n"); + // 关节运动到负载辨识的第一个参考点 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joints[0], 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + // 阻塞 + waitArrival(cli->getRobotInterface(robot_name)); + // 等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 记录第一个参考点的关节位置和TCP力传感器数据 + auto q1 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force1 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + + printf("goto p1\n"); + // 关节运动到负载辨识的第二个参考点 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joints[1], 20 * (M_PI / 180), 10 * (M_PI / 180), 0, 0); + // 阻塞 + waitArrival(cli->getRobotInterface(robot_name)); + // 等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 记录第二个参考点的关节位置和TCP力传感器数据 + auto q2 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force2 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + + printf("goto p2\n"); + // 关节运动到负载辨识的第三个参考点 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joints[2], 20 * (M_PI / 180), 10 * (M_PI / 180), 0, 0); + // 阻塞 + waitArrival(cli->getRobotInterface(robot_name)); + // 等待机器人停稳 + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 记录第三个参考点的关节位置和TCP力传感器数据 + auto q3 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointPositions(); + auto tcp_force3 = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + + // 正解获得三个参考点的位姿 + auto pose1 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q1); + + auto pose2 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q2); + + auto pose3 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q3); + + std::vector> calib_forces{ tcp_force1, tcp_force2, + tcp_force3 }; + std::vector> calib_poses{ std::get<0>(pose1), + std::get<0>(pose2), + std::get<0>(pose3) }; + // 力传感器标定算法(三点标定法) + // 将三个参考点的传感器数据与位姿传入到此接口中做负载辨识 + auto result = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->calibrateTcpForceSensor(calib_forces, calib_poses); + return result; +} + +void exampleForceControl(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 设置力传感器类型为内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 设置力传感器类型为外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + + // 设置TCP偏移 + std::vector tcp_pose = sensor_pose; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_pose); + + // 负载辨识参考点 + std::vector joint1 = { -0.261799, 0.261799, 1.309, + 1.0472, 1.39626, 0.0 }; + std::vector joint2 = { -0.628319, 0.471239, 1.65806, + -0.471239, 0.0, 0.0 }; + std::vector joint3 = { -0.628319, 0.366519, 1.74533, + -0.10472, 1.5708, 0.0 }; + // 力传感器标定 + auto calib_result = tcpSensorcalibration(cli, { joint1, joint2, joint3 }); + std::cout << "force_offset: " << std::get<0>(calib_result) << std::endl; + std::cout << "com: " << std::get<1>(calib_result) << std::endl; + std::cout << "mass: " << std::get<2>(calib_result) << std::endl; + + if (calculateDistance(std::get<0>(calib_result)) < 0.0001) { + std::cout << "标定错误,请检查传感器数据!" << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + + std::cout << "go to start_joint" << std::endl; + std::vector start_joint = { 0 / 180 * M_PI, 16.41 / 180 * M_PI, + 76.36 / 180 * M_PI, 7.87 / 180 * M_PI, + 90.21 / 180 * M_PI, 0 / 180 * M_PI }; + // 关节运动到起始位置 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(start_joint, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrival(cli->getRobotInterface(robot_name)); + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // (通过负载辨识的结果来)设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(std::get<2>(calib_result), std::get<1>(calib_result), + { 0. }, { 0. }); + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(std::get<0>(calib_result)); + + // 导纳质量 + std::vector admittance_m = { 10.0, 10.0, 10.0, 2.0, 2.0, 2.0 }; + // 导纳阻尼 + // 用来调节力控运动过程中的速度大小,在相同受力情况下,阻尼越大,速度越小 + std::vector admittance_d = { + 200.0, 200.0, 200.0, 20.0, 20.0, 20.0 + }; + // 导纳刚度 + // 用来调节机械臂弹性,刚度越大回弹越快 + std::vector admittance_k = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + // 设置力控动力学模型 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(admittance_m, admittance_d, admittance_k); + + // 柔性轴(方向)选择 + std::vector compliance = { true, true, true, true, true, true }; + // 目标力/力矩 + std::vector target_wrench(6, 0.); + // 速度限制 + std::vector speed_limits(6, 2.0); + // 设置力控参考(目标)值。 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(std::vector(6, 0.), compliance, target_wrench, + speed_limits, TaskFrameType::NONE); + + std::cout << "Press the key 's'/'q' to enable/disable force control mode." + << std::endl; + while (1) { + std::cout << "Please input your choose: " << std::endl; + char key; + std::cin >> key; + switch (key) { + case 's': + if (cli->getRobotInterface(robot_name) + ->getForceControl() + ->isFcEnabled()) { + std::cout << "The robot has already been force control mode. " + "Can't enable force control mode" + << std::endl; + break; + } else { + // 使能力控 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->fcEnable(); + std::cout << "Enter force control mode" << std::endl; + } + break; + case 'q': + if (!cli->getRobotInterface(robot_name) + ->getForceControl() + ->isFcEnabled()) { + std::cout << "The robot has already quit force control mode. " + "Can't disable force control mode" + << std::endl; + break; + } else { + // 退出力控 + cli->getRobotInterface(robot_name) + ->getForceControl() + ->fcDisable(); + std::cout << "Quit force control mode" << std::endl; + } + break; + default: + std::cout << "Please input 's' or 'q'." << std::endl; + break; + } + } +} + +#define LOCAL_IP "127.0.0.1" +int main(int argc, char **argv) +{ +#ifdef _WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 使能和退出力控 + exampleForceControl(rpc_cli); + + // 读取力传感器数据并保存到force.csv文件中 + // tcpSensorTest(rpc_cli); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control2.cpp new file mode 100644 index 00000000..e5f5e673 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control2.cpp @@ -0,0 +1,413 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define EMBEDDED + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 判断缓存是否有效 +int isBufferValid(RobotInterfacePtr impl) +{ + // 调用pathBufferValid最大的重试次数 + int max_retry_count = 50; + // 调用pathBufferValid的次数 + int cnt = 0; + bool isValid = impl->getMotionControl()->pathBufferValid("rec"); + + while (!isValid) { + if (cnt++ > max_retry_count) { + return -1; + } + isValid = impl->getMotionControl()->pathBufferValid("rec"); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +void tcpSensorTest(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto sensor_names = cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->getTcpForceSensorNames(); + std::cout << "支持的传感器名:" << std::endl; + for (auto &name : sensor_names) { + std::cout << name << ","; + } + + std::cout << std::endl + << "其中embedded为内置传感器,tool." + "XXX为外置传感器(连接到末端485),xxx_" + "ftsensor为外接到控制柜的传感器." + << std::endl; + +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + while (1) { + std::cout << "------------------------------------------" << std::endl; + auto sensor_data = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + std::cout << "force sensor: " << sensor_data << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + auto curr_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + auto payload = + cli->getRobotInterface(robot_name)->getRobotConfig()->getPayload(); + std::cout << "mass: " << std::get<0>(payload) + << " cog: " << std::get<1>(payload) << std::endl; + auto result = + cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->calibrateTcpForceSensor({ sensor_data }, { curr_pose }); + + std::cout << "force offset: " << std::get<0>(result) << std::endl; + std::cout << "------------------------------------------" << std::endl; + } +} + +void initFcParams(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + // 设置TCP偏移 + std::vector tcp_pose = { 0, 0, 0.0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_pose); + + double mass = 0.0; + std::vector com = { 0.0, 0.0, 0.0 }; + + // 力传感器偏移 需要根据实际情况设置 + std::vector force_offset = { 0.0, 0.0, -3.8, 0.0, 0.0, 0.0 }; + // 设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass, com, { 0. }, { 0. }); + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(force_offset); + + // 力控的m d k 参数, 需要根据环境调试 + std::vector admittance_m = { 25.0, 25.0, 25.0, 2.0, 2.0, 2.0 }; + std::vector admittance_d = { + 300.0, 300.0, 300.0, 12.0, 12.0, 12.0 + }; + std::vector admittance_k = { 0.0, 0.0, 300.0, 0.0, 0.0, 0.0 }; + + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setDynamicModel(admittance_m, admittance_d, admittance_k); + + std::vector compliance = { false, false, true, false, false, false }; + std::vector target_wrench = { 0.0, 0.0, -30.0, 0.0, 0.0, 0.0 }; + std::vector speed_limits(6, 2.0); + + auto feature = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, compliance, target_wrench, speed_limits, + TaskFrameType::TOOL_FORCE); +} + +void loadTraj(RpcClientPtr cli, std::vector> &traj) +{ + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + // 接口调用: 清除缓存"rec" + robot_interface->getMotionControl()->pathBufferFree("rec"); + auto traj_sz = traj.size(); + // 接口调用: 新建一个缓存"rec",并指定轨迹运动类型和轨迹点数量 + robot_interface->getMotionControl()->pathBufferAlloc("rec", 2, traj_sz); + + // 将轨迹文件中的路点分组添加到路径缓存中, + // 以10个点为1组, + // 如果未添加的路点数量小于或者等于10时,则作为最后一组来添加 + size_t offset = 10; + auto it = traj.begin(); + while (true) { + std::cout << "添加轨迹路点 " << offset << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, it + 10 }); + it += 10; + if (offset + 10 >= traj_sz) { + std::cout << "添加轨迹路点 " << traj_sz << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, traj.end() }); + break; + } + + offset += 10; + } + + // 轨迹文件中的采样间隔 + double interval = 0.05; + // double interval = 0.02; + + // 接口调用: 计算、优化等耗时操作,来对轨迹进行优化 + auto max_qdd = + robot_interface->getRobotConfig()->getJointMaxAccelerations(); + auto max_qd = robot_interface->getRobotConfig()->getJointMaxSpeeds(); + robot_interface->getMotionControl()->pathBufferEval("rec", max_qdd, max_qd, + interval); +} + +void example1(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + // 设置TCP偏移 + std::vector tcp_pose = { 0, 0, 0.0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_pose); + + double mass = 0.0; + std::vector com = { 0.0, 0.0, 0.0 }; + // 力传感器偏移需要根据实际情况设置 + std::vector force_offset = { 0, 0, -3.8, 0, 0, 0 }; + // 设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass, com, { 0. }, { 0. }); + + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(force_offset); + + std::vector admittance_m = { 25.0, 25.0, 25.0, 2.0, 2.0, 2.0 }; + std::vector admittance_d = { + 300.0, 300.0, 300.0, 12.0, 12.0, 12.0 + }; + std::vector admittance_k = { 0.0, 0.0, 300.0, 0.0, 0.0, 0.0 }; + + cli->getRobotInterface("rob1")->getForceControl()->setDynamicModel( + admittance_m, admittance_d, admittance_k); + + // 力控开启方向 + std::vector compliance = { false, false, true, false, false, false }; + // 目标力 + std::vector target_wrench{ 0.0, 0.0, -3.0, 0.0, 0.0, 0.0 }; + std::vector speed_limits(6, 2.0); + + // 力控参考坐标系设为FRAME_FORCE, 基于当前时刻的工具坐标系探寻 + auto feature = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + TaskFrameType frame_type = TaskFrameType::FRAME_FORCE; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, compliance, target_wrench, speed_limits, + frame_type); + + // 设置监控探寻范围 + // 探寻范围为box,用6个参数描述分别为: 单位米 + // double xmin; + // double xmax; + // double ymin; + // double ymax; + // double zmin; + // double zmax; + auto box_frame = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + std::vector box = { -1000.0, 1000.0, -1000.0, 1000.0, 0, 0.1 }; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setSupvPosBox(box_frame, box); + + // 使能力控 + cli->getRobotInterface(robot_name)->getForceControl()->fcEnable(); +} + +int example2(RpcClientPtr rpc) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = rpc->getRobotNames().front(); + + auto robot_interface = rpc->getRobotInterface(robot_name); + + // 读取轨迹文件 + auto filename = "../trajs/physiotherapy.txt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return -1; + } + + // 解析轨迹数据 + auto traj = input.parse(); + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return -1; + } + // 接口调用: + // 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(traj[0], 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 初始化力控参数 + initFcParams(rpc); + loadTraj(rpc, traj); + + if (isBufferValid(robot_interface) == -1) { + std::cerr << "路径缓存无效,无法进行轨迹运动" << std::endl; + } else { + // 运行轨迹 + robot_interface->getMotionControl()->movePathBuffer("rec"); + // 先运动在开力控 + robot_interface->getForceControl()->fcEnable(); + } + + // 等待轨迹运动完成 + ret = waitArrival(robot_interface); + if (ret == -1) { + std::cerr << "轨迹运动失败" << std::endl; + } else { + std::cout << "轨迹运动结束" << std::endl; + } + + robot_interface->getMotionControl()->stopJoint(1); + robot_interface->getForceControl()->fcDisable(); +} +#define LOCAL_IP "192.168.10.236" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + /* 探寻例程 */ + // example1(rpc); + /* 轨迹+力控 */ + example2(rpc); + /* 测试力传感器数据 */ + // tcpSensorTest(rpc); + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control3.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control3.cpp new file mode 100644 index 00000000..de0bef17 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_force_control3.cpp @@ -0,0 +1,335 @@ +#ifdef WIN32 +#include +#else +#include +#endif + +#include +#include +#include +#include + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +class example +{ +public: + example(const RpcClientPtr rpc, const RtdeClientPtr rtde) + : rpc_(rpc), rtde_(rtde) + { + subscribeRealtimeState(); + fc_ = new arcs::aubo_sdk::ForceControl(rpc_, rtde_); + state_ = 0; + + fc_->registerStateCallBack( + std::bind(&example::stateCallback, this, std::placeholders::_1)); + } + + int init() + { + auto name = rpc_->getRobotNames().front(); + auto robot_interface = rpc_->getRobotInterface(name); + + robot_interface->getRobotConfig()->setTcpForceOffset( + actual_tcp_force_sensor_); + } + + // 接近示例 + int example_touch() + { + auto name = rpc_->getRobotNames().front(); + auto robot_interface = rpc_->getRobotInterface(name); + + // 设置接近参数 + arcs::aubo_sdk::ForceControl::TouchParams param; + param.frame_type = TOOL_FORCE; + // 接触力为10N + param.wrench = { 0.0, 0.0, -10.0, 0.0, 0.0, 0.0 }; + // 接近过程中的速度为10mm/s + param.speed = { 0.0, 0.0, 0.01, 0.0, 0.0, 0.0 }; + // 探寻距离为20mm + param.distance = 0.020; + // 软硬程度为0 + param.stiff_scale = { 0.5, 0.5, 0.5, 0.5, 0.5, 0.5 }; + // 1s超时 + param.touch_time = 50000; + fc_->fcTouch(param); + + // 等待接近流程结束 + int ret = fc_->fcWaitCondition(); + if (ret == arcs::aubo_sdk::ForceControl::StateCode::Touch_Succeed) { + std::cout << "达到目标力" << std::endl; + } else if (ret == + arcs::aubo_sdk::ForceControl::StateCode::Touch_Distance) { + std::cout << "超过探寻距离" << std::endl; + } else if (ret == arcs::aubo_sdk::ForceControl::StateCode::TimeOut) { + std::cout << "探寻超时" << std::endl; + } + + fc_->fcExit(); + } + + // 恒力示例 + int example_constant() + { + auto name = rpc_->getRobotNames().front(); + auto robot_interface = rpc_->getRobotInterface(name); + + // 设置恒力参数 + arcs::aubo_sdk::ForceControl::ConstantParams param; + param.frame_type = TOOL_FORCE; + param.wrench = { 0.0, 0.0, -10.0, 0.0, 0.0, 0.0 }; + // 设置阻尼 避免震荡 + param.wrench = { 0.0, 0.0, -10.0, 0.0, 0.0, 0.0 }; + // 根据实际测试环境设置环境刚度 + param.env_stiff = { 0.0, 0.0, 0.2, 0.0, 0.0, 0.0 }; + fc_->fcConstant(param); + + // 设置参考轨迹 从当前位姿沿X正方向移动20mm + std::vector pose = actual_tcp_pose_; + { + std::unique_lock lock(rtde_mutex_); + pose = actual_tcp_pose_; + } + pose[0] += 0.05; + robot_interface->getMotionControl()->moveLine(pose, 0.01, 0.01, 0.0, + -1); + // 等待参考轨迹到位 + waitArrival(robot_interface); + if (state_ == 0) { + std::cout << "恒力轨迹到位" << std::endl; + } else if (state_ == -100) { + std::cout << "恒力控制超时" << std::endl; + } + + fc_->fcExit(); + return 0; + } + + void example_insert() + { + // 设置插孔参数 + arcs::aubo_sdk::ForceControl::InsertParams param; + + // 无参考轨迹 + param.guide_traj_type = arcs::aubo_sdk::ForceControl::NONE; + + // 螺旋线 + // param.guide_traj_type = arcs::aubo_sdk::ForceControl::SPIRAL; + // param.spiral_param.step = 3; + // param.spiral_param.direction = 1; + // param.spiral_param.plane = + // arcs::aubo_sdk::ForceControl::SpiralPlane::xy; + // param.spiral_param.spiral = 0.005; + // param.spiral_param.helix = 0.005; + // param.spiral_param.radius = 0.06; + + // 摆线 + // param.guide_traj_type = arcs::aubo_sdk::ForceControl::WEAVE; + // param.weave_param.step = 30; + // param.weave_param.direction = + // arcs::aubo_sdk::ForceControl::WeaveSelect::rx; + // param.weave_param.amplitude = 0.005; + // param.weave_param.hold_distance = 0.2; + // param.weave_param.angle = 0.1; + + fc_->fcInsert(param); + + // 等待接近流程结束 + while (state_.load() == 0) { + std::this_thread::sleep_for( + std::chrono::milliseconds(10)); // 延时10ms + } + + if (state_.load() == + arcs::aubo_sdk::ForceControl::StateCode::Insert_Succeed) { + std::cout << "插孔成功" << std::endl; + } else if (state_.load() == + arcs::aubo_sdk::ForceControl::StateCode::Insert_MaxForce) { + std::cout << "插孔力过大" << std::endl; + } + + fc_->fcExit(); + } + + void example_search() + { + // 设置搜孔参数 + arcs::aubo_sdk::ForceControl::SearchParams param; + + param.search_time = 10 * 1000; + param.search_guide_force = 5; + param.search_max_force = 20; + + // 螺旋线 + param.guide_traj_type = arcs::aubo_sdk::ForceControl::SPIRAL; + param.spiral_param.step = 3; + param.spiral_param.direction = 1; + param.spiral_param.plane = + arcs::aubo_sdk::ForceControl::SpiralPlane::xy; + param.spiral_param.spiral = 0.005; + param.spiral_param.helix = 0.0; + param.spiral_param.radius = 0.005; + + // 摆线 + // param.guide_traj_type = arcs::aubo_sdk::ForceControl::SPIRAL; + // param.weave_param.step = 30; + // param.weave_param.direction = + // arcs::aubo_sdk::ForceControl::WeaveSelect::rx; + // param.weave_param.amplitude = 0.005; + // param.weave_param.hold_distance = 0.2; + // param.weave_param.angle = 0.1; + + fc_->fcSearch(param); + + // 等待接近流程结束 + int ret = fc_->fcWaitCondition(); + + if (ret == arcs::aubo_sdk::ForceControl::StateCode::Search_Succeed) { + std::cout << "搜孔成功" << std::endl; + } else if (ret == + arcs::aubo_sdk::ForceControl::StateCode::Search_MaxForce) { + std::cout << "搜孔力过大" << std::endl; + } else if (ret == arcs::aubo_sdk::ForceControl::StateCode::TimeOut) { + std::cout << "搜孔超时" << std::endl; + } else { + std::cout << "Error state code:" << state_.load() << std::endl; + } + + fc_->fcExit(); + } + + void getTcpTaskForce() + { + TaskFrameType type = TaskFrameType::MOTION_FORCE; + std::vector feature = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + while (1) { + auto task_force = fc_->getTaskForce(type, feature); + std::cout << task_force[0] << ", " << task_force[1] << ", " + << task_force[2] << ", " << task_force[3] << ", " + << task_force[4] << ", " << task_force[5] << ", " + << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + } + + return; + } + + void exit() { fc_->fcExit(); } + + void stateCallback(int state) { state_.store(state); } + +private: + void subscribeRealtimeState() + { + if (rtde_ == nullptr) { + return; + } + + int topic1 = + rtde_->setTopic(false, + { "R1_actual_TCP_pose", "R1_actual_TCP_force", + "R1_actual_TCP_force_sensor" }, + 40, 1); + rtde_->subscribe(topic1, [this](arcs::aubo_sdk::InputParser &parser) { + std::unique_lock lck(rtde_mutex_); + actual_tcp_pose_ = parser.popVectorDouble(); + actual_tcp_force_ = parser.popVectorDouble(); + actual_tcp_force_sensor_ = parser.popVectorDouble(); + }); + } + + // 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 + int waitArrival(RobotInterfacePtr impl) + { + //接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1 && state_.load() == 0) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1 && state_.load() == 0) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; + } + +private: + RpcClientPtr rpc_ = nullptr; + RtdeClientPtr rtde_ = nullptr; + + arcs::aubo_sdk::ForceControl *fc_ = nullptr; + + // RTDE相关 + std::mutex rtde_mutex_; + std::vector actual_tcp_pose_; + std::vector actual_tcp_force_; + std::vector actual_tcp_force_sensor_; + + std::atomic_int state_; +}; + +#define LOCAL_IP "192.168.1.20" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc = std::make_shared(); + auto rtde = std::make_shared(); + rpc->setRequestTimeout(1000); + auto ret = rpc->connect(LOCAL_IP, 30004); + rpc->login("aubo", "123456"); + + rtde->connect(LOCAL_IP, 30010); + rtde->login("aubo", "123456"); + + example ex(rpc, rtde); + std::this_thread::sleep_for(std::chrono::milliseconds(50)); // 等待rtde数据 + + // ex.init(); + // std::this_thread::sleep_for(std::chrono::milliseconds(500)); + + // 接近示例 + // ex.example_touch(); + + // 恒力示例 + // ex.example_constant(); + + // 插入示例 + // ex.example_insert(); + + // 搜孔示例 + // ex.example_search(); + + // 获取实时力控参考系下的力数据 + ex.getTcpTaskForce(); + + auto robot_name = rpc->getRobotNames().front(); + auto robot_interface = rpc->getRobotInterface(robot_name); + + rpc->logout(); + rtde->logout(); + + rpc->disconnect(); + rtde->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_freedrive.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_freedrive.cpp new file mode 100644 index 00000000..ea964b3a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_freedrive.cpp @@ -0,0 +1,63 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::aubo_sdk; + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + // RPC 客户端对象 + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + auto impl = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 使能拖动示教模式 + impl->getRobotManage()->freedrive(true); + + // 等待进入拖动示教 + int i = 0; + while (!impl->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "使能拖动示教模式失败" << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + std::cout << "使能拖动示教模式成功" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(25)); + + // 接口调用: 退出拖动示教模式 + impl->getRobotManage()->freedrive(false); + + // 等待退出拖动示教模式 + while (impl->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式失能失败" << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "退出拖动示教模式成功" << std::endl; + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_gripper.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_gripper.cpp new file mode 100644 index 00000000..5ec12b6d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_gripper.cpp @@ -0,0 +1,149 @@ +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include +#include +#include +#ifdef _WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +std::mutex rtde_mtx_; +GripperStatusVector gripper_status; + +void exampleGripper(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); + auto models = cli->getGripperInterface()->gripperGetSupportedModels(); + std::cout << "supported models: " << std::endl << " "; + for (auto model : models) { + std::cout << model << ","; + } + std::cout << std::endl; + + if (0 != cli->getGripperInterface()->gripperAdd("gripper_1", + "gripper.DH_PGE-50-26")) { + std::cout << "添加夹爪错误" << std::endl; + return; + } + + cli->getGripperInterface()->gripperConnect("gripper_1", "/dev/ttyUSB0,1"); + int connect_count_ = 0; + while (!cli->getGripperInterface()->gripperIsConnected("gripper_1") && + connect_count_++ < 5) { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + if (!cli->getGripperInterface()->gripperIsConnected("gripper_1")) { + std::cout << "夹爪gripper_1连接失败" << std::endl; + return; + } + + if (0 != cli->getGripperInterface()->gripperEnable("gripper_1", true)) { + std::cout << "夹爪gripper_1激活失败" << std::endl; + return; + } + int enable_count_ = 0; + while (cli->getGripperInterface()->gripperIsConnected("gripper_1") && + !cli->getGripperInterface()->gripperIsEnabled("gripper_1") && + enable_count_++ < 5) { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + if (!cli->getGripperInterface()->gripperIsEnabled("gripper_1")) { + std::cout << "夹爪gripper_1激活失败" << std::endl; + return; + } + + std::cout << "运动到26的位置" << std::endl; + cli->getGripperInterface()->gripperSetPosition("gripper_1", 26); + cli->getGripperInterface()->gripperSetForce("gripper_1", 20); + cli->getGripperInterface()->gripperSetVelocity("gripper_1", 50); + if (0 != cli->getGripperInterface()->gripperMove("gripper_1")) { + std::cout << "夹爪gripper_1运动失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + while (cli->getGripperInterface()->gripperIsConnected("gripper_1") && + cli->getGripperInterface()->gripperGetMotionState("gripper_1")) { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + + std::cout << "运动到0的位置" << std::endl; + cli->getGripperInterface()->gripperSetPosition("gripper_1", 0); + cli->getGripperInterface()->gripperSetForce("gripper_1", 20); + cli->getGripperInterface()->gripperSetVelocity("gripper_1", 50); + if (0 != cli->getGripperInterface()->gripperMove("gripper_1")) { + std::cout << "夹爪gripper_1运动失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + while (cli->getGripperInterface()->gripperIsConnected("gripper_1") && + cli->getGripperInterface()->gripperGetMotionState("gripper_1")) { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + + std::this_thread::sleep_for(std::chrono::seconds(10)); + + if (0 != cli->getGripperInterface()->gripperEnable("gripper_1", false)) { + std::cout << "夹爪gripper_1激活失败" << std::endl; + return; + } + + std::this_thread::sleep_for(std::chrono::seconds(5)); + + cli->getGripperInterface()->gripperDelete("gripper_1"); +} + +void rtdeGripperStatus(RtdeClientPtr rtde_cli) +{ + // 接口调用: 设置话题 + int topic5 = rtde_cli->setTopic(false, { "gripper_status" }, 1, 5); + // 接口调用: 订阅 + rtde_cli->subscribe(topic5, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + gripper_status = parser.popGripperStatusVector(); + for (auto status : gripper_status) { + std::cout << "name: " << status.name << std::endl; + std::cout << " is_connected: " << status.is_connected << std::endl; + std::cout << " is_enabled: " << status.is_enabled << std::endl; + std::cout << " position: " << status.position << std::endl; + std::cout << " velocity: " << status.velocity << std::endl; + std::cout << " force: " << status.force << std::endl; + std::cout << " angle: " << status.angle << std::endl; + std::cout << " r_velocity: " << status.r_velocity << std::endl; + std::cout << " torque: " << status.torque << std::endl; + std::cout << " object_detection: " << status.object_detection + << std::endl; + std::cout << " motion_state: " << status.motion_state << std::endl; + std::cout << " voltage: " << status.voltage << std::endl; + std::cout << " temperature: " << status.temperature << std::endl; + } + }); +} + +#define LOCAL_IP "127.0.0.1" +int main(int argc, char **argv) +{ +#ifdef _WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + rtdeGripperStatus(rtde_cli); + + exampleGripper(rpc_cli); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_io.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_io.cpp new file mode 100644 index 00000000..8c883abb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_io.cpp @@ -0,0 +1,592 @@ +#include "aubo_sdk/rpc.h" +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::aubo_sdk; + +bool bit_value(uint64_t v, int index) +{ + return (v & ((uint64_t)1 << index)) ? true : false; +} + +// 打印二进制位 +void printBit(uint64_t v, std::string name, int bit_length) +{ + std::cout << "@:" << name << std::endl; + + for (int i = 0; i < bit_length; i++) { + std::cout << bit_value(v, i) << ","; + } + std::cout << std::endl; +} + +// 数字输入——无触发动作 +void exampleStandardDigitalInput1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取数字输入数量 + int di_num = robot->getIoControl()->getStandardDigitalInputNum(); + std::cout << "数字输入数量: " << di_num << std::endl; + + // 接口调用: 设置所有的数字输入的动作为无触发 + robot->getIoControl()->setDigitalInputActionDefault(); + + // 打印所有的数字输入值 + for (int i = 0; i < di_num; i++) { + // 接口调用: 获取数字输入值 + auto input_value = robot->getIoControl()->getStandardDigitalInput(i); + std::cout << "管脚" << i << "数字输入值:" << input_value << std::endl; + } +} + +// 数字输入——触发动作为拖动示教 +void exampleStandardDigitalInput2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 设置DI00的动作为拖动示教。 + StandardInputAction input_action = StandardInputAction::Handguide; + robot->getIoControl()->setStandardDigitalInputAction(0, input_action); + + std::cout << "说明:当DI00为高电平(DI00和0V短接)时,机器人进入拖动示教。" + << std::endl; + std::cout << "当DI00为低电平(DI00和0V断开)时,机器人退出拖动示教。" + << std::endl; +} + +// 数字输出——无触发动作,用户可设置输出值 +void exampleStandardDigitalOutput1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取数字输出数量 + int do_num = robot->getIoControl()->getStandardDigitalOutputNum(); + std::cout << "数字输出数量: " << do_num << std::endl; + + // 接口调用: 设置所有的数字输出的动作为无触发。 + // 当数字输出的动作为无触发时,用户可设置数字输出值。 + robot->getIoControl()->setDigitalOutputRunstateDefault(); + + // 接口调用: 设置DO00为高电平 + robot->getIoControl()->setStandardDigitalOutput(0, true); + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取DO00的值 + bool value = robot->getIoControl()->getStandardDigitalOutput(0); + std::cout << "DO00的值:" << (value ? "高电平" : "低电平") << std::endl; +} + +// 数字输出——设置触发动作为拖动示教,控制器自动设置输出值 +void exampleStandardDigitalOutput2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取数字输出数量 + int do_num = robot->getIoControl()->getStandardDigitalOutputNum(); + std::cout << "数字输出数量: " << do_num << std::endl; + + // 接口调用: 设置DO00的动作为拖动示教。 + // 当机器人进入拖动示教时,DO00的值为高电平。 + // 当机器人退出拖动示教时,DO00的值为低电平。 + // 此时,用户不可设置DO00的值。 + StandardOutputRunState runstate = StandardOutputRunState::Handguiding; + robot->getIoControl()->setStandardDigitalOutputRunstate(0, runstate); + + // 接口调用: 进入拖动示教 + robot->getRobotManage()->freedrive(true); + + // 等待进入拖动示教模式 + int i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式使能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "进入拖动示教成功" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取DO00的值 + bool value = robot->getIoControl()->getStandardDigitalOutput(0); + std::cout << "DO00的值:" << (value ? "高电平" : "低电平") << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(3)); + + // 接口调用: 退出拖动示教 + robot->getRobotManage()->freedrive(false); + + // 等待退出拖动示教模式 + i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式失能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "退出拖动示教成功" << std::endl; + + // 接口调用: 获取DO00的值 + value = robot->getIoControl()->getStandardDigitalOutput(0); + std::cout << "DO00的值:" << (value ? "高电平" : "低电平") << std::endl; +} + +// 模拟输入 +void exampleStandardAnalogInput(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取模拟输入数量 + int ai_num = robot->getIoControl()->getStandardAnalogInputNum(); + std::cout << "模拟输入数量: " << ai_num << std::endl; + + // 打印所有的模拟输入值 + for (int i = 0; i < ai_num; i++) { + // 接口调用: 获取模拟输入值 + auto input_value = robot->getIoControl()->getStandardAnalogInput(i); + std::cout << "管脚" << i << "模拟输入值:" << input_value << std::endl; + } +} + +// 模拟输出——无触发动作,用户设置输出值 +void exampleStandardAnalogOutput1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取标准模拟输出数量 + int ao_num = robot->getIoControl()->getStandardAnalogOutputNum(); + std::cout << "模拟输出数量: " << ao_num << std::endl; + + // 接口调用:设置所有的模拟输出动作为无触发。 + // 当模拟输出的动作为无触发时,用户可设置模拟输出值。 + StandardOutputRunState output_runstate = StandardOutputRunState::None; + for (int i = 0; i < ao_num; i++) { + robot->getIoControl()->setStandardAnalogOutputRunstate(i, + output_runstate); + } + + // 接口调用: 设置AO0的输出电压为5V + double value = 5.0; + robot->getIoControl()->setStandardAnalogOutput(0, value); + std::cout << "设置AO0的输出电压:" << value << " V" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取AO0的输出电压 + value = robot->getIoControl()->getStandardAnalogOutput(0); + std::cout << "获取AO0的输出电压:" << value << " V" << std::endl; +} + +// 模拟输出——设置触发动作为拖动示教器时最大,控制器自动设置输出值 +void exampleStandardAnalogOutput2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取标准模拟输出数量 + int ao_num = robot->getIoControl()->getStandardAnalogOutputNum(); + std::cout << "模拟输出数量: " << ao_num << std::endl; + + // 接口调用:设置AO0的动作为拖动示教时最大 + // 当机器人进入拖动示教时,AO0的值最大。 + // 当机器人退出拖动示教时,AO0的值为0。 + // 此时,用户不可设置AO0的值。 + StandardOutputRunState output_runstate = + StandardOutputRunState::Handguiding; + robot->getIoControl()->setStandardAnalogOutputRunstate(0, output_runstate); + + // 接口调用: 进入拖动示教 + robot->getRobotManage()->freedrive(true); + + // 等待进入拖动示教模式 + int i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式使能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "进入拖动示教成功" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取AO0的输出电压 + double value = robot->getIoControl()->getStandardAnalogOutput(0); + std::cout << "获取AO0的输出电压:" << value << " V" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(3)); + + // 接口调用: 退出拖动示教 + robot->getRobotManage()->freedrive(false); + + // 等待退出拖动示教模式 + i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式失能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "退出拖动示教成功" << std::endl; + + // 接口调用: 获取AO0的输出电压 + value = robot->getIoControl()->getStandardAnalogOutput(0); + std::cout << "获取AO0的输出电压:" << value << " V" << std::endl; +} + +// 工具数字输入——无触发动作 +void exampleToolDigitalInput1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取工具数字IO的数量,包含输入和输出 + int tool_io_num = robot->getIoControl()->getToolDigitalInputNum(); + std::cout << "获取工具数字IO的数量(包含输入和输出):" << tool_io_num + << std::endl; + + // 接口调用: 设置TOOL_IO[0]为输入 + bool isInput = true; + robot->getIoControl()->setToolIoInput(0, isInput); + std::this_thread::sleep_for(std::chrono::seconds(0)); + std::cout << "设置TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的类型 + isInput = robot->getIoControl()->isToolIoInput(0); + std::cout << "获取TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + // 接口调用: 设置TOOL_IO[0]的动作为无触发 + StandardInputAction input_action = StandardInputAction::Default; + robot->getIoControl()->setToolDigitalInputAction(0, input_action); + + // 接口调用: 获取TOOL_IO[0]的值 + bool value = robot->getIoControl()->getToolDigitalInput(0); + std::cout << "获取TOOL_IO[0]数字输入值:" << (value ? "高电平" : "低电平") + << std::endl; +} + +// 工具数字输入——触发动作为拖动示教 +void exampleToolDigitalInput2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取工具数字IO的数量,包含输入和输出 + int tool_io_num = robot->getIoControl()->getToolDigitalInputNum(); + std::cout << "获取工具数字IO的数量(包含输入和输出):" << tool_io_num + << std::endl; + + // 接口调用: 设置TOOL_IO[0]为输入 + bool isInput = true; + robot->getIoControl()->setToolIoInput(0, isInput); + std::this_thread::sleep_for(std::chrono::seconds(0)); + std::cout << "设置TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的类型 + isInput = robot->getIoControl()->isToolIoInput(0); + std::cout << "获取TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + // 接口调用: 设置TOOL_IO[0]的动作为拖动示教 + StandardInputAction input_action = StandardInputAction::Handguide; + robot->getIoControl()->setToolDigitalInputAction(0, input_action); + + std::cout << "说明:当TOOL_IO[0]为高电平(TOOL_IO[0]和GND短接)时," + "机器人进入拖动示教。" + << std::endl; + std::cout + << "当TOOL_IO[0]为低电平(TOOL_IO[0]和GND断开)时,机器人退出拖动示教。" + << std::endl; +} + +// 工具数字输出——无触发动作,用户设置输出值 +void exampleToolDigitalOutput1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取工具数字IO的数量,包含输入和输出 + int tool_io_num = robot->getIoControl()->getToolDigitalInputNum(); + std::cout << "获取工具数字IO的数量(包含输入和输出):" << tool_io_num + << std::endl; + + // 接口调用: 设置TOOL_IO[0]为输出 + bool isInput = false; + robot->getIoControl()->setToolIoInput(0, isInput); + std::this_thread::sleep_for(std::chrono::seconds(0)); + std::cout << "设置TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的类型 + isInput = robot->getIoControl()->isToolIoInput(0); + std::cout << "获取TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + // 接口调用: 设置TOOL_IO[0]的动作为无触发 + // 当工具数字输出的动作为无触发时,用户可设置工具数字输出值。 + StandardOutputRunState output_runstate = StandardOutputRunState::None; + robot->getIoControl()->setToolDigitalOutputRunstate(0, output_runstate); + + // 接口调用: 设置TOOL_IO[0]为高电平 + bool value = true; + robot->getIoControl()->setToolDigitalOutput(0, value); + std::cout << "设置TOOL_IO[0]的值:" << (value ? "高电平" : "低电平") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的值 + value = robot->getIoControl()->getToolDigitalOutput(0); + std::cout << "获取TOOL_IO[0]的值:" << (value ? "高电平" : "低电平") + << std::endl; +} + +// 工具数字输出——设置触发动作为拖动示教,控制器自动设置输出值 +void exampleToolDigitalOutput2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取工具数字IO的数量,包含输入和输出 + int tool_io_num = robot->getIoControl()->getToolDigitalInputNum(); + std::cout << "获取工具数字IO的数量(包含输入和输出):" << tool_io_num + << std::endl; + + // 接口调用: 设置TOOL_IO[0]为输出 + bool isInput = false; + robot->getIoControl()->setToolIoInput(0, isInput); + std::this_thread::sleep_for(std::chrono::seconds(0)); + std::cout << "设置TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的类型 + isInput = robot->getIoControl()->isToolIoInput(0); + std::cout << "获取TOOL_IO[0]的类型为:" << (isInput ? "输入" : "输出") + << std::endl; + + // 接口调用: 设置TOOL_IO[0]的动作为拖动示教。 + // 当机器人进入拖动示教时,TOOL_IO[0]的值为高电平。 + // 当机器人退出拖动示教时,TOOL_IO[0]的值为低电平。 + // 此时,用户不可设置TOOL_IO[0]的值。 + StandardOutputRunState output_runstate = + StandardOutputRunState::Handguiding; + robot->getIoControl()->setToolDigitalOutputRunstate(0, output_runstate); + + // 接口调用: 进入拖动示教 + robot->getRobotManage()->freedrive(true); + + // 等待进入拖动示教模式 + int i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式使能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "进入拖动示教成功" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的值 + bool value = robot->getIoControl()->getToolDigitalOutput(0); + std::cout << "获取TOOL_IO[0]的值:" << (value ? "高电平" : "低电平") + << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(3)); + + // 接口调用: 退出拖动示教 + robot->getRobotManage()->freedrive(false); + + // 等待退出拖动示教模式 + i = 0; + while (robot->getRobotManage()->isFreedriveEnabled()) { + if (i++ > 5) { + std::cerr << "拖动示教模式失能失败" << std::endl; + return; + } + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + std::cout << "退出拖动示教成功" << std::endl; + + std::this_thread::sleep_for(std::chrono::seconds(1)); + + // 接口调用: 获取TOOL_IO[0]的值 + value = robot->getIoControl()->getToolDigitalOutput(0); + std::cout << "获取TOOL_IO[0]的值:" << (value ? "高电平" : "低电平") + << std::endl; +} + +// 工具模拟输入 +void exampleToolAnalogInput(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取工具端模拟输入数量 + int tool_ai_num = robot->getIoControl()->getToolAnalogInputNum(); + std::cout << "工具端模拟输入数量: " << tool_ai_num << std::endl; + + // 接口调用: 获取所有工具模拟输入值 + for (int i = 0; i < tool_ai_num; i++) { + double value = robot->getIoControl()->getToolAnalogInput(i); + std::cout << "TOOL_AI[" << i << "]的值:" << value << std::endl; + } +} + +// 安全IO +void exampleSafetyIO(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取安全IO输入和输出数量 + int safety_input_num = + robot->getIoControl()->getConfigurableDigitalInputNum(); + int safety_output_num = + robot->getIoControl()->getConfigurableDigitalOutputNum(); + + std::cout << "安全IO的输入数量: " << safety_input_num << std::endl; + std::cout << "安全IO的输出数量: " << safety_output_num << std::endl; + + // 获取安全IO输入的值 + for (int i = 0; i < safety_input_num; i++) { + // 接口调用: 获取安全IO输入的值 + auto value = robot->getIoControl()->getConfigurableDigitalInput(i); + std::cout << "管脚" << i << "安全IO输入的值:" << value << std::endl; + } + + // 获取安全IO输出的值 + for (int i = 0; i < safety_output_num; i++) { + // 接口调用: 获取安全IO输出的值 + auto value = robot->getIoControl()->getConfigurableDigitalOutput(i); + std::cout << "管脚" << i << "安全IO输出的值:" << value << std::endl; + } +} + +// 联动IO +void exampleStaticLinkIO(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 获取联动IO输入和输出数量 + int link_input_num = robot->getIoControl()->getStaticLinkInputNum(); + int link_output_num = robot->getIoControl()->getStaticLinkOutputNum(); + std::cout << "联动IO的输入数量: " << link_input_num << std::endl; + std::cout << "联动IO的输出数量: " << link_output_num << std::endl; + + // 获取联动IO输入的值 + int input_value_decimal = robot->getIoControl()->getStaticLinkInputs(); + printBit(input_value_decimal, "所有联动IO输入值", link_input_num); + + // 获取联动IO输出的值 + int output_value_decimal = robot->getIoControl()->getStaticLinkOutputs(); + + printBit(output_value_decimal, "所有联动IO输出值", link_output_num); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 数字输入——无触发动作 + exampleStandardDigitalInput1(rpc_cli); + + // // 数字输入——触发动作为拖动示教 + // exampleStandardDigitalInput2(rpc_cli); + + // 数字输出——无触发动作,用户设置输出值 + exampleStandardDigitalOutput1(rpc_cli); + + // // 数字输出——设置触发动作为拖动示教,控制器自动设置输出值 + // exampleStandardDigitalOutput2(rpc_cli); + + // 模拟输入 + exampleStandardAnalogInput(rpc_cli); + + // 模拟输出——无触发动作,用户设置输出值 + exampleStandardAnalogOutput1(rpc_cli); + + // // 模拟输出——设置触发动作为拖动示教器时最大,控制器自动设置输出值 + // exampleStandardAnalogOutput2(rpc_cli); + + // 工具数字输入——无触发动作 + exampleToolDigitalInput1(rpc_cli); + + // // 工具数字输入——触发动作为拖动示教 + // exampleToolDigitalInput2(rpc_cli); + + // 工具数字输出——无触发动作,用户设置输出值 + exampleToolDigitalOutput1(rpc_cli); + + // // 工具数字输出——设置触发动作为拖动示教,控制器自动设置输出值 + // exampleToolDigitalOutput2(rpc_cli); + + // 工具模拟输入 + exampleToolAnalogInput(rpc_cli); + + // 安全IO + exampleSafetyIO(rpc_cli); + + // 联动IO + exampleStaticLinkIO(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_joint_trajectory.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_joint_trajectory.cpp new file mode 100644 index 00000000..34fa5f69 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_joint_trajectory.cpp @@ -0,0 +1,454 @@ +/** + * @file example_joint_trajectory.cpp + * @brief Aubo 机械臂多点位关节轨迹运动示例 + * + * 本示例演示了如何使用 Aubo SDK 控制机械臂进行多点位关节轨迹运动 + * 主要功能包括: + * - 建立 RPC 连接并登录 + * - 检查安全状态、设置负载、上电和松刹车 + * - 启动运行时(start)环境 + * - 使用 moveJoint 进行多点位往复运动 + * - 使用 setLabel 和 getPlanContext 跟踪当前执行点位 + * + * \warning: 运行前请根据实际情况修改代码中的关节角度和负载参数! + * + * 使用方法: + * ./example_joint_trajectory [roobot_ip] + * 默认连接 kDefaultRobotIP + */ + +#include +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +//============================================================================== +// 常量定义 +//============================================================================== + +/** @brief 默认机器人 IP 地址 */ +constexpr char kDefaultRobotIp[] = "127.0.0.1"; + +/** @brief RPC 服务端口号 */ +constexpr int kRpcPort = 30004; + +/** @brief RPC 请求超时时间(毫秒) */ +constexpr int kRpcTimeoutMs = 1000; + +/** @brief 运行时启动超时时间(毫秒) */ +constexpr int kRuntimeStartTimeoutMs = 3000; + +/** @brief 运行时状态轮询间隔(毫秒) */ +constexpr int kRuntimePollIntervalMs = 20; + +/** @brief 上电超时时间(毫秒) */ +constexpr int kPowerOnTimeoutMs = 20000; + +/** @brief 松刹车超时时间(毫秒) */ +constexpr int kStartupTimeoutMs = 10000; + +/** @brief 机械臂模式轮询间隔(毫秒) */ +constexpr int kRobotModePollIntervalMs = 1000; + +//============================================================================== +// 工具函数 +//============================================================================== + +/** + * @brief 将角度值转换为弧度值 + * @param degree 角度值(度) + * @return 对应的弧度值 + */ +constexpr double degreeToRadian(double degree) +{ + return degree * M_PI / 180.0; +} + +//============================================================================== +// 等待辅助函数 +//============================================================================== + +/** + * @brief 等待机械臂进入指定的工作模式 + * + * 该函数会轮询机械臂的当前模式,直到达到目标模式或超时。 + * 机械臂的模式转换是异步的,例如上电后需要等待进入 Idle 模式, + * 松刹车后需要等待进入 Running 模式。 + * + * @param robot 机器人接口指针 + * @param target_mode 目标工作模式(如 Idle、Running 等) + * @param timeout_ms 超时时间(毫秒) + * @return true 成功进入目标模式 + * @return false 超时未能进入目标模式 + */ +bool waitForRobotMode(RobotInterfacePtr robot, RobotModeType target_mode, + int timeout_ms) +{ + int elapsed_ms = 0; + while (elapsed_ms < timeout_ms) { + auto current_mode = robot->getRobotState()->getRobotModeType(); + if (current_mode == target_mode) { + return true; + } + std::cout << "当前模式: " << current_mode << std::endl; + std::this_thread::sleep_for( + std::chrono::milliseconds(kRobotModePollIntervalMs)); + elapsed_ms += kRobotModePollIntervalMs; + } + return false; +} + +/** + * @brief 等待运行时环境进入 Running 状态 + * + * 运行时(RuntimeMachine)启动后需要一定时间完成初始化, + * 该函数会轮询运行时状态,直到进入 Running 状态或超时。 + * 只有在 Running 状态下才能下发运动指令。 + * + * @param runtime 运行时接口指针 + * @param timeout_ms 超时时间(毫秒),默认为 kRuntimeStartTimeoutMs + * @return true 运行时已进入 Running 状态 + * @return false 超时未能进入 Running 状态 + */ +bool waitForRuntimeRunning(RuntimeMachinePtr runtime, + int timeout_ms = kRuntimeStartTimeoutMs) +{ + int elapsed_ms = 0; + while (elapsed_ms < timeout_ms) { + if (runtime->getRuntimeState() == RuntimeState::Running) { + return true; + } + std::this_thread::sleep_for( + std::chrono::milliseconds(kRuntimePollIntervalMs)); + elapsed_ms += kRuntimePollIntervalMs; + } + return false; +} + +//============================================================================== +// 主函数 +//============================================================================== + +/** + * @brief 程序入口函数 + * + * 执行流程: + * 1. 建立 RPC 连接并登录 + * 2. 检查安全状态、设置负载、上电和松刹车 + * 3. 启动运行时环境 + * 4. 执行往复运动并等待完成 + * 5. 清理并退出 + * + * @param argc 命令行参数个数 + * @param argv 命令行参数数组,argv[1] 可指定机器人 IP + * @return 0 成功,-1 失败 + */ +int main(int argc, char *argv[]) +{ +#ifdef _WIN32 + SetConsoleOutputCP(CP_UTF8); +#endif + + std::string robot_ip = kDefaultRobotIp; + if (argc > 1) { + robot_ip = argv[1]; + } + + // 创建 RPC 客户端,用于与机器人控制器通信 + auto rpc_client = std::make_shared(); + RuntimeMachinePtr runtime = nullptr; + + try { + //---------------------------------------------------------------------- + // 第一步:建立 RPC 连接并登录 + //---------------------------------------------------------------------- + + rpc_client->setRequestTimeout(kRpcTimeoutMs); + + if (rpc_client->connect(robot_ip, kRpcPort) != AUBO_OK) { + std::cerr << "连接失败: " << robot_ip << ":" << kRpcPort + << std::endl; + return -1; + } + std::cout << "已连接到 " << robot_ip << std::endl; + + // 使用默认账户登录 + if (rpc_client->login("aubo", "123456") != AUBO_OK) { + std::cerr << "登录失败" << std::endl; + rpc_client->disconnect(); + return -1; + } + std::cout << "登录成功" << std::endl; + + // 获取机器人接口 + auto robot_names = rpc_client->getRobotNames(); + if (robot_names.empty()) { + std::cerr << "未找到机器人" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + auto robot = rpc_client->getRobotInterface(robot_names.front()); + + //---------------------------------------------------------------------- + // 第二步:检查安全状态、设置负载、上电和松刹车 + //---------------------------------------------------------------------- + + // 检查安全状态,只有 Normal 和 ReducedMode 可以正常操作 + auto safety_mode = robot->getRobotState()->getSafetyModeType(); + std::cout << "当前安全模式: " << safety_mode << std::endl; + + // 尝试恢复异常安全状态 + if (safety_mode == SafetyModeType::ProtectiveStop || + safety_mode == SafetyModeType::Violation) { + std::cout << "检测到保护性停机,正在解锁..." << std::endl; + robot->getRobotManage()->setUnlockProtectiveStop(); + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + safety_mode = robot->getRobotState()->getSafetyModeType(); + } + + if (safety_mode == SafetyModeType::SystemEmergencyStop || + safety_mode == SafetyModeType::RobotEmergencyStop || + safety_mode == SafetyModeType::Fault) { + // 急停或故障,尝试重置安全接口板 + std::cout << "检测到急停/故障,正在重置..." << std::endl; + robot->getRobotManage()->restartInterfaceBoard(); + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); + safety_mode = robot->getRobotState()->getSafetyModeType(); + } + + // 再次检查安全状态 + if (safety_mode != SafetyModeType::Undefined && + safety_mode != SafetyModeType::Normal && + safety_mode != SafetyModeType::ReducedMode) { + std::cerr << "安全状态异常: " << safety_mode << std::endl; + if (safety_mode == SafetyModeType::SafeguardStop) { + std::cerr << "防护停机,请检查安全IO信号是否正常" << std::endl; + } else if (safety_mode == SafetyModeType::Recovery) { + std::cerr << "机械臂超出安全限制,请手动移动到安全位置" + << std::endl; + } else if (safety_mode == SafetyModeType::SystemEmergencyStop || + safety_mode == SafetyModeType::RobotEmergencyStop) { + std::cerr << "请释放急停按钮" << std::endl; + } else if (safety_mode == SafetyModeType::Fault) { + std::cerr << "机械臂存在硬件故障,请联系技术支持" << std::endl; + } + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + + // 设置负载参数(质量kg, 重心m, 惯量kg·m²) + // 警告:请根据实际末端负载修改参数! + robot->getRobotConfig()->setPayload(0, { 0, 0, 0 }, {}, + { 0, 0, 0, 0, 0, 0 }); + + // 机械臂模式转换流程:Disconnected -> PowerOff -> Idle -> Running + auto robot_mode = robot->getRobotState()->getRobotModeType(); + std::cout << "当前机械臂模式: " << robot_mode << std::endl; + + // 如果未上电(PowerOff 或更早状态),需要先上电 + if (robot_mode != RobotModeType::Idle && + robot_mode != RobotModeType::Running) { + std::cout << "正在上电..." << std::endl; + if (robot->getRobotManage()->poweron() != AUBO_OK) { + std::cerr << "上电请求失败" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + + if (!waitForRobotMode(robot, RobotModeType::Idle, + kPowerOnTimeoutMs)) { + std::cerr << "等待上电超时" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + robot_mode = RobotModeType::Idle; + } + + // 如果已上电但未松刹车(Idle 状态),需要松刹车 + if (robot_mode == RobotModeType::Idle) { + std::cout << "正在松刹车..." << std::endl; + if (robot->getRobotManage()->startup() != AUBO_OK) { + std::cerr << "松刹车请求失败" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + + if (!waitForRobotMode(robot, RobotModeType::Running, + kStartupTimeoutMs)) { + std::cerr << "等待松刹车超时" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + } + + std::cout << "机械臂已就绪" << std::endl; + + //---------------------------------------------------------------------- + // 第三步:启动运行时环境 + //---------------------------------------------------------------------- + + // 获取运行时环境接口,运行时是执行运动指令的核心组件 + runtime = rpc_client->getRuntimeMachine(); + std::cout << "正在启动运行时..." << std::endl; + bool runtime_started = false; + int elapsed_ms = 0; + while (elapsed_ms < kRuntimeStartTimeoutMs) { + if (runtime->start() == AUBO_OK) { + runtime_started = true; + break; + } + std::this_thread::sleep_for( + std::chrono::milliseconds(kRuntimePollIntervalMs)); + elapsed_ms += kRuntimePollIntervalMs; + } + + if (!runtime_started) { + std::cerr << "运行时启动超时" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + + if (!waitForRuntimeRunning(runtime)) { + std::cerr << "等待运行时就绪超时" << std::endl; + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } + std::cout << "运行时已启动" << std::endl; + + //---------------------------------------------------------------------- + // 第四步:执行往复运动并等待完成 + //---------------------------------------------------------------------- + + // 定义 3 组关节目标位置(6 轴机器人,每组 6 个关节角度,单位:弧度) + // 警告:运行前请根据实际机型修改关节角度,避免碰撞或超限! + std::vector> joint_positions = { + // 位置 1:初始位置 + { degreeToRadian(0.0), degreeToRadian(-15.0), degreeToRadian(100.0), + degreeToRadian(25.0), degreeToRadian(90.0), degreeToRadian(0.0) }, + + // 位置 2:中间位置 + { degreeToRadian(35.92), degreeToRadian(-11.28), + degreeToRadian(59.96), degreeToRadian(-18.76), + degreeToRadian(90.0), degreeToRadian(35.92) }, + + // 位置 3:目标位置 + { degreeToRadian(41.04), degreeToRadian(-7.65), + degreeToRadian(98.80), degreeToRadian(16.44), + degreeToRadian(90.0), degreeToRadian(11.64) } + }; + // 设置全局速度比率(0.0~1.0),影响所有运动指令的实际速度 + // 提示:示例默认使用较低速度,可根据实际需求调整 + robot->getMotionControl()->setSpeedFraction(0.3); + + // 构建完整的运动序列 + // 单次往复:位置1 -> 位置2 -> 位置3 -> 位置2 + std::vector single_round = { 0, 1, 2, 1 }; + int repeat_count = 10; // 往复运动重复次数 + + std::vector move_sequence; + for (int i = 0; i < repeat_count; ++i) { + move_sequence.insert(move_sequence.end(), single_round.begin(), + single_round.end()); + } + + // 执行运动序列 + int instruction_label = 0; + bool motion_failed = false; + + // 设置初始标签,用于标记运动序列起点 + runtime->setLabel(instruction_label, "开始"); + + for (size_t position_index : move_sequence) { + // 下发关节运动指令,队列满时重试 + while (true) { + int result = robot->getMotionControl()->moveJoint( + joint_positions[position_index], 0.5, 0.5, 0, 0); + + if (result == AUBO_OK) { + // 设置标签用于追踪执行进度 + runtime->setLabel( + ++instruction_label, + "位置" + std::to_string(position_index + 1)); + std::cout << "下发移动到位置" << (position_index + 1) + << ", label=" << instruction_label << std::endl; + break; + } else if (result == AUBO_QUEUE_FULL) { + // 队列已满,等待后重试 + std::this_thread::sleep_for(std::chrono::milliseconds(20)); + } else { + std::cerr << "moveJoint 失败, 错误码: " << result + << std::endl; + motion_failed = true; + break; + } + } + if (motion_failed) { + break; + } + } + + if (motion_failed) { + std::cerr << "运动指令下发失败,已下发 " << instruction_label + << " 条" << std::endl; + } else { + std::cout << "指令下发完成, 共 " << instruction_label << " 条" + << std::endl; + } + + // 等待已下发的运动指令执行完成 + if (instruction_label > 0) { + // getPlanContext 返回当前执行到的标签号 + // 当 line_number >= 最后一条指令的标签时表示完成 + while (true) { + // 检查运行时状态,如果已停止则退出等待 + if (runtime->getRuntimeState() != RuntimeState::Running) { + std::cerr << "运行时已停止,退出等待" << std::endl; + break; + } + auto [_, line_number, comment] = runtime->getPlanContext(); + if (line_number >= instruction_label) { + std::cout << "运动完成" << std::endl; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + } + + //---------------------------------------------------------------------- + // 第五步:清理并退出 + //---------------------------------------------------------------------- + + runtime->abort(); + rpc_client->logout(); + rpc_client->disconnect(); + std::cout << "已退出" << std::endl; + + return 0; + + } catch (const AuboException &e) { + std::cerr << "SDK 异常: " << e.what() << ", 错误码: " << e.code() + << std::endl; + if (runtime) + runtime->stop(); + rpc_client->logout(); + rpc_client->disconnect(); + return -1; + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_math.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_math.cpp new file mode 100644 index 00000000..1111a25c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_math.cpp @@ -0,0 +1,387 @@ +#include "aubo_sdk/rpc.h" +#include "math.h" +#ifdef WIN32 +#include +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +// clang-format off + +// 模板函数:打印单个变量的值和名称 +template void printSingle(T param, std::string name) { + std::cout << name << ": " << param << std::endl; +} + +// 模板函数: 打印类型为std::vector的变量 +template void printVec(std::vector param, std::string name) { + std::cout << name << ": "; + + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 模板函数: 打印类型为 std::vector> 的变量 +template void print2Vec(std::vector param, std::string name) { + std::cout << name << ": " << std::endl; + for (size_t i = 0; i < param.size(); i++) { + std::cout << " 第" << i + 1 << "组: "; + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j); + + if (j != param.at(i).size() - 1) { + std::cout << ", "; + } else { + std::cout << std::endl; + } + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +void examplePoseAdd(RpcClientPtr impl) { + std::vector p1 = {0.2, 0.5, 0.1, 1.57, 0, 0}; + std::vector p2 = {0.2, 0.5, 0.6, 1.57, 0, 0}; + + // 接口调用: 位姿加法 + auto result = impl->getMath()->poseAdd(p1, p2); + + printVec(result, "poseAdd"); +} + +void examplePoseSub(RpcClientPtr impl) { + std::vector p1 = {0.2, 0.5, 0.1, 1.57, 0, 0}; + std::vector p2 = {0.2, 0.5, 0.6, 1.57, 0, 0}; + + // 接口调用: 位姿减法 + auto result = impl->getMath()->poseSub(p1, p2); + + printVec(result, "poseSub"); +} + +void exampleInterpolatePose(RpcClientPtr impl) { + std::vector p1 = {0.2, 0.2, 0.4, 0, 0, 0}; + std::vector p2 = {0.2, 0.2, 0.6, 0, 0, 0}; + double alpha = 0.5; + + // 接口调用: 计算线性差值 + auto result = impl->getMath()->interpolatePose(p1, p2, alpha); + + printVec(result, "interpolatePose"); +} + +void examplePoseTrans(RpcClientPtr impl) { + // B相对于A的位姿 + std::vector F_B_A = {0.2, 0.5, 0.1, 1.57, 0, 0}; + // C相对于B的位姿 + std::vector F_C_B = {0.2, 0.5, 0.6, 1.57, 0, 0}; + + // 接口调用: 位姿变换获得C相对于A的位姿 + auto F_C_A = impl->getMath()->poseTrans(F_B_A, F_C_B); + + printVec(F_C_A, "poseTrans"); +} + +void examplePoseTransInv(RpcClientPtr impl) { + // C相对于A的位姿 + std::vector F_C_A = {0.4, -0.0996016, 0.600478, 3.14, 0, 0}; + // C相对于B的位姿 + std::vector F_C_B = {0.2, 0.5, 0.6, 1.57, 0, 0}; + // 接口调用: 位姿逆变换获得B相对于A的位姿 + auto F_B_A = impl->getMath()->poseTransInv(F_C_A, F_C_B); + + printVec(F_B_A, "poseTransInv"); +} + +void examplePoseInverse(RpcClientPtr impl) { + std::vector p = {0.2, 0.5, 0.1, 1.57, 0, 3.14}; + // 接口调用: 获取位姿的逆 + auto result = impl->getMath()->poseInverse(p); + + printVec(result, "poseInverse"); +} + +void examplePoseDistance(RpcClientPtr impl) { + std::vector p1 = {0.1, 0.3, 0.1, 0.3142, 0.0, 1.571}; + std::vector p2 = {0.2, 0.5, 0.6, 0, -0.172, 0.0}; + + // 接口调用: 获得两个位姿的位置距离 + auto result = impl->getMath()->poseDistance(p1, p2); + + printSingle(result, "poseDistance"); +} + +void examplePoseEqual(RpcClientPtr impl) { + std::vector p1 = {0.1, 0.3, 0.1, 0.3142, 0.0, 1.571}; + std::vector p2 = {0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711}; + // 接口调用: 判断两个位姿是否相等 + auto result = impl->getMath()->poseEqual(p1, p2); + printSingle(result, "poseEqual"); +} + +// 欧拉角转四元数 +void exampleRpyToQuat(RpcClientPtr impl) { + std::vector rpy = {0.611, 0.785, 0.960}; + // 接口调用: 欧拉角转四元数 + auto quat = impl->getMath()->rpyToQuaternion(rpy); + + printVec(quat, "欧拉角 -> 四元数"); +} + +// 四元数转欧拉角 +void exampleQuatToRpy(RpcClientPtr impl) { + std::vector quat = {0.834722, 0.0780426, 0.451893, 0.304864}; + // 接口调用: 四元数转欧拉角 + auto rpy = impl->getMath()->quaternionToRpy(quat); + + printVec(rpy, "四元数 -> 欧拉角"); +} + +// 坐标系标定 +void exampleCalibrateCoordinate(RpcClientPtr impl) { + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + std::vector tcp_offset = {0.17734, 0.00233, 0.14682, 0.0, 0.0, 0.0}; + + // 接口调用: 设置 TCP 偏移值 + impl->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_offset); + + // TCP 在基坐标系下的位姿 + std::vector coord_p0(6), coord_p1(6), coord_p2(6); + coord_p0[0] = 0.55462; + coord_p0[1] = 0.06219; + coord_p0[2] = 0.37175; + coord_p0[3] = -3.142; + coord_p0[4] = 0.0; + coord_p0[5] = 1.580; + + coord_p1[0] = 0.63746; + coord_p1[1] = 0.11805; + coord_p1[2] = 0.37175; + coord_p1[3] = -3.142; + coord_p1[4] = 0.0; + coord_p1[5] = 1.580; + + coord_p2[0] = 0.40441; + coord_p2[1] = 0.28489; + coord_p2[2] = 0.37174; + coord_p2[3] = -3.142; + coord_p2[4] = 0.0; + coord_p2[5] = 1.580; + + // 接口调用: 用户坐标系标定 + // 接口调用: 获取用户坐标系相对于基坐标系的位姿 + auto [user_on_base, ret] = + impl->getMath()->calibrateCoordinate({coord_p0, coord_p1, coord_p2}, 0); + + // 接口调用: 获取 TCP 在基坐标系下的当前位姿 + auto tcp_on_base = + impl->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + + // 接口调用: 获取用户坐标系相对于基坐标系的位姿的逆 + auto tcp_on_base_inv = impl->getMath()->poseInverse(user_on_base); + + // 接口调用: 获取 TCP 在用户坐标系下的当前位姿 + auto tcp_on_user = impl->getMath()->poseTrans(tcp_on_base_inv, tcp_on_base); + + printVec(tcp_on_base, "TCP在基坐标系下的位姿"); + printVec(tcp_offset, "TCP偏移"); + printVec(user_on_base, "用户坐标系相对于基坐标系的位姿"); + printVec(tcp_on_user, "TCP在用户坐标系下的位姿"); +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +// 计算另一半圆弧的中间点 +void exampleCalculateCircleFourthPoint(RpcClientPtr impl) { + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + std::vector tcp_offset = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: 设置 TCP 偏移值 + impl->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_offset); + + // 接口调用: 设置机械臂运动的速度比率 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->setSpeedFraction(0.3); + + std::vector q = {0.00, + -10.43 / 180 * M_PI, + 87.39 / 180 * M_PI, + 7.82 / 180 * M_PI, + 90.0 / 180 * M_PI, + 0.0 / 180 * M_PI}; + + // 接口调用: 关节运动到起始位置 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q, 1.2, 1.0, 0, 0); + // 阻塞 + int ret = waitArrival(impl->getRobotInterface(robot_name)); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + std::vector p1 = {0.5488696249770836, -0.1214996547187204, + 0.2631931199112321, -3.14159198038469, + -3.673205103150083e-06, 1.570796326792424}; + + std::vector p2 = {0.5488696249770835, -0.1214996547187207, + 0.3599720701808493, -3.14159198038469, + -3.6732051029273e-06, 1.570796326792423}; + + std::vector p3 = {0.5488696249770836, -0.0389996547187214, + 0.3599720701808496, -3.141591980384691, + -3.673205102557476e-06, 1.570796326792422}; + + // 接口调用: 直线运动到圆的第一个点 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveLine(p1, 1.2, 0.25, 0, 0); + // 阻塞 + ret = waitArrival(impl->getRobotInterface(robot_name)); + if (ret == 0) { + std::cout << "直线运动到圆的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆的起始点失败" << std::endl; + } + + // 接口调用: 计算另一半圆弧的中间点位置 + auto [p4, retval] = + impl->getMath()->calculateCircleFourthPoint(p1, p2, p3, 1); + + if (retval == 0) { + std::cerr << "计算另一半圆弧的中间点失败,无法完成圆运动" << std::endl; + } else { + // 接口调用: 设置为固定模式 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->setCirclePathMode(0); + + // 接口调用: 做圆弧运动 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveCircle(p2, p3, 1.2, 0.25, 0, 0); + // 阻塞 + ret = waitArrival(impl->getRobotInterface(robot_name)); + if (ret == -1) { + std::cout << "圆运动失败" << std::endl; + } + + // 接口调用: 做组成圆运动的另一半圆弧运动 + impl->getRobotInterface(robot_name) + ->getMotionControl() + ->moveCircle(p4, p1, 1.2, 0.25, 0, 0); + // 阻塞 + ret = waitArrival(impl->getRobotInterface(robot_name)); + if (ret == 0) { + std::cout << "圆运动成功" << std::endl; + } else { + std::cout << "圆运动失败" << std::endl; + } + } +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时, 单位: ms + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 位姿相加 + examplePoseAdd(rpc_cli); + + // 位姿相减 + examplePoseSub(rpc_cli); + + // 位姿线性插值 + exampleInterpolatePose(rpc_cli); + + // 位姿变换 + examplePoseTrans(rpc_cli); + + // 位姿逆变换 + examplePoseTransInv(rpc_cli); + + // 姿态的逆 + examplePoseInverse(rpc_cli); + + // 位姿距离(不包括姿态) + examplePoseDistance(rpc_cli); + + // 判断位姿是否相等 + examplePoseEqual(rpc_cli); + + // 欧拉角转四元数 + exampleRpyToQuat(rpc_cli); + + // 四元数转欧拉角 + exampleQuatToRpy(rpc_cli); + + // 坐标系标定 + exampleCalibrateCoordinate(rpc_cli); + + // 计算另一半圆弧的中间点 + // exampleCalculateCircleFourthPoint(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_moveSpiral_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_moveSpiral_i5.cpp new file mode 100644 index 00000000..48102fab --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_moveSpiral_i5.cpp @@ -0,0 +1,216 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleMoveSpiral1(RpcClientPtr cli) +{ + // 关节角,单位: 弧度 + std::vector start_q = { + -0.04723656192459002, -0.3147961077805709, 2.122706013891513, + 1.388465989105001, 1.59432305862766, -0.04096820515125211 + }; + + // 位姿 + std::vector start_p = { 0.4992287020163843, -0.1430213015569043, + 0.1929798566172833, 2.619351290960044, + 3.577791911729708e-05, 1.570799472227775 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint(start_q, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 螺旋线运动圆心位置 + std::vector center_position = { 0.4992155149838216, + -0.08141538203368692, + 0.1929808028919965 }; + std::vector center_pose(6, 0.); + + // 螺旋线运动基于基坐标系的XY平面 + // 圆心位置 + for (int i = 0; i < 3; i++) { + center_pose[i] = center_position[i]; + } + // 圆心姿态 + for (int i = 3; i < 6; i++) { + center_pose[i] = 0.; + } + + // 设置螺旋线运动参数 + SpiralParameters param; + param.spiral = 0.005; // 每转一圈螺旋运动对应圆半径增加的步长 + param.helix = 0.005; // 螺旋运动在z轴方向上的步长 + param.angle = 6 * M_PI; // 螺旋运动角度范围 + param.plane = 0; // 基于XY平面 + param.frame = center_pose; + + robot_interface->getMotionControl()->moveSpiral(param, 0, 0.25, 1.2, 0); + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "螺旋线运动成功" << std::endl; + } else { + std::cout << "螺旋线运动失败" << std::endl; + } +} + +void exampleMoveSpiral2(RpcClientPtr cli) +{ + // 关节角,单位: 弧度 + std::vector start_q = { + -0.04723656192459002, -0.3147961077805709, 2.122706013891513, + 1.388465989105001, 1.59432305862766, -0.04096820515125211 + }; + + // 位姿 + std::vector start_p = { 0.4992287020163843, -0.1430213015569043, + 0.1929798566172833, 2.619351290960044, + 3.577791911729708e-05, 1.570799472227775 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint(start_q, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 螺旋线运动圆心位置 + std::vector center_position = { 0.4992155149838216, + -0.08141538203368692, + 0.1929808028919965 }; + std::vector center_pose(6, 0.); + + // 螺旋线运动基于TCP坐标系的XY平面 + // 圆心位置 + for (int i = 0; i < 3; i++) { + center_pose[i] = center_position[i]; + } + // 圆心姿态 + auto tcp_pose = robot_interface->getRobotState()->getTcpPose(); + for (int i = 3; i < 6; i++) { + center_pose[i] = tcp_pose[i]; + } + + // 设置螺旋线运动参数 + SpiralParameters param; + param.spiral = 0.005; // 每转一圈螺旋运动对应圆半径增加的步长 + param.helix = 0.005; // 螺旋运动在z轴方向上的步长 + param.angle = 10 * M_PI; // 螺旋运动角度范围 + param.plane = 0; // 基于XY平面 + param.frame = center_pose; + + robot_interface->getMotionControl()->moveSpiral(param, 0, 0.25, 1.2, 0); + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "螺旋线运动成功" << std::endl; + } else { + std::cout << "螺旋线运动失败" << std::endl; + } +} + +/** + * 功能: 机械臂螺旋线运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率和工具中心点 + * 第三步: 先关节运动到起始位置,然后进行螺旋线运动 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 螺旋线运动 + exampleMoveSpiral1(rpc_cli); + + // 螺旋线运动 + // exampleMoveSpiral2(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_axis.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_axis.cpp new file mode 100644 index 00000000..20fd4c26 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_axis.cpp @@ -0,0 +1,263 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleMoveAxis1(RpcClientPtr cli) +{ + // 关节角,单位: 弧度 + std::vector joint_angle = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + // 位姿 + std::vector pose1 = { -0.155944, -0.727344, 0.439066, + 3.05165, 0.0324355, 1.80417 }; + std::vector pose2 = { -0.581143, -0.357548, 0.439066, + 3.05165, 0.0324355, 1.80417 }; + std::vector pose3 = { 0.503502, -0.420646, 0.439066, + 3.05165, 0.0324355, 1.80417 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + std::string axis_group_name = "test"; + auto axis = cli->getAxisInterface(cli->getAxisNames().front()); + auto syn_move = cli->getSyncMove(robot_name); + syn_move->axisGroupAdd(axis_group_name, { 0, 1, 0 }, "base"); + syn_move->axisGroupAddAxis(axis_group_name, cli->getAxisNames().front(), + "base", { 0, 1, 0 }); + robot_interface->getRobotConfig()->enableAxisGroup(axis_group_name); + + // 接口调用: 直线运动到位置1 + robot_interface->getMotionControl()->moveLineWithAxisGroup( + pose1, 1.2, 0.25, 0.025, 0, axis_group_name, { -0.14 }); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置1成功!" << std::endl; + } else { + std::cout << "直线运动到位置1失败!" << std::endl; + } + + // 接口调用: 直线运动到位置2 + robot_interface->getMotionControl()->moveLineWithAxisGroup( + pose2, 1.2, 0.25, 0.025, 0, axis_group_name, { -0.126 }); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置2成功!" << std::endl; + } else { + std::cout << "直线运动到位置2失败!" << std::endl; + } + + // 接口调用: 直线运动到位置3 + robot_interface->getMotionControl()->moveLineWithAxisGroup( + pose3, 1.2, 0.25, 0.025, 0, axis_group_name, { -0.08 }); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置3成功!" << std::endl; + } else { + std::cout << "直线运动到位置3失败!" << std::endl; + } +} + +void exampleMoveAxis2(RpcClientPtr cli) +{ + // 接口调用: 开启运行时。 + // 注意: 摆弧运动需要将运行时打开,否则摆弧不生效。 + cli->getRuntimeMachine()->start(); + + // 关节角,单位: 弧度 + std::vector joint_angle = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + std::vector joint_angle1 = { + -30.93 * (M_PI / 180), -18.57 * (M_PI / 180), 95.20 * (M_PI / 180), + 23.79 * (M_PI / 180), 89.95 * (M_PI / 180), -30.93 * (M_PI / 180) + }; + // 位姿 + std::vector pose1 = { 0.1112, -0.4403, 0.36491, -3.14, 0, 1.576 }; + std::vector pose2 = { + 0.065, -0.41235, 0.43762, 3.044, 0.005, 0.045 + }; + std::vector pose3 = { -0.34103, -0.35413, 0.53763, + 3.044, 0.005, 0.045 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.7); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle1, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 直线运动到位置1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置1成功!" << std::endl; + } else { + std::cout << "直线运动到位置1失败!" << std::endl; + } + + std::string axis_group_name = "test"; + auto axis = cli->getAxisInterface(cli->getAxisNames().front()); + auto syn_move = cli->getSyncMove(robot_name); + syn_move->axisGroupAdd(axis_group_name, { 0, 1, 0 }, "base"); + syn_move->axisGroupAddAxis(axis_group_name, cli->getAxisNames().front(), + "base", { 0, 1, 0 }); + robot_interface->getRobotConfig()->enableAxisGroup(axis_group_name); + + std::string params = "{\"type\":\"SINE\",\"frequency\":3,\"amplitude\": " + "[0.01,0.01],\"hold_distance\": " + "[0,0],\"hold_time\":[0,0], " + "\"angle\":[0,0], \"direction\":0}"; + + // 接口调用: 开始摆动 + robot_interface->getMotionControl()->weaveStart(params); + + // 接口调用: 直线运动到位置3 + robot_interface->getMotionControl()->moveLineWithAxisGroup( + pose2, 0.05, 0.01, 0.0, 0.0, axis_group_name, { 0.1 }); + + // 接口调用: 直线运动到位置3 + robot_interface->getMotionControl()->moveLineWithAxisGroup( + pose3, 0.05, 0.01, 0.0, 0.0, axis_group_name, { 0.2 }); + + // 接口调用: 结束摆动 + robot_interface->getMotionControl()->weaveEnd(); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置3成功!" << std::endl; + } else { + std::cout << "直线运动到位置3失败!" << std::endl; + } + + // 摆弧运动结束后将运行时关闭 + cli->getRuntimeMachine()->stop(); +} + +/** + * 功能: 机械臂直线运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率和工具中心点 + * 第三步: 先关节运动到起始位置,然后再以直线运动的方式依次经过3个路点 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "192.168.10.11" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // exampleMoveAxis1(rpc_cli); + exampleMoveAxis2(rpc_cli); // 摆动 + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed.cpp new file mode 100644 index 00000000..82dd954c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed.cpp @@ -0,0 +1,423 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 关节示教 +void exampleSpeedJoint(RpcClientPtr impl) { + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + auto robot_interface = impl->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 输入字符串 + std::string input_angle; + // 定义输入字符串和键值映射 + std::map keymap; + keymap["j1+"] = 1; + keymap["j1-"] = 2; + keymap["j2+"] = 3; + keymap["j2-"] = 4; + keymap["j3+"] = 5; + keymap["j3-"] = 6; + keymap["j4+"] = 7; + keymap["j4-"] = 8; + keymap["j5+"] = 9; + keymap["j5-"] = 10; + keymap["j6+"] = 11; + keymap["j6-"] = 12; + keymap["s"] = 13; + keymap["exit"] = 14; + + // 初始化循环控制变量 + bool continue_loop = true; + + // speedJoint速度 + double speed = 0.2; + + int cnt = 0; + while (continue_loop) { + std::cout << "请输入机械臂要运动的关节角: " << std::endl; + // 显示有效输入提示 + if (cnt++ == 0) { + std::cout << "有效输入值如下: " + "j1+、j1-、j2+、j2-、j3+、j3-、j4+、j4-、j5+、j5-、j6+" + "、j6-、s、exit" + << std::endl; + std::cout << "j1+表示关节1正方向,j1-表示关节1负方向,j2+" + "表示关节2正方向,j2-" + "表示关节2负方向,j3+表示关节3正方向,j3-" + ",表示关节3负方向,j4+" + "表示关节4正方向,j4-表示关节4负方向,j5+" + "表示关节5正方向,j5-" + "表示关节5负方向,j6+表示关节6正方向,j6-" + "表示关节6负方向,s表示停止运动,exit表示退出循环" + << std::endl; + } + + std::cin >> input_angle; + char value = keymap[input_angle]; + switch (value) { + case 1: { + std::vector qd = {speed, 0.0, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节1沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 2: { + std::vector qd = {speed * (-1), 0.0, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节1沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 3: { + std::vector qd = {0.0, speed, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节2沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 4: { + std::vector qd = {0.0, speed * (-1), 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节2沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 5: { + std::vector qd = {0.0, 0.0, speed, 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节3沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + + case 6: { + std::vector qd = {0.0, 0.0, speed * (-1), 0.0, 0.0, 0.0}; + + // 接口调用: 机械臂的关节3沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 7: { + std::vector qd = {0.0, 0.0, 0.0, speed, 0.0, 0.0}; + + // 接口调用: 机械臂的关节4沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 8: { + std::vector qd = {0.0, 0.0, 0.0, speed * (-1), 0.0, 0.0}; + // 接口调用: 机械臂的关节4沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 9: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, speed, 0.0}; + + // 接口调用: 机械臂的关节5沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 10: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, speed * (-1), 0.0}; + + // 接口调用: 机械臂的关节5沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 11: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, 0.0, speed}; + + // 接口调用: 机械臂的关节6沿着正方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 12: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, 0.0, speed * (-1)}; + + // 接口调用: 机械臂的关节6沿着负方向运动 + robot_interface->getMotionControl()->speedJoint(qd, 1.5, 100); + break; + } + case 13: { + // 接口调用: 停止关节速度跟随运动 + robot_interface->getMotionControl()->stopJoint(31); + + break; + } + case 14: { + // 退出循环 + continue_loop = false; + break; + } + default: { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "j1+、j1-、j2+、j2-、j3+、j3-、j4+、j4-、j5+、j5-、j6+" + "、j6-、s、exit" + << std::endl; + } + } + } +} + +// 在基坐标系下的位置姿态示教 +void exampleSpeedLine(RpcClientPtr impl) { + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + auto robot_interface = impl->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 输入字符串 + std::string input_axis; + // 定义输入字符串和键值映射 + std::map keymap; + keymap["x+"] = 1; + keymap["x-"] = 2; + keymap["y+"] = 3; + keymap["y-"] = 4; + keymap["z+"] = 5; + keymap["z-"] = 6; + keymap["rx+"] = 7; + keymap["rx-"] = 8; + keymap["ry+"] = 9; + keymap["ry-"] = 10; + keymap["rz+"] = 11; + keymap["rz-"] = 12; + keymap["s"] = 13; + keymap["exit"] = 14; + + // 初始化循环控制变量 + bool continue_loop = true; + + // speedLine速度 + double speed = 0.25; + + int cnt = 0; + while (continue_loop) { + std::cout << "请输入机械臂要运动的轴: " << std::endl; + // 显示有效输入提示 + if (cnt++ == 0) { + std::cout << "有效输入值如下: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + std::cout << "x+表示x轴正方向做直线运动,x-表示x轴负方向做直线运动,y+" + "表示y轴正方向做直线运动,y-" + "表示y轴负方向做直线运动,z+表示z轴正方向做直线运动,z-" + "表示z轴负方向做直线运动,rx+" + "表示x轴正方向做旋转运动,rx-表示x轴负方向做旋转运动,ry+" + "表示y轴正方向做旋转运动,ry-" + "表示y轴负方向做旋转运动,rz+表示z轴正方向做旋转运动,rz-" + "表示z轴负方向做旋转运动,s表示停止运动,exit表示退出循环" + << std::endl; + } + + std::cin >> input_axis; + char value = keymap[input_axis]; + switch (value) { + case 1: { + std::vector qd = {speed, 0.0, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系x轴正方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 2: { + std::vector qd = {speed * (-1), 0.0, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系x轴负方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 3: { + std::vector qd = {0.0, speed, 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系y轴正方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 4: { + std::vector qd = {0.0, speed * (-1), 0.0, 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系y轴负方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 5: { + std::vector qd = {0.0, 0.0, speed, 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系z轴正方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + + case 6: { + std::vector qd = {0.0, 0.0, speed * (-1), 0.0, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系z轴负方向做直线运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 7: { + std::vector qd = {0.0, 0.0, 0.0, speed, 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系x轴正方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 8: { + std::vector qd = {0.0, 0.0, 0.0, speed * (-1), 0.0, 0.0}; + + // 接口调用: TCP沿着基坐标系x轴负方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 9: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, speed, 0.0}; + + // 接口调用: TCP沿着基坐标系y轴正方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 10: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, speed * (-1), 0.0}; + + // 接口调用: TCP沿着基坐标系y轴负方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 11: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, 0.0, speed}; + + // 接口调用: TCP沿着基坐标系z轴正方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 12: { + std::vector qd = {0.0, 0.0, 0.0, 0.0, 0.0, speed * (-1)}; + + // 接口调用: TCP沿着基坐标系z轴负方向做旋转运动 + robot_interface->getMotionControl()->speedLine(qd, 1.2, 100); + break; + } + case 13: { + // 接口调用: 停止直线速度跟随运动 + robot_interface->getMotionControl()->stopLine(10, 10); + + break; + } + case 14: { + // 退出循环 + continue_loop = false; + break; + } + default: { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + } + } + } +} + +// 打印日志信息 +void printlog(int level, const char *source, int code, std::string content) { + static const char *level_names[] = {"Critical", "Error", "Warning", + "Info", "Debug", "BackTrace"}; + fprintf(stderr, "[%s] %s - %d %s\n", level_names[level], source, code, + content.c_str()); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置 RTDE 话题 + int topic = rtde_cli->setTopic(false, {"R1_message"}, 200, 0); + if (topic < 0) { + std::cout << "设置话题失败!" << std::endl; + return -1; + } + + // 接口调用: 订阅话题 + rtde_cli->subscribe(topic, [](InputParser &parser) { + arcs::common_interface::RobotMsgVector msgs; + msgs = parser.popRobotMsgVector(); + for (size_t i = 0; i < msgs.size(); i++) { + auto &msg = msgs[i]; + std::string error_content = arcs::error_stack::errorCode2Str(msg.code); + for (auto it : msg.args) { + auto pos = error_content.find("{}"); + if (pos != std::string::npos) { + error_content.replace(pos, 2, it); + } else { + break; + } + } + // 打印日志信息 + printlog(msg.level, msg.source.c_str(), msg.code, error_content); + } + }); + + // 关节示教 + exampleSpeedJoint(rpc_cli); + + // 在基坐标系下的位置姿态示教 + // exampleSpeedLine(rpc_cli); + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, topic); + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed2.cpp new file mode 100644 index 00000000..2cd41057 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_move_speed2.cpp @@ -0,0 +1,368 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include +#include +#include +#include +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 模板函数: 打印类型为std::vector的变量 +template +void printVec(std::vector param, std::string name) +{ + std::cout << name << ": "; + + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 定义坐标系类型的枚举 +enum CoordinateSystem +{ + BASE_COORDINATE_SYSTEM = 1, + TOOL_COORDINATE_SYSTEM = 2, + USER_COORDINATE_SYSTEM = 3 +}; + +// 定义枚举类型表示动作类型 +enum ActionType +{ + POSITION_MOVE, // 位置移动 + ORIENTATION_MOVE, // 姿态旋转 + STOP_MOVE, // 停止运动 + EXIT_PROGRAM // 退出程序 +}; + +// 定义结构体表示用户输入 +struct UserInput +{ + ActionType actionType; // 动作类型 + char axis; // 坐标轴 + bool positiveDirection; // 坐标轴方向 +}; + +std::vector selectedCoordinate(CoordinateSystem coordinate, + RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + std::vector frame(6, 0.); + + switch (coordinate) { + case BASE_COORDINATE_SYSTEM: + frame = std::vector(6, 0.); + break; + case TOOL_COORDINATE_SYSTEM: + frame = + impl->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + frame[0] = 0; + frame[1] = 0; + frame[2] = 0; + break; + case USER_COORDINATE_SYSTEM: + // TCP 在基坐标系下的位姿 + std::vector coord_p0(6), coord_p1(6), coord_p2(6); + coord_p0[0] = 0.49946; + coord_p0[1] = 0.32869; + coord_p0[2] = 0.35522; + coord_p0[3] = 2.414; + coord_p0[4] = 0.0; + coord_p0[5] = 2.357; + + coord_p1[0] = 0.58381; + coord_p1[1] = 0.41325; + coord_p1[2] = 0.22122; + coord_p1[3] = 2.414; + coord_p1[4] = 0.0; + coord_p1[5] = 2.357; + + coord_p2[0] = 0.58826; + coord_p2[1] = 0.41772; + coord_p2[2] = 0.46730; + coord_p2[3] = 2.414; + coord_p2[4] = 0.0; + coord_p2[5] = 2.357; + + // 接口调用: 获取用户坐标系相对于基坐标系的位姿 + auto [user_on_base, ret] = impl->getMath()->calibrateCoordinate( + { coord_p0, coord_p1, coord_p2 }, 0); + + frame = user_on_base; + frame[0] = 0; + frame[1] = 0; + frame[2] = 0; + break; + } + return frame; +} + +// 在不同坐标系下的位置姿态示教 +void exampleSpeedLine(RpcClientPtr impl) +{ + int input_coord; + std::cout << "请选择坐标系:" << std::endl; + std::cout << "1. 基坐标系" << std::endl; + std::cout << "2. 工具坐标系" << std::endl; + std::cout << "3. 用户坐标系" << std::endl; + std::cout << "请输入选项编号:"; + std::cin >> input_coord; + + if (input_coord != 1 && input_coord != 2 && input_coord != 3) { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "1、2、3" + << std::endl; + return; + } + + CoordinateSystem selected_coord; + + switch (input_coord) { + case 1: + selected_coord = BASE_COORDINATE_SYSTEM; + break; + + case 2: + selected_coord = TOOL_COORDINATE_SYSTEM; + break; + + case 3: + selected_coord = USER_COORDINATE_SYSTEM; + break; + } + + // 输入字符串 + std::string input_axis; + + // 定义输入字符串和键值映 + std::map keymap = { + { "x+", { POSITION_MOVE, 'x', true } }, + { "x-", { POSITION_MOVE, 'x', false } }, + { "y+", { POSITION_MOVE, 'y', true } }, + { "y-", { POSITION_MOVE, 'y', false } }, + { "z+", { POSITION_MOVE, 'z', true } }, + { "z-", { POSITION_MOVE, 'z', false } }, + { "rx+", { ORIENTATION_MOVE, 'x', true } }, + { "rx-", { ORIENTATION_MOVE, 'x', false } }, + { "ry+", { ORIENTATION_MOVE, 'y', true } }, + { "ry-", { ORIENTATION_MOVE, 'y', false } }, + { "rz+", { ORIENTATION_MOVE, 'z', true } }, + { "rz-", { ORIENTATION_MOVE, 'z', false } }, + { "s", { STOP_MOVE, 'x', true } }, + { "exit", { EXIT_PROGRAM, 'x', true } } + }; + + // 初始化循环控制变量 + bool continue_loop = true; + + int cnt = 0; + while (continue_loop) { + std::cout << "请输入机械臂要运动的轴: " << std::endl; + // 显示有效输入提示 + if (cnt++ == 0) { + std::cout << "有效输入值如下: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + std::cout + << "x+表示x轴正方向做直线运动,x-" + "表示x轴负方向做直线运动,y+" + "表示y轴正方向做直线运动,y-" + "表示y轴负方向做直线运动,z+表示z轴正方向做直线运动,z-" + "表示z轴负方向做直线运动,rx+" + "表示x轴正方向做旋转运动,rx-" + "表示x轴负方向做旋转运动,ry+" + "表示y轴正方向做旋转运动,ry-" + "表示y轴负方向做旋转运动,rz+" + "表示z轴正方向做旋转运动,rz-" + "表示z轴负方向做旋转运动,s表示停止运动,exit表示退出循" + "环" + << std::endl; + } + std::cin >> input_axis; + + // 定义有效的输入值集合 + std::unordered_set validInputs = { + "x+", "x-", "y+", "y-", "z+", "z-", "rx+", + "rx-", "ry+", "ry-", "rz+", "rz-", "s", "exit" + }; + + if (validInputs.find(input_axis) == validInputs.end()) { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + continue; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + auto robot_interface = impl->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + UserInput userInput = keymap[input_axis]; + + std::vector speed(6, 0.); + + // speedLine速度 + double tcp_speed = 0.25; + double a = 1.2; + tcp_speed = userInput.positiveDirection ? tcp_speed : -tcp_speed; + + std::vector frame(6, 0.); + + if (userInput.actionType == EXIT_PROGRAM) { + // 退出循环 + continue_loop = false; + } else if (userInput.actionType == STOP_MOVE) { + // 接口调用: 停止位置姿态示教 + robot_interface->getMotionControl()->stopLine(10, 10); + + } else if (userInput.actionType == POSITION_MOVE) { + frame = selectedCoordinate(selected_coord, impl); + + // 位置移动 + switch (userInput.axis) { + case 'x': + speed[0] = tcp_speed; + break; + case 'y': + speed[1] = tcp_speed; + break; + case 'z': + speed[2] = tcp_speed; + break; + } + + speed = impl->getMath()->poseTrans(frame, speed); + speed[3] = 0; + speed[4] = 0; + speed[5] = 0; + + robot_interface->getMotionControl()->speedLine(speed, a, 100); + } else if (userInput.actionType == ORIENTATION_MOVE) { + frame = selectedCoordinate(selected_coord, impl); + // 姿态旋转 + switch (userInput.axis) { + case 'x': + speed[0] = tcp_speed; + break; + case 'y': + speed[1] = tcp_speed; + break; + case 'z': + speed[2] = tcp_speed; + break; + } + + speed = impl->getMath()->poseTrans(frame, speed); + + speed[3] = speed[0]; + speed[4] = speed[1]; + speed[5] = speed[2]; + speed[0] = 0; + speed[1] = 0; + speed[2] = 0; + + robot_interface->getMotionControl()->speedLine(speed, a, 100); + } + } +} + +// 打印日志信息 +void printlog(int level, const char *source, int code, std::string content) +{ + static const char *level_names[] = { "Critical", "Error", "Warning", + "Info", "Debug", "BackTrace" }; + fprintf(stderr, "[%s] %s - %d %s\n", level_names[level], source, code, + content.c_str()); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置 RTDE 话题 + int topic = rtde_cli->setTopic(false, { "R1_message" }, 200, 0); + if (topic < 0) { + std::cout << "设置话题失败!" << std::endl; + return -1; + } + + // 接口调用: 订阅话题 + rtde_cli->subscribe(topic, [](InputParser &parser) { + arcs::common_interface::RobotMsgVector msgs; + msgs = parser.popRobotMsgVector(); + for (size_t i = 0; i < msgs.size(); i++) { + auto &msg = msgs[i]; + std::string error_content = + arcs::error_stack::errorCode2Str(msg.code); + for (auto it : msg.args) { + auto pos = error_content.find("{}"); + if (pos != std::string::npos) { + error_content.replace(pos, 2, it); + } else { + break; + } + } + // 打印日志信息 + printlog(msg.level, msg.source.c_str(), msg.code, error_content); + } + }); + + // 在不同坐标系下的位置姿态示教 + exampleSpeedLine(rpc_cli); + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, topic); + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movec_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movec_i5.cpp new file mode 100644 index 00000000..19f894d3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movec_i5.cpp @@ -0,0 +1,529 @@ +#include "aubo_sdk/rpc.h" +#include +#ifdef WIN32 +#include +#endif +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +// 圆弧运动 +void exampleMoveArc(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂运动的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点 + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 关节角,单位: 弧度 + std::vector joint_angle = { 0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0 }; + // 接口调用: 关节运动到初始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 位姿 + std::vector pose1 = { + 0.440164, -0.119, 0.2976, 2.456512, 0, 1.5708 + }; + + std::vector pose2 = { 0.440164, -0.00249391, 0.398658, + 2.45651, 0, 1.5708 }; + + std::vector pose3 = { 0.440164, 0.166256, 0.297599, + 2.45651, 0, 1.5708 }; + + // 接口调用: 直线运动到圆弧的起始点——pose1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到圆弧的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆弧的起始点失败" << std::endl; + } + + // 接口调用: 圆弧运动 + robot_interface->getMotionControl()->moveCircle(pose2, pose3, 1.2, 0.25, 0, + 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "圆弧运动成功" << std::endl; + } else { + std::cout << "圆弧运动失败" << std::endl; + } +} + +// 圆弧运动 +void exampleMoveArc2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂运动的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点 + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 关节角,单位: 弧度 + std::vector joint_angle = { 0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0 }; + // 接口调用: 关节运动到初始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 位姿 + std::vector pose1 = { + 0.440164, -0.119, 0.2976, 2.456512, 0, 1.5708 + }; + + std::vector pose2 = { 0.440164, -0.00249391, 0.398658, + 2.45651, 0, 1.5708 }; + + std::vector pose3 = { 0.440164, 0.166256, 0.297599, + 2.45651, 0, 1.5708 }; + + // 接口调用: 直线运动到圆弧的起始点——pose1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到圆弧的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆弧的起始点失败" << std::endl; + } + + CircleParameters param; + param.pose_via = pose2; + param.pose_to = pose3; + param.a = 1.2; + param.v = 0.25; + + // 接口调用: 圆弧运动 + robot_interface->getMotionControl()->moveCircle2(param); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "圆弧运动成功" << std::endl; + } else { + std::cout << "圆弧运动失败" << std::endl; + } +} + +// 圆运动 +void exampleMoveC(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂运动的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点 + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 关节角,单位: 弧度 + std::vector joint_angle = { 0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0 }; + // 接口调用: 关节运动到初始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 位姿 + std::vector pose1 = { + 0.440164, -0.119, 0.2976, 2.456512, 0, 1.5708 + }; + + std::vector pose2 = { 0.440164, -0.00249391, 0.398658, + 2.45651, 0, 1.5708 }; + + std::vector pose3 = { 0.440164, 0.166256, 0.297599, + 2.45651, 0, 1.5708 }; + + // 接口调用: 直线运动到圆的起始点——pose1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到圆的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆的起始点失败" << std::endl; + } + + // 接口调用: 工具姿态相对于圆弧路径点坐标系保持不变 + robot_interface->getMotionControl()->setCirclePathMode(0); + + // 计算另一半圆弧的中间点 + auto result = + cli->getMath()->calculateCircleFourthPoint(pose1, pose2, pose3, 1); + + if (std::get<1>(result) == 0) { + std::cout << "计算另一半圆弧的中间点失败,无法完成圆运动" << std::endl; + } else { + auto pose4 = std::get<0>(result); + // 圆运动执行3圈 + for (int i = 0; i < 3; i++) { + // 接口调用: 圆弧运动 + robot_interface->getMotionControl()->moveCircle(pose2, pose3, 1.2, + 0.25, 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == -1) { + std::cout << "圆运动失败" << std::endl; + } + + // 执行另一半圆弧运动 + robot_interface->getMotionControl()->moveCircle(pose4, pose1, 1.2, + 0.25, 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "圆运动成功" << std::endl; + } else { + std::cout << "圆运动失败" << std::endl; + } + } + } +} + +// 圆运动 +void exampleMoveC2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂运动的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 设置工具中心点 + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 关节角,单位: 弧度 + std::vector joint_angle = { 0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0 }; + // 接口调用: 关节运动到初始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 位姿 + std::vector pose1 = { + 0.440164, -0.119, 0.2976, 2.456512, 0, 1.5708 + }; + + std::vector pose2 = { 0.440164, -0.00249391, 0.398658, + 2.45651, 0, 1.5708 }; + + std::vector pose3 = { 0.440164, 0.166256, 0.297599, + 2.45651, 0, 1.5708 }; + + // 接口调用: 直线运动到圆的起始点——pose1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到圆的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆的起始点失败" << std::endl; + } + + // 接口调用: 工具姿态相对于圆弧路径点坐标系保持不变 + robot_interface->getMotionControl()->setCirclePathMode(0); + + // 计算另一半圆弧的中间点 + auto result = + cli->getMath()->calculateCircleFourthPoint(pose1, pose2, pose3, 1); + if (std::get<1>(result) == 0) { + std::cout << "计算另一半圆弧的中间点失败,无法完成圆运动" << std::endl; + } else { + auto pose4 = std::get<0>(result); + // 圆运动执行3圈 + for (int i = 0; i < 3; i++) { + CircleParameters param1; + param1.pose_via = pose2; + param1.pose_to = pose3; + param1.a = 1.2; + param1.v = 0.25; + param1.blend_radius = 0.0; + // 接口调用: 圆弧运动 + robot_interface->getMotionControl()->moveCircle2(param1); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == -1) { + std::cout << "圆运动失败" << std::endl; + } + + // 执行另一半圆弧运动 + CircleParameters param2; + param2.pose_via = pose4; + param2.pose_to = pose1; + param2.a = 1.2; + param2.v = 0.25; + param2.blend_radius = 0.0; + robot_interface->getMotionControl()->moveCircle2(param2); + + // 阻塞 + waitArrival(cli->getRobotInterface(robot_name)); + if (ret == 0) { + std::cout << "圆运动成功" << std::endl; + } else { + std::cout << "圆运动失败" << std::endl; + } + } + } +} + +void exampleMoveC3(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂运动的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1.0); + + // 接口调用: 设置工具中心点 + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 开启规划器运行 + cli->getRuntimeMachine()->start(); + auto cur_plan_context = cli->getRuntimeMachine()->getPlanContext(); + // 接口调用: 获取新的线程id + auto task_id = cli->getRuntimeMachine()->newTask(); + cli->getRuntimeMachine()->setPlanContext( + task_id, std::get<1>(cur_plan_context), std::get<2>(cur_plan_context)); + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + + // 关节角,单位: 弧度 + std::vector joint_angle = { 0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0 }; + // 接口调用: 关节运动到初始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 位姿 + std::vector pose1 = { + 0.440164, -0.119, 0.2976, 2.456512, 0, 1.5708 + }; + + std::vector pose2 = { 0.440164, -0.00249391, 0.398658, + 2.45651, 0, 1.5708 }; + + std::vector pose3 = { 0.440164, 0.166256, 0.297599, + 2.45651, 0, 1.5708 }; + + // 接口调用: 直线运动到圆的起始点——pose1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到圆的起始点成功" << std::endl; + } else { + std::cout << "直线运动到圆的起始点失败" << std::endl; + } + + // 接口调用: 工具姿态相对于圆弧路径点坐标系保持不变 + robot_interface->getMotionControl()->setCirclePathMode(0); + + // 计算另一半圆弧的中间点 + auto result = + cli->getMath()->calculateCircleFourthPoint(pose1, pose2, pose3, 1); + + // 圆运动期间连续 + if (std::get<1>(result) == 0) { + std::cout << "计算另一半圆弧的中间点失败,无法完成圆运动" << std::endl; + } else { + auto pose4 = std::get<0>(result); + // 圆运动执行3圈 + for (int i = 0; i < 3; i++) { + // 接口调用: 圆弧运动 + robot_interface->getMotionControl()->moveCircle(pose2, pose3, 1.2, + 0.25, 0.025, 0); + + // 执行另一半圆弧运动 + robot_interface->getMotionControl()->moveCircle(pose4, pose1, 1.2, + 0.25, 0.025, 0); + } + } + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "圆运动成功" << std::endl; + } else { + std::cout << "圆运动失败" << std::endl; + } + // 接口调用: 停止规划器运行 + cli->getRuntimeMachine()->stop(); + // 接口调用: 删除线程 + cli->getRuntimeMachine()->deleteTask(task_id); +} + +/** + * 功能: 机械臂圆弧运动与圆运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 圆弧运动exampleMoveArc——用moveCircle接口实现 + * 第三步: 圆弧运动exampleMoveArc2——用moveCircle2接口实现 + * 第四步: 圆运动exampleMoveC——用moveCircle接口实现 + * 第五步: 圆运动exampleMoveC2——用moveCircle2接口实现 + * 第六步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 圆弧运动 + exampleMoveArc(rpc_cli); + + // 圆弧运动 + exampleMoveArc2(rpc_cli); + + // 圆运动 + exampleMoveC(rpc_cli); + + // 圆运动 + exampleMoveC2(rpc_cli); + + // 圆运动 + exampleMoveC3(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movej.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movej.cpp new file mode 100644 index 00000000..aab578ef --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movej.cpp @@ -0,0 +1,133 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleMovej(RpcClientPtr cli) +{ + // 关节角,单位: 弧度 + std::vector joint_angle1 = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + + std::vector joint_angle2 = { + 35.92 * (M_PI / 180), -11.28 * (M_PI / 180), 59.96 * (M_PI / 180), + -18.76 * (M_PI / 180), 90.0 * (M_PI / 180), 35.92 * (M_PI / 180) + }; + + std::vector joint_angle3 = { + 41.04 * (M_PI / 180), -7.65 * (M_PI / 180), 98.80 * (M_PI / 180), + 16.44 * (M_PI / 180), 90.0 * (M_PI / 180), 11.64 * (M_PI / 180) + }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle1, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到路点1成功" << std::endl; + } else { + std::cout << "关节运动到路点1失败" << std::endl; + } + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle2, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到路点2成功" << std::endl; + } else { + std::cout << "关节运动到路点2失败" << std::endl; + } + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle3, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到路点3成功" << std::endl; + } else { + std::cout << "关节运动到路点3失败" << std::endl; + } +} + +/** + * 功能: 机械臂关节运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率、以关节运动的方式依次经过3个路点 + * 第三步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 关节运动 + exampleMovej(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_i5.cpp new file mode 100644 index 00000000..6f1ed7f2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_i5.cpp @@ -0,0 +1,139 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleMovel(RpcClientPtr cli) { + // 关节角,单位: 弧度 + std::vector joint_angle = {0.0 * (M_PI / 180), -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), 0.0 * (M_PI / 180)}; + // 位姿 + std::vector pose1 = {-0.155944, -0.727344, 0.439066, + 3.05165, 0.0324355, 1.80417}; + std::vector pose2 = {-0.581143, -0.357548, 0.439066, + 3.05165, 0.0324355, 1.80417}; + std::vector pose3 = {0.503502, -0.420646, 0.439066, + 3.05165, 0.0324355, 1.80417}; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint(joint_angle, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 直线运动到位置1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置1成功!" << std::endl; + } else { + std::cout << "直线运动到位置1失败!" << std::endl; + } + + // 接口调用: 直线运动到位置2 + robot_interface->getMotionControl()->moveLine(pose2, 1.2, 0.25, 0.025, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置2成功!" << std::endl; + } else { + std::cout << "直线运动到位置2失败!" << std::endl; + } + + // 接口调用: 直线运动到位置3 + robot_interface->getMotionControl()->moveLine(pose3, 1.2, 0.25, 0.025, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置3成功!" << std::endl; + } else { + std::cout << "直线运动到位置3失败!" << std::endl; + } +} + +/** + * 功能: 机械臂直线运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率和工具中心点 + * 第三步: 先关节运动到起始位置,然后再以直线运动的方式依次经过3个路点 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 关节运动 + exampleMovel(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_offset.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_offset.cpp new file mode 100644 index 00000000..dbf39c59 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_offset.cpp @@ -0,0 +1,140 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +// 示例1: TCP在基坐标系/用户坐标系下沿Z方向做偏移运动 +void exampleMovelOffset1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 获取TCP在Base坐标系下的当前位姿 + std::vector current_tcp_on_base(6, 0.0); + current_tcp_on_base = robot_interface->getRobotState()->getTcpPose(); + + // 接口调用:获取TCP在基坐标系/用户坐标系下沿着Z+轴偏移0.1m的目标位姿(相对于基坐标系) + std::vector target_tcp_on_base(6, 0.0); + std::vector path_offset = { 0, 0, 0.1, 0, 0, 0 }; + target_tcp_on_base = + cli->getMath()->poseAdd(current_tcp_on_base, path_offset); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + // 接口调用: 直线运动到目标位置 + robot_interface->getMotionControl()->moveLine(target_tcp_on_base, 1.2, 0.25, + 0.025, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到目标位置成功!" << std::endl; + } else { + std::cout << "直线运动到目标位置失败!" << std::endl; + } +} + +// 示例2: TCP在工具坐标系下沿Z方向做偏移运动 +void exampleMovelOffset2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 获取TCP在Base坐标系下的当前位姿 + std::vector current_tcp_on_base(6, 0.0); + current_tcp_on_base = robot_interface->getRobotState()->getTcpPose(); + + // 接口调用:获取TCP在工具坐标系下沿着Z+轴偏移0.1m的目标位姿(相对于基坐标系) + std::vector target_tcp_on_base(6, 0.0); + std::vector path_offset = { 0, 0, 0.1, 0, 0, 0 }; + target_tcp_on_base = + cli->getMath()->poseTrans(current_tcp_on_base, path_offset); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + // 接口调用: 直线运动到目标位置 + robot_interface->getMotionControl()->moveLine(target_tcp_on_base, 1.2, 0.25, + 0.025, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到目标位置成功!" << std::endl; + } else { + std::cout << "直线运动到目标位置失败!" << std::endl; + } +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 示例1: TCP在基坐标系/用户坐标系下沿Z方向做偏移运动 + exampleMovelOffset1(rpc_cli); + + // 示例2: TCP在工具坐标系下沿Z方向做偏移运动 + exampleMovelOffset2(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_singularity_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_singularity_i5.cpp new file mode 100644 index 00000000..f8ec9b72 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_singularity_i5.cpp @@ -0,0 +1,170 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +// 直线运动 +void exampleMovel(RpcClientPtr cli) { + // 关节角,单位: 弧度 + std::vector joint_angle = {0.0 * (M_PI / 180), -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), 0.0 * (M_PI / 180)}; + + // 奇异点的位姿 + std::vector pose_singularity = {1000, 1000, 1000, + 3.05165, 0.0324355, 1.80417}; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.8); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint(joint_angle, 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 直线运动到奇异点 + robot_interface->getMotionControl()->moveLine(pose_singularity, 1.2, 0.25, + 0.025, 0); + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动成功!" << std::endl; + } else { + std::cout << "直线运动失败!" << std::endl; + } +} + +void printlog(int level, const char *source, int code, std::string content) { + static const char *level_names[] = {"Critical", "Error", "Warning", + "Info", "Debug", "BackTrace"}; + fprintf(stderr, "[%s] %s - %d %s\n", level_names[level], source, code, + content.c_str()); +} + +/** + * 功能: 机械臂直线运动到奇异点 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 连接 RTDE 服务、登录 + * 第三步: RTDE 设置话题、订阅话题来打印error_stack中的日志信息 + * 第四步: 设置运动速度比率和工具中心点 + * 第五步: 先关节运动到起始位置,然后再以直线运动的方式到奇异点 + * 第六步: RTDE 退出登录、断开连接 + * 第七步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置 RTDE 话题 + int topic = rtde_cli->setTopic(false, {"R1_message"}, 200, 0); + if (topic < 0) { + std::cout << "设置话题失败!" << std::endl; + return -1; + } + + // 接口调用: 订阅话题 + rtde_cli->subscribe(topic, [](InputParser &parser) { + arcs::common_interface::RobotMsgVector msgs; + msgs = parser.popRobotMsgVector(); + for (size_t i = 0; i < msgs.size(); i++) { + auto &msg = msgs[i]; + std::string error_content = arcs::error_stack::errorCode2Str(msg.code); + for (auto it : msg.args) { + auto pos = error_content.find("{}"); + if (pos != std::string::npos) { + error_content.replace(pos, 2, it); + } else { + break; + } + } + // 打印日志信息 + printlog(msg.level, msg.source.c_str(), msg.code, error_content); + } + }); + + // 直线运动到奇异点 + exampleMovel(rpc_cli); + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, topic); + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_weave_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_weave_i5.cpp new file mode 100644 index 00000000..0b05455f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_movel_weave_i5.cpp @@ -0,0 +1,152 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 20; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void exampleMovelWeave(RpcClientPtr cli) +{ + // 接口调用: 开启运行时。 + // 注意: 摆弧运动需要将运行时打开,否则摆弧不生效。 + cli->getRuntimeMachine()->start(); + + // 关节角,单位: 弧度 + std::vector joint_angle = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + // 位姿 + std::vector pose1 = { 0.551, -0.295, 0.261, -3.135, 0.0, 1.569 }; + std::vector pose2 = { 0.551, 0.295, 0.261, -3.135, 0.0, 1.569 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 直线运动到位置1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.025, 0); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置1成功!" << std::endl; + } else { + std::cout << "直线运动到位置1失败!" << std::endl; + } + + std::string params = "{\"type\":\"SINE\",\"step\":0.01,\"amplitude\": " + "[0.01,0.01],\"hold_distance\": " + "[0,0],\"hold_time\":[0,0], " + "\"angle\":0, \"direction\":0}"; + + // 接口调用: 开始摆动 + robot_interface->getMotionControl()->weaveStart(params); + + // 接口调用: 直线运动到位置2 + robot_interface->getMotionControl()->moveLine(pose2, 0.05, 0.01, 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "摆弧运动到位置2成功!" << std::endl; + } else { + std::cout << "摆弧运动到位置2失败!" << std::endl; + } + + // 接口调用: 结束摆动 + robot_interface->getMotionControl()->weaveEnd(); + + // 摆弧运动结束后将运行时关闭 + cli->getRuntimeMachine()->stop(); +} + +/** + * 功能: 机械臂摆弧运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率和工具中心点 + * 第三步:开启运行时, + * 先关节运动到起始位置, + * 然后直线运动到位置1, + * 开启摆动,摆弧运动到位置2, + * 结束摆动,关闭运行时 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 摆弧运动 + exampleMovelWeave(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_multi_thread.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_multi_thread.cpp new file mode 100644 index 00000000..1f030170 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_multi_thread.cpp @@ -0,0 +1,93 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif +#define LOCAL_IP "127.0.0.1" + +void read_test() { + // RPC 客户端对象 + auto rpc_client = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_client->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_client->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_client->login("aubo", "123456"); + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_client->getRobotNames().front(); + auto impl = rpc_client->getRobotInterface(robot_name); + + // 创建一个包含10个线程的线程容器 + std::vector ths; + for (int i = 0; i < 10; i++) { + // 向线程容器中添加一个线程,每个线程都执行以下操作 + ths.emplace_back([&]() { + while (1) { + try { + // 接口调用: 获取TCP偏移量 + impl->getRobotConfig()->getTcpOffset(); + // 输出一个'·'字符并刷新输出流 + std::cerr << "·" << std::flush; + } catch (const arcs::aubo_sdk::AuboException &e) { + // 打印异常信息 + std::cerr << std::this_thread::get_id() << ":" << e.what() + << std::endl; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + }); + } + + // 等待所有线程完成 + for (auto &t : ths) { + t.join(); + } +} + +void connect_test() { + // 创建一个包含10个线程的线程容器 + std::vector ths; + for (int i = 0; i < 10; i++) { + // 向线程容器中添加一个线程,每个线程都执行以下操作 + ths.emplace_back([&]() { + // RPC 客户端对象 + auto rpc_client = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_client->setRequestTimeout(1000); + while (1) { + try { + // 接口调用: 连接到 RPC 服务 + rpc_client->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_client->login("aubo", "123456"); + std::this_thread::sleep_for(std::chrono::milliseconds(7)); + // 接口调用: 退出登录 + rpc_client->logout(); + // 接口调用: 断开 RPC 服务 + rpc_client->disconnect(); + std::this_thread::sleep_for(std::chrono::milliseconds(7)); + } catch (const arcs::aubo_sdk::AuboException &e) { + // 打印异常信息 + std::cerr << std::this_thread::get_id() << ":" << e.what() + << std::endl; + } + } + }); + } + + // 等待所有线程完成 + for (auto &t : ths) { + t.join(); + } +} + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + connect_test(); + // read_test(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_offset_weave_i5.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_offset_weave_i5.cpp new file mode 100644 index 00000000..47521274 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_offset_weave_i5.cpp @@ -0,0 +1,174 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 20; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +void examplePathOffsetWeave(RpcClientPtr cli) +{ + // 接口调用: 开启运行时。 + // 注意: 摆弧运动需要将运行时打开,否则摆弧不生效。 + cli->getRuntimeMachine()->start(); + + // 关节角,单位: 弧度 + std::vector joint_angle = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + // 位姿 + std::vector pose1 = { 0.551, -0.295, 0.261, -3.135, 0.0, 1.569 }; + std::vector pose2 = { 0.551, 0.295, 0.261, -3.135, 0.0, 1.569 }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 关节运动到起始位置 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到起始位置成功!" << std::endl; + } else { + std::cout << "关节运动到起始位置失败!" << std::endl; + } + + // 接口调用: 直线运动到位置1 + robot_interface->getMotionControl()->moveLine(pose1, 1.2, 0.25, 0.0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到位置1成功!" << std::endl; + } else { + std::cout << "直线运动到位置1失败!" << std::endl; + } + + std::string params = "{\"type\":\"SINE\",\"step\":0.01,\"amplitude\": " + "[0.01,0.01],\"hold_distance\": " + "[0,0],\"hold_time\":[0,0], " + "\"angle\":0, \"direction\":0}"; + + // 接口调用: 开始摆动 + robot_interface->getMotionControl()->weaveStart(params); + + // 接口调用: 直线运动到位置2 + robot_interface->getMotionControl()->moveLine(pose2, 0.05, 0.01, 0.0, 0.0); + + // 接口调用: 路径偏移使能 + // 注意: pathOffsetEnable必须与pathOffsetDisable搭配使用 + robot_interface->getMotionControl()->pathOffsetEnable(); + + std::this_thread::sleep_for(std::chrono::milliseconds(3000)); + // 接口调用: 设置路径偏移 + for (int i = 0; i < 10; i++) { + robot_interface->getMotionControl()->pathOffsetSet( + { 0, 0, 0.15, 0, 0, 0 }, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + robot_interface->getMotionControl()->pathOffsetSet( + { 0, 0, -0.15, 0, 0, 0 }, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + } + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "摆弧运动到位置2成功!" << std::endl; + } else { + std::cout << "摆弧运动到位置2失败!" << std::endl; + } + + // 接口调用: 结束摆动 + robot_interface->getMotionControl()->weaveEnd(); + + // 接口调用: 路径偏移失能 + robot_interface->getMotionControl()->pathOffsetDisable(); + // 此处增加延时,是为了保证pathOffsetDisable被执行完 + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + + // 摆弧运动结束后将运行时关闭 + cli->getRuntimeMachine()->stop(); +} + +/** + * 功能: 机械臂摆弧中心线偏移运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率和工具中心点 + * 第三步: 开启运行时, + * 先关节运动到起始位置, + * 然后直线运动到位置1, + * 开启摆动,向位置2做摆弧运动,使能并设置路径偏移, + * 到达位置2后,结束摆动,路径偏移失能,关闭运行时 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 摆弧中心线偏移运动 + examplePathOffsetWeave(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_pause_resume.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_pause_resume.cpp new file mode 100644 index 00000000..dd5ee74c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_pause_resume.cpp @@ -0,0 +1,171 @@ +#include +#include +#include +#include "aubo_sdk/rpc.h" + +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +void robotMotionControl(RpcClientPtr cli) +{ + // 关节角,单位: 弧度 + std::vector joint_angle1 = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + + std::vector joint_angle2 = { + 35.92 * (M_PI / 180), -11.28 * (M_PI / 180), 59.96 * (M_PI / 180), + -18.76 * (M_PI / 180), 90.0 * (M_PI / 180), 35.92 * (M_PI / 180) + }; + + std::vector joint_angle3 = { + 41.04 * (M_PI / 180), -7.65 * (M_PI / 180), 98.80 * (M_PI / 180), + 16.44 * (M_PI / 180), 90.0 * (M_PI / 180), 11.64 * (M_PI / 180) + }; + + std::vector joint_angle4 = { + 41.04 * (M_PI / 180), -27.03 * (M_PI / 180), 115.35 * (M_PI / 180), + 52.37 * (M_PI / 180), 90.0 * (M_PI / 180), 11.64 * (M_PI / 180) + }; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 开启运行时(RuntimeMachine) + auto start_time = std::chrono::steady_clock::now(); + int task_id = -1; + auto ret = cli->getRuntimeMachine()->start(); + if (ret != AUBO_OK) { + std::cout << "Failed to start runtime machine." << std::endl; + return; + } + // ARCS软件0.29版本需要等待,0.31及以上不需要 + std::this_thread::sleep_for(std::chrono::milliseconds(20)); + while (task_id == -1) { + if (std::chrono::duration_cast( + std::chrono::steady_clock::now() - start_time) + .count() > 500) { + std::cout << "[RuntimeMachine Start] Timeout waiting for task " + "creation to " + "get task id." + << std::endl; + return; + } + auto context_result = cli->getRuntimeMachine()->getPlanContext(); + task_id = std::get<0>(context_result); + + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 获取运行时的状态 + auto runtime_status = cli->getRuntimeMachine()->getRuntimeState(); + + while (runtime_status != RuntimeState::Stopped) { + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle1, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(2000)); + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle2, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(2000)); + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle3, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(2000)); + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle4, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + std::this_thread::sleep_for(std::chrono::milliseconds(2000)); + + // 接口调用: 获取运行时(RuntimeMachine)状态 + runtime_status = cli->getRuntimeMachine()->getRuntimeState(); + } + + // 接口调用: 停止关节运动 + robot_interface->getMotionControl()->stopJoint(30); + cli->getRuntimeMachine()->abort(); +} + +// 控制暂停/恢复/停止 +void controlOperations(RpcClientPtr rpc_cli, bool &exit_flag) +{ + std::string input; + while (!exit_flag) { + std::cout + << "请输入命令(p/r/s): p表示暂停运动,r表示恢复运动,s表示停止运动" + << std::endl; + + std::cin >> input; + + if (input == "p") { + // 接口调用: 暂停运行时 + rpc_cli->getRuntimeMachine()->pause(); + std::cout << "已暂停运行时" << std::endl; + } else if (input == "r") { + // 接口调用: 恢复运行时 + rpc_cli->getRuntimeMachine()->resume(); + std::cout << "已恢复运行时" << std::endl; + } else if (input == "s") { + // 接口调用: 停止运行时 + // 注意: abort并不能停止机械臂运动 + rpc_cli->getRuntimeMachine()->abort(); + exit_flag = true; // 设置退出标志以结束线程 + std::cout << "已停止运行时" << std::endl; + } else { + std::cout << "无效命令,请重新输入" << std::endl; + } + } +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 退出线程标志 + bool exit_flag = false; + + // 创建控制机器人运动和操作的线程 + std::thread motion_thread(robotMotionControl, rpc_cli); + std::thread control_thread(controlOperations, rpc_cli, std::ref(exit_flag)); + + // 等待线程完成 + motion_thread.join(); + control_thread.join(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify.cpp new file mode 100644 index 00000000..815ef6e8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify.cpp @@ -0,0 +1,201 @@ +#include +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +std::mutex rtde_mtx_; + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrivel(RobotInterfacePtr impl) +{ + int cnt = 0; + while (impl->getMotionControl()->getExecId() == -1) { + if (cnt++ > 5) { + std::cout << "Motion fail!" << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + auto id = impl->getMotionControl()->getExecId(); + while (1) { + auto id1 = impl->getMotionControl()->getExecId(); + if (id != id1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + return 0; +} + +void waitMovePathBufferFinished(RobotInterfacePtr impl) +{ + while (impl->getMotionControl()->getExecId() == -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + while (1) { + auto id = impl->getMotionControl()->getExecId(); + if (id == -1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } +} + +void generateTraj(RpcClientPtr cli, TrajConfig &traj_conf) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->generatePayloadIdentifyTraj("identify_traj", traj_conf); + while (1) { + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadIdentifyTrajGenFinished(); + if (ret == 0) { + std::cout << "负载辨识轨迹生成完成!" << std::endl; + break; + } else if (ret == 1) { + std::cout << "负载辨识轨迹正在生成中..." << std::endl; + } else { + std::cout << "轨迹生成失败,ret=" << ret << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + } + + if (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->pathBufferEval("identify_traj", {}, {}, 0.005) < 0) { + std::cout << "pathBufferEval error!" << std::endl; + exit(-1); + } + + while (!cli->getRobotInterface(robot_name) + ->getMotionControl() + ->pathBufferValid("identify_traj")) { + std::cout << "轨迹优化中..." << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + std::cout << "负载辨识轨迹生成完成!" << std::endl; +} + +void runTraj(RpcClientPtr cli, RtdeClientPtr rtde_cli, + const std::string &data_file_name, TrajConfig &traj_conf) +{ + std::ofstream file(data_file_name, std::ios::out | std::ios::trunc); + auto robot_name = cli->getRobotNames().front(); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(traj_conf.init_joint, 5.0, 3.0, 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->movePathBuffer("identify_traj"); + cli->getRobotInterface(robot_name) + ->getRobotManage() + ->startRecord(data_file_name); + waitMovePathBufferFinished(cli->getRobotInterface(robot_name)); + std::cout << "轨迹运行完成" << std::endl; + cli->getRobotInterface(robot_name)->getRobotManage()->stopRecord(); +} + +void examplePayloadIdentify(RpcClientPtr cli, RtdeClientPtr rtde_cli) +{ + // 生成激励轨迹 + TrajConfig traj_conf; + traj_conf.move_axis = PayloadIdentifyMoveAxis::Joint_3_6; + traj_conf.max_velocity = { 3.0, 3.0 }; // 维度与运动的关节数量一致 + traj_conf.max_acceleration = { 5.0, 5.0 }; // 维度与运动的关节数量一致 + traj_conf.lower_joint_bound = { -1.5, -2 }; + traj_conf.upper_joint_bound = { 1.5, 2 }; + traj_conf.init_joint = { -0.0, -0.2618, 1.047, -0.1745, 1.57, 0.0 }; + generateTraj(cli, traj_conf); + std::cout << "请卸下负载,按 Enter 键开始运行轨迹:" << std::endl; + std::cin.get(); + runTraj(cli, rtde_cli, "data_no_payload.csv", traj_conf); + std::cout << "请安装负载,按 Enter 键开始运行轨迹:" << std::endl; + std::cin.get(); + runTraj(cli, rtde_cli, "data_with_payload.csv", traj_conf); + + auto robot_name = cli->getRobotNames().front(); + auto ret = + cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadIdentify("data_no_payload.csv", "data_with_payload.csv"); + while (1) { + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadCalculateFinished(); + if (ret == 0) { + std::cout << "负载计算完成!" << std::endl; + break; + } else if (ret == 1) { + std::cout << "负载正在计算..." << std::endl; + } else { + std::cout << "负载计算失败,ret=" << ret << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + } + auto result = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->getPayloadIdentifyResult(); + std::cout << "计算结果为:" << std::endl; + std::cout << "mass: " << std::get<0>(result) << std::endl; + std::cout << "com: " << std::get<1>(result) << std::endl; + std::cout << "inertia: " << std::get<3>(result) << std::endl; +} + +/** + * 功能: 负载辨识 + * 步骤: + * 第一步: 连接到 RPC 服务、登录 + * 第二步: 机械臂上电 + * 第三步: 设置激励轨迹的限制,生成激励轨迹 + * 第四步: 空载运行离线轨迹,通过rtde采集关节位置、关节速度、关节电流 + * 第五步: 带载运行离线轨迹,通过rtde采集关节位置、关节速度、关节电流 + * 第六步: 计算辨识结果 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + examplePayloadIdentify(rpc_cli, rtde_cli); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify1.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify1.cpp new file mode 100644 index 00000000..fa6c5b66 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_payload_identify1.cpp @@ -0,0 +1,288 @@ +#include +#include +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#ifdef WIN32 +#include +#endif + +#define TRAJ_NUMS 15; +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +std::mutex rtde_mtx_; + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrivel(RobotInterfacePtr impl) +{ + int cnt = 0; + while (impl->getMotionControl()->getExecId() == -1) { + if (cnt++ > 5) { + std::cout << "Motion fail!" << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + auto id = impl->getMotionControl()->getExecId(); + while (1) { + auto id1 = impl->getMotionControl()->getExecId(); + if (id != id1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + return 0; +} +void runTraj(RpcClientPtr cli, std::vector q1, std::vector q2, + std::vector q3, std::string file_name) +{ + auto robot_name = cli->getRobotNames().front(); + cli->getRobotInterface(robot_name) + ->getRobotManage() + ->startRecord(file_name); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q1, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q2, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q3, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q2, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(q1, 10 * (M_PI / 180), 5 * (M_PI / 180), 0, 0); + waitArrivel(cli->getRobotInterface(robot_name)); + cli->getRobotInterface(robot_name)->getRobotManage()->stopRecord(); +} + +// 计算采样距离d +double calTrajDistance(RpcClientPtr cli, std::vector q1, + std::vector q2) +{ + auto robot_name = cli->getRobotNames().front(); + auto pose1 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q1); + auto pose2 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->forwardKinematics(q2); + auto d = + cli->getMath()->poseDistance(std::get<0>(pose1), std::get<0>(pose2)); + + // 期望输出的路点个数为60个 + // 15*2*2 (q1-q2-q3-q2-q1) + return d / TRAJ_NUMS; +} + +int confirmPayloadIdentifyTraj(RpcClientPtr cli, std::vector point1, + std::vector point2, + std::vector point3) +{ + auto robot_name = cli->getRobotNames().front(); + std::string file_name = "payload_test_data.csv"; + std::string file_path = "/root/arcs_ws/log/.trace/" + file_name; + std::ofstream file(file_path, std::ios::out | std::ios::trunc); + if (!file.is_open()) { + std::cerr << "file open fail" << std::endl; + exit(-1); + } + + auto dof = cli->getRobotInterface(robot_name)->getRobotConfig()->getDof(); +#define VEC(name, realdof, judgedof) \ + (realdof == judgedof \ + ? #name "1," #name "2," #name "3," #name "4," #name "5," #name "6" \ + : #name "1," #name "2," #name "3," #name "4," #name "5," #name \ + "6," #name "7") + // 为了匹配诊断文件格式,需要增加Time表头 + file << "Time" + << ","; + file << VEC(q, dof, 6) << ","; + file << VEC(qd, dof, 6) << ","; + file << VEC(qdd, dof, 6) << ","; + file << VEC(current, dof, 6) << ","; + file << VEC(temperature, dof, 6) << ","; + file << std::endl; +#undef VEC + std::vector qd(dof, 0.); + std::vector qdd(dof, 0.); + std::vector current(dof, 0.); + std::vector temperature(dof, 0.); + + // 计算采样距离d + auto d1 = calTrajDistance(cli, point1, point2); + auto q1_q2 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->pathMovej(point1, 0., point2, 0., d1); + std::cout << "q1_q2.size: " << q1_q2.size() << std::endl; + for (size_t i = 0; i < q1_q2.size(); i++) { + // 写入时间数据 + file << 0 << ","; + file << q1_q2[i] << ","; + file << qd << ","; + file << qdd << ","; + file << current << ","; + file << temperature << ","; + file << std::endl; + } + + // 计算采样距离d + auto d2 = calTrajDistance(cli, point2, point3); + auto q2_q3 = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->pathMovej(point2, 0., point3, 0., d2); + std::cout << "q2_q3.size: " << q2_q3.size() << std::endl; + for (size_t i = 0; i < q2_q3.size(); i++) { + // 写入时间数据 + file << 0 << ","; + file << q2_q3[i] << ","; + file << qd << ","; + file << qdd << ","; + file << current << ","; + file << temperature << ","; + file << std::endl; + } + // 正反轨迹数据拼接 + for (std::vector>::iterator it = q2_q3.end() - 1; + it >= q2_q3.begin(); it--) { + // 写入时间数据 + file << 0 << ","; + file << *it << ","; + file << qd << ","; + file << qdd << ","; + file << current << ","; + file << temperature << ","; + file << std::endl; + } + for (std::vector>::iterator it = q1_q2.end() - 1; + it >= q1_q2.begin(); it--) { + // 写入时间数据 + file << 0 << ","; + file << *it << ","; + file << qd << ","; + file << qdd << ","; + file << current << ","; + file << temperature << ","; + file << std::endl; + } + + file.close(); + + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadIdentify1(file_name); + + // 预筛选阶段总耗时1s左右,可以删掉下面的获取状态 + while (1) { + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadCalculateFinished(); + if (ret == 0) { + std::cout << "预筛选成功,轨迹点可用!" << std::endl; + return ret; + } else if (ret == 1) { + std::cout << "正在预筛选..." << std::endl; + } else { + std::cout << "预筛选失败,轨迹点不可用,ret=" << ret << std::endl; + return ret; + } + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + } + return ret; +} + +void examplePayloadIdentify1(RpcClientPtr cli) +{ + std::vector point1 = { -0.261799, 0.261799, 1.309, + 1.0472, 1.39626, 0.0 }; + std::vector point2 = { -0.628319, 0.471239, 1.65806, + -0.471239, 0.0, 0.0 }; + std::vector point3 = { -0.628319, 0.366519, 1.74533, + -0.10472, 1.5708, 0.0 }; + + // 预筛选 + if (confirmPayloadIdentifyTraj(cli, point1, point2, point3) != 0) { + exit(1); + } else { + std::string file = "test_data.csv"; + runTraj(cli, point1, point2, point3, file); + auto robot_name = cli->getRobotNames().front(); + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadIdentify1(file); + while (1) { + auto ret = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->payloadCalculateFinished(); + if (ret == 0) { + std::cout << "负载计算完成!" << std::endl; + break; + } else if (ret == 1) { + std::cout << "负载正在计算..." << std::endl; + } else { + std::cout << "负载计算失败,ret=" << ret << std::endl; + exit(-1); + } + std::this_thread::sleep_for(std::chrono::milliseconds(500)); + } + auto result = cli->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->getPayloadIdentifyResult(); + std::cout << "计算结果为:" << std::endl; + std::cout << "mass: " << std::get<0>(result) << std::endl; + std::cout << "com: " << std::get<1>(result) << std::endl; + std::cout << "inertia: " << std::get<3>(result) << std::endl; + } +} + +/** + * 功能: 负载辨识 + * 步骤: + * 第一步: 连接到 RPC 服务、登录 + * 第二步: 机械臂上电 + * 第三步: 设置三个目标点 + * 第四步: 关节运动至目标点, 采集关节位置、关节速度、关节加速度、关节电流 + * 第五步: 计算辨识结果 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + examplePayloadIdentify1(rpc_cli); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_popup_dismiss.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_popup_dismiss.cpp new file mode 100644 index 00000000..773f43ed --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_popup_dismiss.cpp @@ -0,0 +1,66 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +// 消除弹窗示例1:通过alarm接口消除弹窗 +void examplePopupDismiss1(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 消除所有的弹窗 + robot_interface->getTrace()->alarm(TraceLevel::INFO, 2, { "" }); +} + +// 消除弹窗示例2:通过IO输入消除弹窗 +// 注意:要使IO生效,必须让机械臂进入联动模式 +void examplePopupDismiss2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + // 接口调用: 设置DI00的动作为消除弹窗。 + StandardInputAction input_action = StandardInputAction::PopupDismiss; + robot->getIoControl()->setStandardDigitalInputAction(0, input_action); + + std::cout << "说明:当DI00为高电平(DI00和0V短接)时,消除弹窗。" << std::endl; +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 消除弹窗示例1:通过alarm接口消除弹窗 + examplePopupDismiss1(rpc_cli); + + // 消除弹窗示例2:通过IO输入消除弹窗 + // 注意:要使IO生效,必须让机械臂进入联动模式 + // examplePopupDismiss2(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_register.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_register.cpp new file mode 100644 index 00000000..e010ecf2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_register.cpp @@ -0,0 +1,413 @@ +#include "aubo_sdk/rpc.h" +#include "thread" + +#define LOCAL_IP "127.0.0.1" +#define MODBUS_IP "172.16.3.111,502" +#define MODBUS_SERIAL_PORT "/dev/ttyUSB0,9600,N,8,1" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +void printfTitle(std::string str) +{ + std::cout << std::endl << std::endl << str << std::endl; +} + +void exampleRegisterInput(RpcClientPtr impl) +{ + printfTitle("->Register_Bool_Input_0_63"); + for (int i = 0; i < 63; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setBoolInput(i, true); + } else { + impl->getRegisterControl()->setBoolInput(i, false); + } + std::cout << (int)impl->getRegisterControl()->getBoolInput(i) << ","; + } + + printfTitle("->Register_Bool_Input_64_127"); + for (int i = 64; i < 128; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setBoolInput(i, true); + } else { + impl->getRegisterControl()->setBoolInput(i, false); + } + std::cout << (int)impl->getRegisterControl()->getBoolInput(i) << ","; + } + + printfTitle("->Register_Int_Input"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setInt32Input(i, i); + } else { + impl->getRegisterControl()->setInt32Input(i, i); + } + std::cout << impl->getRegisterControl()->getInt32Input(i) << ","; + } + + printfTitle("->Register_Float_Input"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setFloatInput(i, 0.1); + } else { + impl->getRegisterControl()->setFloatInput(i, 0.2); + } + std::cout << impl->getRegisterControl()->getFloatInput(i) << ","; + } + + printfTitle("->Register_Double_Input"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setDoubleInput(i, 0.3); + } else { + impl->getRegisterControl()->setDoubleInput(i, 0.4); + } + std::cout << impl->getRegisterControl()->getDoubleInput(i) << ","; + } +} + +void exampleRegisterOutput(RpcClientPtr impl) +{ + printfTitle("->Register_Bool_Output_0_63"); + for (int i = 0; i < 63; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setBoolOutput(i, true); + } else { + impl->getRegisterControl()->setBoolOutput(i, false); + } + std::cout << (int)impl->getRegisterControl()->getBoolOutput(i) << ","; + } + + printfTitle("->Register_Bool_Output_64_127"); + for (int i = 64; i < 127; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setBoolOutput(i, true); + } else { + impl->getRegisterControl()->setBoolOutput(i, false); + } + std::cout << (int)impl->getRegisterControl()->getBoolOutput(i) << ","; + } + + printfTitle("->Register_Int_Output"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setInt32Output(i, i); + } else { + impl->getRegisterControl()->setInt32Output(i, i); + } + std::cout << impl->getRegisterControl()->getInt32Output(i) << ","; + } + + printfTitle("->Register_Float_Output"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setFloatOutput(i, 0.1); + } else { + impl->getRegisterControl()->setFloatOutput(i, 0.2); + } + std::cout << impl->getRegisterControl()->getFloatOutput(i) << ","; + } + + printfTitle("->Register_Double_Output"); + for (int i = 0; i < 64; i++) { + if (0 == i % 2) { + impl->getRegisterControl()->setDoubleOutput(i, 0.3); + } else { + impl->getRegisterControl()->setDoubleOutput(i, 0.4); + } + std::cout << impl->getRegisterControl()->getDoubleOutput(i) << ","; + } +} + +void exampleRegisterCustom(RpcClientPtr impl) +{ + impl->getRegisterControl()->setBool("custom1", true); + bool v_b = false; + v_b = impl->getRegisterControl()->getBool("custom1", v_b); + std::cout << std::endl + << std::endl + << "->Register_Bool_Custom:" << v_b << std::endl; + + impl->getRegisterControl()->setInt32("custom2", 34); + int v_i = 0; + v_i = impl->getRegisterControl()->getInt32("custom2", v_i); + std::cout << std::endl + << std::endl + << "->Register_Int32_Custom:" << v_i << std::endl; + + impl->getRegisterControl()->setFloat("custom3", 0.1); + float v_f = 0; + v_f = impl->getRegisterControl()->getFloat("custom3", v_f); + std::cout << std::endl + << std::endl + << "->Register_Float_Custom:" << v_f << std::endl; + + impl->getRegisterControl()->setDouble("custom4", 0.2); + double v_d = 0; + v_d = impl->getRegisterControl()->getDouble("custom4", v_d); + std::cout << std::endl + << std::endl + << "->Register_Double_Custom:" << v_d << std::endl; + + impl->getRegisterControl()->setString("custom5", "test"); + std::string v_s = ""; + v_s = impl->getRegisterControl()->getString("custom5", v_s); + std::cout << std::endl + << std::endl + << "->Register_String_Custom:" << v_s << std::endl; + + std::cout << std::endl + << std::endl + << "->Register_Clear_Custom:" + << impl->getRegisterControl()->clearNamedVariable("custom5") + << std::endl; +} + +void exampleModbusTcp(RpcClientPtr impl) +{ + /** + 0 = read digital input + 1 = read digital output + 2 = read register input + 3 = read register output + 4 = write digital output + 5 = write register output + **/ + + // 发送自定义数据 + impl->getRegisterControl()->modbusSendCustomCommand( + MODBUS_IP, 1, 0x06, { 0x00, 0x02, 0x00, 0x0F }); + + // 写单个线圈 + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x04, + "WRITE_COLI_OUTPUT_01", true); + auto res = impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_01", 0x01); + + // 写单个保持寄存器 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_IP, 1, 0x00, 0x05, "WRITE_HOLDING_REGISTER_OUTPUT_01", true); + res = impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_HOLDING_REGISTER_OUTPUT_01", 0x4455); + + // 读线圈寄存器(ip,站号,寄存器起始地址,功能码,名字) + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x01, + "READ_COIL_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency("READ_COIL_00", + 1); + + // 读离散输入寄存器 + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x00, + "READ_INPUT_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency("READ_INPUT_00", + 1); + + // 读保持寄存器 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_IP, 1, 0x00, 0x03, "READ_HOLDING_REGISTER_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency( + "READ_HOLDING_REGISTER_00", 1); + + // 读输入寄存器 + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x02, + "READ_INPUT_REGISTER_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency( + "READ_INPUT_REGISTER_00", 1); + + // 等待对应信号的数据第一次获取完成 + std::this_thread::sleep_for(std::chrono::seconds(3)); + + for (int i = 0; i < 100; i++) { + std::cout << "-------------------------" << std::endl; + auto ret = + impl->getRegisterControl()->modbusGetSignalStatus("READ_COIL_00"); + std::cout << "READ_COIL_00:" << ret << std::endl; + auto ret2 = + impl->getRegisterControl()->modbusGetSignalStatus("READ_INPUT_00"); + std::cout << "READ_INPUT_00:" << ret2 << std::endl; + auto ret3 = impl->getRegisterControl()->modbusGetSignalStatus( + "READ_HOLDING_REGISTER_00"); + std::cout << "READ_HOLDING_REGISTER_00:" << ret3 << std::endl; + auto ret4 = impl->getRegisterControl()->modbusGetSignalStatus( + "READ_INPUT_REGISTER_00"); + std::cout << "READ_INPUT_REGISTER_00:" << ret4 << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + for (int i = 0; i < 10; i++) { + impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_01", 0x01); + impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_01", 0x00); + } + + // 发送自定义数据 + impl->getRegisterControl()->modbusSendCustomCommand( + MODBUS_IP, 1, 0x06, { 0x00, 0x03, 0x01, 0xFF }); + + impl->getRegisterControl()->modbusDeleteSignal("WRITE_COLI_OUTPUT_01"); + impl->getRegisterControl()->modbusDeleteSignal( + "WRITE_HOLDING_REGISTER_OUTPUT_01"); + impl->getRegisterControl()->modbusDeleteSignal("READ_COIL_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_INPUT_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_HOLDING_REGISTER_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_INPUT_REGISTER_00"); +} + +void exampleModbusRtu(RpcClientPtr impl) +{ + /** + 0 = read digital input + 1 = read digital output + 2 = read register input + 3 = read register output + 4 = write digital output + 5 = write register output + **/ + // 发送自定义数据 + impl->getRegisterControl()->modbusSendCustomCommand( + MODBUS_SERIAL_PORT, 1, 0x06, { 0x00, 0x02, 0x00, 0x0F, 0x68, 0x0E }); + + // 写单个线圈 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_SERIAL_PORT, 1, 0x01, 0x04, "WRITE_COLI_OUTPUT_02", true); + + impl->getRegisterControl()->modbusSetOutputSignal("WRITE_COLI_OUTPUT_02", + 0x01); + + // 写单个保持寄存器 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_SERIAL_PORT, 1, 0x00, 0x05, "WRITE_HOLDING_REGISTER_OUTPUT_01", + true); + + impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_HOLDING_REGISTER_OUTPUT_01", 0x4455); + + // 读线圈寄存器(ip,站号,寄存器起始地址,功能码,名字) + impl->getRegisterControl()->modbusAddSignal(MODBUS_SERIAL_PORT, 1, 0x00, + 0x01, "READ_COIL_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency("READ_COIL_00", + 1); + + // 读离散输入寄存器 + impl->getRegisterControl()->modbusAddSignal(MODBUS_SERIAL_PORT, 1, 0x00, + 0x00, "READ_INPUT_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency("READ_INPUT_00", + 1); + + // 读保持寄存器 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_SERIAL_PORT, 1, 0x00, 0x03, "READ_HOLDING_REGISTER_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency( + "READ_HOLDING_REGISTER_00", 1); + + // 读输入寄存器 + impl->getRegisterControl()->modbusAddSignal( + MODBUS_SERIAL_PORT, 1, 0x00, 0x02, "READ_INPUT_REGISTER_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency( + "READ_INPUT_REGISTER_00", 1); + + // 等待对应信号的数据第一次获取完成 + std::this_thread::sleep_for(std::chrono::seconds(2)); + + for (int i = 0; i < 100; i++) { + std::cout << "-------------------------" << i << std::endl; + auto ret = + impl->getRegisterControl()->modbusGetSignalStatus("READ_COIL_00"); + std::cout << "READ_COIL_00:" << ret << std::endl; + + auto ret2 = + impl->getRegisterControl()->modbusGetSignalStatus("READ_INPUT_00"); + std::cout << "READ_INPUT_00:" << ret2 << std::endl; + + auto ret3 = impl->getRegisterControl()->modbusGetSignalStatus( + "READ_HOLDING_REGISTER_00"); + std::cout << "READ_HOLDING_REGISTER_00:" << ret3 << std::endl; + + auto ret4 = impl->getRegisterControl()->modbusGetSignalStatus( + "READ_INPUT_REGISTER_00"); + std::cout << "READ_INPUT_REGISTER_00:" << ret4 << std::endl; + + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + for (int i = 0; i < 10; i++) { + impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_02", 0x01); + impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_02", 0x00); + } + + impl->getRegisterControl()->modbusDeleteSignal("WRITE_COLI_OUTPUT_02"); + impl->getRegisterControl()->modbusDeleteSignal( + "WRITE_HOLDING_REGISTER_OUTPUT_01"); + impl->getRegisterControl()->modbusDeleteSignal("READ_COIL_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_INPUT_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_HOLDING_REGISTER_00"); + impl->getRegisterControl()->modbusDeleteSignal("READ_INPUT_REGISTER_00"); +} + +void exampleModbusTcpAction(RpcClientPtr impl) +{ + /** + 0 = read digital input + 1 = read digital output + 2 = read register input + 3 = read register output + 4 = write digital output + 5 = write register output + **/ + // 写单个线圈 + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x04, + "WRITE_COLI_OUTPUT_00", true); + + // 读线圈寄存器(ip,站号,寄存器起始地址,功能码,名字) + impl->getRegisterControl()->modbusAddSignal(MODBUS_IP, 1, 0x00, 0x01, + "READ_COIL_00", true); + impl->getRegisterControl()->modbusSetSignalUpdateFrequency("READ_COIL_00", + 1); + + // Default, 0, "无触发" + // Freedrive, 1, "触发拖动示教" + // 设置动作为freedirver + impl->getRegisterControl()->modbusSetDigitalInputAction( + "rob1", "READ_COIL_00", StandardInputAction::Handguide); + + // 设置为1,打开freedrive + auto res = impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_00", 0x01); + + std::this_thread::sleep_for(std::chrono::seconds(10)); + + // 设置为0,关闭freedrive + res = impl->getRegisterControl()->modbusSetOutputSignal( + "WRITE_COLI_OUTPUT_00", 0x00); + + std::this_thread::sleep_for(std::chrono::seconds(10)); + impl->getRegisterControl()->modbusDeleteSignal("READ_COIL_00"); + impl->getRegisterControl()->modbusDeleteSignal("WRITE_COLI_OUTPUT_00"); +} + +int main(int argc, char **argv) +{ + // 测试slave:modsim32软件 + // arcs控制器中modbus-tcp更新周期是10ms + // arcs控制器中modbus-rtu更新周期是40ms(为了保证指令响应成功,需要指令发送间隔)*寄存器类型数量+150ms(modbus_rtu请求用时)*寄存器类型数量+10ms(线程循环周期)。 + // modbus-rtu 波特率9600 同频率寄存器类型个数 读支持频率 写响应时间 + // 1 5hz 250ms左右 + // 2 2.5hz 500ms左右 + // 3 1.2hz 500ms左右 + // 4 1hz 500ms左右 + + auto rpc_cli = std::make_shared(); + rpc_cli->connect(LOCAL_IP, 30004); + rpc_cli->login("aubo", "123456"); + rpc_cli->setRequestTimeout(5000); //有时候rtu连接需要两秒钟 + + exampleRegisterInput(rpc_cli); + exampleRegisterOutput(rpc_cli); + exampleRegisterCustom(rpc_cli); + exampleModbusTcp(rpc_cli); + exampleModbusRtu(rpc_cli); + // exampleModbusTcpAction(rpc_cli); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control.cpp new file mode 100644 index 00000000..9ec58349 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control.cpp @@ -0,0 +1,101 @@ +#include +#include + +#include "research_interface/robot.h" +#include "trajectory_io.h" +#include + +static volatile std::sig_atomic_t g_stop = 0; + +static void on_sigint(int) +{ + g_stop = 1; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::array &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +template +inline auto operator*(const std::array &l, T x) +{ + std::array temp; + for (size_t i = 0; i < l.size(); i++) { + temp[i] = l[i] * x; + } + return temp; +} + +using namespace arcs::research_interface; +int main(int argc, char *argv[]) +{ + std::signal(SIGINT, on_sigint); + +#ifdef SIGTERM + // Linux + std::signal(SIGTERM, on_sigint); +#endif + +#ifdef SIGBREAK + // MSVC + std::signal(SIGBREAK, on_sigint); +#endif + + auto robot = Robot("127.0.0.1"); + + // 设置控制周期,可选1000和5000 + if (robot.setControlPeriod(5000) < 0) { + std::cout << "set Control Period failed" << std::endl; + return -1; + } + + // record6为5ms轨迹,record7为1ms轨迹 + TrajectoryIo traj_io("../trajs/record6.offt"); + auto trajs = traj_io.parse(); + int index = 0; + + // 移动到第一个点 + JointPositions jnt_pos; + for (int i = 0; i < 6; i++) { + jnt_pos.q[i] = trajs[index][i]; + } + std::cout << "movej: " << jnt_pos.q * (180. / M_PI) << std::endl; + robot.movej(jnt_pos); + + robot.read([](const RobotState &robot_state) { + std::cout << "q: " << robot_state.q * (180. / M_PI) << std::endl; + return true; + }); + + // 开始记录(储存至 arcs_ws/log/.trace/ 下) + auto csv_file = "research_control.csv"; + robot.startRecord(csv_file); + + robot.control([&](const RobotState &robot_state, double duration) { + JointPositions jnt_pos; + // Ctrl+C 请求退出时,让 control 自然收尾退出 + if (g_stop || robot_state.error_code) { + jnt_pos.finished = true; + return jnt_pos; + } + for (int i = 0; i < 6; i++) { + jnt_pos.q[i] = trajs[index][i]; + } + index++; + jnt_pos.finished = (index >= trajs.size()); + return jnt_pos; + }); + + // 停止记录 + robot.stopRecord(); + + return g_stop ? 130 : 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control2.cpp new file mode 100644 index 00000000..da426dd9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_research_control2.cpp @@ -0,0 +1,147 @@ +#include +#include + +#include +#ifdef WIN32 +#include +#else +#include +#endif +#include + +#include "aubo_sdk/rpc.h" + +#include "research_interface/robot.h" +#include "trajectory_io.h" +#include +static volatile std::sig_atomic_t g_stop = 0; + +static void on_sigint(int) +{ + g_stop = 1; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::array &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +template +inline auto operator*(const std::array &l, T x) +{ + std::array temp; + for (size_t i = 0; i < l.size(); i++) { + temp[i] = l[i] * x; + } + return temp; +} + +using namespace arcs::research_interface; +int main(int argc, char *argv[]) +{ + std::signal(SIGINT, on_sigint); + +#ifdef SIGTERM + // Linux + std::signal(SIGTERM, on_sigint); +#endif + +#ifdef SIGBREAK + // MSVC + std::signal(SIGBREAK, on_sigint); +#endif + + auto robot = Robot("127.0.0.1"); + + // servo是否循环下发离线轨迹 + bool loop = true; + + // 离线轨迹是否完成或者机器人状态是否出错 + bool finish = false; + + // 设置控制周期,可选1000和5000 + if (robot.setControlPeriod(5000) < 0) { + std::cout << "set Control Period failed" << std::endl; + return -1; + } + + // 如果机器人没有上电,对机器人进行上电操作 + + if (robot.startup() < 0) { + std::cout << "robot start up failed" << std::endl; + return -1; + } + + // record6为5ms轨迹,record7为1ms轨迹 + TrajectoryIo traj_io("../trajs/record6.offt"); + auto trajs = traj_io.parse(); + if (trajs.empty()) { + std::cout << "traj failed" << std::endl; + return -1; + } + int index = 0; + // 移动到第一个点 + JointPositions jnt_pos; + for (int i = 0; i < 6; i++) { + jnt_pos.q[i] = trajs[index][i]; + } + + std::cout << "movej: " << jnt_pos.q * (180. / M_PI) << std::endl; + if (robot.movej(jnt_pos) < 0) { + return -1; + } + + // 开始记录(储存至 arcs_ws/log/.trace/ 下) + auto csv_file = "research_control2.csv"; + robot.startRecord(csv_file); + + while (!finish) { + robot.read([](const RobotState &robot_state) { + std::cout << "read ===> q: " << robot_state.q * (180. / M_PI) + << std::endl; + + return true; + }); + + // 执行离线轨迹 + robot.control( + [&](const RobotState &robot_state, double duration) { + JointPositions jnt_pos; + // Ctrl+C 请求退出 & 机械臂状态出现了问题时,让 control + // 自然收尾退出 + if (g_stop || robot_state.error_code) { + jnt_pos.finished = true; + finish = true; + return jnt_pos; + } + + for (int i = 0; i < 6; i++) { + jnt_pos.q[i] = trajs[index][i]; + } + index++; + if (index >= trajs.size() && loop) { + // 无限循环跑离线轨迹 + index = 0; + } else if (index >= trajs.size() && !loop) { + // 只跑一次离线轨迹 + jnt_pos.finished = true; + finish = true; + } + return jnt_pos; + }, + false, 0, false); + + } + + // 停止记录 + robot.stopRecord(); + + return g_stop ? 130 : 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde.cpp new file mode 100644 index 00000000..69fc21c0 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde.cpp @@ -0,0 +1,453 @@ +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include "thread" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +std::mutex rtde_mtx_; + +uint64_t in_bit_lower_ = 0; +uint64_t in_bit_upper_ = 0; +int in_int_0_ = -1; +float in_float_0_ = -0.1; +double in_double_0_ = -0.1; +int16_t int16_0_ = 0; +std::vector vec_int16_(64, 0); +uint64_t out_bit_lower_ = 0; +uint64_t out_bit_upper_ = 0; +int out_int_0_ = -1; +float out_float_0_ = -0.1; +double out_double_0_ = -0.1; + +RobotModeType robot_mode_ = RobotModeType::NoController; // 机器人状态 +SafetyModeType safety_mode_ = SafetyModeType::Normal; // 安全状态 +RuntimeState runtime_state_ = RuntimeState::Stopped; // 规划器运行状态 +double actual_main_voltage_ = 0; // 主电压 +double actual_robot_voltage_ = 0; // 机器人电压 + +std::vector actual_q_{ std::vector( + 6, 0.) }; // 当前关节角(单位:rad) +std::vector actual_qd_{ std::vector( + 6, 0.) }; // 当前关节速度(单位:rad/s) +std::vector actual_TCP_pose_{ std::vector( + 6, 0.) }; // 当前TCP位置(单位:m)和姿态(单位:rad) +std::vector actual_TCP_speed_{ std::vector( + 6, 0.) }; // 当前TCP位置速度(单位:m/s)和姿态速度(单位:rad/s) + +std::vector joint_mode_{ std::vector( + 6, JointStateType::Idle) }; // 关节 +std::vector joint_temperatures_{ std::vector(6, + 0.) }; // 关节温度 +std::vector actual_joint_voltage_{ std::vector( + 6, 0.) }; // 关节电压 +std::vector actual_current_{ std::vector(6, 0.) }; // 关节电流 + +uint64_t standard_digital_input_bits_ = 0; // 所有的数字输入值(十进制) +uint64_t standard_digital_output_bits_ = 0; // 所有的数字输出值(十进制) +uint64_t tool_digital_input_bits_ = 0; // 所有的工具数字值(十进制) +uint64_t tool_digital_output_bits_ = 0; // 所有的工具数字值(十进制) +uint64_t configurable_digital_input_bits_ = 0; // 所有的安全输入值(十进制) +uint64_t configurable_digital_output_bits_ = 0; // 所有的安全输出值(十进制) +uint64_t link_digital_input_bits_ = 0; // 所有的联动输入值(十进制) +uint64_t link_digital_output_bits_ = 0; // 所有的联动输出值(十进制) +int standard_digital_input_num_ = 0; // 数字输入数量 +int standard_digital_output_num_ = 0; // 数字输出数量 +int tool_digital_input_num_ = 0; // 工具数字输入数量 +int tool_digital_output_num_ = 0; // 工具数字输出数量 +int configurable_digital_input_num_ = 0; // 安全输入数量 +int configurable_digital_output_num_ = 0; // 安全输出数量 +int link_digital_input_num_ = 0; // 联动输入数量 +int link_digital_output_num_ = 0; // 联动输出数量 +std::vector standard_analog_input_values_; // 所有的模拟输入值 +std::vector standard_analog_output_values_; // 所有的模拟输出值 +std::vector tool_analog_input_values_; // 所有的工具模拟输入值 +std::vector tool_analog_output_values_; // 所有的工具模拟输出值 + +template +void printVec(std::vector param, std::string name) +{ + std::cout << "@:" << name << std::endl; + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i) << ","; + } + std::cout << std::endl; +} + +template +void print2Vec(std::vector param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " offset:" << param.at(i).offset + << std::endl; + } + + for (size_t j = 0; j < param.at(i).value.size(); j++) { + std::cout << param.at(i).value.at(j); + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +template +void printVecVec(std::vector> param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " size:" << param.size() << std::endl; + } + + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j) << ","; + } + + std::cout << std::endl; + } +} + +template +void printSingle(T param, std::string name) +{ + std::cout << "@:" << name << " " << param << std::endl; +} + +bool bit_value(uint64_t v, int index) +{ + return (v & ((uint64_t)1 << index)) ? true : false; +} + +// 打印二进制位 +void printBit(uint64_t v, std::string name, int bit_length) +{ + std::cout << "@:" << name << std::endl; + + for (int i = 0; i < bit_length; i++) { + std::cout << bit_value(v, i) << ","; + } + std::cout << std::endl; +} + +// RTDE发布 +void examplePublish(RtdeClientPtr cli) +{ + // 接口调用: 设置话题 + int topic1 = cli->setTopic( + true, + { "input_bit_registers0_to_31", "input_bit_registers32_to_63", + "input_bit_registers64_to_127", "input_int_registers_0", + "input_float_registers_0", "input_double_registers_0", + "input_int16_registers_0", "input_int16_registers0_to_63" }, + 1, 1); + + // 接口调用: 发布话题 + cli->publish(topic1, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(0x00ff); + ro.push(0x00); + ro.push(0x00); + ro.push(44); + ro.push(3.1); + ro.push(4.1); + ro.push(5); + ro.push(std::vector(64, 1)); + }); + + // 接口调用: 设置话题 + int topic2 = cli->setTopic(true, { "R1_standard_digital_output" }, 1, 2); + + // 接口调用: 发布话题 + cli->publish(topic2, [&](arcs::aubo_sdk::OutputBuilder &ro) { + // 设置DO01为高电平 + ro.push(std::tuple(1, true)); + }); + + // 接口调用: 设置话题 + int topic3 = cli->setTopic(true, { "R1_standard_analog_output" }, 1, 3); + // 接口调用: 发布话题 + cli->publish(topic3, [&](arcs::aubo_sdk::OutputBuilder &ro) { + // 设置AO0和AO1均为3.3 + ro.push(std::vector(2, 3.3)); + }); + + // 接口调用: 设置话题 + int topic4 = cli->setTopic(true, { "R1_speed_slider_fraction" }, 1, 4); + // 接口调用: 发布话题 + cli->publish(topic4, [&](arcs::aubo_sdk::OutputBuilder &ro) { + // 设置运行速度比例为75% + ro.push(0.75); + }); + + // 接口调用: 设置话题 + int topic5 = cli->setTopic( + true, + { "R1_standard_digital_output_mask", "R1_standard_digital_output" }, 1, + 5); + // 接口调用: 发布话题 + cli->publish(topic5, [&](arcs::aubo_sdk::OutputBuilder &ro) { + // 设置数字输出(DO)掩码为255,对应二进制是11111111, + // 1表示DO通道打开,0表示DO通道关闭 + ro.push(255); + // 设置数字输出(DO)的输出值为255,对应二进制是11111111, + // 1表示高电平,0表示低电平 + ro.push(255); + }); +} + +// RPC获取IO数量 +void exampleIoNum(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot = cli->getRobotInterface(robot_name); + + standard_digital_input_num_ = + robot->getIoControl()->getStandardDigitalInputNum(); + standard_digital_output_num_ = + robot->getIoControl()->getStandardDigitalOutputNum(); + + tool_digital_input_num_ = robot->getIoControl()->getToolDigitalInputNum(); + tool_digital_output_num_ = robot->getIoControl()->getToolDigitalOutputNum(); + + configurable_digital_input_num_ = + robot->getIoControl()->getConfigurableDigitalInputNum(); + configurable_digital_output_num_ = + robot->getIoControl()->getConfigurableDigitalOutputNum(); + + link_digital_input_num_ = robot->getIoControl()->getStaticLinkInputNum(); + link_digital_output_num_ = robot->getIoControl()->getStaticLinkOutputNum(); +} + +// RTDE订阅 +void exampleSubscribe(RtdeClientPtr cli) +{ + // 接口调用: 设置话题 + int topic5 = cli->setTopic( + false, + { "input_bit_registers_r0_to_63", "input_bit_registers_r64_to_127", + "input_int_registers_r0", "input_float_registers_r0", + "input_double_registers_r0", "input_int16_registers_r0", + "input_int16_registers_0_to_63" }, + 1, 5); + // 接口调用: 订阅 + cli->subscribe(topic5, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + in_bit_lower_ = parser.popInt64(); + in_bit_upper_ = parser.popInt64(); + in_int_0_ = parser.popInt32(); + in_float_0_ = parser.popDouble(); + in_double_0_ = parser.popDouble(); + int16_0_ = parser.popInt16(); + vec_int16_ = parser.popVectorInt16(); + }); + + // 接口调用: 设置话题 + int topic6 = cli->setTopic( + false, + { "output_bit_registers_0_to_63", "output_bit_registers_64_to_127", + "output_int_registers_0", "output_float_registers_0", + "output_double_registers_0" }, + 1, 6); + // 接口调用: 订阅 + cli->subscribe(topic6, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + out_bit_lower_ = parser.popInt64(); + out_bit_upper_ = parser.popInt64(); + out_int_0_ = parser.popInt32(); + out_float_0_ = parser.popDouble(); + out_double_0_ = parser.popDouble(); + }); + + // 接口调用: 设置话题 + int topic7 = + cli->setTopic(false, + { "R1_robot_mode", "R1_safety_mode", "runtime_state", + "R1_actual_main_voltage", "R1_actual_robot_voltage" }, + 50, 7); + // 接口调用: 订阅 + cli->subscribe(topic7, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + robot_mode_ = parser.popRobotModeType(); + safety_mode_ = parser.popSafetyModeType(); + runtime_state_ = parser.popRuntimeState(); + actual_main_voltage_ = parser.popDouble(); + actual_robot_voltage_ = parser.popDouble(); + }); + + // 接口调用: 设置话题 + int topic8 = cli->setTopic(false, + { "R1_actual_q", "R1_actual_qd", + "R1_actual_TCP_pose", "R1_actual_TCP_speed" }, + 50, 8); + // 接口调用: 订阅 + cli->subscribe(topic8, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + actual_q_ = parser.popVectorDouble(); + actual_qd_ = parser.popVectorDouble(); + actual_TCP_pose_ = parser.popVectorDouble(); + actual_TCP_speed_ = parser.popVectorDouble(); + }); + + // 接口调用: 设置话题 + int topic9 = cli->setTopic(false, + { + + "R1_joint_mode", + "R1_joint_temperatures", + "R1_actual_joint_voltage", + "R1_actual_current", + }, + 1, 9); + // 接口调用: 订阅 + cli->subscribe(topic9, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + joint_mode_ = parser.popVectorJointStateType(); + joint_temperatures_ = parser.popVectorDouble(); + actual_joint_voltage_ = parser.popVectorDouble(); + actual_current_ = parser.popVectorDouble(); + }); + + // 接口调用: 设置话题 + int topic10 = cli->setTopic( + false, + { "R1_standard_digital_input_bits", "R1_tool_digital_input_bits", + "R1_configurable_digital_input_bits", "R1_link_digital_input_bits", + "R1_standard_digital_output_bits", "R1_tool_digital_output_bits", + "R1_configurable_digital_output_bits", "R1_link_digital_output_bits", + "R1_standard_analog_input_values", "R1_tool_analog_input_values", + "R1_standard_analog_output_values", "R1_tool_analog_output_values" }, + 1, 10); + // 接口调用: 订阅 + cli->subscribe(topic10, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + standard_digital_input_bits_ = parser.popInt64(); + tool_digital_input_bits_ = parser.popInt64(); + configurable_digital_input_bits_ = parser.popInt64(); + link_digital_input_bits_ = parser.popInt64(); + standard_digital_output_bits_ = parser.popInt64(); + tool_digital_output_bits_ = parser.popInt64(); + configurable_digital_output_bits_ = parser.popInt64(); + link_digital_output_bits_ = parser.popInt64(); + standard_analog_input_values_ = parser.popVectorDouble(); + tool_analog_input_values_ = parser.popVectorDouble(); + standard_analog_output_values_ = parser.popVectorDouble(); + tool_analog_output_values_ = parser.popVectorDouble(); + }); +} + +// 打印更新信息 +void update() +{ + std::unique_lock lck(rtde_mtx_); + printBit(in_bit_lower_, "input_bit_registers_0_to_63", 64); + printBit(in_bit_upper_, "input_bit_registers_64_to_127", 64); + printBit(out_bit_lower_, "output_bit_registers_0_to_63", 64); + printBit(out_bit_upper_, "output_bit_registers_64_to_127", 64); + + std::cout << std::endl << "input_int_registers_0" << std::endl; + std::cout << in_int_0_; + + std::cout << std::endl << "input_float_registers_0" << std::endl; + std::cout << in_float_0_; + + std::cout << std::endl << "input_double_registers_0" << std::endl; + std::cout << in_double_0_ << std::endl; + + std::cout << std::endl << "output_int_registers_0" << std::endl; + std::cout << out_int_0_; + + std::cout << std::endl << "output_float_registers_0" << std::endl; + std::cout << out_float_0_; + + std::cout << std::endl << "output_double_registers_0" << std::endl; + std::cout << out_double_0_; + + printSingle(robot_mode_, "机器人状态"); + printSingle(safety_mode_, "安全状态"); + printSingle(runtime_state_, "规划器运行状态"); + printSingle(actual_main_voltage_, "主电压"); + printSingle(actual_robot_voltage_, "机器人电压"); + + printVec(actual_q_, "当前关节角(单位:弧度)"); + printVec(actual_qd_, "当前关节速度(单位:rad/s)"); + printVec(actual_TCP_pose_, "当前TCP位置(单位:m)和姿态(单位:rad)"); + printVec(actual_TCP_speed_, + "当前TCP位置速度(单位:m/s)和姿态速度(单位:rad/s)"); + + for (size_t i = 0; i < joint_mode_.size(); i++) { + if (0 == i) { + std::cout << "@:关节状态" << std::endl; + } + + std::cout << joint_mode_.at(i) << ","; + + if ((joint_mode_.size() - 1) == i) { + std::cout << std::endl; + } + } + printVec(joint_temperatures_, "关节温度"); + printVec(actual_joint_voltage_, "关节电压"); + printVec(actual_current_, "关节电流"); + + printBit(standard_digital_input_bits_, "数字输入值", + standard_digital_input_num_); + printBit(standard_digital_output_bits_, "数字输出值", + standard_digital_output_num_); + printBit(tool_digital_input_bits_, "工具数字值(包括输入和输出)", + tool_digital_input_num_); + printBit(tool_digital_output_bits_, "工具数字值(包括输入和输出)", + tool_digital_output_num_); + printBit(configurable_digital_input_bits_, "安全输入值", + configurable_digital_input_num_); + printBit(configurable_digital_output_bits_, "安全输出值", + configurable_digital_output_num_); + printBit(link_digital_input_bits_, "联动输入值", link_digital_input_num_); + printBit(link_digital_output_bits_, "联动输出值", link_digital_output_num_); + printVec(standard_analog_input_values_, "模拟输入值"); + printVec(tool_analog_input_values_, "工具模拟输入值"); + printVec(standard_analog_output_values_, "模拟输出值"); + printVec(tool_analog_output_values_, "工具模拟输出值"); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // RTDE发布 + examplePublish(rtde_cli); + + // RPC获取IO数量 + exampleIoNum(rpc_cli); + + // RTDE订阅 + exampleSubscribe(rtde_cli); + + while (1) { + // 打印更新信息 + update(); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_udp.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_udp.cpp new file mode 100644 index 00000000..9986edfc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_udp.cpp @@ -0,0 +1,358 @@ +#include +#include +#include "aubo_sdk/rtde.h" +#include "aubo_sdk/rpc.h" +#include "thread" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +using RtdeRecipeMap = + std::unordered_map; +std::mutex rtde_mtx_; + +// topic1 +int line_{ -1 }; +std::vector actual_q_{ std::vector(6, 0.) }; +std::vector actual_current_{ std::vector(6, 0.) }; +std::vector actual_TCP_pose_{ std::vector(6, 0.) }; +RobotModeType robot_mode_ = RobotModeType::NoController; +SafetyModeType safety_mode_ = SafetyModeType::Normal; +RuntimeState runtime_state_ = RuntimeState::Stopped; + +// topic2 +double actual_main_voltage_; +double actual_robot_voltage_; +std::vector joint_temperatures_{ std::vector(6, 0.) }; +std::vector joint_mode_{ std::vector( + 6, JointStateType::Idle) }; + +// topic3 +uint64_t out_bit_lower_ = 0; +uint64_t out_bit_upper_ = 0; +int out_int_0_ = -1; +float out_float_0_ = -0.1; +double out_double_0_ = -0.1; +uint64_t in_bit_lower_ = 0; +uint64_t in_bit_upper_ = 0; +int in_int_0_ = -1; +float in_float_0_ = -0.1; +double in_double_1_ = -0.1; +double motion_progress = 0; +int16_t int16_0_ = 0; +std::vector vec_int16_(64, 0); + +template +void printVec(std::vector param, std::string name) +{ + std::cout << "@:" << name << std::endl; + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i) << ","; + } + std::cout << std::endl; +} + +template +void print2Vec(std::vector param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " offset:" << param.at(i).offset + << std::endl; + } + + for (size_t j = 0; j < param.at(i).value.size(); j++) { + std::cout << param.at(i).value.at(j); + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +template +void printVecVec(std::vector> param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " size:" << param.size() << std::endl; + } + + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j) << ","; + } + + std::cout << std::endl; + } +} + +template +void printSingle(T param, std::string name) +{ + std::cout << "@:" << name << " " << param << std::endl; +} + +bool bit_value(uint64_t v, int index) +{ + return (v & ((uint64_t)1 << index)) ? true : false; +} + +void printRecipe(RtdeRecipeMap &recipe) +{ + for (auto it = recipe.begin(); it != recipe.end(); ++it) { + std::cout << "chanel:" << it->first << std::endl; + for (auto tmp : it->second.segments) { + std::cout << tmp << " "; + } + std::cout << std::endl; + } +} + +// 配置输出 +void configSubscribe(RtdeClientPtr cli) +{ + // 接口调用: 设置 topic1 + int topic1 = + cli->setTopic(false, + { "R1_actual_q", "R1_actual_current", "R1_robot_mode", + "R1_safety_mode", "runtime_state", "line_number", + "R1_actual_TCP_pose", "R1_motion_progress" }, + 50, 0); + // 接口调用: 订阅 + cli->subscribe(topic1, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + actual_q_ = parser.popVectorDouble(); + actual_current_ = parser.popVectorDouble(); + robot_mode_ = parser.popRobotModeType(); + safety_mode_ = parser.popSafetyModeType(); + runtime_state_ = parser.popRuntimeState(); + line_ = parser.popInt32(); + actual_TCP_pose_ = parser.popVectorDouble(); + motion_progress = parser.popDouble(); + }); + + // 接口调用: 设置 topic2 + int topic2 = + cli->setTopic(false, + { "R1_joint_temperatures", "R1_joint_mode", + "R1_actual_main_voltage", "R1_actual_robot_voltage" }, + 1, 1); + // 接口调用: 订阅 + cli->subscribe(topic2, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + joint_temperatures_ = parser.popVectorDouble(); + joint_mode_ = parser.popVectorJointStateType(); + actual_main_voltage_ = parser.popDouble(); + actual_robot_voltage_ = parser.popDouble(); + }); + + // 接口调用: 设置 topic3 + int topic3 = cli->setTopic( + false, + { "output_bit_registers_0_to_63", "output_bit_registers_64_to_127", + "output_int_registers_0", "output_float_registers_0", + "output_double_registers_0", "input_bit_registers_r0_to_63", + "input_bit_registers_r64_to_127", "input_int_registers_r0", + "input_float_registers_r0", "input_double_registers_r1", + "input_int16_registers_r0", "input_int16_registers_0_to_63" }, + 1, 12); + // 接口调用: 订阅 + cli->subscribe(topic3, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + out_bit_lower_ = parser.popInt64(); + out_bit_upper_ = parser.popInt64(); + out_int_0_ = parser.popInt32(); + out_float_0_ = parser.popDouble(); + out_double_0_ = parser.popDouble(); + in_bit_lower_ = parser.popInt64(); + in_bit_upper_ = parser.popInt64(); + in_int_0_ = parser.popInt32(); + in_float_0_ = parser.popDouble(); + in_double_1_ = parser.popDouble(); + int16_0_ = parser.popInt16(); + vec_int16_ = parser.popVectorInt16(); + }); +} + +// 设置rtde输入 +void setInput(RtdeClientPtr cli) +{ + // 输入 + // 单一设置输入 + // 接口调用: 发布 + // cli->publish(arcs::common_interface::RtdeInput::input_bit_registers0_to_31, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00ff); + // }); + + // cli->publish(arcs::common_interface::RtdeInput::input_bit_registers32_to_63, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00); + // }); + + // cli->publish( + // arcs::common_interface::RtdeInput::input_bit_registers64_to_127, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00); }); + + // cli->publish(arcs::common_interface::RtdeInput::input_int_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(12); }); + + // cli->publish(arcs::common_interface::RtdeInput::input_float_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(1.11111); + // }); + + // cli->publish(arcs::common_interface::RtdeInput::input_double_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(2.22222); + // }); + + // 组合设置输入 + int topic5 = cli->setTopic( + true, + { "input_bit_registers0_to_31", "input_bit_registers32_to_63", + "input_bit_registers64_to_127", "input_int_registers_0" }, + 1, 5); + + cli->publish(5, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(0x00ff); + ro.push(0x00); + ro.push(0x00); + ro.push(44); + }); + + int topic6 = + cli->setTopic(true, + { "input_float_registers_0", "input_double_registers_1", + "input_int16_registers_0" }, + 1, 6); + + cli->publish(6, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(3.1); + ro.push(4.1); + ro.push(5); + }); + + int topic7 = cli->setTopic(true, { "R1_standard_digital_output" }, 1, 7); + + cli->publish(topic7, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(std::tuple(1, true)); + }); + + int topic8 = cli->setTopic(true, { "input_int16_registers0_to_63" }, 1, 8); + + cli->publish(topic8, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(std::vector(64, 1)); + }); +} + +// 打印更新信息 +void update() +{ + std::unique_lock lck(rtde_mtx_); + + printVec(actual_q_, "actual_q_"); + printVec(actual_current_, "actual_current_"); + printVec(actual_TCP_pose_, "actual_TCP_pose_"); + printSingle((int)robot_mode_, "robot_mode_"); + printSingle((int)safety_mode_, "safety_mode_"); + printSingle((int)runtime_state_, "runtime_state_"); + printSingle(line_, "line_"); + + printVec(joint_temperatures_, "joint_temperatures_"); + printSingle(actual_main_voltage_, "actual_main_voltage_"); + printSingle(actual_robot_voltage_, "actual_robot_voltage_"); + + for (size_t i = 0; i < joint_mode_.size(); i++) { + if (0 == i) { + std::cout << "@:joint_mode_" << std::endl; + } + + std::cout << joint_mode_.at(i) << ","; + + if ((joint_mode_.size() - 1) == i) { + std::cout << std::endl; + } + } + + std::cout << std::endl << "output_bit_registers_0_to_63" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(out_bit_lower_, i) << ","; + } + + std::cout << std::endl << "output_bit_registers_64_to_127" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(out_bit_upper_, i) << ","; + } + + std::cout << std::endl << "output_int_registers_0" << std::endl; + std::cout << out_int_0_; + + std::cout << std::endl << "output_float_registers_0" << std::endl; + std::cout << out_float_0_; + + std::cout << std::endl << "output_double_registers_0" << std::endl; + std::cout << out_double_0_; + + std::cout << std::endl << "input_bit_registers_0_to_63" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(in_bit_lower_, i) << ","; + } + + std::cout << std::endl << "input_bit_registers_64_to_127" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(in_bit_upper_, i) << ","; + } + + std::cout << std::endl << "input_int_registers_0" << std::endl; + std::cout << in_int_0_; + + std::cout << std::endl << "input_float_registers_0" << std::endl; + std::cout << in_float_0_; + + std::cout << std::endl << "input_double_registers_1" << std::endl; + std::cout << in_double_1_ << std::endl; +} + +/** + * 功能: RTDE + * 步骤: + * 第一步: 连接 RPC 服务、机械臂登录 + * 第二步: 连接 RTDE 服务、机械臂登录 + * 第三步: 设置rtde输入 + * 第四步: 配置输出 + * 第五步: 打印更新信息 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ + auto rpc_cli = std::make_shared(); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(2); + // 接口调用: 连接到 RTDE UDP 服务 + rtde_cli->connect(LOCAL_IP, 30018); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 设置rtde输入 + setInput(rtde_cli); + + // 配置输出 + configSubscribe(rtde_cli); + + std::cout << "=================output_recipe===================" + << std::endl; + auto output_recipe = rtde_cli->getRegisteredOutputRecipe(); + printRecipe(output_recipe); + std::cout << "=================input_recipe====================" + << std::endl; + auto input_recipe = rtde_cli->getRegisteredInputRecipe(); + printRecipe(input_recipe); + + while (1) { + // 打印更新信息 + update(); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_uds.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_uds.cpp new file mode 100644 index 00000000..cea59297 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_rtde_uds.cpp @@ -0,0 +1,352 @@ +#include +#include +//#include "bindings/rtde/rtde_recipe.h" +#include "aubo_sdk/rtde.h" +#include "aubo_sdk/rpc.h" +#include "thread" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +using RtdeRecipeMap = + std::unordered_map; +std::mutex rtde_mtx_; + +// topic1 +int line_{ -1 }; +std::vector actual_q_{ std::vector(6, 0.) }; +std::vector actual_current_{ std::vector(6, 0.) }; +std::vector actual_TCP_pose_{ std::vector(6, 0.) }; +RobotModeType robot_mode_ = RobotModeType::NoController; +SafetyModeType safety_mode_ = SafetyModeType::Normal; +RuntimeState runtime_state_ = RuntimeState::Stopped; + +// topic2 +double actual_main_voltage_; +double actual_robot_voltage_; +std::vector joint_temperatures_{ std::vector(6, 0.) }; +std::vector joint_mode_{ std::vector( + 6, JointStateType::Idle) }; + +// topic3 +uint64_t out_bit_lower_ = 0; +uint64_t out_bit_upper_ = 0; +int out_int_0_ = -1; +float out_float_0_ = -0.1; +double out_double_0_ = -0.1; +uint64_t in_bit_lower_ = 0; +uint64_t in_bit_upper_ = 0; +int in_int_0_ = -1; +float in_float_0_ = -0.1; +double in_double_1_ = -0.1; +double motion_progress = 0; +int16_t int16_0_ = 0; +std::vector vec_int16_(64, 0); + +template +void printVec(std::vector param, std::string name) +{ + std::cout << "@:" << name << std::endl; + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i) << ","; + } + std::cout << std::endl; +} + +template +void print2Vec(std::vector param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " offset:" << param.at(i).offset + << std::endl; + } + + for (size_t j = 0; j < param.at(i).value.size(); j++) { + std::cout << param.at(i).value.at(j); + } + + if ((param.size() - 1) == i) { + std::cout << std::endl; + } + } +} + +template +void printVecVec(std::vector> param, std::string name) +{ + for (size_t i = 0; i < param.size(); i++) { + if (0 == i) { + std::cout << "@:" << name << " size:" << param.size() << std::endl; + } + + for (size_t j = 0; j < param.at(i).size(); j++) { + std::cout << param.at(i).at(j) << ","; + } + + std::cout << std::endl; + } +} + +template +void printSingle(T param, std::string name) +{ + std::cout << "@:" << name << " " << param << std::endl; +} + +bool bit_value(uint64_t v, int index) +{ + return (v & ((uint64_t)1 << index)) ? true : false; +} + +void printRecipe(RtdeRecipeMap &recipe) +{ + for (auto it = recipe.begin(); it != recipe.end(); ++it) { + std::cout << "chanel:" << it->first << std::endl; + for (auto tmp : it->second.segments) { + std::cout << tmp << " "; + } + std::cout << std::endl; + } +} + +// 配置输出 +void configSubscribe(RtdeClientPtr cli) +{ + // 接口调用: 设置 topic1 + int topic1 = + cli->setTopic(false, + { "R1_actual_q", "R1_actual_current", "R1_robot_mode", + "R1_safety_mode", "runtime_state", "line_number", + "R1_actual_TCP_pose", "R1_motion_progress" }, + 50, 0); + // 接口调用: 订阅 + cli->subscribe(topic1, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + actual_q_ = parser.popVectorDouble(); + actual_current_ = parser.popVectorDouble(); + robot_mode_ = parser.popRobotModeType(); + safety_mode_ = parser.popSafetyModeType(); + runtime_state_ = parser.popRuntimeState(); + line_ = parser.popInt32(); + actual_TCP_pose_ = parser.popVectorDouble(); + motion_progress = parser.popDouble(); + }); + + // 接口调用: 设置 topic2 + int topic2 = + cli->setTopic(false, + { "R1_joint_temperatures", "R1_joint_mode", + "R1_actual_main_voltage", "R1_actual_robot_voltage" }, + 1, 1); + // 接口调用: 订阅 + cli->subscribe(topic2, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + joint_temperatures_ = parser.popVectorDouble(); + joint_mode_ = parser.popVectorJointStateType(); + actual_main_voltage_ = parser.popDouble(); + actual_robot_voltage_ = parser.popDouble(); + }); + + // 接口调用: 设置 topic3 + int topic3 = cli->setTopic( + false, + { "output_bit_registers_0_to_63", "output_bit_registers_64_to_127", + "output_int_registers_0", "output_float_registers_0", + "output_double_registers_0", "input_bit_registers_r0_to_63", + "input_bit_registers_r64_to_127", "input_int_registers_r0", + "input_float_registers_r0", "input_double_registers_r1", + "input_int16_registers_r0", "input_int16_registers_0_to_63" }, + 1, 12); + // 接口调用: 订阅 + cli->subscribe(topic3, [](InputParser &parser) { + std::unique_lock lck(rtde_mtx_); + out_bit_lower_ = parser.popInt64(); + out_bit_upper_ = parser.popInt64(); + out_int_0_ = parser.popInt32(); + out_float_0_ = parser.popDouble(); + out_double_0_ = parser.popDouble(); + in_bit_lower_ = parser.popInt64(); + in_bit_upper_ = parser.popInt64(); + in_int_0_ = parser.popInt32(); + in_float_0_ = parser.popDouble(); + in_double_1_ = parser.popDouble(); + int16_0_ = parser.popInt16(); + vec_int16_ = parser.popVectorInt16(); + }); +} + +// 设置rtde输入 +void setInput(RtdeClientPtr cli) +{ + // 输入 + // 单一设置输入 + // 接口调用: 发布 + // cli->publish(arcs::common_interface::RtdeInput::input_bit_registers0_to_31, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00ff); + // }); + + // cli->publish(arcs::common_interface::RtdeInput::input_bit_registers32_to_63, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00); + // }); + + // cli->publish( + // arcs::common_interface::RtdeInput::input_bit_registers64_to_127, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(0x00); }); + + // cli->publish(arcs::common_interface::RtdeInput::input_int_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(12); }); + + // cli->publish(arcs::common_interface::RtdeInput::input_float_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(1.11111); + // }); + + // cli->publish(arcs::common_interface::RtdeInput::input_double_registers_0, + // [](arcs::aubo_sdk::OutputBuilder &ro) { ro.push(2.22222); + // }); + + // 组合设置输入 + int topic5 = cli->setTopic( + true, + { "input_bit_registers0_to_31", "input_bit_registers32_to_63", + "input_bit_registers64_to_127", "input_int_registers_0" }, + 1, 5); + + cli->publish(5, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(0x00ff); + ro.push(0x00); + ro.push(0x00); + ro.push(44); + }); + + int topic6 = + cli->setTopic(true, + { "input_float_registers_0", "input_double_registers_1", + "input_int16_registers_0" }, + 1, 6); + + cli->publish(6, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(3.1); + ro.push(4.1); + ro.push(5); + }); + + int topic7 = cli->setTopic(true, { "R1_standard_digital_output" }, 1, 7); + + cli->publish(topic7, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(std::tuple(1, true)); + }); + + int topic8 = cli->setTopic(true, { "input_int16_registers0_to_63" }, 1, 8); + + cli->publish(topic8, [&](arcs::aubo_sdk::OutputBuilder &ro) { + ro.push(std::vector(64, 1)); + }); +} + +// 打印更新信息 +void update() +{ + std::unique_lock lck(rtde_mtx_); + + printVec(actual_q_, "actual_q_"); + printVec(actual_current_, "actual_current_"); + printVec(actual_TCP_pose_, "actual_TCP_pose_"); + printSingle((int)robot_mode_, "robot_mode_"); + printSingle((int)safety_mode_, "safety_mode_"); + printSingle((int)runtime_state_, "runtime_state_"); + printSingle(line_, "line_"); + + printVec(joint_temperatures_, "joint_temperatures_"); + printSingle(actual_main_voltage_, "actual_main_voltage_"); + printSingle(actual_robot_voltage_, "actual_robot_voltage_"); + + for (size_t i = 0; i < joint_mode_.size(); i++) { + if (0 == i) { + std::cout << "@:joint_mode_" << std::endl; + } + + std::cout << joint_mode_.at(i) << ","; + + if ((joint_mode_.size() - 1) == i) { + std::cout << std::endl; + } + } + + std::cout << std::endl << "output_bit_registers_0_to_63" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(out_bit_lower_, i) << ","; + } + + std::cout << std::endl << "output_bit_registers_64_to_127" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(out_bit_upper_, i) << ","; + } + + std::cout << std::endl << "output_int_registers_0" << std::endl; + std::cout << out_int_0_; + + std::cout << std::endl << "output_float_registers_0" << std::endl; + std::cout << out_float_0_; + + std::cout << std::endl << "output_double_registers_0" << std::endl; + std::cout << out_double_0_; + + std::cout << std::endl << "input_bit_registers_0_to_63" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(in_bit_lower_, i) << ","; + } + + std::cout << std::endl << "input_bit_registers_64_to_127" << std::endl; + for (int i = 0; i < 64; i++) { + std::cout << bit_value(in_bit_upper_, i) << ","; + } + + std::cout << std::endl << "input_int_registers_0" << std::endl; + std::cout << in_int_0_; + + std::cout << std::endl << "input_float_registers_0" << std::endl; + std::cout << in_float_0_; + + std::cout << std::endl << "input_double_registers_1" << std::endl; + std::cout << in_double_1_ << std::endl; +} + +/** + * 功能: RTDE + * 步骤: + * 第一步: 连接 RTDE UDS服务、机械臂登录 + * 第二步: 设置rtde输入 + * 第三步: 配置输出 + * 第四步: 打印更新信息 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ + auto rtde_cli = std::make_shared(1); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 设置rtde输入 + setInput(rtde_cli); + + // 配置输出 + configSubscribe(rtde_cli); + + std::cout << "=================output_recipe===================" + << std::endl; + auto output_recipe = rtde_cli->getRegisteredOutputRecipe(); + printRecipe(output_recipe); + std::cout << "=================input_recipe====================" + << std::endl; + auto input_recipe = rtde_cli->getRegisteredInputRecipe(); + printRecipe(input_recipe); + + while (1) { + // 打印更新信息 + update(); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_run_program.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_run_program.cpp new file mode 100644 index 00000000..fd12ad15 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_run_program.cpp @@ -0,0 +1,59 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +void exampleRunProgram(RpcClientPtr cli) +{ + // 示教器工程文件名 + std::string program_name = "test"; + // 接口调用: 加载示教器编程的.pro工程 + // 工程文件需要放在在/root/arcs_ws/program目录下 + // 只需要输入文件名,不需要添加后缀 + cli->getRuntimeMachine()->loadProgram(program_name); + // 接口调用: 运行工程 + cli->getRuntimeMachine()->runProgram(); + + RuntimeState program_status; + while (1) { + // 接口调用: 获取工程运行状态 + program_status = cli->getRuntimeMachine()->getRuntimeState(); + std::cout << "当前工程运行状态:" << program_status << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 运行示教器工程 + exampleRunProgram(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script.cpp new file mode 100644 index 00000000..d557e27e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script.cpp @@ -0,0 +1,115 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/script.h" +#include +#include +#ifdef WIN32 +#include +#endif +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +using namespace std; + +/** + * 功能: 运行本地脚本程序 + * 步骤: + * 第一步: 连接 RPC 服务、机械臂登录 + * 第二步: 连接 SCRIPT 服务、机械臂登录 + * 第三步: 输入脚本文件名或者脚本绝对路径 + * 情况1:当lua脚本被拷贝到可执行程序所在路径(build/bin)下时,则输入脚本文件名 + * 情况2:当lua脚本没有在可执行程序所在路径(build/bin)下时,则输入脚本的绝对路径 + * 第四步: 读取文件,运行脚本程序。如果打开文件失败,则退出程序。 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + auto script = std::make_shared(); + // 接口调用: 连接到 SCRIPT 服务 + script->connect(LOCAL_IP, 30002); + // 接口调用: 登录 + script->login("aubo", "123456"); + + // 输入脚本文件名 + char file_name[20]; + cin >> file_name; + + // 打开文件 + ifstream file; + file.open(file_name); + // 如果打开文件失败,则退出程序 + if (!file) { + cout << "open fail." << endl; + exit(1); + } + + // 读取并打印脚本文件中的内容 + std::string str_all; + while (!file.eof()) { + std::string str_line; + getline(file, str_line); + str_all += str_line; + str_all += "\n"; + } + + // 在字符串中查找 "\r\n\r\n" + size_t found = str_all.find("\r\n\r\n"); + + // 循环查找并替换所有匹配项 + while (found != std::string::npos) { + str_all.replace(found, 4, "\n"); // 4 是 "\r\n\r\n" 的长度 + found = str_all.find("\r\n\r\n", found + 1); + } + str_all += "\r\n\r\n"; + cout << "脚本内容:" << endl << str_all << endl; + file.close(); + + // 接口调用: 发送本地的脚本内容到控制器 + script->sendString(str_all); + + // 等待规划器启动 + int i = 0; + while (1) { + if (i++ > 5) { + std::cerr << "规划器启动失败" << std::endl; + return -1; + } + if (rpc->getRuntimeMachine()->getStatus() == RuntimeState::Running) { + std::cout << "规划器启动成功,开始执行脚本" << std::endl; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待规划器停止 + while (1) { + if (rpc->getRuntimeMachine()->getStatus() == RuntimeState::Stopped) { + std::cout << "规划器停止,脚本执行完成" << std::endl; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 接口调用: 退出登录 + rpc->logout(); + // 接口调用: 断开连接 + rpc->disconnect(); + + // 接口调用: 退出登录 + script->logout(); + // 接口调用: 断开连接 + script->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script2.cpp new file mode 100644 index 00000000..11b26da2 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script2.cpp @@ -0,0 +1,96 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/script.h" +#include +#include +#ifdef WIN32 +#include +#endif +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +using namespace std; + +/** + * 功能: 运行本地脚本程序 + * 步骤: + * 第一步: 连接 RPC 服务、机械臂登录 + * 第二步: 连接 SCRIPT 服务、机械臂登录 + * 第三步: 输入脚本文件名或者脚本绝对路径 + * 情况1:当lua脚本被拷贝到可执行程序所在路径(build/bin)下时,则输入脚本文件名 + * 情况2:当lua脚本没有在可执行程序所在路径(build/bin)下时,则输入脚本的绝对路径 + * 第四步: 读取文件,运行脚本程序。如果打开文件失败,则退出程序。 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc->login("aubo", "123456"); + + auto script = std::make_shared(); + // 接口调用: 连接到 SCRIPT 服务 + script->connect(LOCAL_IP, 30002); + // 接口调用: 登录 + script->login("aubo", "123456"); + + // 输入脚本文件名 + char file_name[20]; + cin >> file_name; + + // 打开文件 + ifstream file; + file.open(file_name); + // 如果打开文件失败,则退出程序 + if (!file) { + cout << "open fail." << endl; + exit(1); + } + + file.close(); + + // 接口调用: 发送本地的脚本文件到控制器 + script->sendFile(file_name); + + // 等待规划器启动 + int i = 0; + while (1) { + if (i++ > 5) { + std::cerr << "规划器启动失败" << std::endl; + return -1; + } + if (rpc->getRuntimeMachine()->getStatus() == RuntimeState::Running) { + std::cout << "规划器启动成功,开始执行脚本" << std::endl; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待规划器停止 + while (1) { + if (rpc->getRuntimeMachine()->getStatus() == RuntimeState::Stopped) { + std::cout << "规划器停止,脚本执行完成" << std::endl; + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 接口调用: 退出登录 + rpc->logout(); + // 接口调用: 断开连接 + rpc->disconnect(); + + // 接口调用: 退出登录 + script->logout(); + // 接口调用: 断开连接 + script->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script_uds.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script_uds.cpp new file mode 100644 index 00000000..0aa62941 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_script_uds.cpp @@ -0,0 +1,71 @@ +#include +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/script.h" +#ifdef WIN32 +#include +#endif +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; +using namespace std; + +/** + * 功能: 运行脚本程序 + * 步骤: + * 第一步: 连接 SCRIPT 服务、机械臂登录 + * 第二步: 输入脚本文件名 + * 第三步: 读取文件,运行脚本程序。如果打开文件失败,则退出程序。 + */ +// 本示例程序需要发送一个可运行的脚本到arcs控制器,example/c++中test_io.lua文件是提供的一个脚本,运行程序前先将test_io.lua拷贝到可执行程序所在路径,然后运行example_script可执行程序,输入lua脚本名字(test_io.lua) +// 运行前请注意机械臂周围无障碍物并且安全,遇到紧急情况按下急停按钮 + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto script = std::make_shared(1); + // 接口调用: 连接到 SCRIPT 服务 + script->connect(); + // 接口调用: 登录 + script->login("aubo", "123456"); + + // 输入脚本文件名 + char file_name[20]; + cin >> file_name; + + // 打开文件 + ifstream file; + file.open(file_name); + // 如果打开文件失败,则退出程序 + if (!file) { + cout << "open fail." << endl; + exit(1); + } + + // 读取并打印脚本文件中的内容 + std::string str_all; + while (!file.eof()) { + std::string str_line; + getline(file, str_line); + str_all += str_line; + str_all += "\n"; + } + str_all += "\r\n\r\n"; + cout << "脚本内容:" << endl << str_all << endl; + file.close(); + + // 发送脚本内容到控制器 + script->sendString(str_all); + + // 增加阻塞来保证执行完脚本 + while (1) { + std::this_thread::sleep_for(std::chrono::seconds(1)); + } + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_serial.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_serial.cpp new file mode 100644 index 00000000..dca9f97c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_serial.cpp @@ -0,0 +1,285 @@ +#include "aubo_sdk/rpc.h" +#include "aubo/serial.h" +#include "aubo/register_control.h" +#include +#include +#include + +#define MAX_RETRIES 10 + +#define LOCAL_IP "127.0.0.1" + +#define SERIAL_PORT "/dev/ttyS0" +#define SERIAL_BAUD 9600 +#define SERIAL_STOP_BITS 1.0 +#define SERIAL_EVEN 0 +#define SERIAL_NAME "test_com" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +template +void printVec(const std::vector ¶m, const std::string &name) +{ + std::cout << "@:" << name << std::endl; + for (size_t i = 0; i < param.size(); i++) { + std::cout << param.at(i) << ","; + } + std::cout << std::endl; +} + +//串口打开 +bool testSerialOpen(RpcClientPtr rpc_cli) +{ + std::string device = SERIAL_PORT; + int baud = SERIAL_BAUD; + float stop_bits = SERIAL_STOP_BITS; + int even = SERIAL_EVEN; + int open_result = rpc_cli->getSerial()->serialOpen(device, baud, stop_bits, + even, SERIAL_NAME); + if (open_result == 0) { + std::cout << "Serial port opened successfully." << std::endl; + return true; + } else if (open_result == -13) { + std::cout << "Serial port already exists." << std::endl; + return true; + } else { + std::cout << "Failed to open serial port, ret: " << open_result + << std::endl; + return false; + } +} + +//发送字节 +void testSerialSendByte(RpcClientPtr rpc_cli) +{ + char send_byte = 'A'; + int send_byte_result = + rpc_cli->getSerial()->serialSendByte(send_byte, SERIAL_NAME); + if (send_byte_result == 0) { + std::cout << "Byte sent successfully: " << send_byte << std::endl; + } else { + std::cout << "Failed to send byte, ret: " << send_byte_result + << std::endl; + } +} + +//发送整数 +void testSerialSendInt(RpcClientPtr rpc_cli) +{ + int send_int = 9; + int send_int_result = + rpc_cli->getSerial()->serialSendInt(send_int, SERIAL_NAME); + if (send_int_result == 0) { + std::cout << "Integer sent successfully: " << send_int << std::endl; + } else { + std::cout << "Failed to send integer, ret: " << send_int_result + << std::endl; + } +} + +//发送字符串 +void testSerialSendString(RpcClientPtr rpc_cli) +{ + std::string send_string = "Hello, Serial!"; + int send_string_result = + rpc_cli->getSerial()->serialSendString(send_string, SERIAL_NAME); + + if (send_string_result == 0) { + std::cout << "String sent successfully: " << send_string << std::endl; + } else { + std::cout << "Failed to send string, ret: " << send_string_result + << std::endl; + } +} + +// 发送所有字符串(字符数组) +void testSerialSendAllString(RpcClientPtr rpc_cli) +{ + // 如果需要校验,则设置为true,会自动计算CRC校验和并附加到数据末尾(大端序) + bool is_check = false; // 是否校验 + + // 对应组包后的完整字符数组: + // ['H','e','l','l','o',' ','W','o','r','l','d','!'] + std::vector send_data = { 'H', 'e', 'l', 'l', 'o', ' ', + 'W', 'o', 'r', 'l', 'd', '!' }; + + int send_all_string_result = rpc_cli->getSerial()->serialSendAllString( + is_check, send_data, SERIAL_NAME); + + if (send_all_string_result == 0) { + std::cout << "All string sent successfully. Data: "; + for (char c : send_data) { + std::cout << c; + } + std::cout << std::endl; + } else { + std::cout << "Failed to send all string, ret: " + << send_all_string_result << std::endl; + } +} + +// 发送带换行符的字符串 +void testSerialSendLine(RpcClientPtr rpc_cli) +{ + // 对应组包后的完整字符数组: + // ['T','h','i','s',' ','i','s',' ','a',' ','l','i','n','e',' ', + // 'w','i','t','h',' ','n','e','w','l','i','n','e','\r','\n'] + std::string send_line = "This is a line with newline"; + + int send_line_result = + rpc_cli->getSerial()->serialSendLine(send_line, SERIAL_NAME); + + if (send_line_result == 0) { + std::cout << "Line sent successfully: " << send_line + << " (with newline)" << std::endl; + } else { + std::cout << "Failed to send line, ret: " << send_line_result + << std::endl; + } +} + +//读取字节 +void testSerialReadByte(RpcClientPtr rpc_cli) +{ + std::string read_byte_var = "read_byte_var"; + int read_byte_result = -1; + int i = MAX_RETRIES; + while (i--) { + read_byte_result = + rpc_cli->getSerial()->serialReadByte(read_byte_var, SERIAL_NAME); + + if (read_byte_result == 0) { + auto value = + rpc_cli->getRegisterControl()->getInt32(read_byte_var, 0); + + std::cout << "serialReadByte --> value: " << value << std::endl; + std::cout << "Byte read successfully. " << std::endl; + + break; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); + } + + if (read_byte_result < 0) { + std::cout << "Failed to read byte, ret: " << read_byte_result + << std::endl; + } +} + +//读取字节列表 +void testSerialReadByteList(RpcClientPtr rpc_cli) +{ + int number = 5; + std::string read_byte_list_var = "read_byte_list_var"; + + std::vector default_value(0); + int read_byte_list_result = -1; + int i = MAX_RETRIES; + while (i--) { + read_byte_list_result = rpc_cli->getSerial()->serialReadByteList( + number, read_byte_list_var, SERIAL_NAME); + + if (read_byte_list_result == 0) { + auto value = rpc_cli->getRegisterControl()->getVecChar( + read_byte_list_var, default_value); + + std::cout << "serialReadByteList --> value: " << std::endl; + printVec(value, "value"); + std::cout << "Byte list read successfully." << std::endl; + break; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); + } + + if (read_byte_list_result < 0) { + std::cout << "Failed to read byte list, ret: " << read_byte_list_result + << std::endl; + } +} + +//读取字符串 +void testSerialReadString(RpcClientPtr rpc_cli) +{ + std::string read_string_var = "read_string_var"; + + std::string prefix = ""; // 定义要读取数据的开始标识 + std::string suffix = "\n"; // 定义要读取数据的结束标识 + bool interpret_escape = false; + + std::string default_value = ""; + int read_string_result = -1; + int i = MAX_RETRIES; + while (i--) { + read_string_result = rpc_cli->getSerial()->serialReadString( + read_string_var, SERIAL_NAME, prefix, suffix, interpret_escape); + + if (read_string_result == 0) { + auto value = rpc_cli->getRegisterControl()->getString( + read_string_var, default_value); + + std::cout << "testSerialReadString --> value: " << value + << std::endl; + + std::cout << "String read successfully." << std::endl; + break; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); + } + + if (read_string_result < 0) { + std::cout << "Failed to read string, ret: " << read_string_result + << std::endl; + } +} + +//串口关闭 +void testSerialClose(RpcClientPtr rpc_cli) +{ + int close_result = rpc_cli->getSerial()->serialClose(SERIAL_NAME); + if (close_result == 0) { + std::cout << "Serial port closed successfully." << std::endl; + } else { + std::cout << "Failed to close serial port, ret: " << close_result + << std::endl; + } +} + +int main(int argc, char **argv) +{ + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(3000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 打开串口 + if (!testSerialOpen(rpc_cli)) { + return 1; + } + + testSerialSendByte(rpc_cli); + // testSerialSendInt(rpc_cli); + // testSerialSendString(rpc_cli); + // testSerialSendAllString(rpc_cli); + // testSerialSendLine(rpc_cli); + + // testSerialReadByte(rpc_cli); + // testSerialReadByteList(rpc_cli); + // testSerialReadString(rpc_cli); + + //关闭串口 + testSerialClose(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servo_cartesian.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servo_cartesian.cpp new file mode 100644 index 00000000..95dc0833 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servo_cartesian.cpp @@ -0,0 +1,315 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +// 示例1:采用 servoCartesian 跟踪一个轨迹,目标点下发时间间隔 10ms +int exampleServoCartesian1(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + std::cout << "轨迹文件中的路点数量为: " << traj_sz << std::endl; + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.8); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + robot_interface->getRobotConfig()->setTcpOffset(offset); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启 servo 模式 + robot_interface->getMotionControl()->setServoMode(true); + + // 等待进入 servo 模式 + int i = 0; + while (!robot_interface->getMotionControl()->isServoModeEnabled()) { + if (i++ > 10) { + std::cout + << "Servo 模式使能失败! 当前的 Servo 模式是 " + << robot_interface->getMotionControl()->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + for (size_t i = 1; i < traj.size(); i++) { + // 接口调用: 正解 + auto fk_result = + robot_interface->getRobotAlgorithm()->forwardKinematics(traj[i]); + // 接口调用: 笛卡尔空间伺服运动 + robot_interface->getMotionControl()->servoCartesian( + std::get<0>(fk_result), 0.0, 0.0, 10, 0.0, 0.0); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + // 等待运动结束 + while (!cli->getRobotInterface(robot_name)->getRobotState()->isSteady()) { + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + std::cout << "servoCartesian 运动结束" << std::endl; + + // 接口调用: 关闭 servo 模式 + cli->getRobotInterface(robot_name)->getMotionControl()->setServoMode(false); + + // 等待结束 servo 模式 + while (robot_interface->getMotionControl()->isServoModeEnabled()) { + if (i++ > 5) { + std::cout + << "Servo 模式失能失败! 当前的 Servo 模式是 " + << robot_interface->getMotionControl()->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + return 0; +} + +// 示例2:通过 servoCartesian 控制机械臂向两个目标点移动 +int exampleServoCartesian2(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + robot_interface->getRobotConfig()->setTcpOffset(offset); + + // 关节角,单位: 弧度 + std::vector joint_angle = { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + + // 接口调用: 关节运动 + robot_interface->getMotionControl()->moveJoint( + joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到初始位置成功" << std::endl; + } else { + std::cout << "关节运动到初始位置失败" << std::endl; + } + + // 接口调用: 开启servo模式 + robot_interface->getMotionControl()->setServoMode(true); + + // 等待进入 servo 模式 + int i = 0; + while (!robot_interface->getMotionControl()->isServoModeEnabled()) { + if (i++ > 5) { + std::cout << "Servo 模式使能失败! 当前servo状态为 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + std::vector q1 = { -120.0 * (M_PI / 180), -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) }; + std::cout << "向第一个目标点运动" << std::endl; + + // 接口调用: 正解 + auto fk_result1 = + robot_interface->getRobotAlgorithm()->forwardKinematics(q1); + + // 接口调用: 笛卡尔空间伺服运动 + robot_interface->getMotionControl()->servoCartesian(std::get<0>(fk_result1), + 0.0, 0.0, 10, 0.0, 0.0); + + std::this_thread::sleep_for(std::chrono::seconds(3)); + + std::vector q2 = { 10.0 * (M_PI / 180), -15.0 * (M_PI / 180), + 90.0 * (M_PI / 180), 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) }; + std::cout << "向第二个目标点运动" << std::endl; + + // 接口调用: 正解 + auto fk_result2 = + robot_interface->getRobotAlgorithm()->forwardKinematics(q2); + + std::vector pose2 = std::get<0>(fk_result2); + + // 接口调用: 笛卡尔空间伺服运动 + robot_interface->getMotionControl()->servoCartesian(std::get<0>(fk_result2), + 0.0, 0.0, 10, 0.0, 0.0); + + // 等待运动结束 + while (!cli->getRobotInterface(robot_name)->getRobotState()->isSteady()) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + std::cout << "servo cartesian 运动结束" << std::endl; + + // 关闭servo模式 + robot_interface->getMotionControl()->setServoMode(false); + + // 等待结束 servo 模式 + i = 0; + while (robot_interface->getMotionControl()->isServoModeEnabled()) { + if (i++ > 5) { + std::cout + << "Servo 模式失能失败! 当前的 Servo 模式是 " + << robot_interface->getMotionControl()->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +#define LOCAL_IP "127.0.0.1" + +/** + * servoCartesian 功能使用步骤: + * 1、采用实时系统测试 servoCartesian 功能 + * 2、孤立一个 CPU,保证该 CPU 没有其他任务 + * 3、将该进程设置为实时进程,优先级设置为最大 + * 4、绑定 CPU,将该实时进程绑定到第二步孤立的 CPU 上 + */ +int main(void) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif +#ifndef _WIN32 + // 实时优先级最大值、最小值 + int sched_max = sched_get_priority_max(SCHED_FIFO); + + // 设置实时调度策略及优先级 + struct sched_param sParam; + sParam.sched_priority = sched_max; + sched_setscheduler(0, SCHED_FIFO, &sParam); + auto i_schedFlag = sched_getscheduler(0); + printf("设置调度策略 = [%d]\n", i_schedFlag); + + // 绑定CPU + cpu_set_t cpuset; + CPU_ZERO(&cpuset); + CPU_SET(1, &cpuset); + + // bind process to processor 0 + if (sched_setaffinity(0, sizeof(cpuset), &cpuset) < 0) { + perror("Sched_setaffinity fail!"); + } +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // // 示例1:采用 servoCartesian 跟踪一个轨迹,目标点下发时间间隔 10ms + // exampleServoCartesian1(rpc_cli); + + // 示例2:通过 servoCartesian 控制机械臂向两个目标点移动 + exampleServoCartesian2(rpc_cli); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj.cpp new file mode 100644 index 00000000..d45aa998 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj.cpp @@ -0,0 +1,235 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include "aubo_sdk/script.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +const char *SERVOJ_SCRIPT = R"(local aubo = require('aubo') + local sched = sched or aubo.sched + local math = aubo.math or math + local sync = sched.sync +return function(api) + local names = api:getRobotNames() + robot = api:getRobotInterface(names[1]) + local function servoj(...) + return robot:getMotionControl():servoJoint(...) + end + local function get_target() + local target_q = robot:getRobotState():getJointPositions() + for i=1,6 do + target_q[i] = api:getRegisterControl():getDoubleInput(i-1) + end + return target_q + end + + local running = true + robot:getMotionControl():setServoMode(true) + api:getRegisterControl():setInt32Input(0, 1) + while running do + local flag = api:getRegisterControl():getInt32Input(0) + if flag == 6 then + servoj(get_target(), 0.0, 0.0, 0.005, 0.0, 0.0) + elseif flag == -1 then + running = false + end + sync() + end + while robot:getRobotState():isSteady() == false do + end + -- 当机械臂在运动时,setServoMode会失败 + robot:getMotionControl():setServoMode(false) +end + + +)"; + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + auto script_cli = std::make_shared(); + // 接口调用: 连接到 SCRIPT 服务 + script_cli->connect(LOCAL_IP, 30002); + // 接口调用: 登录 + script_cli->login("aubo", "123456"); + + // 接口调用: 设置话题 + int chanel_out = rtde_cli->setTopic( + true, + { "input_int_registers_0", "input_double_registers_0", + "input_double_registers_1", "input_double_registers_2", + "input_double_registers_3", "input_double_registers_4", + "input_double_registers_5" }, + 200, 0); + + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(traj[0], 30 * (M_PI / 180), 30 * (M_PI / 180), 0., 0.); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 执行本地脚本 + script_cli->sendString(SERVOJ_SCRIPT); + + size_t i = 1; + while (1) { + // 接口调用: 发布话题 + rtde_cli->publish(chanel_out, [&](OutputBuilder &ob) { + ob.push(6); + ob.push(traj[i][0]); + ob.push(traj[i][1]); + ob.push(traj[i][2]); + ob.push(traj[i][3]); + ob.push(traj[i][4]); + ob.push(traj[i][5]); + std::cout << i << ": " << traj[i] << std::endl; + i++; + }); + + if (i == traj_sz) { + // 接口调用: 发布话题 + rtde_cli->publish(chanel_out, [&](OutputBuilder &ob) { + std::cout << i << ": end" << std::endl; + ob.push(-1); + ob.push(0); + ob.push(0); + ob.push(0); + ob.push(0); + ob.push(0); + ob.push(0); + i++; + }); + break; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 阻塞已保证执行完脚本中的setServoMode(false)来退出伺服模式 + while (robot_interface->getMotionControl()->isServoModeEnabled() == true) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + std::cout << "servoj运动结束" << std::endl; + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, chanel_out); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + // 接口调用: RTDE 退出登录 + rtde_cli->logout(); + // 接口调用: RTDE 断开连接 + rtde_cli->disconnect(); + // 接口调用: SCRIPT 退出登录 + script_cli->logout(); + // 接口调用: SCRIPT 断开连接 + script_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj2.cpp new file mode 100644 index 00000000..41e66baf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj2.cpp @@ -0,0 +1,560 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +int waitServoJointComplete(RobotInterfacePtr impl, int timeout_ms = 10000) +{ + auto start_time = std::chrono::steady_clock::now(); + + while (impl->getMotionControl()->getMotionLeftTime(0) != 0) { + auto current_time = std::chrono::steady_clock::now(); + auto elapsed_ms = std::chrono::duration_cast( + current_time - start_time) + .count(); + + if (elapsed_ms >= timeout_ms) { + std::cout << "Warning: WaitServoJointComplete timeout after " + << elapsed_ms << " ms" << std::endl; + return 1; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + while (!impl->getRobotState()->isSteady()) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +/** + * 测试1: + * 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms,截断式,每次更新路点后不保证经过上个路点 + */ +int exampleServoj1(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启 servo 模式 + cli->getRobotInterface(robot_name)->getMotionControl()->setServoMode(true); + + // 等待进入 servo 模式 + int i = 0; + while (!cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled()) { + if (i++ > 20) { + std::cout << "Servo 模式使能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + for (size_t i = 1; i < traj.size(); i++) { + // 接口调用: 关节伺服运动 + + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJoint(traj[i], 0.1, 0.2, 0.01, 0.1, 200) == 2) { + // 缓存满了,需要重新下发 + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + std::cout << "Buffer is full,i: " << i << std::endl; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待运动结束 + int wait_servo = waitServoJointComplete(robot_interface); + + if (wait_servo == 0) { + std::cout << "Servoj 运动结束" << std::endl; + } + + // 接口调用: 关闭 servo 模式 + cli->getRobotInterface(robot_name)->getMotionControl()->setServoMode(false); + + // 等待结束 servo 模式 + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled()) { + if (i++ > 20) { + std::cout << "Servo 模式失能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->isServoModeEnabled() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +/** + * 测试2: 采用servoj mode 2 跟踪一个轨迹,目标点下发时间间隔5ms + */ +int exampleServoj2(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启 servo 模式 2 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(2); + + // 等待进入 servo 模式 2 + int i = 0; + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 2) { + if (i++ > 50) { + std::cout << "Servo 模式 2 使能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + for (size_t i = 1; i < traj.size(); i++) { + // 接口调用: 关节伺服运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJoint(traj[i], 0.1, 0.2, 0.1, 0.1, 200); + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待运动结束 + int wait_servo = waitServoJointComplete(robot_interface); + + if (wait_servo == 0) { + std::cout << "Servoj 运动结束" << std::endl; + } + + // 接口调用: 关闭 servo 模式 2 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(0); + + // 等待结束 servo 模式 2 + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 0) { + if (i++ > 50) { + std::cout << "Servo 模式 2 失能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +/** + * 测试3: + * 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms, 路点必达式 + */ +int exampleServoj3(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启 servo 模式 5 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(5); + + // 等待进入 servo 模式 + int i = 0; + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 5) { + if (i++ > 20) { + std::cout << "Servo 模式使能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + for (size_t i = 1; i < traj.size(); i++) { + // 接口调用: 关节伺服运动 + + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJoint(traj[i], 0.1, 0.2, 0.01, 0.1, 200) == 2) { + // 缓存满了,需要重新下发 + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + std::cout << "Buffer is full,i: " << i << std::endl; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待运动结束 + int wait_servo = waitServoJointComplete(robot_interface); + + if (wait_servo == 0) { + std::cout << "Servoj 运动结束" << std::endl; + } + + // 接口调用: 关闭 servo 模式 5 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(0); + + // 等待结束 servo 模式5 + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 0) { + if (i++ > 20) { + std::cout << "Servo 模式失能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +/** + * 测试4: 采用 servoj mode 3 跟踪一段轨迹,透传模式(缓存) + */ +int exampleServoj4(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.6); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 开启 servo 模式 3 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(3); + + // 等待进入 servo 模式 3 + int retry_count = 0; + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 3) { + if (retry_count++ > 50) { + std::cout << "Servo 模式 3 使能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + for (size_t i = 1; i < traj.size(); i++) { + // 接口调用: 关节伺服运动 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJoint(traj[i], 0.1, 0.2, 0.02, 0.1, 200); + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待运动结束 + int wait_servo = waitServoJointComplete(robot_interface); + + if (wait_servo == 0) { + std::cout << "Servoj 运动结束" << std::endl; + } + + // 接口调用: 关闭 servo 模式 3 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(0); + + // 等待结束 servo 模式 3 + retry_count = 0; + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 0) { + if (retry_count++ > 50) { + std::cout << "Servo 模式 3 失能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +#define LOCAL_IP "127.0.0.1" +/** + * servoj功能使用步骤: + * 1、采用实时系统测试servoj功能 + * 2、孤立一个CPU,保证该CPU没有其他任务 + * 3、将该进程设置为实时进程,优先级设置为最大 + * 4、绑定CPU,将该实时进程绑定到第二步孤立的CPU上 + */ +int main(void) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif +#ifndef _WIN32 + // 实时优先级最大值、最小值 + int sched_max = sched_get_priority_max(SCHED_FIFO); + + // 设置实时调度策略及优先级 + struct sched_param sParam; + sParam.sched_priority = sched_max; + sched_setscheduler(0, SCHED_FIFO, &sParam); + auto i_schedFlag = sched_getscheduler(0); + printf("设置调度策略 = [%d]\n", i_schedFlag); + + // 绑定CPU + cpu_set_t cpuset; + CPU_ZERO(&cpuset); + CPU_SET(1, &cpuset); + + // bind process to processor 0 + if (sched_setaffinity(0, sizeof(cpuset), &cpuset) < 0) { + perror("Sched_setaffinity fail!"); + } +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + exampleServoj1(rpc_cli); + // exampleServoj2(rpc_cli); + // exampleServoj3(rpc_cli); + // exampleServoj4(rpc_cli); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj3.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj3.cpp new file mode 100644 index 00000000..db024c80 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_servoj3.cpp @@ -0,0 +1,308 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#define EMBEDDED + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +int waitServoJointComplete(RobotInterfacePtr impl, int timeout_ms = 10000) +{ + auto start_time = std::chrono::steady_clock::now(); + + while (impl->getMotionControl()->getMotionLeftTime(0) != 0) { + auto current_time = std::chrono::steady_clock::now(); + auto elapsed_ms = std::chrono::duration_cast( + current_time - start_time) + .count(); + + if (elapsed_ms >= timeout_ms) { + std::cout << "Warning: WaitServoJointComplete timeout after " + << elapsed_ms << " ms" << std::endl; + return 1; + } + + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + while (!impl->getRobotState()->isSteady()) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + return 0; +} + +/** + * 测试1: + * 开启力控 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms + */ +int exampleServoj1(RpcClientPtr cli) +{ + auto robot_name = cli->getRobotNames().front(); +#ifdef EMBEDDED + // 内置传感器 + std::vector sensor_pose = { 0, 0, 0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("embedded"); +#else + // 外置坤维传感器 + std::vector sensor_pose = { 0, 0, 0.047, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->selectTcpForceSensor("kw_ftsensor"); +#endif + + // 设置传感器安装位姿 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceSensorPose(sensor_pose); + // 设置TCP偏移 + std::vector tcp_pose = { 0, 0, 0.0, 0, 0, 0 }; + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpOffset(tcp_pose); + + double mass = 0.0; + std::vector com = { 0.0, 0.0, 0.0 }; + // 设置负载 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setPayload(mass, com, { 0. }, { 0. }); + // 力传感器偏移需要根据实际情况设置 + std::vector force_offset = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getTcpForceSensors(); + + // 设置力传感器偏移 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setTcpForceOffset(force_offset); + + std::vector admittance_m = { 25.0, 25.0, 25.0, 2.0, 2.0, 2.0 }; + std::vector admittance_d = { + 300.0, 300.0, 300.0, 12.0, 12.0, 12.0 + }; + std::vector admittance_k = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + + cli->getRobotInterface("rob1")->getForceControl()->setDynamicModel( + admittance_m, admittance_d, admittance_k); + + // 力控开启方向 + std::vector compliance = { false, false, true, false, false, false }; + // 目标力 + std::vector target_wrench{ 0.0, 0.0, 5.0, 0.0, 0.0, 0.0 }; + std::vector speed_limits(6, 2.0); + + std::vector feature = { 0, 0, 0, 0, 0, 0 }; + TaskFrameType frame_type = TaskFrameType::TOOL_FORCE; + cli->getRobotInterface(robot_name) + ->getForceControl() + ->setTargetForce(feature, compliance, target_wrench, speed_limits, + frame_type); + + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[99], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + robot_interface->getForceControl()->fcEnable(); + + // 接口调用: 开启 servo 模式 7 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(7); + // 等待进入 servo 模式 + int i = 0; + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 7) { + if (i++ > 20) { + std::cout << "Servo 模式使能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(7)); + } + + for (size_t i = 100; i < traj.size(); i++) { + // 接口调用: 关节伺服运动 + + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->servoJoint(traj[i], 0.1, 0.2, 0.05, 0.1, 200) == 2) { + // 缓存满了,需要重新下发 + // std::this_thread::sleep_for(std::chrono::milliseconds(5)); + std::cout << "Buffer is full,i: " << i << std::endl; + } + + // std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + // 等待运动结束 + int wait_servo = waitServoJointComplete(robot_interface); + + if (wait_servo == 0) { + std::cout << "Servoj 运动结束" << std::endl; + } + + // 接口调用: 关闭 servo 模式 7 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->setServoModeSelect(0); + + // 等待结束 servo 模式7 + while (cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() != 0) { + if (i++ > 20) { + std::cout << "Servo 模式失能失败! 当前的 Servo 模式是 " + << cli->getRobotInterface(robot_name) + ->getMotionControl() + ->getServoModeSelect() + << std::endl; + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + cli->getRobotInterface("rob1")->getForceControl()->fcDisable(); + + return 0; +} + +#define LOCAL_IP "192.168.3.10" +/** + * servoj功能使用步骤: + * 1、采用实时系统测试servoj功能 + * 2、孤立一个CPU,保证该CPU没有其他任务 + * 3、将该进程设置为实时进程,优先级设置为最大 + * 4、绑定CPU,将该实时进程绑定到第二步孤立的CPU上 + */ +int main(void) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif +#ifndef _WIN32 + // 实时优先级最大值、最小值 + int sched_max = sched_get_priority_max(SCHED_FIFO); + + // 设置实时调度策略及优先级 + struct sched_param sParam; + sParam.sched_priority = sched_max; + sched_setscheduler(0, SCHED_FIFO, &sParam); + auto i_schedFlag = sched_getscheduler(0); + printf("设置调度策略 = [%d]\n", i_schedFlag); + + // 绑定CPU + cpu_set_t cpuset; + CPU_ZERO(&cpuset); + CPU_SET(1, &cpuset); + + // bind process to processor 0 + if (sched_setaffinity(0, sizeof(cpuset), &cpuset) < 0) { + perror("Sched_setaffinity fail!"); + } +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + exampleServoj1(rpc_cli); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_set_log_handler.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_set_log_handler.cpp new file mode 100644 index 00000000..8a4952ba --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_set_log_handler.cpp @@ -0,0 +1,44 @@ +#include "aubo_sdk/rpc.h" + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#define LOCAL_IP "127.0.0.1" + +void example_read_log(RpcClientPtr cli) { + // 接口调用: 重新日志系统的格式 + cli->setLogHandler([](int level, const char *filename, int line, + const std::string &message) { + std::cout << "level: " << level << std::endl; + std::cout << "filename: " << filename << std::endl; + std::cout << "line: " << line << std::endl; + std::cout << "message: " << message << std::endl; + }); +} +/** + * 功能: 自定义日志的格式 + * 步骤: + * 第一步: 自定义日志的格式。 + * 注意: 要在连接服务器之前,调用 setLogHandler + * 函数。否则,自定义的日志格式不会生效。 + * 第二步: 连接 RPC 服务、机械臂登录 + * 第三步: 退出登录、断开 RPC 服务 + */ +int main() { + // RPC 客户端对象 + auto rpc_cli = std::make_shared(); + // 自定义日志的格式 + example_read_log(rpc_cli); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_shutdown.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_shutdown.cpp new file mode 100644 index 00000000..fd3a6edd --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_shutdown.cpp @@ -0,0 +1,58 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::aubo_sdk; + +#define ip_local "127.0.0.1" + +void exampleShutdown1(RpcClientPtr cli) +{ + // 接口调用: 关机 + int ret = cli->shutdown(); + + std::this_thread::sleep_for(std::chrono::seconds(2)); + + std::cout << "ret = " << ret << std::endl; +} + +void exampleShutdown2(RpcClientPtr cli) +{ + // 接口调用: 获取机械臂的名称 + auto robot_name = cli->getRobotNames().front(); + + // 接口调用: 关机 + cli->getRobotInterface(robot_name) + ->getRobotConfig() + ->setHardwareCustomParameters("tp_shutdown = true"); +} + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(ip_local, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 示例1:通过shutdown接口来关机 + exampleShutdown1(rpc_cli); + + // 示例2:通过setHardwareCustomParameters接口来关机 + // exampleShutdown2(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline.cpp new file mode 100644 index 00000000..48fa66e5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline.cpp @@ -0,0 +1,226 @@ +#include +#include +#include +#include + +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include "trajectory_io.h" + +#ifdef WIN32 +#include +#endif +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 5; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 等待样条运动完成 +void waitMoveSplineFinished(RpcClientPtr impl) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + auto robot_interface = impl->getRobotInterface(robot_name); + + std::cout << "等待样条运动开始" << std::endl; + // 等待样条运动开始 + while (robot_interface->getMotionControl()->getExecId() == -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + std::cout << "样条运动开始" << std::endl; + + while (1) { + auto id = robot_interface->getMotionControl()->getExecId(); + if (id == -1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + std::cout << "样条运动结束" << std::endl; +} + +// 样条运动 +void exampleSpline(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/coffee_spline.txt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + std::vector joint_angle = traj[0]; + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveJoint(joint_angle, 80 * (M_PI / 180), 60 * (M_PI / 180), 0., 0.); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + std::cout << "添加轨迹文件中的路点" << std::endl; + // 接口调用: 添加轨迹文件中的路点 + for (int i = 1; i < (int)traj.size(); i++) { + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(traj[i], 1, 1, 0); + } + + // 接口调用: 当关节角参数传入为空时,结束路点添加。 + // 等待算法计算完成后,机械臂开始执行样条运动。 + // 所以,当添加的路点数量越多时,由于算法计算的耗时时间长, + // 机械臂可能不会立刻运动。 + cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline({}, 1, 1, 0.005); +} + +void printlog(int level, const char *source, int code, std::string content) +{ + static const char *level_names[] = { "Critical", "Error", "Warning", + "Info", "Debug", "BackTrace" }; + fprintf(stderr, "[%s] %s - %d %s\n", level_names[level], source, code, + content.c_str()); +} + +/** + * 功能: 关节空间的样条运动实现.txt文件中的离散轨迹 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 连接 RTDE 服务、登录 + * 第三步: RTDE 设置话题、订阅话题来打印error_stack中的日志信息 + * 第四步: 读取解析.txt轨迹文件 + * 第五步: 添加文件中的路点,做样条运动 + * 第六步: RTDE 退出登录、断开连接 + * 第七步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置 RTDE 话题 + int topic = rtde_cli->setTopic(false, { "R1_message" }, 200, 0); + if (topic < 0) { + std::cout << "设置话题失败!" << std::endl; + return -1; + } + + // 接口调用: 订阅话题 + rtde_cli->subscribe(topic, [](InputParser &parser) { + arcs::common_interface::RobotMsgVector msgs; + msgs = parser.popRobotMsgVector(); + for (size_t i = 0; i < msgs.size(); i++) { + auto &msg = msgs[i]; + std::string error_content = + arcs::error_stack::errorCode2Str(msg.code); + for (auto it : msg.args) { + auto pos = error_content.find("{}"); + if (pos != std::string::npos) { + error_content.replace(pos, 2, it); + } else { + break; + } + } + // 打印日志信息 + printlog(msg.level, msg.source.c_str(), msg.code, error_content); + } + }); + + // 样条运动 + exampleSpline(rpc_cli); + + // 等待样条运动完成 + waitMoveSplineFinished(rpc_cli); + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, topic); + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline2.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline2.cpp new file mode 100644 index 00000000..4bcb086b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_spline2.cpp @@ -0,0 +1,174 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl, int max_retry_count) { + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + std::cout << "exec_id: " << exec_id << std::endl; + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + std::cout << "exec_id: " << exec_id << std::endl; + } + + return 0; +} + +// 等待样条运动完成 +void waitMoveSplineFinished(RpcClientPtr impl) { + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + auto robot_interface = impl->getRobotInterface(robot_name); + + // 等待样条运动开始 + while (robot_interface->getMotionControl()->getExecId() == -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + std::cout << "样条运动开始" << std::endl; + + while (1) { + auto id = robot_interface->getMotionControl()->getExecId(); + if (id == -1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } +} + +// 样条运动 +void exampleMoveSpline(RpcClientPtr rpc_cli) + +{ + // 路点,用关节角来表示,单位: 弧度 + std::vector joint_angle1 = {0.0, + -15.0 * (M_PI / 180), + 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), + 90.0 * (M_PI / 180), + 0.0}; + + std::vector joint_angle2 = { + 19.25 * (M_PI / 180), -6.08 * (M_PI / 180), 78.87 * (M_PI / 180), + -5.05 * (M_PI / 180), 90.0 * (M_PI / 180), 19.25 * (M_PI / 180)}; + + std::vector joint_angle3 = { + 28.20 * (M_PI / 180), -12.87 * (M_PI / 180), 52.22 * (M_PI / 180), + -24.91 * (M_PI / 180), 90.0 * (M_PI / 180), 28.2 * (M_PI / 180)}; + + std::vector joint_angle4 = { + 38.20 * (M_PI / 180), -15.58 * (M_PI / 180), 58.16 * (M_PI / 180), + -16.25 * (M_PI / 180), 90.0 * (M_PI / 180), 38.20 * (M_PI / 180)}; + + std::vector joint_angle5 = { + 38.20 * (M_PI / 180), -15.73 * (M_PI / 180), 91.05 * (M_PI / 180), + 16.79 * (M_PI / 180), 90.0 * (M_PI / 180), 38.20 * (M_PI / 180)}; + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.8); + + std::cout << "添加第一个路点" << std::endl; + // 接口调用: 添加样条运动的第一个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(joint_angle1, 80 * (M_PI / 180), 60 * (M_PI / 180), 0); + + std::cout << "添加第二个路点" << std::endl; + // 接口调用: 添加样条运动的第二个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(joint_angle2, 80 * (M_PI / 180), 60 * (M_PI / 180), 0); + + std::cout << "添加第三个路点" << std::endl; + // 接口调用: 添加样条运动的第三个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(joint_angle3, 80 * (M_PI / 180), 60 * (M_PI / 180), 0); + + std::cout << "添加第四个路点" << std::endl; + // 接口调用: 添加样条运动的第四个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(joint_angle4, 80 * (M_PI / 180), 180 * (M_PI / 180), 0); + + std::cout << "添加第五个路点" << std::endl; + // 接口调用: 添加样条运动的第五个路点 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline(joint_angle5, 80 * (M_PI / 180), 60 * (M_PI / 180), 0); + + // 接口调用: 当关节角参数传入为空时,结束路点添加。 + // 等待算法计算完成后,机械臂开始执行样条运动。 + // 所以,当添加的路点数量越多时,由于算法计算的耗时时间长, + // 机械臂可能不会立刻运动。 + rpc_cli->getRobotInterface(robot_name) + ->getMotionControl() + ->moveSpline({}, 80 * (M_PI / 180), 60 * (M_PI / 180), 0.005); + + // 等待样条运动完成 + waitMoveSplineFinished(rpc_cli); + + std::cout << "样条运动结束" << std::endl; +} + +/** + * 功能: 机械臂做关节空间的样条运动 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 + * 第二步: 设置运动速度比率、以样条运动的方式依次经过5个离散路点 + * 第三步: RPC 退出登录、断开连接 + */ +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 样条运动 + exampleMoveSpline(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_stable_ik.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_stable_ik.cpp new file mode 100644 index 00000000..de78f2ae --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_stable_ik.cpp @@ -0,0 +1,445 @@ +#include "aubo_sdk/rpc.h" + +/* + * 功能:解决 TCP 位姿的欧拉角接近极限位置时,直接逆解后 moveJoint + * 容易选择到另一组等价姿态逆解而导致关节翻转的问题。 + * + * 示例默认只执行 safe 路径: + * 1. 获取当前关节角 reference_q,并以它作为逆解参考; + * 2. 对目标 TCP 位姿调用 stableIk(); + * 3. stableIk() 内部调用 inverseKinematics2(reference_q, pose); + * 4. inverseKinematics2 按 reference_q 的构型计算逆解,并选择同构型 + * 内关节变化最小的一组; + * 5. 使用选中的关节角执行 moveJoint。 + * + * 如果需要观察翻转对照,可将 RUN_UNSAFE_DEMO 改为 true。 + */ + +#include +#include +#include +#include +#include +#include + +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +constexpr double DEMO_MOVE_SPEED = 20 * (M_PI / 180); +constexpr double DEMO_MOVE_ACCELERATION = 20 * (M_PI / 180); +constexpr bool RUN_UNSAFE_DEMO = false; +constexpr double MIN_FLIP_DISTANCE_DEG = 60.0; +constexpr double MAX_JOINT_ABS_DEG = 350.0; + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitDone(RobotInterfacePtr robot) +{ + const int max_retry_count = 5; + int cnt = 0; + + int exec_id = robot->getMotionControl()->getExecId(); + + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = robot->getMotionControl()->getExecId(); + } + + while (robot->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +double jointGap(const std::vector &q1, const std::vector &q2) +{ + double gap = 0; + for (size_t i = 0; i < q1.size() && i < q2.size(); i++) { + const double diff = q1.at(i) - q2.at(i); + gap += diff * diff; + } + return gap; +} + +double jointGapDeg(const std::vector &q1, + const std::vector &q2) +{ + return std::sqrt(jointGap(q1, q2)) * 180 / M_PI; +} + +bool inLimit(const std::vector &q) +{ + for (auto value : q) { + if (std::abs(value * 180 / M_PI) > MAX_JOINT_ABS_DEG) { + return false; + } + } + return true; +} + +void showVec(const std::string &name, const std::vector &values) +{ + std::cout << name << ": ["; + for (size_t i = 0; i < values.size(); i++) { + std::cout << std::fixed << std::setprecision(6) << values.at(i); + if (i + 1 != values.size()) { + std::cout << ", "; + } + } + std::cout << "]" << std::endl; +} + +void showJoint(const std::string &name, const std::vector &q) +{ + std::cout << name << ": ["; + for (size_t i = 0; i < q.size(); i++) { + std::cout << std::fixed << std::setprecision(2) + << q.at(i) * 180 / M_PI; + if (i + 1 != q.size()) { + std::cout << ", "; + } + } + std::cout << "] deg" << std::endl; +} + +template +std::vector> allIk(RobotAlgorithmPtrT algorithm, + const std::vector &pose) +{ + auto result = algorithm->inverseKinematicsAll(pose); + auto solutions = std::get<0>(result); + auto ret = std::get<1>(result); + + if (ret != 0 || solutions.empty()) { + std::cout << "inverseKinematicsAll 失败,返回值: " << ret << std::endl; + return {}; + } + + return solutions; +} + +template +std::optional configOf(RobotAlgorithmPtrT algorithm, + const std::vector &q) +{ + auto result = algorithm->getRobotConfiguration(q); + auto config = std::get<0>(result); + auto ret = std::get<1>(result); + + if (ret != 0) { + return std::nullopt; + } + + return config; +} + +template +void showAllIk(RobotAlgorithmPtrT algorithm, const std::vector &pose, + const std::vector &reference_q) +{ + auto solutions = allIk(algorithm, pose); + std::cout << "\ninverseKinematicsAll 全部逆解,共 " << solutions.size() + << " 组" << std::endl; + for (size_t i = 0; i < solutions.size(); i++) { + const auto &q = solutions.at(i); + auto config = configOf(algorithm, q); + std::cout << " 解 " << i + 1; + if (config) { + std::cout << ",构型: " << *config; + } else { + std::cout << ",构型: 获取失败"; + } + std::cout << ",关节变化 " << std::fixed << std::setprecision(3) + << jointGapDeg(q, reference_q) << " deg" << std::endl; + showJoint(" 关节角", q); + } +} + +bool moveJ(RobotInterfacePtr robot, const std::vector &q, + const std::string &title) +{ + std::cout << title << std::endl; + int ret = robot->getMotionControl()->moveJoint( + q, DEMO_MOVE_ACCELERATION, DEMO_MOVE_SPEED, 0, 0); + if (ret != 0) { + std::cout << "moveJoint 下发失败,返回值: " << ret << std::endl; + return false; + } + + ret = waitDone(robot); + if (ret != 0) { + std::cout << title << "失败" << std::endl; + return false; + } + + std::cout << title << "成功" << std::endl; + return true; +} + +template +std::optional> badSeed( + RobotAlgorithmPtrT algorithm, const std::vector &pose, + const std::vector &reference_q, int reference_config) +{ + // unsafe 对照专用:构造一个错误分支上的 qnear。 + // 这里只用于演示普通 inverseKinematics 被错误 qnear 引导后可能翻转; + // 默认不会执行该路径。 + auto solutions = allIk(algorithm, pose); + if (solutions.empty()) { + return std::nullopt; + } + + std::vector> different_config_solutions; + std::vector> valid_solutions; + for (const auto &q : solutions) { + auto config = configOf(algorithm, q); + if (!config || !inLimit(q)) { + continue; + } + + valid_solutions.push_back(q); + if (*config != reference_config) { + different_config_solutions.push_back(q); + } + } + + if (valid_solutions.empty()) { + return std::nullopt; + } + + const auto &raw_candidates = different_config_solutions.empty() + ? valid_solutions + : different_config_solutions; + + std::optional> best_q; + double best_gap = std::numeric_limits::max(); + for (const auto &q : raw_candidates) { + const double gap = jointGapDeg(q, reference_q); + if (gap >= MIN_FLIP_DISTANCE_DEG && gap < best_gap) { + best_q = q; + best_gap = gap; + } + } + + if (!best_q) { + std::cout << "未找到角度合法且足够明显的错误 qnear" << std::endl; + } + + return best_q; +} + +template +std::optional> unsafeIk( + RobotAlgorithmPtrT algorithm, const std::vector &pose, + const std::vector &reference_q, int reference_config) +{ + // unsafe 对照专用:最终运动目标仍由普通 inverseKinematics 生成。 + auto seed = badSeed(algorithm, pose, reference_q, reference_config); + if (!seed) { + return std::nullopt; + } + + auto result = algorithm->inverseKinematics(*seed, pose); + auto q = std::get<0>(result); + auto ret = std::get<1>(result); + + if (ret != 0) { + std::cout << "unsafe inverseKinematics 失败,返回值: " << ret + << std::endl; + return std::nullopt; + } + + if (!inLimit(q)) { + std::cout << "unsafe 目标关节角超出演示限制,跳过该翻转解" + << std::endl; + return std::nullopt; + } + + const double gap = jointGapDeg(q, reference_q); + if (gap < MIN_FLIP_DISTANCE_DEG) { + std::cout << "普通 inverseKinematics 未选到明显翻转解,关节距离仅 " + << std::fixed << std::setprecision(3) << gap << " deg" + << std::endl; + return std::nullopt; + } + + return q; +} + +template +std::optional> stableIk( + RobotAlgorithmPtrT algorithm, const std::vector &pose, + const std::vector &reference_q) +{ + /* + * 面向 moveJoint 的防翻转逆解选解策略。 + * + * 这个函数是自包含的,用户可以直接复制使用,不依赖本文件中的 + * allIk/configOf/jointGap 等辅助函数。 + * + * 参数: + * - algorithm: robot->getRobotAlgorithm() 返回的对象 + * - pose: 目标 TCP 位姿,单位 m, rad + * - reference_q: 参考关节角,通常传当前关节角或上一段运动的目标关节角 + * + * 返回: + * - 成功:同构型且相对 reference_q 关节变化最小的逆解 + * - 失败:std::nullopt + * + * 选解步骤: + * 1. 将 reference_q 作为参考关节角传入 inverseKinematics2; + * 2. inverseKinematics2 按 reference_q 的构型计算逆解; + * 3. inverseKinematics2 在同构型逆解中选择相对 reference_q + * 关节变化最小的一组。 + */ + auto ik_result = algorithm->inverseKinematics2(reference_q, pose); + auto q = std::get<0>(ik_result); + auto ik_ret = std::get<1>(ik_result); + if (ik_ret != 0) { + std::cout << "inverseKinematics2 失败,返回值: " << ik_ret + << std::endl; + return std::nullopt; + } + if (q.size() != reference_q.size()) { + std::cout << "inverseKinematics2 返回关节数量异常: " << q.size() + << ",期望: " << reference_q.size() << std::endl; + return std::nullopt; + } + + std::cout << "stable_ik 选解结果" << std::endl; + std::cout << " inverseKinematics2 已按参考构型选择同构型最近解" + << std::endl; + std::cout << " 关节变化 " << std::fixed << std::setprecision(3) + << jointGapDeg(q, reference_q) << " deg" + << std::endl; + return q; +} + +void demo(RpcClientPtr rpc_cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + auto robot = rpc_cli->getRobotInterface(robot_name); + auto algorithm = robot->getRobotAlgorithm(); + auto motion = robot->getMotionControl(); + + // 接口调用: 设置机械臂的速度比率 + motion->setSpeedFraction(0.3); + + // 获取当前关节角和当前 TCP 位姿 + auto reference_q = robot->getRobotState()->getJointPositions(); + auto current_tcp_pose = robot->getRobotState()->getTcpPose(); + showJoint("当前关节角", reference_q); + auto reference_config_result = algorithm->getRobotConfiguration(reference_q); + auto reference_config = std::get<0>(reference_config_result); + auto reference_config_ret = std::get<1>(reference_config_result); + if (reference_config_ret != 0) { + std::cout << "获取参考点构型失败,返回值: " << reference_config_ret + << std::endl; + return; + } + std::cout << "参考点构型: " << reference_config << std::endl; + + // 目标 TCP 位姿,单位: m, rad + // 这里从当前 TCP 位姿做较明显的位置偏移。safe 和 unsafe 对照 + // 使用完全相同的目标 TCP,只改变选解策略。 + auto target_tcp_pose = current_tcp_pose; + target_tcp_pose.at(0) += 0.060; + target_tcp_pose.at(1) += 0.040; + target_tcp_pose.at(2) += 0.030; + showVec("目标 TCP 位姿", target_tcp_pose); + // 调试全部逆解时取消下一行注释。 + // showAllIk(algorithm, target_tcp_pose, reference_q); + + if (RUN_UNSAFE_DEMO) { + auto config_result = algorithm->getRobotConfiguration(reference_q); + auto current_config = std::get<0>(config_result); + auto config_ret = std::get<1>(config_result); + if (config_ret != 0) { + std::cout << "获取当前构型失败,返回值: " << config_ret + << std::endl; + return; + } + + std::cout << "当前机械臂构型: " << current_config << std::endl; + + // unsafe 对照默认关闭。打开后会故意给 inverseKinematics 一个错误 + // qnear,用于观察普通逆解选到翻转分支时的运动效果。 + std::cout << "\n1. unsafe 运动对照: 错误 qnear + 普通 " + "inverseKinematics" + << std::endl; + auto flip_q = unsafeIk(algorithm, target_tcp_pose, reference_q, + current_config); + if (!flip_q) { + std::cout << "未执行 unsafe 运动对照" << std::endl; + return; + } + + showJoint("unsafe 目标关节角", *flip_q); + if (!moveJ(robot, *flip_q, "unsafe moveJoint 翻转运动")) { + return; + } + + std::cout << "\n回到演示起点" << std::endl; + if (!moveJ(robot, reference_q, "moveJoint 回到起点")) { + return; + } + } + + // safe 路径:使用 inverseKinematics2 选出同构型且关节变化最小的目标关节角 + std::cout << "\nsafe 运动示例: inverseKinematics2 同构型最近解,防止翻转" + << std::endl; + auto safe_q = stableIk(algorithm, target_tcp_pose, reference_q); + if (!safe_q) { + std::cout << "未执行 safe 运动示例" << std::endl; + return; + } + + showJoint("safe 目标关节角", *safe_q); + auto target_config_result = algorithm->getRobotConfiguration(*safe_q); + auto target_config = std::get<0>(target_config_result); + auto target_config_ret = std::get<1>(target_config_result); + if (target_config_ret != 0) { + std::cout << "获取目标点构型失败,返回值: " << target_config_ret + << std::endl; + return; + } + std::cout << "目标点构型: " << target_config << std::endl; + moveJ(robot, *safe_q, "safe moveJoint 防翻转运动"); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + demo(rpc_cli); + + // 接口调用: 退出登录、断开连接 + rpc_cli->logout(); + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_startup.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_startup.cpp new file mode 100644 index 00000000..f3ed5663 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_startup.cpp @@ -0,0 +1,122 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +// 等待机械臂进入目标模式 +void waitForRobotMode(RobotInterfacePtr robot_interface, + RobotModeType target_mode) +{ + // 接口调用: 获取当前机械臂的模式 + auto current_mode = robot_interface->getRobotState()->getRobotModeType(); + + while (current_mode != target_mode) { + std::cout << "机械臂当前模式:" << current_mode << std::endl; + std::this_thread::sleep_for(std::chrono::seconds(1)); + current_mode = robot_interface->getRobotState()->getRobotModeType(); + } +} + +void exampleStartup(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置负载 + double mass = 0.0; + std::vector cog(3, 0.0); + std::vector aom(3, 0.0); + std::vector inertia(6, 0.0); + robot_interface->getRobotConfig()->setPayload(mass, cog, aom, inertia); + + // 接口调用: 获取机械臂当前模式 + auto robot_mode = robot_interface->getRobotState()->getRobotModeType(); + + if (robot_mode == RobotModeType::Running) { + std::cout << "机械臂已松刹车,处于运行模式" << std::endl; + + } else { + // 接口调用: 机械臂发起上电请求 + robot_interface->getRobotManage()->poweron(); + + // 等待机械臂进入空闲模式 + waitForRobotMode(robot_interface, RobotModeType::Idle); + + std::cout << "机械臂上电成功,当前模式:" + << robot_interface->getRobotState()->getRobotModeType() + << std::endl; + + // 接口调用: 机械臂发起松刹车请求 + cli->getRobotInterface(robot_name)->getRobotManage()->startup(); + + // 等待机械臂进入运行模式 + waitForRobotMode(robot_interface, RobotModeType::Running); + + std::cout << "机械臂松刹车成功,当前模式:" + << robot_interface->getRobotState()->getRobotModeType() + << std::endl; + } +} + +void examplePoweroff(RpcClientPtr cli) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 机械臂断电 + robot_interface->getRobotManage()->poweroff(); + + // 等待机械臂进入断电模式 + waitForRobotMode(robot_interface, RobotModeType::PowerOff); + + std::cout << "机械臂断电成功,当前模式:" + << robot_interface->getRobotState()->getRobotModeType() + << std::endl; +} + +/** + * 功能: 机械臂上电与断电 + * 步骤: + * 第一步: 设置 RPC 超时、连接到 RPC 服务、登录 + * 第二步: 设置负载、上电和松刹车 + * 第三步: 机械臂断电 + * 第四步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 机械臂上电 + exampleStartup(rpc_cli); + + // 机械臂断电 + // examplePoweroff(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_state.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_state.cpp new file mode 100644 index 00000000..370358ca --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_state.cpp @@ -0,0 +1,278 @@ +#include "aubo_sdk/rpc.h" +#ifdef WIN32 +#include +#endif + +using namespace arcs::aubo_sdk; + +// 模板:打印类型为std::vector的变量 +template void printVec(std::vector param, std::string name) { + std::cout << name << ": "; + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 获取机械臂状态 +void exampleState(RpcClientPtr cli) { + // 接口调用:获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + + // 接口调用:获取机器人的模式状态 + RobotModeType robot_mode_type; + robot_mode_type = + cli->getRobotInterface(robot_name)->getRobotState()->getRobotModeType(); + std::cout << "机器人的模式状态:" << robot_mode_type << std::endl; + + // 接口调用:获取安全模式 + SafetyModeType safety_mode_type; + safety_mode_type = + cli->getRobotInterface(robot_name)->getRobotState()->getSafetyModeType(); + std::cout << "安全模式:" << safety_mode_type << std::endl; + + // 接口调用:机器人是否处于静止状态 + bool is_steady; + is_steady = cli->getRobotInterface(robot_name)->getRobotState()->isSteady(); + std::cout << "机器人是否处于静止状态:" << (is_steady ? "是" : "否") + << std::endl; + + // 接口调用:机器人是否在安全限制之内 + bool is_within_safety_limits; + is_within_safety_limits = cli->getRobotInterface(robot_name) + ->getRobotState() + ->isWithinSafetyLimits(); + std::cout << "机器人是否在安全限制之内:" + << (is_within_safety_limits ? "是" : "否") << std::endl; + + // 接口调用:获取TCP在基坐标系下的实际位姿 + std::vector actual_tcp_pose; + actual_tcp_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getTcpPose(); + printVec(actual_tcp_pose, "TCP在基坐标系下的实际位姿"); + + // 接口调用:获取法兰盘中心在基坐标系下的实际位姿 + std::vector actual_flange_pose; + actual_flange_pose = + cli->getRobotInterface(robot_name)->getRobotState()->getToolPose(); + printVec(actual_flange_pose, "法兰盘中心在基坐标系下的实际位姿"); + + // 接口调用:获取机械臂关节状态 + std::vector joint_state; + joint_state = + cli->getRobotInterface(robot_name)->getRobotState()->getJointState(); + printVec(joint_state, "机械臂关节状态"); + + // 接口调用:获取关节的伺服状态 + std::vector joint_servo_mode; + joint_servo_mode = + cli->getRobotInterface(robot_name)->getRobotState()->getJointServoMode(); + printVec(joint_servo_mode, "关节的伺服状态"); + + // 接口调用:获取机械臂的实际位置关节角度 + std::vector joint_positions; + joint_positions = + cli->getRobotInterface(robot_name)->getRobotState()->getJointPositions(); + printVec(joint_positions, "机械臂的实际位置关节角度"); + + // 接口调用:获取机械臂的关节电流 + std::vector joint_currents; + joint_currents = + cli->getRobotInterface(robot_name)->getRobotState()->getJointCurrents(); + printVec(joint_currents, "机械臂的关节电流"); + + // 接口调用:获取机械臂的关节电压 + std::vector joint_voltages; + joint_voltages = + cli->getRobotInterface(robot_name)->getRobotState()->getJointVoltages(); + printVec(joint_voltages, "机械臂的关节电压"); + + // 接口调用:获取机械臂的关节温度 + std::vector joint_temperatures; + joint_temperatures = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointTemperatures(); + printVec(joint_temperatures, "机械臂的关节温度"); + + // 接口调用:获取关节的UUID + std::vector joint_unique_ids; + joint_unique_ids = + cli->getRobotInterface(robot_name)->getRobotState()->getJointUniqueIds(); + printVec(joint_unique_ids, "关节的UUID"); + + // 接口调用:获取关节的固件版本 + std::vector joint_firmware_versions; + joint_firmware_versions = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointFirmwareVersions(); + printVec(joint_firmware_versions, "关节的固件版本"); + + // 接口调用:获取关节的硬件版本 + std::vector joint_hardward_versions; + joint_hardward_versions = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointHardwareVersions(); + printVec(joint_hardward_versions, "关节的硬件版本"); + + // 接口调用:获取主板固件的UUID + std::string master_board_unique_id; + master_board_unique_id = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getMasterBoardUniqueId(); + std::cout << "主板固件的UUID:" << master_board_unique_id << std::endl; + + // 接口调用:获取主板固件的固件版本 + int master_board_firmware_version; + master_board_firmware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getMasterBoardFirmwareVersion(); + std::cout << "主板固件的固件版本:" << master_board_firmware_version + << std::endl; + + // 接口调用:获取主板固件的硬件版本 + int master_board_hardware_version; + master_board_hardware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getMasterBoardHardwareVersion(); + std::cout << "主板固件的硬件版本:" << master_board_hardware_version + << std::endl; + + // 接口调用:获取从板固件的UUID + std::string slave_board_unique_id; + slave_board_unique_id = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getSlaveBoardUniqueId(); + std::cout << "从板固件的UUID:" << slave_board_unique_id << std::endl; + + // 接口调用:获取从板固件的固件版本 + int slave_board_firmware_version; + slave_board_firmware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getSlaveBoardFirmwareVersion(); + std::cout << "从板固件的固件版本:" << slave_board_firmware_version + << std::endl; + + // 接口调用:获取从板固件的硬件版本 + int slave_board_hardware_version; + slave_board_hardware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getSlaveBoardHardwareVersion(); + std::cout << "从板固件的硬件版本:" << slave_board_hardware_version + << std::endl; + + // 接口调用:获取工具的UUID + std::string tool_unique_id; + tool_unique_id = + cli->getRobotInterface(robot_name)->getRobotState()->getToolUniqueId(); + std::cout << "工具的UUID:" << tool_unique_id << std::endl; + + // 接口调用:获取工具的固件版本 + int tool_firmware_version; + tool_firmware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getToolFirmwareVersion(); + std::cout << "工具的固件版本:" << tool_firmware_version << std::endl; + + // 接口调用:获取工具的硬件版本 + int tool_hardware_version; + tool_hardware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getToolHardwareVersion(); + std::cout << "工具的固件版本:" << tool_hardware_version << std::endl; + + // 接口调用:获取基座的UUID + std::string pedestal_unique_id; + pedestal_unique_id = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getPedestalUniqueId(); + std::cout << "基座的UUID:" << pedestal_unique_id << std::endl; + + // 接口调用:获取基座的固件版本 + int pedestal_firmware_version; + pedestal_firmware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getPedestalFirmwareVersion(); + std::cout << "基座的固件版本:" << pedestal_firmware_version << std::endl; + + // 接口调用:获取基座的硬件版本 + int pedestal_hardware_version; + pedestal_hardware_version = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getPedestalHardwareVersion(); + std::cout << "基座的硬件版本:" << pedestal_hardware_version << std::endl; + + // 接口调用:获取机械臂关节目标位置角度 + std::vector joint_target_positions; + joint_target_positions = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getJointTargetPositions(); + printVec(joint_target_positions, "关节目标位置角度"); + + // 接口调用:获取控制柜温度 + double control_box_temperature; + control_box_temperature = cli->getRobotInterface(robot_name) + ->getRobotState() + ->getControlBoxTemperature(); + std::cout << "控制柜温度:" << control_box_temperature << std::endl; + + // 接口调用:获取母线电压 + double main_voltage; + main_voltage = + cli->getRobotInterface(robot_name)->getRobotState()->getMainVoltage(); + std::cout << "母线电压:" << main_voltage << std::endl; + + // 接口调用:获取母线电流 + double main_current; + main_current = + cli->getRobotInterface(robot_name)->getRobotState()->getMainCurrent(); + std::cout << "母线电流:" << main_current << std::endl; + + // 接口调用:获取机器人电压 + double robot_voltage; + robot_voltage = + cli->getRobotInterface(robot_name)->getRobotState()->getRobotVoltage(); + std::cout << "机器人电压:" << robot_voltage << std::endl; + + // 接口调用:获取机器人电流 + double robot_current; + robot_current = + cli->getRobotInterface(robot_name)->getRobotState()->getRobotCurrent(); + std::cout << "机器人电流:" << robot_current << std::endl; +} + +#define ip_local "127.0.0.1" + +/** + * 功能:获取机械臂状态 + * 步骤: + * 第一步: 设置 RPC 超时、连接 RPC 服务、登录 + * 第二步: 获取机械臂状态 + * 第三步: 退出登录、断开 RPC 连接 + */ +int main(int argc, char **argv) { +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(ip_local, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 获取机械臂状态 + exampleState(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_step_mode.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_step_mode.cpp new file mode 100644 index 00000000..dc2b7fe9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_step_mode.cpp @@ -0,0 +1,417 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#include +#include +#include +#include +#include +#ifdef WIN32 +#include +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 模板函数: 打印类型为std::vector的变量 +template +void printVec(std::vector param, std::string name) +{ + std::cout << name << ": "; + + for (int i = 0; i < param.size(); i++) { + std::cout << param.at(i); + if (i != param.size() - 1) { + std::cout << ", "; + } + } + std::cout << std::endl; +} + +// 定义坐标系类型的枚举 +enum CoordinateSystem +{ + BASE_COORDINATE_SYSTEM = 1, + TOOL_COORDINATE_SYSTEM = 2, + USER_COORDINATE_SYSTEM = 3 +}; + +// 定义枚举类型表示动作类型 +enum ActionType +{ + POSITION_MOVE, // 位置移动 + ORIENTATION_MOVE, // 姿态旋转 + EXIT_PROGRAM // 退出程序 +}; + +// 定义结构体表示用户输入 +struct UserInput +{ + ActionType actionType; // 动作类型 + char axis; // 坐标轴 + bool positiveDirection; // 坐标轴方向 +}; + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +std::vector selectedCoordinate(CoordinateSystem coordinate, + RpcClientPtr impl, + std::vector shift, + std::vector pose) +{ + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + std::vector target_pose(6, 0.); + + switch (coordinate) { + case BASE_COORDINATE_SYSTEM: + // 基座标系下的示教运动, 基于固定坐标系旋转 + target_pose = impl->getMath()->poseTrans(shift, pose); + break; + case TOOL_COORDINATE_SYSTEM: + // 末端坐标系, 基于末端坐标系旋转 + target_pose = impl->getMath()->poseTrans(pose, shift); + break; + case USER_COORDINATE_SYSTEM: + // TCP 在基坐标系下的位姿 + std::vector coord_p0(6), coord_p1(6), coord_p2(6); + coord_p0[0] = 0.49946; + coord_p0[1] = 0.32869; + coord_p0[2] = 0.35522; + coord_p0[3] = 2.414; + coord_p0[4] = 0.0; + coord_p0[5] = 2.357; + + coord_p1[0] = 0.58381; + coord_p1[1] = 0.41325; + coord_p1[2] = 0.22122; + coord_p1[3] = 2.414; + coord_p1[4] = 0.0; + coord_p1[5] = 2.357; + + coord_p2[0] = 0.58826; + coord_p2[1] = 0.41772; + coord_p2[2] = 0.46730; + coord_p2[3] = 2.414; + coord_p2[4] = 0.0; + coord_p2[5] = 2.357; + + // 接口调用: 获取用户坐标系相对于基坐标系的位姿 + auto [user_on_base, ret] = impl->getMath()->calibrateCoordinate( + { coord_p0, coord_p1, coord_p2 }, 0); + + user_on_base[0] = 0; + user_on_base[1] = 0; + user_on_base[2] = 0; + + auto user_on_base_inv = impl->getMath()->poseInverse(user_on_base); + + // 接口调用:获取 TCP 在用户坐标系下的当前位姿 + auto tcp_on_user = impl->getMath()->poseTrans(user_on_base_inv, pose); + + // 基于固定坐标系做姿态变换 + auto utt = impl->getMath()->poseTrans(shift, tcp_on_user); + target_pose = impl->getMath()->poseTrans(user_on_base, utt); + break; + } + return target_pose; +} + +void exampleStepMode(RpcClientPtr impl) +{ + int input_coord; + std::cout << "请选择坐标系:" << std::endl; + std::cout << "1. 基坐标系" << std::endl; + std::cout << "2. 工具坐标系" << std::endl; + std::cout << "3. 用户坐标系" << std::endl; + std::cout << "请输入选项编号:"; + std::cin >> input_coord; + + if (input_coord != 1 && input_coord != 2 && input_coord != 3) { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "1、2、3" + << std::endl; + return; + } + + CoordinateSystem selected_coord; + + switch (input_coord) { + case 1: + selected_coord = BASE_COORDINATE_SYSTEM; + break; + + case 2: + selected_coord = TOOL_COORDINATE_SYSTEM; + break; + + case 3: + selected_coord = USER_COORDINATE_SYSTEM; + break; + } + + // 输入字符串 + std::string input_axis; + + // 定义输入字符串和键值映 + std::map keymap = { + { "x+", { POSITION_MOVE, 'x', true } }, + { "x-", { POSITION_MOVE, 'x', false } }, + { "y+", { POSITION_MOVE, 'y', true } }, + { "y-", { POSITION_MOVE, 'y', false } }, + { "z+", { POSITION_MOVE, 'z', true } }, + { "z-", { POSITION_MOVE, 'z', false } }, + { "rx+", { ORIENTATION_MOVE, 'x', true } }, + { "rx-", { ORIENTATION_MOVE, 'x', false } }, + { "ry+", { ORIENTATION_MOVE, 'y', true } }, + { "ry-", { ORIENTATION_MOVE, 'y', false } }, + { "rz+", { ORIENTATION_MOVE, 'z', true } }, + { "rz-", { ORIENTATION_MOVE, 'z', false } }, + { "exit", { EXIT_PROGRAM, 'x', true } } + }; + + // 初始化循环控制变量 + bool continue_loop = true; + + int cnt = 0; + while (continue_loop) { + std::cout << "请输入机械臂要运动的轴: " << std::endl; + // 显示有效输入提示 + if (cnt++ == 0) { + std::cout << "有效输入值如下: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + std::cout << "x+表示x轴正方向位置步进,x-" + "表示x轴负方向位置步进,y+" + "表示y轴正方向位置步进,y-" + "表示y轴负方向位置步进,z+表示z轴正方向位置步进,z-" + "表示z轴负方向位置步进,rx+" + "表示x轴正方向做姿态步进,rx-" + "表示x轴负方向做姿态步进,ry+" + "表示y轴正方向做姿态步进,ry-" + "表示y轴负方向做姿态步进,rz+" + "表示z轴正方向姿态步进,rz-" + "表示z轴负方向姿态步进,exit表示退出循" + "环" + << std::endl; + } + std::cin >> input_axis; + + // 定义有效的输入值集合 + std::unordered_set validInputs = { + "x+", "x-", "y+", "y-", "z+", "z-", "rx+", + "rx-", "ry+", "ry-", "rz+", "rz-", "s", "exit" + }; + + if (validInputs.find(input_axis) == validInputs.end()) { + std::cerr << "输入值无效" << std::endl; + std::cerr << "以下为有效输入值: " + "x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+" + "、rz-、s、exit" + << std::endl; + continue; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + auto robot_interface = impl->getRobotInterface(robot_name); + + // 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + std::vector tcp_offset(6, 0.0); + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.75); + + UserInput userInput = keymap[input_axis]; + + std::vector shift(6, 0.); + + // 位置步长,单位m + double pos_dist = 0.005; + pos_dist = userInput.positiveDirection ? pos_dist : -pos_dist; + + // 姿态步长,单位rad + double ori_dist = 0.1; + ori_dist = userInput.positiveDirection ? ori_dist : -ori_dist; + + // 接口调用: 获取TCP在Base坐标系下的当前位姿 + std::vector current_tcp_on_base(6, 0.0); + current_tcp_on_base = robot_interface->getRobotState()->getTcpPose(); + + // 目标位姿 + std::vector target_pose_on_base(6, 0.); + + if (userInput.actionType == EXIT_PROGRAM) { + // 退出循环 + continue_loop = false; + + } else if (userInput.actionType == POSITION_MOVE) { + // 位置移动 + switch (userInput.axis) { + case 'x': + shift[0] = pos_dist; + break; + case 'y': + shift[1] = pos_dist; + break; + case 'z': + shift[2] = pos_dist; + break; + } + + target_pose_on_base = selectedCoordinate( + selected_coord, impl, shift, current_tcp_on_base); + + robot_interface->getMotionControl()->moveLine(target_pose_on_base, + 1.2, 0.25, 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到目标位置成功!" << std::endl; + } else { + std::cout << "直线运动到目标位置失败!" << std::endl; + } + } else if (userInput.actionType == ORIENTATION_MOVE) { + // 姿态旋转 + switch (userInput.axis) { + case 'x': + shift[3] = ori_dist; + break; + case 'y': + shift[4] = ori_dist; + break; + case 'z': + shift[5] = ori_dist; + break; + } + + target_pose_on_base = selectedCoordinate( + selected_coord, impl, shift, current_tcp_on_base); + + target_pose_on_base[0] = current_tcp_on_base[0]; + target_pose_on_base[1] = current_tcp_on_base[1]; + target_pose_on_base[2] = current_tcp_on_base[2]; + + robot_interface->getMotionControl()->moveLine(target_pose_on_base, + 1.2, 0.25, 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "直线运动到目标位置成功!" << std::endl; + } else { + std::cout << "直线运动到目标位置失败!" << std::endl; + } + } + } +} + +// 打印日志信息 +void printlog(int level, const char *source, int code, std::string content) +{ + static const char *level_names[] = { "Critical", "Error", "Warning", + "Info", "Debug", "BackTrace" }; + fprintf(stderr, "[%s] %s - %d %s\n", level_names[level], source, code, + content.c_str()); +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + // 接口调用: 设置 RTDE 话题 + int topic = rtde_cli->setTopic(false, { "R1_message" }, 200, 0); + if (topic < 0) { + std::cout << "设置话题失败!" << std::endl; + return -1; + } + + // 接口调用: 订阅话题 + rtde_cli->subscribe(topic, [](InputParser &parser) { + arcs::common_interface::RobotMsgVector msgs; + msgs = parser.popRobotMsgVector(); + for (size_t i = 0; i < msgs.size(); i++) { + auto &msg = msgs[i]; + std::string error_content = + arcs::error_stack::errorCode2Str(msg.code); + for (auto it : msg.args) { + auto pos = error_content.find("{}"); + if (pos != std::string::npos) { + error_content.replace(pos, 2, it); + } else { + break; + } + } + // 打印日志信息 + printlog(msg.level, msg.source.c_str(), msg.code, error_content); + } + }); + + // 在不同坐标系下的步进 + exampleStepMode(rpc_cli); + + // 接口调用: 取消话题 + rtde_cli->removeTopic(false, topic); + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_tcp_auto_calib.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_tcp_auto_calib.cpp new file mode 100644 index 00000000..495e3dbc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_tcp_auto_calib.cpp @@ -0,0 +1,442 @@ +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "skill_interface/tcp_auto_calib.h" + +#ifdef WIN32 +#include +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +constexpr const char *kRobotIp = "172.17.41.84"; +constexpr int kRobotRpcPort = 30004; +constexpr int kRobotRtdePort = 30010; +constexpr const char *kUser = "aubo"; +constexpr const char *kPassword = "123456"; + +void printPose(const std::vector &v) +{ + std::cout << "[ "; + for (int i = 0; i < v.size(); i++) { + std::cout << v[i] << ", "; + } + std::cout << " ]" << std::endl; +} + +int test01(RpcClientPtr rpc, RtdeClientPtr rtde_cli) +{ + try { + rpc->setRequestTimeout(5000); + rpc->connect(kRobotIp, kRobotRpcPort); + if (!rpc->hasConnected()) { + std::cerr << "RPC connect failed" << std::endl; + return 1; + } + rpc->login(kUser, kPassword); + if (!rpc->hasLogined()) { + std::cerr << "RPC login failed" << std::endl; + return 1; + } + + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(kRobotIp, kRobotRtdePort); + // 接口调用: 登录 + rtde_cli->login(kUser, kPassword); + + TcpAutoCalib tcp_auto_calib(rpc, rtde_cli); + + // auto result = tcp_auto_calib.calibrateSensorPoseWithTCP(1, 3); + // if (std::get<1>(result) != 0) { + // std::cout << "通过TCP标定传感器位置失败." << std::endl; + // } else { + // std::cout << "sensor_pose:"; + // printPose(std::get<0>(result)); + // } + + std::vector sensor_pose = { -0.564623, -0.0267271, 0.302365, + -3.13986, 1.81117e-05, -1.26507 }; + auto result = tcp_auto_calib.tcpAutoCorrect(sensor_pose, 1, 3); + if (std::get<1>(result) != 0) { + std::cout << "TCP纠偏失败." << std::endl; + } else { + std::cout << "新的TCP:"; + printPose(std::get<0>(result)); + } + + // auto result = tcp_auto_calib.tcpAutoCalibrate(1, 3); + // if (std::get<1>(result) != 0) { + // std::cout << "TCP自动标定失败." << std::endl; + // } else { + // std::cout << "TCP标定结果:"; + // printPose(std::get<0>(result)); + // } + + rtde_cli->logout(); + rtde_cli->disconnect(); + + rpc->logout(); + rpc->disconnect(); + } catch (const std::exception &e) { + std::cerr << "Exception: " << e.what() << std::endl; + return 1; + } +} + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +int test02(RpcClientPtr rpc_cli) +{ + /* + * 场景说明: + * + * 本示例用于标定“固定外部工具”场景。 + * + * 典型应用: + * - 焊枪固定在工作站上; + * - 机器人末端夹持工件; + * - 机器人带着工件去接近固定焊枪完成焊接。 + * + * 坐标系关系: + * + * Base / World + * | + * |-- Remote Tool Frame + * | 固定焊枪坐标系,即外部工具坐标系 + * | + * |-- Robot + * | + * |-- Flange + * | + * |-- TCP / Workpiece Frame + * 机器人夹持工件时,工件坐标系可临时定义在 TCP 上 + * + * 本流程主要完成两件事: + * + * 1. 通过三点法标定固定焊枪坐标系在 Base 下的位姿: + * + * F_base_remote_tool + * + * 该结果写入: + * + * WObjectData::user_coord + * + * 2. 设置机器人夹持工件时,工件坐标系相对于法兰的位姿: + * + * F_flange_workpiece + * + * 本示例中假设: + * + * 工件坐标系 = 当前 TCP 坐标系 + * + * 因此直接使用当前 TCP offset: + * + * WObjectData::obj_coord = getTcpOffset() + * + * 如果实际工件坐标系不在 TCP 上,则需要单独标定工件坐标系 + * 相对于法兰的位姿,不能直接使用 TCP offset。 + */ + + // 1. 获取机器人接口 + auto robot_name = rpc_cli->getRobotNames().front(); + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + auto robot_config = robot_interface->getRobotConfig(); + auto robot_state = robot_interface->getRobotState(); + auto mc = robot_interface->getMotionControl(); + auto robot_algorithm = robot_interface->getRobotAlgorithm(); + + // 2. 设置机械臂整体速度比例,避免标定运动过快 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + /* + * 3. 设置当前机器人 TCP + * + * 注意: + * 后续采集 tcp0 / tcp1 / tcp2 时,使用的是 getTcpPose()。 + * 因此 TCP offset 必须提前设置正确。 + * + * 如果 TCP 不准确,则三点标定出来的固定焊枪坐标系也会整体偏移。 + * + * 当前示例中 TCP 相对于法兰为: + * + * x = 0 + * y = 0 + * z = 0.0118 m + * rx = 0 + * ry = 0 + * rz = 0 + */ + robot_config->setTcpOffset({ 0, 0, 0.0118, 0, 0, 0 }); + + /* + * 4. 选择远端特征坐标系标定方法 + * + * method = 0 表示 O_X_XY。 + * + * O_X_XY 的三点含义: + * + * 点 0:远端坐标系原点 O + * 点 1:远端坐标系 X 正方向上的一点 + * 点 2:远端坐标系 XY 平面第一象限内的一点 + * + * 在固定焊枪场景下,可以这样定义: + * + * 点 0:焊枪 TCP / 焊枪尖端 + * 点 1:焊枪坐标系 X 正方向上的一点 + * 点 2:焊枪坐标系 XY 平面内的一点 + * + * 最终算法会根据这三个点计算: + * + * F_base_remote_tool + * + * 即: + * + * 固定焊枪坐标系在 Base 下的位姿。 + */ + constexpr int method = 0; // CoordCalibMethod::O_X_XY + + /* + * 5. 采集点 0:远端坐标系原点 + * + * 操作要求: + * 机器人移动到第一个示教点; + * 当前 TCP 对准固定焊枪坐标系原点; + * 例如焊枪尖端。 + * + * 记录: + * tcp0 = F_base_tcp_at_remote_origin + */ + std::vector q0{ -0.079587, -0.760964, 1.258906, + 0.579449, 1.572367, -0.01693 }; + + mc->moveJoint(q0, 0.3, 0.3, 0, 0); + waitArrival(robot_interface); + auto tcp0 = robot_state->getTcpPose(); + + /* + * 6. 采集点 1:远端坐标系 X 正方向点 + * + * 操作要求: + * 机器人移动到第二个示教点; + * 当前 TCP 位于固定焊枪坐标系 X 正方向上的某一点; + * 距离原点尽量远一些,例如 100 mm ~ 200 mm; + * 点 1 不要离点 0 太近,否则方向误差会被放大。 + * + * 记录: + * tcp1 = F_base_tcp_at_remote_x_positive_point + * + * 注意: + * 这里 q1 是提前示教好的关节位置。 + * 它必须对应远端坐标系 X 正方向上的点, + * 不能只是随便移动到一个位置。 + */ + std::vector q1{ -0.13508848, -0.90303335, 1.01002204, + 0.58119464, 1.52524323, -0.01692969 }; + + mc->moveJoint(q1, 0.3, 0.3, 0, 0); + waitArrival(robot_interface); + auto tcp1 = robot_state->getTcpPose(); + + /* + * 7. 采集点 2:远端坐标系 XY 平面第一象限内的点 + * + * 操作要求: + * 机器人移动到第三个示教点; + * 当前 TCP 位于远端坐标系 XY 平面内; + * 且最好在第一象限,即 X > 0, Y > 0; + * 该点用于确定远端坐标系的平面方向。 + * + * 记录: + * tcp2 = F_base_tcp_at_remote_xy_plane_point + * + * 注意: + * tcp0、tcp1、tcp2 三点不能共线。 + * 如果三点接近共线,标定出的坐标系姿态会非常不稳定。 + */ + std::vector q2{ 0.0089011792, -0.9028588221, 1.0138617625, + 0.5794493117, 1.5723671231, -0.0169296937 }; + + mc->moveJoint(q2, 0.3, 0.3, 0, 0); + waitArrival(robot_interface); + auto tcp2 = robot_state->getTcpPose(); + + /* + * 8. 组织三点位姿 + * + * 输入顺序必须和标定方法一致。 + * + * 对于 O_X_XY: + * + * pose[0] = 原点 O + * pose[1] = X 正方向点 + * pose[2] = XY 平面内点 + * + * 注意: + * 这里传入的是 TCP 在 Base 下的位姿。 + * 算法通常主要使用其中的位置分量 xyz。 + */ + std::vector> pose; + pose.reserve(3); + pose.emplace_back(tcp0); + pose.emplace_back(tcp1); + pose.emplace_back(tcp2); + + /* + * 9. 标定远端特征坐标系 + * + * 返回值: + * + * std::get<0>(ret) : 标定得到的远端特征坐标系位姿 + * std::get<1>(ret) : 错误码,< 0 表示失败 + * + * 对于当前固定焊枪场景: + * + * coord = F_base_remote_tool + * + * 即: + * + * 固定焊枪坐标系在 Base 坐标系下的位姿描述。 + */ + auto ret = robot_algorithm->calibRemoteFeatureFrame(pose, method); + + if (std::get<1>(ret) < 0) { + std::cout << "calibRemoteFeatureFrame failed, ret: " << std::get<1>(ret) + << std::endl; + return -1; + } + + auto coord = std::get<0>(ret); // 远端特征坐标系在 Base 坐标系下的位姿 + printPose(coord); + + /* + * 10. 配置 WObjectData + * + * remote_tool = true: + * + * 表示当前是外部工具场景。 + * + * 即: + * 工具固定在工作站上; + * 机器人末端夹持工件运动。 + * + * user_coord: + * + * 在 remote_tool = true 时,这里填写固定外部工具坐标系 + * 在 Base / World 下的位姿。 + * + * 当前场景中: + * + * user_coord = 固定焊枪坐标系在 Base 下的位姿 + * + * obj_coord: + * + * 表示工件坐标系相对于机器人末端挂载坐标系的位姿。 + * + * 当前 demo 中简化处理: + * + * 工件坐标系原点 = TCP 原点 + * 工件坐标系姿态 = TCP 姿态 + * + * 所以: + * + * obj_coord = getTcpOffset() + * + * 也就是: + * + * F_flange_workpiece = F_flange_tcp + * + * 如果实际工件坐标系不等于 TCP, + * 例如工件坐标系定义在工件角点、孔中心、焊缝起点等位置, + * 则必须单独标定或测量: + * + * F_flange_workpiece + * + * 然后填入 obj_coord,而不能直接使用 getTcpOffset()。 + */ + WObjectData data; + data.remote_tool = true; + data.user_coord = coord; + + data.obj_coord = robot_config->getTcpOffset(); + + /* + * 11. 写入当前工件对象数据 + * + * 设置完成后,控制器在后续轨迹规划时,可以理解为: + * + * - 外部工具坐标系:固定焊枪坐标系; + * - 机器人携带的对象:工件坐标系; + * - 运动目标可以基于该 WorkObject 进行坐标转换。 + */ + robot_config->setWorkObjectData(data); + + return 0; +} + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rpc_cli = std::make_shared(); + auto rtde_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect("172.17.41.81", 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // test01(rpc_cli, rtde_cli); + test02(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_timer.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_timer.cpp new file mode 100644 index 00000000..1e313a4d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_timer.cpp @@ -0,0 +1,74 @@ +#include "aubo_sdk/rpc.h" +#include +#include + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +#define LOCAL_IP "127.0.0.1" + +void example1(RpcClientPtr rpc_cli) { + // 接口调用: 计时器 timer1 开始计时 + rpc_cli->getRuntimeMachine()->timerStart("timer1"); + std::this_thread::sleep_for(std::chrono::milliseconds(7500)); + // 接口调用: 计时器 timer1 结束计时 + rpc_cli->getRuntimeMachine()->timerStop("timer1"); + // 接口调用: 获取计时器 timer1 计时的时长 + std::cout << rpc_cli->getRuntimeMachine()->getTimer("timer1") << std::endl; + + // 接口调用: 计时器 timer1 开始计时 + rpc_cli->getRuntimeMachine()->timerStart("timer1"); + std::this_thread::sleep_for(std::chrono::milliseconds(7500)); + // 接口调用: 计时器 timer1 结束计时 + rpc_cli->getRuntimeMachine()->timerStop("timer1"); + // 接口调用: 获取计时器 timer1 计时的时长 + std::cout << rpc_cli->getRuntimeMachine()->getTimer("timer1") << std::endl; + + // 接口调用: 重置计时器 timer1 + rpc_cli->getRuntimeMachine()->timerReset("timer1"); + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + // 接口调用: 获取计时器 timer1 计时的时长 + std::cout << rpc_cli->getRuntimeMachine()->getTimer("timer1") << std::endl; + // 接口调用: 删除计时器 timer1 + rpc_cli->getRuntimeMachine()->timerDelete("timer1"); +} + +void example2(RpcClientPtr rpc_cli) { + // 接口调用: 计时器 timer1 开始计时 + rpc_cli->getRuntimeMachine()->timerStart("timer1"); + std::this_thread::sleep_for(std::chrono::milliseconds(7500)); + // 接口调用: 获取计时器 timer1 计时的时长 + std::cout << rpc_cli->getRuntimeMachine()->getTimer("timer1") << std::endl; + // 接口调用: 重置计时器 timer1 + rpc_cli->getRuntimeMachine()->timerReset("timer1"); + + // 接口调用: 计时器 timer1 开始计时 + rpc_cli->getRuntimeMachine()->timerStart("timer1"); + std::this_thread::sleep_for(std::chrono::milliseconds(7500)); + // 接口调用: 获取计时器 timer1 计时的时长 + std::cout << rpc_cli->getRuntimeMachine()->getTimer("timer1") << std::endl; + // 接口调用: 重置计时器 timer1 + rpc_cli->getRuntimeMachine()->timerReset("timer1"); + // 接口调用: 删除计时器 timer1 + rpc_cli->getRuntimeMachine()->timerDelete("timer1"); +} + +int main(int argc, char **argv) { + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + example1(rpc_cli); + example2(rpc_cli); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_trackj.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_trackj.cpp new file mode 100644 index 00000000..54c0e093 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_trackj.cpp @@ -0,0 +1,178 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (impl->getMotionControl()->getExecId() != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + return 0; +} + +template +inline std::ostream &operator<<(std::ostream &os, const std::vector &list) +{ + for (size_t i = 0; i < list.size(); i++) { + os << list.at(i); + if (i != (list.size() - 1)) { + os << ","; + } + } + return os; +} + +/** + * 测试: 采用 TrackJoint 跟踪一个轨迹,目标点下发时间间隔5ms + */ +int exampleTrackJoint(RpcClientPtr cli) +{ + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 获取机器人的名字 + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.8); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + robot_interface->getMotionControl()->moveJoint(traj[0], 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + for (size_t i = 1; i < traj.size(); i++) { + int traj_queue_size = + robot_interface->getMotionControl()->getTrajectoryQueueSize(); + std::cout << "traj_queue_size: " << traj_queue_size << std::endl; + while (traj_queue_size > 8) { + traj_queue_size = + robot_interface->getMotionControl()->getTrajectoryQueueSize(); + + std::this_thread::sleep_for(std::chrono::milliseconds(1)); + } + robot_interface->getMotionControl()->trackJoint(traj[i], 0.01, 0.5, 1); + } + + // 等待运动结束 + while (!robot_interface->getRobotState()->isSteady()) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + + robot_interface->getMotionControl()->stopJoint(1); + + std::cout << "trackJoint 运动结束" << std::endl; + + return 0; +} + +#define LOCAL_IP "127.0.0.1" + +/** + * trackJoint 功能使用步骤: + * 1、采用实时系统测试 trackJoint 功能 + * 2、孤立一个 CPU,保证该 CPU 没有其他任务 + * 3、将该进程设置为实时进程,优先级设置为最大 + * 4、绑定 CPU,将该实时进程绑定到第二步孤立的 CPU 上 + */ +int main(void) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif +#ifndef _WIN32 + // 实时优先级最大值、最小值 + int sched_max = sched_get_priority_max(SCHED_FIFO); + + // 设置实时调度策略及优先级 + struct sched_param sParam; + sParam.sched_priority = sched_max; + sched_setscheduler(0, SCHED_FIFO, &sParam); + auto i_schedFlag = sched_getscheduler(0); + printf("设置调度策略 = [%d]\n", i_schedFlag); + + // 绑定CPU + cpu_set_t cpuset; + CPU_ZERO(&cpuset); + CPU_SET(1, &cpuset); + + // bind process to processor 0 + if (sched_setaffinity(0, sizeof(cpuset), &cpuset) < 0) { + perror("Sched_setaffinity fail!"); + } +#endif + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + exampleTrackJoint(rpc_cli); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_traj_valid.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_traj_valid.cpp new file mode 100644 index 00000000..381693e4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_traj_valid.cpp @@ -0,0 +1,507 @@ +#include "aubo_sdk/rpc.h" +#include "math.h" +#include +#include +#ifdef WIN32 +#include +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +bool isJointNaN(const std::vector &q, int dof) +{ + for (int i = 0; i < dof; i++) { + if (std::isnan(q[i])) { + return true; + } + } + return false; +} + +bool isJointInRange(const std::vector &q, + const std::vector &upper, + const ::std::vector &lower, int dof) +{ + for (int i = 0; i < dof; i++) { + if (q[i] < (lower[i] - 1e-6) || q[i] > (upper[i] + 1e-6)) { + return false; + } + } + return true; +} + +bool checkJoint(RpcClientPtr impl, const std::vector &q) +{ + auto robot_name = impl->getRobotNames().front(); + auto interface = impl->getRobotInterface(robot_name); + auto dof = interface->getRobotConfig()->getDof(); + auto upper = interface->getRobotConfig()->getJointMaxPositions(); + auto lower = interface->getRobotConfig()->getJointMinPositions(); + if ((int)q.size() != dof || isJointNaN(q, dof)) { + return false; + } + + // 检查关节是否超限 + if (!isJointInRange(q, upper, lower, dof)) { + return false; + } + return true; +} + +// 检查给定的轨迹是否有效,进行插值和逆解验证 +bool exampleTrajectoryValid(RpcClientPtr impl, const std::vector &p1, + const std::vector &p2, int num_points) +{ + // 如果num_points小于2,则无法进行插值 + if (num_points < 2) { + throw std::invalid_argument("num_points must be at least 2"); + } + + // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + impl->getRobotInterface(robot_name)->getRobotConfig()->setTcpOffset(offset); + + // 计算每个插值点的alpha值,并调用interpolatePose + for (int i = 0; i < num_points; ++i) { + double alpha = + static_cast(i) / (num_points - 1); // alpha从0到1均匀变化 + + // 接口调用: 计算线性差值 + auto pose = impl->getMath()->interpolatePose(p1, p2, alpha); + + // 接口调用: 根据计算出的差值位姿,检查是否能找到有效的逆解 + auto result = impl->getRobotInterface(robot_name) + ->getRobotAlgorithm() + ->inverseKinematicsAll(pose); + + if (std::get<1>(result) != 0) { + std::cout << "逆解失败, inverseKinematicsAll返回值:" + << std::get<1>(result) << std::endl; + std::cout << "轨迹规划失败" << std::endl; + return false; + } + auto qs = std::get<0>(result); + for (size_t i = 0; i < qs.size(); ++i) { + if (!checkJoint(impl, qs[i])) { + std::cout << "轨迹规划失败" << std::endl; + return false; + } + } + } + + // 如果所有插值点均有效,表示轨迹规划成功 + std::cout << "轨迹规划成功" << std::endl; + return true; +} + +/** + * 输入两个关节角,检测规划路径是否有效 + * @brief exampleTrajectoryValid3 + * @param impl + * @param p1 位姿1 + * @param blend1 交融半径1 + * @param p2 位姿2 + * @param blend2 交融半径2 + * @param qnear + * @return + */ +bool exampleTrajectoryValid2(RpcClientPtr impl, const std::vector &q1, + double blend1, const std::vector &q2, + double blend2) +{ // 接口调用: 获取机器人的名字 + auto robot_name = impl->getRobotNames().front(); + auto interface = impl->getRobotInterface(robot_name); + // 接口调用: 设置 tcp 偏移 + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + interface->getRobotConfig()->setTcpOffset(offset); + + auto traj = + interface->getRobotAlgorithm()->pathMovej(q1, blend1, q2, blend2, 0.05); + + for (size_t i = 0; i < traj.size(); ++i) { + if (!checkJoint(impl, traj[i])) { + std::cout << "轨迹规划失败" << std::endl; + return false; + } + } + std::cout << "轨迹规划成功" << std::endl; + return true; +} + +void printValidatePathResult(const std::string &case_name, int ret, + bool expect_success) +{ + std::cout << case_name << " validatePath1 返回值: " << ret + << ", 预期: " << (expect_success ? "通过" : "碰撞失败") + << ", 实际: " << (ret == 0 ? "通过" : "失败") << std::endl; +} + +/** + * 演示 validatePath1 在不同碰撞体配置下的校验结果。 + * + * 说明: + * 1. case0: 不添加任何碰撞体,运动到 target_env_collision,预期通过。 + * 2. case1: 仅添加环境碰撞平面,运动到 target_env_collision,预期碰撞失败。 + * 3. case2: 仅添加环境碰撞平面,运动到 target_tool_collision,预期通过。 + * 4. case3: 添加环境碰撞平面和末端碰撞体,运动到 target_tool_collision, + * 预期碰撞失败。 + * 5. case4: 仅添加末端碰撞体,不添加环境碰撞平面,运动到 + * target_tool_collision, 预期通过。 + */ +bool exampleTrajectoryValid3(RpcClientPtr impl, + const std::vector &start, + const std::vector &target_env_collision, + const std::vector &target_tool_collision) +{ + auto robot_name = impl->getRobotNames().front(); + auto interface = impl->getRobotInterface(robot_name); + auto algorithm = interface->getRobotAlgorithm(); + + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + interface->getRobotConfig()->setTcpOffset(offset); + + // 清理可能残留的同名碰撞体,避免重复添加影响示例结果。 + algorithm->removeCollisionObject("tool_box_demo"); + algorithm->removeCollisionObject("collision_plane_demo"); + + const int pose_path_type = 1; + const double blend_radius = 0.0; + const double step = 0.05; + + std::cout << "开始 validatePath1 碰撞体示例" << std::endl; + std::cout << "返回值说明: 0 表示通过,非 0 表示失败;-22 通常表示路径碰撞" + << std::endl; + + // case0: 不添加任何碰撞体,向下运动到环境碰撞目标点,作为基线。 + int case0_ret = algorithm->validatePath1(pose_path_type, start, + blend_radius, target_env_collision, + blend_radius, step, true); + printValidatePathResult("[case0 无碰撞体]", case0_ret, true); + + auto add_collision_plane = [&]() { + return algorithm->addCollisionBox( + "collision_plane_demo", "world", { { 0.12, 0.12, 0.10 } }, + { { start[0], start[1], -0.05, 0.0, 0.0, 0.0 } }); + }; + + auto add_tool_box = [&]() { + return algorithm->addCollisionBox( + "tool_box_demo", "end_effector", { { 0.08, 0.08, 0.08 } }, + { { 0.0, 0.0, 0.04, 0.0, 0.0, 0.0 } }); + }; + + // 添加一个较小的环境碰撞平面,并放到起点正下方附近, + // 避免尺寸过大时仍然与底座区域重叠。 + int ret = add_collision_plane(); + if (ret != 0) { + std::cout << "添加环境碰撞平面失败, ret = " << ret << std::endl; + return false; + } + + // case1: 仅添加环境碰撞平面,向下运动到环境碰撞目标点,预期碰撞失败。 + int case1_ret = algorithm->validatePath1(pose_path_type, start, + blend_radius, target_env_collision, + blend_radius, step, true); + printValidatePathResult("[case1 仅环境碰撞平面]", case1_ret, false); + + // case2: 仅添加环境碰撞平面,向下运动到工具碰撞目标点,预期仍可通过。 + int case2_ret = algorithm->validatePath1( + pose_path_type, start, blend_radius, target_tool_collision, + blend_radius, step, true); + printValidatePathResult("[case2 仅环境碰撞平面]", case2_ret, true); + + // 在末端挂一个立方体,用于演示工具与环境的碰撞检测。 + ret = add_tool_box(); + if (ret != 0) { + std::cout << "添加末端立方体失败, ret = " << ret << std::endl; + algorithm->removeCollisionObject("collision_plane_demo"); + return false; + } + + // case3: 添加环境碰撞平面和末端碰撞体,运动到同一个工具碰撞目标点, + // 预期末端碰撞体先碰到环境碰撞平面。 + int case3_ret = algorithm->validatePath1( + pose_path_type, start, blend_radius, target_tool_collision, + blend_radius, step, true); + printValidatePathResult("[case3 环境碰撞平面+末端碰撞体]", case3_ret, + false); + + algorithm->removeCollisionObject("collision_plane_demo"); + + // case4: 移除环境碰撞平面,仅保留末端碰撞体,运动到工具碰撞目标点, + // 预期仍可通过。 + int case4_ret = algorithm->validatePath1( + pose_path_type, start, blend_radius, target_tool_collision, + blend_radius, step, true); + printValidatePathResult("[case4 仅末端碰撞体]", case4_ret, true); + + algorithm->removeCollisionObject("tool_box_demo"); + + return case0_ret == 0 && case1_ret != 0 && case2_ret == 0 && + case3_ret != 0 && case4_ret == 0; +} + +void printVector(const std::vector &vec) +{ + std::cout << "[ "; + for (size_t i = 0; i < vec.size(); ++i) { + std::cout << vec[i]; + if (i != vec.size() - 1) { + std::cout << ", "; + } + } + std::cout << " ]" << std::endl; +} + +void exampleTrajectoryValid4(RpcClientPtr impl) +{ + auto robot_name = impl->getRobotNames().front(); + auto interface = impl->getRobotInterface(robot_name); + auto algorithm = interface->getRobotAlgorithm(); + + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + interface->getRobotConfig()->setTcpOffset(offset); + + // 角度转弧度常量 + const double PI = acos(-1.0); + const double DEG2RAD = PI / 180.0; + + // 你的关节角数组(完全对应 Lua 代码) + std::vector> joint_positions = { + { 86.3200 * DEG2RAD, 20.0000 * DEG2RAD, -126.9900 * DEG2RAD, + -40.0000 * DEG2RAD, -87.1600 * DEG2RAD, 0.0 * DEG2RAD }, + { 112.7723 * DEG2RAD, 53.3426 * DEG2RAD, -56.2858 * DEG2RAD, + -19.5524 * DEG2RAD, -90.1026 * DEG2RAD, 22.835 * DEG2RAD }, + { 112.7723 * DEG2RAD, 53.3426 * DEG2RAD, -56.2858 * DEG2RAD, + -19.5524 * DEG2RAD, -90.1026 * DEG2RAD, 22.835 * DEG2RAD }, + { 121.6682 * DEG2RAD, 29.9312 * DEG2RAD, -98.1711 * DEG2RAD, + -38.0263 * DEG2RAD, -90.0785 * DEG2RAD, 31.7343 * DEG2RAD }, + { 121.9946 * DEG2RAD, 29.4157 * DEG2RAD, -99.0255 * DEG2RAD, + -38.3652 * DEG2RAD, -90.0779 * DEG2RAD, 32.0608 * DEG2RAD }, + { 121.9946 * DEG2RAD, 29.4157 * DEG2RAD, -99.0255 * DEG2RAD, + -38.3652 * DEG2RAD, -90.0779 * DEG2RAD, 32.0608 * DEG2RAD }, + { 90.0000 * DEG2RAD, -45.0000 * DEG2RAD, -150.0000 * DEG2RAD, + -90.0000 * DEG2RAD, -90.0000 * DEG2RAD, 0.0 * DEG2RAD } + }; + auto ret = interface->getRobotAlgorithm()->mergeDenseWaypoints( + 0, joint_positions, 0.005); + if (std::get<1>(ret) == 0) { + auto out = std::get<0>(ret); + for (int i = 0; i < out.size(); ++i) { + printVector(out[i]); + } + } +} + +/** + * 演示通过 mergeDenseWaypoints 判断相邻点是否过密,过密则忽略点位。 + */ +bool exampleTrajectoryValid5(RpcClientPtr impl) +{ + auto robot_name = impl->getRobotNames().front(); + auto interface = impl->getRobotInterface(robot_name); + auto algorithm = interface->getRobotAlgorithm(); + + std::vector offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + interface->getRobotConfig()->setTcpOffset(offset); + + const double PI = acos(-1.0); + const double DEG2RAD = PI / 180.0; + const int joint_path_type = 0; + const double min_segment_length = 0.005; + const double blend_radius = 0.005; + const double max_acc = 80 * DEG2RAD; + const double max_vel = 60 * DEG2RAD; + + std::vector> joint_positions = { + { 86.3200 * DEG2RAD, 20.0000 * DEG2RAD, -126.9900 * DEG2RAD, + -40.0000 * DEG2RAD, -87.1600 * DEG2RAD, 0.0 * DEG2RAD }, + { 112.7723 * DEG2RAD, 53.3426 * DEG2RAD, -56.2858 * DEG2RAD, + -19.5524 * DEG2RAD, -90.1026 * DEG2RAD, 22.835 * DEG2RAD }, + { 112.7723 * DEG2RAD, 53.3426 * DEG2RAD, -56.2858 * DEG2RAD, + -19.5524 * DEG2RAD, -90.1026 * DEG2RAD, 22.835 * DEG2RAD }, + { 121.6682 * DEG2RAD, 29.9312 * DEG2RAD, -98.1711 * DEG2RAD, + -38.0263 * DEG2RAD, -90.0785 * DEG2RAD, 31.7343 * DEG2RAD }, + { 121.9946 * DEG2RAD, 29.4157 * DEG2RAD, -99.0255 * DEG2RAD, + -38.3652 * DEG2RAD, -90.0779 * DEG2RAD, 32.0608 * DEG2RAD }, + { 121.9946 * DEG2RAD, 29.4157 * DEG2RAD, -99.0255 * DEG2RAD, + -38.3652 * DEG2RAD, -90.0779 * DEG2RAD, 32.0608 * DEG2RAD }, + { 90.0000 * DEG2RAD, -45.0000 * DEG2RAD, -150.0000 * DEG2RAD, + -90.0000 * DEG2RAD, -90.0000 * DEG2RAD, 0.0 * DEG2RAD } + }; + + // 从当前点开始比较。 + std::vector last_executed = + interface->getRobotState()->getJointPositions(); + + // 开启运行时。 + auto runtime = impl->getRuntimeMachine(); + auto start_time = std::chrono::steady_clock::now(); + int task_id = -1; + int start_ret = runtime->start(); + if (start_ret != AUBO_OK) { + std::cerr << "开启运行时失败, 返回值: " << start_ret << std::endl; + return false; + } + std::this_thread::sleep_for(std::chrono::milliseconds(20)); + while (task_id == -1) { + if (std::chrono::duration_cast( + std::chrono::steady_clock::now() - start_time) + .count() > 500) { + std::cerr << "等待运行时任务创建超时" << std::endl; + runtime->abort(); + return false; + } + auto context_result = runtime->getPlanContext(); + task_id = std::get<0>(context_result); + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + + bool success = true; + int line_number = 0; + for (size_t i = 0; i < joint_positions.size(); ++i) { + // 判断目标点是否过近。 + auto merge_ret = algorithm->mergeDenseWaypoints( + joint_path_type, { last_executed, joint_positions[i] }, + min_segment_length); + if (std::get<1>(merge_ret) != AUBO_OK) { + std::cout << "[失败] 点位[" << i + << "] mergeDenseWaypoints 返回值: " + << std::get<1>(merge_ret) << std::endl; + std::cout << " 点位值: "; + printVector(joint_positions[i]); + success = false; + break; + } + + if (std::get<0>(merge_ret).size() < 2) { + std::cout << "[跳过] 点位[" << i + << "], 判定过近, 未下发 moveJoint" << std::endl; + std::cout << " 点位值: "; + printVector(joint_positions[i]); + continue; + } + + const double current_blend_radius = + (line_number == 0 || i + 1 == joint_positions.size()) + ? 0.0 + : blend_radius; + + // 带交融执行点位。 + std::cout << "[执行] 点位[" << i << "]" << std::endl; + std::cout << " 点位值: "; + printVector(joint_positions[i]); + int current_line = line_number + 1; + runtime->setLabel(current_line, "moveJoint"); + int move_ret = interface->getMotionControl()->moveJoint( + joint_positions[i], max_acc, max_vel, current_blend_radius, 0); + if (move_ret != AUBO_OK) { + std::cout << "[失败] 点位[" << i + << "]失败, moveJoint 返回值: " << move_ret << std::endl; + std::cout << " 点位值: "; + printVector(joint_positions[i]); + success = false; + break; + } + line_number = current_line; + last_executed = joint_positions[i]; + } + + // 等待最后一个执行点到位。 + while (success && line_number > 0) { + if (runtime->getRuntimeState() != RuntimeState::Running) { + break; + } + auto context_result = runtime->getPlanContext(); + int current_line = std::get<1>(context_result); + if (current_line >= line_number && + interface->getMotionControl()->getExecId() == -1) { + break; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + + // 终止运行时。 + runtime->abort(); + return success; +} + +#define LOCAL_IP "127.0.0.1" + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时, 单位: ms + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 起始位姿和目标位姿 + std::vector pose1 = { 0.551, -0.295, 0.261, -3.135, 0.0, 1.569 }; + std::vector pose2 = { 0.551, 0.295, 0.261, -3.135, 0.0, 0 }; + + // 插值点数量 + int num_points = 30; + + // 检查给定的轨迹是否有效,进行插值和逆解验证 + // exampleTrajectoryValid(rpc_cli, pose1, pose2, num_points); + + // exampleTrajectoryValid3 + // 使用示教器读到的位姿作为起点,分别演示五种碰撞校验场景。 + // env_collision_drop: 下压量超过 start_z,末端 TCP 本体会碰到环境碰撞平面。 + // tool_collision_drop: 下压量小于 start_z,仅添加末端碰撞体时才会碰撞。 + + // std::vector pose_start = { 1.27114, -0.24923, 0.80691, + // -3.135, 0.004, 1.569 }; + // const double start_z = pose_start[2]; + // const double env_collision_drop = start_z + 0.02; + // const double tool_collision_drop = start_z - 0.06; + // std::vector pose_env_collision = { + // 1.27114, -0.24923, start_z - env_collision_drop, -3.135, + // 0.004, 1.569 + // }; + // std::vector pose_tool_collision = { + // 1.27114, -0.24923, start_z - tool_collision_drop, -3.135, + // 0.004, 1.569 + // }; + + // exampleTrajectoryValid3(rpc_cli, pose_start, pose_env_collision, + // pose_tool_collision); + + // exampleTrajectoryValid4(rpc_cli); + exampleTrajectoryValid5(rpc_cli); + + // exampleTrajectoryValid2 + // 关节角,单位: 弧度 + // std::vector q1 = { + // 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + // 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + // }; + + // std::vector q2 = { + // 35.92 * (M_PI / 180), -11.28 * (M_PI / 180), 59.96 * (M_PI / + // 180), -18.76 * (M_PI / 180), 90.0 * (M_PI / 180), 35.92 * (M_PI + // / 180) + // }; + // exampleTrajectoryValid2(rpc_cli, q1, 0, q2, 0); + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_waitarrival.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_waitarrival.cpp new file mode 100644 index 00000000..08e3813a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/example_waitarrival.cpp @@ -0,0 +1,150 @@ +#include +#include "aubo_sdk/rpc.h" +#include "aubo_sdk/rtde.h" +#ifdef WIN32 +#include + +#include +#include +#include +#endif +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +using namespace arcs::common_interface; +using namespace arcs::aubo_sdk; + +bool marks = true; +int line_number_ = -1; +void getIineNumberThread(RpcClientPtr cli) { + auto robot_name = cli->getRobotNames().front(); + auto robot_interface = cli->getRobotInterface(robot_name); + auto robot = robot_interface->getMotionControl(); + while (marks) { + int now_id = robot->getExecId(); + std::cout << "[Info] getExecId() = " << now_id << ", line_number = " << line_number_ << std::endl; + std::this_thread::sleep_for(std::chrono::milliseconds(400)); + } +} +void exampleSubscribe(RtdeClientPtr cli) { + // 接口调用: 设置话题 + int topic6 = cli->setTopic( + false, + { "line_number" }, + 20, 1); + // 接口调用: 订阅 + cli->subscribe(topic6, [](InputParser& parser) { + line_number_ = parser.popInt32(); + }); +} + +int waitArrival(MotionControlPtr robot, int line_number) { + int pre = -1; + while (line_number_ <= line_number ) { + //判断执行到最后一个动作是否结束 + if (line_number == line_number_ && robot->getExecId() == -1) break; + if (pre != line_number_) { + std::cout << "当前运行的行号:" << line_number_ << std::endl; + } + pre = line_number_; + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + } + return 0; +} +void exampleLineNumber(RpcClientPtr cli) { + auto robot_name = cli->getRobotNames().front(); + + auto robot_interface = cli->getRobotInterface(robot_name); + + + auto robot = robot_interface->getMotionControl(); + + auto runtime_machine = cli->getRuntimeMachine(); + + robot->setSpeedFraction(0.75); + + std::thread t(getIineNumberThread, cli); + + std::vector p1 = { 0.19428619034678518,-0.5477608722089901,0.05945241593428857,3.0868983663567846,0.535193210204831,-0.6486764986738255 }; + std::vector p2 = { 0.26628055485158936,-0.4452622728139073,0.05943906412892791,3.086882116513631,0.5352135514900898,-1.4571389628082894 }; + std::vector p3 = { 0.476184624335076,-0.3371768923013714,0.059568293687588536,3.088011074607731,0.5343896398560942,-0.7063579432095806 }; + std::vector p4 = { 0.4425770780036432,-0.13597592887177673,0.05922236680382481,3.0911455124422482,0.535789927543353,0.06408754959673374 }; + std::vector p5 = { 0.4839375031260943,0.009252793806966662,0.05899314514545728,3.0916751089973316,0.5363234034471815,-0.741794514981592 }; + + int tid, ret, line_number = 0; + tid = runtime_machine->newTask(); //创建task + runtime_machine->start(); // 开始运行 + + runtime_machine->setPlanContext(tid,++line_number, "line 1"); + robot->moveLine(p1, 2, 0.25, 0, 0); + + runtime_machine->setPlanContext(tid, ++line_number, "line 2"); + robot->moveLine(p2, 2, 0.25, 0, 0); + + robot->setCirclePathMode(0); + runtime_machine->setPlanContext(tid, ++line_number, "circle 3"); + robot->moveCircle(p3, p4, 2, 0.25, 0, 0); + + runtime_machine->setPlanContext(tid, ++line_number, "line 4"); + robot->moveLine(p5, 2, 0.25, 0, 0); + + waitArrival(robot, line_number); + + runtime_machine->stop(); + runtime_machine->deleteTask(tid); //删除task + marks = false; + t.join(); +} + +/** + * 功能: 机器臂运行行号输出 + * 步骤: + * 第一步: 连接 RTDE 服务、机械臂登录 + * 第二步: 设置 RPC 超时、连接到 RPC 服务、登录 + * 第三步: 设置RTDE输入 + * 第四步: 信息输出 + * 第五步: RTDE 退出登录、断开连接 + * 第六步: RPC 退出登录、断开连接 + */ + +#define LOCAL_IP "192.168.1.103" + +int main(int argc, char** argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + + auto rtde_cli = std::make_shared(); + // 接口调用: 连接到 RTDE 服务 + rtde_cli->connect(LOCAL_IP, 30010); + // 接口调用: 登录 + rtde_cli->login("aubo", "123456"); + + //订阅行号信息 + exampleSubscribe(rtde_cli); + + auto rpc_cli = std::make_shared(); + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + + exampleLineNumber(rpc_cli); + + // 接口调用: 退出登录 + rtde_cli->logout(); + // 接口调用: 断开连接 + rtde_cli->disconnect(); + + // 接口调用: 退出登录 + rpc_cli->logout(); + // 接口调用: 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/offline_track.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/offline_track.cpp new file mode 100644 index 00000000..c5e5904e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/offline_track.cpp @@ -0,0 +1,304 @@ +#include +#include +#include +#include +#ifdef WIN32 +#include +#endif + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 判断缓存是否有效 +int isBufferValid(RobotInterfacePtr impl) +{ + // 调用pathBufferValid最大的重试次数 + int max_retry_count = 5; + // 调用pathBufferValid的次数 + int cnt = 0; + bool isValid = impl->getMotionControl()->pathBufferValid("rec"); + + while (!isValid) { + if (cnt++ > max_retry_count) { + return -1; + } + isValid = impl->getMotionControl()->pathBufferValid("rec"); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + return 0; +} + +#define LOCAL_IP "127.0.0.1" + +auto rpc_cli = std::make_shared(); +int task_id; + +// 定义信号处理函数 +void signalHandler(int signal) +{ + if (signal == SIGINT) { + std::cout << "Received SIGINT signal." << std::endl; + if (rpc_cli) { + rpc_cli->getRuntimeMachine()->stop(); + rpc_cli->getRuntimeMachine()->deleteTask(task_id); + rpc_cli->logout(); + rpc_cli->disconnect(); + } + // 退出程序 + exit(0); + } +} + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + // 注册信号处理函数 + signal(SIGINT, signalHandler); + + // 读取轨迹文件 + // + // CoffeCappuccino-heart-R_filtered.csv文件中的路点是TCP相对于用户坐标系下的 + // auto filename = "../trajs/CoffeCappuccino-heart-R_filtered.csv"; + auto filename = "../trajs/CoffeCappuccino-heart-L_filtered.csv"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(10000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(1); + + // TCP相对于法兰盘中心的偏移位姿 + std::vector tcp_offset(6); + tcp_offset[0] = -0.093; + tcp_offset[1] = 0.0007249; + tcp_offset[2] = 0.152; + tcp_offset[3] = 90.66 / 180.0 * M_PI; + tcp_offset[4] = -0.7635 / 180.0 * M_PI; + tcp_offset[5] = -91.49 / 180.0 * M_PI; + // std::vector tcp_offset(6); + // tcp_offset[0] = 0.0; + // tcp_offset[1] = 0.0; + // tcp_offset[2] = 0.0; + // tcp_offset[3] = 0.0; + // tcp_offset[4] = 0.0; + // tcp_offset[5] = 0.0; + + // 接口调用: 设置TCP相对于法兰盘中心的偏移 + robot_interface->getRobotConfig()->setTcpOffset(tcp_offset); + + // 三个标定点的位姿 + std::vector coord_q0(6), coord_q1(6), coord_q2(6); + coord_q0[0] = -1.627214; + coord_q0[1] = -0.360182; + coord_q0[2] = 1.783065; + coord_q0[3] = -1.063912; + coord_q0[4] = -1.642473; + coord_q0[5] = -1.510366; + + coord_q1[0] = -0.806772; + coord_q1[1] = -0.344142; + coord_q1[2] = 1.806783; + coord_q1[3] = -1.079834; + coord_q1[4] = -0.824188; + coord_q1[5] = -1.444983; + + coord_q2[0] = -0.702519; + coord_q2[1] = -0.105247; + coord_q2[2] = 2.113576; + coord_q2[3] = -1.022056; + coord_q2[4] = -0.720357; + coord_q2[5] = -1.430912; + + // 接口调用: 正解求出标定点的关节角 + auto [coord_p0, ret0] = + robot_interface->getRobotAlgorithm()->forwardKinematics(coord_q0); + auto [coord_p1, ret1] = + robot_interface->getRobotAlgorithm()->forwardKinematics(coord_q1); + auto [coord_p2, ret2] = + robot_interface->getRobotAlgorithm()->forwardKinematics(coord_q2); + + // 接口调用: 用户坐标系标定 + auto [coord, ret3] = rpc_cli->getMath()->calibrateCoordinate( + { coord_p0, coord_p1, coord_p2 }, 0); + + // 创建了一个名为 traj_q 的变量, + // 其类型与表达式 traj 的类型相同 + decltype(traj) traj_q; + + // 接口调用: 开启规划器运行 + rpc_cli->getRuntimeMachine()->start(); + auto cur_plan_context = rpc_cli->getRuntimeMachine()->getPlanContext(); + // 接口调用: 获取新的线程id + task_id = rpc_cli->getRuntimeMachine()->newTask(); + rpc_cli->getRuntimeMachine()->setPlanContext( + task_id, std::get<1>(cur_plan_context), std::get<2>(cur_plan_context)); + + // 接口调用: 关节运动到原点 + auto home_q = { 0.0, + -15.0 / 180 * M_PI, + 100.0 / 180 * M_PI, + 25.0 / 180 * M_PI, + 90.0 / 180 * M_PI, + 0.0 }; + robot_interface->getMotionControl()->moveJoint(home_q, 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到原点成功" << std::endl; + } else { + std::cout << "关节运动到原点失败" << std::endl; + } + + // 接口调用: 获取当前的关节角, + // 作为代码后面的逆解的参考关节角 + auto current_q = robot_interface->getRobotState()->getJointPositions(); + + // 将轨迹文件中TCP在用户坐标系下的路点位姿转化成TCP在基坐标系下的路点位姿, + // 再逆解求出关节角, + // 并将路点的关节角保存在变量traj_q中 + for (const auto &p : traj) { + // 接口调用: 获得 TCP 在基坐标系下的位姿 + auto rp = rpc_cli->getMath()->poseTrans(coord, p); + // 接口调用: 逆解获得关节角 + auto [q, ret] = robot_interface->getRobotAlgorithm()->inverseKinematics( + current_q, rp); + current_q = q; + traj_q.push_back(q); + } + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(traj_q[0], 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 清除缓存"rec" + robot_interface->getMotionControl()->pathBufferFree("rec"); + + // 接口调用: 新建一个缓存"rec",并指定轨迹运动类型和轨迹点数量 + robot_interface->getMotionControl()->pathBufferAlloc("rec", 3, traj_sz); + + // 将轨迹文件中的路点分组添加到路径缓存中, + // 以10个点为1组, + // 如果未添加的路点数量小于或者等于10时,则作为最后一组来添加 + size_t offset = 10; + auto it = traj_q.begin(); + while (true) { + std::cout << "添加轨迹路点 " << offset << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, it + 10 }); + it += 10; + if (offset + 10 >= traj_sz) { + std::cout << "添加轨迹路点 " << traj_sz << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, traj_q.end() }); + break; + } + + offset += 10; + } + + // 接口调用: 计算、优化等耗时操作,来对轨迹进行优化 + robot_interface->getMotionControl()->pathBufferEval( + "rec", { 3, 3, 3, 3, 3, 3 }, { 2, 2, 2, 2, 2, 2 }, 0); + + // 判断路径缓存是否有效 + if (isBufferValid(robot_interface) == -1) { + std::cerr << "路径缓存无效,无法进行轨迹运动" << std::endl; + } else { + // 接口调用: 执行轨迹运动 + robot_interface->getMotionControl()->movePathBuffer("rec"); + + // 等待轨迹运动完成 + ret = waitArrival(robot_interface); + if (ret == -1) { + std::cerr << "轨迹运动失败" << std::endl; + } else { + std::cout << "轨迹运动结束" << std::endl; + } + } + + // 接口调用: 停止规划器运行 + rpc_cli->getRuntimeMachine()->stop(); + // 接口调用: 删除线程 + rpc_cli->getRuntimeMachine()->deleteTask(task_id); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/record.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/record.cpp new file mode 100644 index 00000000..3dc39075 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/record.cpp @@ -0,0 +1,214 @@ +#include +#include +#include +#ifdef WIN32 +#include +#endif +#include + +#include "aubo_sdk/rpc.h" +#include "trajectory_io.h" + +using namespace arcs::aubo_sdk; +using namespace arcs::common_interface; + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +// 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 +int waitArrival(RobotInterfacePtr impl) +{ + // 接口调用: 获取当前的运动指令 ID + int exec_id = impl->getMotionControl()->getExecId(); + + int cnt = 0; + // 在等待机械臂开始运动时,获取exec_id最大的重试次数 + int max_retry_count = 50; + + // 等待机械臂开始运动 + while (exec_id == -1) { + if (cnt++ > max_retry_count) { + return -1; + } + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + // 等待机械臂动作完成 + while (exec_id != -1) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); + exec_id = impl->getMotionControl()->getExecId(); + } + + return 0; +} + +// 判断缓存是否有效 +int isBufferValid(RobotInterfacePtr impl) +{ + // 调用pathBufferValid最大的重试次数 + int max_retry_count = 5; + // 调用pathBufferValid的次数 + int cnt = 0; + bool isValid = impl->getMotionControl()->pathBufferValid("rec"); + + while (!isValid) { + if (cnt++ > max_retry_count) { + return -1; + } + isValid = impl->getMotionControl()->pathBufferValid("rec"); + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + } + return 0; +} + +#define LOCAL_IP "127.0.0.1" + +auto rpc_cli = std::make_shared(); +int task_id; + +// 定义信号处理函数 +void signalHandler(int signal) +{ + if (signal == SIGINT) { + std::cout << "Received SIGINT signal." << std::endl; + if (rpc_cli) { + rpc_cli->getRuntimeMachine()->stop(); + rpc_cli->getRuntimeMachine()->deleteTask(task_id); + rpc_cli->logout(); + rpc_cli->disconnect(); + } + // 退出程序 + exit(0); + } +} + +int main(int argc, char **argv) +{ +#ifdef WIN32 + // 将Windows控制台输出代码页设置为 UTF-8 + SetConsoleOutputCP(CP_UTF8); +#endif + // 注册信号处理函数 + signal(SIGINT, signalHandler); + + // 读取轨迹文件 + auto filename = "../trajs/record6.offt"; + TrajectoryIo input(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.open()) { + return 0; + } + + // 解析轨迹数据 + auto traj = input.parse(); + + // 检查轨迹文件中是否有路点, + // 如果数量为 0,输出错误消息并返回 + auto traj_sz = traj.size(); + if (traj_sz == 0) { + std::cerr << "轨迹文件中的路点数量为0." << std::endl; + return 0; + } + + // 接口调用: 设置 RPC 超时 + rpc_cli->setRequestTimeout(1000); + // 接口调用: 连接到 RPC 服务 + rpc_cli->connect(LOCAL_IP, 30004); + // 接口调用: 登录 + rpc_cli->login("aubo", "123456"); + + // 接口调用: 获取机器人的名字 + auto robot_name = rpc_cli->getRobotNames().front(); + + auto robot_interface = rpc_cli->getRobotInterface(robot_name); + + // 接口调用: 设置机械臂的速度比率 + robot_interface->getMotionControl()->setSpeedFraction(0.3); + + // 接口调用: 开启规划器运行 + rpc_cli->getRuntimeMachine()->start(); + + auto cur_plan_context = rpc_cli->getRuntimeMachine()->getPlanContext(); + // 接口调用: 获取新的线程id + task_id = rpc_cli->getRuntimeMachine()->newTask(); + rpc_cli->getRuntimeMachine()->setPlanContext( + task_id, std::get<1>(cur_plan_context), std::get<2>(cur_plan_context)); + + // 接口调用: 关节运动到轨迹文件中的第一个路点 + robot_interface->getMotionControl()->moveJoint(traj[0], 30 * (M_PI / 180), + 30 * (M_PI / 180), 0., 0.); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) { + std::cout << "关节运动到轨迹文件中的第一个路点成功" << std::endl; + } else { + std::cout << "关节运动到轨迹文件中的第一个路点失败" << std::endl; + } + + // 接口调用: 清除缓存"rec" + robot_interface->getMotionControl()->pathBufferFree("rec"); + + // 接口调用: 新建一个缓存"rec",并指定轨迹运动类型和轨迹点数量 + robot_interface->getMotionControl()->pathBufferAlloc("rec", 2, traj_sz); + + // 将轨迹文件中的路点分组添加到路径缓存中, + // 以10个点为1组, + // 如果未添加的路点数量小于或者等于10时,则作为最后一组来添加 + size_t offset = 10; + auto it = traj.begin(); + while (true) { + std::cout << "添加轨迹路点 " << offset << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, it + 10 }); + it += 10; + if (offset + 10 >= traj_sz) { + std::cout << "添加轨迹路点 " << traj_sz << std::endl; + // 接口调用: 添加轨迹路点道缓存路径中 + robot_interface->getMotionControl()->pathBufferAppend( + "rec", std::vector>{ it, traj.end() }); + break; + } + + offset += 10; + } + + // 轨迹文件中的采样间隔 + double interval = 0.005; + + // 接口调用: 计算、优化等耗时操作,来对轨迹进行优化 + robot_interface->getMotionControl()->pathBufferEval( + "rec", { 1, 1, 1, 1, 1, 1 }, { 1, 1, 1, 1, 1, 1 }, interval); + + // 判断路径缓存是否有效 + if (isBufferValid(robot_interface) == -1) { + std::cerr << "路径缓存无效,无法进行轨迹运动" << std::endl; + } else { + // 接口调用: 执行轨迹运动 + robot_interface->getMotionControl()->movePathBuffer("rec"); + + // 等待轨迹运动完成 + ret = waitArrival(robot_interface); + if (ret == -1) { + std::cerr << "轨迹运动失败" << std::endl; + } else { + std::cout << "轨迹运动结束" << std::endl; + } + } + + // 接口调用: 停止规划器运行 + rpc_cli->getRuntimeMachine()->stop(); + // 接口调用: 删除线程 + rpc_cli->getRuntimeMachine()->deleteTask(task_id); + + // 接口调用: RPC 退出登录 + rpc_cli->logout(); + // 接口调用: RPC 断开连接 + rpc_cli->disconnect(); + + return 0; +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/CMakeLists.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/CMakeLists.txt new file mode 100644 index 00000000..f8343655 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.16) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +add_executable(example_robot_proxy + main.cpp + widget.cpp + widget.h + widget.ui +) +target_link_libraries(example_robot_proxy PRIVATE ${SDK_LIB} ${PROXY_LIB} Qt5::Widgets) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/main.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/main.cpp new file mode 100644 index 00000000..d57774ae --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/main.cpp @@ -0,0 +1,11 @@ +#include "widget.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Widget w; + w.show(); + return a.exec(); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.cpp b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.cpp new file mode 100644 index 00000000..c63dea40 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.cpp @@ -0,0 +1,49 @@ +#include "widget.h" +#include "./ui_widget.h" + +Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) +{ + ui->setupUi(this); + robot_proxy_ = std::make_shared(); +} + +Widget::~Widget() +{ + delete ui; +} + +void Widget::on_ip_edit_textEdited(const QString &arg1) +{ + ip_ = arg1; +} + +void Widget::on_port_edit_textEdited(const QString &arg1) +{ + port_ = arg1.toInt(); +} + +void Widget::on_connect_btn_clicked() +{ + if (!ui->ip_edit->text().isEmpty()) { + if (!ui->port_edit->text().isEmpty()) { + robot_proxy_->connect(ip_, port_); + robot_proxy_->login("aubo", "123456"); + } else { + ui->port_edit->setStyleSheet( + "QLineEdit{border:1px solid rgb(255, 0, 0);}"); + QString str = QString::fromLocal8Bit("Please input robot port!"); + ui->port_edit->setToolTip( + QStringLiteral("Please input robot port!")); + } + } else { + ui->ip_edit->setStyleSheet( + "QLineEdit{border:1px solid rgb(255, 0, 0);}"); + QString str = QString::fromLocal8Bit("Please input robot ip!"); + ui->ip_edit->setToolTip(QStringLiteral("Please input robot ip!")); + } +} + +void Widget::on_disconnect_btn_clicked() +{ + robot_proxy_->disconnectFromServer(); +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.h new file mode 100644 index 00000000..1bdca3a5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.h @@ -0,0 +1,38 @@ +#ifndef WIDGET_H +#define WIDGET_H + +#include +#include "robot_proxy/robot_proxy.h" +using namespace arcs::aubo_sdk; + +QT_BEGIN_NAMESPACE +namespace Ui { +class Widget; +} +QT_END_NAMESPACE + +class Widget : public QWidget +{ + Q_OBJECT + +public: + Widget(QWidget *parent = nullptr); + ~Widget(); + +private slots: + + void on_ip_edit_textEdited(const QString &arg1); + + void on_port_edit_textEdited(const QString &arg1); + + void on_connect_btn_clicked(); + + void on_disconnect_btn_clicked(); + +private: + Ui::Widget *ui; + RobotProxyPtr robot_proxy_; + QString ip_; + int port_; +}; +#endif // WIDGET_H diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.ui b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.ui new file mode 100644 index 00000000..da9c2f43 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/robot_proxy/widget.ui @@ -0,0 +1,74 @@ + + + Widget + + + + 0 + 0 + 800 + 600 + + + + Widget + + + + + + 3000 + + + + + 40 + 30 + 621 + 33 + + + + Qt::Horizontal + + + + IP: + + + + + + + + 2000 + + + + + + + + PORT: + + + + + + + + + + connect + + + + + disconnect + + + + + + + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/trajectory_io.h b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/trajectory_io.h new file mode 100644 index 00000000..e58bd8c1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/trajectory_io.h @@ -0,0 +1,98 @@ +#ifndef AUBO_SDK_TRJECTORY_IO_H +#define AUBO_SDK_TRJECTORY_IO_H +#include +#include +#include +#include +#include +#include +#include + +#ifdef WIN32 +#include +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +class TrajectoryIo +{ +public: + // 构造函数,接受要打开的文件名作为参数 + TrajectoryIo(const char *filename) + { + input_file_.open(filename, std::ios::in); + } + + // 检查文件是否成功打开 + bool open() + { + if (!input_file_.is_open()) { + std::cerr << "无法打开轨迹文件. 请检查输入的文件路径是否正确." + << std::endl; + return false; + } + return true; + } + ~TrajectoryIo() { input_file_.close(); } + + // 解析文件中的轨迹数据, + // 并将其转换为一个二维的 std::vector。 + // 它逐行读取文件内容,将每行数据解析为一组 double 数值, + // 并将这些数值存储在一个嵌套的二维向量中。 + std::vector> parse() + { + std::vector> res; + std::string tmp; + int linenum = 1; + while (std::getline(input_file_, tmp, '\n')) { + try { + auto q = split(tmp, ","); + res.push_back(q); + } catch (const char *p) { + std::cerr << "Line: " << linenum << " \"" << p << "\"" + << " is not a number of double" << std::endl; + break; + } + linenum++; + } + return res; + } + + // 切割字符串并转换为 double 类型 + std::vector split(const std::string &str, const char *delim) + { + std::vector res; + if ("" == str) { + return res; + } + // 先将要切割的字符串从string类型转换为char*类型 + char *strs = new char[str.length() + 1]; // 不要忘了 + std::strcpy(strs, str.c_str()); + + char *p = std::strtok(strs, delim); + char *endp = nullptr; + while (p) { + double v = std::strtod(p, &endp); + if (endp[0] != 0 && endp[0] != '\r') { + delete[] strs; + strs = nullptr; + throw p; + } + res.push_back(v); // 存入结果数组 + p = std::strtok(nullptr, delim); + } + + if (strs) { + delete[] strs; + strs = nullptr; + } + + return res; + } + +private: + std::ifstream input_file_; // 输入文件流 +}; +#endif diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetDebug.props b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetDebug.props new file mode 100644 index 00000000..5ccbb0bc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetDebug.props @@ -0,0 +1,24 @@ + + + + + + $(ProjectDir)..\..\..\..\..\include;$(IncludePath) + $(ProjectDir)..\..\..\..\..\lib;$(LibraryPath) + + + + aubo_sdkd.lib;%(AdditionalDependencies) + + + WIN32;%(PreprocessorDefinitions) + stdcpp17 + Default + /utf-8 %(AdditionalOptions) + + + Xcopy "$(ProjectDir)..\..\..\..\..\lib\*.dll" "$(OutDir)" /y + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetRelease.props b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetRelease.props new file mode 100644 index 00000000..4dffac08 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/PropertySheetRelease.props @@ -0,0 +1,25 @@ + + + + + + $(ProjectDir)..\..\..\..\..\include;$(IncludePath) + $(ProjectDir)..\..\..\..\..\lib;$(LibraryPath) + <_PropertySheetDisplayName>PropertySheetRelease + + + + aubo_sdk.lib;%(AdditionalDependencies) + + + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + /utf-8 %(AdditionalOptions) + stdcpp17 + Default + + + Xcopy "$(ProjectDir)..\..\..\..\..\lib\*.dll" "$(OutDir)" /y + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movej/example_movej.vcxproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movej/example_movej.vcxproj new file mode 100644 index 00000000..c18e1bec --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movej/example_movej.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {158fd776-9834-4960-affa-12b750f65a4c} + examplemovej + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movel/example_movel.vcxproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movel/example_movel.vcxproj new file mode 100644 index 00000000..2396d98e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_movel/example_movel.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {39d24690-faa0-45fb-ae13-cd2edcfdbe84} + examplemovel + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_rtde/example_rtde.vcxproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_rtde/example_rtde.vcxproj new file mode 100644 index 00000000..ccf1b023 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_rtde/example_rtde.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {164c6c29-dac6-4acb-a757-a0af0f5b91be} + examplertde + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_servoj2/example_servoj2.vcxproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_servoj2/example_servoj2.vcxproj new file mode 100644 index 00000000..468e7c42 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_servoj2/example_servoj2.vcxproj @@ -0,0 +1,139 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {2bc8e888-f791-48eb-9747-21362e4e247b} + exampleservoj2 + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + Default + stdcpp17 + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_startup/example_startup.vcxproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_startup/example_startup.vcxproj new file mode 100644 index 00000000..6b5baf28 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/example_startup/example_startup.vcxproj @@ -0,0 +1,157 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {87d32d6c-a49c-4b2a-8ed0-a6935d69e5fd} + examplestartup + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + + $(ExecutablePath) + $(ProjectDir)..\..\..\..\..\include;$(IncludePath) + $(ExternalIncludePath) + $(ProjectDir)..\..\..\..\..\lib;$(LibraryPath) + + + $(ProjectDir)..\..\..\..\..\include;$(IncludePath) + $(ProjectDir)..\..\..\..\..\lib;$(LibraryPath) + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + /utf-8 %(AdditionalOptions) + + + Console + true + aubo_sdkd.lib;%(AdditionalDependencies) + + + Xcopy "$(ProjectDir)..\..\..\..\..\lib\*.dll" "$(OutDir)" /y + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + /utf-8 %(AdditionalOptions) + + + Console + true + true + true + aubo_sdk.lib;%(AdditionalDependencies) + + + Xcopy "$(ProjectDir)..\..\..\..\..\lib\*.dll" "$(OutDir)" /y + + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/visual_studio.sln b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/visual_studio.sln new file mode 100644 index 00000000..01c9b39f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/c++/visual_studio/visual_studio.sln @@ -0,0 +1,71 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32825.248 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_startup", "example_startup\example_startup.vcxproj", "{87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_movej", "example_movej\example_movej.vcxproj", "{158FD776-9834-4960-AFFA-12B750F65A4C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_movel", "example_movel\example_movel.vcxproj", "{39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_servoj2", "example_servoj2\example_servoj2.vcxproj", "{2BC8E888-F791-48EB-9747-21362E4E247B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_rtde", "example_rtde\example_rtde.vcxproj", "{164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Debug|x64.ActiveCfg = Debug|x64 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Debug|x64.Build.0 = Debug|x64 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Debug|x86.ActiveCfg = Debug|Win32 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Debug|x86.Build.0 = Debug|Win32 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Release|x64.ActiveCfg = Release|x64 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Release|x64.Build.0 = Release|x64 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Release|x86.ActiveCfg = Release|Win32 + {87D32D6C-A49C-4B2A-8ED0-A6935D69E5FD}.Release|x86.Build.0 = Release|Win32 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Debug|x64.ActiveCfg = Debug|x64 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Debug|x64.Build.0 = Debug|x64 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Debug|x86.ActiveCfg = Debug|Win32 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Debug|x86.Build.0 = Debug|Win32 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Release|x64.ActiveCfg = Release|x64 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Release|x64.Build.0 = Release|x64 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Release|x86.ActiveCfg = Release|Win32 + {158FD776-9834-4960-AFFA-12B750F65A4C}.Release|x86.Build.0 = Release|Win32 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Debug|x64.ActiveCfg = Debug|x64 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Debug|x64.Build.0 = Debug|x64 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Debug|x86.ActiveCfg = Debug|Win32 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Debug|x86.Build.0 = Debug|Win32 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Release|x64.ActiveCfg = Release|x64 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Release|x64.Build.0 = Release|x64 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Release|x86.ActiveCfg = Release|Win32 + {39D24690-FAA0-45FB-AE13-CD2EDCFDBE84}.Release|x86.Build.0 = Release|Win32 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Debug|x64.ActiveCfg = Debug|x64 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Debug|x64.Build.0 = Debug|x64 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Debug|x86.ActiveCfg = Debug|Win32 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Debug|x86.Build.0 = Debug|Win32 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Release|x64.ActiveCfg = Release|x64 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Release|x64.Build.0 = Release|x64 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Release|x86.ActiveCfg = Release|Win32 + {2BC8E888-F791-48EB-9747-21362E4E247B}.Release|x86.Build.0 = Release|Win32 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Debug|x64.ActiveCfg = Debug|x64 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Debug|x64.Build.0 = Debug|x64 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Debug|x86.ActiveCfg = Debug|Win32 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Debug|x86.Build.0 = Debug|Win32 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Release|x64.ActiveCfg = Release|x64 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Release|x64.Build.0 = Release|x64 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Release|x86.ActiveCfg = Release|Win32 + {164C6C29-DAC6-4ACB-A757-A0AF0F5B91BE}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D969B2A6-D164-44B3-A42F-7C111FD6DCE2} + EndGlobalSection +EndGlobal diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/README.md b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/README.md new file mode 100644 index 00000000..86305340 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/README.md @@ -0,0 +1,5 @@ +# auboi5-sdk-for-windows-x86-csharp + +1 将DLL文件存放至 ./auboi5-sdk-for-windows-x86-csharp/bin/x64/Debug +2 将csharp_binding.cs中DllImport的库全部替换为"serviceinterface2.dll" + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example.sln b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example.sln new file mode 100644 index 00000000..04d8fbdf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.35425.106 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp-example", "csharp-example\csharp-example.csproj", "{9E7E89A9-4BBE-4399-BF67-453431AB1AE3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Debug|x64.ActiveCfg = Debug|x64 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Debug|x64.Build.0 = Debug|x64 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Debug|x86.ActiveCfg = Debug|x86 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Debug|x86.Build.0 = Debug|x86 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Release|x64.ActiveCfg = Release|x64 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Release|x64.Build.0 = Release|x64 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Release|x86.ActiveCfg = Release|x86 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C30F1185-4780-4867-B238-8769D191C311} + EndGlobalSection +EndGlobal diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/DemoPE.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/DemoPE.cs new file mode 100644 index 00000000..cf1cfedf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/DemoPE.cs @@ -0,0 +1,1080 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using csharp_example; + + class Program{ + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robotIP = "192.168.204.151"; + //机械臂端口号 + const int serverPort = 30004; + //M_PI + const double M_PI = 3.14159265358979323846; + //接口板用户DI地址 + const int ROBOT_IO_F1 = 30; + const int ROBOT_IO_F2 = 31; + const int ROBOT_IO_F3 = 32; + const int ROBOT_IO_F4 = 33; + const int ROBOT_IO_F5 = 34; + const int ROBOT_IO_F6 = 35; + const int ROBOT_IO_U_DI_00 = 36; + const int ROBOT_IO_U_DI_01 = 37; + const int ROBOT_IO_U_DI_02 = 38; + const int ROBOT_IO_U_DI_03 = 39; + const int ROBOT_IO_U_DI_04 = 40; + const int ROBOT_IO_U_DI_05 = 41; + const int ROBOT_IO_U_DI_06 = 42; + const int ROBOT_IO_U_DI_07 = 43; + const int ROBOT_IO_U_DI_10 = 44; + const int ROBOT_IO_U_DI_11 = 45; + const int ROBOT_IO_U_DI_12 = 46; + const int ROBOT_IO_U_DI_13 = 47; + const int ROBOT_IO_U_DI_14 = 48; + const int ROBOT_IO_U_DI_15 = 49; + const int ROBOT_IO_U_DI_16 = 50; + const int ROBOT_IO_U_DI_17 = 51; + + //接口板用户DO地址 + const int ROBOT_IO_U_DO_00 = 32; + const int ROBOT_IO_U_DO_01 = 33; + const int ROBOT_IO_U_DO_02 = 34; + const int ROBOT_IO_U_DO_03 = 35; + const int ROBOT_IO_U_DO_04 = 36; + const int ROBOT_IO_U_DO_05 = 37; + const int ROBOT_IO_U_DO_06 = 38; + const int ROBOT_IO_U_DO_07 = 39; + const int ROBOT_IO_U_DO_10 = 40; + const int ROBOT_IO_U_DO_11 = 41; + const int ROBOT_IO_U_DO_12 = 42; + const int ROBOT_IO_U_DO_13 = 43; + const int ROBOT_IO_U_DO_14 = 44; + const int ROBOT_IO_U_DO_15 = 45; + const int ROBOT_IO_U_DO_16 = 46; + const int ROBOT_IO_U_DO_17 = 47; + + //接口板用户AI地址 + const int ROBOT_IO_VI0 = 0; + const int ROBOT_IO_VI1 = 1; + const int ROBOT_IO_VI2 = 2; + const int ROBOT_IO_VI3 = 3; + + //接口板用户AO地址 + const int ROBOT_IO_VO0 = 0; + const int ROBOT_IO_VO1 = 1; + const int ROBOT_IO_CO0 = 2; + const int ROBOT_IO_CO1 = 3; + + //接口板IO类型 + // + //接口板用户DI(数字量输入) 可读可写 + const int Robot_User_DI = 4; + //接口板用户DO(数字量输出) 可读可写 + const int Robot_User_DO = 5; + //接口板用户AI(模拟量输入) 可读可写 + const int Robot_User_AI = 6; + //接口板用户AO(模拟量输出) 可读可写 + const int Robot_User_AO = 7; + + //工具端IO类型 + // + //工具端DI + const int Robot_Tool_DI = 8; + //工具端DO + const int Robot_Tool_DO = 9; + //工具端AI + const int Robot_Tool_AI = 10; + //工具端AO + const int Robot_Tool_AO = 11; + //工具端DI + const int Robot_ToolIoType_DI = Robot_Tool_DI; + //工具端DO + const int Robot_ToolIoType_DO = Robot_Tool_DO; + + //工具端IO名称 + const string TOOL_IO_0 = ("T_DI/O_00"); + const string TOOL_IO_1 = ("T_DI/O_01"); + const string TOOL_IO_2 = ("T_DI/O_02"); + const string TOOL_IO_3 = ("T_DI/O_03"); + + //工具端数字IO类型 + // + //输入 + const int TOOL_IO_IN = 0; + //输出 + const int TOOL_IO_OUT = 0; + + //工具端电源类型 + // + const int OUT_0V = 0; + const int OUT_12V = 1; + const int OUT_24V = 2; + + //IO状态-无效 + const double IO_STATUS_INVALID = 0.0; + //IO状态-有效 + const double IO_STATUS_VALID = 1.0; + + //坐标系枚举 + const int BaseCoordinate = 0; + const int EndCoordinate = 1; + const int WorldCoordinate = 2; + + //坐标系标定方法 + const int Origin_AnyPointOnPositiveXAxis_AnyPointOnPositiveYAxis = 0; // 原点、x轴正半轴、y轴正半轴 + const int Origin_AnyPointOnPositiveYAxis_AnyPointOnPositiveZAxis = 1; // 原点、y轴正半轴、z轴正半轴 + const int Origin_AnyPointOnPositiveZAxis_AnyPointOnPositiveXAxis = 2; // 原点、z轴正半轴、x轴正半轴 + const int Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane = 3; // 原点、x轴正半轴、x、y轴平面的第一象限上任意一点 + const int Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOZPlane = 4; // 原点、x轴正半轴、x、z轴平面的第一象限上任意一点 + const int Origin_AnyPointOnPositiveYAxis_AnyPointOnFirstQuadrantOfYOZPlane = 5; // 原点、y轴正半轴、y、z轴平面的第一象限上任意一点 + const int Origin_AnyPointOnPositiveYAxis_AnyPointOnFirstQuadrantOfYOXPlane = 6; // 原点、y轴正半轴、y、x轴平面的第一象限上任意一点 + const int Origin_AnyPointOnPositiveZAxis_AnyPointOnFirstQuadrantOfZOXPlane = 7; // 原点、z轴正半轴、z、x轴平面的第一象限上任意一点 + const int Origin_AnyPointOnPositiveZAxis_AnyPointOnFirstQuadrantOfZOYPlane = 8; // 原点、z轴正半轴、z、y轴平面的第一象限上任意一点 + + //工具标定方法 + const int ToolKinematicsOriCalibrateMathod_xOxy = 0; // 原点、x轴正半轴、x、y轴平面的第一象限上任意一点 + const int ToolKinematicsOriCalibrateMathod_yOyz = 1; // 原点、y轴正半轴、y、z轴平面的第一象限上任意一点 + const int ToolKinematicsOriCalibrateMathod_zOzx = 2; // 原点、z轴正半轴、z、x轴平面的第一象限上任意一点 + const int ToolKinematicsOriCalibrateMathod_TxRBz_TxyPBzAndTyABnz = 3; // 工具x轴平行反向于基坐标系z轴; 工具xOy平面平行于基坐标系z轴、工具y轴与基坐标系负z轴夹角为锐角 + const int ToolKinematicsOriCalibrateMathod_TyRBz_TyzPBzAndTzABnz = 4; // 工具y轴平行反向于基坐标系z轴; 工具yOz平面平行于基坐标系z轴、工具z轴与基坐标系负z轴夹角为锐角 + const int ToolKinematicsOriCalibrateMathod_TzRBz_TzxPBzAndTxABnz = 5; // 工具z轴平行反向于基坐标系z轴; 工具zOx平面平行于基坐标系z轴、工具x轴与基坐标系负z轴夹角为锐角 + + //运动轨迹类型 + // + //圆 + const int ARC_CIR = 2; + //圆弧 + const int CARTESIAN_MOVEP = 3; + + //机械臂状态 + const int RobotStopped = 0; + const int RobotRunning = 1; + const int RobotPaused = 2; + const int RobotResumed = 3; + + //机械臂工作模式 + const int RobotModeSimulator = 0; //机械臂仿真模式 + const int RobotModeReal = 1; //机械臂真实模式 + + + const int RobotRelease = 0; // 释放刹车 + const int RobotBrake = 1; // 刹车 + const int OverspeedWarning = 2; // 拖动示教速度过快报警 + const int OverspeedRecover = 3; // 解除拖动过速报警 + const int DisableForceControl = 4; // 失能力控 + const int EnableForceControl = 5; // 使能力控 + const int OrpeOpen = 6; // 打开上位机软件 + const int OrpeClose = 7; // 关闭上位机软件 + const int EnableReadPose = 8; // 打开读取位姿 + const int DisableReadPose = 9; // 关闭读取位姿 + const int MountingPoseChanged = 10; // 安装位置已改变 + const int MountingPoseUnChanged = 11; // 安装位置未改变 + const int EnableStaticCollisionDetect = 12; // 打开静止碰撞检测 + const int DisableStaticCollisionDetect = 13; // 关闭静止碰撞检测 + const int ClearSingularityOverSpeedAlarm = 14; // 解除机械臂奇异点过速警告 + const int ClearRobotCurrentAlarm = 15; // 解除机械臂电流错误警告RobotRelease + + + static int checkUsercoordExample() + { + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + + //检查用户坐标系参数设置是否合理 + user_coord.coordType = WorldCoordinate; + //坐标系标定方法xoxy + user_coord.methods = Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + //为了简化,使用法兰盘中心为工具端 + user_coord.toolDesc.cartPos.x = 0; + user_coord.toolDesc.cartPos.y = 0; + user_coord.toolDesc.cartPos.z = 0; + user_coord.toolDesc.orientation.w = 1; + user_coord.toolDesc.orientation.x = 0; + user_coord.toolDesc.orientation.y = 0; + user_coord.toolDesc.orientation.z = 0; + //原点 + user_coord.jointPara[0].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[1] = -7.291862 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[2] = -75.694718 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[3] = 21.596727 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[5] = -0.00458 / 180 * M_PI; + //x轴正半轴上一点 + user_coord.jointPara[1].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[1] = -1.106149 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[2] = -55.497882 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[3] = 35.608266 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[5] = -0.000458 / 180 * M_PI; + //x、y轴平面的第一象限上任意一点 + user_coord.jointPara[2].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[1] = -9.503956 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[2] = -113.279220 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[3] = -13.775266 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[5] = -0.000458 / 180 * M_PI; + + //检查用户坐标系参数设置是否合理 + if (RSERR_SUCC == cSharpBinding.rs_check_user_coord(rshd, ref user_coord)) + { + Console.Out.WriteLine("user coord check ok."); + } + else + { + Console.Out.WriteLine("user coord check failed!"); + } + return 0; + } + + static int relativeOffsetExample() + { + + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + + cSharpBinding.MoveRelative relative = new cSharpBinding.MoveRelative(); + IntPtr pt_relative = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.MoveRelative))); + relative = (cSharpBinding.MoveRelative)Marshal.PtrToStructure(pt_relative, typeof(cSharpBinding.MoveRelative)); + relative.enable = 1; + relative.orientation.w = 1; + relative.orientation.x = 0; + relative.orientation.y = 0; + relative.orientation.z = 0; + relative.pos[0] = 0; + relative.pos[1] = 0; + relative.pos[2] = 0.1F; + + double[] target0 = { 0, 0, 0, 0, 0, 0 }; //注意这个里面的值是弧度! + target0[0] = -0.000172 / 180 * M_PI; + target0[1] = -7.291862 / 180 * M_PI; + target0[2] = -75.694718 / 180 * M_PI; + target0[3] = 21.596727 / 180 * M_PI; + target0[4] = -89.999982 / 180 * M_PI; + target0[5] = -0.00458 / 180 * M_PI; + + user_coord.coordType = BaseCoordinate; + //移动到坐标系原点 + cSharpBinding.rs_move_joint(rshd, target0, true); + //相对坐标系原点沿z轴正向运动 + cSharpBinding.rs_set_relative_offset_on_user(rshd, ref relative, ref user_coord); + cSharpBinding.rs_move_line(rshd, target0, true); + return 0; + } + + static int baseToUserExample() + { + //基座坐标系转用户坐标系 + cSharpBinding.Ori ori_onbase = new cSharpBinding.Ori(); + cSharpBinding.Pos pos_onbase = new cSharpBinding.Pos(); + cSharpBinding.ToolInEndDesc tool_pos = new cSharpBinding.ToolInEndDesc(); + cSharpBinding.Pos pos_onuser = new cSharpBinding.Pos(); + cSharpBinding.Ori ori_onuser = new cSharpBinding.Ori(); + cSharpBinding.wayPoint_S waypoint = new cSharpBinding.wayPoint_S(); + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + user_coord.coordType = WorldCoordinate; + user_coord.methods= Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + //为了简化,使用法兰盘中心为工具端 + user_coord.toolDesc.cartPos.x = 0; + user_coord.toolDesc.cartPos.y = 0; + user_coord.toolDesc.cartPos.z = 0; + user_coord.toolDesc.orientation.w = 1; + user_coord.toolDesc.orientation.x = 0; + user_coord.toolDesc.orientation.y = 0; + user_coord.toolDesc.orientation.z = 0; + //原点 + user_coord.jointPara[0].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[1] = -7.291862 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[2] = -75.694718 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[3] = 21.596727 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[5] = -0.00458 / 180 * M_PI; + //x轴正半轴上一点 + user_coord.jointPara[1].jointRadian[0] = 11.116932 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[1] = -0.858816 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[2] = -64.008663 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[3] = 26.850182 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[4] = -90.000064 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[5] = 11.116645 / 180 * M_PI; + //x、y轴平面的第一象限上任意一点 + user_coord.jointPara[2].jointRadian[0] = 9.012562 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[1] = 13.378931 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[2] = -47.871256 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[3] = 28.749813 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[4] = -90.000064 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[5] = 9.012275 / 180 * M_PI; + user_coord.coordType = WorldCoordinate; + //首先获取当前位置 + cSharpBinding.rs_get_current_waypoint(rshd, ref waypoint); + //打印路点信息 + cSharpBinding.PrintWaypoint(waypoint); + ori_onbase = waypoint.orientation; + pos_onbase = waypoint.cartPos; + tool_pos.orientation.w = 1; + tool_pos.orientation.x = 0; + tool_pos.orientation.y = 0; + tool_pos.orientation.z = 0; + tool_pos.cartPos.x = 0; + tool_pos.cartPos.y = 0; + tool_pos.cartPos.z = 0; + + //基座坐标系转用户坐标系 + cSharpBinding.rs_base_to_user(rshd, ref pos_onbase, ref ori_onbase, ref user_coord, ref tool_pos, ref pos_onuser, ref ori_onuser); + + return 0; + } + static int userToBaseExample() + { + cSharpBinding.Ori ori_onbase = new cSharpBinding.Ori(); + cSharpBinding.Pos pos_onbase = new cSharpBinding.Pos(); + cSharpBinding.Pos pos_onuser = new cSharpBinding.Pos(); + cSharpBinding.Ori ori_onuser = new cSharpBinding.Ori(); + cSharpBinding.ToolInEndDesc tool_pos = new cSharpBinding.ToolInEndDesc(); + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + //设置工具坐标系 + tool_pos.orientation.w = 1; + tool_pos.orientation.x = 0; + tool_pos.orientation.y = 0; + tool_pos.orientation.z = 0; + tool_pos.cartPos.x = 0; + tool_pos.cartPos.y = 0; + tool_pos.cartPos.z = 0; + //用坐标系转基座坐标系 + pos_onbase.x = 0; + pos_onbase.y = 0; + pos_onbase.z = 0; + ori_onbase.w = 1; + ori_onbase.x = 0; + ori_onbase.y = 0; + ori_onbase.z = 0; + cSharpBinding.rs_user_to_base(rshd, ref pos_onuser, ref ori_onuser, ref user_coord, ref tool_pos, ref pos_onbase, ref ori_onbase); + System.Console.Out.WriteLine("onbase pos.x={0}\npos.y={1}\npos.z={2}\n", + pos_onbase.x, pos_onbase.y, pos_onbase.z); + return 0; + } + + static int forwardAndInverseExample() + { + cSharpBinding.wayPoint_S waypoint = new cSharpBinding.wayPoint_S(); + cSharpBinding.Pos pos = new cSharpBinding.Pos(); + cSharpBinding.Ori ori = new cSharpBinding.Ori(); + //正解测试 + double[] temp_joint = {-4.358721 / 180 * M_PI, + -6.4477722 / 180 * M_PI, + -68.298347 / 180 * M_PI, + 19.191783 / 180 * M_PI, + -81.194208 / 180 * M_PI, + -4.366669 / 180 * M_PI + }; + //正解 + cSharpBinding.rs_forward_kin(rshd, temp_joint, ref waypoint); + //打印路点信息 + cSharpBinding.PrintWaypoint(waypoint); + //逆解测试 + pos.x = -0.484595; + pos.y = 0.030930; + pos.z = 0.341558; + //参考当前机械臂姿态 + cSharpBinding.rs_get_current_waypoint(rshd, ref waypoint); + ori = waypoint.orientation; + //逆解 + cSharpBinding.rs_inverse_kin(rshd, waypoint.jointpos, ref pos, ref ori, ref waypoint); + cSharpBinding.PrintWaypoint(waypoint); + return 0; + } + static int inverseExample() + { + cSharpBinding.wayPoint_S waypoint = new cSharpBinding.wayPoint_S(); + + double[] startPointJointAngle = { 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI, 0.0 / 180.0 * M_PI }; + + cSharpBinding.Pos pos = new cSharpBinding.Pos(); + pos.x = -0.400; + pos.y = -0.1215; + pos.z = 0.5476; + + cSharpBinding.Rpy rpy; + rpy.rx = 180.0 / 180.0 * M_PI; + rpy.ry = 0.0 / 180.0 * M_PI; + rpy.rz = -90.0 / 180.0 * M_PI; + + + cSharpBinding.Ori ori = new cSharpBinding.Ori(); + //欧拉角转四元数 + cSharpBinding.rs_rpy_to_quaternion(rshd, ref rpy, ref ori); + //逆解测试 + cSharpBinding.rs_inverse_kin(rshd, startPointJointAngle, ref pos, ref ori, ref waypoint); + Console.Out.WriteLine("rs_inverse_kin succ"); + cSharpBinding.PrintWaypoint(waypoint); + + cSharpBinding.ik_solutions solution = new cSharpBinding.ik_solutions(); + cSharpBinding.rs_inverse_kin_closed_form(rshd, ref pos, ref ori, ref solution); + Console.Out.WriteLine("rs_inverse_kin_closed_form succ"); + for (int i = 0; i < 8; i++) + { + Console.Out.WriteLine("************************"); + cSharpBinding.PrintWaypoint(solution.waypoint[i]); + } + return 0; + } + static int quaternion_rpy_example() + { + cSharpBinding.wayPoint_S waypoint = new cSharpBinding.wayPoint_S(); + cSharpBinding.Ori ori = new cSharpBinding.Ori(); + cSharpBinding.Rpy rpy = new cSharpBinding.Rpy(); + cSharpBinding.rs_get_current_waypoint(rshd, ref waypoint); + //四元数转欧拉角 + ori = waypoint.orientation; + cSharpBinding.rs_quaternion_to_rpy(rshd, ref ori, ref rpy); + System.Console.Out.WriteLine("rpy.rx={0}\nrpy.ry={1}\nrpy.rz={2}\n", + rpy.rx * 180 / M_PI, rpy.ry * 180 / M_PI, rpy.rz * 180 / M_PI); + //欧拉角转四元数 + cSharpBinding.rs_rpy_to_quaternion(rshd, ref rpy, ref ori); + Console.Out.WriteLine("ori.w={0} x={1} y={2} z={3}", + ori.w, ori.x, ori.y, ori.z); + return 0; + } + static int jointMoveExample() + { + double[] target0 = {0,0,0,0,0,0 }; + double[] target1 = { 1, 1, 1, 1, 1, 1 }; + cSharpBinding.Pos pos = new cSharpBinding.Pos(); + cSharpBinding.ToolInEndDesc tool_pos = new cSharpBinding.ToolInEndDesc(); + tool_pos.orientation.w = 1; + tool_pos.orientation.x = 0; + tool_pos.orientation.y = 0; + tool_pos.orientation.z = 0; + tool_pos.cartPos.x = 0; + tool_pos.cartPos.y = 0; + tool_pos.cartPos.z = 0; + //轴动机械臂 + cSharpBinding.rs_move_joint(rshd, target0, true); + for (int i = 0; i < 5; i++) + { + cSharpBinding.rs_move_joint(rshd, target1, true); + cSharpBinding.rs_move_joint(rshd, target0, true); + } + + //轴动到目标位置 + pos.x = -0.502071; + pos.y = -0.104238; + pos.z = 0.476826; + cSharpBinding.rs_move_line_to(rshd, ref pos, ref tool_pos, true); + return 0; + } + static int getTargetWaypointByPositionExample() + { + cSharpBinding.wayPoint_S target_waypoint_on_basecoord = new cSharpBinding.wayPoint_S(); + cSharpBinding.wayPoint_S source_waypoint_on_basecoord = new cSharpBinding.wayPoint_S(); + cSharpBinding.Pos tool_End_Position = new cSharpBinding.Pos(); + cSharpBinding.ToolInEndDesc tool_pos = new cSharpBinding.ToolInEndDesc(); + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + + cSharpBinding.rs_get_current_waypoint(rshd ,ref source_waypoint_on_basecoord); + + user_coord.coordType = WorldCoordinate; + //坐标系标定方法xoxy + user_coord.methods = Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + //为了简化,使用法兰盘中心为工具端 + user_coord.toolDesc.cartPos.x = 0; + user_coord.toolDesc.cartPos.y = 0; + user_coord.toolDesc.cartPos.z = 0; + user_coord.toolDesc.orientation.w = 1; + user_coord.toolDesc.orientation.x = 0; + user_coord.toolDesc.orientation.y = 0; + user_coord.toolDesc.orientation.z = 0; + //原点 + user_coord.jointPara[0].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[1] = -7.291862 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[2] = -75.694718 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[3] = 21.596727 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[5] = -0.00458 / 180 * M_PI; + //x轴正半轴上一点 + user_coord.jointPara[1].jointRadian[0] = 14.283838 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[1] = -1.310068 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[2] = -70.235286 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[3] = 21.074762 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[4] = -90.000098 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[5] = 14.283551 / 180 * M_PI; + //x、y轴平面的第一象限上任意一点 + user_coord.jointPara[2].jointRadian[0] = 11.701804 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[1] = 11.909616 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[2] = -55.591688 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[3] = 22.498677 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[4] = -90.000037 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[5] = 11.701517 / 180 * M_PI; + //设置工具坐标系 + tool_pos.orientation.w = 1; + tool_pos.orientation.x = 0; + tool_pos.orientation.y = 0; + tool_pos.orientation.z = 0; + tool_pos.cartPos.x = 0; + tool_pos.cartPos.y = 0; + tool_pos.cartPos.z = 0; + //工具末端目标位置 + tool_End_Position.x = 0.2; + tool_End_Position.y = 0; + tool_End_Position.z = 0; + + cSharpBinding.rs_get_target_waypoint_by_position(rshd, ref source_waypoint_on_basecoord, ref user_coord, ref tool_End_Position, ref tool_pos, ref target_waypoint_on_basecoord ); + cSharpBinding.rs_move_line(rshd,target_waypoint_on_basecoord.jointpos,true); + return 0; + } + static int toolCalibrationExample() + { + + cSharpBinding.ToolInEndDesc tool_pos = new cSharpBinding.ToolInEndDesc(); + cSharpBinding.ToolCalibrate toolCalibrate = new cSharpBinding.ToolCalibrate(); + cSharpBinding.wayPoint_S currentWaypoint = new cSharpBinding.wayPoint_S(); + toolCalibrate.posCalibrateWaypoint = new cSharpBinding.wayPoint_S[4]; + toolCalibrate.oriCalibrateWaypoint = new cSharpBinding.wayPoint_S[3]; + + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + Console.Out.WriteLine("工具标定选点:\n"); + double[] jointpos = { 0, 0, 0, 0, 0, 0 }; + + jointpos[0] = -0.000172 / 180 * M_PI; + jointpos[1] = -7.291862 / 180 * M_PI; + jointpos[2] = -75.694718 / 180 * M_PI; + jointpos[3] = 21.596727 / 180 * M_PI; + jointpos[4] = -89.999982 / 180 * M_PI; + jointpos[5] = -0.000458 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.posCalibrateWaypoint[0] = currentWaypoint; + Console.Out.WriteLine("Position_1:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = -7.157335 / 180 * M_PI; + jointpos[1] = -9.198799 / 180 * M_PI; + jointpos[2] = -78.285142 / 180 * M_PI; + jointpos[3] = 25.303605 / 180 * M_PI; + jointpos[4] = -58.632352 / 180 * M_PI; + jointpos[5] = -8.390680 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.posCalibrateWaypoint[1] = currentWaypoint; + Console.Out.WriteLine("Position_2:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = 8.423011 / 180 * M_PI; + jointpos[1] = -4.640062 / 180 * M_PI; + jointpos[2] = -74.922312 / 180 * M_PI; + jointpos[3] = 26.760133 / 180 * M_PI; + jointpos[4] = -129.625885 / 180 * M_PI; + jointpos[5] = 10.962565 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.posCalibrateWaypoint[2] = currentWaypoint; + Console.Out.WriteLine("Position_3:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = 1.981716 / 180 * M_PI; + jointpos[1] = 0.742380 / 180 * M_PI; + jointpos[2] = -63.190745 / 180 * M_PI; + jointpos[3] = 47.592509 / 180 * M_PI; + jointpos[4] = -98.514182 / 180 * M_PI; + jointpos[5] = -11.502224 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.posCalibrateWaypoint[3] = currentWaypoint; + Console.Out.WriteLine("Position_4:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = -0.000172 / 180 * M_PI; + jointpos[1] = -7.291862 / 180 * M_PI; + jointpos[2] = -75.694718 / 180 * M_PI; + jointpos[3] = 21.596727 / 180 * M_PI; + jointpos[4] = -89.999982 / 180 * M_PI; + jointpos[5] = -0.000458 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.oriCalibrateWaypoint[0] = currentWaypoint; + Console.Out.WriteLine("Orientation_1:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = 14.285429 / 180 * M_PI; + jointpos[1] = -1.309190 / 180 * M_PI; + jointpos[2] = -70.234425 / 180 * M_PI; + jointpos[3] = 21.074762 / 180 * M_PI; + jointpos[4] = -90.000084 / 180 * M_PI; + jointpos[5] = 14.285143 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.oriCalibrateWaypoint[1] = currentWaypoint; + Console.Out.WriteLine("Orientation_2:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + jointpos[0] = 12.018674 / 180 * M_PI; + jointpos[1] = 9.866897 / 180 * M_PI; + jointpos[2] = -58.086873 / 180 * M_PI; + jointpos[3] = 22.046228 / 180 * M_PI; + jointpos[4] = -90.000071 / 180 * M_PI; + jointpos[5] = 12.018387 / 180 * M_PI; + cSharpBinding.rs_move_line(rshd, jointpos, true); + cSharpBinding.rs_get_current_waypoint(rshd, ref currentWaypoint); + toolCalibrate.oriCalibrateWaypoint[2] = currentWaypoint; + Console.Out.WriteLine("Orientation_3:"); + cSharpBinding.PrintWaypoint(currentWaypoint); + + toolCalibrate.posCalibrateNum = 4; + toolCalibrate.oriCalibrateNum = 3; + toolCalibrate.CalibMethod = ToolKinematicsOriCalibrateMathod_xOxy; + //IntPtr ptr_toolCalibrate = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.ToolCalibrate))); + //Marshal.StructureToPtr(toolCalibrate, ptr_toolCalibrate, true); + cSharpBinding.rs_tool_calibration(rshd, ref toolCalibrate, ref tool_pos); + Console.Out.WriteLine("工具标定结果:\n"); + Console.Out.WriteLine("pos: x={0},y={1},z={2}", tool_pos.cartPos.x, tool_pos.cartPos.y, tool_pos.cartPos.z); + Console.Out.WriteLine("ori: x={0},y={1},z={2},w={3}", tool_pos.orientation.x, tool_pos.orientation.y, tool_pos.orientation.z, tool_pos.orientation.w); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + return 0; + } + + static int getJointStatusExample() + { + /* c#向c++封送结构体问题 + * 要先分配一段非托管内存,接口中结构体参数应传入IntPtr + * 调用接口后,再将非托管内容数据读取到托管结构体数据中 + */ + int size = Marshal.SizeOf(typeof(cSharpBinding.JointStatus)) * 6; + byte[] bytes = new byte[size]; + IntPtr pBuff = Marshal.AllocHGlobal(size); + cSharpBinding.JointStatus[] jointStatus = new cSharpBinding.JointStatus[6]; + cSharpBinding.rs_get_joint_status(rshd, pBuff); + for (int i = 0; i < 6; i++) + { + IntPtr pPonitor = new IntPtr(pBuff.ToInt64() + Marshal.SizeOf(typeof(cSharpBinding.JointStatus)) * i); + jointStatus[i] = (cSharpBinding.JointStatus)Marshal.PtrToStructure(pPonitor, typeof(cSharpBinding.JointStatus)); + } + for (int i = 0; i < 6; i++) + { + Console.Out.WriteLine("jointStatus {0}",i+1); + Console.Out.WriteLine("joint I: {0}\njoint Speed: {1}\njoint Angel: {2}", jointStatus[i].jointCurrentI, jointStatus[i].jointSpeedMoto, jointStatus[i].jointPosJ); + Console.Out.WriteLine("joint vol: {0}\njoint temp: {1}\njoint target I: {2}", jointStatus[i].jointCurVol, jointStatus[i].jointCurTemp, jointStatus[i].jointTagCurrentI); + Console.Out.WriteLine("joint target Speed: {0}\njoint Target Angel: {1}\njoint Errnum: {2}", jointStatus[i].jointTagSpeedMoto, jointStatus[i].jointTagPosJ, jointStatus[i].jointErrorNum); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + + } + Marshal.FreeHGlobal(pBuff); + + return 0; + } + + static int getRobotDiagnosisExample() + { + cSharpBinding.RobotDiagnosis robotDiagnosis = new cSharpBinding.RobotDiagnosis(); + cSharpBinding.rs_get_diagnosis_info(rshd,ref robotDiagnosis); + + Console.Out.WriteLine("armCanbusStatus:{0}\n", robotDiagnosis.armCanbusStatus); + Console.Out.WriteLine("armPowerCurrent:{0}\n", robotDiagnosis.armPowerCurrent); + Console.Out.WriteLine("armPowerVoltage:{0}\n", robotDiagnosis.armPowerVoltage); + Console.Out.WriteLine("armPowerStatus:{0}\n", robotDiagnosis.armPowerStatus); + Console.Out.WriteLine("contorllerTemp:{0}\n", robotDiagnosis.contorllerTemp); + Console.Out.WriteLine("contorllerHumidity:{0}\n", robotDiagnosis.contorllerHumidity); + Console.Out.WriteLine("remoteHalt:{0}\n", robotDiagnosis.remoteHalt); + Console.Out.WriteLine("softEmergency:{0}\n", robotDiagnosis.softEmergency); + Console.Out.WriteLine("remoteEmergency:{0}\n", robotDiagnosis.remoteEmergency); + Console.Out.WriteLine("robotCollision:{0}\n", robotDiagnosis.robotCollision); + Console.Out.WriteLine("forceControlMode:{0}\n", robotDiagnosis.forceControlMode); + Console.Out.WriteLine("brakeStuats:{0}\n", robotDiagnosis.brakeStuats); + Console.Out.WriteLine("robotEndSpeed:{0}\n", robotDiagnosis.robotEndSpeed); + Console.Out.WriteLine("robotMaxAcc:{0}\n", robotDiagnosis.robotMaxAcc); + Console.Out.WriteLine("orpeStatus:{0}\n", robotDiagnosis.orpeStatus); + Console.Out.WriteLine("enableReadPose:{0}\n", robotDiagnosis.enableReadPose); + Console.Out.WriteLine("robotMountingPoseChanged:{0}\n", robotDiagnosis.robotMountingPoseChanged); + Console.Out.WriteLine("encoderErrorStatus:{0}\n", robotDiagnosis.encoderErrorStatus); + Console.Out.WriteLine("staticCollisionDetect:{0}\n", robotDiagnosis.staticCollisionDetect); + Console.Out.WriteLine("jointCollisionDetect:{0}\n", robotDiagnosis.jointCollisionDetect); + Console.Out.WriteLine("encoderLinesError:{0}\n", robotDiagnosis.encoderLinesError); + Console.Out.WriteLine("jointErrorStatus:{0}\n", robotDiagnosis.jointErrorStatus); + Console.Out.WriteLine("singularityOverSpeedAlarm:{0}\n", robotDiagnosis.singularityOverSpeedAlarm); + Console.Out.WriteLine("robotCurrentAlarm:{0}\n", robotDiagnosis.robotCurrentAlarm); + Console.Out.WriteLine("toolIoError:{0}\n", robotDiagnosis.toolIoError); + Console.Out.WriteLine("robotMountingPoseWarning:{0}\n", robotDiagnosis.robotMountingPoseWarning); + Console.Out.WriteLine("macTargetPosBufferSize:{0}\n", robotDiagnosis.macTargetPosBufferSize); + Console.Out.WriteLine("macTargetPosDataSize:{0}\n", robotDiagnosis.macTargetPosDataSize); + Console.Out.WriteLine("macDataInterruptWarning:{0}\n", robotDiagnosis.macDataInterruptWarning); + Console.Out.WriteLine("controlBoardAbnormalStateFlag:{0}\n", robotDiagnosis.controlBoardAbnormalStateFlag); + + return 0; + } + + static int getDeviceInfoExample() + { + cSharpBinding.RobotDevInfo dev = new cSharpBinding.RobotDevInfo(); + cSharpBinding.rs_get_device_info(rshd,ref dev); + return 0; + } + + static int userCoordCalibrateExample() + { + cSharpBinding.CoordCalibrate user_coord = new cSharpBinding.CoordCalibrate(); + IntPtr pt_user_coord = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(cSharpBinding.CoordCalibrate))); + user_coord = (cSharpBinding.CoordCalibrate)Marshal.PtrToStructure(pt_user_coord, typeof(cSharpBinding.CoordCalibrate)); + + user_coord.coordType = WorldCoordinate; + //坐标系标定方法xoxy + user_coord.methods = Origin_AnyPointOnPositiveXAxis_AnyPointOnFirstQuadrantOfXOYPlane; + //为了简化,使用法兰盘中心为工具端 + user_coord.toolDesc.cartPos.x = 0; + user_coord.toolDesc.cartPos.y = 0; + user_coord.toolDesc.cartPos.z = 0; + user_coord.toolDesc.orientation.w = 1; + user_coord.toolDesc.orientation.x = 0; + user_coord.toolDesc.orientation.y = 0; + user_coord.toolDesc.orientation.z = 0; + + //传正常坐标系 + //原点 + user_coord.jointPara[0].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[1] = -7.291862 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[2] = -75.694718 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[3] = 21.596727 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[5] = -0.00458 / 180 * M_PI; + //x轴正半轴上一点 + user_coord.jointPara[1].jointRadian[0] = 14.283838 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[1] = -1.310068 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[2] = -70.235286 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[3] = 21.074762 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[4] = -90.000098 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[5] = 14.283551 / 180 * M_PI; + //x、y轴平面的第一象限上任意一点 + user_coord.jointPara[2].jointRadian[0] = 11.701804 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[1] = 11.909616 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[2] = -55.591688 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[3] = 22.498677 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[4] = -90.000037 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[5] = 11.701517 / 180 * M_PI; + int ret= cSharpBinding.rs_check_user_coord(rshd, ref user_coord); + if (ret == 0) + { + double[] bInWPos = { 0, 0, 0 }; + double[] bInWOri = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + double[] wInBPos = { 0, 0, 0 }; + + cSharpBinding.rs_user_coord_calibrate(rshd, ref user_coord, bInWPos, bInWOri, wInBPos); + Console.Out.WriteLine("bInWPos: x={0:f5} y={1:f5} z={2:f5}", bInWPos[0], bInWPos[1], bInWPos[2]); + Console.Out.WriteLine("wInBPos: x={0:f5} y={1:f5} z={2:f5}", wInBPos[0], wInBPos[1], wInBPos[2]); + Console.Out.WriteLine("bInWOri:"); + for (int i = 0; i < 9; i++) + { + Console.Out.Write("{0,10:f5}", bInWOri[i]); + if (i == 2 || i == 5 || i == 8) + { + Console.Out.Write("\n"); + } + } + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + else { + Console.Out.Write("UserCoord Calibrate Fail!\n"); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + + //传一条直线 + user_coord.jointPara[0].jointRadian[0] = -0.000172 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[1] = -7.291862 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[2] = -75.694718 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[3] = 21.596727 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[0].jointRadian[5] = -0.00458 / 180 * M_PI; + + user_coord.jointPara[1].jointRadian[0] = -0.0000172 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[1] = 11.351293 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[2] = -23.993406 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[3] = 54.655300 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[1].jointRadian[5] = -0.000458 / 180 * M_PI; + + user_coord.jointPara[2].jointRadian[0] = -0.0000172 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[1] = -10.055338 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[2] = -111.085131 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[3] = -11.029791 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[4] = -89.999982 / 180 * M_PI; + user_coord.jointPara[2].jointRadian[5] = -0.000458 / 180 * M_PI; + ret = cSharpBinding.rs_check_user_coord(rshd, ref user_coord); + if (ret == 0) + { + double[] bInWPos = { 0, 0, 0 }; + double[] bInWOri = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + double[] wInBPos = { 0, 0, 0 }; + + cSharpBinding.rs_user_coord_calibrate(rshd, ref user_coord, bInWPos, bInWOri, wInBPos); + Console.Out.WriteLine("bInWPos: x={0:f5} y={1:f5} z={2:f5}", bInWPos[0], bInWPos[1], bInWPos[2]); + Console.Out.WriteLine("wInBPos: x={0:f5} y={1:f5} z={2:f5}", wInBPos[0], wInBPos[1], wInBPos[2]); + Console.Out.WriteLine("bInWOri:"); + for (int i = 0; i < 9; i++) + { + Console.Out.Write("{0,10:f5}", bInWOri[i]); + if (i == 2 || i == 5 || i == 8) + { + Console.Out.Write("\n"); + } + } + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + else + { + Console.Out.Write("UserCoord Calibrate Fail!\n"); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + + return 0; + } + + static int callbackTestExample() + { + //设置是否允许实时路点信息推送 + cSharpBinding.rs_enable_push_realtime_roadpoint(rshd, true); + + //函数指针实例化 + cSharpBinding.REALTIME_ROADPOINT_CALLBACK RobotPosCallBack = new cSharpBinding.REALTIME_ROADPOINT_CALLBACK(cSharpBinding.CurrentPositionCallback); + cSharpBinding.rs_setcallback_realtime_roadpoint(rshd, RobotPosCallBack, IntPtr.Zero); + + + //机械臂事件回调 + cSharpBinding.ROBOT_EVENT_CALLBACK RobotEventCallbackPtr = new cSharpBinding.ROBOT_EVENT_CALLBACK(cSharpBinding.RobotEventCallback); + cSharpBinding.rs_setcallback_robot_event(rshd, RobotEventCallbackPtr, IntPtr.Zero); + + cSharpBinding.REALTIME_ENDSPEED_CALLBACK RobotEndSpeedCallbackPtr = new cSharpBinding.REALTIME_ENDSPEED_CALLBACK(cSharpBinding.CurrentEndSpeedCallback); + cSharpBinding.rs_setcallback_realtime_end_speed(rshd, RobotEndSpeedCallbackPtr, IntPtr.Zero); + + cSharpBinding.ROBOT_JOINT_STATUS_CALLBACK RobotJointStatusCallbackPtr = new cSharpBinding.ROBOT_JOINT_STATUS_CALLBACK(cSharpBinding.CurrentJointStatusCallback); + cSharpBinding.rs_setcallback_realtime_joint_status(rshd, RobotJointStatusCallbackPtr, IntPtr.Zero); + + Thread.Sleep(50 * 1000); + + return 0; + } + + static int ioTestExample() + { + double io_status = 0; + int result; + //设置用户IO(必须连接控制柜!!!) + if (RSERR_SUCC == (result = cSharpBinding.rs_set_board_io_status_by_addr(rshd, Robot_User_DO, ROBOT_IO_U_DO_00, IO_STATUS_VALID))) + Console.Out.WriteLine("set io succ"); + else + Console.Out.WriteLine("set io error, error code={0}", result); + + //获取用户IO(必须连接控制柜!!!) + if (RSERR_SUCC == (result = cSharpBinding.rs_get_board_io_status_by_addr(rshd, Robot_User_DI, ROBOT_IO_U_DI_00, ref io_status))) + Console.Out.WriteLine("get io status = {0}", io_status); + else + Console.Out.WriteLine("get io status error, error code={0}", result); + + //设置工具端IO + if (RSERR_SUCC == (result = cSharpBinding.rs_set_tool_do_status(rshd, TOOL_IO_0, 1))) + Console.Out.WriteLine("set io succ"); + else + Console.Out.WriteLine("set io error, error code={0}", result); + + //获取设置工具端IO + if (RSERR_SUCC == (result = cSharpBinding.rs_get_tool_io_status(rshd, TOOL_IO_0, ref io_status))) + Console.Out.WriteLine("get tool_io status = {0}", io_status); + else + Console.Out.WriteLine("get tool_io status error, error code={0}", result); + + Thread.Sleep(1 * 1000); + + return 0; + } + static int MountingPoseChangedTestExample() + { + cSharpBinding.RobotDiagnosis robotDiagnosis = new cSharpBinding.RobotDiagnosis(); + cSharpBinding.rs_get_diagnosis_info(rshd, ref robotDiagnosis); + + if (1==robotDiagnosis.robotMountingPoseChanged) + { + Console.Out.WriteLine("Mounting Pose Changed,Reload or Not?"); + Console.Out.WriteLine("Pleas Input cmd(Yes:cmd=10,No:cmd=11):"); + int cmd = Convert.ToInt32(Console.ReadLine()); + cSharpBinding.rs_robot_control(rshd, cmd); + } + + return 0; + } + + static void MainPE (string[] args) + { + cSharpBinding csharpbingding = new cSharpBinding(); + double end_max_angle_velc = 3; + double end_max_angle_acc = 3; + double[] joint_max_velc = { 1.5, 1.5, 1.5, 1.5, 1.5, 1.5 }; + double[] joint_max_acc = { 5, 5, 5, 5, 5, 5 }; + + int result = 0xffff; + Console.Out.WriteLine ("call rs_initialize"); + + //初始化机械臂控制库 + result = cSharpBinding.rs_initialize (); + Console.Out.WriteLine ("rs_initialize.ret={0}", result); + + if (RSERR_SUCC == result) + { + //创建机械臂控制上下文句柄 + if (cSharpBinding.rs_create_context (ref rshd) == RSERR_SUCC) + { + Console.Out.WriteLine ("rshd={0}", rshd); + //链接机械臂服务器 + if (cSharpBinding.rs_login(rshd, robotIP, serverPort) == RSERR_SUCC) + { + Console.Out.WriteLine("login succ."); + cSharpBinding.ToolDynamicsParam tool = new cSharpBinding.ToolDynamicsParam { positionX = 0, positionY = 0,positionZ=0,payload=0,}; + tool.toolInertia = new cSharpBinding.ToolInertia { xx = 0, xy = 0, xz = 0, yy = 0, yz = 0, zz=0 }; + int state = 0; + + result=cSharpBinding.rs_robot_startup( rshd, + ref tool, + 6 /*Collision level*/, + true /*Whether to allow reading poses defaults to true*/, + true, /*Leave the default to true */ + 1000, /*Leave the default to 1000 */ + ref state); + //判断基座安装位置是否发送改变 + MountingPoseChangedTestExample(); + + cSharpBinding.wayPoint_S waypoint = new cSharpBinding.wayPoint_S(); + cSharpBinding.JointVelcAccParam temp = new cSharpBinding.JointVelcAccParam(); + //直接获取机械臂当前位置信息 + cSharpBinding.rs_get_current_waypoint(rshd, ref waypoint); + //打印路点信息 + cSharpBinding.PrintWaypoint(waypoint); + + //根据错误号返回错误信息 + int err_code = 10024; + IntPtr _errinfo = cSharpBinding.rs_get_error_information_by_errcode(rshd, err_code); + string err_information = Marshal.PtrToStringAnsi(_errinfo); + Console.Out.WriteLine("err_information is:{0}", err_information); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + //设置碰撞等级 + int grade = 6; + cSharpBinding.rs_set_collision_class(rshd, grade); + Console.Out.WriteLine("set robot collision ret is:{0}", +grade); + //获取当前碰撞等级 + int current_grade = 0; + cSharpBinding.rs_get_collision_class(rshd, ref current_grade); + Console.Out.WriteLine("current grade is:{0}", current_grade); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + //初始化全局的运动属性 + cSharpBinding.rs_init_global_move_profile(rshd); + + //设置六个关节轴动的最大加速度 + cSharpBinding.rs_set_global_joint_maxacc(rshd, joint_max_acc); + + //设置六个关节轴动的最大速度 + cSharpBinding.rs_set_global_joint_maxvelc(rshd, joint_max_velc); + + //获取六个关节轴动的最大速度 + cSharpBinding.rs_get_global_joint_maxvelc(rshd, ref temp); + Console.Out.WriteLine("joint max velc = {0},{1},{2},{3},{4},{5}", + temp.jointPara[0], temp.jointPara[1], temp.jointPara[2], + temp.jointPara[3], temp.jointPara[4], temp.jointPara[5]); + + //获取六个关节轴动的最大加速度 + cSharpBinding.rs_get_global_joint_maxacc(rshd, ref temp); + Console.Out.WriteLine("joint max acc = {0},{1},{2},{3},{4},{5}", + temp.jointPara[0], temp.jointPara[1], temp.jointPara[2], + temp.jointPara[3], temp.jointPara[4], temp.jointPara[5]); + + //设置末端型运动旋转最大角加速度 + cSharpBinding.rs_set_global_end_max_angle_acc(rshd, end_max_angle_acc); + //设置末端型运动旋转最大角速度 + cSharpBinding.rs_set_global_end_max_angle_velc(rshd, end_max_angle_velc); + //获取末端型运动旋转最大角加速度 + double get_end_max_angle_acc = 0; + cSharpBinding.rs_get_global_end_max_angle_acc(rshd, ref get_end_max_angle_acc); + Console.Out.WriteLine("end max angle acc = {0}", get_end_max_angle_acc); + //获取末端型运动旋转最大角速度 + double get_end_max_angle_velc = 0; + cSharpBinding.rs_get_global_end_max_angle_velc(rshd, ref get_end_max_angle_velc); + Console.Out.WriteLine("end max angle velc = {0}", get_end_max_angle_velc); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + + //回调函数测试 + //callbackTest(); + + //检查用户坐标系是否合理 + //checkUsercoordExample(); + + //坐标系偏移Example + //relativeOffsetExample(); + + //基坐标系转用户坐标系 + //baseToUserExample(); + + //用户坐标系转基坐标系 + //userToBaseExample(); + + //正逆解测试 + //forwardAndInverseExample(); + //inverseExample(); + + //四元数与欧拉角转换 + //quaternion_rpy_example(); + + //轴动 + //jointMoveExample(); + + //根据位置获取目标路点信息(获取基于基座标下的目标路点通过基于用户坐标系的位置,目标路点保持起点姿态) + //getTargetWaypointByPositionExample(); + + //工具标定 + //toolCalibrationExample(); + + //获取关节状态信息 + //getJointStatusExample(); + + //获取机器人诊断信息 + //getRobotDiagnosisExample(); + + //获取设备信息 + //getDeviceInfoExample(); + + //坐标系标定检查 + //userCoordCalibrateExample(); + + //机器人下电 + cSharpBinding.rs_robot_shutdown(rshd); + //断开机械臂服务器链接 + cSharpBinding.rs_logout(rshd); + } else { + Console.Error.WriteLine("login failed!"); + } + //注销机械臂控制上下文句柄 + cSharpBinding.rs_destory_context (rshd); + } else { + Console.Error.WriteLine ("rs_create_context failed!"); + } + + //反初始化机械臂控制库 + cSharpBinding.rs_uninitialize (); + } else { + Console.Error.WriteLine ("rs_initialize failed!"); + } + + Console.Out.WriteLine ("bye"); + } + + + + private static void rs_get_current_waypoint(ushort rshd, ref cSharpBinding.wayPoint_S waypoint) + { + throw new NotImplementedException(); + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMath.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMath.cs new file mode 100644 index 00000000..e89ec309 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMath.cs @@ -0,0 +1,518 @@ +using System; +using System.Linq; +using System.Runtime.InteropServices; +using System.Threading; + +namespace csharp_example +{ + class ExampleMath + { + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robot_ip = "127.0.0.1"; + //机械臂端口号 + const int server_port = 30004; + + // 展平二维数组为一维数组(行优先) + public static double[] flattenArray(double[][] nestedArray) + { + int totalSize = nestedArray.Sum(subArray => subArray.Length); + double[] flatArray = new double[totalSize]; + int index = 0; + foreach (var subArray in nestedArray) + { + foreach (var value in subArray) + { + flatArray[index++] = value; + } + } + return flatArray; + } + + static int waitArrival(IntPtr robot_interface) + { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + int exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + + // 等待机械臂开始运动 + while (exec_id == -1) + { + if (cnt++ > max_retry_count) + { + return -1; + } + Thread.Sleep(50); + exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + } + + // 等待机械臂动作完成 + while (cSharpBinging_MotionControl.getExecId(motion_control) != -1) + { + Thread.Sleep(50); + } + + return 0; + } + + + // 打印单个变量的值和名称 + public static void printSingle(T param, string name) + { + Console.WriteLine($"{name}: {param}"); + } + // 打印 double[] 类型的数组 + public static void printArray(double[] param, string name) + { + Console.Write($"{name}: "); + for (int i = 0; i < param.Length; i++) + { + Console.Write(param[i]); + if (i != param.Length - 1) + { + Console.Write(", "); + } + } + Console.WriteLine(); + } + // 打印 double[][] 类型的二维数组 + public static void print2DArray(double[][] param, string name) + { + Console.WriteLine($"{name}: "); + for (int i = 0; i < param.Length; i++) + { + Console.Write($" 第{i + 1}组: "); + for (int j = 0; j < param[i].Length; j++) + { + Console.Write(param[i][j]); + if (j != param[i].Length - 1) + { + Console.Write(", "); + } + else + { + Console.WriteLine(); + } + } + if (i == param.Length - 1) + { + Console.WriteLine(); + } + } + } + + public static int exampleTcpOffsetIdentify(IntPtr cli) + { + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串(考虑 '\0' 结尾) + } + + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return -1; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + if (robot_name == "") + { + return -1; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + + + // 调用函数 + double[][] nestedPoses = new double[][] + { + new double[] { 1.0, 2.0, 3.0, 4, 5, 6 }, + new double[] { 4.0, 5.0, 6.0, 4, 5, 6 } + }; + + int rows = nestedPoses.Length; + + double[] flatPoses = flattenArray(nestedPoses); + + double[] result = new double[10]; + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + cSharpBinding_Math.tcpOffsetIdentify(robot_state, flatPoses, rows, result); + + printArray(result, "tcpOffsetIdentify result: "); + + return 0; + } + + public static void examplePoseAdd(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p1 = { 0.2, 0.5, 0.1, 1.57, 0, 0 }; + double[] p2 = { 0.2, 0.5, 0.6, 1.57, 0, 0 }; + + // 接口调用: 位姿加法 + double[] result = new double[6]; + cSharpBinding_Math.poseAdd(mathPtr, p1, p2, result); + + printArray(result, "poseAdd"); + } + + public static void examplePoseSub(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p1 = { 0.2, 0.5, 0.1, 1.57, 0, 0 }; + double[] p2 = { 0.2, 0.5, 0.6, 1.57, 0, 0 }; + + // 接口调用: 位姿减法 + double[] result = new double[6]; + cSharpBinding_Math.poseSub(mathPtr, p1, p2, result); + + printArray(result, "poseSub"); + } + + // 线性插值 + public static void exampleInterpolatePose(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p1 = { 0.2, 0.2, 0.4, 0, 0, 0 }; + double[] p2 = { 0.2, 0.2, 0.6, 0, 0, 0 }; + double alpha = 0.5; + + // 接口调用: 计算线性插值 + double[] result = new double[6]; + cSharpBinding_Math.interpolatePose(mathPtr, p1, p2, alpha, result); + + printArray(result, "interpolatePose"); + } + + // 位姿变换 + public static void examplePoseTrans(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + // B相对于A的位姿 + double[] F_B_A = { 0.2, 0.5, 0.1, 1.57, 0, 0 }; + // C相对于B的位姿 + double[] F_C_B = { 0.2, 0.5, 0.6, 1.57, 0, 0 }; + + // 接口调用: 位姿变换获得C相对于A的位姿 + double[] F_C_A = new double[6]; + cSharpBinding_Math.poseTrans(mathPtr, F_B_A, F_C_B, F_C_A); + + printArray(F_C_A, "poseTrans"); + } + + // 位姿逆变换 + public static void examplePoseTransInv(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + // C相对于A的位姿 + double[] F_C_A = { 0.4, -0.0996016, 0.600478, 3.14, 0, 0 }; + // C相对于B的位姿 + double[] F_C_B = { 0.2, 0.5, 0.6, 1.57, 0, 0 }; + + // 接口调用: 位姿逆变换获得B相对于A的位姿 + double[] F_B_A = new double[6]; + cSharpBinding_Math.poseTransInv(mathPtr, F_C_A, F_C_B, F_B_A); + + printArray(F_B_A, "poseTransInv"); + } + + // 位姿逆 + public static void examplePoseInverse(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p = { 0.2, 0.5, 0.1, 1.57, 0, 3.14 }; + + // 接口调用: 获取位姿的逆 + double[] result = new double[6]; + cSharpBinding_Math.poseInverse(mathPtr, p, result); + + printArray(result, "poseInverse"); + } + + // 位姿距离 + public static void examplePoseDistance(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p1 = { 0.1, 0.3, 0.1, 0.3142, 0.0, 1.571 }; + double[] p2 = { 0.2, 0.5, 0.6, 0, -0.172, 0.0 }; + + // 接口调用: 获得两个位姿的位置距离 + double result = cSharpBinding_Math.poseDistance(mathPtr, p1, p2); + + printSingle(result, "poseDistance"); + } + + // 位姿相等判断 + public static void examplePoseEqual(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] p1 = { 0.1, 0.3, 0.1, 0.3142, 0.0, 1.571 }; + double[] p2 = { 0.1, 0.3, 0.1, 0.3142, 0.0, 1.5711 }; + + // 接口调用: 判断两个位姿是否相等 + double eps = 0.00005; + bool result = cSharpBinding_Math.poseEqual(mathPtr, p1, p2, eps); + + printSingle(result, "poseEqual"); + } + + // 欧拉角转四元数 + public static void exampleRpyToQuat(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] rpy = { 0.611, 0.785, 0.960 }; + + // 接口调用: 欧拉角转四元数 + double[] quat = new double[4]; + cSharpBinding_Math.rpyToQuaternion(mathPtr, rpy, quat); + + printArray(quat, "欧拉角 -> 四元数"); + } + + // 四元数转欧拉角 + public static void exampleQuatToRpy(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + double[] quat = { 0.834722, 0.0780426, 0.451893, 0.304864 }; + + // 接口调用: 四元数转欧拉角 + double[] rpy = new double[3]; + cSharpBinding_Math.quaternionToRpy(mathPtr, quat, rpy); + + printArray(rpy, "四元数 -> 欧拉角"); + } + + // 坐标系标定 + public static void exampleCalibrateCoordinate(IntPtr cli) + { + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + + // 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串 + } + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + + // 设置 TCP 偏移值 + double[] tcp_offset = { 0.17734, 0.00233, 0.14682, 0.0, 0.0, 0.0 }; + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + IntPtr robot_config = cSharpBinging_RobotInterface.robot_getRobotConfig(robot_interface); + cSharpBinging_RobotConfig.setTcpOffset(robot_config, tcp_offset); + + // TCP 在基坐标系下的位姿 + double[][] nested_coords = new double[][] + { + new double[]{ 0.55462, 0.06219, 0.37175, -3.142, 0.0, 1.580 }, + new double[]{ 0.63746, 0.11805, 0.37175, -3.142, 0.0, 1.580 }, + new double[]{ 0.40441, 0.28489, 0.37174, -3.142, 0.0, 1.580 }, + }; + int rows = nested_coords.Length; + + double[] flat_coords = flattenArray(nested_coords); + // 用户坐标系标定 + double[] user_on_base = new double[6]; + cSharpBinding_Math.calibrateCoordinate(mathPtr, flat_coords, rows, 0, user_on_base); + + // 获取 TCP 在基坐标系下的当前位姿 + double[] tcp_on_base = new double[6]; + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + cSharpBinging_RobotState.getTcpPose(robot_state, tcp_on_base); + + // 获取用户坐标系相对于基坐标系的位姿的逆 + double[] tcp_on_base_inv = new double[6]; + cSharpBinding_Math.poseInverse(mathPtr, user_on_base, tcp_on_base_inv); + + // 获取 TCP 在用户坐标系下的当前位姿 + double[] tcp_on_user = new double[6]; + cSharpBinding_Math.poseTrans(mathPtr, tcp_on_base_inv, tcp_on_base, tcp_on_user); + + printArray(tcp_on_base, "TCP在基坐标系下的位姿"); + printArray(tcp_offset, "TCP偏移"); + printArray(user_on_base, "用户坐标系相对于基坐标系的位姿"); + printArray(tcp_on_user, "TCP在用户坐标系下的位姿"); + } + + // 计算另一半圆弧的中间点 + public static void exampleCalculateCircleFourthPoint(IntPtr cli) + { + // 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串 + } + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + + // 设置 TCP 偏移值 + double[] tcp_offset = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + IntPtr robot_config = cSharpBinging_RobotInterface.robot_getRobotConfig(robot_interface); + cSharpBinging_RobotConfig.setTcpOffset(robot_config, tcp_offset); + + // 设置机械臂运动的速度比率 + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + cSharpBinging_MotionControl.setSpeedFraction(motion_control, 0.3); + + // 关节运动到起始位置 + double[] q = { 0.00, + -10.43 / 180 * Math.PI, + 87.39 / 180 * Math.PI, + 7.82 / 180 * Math.PI, + 90.0 / 180 * Math.PI, + 0.0 / 180 * Math.PI }; + cSharpBinging_MotionControl.moveJoint(motion_control, q, 1.2, 1.0, 0, 0); + + // 阻塞,等待机械臂运动完成 + int ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("关节运动到初始位置成功"); + } + else + { + Console.WriteLine("关节运动到初始位置失败"); + } + + // 定义三个点的位姿 + double[] p1 = { 0.5488696249770836, -0.1214996547187204, 0.2631931199112321, -3.14159198038469, -3.673205103150083e-06, 1.570796326792424 }; + double[] p2 = { 0.5488696249770835, -0.1214996547187207, 0.3599720701808493, -3.14159198038469, -3.6732051029273e-06, 1.570796326792423 }; + double[] p3 = { 0.5488696249770836, -0.0389996547187214, 0.3599720701808496, -3.141591980384691, -3.673205102557476e-06, 1.570796326792422 }; + + // 直线运动到圆的第一个点 + cSharpBinging_MotionControl.moveLine(motion_control, p1, 1.2, 0.25, 0, 0); + + // 阻塞,等待机械臂运动完成 + ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("直线运动到圆的起始点成功"); + } + else + { + Console.WriteLine("直线运动到圆的起始点失败"); + } + + // 计算另一半圆弧的中间点位置 + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + double[] p4 = new double[6]; + int retval = cSharpBinding_Math.calculateCircleFourthPoint(mathPtr, p1, p2, p3, 1, p4); + + if (retval == 0) + { + Console.Error.WriteLine("计算另一半圆弧的中间点失败,无法完成圆运动"); + } + else + { + // 设置为固定模式 + cSharpBinging_MotionControl.setCirclePathMode(motion_control, 0); + + // 做圆弧运动 + cSharpBinging_MotionControl.moveCircle(motion_control, p2, p3, 1.2, 0.25, 0, 0); + + // 阻塞,等待机械臂运动完成 + ret = waitArrival(robot_interface); + if (ret == -1) + { + Console.WriteLine("圆运动失败"); + } + + // 做组成圆运动的另一半圆弧运动 + cSharpBinging_MotionControl.moveCircle(motion_control, p4, p1, 1.2, 0.25, 0, 0); + + // 阻塞,等待机械臂运动完成 + ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("圆运动成功"); + } + else + { + Console.WriteLine("圆运动失败"); + } + } + } + + static void Main(string[] args) + { + cSharpBinding_RPC csharpbingding_rpc = new cSharpBinding_RPC(); + //初始化机械臂控制库 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + } + cSharpBinding_RPC.rpc_connect(rpc_client, robot_ip, server_port); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + exampleTcpOffsetIdentify(rpc_client); + examplePoseAdd(rpc_client); + examplePoseSub(rpc_client); + exampleInterpolatePose(rpc_client); + examplePoseTrans(rpc_client); + examplePoseTransInv(rpc_client); + examplePoseInverse(rpc_client); + examplePoseDistance(rpc_client); + examplePoseEqual(rpc_client); + exampleRpyToQuat(rpc_client); + exampleQuatToRpy(rpc_client); + exampleCalibrateCoordinate(rpc_client); + // exampleCalculateCircleFourthPoint(rpc_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveJ.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveJ.cs new file mode 100644 index 00000000..5c09b0ef --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveJ.cs @@ -0,0 +1,172 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Threading.Tasks; +using System.Threading; + +namespace csharp_example +{ + class ExampleMoveJ + { + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robotIP = "192.168.204.151"; + //机械臂端口号 + const int serverPort = 30004; + //M_PI + const double M_PI = 3.14159265358979323846; + + + // 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 + static int waitArrival(IntPtr robot_interface) + { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + int exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + + // 等待机械臂开始运动 + while (exec_id == -1) + { + if (cnt++ > max_retry_count) + { + return -1; + } + Thread.Sleep(50); + exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + } + + // 等待机械臂动作完成 + while (cSharpBinging_MotionControl.getExecId(motion_control) != -1) + { + Thread.Sleep(50); + } + + return 0; + } + + static int exampleMoveJ(IntPtr cli) + { + + + List joint_angle1 = new List() + { + 0.0 * (M_PI / 180), -15.0 * (M_PI / 180), 100.0 * (M_PI / 180), + 25.0 * (M_PI / 180), 90.0 * (M_PI / 180), 0.0 * (M_PI / 180) + }; + + List joint_angle2 = new List() + { + 35.92 * (M_PI / 180), -11.28 * (M_PI / 180), 59.96 * (M_PI / 180), + -18.76 * (M_PI / 180), 90.0 * (M_PI / 180), 35.92 * (M_PI / 180) + }; + + List joint_angle3 = new List() + { + 41.04 * (M_PI / 180), -7.65 * (M_PI / 180), 98.80 * (M_PI / 180), + 16.44 * (M_PI / 180), 90.0 * (M_PI / 180), 11.64 * (M_PI / 180) + }; + + // 接口调用: 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串(考虑 '\0' 结尾) + } + + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return -1; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + if (robot_name == "") + { + return -1; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + + // 接口调用: 设置机械臂的速度比率, + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + cSharpBinging_MotionControl.setSpeedFraction(motion_control, 0.3); + + // 接口调用: 关节运动 + cSharpBinging_MotionControl.moveJoint(motion_control, joint_angle1.ToArray(), 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("关节运动到路点1成功"); + } + else + { + Console.WriteLine("关节运动到路点1失败"); + } + + // 接口调用: 关节运动 + cSharpBinging_MotionControl.moveJoint(motion_control, joint_angle2.ToArray(), 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("关节运动到路点2成功"); + } + else + { + Console.WriteLine("关节运动到路点2失败"); + } + + // 接口调用: 关节运动 + cSharpBinging_MotionControl.moveJoint(motion_control, joint_angle3.ToArray(), 80 * (M_PI / 180), 60 * (M_PI / 180), 0, 0); + + // 阻塞 + ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("关节运动到路点3成功"); + } + else + { + Console.WriteLine("关节运动到路点3失败"); + } + return 0; + + + } + static void Main_MoveJ(string[] args) + { + cSharpBinding_RPC csharpbingding_rpc = new cSharpBinding_RPC(); + //初始化机械臂控制库 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robotIP, serverPort); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + exampleMoveJ(rpc_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveSpeed2.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveSpeed2.cs new file mode 100644 index 00000000..3526bc16 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleMoveSpeed2.cs @@ -0,0 +1,520 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Threading; + +namespace csharp_example +{ + class ExampleSpeedLine + { + const int RSERR_SUCC = 0; + + // M_PI + const double M_PI = 3.14159265358979323846; + + // 机械臂IP地址和端口号(请根据实际情况修改) + const string robotIP = "127.0.0.1"; + const int rpcServerPort = 30004; + const int rtdeServerPort = 30010; + + // 坐标系类型枚举 + enum CoordinateSystem + { + BASE_COORDINATE_SYSTEM = 1, + TOOL_COORDINATE_SYSTEM = 2, + USER_COORDINATE_SYSTEM = 3 + } + + // 动作类型枚举 + enum ActionType + { + POSITION_MOVE, // 位置移动 + ORIENTATION_MOVE, // 姿态旋转 + STOP_MOVE, // 停止运动 + EXIT_PROGRAM // 退出程序 + } + + // 用户输入结构 + struct UserInput + { + public ActionType actionType; // 动作类型 + public char axis; // 坐标轴 + public bool positiveDirection; // 坐标轴方向 + } + + // 辅助函数:打印List + static void PrintVec(List param, string name) + { + Console.Write(name + ": "); + for (int i = 0; i < param.Count; i++) + { + Console.Write(param[i]); + if (i != param.Count - 1) + { + Console.Write(", "); + } + } + Console.WriteLine(); + } + + private static cSharpBinging_TypeDef.RobotModeType robot_mode_ = cSharpBinging_TypeDef.RobotModeType.NoController; + // 用于线程同步的锁对象 + private static readonly object rtdeMtx = new object(); + private static cSharpBinding_RTDE.SubscribeCallbackDelegate subscribedCallback; + + private static void PrintMsgLog(cSharpBinging_TypeDef.RobotMsg msg) + { + Console.WriteLine("\n"); + Console.WriteLine($"Timestamp: {msg.timestamp}"); + Console.WriteLine($"Level: {msg.level}"); + Console.WriteLine($"Code: {msg.code}"); + Console.WriteLine($"Source: {msg.source}"); + + if (msg.args != null && msg.args_count > 0) + { + // 解析 args + string[] args = new string[msg.args_count]; + for (int j = 0; j < msg.args_count; j++) + { + IntPtr argPtr = Marshal.ReadIntPtr(msg.args, j * IntPtr.Size); + args[j] = Marshal.PtrToStringAnsi(argPtr); + } + Console.WriteLine("Args:"); + if (args != null) + { + foreach (var arg in args) + { + Console.WriteLine($" - {arg}"); + } + } + + } + else + { + Console.WriteLine("(None)"); + } + + Console.WriteLine(new string('-', 50)); + } + + public static cSharpBinging_TypeDef.RobotMsg[] ReadRobotMsgVector(ref cSharpBinging_TypeDef.RobotMsgVector robot_msg_vec) + { + if (robot_msg_vec.data == IntPtr.Zero || robot_msg_vec.size <= 0) + { + return Array.Empty(); + } + + cSharpBinging_TypeDef.RobotMsg[] result = new cSharpBinging_TypeDef.RobotMsg[robot_msg_vec.size]; + + for (int i = 0; i < robot_msg_vec.size; ++i) + { + IntPtr msgPtr = IntPtr.Add(robot_msg_vec.data, i * Marshal.SizeOf(typeof(cSharpBinging_TypeDef.RobotMsg))); + cSharpBinging_TypeDef.RobotMsg msg = Marshal.PtrToStructure(msgPtr); + + result[i] = new cSharpBinging_TypeDef.RobotMsg + { + timestamp = msg.timestamp, + level = msg.level, + code = msg.code, + source = msg.source, + args = msg.args, + args_count = msg.args_count + }; + } + + return result; + } + + private static void OnDataReceived(IntPtr parser) + { + lock (rtdeMtx) + { + robot_mode_ = cSharpBinding_RTDE.rtde_popRobotModeType(parser); + OnRobotMsgReceived(parser); + } + } + + private static void OnRobotMsgReceived(IntPtr parser) + { + cSharpBinging_TypeDef.RobotMsgVector robotMsgVec = new cSharpBinging_TypeDef.RobotMsgVector(); + + int result = cSharpBinding_RTDE.rtde_popRobotMsgVector(parser, ref robotMsgVec); + if (result <= 0) + { + Console.WriteLine("No messages received or error occurred."); + return; + } + + // 解析消息 + cSharpBinging_TypeDef.RobotMsg[] msgs = ReadRobotMsgVector(ref robotMsgVec); + foreach (var msg in msgs) + { + PrintMsgLog(msg); + } + + } + + // 选择坐标系对应的参考帧 + static List SelectedCoordinate(CoordinateSystem coordinate, IntPtr cli) + { + // 接口调用: 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); + } + + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); + } + return new List(new double[6]); + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); + } + if (string.IsNullOrEmpty(robot_name)) + { + return new List(new double[6]); + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + List frame = new List(new double[6]); + + switch (coordinate) + { + case CoordinateSystem.BASE_COORDINATE_SYSTEM: + frame = new List(new double[6]); + break; + case CoordinateSystem.TOOL_COORDINATE_SYSTEM: + double[] tcpPose = new double[6]; + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + cSharpBinging_RobotState.getTcpPose(robot_state, tcpPose); + frame = tcpPose.ToList(); + frame[0] = 0; + frame[1] = 0; + frame[2] = 0; + break; + case CoordinateSystem.USER_COORDINATE_SYSTEM: + // TCP 在基坐标系下的位姿 + List coord_p0 = new List(new double[6]); + List coord_p1 = new List(new double[6]); + List coord_p2 = new List(new double[6]); + coord_p0[0] = 0.49946; + coord_p0[1] = 0.32869; + coord_p0[2] = 0.35522; + coord_p0[3] = 2.414; + coord_p0[4] = 0.0; + coord_p0[5] = 2.357; + + coord_p1[0] = 0.58381; + coord_p1[1] = 0.41325; + coord_p1[2] = 0.22122; + coord_p1[3] = 2.414; + coord_p1[4] = 0.0; + coord_p1[5] = 2.357; + + coord_p2[0] = 0.58826; + coord_p2[1] = 0.41772; + coord_p2[2] = 0.46730; + coord_p2[3] = 2.414; + coord_p2[4] = 0.0; + coord_p2[5] = 2.357; + + // 展平二维数组为一维数组(行优先) + double[] flat_coords = new double[3 * 6]; + for (int i = 0; i < 3; i++) + { + List coord = (i == 0) ? coord_p0 : (i == 1) ? coord_p1 : coord_p2; + for (int j = 0; j < 6; j++) + { + flat_coords[i * 6 + j] = coord[j]; + } + } + + double[] user_on_base = new double[6]; + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + int ret = cSharpBinding_Math.calibrateCoordinate(mathPtr, flat_coords, 3, 0, user_on_base); + if (ret != RSERR_SUCC) + { + Console.WriteLine("calibrateCoordinate failed, ret = " + ret); + } + frame = user_on_base.ToList(); + frame[0] = 0; + frame[1] = 0; + frame[2] = 0; + break; + } + return frame; + } + + // 在不同坐标系下的位置姿态示教 + static void exampleSpeedLine(IntPtr cli) + { + int input_coord; + Console.WriteLine("请选择坐标系:"); + Console.WriteLine("1. 基坐标系"); + Console.WriteLine("2. 工具坐标系"); + Console.WriteLine("3. 用户坐标系"); + Console.Write("请输入选项编号:"); + string input = Console.ReadLine(); + if (!int.TryParse(input, out input_coord)) + { + Console.WriteLine("输入值无效"); + Console.WriteLine("以下为有效输入值: 1、2、3"); + return; + } + + if (input_coord != 1 && input_coord != 2 && input_coord != 3) + { + Console.WriteLine("输入值无效"); + Console.WriteLine("以下为有效输入值: 1、2、3"); + return; + } + + CoordinateSystem selected_coord; + switch (input_coord) + { + case 1: + selected_coord = CoordinateSystem.BASE_COORDINATE_SYSTEM; + break; + case 2: + selected_coord = CoordinateSystem.TOOL_COORDINATE_SYSTEM; + break; + case 3: + selected_coord = CoordinateSystem.USER_COORDINATE_SYSTEM; + break; + default: + selected_coord = CoordinateSystem.BASE_COORDINATE_SYSTEM; + break; + } + + // 定义输入字符串和键值映射 + Dictionary keymap = new Dictionary + { + { "x+", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'x', positiveDirection = true } }, + { "x-", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'x', positiveDirection = false } }, + { "y+", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'y', positiveDirection = true } }, + { "y-", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'y', positiveDirection = false } }, + { "z+", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'z', positiveDirection = true } }, + { "z-", new UserInput { actionType = ActionType.POSITION_MOVE, axis = 'z', positiveDirection = false } }, + { "rx+", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'x', positiveDirection = true } }, + { "rx-", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'x', positiveDirection = false } }, + { "ry+", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'y', positiveDirection = true } }, + { "ry-", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'y', positiveDirection = false } }, + { "rz+", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'z', positiveDirection = true } }, + { "rz-", new UserInput { actionType = ActionType.ORIENTATION_MOVE, axis = 'z', positiveDirection = false } }, + { "s", new UserInput { actionType = ActionType.STOP_MOVE, axis = 'x', positiveDirection = true } }, + { "exit", new UserInput { actionType = ActionType.EXIT_PROGRAM, axis = 'x', positiveDirection = true } } + }; + + // 初始化循环控制变量 + bool continue_loop = true; + int cnt = 0; + while (continue_loop) + { + Console.WriteLine("请输入机械臂要运动的轴: "); + // 显示有效输入提示 + if (cnt++ == 0) + { + Console.WriteLine("有效输入值如下: x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+、rz-、s、exit"); + Console.WriteLine("x+表示x轴正方向做直线运动,x-表示x轴负方向做直线运动,y+表示y轴正方向做直线运动,y-表示y轴负方向做直线运动,z+表示z轴正方向做直线运动,z-表示z轴负方向做直线运动,rx+表示x轴正方向做旋转运动,rx-表示x轴负方向做旋转运动,ry+表示y轴正方向做旋转运动,ry-表示y轴负方向做旋转运动,rz+表示z轴正方向做旋转运动,rz-表示z轴负方向做旋转运动,s表示停止运动,exit表示退出循环"); + } + string input_axis = Console.ReadLine(); + + // 定义有效的输入值集合 + HashSet validInputs = new HashSet + { + "x+", "x-", "y+", "y-", "z+", "z-", "rx+", "rx-", "ry+", "ry-", "rz+", "rz-", "s", "exit" + }; + + if (!validInputs.Contains(input_axis)) + { + Console.WriteLine("输入值无效"); + Console.WriteLine("以下为有效输入值: x+、x-、y+、y-、z+、z-、rx+、rx-、ry+、ry-、rz+、rz-、s、exit"); + continue; + } + + // 接口调用: 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); + } + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); + } + Console.WriteLine("获取机器人名字失败"); + continue; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); + } + if (string.IsNullOrEmpty(robot_name)) + { + Console.WriteLine("机器人名字为空"); + continue; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + + // 接口调用: 设置机械臂的速度比率 + cSharpBinging_MotionControl.setSpeedFraction(motion_control, 0.75); + + UserInput userInput = keymap[input_axis]; + + double[] speed = new double[6]; + double tcp_speed = 0.25; + double a = 1.2; + tcp_speed = userInput.positiveDirection ? tcp_speed : -tcp_speed; + + List frame = new List(); + if (userInput.actionType == ActionType.EXIT_PROGRAM) + { + continue_loop = false; + } + else if (userInput.actionType == ActionType.STOP_MOVE) + { + // 接口调用: 停止位置姿态示教 + cSharpBinging_MotionControl.stopLine(motion_control, 10, 10); + } + else if (userInput.actionType == ActionType.POSITION_MOVE) + { + frame = SelectedCoordinate(selected_coord, cli); + + // 位置移动 + switch (userInput.axis) + { + case 'x': + speed[0] = tcp_speed; + break; + case 'y': + speed[1] = tcp_speed; + break; + case 'z': + speed[2] = tcp_speed; + break; + } + + double[] frameArray = frame.ToArray(); + double[] result = new double[6]; + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + cSharpBinding_Math.poseTrans(mathPtr, frameArray, speed, result); + result[3] = 0; + result[4] = 0; + result[5] = 0; + + cSharpBinging_MotionControl.speedLine(motion_control, result, a, 100); + } + else if (userInput.actionType == ActionType.ORIENTATION_MOVE) + { + frame = SelectedCoordinate(selected_coord, cli); + // 姿态旋转 + switch (userInput.axis) + { + case 'x': + speed[0] = tcp_speed; + break; + case 'y': + speed[1] = tcp_speed; + break; + case 'z': + speed[2] = tcp_speed; + break; + } + + double[] frameArray = frame.ToArray(); + double[] result = new double[6]; + IntPtr mathPtr = cSharpBinding_RPC.rpc_getMath(cli); + cSharpBinding_Math.poseTrans(mathPtr, frameArray, speed, result); + + result[3] = result[0]; + result[4] = result[1]; + result[5] = result[2]; + result[0] = 0; + result[1] = 0; + result[2] = 0; + + cSharpBinging_MotionControl.speedLine(motion_control, result, a, 100); + } + } + } + + static void PrintLog(int level, string source, int code, string content) + { + string[] level_names = { "Critical", "Error", "Warning", "Info", "Debug", "BackTrace" }; + Console.WriteLine($"[{level_names[level]}] {source} - {code} {content}"); + } + + + static void Main(string[] args) + { + // 初始化RPC客户端 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.WriteLine("rpc_create_client failed!"); + return; + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robotIP, rpcServerPort); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + // 初始化RTDE客户端 + IntPtr rtde_client = cSharpBinding_RTDE.rtde_create_client(0); + Console.WriteLine("rtde_create_client ret={0}", rtde_client); + if (rtde_client == IntPtr.Zero) + { + Console.WriteLine("rtde_create_client failed!"); + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + return; + } + + cSharpBinding_RTDE.rtde_connect(rtde_client, robotIP, rtdeServerPort); + cSharpBinding_RTDE.rtde_login(rtde_client, "aubo", "123456"); + + // 设置RTDE话题 + string topicNames = "R1_robot_mode,R1_message"; + int topic = cSharpBinding_RTDE.rtde_setTopic(rtde_client, false, topicNames, 1, 0); + if (topic < 0) + { + Console.WriteLine("设置话题失败!"); + cSharpBinding_RTDE.rtde_logout(rtde_client); + cSharpBinding_RTDE.rtde_disconnect(rtde_client); + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + return; + } + + // 订阅话题 + subscribedCallback = new cSharpBinding_RTDE.SubscribeCallbackDelegate(OnDataReceived); + cSharpBinding_RTDE.rtde_subscribe(rtde_client, topic, subscribedCallback); + + // 执行速度直线示教示例 + exampleSpeedLine(rpc_client); + + cSharpBinding_RTDE.rtde_removeTopic(rtde_client, false, topic); + cSharpBinding_RTDE.rtde_logout(rtde_client); + cSharpBinding_RTDE.rtde_disconnect(rtde_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleRtde.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleRtde.cs new file mode 100644 index 00000000..b6114e24 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleRtde.cs @@ -0,0 +1,190 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Runtime.InteropServices; + +namespace csharp_example +{ + class ExampleRtde + { + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robotIP = "192.168.124.154"; + //机械臂端口号 + const int rpcServerPort = 30004; + const int rtdeServerPort = 30010; + //M_PI + const double M_PI = 3.14159265358979323846; + + private static cSharpBinging_TypeDef.RobotModeType robot_mode_ = cSharpBinging_TypeDef.RobotModeType.NoController; + private static cSharpBinging_TypeDef.SafetyModeType safety_mode_ = cSharpBinging_TypeDef.SafetyModeType.Normal; + private static cSharpBinging_TypeDef.RuntimeState runtime_state_ = cSharpBinging_TypeDef.RuntimeState.Stopped; + private static double actual_main_voltage_ = 0; + private static double actual_robot_voltage_ = 0; + private static double[] actual_TCP_pose_ = new double[6]; + + // 用于线程同步的锁对象 + private static readonly object rtdeMtx = new object(); + private static cSharpBinding_RTDE.SubscribeCallbackDelegate subscribedCallback; + + private static void PrintMsgLog(cSharpBinging_TypeDef.RobotMsg msg) + { + Console.WriteLine($"Timestamp: {msg.timestamp}"); + Console.WriteLine($"Level: {msg.level}"); + Console.WriteLine($"Code: {msg.code}"); + Console.WriteLine($"Source: {msg.source}"); + + if (msg.args != null && msg.args_count > 0) + { + // 解析 args + string[] args = new string[msg.args_count]; + for (int j = 0; j < msg.args_count; j++) + { + IntPtr argPtr = Marshal.ReadIntPtr(msg.args, j * IntPtr.Size); + args[j] = Marshal.PtrToStringAnsi(argPtr); + } + Console.WriteLine("Args:"); + if (args != null) + { + foreach (var arg in args) + { + Console.WriteLine($" - {arg}"); + } + } + + } + else + { + Console.WriteLine("(None)"); + } + + Console.WriteLine(new string('-', 50)); + } + + public static cSharpBinging_TypeDef.RobotMsg[] ReadRobotMsgVector(ref cSharpBinging_TypeDef.RobotMsgVector robot_msg_vec) + { + if (robot_msg_vec.data == IntPtr.Zero || robot_msg_vec.size <= 0) + { + return Array.Empty(); + } + + cSharpBinging_TypeDef.RobotMsg[] result = new cSharpBinging_TypeDef.RobotMsg[robot_msg_vec.size]; + + for (int i = 0; i < robot_msg_vec.size; ++i) + { + IntPtr msgPtr = IntPtr.Add(robot_msg_vec.data, i * Marshal.SizeOf(typeof(cSharpBinging_TypeDef.RobotMsg))); + cSharpBinging_TypeDef.RobotMsg msg = Marshal.PtrToStructure(msgPtr); + + result[i] = new cSharpBinging_TypeDef.RobotMsg + { + timestamp = msg.timestamp, + level = msg.level, + code = msg.code, + source = msg.source, + args = msg.args, + args_count = msg.args_count + }; + } + + return result; + } + + private static void OnDataReceived(IntPtr parser) + { + lock (rtdeMtx) + { + robot_mode_ = cSharpBinding_RTDE.rtde_popRobotModeType(parser); + safety_mode_ = cSharpBinding_RTDE.rtde_popSafetyModeType(parser); + runtime_state_ = cSharpBinding_RTDE.rtde_popRuntimeState(parser); + actual_main_voltage_ = cSharpBinding_RTDE.rtde_popDouble(parser); + actual_robot_voltage_ = cSharpBinding_RTDE.rtde_popDouble(parser); + cSharpBinding_RTDE.rtde_popVectorDouble(parser, actual_TCP_pose_ ,6); + OnRobotMsgReceived(parser); + } + } + + private static void OnRobotMsgReceived(IntPtr parser) + { + cSharpBinging_TypeDef.RobotMsgVector robotMsgVec = new cSharpBinging_TypeDef.RobotMsgVector(); + + int result = cSharpBinding_RTDE.rtde_popRobotMsgVector(parser, ref robotMsgVec); + if (result <= 0) + { + Console.WriteLine("No messages received or error occurred."); + return; + } + + // 解析消息 + cSharpBinging_TypeDef.RobotMsg[] msgs = ReadRobotMsgVector(ref robotMsgVec); + foreach (var msg in msgs) + { + PrintMsgLog(msg); + } + + } + static int exampleSubscribe(IntPtr cli) + { + + // 设置话题 + string topicNames = "R1_robot_mode,R1_safety_mode,runtime_state,R1_actual_main_voltage,R1_actual_robot_voltage,R1_actual_TCP_pose,R1_message"; + int topic7 = cSharpBinding_RTDE.rtde_setTopic(cli, false, topicNames, 3, 7); + subscribedCallback = new cSharpBinding_RTDE.SubscribeCallbackDelegate(OnDataReceived); + cSharpBinding_RTDE.rtde_subscribe(cli, topic7, subscribedCallback); + + return 0; + } + + static void Main_Rtde(string[] args) + { + + cSharpBinding_RPC csharpbingding_rpc = new cSharpBinding_RPC(); + //初始化机械臂控制库 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0} ", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robotIP, rpcServerPort); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + IntPtr rtde_client = cSharpBinding_RTDE.rtde_create_client(0); + Console.Out.WriteLine("rtde_create_client ret={0} ", rtde_client); + if (rtde_client == IntPtr.Zero) + { + Console.Error.WriteLine("rtde_create_client failed!"); + } + + cSharpBinding_RTDE.rtde_connect(rtde_client, robotIP, rtdeServerPort); + cSharpBinding_RTDE.rtde_login(rtde_client, "aubo", "123456"); + + // RTDE订阅 + exampleSubscribe(rtde_client); + + // 主循环 + while (true) + { + Console.WriteLine($"当前模式: {robot_mode_}"); + Console.WriteLine($"安全状态: {safety_mode_}"); + Console.WriteLine($"运行状态: {runtime_state_}"); + Console.WriteLine($"主电压: {actual_main_voltage_:F2} V"); + Console.WriteLine($"机器人电压: {actual_robot_voltage_:F2} V"); + Console.WriteLine("机器人当前位姿: " + string.Join(", ", actual_TCP_pose_.Select(v => v.ToString("F6")))); + Console.WriteLine(new string('-', 30)); + + Thread.Sleep(1000); + } + + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + + } + + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleSkillForceControl.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleSkillForceControl.cs new file mode 100644 index 00000000..2222230e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleSkillForceControl.cs @@ -0,0 +1,314 @@ +using csharp_example; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using static csharp_skill_example.cSharpSkillBinding_TypeDef; + +namespace csharp_skill_example +{ + internal class ExampleSkillForceControl + { + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robot_ip = "192.168.1.20"; + //机械臂端口号 + const int server_port = 30004; + + const int server_port_1 = 30010; + + + // 等待机械臂进入目标模式,避免无限阻塞 + static bool WaitForRobotMode(IntPtr robot_state, cSharpBinging_TypeDef.RobotModeType target_mode, int timeoutMs = 30000) + { + // 接口调用: 获取当前机械臂的模式 + cSharpBinging_TypeDef.RobotModeType current_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + int elapsedMs = 0; + const int pollIntervalMs = 1000; + + while (current_mode != target_mode) + { + if (elapsedMs >= timeoutMs) + { + Console.Error.WriteLine($"等待机械臂进入模式 {target_mode} 超时,当前模式: {current_mode}"); + return false; + } + Console.WriteLine($"机械臂当前模式: {current_mode}"); + Thread.Sleep(pollIntervalMs); + elapsedMs += pollIntervalMs; + current_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + } + return true; + } + + static int exampleStartup(IntPtr cli) + { + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串(考虑 '\0' 结尾) + } + try + { + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + return -1; + } + + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + if (string.IsNullOrEmpty(robot_name)) + { + return -1; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + + // 接口调用: 设置负载 + double mass = 0.0; // 示例质量值 + double[] cog = { 0.0, 0.0, 0.0 }; // 示例重心坐标 + double[] aom = { 0.0, 0.0, 0.0 }; // 示例附加质量矩 + double[] inertia = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; // 示例惯性张量 + + IntPtr robot_config = cSharpBinging_RobotInterface.robot_getRobotConfig(robot_interface); + + cSharpBinging_RobotConfig.setPayload(robot_config, mass, cog, aom, inertia); + + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + // 接口调用: 获取机械臂当前模式 + cSharpBinging_TypeDef.RobotModeType robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + + if (robot_mode == cSharpBinging_TypeDef.RobotModeType.Running) + { + Console.WriteLine("机械臂已松刹车,处于运行模式"); + return 0; + } + + IntPtr robot_manage = cSharpBinging_RobotInterface.robot_getRobotManage(robot_interface); + // 接口调用: 机械臂发起上电请求 + cSharpBinging_RobotManage.poweron(robot_manage); + + + // 等待机械臂进入空闲模式 + if (!WaitForRobotMode(robot_state, cSharpBinging_TypeDef.RobotModeType.Idle)) + { + return -1; + } + + robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + Console.WriteLine($"机械臂上电成功,当前模式:{robot_mode}"); + + // 接口调用: 机械臂发起松刹车请求 + cSharpBinging_RobotManage.startup(robot_manage); + + // 等待机械臂进入运行模式 + if (!WaitForRobotMode(robot_state, cSharpBinging_TypeDef.RobotModeType.Running)) + { + return -1; + } + + robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + Console.WriteLine($"机械臂松刹车成功,当前模式: {robot_mode}"); + + return 0; + } + finally + { + for (int i = 0; i < 10; i++) + { + if (robot_names[i] != IntPtr.Zero) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + robot_names[i] = IntPtr.Zero; + } + } + } + } + + static public void exampleInsert(IntPtr rpc_client, IntPtr rtde_client) + { + IntPtr fc = cSharpSkillBinding_ForceControl.create_fc_ptr(rpc_client, rtde_client); + if (fc == IntPtr.Zero) + { + Console.Error.WriteLine("create_fc_ptr failed!"); + return; + } + // 设置插孔参数 + cSharpSkillBinding_TypeDef.InsertParams param = new cSharpSkillBinding_TypeDef.InsertParams(); + param.insert_select = cSharpSkillBinding_TypeDef.InsertSelect.z; + param.hole_diameter = 0.0; + param.insert_max_speed = 0.005; + param.insert_time = 1000; + param.insert_max_force = new cSharpSkillBinding_TypeDef.Vector6d(0.0, 0.0, 10.0, 0.0 ,0.0, 0.0); + param.insert_max_depth = 0.005; + param.insert_guide_force = 5; + + param.insert_damp_scale = new cSharpSkillBinding_TypeDef.Vector6d(0.0, 0.0, 0.5, 0.0, 0.0, 0.0); + param.insert_stiff_scale = new cSharpSkillBinding_TypeDef.Vector6d(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + + // 无参考轨迹 + param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.NONE; + + // 螺旋线 + //param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.SPIRAL; + //param.spiral_param.step = 3; + //param.spiral_param.direction = 1; + //param.spiral_param.plane = cSharpSkillBinding_TypeDef.SpiralPlane.xy; + //param.spiral_param.spiral = 0.005; + //param.spiral_param.helix = 0.005; + //param.spiral_param.radius = 0.06; + + // 摆线 + //param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.WEAVE; + //param.weave_param.step = 30; + //param.weave_param.direction = cSharpSkillBinding_TypeDef.WeaveSelect.rx; + //param.weave_param.amplitude = 0.005; + //param.weave_param.hold_distance = 0.2; + //param.weave_param.angle = 0.1; + + cSharpSkillBinding_ForceControl.fcInsert(fc, param); + + // 等待插孔流程结束 + int ret = cSharpSkillBinding_ForceControl.fcWaitCondition(fc); + + if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.Insert_Succeed) + { + Console.WriteLine("插孔成功!"); + } + else if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.Insert_MaxForce) + { + Console.Error.WriteLine("插孔力过大!"); + } + else if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.TimeOut) + { + Console.Error.WriteLine("插孔超时!"); + } + else + { + Console.Error.WriteLine("Error state code!"); + } + + // 退出力控 + cSharpSkillBinding_ForceControl.fcExit(fc); + cSharpSkillBinding_ForceControl.destroy_fc_ptr(fc); + } + + + static public void exampleSearch(IntPtr rpc_client, IntPtr rtde_client) + { + IntPtr fc = cSharpSkillBinding_ForceControl.create_fc_ptr(rpc_client, rtde_client); + if (fc == IntPtr.Zero) + { + Console.Error.WriteLine("create_fc_ptr failed!"); + return; + } + // 设置插孔参数 + cSharpSkillBinding_TypeDef.SearchParams param = new cSharpSkillBinding_TypeDef.SearchParams(); + param.search_plane = cSharpSkillBinding_TypeDef.SearchPlane.xy; + param.hole_diameter = 0.0; + param.search_range = 0.005; + param.search_time = 1000; + param.search_max_force = 10.0; + param.search_guide_force = 5; + + param.search_damp_scale = new cSharpSkillBinding_TypeDef.Vector6d(0.0, 0.0, 1000, 0.0, 0.0, 0.0); + param.search_stiff_scale = new cSharpSkillBinding_TypeDef.Vector6d(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + + + // 无参考轨迹 + param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.NONE; + + // 螺旋线 + //param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.SPIRAL; + //param.spiral_param.step = 3; + //param.spiral_param.direction = 1; + //param.spiral_param.plane = cSharpSkillBinding_TypeDef.SpiralPlane.xy; + //param.spiral_param.spiral = 0.005; + //param.spiral_param.helix = 0.005; + //param.spiral_param.radius = 0.06; + + // 摆线 + //param.guide_traj_type = cSharpSkillBinding_TypeDef.GuideTrajType.WEAVE; + //param.weave_param.step = 30; + //param.weave_param.direction = cSharpSkillBinding_TypeDef.WeaveSelect.rx; + //param.weave_param.amplitude = 0.005; + //param.weave_param.hold_distance = 0.2; + //param.weave_param.angle = 0.1; + + cSharpSkillBinding_ForceControl.fcSearch(fc, param); + + // 等待接近流程结束 + int ret = cSharpSkillBinding_ForceControl.fcWaitCondition(fc); + if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.Search_Succeed) + { + Console.WriteLine("搜孔成功!"); + } + else if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.Search_MaxForce) + { + Console.Error.WriteLine("搜孔力过大!"); + } + else if (ret == (int)cSharpSkillBinding_TypeDef.StateCode.TimeOut) + { + Console.Error.WriteLine("搜孔超时!"); + } + else + { + Console.Error.WriteLine("Error state code!"); + } + + // 退出力控 + cSharpSkillBinding_ForceControl.fcExit(fc); + cSharpSkillBinding_ForceControl.destroy_fc_ptr(fc); + } + + static void Main(string[] args) + { + //初始化机械臂控制库 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + return; + } + + IntPtr rtde_client = cSharpBinding_RTDE.rtde_create_client(0); + Console.Out.WriteLine("rtde_create_client ret={0}", rtde_client); + if (rtde_client == IntPtr.Zero) + { + Console.Error.WriteLine("rtde_create_client failed!"); + return; + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robot_ip, server_port); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + cSharpBinding_RTDE.rtde_connect(rtde_client, robot_ip, server_port_1); + cSharpBinding_RTDE.rtde_login(rtde_client, "aubo", "123456"); + + if (exampleStartup(rpc_client) != 0) + { + cSharpBinding_RTDE.rtde_logout(rtde_client); + cSharpBinding_RTDE.rtde_disconnect(rtde_client); + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + return; + } + + exampleInsert(rpc_client, rtde_client); + //exampleSearch(rpc_client, rtde_client); + + cSharpBinding_RTDE.rtde_logout(rtde_client); + cSharpBinding_RTDE.rtde_disconnect(rtde_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleStartup.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleStartup.cs new file mode 100644 index 00000000..eb5f82b6 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleStartup.cs @@ -0,0 +1,127 @@ +using System; +using System.Threading; +using System.Runtime.InteropServices; + +namespace csharp_example +{ + + class ExampleStartup + { + + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robot_ip = "192.168.204.151"; + //机械臂端口号 + const int server_port = 30004; + + + // 等待机械臂进入目标模式 + static void WaitForRobotMode(IntPtr robot_state, cSharpBinging_TypeDef.RobotModeType target_mode) + { + // 接口调用: 获取当前机械臂的模式 + cSharpBinging_TypeDef.RobotModeType current_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + + while (current_mode != target_mode) + { + Console.WriteLine($"机械臂当前模式: {current_mode}"); + Thread.Sleep(1000); + current_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + } + } + + static int exampleStartup(IntPtr cli) + { + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串(考虑 '\0' 结尾) + } + + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return -1; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + if (robot_name == "") { + return -1; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + + // 接口调用: 设置负载 + double mass = 0.0; // 示例质量值 + double[] cog = { 0.0, 0.0, 0.0 }; // 示例重心坐标 + double[] aom = { 0.0, 0.0, 0.0 }; // 示例附加质量矩 + double[] inertia = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; // 示例惯性张量 + + IntPtr robot_config = cSharpBinging_RobotInterface.robot_getRobotConfig(robot_interface); + + cSharpBinging_RobotConfig.setPayload(robot_config, mass, cog, aom, inertia); + + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + // 接口调用: 获取机械臂当前模式 + cSharpBinging_TypeDef.RobotModeType robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + + if (robot_mode == cSharpBinging_TypeDef.RobotModeType.Running) + { + Console.WriteLine("机械臂已松刹车,处于运行模式"); + return -1; + } + + IntPtr robot_manage = cSharpBinging_RobotInterface.robot_getRobotManage(robot_interface); + // 接口调用: 机械臂发起上电请求 + cSharpBinging_RobotManage.poweron(robot_manage); + + + // 等待机械臂进入空闲模式 + WaitForRobotMode(robot_state, cSharpBinging_TypeDef.RobotModeType.Idle); + + robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + Console.WriteLine($"机械臂上电成功,当前模式:{0}", robot_mode); + + // 接口调用: 机械臂发起松刹车请求 + cSharpBinging_RobotManage.startup(robot_manage); + + // 等待机械臂进入运行模式 + WaitForRobotMode(robot_state, cSharpBinging_TypeDef.RobotModeType.Running); + + robot_mode = cSharpBinging_RobotState.getRobotModeType(robot_state); + Console.WriteLine($"机械臂松刹车成功,当前模式: {0}", robot_mode); + + return 0; + } + + static void Main(string[] args) + { + cSharpBinding_RPC csharpbingding_rpc = new cSharpBinding_RPC(); + //初始化机械臂控制库 + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robot_ip, server_port); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + exampleStartup(rpc_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleTrackJ.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleTrackJ.cs new file mode 100644 index 00000000..b86a0bff --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/ExampleTrackJ.cs @@ -0,0 +1,262 @@ +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; +using System.IO; +using System.Threading; + +namespace csharp_example +{ + + class ExampleTrackJ + { + const int RSERR_SUCC = 0; + + static UInt16 rshd = 0xffff; + //机械臂IP地址 + const string robot_ip = "192.168.204.151"; + //机械臂端口号 + const int server_port = 30004; + //M_PI + const double M_PI = 3.14159265358979323846; + + // 实现阻塞功能: 当机械臂运动到目标路点时,程序再往下执行 + static int waitArrival(IntPtr robot_interface) + { + const int max_retry_count = 5; + int cnt = 0; + + // 接口调用: 获取当前的运动指令 ID + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + int exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + + // 等待机械臂开始运动 + while (exec_id == -1) + { + if (cnt++ > max_retry_count) + { + return -1; + } + Thread.Sleep(50); + exec_id = cSharpBinging_MotionControl.getExecId(motion_control); + } + + // 等待机械臂动作完成 + while (cSharpBinging_MotionControl.getExecId(motion_control) != -1) + { + Thread.Sleep(50); + } + + return 0; + } + + // 轨迹数据读取类 + class TrajectoryIo + { + private StreamReader input_file; + + // 构造函数,接受要打开的文件名作为参数 + public TrajectoryIo(string filename) + { + try + { + input_file = new StreamReader(filename); + } + catch (Exception ex) + { + Console.WriteLine($"无法打开轨迹文件. 请检查输入的文件路径是否正确. 异常信息: {ex.Message}"); + } + } + + // 检查文件是否成功打开 + public bool Open() + { + return input_file != null; + } + + // 解析文件中的轨迹数据, + public List> Parse() + { + List> res = new List>(); + string tmp; + int linenum = 1; + while ((tmp = input_file.ReadLine()) != null) + { + try + { + List q = Split(tmp, ","); + res.Add(q); + } + catch (Exception p) + { + Console.WriteLine($"Line: {linenum} \"{p.Message}\" is not a number of double"); + break; + } + linenum++; + } + return res; + } + + // 切割字符串并转换为double类型 + private List Split(string str, string delim) + { + List res = new List(); + if (string.IsNullOrEmpty(str)) + { + return res; + } + + string[] parts = str.Split(delim.ToCharArray(), StringSplitOptions.RemoveEmptyEntries); + foreach (string part in parts) + { + if (double.TryParse(part, out double v)) + { + res.Add(v); + } + else + { + throw new Exception(part); + } + } + return res; + } + } + + static int exampleTrackJoint(IntPtr cli) + { + // 读取轨迹文件 + string filename = "../trajs/record6.offt"; + TrajectoryIo input = new TrajectoryIo(filename); + + // 尝试打开轨迹文件,如果无法打开,直接返回 + if (!input.Open()) + { + return 0; + } + + // 解析轨迹数据 + List> traj = input.Parse(); + + // 检查轨迹文件中是否有路点, + if (traj.Count == 0) + { + Console.WriteLine("轨迹文件中的路点数量为0."); + return 0; + } + + // 接口调用: 获取机器人的名字 + IntPtr[] robot_names = new IntPtr[10]; + for (int i = 0; i < 10; i++) + { + robot_names[i] = Marshal.AllocHGlobal(100); // 分配100字节内存用于存放字符串(考虑 '\0' 结尾) + } + + int num = cSharpBinding_RPC.rpc_getRobotNames(cli, robot_names); + if (num <= 0) + { + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + return -1; + } + string robot_name = Marshal.PtrToStringAnsi(robot_names[0]); + for (int i = 0; i < 10; i++) + { + Marshal.FreeHGlobal(robot_names[i]); // 释放分配的内存 + } + if (robot_name == "") + { + return -1; + } + + IntPtr robot_interface = cSharpBinding_RPC.rpc_getRobotInterface(cli, robot_name); + + // 接口调用: 设置机械臂的速度比率, + IntPtr motion_control = cSharpBinging_RobotInterface.robot_getMotionControl(robot_interface); + cSharpBinging_MotionControl.setSpeedFraction(motion_control, 0.3); + + // 接口调用: 关节运动到轨迹中的第一个点,否则容易引起较大超调 + cSharpBinging_MotionControl.moveJoint(motion_control, traj[0].ToArray(), 80 * (M_PI / 180), + 60 * (M_PI / 180), 0, 0); + + // 阻塞 + int ret = waitArrival(robot_interface); + if (ret == 0) + { + Console.WriteLine("关节运动到轨迹文件中的第一个路点成功"); + } + else + { + Console.WriteLine("关节运动到轨迹文件中的第一个路点失败"); + } + + for (int i = 1; i < traj.Count; i++) + { + int traj_queue_size = cSharpBinging_MotionControl.getTrajectoryQueueSize(motion_control); + Console.WriteLine($"traj_queue_size: {traj_queue_size}"); + while (traj_queue_size > 8) + { + traj_queue_size = cSharpBinging_MotionControl.getTrajectoryQueueSize(motion_control); + Thread.Sleep(1); + } + + cSharpBinging_MotionControl.moveJoint(motion_control, traj[i].ToArray(), 0.01, 0.5, 1, 0); + + } + + // 等待运动结束 + IntPtr robot_state = cSharpBinging_RobotInterface.robot_getRobotState(robot_interface); + while (!cSharpBinging_RobotState.isSteady(robot_state)) + { + Thread.Sleep(5); + } + + cSharpBinging_MotionControl.stopJoint(motion_control, 1); + + Console.WriteLine("trackJoint 运动结束"); + + return 0; + } + + + static void Main_TrackJ() + { +#if NETCOREAPP + // 获取实时优先级最大值 + int sched_max = GetMaxPriority(); + + // 设置实时调度策略及优先级 + SchedParam sParam = new SchedParam(); + sParam.Priority = sched_max; + SetScheduler(0, SchedType.FIFO, sParam); + int i_schedFlag = GetScheduler(0); + Console.WriteLine($"设置调度策略 = [{i_schedFlag}]"); + + // 绑定CPU + CpuSet cpuset = new CpuSet(); + CpuSet.Clear(cpuset); + CpuSet.Set(1, cpuset); + SetAffinity(0, cpuset); +#endif + + IntPtr rpc_client = cSharpBinding_RPC.rpc_create_client(0); + Console.Out.WriteLine("rpc_create_client ret={0}", rpc_client); + if (rpc_client == IntPtr.Zero) + { + Console.Error.WriteLine("rpc_create_client failed!"); + } + + cSharpBinding_RPC.rpc_connect(rpc_client, robot_ip, server_port); + cSharpBinding_RPC.rpc_setRequestTimeout(rpc_client, 1000); + cSharpBinding_RPC.rpc_login(rpc_client, "aubo", "123456"); + + exampleTrackJoint(rpc_client); + + cSharpBinding_RPC.rpc_logout(rpc_client); + cSharpBinding_RPC.rpc_disconnect(rpc_client); + } + + + + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp-example.csproj b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp-example.csproj new file mode 100644 index 00000000..408b133b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp-example.csproj @@ -0,0 +1,121 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {9E7E89A9-4BBE-4399-BF67-453431AB1AE3} + Exe + Properties + auboi5_sdk_for_windows_x86_csharp + auboi5-sdk-for-windows-x86-csharp + v4.8 + + + 512 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true + + + x64 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + prompt + true + false + false + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + prompt + false + false + false + + + + + + + + + + + + + + + + + + + + + False + Microsoft .NET Framework 4 Client Profile %28x86 和 x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + False + Windows Installer 4.5 + true + + + + + + + + \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_binding.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_binding.cs new file mode 100644 index 00000000..4fa6c9b4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_binding.cs @@ -0,0 +1,4174 @@ +using System; +using System.ComponentModel; +using System.Runtime.InteropServices; +using System.Text; + +namespace csharp_example +{ + using ROBOT_HANDLER = IntPtr; + using SYNC_MOVE_HANDLER = IntPtr; + using TRACE_HANDLER = IntPtr; + using FORCE_CONTROL_HANDLER = IntPtr; + using IO_CONTROL_HANDLER = IntPtr; + using MOTION_CONTROL_HANDLER = IntPtr; + using ROBOT_ALGORITHM_HANDLER = IntPtr; + using ROBOT_MANAGE_HANDLER = IntPtr; + using ROBOT_CONFIG_HANDLER = IntPtr; + using ROBOT_STATE_HANDLER = IntPtr; + + public static class GlobalConstants + { + // 需要根据使用的dll库更改 + public const string service_interface_dll = "aubo_sdkd.dll"; + } + + public class cSharpBinding + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + //关节个数 + const int ARM_DOF = 6; + //M_PI + const double M_PI = 3.14159265358979323846; + //路点位置信息的表示方法 + [StructLayout(LayoutKind.Sequential)] + public struct Pos + { + public double x; + public double y; + public double z; + } + + //路点位置信息的表示方法 + [StructLayout(LayoutKind.Sequential)] + public struct cartesianPos_U + { + // 指定数组尺寸 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public double[] positionVector; + }; + + //姿态的四元素表示方法 + [StructLayout(LayoutKind.Sequential)] + public struct Ori + { + public double w; + public double x; + public double y; + public double z; + }; + + //姿态的欧拉角表示方法 + [StructLayout(LayoutKind.Sequential)] + public struct Rpy + { + public double rx; + public double ry; + public double rz; + }; + + //描述机械臂的路点信息 + [StructLayout(LayoutKind.Sequential)] + public struct wayPoint_S + { + //机械臂的位置信息 X,Y,Z + public Pos cartPos; + //机械臂姿态信息 + public Ori orientation; + //机械臂关节角信息 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = ARM_DOF)] + public double[] jointpos; + }; + + [StructLayout(LayoutKind.Sequential)] + public struct ik_solutions + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public wayPoint_S[] waypoint; + public int solution_count; + }; + + + //机械臂关节速度加速度信息 + [StructLayout(LayoutKind.Sequential)] + public struct JointVelcAccParam + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = ARM_DOF)] + public double[] jointPara; + }; + + //机械臂关节角度 + [StructLayout(LayoutKind.Sequential)] + public struct JointRadian + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = ARM_DOF)] + public double[] jointRadian; + }; + + //机械臂工具端参数 + [StructLayout(LayoutKind.Sequential)] + public struct ToolInEndDesc + { + //工具相对于末端坐标系的位置 + public Pos cartPos; + //工具相对于末端坐标系的姿态 + public Ori orientation; + }; + + //坐标系结构体 + [StructLayout(LayoutKind.Sequential)] + public struct CoordCalibrate + { + //坐标系类型:当coordType==BaseCoordinate或者coordType==EndCoordinate是,下面3个参数不做处理 + public int coordType; + //坐标系标定方法 + public int methods; + //用于标定坐标系的3个点(关节角),对应于机械臂法兰盘中心点基于基座标系 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public JointRadian[] jointPara; + //标定的时候使用的工具描述 + public ToolInEndDesc toolDesc; + }; + + + //工具标定结构体 + [StructLayout(LayoutKind.Sequential)] + public struct ToolCalibrate + { + //用于位置标定点的数量 + public int posCalibrateNum; + //位置标定点 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] + public wayPoint_S[] posCalibrateWaypoint; + //用于姿态标定点的数量 + public int oriCalibrateNum; + //姿态标定点 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public wayPoint_S[] oriCalibrateWaypoint; + public int CalibMethod; + }; + + //转轴定义 + [StructLayout(LayoutKind.Sequential)] + public struct MoveRotateAxis + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public double[] rotateAxis; + }; + + //描述运动属性中的偏移属性 + [StructLayout(LayoutKind.Sequential)] + public struct MoveRelative + { + //是否使能偏移 + public byte enable; + //偏移量 x,y,z + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public float[] pos; + //public Pos pos; + //相对姿态偏移量 + public Ori orientation; + }; + + //该结构体描述工具惯量 + [StructLayout(LayoutKind.Sequential)] + public struct ToolInertia + { + public double xx; + public double xy; + public double xz; + public double yy; + public double yz; + public double zz; + }; + + //动力学参数 + [StructLayout(LayoutKind.Sequential)] + public struct ToolDynamicsParam + { + public double positionX; //工具重心的X坐标 + public double positionY; //工具重心的Y坐标 + public double positionZ; //工具重心的Z坐标 + public double payload; //工具重量 + public ToolInertia toolInertia; //工具惯量 + }; + + //机械臂事件 + [StructLayout(LayoutKind.Sequential)] + public struct RobotEventInfo + { + public int eventType; //事件类型号 + public int eventCode; //事件代码 + public IntPtr eventContent; //事件内容(std::string) + }; + + //关节状态信息 + [StructLayout(LayoutKind.Sequential)] + public struct JointStatus + { + public int jointCurrentI; // 关节电流 Current of driver + public int jointSpeedMoto; // 关节速度 Speed of driver + public float jointPosJ; // 关节角 Current position in radian + public float jointCurVol; // 关节电压 Rated voltage of motor. Unit: mV + public float jointCurTemp; // 当前温度 Current temprature of joint + public int jointTagCurrentI; // 电机目标电流 Target current of motor + public float jointTagSpeedMoto; // 电机目标速度 Target speed of motor + public float jointTagPosJ; // 目标关节角  Target position of joint in radian + public short jointErrorNum; // 关节错误码 Joint error of joint num + }; + //机械臂诊断信息 + [StructLayout(LayoutKind.Sequential)] + public struct RobotDiagnosis + { + public Byte armCanbusStatus; // CAN通信状态:0x01~0x80:关节CAN通信错误(每个关节占用1bit) 0x00:无错误 + public float armPowerCurrent; // 机械臂48V电源当前电流 + public float armPowerVoltage; // 机械臂48V电源当前电压 + public Byte armPowerStatus; // 机械臂48V电源状态(开、关) + public Byte contorllerTemp; // 控制箱温度 + public Byte contorllerHumidity; // 控制箱湿度 + public Byte remoteHalt; // 远程关机信号 + public Byte softEmergency; // 机械臂软急停 + public Byte remoteEmergency; // 远程急停信号 + public Byte robotCollision; // 碰撞检测位 + public Byte forceControlMode; // 机械臂进入力控模式标志位 + public Byte brakeStuats; // 刹车状态 + public float robotEndSpeed; // 末端速度 + public int robotMaxAcc; // 最大加速度 + public Byte orpeStatus; // 上位机软件状态位 + public Byte enableReadPose; // 位姿读取使能位 + public Byte robotMountingPoseChanged; // 安装位置状态 + public Byte encoderErrorStatus; // 磁编码器错误状态 + public Byte staticCollisionDetect; // 静止碰撞检测开关 + public Byte jointCollisionDetect; // 关节碰撞检测 每个关节占用1bit 0-无碰撞 1-存在碰撞 + public Byte encoderLinesError; // 光电编码器不一致错误 0-无错误 1-有错误 + public Byte jointErrorStatus; // joint error status + public Byte singularityOverSpeedAlarm; // 机械臂奇异点过速警告 + public Byte robotCurrentAlarm; // 机械臂电流错误警告 + public Byte toolIoError; // tool error + public Byte robotMountingPoseWarning; // 机械臂安装位置错位(只在力控模式下起作用) + public ushort macTargetPosBufferSize; // mac缓冲器长度 预留 + public ushort macTargetPosDataSize; // mac缓冲器有效数据长度 预留 + public Byte macDataInterruptWarning; // mac数据中断 预留 + public Byte controlBoardAbnormalStateFlag; //主控板(接口板)异常状态标志 + }; + + //关节版本信息 + [StructLayout(LayoutKind.Sequential)] + public struct JointVersion + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + char[] hw_version; //硬件版本信息 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] sw_version; //固件版本信息 + + }; + + //机械臂ID信息 + [StructLayout(LayoutKind.Sequential)] + public struct JointProductID + { + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] productID; + + }; + + //设备信息 + [StructLayout(LayoutKind.Sequential)] + public struct RobotDevInfo + { + Byte type; // 设备型号、芯片型号:上位机主站:0x01 接口板0x02 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] revision; // 设备版本号,eg:V1.0 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] manu_id; // 厂家ID,"OUR "的ASCII码0x4F 55 52 00 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] joint_type; // 机械臂类型 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + JointVersion[] joint_ver; // 机械臂关节及工具端信息 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 64)] + char[] desc; // 设备描述字符串以0x00结束 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + JointProductID[] jointProductID; // 关节ID信息 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] slave_version; // 从设备版本号 - 字符串表示,如“V1.0.0 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] + char[] extio_version; // IO扩展板版本号 -字符串标志,如“V1.0.0 + + }; + + //初始化机械臂控制库 + [DllImport(service_interface_dll, EntryPoint = "rs_initialize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_initialize(); + + //反初始化机械臂控制库 + [DllImport(service_interface_dll, EntryPoint = "rs_uninitialize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_uninitialize(); + + //创建机械臂控制上下文句柄 + [DllImport(service_interface_dll, EntryPoint = "rs_create_context", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_create_context(ref UInt16 rshd); + + //注销机械臂控制上下文句柄 + [DllImport(service_interface_dll, EntryPoint = "rs_destory_context", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_destory_context(UInt16 rshd); + + //链接机械臂服务器 + [DllImport(service_interface_dll, EntryPoint = "rs_login", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_login(UInt16 rshd, [MarshalAs(UnmanagedType.LPStr)] string addr, int port); + + //断开机械臂服务器链接 + [DllImport(service_interface_dll, EntryPoint = "rs_logout", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_logout(UInt16 rshd); + + //初始化全局的运动属性 + [DllImport(service_interface_dll, EntryPoint = "rs_init_global_move_profile", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_init_global_move_profile(UInt16 rshd); + + //设置六个关节轴动的最大速度(最大为180度/秒),注意如果没有特殊需求,6个关节尽量配置成一样! + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_joint_maxvelc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_joint_maxvelc(UInt16 rshd, double[] max_velc); + + //获取六个关节轴动的最大速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_joint_maxvelc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_joint_maxvelc(UInt16 rshd, ref JointVelcAccParam max_velc); + + //设置六个关节轴动的最大加速度 (十倍的最大速度),注意如果没有特殊需求,6个关节尽量配置成一样! + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_joint_maxacc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_joint_maxacc(UInt16 rshd, double[] max_acc); + + //获取六个关节轴动的最大加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_joint_maxacc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_joint_maxacc(UInt16 rshd, ref JointVelcAccParam max_acc); + + //设置机械臂末端最大线加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_end_max_line_acc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_end_max_line_acc(UInt16 rshd, double max_acc); + + //设置机械臂末端最大线速度 + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_end_max_line_velc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_end_max_line_velc(UInt16 rshd, double max_velc); + + //获取机械臂末端最大线加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_end_max_line_acc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_end_max_line_acc(UInt16 rshd, ref double max_acc); + + //获取机械臂末端最大线速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_end_max_line_velc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_end_max_line_velc(UInt16 rshd, ref double max_velc); + + //设置机械臂末端最大角加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_end_max_angle_acc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_end_max_angle_acc(UInt16 rshd, double max_acc); + + //设置机械臂末端最大角速度 + [DllImport(service_interface_dll, EntryPoint = "rs_set_global_end_max_angle_velc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_global_end_max_angle_velc(UInt16 rshd, double max_velc); + + //获取机械臂末端最大角加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_end_max_angle_acc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_end_max_angle_acc(UInt16 rshd, ref double max_acc); + + //获取机械臂末端最大角加速度 + [DllImport(service_interface_dll, EntryPoint = "rs_get_global_end_max_angle_velc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_global_end_max_angle_velc(UInt16 rshd, ref double max_velc); + + //设置用户坐标系 + [DllImport(service_interface_dll, EntryPoint = "rs_set_user_coord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_user_coord(UInt16 rshd, ref CoordCalibrate user_coord); + + //设置基座坐标系 + [DllImport(service_interface_dll, EntryPoint = "rs_set_base_coord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_base_coord(UInt16 rshd); + + //机械臂轴动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_joint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_joint(UInt16 rshd, double[] joint_radia, bool isblock); + + //机械臂直线运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_line", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_line(UInt16 rshd, double[] joint_radia, bool isblock); + + //机械臂直线运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_rotate_to_waypoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_rotate_to_waypoint(UInt16 rshd, ref wayPoint_S target_waypoint, bool isblock); + + //保持当前位置变换姿态做旋转运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_rotate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_rotate(UInt16 rshd, ref CoordCalibrate user_coord, ref MoveRotateAxis rotate_axis, double rotate_angle, bool isblock); + + //根据当前路点信息获取姿态旋转变换目标路点 + [DllImport(service_interface_dll, EntryPoint = "rs_get_rotate_target_waypiont", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_rotate_target_waypiont(UInt16 rshd, ref wayPoint_S source_waypoint, double[] rotate_axis_on_basecoord, double rotate_angle, ref wayPoint_S target_waypoint); + + //将用户坐标系下描述的坐标轴变换到基坐标系下描述 + [DllImport(service_interface_dll, EntryPoint = "rs_get_rotateaxis_user_to_Base", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_rotateaxis_user_to_Base(UInt16 rshd, ref Ori ori_usercoord, double[] rotate_axis_on_usercoord, double[] rotate_axis_on_basecoord); + + //根据位置获取目标路点信息(获取基于基座标下的目标路点通过基于用户坐标系的位置,目标路点保持起点姿态) + [DllImport(service_interface_dll, EntryPoint = "rs_get_target_waypoint_by_position", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_target_waypoint_by_position(UInt16 rshd, ref wayPoint_S source_waypoint_on_basecoord, ref CoordCalibrate usercoord, ref Pos tool_End_Position, ref ToolInEndDesc toolInEndDesc, ref wayPoint_S target_waypoint_on_basecoord); + + //清除所有已经设置的全局路点 + [DllImport(service_interface_dll, EntryPoint = "rs_remove_all_waypoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_remove_all_waypoint(UInt16 rshd); + + //添加全局路点用于轨迹运动 + [DllImport(service_interface_dll, EntryPoint = "rs_add_waypoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_add_waypoint(UInt16 rshd, double[] joint_radia); + + //设置交融半径 + [DllImport(service_interface_dll, EntryPoint = "rs_set_blend_radius", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_blend_radius(UInt16 rshd, double radius); + + //设置圆运动圈数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_circular_loop_times", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_circular_loop_times(UInt16 rshd, int times); + + //检查用户坐标系参数设置是否合理 + [DllImport(service_interface_dll, EntryPoint = "rs_check_user_coord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_check_user_coord(UInt16 rshd, ref CoordCalibrate user_coord); + + //用户坐标系标定 + [DllImport(service_interface_dll, EntryPoint = "rs_user_coord_calibrate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_user_coord_calibrate(UInt16 rshd, ref CoordCalibrate user_coord, double[] bInWPos, double[] bInWOri, double[] wInBPos); + + //工具标定 + [DllImport(service_interface_dll, EntryPoint = "rs_tool_calibration", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_tool_calibration(UInt16 rshd, ref ToolCalibrate toolCalibrate, ref ToolInEndDesc toolInEndDesc); + + //设置基于基座标系运动偏移量 + [DllImport(service_interface_dll, EntryPoint = "rs_set_relative_offset_on_base", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_relative_offset_on_base(UInt16 rshd, ref MoveRelative relative); + + //设置基于用户标系运动偏移量 + [DllImport(service_interface_dll, EntryPoint = "rs_set_relative_offset_on_user", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_relative_offset_on_user(UInt16 rshd, ref MoveRelative relative, ref CoordCalibrate user_coord); + + //取消提前到位设置 + [DllImport(service_interface_dll, EntryPoint = "rs_set_no_arrival_ahead", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_no_arrival_ahead(UInt16 rshd); + + //设置距离模式下的提前到位距离 + [DllImport(service_interface_dll, EntryPoint = "rs_set_arrival_ahead_distance", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_arrival_ahead_distance(UInt16 rshd, double distance); + + //设置时间模式下的提前到位时间 + [DllImport(service_interface_dll, EntryPoint = "rs_set_arrival_ahead_time", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_arrival_ahead_time(UInt16 rshd, double sec); + + //轨迹运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_track", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_track(UInt16 rshd, int sub_move_mode, bool isblock); + + //保持当前位姿通过直线运动的方式运动到目标位置 + [DllImport(service_interface_dll, EntryPoint = "rs_move_line_to", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_line_to(UInt16 rshd, ref Pos target, ref ToolInEndDesc tool, bool isblock); + + //保持当前位姿通过关节运动的方式运动到目标位置 + [DllImport(service_interface_dll, EntryPoint = "rs_move_joint_to", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_joint_to(UInt16 rshd, ref Pos target, ref ToolInEndDesc tool, bool isblock); + + //获取机械臂当前位置信息 + [DllImport(service_interface_dll, EntryPoint = "rs_get_current_waypoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_current_waypoint(UInt16 rshd, ref wayPoint_S waypoint); + + //正解 + [DllImport(service_interface_dll, EntryPoint = "rs_forward_kin", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_forward_kin(UInt16 rshd, double[] joint_radia, ref wayPoint_S waypoint); + + //逆解 + [DllImport(service_interface_dll, EntryPoint = "rs_inverse_kin", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_inverse_kin(UInt16 rshd, double[] joint_radia, ref Pos pos, ref Ori ori, ref wayPoint_S waypoint); + + //逆解 (最多八组解) + [DllImport(service_interface_dll, EntryPoint = "rs_inverse_kin_closed_form", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_inverse_kin_closed_form(UInt16 rshd, ref Pos pos, ref Ori ori, ref ik_solutions waypoint); + + //四元素转欧拉角 + [DllImport(service_interface_dll, EntryPoint = "rs_rpy_to_quaternion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_rpy_to_quaternion(UInt16 rshd, ref Rpy rpy, ref Ori ori); + + //欧拉角转四元素 + [DllImport(service_interface_dll, EntryPoint = "rs_quaternion_to_rpy", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_quaternion_to_rpy(UInt16 rshd, ref Ori ori, ref Rpy rpy); + + //基座坐标系转用户坐标系 + [DllImport(service_interface_dll, EntryPoint = "rs_base_to_user", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_base_to_user(UInt16 rshd, ref Pos pos_onbase, ref Ori ori_onbase, ref CoordCalibrate user_coord, ref ToolInEndDesc tool_pos, ref Pos pos_onuser, ref Ori ori_onuser); + + //用户坐标系转基座坐标系 + [DllImport(service_interface_dll, EntryPoint = "rs_user_to_base", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_user_to_base(UInt16 rshd, ref Pos pos_onuser, ref Ori ori_onuser, ref CoordCalibrate user_coord, ref ToolInEndDesc tool_pos, ref Pos pos_onbase, ref Ori ori_onbase); + + //基坐标系转基座标得到工具末端点的位置和姿态 + [DllImport(service_interface_dll, EntryPoint = "rs_base_to_base_additional_tool", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_base_to_base_additional_tool(UInt16 rshd, ref Pos flange_center_pos_onbase, ref Ori flange_center_ori_onbase, ref ToolInEndDesc tool_pos, ref Pos tool_end_pos_onbase, ref Ori tool_end_ori_onbase); + + //设置工具的运动学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_end_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_end_param(UInt16 rshd, ref ToolInEndDesc tool); + + //设置无工具的动力学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_none_tool_dynamics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_none_tool_dynamics_param(UInt16 rshd); + + //根据接口板IO类型和地址设置IO状态 + [DllImport(service_interface_dll, EntryPoint = "rs_set_board_io_status_by_addr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_board_io_status_by_addr(UInt16 rshd, int io_type, int addr, double val); + + //根据接口板IO类型和地址获取IO状态 + [DllImport(service_interface_dll, EntryPoint = "rs_get_board_io_status_by_addr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_board_io_status_by_addr(UInt16 rshd, int io_type, int addr, ref double val); + + //设置工具端IO状态 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_do_status", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_do_status(UInt16 rshd, string name, int val); + + //获取工具端IO状态 + [DllImport(service_interface_dll, EntryPoint = "rs_get_tool_io_status", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_tool_io_status(UInt16 rshd, string name, ref double val); + + //设置工具端电源电压类型 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_power_type", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_power_type(UInt16 rshd, int type); + + //获取工具端电源电压类型 + [DllImport(service_interface_dll, EntryPoint = "rs_get_tool_power_type", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_tool_power_type(UInt16 rshd, ref int type); + + //设置工具端数字量IO的类型 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_io_type", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_io_type(UInt16 rshd, int addr, int type); + + //设置工具的动力学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_dynamics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_dynamics_param(UInt16 rshd, ref ToolDynamicsParam tool); + + //获取工具的动力学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_get_tool_dynamics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_tool_dynamics_param(UInt16 rshd, ref ToolDynamicsParam tool); + + //设置无工具运动学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_none_tool_kinematics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_none_tool_kinematics_param(UInt16 rshd); + + //设置工具的运动学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_set_tool_kinematics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_tool_kinematics_param(UInt16 rshd, ref ToolInEndDesc tool); + + //获取工具的运动学参数 + [DllImport(service_interface_dll, EntryPoint = "rs_get_tool_kinematics_param", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_tool_kinematics_param(UInt16 rshd, ref ToolInEndDesc tool); + + //启动机械臂 + [DllImport(service_interface_dll, EntryPoint = "rs_robot_startup", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_robot_startup(UInt16 rshd, ref ToolDynamicsParam tool, byte colli_class, bool read_pos, bool static_colli_detect, int board_maxacc, ref int state); + + //关闭机械臂 + [DllImport(service_interface_dll, EntryPoint = "rs_robot_shutdown", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_robot_shutdown(UInt16 rshd); + + //关闭机械臂 + [DllImport(service_interface_dll, EntryPoint = "rs_robot_control", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_robot_control(UInt16 rshd, int robotControlCommand); + + //通知机械臂工程启动,服务器同时开始检测安全IO + [DllImport(service_interface_dll, EntryPoint = "rs_project_startup", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_project_startup(UInt16 rshd); + + //通知机械臂工程停止,服务器停止检测安全IO + [DllImport(service_interface_dll, EntryPoint = "rs_project_stop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_project_stop(UInt16 rshd); + + //停止机械臂运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_stop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_stop(UInt16 rshd); + + //停止机械臂运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_fast_stop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_fast_stop(UInt16 rshd); + + //暂停机械臂运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_pause", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_pause(UInt16 rshd); + + //暂停后回复机械臂运动 + [DllImport(service_interface_dll, EntryPoint = "rs_move_continue", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_move_continue(UInt16 rshd); + + //机械臂碰撞后恢复 + [DllImport(service_interface_dll, EntryPoint = "rs_collision_recover", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_collision_recover(UInt16 rshd); + + //获取机械臂当前状态 + [DllImport(service_interface_dll, EntryPoint = "rs_get_robot_state", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_robot_state(UInt16 rshd, ref int state); + + //获取关节状态信息 + [DllImport(service_interface_dll, EntryPoint = "rs_get_joint_status", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_joint_status(UInt16 rshd, IntPtr pBuff); + + //获取机械臂诊断信息 + [DllImport(service_interface_dll, EntryPoint = "rs_get_diagnosis_info", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_diagnosis_info(UInt16 rshd, ref RobotDiagnosis robotDiagnosis); + + //获取机械臂诊断信息 + [DllImport(service_interface_dll, EntryPoint = "rs_get_device_info", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_device_info(UInt16 rshd, ref RobotDevInfo dev); + + //设置机械臂服务器工作模式 + [DllImport(service_interface_dll, EntryPoint = "rs_set_work_mode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_work_mode(UInt16 rshd, int state); + + //获取机械臂服务器当前工作模式 + [DllImport(service_interface_dll, EntryPoint = "rs_get_work_mode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_work_mode(UInt16 rshd, ref int state); + + //设置机械臂碰撞等级 + [DllImport(service_interface_dll, EntryPoint = "rs_set_collision_class", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_set_collision_class(UInt16 rshd, int grade); + + //获取当前碰撞等级 + [DllImport(service_interface_dll, EntryPoint = "rs_get_collision_class", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_collision_class(UInt16 rshd, ref int grade); + + //根据错误号返回错误信息 + [DllImport(service_interface_dll, EntryPoint = "rs_get_error_information_by_errcode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rs_get_error_information_by_errcode(UInt16 rshd, int err_code); + + //获取socket链接状态 + [DllImport(service_interface_dll, EntryPoint = "rs_get_socket_status", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_get_socket_status(UInt16 rshd, ref byte connected); + + //设置是否允许实时路点信息推送 + [DllImport(service_interface_dll, EntryPoint = "rs_enable_push_realtime_roadpoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rs_enable_push_realtime_roadpoint(UInt16 rshd, bool enable); + + //实时路点回调函数 + [System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] + public delegate void REALTIME_ROADPOINT_CALLBACK(ref wayPoint_S waypoint, IntPtr arg); + + [DllImport(service_interface_dll, CallingConvention = CallingConvention.Cdecl)] + public static extern void rs_setcallback_realtime_roadpoint(UInt16 rshd, [MarshalAs(UnmanagedType.FunctionPtr)] REALTIME_ROADPOINT_CALLBACK CurrentPositionCallback, IntPtr arg); + + //实时末端速度回调函数 + [System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] + public delegate void REALTIME_ENDSPEED_CALLBACK(double speed, IntPtr arg); + + [DllImport(service_interface_dll, CallingConvention = CallingConvention.Cdecl)] + public static extern void rs_setcallback_realtime_end_speed(UInt16 rshd, [MarshalAs(UnmanagedType.FunctionPtr)] REALTIME_ENDSPEED_CALLBACK CurrentEndSpeedCallback, IntPtr arg); + + + //机械臂事件回调 + [System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] + public delegate void ROBOT_EVENT_CALLBACK(ref RobotEventInfo rs_event, IntPtr arg); + + [DllImport(service_interface_dll, CallingConvention = CallingConvention.Cdecl)] + public static extern void rs_setcallback_robot_event(UInt16 rshd, [MarshalAs(UnmanagedType.FunctionPtr)] ROBOT_EVENT_CALLBACK RobotEventCallback, IntPtr arg); + + //机械臂关节状态回调 + [System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] + public delegate void ROBOT_JOINT_STATUS_CALLBACK(IntPtr pBuff, int size, IntPtr arg); + + [DllImport(service_interface_dll, CallingConvention = CallingConvention.Cdecl)] + public static extern void rs_setcallback_realtime_joint_status(UInt16 rshd, [MarshalAs(UnmanagedType.FunctionPtr)] ROBOT_JOINT_STATUS_CALLBACK RobotJointStatusCallback, IntPtr arg); + + + //位置回调 + public static void CurrentPositionCallback(ref wayPoint_S waypoint, IntPtr arg) + { + PrintWaypoint(waypoint); + } + //速度回调 + public static void CurrentEndSpeedCallback(double speed, IntPtr arg) + { + Console.Out.WriteLine("CurrentSpeed:{0}\n", speed); + } + + + //关节状态回调 + public static void CurrentJointStatusCallback(IntPtr pBuff, int size, IntPtr arg) + { + cSharpBinding.JointStatus[] jointStatus = new cSharpBinding.JointStatus[6]; + for (int i = 0; i < 6; i++) + { + IntPtr pPonitor = new IntPtr(pBuff.ToInt64() + Marshal.SizeOf(typeof(cSharpBinding.JointStatus)) * i); + jointStatus[i] = (cSharpBinding.JointStatus)Marshal.PtrToStructure(pPonitor, typeof(cSharpBinding.JointStatus)); + } + for (int i = 0; i < 6; i++) + { + Console.Out.WriteLine("jointStatus {0}", i + 1); + Console.Out.WriteLine("joint I: {0}\njoint Speed: {1}\njoint Angel: {2}", jointStatus[i].jointCurrentI, jointStatus[i].jointSpeedMoto, jointStatus[i].jointPosJ); + Console.Out.WriteLine("joint vol: {0}\njoint temp: {1}\njoint target I: {2}", jointStatus[i].jointCurVol, jointStatus[i].jointCurTemp, jointStatus[i].jointTagCurrentI); + Console.Out.WriteLine("joint target Speed: {0}\njoint Target Angel: {1}\njoint Errnum: {2}", jointStatus[i].jointTagSpeedMoto, jointStatus[i].jointTagPosJ, jointStatus[i].jointErrorNum); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + + } + + } + + + //打印路点信息 + public static void PrintWaypoint(wayPoint_S point) + { + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + Console.Out.WriteLine("pos.x={0} y={1} z={2}", point.cartPos.x, point.cartPos.y, point.cartPos.z); + Console.Out.WriteLine("ori.w={0} x={1} y={2} z={3}", point.orientation.w, point.orientation.x, point.orientation.y, point.orientation.z); + Console.Out.WriteLine("joint1={0} joint2={1} joint3={2}", point.jointpos[0] * 180 / M_PI, point.jointpos[1] * 180 / M_PI, point.jointpos[2] * 180 / M_PI); + Console.Out.WriteLine("joint4={0} joint5={1} joint6={2}", point.jointpos[3] * 180 / M_PI, point.jointpos[4] * 180 / M_PI, point.jointpos[5] * 180 / M_PI); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + + public static void RobotEventCallback(ref RobotEventInfo rs_event, IntPtr arg) + { + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + Console.Out.WriteLine("robot event.type={0}", rs_event.eventType); + Console.Out.WriteLine("robot event.eventCode={0}", rs_event.eventCode); + Console.Out.WriteLine("robot event.eventContent={0}", Marshal.PtrToStringAnsi(rs_event.eventContent)); + Console.Out.WriteLine("---------------------------------------------------------------------------------------"); + } + + } + + public class cSharpBinding_RPC + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + //初始化机械臂控制库 + [DllImport(service_interface_dll, EntryPoint = "rpc_create_client", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_create_client(int mode); + + //反初始化机械臂控制库 + [DllImport(service_interface_dll, EntryPoint = "rpc_destroy_client", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern void rpc_destroy_client(IntPtr cli); + + //设置日志处理器 + [DllImport(service_interface_dll, EntryPoint = "rpc_setLogHandler", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern void rpc_setLogHandler(IntPtr cli, LogHandlerDelegate handler); + // 定义日志处理函数委托类型,需和C++中函数原型对应 + public delegate void LogHandlerDelegate(int level, string filename, int line, string message); + + //连接到RPC服务 + [DllImport(service_interface_dll, EntryPoint = "rpc_connect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_connect(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string ip, int port); + + //断开RPC连接 + [DllImport(service_interface_dll, EntryPoint = "rpc_disconnect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_disconnect(IntPtr cli); + + //判断是否连接RPC + [DllImport(service_interface_dll, EntryPoint = "rpc_hasConnected", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rpc_hasConnected(IntPtr cli); + + //登录 + [DllImport(service_interface_dll, EntryPoint = "rpc_login", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_login(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string usrname, [MarshalAs(UnmanagedType.LPStr)] string passwd); + + //登出 + [DllImport(service_interface_dll, EntryPoint = "rpc_logout", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_logout(IntPtr cli); + + //判断是否登录 + [DllImport(service_interface_dll, EntryPoint = "rpc_hasLogined", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rpc_hasLogined(IntPtr cli); + + //设置RPC请求超时时间 + [DllImport(service_interface_dll, EntryPoint = "rpc_setRequestTimeout", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_setRequestTimeout(IntPtr cli, int timeout); + + //设置事件处理 + [DllImport(service_interface_dll, EntryPoint = "rpc_setEventHandler", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_setEventHandler(IntPtr cli, EventCallbackDelegate cb); + // 定义事件回调委托类型,需根据实际C++中回调函数原型补充准确参数等定义 + public delegate void EventCallbackDelegate(); + + //设置是否关闭异常抛出 + [DllImport(service_interface_dll, EntryPoint = "rpc_set_exception_free", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_set_exception_free(IntPtr cli, bool enable); + + //返回错误代码 + [DllImport(service_interface_dll, EntryPoint = "rpc_errorCode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_errorCode(IntPtr cli); + + //设备关机 + [DllImport(service_interface_dll, EntryPoint = "rpc_shutdown", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_shutdown(IntPtr cli); + + //获取纯数学相关接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getMath", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getMath(IntPtr cli); + + //获取系统信息 + [DllImport(service_interface_dll, EntryPoint = "rpc_getSystemInfo", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getSystemInfo(IntPtr cli); + + //获取运行时接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getRuntimeMachine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getRuntimeMachine(IntPtr cli); + + //对外寄存器接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getRegisterControl", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getRegisterControl(IntPtr cli); + + //获取机器人列表 + [DllImport(service_interface_dll, EntryPoint = "rpc_getRobotNames", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_getRobotNames(IntPtr cli, IntPtr[] names); + + //根据名字获取RobotInterfacePtr接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getRobotInterface", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getRobotInterface(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string name); + + //获取外部轴列表 + [DllImport(service_interface_dll, EntryPoint = "rpc_getAxisNames", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpc_getAxisNames(IntPtr cli, [MarshalAs(UnmanagedType.LPArray)] string[] names); + + //获取外部轴接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getAxisInterface", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getAxisInterface(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 获取socket + [DllImport(service_interface_dll, EntryPoint = "rpc_getSocket", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getSocket(IntPtr cli); + + // 获取Serial + [DllImport(service_interface_dll, EntryPoint = "rpc_getSerial", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getSerial(IntPtr cli); + + //获取同步运动接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getSyncMove", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getSyncMove(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string name); + + //获取告警信息接口 + [DllImport(service_interface_dll, EntryPoint = "rpc_getTrace", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rpc_getTrace(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string name); + + } + + + public class cSharpBinding_RTDE + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // OutputBuilder + [DllImport(service_interface_dll, EntryPoint = "rtde_pushInt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushInt(IntPtr builder, int val); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushDouble(IntPtr builder, double val); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushVectorDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushVectorDouble(IntPtr builder, double[] val, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushTupleIntBool", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushTupleIntBool(IntPtr builder, int first, bool second); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushInt16", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushInt16(IntPtr builder, short val); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushVectorInt16", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushVectorInt16(IntPtr builder, short[] val, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushVectorInt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushVectorInt(IntPtr builder, int[] val, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushString(IntPtr builder, string val); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushChar", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushChar(IntPtr builder, char val); + + [DllImport(service_interface_dll, EntryPoint = "rtde_pushRtdeRecipe", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_pushRtdeRecipe(IntPtr builder, ref cSharpBinging_TypeDef.RtdeRecipe val); + + + // InputParser + [DllImport(service_interface_dll, EntryPoint = "rtde_popBool", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rtde_popBool(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popInt32", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popInt32(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popInt64", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern long rtde_popInt64(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popInt16", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern short rtde_popInt16(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double rtde_popDouble(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popChar", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern char rtde_popChar(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popVectorInt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popVectorInt(IntPtr parser, [In, Out] int[] data, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popVectorInt16", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popVectorInt16(IntPtr parser, [In, Out] short[] data, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popVectorDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popVectorDouble(IntPtr parser, [In, Out] double[] data, int size); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popVectorVectorDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popVectorVectorDouble(IntPtr parser, [In, Out] IntPtr[] data, int rows, int cols); + + // 枚举类型 + [DllImport(service_interface_dll, EntryPoint = "rtde_popVectorJointStateType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.JointStateType rtde_popVectorJointStateType(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popRobotModeType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RobotModeType rtde_popRobotModeType(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popOperationalModeType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.OperationalModeType rtde_popOperationalModeType(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popSafetyModeType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.SafetyModeType rtde_popSafetyModeType(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popRuntimeState", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RuntimeState rtde_popRuntimeState(IntPtr parser); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popRobotMsgVector", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popRobotMsgVector(IntPtr parser, ref cSharpBinging_TypeDef.RobotMsgVector robot_msg_vec); + + [DllImport(service_interface_dll, EntryPoint = "rtde_popPayload", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_popPayload(IntPtr parser, ref cSharpBinging_TypeDef.Payload payload); + + + // RtdeClient + [DllImport(service_interface_dll, EntryPoint = "rtde_create_client", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr rtde_create_client(int mode); + + [DllImport(service_interface_dll, EntryPoint = "rtde_destroy_client", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern void rtde_destroy_client(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_setLogHandler", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern void rtde_setLogHandler(IntPtr cli, LogHandlerDelegate handler); + public delegate void LogHandlerDelegate(int level, string filename, int line, string message); + + [DllImport(service_interface_dll, EntryPoint = "rtde_connect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_connect(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string ip, int port); + + [DllImport(service_interface_dll, EntryPoint = "rtde_hasConnected", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rtde_hasConnected(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_login", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_login(IntPtr cli, [MarshalAs(UnmanagedType.LPStr)] string username, [MarshalAs(UnmanagedType.LPStr)] string password); + + [DllImport(service_interface_dll, EntryPoint = "rtde_hasLogined", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rtde_hasLogined(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_logout", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_logout(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_disconnect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_disconnect(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_getProtocolVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_getProtocolVersion(IntPtr cli); + + [DllImport(service_interface_dll, EntryPoint = "rtde_setTopic", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_setTopic(IntPtr cli, [MarshalAs(UnmanagedType.I1)] bool to_server, [MarshalAs(UnmanagedType.LPStr)] string names, double freq, int expected_chanel); + + [DllImport(service_interface_dll, EntryPoint = "rtde_removeTopic", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_removeTopic(IntPtr cli, [MarshalAs(UnmanagedType.I1)] bool to_server, int chanel); + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate void SubscribeCallbackDelegate(IntPtr parser); + [DllImport(service_interface_dll, EntryPoint = "rtde_subscribe", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_subscribe(IntPtr cli, int chanel, SubscribeCallbackDelegate callback); + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate void PublishCallbackDelegate(IntPtr builder); + [DllImport(service_interface_dll, EntryPoint = "rtde_publish", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rtde_publish(IntPtr cli, int chanel, PublishCallbackDelegate callback); + + } + + + public class cSharpBinding_Math + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 位姿相加函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseAdd", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseAdd(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿相减函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseSub", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseSub(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿插值函数封装 + [DllImport(service_interface_dll, EntryPoint = "interpolatePose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int interpolatePose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2, double alpha, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿变换函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseTrans", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseTrans(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose_from, [MarshalAs(UnmanagedType.LPArray)] double[] pose_from_to, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿逆变换函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseTransInv", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseTransInv(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose_from, [MarshalAs(UnmanagedType.LPArray)] double[] pose_to_from, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿求逆函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseInverse", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseInverse(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿距离计算函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseDistance", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double poseDistance(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2); + + // 位姿角度距离计算函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseAngleDistance", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double poseAngleDistance(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2); + + // 位姿相等判断函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseEqual", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool poseEqual(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2, double eps); + + // 参考系转换函数封装 + [DllImport(service_interface_dll, EntryPoint = "transferRefFrame", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int transferRefFrame(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] F_b_a_old, [MarshalAs(UnmanagedType.LPArray)] double[] V_in_a, int type, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿旋转函数封装 + [DllImport(service_interface_dll, EntryPoint = "poseRotation", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poseRotation(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] rotv, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 欧拉角转四元数函数封装 + [DllImport(service_interface_dll, EntryPoint = "rpyToQuaternion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int rpyToQuaternion(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] rpy, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 四元数转欧拉角函数封装 + [DllImport(service_interface_dll, EntryPoint = "quaternionToRpy", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int quaternionToRpy(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] quant, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // TCP偏移识别函数封装 + [DllImport(service_interface_dll, EntryPoint = "tcpOffsetIdentify", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int tcpOffsetIdentify(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] poses, int rows, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 坐标校准函数封装 + [DllImport(service_interface_dll, EntryPoint = "calibrateCoordinate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int calibrateCoordinate(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] poses, int rows, int type, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 计算圆上第四点函数封装 + [DllImport(service_interface_dll, EntryPoint = "calculateCircleFourthPoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int calculateCircleFourthPoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] p1, [MarshalAs(UnmanagedType.LPArray)] double[] p2, [MarshalAs(UnmanagedType.LPArray)] double[] p3, int mode, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 力的变换函数封装 + [DllImport(service_interface_dll, EntryPoint = "forceTrans", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forceTrans(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose_a_in_b, [MarshalAs(UnmanagedType.LPArray)] double[] force_in_a, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 根据传感器距离获取位姿增量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDeltaPoseBySensorDistance", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getDeltaPoseBySensorDistance(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] distances, double position, double radius, double track_scale, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿增量变换函数封装 + [DllImport(service_interface_dll, EntryPoint = "deltaPoseTrans", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int deltaPoseTrans(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose_a_in_b, [MarshalAs(UnmanagedType.LPArray)] double[] ft_in_a, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 位姿增量相加函数封装 + [DllImport(service_interface_dll, EntryPoint = "deltaPoseAdd", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int deltaPoseAdd(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose_a_in_b, [MarshalAs(UnmanagedType.LPArray)] double[] v_in_b, [MarshalAs(UnmanagedType.LPArray)] double[] result); + } + + + public class cSharpBinding_RegisterControl + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + + // 获取布尔型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBoolInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getBoolInput(IntPtr h, int address); + + // 设置布尔型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setBoolInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setBoolInput(IntPtr h, int address, bool value); + + // 获取Int32型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInt32Input", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getInt32Input(IntPtr h, int address); + + // 设置Int32型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setInt32Input", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setInt32Input(IntPtr h, int address, int value); + + // 获取Float型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFloatInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern float getFloatInput(IntPtr h, int address); + + // 设置Float型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setFloatInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setFloatInput(IntPtr h, int address, float value); + + // 获取Double型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDoubleInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDoubleInput(IntPtr h, int address); + + // 设置Double型输入值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDoubleInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDoubleInput(IntPtr h, int address, double value); + + // 获取布尔型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBoolOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getBoolOutput(IntPtr h, int address); + + // 设置布尔型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setBoolOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setBoolOutput(IntPtr h, int address, bool value); + + // 获取Int32型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInt32Output", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getInt32Output(IntPtr h, int address); + + // 设置Int32型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setInt32Output", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setInt32Output(IntPtr h, int address, int value); + + // 获取Float型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFloatOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern float getFloatOutput(IntPtr h, int address); + + // 设置Float型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setFloatOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setFloatOutput(IntPtr h, int address, float value); + + // 获取Double型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDoubleOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDoubleOutput(IntPtr h, int address); + + // 设置Double型输出值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDoubleOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDoubleOutput(IntPtr h, int address, double value); + + // 获取Int16型寄存器值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInt16Register", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern Int16 getInt16Register(IntPtr h, int address); + + // 设置Int16型寄存器值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setInt16Register", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setInt16Register(IntPtr h, int address, Int16 value); + + // 检查变量是否更新函数封装 + [DllImport(service_interface_dll, EntryPoint = "variableUpdated", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool variableUpdated(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, UInt64 since); + + // 检查是否存在指定名称变量函数封装 + [DllImport(service_interface_dll, EntryPoint = "hasNamedVariable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool hasNamedVariable(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key); + + // 获取指定名称变量类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getNamedVariableType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getNamedVariableType(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPStr)] string result); + + // 获取指定名称布尔型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBool", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getBool(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, bool default_value); + + // 设置指定名称布尔型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setBool", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setBool(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, bool value); + + // 获取指定名称字符向量变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getVecChar", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getVecChar(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPStr)] string default_value, [MarshalAs(UnmanagedType.LPStr)] string result); + + // 设置指定名称字符向量变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setVecChar", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setVecChar(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPStr)] string value); + + // 获取指定名称Int32型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInt32", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getInt32(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, int default_value); + + // 设置指定名称Int32型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setInt32", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setInt32(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, int value); + + + // 获取指定名称Int32向量型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getVecInt32", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getVecInt32(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] Int32[] default_value, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 设置指定名称Int32向量型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setVecInt32", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setVecInt32(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] Int32[] value); + + // 获取指定名称Float型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFloat", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern float getFloat(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, float default_value); + + // 设置指定名称Float型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setFloat", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setFloat(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, float value); + + // 获取指定名称Float向量型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getVecFloat", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getVecFloat(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] float[] default_value, [MarshalAs(UnmanagedType.LPArray)] float[] result); + + // 设置指定名称Float向量型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setVecFloat", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setVecFloat(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] float[] value); + + // 获取指定名称Double型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDouble(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, double default_value); + + // 设置指定名称Double型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDouble(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, double value); + + // 获取指定名称Double向量型变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getVecDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getVecDouble(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] double[] default_value, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置指定名称Double向量型变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setVecDouble", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setVecDouble(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPArray)] double[] value); + + // 获取指定名称字符串变量值(带默认值)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPStr)] string default_value, [Out] StringBuilder result); + + // 设置指定名称字符串变量值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, [MarshalAs(UnmanagedType.LPStr)] string value); + + // 清除指定名称变量函数封装 + [DllImport(service_interface_dll, EntryPoint = "clearNamedVariable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int clearNamedVariable(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key); + + // 设置看门狗相关参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setWatchDog", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setWatchDog(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key, double timeout, int action); + + // 获取看门狗动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "getWatchDogAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getWatchDogAction(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key); + + // 获取看门狗超时时间函数封装 + [DllImport(service_interface_dll, EntryPoint = "getWatchDogTimeout", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getWatchDogTimeout(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string key); + + // 添加Modbus信号函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusAddSignal", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusAddSignal(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string device_info, int slave_number, int signal_address, int signal_type, [MarshalAs(UnmanagedType.LPStr)] string signal_name, bool sequential_mode); + + // 删除Modbus信号函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusDeleteSignal", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusDeleteSignal(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name); + + // 删除所有Modbus信号函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusDeleteAllSignals", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusDeleteAllSignals(IntPtr h); + + // 获取Modbus信号状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalStatus(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name); + + // 获取Modbus信号名称函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalNames", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalNames(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] string[] result); + + // 获取Modbus信号类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalTypes", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalTypes(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 获取Modbus信号值函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalValues", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalValues(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 获取Modbus信号错误信息函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalErrors", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalErrors(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 发送Modbus自定义命令函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusSendCustomCommand", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusSendCustomCommand(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string IP, int slave_number, int function_code, [MarshalAs(UnmanagedType.LPArray)] byte[] data); + + // 设置Modbus数字输入动作函数封装 + // [DllImport(service_interface_dll, EntryPoint = "modbusSetDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + // public static extern int modbusSetDigitalInputAction(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string robot_name, [MarshalAs(UnmanagedType.LPStr)] string signal_name, StandardInputAction_C action); + + // 设置Modbus输出运行状态函数封装 + // [DllImport(service_interface_dll, EntryPoint = "modbusSetOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + // public static extern int modbusSetOutputRunstate(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string robot_name, [MarshalAs(UnmanagedType.LPStr)] string signal_name, StandardOutputRunState_C runstate); + + // 设置Modbus输出信号值函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusSetOutputSignal", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusSetOutputSignal(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name, ushort value); + + // 设置Modbus输出信号脉冲函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusSetOutputSignalPulse", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusSetOutputSignalPulse(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name, ushort value, double duration); + + // 设置Modbus信号更新频率函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusSetSignalUpdateFrequency", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusSetSignalUpdateFrequency(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name, int update_frequency); + + // 获取Modbus信号索引函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalIndex", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalIndex(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name); + + // 获取Modbus信号错误函数封装 + [DllImport(service_interface_dll, EntryPoint = "modbusGetSignalError", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int modbusGetSignalError(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string signal_name); + + // 获取Modbus设备状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getModbusDeviceStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getModbusDeviceStatus(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string device_name); + } + + + + public class cSharpBinging_RuntimeMachine + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 创建新任务函数封装 + [DllImport(service_interface_dll, EntryPoint = "newTask", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int newTask(IntPtr h, bool daemon); + + // 删除任务函数封装 + [DllImport(service_interface_dll, EntryPoint = "deleteTask", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int deleteTask(IntPtr h, int tid); + + // 分离任务函数封装 + [DllImport(service_interface_dll, EntryPoint = "detachTask", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int detachTask(IntPtr h, int tid); + + // 检查任务是否存活函数封装 + [DllImport(service_interface_dll, EntryPoint = "isTaskAlive", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isTaskAlive(IntPtr h, int tid); + + // 空操作函数封装 + [DllImport(service_interface_dll, EntryPoint = "nop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int nop(IntPtr h); + + // 切换任务函数封装 + [DllImport(service_interface_dll, EntryPoint = "switchTask", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int switchTask(IntPtr h, int tid); + + // 设置任务标签函数封装 + [DllImport(service_interface_dll, EntryPoint = "setLabel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setLabel(IntPtr h, int tid, [MarshalAs(UnmanagedType.LPStr)] string lineno); + + // 设置计划上下文函数封装 + [DllImport(service_interface_dll, EntryPoint = "setPlanContext", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setPlanContext(IntPtr h, int tid, int lineno, [MarshalAs(UnmanagedType.LPStr)] string comment); + + // 跳转到指定行函数封装 + [DllImport(service_interface_dll, EntryPoint = "gotoLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int gotoLine(IntPtr h, int lineno); + + // 获取高级计划上下文函数封装 + [DllImport(service_interface_dll, EntryPoint = "getAdvancePlanContext", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getAdvancePlanContext(IntPtr h, int tid, ref cSharpBinging_TypeDef.PlanContextResult result); + + // 获取高级指针函数封装 + [DllImport(service_interface_dll, EntryPoint = "getAdvancePtr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getAdvancePtr(IntPtr h, int tid); + + // 获取主指针函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMainPtr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getMainPtr(IntPtr h, int tid); + + // 获取解释器指针函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInterpPtr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getInterpPtr(IntPtr h, int tid); + + // 获取计划上下文函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPlanContext", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getPlanContext(IntPtr h, int tid, ref cSharpBinging_TypeDef.PlanContextResult result); + + // 获取执行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getExecutionStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getExecutionStatus(IntPtr h, ref cSharpBinging_TypeDef.ExecutionStatusResult result); + + // 获取执行状态1函数封装 + [DllImport(service_interface_dll, EntryPoint = "getExecutionStatus1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getExecutionStatus1(IntPtr h, ref cSharpBinging_TypeDef.ExecutionStatus1Result result); + + // 加载程序函数封装 + [DllImport(service_interface_dll, EntryPoint = "loadProgram", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int loadProgram(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string program); + + // 运行程序函数封装 + [DllImport(service_interface_dll, EntryPoint = "runProgram", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int runProgram(IntPtr h); + + // 启动函数封装 + [DllImport(service_interface_dll, EntryPoint = "start", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int start(IntPtr h); + + // 停止函数封装 + [DllImport(service_interface_dll, EntryPoint = "stop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int stop(IntPtr h); + + // 终止函数封装 + [DllImport(service_interface_dll, EntryPoint = "abort1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int abort(IntPtr h); + + // 暂停函数封装 + [DllImport(service_interface_dll, EntryPoint = "pause", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pause(IntPtr h); + + // 单步执行函数封装 + [DllImport(service_interface_dll, EntryPoint = "step", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int step(IntPtr h); + + // 设置恢复等待状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setResumeWait", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setResumeWait(IntPtr h, bool wait); + + // 恢复执行函数封装 + [DllImport(service_interface_dll, EntryPoint = "resume", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resume(IntPtr h); + + // 获取运行时状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RuntimeState getStatus(IntPtr h); + + // 获取运行时状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRuntimeState", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RuntimeState getRuntimeState(IntPtr h); + + // 设置断点函数封装 + [DllImport(service_interface_dll, EntryPoint = "setBreakPoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setBreakPoint(IntPtr h, int lineno); + + // 移除断点函数封装 + [DllImport(service_interface_dll, EntryPoint = "removeBreakPoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int removeBreakPoint(IntPtr h, int lineno); + + // 清除所有断点函数封装 + [DllImport(service_interface_dll, EntryPoint = "clearBreakPoints", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int clearBreakPoints(IntPtr h); + + // 定时器启动函数封装 + [DllImport(service_interface_dll, EntryPoint = "timerStart", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int timerStart(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 定时器停止函数封装 + [DllImport(service_interface_dll, EntryPoint = "timerStop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int timerStop(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 定时器重置函数封装 + [DllImport(service_interface_dll, EntryPoint = "timerReset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int timerReset(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 定时器删除函数封装 + [DllImport(service_interface_dll, EntryPoint = "timerDelete", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int timerDelete(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 获取定时器值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTimer", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getTimer(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 触发开始函数封装 + [DllImport(service_interface_dll, EntryPoint = "triggBegin", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int triggBegin(IntPtr h, double distance, double delay); + + // 触发结束函数封装 + [DllImport(service_interface_dll, EntryPoint = "triggEnd", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int triggEnd(IntPtr h); + + // 触发中断函数封装 + [DllImport(service_interface_dll, EntryPoint = "triggInterrupt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int triggInterrupt(IntPtr h, double distance, double delay); + + // 获取触发中断信息函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTriggInterrupts", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTriggInterrupts(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + } + + public class cSharpBinging_Serial + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 打开串口函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialOpen", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialOpen(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string device, int baud, float stop_bits, int even, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 关闭串口函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialClose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialClose(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 读取单个字节函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialReadByte", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialReadByte(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 读取字节列表函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialReadByteList", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialReadByteList(IntPtr h, int number, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 读取字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialReadString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialReadString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string serial_name, [MarshalAs(UnmanagedType.LPStr)] string prefix, [MarshalAs(UnmanagedType.LPStr)] string suffix, bool interpret_escape); + + // 发送单个字节函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialSendByte", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialSendByte(IntPtr h, char value, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 发送整数函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialSendInt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialSendInt(IntPtr h, int value, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 发送一行数据函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialSendLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialSendLine(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 发送字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialSendString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialSendString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + + // 发送全部字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "serialSendAllString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int serialSendAllString(IntPtr h, bool is_check, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string serial_name); + } + + + public class cSharpBinging_Socket + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 打开Socket函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketOpen", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketOpen(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string address, int port, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 关闭Socket函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketClose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketClose(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 从Socket读取ASCII格式浮点数函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketReadAsciiFloat", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketReadAsciiFloat(IntPtr h, int number, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 从Socket读取二进制整数函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketReadBinaryInteger", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketReadBinaryInteger(IntPtr h, int number, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 从Socket读取字节列表函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketReadByteList", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketReadByteList(IntPtr h, int number, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 从Socket读取字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketReadString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketReadString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string socket_name, [MarshalAs(UnmanagedType.LPStr)] string prefix, [MarshalAs(UnmanagedType.LPStr)] string suffix, bool interpret_escape); + + // 从Socket读取全部字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketReadAllString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketReadAllString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string variable, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 向Socket发送单个字节函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketSendByte", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketSendByte(IntPtr h, char value, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 向Socket发送整数函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketSendInt", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketSendInt(IntPtr h, int value, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 向Socket发送一行数据函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketSendLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketSendLine(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 向Socket发送字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketSendString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketSendString(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + + // 向Socket发送全部字符串函数封装 + [DllImport(service_interface_dll, EntryPoint = "socketSendAllString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int socketSendAllString(IntPtr h, bool is_check, [MarshalAs(UnmanagedType.LPStr)] string str, [MarshalAs(UnmanagedType.LPStr)] string socket_name); + } + public class cSharpBinging_SyncMove + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + + // 执行同步操作函数封装 + [DllImport(service_interface_dll, EntryPoint = "sync", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int sync(IntPtr h); + + // 开启同步移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveOn", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int syncMoveOn(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string syncident, [MarshalAs(UnmanagedType.LPArray)] string[] taskset); + + // 判断同步移动段是否有效函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveSegment", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool syncMoveSegment(IntPtr h, int id); + + // 关闭同步移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveOff", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int syncMoveOff(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string syncident); + + // 撤销同步移动操作函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveUndo", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int syncMoveUndo(IntPtr h); + + // 等待同步任务函数封装 + [DllImport(service_interface_dll, EntryPoint = "waitSyncTasks", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int waitSyncTasks(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string syncident, [MarshalAs(UnmanagedType.LPArray)] string[] taskset); + + // 判断同步移动是否开启函数封装 + [DllImport(service_interface_dll, EntryPoint = "isSyncMoveOn", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isSyncMoveOn(IntPtr h); + + // 暂停同步移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveSuspend", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int syncMoveSuspend(IntPtr h); + + // 恢复同步移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "syncMoveResume", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int syncMoveResume(IntPtr h); + } + + public class cSharpBinging_SystemInfo + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 获取控制软件版本代码函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlSoftwareVersionCode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getControlSoftwareVersionCode(IntPtr h); + + // 获取控制软件完整版本信息函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlSoftwareFullVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getControlSoftwareFullVersion(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string result); + + // 获取接口版本代码函数封装 + [DllImport(service_interface_dll, EntryPoint = "getInterfaceVersionCode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getInterfaceVersionCode(IntPtr h); + + // 获取控制软件构建日期函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlSoftwareBuildDate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getControlSoftwareBuildDate(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string result); + + // 获取控制软件版本哈希值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlSoftwareVersionHash", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getControlSoftwareVersionHash(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string result); + + // 获取控制系统时间函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlSystemTime", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern ulong getControlSystemTime(IntPtr h); + } + + public class cSharpBinging_Trace + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + public enum TraceLevel_C + { + // 根据实际C语言中TraceLevel_C的枚举值添加对应项 + } + + [StructLayout(LayoutKind.Sequential)] + public struct RobotMsg_C + { + // 根据实际RobotMsg_C结构体的成员添加对应字段 + } + + // 触发告警函数封装 + [DllImport(service_interface_dll, EntryPoint = "alarm", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int alarm(IntPtr h, TraceLevel_C level, int code, [MarshalAs(UnmanagedType.LPArray)] string[] args); + + // 弹出提示框函数封装 + [DllImport(service_interface_dll, EntryPoint = "popup", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int popup(IntPtr h, TraceLevel_C level, [MarshalAs(UnmanagedType.LPStr)] string title, [MarshalAs(UnmanagedType.LPStr)] string msg, int mode); + + // 显示文本消息函数封装 + [DllImport(service_interface_dll, EntryPoint = "textmsg", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int textmsg(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string msg); + + // 发送通知函数封装 + [DllImport(service_interface_dll, EntryPoint = "notify", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int notify(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string msg); + + // 查看消息函数封装 + [DllImport(service_interface_dll, EntryPoint = "peek", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int peek(IntPtr h, ulong num, ulong last_time, [MarshalAs(UnmanagedType.LPStruct)] RobotMsg_C result); + } + + + + public class cSharpBinging_TypeDef + { + + // 定义常量 + public const int CARTESIAN_DOF = 6; + public const int SAFETY_PARAM_SELECT_NUM = 2; // normal + reduced + public const int SAFETY_PLANES_NUM = 8; // 安全平面的数量 + public const int SAFETY_CUBIC_NUM = 10; // 安全立方体的数量 + public const int TOOL_CONFIGURATION_NUM = 3; // 工具配置数量 + public const int MAX_DOF = 7; // 工具配置数量(或最大自由度) + + + // 定义向量类型 + public struct Vector3d + { + public double X, Y, Z; + + public Vector3d(double x, double y, double z) + { + X = x; + Y = y; + Z = z; + } + } + + public struct Vector4d + { + public double W, X, Y, Z; + + public Vector4d(double w, double x, double y, double z) + { + W = w; + X = x; + Y = y; + Z = z; + } + } + + public struct Vector3f + { + public float X, Y, Z; + + public Vector3f(float x, float y, float z) + { + X = x; + Y = y; + Z = z; + } + } + + public struct Vector4f + { + public float W, X, Y, Z; + + public Vector4f(float w, float x, float y, float z) + { + W = w; + X = x; + Y = y; + Z = z; + } + } + + public struct Vector6f + { + public float X, Y, Z, Rx, Ry, Rz; + + public Vector6f(float x, float y, float z, float rx, float ry, float rz) + { + X = x; + Y = y; + Z = z; + Rx = rx; + Ry = ry; + Rz = rz; + } + } + + + // 定义机器人安全参数范围结构体 + [StructLayout(LayoutKind.Sequential)] + public struct RobotSafetyParameterRange_C + { + public uint crc32; + + // 定义参数结构体 + [StructLayout(LayoutKind.Sequential)] + public struct SafetyParameter + { + public float power; + public float momentum; + public float stop_time; + public float stop_distance; + public float reduced_entry_time; + public float reduced_entry_distance; + public float tcp_speed; + public float elbow_speed; + public float tcp_force; + public float elbow_force; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public float[] qmin; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public float[] qmax; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public float[] qdmax; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public float[] joint_torque; + + public Vector3f tool_orientation; + public float tool_deviation; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = SAFETY_PLANES_NUM)] + public Vector4f[] planes; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = SAFETY_PLANES_NUM)] + public int[] restrict_elbow; + } + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = SAFETY_PARAM_SELECT_NUM)] + public SafetyParameter[] params_; // 注意:在C#中,'params' 是关键字,因此使用 'params_' 作为字段名 + + // 定义触发平面结构体 + [StructLayout(LayoutKind.Sequential)] + public struct TriggerPlane + { + public Vector4f plane; + public int restrict_elbow; + } + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = SAFETY_PLANES_NUM)] + public TriggerPlane[] trigger_planes; + + // 定义立方块结构体 + [StructLayout(LayoutKind.Sequential)] + public struct Cubic + { + public Vector6f orig; + public Vector3f size; + public int restrict_elbow; + } + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = SAFETY_CUBIC_NUM)] + public Cubic[] cubic; + + // 工具数组 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = TOOL_CONFIGURATION_NUM)] + public Vector4f[] tools; + + public float tool_inclination; + public float tool_azimuth; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public float[] safety_home; + + // 可配置IO的输入输出安全功能配置 + public uint safety_input_emergency_stop; + public uint safety_input_safeguard_stop; + public uint safety_input_safeguard_reset; + public uint safety_input_auto_safeguard_stop; + public uint safety_input_auto_safeguard_reset; + public uint safety_input_three_position_switch; + public uint safety_input_operational_mode; + public uint safety_input_reduced_mode; + public uint safety_input_handguide; + + public uint safety_output_emergency_stop; + public uint safety_output_not_emergency_stop; + public uint safety_output_robot_moving; + public uint safety_output_robot_steady; + public uint safety_output_reduced_mode; + public uint safety_output_not_reduced_mode; + public uint safety_output_safe_home; + public uint safety_output_robot_not_stopping; + public uint safety_output_safetyguard_stop; + + public int tp_3pe_for_handguide; + public int allow_manual_high_speed; + } + + public enum AuboErrorCodes + { + AUBO_OK = 0, // Success + AUBO_BAD_STATE = 1, // State error + AUBO_QUEUE_FULL = 2, // Planning queue full + AUBO_BUSY = 3, // The previous command is executing + AUBO_TIMEOUT = 4, // Timeout + AUBO_INVL_ARGUMENT = 5, // Invalid parameters + AUBO_NOT_IMPLEMENTED = 6, // Interface not implemented (fixed typo) + AUBO_NO_ACCESS = 7, // Cannot access + AUBO_CONN_REFUSED = 8, // Connection refused + AUBO_CONN_RESET = 9, // Connection is reset + AUBO_INPROGRESS = 10, // Execution in progress + AUBO_EIO = 11, // Input/Output error + AUBO_NOBUFFS = 12, // No buffers (assuming an appropriate description) + AUBO_REQUEST_IGNORE = 13, // Request was ignored + AUBO_ALGORITHM_PLAN_FAILED = 14, // Motion planning algorithm error + AUBO_VERSION_INCOMPAT = 15, // Interface version unmatch + AUBO_DIMENSION_ERR = 16, // Input parameter dimension is incorrect + AUBO_SINGULAR_ERR = 17, // Input configuration may be singular + AUBO_POS_BOUND_ERR = 18, // Input position boundary exceeds the limit range + AUBO_INIT_POS_ERR = 19, // Initial position input is unreasonable + AUBO_ELP_SETTING_ERR = 20, // Envelope body setting error + AUBO_TRAJ_GEN_FAIL = 21, // Trajectory generation failed + AUBO_TRAJ_SELF_COLLISION = 22, // Trajectory self collision + AUBO_IK_NO_CONVERGE = 23, // Inverse kinematics computation did not converge; computation failed + AUBO_IK_OUT_OF_RANGE = 24, // Inverse kinematics result out of robot range + AUBO_IK_CONFIG_DISMATCH = 25, // Inverse kinematics input configuration contains errors + AUBO_IK_JACOBIAN_FAILED = 26, // The calculation of the inverse Jacobian matrix failed + AUBO_IK_NO_SOLU = 27, // The target point has solutions, but it has exceeded the joint limit conditions + AUBO_IK_UNKNOWN_ERROR = 28, // Inverse kinematics unknown error (fixed typo) + AUBO_ERR_UNKNOWN = 99999 // Unknown error occurred. + } + + + public enum RuntimeState + { + [Description("正在运行中")] + Running = 0, + + [Description("倒退")] + Retracting = 1, + + [Description("暂停中")] + Pausing = 2, + + [Description("暂停状态")] + Paused = 3, + + [Description("单步执行中")] + Stepping = 4, + + [Description("受控停止中(保持原有轨迹)")] + Stopping = 5, + + [Description("已停止")] + Stopped = 6, + + [Description("停止(最大速度关节运动停机)")] + Aborting = 7 + } + + public enum RobotModeType + { + [Description("提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController")] + NoController = -1, + + [Description("没有连接到机械臂本体(控制器与接口板断开连接或是 EtherCAT 等总线断开)")] + Disconnected = 0, + + [Description("正在进行安全配置, 断电状态下进行")] + ConfirmSafety = 1, + + [Description("机械臂本体正在上电初始化")] + Booting = 2, + + [Description("机械臂本体处于断电状态")] + PowerOff = 3, + + [Description("机械臂本体上电成功, 刹车暂未松开(抱死), 关节初始状态未获取")] + PowerOn = 4, + + [Description("机械臂上电成功, 刹车暂未松开(抱死), 电机不通电, 关节初始状态获取完成")] + Idle = 5, + + [Description("机械臂上电成功, 刹车正在松开")] + BrakeReleasing = 6, + + [Description("反向驱动:刹车松开, 电机不通电")] + BackDrive = 7, + + [Description("机械臂刹车松开, 运行模式, 控制权由硬件移交给软件")] + Running = 8, + + [Description("维护模式: 包括固件升级、参数写入等")] + Maintaince = 9, + + [Description("")] + Error = 10, + + [Description("机械臂本体处于断电过程中")] + PowerOffing = 11 + } + + public enum SafetyModeType + { + [Description("安全状态待定")] + Undefined = 0, + + [Description("正常运行模式")] + Normal = 1, + + [Description("缩减运行模式")] + ReducedMode = 2, + + [Description("启动时如果在安全限制之外, 机器人将进入recovery模式")] + Recovery = 3, + + [Description("超出安全限制(根据安全配置, 例如速度超限等)")] + Violation = 4, + + [Description("软件触发的停机(保持轨迹, 不抱闸, 不断电)")] + ProtectiveStop = 5, + + [Description("IO触发的防护停机(不保持轨迹, 抱闸, 不断电)")] + SafeguardStop = 6, + + [Description("系统急停:急停信号由外部输入(可配置输入), 不对外输出急停信号")] + SystemEmergencyStop = 7, + + [Description("机器人急停:控制柜急停输入或者示教器急停按键触发, 对外输出急停信号")] + RobotEmergencyStop = 8, + + [Description("机械臂硬件故障或者系统故障")] + Fault = 9 + } + + public enum OperationalModeType + { + [Description("禁用模式: 不使用Operational Mode")] + Disabled = 0, + + [Description("自动模式: 机器人正常工作模式, 运行速度不会被限制")] + Automatic = 1, + + [Description("手动模式: 机器人编程示教模式(T1), 机器人运行速度将会被限制或者机器人程序校验模式(T2)")] + Manual = 2 + } + + public enum RobotControlModeType + { + [Description("未知的控制模式")] + Unknown = 0, + + [Description("位置控制 movej")] + Position = 1, + + [Description("速度控制 speedj/speedl")] + Speed = 2, + + [Description("位置控制 servoj")] + Servo = 3, + + [Description("拖动示教 freedrive_mode")] + Freedrive = 4, + + [Description("末端力控 force_mode")] + Force = 5, + + [Description("关节力矩控制")] + Torque = 6, + + [Description("碰撞模式")] + Collision = 7 + } + + public enum JointServoModeType + { + [Description("未知")] + Unknown = -1, + + [Description("开环模式")] + Open = 0, + + [Description("电流伺服模式")] + Current = 1, + + [Description("速度伺服模式")] + Velocity = 2, + + [Description("位置伺服模式")] + Position = 3, + + [Description("力矩伺服模式")] + Torque = 4 + } + + public enum JointStateType + { + [Description("节点未连接到接口板或者已经断电")] + Poweroff = 0, + + [Description("节点空闲")] + Idle = 2, + + [Description("节点错误, 节点停止伺服运动, 刹车抱死")] + Fault = 3, + + [Description("节点伺服")] + Running = 4, + + [Description("节点bootloader状态, 暂停一切通讯")] + Bootload = 5 + } + + public enum StandardInputAction + { + [Description("无触发")] + Default = 0, + + [Description("拖动示教,高电平触发")] + Handguide = 1, + + [Description("运动到工程初始位姿,高电平触发")] + GoHome = 2, + + [Description("开始工程,上升沿触发")] + StartProgram = 3, + + [Description("停止工程,上升沿触发")] + StopProgram = 4, + + [Description("暂停工程,上升沿触发")] + PauseProgram = 5, + + [Description("消除弹窗,上升沿触发")] + PopupDismiss = 6, + + [Description("机器人上电/松刹车,上升沿触发")] + PowerOn = 7, + + [Description("机器人抱死刹车/断电,上升沿触发")] + PowerOff = 8, + + [Description("恢复工程,上升沿触发")] + ResumeProgram = 9, + + [Description("机器人减速触发1,高电平触发")] + SlowDown1 = 10, + + [Description("机器人减速触发2,高电平触发")] + SlowDown2 = 11, + + [Description("安全停止,高电平触发")] + SafeStop = 12, + + [Description("信号,高电平有效")] + RunningGuard = 13, + + [Description("运动到工程初始位姿,高电平触发")] + MoveToFirstPoint = 14, + + [Description("机器人减速触发1,低电平触发")] + xSlowDown1 = 15, + + [Description("机器人减速触发2,低电平触发")] + xSlowDown2 = 16 + } + + public enum StandardOutputRunState + { + [Description("标准输出状态未定义")] + None = 0, + [Description("低电平指示工程停止")] + StopLow = 1, + [Description("高电平指示机器人停止")] + StopHigh = 2, + [Description("指示工程正在运行")] + RunningHigh = 3, + [Description("指示工程已经暂停")] + PausedHigh = 4, + [Description("高电平指示机器人正在拖动")] + AtHome = 5, + [Description("高电平指示机器人正在拖动(注意:与AtHome重复描述,可能需要修正)")] + Handguiding = 6, + [Description("高电平指示机器人已经上电")] + PowerOn = 7, + [Description("高电平指示机器人急停按下")] + RobotEmergencyStop = 8, + [Description("高电平指示外部输入系统急停按下")] + SystemEmergencyStop = 9, + [Description("系统错误,包括故障、超限、急停、安全停止、防护停止")] + SystemError = 10, + [Description("无系统错误,包括普通模式、缩减模式和恢复模式")] + NotSystemError = 11, + [Description("机器人可操作,机器人上电且松刹车了")] + RobotOperable = 12 + } + + public enum SafetyInputAction + { + [Description("安全输入未分配动作")] + Unassigned = 0, + [Description("安全输入触发急停")] + EmergencyStop = 1, + [Description("安全输入触发防护停止, 边沿触发")] + SafeguardStop = 2, + [Description("安全输入触发防护重置, 边沿触发")] + SafeguardReset = 3, + [Description("3档位使能开关")] + ThreePositionSwitch = 4, + [Description("切换自动模式和手动模式")] + OperationalMode = 5, + [Description("拖动示教")] + HandGuide = 6, + [Description("安全参数切换1(缩减模式),序号越低优先级越高,三路输出都无效时,选用第0组安全参数")] + ReducedMode = 7, + [Description("自动模式下防护停机输入(需要配置三档位使能设备)")] + AutomaticModeSafeguardStop = 8, + [Description("自动模式下上升沿触发防护重置(需要配置三档位使能设备)")] + AutomaticModeSafeguardReset = 9 + } + + public enum SafetyOutputRunState + { + [Description("安全输出未定义")] + Unassigned = 0, + [Description("输出高当有机器人急停输入或者急停按键被按下")] + SystemEmergencyStop = 1, + [Description("输出低当有机器人急停输入或者急停按键被按下")] + NotSystemEmergencyStop = 2, + [Description("输出高当有关节运动速度超过 0.1rad/s")] + RobotMoving = 3, + [Description("输出高当所有的关节运动速度不超过 0.1rad/s")] + RobotNotMoving = 4, + [Description("输出高当机器人处于缩减模式")] + ReducedMode = 5, + [Description("输出高当机器人不处于缩减模式")] + NotReducedMode = 6, + [Description("输出高当机器人已经处于安全Home位姿")] + SafeHome = 7, + [Description("输出低当机器人正在急停或者安全停止中")] + RobotNotStopping = 8 + } + + public enum PayloadIdentifyMoveAxis + { + [Description("第2和6关节运动")] + Joint_2_6 = 0, + [Description("第3和6关节运动")] + Joint_3_6 = 1, + [Description("第4和6关节运动")] + Joint_4_6 = 2, + [Description("第4、5、6关节运动")] + Joint_4_5_6 = 3 + } + + public enum EnvelopingShape + { + [Description("立方体")] + Cube = 1, + + [Description("柱状体")] + Column = 2, + + [Description("以STL文件的形式描述负载碰撞集合体")] + Stl = 3 + } + + public enum TaskFrameType + { + [Description("")] + NONE = 0, + + [Description("力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向\n力控坐标系发生变换, 使得力控参考坐标系的y轴沿着机器人TCP指向力控所选特征的原点, x和z轴取决于所选特征的原始方向\n机器人TCP与所选特征的起点之间的距离至少为10mm\n优先选择X轴, 为所选特征的X轴在力控坐标系Y轴垂直平面上的投影, 如果所选特征的X轴与力控坐标系的Y轴平行, \n通过类似方法确定力控坐标系Z轴, Y-X或者Y-Z轴确定之后, 通过右手法则确定剩下的轴")] + POINT_FORCE = 1, + + [Description("力控坐标系不发生变换 SIMPLE_FORC")] + FRAME_FORCE = 2, + + [Description("力控坐标系发生变换, 使得力控参考坐标系的x轴为机器人TCP速度在所选特征x-y平面上的投影y轴将垂直于机械臂运动, 并在所选特征的x-y平面内")] + MOTION_FORCE = 3, + + [Description("以工具末端坐标系作为力控参考坐标系")] + TOOL_FORCE = 4 + } + + public enum TraceLevel + { + [Description("")] + FATAL = 0, + + [Description("")] + ERROR = 1, + + [Description("")] + WARNING = 2, + + [Description("")] + INFO = 3, + + [Description("")] + DEBUG = 4 + } + + public enum AxisModeType + { + [Description("提供给示教器使用的, 如果aubo_control进程崩溃则会显示为NoController")] + NoController = -1, + + [Description("未连接")] + Disconnected = 0, + + [Description("断电")] + PowerOff = 1, + + [Description("刹车松开中")] + BrakeReleasing = 2, + + [Description("空闲")] + Idle = 3, + + [Description("运行中")] + Running = 4, + + [Description("错误状态")] + Fault = 5 + } + + public enum SafeguedStopType + { + [Description("无安全停止")] + None = 0, + + [Description("安全停止(IO输入)")] + SafeguedStopIOInput = 1, + + [Description("安全停止(三态开关)")] + SafeguedStop3PE = 2, + + [Description("安全停止(操作模式)")] + SafeguedStopOperational = 3 + } + + + public enum ForceControlState + { + [Description("力控状态:已停止")] + ForceControlState_Stopped, + + [Description("力控状态:正在启动")] + ForceControlState_Starting, + + // 注意:原枚举值 "Stropping" 可能是 "Stopping" 的拼写错误,这里按照原样保留,但建议检查是否为拼写错误 + [Description("力控状态:正在停止(注意:可能是'Stopping'的拼写错误)")] + ForceControlState_Stropping, + + [Description("力控状态:正在运行")] + ForceControlState_Running + } + + public enum RefFrameType + { + [Description("无参考坐标系")] + RefFrameType_None, + + [Description("工具坐标系")] + RefFrameType_Tool, + + [Description("轨迹坐标系")] + RefFrameType_Path, + + [Description("基坐标系")] + RefFrameType_Base + } + + // 圆周运动参数定义 + [StructLayout(LayoutKind.Sequential)] + public struct CircleParameters + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] PoseVia; // 圆周运动途中点的位姿 + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] PoseTo; // 圆周运动结束点的位姿 + + public double Acceleration; // 加速度, 单位: m/s^2 + public double Speed; // 速度,单位: m/s + public double BlendRadius; // 交融半径, 单位: m + public double Duration; // 运行时间,单位: s + public double Helix; + public double Spiral; + public double Direction; + public int LoopTimes; // 暂不支持 + } + + // 螺旋线参数定义 + [StructLayout(LayoutKind.Sequential)] + public struct SpiralParameters + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] Frame; // 参考点,螺旋线的中心点和参考坐标系 + public int Plane; // 参考平面选择 0-XY 1-YZ 2-ZX + public double Angle; // 转动的角度,如果为正数,机器人逆时针旋转 + public double Spiral; // 正数外扩 + public double Helix; // 正数上升 + } + + [StructLayout(LayoutKind.Sequential)] + public struct Enveloping + { + public EnvelopingShape Shape; // 包络体形状 + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] EpArgs; // 包络体组合,根据shape的不同,数组元素含义不同 + + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + private string stlPath; // STL文件路径(在C#中,我们通常使用string而不是char数组) + + // 提供STL路径的公共属性,带有getter和setter + public string StlPath + { + get { return stlPath; } + set { stlPath = value; } + } + } + + // 用于负载辨识的轨迹配置 + public class TrajConfig + { + public Enveloping[] Envelopings; // 包络体组合(使用数组而不是指针) + public int MoveAxis; // 运动的轴(ID), 下标从0开始(假设只有一个轴在运动) + // 如果需要多个轴,可以考虑使用数组或集合 + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] // 注意:MAX_DOF需要在某处定义 + public double[] InitJoint; // 关节初始位置 + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public double[] UpperJointBound; // 运动轴上限 + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = MAX_DOF)] + public double[] LowerJointBound; // 运动轴下限 + + public double MaxVelocity; // 关节运动的最大速度,默认值为3.0 + public double MaxAcceleration; // 关节运动的最大加速度,默认值为5.0 + } + + + // 对应C语言中的DHParam_C结构体 + [StructLayout(LayoutKind.Sequential)] + public struct DHParam + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] theta; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] beta; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] d; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] a; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] alpha; + } + + // 对应C语言中的DHComp_C结构体 + [StructLayout(LayoutKind.Sequential)] + public struct DHComp + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] theta_comp; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] beta_comp; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] d_comp; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] a_comp; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] alpha_comp; + } + + // 对应C语言中的Payload_C结构体 + [StructLayout(LayoutKind.Sequential)] + public struct Payload + { + public double mass; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public double[] cog; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public double[] aom; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] inertia; + } + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] + public struct PlanContextResult + { + public int tid; + public int lineno; + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string comment; + } + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] + public struct ExecutionStatusResult + { + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string name; + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string status; + } + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] + public struct ExecutionStatus1Result + { + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string name; + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string status; + public int retval; + } + + // 对应C语言中的ForceSensorCalibResult_C结构体 + [StructLayout(LayoutKind.Sequential)] + public struct ForceSensorCalibResult + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] force_offset; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] + public double[] com; + public double mass; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] angle; + } + + // 对应C语言中的DynamicsModel结构体 + [StructLayout(LayoutKind.Sequential)] + public struct DynamicsModel + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] m; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] d; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] + public double[] k; + } + + [StructLayout(LayoutKind.Sequential)] + public struct RobotMsg + { + public ulong timestamp; + public TraceLevel level; + public int code; + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 100)] + public string source; + public IntPtr args; + public int args_count; + } + + [StructLayout(LayoutKind.Sequential)] + public struct RobotMsgVector + { + public IntPtr data; // RobotMsg* + public int size; // RobotMsg个数 + } + + [StructLayout(LayoutKind.Sequential)] + public struct RtdeRecipe + { + public bool to_server; + public int chanel; + public double frequency; + public int trigger; + public IntPtr segments; + public int segments_count; + } + + public enum ErrorType + { + [Description("解析错误")] + ParseError = -32700, + [Description("无效请求")] + InvalidRequest = -32600, + [Description("方法未找到")] + MethodNotFound = -32601, + [Description("无效参数")] + InvalidParams = -32602, + [Description("内部错误")] + InternalError = -32603, + [Description("服务器错误")] + ServerError, // 在C#中,如果不指定值,则默认为前一个值加1(但这里由于前面有显式值,所以默认是0,需要手动设置) + [Description("无效")] + Invalid = 1 + } + + public enum ExceptionCode + { + [Description("断开连接")] + Disconnected = -1, + [Description("未登录")] + NotLogined = -2, + [Description("无效套接字")] + InvalidSocket = -3, + [Description("请求繁忙")] + RequestBusy = -4, + [Description("发送失败")] + SendFailed = -5, + [Description("接收超时")] + RecvTimeout = -6, + [Description("接收错误")] + RecvError = -7, + [Description("解析错误")] + ParseError = -8, + [Description("无效请求")] + InvalidRequest = -9, + [Description("方法未找到")] + MethodNotFound = -10, + [Description("无效参数")] + InvalidParams = -11, + [Description("内部错误")] + InternalError = -12, + [Description("服务器错误")] + ServerError = -13, + [Description("无效")] + Invalid = -14 + } + + // 定义一个帮助类来获取枚举值的描述 + public static class EnumHelper + { + public static string GetDescription(Enum value) + { + var field = value.GetType().GetField(value.ToString()); + var descriptionAttribute = Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute; + return descriptionAttribute == null ? value.ToString() : descriptionAttribute.Description; + } + } + } + + public class cSharpBinging_RobotInterface + { + const string dllName = "aubo_sdkd.dll"; + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern ROBOT_CONFIG_HANDLER robot_getRobotConfig(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern MOTION_CONTROL_HANDLER robot_getMotionControl(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern FORCE_CONTROL_HANDLER robot_getForceControl(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern IO_CONTROL_HANDLER robot_getIoControl(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern SYNC_MOVE_HANDLER robot_getSyncMove(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern ROBOT_ALGORITHM_HANDLER robot_getRobotAlgorithm(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern ROBOT_MANAGE_HANDLER robot_getRobotManage(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern ROBOT_STATE_HANDLER robot_getRobotState(ROBOT_HANDLER robot); + + [DllImport(dllName, CallingConvention = CallingConvention.Cdecl)] + public static extern TRACE_HANDLER robot_getTrace(ROBOT_HANDLER robot); + } + // aubo_sdk/robot + public class cSharpBinging_ForceControl + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 启用力控功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "fcEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcEnable(IntPtr h); + + // 禁用力控功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "fcDisable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcDisable(IntPtr h); + + // 判断力控是否启用函数封装 + [DllImport(service_interface_dll, EntryPoint = "isFcEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isFcEnabled(IntPtr h); + + // 设置目标力函数封装 + [DllImport(service_interface_dll, EntryPoint = "setTargetForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setTargetForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] feature, [MarshalAs(UnmanagedType.LPArray)] byte[] compliance, [MarshalAs(UnmanagedType.LPArray)] double[] wrench, [MarshalAs(UnmanagedType.LPArray)] double[] limits, cSharpBinging_TypeDef.TaskFrameType type); + + // 设置动力学模型函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDynamicModel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDynamicModel(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] m, [MarshalAs(UnmanagedType.LPArray)] double[] d, [MarshalAs(UnmanagedType.LPArray)] double[] k); + + // 获取动力学模型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDynamicModel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.DynamicsModel getDynamicModel(IntPtr h); + + // 设置条件力函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] min, [MarshalAs(UnmanagedType.LPArray)] double[] max, bool outside, double timeout); + + // 设置条件方向函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondOrient", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondOrient(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] frame, double max_angle, double max_rot, bool outside, double timeout); + + // 设置条件平面函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondPlane", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondPlane(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] plane, double timeout); + + // 设置条件圆柱函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondCylinder", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondCylinder(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] axis, double radius, bool outside, double timeout); + + // 设置条件球体函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondSphere", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondSphere(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] center, double radius, bool outside, double timeout); + + // 设置条件TCP速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondTcpSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondTcpSpeed(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] min, [MarshalAs(UnmanagedType.LPArray)] double[] max, bool outside, double timeout); + + // 设置条件激活函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondActive", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondActive(IntPtr h); + + // 设置条件距离函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondDistance", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondDistance(IntPtr h, double distance, double timeout); + + // 设置高级条件函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCondAdvanced", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCondAdvanced(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string type, [MarshalAs(UnmanagedType.LPArray)] double[] args, double timeout); + + // 判断条件是否满足函数封装 + [DllImport(service_interface_dll, EntryPoint = "isCondFullfiled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isCondFullfiled(IntPtr h); + + // 设置监督力函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] min, [MarshalAs(UnmanagedType.LPArray)] double[] max); + + // 设置监督方向函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvOrient", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvOrient(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] frame, double max_angle, double max_rot, bool outside); + + // 设置监督位置盒子函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvPosBox", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvPosBox(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] frame, [MarshalAs(UnmanagedType.LPArray)] double[] box); + + // 设置监督位置圆柱函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvPosCylinder", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvPosCylinder(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] frame, [MarshalAs(UnmanagedType.LPArray)] double[] cylinder); + + // 设置监督位置球体函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvPosSphere", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvPosSphere(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] frame, [MarshalAs(UnmanagedType.LPArray)] double[] sphere); + + // 设置监督重定向速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvReoriSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvReoriSpeed(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] speed_limit, bool outside, double timeout); + + // 设置监督TCP速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSupvTcpSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSupvTcpSpeed(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] speed_limit, bool outside, double timeout); + + // 设置低通滤波器函数封装 + [DllImport(service_interface_dll, EntryPoint = "setLpFilter", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setLpFilter(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] cutoff_freq); + + // 重置低通滤波器函数封装 + [DllImport(service_interface_dll, EntryPoint = "resetLpFilter", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resetLpFilter(IntPtr h); + + // 速度变化调谐函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedChangeTune", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedChangeTune(IntPtr h, int speed_levels, double speed_ratio_min); + + // 启用速度变化函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedChangeEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedChangeEnable(IntPtr h, double ref_force); + + // 禁用速度变化函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedChangeDisable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedChangeDisable(IntPtr h); + + // 设置阻尼函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDamping", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDamping(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] damping, double ramp_time); + + // 重置阻尼函数封装 + [DllImport(service_interface_dll, EntryPoint = "resetDamping", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resetDamping(IntPtr h); + + // 启用软浮动函数封装 + [DllImport(service_interface_dll, EntryPoint = "softFloatEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int softFloatEnable(IntPtr h); + + // 禁用软浮动函数封装 + [DllImport(service_interface_dll, EntryPoint = "softFloatDisable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int softFloatDisable(IntPtr h); + + // 判断软浮动是否启用函数封装 + [DllImport(service_interface_dll, EntryPoint = "isSoftFloatEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isSoftFloatEnabled(IntPtr h); + + // 设置软浮动参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSoftFloatParams", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSoftFloatParams(IntPtr h, bool joint_space, [MarshalAs(UnmanagedType.LPArray)] byte[] select, [MarshalAs(UnmanagedType.LPArray)] double[] stiff_percent, [MarshalAs(UnmanagedType.LPArray)] double[] stiff_damp_ratio, [MarshalAs(UnmanagedType.LPArray)] double[] force_threshold, [MarshalAs(UnmanagedType.LPArray)] double[] force_limit); + + // 工具接触函数封装 + [DllImport(service_interface_dll, EntryPoint = "toolContact", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int toolContact(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] byte[] direction); + } + public class cSharpBinging_IoControl + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 获取标准数字输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardDigitalInputNum(IntPtr h); + + // 获取工具数字输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolDigitalInputNum(IntPtr h); + + // 获取可配置数字输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getConfigurableDigitalInputNum(IntPtr h); + + // 获取标准数字输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardDigitalOutputNum(IntPtr h); + + // 获取工具数字输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolDigitalOutputNum(IntPtr h); + + // 设置工具IO输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolIoInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolIoInput(IntPtr h, int index, bool input); + + // 判断工具IO输入状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "isToolIoInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isToolIoInput(IntPtr h, int index); + + // 获取可配置数字输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getConfigurableDigitalOutputNum(IntPtr h); + + // 获取标准模拟输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardAnalogInputNum(IntPtr h); + + // 获取工具模拟输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolAnalogInputNum(IntPtr h); + + // 获取标准模拟输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardAnalogOutputNum(IntPtr h); + + // 获取工具模拟输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolAnalogOutputNum(IntPtr h); + + // 设置数字输入动作默认值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDigitalInputActionDefault", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDigitalInputActionDefault(IntPtr h); + + // 设置标准数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardDigitalInputAction(IntPtr h, int index, cSharpBinging_TypeDef.StandardInputAction action); + + // 设置工具数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolDigitalInputAction(IntPtr h, int index, cSharpBinging_TypeDef.StandardInputAction action); + + // 设置可配置数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "setConfigurableDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setConfigurableDigitalInputAction(IntPtr h, int index, cSharpBinging_TypeDef.StandardInputAction action); + + // 获取标准数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardInputAction getStandardDigitalInputAction(IntPtr h, int index); + + // 获取工具数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardInputAction getToolDigitalInputAction(IntPtr h, int index); + + // 获取可配置数字输入动作函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalInputAction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardInputAction getConfigurableDigitalInputAction(IntPtr h, int index); + + // 设置数字输出运行状态默认值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setDigitalOutputRunstateDefault", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setDigitalOutputRunstateDefault(IntPtr h); + + // 设置标准数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardDigitalOutputRunstate(IntPtr h, int index, cSharpBinging_TypeDef.StandardOutputRunState runstate); + + // 设置工具数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolDigitalOutputRunstate(IntPtr h, int index, cSharpBinging_TypeDef.StandardOutputRunState runstate); + + // 设置可配置数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setConfigurableDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setConfigurableDigitalOutputRunstate(IntPtr h, int index, cSharpBinging_TypeDef.StandardOutputRunState runstate); + + // 获取标准数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardOutputRunState getStandardDigitalOutputRunstate(IntPtr h, int index); + + // 获取工具数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardOutputRunState getToolDigitalOutputRunstate(IntPtr h, int index); + + // 获取可配置数字输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardOutputRunState getConfigurableDigitalOutputRunstate(IntPtr h, int index); + + // 设置标准模拟输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardAnalogOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardAnalogOutputRunstate(IntPtr h, int index, cSharpBinging_TypeDef.StandardOutputRunState runstate); + + // 设置工具模拟输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolAnalogOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolAnalogOutputRunstate(IntPtr h, int index, cSharpBinging_TypeDef.StandardOutputRunState runstate); + + // 获取标准模拟输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardOutputRunState getStandardAnalogOutputRunstate(IntPtr h, int index); + + // 获取工具模拟输出运行状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogOutputRunstate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.StandardOutputRunState getToolAnalogOutputRunstate(IntPtr h, int index); + + // 设置标准模拟输入域函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardAnalogInputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardAnalogInputDomain(IntPtr h, int index, int domain); + + // 设置工具模拟输入域函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolAnalogInputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolAnalogInputDomain(IntPtr h, int index, int domain); + + // 获取标准模拟输入域函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogInputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardAnalogInputDomain(IntPtr h, int index); + + // 获取工具模拟输入域函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogInputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolAnalogInputDomain(IntPtr h, int index); + + // 设置标准模拟输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardAnalogOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardAnalogOutputDomain(IntPtr h, int index, int domain); + + // 设置工具模拟输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolAnalogOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolAnalogOutputDomain(IntPtr h, int index, int domain); + + // 设置工具电压输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolVoltageOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolVoltageOutputDomain(IntPtr h, int domain); + + // 获取工具电压输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolVoltageOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolVoltageOutputDomain(IntPtr h); + + // 获取标准模拟输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStandardAnalogOutputDomain(IntPtr h, int index); + + // 获取工具模拟输出域函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogOutputDomain", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolAnalogOutputDomain(IntPtr h, int index); + + // 设置标准数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardDigitalOutput(IntPtr h, int index, bool value); + + // 设置标准数字输出脉冲函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardDigitalOutputPulse", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardDigitalOutputPulse(IntPtr h, int index, bool value, double duration); + + // 设置工具数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolDigitalOutput(IntPtr h, int index, bool value); + + // 设置工具数字输出脉冲函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolDigitalOutputPulse", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolDigitalOutputPulse(IntPtr h, int index, bool value, double duration); + + // 设置可配置数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "setConfigurableDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setConfigurableDigitalOutput(IntPtr h, int index, bool value); + + // 设置可配置数字输出脉冲函数封装 + [DllImport(service_interface_dll, EntryPoint = "setConfigurableDigitalOutputPulse", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setConfigurableDigitalOutputPulse(IntPtr h, int index, bool value, double duration); + + // 设置标准模拟输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "setStandardAnalogOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setStandardAnalogOutput(IntPtr h, int index, double value); + + // 设置工具模拟输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolAnalogOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolAnalogOutput(IntPtr h, int index, double value); + + // 获取标准数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getStandardDigitalInput(IntPtr h, int index); + + // 获取所有标准数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalInputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getStandardDigitalInputs(IntPtr h); + + // 获取工具数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getToolDigitalInput(IntPtr h, int index); + + // 获取所有工具数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalInputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getToolDigitalInputs(IntPtr h); + + // 获取可配置数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getConfigurableDigitalInput(IntPtr h, int index); + + // 获取所有可配置数字输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalInputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getConfigurableDigitalInputs(IntPtr h); + + // 获取标准模拟输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getStandardAnalogInput(IntPtr h, int index); + + // 获取工具模拟输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogInput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getToolAnalogInput(IntPtr h, int index); + + // 获取标准数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getStandardDigitalOutput(IntPtr h, int index); + + // 获取所有标准数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardDigitalOutputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getStandardDigitalOutputs(IntPtr h); + + // 获取工具数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getToolDigitalOutput(IntPtr h, int index); + + // 获取所有工具数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolDigitalOutputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getToolDigitalOutputs(IntPtr h); + + // 获取可配置数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getConfigurableDigitalOutput(IntPtr h, int index); + + // 获取所有可配置数字输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getConfigurableDigitalOutputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getConfigurableDigitalOutputs(IntPtr h); + + // 获取标准模拟输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStandardAnalogOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getStandardAnalogOutput(IntPtr h, int index); + + // 获取工具模拟输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolAnalogOutput", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getToolAnalogOutput(IntPtr h, int index); + + // 获取静态链路输入数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStaticLinkInputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStaticLinkInputNum(IntPtr h); + + // 获取静态链路输出数量函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStaticLinkOutputNum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getStaticLinkOutputNum(IntPtr h); + + // 获取所有静态链路输入函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStaticLinkInputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getStaticLinkInputs(IntPtr h); + + // 获取所有静态链路输出函数封装 + [DllImport(service_interface_dll, EntryPoint = "getStaticLinkOutputs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getStaticLinkOutputs(IntPtr h); + + // 判断是否有编码器传感器函数封装 + [DllImport(service_interface_dll, EntryPoint = "hasEncoderSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool hasEncoderSensor(IntPtr h); + + // 设置编码器解码器类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "setEncDecoderType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setEncDecoderType(IntPtr h, int type, int range_id); + + // 设置编码器计数值函数封装 + [DllImport(service_interface_dll, EntryPoint = "setEncTickCount", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setEncTickCount(IntPtr h, int tick); + + // 获取编码器解码器类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getEncDecoderType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getEncDecoderType(IntPtr h); + + // 获取编码器计数值函数封装 + [DllImport(service_interface_dll, EntryPoint = "getEncTickCount", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getEncTickCount(IntPtr h); + + // 展开编码器增量计数值函数封装 + [DllImport(service_interface_dll, EntryPoint = "unwindEncDeltaTickCount", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int unwindEncDeltaTickCount(IntPtr h, int delta_count); + + // 获取工具按钮状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolButtonStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool getToolButtonStatus(IntPtr h); + + } + public class cSharpBinging_MotionControl + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 获取等效半径函数封装 + [DllImport(service_interface_dll, EntryPoint = "getEqradius", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getEqradius(IntPtr h); + + // 设置等效半径函数封装 + [DllImport(service_interface_dll, EntryPoint = "setEqradius", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setEqradius(IntPtr h, double eqradius); + + // 获取速度分数函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSpeedFraction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getSpeedFraction(IntPtr h); + + // 设置速度分数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSpeedFraction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSpeedFraction(IntPtr h, double fraction); + + // 启用/禁用速度分数临界功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedFractionCritical", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedFractionCritical(IntPtr h, bool enable); + + // 判断速度分数是否处于临界状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "isSpeedFractionCritical", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isSpeedFractionCritical(IntPtr h); + + // 判断是否处于混合状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "isBlending", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isBlending(IntPtr h); + + // 启用路径偏移功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathOffsetEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathOffsetEnable(IntPtr h); + + // 设置路径偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathOffsetSet", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathOffsetSet(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] offset, int type); + + // 禁用路径偏移功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathOffsetDisable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathOffsetDisable(IntPtr h); + + // 启用关节偏移功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "jointOffsetEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int jointOffsetEnable(IntPtr h); + + // 设置关节偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "jointOffsetSet", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int jointOffsetSet(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] offset, int type); + + // 禁用关节偏移功能函数封装 + [DllImport(service_interface_dll, EntryPoint = "jointOffsetDisable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int jointOffsetDisable(IntPtr h); + + // 获取轨迹队列大小函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTrajectoryQueueSize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTrajectoryQueueSize(IntPtr h); + + // 获取队列大小函数封装 + [DllImport(service_interface_dll, EntryPoint = "getQueueSize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getQueueSize(IntPtr h); + + // 获取执行ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getExecId", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getExecId(IntPtr h); + + // 获取指定ID的持续时间函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDuration", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDuration(IntPtr h, int id); + + // 获取指定ID的运动剩余时间函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMotionLeftTime", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getMotionLeftTime(IntPtr h, int id); + + // 获取进度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getProgress", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getProgress(IntPtr h); + + // 设置工作对象保持相关信息函数封装 + [DllImport(service_interface_dll, EntryPoint = "setWorkObjectHold", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setWorkObjectHold(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string module_name, [MarshalAs(UnmanagedType.LPArray)] double[] mounting_pose); + + // 获取工作对象保持相关信息函数封装 + [DllImport(service_interface_dll, EntryPoint = "getWorkObjectHold", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr getWorkObjectHold(IntPtr h); + + // 获取暂停关节位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPauseJointPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getPauseJointPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置伺服模式启用状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setServoMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setServoMode(IntPtr h, bool enable); + + // 判断伺服模式是否启用函数封装 + [DllImport(service_interface_dll, EntryPoint = "isServoModeEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isServoModeEnabled(IntPtr h); + + // 设置伺服模式选择函数封装 + [DllImport(service_interface_dll, EntryPoint = "setServoModeSelect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setServoModeSelect(IntPtr h, int mode); + + // 获取伺服模式选择函数封装 + [DllImport(service_interface_dll, EntryPoint = "getServoModeSelect", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getServoModeSelect(IntPtr h); + + // 关节伺服控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "servoJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int servoJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, double a, double v, double t, double lookahead_time, double gain); + + // 笛卡尔坐标伺服控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "servoCartesian", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int servoCartesian(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, double a, double v, double t, double lookahead_time, double gain); + + // 带外部坐标的关节伺服控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "servoJointWithAxes", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int servoJointWithAxes(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] extq, double a, double v, double t, double lookahead_time, double gain); + + // 带外部坐标的笛卡尔坐标伺服控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "servoCartesianWithAxes", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int servoCartesianWithAxes(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] extq, double a, double v, double t, double lookahead_time, double gain); + + // 关节轨迹跟踪函数封装 + [DllImport(service_interface_dll, EntryPoint = "trackJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int trackJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, double t, double smooth_scale, double delay_sacle); + + // 笛卡尔坐标轨迹跟踪函数封装 + [DllImport(service_interface_dll, EntryPoint = "trackCartesian", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int trackCartesian(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, double t, double smooth_scale, double delay_sacle); + + // 关节跟随控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "followJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int followJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q); + + // 直线跟随控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "followLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int followLine(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose); + + // 关节速度控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] qd, double a, double t); + + // 恢复关节速度控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeSpeedJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeSpeedJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] qd, double a, double t); + + // 直线速度控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "speedLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int speedLine(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] xd, double a, double t); + + // 恢复直线速度控制函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeSpeedLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeSpeedLine(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] xd, double a, double t); + + // 样条曲线运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveSpline", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveSpline(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, double a, double v, double duration); + + // 关节运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, double a, double v, double blend_radius, double duration); + + // 恢复关节运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeMoveJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeMoveJoint(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, double a, double v, double duration); + + // 直线运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveLine(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, double a, double v, double blend_radius, double duration); + + // 过程运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveProcess", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveProcess(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, double a, double v, double blend_radius); + + // 恢复直线运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeMoveLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeMoveLine(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, double a, double v, double duration); + + // 圆形运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveCircle", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveCircle(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] via_pose, [MarshalAs(UnmanagedType.LPArray)] double[] end_pose, double a, double v, double blend_radius, double duration); + + // 设置圆形路径模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCirclePathMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCirclePathMode(IntPtr h, int mode); + + // 圆形运动(使用参数结构体)函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveCircle2", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveCircle2(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] cSharpBinging_TypeDef.CircleParameters param); + + // 路径缓冲区分配函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferAlloc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBufferAlloc(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name, int type, int size); + + // 路径缓冲区添加路径点函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferAppend", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBufferAppend(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name, [MarshalAs(UnmanagedType.LPArray)] double[] waypoints, int rows); + + // 路径缓冲区评估函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferEval", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBufferEval(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name, [MarshalAs(UnmanagedType.LPArray)] double[] a, [MarshalAs(UnmanagedType.LPArray)] double[] v, double t); + + // 判断路径缓冲区是否有效函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferValid", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool pathBufferValid(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 释放路径缓冲区函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferFree", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBufferFree(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 获取路径缓冲区列表函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBufferList", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBufferList(IntPtr h, out IntPtr result); + + // 按路径缓冲区移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "movePathBuffer", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int movePathBuffer(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 移动到交点函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveIntersection", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveIntersection(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] poses, int rows, double a, double v, double main_pipe_radius, double sub_pipe_radius, double normal_distance, double normal_alpha); + + // 停止关节运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "stopJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int stopJoint(IntPtr h, double acc); + + // 恢复停止关节运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeStopJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeStopJoint(IntPtr h, double acc); + + // 停止直线运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "stopLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int stopLine(IntPtr h, double acc, double acc_rot); + + // 恢复停止直线运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "resumeStopLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int resumeStopLine(IntPtr h, double acc, double acc_rot); + + // 编织运动开始函数封装 + [DllImport(service_interface_dll, EntryPoint = "weaveStart", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int weaveStart(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string param); + + // 编织运动结束函数封装 + [DllImport(service_interface_dll, EntryPoint = "weaveEnd", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int weaveEnd(IntPtr h); + + // 存储路径函数封装 + [DllImport(service_interface_dll, EntryPoint = "storePath", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int storePath(IntPtr h, bool keep_sync); + + // 停止运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "stopMove", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int stopMove(IntPtr h, bool quick, bool all_tasks); + + // 开始运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "startMove", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int startMove(IntPtr h); + + // 清除路径函数封装 + [DllImport(service_interface_dll, EntryPoint = "clearPath", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int clearPath(IntPtr h); + + // 恢复路径(可能是拼写错误,推测正确应为restorePath)函数封装 + [DllImport(service_interface_dll, EntryPoint = "restoPath", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int restoPath(IntPtr h); + + // 设置未来点采样周期函数封装 + [DllImport(service_interface_dll, EntryPoint = "setFuturePointSamplePeriod", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setFuturePointSamplePeriod(IntPtr h, double sample_time); + + // 获取未来关节路径点函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFuturePathPointsJoint", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getFuturePathPointsJoint(IntPtr h, out IntPtr result); + + // 圆形传送带跟踪函数封装 + [DllImport(service_interface_dll, EntryPoint = "conveyorTrackCircle", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int conveyorTrackCircle(IntPtr h, int encoder_id, [MarshalAs(UnmanagedType.LPArray)] double[] center, int tick_per_revo, bool rotate_tool); + + // 直线传送带跟踪函数封装 + [DllImport(service_interface_dll, EntryPoint = "conveyorTrackLine", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int conveyorTrackLine(IntPtr h, int encoder_id, [MarshalAs(UnmanagedType.LPArray)] double[] direction, int tick_per_meter); + + // 停止传送带跟踪函数封装 + [DllImport(service_interface_dll, EntryPoint = "conveyorTrackStop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int conveyorTrackStop(IntPtr h, double a); + + // 螺旋运动函数封装 + [DllImport(service_interface_dll, EntryPoint = "moveSpiral", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int moveSpiral(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] cSharpBinging_TypeDef.SpiralParameters param, double blend_radius, double v, double a, double t); + + // 设置路径偏移限制函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathOffsetLimits", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathOffsetLimits(IntPtr h, double v, double a); + + // 设置路径偏移坐标参考函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathOffsetCoordinate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathOffsetCoordinate(IntPtr h, int ref_coord); + + // 获取前瞻尺寸函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLookAheadSize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getLookAheadSize(IntPtr h); + + // 设置前瞻尺寸函数封装 + [DllImport(service_interface_dll, EntryPoint = "setLookAheadSize", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setLookAheadSize(IntPtr h, int size); + + } + public class cSharpBinging_RobotAlgorithm + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 校准TCP力传感器(第一个版本)函数封装 + [DllImport(service_interface_dll, EntryPoint = "calibrateTcpForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.ForceSensorCalibResult calibrateTcpForceSensor(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] forces, int forcesRows, [MarshalAs(UnmanagedType.LPArray)] double[] poses, int posesRows); + // 校准TCP力传感器(第二个版本)函数封装 + [DllImport(service_interface_dll, EntryPoint = "calibrateTcpForceSensor2", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.ForceSensorCalibResult calibrateTcpForceSensor2(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] forces, int forcesRows, [MarshalAs(UnmanagedType.LPArray)] double[] poses, int posesRows); + + // 负载识别(版本1,使用两个字符串参数)函数封装 + [DllImport(service_interface_dll, EntryPoint = "payloadIdentify", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int payloadIdentify(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string data_no_payload, [MarshalAs(UnmanagedType.LPStr)] string data_with_payload); + + // 负载识别(版本2,使用文件名参数)函数封装 + [DllImport(service_interface_dll, EntryPoint = "payloadIdentify1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int payloadIdentify1(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string file_name); + + // 判断负载计算是否完成函数封装 + [DllImport(service_interface_dll, EntryPoint = "payloadCalculateFinished", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int payloadCalculateFinished(IntPtr h); + + // 获取负载识别结果函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPayloadIdentifyResult", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.Payload getPayloadIdentifyResult(IntPtr h); + + // 生成负载识别轨迹函数封装 + [DllImport(service_interface_dll, EntryPoint = "generatePayloadIdentifyTraj", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int generatePayloadIdentifyTraj(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name, [MarshalAs(UnmanagedType.LPArray)] cSharpBinging_TypeDef.TrajConfig TrajConfig); + + // 判断负载识别轨迹生成是否完成函数封装 + [DllImport(service_interface_dll, EntryPoint = "payloadIdentifyTrajGenFinished", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int payloadIdentifyTrajGenFinished(IntPtr h); + + // 摩擦模型识别函数封装 + [DllImport(service_interface_dll, EntryPoint = "frictionModelIdentify", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool frictionModelIdentify(IntPtr h, + [MarshalAs(UnmanagedType.LPArray)] double[] q, int qRows, + [MarshalAs(UnmanagedType.LPArray)] double[] qd, int qdRows, + [MarshalAs(UnmanagedType.LPArray)] double[] qdd, int qddRows, + [MarshalAs(UnmanagedType.LPArray)] double[] temp, int tempRows); + + // 校准工件坐标参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "calibWorkpieceCoordinatePara", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int calibWorkpieceCoordinatePara(IntPtr h, + [MarshalAs(UnmanagedType.LPArray)] double[] q, int qRows, int type, + [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 正向动力学(版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "forwardDynamics", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forwardDynamics(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] torqs, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 正向运动学(版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "forwardKinematics", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forwardKinematics(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 正向工具运动学(版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "forwardToolKinematics", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forwardToolKinematics(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 正向动力学(版本2)函数封装 + [DllImport(service_interface_dll, EntryPoint = "forwardDynamics1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forwardDynamics1(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] torqs, [MarshalAs(UnmanagedType.LPArray)] double[] tcp_offset, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 正向运动学(版本2)函数封装 + [DllImport(service_interface_dll, EntryPoint = "forwardKinematics1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int forwardKinematics1(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, [MarshalAs(UnmanagedType.LPArray)] double[] tcp_offset, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 逆运动学(版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseKinematics", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseKinematics(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] qnear, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 逆运动学(获取所有解,版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseKinematicsAll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseKinematicsAll(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, out IntPtr result); + + // 逆运动学(版本2)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseKinematics1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseKinematics1(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] qnear, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] tcp_offset, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 逆运动学(获取所有解,版本2)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseKinematicsAll1", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseKinematicsAll1(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] tcp_offset, out IntPtr result); + + // 逆工具运动学(版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseToolKinematics", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseToolKinematics(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] qnear, [MarshalAs(UnmanagedType.LPArray)] double[] pose, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 逆工具运动学(获取所有解,版本1)函数封装 + [DllImport(service_interface_dll, EntryPoint = "inverseToolKinematicsAll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int inverseToolKinematicsAll(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose, out IntPtr result); + + // 路径关节移动函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathMovej", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathMovej(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q1, double r1, [MarshalAs(UnmanagedType.LPArray)] double[] q2, double r2, double d, out IntPtr result); + + // 三点路径混合函数封装 + [DllImport(service_interface_dll, EntryPoint = "pathBlend3Points", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pathBlend3Points(IntPtr h, int type, [MarshalAs(UnmanagedType.LPArray)] double[] q_start, [MarshalAs(UnmanagedType.LPArray)] double[] q_via, [MarshalAs(UnmanagedType.LPArray)] double[] q_to, double r, double d, out IntPtr result); + + // 计算雅可比矩阵函数封装 + [DllImport(service_interface_dll, EntryPoint = "calcJacobian", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int calcJacobian(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] q, bool base_or_end, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + } + public class cSharpBinging_RobotConfig + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 获取自由度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDof", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getDof(IntPtr h); + + // 获取机器人名称函数封装 + [DllImport(service_interface_dll, EntryPoint = "getName", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getName(IntPtr h, [Out] StringBuilder result); + + // 获取循环时间函数封装 + [DllImport(service_interface_dll, EntryPoint = "getCycletime", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getCycletime(IntPtr h); + + // 设置减速分数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSlowDownFraction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSlowDownFraction(IntPtr h, int level, double fraction); + + // 获取减速分数函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSlowDownFraction", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getSlowDownFraction(IntPtr h, int level); + + // 获取机器人类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getRobotType(IntPtr h, [Out] StringBuilder result); + + // 获取机器人子类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotSubType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getRobotSubType(IntPtr h, [Out] StringBuilder result); + + // 获取控制箱类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlBoxType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getControlBoxType(IntPtr h, [Out] StringBuilder result); + + // 获取默认工具加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDefaultToolAcc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDefaultToolAcc(IntPtr h); + + // 获取默认工具速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDefaultToolSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDefaultToolSpeed(IntPtr h); + + // 获取默认关节加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDefaultJointAcc", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDefaultJointAcc(IntPtr h); + + // 获取默认关节速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getDefaultJointSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getDefaultJointSpeed(IntPtr h); + + // 设置安装姿态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setMountingPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setMountingPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose); + + // 获取安装姿态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMountingPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getMountingPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置碰撞级别函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCollisionLevel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCollisionLevel(IntPtr h, int level); + + // 获取碰撞级别函数封装 + [DllImport(service_interface_dll, EntryPoint = "getCollisionLevel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getCollisionLevel(IntPtr h); + + // 设置碰撞停止类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "setCollisionStopType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setCollisionStopType(IntPtr h, int type); + + // 获取碰撞停止类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getCollisionStopType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getCollisionStopType(IntPtr h); + + // 设置回零位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "setHomePosition", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setHomePosition(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] positions); + + // 获取回零位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getHomePosition", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getHomePosition(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置自由驱动阻尼函数封装 + [DllImport(service_interface_dll, EntryPoint = "setFreedriveDamp", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setFreedriveDamp(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] damp); + + // 获取自由驱动阻尼函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFreedriveDamp", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getFreedriveDamp(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP力传感器名称列表函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpForceSensorNames", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpForceSensorNames(IntPtr h, out IntPtr result); + + // 选择TCP力传感器函数封装 + [DllImport(service_interface_dll, EntryPoint = "selectTcpForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int selectTcpForceSensor(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 判断是否有TCP力传感器函数封装 + [DllImport(service_interface_dll, EntryPoint = "hasTcpForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool hasTcpForceSensor(IntPtr h); + + // 设置TCP力偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "setTcpForceOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setTcpForceOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] force_offset); + + // 获取TCP力偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpForceOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpForceOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取基座力传感器名称列表函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBaseForceSensorNames", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getBaseForceSensorNames(IntPtr h, out IntPtr result); + + // 选择基座力传感器函数封装 + [DllImport(service_interface_dll, EntryPoint = "selectBaseForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int selectBaseForceSensor(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string name); + + // 判断是否有基座力传感器函数封装 + [DllImport(service_interface_dll, EntryPoint = "hasBaseForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool hasBaseForceSensor(IntPtr h); + + // 设置基座力偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "setBaseForceOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setBaseForceOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] force_offset); + + // 获取基座力偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBaseForceOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getBaseForceOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置持久化参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setPersistentParameters", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setPersistentParameters(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string param); + + // 设置运动学补偿参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setKinematicsCompensate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setKinematicsCompensate(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] param); + + // 设置硬件自定义参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setHardwareCustomParameters", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setHardwareCustomParameters(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string param); + + // 获取硬件自定义参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "getHardwareCustomParameters", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getHardwareCustomParameters(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string param, [Out] StringBuilder result); + + // 设置机器人零点函数封装 + [DllImport(service_interface_dll, EntryPoint = "setRobotZero", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setRobotZero(IntPtr h); + + // 获取运动学参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "getKinematicsParam", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr getKinematicsParam(IntPtr h, bool real); + + // 获取运动学补偿参数(指定参考温度)函数封装 + [DllImport(service_interface_dll, EntryPoint = "getKinematicsCompensate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr getKinematicsCompensate(IntPtr h, double ref_temperature); + + // 获取安全参数校验和函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSafetyParametersCheckSum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 getSafetyParametersCheckSum(IntPtr h); + + // 确认安全参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "confirmSafetyParameters", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int confirmSafetyParameters(IntPtr h, cSharpBinging_TypeDef.RobotSafetyParameterRange_C parameters); + + // 计算安全参数校验和函数封装 + [DllImport(service_interface_dll, EntryPoint = "calcSafetyParametersCheckSum", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern UInt32 calcSafetyParametersCheckSum(IntPtr h, cSharpBinging_TypeDef.RobotSafetyParameterRange_C parameters); + + // 获取关节最大位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointMaxPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointMaxPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节最小位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointMinPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointMinPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节最大速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointMaxSpeeds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointMaxSpeeds(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节最大加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointMaxAccelerations", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointMaxAccelerations(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP最大速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpMaxSpeeds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpMaxSpeeds(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP最大加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpMaxAccelerations", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpMaxAccelerations(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 判断工具空间是否在范围内函数封装 + [DllImport(service_interface_dll, EntryPoint = "toolSpaceInRange", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool toolSpaceInRange(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] pose); + + // 设置负载函数封装 + [DllImport(service_interface_dll, EntryPoint = "setPayload", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setPayload(IntPtr h, double m, [MarshalAs(UnmanagedType.LPArray)] double[] cog, [MarshalAs(UnmanagedType.LPArray)] double[] aom, [MarshalAs(UnmanagedType.LPArray)] double[] inertia); + + // 获取负载函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPayload", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.Payload getPayload(IntPtr h); + + // 获取TCP偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取重力函数封装 + [DllImport(service_interface_dll, EntryPoint = "getGravity", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getGravity(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 设置重力函数封装 + [DllImport(service_interface_dll, EntryPoint = "setGravity", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setGravity(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] gravity); + + // 设置TCP偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "setTcpOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setTcpOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] offset); + + // 设置工具惯性参数函数封装 + [DllImport(service_interface_dll, EntryPoint = "setToolInertial", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setToolInertial(IntPtr h, double m, [MarshalAs(UnmanagedType.LPArray)] double[] com, [MarshalAs(UnmanagedType.LPArray)] double[] inertial); + + // 固件更新函数封装 + [DllImport(service_interface_dll, EntryPoint = "firmwareUpdate", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int firmwareUpdate(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string fw); + + // 获取固件更新进度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getFirmwareUpdateProcess", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getFirmwareUpdateProcess(IntPtr h); + + // 设置TCP力传感器姿态函数封装 + [DllImport(service_interface_dll, EntryPoint = "setTcpForceSensorPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setTcpForceSensorPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] sensor_pose); + + // 获取TCP力传感器姿态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpForceSensorPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpForceSensorPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节极限最大位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLimitJointMaxPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getLimitJointMaxPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节极限最小位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLimitJointMinPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getLimitJointMinPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节极限最大速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLimitJointMaxSpeeds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getLimitJointMaxSpeeds(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节极限最大加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLimitJointMaxAccelerations", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getLimitJointMaxAccelerations(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP极限最大速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getLimitTcpMaxSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getLimitTcpMaxSpeed(IntPtr h); + + // 获取安全保护停止类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSafeguardStopType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.SafeguedStopType getSafeguardStopType(IntPtr h); + + // 获取安全保护停止源函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSafeguardStopSource", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getSafeguardStopSource(IntPtr h); + + } + public class cSharpBinging_RobotManage + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + + // 机器人上电函数封装 + [DllImport(service_interface_dll, EntryPoint = "poweron", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poweron(IntPtr h); + + // 机器人启动函数封装 + [DllImport(service_interface_dll, EntryPoint = "startup", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int startup(IntPtr h); + + // 机器人下电函数封装 + [DllImport(service_interface_dll, EntryPoint = "poweroff", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int poweroff(IntPtr h); + + // 机器人反向驱动使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "backdrive", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int backdrive(IntPtr h, bool enable); + + // 机器人自由驱动使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "freedrive", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int freedrive(IntPtr h, bool enable); + + // 手动引导模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "handguideMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int handguideMode(IntPtr h, out Int32 freeAxes, [MarshalAs(UnmanagedType.LPArray)] double[] feature); + + // 退出手动引导模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "exitHandguideMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int exitHandguideMode(IntPtr h); + + // 获取手动引导状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getHandguideStatus", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getHandguideStatus(IntPtr h); + + // 获取手动引导触发信号函数封装 + [DllImport(service_interface_dll, EntryPoint = "getHandguideTrigger", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getHandguideTrigger(IntPtr h); + + // 判断手动引导是否使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "isHandguideEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isHandguideEnabled(IntPtr h); + + // 设置模拟模式使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "setSim", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setSim(IntPtr h, bool enable); + + // 设置操作模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "setOperationalMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setOperationalMode(IntPtr h, cSharpBinging_TypeDef.OperationalModeType mode); + + // 获取操作模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "getOperationalMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.OperationalModeType getOperationalMode(IntPtr h); + + // 获取机器人控制模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotControlMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RobotControlModeType getRobotControlMode(IntPtr h); + + // 判断模拟模式是否使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "isSimulationEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isSimulationEnabled(IntPtr h); + + // 判断自由驱动是否使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "isFreedriveEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isFreedriveEnabled(IntPtr h); + + // 判断反向驱动是否使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "isBackdriveEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isBackdriveEnabled(IntPtr h); + + // 设置解锁保护停止函数封装 + [DllImport(service_interface_dll, EntryPoint = "setUnlockProtectiveStop", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setUnlockProtectiveStop(IntPtr h); + + // 开始记录函数封装 + [DllImport(service_interface_dll, EntryPoint = "startRecord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int startRecord(IntPtr h, [MarshalAs(UnmanagedType.LPStr)] string file_name); + + // 停止记录函数封装 + [DllImport(service_interface_dll, EntryPoint = "stopRecord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int stopRecord(IntPtr h); + + // 暂停/恢复记录函数封装 + [DllImport(service_interface_dll, EntryPoint = "pauseRecord", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int pauseRecord(IntPtr h, bool pause); + + // 重启接口板函数封装 + [DllImport(service_interface_dll, EntryPoint = "restartInterfaceBoard", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int restartInterfaceBoard(IntPtr h); + + // 设置链路模式使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "setLinkModeEnable", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int setLinkModeEnable(IntPtr h, bool enable); + + // 判断链路模式是否使能函数封装 + [DllImport(service_interface_dll, EntryPoint = "isLinkModeEnabled", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isLinkModeEnabled(IntPtr h); + + } + public class cSharpBinging_RobotState + { + + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 获取机器人模式类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotModeType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.RobotModeType getRobotModeType(IntPtr h); + + // 获取安全模式类型函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSafetyModeType", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern cSharpBinging_TypeDef.SafetyModeType getSafetyModeType(IntPtr h); + + // 判断是否上电函数封装 + [DllImport(service_interface_dll, EntryPoint = "isPowerOn", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isPowerOn(IntPtr h); + + // 判断是否稳定函数封装 + [DllImport(service_interface_dll, EntryPoint = "isSteady", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isSteady(IntPtr h); + + // 判断是否发生碰撞函数封装 + [DllImport(service_interface_dll, EntryPoint = "isCollisionOccurred", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isCollisionOccurred(IntPtr h); + + // 判断是否在安全限制内函数封装 + [DllImport(service_interface_dll, EntryPoint = "isWithinSafetyLimits", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool isWithinSafetyLimits(IntPtr h); + + // 获取TCP位姿函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取实际TCP偏移函数封装 + [DllImport(service_interface_dll, EntryPoint = "getActualTcpOffset", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getActualTcpOffset(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取目标TCP位姿函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTargetTcpPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTargetTcpPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取工具位姿函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpSpeed(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP力函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取肘部位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getElbowPosistion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getElbowPosistion(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取肘部速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getElbowVelocity", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getElbowVelocity(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取基座力函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBaseForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getBaseForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP目标位姿函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpTargetPose", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpTargetPose(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP目标速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpTargetSpeed", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpTargetSpeed(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP目标力函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpTargetForce", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpTargetForce(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节状态函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointState", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointState(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] cSharpBinging_TypeDef.JointStateType result); + + // 获取关节伺服模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointServoMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointServoMode(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] cSharpBinging_TypeDef.JointServoModeType result); + + // 获取关节位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节位置历史函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointPositionsHistory", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointPositionsHistory(IntPtr h, int steps, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointSpeeds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointSpeeds(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointAccelerations", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointAccelerations(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节扭矩传感器数据函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTorqueSensors", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTorqueSensors(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节接触扭矩函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointContactTorques", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointContactTorques(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取基座力传感器数据函数封装 + [DllImport(service_interface_dll, EntryPoint = "getBaseForceSensor", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getBaseForceSensor(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取TCP力传感器数据函数封装 + [DllImport(service_interface_dll, EntryPoint = "getTcpForceSensors", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getTcpForceSensors(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节电流函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointCurrents", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointCurrents(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节电压函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointVoltages", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointVoltages(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节温度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTemperatures", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTemperatures(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节唯一ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointUniqueIds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointUniqueIds(IntPtr h, out IntPtr result); + + // 获取关节固件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointFirmwareVersions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointFirmwareVersions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 获取关节硬件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointHardwareVersions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointHardwareVersions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] int[] result); + + // 获取主控板唯一ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMasterBoardUniqueId", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getMasterBoardUniqueId(IntPtr h, [Out] StringBuilder result); + + // 获取主控板固件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMasterBoardFirmwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getMasterBoardFirmwareVersion(IntPtr h); + + // 获取主控板硬件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMasterBoardHardwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getMasterBoardHardwareVersion(IntPtr h); + + // 获取从控板唯一ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSlaveBoardUniqueId", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getSlaveBoardUniqueId(IntPtr h, [Out] StringBuilder result); + + // 获取从控板固件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSlaveBoardFirmwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getSlaveBoardFirmwareVersion(IntPtr h); + + // 获取从控板硬件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSlaveBoardHardwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getSlaveBoardHardwareVersion(IntPtr h); + + // 获取工具唯一ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolUniqueId", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolUniqueId(IntPtr h, [Out] StringBuilder result); + + // 获取工具固件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolFirmwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolFirmwareVersion(IntPtr h); + + // 获取工具硬件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolHardwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolHardwareVersion(IntPtr h); + + // 获取工具通信模式函数封装 + [DllImport(service_interface_dll, EntryPoint = "getToolCommMode", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getToolCommMode(IntPtr h); + + // 获取底座唯一ID函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPedestalUniqueId", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getPedestalUniqueId(IntPtr h, [Out] StringBuilder result); + + // 获取底座固件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPedestalFirmwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getPedestalFirmwareVersion(IntPtr h); + + // 获取底座硬件版本函数封装 + [DllImport(service_interface_dll, EntryPoint = "getPedestalHardwareVersion", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getPedestalHardwareVersion(IntPtr h); + + // 获取关节目标位置函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTargetPositions", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTargetPositions(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节目标速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTargetSpeeds", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTargetSpeeds(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节目标加速度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTargetAccelerations", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTargetAccelerations(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节目标扭矩函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTargetTorques", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTargetTorques(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取关节目标电流函数封装 + [DllImport(service_interface_dll, EntryPoint = "getJointTargetCurrents", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getJointTargetCurrents(IntPtr h, [MarshalAs(UnmanagedType.LPArray)] double[] result); + + // 获取控制箱温度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlBoxTemperature", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getControlBoxTemperature(IntPtr h); + + // 获取控制箱湿度函数封装 + [DllImport(service_interface_dll, EntryPoint = "getControlBoxHumidity", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getControlBoxHumidity(IntPtr h); + + // 获取主电压函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMainVoltage", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getMainVoltage(IntPtr h); + + // 获取主电流函数封装 + [DllImport(service_interface_dll, EntryPoint = "getMainCurrent", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getMainCurrent(IntPtr h); + + // 获取机器人电压函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotVoltage", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getRobotVoltage(IntPtr h); + + // 获取机器人电流函数封装 + [DllImport(service_interface_dll, EntryPoint = "getRobotCurrent", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern double getRobotCurrent(IntPtr h); + + // 获取减速等级函数封装 + [DllImport(service_interface_dll, EntryPoint = "getSlowDownLevel", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int getSlowDownLevel(IntPtr h); + } + + +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_skill_binding.cs b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_skill_binding.cs new file mode 100644 index 00000000..295b09bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/csharp/csharp-example/csharp_skill_binding.cs @@ -0,0 +1,190 @@ +using csharp_example; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Policy; +using System.Text; +using System.Threading.Tasks; +using static csharp_skill_example.cSharpSkillBinding_TypeDef; + +namespace csharp_skill_example +{ + + internal class cSharpSkillBinding_TypeDef + { + [StructLayout(LayoutKind.Sequential)] + public struct Vector6d + { + public double X, Y, Z, Rx, Ry, Rz; + + public Vector6d(double x, double y, double z, double rx, double ry, double rz) + { + X = x; + Y = y; + Z = z; + Rx = rx; + Ry = ry; + Rz = rz; + } + } + + public enum StateCode + { + // 失败状态码 + TimeOut = -100, // 超时 + Search_MaxForce = -4, // 搜孔达到最大力 + Insert_MaxForce = -3, // 插入达到最大力 + Constant_NotTouch = -2, // 恒力过程中未接触 + Touch_Distance = -1, // 超出探寻距离 + + Running = 0, // 力控执行中 + + // 成功状态码 + Touch_Succeed = 1, // 接触成功 + Insert_Succeed = 2, // 插孔成功 + Search_Succeed = 3, // 搜孔成功 + Constant_Succeed = 4, // 接触成功 + + } + + public enum GuideTrajType + { + NONE = 0, // 无参考轨迹 + LINE1 = 1, // 直线 speedLine + LINE2 = 2, // 直线 moveLine + SPIRAL = 3, // 螺旋线 + WEAVE = 4, // 摆线 + } + + // 螺旋线平面 + public enum SpiralPlane + { + xy = 0, + yz = 1, + zx = 2 + } + + [StructLayout(LayoutKind.Sequential)] + public struct SpiralTrajParams + { + public double step; // 圈数 + public double direction; // 旋转方向 -1顺时针旋转,1逆时针旋转 + public SpiralPlane plane; // 参考平面选择 + public double spiral; // 螺旋线外扩 + public double helix; // 螺旋上升 m + public double radius; // 第一圈半径 m + } + + // 摆线方向 + public enum WeaveSelect + { + x = 1, + y = 2, + z = 3, + rx = 4, + ry = 5, + rz = 6 + } + + // 摆线轨迹参数 + [StructLayout(LayoutKind.Sequential)] + public struct WeaveTrajParams + { + public double step; // 步长 + public double amplitude; // 幅度 m + public WeaveSelect direction; // 方向 + public double hold_distance; // 距离 m + public double angle; // 角度 + public double type; // 类型 保留,目前只支持锯齿摆 + } + + public enum InsertSelect + { + x = 1, + y = 2, + z = 3 + } + + [StructLayout(LayoutKind.Sequential)] + public struct InsertParams + { + public InsertSelect insert_select; // 插入方向,可选x\y\z + public double hole_diameter; // 轴孔直径 m + public double insert_max_speed; // 插入速度限制 m/s + public double insert_time; // 插入时间限制 ms + public Vector6d insert_max_force; // 最大力限制 + public double insert_max_depth; // 插入距离限制 m + public double insert_guide_force; // 插入引导力 + // 力控调节参数 + public Vector6d insert_damp_scale; // 表示速度反应能力 [0-1] 值越大,反应越慢 + public Vector6d insert_stiff_scale; // 表示系统软硬程序 [0-1] 值越大,越硬 + + public GuideTrajType guide_traj_type; // 主动轨迹类型 + public SpiralTrajParams spiral_param; // 螺旋轨迹参数 + public WeaveTrajParams weave_param; // 摆动轨迹参数 + } + + // 搜孔平面 + public enum SearchPlane + { + yz = 1, + xz = 2, + xy = 3 + } + + + // 搜孔参数 + [StructLayout(LayoutKind.Sequential)] + public struct SearchParams + { + public SearchPlane search_plane; // 搜孔平面 + public double hole_diameter; // 轴孔直径 m, 保留 + public double search_range; // 搜孔范围,保留 + public double search_time; // 搜孔时间限制 ms + public double search_max_force; // 最大力限制 + public double search_guide_force; // 搜孔引导力 + // 力控调节参数 + public Vector6d search_damp_scale; // 表示速度反应能力 [0-1] 值越大,反应越慢 + public Vector6d search_stiff_scale; // 表示系统软硬程序 [0-1] 值越大,越硬 + + public GuideTrajType guide_traj_type; // 搜孔过程主动轨迹类型 + public SpiralTrajParams spiral_param; // 螺旋轨迹参数 + public WeaveTrajParams weave_param; // 摆动轨迹参数 + } + + } + + internal class cSharpSkillBinding_ForceControl + { + const string service_interface_dll = GlobalConstants.service_interface_dll; + + // 初始化力控工艺包对象 + [DllImport(service_interface_dll, EntryPoint = "create_fc_ptr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr create_fc_ptr(IntPtr rpc, IntPtr rtde); + + // 反初始化力控工艺包对象 + [DllImport(service_interface_dll, EntryPoint = "destroy_fc_ptr", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern void destroy_fc_ptr(IntPtr ptr); + + // 插孔功能函数 + [DllImport(service_interface_dll, EntryPoint = "fcInsert", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcInsert(IntPtr h,cSharpSkillBinding_TypeDef.InsertParams param); + + // 搜孔功能函数 + [DllImport(service_interface_dll, EntryPoint = "fcSearch", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcSearch(IntPtr h, cSharpSkillBinding_TypeDef.SearchParams param); + + // 等待力控结束,返回状态吗 + [DllImport(service_interface_dll, EntryPoint = "fcWaitCondition", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcWaitCondition(IntPtr h); + + // 退出力控 + [DllImport(service_interface_dll, EntryPoint = "fcExit", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int fcExit(IntPtr h); + + + } +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_algorithm.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_algorithm.py new file mode 100644 index 00000000..d714d17d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_algorithm.py @@ -0,0 +1,61 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂正逆解 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 机械臂逆解 +第四步: 机械臂正解 +""" + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + +# 逆解 +def exampleInverseK(robot_name): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + print("逆解") + # 机械臂目标位姿 + waypoint_1_p = [0.549273, -0.12094, 0.464501, + 3.13802, 0.00122674, 1.57095] + # 机械臂参考关节角, 单位: 弧度 + waypoint_0_q = [0.00123059, -0.26063, 1.7441, + 0.437503, 1.56957, 0.00107586] + # 接口调用: 逆解 + res = robot_rpc_client.getRobotInterface(robot_name).getRobotAlgorithm().inverseKinematics(waypoint_0_q, waypoint_1_p) + print("逆解函数返回值:", res[1]) + print("逆解得到的关节角:", res[0]) + pass + +# 正解 +def exampleForwardK(robot_name): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + # 机械臂目标关节角 + q = [0.0012302916520035012, -0.17709153384169424, 1.3017793878477586, + -0.08835407161244224, 1.5695657489560777, 0.0010722296812234074] + # 接口调用: 正解 + res = robot_rpc_client.getRobotInterface(robot_name).getRobotAlgorithm().forwardKinematics(q) + print("正解函数返回值:", res[1]) + print("正解得到的位姿:", res[0]) + pass + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + exampleInverseK(robot_name) # 机械臂逆解 + exampleForwardK(robot_name) # 机械臂正解 + + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_armplay.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_armplay.py new file mode 100644 index 00000000..3cb04538 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_armplay.py @@ -0,0 +1,123 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +PathBuffer 运动 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录、设置RPC请求超时时间 +第二步: 读取 JSON 文件 +第三步: 关节运动到JSON文件中的第一个路点 +第四步: 释放路径缓存 +第五步: 新建一个路径点缓存 “rec” +第六步: 将 JSON 文件中的路点添加到 “rec” 缓存中 +第七步: 计算、优化等耗时操作,传入的参数相同时不会重新计算 +第八步: 判断"rec"这个buffer是否有效, + 有效则执行下一步;反之,则一直阻塞 +第九步: 执行缓存的路径 +第十步: 断开RPC连接 + +""" + +import pyaubo_sdk +import time +import json +import sys + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def waitArrival(impl): + cnt = 0 + while impl.getMotionControl().getExecId() == -1: + cnt += 1 + if cnt > 5: + print("Motion fail!") + return -1 + time.sleep(0.05) + print("getExecId: ", impl.getMotionControl().getExecId()) + id = impl.getMotionControl().getExecId() + while True: + id1 = impl.getMotionControl().getExecId() + if id != id1: + break + time.sleep(0.05) + +# 等待 MovePathBuffer 完成 +def waitMovePathBufferFinished(impl): + while impl.getMotionControl().getExecId() == -1: + time.sleep(0.05) + while True: + id = impl.getMotionControl().getExecId() + if id == -1: + break + time.sleep(0.05) + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + + robot_rpc_client.setRequestTimeout(40) # 接口调用: 设置RPC请求超时时间 + + # 读取 JSON 文件 + f = open('../c++/trajs/aubo-joint-test-0929-10.armplay') + input = json.load(f) + traj = input['jointlist'] + interval = input['interval'] + print("采样时间间隔: ", interval) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有路点") + sys.exit() + else: + print("加载点的数量: ", len(traj)) + + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + mc = robot_rpc_client.getRobotInterface(robot_name).getMotionControl() + + # 关节运动 + q1 = traj[0] + print("q1: ", q1) + print("goto p1") + mc.moveJoint(q1, M_PI, M_PI, 0., 0.) + waitArrival(robot_rpc_client.getRobotInterface(robot_name)) + + print("pathBufferAlloc") + mc.pathBufferFree("rec") # 接口调用: 释放路径缓存 + mc.pathBufferAlloc("rec", 2, traj_sz) # 接口调用: 新建一个路径点缓存 + + # 将 traj 中的路点添加到 “rec” 缓存中 + # 以每10个路点为一个列表来添加 + # 当未添加的路点数量小于或者等于10时,则作为最后一组列表来添加 + offset = 10 + it = 0 + while True: + print("pathBufferAppend ", offset) + mc.pathBufferAppend("rec", traj[it:it + 10:1]) # 接口调用: 向路径缓存添加路点 + it += 10 + if offset + 10 >= traj_sz: + print("pathBufferAppend ", traj_sz) + mc.pathBufferAppend("rec", traj[it:traj_sz:1]) + break + offset += 10 + + print("pathBufferEval ", mc.pathBufferEval("rec", [], [], interval)) # 接口调用: 计算、优化等耗时操作,传入的参数相同时不会重新计算 + while not mc.pathBufferValid("rec"): + print("pathBufferValid: ", mc.pathBufferValid("rec")) # 接口调用: 指定名字的buffer是否有效 + time.sleep(0.0005) + mc.movePathBuffer("rec") # 接口调用: 执行缓存的路径 + waitMovePathBufferFinished(robot_rpc_client.getRobotInterface(robot_name)) + print("end movePathBuffer") + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_config.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_config.py new file mode 100644 index 00000000..cffb679c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_config.py @@ -0,0 +1,138 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +获取机械臂配置信息 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 获取机械臂配置信息 +""" + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 获取机械臂相关配置 +def exampleConfig(robot_name): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + # 接口调用: 获取机器人的名字 + name = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getName() + print("机器人的名字:", name) + # 接口调用: 获取机器人的自由度 + dof = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getDof() + print("机器人的自由度:", dof) + # 接口调用: 获取机器人的伺服控制周期(从硬件抽象层读取) + cycle_time = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getCycletime() + print("伺服控制周期:", cycle_time) + # 接口调用: 获取默认的工具端加速度,单位: m/s^2 + default_tool_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getDefaultToolAcc() + print("默认的工具端加速度:", default_tool_acc) + # 接口调用: 获取默认的工具端速度,单位: m/s + default_tool_speed = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getDefaultToolSpeed() + print("默认的工具端速度:", default_tool_speed) + # 接口调用: 获取默认的关节加速度,单位: rad/s + default_joint_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getDefaultJointAcc() + print("默认的关节加速度", default_joint_acc) + # 接口调用: 获取默认的关节速度,单位: rad/s + default_joint_speed = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getDefaultJointSpeed() + print("默认的关节加速度", default_joint_speed) + # 接口调用: 获取机器人类型代码 + robot_type = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getRobotType() + print("机器人类型代码", robot_type) + # 接口调用: 获取机器人子类型代码 + sub_robot_type = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getRobotSubType() + print("机器人子类型代码", sub_robot_type) + # 接口调用: 获取控制柜类型代码 + control_box_type = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getControlBoxType() + print("控制柜类型代码", control_box_type) + # 接口调用: 获取安装位姿(机器人的基坐标系相对于世界坐标系) + mounting_pose = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getMountingPose() + print("安装位姿(机器人的基坐标系相对于世界坐标系)", mounting_pose) + # 接口调用: 设置碰撞灵敏度等级 + level = 6 + robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().setCollisionLevel(level) + print("设置碰撞灵敏度等级:", level) + # 接口调用: 获取碰撞灵敏度等级 + level = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getCollisionLevel() + print("碰撞灵敏度等级", level) + # 接口调用: 设置碰撞停止类型 + collision_stop_type = 1 + robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().setCollisionStopType(collision_stop_type) + print("设置碰撞停止类型", collision_stop_type) + # 接口调用: 获取碰撞停止类型 + collision_stop_type = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getCollisionStopType() + print("碰撞停止类型", collision_stop_type) + # 接口调用: 获取机器人DH参数 + kin_param = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getKinematicsParam(True) + print("机器人DH参数", kin_param) + # 接口调用: 获取指定温度下的DH参数补偿值 + temperature = 20 + kin_compensate = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getKinematicsCompensate( + temperature) + print("指定温度下的DH参数补偿值", kin_compensate) + # 接口调用: 获取可用的末端力矩传感器的名字 + tcp_force_sensor_name = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getTcpForceSensorNames() + print("可用的末端力矩传感器的名字", tcp_force_sensor_name) + # 接口调用: 获取末端力矩偏移 + tcp_force_offset = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getTcpForceOffset() + print("末端力矩偏移", tcp_force_offset) + # 接口调用: 获取可用的底座力矩传感器的名字 + base_force_sensor_names = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getBaseForceSensorNames() + print("可用的底座力矩传感器的名字", base_force_sensor_names) + # 接口调用: 获取底座力矩偏移 + base_force_offset = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getBaseForceOffset() + print("底座力矩偏移", base_force_offset) + # 接口调用: 获取安全参数校验码 CRC32 + check_sum = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getSafetyParametersCheckSum() + print("安全参数校验码 CRC32", check_sum) + # 接口调用: 获取关节最大位置(物理极限) + joint_max_positions = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getJointMaxPositions() + print("关节最大位置(物理极限)", joint_max_positions) + # 接口调用: 获取关节最小位置(物理极限) + joint_min_positions = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getJointMinPositions() + print("关节最小位置(物理极限)", joint_min_positions) + # 接口调用: 获取关节最大速度(物理极限) + joint_max_speeds = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getJointMaxSpeeds() + print("关节最大速度(物理极限)", joint_max_speeds) + # 接口调用: 获取关节最大加速度(物理极限) + joint_max_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getJointMaxAccelerations() + print("关节最大加速度(物理极限)", joint_max_acc) + # 接口调用: 获取TCP最大速度(物理极限) + tcp_max_speeds = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getTcpMaxSpeeds() + print("TCP最大速度(物理极限)", tcp_max_speeds) + # 接口调用: 获取TCP最大加速度(物理极限) + tcp_max_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getTcpMaxAccelerations() + print("TCP最大加速度(物理极限)", tcp_max_acc) + # 接口调用:获取机器人的安装姿态 + gravity = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getGravity() + print("机器人的安装姿态", gravity) + # 接口调用: 获取TCP偏移 + tcp_offset = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getTcpOffset() + print("TCP偏移", tcp_offset) + # 接口调用: 获取末端负载 + payload = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getPayload() + print("末端负载如下:") + print("mass:", payload[0]) + print("cog:", payload[1]) + print("aom:", payload[2]) + print("inertia:", payload[3]) + # 接口调用: 获取固件升级的进程 + firmware_update_process = robot_rpc_client.getRobotInterface(robot_name).getRobotConfig().getFirmwareUpdateProcess() + print("固件升级的进程", firmware_update_process) + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + exampleConfig(robot_name) # 获取机械臂相关配置 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_force_control.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_force_control.py new file mode 100644 index 00000000..c5fea575 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_force_control.py @@ -0,0 +1,291 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +力控示例 + +步骤: +第一步: 连接RPC服务器、登录 +第二步: 开启力传感器标定并开启力控模式 +第三步: 退出登陆并断开RPC连接 +""" +import pyaubo_sdk +import time +import csv +import math +from typing import List, Sequence, Tuple, Any, Optional + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() +EMBEDDED: bool = True # 是否使用机械臂内置力传感器 +SENSOR_VENDOR: str = "kw_ftsensor" # 外置力传感器厂商名称 + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + +def calculate_distance(p1: Sequence[float], p2: Optional[Sequence[float]] = None) -> float: + """ + 计算两点之间的欧氏距离,默认第二点为原点 + """ + if p2 is None: + p2 = (0.0,) * 6 + if len(p1) != 6 or len(p2) != 6: + return 0.0 + return math.sqrt(sum((p1[i] - p2[i]) ** 2 for i in range(3))) + +def fc_enable(cli: Any)->int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot = cli.getRobotInterface(robot_name) + # 开启力控 + ret = robot.getForceControl().fcEnable() + if ret != 0: + print("力控开启失败, 错误码: ", ret) + return -1 + +def fc_disable(cli: Any)->int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot = cli.getRobotInterface(robot_name) + # 关闭力控 + ret = robot.getForceControl().fcDisable() + if ret != 0: + print("力控关闭失败, 错误码: ", ret) + return -1 + +def tcp_sensor_test(cli: Any, csv_path: str = "force.csv"): + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + + # 选择力传感器类型 + if EMBEDDED: + sensor_pose = [0, 0, 0, 0, 0, 0] + cli.getRobotInterface(robot_name) \ + .getRobotConfig() \ + .selectTcpForceSensor("embedded") + else: + sensor_pose = [0, 0, 0.047, 0, 0, 0] + cli.getRobotInterface(robot_name) \ + .getRobotConfig() \ + .selectTcpForceSensor(SENSOR_VENDOR) + + # 写入 CSV + with open(csv_path, "a", newline="") as f: + writer = csv.writer(f) + + # 表头 + writer.writerow(["Fx", "Fy", "Fz", "Tx", "Ty", "Tz"]) + f.flush() + + while True: + sensor_data = cli.getRobotInterface(robot_name) \ + .getRobotState() \ + .getTcpForceSensors() + + print("--------------------------------------") + for i, v in enumerate(sensor_data): + print(f"获取TCP力传感器读数: {i + 1}: {v}") + print("--------------------------------------") + + writer.writerow(list(sensor_data)) + f.flush() + + time.sleep(0.005) + +# --------- 力传感器标定 ---------- +def tcp_sensor_calibration(cli: Any, joints: List[List[float]]) -> Tuple[List[float], List[float], float]: + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + + print("goto p0") + robot_interface.getMotionControl().moveJoint( + joints[0], + 10.0 * (math.pi / 180.0), + 5.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q1 = robot_interface.getRobotState().getJointPositions() + tcp_force1 = robot_interface.getRobotState().getTcpForceSensors() + + print("goto p1") + robot_interface.getMotionControl().moveJoint( + joints[1], + 20.0 * (math.pi / 180.0), + 10.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q2 = robot_interface.getRobotState().getJointPositions() + tcp_force2 = robot_interface.getRobotState().getTcpForceSensors() + + print("goto p2") + robot_interface.getMotionControl().moveJoint( + joints[2], + 20.0 * (math.pi / 180.0), + 10.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q3 = robot_interface.getRobotState().getJointPositions() + tcp_force3 = robot_interface.getRobotState().getTcpForceSensors() + + pose1 = robot_interface.getRobotAlgorithm().forwardKinematics(q1) + pose2 = robot_interface.getRobotAlgorithm().forwardKinematics(q2) + pose3 = robot_interface.getRobotAlgorithm().forwardKinematics(q3) + + calib_forces = [list(tcp_force1), list(tcp_force2), list(tcp_force3)] + calib_poses = [list(pose1[0]), list(pose2[0]), list(pose3[0])] + + # 三点标定接口 + result = robot_interface.getRobotAlgorithm().calibrateTcpForceSensor(calib_forces, calib_poses) + + return result + + +# --------- 力控模式开启示例 ---------- +def example_force_control(cli: Any) -> None: + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + + # 选择传感器类型 + 传感器安装位姿 + if EMBEDDED: + sensor_pose = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] + robot_interface.getRobotConfig().selectTcpForceSensor("embedded") + else: + sensor_pose = [0.0, 0.0, 0.047, 0.0, 0.0, 0.0] + robot_interface.getRobotConfig().selectTcpForceSensor(SENSOR_VENDOR) + + robot_interface.getRobotConfig().setTcpForceSensorPose(sensor_pose) + + # 设置TCP偏移(这里与C++一致:tcp_pose = sensor_pose) + tcp_pose = list(sensor_pose) + robot_interface.getRobotConfig().setTcpOffset(tcp_pose) + + # 负载辨识参考点(关节角度单位:rad) + joint1 = [-0.261799, 0.261799, 1.309, 1.0472, 1.39626, 0.0] + joint2 = [-0.628319, 0.471239, 1.65806, -0.471239, 0.0, 0.0] + joint3 = [-0.628319, 0.366519, 1.74533, -0.10472, 1.5708, 0.0] + + # 标定 + calib_result = tcp_sensor_calibration(cli, [joint1, joint2, joint3]) + force_offset = calib_result[0] + com = calib_result[1] + mass = calib_result[2] + + print("force_offset:", force_offset) + print("com:", com) + print("mass:", mass) + + if calculate_distance(force_offset) < 1e-4: + print("标定错误,请检查传感器数据!") + raise RuntimeError("TCP force sensor calibration failed") + + time.sleep(1.0) + + print("go to start_joint") + start_joint = [ + 0.0 / 180.0 * math.pi, + 16.41 / 180.0 * math.pi, + 76.36 / 180.0 * math.pi, + 7.87 / 180.0 * math.pi, + 90.21 / 180.0 * math.pi, + 0.0 / 180.0 * math.pi, + ] + robot_interface.getMotionControl().moveJoint( + start_joint, + 10.0 * (math.pi / 180.0), + 5.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + # 根据标定结果设置负载 + 力传感器偏移 + robot_interface.getRobotConfig().setPayload( + mass, com, + [0.0], [0.0] + ) + robot_interface.getRobotConfig().setTcpForceOffset(force_offset) + + # 力控动力学模型(导纳) + admittance_m = [10.0, 10.0, 10.0, 2.0, 2.0, 2.0] + admittance_d = [200.0, 200.0, 200.0, 20.0, 20.0, 20.0] + admittance_k = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] + robot_interface.getForceControl().setDynamicModel(admittance_m, admittance_d, admittance_k) + + # 目标力控参数 + compliance = [True, True, True, True, True, True] + target_wrench = [0.0] * 6 + speed_limits = [2.0] * 6 + + # TaskFrameType::NONE + task_frame = pyaubo_sdk.TaskFrameType.NONE + + robot_interface.getForceControl().setTargetForce( + [0.0] * 6, compliance, target_wrench, speed_limits, task_frame + ) + + print("Press 's'/'q' to enable/disable force control mode.") + while True: + key = input("Please input your choose: ").strip() + if not key: + continue + key = key[0] + + if key == "s": + if robot_interface.getForceControl().isFcEnabled(): + print("The robot has already been force control mode. Can't enable.") + else: + fc_enable(cli) + print("Enter force control mode") + + elif key == "q": + if not robot_interface.getForceControl().isFcEnabled(): + print("The robot has already quit force control mode. Can't disable.") + else: + fc_disable(cli) + print("Quit force control mode") + + else: + print("Please input 's' or 'q'.") + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + # 使能和退出力控 + example_force_control(robot_rpc_client) + # 读取力传感器数据并保存到force.csv文件中 + # tcp_sensor_test(robot_rpc_client, "force.csv") \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_freedrive.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_freedrive.py new file mode 100644 index 00000000..4a6ad59e --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_freedrive.py @@ -0,0 +1,39 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +拖动示教 + +步骤: +第一步: 连接RPC服务器、登录 +第二步: 进入拖动示教模式,经过 25s 后,退出模式 +""" +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +def exampleFreeDrive(cli): + robot_name = cli.getRobotNames()[0] + cli.getRuntimeMachine().start() + # 接口调用: 发起机器人自由驱动请求 + cli.getRobotInterface(robot_name).getRobotManage().freedrive(True) + time.sleep(25) + # 接口调用: 结束机器人自由驱动请求 + cli.getRobotInterface(robot_name).getRobotManage().freedrive(False) + pass + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + exampleFreeDrive(robot_rpc_client) # 进入拖动示教模式,经过 25s 后,退出模式 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_io.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_io.py new file mode 100644 index 00000000..63ab4407 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_io.py @@ -0,0 +1,172 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +获取机械臂配置信息 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 标准数字IO: + 1.获取标准数字输入和输出数量 + 2.设置和获取输入触发动作 + 3.设置和获取输出状态选择 + 4.获取标准数字输入和输出值 +第四步: 标准模拟IO: + 1.获取标准模拟输入和输出数量 + 2.设置和获取标准模拟输入范围 + 3.获取标准模拟输入 + 4.设置和获取标准模拟输出范围 + 5.设置和获取标准模拟输出状态选择 + 6.设置和获取标准模拟输出 +第五步: 工具端数字IO + 1.获取工具端数字输入和输出数量 + 2.设置和获取工具端数字输入触发动作 + 3.设置和获取工具端数字输出状态选择 +第六步: 工具端模拟IO + 1.获取工具端模拟输入和输出数量 + 2.获取工具端模拟输入范围 + 3.获取工具端模拟输入 +""" + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +def exampleStandardDigitalIO(robot_name): + # 接口调用: 获取标准数字输入数量 + input_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalInputNum() + print("标准数字输入数量:", input_num) + # 接口调用: 获取标准数字输出数量 + output_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalOutputNum() + print("标准数字输出数量:", output_num) + + # 接口调用: 设置所有的输入触发动作为 Default + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setDigitalInputActionDefault() + # 接口调用: 获取输入触发动作 + input_action = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalInputAction(0x00000001) + print("获取输入触发动作为:", input_action) + # 接口调用: 获取输入触发动作 + input_action = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalInputAction(0x00000001) + print("获取输入触发动作为:", input_action) + + # 接口调用: 设置所有的输出状态选择为 NONE + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setDigitalOutputRunstateDefault() + # 接口调用: 获取输出状态选择 + output_runstate = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalOutputRunstate(0x00000001) + print("获取输出状态选择为:", output_runstate) + + # 接口调用: 获取标准数字输出状态选择 + output_runstate = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalOutputRunstate(0x00000001) + print("获取输出状态选择为:", output_runstate) + + # 打印所有的标准数字输入值 + input_value = [] + for i in range(input_num): + value = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalInput(i) + input_value.append(value) + print("输入值:", input_value) + + # 打印所有的标准数字输出值 + output_value = [] + for i in range(output_num): + value = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardDigitalOutput(i) + output_value.append(value) + print("输出值:", output_value) + + +def exampleStandardAnalogIO(robot_name): + # 接口调用: 获取标准模拟输入数量 + input_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardAnalogInputNum() + print("标准模拟输入数量:", input_num) + # 接口调用: 获取标准模拟输出数量 + output_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardAnalogOutputNum() + print("标准模拟输出数量:", output_num) + + # 接口调用: 设置标准模拟输入范围 + input_domain = 15 + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setStandardAnalogInputDomain(0, input_domain) + # 接口调用: 获取标准模拟输入范围 + input_domain = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardAnalogInputDomain(0) + print("标准模拟输入范围:", input_domain) + + # 接口调用: 设置标准模拟输出范围 + output_domain = 15 + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setStandardAnalogOutputDomain(0, output_domain) + # 接口调用: 获取标准模拟输出范围 + output_domain = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardAnalogOutputDomain(0) + print("标准模拟输出范围:", output_domain) + + # 接口调用: 获取标准模拟输出状态选择 + output_runstate = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getStandardAnalogOutputRunstate(3) + print("输出状态选择:", output_runstate) + + +def exampleToolDigitalIO(robot_name): + # 接口调用: 获取工具端数字输入数量 + input_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalInputNum() + print("工具端数字输入数量:", input_num) + # 接口调用: 获取工具端数字输出数量 + output_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalOutputNum() + print("工具端数字输出数量:", output_num) + + # 接口调用: 设置指定的工具端IO为输入 + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setToolIoInput(1, True) + # 接口调用: 判断指定的工具端IO是否为输入 + isInput = robot_rpc_client.getRobotInterface(robot_name).getIoControl().isToolIoInput(1) + print("指定的工具端IO是否为输入:", isInput) + # 接口调用: 获取工具端数字输入 + input = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalInput(1) + print("工具端数字输入:", input) + + # 接口调用: 设置所有的工具端数字输入触发动作为 Default + input_action = pyaubo_sdk.StandardInputAction.Default + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setToolDigitalInputAction(0, input_action) + # 接口调用: 获取工具端数字输入触发动作 + input_action = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalInputAction(0) + print("输入触发动作:", input_action) + + # 接口调用: 获取工具端数字输出状态选择 + output_runstate = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalOutputRunstate(3) + print("输出状态选择:", output_runstate) + + # 接口调用: 设置工具端数字输出 + output = True + robot_rpc_client.getRobotInterface(robot_name).getIoControl().setToolDigitalOutput(3, output) + # 接口调用: 获取工具端数字输出 + output = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolDigitalOutput(3) + print("工具端数字输出:", output) + + +def exampleToolAnalogIO(robot_name): + # 接口调用: 获取标准模拟输入数量 + input_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolAnalogInputNum() + print("标准模拟输入数量:", input_num) + # 接口调用: 获取标准模拟输出数量 + output_num = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolAnalogOutputNum() + print("标准模拟输出数量:", output_num) + + # 接口调用: 获取工具端模拟输入范围 + input_domain = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolAnalogInputDomain(1) + print("工具端模拟输入范围:", input_domain) + # 接口调用: 获取工具端模拟输入 + input_value = robot_rpc_client.getRobotInterface(robot_name).getIoControl().getToolAnalogInput(1) + print("工具端模拟输入:", input_value) + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + exampleStandardDigitalIO(robot_name) # 获取标准数字IO + exampleStandardAnalogIO(robot_name) # 获取标准模拟IO + exampleToolDigitalIO(robot_name) # 获取工具端数字IO + exampleToolAnalogIO(robot_name) # 获取工具端模拟IO diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_math.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_math.py new file mode 100644 index 00000000..34c92a2d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_math.py @@ -0,0 +1,88 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂欧拉角与四元数转换 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 欧拉角转四元数 +第四步: 四元数转欧拉角 +""" +import time + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 欧拉角转四元数 +def exampleRpyToQuat(): + print("欧拉角转四元数") + # 欧拉角 + rpy = [0.611, 0.785, 0.960] + # 接口调用: 欧拉角转四元数 + quat = robot_rpc_client.getMath().rpyToQuaternion(rpy) + print("四元数:", quat) + + +# 四元数转欧拉角 +def exampleQuatToRpy(): + print("四元数转欧拉角") + # 四元数 + quat = [0.834721517970497, 0.07804256900772265, 0.4518931575790371, 0.3048637712043723] + # 接口调用: 四元数转欧拉角 + rpy = robot_rpc_client.getMath().quaternionToRpy(quat) + print("欧拉角:", rpy) + pass + + +# 已知法兰中心在Base下的位姿,求得TCP在Base下的位姿 +def example_flange_to_tcp(): + # 接口调用: 获取机器人的名字 + robot_name = robot_rpc_client.getRobotNames()[0] + robot_interface = robot_rpc_client.getRobotInterface(robot_name) + # 接口调用: 设置TCP偏移 + tcp_offset = [0.01, 0.02, 0.03, 0.1, 0.2, 0.0] + robot_interface.getRobotConfig().setTcpOffset(tcp_offset) + time.sleep(0.1) + # 接口调用: 获取法兰中心在Base下的当前位置姿态 + actual_flange_pose_on_base = robot_interface.getRobotState().getToolPose() + print(f"法兰中心在Base下的当前位置姿态:{actual_flange_pose_on_base}") + # 接口调用: 根据法兰中心在Base下的位置姿态,计算获得TCP在Base下的位置姿态 + actual_tcp_pose_on_base = robot_rpc_client.getMath().poseTrans(actual_flange_pose_on_base, tcp_offset) + print(f"TCP在Base下的位置姿态:{actual_tcp_pose_on_base}") + + +# 已知TCP在Base下的位姿,求得法兰中心在Base下的位姿 +def example_tcp_to_flange(): + # 接口调用: 获取机器人的名字 + robot_name = robot_rpc_client.getRobotNames()[0] + robot_interface = robot_rpc_client.getRobotInterface(robot_name) + # 接口调用: 设置TCP偏移 + tcp_offset = [0.01, 0.02, 0.03, 0.1, 0.2, 0.0] + robot_interface.getRobotConfig().setTcpOffset(tcp_offset) + time.sleep(0.1) + # 接口调用: 获取TCP在Base下的当前位置姿态 + actual_tcp_pose_on_base = robot_interface.getRobotState().getTcpPose() + print(f"TCP在Base下的当前位置姿态:{actual_tcp_pose_on_base}") + # 接口调用: 根据TCP在Base下的位置姿态,计算获得法兰中心在Base下的位置姿态 + actual_flange_pose_on_base = robot_rpc_client.getMath().poseTrans(actual_tcp_pose_on_base, robot_rpc_client.getMath().poseInverse(tcp_offset)) + print(f"法兰中心在Base下的位置姿态:{actual_flange_pose_on_base}") + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + exampleRpyToQuat() # 欧拉角转四元数 + exampleQuatToRpy() # 四元数转欧拉角 + example_flange_to_tcp() # 已知法兰中心在Base下的位姿,求得TCP在Base下的位姿 + example_tcp_to_flange() # 已知TCP在Base下的位姿,求得法兰中心在Base下的位姿 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_motion_control.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_motion_control.py new file mode 100644 index 00000000..5f7f4aff --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_motion_control.py @@ -0,0 +1,141 @@ +import threading +import time +import math +from pyaubo_sdk import RpcClient, RuntimeState + +# 机器人IP 地址 +LOCAL_IP = "127.0.0.1" + + +def wait_for_queue_space(motion_function): + """ + 等待运动队列有空位。调用指定的运动函数,直到返回值不为2(返回值为2表示队列已满)。 + :param motion_function: 要执行的运动函数 + """ + result = motion_function() + while result == 2: # 如果返回值为2,表示队列已满 + time.sleep(0.05) + result = motion_function() + return result + + +def execute_motion_sequence(motions): + """ + 下发运动指令,直到设置终止标志事件。 + :param motions: 运动指令的列表,每个指令是一个函数 + """ + for motion in motions: + if stop_event.is_set(): + # print("stop") + return # 如果设置终止标志事件,停止下发运动指令 + wait_for_queue_space(motion) + + +def robot_motion_control(cli): + """ + 控制机器人执行运动 + :param cli: RpcClient 实例,用于与机器人通信 + """ + # 路点,用关节角表示,单位: 弧度 + joint_angle1 = [ + 0.0 * (math.pi / 180), -15.0 * (math.pi / 180), 100.0 * (math.pi / 180), + 25.0 * (math.pi / 180), 90.0 * (math.pi / 180), 0.0 * (math.pi / 180) + ] + + joint_angle2 = [ + 35.92 * (math.pi / 180), -11.28 * (math.pi / 180), 59.96 * (math.pi / 180), + -18.76 * (math.pi / 180), 90.0 * (math.pi / 180), 35.92 * (math.pi / 180) + ] + + joint_angle3 = [ + 41.04 * (math.pi / 180), -7.65 * (math.pi / 180), 98.80 * (math.pi / 180), + 16.44 * (math.pi / 180), 90.0 * (math.pi / 180), 11.64 * (math.pi / 180) + ] + + joint_angle4 = [ + 41.04 * (math.pi / 180), -27.03 * (math.pi / 180), 115.35 * (math.pi / 180), + 52.37 * (math.pi / 180), 90.0 * (math.pi / 180), 11.64 * (math.pi / 180) + ] + + # 接口调用: 获取机器人的名字 + robot_name = rpc_cli.getRobotNames()[0] + robot_interface = rpc_cli.getRobotInterface(robot_name) + + # 接口调用: 开启规划器 + rpc_cli.getRuntimeMachine().start() + + time.sleep(1) + + # 接口调用: 设置运动速度比例 + robot_interface.getMotionControl().setSpeedFraction(1) + + # 运动函数的列表 + motions = [ + lambda: robot_interface.getMotionControl().moveJoint(joint_angle1, 80 * (math.pi / 180), + 60 * (math.pi / 180), 0.0, 0), + lambda: robot_interface.getMotionControl().moveJoint(joint_angle2, 80 * (math.pi / 180), + 60 * (math.pi / 180), 0.0, 0), + lambda: robot_interface.getMotionControl().moveJoint(joint_angle3, 80 * (math.pi / 180), + 60 * (math.pi / 180), 0.0, 0), + lambda: robot_interface.getMotionControl().moveJoint(joint_angle4, 80 * (math.pi / 180), + 60 * (math.pi / 180), 0.0, 0) + ] + + # 循环执行运动指令,直到停止规划器且设置终止标志事件 + while rpc_cli.getRuntimeMachine().getStatus() != RuntimeState.Stopped and not stop_event.is_set(): + execute_motion_sequence(motions) + + +def control_operations(cli): + while not stop_event.is_set(): + input_cmd = input("请输入命令(p/r/s): p表示暂停运动,r表示恢复运动,s表示停止运动\n") + + if input_cmd == "p": + # 接口调用: 暂停运行时 + cli.getRuntimeMachine().pause() + print("暂停运动") + elif input_cmd == "r": + # 接口调用: 恢复运行时 + cli.getRuntimeMachine().resume() + print("恢复运动") + elif input_cmd == "s": + # 接口调用: 停止运行时 + cli.getRuntimeMachine().abort() + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + # 接口调用: 停止运动 + robot_interface.getMotionControl().stopJoint(30) + # 设置终止标志事件 + stop_event.set() + print("停止运动") + else: + print("无效命令,请重新输入") + + +if __name__ == "__main__": + rpc_cli = RpcClient() + # 接口调用: 设置 RPC 超时 + rpc_cli.setRequestTimeout(1000) + # 接口调用: 连接 RPC 服务 + rpc_cli.connect(LOCAL_IP, 30004) + # 接口调用: 登录 RPC 服务 + rpc_cli.login("aubo", "123456") + + # 创建终止标志事件 + stop_event = threading.Event() + + # 创建并启动运动控制线程和控制操作线程 + motion_thread = threading.Thread(target=robot_motion_control, args=(rpc_cli, )) + control_thread = threading.Thread(target=control_operations, args=(rpc_cli, )) + + motion_thread.start() + control_thread.start() + + # 等待运动线程结束 + motion_thread.join() + control_thread.join() + + # 接口调用: 退出 RPC 登录 + rpc_cli.logout() + # 接口调用: 断开 RPC 连接 + rpc_cli.disconnect() diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movec.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movec.py new file mode 100644 index 00000000..769719e3 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movec.py @@ -0,0 +1,72 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂圆弧运动 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 圆弧运动 +""" + +import time +import math +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + +waypoint1 = [] # 圆弧轨迹的起始路点(位姿) +waypoint2 = [] # 圆弧轨迹的中间路点(位姿) +waypoint3 = [] # 圆弧轨迹的终止路点(位姿) + +# 获取圆弧轨迹的路点 +# 依据 (x-0.12294)^2 + (y-0.54855)^2 + (z-0.26319)^2 = 0.2^2 来计算 +def get_circle_waypoint(): + global waypoint1 + global waypoint2 + global waypoint3 + + z1 = 0.26319 + y1 = 0.7 + x1 = math.sqrt(pow(0.2, 2) - pow(y1 - 0.54855, 2) - pow(z1 - 0.26319, 2)) + waypoint1 = [x1, y1, z1, 3.14, 0.00, 3.14] + + z2 = 0.26319 + y2 = 0.55 + x2 = math.sqrt(pow(0.2, 2) - pow(y2 - 0.54855, 2) - pow(z2 - 0.26319, 2)) + waypoint2 = [x2, y2, z2, 3.14, 0.00, 3.14] + + z3 = 0.26319 + y3 = 0.35 + x3 = math.sqrt(pow(0.2, 2) - pow(y3 - 0.54855, 2) - pow(z3 - 0.26319, 2)) + waypoint3 = [x3, y3, z3, 3.14, 0.00, 3.14] + +# 圆弧运动 +def example_movec(robot_name): + get_circle_waypoint() + robot_rpc_client.getRobotInterface(robot_name).getMotionControl()\ + .moveLine(waypoint1, 180 * (M_PI / 180), 1000000 * (M_PI / 180), 0, 0) # 接口调用: 直线运动 + time.sleep(1) + + ret = robot_rpc_client.getRobotInterface(robot_name).getMotionControl()\ + .moveCircle(waypoint2, waypoint3, 180 * (M_PI / 180), 1000000 * (M_PI / 180), 0, 0) # 接口调用: 圆弧运动 + + if ret == 0: + print("圆弧运动成功!") + else: + print("圆弧运动失败!错误码:%d", ret) + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + example_movec(robot_name) # 圆弧运动 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movej.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movej.py new file mode 100644 index 00000000..2fc3e525 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movej.py @@ -0,0 +1,110 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +功能:机械臂关节运动 + +步骤: +第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 +第二步: 设置运动速度比率、以关节运动的方式依次经过3个路点 +第三步: RPC 退出登录、断开连接 +""" + +import time +import math +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 机械臂 IP 地址 +robot_port = 30004 # 端口号 + + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + + +# 以关节运动的方式依次经过3个路点 +def example_movej(rpc_client): + # 关节角,单位: 弧度 + q1 = [0.0 * (math.pi / 180), -15.0 * (math.pi / 180), 100.0 * (math.pi / 180), + 25.0 * (math.pi / 180), 90.0 * (math.pi / 180), 0.0 * (math.pi / 180) + ] + q2 = [35.92 * (math.pi / 180), -11.28 * (math.pi / 180), 59.96 * (math.pi / 180), + -18.76 * (math.pi / 180), 90.0 * (math.pi / 180), 35.92 * (math.pi / 180) + ] + q3 = [41.04 * (math.pi / 180), -7.65 * (math.pi / 180), 98.80 * (math.pi / 180), + 16.44 * (math.pi / 180), 90.0 * (math.pi / 180), 11.64 * (math.pi / 180) + ] + + # 接口调用:获取机器人的名字 + robot_name = rpc_client.getRobotNames()[0] + + robot_interface = rpc_client.getRobotInterface(robot_name) + + # 接口调用: 设置机械臂的速度比率 + robot_interface.getMotionControl().setSpeedFraction(0.75) + + # 关节运动到路点 q1 + robot_interface.getMotionControl() \ + .moveJoint(q1, 80 * (math.pi / 180), 60 * (math.pi / 180), 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("关节运动到路点1成功") + else: + print("关节运动到路点1失败") + + # 关节运动到路点 q2 + robot_interface.getMotionControl() \ + .moveJoint(q2, 80 * (math.pi / 180), 60 * (math.pi / 180), 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("关节运动到路点2成功") + else: + print("关节运动到路点2失败") + + # 关节运动到路点 q3 + robot_interface.getMotionControl() \ + .moveJoint(q3, 80 * (math.pi / 180), 60 * (math.pi / 180), 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("关节运动到路点3成功") + else: + print("关节运动到路点3失败") + + +if __name__ == '__main__': + robot_rpc_client = pyaubo_sdk.RpcClient() + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("RPC客户端连接成功!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 登录 + if robot_rpc_client.hasLogined(): + print("RPC客户端登录成功!") + example_movej(robot_rpc_client) # 以关节运动的方式依次经过3个路点 + robot_rpc_client.logout() # 退出登录 + robot_rpc_client.disconnect() # 断开连接 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel.py new file mode 100644 index 00000000..7ed2fc38 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel.py @@ -0,0 +1,123 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂直线运动 + +步骤: +第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 +第二步: 先关节运动起始位置,然后以直线运动的方式经过3个路点 +第三步: RPC 退出登录、断开连接 +""" +import time +import math +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + + +# 先关节运动起始位置,然后循环依次以直线运动的方式经过3个路点 +def example_movel(rpc_client): + # 路点,用关节角来表示,单位: 弧度 + q = [0.0 * (math.pi / 180), -15.0 * (math.pi / 180), 100.0 * (math.pi / 180), 25.0 * (math.pi / 180), + 90.0 * (math.pi / 180), 0.0 * (math.pi / 180)] + # 路点,用位姿来表示,形式[x,y,z,rx,ry,rz], 位置单位:米, 姿态单位:弧度 + pose1 = [0.551, -0.124, 0.419, -3.134, 0.004, 1.567] + pose2 = [0.552, 0.235, 0.419, -3.138, 0.007, 1.567] + pose3 = [0.551, -0.124, 0.261, -3.134, 0.0042, 1.569] + + # 接口调用:获取机器人的名字 + robot_name = rpc_client.getRobotNames()[0] + + robot_interface = rpc_client.getRobotInterface(robot_name) + + # 接口调用: 设置机械臂的速度比率 + robot_interface.getMotionControl().setSpeedFraction(0.75) + + # 接口调用: 设置工具中心点(TCP相对于法兰盘中心的偏移) + tcp_offset = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] + robot_interface.getRobotConfig().setTcpOffset(tcp_offset) + + # 关节运动到初始位置 + robot_interface.getMotionControl() \ + .moveJoint(q, 80 * (math.pi / 180), 60 * (math.pi / 180), 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("关节运动到初始位置成功") + else: + print("关节运动到初始位置失败") + + # 以直线运动的方式依次走3个路点 + # 直线运动 + robot_interface.getMotionControl() \ + .moveLine(pose1, 1.2, 0.25, 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("直线运动到路点1成功") + else: + print("直线运动到路点1失败") + + # 直线运动 + robot_interface.getMotionControl() \ + .moveLine(pose2, 1.2, 0.25, 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("直线运动到路点2成功") + else: + print("直线运动到路点2失败") + + # 直线运动 + robot_interface.getMotionControl() \ + .moveLine(pose3, 1.2, 0.25, 0, 0) + + # 阻塞 + ret = wait_arrival(robot_interface) + if ret == 0: + print("直线运动到路点3成功") + else: + print("直线运动到路点3失败") + + +if __name__ == '__main__': + robot_rpc_client = pyaubo_sdk.RpcClient() + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("RPC客户端连接成功!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 登录 + example_movel(robot_rpc_client) # 先关节运动起始位置,然后以直线运动的方式经过3个路点 + robot_rpc_client.logout() # 退出登录 + robot_rpc_client.disconnect() # 断开连接 + else: + print("RPC客户端连接失败!") diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel_singularity.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel_singularity.py new file mode 100644 index 00000000..fc98aaa7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_movel_singularity.py @@ -0,0 +1,107 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂直线运动到奇异位置,RTDE订阅的示教器弹窗错误信息输出到控制台中 + +步骤: +第一步: 连接和登录RPC服务 +第二步: 连接和登录RTDE服务 +第三步: 设置RTDE订阅话题 +第四步: 订阅话题,获取示教器弹窗的日志等级、错误码、错误信息 +第五步: 直线运动到一个奇异点 +""" +import os +import time +import sys +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +rpc_port = 30004 # RPC端口号 +rtde_port = 30010 # RTDE 端口号 +M_PI = 3.14159265358979323846 + + +# 阻塞 +def waitArrival(impl): + cnt = 0 + while impl.getMotionControl().getExecId() == -1: + cnt += 1 + if cnt > 5: + print("Motion fail!") + return -1 + time.sleep(0.05) + print("getExecId: ", impl.getMotionControl().getExecId()) + id = impl.getMotionControl().getExecId() + while True: + id1 = impl.getMotionControl().getExecId() + if id != id1: + break + time.sleep(0.05) + + +# 直线运动到一个奇异点 +def movel_singularity(): + robot_name = robot_rpc_client.getRobotNames()[0] + # 关节角,单位: 弧度 + waypoint_1_q = [-2.40194, 0.103747, 1.7804, 0.108636, 1.57129, -2.6379] + # 奇异位置,形式[x,y,z,rx,ry,rz] + waypoint_2_p = [1000, 1000, 1000, 3.05165, 0.0324355, 1.80417] + + # 先关节运动到路点 waypoint_1,然后再直线运动到奇异点 waypoint_2 + print("Moving to waypoint_1...") + robot_rpc_client.getRobotInterface(robot_name).getMotionControl() \ + .moveJoint(waypoint_1_q, 180 * (M_PI / 180), 1000000 * (M_PI / 180), 0, 0) + waitArrival(robot_rpc_client.getRobotInterface(robot_name)) + print("Moving to waypoint_2...") + ret = robot_rpc_client.getRobotInterface(robot_name).getMotionControl() \ + .moveLine(waypoint_2_p, 250 * (M_PI / 180), 1000 * (M_PI / 180), 0, 0) + waitArrival(robot_rpc_client.getRobotInterface(robot_name)) + + +# 在控制台中打印日志等级、错误码等信息 +def printlog(level, source, code, content): + level_names = ["Critical", "Error", "Warning", "Info", "Debug", "BackTrace"] + sys.stderr.write(f"[{level_names[level.value]}] {source} - {code} {content}\n") + + +# 订阅回调函数,获取日志等级、错误码、错误信息 +def subscribe_callback(parser): + msgs = parser.popRobotMsgVector() + for msg in msgs: + # 获取错误码相对应的错误信息 + error_content = pyaubo_sdk.errorCode2Str(msg.code) + for arg in msg.args: + pos = error_content.find("{}") + if pos != -1: + error_content = error_content[:pos] + arg + error_content[pos + 2:] + else: + break + printlog(msg.level, msg.source, msg.code, error_content) + + +if __name__ == '__main__': + # 连接和登录RPC服务 + robot_rpc_client = pyaubo_sdk.RpcClient() + robot_rpc_client.connect(robot_ip, rpc_port) + robot_rpc_client.login("aubo", "123456") + + # 连接和登录RTDE服务 + robot_rtde_client = pyaubo_sdk.RtdeClient() + robot_rtde_client.connect(robot_ip, rtde_port) + robot_rtde_client.login("aubo", "123456") + + # 设置RTDE订阅话题 + topic = robot_rtde_client.setTopic(False, ["R1_message"], 200, 0) + if topic < 0: + print("Set topic fail!") + os.exit() + + # 订阅话题,获取示教器弹窗的日志等级、错误码、错误信息 + robot_rtde_client.subscribe(topic, subscribe_callback) + + # 直线运动到一个奇异点 + movel_singularity() + + while True: + time.sleep(1) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_multi_thread.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_multi_thread.py new file mode 100644 index 00000000..152c0b8f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_multi_thread.py @@ -0,0 +1,72 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +压力测试 +readTest(): 10线程不断地获取TCP偏移 +connectTest(): 10线程不断地连接和断开 +""" + +import pyaubo_sdk +import time +import threading + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +def readThread(): + while True: + try: + robot_rpc_client.setRequestTimeout(5) + robot_name = robot_rpc_client.getRobotNames()[0] + impl = robot_rpc_client.getRobotInterface(robot_name) + impl.getRobotConfig().getTcpOffset() + print(".", end=' ',flush=True) + except pyaubo_sdk.AuboException as e: + print(threading.get_ident(), ":", e) + time.sleep(0.005) + + +def readTest(): + robot_rpc_client.connect(robot_ip, robot_port) + robot_rpc_client.login("aubo", "123456") + threads = [] + for i in range(10): + threads.append(threading.Thread(target=readThread)) + for thread in threads: + thread.start() + thread.join() + + +def connectThread(): + while True: + try: + robot_rpc_client.setRequestTimeout(10) + robot_rpc_client.connect(robot_ip, robot_port) + robot_rpc_client.login("aubo", "123456") + time.sleep(0.007) + robot_rpc_client.logout() + robot_rpc_client.disconnect() + time.sleep(0.007) + except pyaubo_sdk.AuboException as e: + print(threading.get_ident(), ":", e) + + +def connectTest(): + threads = [] + for i in range(10): + threads.append(threading.Thread(target=connectThread)) + for thread in threads: + thread.start() + thread.join() + + +if __name__ == '__main__': + # 10线程不断地获取TCP偏移 + readTest() + # 10线程不断地连接和断开 + # connectTest() + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move1.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move1.py new file mode 100644 index 00000000..c5b359af --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move1.py @@ -0,0 +1,107 @@ +import sys +import pyaubo_sdk +import time +import math +import threading + +robot_ip = "127.0.0.1" # 机器人IP地址 +rpc_port = 30004 # RPC端口号 +rtde_port = 30010 # RTDE端口号 + +rtde_mtx_ = threading.Lock() # 互斥锁 + +line_number_ = -1 # 行号 + + +def callback(parser): + global line_number_ + rtde_mtx_.acquire() + line_number_ = parser.popInt32() + rtde_mtx_.release() + + +if __name__ == '__main__': + rpc_client = pyaubo_sdk.RpcClient() # RPC客户端 + rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + rpc_client.connect(robot_ip, rpc_port) # 接口调用: 连接 RPC 服务 + rpc_client.login("aubo", "123456") # 接口调用: 登录 + + rtde_client = pyaubo_sdk.RtdeClient() # RTDE客户端 + rtde_client.connect(robot_ip, rtde_port) # 接口调用: 连接 RTDE 服务 + rtde_client.login("aubo", "123456") # 接口调用: 登录 + + # 设置话题 + chanel = rtde_client.setTopic(False, ["line_number"], 50, 1) + if chanel == -1: + print(f"setTopic失败!setTopic返回值为{chanel}") + sys.exit(1) + + # 订阅话题 + rtde_client.subscribe(chanel, callback) + + # 轨迹列表 + traj_q_list = [ + [angle * (math.pi / 180) for angle in angles] + for angles in [ + [0.0, -15.0, 100.0, 25.0, 90.0, 0.0], + [35.92, -11.28, 59.96, -18.76, 90.0, 35.92], + [41.04, -7.65, 98.80, 16.44, 90.0, 11.64] + ] + ] + + # 重复添加轨迹的最后一组路点 + traj_q_list.append(traj_q_list[-1]) + + # 接口调用: 获取机器人的名字 + robot_name = rpc_client.getRobotNames()[0] + robot_interface = rpc_client.getRobotInterface(robot_name) + rm = rpc_client.getRuntimeMachine() + mc = robot_interface.getMotionControl() + + # 接口调用:设置运动速度比例 + mc.setSpeedFraction(1) + + # 接口调用: 开启运行时 + rm.start() + # 增加延时,等待新建线程完成后, + # 再调用getPlanContext, + # 确保获取的当前线程号非-1 + time.sleep(0.05) + + # 获取当前的线程号 + tid = rm.getPlanContext(-1)[0] + # print(f"{tid}") + + for index, q in enumerate(traj_q_list): + if index == len(traj_q_list) - 1: + line_num = -1 + comment = f"运动结束" + else: + line_num = index + comment = f"路点{index}" + # 设置运行时上下文 + rm.setPlanContext(tid, line_num, comment) + # 关节运动 + while 2 == mc.moveJoint(q, 80 / 180 * math.pi, 60 / 180 * math.pi, 0, 0): + time.sleep(0.005) + + # 获取下发的最后一个运动指令的目标运行时上下文 + final_plan_context = rm.getAdvancePlanContext(-1) + + # RTDE订阅 line_number 更新数据有延时, + # line_number_ 初始默认值为-1, + # 故这里增加延时 + while line_number_ == -1: + time.sleep(0.005) + + while True: + # 轨迹中的倒数第二组和最后一组路点相同 + # 若当前行号等于 moveJoint 发送最后一组路点前 setPlanContext 设定的行号, + # 则表示机械臂已执行完所有轨迹路点 + if line_number_ == final_plan_context[1]: + print(f"{final_plan_context[2]}") + # 停止运行时 + rm.abort() + break + print(f"当前向路点{line_number_}运动") + time.sleep(0.005) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move2.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move2.py new file mode 100644 index 00000000..98f2d0db --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_nonblock_move2.py @@ -0,0 +1,63 @@ +import pyaubo_sdk +import time +import math + +robot_ip = "127.0.0.1" # 机器人IP地址 +rpc_port = 30004 # RPC端口号 + +if __name__ == '__main__': + rpc_client = pyaubo_sdk.RpcClient() # RPC客户端 + rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + rpc_client.connect(robot_ip, rpc_port) # 接口调用: 连接 RPC 服务 + rpc_client.login("aubo", "123456") # 接口调用: 登录 + + # 轨迹列表 + traj_q_list = [ + [angle * (math.pi / 180) for angle in angles] + for angles in [ + [0.0, -15.0, 100.0, 25.0, 90.0, 0.0], + [35.92, -11.28, 59.96, -18.76, 90.0, 35.92], + [41.04, -7.65, 98.80, 16.44, 90.0, 11.64] + ] + ] + + # 重复添加轨迹的最后一组路点 + traj_q_list.append(traj_q_list[-1]) + + # 接口调用: 获取机器人的名字 + robot_name = rpc_client.getRobotNames()[0] + robot_interface = rpc_client.getRobotInterface(robot_name) + rm = rpc_client.getRuntimeMachine() + mc = robot_interface.getMotionControl() + + # 接口调用: 设置运动速度比例 + mc.setSpeedFraction(1) + + # 接口调用: 开启运行时 + rm.start() + + # 增加延时,等待新建线程完成后, + # 再调用moveJoint, + # 防止moveJoint被discard + time.sleep(0.05) + + for q in traj_q_list: + # 关节运动 + while 2 == mc.moveJoint(q, 80 / 180 * math.pi, 60 / 180 * math.pi, 0, 0): + time.sleep(0.005) + + # 获取下发的最后一个运动指令的目标运动指针 + final_ptr = rm.getAdvancePtr(-1) + print(f"目标运动指针:{final_ptr}") + + while True: + # 轨迹中的倒数第二组和最后一组路点相同 + # 若当前运动指针等于 moveJoint 下发的最后一个运动指令的目标运动指针时, + # 则表示机械臂执行完所有的轨迹路点 + if rm.getMainPtr(-1) == final_ptr: + print(f"运动结束") + # 停止运行时 + rm.abort() + break + print(f"当前运动指针:{rm.getMainPtr(-1)}") + time.sleep(0.005) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_offline_track.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_offline_track.py new file mode 100644 index 00000000..34d0aaf4 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_offline_track.py @@ -0,0 +1,149 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +PathBuffer 运动 +注: 离线轨迹文件里的轨迹是相对于用户坐标系的轨迹 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录、设置RPC请求超时时间 +第二步: 读取.csv轨迹文件并加载轨迹点 +第三步: 将轨迹文件中的轨迹位姿转换成相对于基坐标系的位姿, + 逆解求出关节角, + 添加到 “rec” 缓存中 +第四步: 关节运动到第一个点, + 执行缓存的路径 +""" +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def waitArrival(impl): + cnt = 0 + while impl.getMotionControl().getExecId() == -1: + cnt += 1 + if cnt > 5: + print("Motion fail!") + return -1 + time.sleep(0.05) + print("getExecId: ", impl.getMotionControl().getExecId()) + id = impl.getMotionControl().getExecId() + while True: + id1 = impl.getMotionControl().getExecId() + if id != id1: + break + time.sleep(0.05) + + +# 等待 MovePathBuffer 完成 +def waitMovePathBufferFinished(impl): + while impl.getMotionControl().getExecId() == -1: + time.sleep(0.05) + while True: + ids = impl.getMotionControl().getExecId() + if ids == -1: + break + time.sleep(0.05) + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 请求超时时间 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = robot_rpc_client.getRobotInterface(robot_name) + + # 读取轨迹文件并加载轨迹点 + file = open('../c++/trajs/CoffeCappuccino-heart-R_filtered.csv') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + tcp_offset = [-0.093, 0.0007249, 0.152, 90.66 / 180.0 * M_PI, -0.7635 / 180.0 * M_PI, -91.49 / 180.0 * M_PI] + + coord_q0 = [-1.627214, -0.360182, 1.783065, -1.063912, -1.642473, -1.510366] + coord_q1 = [-0.806772, -0.344142, 1.806783, -1.079834, -0.824188, -1.444983] + coord_q2 = [-0.702519, -0.105247, 2.113576, -1.022056, -0.720357, -1.430912] + + robot.getRobotConfig().setTcpOffset(tcp_offset) # 接口调用: 设置 TCP 偏移值 + time.sleep(1) + + coord_p0 = robot.getRobotAlgorithm().forwardKinematics(coord_q0)[0] + coord_p1 = robot.getRobotAlgorithm().forwardKinematics(coord_q1)[0] + coord_p2 = robot.getRobotAlgorithm().forwardKinematics(coord_q2)[0] + + coord_p = [coord_p0, coord_p1, coord_p2] + # 求用户坐标系相对于基坐标系的位姿 + coord = robot_rpc_client.getMath().calibrateCoordinate(coord_p, 0)[0] + + print("TCP 偏移值: ", tcp_offset) + print("用户坐标系: ", coord) + + current_q = robot.getRobotState().getJointPositions() + traj_q = [] + for p in traj: + # 已知相对于用户坐标系的轨迹和用户坐标系相对于基坐标系的位姿, + # 求轨迹相对于基坐标系的位姿 + rp = robot_rpc_client.getMath().poseTrans(coord, p) + # 逆解求关节角 + q = robot.getRobotAlgorithm().inverseKinematics(current_q, rp)[0] + current_q = q + traj_q.append(q) + print("q: ", q) + + # 关节运动到第一个点 + print("goto p1") + mc = robot.getMotionControl() + mc.moveJoint(traj_q[0], M_PI, M_PI, 0., 0.) + waitArrival(robot) + + print("pathBufferAlloc") + # mc.pathBufferFree("rec") # 接口调用: 释放路径缓存 + mc.pathBufferAlloc("rec", 3, traj_sz) # 接口调用: 新建一个路径点缓存 + + # 将 traj_q 中的路点添加到 “rec” 缓存中 + # 以每10个路点为一个列表来添加 + # 当未添加的路点数量小于或者等于10时,则作为最后一组列表来添加 + offset = 10 + it = 0 + while True: + print("pathBufferAppend ", offset) + mc.pathBufferAppend("rec", traj_q[it:it + 10:1]) # 接口调用: 向路径缓存添加路点 + it += 10 + if offset + 10 >= traj_sz: + print("pathBufferAppend ", traj_sz) + mc.pathBufferAppend("rec", traj_q[it:traj_sz:1]) + break + offset += 10 + + interval = 0 + print("pathBufferEval ", mc.pathBufferEval("rec", [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], + interval)) # 接口调用: 计算、优化等耗时操作,传入的参数相同时不会重新计算 + while not mc.pathBufferValid("rec"): + print("pathBufferValid: ", mc.pathBufferValid("rec")) # 接口调用: 指定名字的buffer是否有效 + time.sleep(0.005) + mc.movePathBuffer("rec") # 接口调用: 执行缓存的路径 + waitMovePathBufferFinished(robot_rpc_client.getRobotInterface(robot_name)) + print("end movePathBuffer") + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_record.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_record.py new file mode 100644 index 00000000..15d492e5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_record.py @@ -0,0 +1,122 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +PathBuffer 运动 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录、设置RPC请求超时时间 +第二步: 读取.offt轨迹文件并加载轨迹点 +第三步: 关节运动到轨迹文件中的第一个路点 +第四步: 释放路径缓存 +第五步: 新建一个路径点缓存 “rec” +第六步: 将轨迹文件中的路点添加到 “rec” 缓存中 +第七步: 计算、优化等耗时操作,传入的参数相同时不会重新计算 +第八步: 判断"rec"这个buffer是否有效, + 有效则执行下一步;反之,则一直阻塞 +第九步: 执行缓存的路径 +第十步: 断开RPC连接 +""" +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def waitArrival(impl): + cnt = 0 + while impl.getMotionControl().getExecId() == -1: + cnt += 1 + if cnt > 5: + print("Motion fail!") + return -1 + time.sleep(0.05) + print("getExecId: ", impl.getMotionControl().getExecId()) + id = impl.getMotionControl().getExecId() + while True: + id1 = impl.getMotionControl().getExecId() + if id != id1: + break + time.sleep(0.05) + + +# 等待 MovePathBuffer 完成 +def waitMovePathBufferFinished(impl): + while impl.getMotionControl().getExecId() == -1: + time.sleep(0.05) + while True: + ids = impl.getMotionControl().getExecId() + if ids == -1: + break + time.sleep(0.05) + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 请求超时时间 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = robot_rpc_client.getRobotInterface(robot_name) + + # 读取轨迹文件并加载轨迹点 + file = open('../c++/trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + print("goto p1") + mc = robot.getMotionControl() + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + waitArrival(robot) + + print("pathBufferAlloc") + mc.pathBufferFree("rec") # 接口调用: 释放路径缓存 + mc.pathBufferAlloc("rec", 2, traj_sz) # 接口调用: 新建一个路径点缓存 + + # 将 traj_q 中的路点添加到 “rec” 缓存中 + # 以每10个路点为一个列表来添加 + # 当未添加的路点数量小于或者等于10时,则作为最后一组列表来添加 + offset = 10 + it = 0 + while True: + print("pathBufferAppend ", offset) + mc.pathBufferAppend("rec", traj[it:it + 10:1]) # 接口调用: 向路径缓存添加路点 + it += 10 + if offset + 10 >= traj_sz: + print("pathBufferAppend ", traj_sz) + mc.pathBufferAppend("rec", traj[it:traj_sz:1]) + break + offset += 10 + + interval = 0.005 + print("pathBufferEval ", mc.pathBufferEval("rec", [], [], + interval)) # 接口调用: 计算、优化等耗时操作,传入的参数相同时不会重新计算 + while not mc.pathBufferValid("rec"): + print("pathBufferValid: ", mc.pathBufferValid("rec")) # 接口调用: 指定名字的buffer是否有效 + time.sleep(0.005) + mc.movePathBuffer("rec") # 接口调用: 执行缓存的路径 + waitMovePathBufferFinished(robot_rpc_client.getRobotInterface(robot_name)) + print("end movePathBuffer") + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 + + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_rtde.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_rtde.py new file mode 100644 index 00000000..989cc481 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_rtde.py @@ -0,0 +1,66 @@ +import threading +import pyaubo_sdk + +robot_ip = "127.0.0.1" +robot_port = 30010 +M_PI = 3.14159265358979323846 + +robot_rtde_client = pyaubo_sdk.RtdeClient() +mutex = threading.Lock() + +def subscribe_callback1(parser): + mutex.acquire() + actual_q_ = parser.popVectorDouble() + print('@actual_q_: {}'.format(actual_q_)) + actual_current_ = parser.popVectorDouble() + print('@actual_current_: {}'.format(actual_current_)) + robot_mode_ = parser.popRobotModeType() + print('@robot_mode_: {}'.format(robot_mode_)) + safety_mode_ = parser.popSafetyModeType() + print('@safety_mode_: {}'.format(safety_mode_)) + runtime_state_ = parser.popRuntimeState() + print('@runtime_state_: {}'.format(runtime_state_)) + line_ = parser.popInt32() + print('@line_: {}'.format(line_)) + actual_TCP_pose_ = parser.popVectorDouble() + print('@actual_TCP_pose_: {}'.format(actual_TCP_pose_)) + mutex.release() + +def subscribe_callback2(parser): + mutex.acquire() + joint_temperatures_ = parser.popVectorDouble() + print('@joint_temperatures_: {}'.format(joint_temperatures_)) + joint_mode_ = parser.popVectorJointStateType() + print('@joint_mode_: {}'.format(joint_mode_)) + actual_main_voltage_ = parser.popDouble() + print('@actual_main_voltage_: {}'.format(actual_main_voltage_)) + actual_robot_voltage_ = parser.popDouble() + print('@actual_robot_voltage_: {}'.format(actual_robot_voltage_)) + mutex.release() + +def example_subscribe(): + names_list1 = ["R1_actual_q", "R1_actual_current", "R1_robot_mode", + "R1_safety_mode", + "runtime_state", "line_number", "R1_actual_TCP_pose"] + topic1 = robot_rtde_client.setTopic(False, names_list1, 50, 0) + robot_rtde_client.subscribe(topic1, subscribe_callback1) + + names_list2 = ["R1_joint_temperatures", "R1_joint_mode", + "R1_actual_main_voltage", "R1_actual_robot_voltage"] + topic2 = robot_rtde_client.setTopic(False, names_list2, 1, 1) + robot_rtde_client.subscribe(topic2, subscribe_callback2) + + isstop = input("Input 'stop' to end ") + if isstop == 'stop': + robot_rtde_client.removeTopic(False, topic1) + robot_rtde_client.removeTopic(False, topic2) + +if __name__ == '__main__': + robot_rtde_client.connect(robot_ip, robot_port) + if robot_rtde_client.hasConnected(): + print("Robot rtde_client connected successfully!") + robot_rtde_client.login("aubo", "123456") + if robot_rtde_client.hasLogined(): + print("Robot rtde_client logined successfully!") + # write our examples here + example_subscribe() diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script.py new file mode 100644 index 00000000..b6e1e154 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script.py @@ -0,0 +1,42 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +运行脚本 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录 +第二步: 连接到 SCRIPT 服务、机械臂登录 +第三步: 运行脚本 +第四步: 当规划期停止运行时,停止脚本运行 +""" +import time + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() +robot_script_client = pyaubo_sdk.ScriptClient() + + +def exampleScript(): + robot_script_client.sendFile("../aubo_script/example_movej.lua") + pass + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, 30004) # 接口调用: 连接 RPC 服务 + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + robot_script_client.connect(robot_ip,30002) # 接口调用: 连接 SCRIPT + robot_script_client.login("aubo", "123456") # 接口调用: 机械臂登录 + + exampleScript() # 运行脚本 + + while True: + time.sleep(1) + runtime_state = robot_rpc_client.getRuntimeMachine().getStatus() + if runtime_state != pyaubo_sdk.RuntimeState.Running: # 当规划期停止运行时,停止脚本运行 + print("规划器的状态:", runtime_state) + break + print("规划器状态:", runtime_state) \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script2.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script2.py new file mode 100644 index 00000000..69c14e03 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_script2.py @@ -0,0 +1,58 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +运行脚本 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录 +第二步: 连接到 SCRIPT 服务、机械臂登录 +第三步: 输入脚本文件名字 +第四步: 打开并读取脚本文件 +第五步: 发送脚本内容 +第六步: 当规划期停止运行时,停止脚本运行 +""" +import time + +import pyaubo_sdk +import os +import sys + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() +robot_script_client = pyaubo_sdk.ScriptClient() + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, 30004) # 接口调用: 连接 RPC 服务 + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + robot_script_client.connect(robot_ip, 30002) # 接口调用: 连接 SCRIPT + robot_script_client.login("aubo", "123456") # 接口调用: 机械臂登录 + + # 输入脚本文件名字 + filename = input("请输入文件名: ") + if not os.path.exists(filename): + print("文件不存在!") + sys.exit(1) + + # 打开并读取脚本文件 + file = open(filename) + str_all = "" + for line in file: + str_all += line + str_all += "\r\n\r\n" + print("脚本内容: \n", str_all) + file.close() + + # 发送脚本内容 + robot_script_client.sendString(str_all) + + # 当规划期停止运行时,停止脚本运行 + while True: + time.sleep(1) + runtime_state = robot_rpc_client.getRuntimeMachine().getStatus() + if runtime_state != pyaubo_sdk.RuntimeState.Running: + print("规划器的状态:", runtime_state) + break + print("规划器状态:", runtime_state) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_serial.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_serial.py new file mode 100644 index 00000000..0f484c37 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_serial.py @@ -0,0 +1,206 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +serial类 串口读写示例 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 打开串口 +第三步: 向串口发送字符串 +第四步: 向串口发送字符串数组 +第五步: 向串口发送带有换行符的字符串 +第六步: 从串口读取字符串 +第七步: 向串口发送字节 +第八步: 从串口监控单字节 +第九步: 向串口发送整数 +第十步: 从串口监控指定数量字节列表 +第十一步: 关闭串口 +第十二步: 断开 RPC 连接 +""" + +import time +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +robot_rpc_client = pyaubo_sdk.RpcClient() +serial_port = robot_rpc_client.getSerial() +rc = robot_rpc_client.getRegisterControl() +serial_dev = "/dev/ttyS0" +baud_rate = 115200 +stop_bits = 1.0 +parity = 0 +serial_alias = "serial_0" +timeout = 5.0 +response = -1 + + +def exampleOpenSerial() -> bool: + if ( + serial_port.serialOpen( + serial_dev, + baud_rate, + stop_bits, + parity, + serial_alias, + ) + != 0 + ): + print("[ERROR] 串口打开失败") + return False + print("[SUCC] 串口打开成功") + return True + + +def exampleCloseSerial() -> bool: + if serial_port.serialClose(serial_alias) != 0: + print("[ERROR] 串口关闭失败") + return False + print("[SUCC] 串口关闭成功") + return True + + +def exampleSerialSendString(data: str) -> bool: + if serial_port.serialSendString(data, serial_alias) != 0: + print("[ERROR] 串口发送字符串失败") + return False + time.sleep(0.001) + print("[SUCC] 串口发送字符串成功") + return True + + +def exampleSerialSendAllString(data: list[str]) -> bool: + is_check = False + if serial_port.serialSendAllString(is_check, data, serial_alias) != 0: + print("[ERROR] 串口发送字符串数组失败") + return False + time.sleep(0.001) + print("[SUCC] 串口发送字符串数组成功") + return True + + +def exampleSerialSendLine(data: str) -> bool: + if serial_port.serialSendLine(data, serial_alias) != 0: + print("[ERROR] 串口发送带有换行符的字符串失败") + return False + time.sleep(0.001) + print("[SUCC] 串口发送带有换行符的字符串成功") + return True + + +def exampleSerialSendByte(data: bytes) -> bool: + if serial_port.serialSendByte(data, serial_alias) != 0: + print("[ERROR] 串口发送字节失败") + return False + time.sleep(0.001) + print("[SUCC] 串口发送字节成功") + return True + + +def exampleSerialSendInt(data: int) -> bool: + if serial_port.serialSendInt(data, serial_alias) != 0: + print("[ERROR] 串口发送整数失败") + return False + time.sleep(0.001) + print("[SUCC] 串口发送整数成功") + return True + + +def exampleSerialReadString() -> str: + start_time = time.time() + prefix = "<" + suffix = ">" + interpret_escape = False + value_name = "read_str" + default_value = "" + rc.setString(value_name, default_value) # 初始化寄存器 + while time.time() - start_time < timeout: + response = serial_port.serialReadString( + value_name, + serial_alias, + prefix, + suffix, + interpret_escape, + ) + if response == 0: + value = rc.getString( + value_name, + default_value, + ) + if value != default_value: + print(f"[SUCC] 串口读取字符串成功: {value}") + return value + time.sleep(0.01) + if response != 0: + print(f"[ERROR] 串口读取字符串超时 返回码{response}") + return response + + +def exampleSerialReadByte() -> bytes: + start_time = time.time() + value_name = "read_byte" + default_value = 0 + rc.setInt32(value_name, default_value) # 初始化寄存器 + while time.time() - start_time < timeout: + response = serial_port.serialReadByte( + value_name, + serial_alias, + ) + if response == 0: + value = rc.getInt32( + value_name, + default_value, + ) + value = chr(value) + print(f"[INFO] 字节监控数据: {value}") + time.sleep(0.01) + if response != 0: + print(f"[ERROR] 串口读取字节超时 返回码{response}") + return response + + +def exampleSerialReadByteList(num_bytes: int) -> list[int]: + start_time = time.time() + value_name = "read_byte_list" + default_value = ["0"] * num_bytes + rc.setVecChar(value_name, default_value) # 初始化寄存器 + while time.time() - start_time < timeout: + response = serial_port.serialReadByteList( + num_bytes, + value_name, + serial_alias, + ) + if response == 0: + value = rc.getVecChar( + value_name, + default_value, + ) + print(f"[INFO] 字节列表监控数据: {value}") + time.sleep(0.01) + if response != 0: + print(f"[ERROR] 串口读取字节列表超时 返回码{response}") + return response + + +if __name__ == "__main__": + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + exampleOpenSerial() + exampleSerialSendString("HELLO ROBOT") + exampleSerialSendAllString( + ["H", "E", "L", "L", "O", " ", "R", "O", "B", "O", "T"], + ) + exampleSerialSendLine("HELLO ROBOT") + exampleSerialReadString() # 接受头尾各为"<",">"的字符串例如"<9000>"。头尾字符可自行修改 + exampleSerialSendByte("a") + exampleSerialReadByte() + exampleSerialSendInt(9000) + exampleSerialReadByteList(6) + exampleCloseSerial() + robot_rpc_client.logout() # 退出登录 + robot_rpc_client.disconnect() # 断开连接 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servo_cartesian.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servo_cartesian.py new file mode 100644 index 00000000..2a4c5ca9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servo_cartesian.py @@ -0,0 +1,136 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +servoCartesian 运动 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录、设置RPC请求超时时间 +第二步: 读取 .txt 轨迹文件 +第三步: 关节运动到轨迹中的第一个点 +第四步: 开启 servo 模式 +第五步: 做 servoCartesian 运动 +第六步: 关闭 servo 模式 +第七步: 断开 RPC 连接 +""" +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + + +def servo_cartesian(): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot_interface = robot_rpc_client.getRobotInterface(robot_name) + + # 读取轨迹文件并加载轨迹点 + # 注意: cartesian-heart-L.txt是适用于S3系列的笛卡尔轨迹文件, + # 且该文件中姿态单位是角度 + file = open('../c++/trajs/cartesian-heart-L.txt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + # 将轨迹文件中姿态的单位由角度转换成弧度 + for i in range(3, 6): + float_list[i] = float_list[i] / 180 * M_PI + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + return 0 + else: + print("加载的轨迹点数量为: ", traj_sz) + + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + + # 接口调用:获取当前位置的关节角,单位:rad + current_q = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointPositions() + # 接口调用: 逆解 + res = robot_rpc_client.getRobotInterface(robot_name).getRobotAlgorithm().inverseKinematics(current_q, traj[0]) + if res[1] != 0: + print("轨迹文件中的第一个路点逆解失败,返回值:", res[1]) + return -1 + + # q0 = [elem * 180 / 3.14 for elem in res[0]] + # print("逆解得到的轨迹文件中的第一个路点关节角(单位为角度):", q0) + + # 关节运动到轨迹文件中的第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + mc = robot_interface.getMotionControl() + mc.moveJoint(res[0], 80/180*M_PI, 60/180*M_PI, 0., 0.) + ret = wait_arrival(robot_interface) + if ret == 0: + print("关节运动到路点1成功") + else: + print("关节运动到路点1失败") + return -1 + + # 开启 servo 模式 + robot_interface.getMotionControl().setServoMode(True) + i = 0 + while not mc.isServoModeEnabled(): + i = i + 1 + if i > 5: + print("开启Servo模式失败!当前的Servo模式是: ", mc.isServoModeEnabled()) + return -1 + time.sleep(0.005) + + traj.remove(traj[0]) + for p in traj: + # 笛卡尔空间伺服运动 + mc.servoCartesian(p, 0.0, 0.0, 0.1, 0.0, 0.0) + time.sleep(0.05) + + # 关闭 servo 模式 + mc.setServoMode(False) + i = 0 + while mc.isServoModeEnabled(): + i = i + 1 + if i > 5: + print("关闭Servo模式失败!当前的Servo模式是: ", mc.isServoModeEnabled()) + return -1 + time.sleep(0.005) + print("servoCartesian运动结束") + return 0 + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 请求超时时间 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("RPC连接成功!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + servo_cartesian() # 笛卡尔空间Servo运动示例 + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 + else: + print("RPC连接失败!") diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj2.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj2.py new file mode 100644 index 00000000..a989cbd9 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj2.py @@ -0,0 +1,340 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +servoj 运动 + +示例说明: +1. exampleServoj1: 采用旧接口 setServoMode 开启 servo 模式, 跟踪一个轨迹,目标点下发时间间隔5ms,截断式 +2. exampleServoj2: 采用新接口 mode 1 开启 servo 模式, 跟踪一个轨迹,目标点下发时间间隔5ms,截断式 +3. exampleServoj3: 采用新接口 mode 2 开启 servo 模式, 跟踪一个轨迹,目标点下发时间间隔5ms +4. exampleServoj4: 采用新接口 mode 5 开启 servo 模式, 跟踪一个轨迹,目标点下发时间间隔5ms, 路点必达式 +""" +import pyaubo_sdk +import time +from typing import Any + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + +def waitServoJointComplete(cli: Any, timeout_ms=10000) -> int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + # 记录开始时间 + start_time = time.perf_counter() + + # 第一步:等待运动剩余时间为0(循环检查getMotionLeftTime(0)) + while robot_interface.getMotionControl().getMotionLeftTime(0) != 0: + # 计算已耗时(毫秒) + current_time = time.perf_counter() + elapsed_ms = (current_time - start_time) * 1000 + # 检查是否超时 + if elapsed_ms >= timeout_ms: + print(f"Warning: WaitServoJointComplete timeout after {elapsed_ms:.0f} ms") + return 1 + # 每5ms检查一次 + time.sleep(0.005) + # 第二步:等待机械臂进入稳定状态(isSteady()为True) + while not robot_interface.getRobotState().isSteady(): + time.sleep(0.005) + + return 0 + +def switch_servoj_mode(cli: Any, mode: int) -> int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + mc = robot_interface.getMotionControl() + mc.setServoModeSelect(mode) + i = 0 + while mc.getServoModeSelect() != mode: + i = i + 1 + if i > 20: + print("Servo Mode is ", mc.getServoModeSelect()) + return -1 + time.sleep(0.007) + return 0 + + +# 测试1:(旧接口 setServoMode) +# 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms,截断式,每次更新路点后不保证经过上个路点 +def exampleServoj1(cli: Any): + robot_name = cli.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = cli.getRobotInterface(robot_name) + + # 读取轨迹文件并加载轨迹点 + file = open('../trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + # robot_rpc_client.getRuntimeMachine().start() + mc = robot.getMotionControl() + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + # 开启 servo 模式 + robot.getMotionControl().setServoMode(True) + i = 0 + while not mc.isServoModeEnabled(): + i = i + 1 + if i > 5: + print("Servo Mode is ", mc.isServoModeEnabled()) + return -1 + time.sleep(0.005) + + traj.remove(traj[0]) + t = 0.02 + for q in traj: + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + while ret == 2: + # print("queue full: ", ret) + time.sleep(0.005) + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + if ret != 0: + print("servoj error: ", ret) + return -1 + + # 等待 servo 运动完成 + if (waitServoJointComplete(cli)== 0): + print("Servoj motion complete") + + # 关闭 servo 模式 + mc.setServoMode(False) + print("Servoj end") + return 0 + +# 测试2:(新接口 mode 1 等价 setServoMode) +# 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms,截断式,每次更新路点后不保证经过上个路点 +def exampleServoj2(cli: Any): + robot_name = cli.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = cli.getRobotInterface(robot_name) + mc = robot.getMotionControl() + + # 设置速度比例 + mc.setSpeedFraction(1) + + # 读取轨迹文件并加载轨迹点 + file = open('../trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + + # 开启 servo 模式 + switch_servoj_mode(cli, 1) + + t = 0.02 + traj.remove(traj[0]) + for q in traj: + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + while ret == 2: + # print("queue full: ", ret) + # time.sleep(0.005) + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + if ret != 0: + print("servoj error: ", ret) + return -1 + + # 5ms 下发节拍 + # time.sleep(0.005) + + # 等待 servo 运动完成 + if (waitServoJointComplete(cli)== 0): + print("Servoj motion complete") + + # 关闭 servo 模式 + switch_servoj_mode(cli, 0) + + print("Servoj end") + return 0 + +# 测试3: 采用servoj mode 2 跟踪一个轨迹,目标点下发时间间隔5ms +def exampleServoj3(cli: Any): + robot_name = cli.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = cli.getRobotInterface(robot_name) + mc = robot.getMotionControl() + + # 设置速度比例 + mc.setSpeedFraction(1) + + # 读取轨迹文件并加载轨迹点 + file = open('../trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + + # 开启 servo 模式 + switch_servoj_mode(cli, 2) + + t = 0.1 + traj.remove(traj[0]) + for q in traj: + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + while ret == 2: + # print("queue full: ", ret) + # time.sleep(0.005) + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + if ret != 0: + print("servoj error: ", ret) + return -1 + + # 5ms 下发节拍 + time.sleep(0.005) + + # 等待 servo 运动完成 + if (waitServoJointComplete(cli)== 0): + print("Servoj motion complete") + + # 关闭 servo 模式 + switch_servoj_mode(cli, 0) + + print("Servoj end") + return 0 + +# 测试4: 采用servoj跟踪一个轨迹,目标点下发时间间隔5ms, 路点必达式 +def exampleServoj4(cli: Any): + robot_name = cli.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = cli.getRobotInterface(robot_name) + mc = robot.getMotionControl() + + # 设置速度比例 + mc.setSpeedFraction(1) + + # 读取轨迹文件并加载轨迹点 + file = open('../trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + + # 开启 servo 模式 + switch_servoj_mode(cli, 5) + + t = 0.01 + traj.remove(traj[0]) + for q in traj: + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + while ret == 2: + # print("queue full: ", ret) + # time.sleep(0.005) + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + if ret != 0: + print("servoj error: ", ret) + return -1 + + # 5ms 下发节拍 + # time.sleep(0.005) + + # 等待 servo 运动完成 + if (waitServoJointComplete(cli)== 0): + print("Servoj motion complete") + + # 关闭 servo 模式 + switch_servoj_mode(cli, 0) + + print("Servoj end") + return 0 + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 请求超时时间 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + exampleServoj1(robot_rpc_client) + # exampleServoj2(robot_rpc_client) + # exampleServoj3(robot_rpc_client) + # exampleServoj4(robot_rpc_client) + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj3.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj3.py new file mode 100644 index 00000000..a625eaf5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_servoj3.py @@ -0,0 +1,324 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +功能:机械臂 servoJ 叠加力控示例 + +步骤: +第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 +第二步: servoJ 叠加力控示例 +第三步: RPC 退出登录、断开连接 +""" + +import time +import math +import pyaubo_sdk +import csv +from typing import List, Sequence, Tuple, Any, Optional + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +tcp_offset = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] +mass = 0.0 +com = [0.0, 0.0, 0.0] +t = 0.05 +robot_rpc_client = pyaubo_sdk.RpcClient() +EMBEDDED: bool = True # 是否使用机械臂内置力传感器 +SENSOR_VENDOR: str = "kw_ftsensor" # 外置力传感器厂商名称 + + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + +def calculate_distance(p1: Sequence[float], p2: Optional[Sequence[float]] = None) -> float: + """ + 计算两点之间的欧氏距离,默认第二点为原点 + """ + if p2 is None: + p2 = (0.0,) * 6 + if len(p1) != 6 or len(p2) != 6: + return 0.0 + return math.sqrt(sum((p1[i] - p2[i]) ** 2 for i in range(3))) + +def waitServoJointComplete(cli: Any, timeout_ms=10000) -> int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + # 记录开始时间 + start_time = time.perf_counter() + + # 第一步:等待运动剩余时间为0(循环检查getMotionLeftTime(0)) + while robot_interface.getMotionControl().getMotionLeftTime(0) != 0: + # 计算已耗时(毫秒) + current_time = time.perf_counter() + elapsed_ms = (current_time - start_time) * 1000 + # 检查是否超时 + if elapsed_ms >= timeout_ms: + print(f"Warning: WaitServoJointComplete timeout after {elapsed_ms:.0f} ms") + return 1 + # 每5ms检查一次 + time.sleep(0.005) + # 第二步:等待机械臂进入稳定状态(isSteady()为True) + while not robot_interface.getRobotState().isSteady(): + time.sleep(0.005) + + return 0 + +def switch_servoj_mode(cli: Any, mode: int) -> int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + mc = robot_interface.getMotionControl() + mc.setServoModeSelect(mode) + i = 0 + while mc.getServoModeSelect() != mode: + i = i + 1 + if i > 20: + print("Servo Mode is ", mc.getServoModeSelect()) + return -1 + time.sleep(0.007) + return 0 + +def fc_enable(cli: Any)->int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot = cli.getRobotInterface(robot_name) + # 开启力控 + ret = robot.getForceControl().fcEnable() + if ret != 0: + print("力控开启失败, 错误码: ", ret) + return -1 + +def fc_disable(cli: Any)->int: + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + robot = cli.getRobotInterface(robot_name) + # 关闭力控 + ret = robot.getForceControl().fcDisable() + if ret != 0: + print("力控关闭失败, 错误码: ", ret) + return -1 + +def tcp_sensor_test(cli: Any, csv_path: str = "force.csv"): + # 接口调用:获取机器人的名字 + robot_name = cli.getRobotNames()[0] + + # 选择力传感器类型 + if EMBEDDED: + sensor_pose = [0, 0, 0, 0, 0, 0] + cli.getRobotInterface(robot_name) \ + .getRobotConfig() \ + .selectTcpForceSensor("embedded") + else: + sensor_pose = [0, 0, 0.047, 0, 0, 0] + cli.getRobotInterface(robot_name) \ + .getRobotConfig() \ + .selectTcpForceSensor(SENSOR_VENDOR) + + # 写入 CSV + with open(csv_path, "a", newline="") as f: + writer = csv.writer(f) + + # 表头 + writer.writerow(["Fx", "Fy", "Fz", "Tx", "Ty", "Tz"]) + f.flush() + + while True: + sensor_data = cli.getRobotInterface(robot_name) \ + .getRobotState() \ + .getTcpForceSensors() + + print("--------------------------------------") + for i, v in enumerate(sensor_data): + print(f"获取TCP力传感器读数: {i + 1}: {v}") + print("--------------------------------------") + + writer.writerow(list(sensor_data)) + f.flush() + + time.sleep(0.005) + +# --------- 力传感器标定 ---------- +def tcp_sensor_calibration(cli: Any, joints: List[List[float]]) -> Tuple[List[float], List[float], float]: + robot_name = cli.getRobotNames()[0] + robot_interface = cli.getRobotInterface(robot_name) + + print("goto p0") + robot_interface.getMotionControl().moveJoint( + joints[0], + 10.0 * (math.pi / 180.0), + 5.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q1 = robot_interface.getRobotState().getJointPositions() + tcp_force1 = robot_interface.getRobotState().getTcpForceSensors() + + print("goto p1") + robot_interface.getMotionControl().moveJoint( + joints[1], + 20.0 * (math.pi / 180.0), + 10.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q2 = robot_interface.getRobotState().getJointPositions() + tcp_force2 = robot_interface.getRobotState().getTcpForceSensors() + + print("goto p2") + robot_interface.getMotionControl().moveJoint( + joints[2], + 20.0 * (math.pi / 180.0), + 10.0 * (math.pi / 180.0), + 0, 0 + ) + wait_arrival(robot_interface) + time.sleep(1.0) + + q3 = robot_interface.getRobotState().getJointPositions() + tcp_force3 = robot_interface.getRobotState().getTcpForceSensors() + + pose1 = robot_interface.getRobotAlgorithm().forwardKinematics(q1) + pose2 = robot_interface.getRobotAlgorithm().forwardKinematics(q2) + pose3 = robot_interface.getRobotAlgorithm().forwardKinematics(q3) + + calib_forces = [list(tcp_force1), list(tcp_force2), list(tcp_force3)] + calib_poses = [list(pose1[0]), list(pose2[0]), list(pose3[0])] + + # 三点标定接口 + result = robot_interface.getRobotAlgorithm().calibrateTcpForceSensor(calib_forces, calib_poses) + + return result + +def exampleServoj1(cli: Any): + robot_name = cli.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = cli.getRobotInterface(robot_name) + + + # 选择力传感器类型 + if EMBEDDED: + sensor_pose = [0, 0, 0, 0, 0, 0] + robot.getRobotConfig().selectTcpForceSensor("embedded") + else: + sensor_pose = [0, 0, 0.047, 0, 0, 0] + robot.getRobotConfig().selectTcpForceSensor(SENSOR_VENDOR) + + # 设置传感器安装位姿 + robot.getRobotConfig().setTcpForceSensorPose(sensor_pose) + + # 设置工具坐标系偏移 + robot.getRobotConfig().setTcpOffset(tcp_offset) + + # 设置负载 + robot.getRobotConfig().setPayload(mass, com, [0.], [0.]) + + # 读取并设置力传感器偏移 + force_offset = robot.getRobotState().getTcpForceSensors() + robot.getRobotConfig().setTcpForceOffset(force_offset) + + # 导纳模型 + admittance_m = [25.0, 25.0, 25.0, 2.0, 2.0, 2.0] + admittance_d = [300.0, 300.0, 300.0, 12.0, 12.0, 12.0] + admittance_k = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] + robot.getForceControl().setDynamicModel(admittance_m, admittance_d, admittance_k) + + # 力控目标 + compliance = [False, False, True, False, False, False] + target_wrench = [0.0, 0.0, 5.0, 0.0, 0.0, 0.0] + speed_limits = [2.0] * 6 + feature = [0, 0, 0, 0, 0, 0] + task_frame = pyaubo_sdk.TaskFrameType.TOOL_FORCE + robot.getForceControl().setTargetForce(feature, compliance, target_wrench, speed_limits, task_frame) + + # 读取轨迹文件并加载轨迹点 + file = open('../trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + mc = robot.getMotionControl() + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + # 开启力控 + fc_enable(cli) + + # 开启 servo 模式 + switch_servoj_mode(cli, 7) + + traj.remove(traj[0]) + for q in traj: + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + while ret == 2: + # print("queue full: ", ret) + # time.sleep(0.005) + ret = mc.servoJoint(q, 0.1, 0.2, t, 0.1, 200) + if ret != 0: + print("servoj error: ", ret) + robot.getForceControl().fcDisable() + return -1 + + # 5ms 下发节拍 + # time.sleep(0.005) + + # 等待 servo 运动完成 + if (waitServoJointComplete(cli)== 0): + print("Servoj motion complete") + + # 关闭 servo 模式 + switch_servoj_mode(cli, 0) + # 关闭力控 + fc_disable(cli) + + print("Servoj end") + return 0 + +if __name__ == '__main__': + robot_rpc_client = pyaubo_sdk.RpcClient() + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("RPC客户端连接成功!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 登录 + if robot_rpc_client.hasLogined(): + print("RPC客户端登录成功!") + exampleServoj1(robot_rpc_client) # ServoJ示例 + robot_rpc_client.logout() # 退出登录 + robot_rpc_client.disconnect() # 断开连接 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_set_log_handler.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_set_log_handler.py new file mode 100644 index 00000000..452dc242 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_set_log_handler.py @@ -0,0 +1,44 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +自定义日志的格式 + +步骤: +第一步: 自定义日志的格式 +注意: 需要在连接服务器之前,调用 setLogHandler 函数。 +否则,自定义的日志格式是不会生效的。 +第二步: 连接到 RPC 服务 +第三步: 机械臂登录 +""" + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 打印日志内容 +def print_log(level: int, filename: str, line: int, message: str): + print("level:", level) + print("filename:", filename) + print("line:", line) + print("message:", message) + + +# 自定义日志格式 +def example_read_log(): + # 接口调用: 重写日志系统的格式 + robot_rpc_client.setLogHandler(print_log) + + +if __name__ == '__main__': + example_read_log() # 自定义日志的格式 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_stable_ik.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_stable_ik.py new file mode 100644 index 00000000..8d7fec6c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_stable_ik.py @@ -0,0 +1,324 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +功能:解决 TCP 位姿的欧拉角接近极限位置时,直接逆解后 moveJoint + 容易选择到另一组等价姿态逆解而导致关节翻转的问题。 + + 示例包含运动对照逻辑: + 1. unsafe 路径: 对同一个目标 TCP 位姿,给 inverseKinematics + 一个错误分支上的 qnear,使普通逆解选到翻转分支并执行 moveJoint; + 2. safe 路径: 使用 inverseKinematics2(reference_q, target_pose) + 按 reference_q 的构型计算逆解,并选择同构型内关节变化最小的 + 一组,最后使用 moveJoint 运动。 + +步骤: +第一步: 设置 RPC 超时、连接 RPC 服务、机械臂登录 +第二步: 获取当前关节角和当前 TCP 位姿 +第三步: 对目标 TCP 位姿使用错误 qnear 调普通 inverseKinematics, + 先故意选择翻转解运动 +第四步: 回到起点后,再使用 inverseKinematics2 计算稳定逆解并运动 +第五步: RPC 退出登录、断开连接 +""" + +import math +import time + +import pyaubo_sdk + + +robot_ip = "127.0.0.1" # 机械臂 IP 地址 +robot_port = 30004 # 端口号 +DEMO_MOVE_SPEED = 20 * (math.pi / 180) +DEMO_MOVE_ACCELERATION = 20 * (math.pi / 180) +RUN_UNSAFE_DEMO = False +MIN_FLIP_DISTANCE_DEG = 60.0 +MAX_JOINT_ABS_DEG = 350.0 + + +def wait_done(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + + +def joint_gap(q1, q2): + return sum((a - b) * (a - b) for a, b in zip(q1, q2)) + + +def joint_gap_deg(q1, q2): + return math.sqrt(joint_gap(q1, q2)) * 180 / math.pi + + +def within_demo_limit(q): + return all(abs(v * 180 / math.pi) <= MAX_JOINT_ABS_DEG for v in q) + + +def show_vec(name, values): + print(name + ": [" + ", ".join("{:.6f}".format(v) for v in values) + "]") + + +def show_joint(name, q): + print(name + ": [" + ", ".join("{:.2f}".format(v * 180 / math.pi) + for v in q) + "] deg") + + +def all_ik(robot_algorithm, target_pose): + ik_result = robot_algorithm.inverseKinematicsAll(target_pose) + ik_solutions = ik_result[0] + ik_ret = ik_result[1] + + if ik_ret != 0 or len(ik_solutions) == 0: + print("inverseKinematicsAll 失败,返回值:", ik_ret) + return [] + + return ik_solutions + + +def config_of(robot_algorithm, q): + config_result = robot_algorithm.getRobotConfiguration(q) + config = config_result[0] + config_ret = config_result[1] + + if config_ret != 0: + return None + + return config + + +def show_all_ik(robot_algorithm, target_pose, reference_q): + ik_solutions = all_ik(robot_algorithm, target_pose) + print("\ninverseKinematicsAll 全部逆解,共 {} 组".format( + len(ik_solutions))) + for index, q in enumerate(ik_solutions): + config = config_of(robot_algorithm, q) + config_text = config if config is not None else "获取失败" + print(" 解 {},构型: {},关节变化 {:.3f} deg".format( + index + 1, config_text, joint_gap_deg(q, reference_q))) + show_joint(" 关节角", q) + + +def movej(robot_interface, q, title): + print(title) + ret = robot_interface.getMotionControl().moveJoint( + q, DEMO_MOVE_ACCELERATION, DEMO_MOVE_SPEED, 0, 0) + if ret != 0: + print("moveJoint 下发失败,返回值:", ret) + return False + + ret = wait_done(robot_interface) + if ret != 0: + print(title, "失败") + return False + + print(title, "成功") + return True + + +def bad_seed(robot_algorithm, target_pose, reference_q, reference_config): + """ + 为 unsafe 对照构造一个错误分支上的 qnear。 + + 为了稳定展示翻转,优先选择与起点不同构型、角度不超出演示限制、 + 且关节变化足够明显的逆解;如果有多组候选,则选择变化最小的一组, + 避免挑到本来就不可执行的极端解。这里只用 inverseKinematicsAll + 找到错误 qnear,真正用于 unsafe 运动的目标关节角仍由普通 + inverseKinematics(qnear, pose) 产生。 + """ + ik_solutions = all_ik(robot_algorithm, target_pose) + if len(ik_solutions) == 0: + return None + + different_config_solutions = [] + valid_solutions = [] + for q in ik_solutions: + config = config_of(robot_algorithm, q) + if config is None: + continue + + if not within_demo_limit(q): + continue + + valid_solutions.append(q) + if config != reference_config: + different_config_solutions.append(q) + + if len(valid_solutions) == 0: + return None + + candidates = different_config_solutions or valid_solutions + candidates = [(q, joint_gap_deg(q, reference_q)) for q in candidates] + candidates = [item for item in candidates + if item[1] >= MIN_FLIP_DISTANCE_DEG] + if len(candidates) == 0: + print("未找到角度合法且足够明显的错误 qnear") + return None + + bad_qnear, _ = min(candidates, key=lambda item: item[1]) + return bad_qnear + + +def unsafe_ik(robot_algorithm, target_pose, reference_q, reference_config): + bad_qnear = bad_seed(robot_algorithm, target_pose, reference_q, + reference_config) + if bad_qnear is None: + return None + + ik_result = robot_algorithm.inverseKinematics(bad_qnear, target_pose) + unsafe_q = ik_result[0] + ik_ret = ik_result[1] + + if ik_ret != 0: + print("unsafe inverseKinematics 失败,返回值:", ik_ret) + return None + + if not within_demo_limit(unsafe_q): + print("unsafe 目标关节角超出演示限制,跳过该翻转解") + return None + + unsafe_distance = joint_gap_deg(unsafe_q, reference_q) + if unsafe_distance < MIN_FLIP_DISTANCE_DEG: + print("普通 inverseKinematics 未选到明显翻转解,关节距离仅 {:.3f} deg".format( + unsafe_distance)) + return None + + return unsafe_q + + +def stable_ik(robot_algorithm, target_pose, reference_q): + """ + 面向 moveJoint 的防翻转逆解选解策略。 + + 欧拉角在极限位置附近可能出现多种等价姿态表示。如果只用单个 + inverseKinematics 或随便取 inverseKinematicsAll 的某个解,机械臂 + 可能切到另一组构型,表现为 moveJoint 过程中某些关节突然大幅翻转。 + + 选解步骤: + 1. 将 reference_q 作为参考关节角传入 inverseKinematics2; + 2. inverseKinematics2 按 reference_q 的构型计算逆解; + 3. inverseKinematics2 在同构型逆解中选择相对 reference_q + 关节变化最小的一组。 + """ + ik_result = robot_algorithm.inverseKinematics2(reference_q, target_pose) + q = ik_result[0] + ik_ret = ik_result[1] + if ik_ret != 0: + print("inverseKinematics2 失败,返回值:", ik_ret) + return None + + if len(q) != len(reference_q): + print("inverseKinematics2 返回关节数量异常: {},期望: {}".format( + len(q), len(reference_q))) + return None + + print("stable_ik 选解结果") + print(" inverseKinematics2 已按参考构型选择同构型最近解") + print(" 关节变化 {:.3f} deg".format(joint_gap_deg(q, reference_q))) + return q + + +def demo(rpc_client): + # 接口调用: 获取机器人的名字 + robot_name = rpc_client.getRobotNames()[0] + robot_interface = rpc_client.getRobotInterface(robot_name) + robot_algorithm = robot_interface.getRobotAlgorithm() + motion_control = robot_interface.getMotionControl() + + # 接口调用: 设置机械臂的速度比率 + motion_control.setSpeedFraction(0.3) + + # 获取当前关节角,并以当前构型作为后续选解约束。 + reference_q = robot_interface.getRobotState().getJointPositions() + current_tcp_pose = robot_interface.getRobotState().getTcpPose() + show_joint("当前关节角", reference_q) + reference_config_result = robot_algorithm.getRobotConfiguration(reference_q) + reference_config = reference_config_result[0] + reference_config_ret = reference_config_result[1] + if reference_config_ret != 0: + print("获取参考点构型失败,返回值:", reference_config_ret) + return + print("参考点构型:", reference_config) + + # 目标 TCP 位姿,单位: m, rad + # 这里从当前 TCP 位姿做较明显的位置偏移。两段演示使用完全相同的目标 TCP, + # 只改变选解策略,从而对比“翻转”和“防翻转”的运动差异。 + target_tcp_pose = current_tcp_pose[:] + target_tcp_pose[0] += 0.060 + target_tcp_pose[1] += 0.040 + target_tcp_pose[2] += 0.030 + show_vec("目标 TCP 位姿", target_tcp_pose) + # 调试全部逆解时取消下一行注释。 + # show_all_ik(robot_algorithm, target_tcp_pose, reference_q) + + if RUN_UNSAFE_DEMO: + current_config_result = robot_algorithm.getRobotConfiguration( + reference_q) + current_config = current_config_result[0] + current_config_ret = current_config_result[1] + + if current_config_ret != 0: + print("获取当前构型失败,返回值:", current_config_ret) + return + + print("当前机械臂构型:", current_config) + + print("\n1. unsafe 运动对照: 错误 qnear + 普通 inverseKinematics") + flip_q = unsafe_ik(robot_algorithm, target_tcp_pose, reference_q, + current_config) + if flip_q is None: + print("未执行 unsafe 运动对照") + return + + show_joint("unsafe 目标关节角", flip_q) + if not movej(robot_interface, flip_q, "unsafe moveJoint 翻转运动"): + return + + print("\n回到演示起点") + if not movej(robot_interface, reference_q, "moveJoint 回到起点"): + return + + print("\nsafe 运动示例: inverseKinematics2 同构型最近解,防止翻转") + safe_q = stable_ik(robot_algorithm, target_tcp_pose, reference_q) + if safe_q is None: + print("未执行 safe 运动示例") + return + + show_joint("safe 目标关节角", safe_q) + target_config_result = robot_algorithm.getRobotConfiguration(safe_q) + target_config = target_config_result[0] + target_config_ret = target_config_result[1] + if target_config_ret != 0: + print("获取目标点构型失败,返回值:", target_config_ret) + return + print("目标点构型:", target_config) + movej(robot_interface, safe_q, "safe moveJoint 防翻转运动") + + +if __name__ == '__main__': + robot_rpc_client = pyaubo_sdk.RpcClient() + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 超时 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("RPC客户端连接成功!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 登录 + if robot_rpc_client.hasLogined(): + print("RPC客户端登录成功!") + demo(robot_rpc_client) + robot_rpc_client.logout() # 退出登录 + robot_rpc_client.disconnect() # 断开连接 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_startup.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_startup.py new file mode 100644 index 00000000..3ca63361 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_startup.py @@ -0,0 +1,55 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +机械臂上电与断电 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 机械臂上电 +第四步: 机械臂断电 +""" + +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + +# 机械臂上电 +def exampleStartup(): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + if 0 == robot_rpc_client.getRobotInterface( + robot_name).getRobotManage().poweron(): # 接口调用: 发起机器人上电请求 + print("The robot is requesting power-on!") + if 0 == robot_rpc_client.getRobotInterface( + robot_name).getRobotManage().startup(): # 接口调用: 发起机器人启动请求 + print("The robot is requesting startup!") + # 循环直至机械臂松刹车成功 + while 1: + robot_mode = robot_rpc_client.getRobotInterface(robot_name) \ + .getRobotState().getRobotModeType() # 接口调用: 获取机器人的模式类型 + print("Robot current mode: %s" % (robot_mode.name)) + if robot_mode == pyaubo_sdk.RobotModeType.Running: + break + time.sleep(1) + +# 机械臂断电 +def examplePoweroff(): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + if 0 == robot_rpc_client.getRobotInterface( + robot_name).getRobotManage().poweroff(): # 接口调用: 机械臂断电 + print("The robot is requesting power-off!") + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + exampleStartup() # 机械臂上电 + examplePoweroff() # 机械臂断电 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_state.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_state.py new file mode 100644 index 00000000..2fcf04d5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_state.py @@ -0,0 +1,186 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +获取机械臂状态信息 + +步骤: +第一步: 连接到 RPC 服务 +第二步: 机械臂登录 +第三步: 获取机械臂状态信息 +""" + +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + + +# 获取机械臂状态信息 +def exampleState(robot_name): + # 接口调用: 获取机器人的模式状态 + robot_mode_type = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getRobotModeType() + print("机器人的模式状态:", robot_mode_type) + # 接口调用: 获取安全模式 + safety_mode_type = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getSafetyModeType() + print("安全模式:", safety_mode_type) + # 接口调用: 机器人是否已经停止下来 + is_steady = robot_rpc_client.getRobotInterface(robot_name).getRobotState().isSteady() + print("机器人是否已经停止下来:", is_steady) + # 接口调用: 机器人是否已经在安全限制之内 + is_within_safety_limits = robot_rpc_client.getRobotInterface(robot_name).getRobotState().isWithinSafetyLimits() + print("机器人是否已经在安全限制之内:", is_within_safety_limits) + # 接口调用: 获取TCP的位姿 + tcp_pose = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpPose() + print("TCP的位姿:", tcp_pose) + # 接口调用: 获取当前目标位姿 + target_tcp_pose = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTargetTcpPose() + print("当前目标位姿:", target_tcp_pose) + # 接口调用: 获取工具端的位姿(不带TCP偏移) + tool_pose = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getToolPose() + print("工具端的位姿(不带TCP偏移):", tool_pose) + # 接口调用: 获取TCP速度 + tcp_speed = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpSpeed() + print("TCP速度:", tcp_speed) + # 接口调用: 获取TCP的力 / 力矩 + tcp_force = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpForce() + print("TCP的力 / 力矩:", tcp_force) + # 接口调用: 获取肘部的位置 + elbow_postion = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getElbowPosistion() + print("肘部的位置:", elbow_postion) + # 接口调用: 获取肘部速度 + elbow_velocity = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getElbowVelocity() + print("肘部速度:", elbow_velocity) + # 接口调用: 获取基座力 / 力矩 + base_force = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getBaseForce() + print("基座力 / 力矩:", base_force) + # 接口调用: 获取TCP目标位姿 + tcp_target_pose = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpTargetPose() + print("TCP目标位姿:", tcp_target_pose) + # 接口调用: 获取TCP目标速度 + tcp_target_speed = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpTargetSpeed() + print("TCP目标速度:", tcp_target_speed) + # 接口调用: 获取TCP目标力 / 力矩 + tcp_target_force = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpTargetForce() + print("TCP目标力 / 力矩:", tcp_target_force) + # 接口调用: 获取机械臂关节标志 + joint_state = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointState() + print("机械臂关节标志:", joint_state) + # 接口调用: 获取关节的伺服状态 + joint_servo_mode = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointServoMode() + print("关节的伺服状态:", joint_servo_mode) + # 接口调用: 获取机械臂关节角度 + joint_positions = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointPositions() + print("机械臂关节角度:", joint_positions) + # 接口调用: 获取机械臂关节速度 + joint_speeds = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointSpeeds() + print("机械臂关节速度:", joint_speeds) + # 接口调用: 获取机械臂关节加速度 + joint_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointAccelerations() + print("机械臂关节加速度:", joint_acc) + # 接口调用: 获取机械臂关节力矩 + joint_torque_sensors = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTorqueSensors() + print("机械臂关节力矩:", joint_torque_sensors) + # 接口调用: 获取底座力传感器读数 + base_force_sensors = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getBaseForceSensor() + print("底座力传感器读数:", base_force_sensors) + # 接口调用: 获取TCP力传感器读数 + tcp_force_sensors = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getTcpForceSensors() + print("TCP力传感器读数:", tcp_force_sensors) + # 接口调用: 获取机械臂关节电流 + joint_currents = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointCurrents() + print("机械臂关节电流:", joint_currents) + # 接口调用: 获取机械臂关节电压 + joint_voltages = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointVoltages() + print("机械臂关节电压:", joint_voltages) + # 接口调用: 获取机械臂关节温度 + joint_temperatures = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTemperatures() + print("械臂关节温度:", joint_temperatures) + # 接口调用: 获取关节 UniqueId + joint_unique_ids = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointUniqueIds() + print("关节 UniqueId:", joint_unique_ids) + # 接口调用: 获取关节固件版本 + joint_firmware_versions = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointFirmwareVersions() + print("关节固件版本:", joint_firmware_versions) + # 接口调用: 获取关节硬件版本 + joint_hardward_versions = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointHardwareVersions() + print("关节硬件版本:", joint_hardward_versions) + # 接口调用: 获取主板 UniqueId + master_board_unique_id = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getMasterBoardUniqueId() + print("主板 UniqueId:", master_board_unique_id) + # 接口调用: 获取MasterBoard固件版本 + master_board_firmware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getMasterBoardFirmwareVersion() + print("MasterBoard固件版本:", master_board_firmware_version) + # 接口调用: 获取MasterBoard硬件版本 + master_board_hardware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getMasterBoardHardwareVersion() + print("MasterBoard硬件版本:", master_board_hardware_version) + # 接口调用: 获取从板 UniqueId + slave_board_unique_id = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getSlaveBoardUniqueId() + print("从板 UniqueId:", slave_board_unique_id) + # 接口调用: 获取SlaveBoard固件版本 + slave_board_firmware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getSlaveBoardFirmwareVersion() + print("SlaveBoard固件版本:", slave_board_firmware_version) + # 接口调用: 获取SlaveBoard硬件版本 + slave_board_hardware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getSlaveBoardHardwareVersion() + print("SlaveBoard硬件版本:", slave_board_hardware_version) + # 接口调用: 获取工具端全球唯一ID + tool_unique_id = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getToolUniqueId() + print("工具端全球唯一ID:", tool_unique_id) + # 接口调用: 获取工具端固件版本 + tool_firmware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getToolFirmwareVersion() + print("工具端固件版本:", tool_firmware_version) + # 接口调用: 获取工具端硬件版本 + tool_hardware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getToolHardwareVersion() + print("工具端硬件版本:", tool_hardware_version) + # 接口调用: 获取底座全球唯一ID + pedestal_unique_id = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getPedestalUniqueId() + print("底座全球唯一ID:", pedestal_unique_id) + # 接口调用: 获取底座固件版本 + pedestal_firmware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getPedestalFirmwareVersion() + print("底座固件版本:", pedestal_firmware_version) + # 接口调用: 获取底座硬件版本 + pedestal_hardware_version = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getPedestalHardwareVersion() + print("底座硬件版本:", pedestal_hardware_version) + # 接口调用: 获取机械臂关节目标位置角度 + joint_target_positions = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTargetPositions() + print("械臂关节目标位置角度:", joint_target_positions) + # 接口调用: 获取机械臂关节目标速度 + joint_target_speeds = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTargetSpeeds() + print("机械臂关节目标速度:", joint_target_speeds) + # 接口调用: 获取机械臂关节目标加速度 + joint_target_acc = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTargetAccelerations() + print("机械臂关节目标加速度:", joint_target_acc) + # 接口调用: 获取机械臂关节目标力矩 + joint_target_torques = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTargetTorques() + print("机械臂关节目标力矩:", joint_target_torques) + # 接口调用: 获取机械臂关节目标电流 + joint_target_currents = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getJointTargetCurrents() + print("机械臂关节目标电流:", joint_target_currents) + # 接口调用: 获取控制柜温度 + control_box_temperature = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getControlBoxTemperature() + print("控制柜温度:", control_box_temperature) + # 接口调用: 获取母线电压 + main_voltage = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getMainVoltage() + print("母线电压:", main_voltage) + # 接口调用: 获取母线电流 + main_current = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getMainCurrent() + print("母线电流:", main_current) + # 接口调用: 获取机器人电压 + robot_voltage = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getRobotVoltage() + print("机器人电压:", robot_voltage) + # 接口调用: 获取机器人电流 + robot_current = robot_rpc_client.getRobotInterface(robot_name).getRobotState().getRobotCurrent() + print("机器人电流:", robot_current) + + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + exampleState(robot_name) # 获取机械臂状态信息 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_timer.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_timer.py new file mode 100644 index 00000000..a1703f7f --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_timer.py @@ -0,0 +1,71 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +测试定时器功能: 开始、结束、重置、删除 + +步骤: +第一步: 连接RPC服务、机械臂登录 +第二步: 例1 + 1. 定时器 timer1 开始计时,经过 7.5 s,定时器 timer1 结束,获取时长约 7.5s + 2. 重复上面步骤,获取时长约 15.0 s + 3. 重置定时器 timer1,获取时长约 0.0 s,删除定时器 timer1 +第三步: 例2 + 1. 定时器 timer1 开始计时,经过 7.5 s,获取时长约 7.5s,重置定时器 timer1 + 2. 定时器 timer1 开始计时,经过 7.5 s,获取时长约 7.5s,重置并删除定时器 timer1 +""" + +import time +import pyaubo_sdk + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + +if __name__ == '__main__': + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + impl = robot_rpc_client.getRobotInterface(robot_name) + + print("例1---------------") + # 定时器 timer1 开始计时,经过 7.5 s,定时器 timer1 结束,获取时长约 7.5s + robot_rpc_client.getRuntimeMachine().timerStart("timer1") + time.sleep(7.5) + robot_rpc_client.getRuntimeMachine().timerStop("timer1") + timer1 = robot_rpc_client.getRuntimeMachine().getTimer("timer1") + print("时长 = ", timer1) + + # 定时器 timer1 开始计时,经过 7.5 s,定时器 timer1 结束,获取时长约 15.0s + robot_rpc_client.getRuntimeMachine().timerStart("timer1") + time.sleep(7.5) + robot_rpc_client.getRuntimeMachine().timerStop("timer1") + timer1 = robot_rpc_client.getRuntimeMachine().getTimer("timer1") + print("时长 = ", timer1) + + # 重置定时器 timer1,获取时长约 0.0 s,删除定时器 timer1 + robot_rpc_client.getRuntimeMachine().timerReset("timer1") + timer1 = robot_rpc_client.getRuntimeMachine().getTimer("timer1") + print("时长 = ", timer1) + robot_rpc_client.getRuntimeMachine().timerDelete("timer1") + + print("例2---------------") + # 定时器 timer1 开始计时,经过 7.5 s,获取时长约 7.5s,重置定时器 timer1 + robot_rpc_client.getRuntimeMachine().timerStart("timer1") + time.sleep(7.5) + timer1 = robot_rpc_client.getRuntimeMachine().getTimer("timer1") + print("时长 = ", timer1) + robot_rpc_client.getRuntimeMachine().timerReset("timer1") + + # 定时器 timer1 开始计时,经过 7.5 s,获取时长约 7.5s,重置并删除定时器 timer1 + robot_rpc_client.getRuntimeMachine().timerStart("timer1") + time.sleep(7.5) + timer1 = robot_rpc_client.getRuntimeMachine().getTimer("timer1") + print("时长 = ", timer1) + robot_rpc_client.getRuntimeMachine().timerReset("timer1") + robot_rpc_client.getRuntimeMachine().timerDelete("timer1") diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_track_joint.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_track_joint.py new file mode 100644 index 00000000..11dfbf8d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_track_joint.py @@ -0,0 +1,107 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +trackJoint 运动 + +步骤: +第一步: 连接到 RPC 服务、机械臂登录、设置 RPC 请求超时时间 +第二步: 读取 .offt 轨迹文件 +第三步: 关节运动到轨迹中的第一个点 +第五步: 做 trackJoint 运动 +第六步: 停止 trackJoint 运动 +第七步: 断开 RPC 连接 +""" +import pyaubo_sdk +import time + +robot_ip = "127.0.0.1" # 服务器 IP 地址 +robot_port = 30004 # 端口号 +M_PI = 3.14159265358979323846 +robot_rpc_client = pyaubo_sdk.RpcClient() + +# 阻塞 +def wait_arrival(robot_interface): + max_retry_count = 5 + cnt = 0 + + # 接口调用: 获取当前的运动指令 ID + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂开始运动 + while exec_id == -1: + if cnt > max_retry_count: + return -1 + time.sleep(0.05) + cnt += 1 + exec_id = robot_interface.getMotionControl().getExecId() + + # 等待机械臂运动完成 + while robot_interface.getMotionControl().getExecId() != -1: + time.sleep(0.05) + + return 0 + +def trackJ(): + robot_name = robot_rpc_client.getRobotNames()[0] # 接口调用: 获取机器人的名字 + robot = robot_rpc_client.getRobotInterface(robot_name) + + # 读取轨迹文件并加载轨迹点 + file = open('../c++/trajs/record6.offt') + traj = [] + for line in file: + str_list = line.split(",") + float_list = [] + for strs in str_list: + float_list.append(float(strs)) + traj.append(float_list) + + traj_sz = len(traj) + if traj_sz == 0: + print("没有轨迹点") + else: + print("加载的轨迹点数量为: ", traj_sz) + + # 关节运动到第一个点 + # 当前位置要与轨迹中的第一个点一致,否则容易引起较大超调 + print("goto p1") + mc = robot.getMotionControl() + mc.setSpeedFraction(0.8) + mc.moveJoint(traj[0], M_PI, M_PI, 0., 0.) + wait_arrival(robot) + + # 做 trackJoint 运动 + traj.remove(traj[0]) + for q in traj: + traj_queue_size = mc.getTrajectoryQueueSize() + print("traj_queue_size: ", traj_queue_size) + while traj_queue_size > 8: + traj_queue_size = mc.getTrajectoryQueueSize() + time.sleep(0.001) + mc.trackJoint(q, 0.02, 0.5, 1) + + # 停止 trackJoint 运行 + mc.stopJoint(1) + + # 等待运动结束 + is_steady = robot.getRobotState().isSteady() + while is_steady is False: + is_steady = robot.getRobotState().isSteady() + time.sleep(0.005) + + print("trackJoint end") + return 0 + + +if __name__ == '__main__': + robot_rpc_client.setRequestTimeout(1000) # 接口调用: 设置 RPC 请求超时时间 + robot_rpc_client.connect(robot_ip, robot_port) # 接口调用: 连接到 RPC 服务 + if robot_rpc_client.hasConnected(): + print("Robot rcp_client connected successfully!") + robot_rpc_client.login("aubo", "123456") # 接口调用: 机械臂登录 + if robot_rpc_client.hasLogined(): + print("Robot rcp_client logined successfully!") + trackJ() + robot_rpc_client.disconnect() # 接口调用: 断开RPC连接 + + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_traj_valid.py b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_traj_valid.py new file mode 100644 index 00000000..5871e645 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/python/example_traj_valid.py @@ -0,0 +1,197 @@ +#! /usr/bin/env python +# coding=utf-8 + +""" +validatePath1 碰撞体示例 + +本示例演示五种路径校验场景: +1. 不添加任何碰撞体,运动到环境碰撞目标点,预期通过。 +2. 仅添加环境碰撞平面,运动到环境碰撞目标点,预期碰撞失败。 +3. 仅添加环境碰撞平面,运动到工具碰撞目标点,预期通过。 +4. 添加环境碰撞平面和末端碰撞体,运动到工具碰撞目标点,预期碰撞失败。 +5. 仅添加末端碰撞体,不添加环境碰撞平面,运动到工具碰撞目标点,预期通过。 +""" + +import pyaubo_sdk + + +LOCAL_IP = "127.0.0.1" +RPC_PORT = 30004 + + +def print_validate_path_result(case_name, ret, expect_success): + print( + "{} validatePath1 返回值: {}, 预期: {}, 实际: {}".format( + case_name, + ret, + "通过" if expect_success else "碰撞失败", + "通过" if ret == 0 else "失败", + ) + ) + + +def example_trajectory_valid3( + rpc_cli, start, target_env_collision, target_tool_collision +): + robot_name = rpc_cli.getRobotNames()[0] + robot_interface = rpc_cli.getRobotInterface(robot_name) + algorithm = robot_interface.getRobotAlgorithm() + + # 接口调用: 设置 TCP 偏移 + robot_interface.getRobotConfig().setTcpOffset([0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) + + # 清理可能残留的同名碰撞体,避免重复添加影响示例结果。 + algorithm.removeCollisionObject("tool_box_demo") + algorithm.removeCollisionObject("collision_plane_demo") + + pose_path_type = 1 + blend_radius = 0.0 + step = 0.05 + + print("开始 validatePath1 碰撞体示例") + print("返回值说明: 0 表示通过,非 0 表示失败;-22 通常表示路径碰撞") + + def add_collision_plane(): + return algorithm.addCollisionBox( + "collision_plane_demo", + "world", + [[0.12, 0.12, 0.10]], + [[start[0], start[1], -0.05, 0.0, 0.0, 0.0]], + ) + + def add_tool_box(): + return algorithm.addCollisionBox( + "tool_box_demo", + "end_effector", + [[0.08, 0.08, 0.08]], + [[0.0, 0.0, 0.04, 0.0, 0.0, 0.0]], + ) + + # case0: 不添加任何碰撞体,向下运动到环境碰撞目标点,作为基线。 + case0_ret = algorithm.validatePath1( + pose_path_type, + start, + blend_radius, + target_env_collision, + blend_radius, + step, + True, + ) + print_validate_path_result("[case0 无碰撞体]", case0_ret, True) + + # 添加一个较小的环境碰撞平面,并放到起点正下方附近, + # 避免尺寸过大时仍然与底座区域重叠。 + ret = add_collision_plane() + if ret != 0: + print("添加环境碰撞平面失败, ret = {}".format(ret)) + return False + + # case1: 仅添加环境碰撞平面,向下运动到环境碰撞目标点,预期碰撞失败。 + case1_ret = algorithm.validatePath1( + pose_path_type, + start, + blend_radius, + target_env_collision, + blend_radius, + step, + True, + ) + print_validate_path_result("[case1 仅环境碰撞平面]", case1_ret, False) + + # case2: 仅添加环境碰撞平面,向下运动到工具碰撞目标点,预期仍可通过。 + case2_ret = algorithm.validatePath1( + pose_path_type, + start, + blend_radius, + target_tool_collision, + blend_radius, + step, + True, + ) + print_validate_path_result("[case2 仅环境碰撞平面]", case2_ret, True) + + # 在末端挂一个立方体,用于演示工具与环境的碰撞检测。 + ret = add_tool_box() + if ret != 0: + print("添加末端立方体失败, ret = {}".format(ret)) + algorithm.removeCollisionObject("collision_plane_demo") + return False + + # case3: 添加环境碰撞平面和末端碰撞体,运动到同一个工具碰撞目标点, + # 预期末端碰撞体先碰到环境碰撞平面。 + case3_ret = algorithm.validatePath1( + pose_path_type, + start, + blend_radius, + target_tool_collision, + blend_radius, + step, + True, + ) + print_validate_path_result( + "[case3 环境碰撞平面+末端碰撞体]", case3_ret, False + ) + + algorithm.removeCollisionObject("collision_plane_demo") + + # case4: 移除环境碰撞平面,仅保留末端碰撞体,运动到工具碰撞目标点, + # 预期仍可通过。 + case4_ret = algorithm.validatePath1( + pose_path_type, + start, + blend_radius, + target_tool_collision, + blend_radius, + step, + True, + ) + print_validate_path_result("[case4 仅末端碰撞体]", case4_ret, True) + + algorithm.removeCollisionObject("tool_box_demo") + + return ( + case0_ret == 0 + and case1_ret != 0 + and case2_ret == 0 + and case3_ret != 0 + and case4_ret == 0 + ) + + +if __name__ == "__main__": + rpc_cli = pyaubo_sdk.RpcClient() + rpc_cli.setRequestTimeout(1000) + rpc_cli.connect(LOCAL_IP, RPC_PORT) + rpc_cli.login("aubo", "123456") + + # 使用示教器读到的位姿作为起点,分别演示五种碰撞校验场景。 + # env_collision_drop: 下压量超过 start_z,末端 TCP 本体会碰到环境碰撞平面。 + # tool_collision_drop: 下压量小于 start_z,仅添加末端碰撞体时才会碰撞。 + pose_start = [1.27114, -0.24923, 0.80691, -3.135, 0.004, 1.569] + start_z = pose_start[2] + env_collision_drop = start_z + 0.02 + tool_collision_drop = start_z - 0.06 + + pose_env_collision = [ + 1.27114, + -0.24923, + start_z - env_collision_drop, + -3.135, + 0.004, + 1.569, + ] + pose_tool_collision = [ + 1.27114, + -0.24923, + start_z - tool_collision_drop, + -3.135, + 0.004, + 1.569, + ] + + example_trajectory_valid3( + rpc_cli, pose_start, pose_env_collision, pose_tool_collision + ) + + rpc_cli.logout() + rpc_cli.disconnect() diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-L_filtered.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-L_filtered.csv new file mode 100644 index 00000000..e51dd0be --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-L_filtered.csv @@ -0,0 +1,1255 @@ +0.0117038,0.101922,-0.0944526,-2.5101,0.0185809,0.0313995 +0.0117146,0.101915,-0.0944517,-2.51011,0.0186561,0.0315103 +0.0117271,0.101911,-0.094449,-2.51004,0.0187171,0.0316203 +0.0117412,0.101911,-0.0944443,-2.50989,0.0187623,0.0317279 +0.0117568,0.101914,-0.0944373,-2.50965,0.0187899,0.0318315 +0.0117739,0.101922,-0.0944281,-2.50932,0.0187983,0.0319291 +0.0117925,0.101933,-0.0944163,-2.50889,0.0187859,0.032019 +0.0118124,0.101949,-0.0944019,-2.50836,0.018751,0.032099 +0.0118334,0.101969,-0.0943847,-2.50771,0.0186921,0.0321669 +0.0118555,0.101994,-0.0943645,-2.50694,0.0186077,0.0322207 +0.0118785,0.102023,-0.0943413,-2.50605,0.0184965,0.0322579 +0.0119022,0.102057,-0.0943149,-2.50504,0.0183571,0.0322761 +0.0119264,0.102096,-0.0942851,-2.50389,0.0181883,0.0322731 +0.0119509,0.10214,-0.0942519,-2.50261,0.0179891,0.0322462 +0.0119755,0.102189,-0.0942152,-2.50118,0.0177585,0.0321931 +0.0119998,0.102242,-0.0941748,-2.49962,0.0174957,0.0321113 +0.0120237,0.102301,-0.0941307,-2.49791,0.0172,0.0319983 +0.0120469,0.102363,-0.0940828,-2.49606,0.0168709,0.0318517 +0.0120691,0.10243,-0.0940309,-2.49407,0.0165081,0.0316691 +0.01209,0.102501,-0.0939751,-2.49193,0.0161113,0.0314483 +0.0121093,0.102576,-0.0939153,-2.48964,0.0156805,0.0311871 +0.0121267,0.102655,-0.0938515,-2.48722,0.0152158,0.0308833 +0.0121419,0.102737,-0.0937835,-2.48466,0.0147175,0.0305351 +0.0121546,0.102822,-0.0937114,-2.48196,0.0141861,0.0301405 +0.0121646,0.10291,-0.0936351,-2.47913,0.0136221,0.0296981 +0.0121715,0.103,-0.0935546,-2.47617,0.0130265,0.0292064 +0.012175,0.103091,-0.0934699,-2.47309,0.0124001,0.0286642 +0.012175,0.103184,-0.093381,-2.4699,0.011744,0.0280705 +0.0121711,0.103278,-0.0932879,-2.4666,0.0110595,0.0274245 +0.0121632,0.103372,-0.0931906,-2.46321,0.010348,0.0267257 +0.012151,0.103466,-0.093089,-2.45972,0.00961103,0.025974 +0.0121344,0.10356,-0.0929832,-2.45614,0.00885016,0.0251695 +0.0121132,0.103652,-0.0928732,-2.4525,0.00806717,0.0243124 +0.0120873,0.103743,-0.092759,-2.44879,0.00726392,0.0234035 +0.0120566,0.103832,-0.0926406,-2.44503,0.00644235,0.0224439 +0.0120211,0.103918,-0.0925181,-2.44122,0.00560446,0.0214347 +0.0119807,0.104001,-0.0923914,-2.43739,0.00475233,0.0203776 +0.0119356,0.10408,-0.0922606,-2.43353,0.00388809,0.0192746 +0.0118857,0.104156,-0.0921257,-2.42966,0.00301391,0.018128 +0.0118311,0.104227,-0.0919867,-2.4258,0.00213196,0.0169403 +0.0117722,0.104294,-0.0918437,-2.42195,0.00124446,0.0157145 +0.0117089,0.104355,-0.0916966,-2.41812,0.000353596,0.0144538 +0.0116416,0.104411,-0.0915456,-2.41433,-0.000538434,0.0131616 +0.0115706,0.104462,-0.0913907,-2.41058,-0.00142946,0.0118418 +0.0114961,0.104507,-0.0912319,-2.40689,-0.00231736,0.0104984 +0.0114186,0.104546,-0.0910693,-2.40327,-0.00320003,0.00913575 +0.0113385,0.104578,-0.0909029,-2.39973,-0.00407544,0.00775834 +0.0112562,0.104605,-0.0907329,-2.39627,-0.00494159,0.00637093 +0.0111722,0.104625,-0.0905593,-2.3929,-0.00579659,0.00497844 +0.011087,0.10464,-0.0903823,-2.38965,-0.00663858,0.00358596 +0.0110012,0.104648,-0.090202,-2.3865,-0.0074658,0.00219872 +0.0109153,0.10465,-0.0900184,-2.38347,-0.00827657,0.000822064 +0.0108301,0.104647,-0.0898319,-2.38057,-0.00906928,-0.000538609 +0.010746,0.104638,-0.0896425,-2.3778,-0.00984242,-0.00187784 +0.0106638,0.104623,-0.0894504,-2.37517,-0.0105946,-0.00319014 +0.0105841,0.104604,-0.089256,-2.37267,-0.0113244,-0.00447006 +0.0105075,0.104581,-0.0890593,-2.37032,-0.0120306,-0.00571217 +0.0104348,0.104553,-0.0888608,-2.36812,-0.0127121,-0.00691115 +0.0103666,0.104521,-0.0886607,-2.36607,-0.0133678,-0.00806177 +0.0103036,0.104487,-0.0884593,-2.36417,-0.0139966,-0.00915897 +0.0102464,0.10445,-0.0882569,-2.36242,-0.0145976,-0.0101978 +0.0101956,0.10441,-0.0880541,-2.36083,-0.01517,-0.0111737 +0.0101519,0.10437,-0.0878511,-2.35938,-0.015713,-0.0120821 +0.0101159,0.104328,-0.0876484,-2.35808,-0.0162258,-0.0129189 +0.010088,0.104286,-0.0874465,-2.35693,-0.0167078,-0.0136802 +0.0100688,0.104244,-0.0872458,-2.35593,-0.0171582,-0.0143624 +0.0100588,0.104203,-0.0870469,-2.35506,-0.0175767,-0.0149625 +0.0100583,0.104164,-0.0868502,-2.35433,-0.0179625,-0.0154775 +0.0100679,0.104126,-0.0866564,-2.35373,-0.0183153,-0.0159051 +0.0100876,0.104091,-0.0864661,-2.35326,-0.0186344,-0.0162432 +0.0101179,0.10406,-0.0862797,-2.35291,-0.0189195,-0.0164905 +0.0101589,0.104032,-0.0860979,-2.35267,-0.0191702,-0.0166456 +0.0102107,0.104009,-0.0859214,-2.35255,-0.019386,-0.0167081 +0.0102733,0.10399,-0.0857507,-2.35252,-0.0195666,-0.0166778 +0.0103468,0.103977,-0.0855864,-2.35259,-0.0197115,-0.016555 +0.0104311,0.10397,-0.0854292,-2.35275,-0.0198205,-0.0163405 +0.0105259,0.103968,-0.0852797,-2.35299,-0.0198932,-0.0160356 +0.0106311,0.103973,-0.0851384,-2.35331,-0.0199292,-0.0156422 +0.0107464,0.103984,-0.085006,-2.35369,-0.0199284,-0.0151624 +0.0108713,0.104002,-0.0848831,-2.35413,-0.0198904,-0.0145991 +0.0110054,0.104027,-0.0847701,-2.35462,-0.019815,-0.0139555 +0.0111482,0.104059,-0.0846677,-2.35516,-0.0197021,-0.0132352 +0.011299,0.104099,-0.0845762,-2.35574,-0.0195513,-0.0124423 +0.0114573,0.104145,-0.0844962,-2.35635,-0.0193628,-0.0115813 +0.0116223,0.104199,-0.0844281,-2.35698,-0.0191363,-0.0106572 +0.0117932,0.104259,-0.0843722,-2.35763,-0.0188718,-0.00967517 +0.0119693,0.104326,-0.0843289,-2.35829,-0.0185696,-0.00864087 +0.0121495,0.1044,-0.0842984,-2.35896,-0.0182297,-0.00756023 +0.0123331,0.104479,-0.0842809,-2.35964,-0.0178523,-0.00643948 +0.012519,0.104565,-0.0842766,-2.3603,-0.0174377,-0.00528508 +0.0127063,0.104655,-0.0842856,-2.36096,-0.0169865,-0.00410375 +0.0128939,0.104751,-0.0843079,-2.36161,-0.016499,-0.00290237 +0.0130808,0.104851,-0.0843436,-2.36223,-0.015976,-0.00168799 +0.0132661,0.104954,-0.0843924,-2.36284,-0.0154182,-0.000467748 +0.0134485,0.105061,-0.0844542,-2.36342,-0.0148265,0.000751104 +0.0136271,0.10517,-0.0845289,-2.36398,-0.0142019,0.00196129 +0.0138009,0.105281,-0.084616,-2.3645,-0.0135456,0.00315554 +0.0139687,0.105393,-0.0847153,-2.365,-0.0128587,0.0043266 +0.0141297,0.105506,-0.0848263,-2.36546,-0.0121427,0.0054673 +0.0142828,0.105618,-0.0849485,-2.36588,-0.0113992,0.00657058 +0.014427,0.105729,-0.0850814,-2.36627,-0.0106298,0.00762953 +0.0145615,0.105839,-0.0852243,-2.36663,-0.00983619,0.00863742 +0.0146853,0.105945,-0.0853766,-2.36694,-0.00902042,0.00958775 +0.0147977,0.106048,-0.0855375,-2.36722,-0.00818446,0.0104743 +0.0148979,0.106147,-0.0857064,-2.36747,-0.00733045,0.011291 +0.0149853,0.106242,-0.0858823,-2.36768,-0.00646062,0.0120323 +0.015059,0.10633,-0.0860644,-2.36785,-0.0055773,0.012693 +0.0151187,0.106412,-0.0862519,-2.36799,-0.00468288,0.013268 +0.0151637,0.106488,-0.0864438,-2.3681,-0.00377984,0.0137529 +0.0151936,0.106555,-0.0866391,-2.36818,-0.00287071,0.0141437 +0.0152081,0.106615,-0.0868369,-2.36823,-0.00195803,0.0144367 +0.0152069,0.106665,-0.0870362,-2.36826,-0.00104442,0.0146288 +0.0151898,0.106707,-0.087236,-2.36826,-0.000132459,0.0147174 +0.0151567,0.106739,-0.0874353,-2.36823,0.00077525,0.0147003 +0.0151075,0.10676,-0.0876331,-2.36819,0.00167613,0.0145759 +0.0150422,0.106771,-0.0878284,-2.36813,0.00256765,0.0143432 +0.014961,0.106772,-0.0880203,-2.36806,0.00344732,0.0140016 +0.014864,0.106761,-0.0882077,-2.36797,0.00431272,0.0135512 +0.0147516,0.10674,-0.0883897,-2.36787,0.00516151,0.0129925 +0.014624,0.106707,-0.0885654,-2.36777,0.00599148,0.0123265 +0.0144816,0.106663,-0.0887339,-2.36767,0.00680048,0.0115551 +0.014325,0.106608,-0.0888944,-2.36756,0.00758654,0.0106803 +0.0141547,0.106542,-0.089046,-2.36746,0.00834779,0.00970481 +0.0139713,0.106465,-0.0891881,-2.36736,0.00908254,0.00863192 +0.0137755,0.106377,-0.0893198,-2.36727,0.00978925,0.00746532 +0.013568,0.106279,-0.0894405,-2.36719,0.0104665,0.00620921 +0.0133496,0.106172,-0.0895496,-2.36712,0.0111132,0.00486824 +0.013121,0.106055,-0.0896466,-2.36707,0.0117283,0.00344752 +0.0128833,0.105929,-0.0897309,-2.36703,0.0123111,0.00195255 +0.0126372,0.105794,-0.0898021,-2.36702,0.0128608,0.000389224 +0.0123838,0.105652,-0.0898598,-2.36703,0.0133771,-0.00123622 +0.0121239,0.105503,-0.0899038,-2.36707,0.0138599,-0.0029172 +0.0118587,0.105348,-0.0899338,-2.36713,0.014309,-0.00464687 +0.0115891,0.105187,-0.0899496,-2.36722,0.0147248,-0.0064181 +0.0113161,0.105021,-0.0899511,-2.36735,0.0151076,-0.00822354 +0.0110409,0.104852,-0.0899383,-2.36751,0.0154581,-0.0100557 +0.0107643,0.104679,-0.0899111,-2.36771,0.015777,-0.0119069 +0.0104876,0.104504,-0.0898698,-2.36794,0.0160653,-0.0137693 +0.0102118,0.104327,-0.0898144,-2.36821,0.0163242,-0.0156351 +0.00993783,0.104151,-0.0897452,-2.36852,0.0165549,-0.0174965 +0.0096668,0.103974,-0.0896624,-2.36887,0.0167591,-0.0193455 +0.00939971,0.103799,-0.0895664,-2.36927,0.0169382,-0.0211743 +0.00913755,0.103627,-0.0894576,-2.3697,0.017094,-0.0229753 +0.00888129,0.103457,-0.0893364,-2.37019,0.0172285,-0.0247408 +0.00863187,0.103292,-0.0892034,-2.37071,0.0173436,-0.0264634 +0.0083902,0.103131,-0.089059,-2.37128,0.0174413,-0.0281358 +0.00815714,0.102977,-0.088904,-2.37189,0.0175238,-0.029751 +0.00793355,0.102828,-0.0887389,-2.37255,0.0175934,-0.0313024 +0.0077202,0.102688,-0.0885645,-2.37326,0.0176522,-0.0327835 +0.00751786,0.102555,-0.0883814,-2.374,0.0177026,-0.0341883 +0.00732721,0.102431,-0.0881905,-2.37479,0.0177468,-0.0355109 +0.00714891,0.102316,-0.0879925,-2.37562,0.0177872,-0.0367462 +0.00698357,0.102211,-0.0877882,-2.3765,0.017826,-0.0378891 +0.00683171,0.102117,-0.0875785,-2.37741,0.0178656,-0.0389353 +0.00669384,0.102033,-0.0873642,-2.37836,0.0179081,-0.0398808 +0.00657038,0.101961,-0.0871462,-2.37935,0.0179557,-0.0407219 +0.00646171,0.101901,-0.0869254,-2.38037,0.0180106,-0.0414558 +0.00636813,0.101852,-0.0867026,-2.38142,0.0180747,-0.0420799 +0.0062899,0.101815,-0.0864788,-2.38251,0.0181499,-0.0425922 +0.00622719,0.101791,-0.0862548,-2.38363,0.0182382,-0.0429913 +0.00618013,0.101779,-0.0860315,-2.38477,0.0183413,-0.0432762 +0.00614877,0.10178,-0.0858097,-2.38593,0.0184607,-0.0434466 +0.00613312,0.101793,-0.0855904,-2.38712,0.018598,-0.0435027 +0.00613309,0.101817,-0.0853743,-2.38832,0.0187546,-0.043445 +0.00614856,0.101854,-0.0851623,-2.38954,0.0189316,-0.043275 +0.00617932,0.101903,-0.0849551,-2.39077,0.0191302,-0.0429942 +0.00622511,0.101963,-0.0847535,-2.392,0.0193513,-0.042605 +0.00628561,0.102034,-0.0845583,-2.39325,0.0195959,-0.0421101 +0.00636044,0.102116,-0.0843701,-2.39449,0.0198645,-0.0415128 +0.00644914,0.102207,-0.0841896,-2.39573,0.0201577,-0.0408167 +0.00655123,0.102309,-0.0840174,-2.39697,0.0204759,-0.0400259 +0.00666613,0.102419,-0.0838542,-2.3982,0.0208195,-0.0391451 +0.00679324,0.102538,-0.0837003,-2.39942,0.0211885,-0.0381792 +0.0069319,0.102664,-0.0835563,-2.40062,0.021583,-0.0371335 +0.00708138,0.102797,-0.0834227,-2.40181,0.0220029,-0.0360136 +0.00724095,0.102937,-0.0832998,-2.40297,0.0224479,-0.0348255 +0.00740979,0.103082,-0.083188,-2.40411,0.0229178,-0.0335755 +0.00758706,0.103232,-0.0830875,-2.40522,0.023412,-0.03227 +0.00777189,0.103386,-0.0829987,-2.4063,0.0239302,-0.0309158 +0.00796338,0.103543,-0.0829216,-2.40735,0.0244716,-0.0295196 +0.00816057,0.103702,-0.0828564,-2.40837,0.0250355,-0.0280886 +0.00836252,0.103863,-0.0828031,-2.40935,0.0256212,-0.0266299 +0.00856825,0.104024,-0.0827619,-2.41028,0.0262278,-0.0251506 +0.00877674,0.104185,-0.0827326,-2.41118,0.0268543,-0.023658 +0.00898701,0.104345,-0.0827152,-2.41203,0.0274999,-0.0221593 +0.00919803,0.104504,-0.0827095,-2.41284,0.0281634,-0.0206618 +0.00940879,0.10466,-0.0827154,-2.4136,0.0288437,-0.0191724 +0.00961827,0.104813,-0.0827326,-2.41432,0.0295399,-0.0176984 +0.00982547,0.104961,-0.0827609,-2.41498,0.0302507,-0.0162465 +0.0100294,0.105105,-0.0827999,-2.4156,0.0309749,-0.0148234 +0.0102291,0.105243,-0.0828492,-2.41617,0.0317113,-0.0134358 +0.0104235,0.105376,-0.0829085,-2.4167,0.0324587,-0.01209 +0.0106118,0.105501,-0.0829772,-2.41717,0.0332159,-0.0107919 +0.0107931,0.10562,-0.083055,-2.4176,0.0339816,-0.00954729 +0.0109665,0.10573,-0.0831413,-2.41798,0.0347546,-0.00836173 +0.0111312,0.105832,-0.0832355,-2.41832,0.0355334,-0.00724033 +0.0112863,0.105926,-0.0833371,-2.41861,0.036317,-0.00618786 +0.0114313,0.10601,-0.0834455,-2.41886,0.0371039,-0.00520876 +0.0115653,0.106085,-0.0835601,-2.41907,0.037893,-0.00430708 +0.0116877,0.106151,-0.0836801,-2.41923,0.0386828,-0.00348647 +0.011798,0.106206,-0.0838051,-2.41937,0.0394722,-0.00275016 +0.0118957,0.106251,-0.0839342,-2.41946,0.0402598,-0.00210097 +0.0119803,0.106285,-0.0840669,-2.41952,0.0410444,-0.00154129 +0.0120514,0.10631,-0.0842025,-2.41956,0.0418247,-0.00107307 +0.0121087,0.106323,-0.0843402,-2.41956,0.0425995,-0.000697817 +0.012152,0.106326,-0.0844795,-2.41954,0.0433675,-0.00041661 +0.012181,0.106319,-0.0846196,-2.41949,0.0441275,-0.000230069 +0.0121956,0.106302,-0.0847599,-2.41943,0.0448783,-0.000138378 +0.0121958,0.106274,-0.0848997,-2.41934,0.0456187,-0.000141281 +0.0121816,0.106236,-0.0850383,-2.41925,0.0463476,-0.000238092 +0.0121531,0.106188,-0.0851753,-2.41914,0.0470638,-0.000427696 +0.0121104,0.106131,-0.0853099,-2.41902,0.0477662,-0.000708561 +0.0120538,0.106065,-0.0854415,-2.4189,0.0484538,-0.00107875 +0.0119835,0.105991,-0.0855697,-2.41877,0.0491256,-0.00153594 +0.0118999,0.105907,-0.0856938,-2.41864,0.0497805,-0.0020774 +0.0118034,0.105816,-0.0858134,-2.41851,0.0504177,-0.00270007 +0.0116944,0.105718,-0.0859279,-2.41838,0.0510362,-0.00340052 +0.0115734,0.105613,-0.086037,-2.41826,0.0516353,-0.00417499 +0.0114411,0.105501,-0.0861403,-2.41815,0.0522141,-0.00501941 +0.0112981,0.105383,-0.0862372,-2.41806,0.0527721,-0.00592942 +0.0111449,0.105261,-0.0863276,-2.41797,0.0533085,-0.00690039 +0.0109824,0.105134,-0.086411,-2.4179,0.0538228,-0.00792743 +0.0108112,0.105003,-0.0864872,-2.41784,0.0543144,-0.00900545 +0.0106322,0.104868,-0.086556,-2.4178,0.0547831,-0.0101291 +0.0104461,0.104732,-0.0866172,-2.41779,0.0552284,-0.011293 +0.0102537,0.104593,-0.0866705,-2.41779,0.0556502,-0.0124914 +0.010056,0.104453,-0.0867159,-2.41782,0.0560482,-0.0137185 +0.00985377,0.104313,-0.0867533,-2.41787,0.0564223,-0.0149685 +0.00964792,0.104172,-0.0867826,-2.41794,0.0567726,-0.0162355 +0.00943933,0.104033,-0.0868038,-2.41804,0.0570991,-0.0175134 +0.0092289,0.103895,-0.086817,-2.41817,0.057402,-0.0187962 +0.00901753,0.10376,-0.0868221,-2.41832,0.0576816,-0.0200778 +0.00880611,0.103628,-0.0868193,-2.4185,0.0579383,-0.0213524 +0.00859552,0.103499,-0.0868087,-2.41871,0.0581723,-0.0226139 +0.00838665,0.103375,-0.0867904,-2.41894,0.0583843,-0.0238564 +0.00818034,0.103255,-0.0867647,-2.41921,0.0585748,-0.0250742 +0.00797744,0.103141,-0.0867318,-2.4195,0.0587445,-0.0262616 +0.00777876,0.103034,-0.0866918,-2.41982,0.0588942,-0.0274132 +0.00758508,0.102933,-0.0866452,-2.42017,0.0590245,-0.0285236 +0.00739718,0.102839,-0.0865921,-2.42054,0.0591364,-0.0295876 +0.00721578,0.102753,-0.0865329,-2.42094,0.0592309,-0.0306005 +0.00704157,0.102676,-0.086468,-2.42137,0.0593088,-0.0315574 +0.00687521,0.102607,-0.0863977,-2.42182,0.0593713,-0.032454 +0.00671731,0.102548,-0.0863223,-2.42229,0.0594194,-0.0332861 +0.00656844,0.102498,-0.0862424,-2.42279,0.0594543,-0.0340499 +0.00642914,0.102458,-0.0861582,-2.42331,0.0594771,-0.0347418 +0.00629988,0.102428,-0.0860703,-2.42385,0.0594891,-0.0353587 +0.00618109,0.102409,-0.085979,-2.42441,0.0594913,-0.0358975 +0.00607317,0.1024,-0.0858849,-2.42499,0.0594852,-0.0363558 +0.00597643,0.102403,-0.0857882,-2.42559,0.059472,-0.0367314 +0.00589118,0.102416,-0.0856896,-2.4262,0.0594528,-0.0370225 +0.00581763,0.10244,-0.0855895,-2.42683,0.0594291,-0.0372276 +0.00575595,0.102475,-0.0854882,-2.42747,0.059402,-0.0373458 +0.00570628,0.102521,-0.0853863,-2.42812,0.0593729,-0.0373762 +0.00566868,0.102579,-0.0852842,-2.42878,0.0593429,-0.0373187 +0.00564316,0.102647,-0.0851823,-2.42944,0.0593134,-0.0371734 +0.0056297,0.102725,-0.0850811,-2.43011,0.0592855,-0.0369408 +0.00562818,0.102814,-0.084981,-2.43079,0.0592604,-0.0366217 +0.00563848,0.102914,-0.0848824,-2.43147,0.0592393,-0.0362175 +0.0056604,0.103023,-0.0847857,-2.43215,0.0592233,-0.0357298 +0.0056937,0.103142,-0.0846912,-2.43282,0.0592134,-0.0351607 +0.00573807,0.103269,-0.0845994,-2.4335,0.0592107,-0.0345126 +0.00579318,0.103406,-0.0845105,-2.43417,0.0592162,-0.0337882 +0.00585864,0.10355,-0.0844249,-2.43483,0.0592308,-0.0329907 +0.00593402,0.103703,-0.084343,-2.43548,0.0592552,-0.0321235 +0.00601885,0.103862,-0.0842649,-2.43613,0.0592905,-0.0311903 +0.00611261,0.104028,-0.084191,-2.43676,0.0593372,-0.0301952 +0.00621476,0.1042,-0.0841214,-2.43738,0.0593961,-0.0291426 +0.00632471,0.104377,-0.0840565,-2.43798,0.0594678,-0.028037 +0.00644183,0.104558,-0.0839963,-2.43857,0.0595528,-0.0268833 +0.0065655,0.104744,-0.0839411,-2.43914,0.0596515,-0.0256866 +0.00669502,0.104932,-0.0838909,-2.43969,0.0597643,-0.0244522 +0.00682971,0.105123,-0.083846,-2.44022,0.0598916,-0.0231854 +0.00696885,0.105316,-0.0838063,-2.44073,0.0600335,-0.021892 +0.00711171,0.10551,-0.083772,-2.44122,0.0601903,-0.0205775 +0.00725754,0.105704,-0.083743,-2.44168,0.0603618,-0.0192479 +0.00740558,0.105897,-0.0837195,-2.44211,0.0605482,-0.0179089 +0.00755507,0.106089,-0.0837013,-2.44253,0.0607493,-0.0165666 +0.00770525,0.106279,-0.0836884,-2.44291,0.060965,-0.0152269 +0.00785534,0.106467,-0.0836808,-2.44327,0.0611948,-0.0138957 +0.00800459,0.10665,-0.0836783,-2.4436,0.0614386,-0.0125789 +0.00815225,0.10683,-0.0836809,-2.44391,0.0616959,-0.0112823 +0.00829756,0.107005,-0.0836884,-2.44418,0.0619661,-0.0100117 +0.0084398,0.107174,-0.0837006,-2.44443,0.0622488,-0.00877254 +0.00857827,0.107338,-0.0837174,-2.44465,0.0625431,-0.00757038 +0.00871226,0.107494,-0.0837386,-2.44484,0.0628485,-0.00641045 +0.00884112,0.107644,-0.0837639,-2.44501,0.0631642,-0.00529779 +0.0089642,0.107785,-0.0837931,-2.44514,0.0634892,-0.00423722 +0.0090809,0.107919,-0.083826,-2.44525,0.0638228,-0.00323331 +0.00919064,0.108044,-0.0838623,-2.44533,0.0641639,-0.00229033 +0.00929289,0.108159,-0.0839017,-2.44539,0.0645117,-0.00141227 +0.00938713,0.108266,-0.083944,-2.44542,0.064865,-0.000602786 +0.00947292,0.108363,-0.0839887,-2.44543,0.0652228,0.000134794 +0.00954983,0.10845,-0.0840358,-2.44542,0.065584,0.000797508 +0.00961748,0.108527,-0.0840847,-2.44538,0.0659476,0.00138276 +0.00967556,0.108594,-0.0841353,-2.44532,0.0663124,0.00188836 +0.00972378,0.10865,-0.0841872,-2.44524,0.0666772,0.00231248 +0.00976191,0.108697,-0.08424,-2.44514,0.067041,0.00265374 +0.00978976,0.108733,-0.0842935,-2.44503,0.0674027,0.00291114 +0.00980722,0.108759,-0.0843474,-2.4449,0.0677611,0.00308413 +0.00981419,0.108775,-0.0844013,-2.44475,0.0681151,0.00317258 +0.00981065,0.108781,-0.0844549,-2.44459,0.0684637,0.00317677 +0.00979662,0.108778,-0.084508,-2.44442,0.0688059,0.00309743 +0.00977217,0.108766,-0.0845602,-2.44424,0.0691406,0.00293569 +0.00973744,0.108744,-0.0846114,-2.44405,0.069467,0.00269313 +0.00969259,0.108714,-0.0846611,-2.44385,0.069784,0.00237172 +0.00963784,0.108676,-0.0847092,-2.44364,0.0700909,0.00197383 +0.00957347,0.108631,-0.0847555,-2.44344,0.0703869,0.00150223 +0.00949979,0.108578,-0.0847997,-2.44322,0.0706712,0.000960055 +0.00941717,0.108519,-0.0848417,-2.44301,0.0709431,0.000350818 +0.00932599,0.108454,-0.0848812,-2.4428,0.0712021,-0.000321641 +0.0092267,0.108384,-0.0849181,-2.44259,0.0714476,-0.00105316 +0.00911979,0.108309,-0.0849523,-2.44238,0.0716792,-0.00183926 +0.00900577,0.10823,-0.0849836,-2.44217,0.0718964,-0.00267522 +0.00888517,0.108148,-0.0850119,-2.44197,0.0720991,-0.00355603 +0.00875859,0.108063,-0.0850372,-2.44178,0.0722868,-0.00447649 +0.00862661,0.107976,-0.0850595,-2.4416,0.0724595,-0.00543119 +0.00848986,0.107888,-0.0850786,-2.44142,0.0726172,-0.00641456 +0.00834899,0.1078,-0.0850946,-2.44126,0.0727597,-0.0074209 +0.00820465,0.107711,-0.0851075,-2.44111,0.0728872,-0.0084444 +0.00805752,0.107624,-0.0851173,-2.44097,0.0729998,-0.00947918 +0.00790827,0.107538,-0.0851242,-2.44085,0.0730977,-0.0105193 +0.0077576,0.107454,-0.0851281,-2.44074,0.0731813,-0.011559 +0.00760618,0.107373,-0.0851292,-2.44065,0.0732508,-0.0125922 +0.0074547,0.107295,-0.0851275,-2.44057,0.0733066,-0.0136132 +0.00730384,0.107222,-0.0851233,-2.44052,0.0733494,-0.0146163 +0.00715428,0.107153,-0.0851167,-2.44048,0.0733795,-0.0155958 +0.00700665,0.107089,-0.0851078,-2.44046,0.0733976,-0.0165464 +0.00686161,0.107031,-0.0850969,-2.44046,0.0734043,-0.0174628 +0.00671977,0.106978,-0.0850841,-2.44048,0.0734004,-0.01834 +0.00658174,0.106932,-0.0850697,-2.44052,0.0733865,-0.0191733 +0.00644807,0.106893,-0.0850539,-2.44058,0.0733634,-0.0199582 +0.00631931,0.106861,-0.0850368,-2.44066,0.0733319,-0.0206905 +0.00619596,0.106836,-0.0850188,-2.44077,0.0732928,-0.0213664 +0.00607851,0.106818,-0.085,-2.4409,0.0732471,-0.0219824 +0.00596739,0.106809,-0.0849808,-2.44104,0.0731955,-0.0225353 +0.005863,0.106806,-0.0849613,-2.44122,0.0731389,-0.0230224 +0.0057657,0.106812,-0.0849418,-2.44141,0.0730783,-0.0234413 +0.00567579,0.106826,-0.0849226,-2.44162,0.0730146,-0.0237901 +0.00559356,0.106847,-0.0849038,-2.44186,0.0729485,-0.0240673 +0.00551922,0.106875,-0.0848858,-2.44211,0.0728811,-0.0242718 +0.00545297,0.106911,-0.0848686,-2.44239,0.0728132,-0.0244029 +0.00539493,0.106955,-0.0848526,-2.44269,0.0727456,-0.0244603 +0.00534519,0.107005,-0.0848379,-2.44301,0.0726792,-0.0244443 +0.0053038,0.107062,-0.0848247,-2.44334,0.0726148,-0.0243553 +0.00527075,0.107125,-0.0848132,-2.4437,0.0725531,-0.0241945 +0.00524599,0.107194,-0.0848034,-2.44407,0.072495,-0.0239633 +0.00522942,0.107269,-0.0847955,-2.44446,0.072441,-0.0236634 +0.00522092,0.107349,-0.0847897,-2.44487,0.0723919,-0.023297 +0.0052203,0.107433,-0.084786,-2.4453,0.0723482,-0.0228668 +0.00522734,0.107522,-0.0847844,-2.44574,0.0723105,-0.0223754 +0.00524178,0.107614,-0.0847849,-2.44619,0.0722793,-0.0218262 +0.00526333,0.107709,-0.0847877,-2.44666,0.0722551,-0.0212227 +0.00529166,0.107807,-0.0847926,-2.44714,0.0722381,-0.0205685 +0.00532641,0.107907,-0.0847995,-2.44763,0.0722289,-0.0198677 +0.0053672,0.108007,-0.0848085,-2.44813,0.0722275,-0.0191244 +0.00541361,0.108109,-0.0848194,-2.44865,0.0722342,-0.0183431 +0.00546522,0.108211,-0.084832,-2.44917,0.0722491,-0.0175283 +0.00552156,0.108313,-0.0848462,-2.4497,0.0722723,-0.0166847 +0.00558216,0.108413,-0.0848619,-2.45024,0.0723037,-0.0158169 +0.00564655,0.108512,-0.0848787,-2.45079,0.0723434,-0.0149298 +0.00571423,0.108609,-0.0848965,-2.45135,0.0723912,-0.0140283 +0.00578471,0.108703,-0.084915,-2.45191,0.0724469,-0.0131172 +0.0058575,0.108794,-0.0849339,-2.45248,0.0725102,-0.0122012 +0.00593208,0.108882,-0.0849529,-2.45305,0.0725809,-0.0112851 +0.00600798,0.108965,-0.0849717,-2.45363,0.0726585,-0.0103735 +0.00608471,0.109044,-0.0849899,-2.45421,0.0727427,-0.00947092 +0.00616179,0.109118,-0.0850073,-2.4548,0.0728331,-0.00858176 +0.00623877,0.109187,-0.0850234,-2.45539,0.072929,-0.00771019 +0.00631521,0.10925,-0.0850379,-2.45598,0.0730301,-0.00686019 +0.00639069,0.109307,-0.0850504,-2.45658,0.0731356,-0.00603554 +0.00646482,0.109357,-0.0850606,-2.45717,0.0732449,-0.00523976 +0.00653721,0.109402,-0.085068,-2.45777,0.0733575,-0.00447613 +0.00660753,0.10944,-0.0850724,-2.45838,0.0734726,-0.00374765 +0.00667546,0.109471,-0.0850733,-2.45898,0.0735896,-0.00305703 +0.00674072,0.109495,-0.0850704,-2.45958,0.0737078,-0.00240669 +0.00680305,0.109513,-0.0850635,-2.46019,0.0738264,-0.00179875 +0.00686224,0.109523,-0.0850521,-2.4608,0.0739447,-0.001235 +0.0069181,0.109527,-0.0850359,-2.46141,0.0740621,-0.000716935 +0.00697049,0.109524,-0.0850148,-2.46201,0.0741777,-0.000245723 +0.00701928,0.109514,-0.0849884,-2.46262,0.0742909,0.000177781 +0.00706441,0.109498,-0.0849565,-2.46323,0.074401,0.000553033 +0.00710582,0.109476,-0.084919,-2.46384,0.0745073,0.000879795 +0.00714351,0.109447,-0.0848757,-2.46444,0.0746091,0.00115813 +0.00717751,0.109412,-0.0848264,-2.46505,0.0747058,0.00138838 +0.00720787,0.109372,-0.084771,-2.46565,0.0747967,0.00157117 +0.00723468,0.109326,-0.0847096,-2.46625,0.0748813,0.00170739 +0.00725806,0.109275,-0.084642,-2.46685,0.074959,0.00179817 +0.00727815,0.10922,-0.0845683,-2.46744,0.0750293,0.00184488 +0.00729514,0.10916,-0.0844886,-2.46804,0.0750917,0.00184909 +0.00730921,0.109096,-0.0844029,-2.46862,0.0751457,0.00181257 +0.00732058,0.109029,-0.0843113,-2.4692,0.0751908,0.00173726 +0.0073295,0.108958,-0.0842141,-2.46978,0.0752267,0.00162525 +0.00733622,0.108885,-0.0841114,-2.47034,0.0752531,0.00147876 +0.00734101,0.108809,-0.0840034,-2.4709,0.0752696,0.00130013 +0.00734414,0.108731,-0.0838904,-2.47146,0.0752759,0.00109178 +0.00734591,0.108652,-0.0837728,-2.472,0.0752719,0.000856168 +0.00734661,0.108572,-0.0836507,-2.47253,0.0752572,0.000595831 +0.00734654,0.108491,-0.0835246,-2.47305,0.0752318,0.000313306 +0.00734599,0.108409,-0.0833949,-2.47357,0.0751954,1.11326e-05 +0.00734528,0.108327,-0.0832619,-2.47406,0.0751481,-0.000308171 +0.00734468,0.108246,-0.083126,-2.47455,0.0750896,-0.000642128 +0.00734448,0.108166,-0.0829877,-2.47502,0.0750201,-0.000988321 +0.00734496,0.108086,-0.0828473,-2.47548,0.0749395,-0.00134441 +0.00734637,0.108008,-0.0827054,-2.47593,0.0748478,-0.00170815 +0.00734898,0.107931,-0.0825624,-2.47636,0.0747451,-0.00207739 +0.00735302,0.107856,-0.0824186,-2.47677,0.0746314,-0.00245012 +0.0073587,0.107783,-0.0822746,-2.47717,0.074507,-0.00282445 +0.00736622,0.107712,-0.0821308,-2.47755,0.0743718,-0.00319864 +0.00737576,0.107643,-0.0819877,-2.47792,0.074226,-0.00357108 +0.00738748,0.107577,-0.0818455,-2.47827,0.0740699,-0.00394035 +0.00740152,0.107513,-0.0817048,-2.47861,0.0739036,-0.00430516 +0.00741799,0.107452,-0.0815658,-2.47893,0.0737273,-0.00466441 +0.00743699,0.107393,-0.0814291,-2.47923,0.0735412,-0.00501715 +0.00745857,0.107338,-0.0812948,-2.47952,0.0733457,-0.00536261 +0.00748279,0.107285,-0.0811633,-2.4798,0.0731408,-0.00570016 +0.00750967,0.107234,-0.081035,-2.48006,0.072927,-0.00602937 +0.00753922,0.107186,-0.08091,-2.48031,0.0727044,-0.00634994 +0.0075714,0.107141,-0.0807886,-2.48055,0.0724735,-0.00666172 +0.00760619,0.107097,-0.0806709,-2.48078,0.0722344,-0.00696472 +0.00764352,0.107057,-0.0805572,-2.481,0.0719875,-0.00725908 +0.00768331,0.107018,-0.0804475,-2.48122,0.0717332,-0.00754506 +0.00772546,0.106981,-0.080342,-2.48142,0.0714718,-0.00782305 +0.00776986,0.106946,-0.0802408,-2.48163,0.0712036,-0.00809354 +0.00781638,0.106912,-0.0801437,-2.48182,0.0709291,-0.00835711 +0.00786488,0.10688,-0.080051,-2.48202,0.0706486,-0.00861444 +0.0079152,0.106849,-0.0799624,-2.48222,0.0703625,-0.00886626 +0.00796719,0.106819,-0.0798781,-2.48242,0.0700712,-0.00911338 +0.00802066,0.10679,-0.0797977,-2.48262,0.0697751,-0.00935665 +0.00807545,0.106761,-0.0797214,-2.48282,0.0694748,-0.00959695 +0.00813136,0.106733,-0.0796489,-2.48303,0.0691706,-0.00983519 +0.00818821,0.106705,-0.07958,-2.48325,0.068863,-0.0100723 +0.0082458,0.106677,-0.0795146,-2.48348,0.0685524,-0.0103092 +0.00830395,0.106649,-0.0794525,-2.48371,0.0682395,-0.0105468 +0.00836246,0.106621,-0.0793934,-2.48396,0.0679247,-0.010786 +0.00842115,0.106592,-0.0793372,-2.48422,0.0676084,-0.0110277 +0.00847982,0.106563,-0.0792836,-2.4845,0.0672914,-0.0112728 +0.00853831,0.106533,-0.0792323,-2.48478,0.0669739,-0.0115219 +0.00859643,0.106502,-0.0791831,-2.48508,0.0666567,-0.0117759 +0.00865403,0.10647,-0.0791357,-2.4854,0.0663403,-0.0120353 +0.00871093,0.106438,-0.0790899,-2.48573,0.0660252,-0.012301 +0.008767,0.106405,-0.0790455,-2.48608,0.065712,-0.0125733 +0.00882208,0.10637,-0.0790021,-2.48644,0.0654012,-0.0128528 +0.00887606,0.106335,-0.0789595,-2.48682,0.0650934,-0.0131399 +0.0089288,0.106299,-0.0789175,-2.48721,0.0647892,-0.0134349 +0.00898021,0.106262,-0.0788759,-2.48762,0.064489,-0.0137381 +0.00903018,0.106224,-0.0788345,-2.48803,0.0641935,-0.0140497 +0.00907863,0.106186,-0.078793,-2.48846,0.0639031,-0.0143696 +0.00912548,0.106146,-0.0787512,-2.4889,0.0636183,-0.0146981 +0.00917067,0.106107,-0.0787091,-2.48935,0.0633396,-0.015035 +0.00921415,0.106067,-0.0786663,-2.48981,0.0630675,-0.0153801 +0.00925587,0.106026,-0.078623,-2.49027,0.0628024,-0.0157334 +0.00929582,0.105986,-0.0785788,-2.49074,0.0625447,-0.0160945 +0.00933395,0.105945,-0.0785337,-2.49121,0.0622947,-0.0164631 +0.00937028,0.105905,-0.0784877,-2.49168,0.0620528,-0.0168389 +0.00940478,0.105865,-0.0784407,-2.49215,0.0618194,-0.0172214 +0.00943748,0.105825,-0.0783926,-2.49261,0.0615947,-0.0176101 +0.00946838,0.105786,-0.0783435,-2.49307,0.0613788,-0.0180046 +0.00949751,0.105747,-0.0782934,-2.49352,0.0611721,-0.0184041 +0.0095249,0.10571,-0.0782423,-2.49396,0.0609747,-0.0188083 +0.00955058,0.105673,-0.0781902,-2.49438,0.0607866,-0.0192163 +0.00957459,0.105638,-0.0781373,-2.4948,0.0606079,-0.0196276 +0.00959697,0.105604,-0.0780836,-2.49519,0.0604388,-0.0200416 +0.00961777,0.105571,-0.0780293,-2.49557,0.0602791,-0.0204575 +0.00963704,0.10554,-0.0779744,-2.49593,0.0601288,-0.0208747 +0.00965483,0.10551,-0.0779192,-2.49626,0.0599878,-0.0212925 +0.0096712,0.105482,-0.0778636,-2.49658,0.0598561,-0.0217102 +0.0096862,0.105455,-0.0778081,-2.49686,0.0597333,-0.0221271 +0.00969988,0.10543,-0.0777526,-2.49713,0.0596194,-0.0225427 +0.00971231,0.105407,-0.0776974,-2.49736,0.0595141,-0.0229562 +0.00972352,0.105385,-0.0776427,-2.49757,0.0594171,-0.0233671 +0.00973359,0.105366,-0.0775888,-2.49775,0.0593281,-0.0237747 +0.00974255,0.105347,-0.0775357,-2.4979,0.0592469,-0.0241784 +0.00975046,0.105331,-0.0774838,-2.49802,0.059173,-0.0245778 +0.00975736,0.105315,-0.0774332,-2.49811,0.0591061,-0.0249723 +0.0097633,0.105302,-0.0773841,-2.49818,0.0590459,-0.0253613 +0.00976832,0.10529,-0.0773369,-2.49821,0.058992,-0.0257446 +0.00977245,0.105279,-0.0772916,-2.49822,0.0589438,-0.0261215 +0.00977574,0.105269,-0.0772485,-2.49819,0.0589012,-0.0264917 +0.00977821,0.10526,-0.0772078,-2.49815,0.0588635,-0.0268549 +0.0097799,0.105253,-0.0771697,-2.49807,0.0588305,-0.0272107 +0.00978083,0.105246,-0.0771344,-2.49798,0.0588016,-0.0275588 +0.00978102,0.10524,-0.0771021,-2.49786,0.0587766,-0.0278988 +0.00978049,0.105235,-0.0770728,-2.49772,0.0587549,-0.0282307 +0.00977926,0.105231,-0.0770469,-2.49756,0.0587363,-0.028554 +0.00977734,0.105227,-0.0770244,-2.49738,0.0587203,-0.0288686 +0.00977474,0.105224,-0.0770055,-2.49719,0.0587067,-0.0291743 +0.00977147,0.10522,-0.0769903,-2.49698,0.058695,-0.029471 +0.00976754,0.105217,-0.0769788,-2.49676,0.0586849,-0.0297584 +0.00976294,0.105215,-0.0769712,-2.49653,0.0586762,-0.0300364 +0.00975768,0.105212,-0.0769675,-2.4963,0.0586686,-0.0303049 +0.00975177,0.105209,-0.0769678,-2.49606,0.0586619,-0.0305636 +0.00974518,0.105206,-0.0769721,-2.49582,0.0586558,-0.0308126 +0.00973793,0.105203,-0.0769805,-2.49559,0.0586502,-0.0310516 +0.00973,0.105201,-0.0769928,-2.49535,0.0586448,-0.0312806 +0.00972139,0.105197,-0.0770092,-2.49512,0.0586397,-0.0314993 +0.00971208,0.105194,-0.0770295,-2.4949,0.0586346,-0.0317077 +0.00970209,0.105191,-0.0770537,-2.49469,0.0586294,-0.0319057 +0.00969139,0.105188,-0.0770818,-2.49449,0.0586242,-0.0320931 +0.00967997,0.105184,-0.0771136,-2.4943,0.0586189,-0.0322696 +0.00966783,0.10518,-0.077149,-2.49413,0.0586135,-0.0324353 +0.00965497,0.105177,-0.0771879,-2.49399,0.058608,-0.03259 +0.00964137,0.105173,-0.0772302,-2.49386,0.0586024,-0.0327334 +0.00962703,0.10517,-0.0772757,-2.49376,0.0585968,-0.0328654 +0.00961195,0.105166,-0.0773242,-2.49368,0.0585913,-0.0329859 +0.00959611,0.105163,-0.0773756,-2.49362,0.0585858,-0.0330947 +0.00957953,0.10516,-0.0774297,-2.4936,0.0585806,-0.0331916 +0.0095622,0.105158,-0.0774862,-2.4936,0.0585756,-0.0332764 +0.00954412,0.105156,-0.077545,-2.49364,0.0585711,-0.033349 +0.0095253,0.105154,-0.0776058,-2.49371,0.058567,-0.0334092 +0.00950575,0.105153,-0.0776684,-2.49381,0.0585635,-0.0334569 +0.00948548,0.105153,-0.0777326,-2.49394,0.0585606,-0.0334919 +0.00946449,0.105153,-0.0777981,-2.49411,0.0585585,-0.0335141 +0.00944281,0.105154,-0.0778647,-2.49432,0.0585572,-0.0335235 +0.00942046,0.105156,-0.0779321,-2.49455,0.0585568,-0.0335198 +0.00939745,0.105159,-0.0780002,-2.49483,0.0585573,-0.033503 +0.00937381,0.105163,-0.0780686,-2.49514,0.0585588,-0.0334731 +0.00934958,0.105168,-0.0781372,-2.49548,0.0585612,-0.03343 +0.00932477,0.105174,-0.0782056,-2.49586,0.0585645,-0.0333738 +0.00929944,0.105181,-0.0782737,-2.49627,0.0585687,-0.0333045 +0.00927361,0.10519,-0.0783413,-2.49672,0.0585737,-0.033222 +0.00924734,0.105199,-0.078408,-2.4972,0.0585795,-0.0331266 +0.00922066,0.10521,-0.0784738,-2.49771,0.0585859,-0.0330182 +0.00919362,0.105222,-0.0785384,-2.49826,0.0585928,-0.0328972 +0.00916628,0.105235,-0.0786017,-2.49883,0.0586001,-0.0327635 +0.00913868,0.105249,-0.0786634,-2.49943,0.0586074,-0.0326176 +0.0091109,0.105265,-0.0787234,-2.50005,0.0586147,-0.0324595 +0.00908297,0.105281,-0.0787816,-2.50071,0.0586216,-0.0322897 +0.00905497,0.105299,-0.0788378,-2.50138,0.058628,-0.0321083 +0.00902695,0.105318,-0.0788918,-2.50208,0.0586335,-0.0319158 +0.00899898,0.105338,-0.0789437,-2.5028,0.0586378,-0.0317125 +0.00897113,0.105359,-0.0789934,-2.50353,0.0586407,-0.0314987 +0.00894345,0.105381,-0.0790406,-2.50428,0.0586417,-0.0312751 +0.00891602,0.105405,-0.0790854,-2.50505,0.0586406,-0.0310419 +0.00888888,0.105429,-0.0791278,-2.50582,0.0586371,-0.0307997 +0.00886212,0.105453,-0.0791677,-2.50661,0.0586307,-0.0305489 +0.00883578,0.105479,-0.0792052,-2.5074,0.0586211,-0.0302901 +0.00880994,0.105506,-0.0792401,-2.5082,0.0586081,-0.0300238 +0.00878464,0.105533,-0.0792726,-2.50901,0.0585912,-0.0297505 +0.00875993,0.105561,-0.0793027,-2.50981,0.0585701,-0.0294708 +0.00873588,0.10559,-0.0793304,-2.51062,0.0585446,-0.0291853 +0.00871253,0.105619,-0.0793558,-2.51142,0.0585143,-0.0288945 +0.00868991,0.105649,-0.079379,-2.51222,0.0584789,-0.028599 +0.00866807,0.105679,-0.0794001,-2.51301,0.0584383,-0.0282993 +0.00864705,0.10571,-0.0794191,-2.5138,0.0583922,-0.027996 +0.00862686,0.105742,-0.0794363,-2.51457,0.0583404,-0.0276898 +0.00860753,0.105773,-0.0794516,-2.51534,0.0582828,-0.027381 +0.00858908,0.105806,-0.0794652,-2.51609,0.0582193,-0.0270704 +0.00857151,0.105838,-0.0794774,-2.51683,0.0581497,-0.0267583 +0.00855483,0.105871,-0.0794881,-2.51756,0.058074,-0.0264454 +0.00853904,0.105905,-0.0794976,-2.51826,0.0579922,-0.0261322 +0.00852413,0.105938,-0.0795061,-2.51896,0.0579044,-0.025819 +0.00851007,0.105972,-0.0795136,-2.51963,0.0578106,-0.0255065 +0.00849685,0.106006,-0.0795203,-2.52029,0.0577109,-0.0251949 +0.00848444,0.106041,-0.0795265,-2.52092,0.0576055,-0.0248849 +0.00847281,0.106076,-0.0795322,-2.52154,0.0574946,-0.0245767 +0.00846191,0.10611,-0.0795376,-2.52214,0.0573784,-0.0242707 +0.00845169,0.106146,-0.0795429,-2.52272,0.0572571,-0.0239673 +0.00844212,0.106181,-0.0795483,-2.52328,0.0571312,-0.0236668 +0.00843312,0.106217,-0.0795538,-2.52381,0.0570009,-0.0233695 +0.00842464,0.106253,-0.0795597,-2.52433,0.0568666,-0.0230758 +0.00841661,0.106289,-0.0795661,-2.52483,0.0567288,-0.0227858 +0.00840897,0.106325,-0.0795731,-2.52531,0.0565878,-0.0224997 +0.00840164,0.106361,-0.0795809,-2.52577,0.0564441,-0.0222178 +0.00839455,0.106398,-0.0795896,-2.52622,0.0562983,-0.0219403 +0.00838763,0.106434,-0.0795993,-2.52664,0.0561508,-0.0216674 +0.00838079,0.106471,-0.0796102,-2.52705,0.0560022,-0.021399 +0.00837397,0.106507,-0.0796223,-2.52745,0.0558531,-0.0211355 +0.00836707,0.106544,-0.0796357,-2.52783,0.055704,-0.0208768 +0.00836003,0.106581,-0.0796505,-2.52819,0.0555555,-0.0206232 +0.00835277,0.106618,-0.0796669,-2.52854,0.0554082,-0.0203745 +0.0083452,0.106654,-0.0796848,-2.52888,0.0552627,-0.0201309 +0.00833727,0.106691,-0.0797044,-2.52921,0.0551196,-0.0198925 +0.0083289,0.106727,-0.0797257,-2.52952,0.0549795,-0.0196592 +0.00832001,0.106763,-0.0797488,-2.52983,0.0548431,-0.019431 +0.00831055,0.106799,-0.0797736,-2.53013,0.054711,-0.0192081 +0.00830045,0.106835,-0.0798002,-2.53042,0.0545836,-0.0189903 +0.00828966,0.10687,-0.0798286,-2.53071,0.0544617,-0.0187777 +0.00827812,0.106905,-0.0798589,-2.53099,0.0543459,-0.0185702 +0.00826579,0.10694,-0.079891,-2.53126,0.0542366,-0.0183678 +0.00825263,0.106973,-0.0799249,-2.53153,0.0541344,-0.0181706 +0.00823859,0.107007,-0.0799606,-2.5318,0.0540398,-0.0179784 +0.00822364,0.107039,-0.0799981,-2.53207,0.0539534,-0.0177913 +0.00820776,0.107071,-0.0800373,-2.53233,0.0538757,-0.0176092 +0.00819093,0.107101,-0.0800783,-2.53259,0.053807,-0.0174321 +0.00817312,0.107131,-0.0801208,-2.53286,0.0537479,-0.01726 +0.00815434,0.10716,-0.080165,-2.53313,0.0536986,-0.0170928 +0.00813457,0.107188,-0.0802108,-2.53339,0.0536597,-0.0169304 +0.00811381,0.107215,-0.080258,-2.53366,0.0536313,-0.0167729 +0.00809208,0.10724,-0.0803066,-2.53393,0.0536139,-0.0166201 +0.00806937,0.107264,-0.0803565,-2.53421,0.0536076,-0.0164721 +0.00804571,0.107286,-0.0804077,-2.53449,0.0536128,-0.0163288 +0.00802112,0.107307,-0.08046,-2.53478,0.0536295,-0.01619 +0.00799562,0.107327,-0.0805134,-2.53506,0.053658,-0.0160559 +0.00796925,0.107344,-0.0805678,-2.53536,0.0536984,-0.0159262 +0.00794202,0.10736,-0.080623,-2.53566,0.0537507,-0.0158009 +0.00791398,0.107374,-0.0806791,-2.53597,0.053815,-0.0156799 +0.00788517,0.107387,-0.0807358,-2.53628,0.0538912,-0.015563 +0.00785563,0.107397,-0.0807931,-2.5366,0.0539795,-0.0154503 +0.0078254,0.107405,-0.080851,-2.53693,0.0540797,-0.0153415 +0.00779452,0.107411,-0.0809092,-2.53726,0.0541916,-0.0152365 +0.00776304,0.107414,-0.0809677,-2.53761,0.0543153,-0.0151352 +0.00773102,0.107416,-0.0810264,-2.53796,0.0544504,-0.0150373 +0.00769848,0.107415,-0.0810853,-2.53832,0.0545969,-0.0149427 +0.00766549,0.107412,-0.0811441,-2.53869,0.0547546,-0.0148512 +0.00763208,0.107406,-0.081203,-2.53907,0.0549231,-0.0147625 +0.0075983,0.107398,-0.0812617,-2.53946,0.0551022,-0.0146763 +0.00756418,0.107387,-0.0813202,-2.53987,0.0552916,-0.0145925 +0.00752977,0.107373,-0.0813785,-2.54028,0.0554912,-0.0145106 +0.0074951,0.107357,-0.0814364,-2.54071,0.0557004,-0.0144303 +0.0074602,0.107338,-0.081494,-2.54114,0.0559191,-0.0143513 +0.00742511,0.107317,-0.0815512,-2.5416,0.0561468,-0.0142733 +0.00738983,0.107293,-0.0816079,-2.54206,0.0563833,-0.0141957 +0.00735439,0.107266,-0.0816642,-2.54255,0.0566282,-0.0141182 +0.00731881,0.107236,-0.0817201,-2.54305,0.0568811,-0.0140402 +0.00728309,0.107203,-0.0817754,-2.54356,0.0571417,-0.0139613 +0.00724724,0.107167,-0.0818303,-2.5441,0.0574096,-0.013881 +0.00721125,0.107129,-0.0818848,-2.54465,0.0576846,-0.0137986 +0.00717511,0.107087,-0.0819389,-2.54522,0.0579661,-0.0137136 +0.00713881,0.107043,-0.0819925,-2.54582,0.058254,-0.0136254 +0.00710233,0.106996,-0.0820459,-2.54644,0.0585478,-0.0135332 +0.00706565,0.106945,-0.0820991,-2.54708,0.0588472,-0.0134366 +0.00702874,0.106892,-0.082152,-2.54775,0.0591519,-0.0133346 +0.00699156,0.106835,-0.0822049,-2.54844,0.0594616,-0.0132267 +0.00695407,0.106775,-0.0822578,-2.54917,0.0597759,-0.013112 +0.00691625,0.106713,-0.0823108,-2.54992,0.0600944,-0.0129898 +0.00687803,0.106647,-0.082364,-2.5507,0.060417,-0.0128594 +0.00683939,0.106578,-0.0824175,-2.55152,0.0607431,-0.0127198 +0.00680026,0.106506,-0.0824716,-2.55237,0.0610726,-0.0125704 +0.00676061,0.10643,-0.0825262,-2.55325,0.0614051,-0.0124103 +0.00672037,0.106352,-0.0825815,-2.55418,0.0617402,-0.0122387 +0.00667952,0.10627,-0.0826377,-2.55514,0.0620777,-0.0120548 +0.006638,0.106185,-0.082695,-2.55614,0.0624171,-0.0118577 +0.00659577,0.106096,-0.0827533,-2.55718,0.0627581,-0.0116468 +0.00655278,0.106005,-0.082813,-2.55827,0.0631004,-0.0114212 +0.00650901,0.10591,-0.0828741,-2.5594,0.0634435,-0.0111802 +0.00646442,0.105812,-0.0829368,-2.56058,0.0637871,-0.010923 +0.006419,0.10571,-0.0830011,-2.5618,0.0641308,-0.010649 +0.00637271,0.105605,-0.0830673,-2.56307,0.0644741,-0.0103576 +0.00632555,0.105497,-0.0831354,-2.56439,0.0648166,-0.0100482 +0.00627752,0.105385,-0.0832056,-2.56576,0.0651579,-0.00972018 +0.00622863,0.10527,-0.083278,-2.56719,0.0654976,-0.00937309 +0.00617887,0.105151,-0.0833525,-2.56866,0.0658351,-0.00900652 +0.00612828,0.10503,-0.0834294,-2.57019,0.06617,-0.00862013 +0.00607689,0.104904,-0.0835087,-2.57177,0.0665019,-0.00821362 +0.00602474,0.104776,-0.0835904,-2.5734,0.0668302,-0.0077868 +0.00597187,0.104644,-0.0836746,-2.57509,0.0671545,-0.00733955 +0.00591835,0.104508,-0.0837613,-2.57683,0.0674743,-0.00687184 +0.00586424,0.104369,-0.0838505,-2.57862,0.0677891,-0.00638371 +0.00580962,0.104227,-0.0839421,-2.58047,0.0680985,-0.0058753 +0.00575458,0.104082,-0.0840363,-2.58237,0.068402,-0.00534684 +0.0056992,0.103933,-0.0841329,-2.58433,0.0686993,-0.00479867 +0.0056436,0.103781,-0.0842319,-2.58634,0.0689899,-0.00423118 +0.00558787,0.103626,-0.0843332,-2.58839,0.0692734,-0.0036449 +0.00553214,0.103468,-0.0844367,-2.5905,0.0695495,-0.00304041 +0.00547651,0.103307,-0.0845424,-2.59266,0.0698179,-0.00241842 +0.00542112,0.103143,-0.0846501,-2.59487,0.0700783,-0.00177968 +0.0053661,0.102976,-0.0847598,-2.59712,0.0703305,-0.00112506 +0.00531157,0.102806,-0.0848712,-2.59942,0.0705743,-0.000455501 +0.00525768,0.102633,-0.0849842,-2.60176,0.0708095,0.000227979 +0.00520454,0.102457,-0.0850987,-2.60414,0.0710361,0.000924294 +0.00515232,0.102279,-0.0852146,-2.60656,0.0712539,0.00163229 +0.00510113,0.102099,-0.0853316,-2.60902,0.0714631,0.00235074 +0.00505111,0.101916,-0.0854496,-2.61152,0.0716635,0.00307839 +0.0050024,0.101731,-0.0855684,-2.61404,0.0718554,0.00381391 +0.00495513,0.101544,-0.0856877,-2.6166,0.0720389,0.00455594 +0.00490941,0.101355,-0.0858076,-2.61919,0.0722141,0.00530308 +0.00486538,0.101165,-0.0859276,-2.6218,0.0723813,0.00605392 +0.00482315,0.100972,-0.0860478,-2.62443,0.0725407,0.00680701 +0.00478282,0.100779,-0.0861678,-2.62708,0.0726926,0.00756091 +0.0047445,0.100583,-0.0862875,-2.62975,0.0728373,0.00831417 +0.00470829,0.100387,-0.0864067,-2.63243,0.0729752,0.00906533 +0.00467428,0.10019,-0.0865253,-2.63513,0.0731066,0.00981298 +0.00464254,0.0999922,-0.0866431,-2.63783,0.0732318,0.0105557 +0.00461314,0.0997938,-0.0867599,-2.64054,0.0733512,0.0112921 +0.00458616,0.0995948,-0.0868756,-2.64325,0.0734651,0.0120209 +0.00456163,0.0993957,-0.08699,-2.64596,0.0735739,0.0127408 +0.0045396,0.0991965,-0.087103,-2.64866,0.0736779,0.0134506 +0.00452011,0.0989974,-0.0872146,-2.65136,0.0737773,0.014149 +0.00450319,0.0987987,-0.0873246,-2.65405,0.0738724,0.0148351 +0.00448884,0.0986004,-0.0874329,-2.65673,0.0739633,0.0155078 +0.00447707,0.0984027,-0.0875394,-2.6594,0.0740501,0.0161663 +0.00446788,0.0982059,-0.0876441,-2.66205,0.074133,0.0168096 +0.00446126,0.09801,-0.0877469,-2.66468,0.0742119,0.0174372 +0.00445719,0.0978152,-0.0878478,-2.66728,0.0742867,0.0180483 +0.00445564,0.0976216,-0.0879468,-2.66987,0.0743572,0.0186425 +0.00445656,0.0974294,-0.0880438,-2.67243,0.0744233,0.0192196 +0.00445993,0.0972387,-0.0881389,-2.67496,0.0744845,0.0197791 +0.00446568,0.0970495,-0.088232,-2.67747,0.0745405,0.020321 +0.00447377,0.0968621,-0.0883232,-2.67994,0.0745906,0.0208454 +0.00448413,0.0966764,-0.0884126,-2.68238,0.0746343,0.0213523 +0.00449669,0.0964925,-0.0885002,-2.68479,0.0746709,0.0218422 +0.0045114,0.0963105,-0.0885861,-2.68717,0.0746995,0.0223153 +0.00452817,0.0961304,-0.0886702,-2.68951,0.0747191,0.0227724 +0.00454692,0.0959523,-0.0887528,-2.69182,0.0747289,0.0232141 +0.0045676,0.0957761,-0.088834,-2.69409,0.0747278,0.0236412 +0.0045901,0.0956018,-0.0889137,-2.69633,0.0747145,0.0240547 +0.00461436,0.0954294,-0.0889922,-2.69853,0.0746878,0.0244558 +0.0046403,0.095259,-0.0890695,-2.7007,0.0746464,0.0248456 +0.00466785,0.0950903,-0.0891457,-2.70283,0.0745889,0.0252255 +0.00469691,0.0949234,-0.089221,-2.70493,0.0745139,0.0255969 +0.00472743,0.0947582,-0.0892955,-2.70699,0.07442,0.0259615 +0.00475933,0.0945945,-0.0893694,-2.70903,0.0743056,0.0263208 +0.00479254,0.0944324,-0.0894426,-2.71103,0.0741692,0.0266767 +0.004827,0.0942716,-0.0895155,-2.71301,0.0740094,0.027031 +0.00486265,0.094112,-0.089588,-2.71496,0.0738245,0.0273855 +0.00489944,0.0939535,-0.0896603,-2.71688,0.073613,0.0277423 +0.00493731,0.093796,-0.0897325,-2.71878,0.0733735,0.0281035 +0.00497622,0.0936393,-0.0898047,-2.72066,0.0731045,0.0284709 +0.00501613,0.0934832,-0.089877,-2.72251,0.0728046,0.0288469 +0.00505701,0.0933276,-0.0899495,-2.72436,0.0724725,0.0292335 +0.00509883,0.0931723,-0.0900222,-2.72618,0.0721069,0.0296329 +0.00514157,0.0930171,-0.0900953,-2.728,0.0717066,0.0300472 +0.00518521,0.0928619,-0.0901688,-2.7298,0.0712705,0.0304785 +0.00522975,0.0927064,-0.0902427,-2.7316,0.0707977,0.030929 +0.00527518,0.0925506,-0.0903171,-2.73339,0.0702872,0.0314007 +0.00532151,0.0923943,-0.090392,-2.73519,0.0697384,0.0318956 +0.00536874,0.0922373,-0.0904674,-2.73698,0.0691507,0.0324158 +0.00541691,0.0920794,-0.0905433,-2.73878,0.0685235,0.0329631 +0.00546601,0.0919206,-0.0906196,-2.74058,0.0678566,0.0335393 +0.00551609,0.0917606,-0.0906964,-2.7424,0.0671498,0.0341463 +0.00556718,0.0915993,-0.0907737,-2.74423,0.0664031,0.0347855 +0.00561932,0.0914367,-0.0908512,-2.74607,0.0656166,0.0354587 +0.00567254,0.0912726,-0.0909291,-2.74793,0.0647907,0.0361672 +0.0057269,0.091107,-0.0910071,-2.7498,0.0639258,0.0369123 +0.00578245,0.0909397,-0.0910852,-2.7517,0.0630226,0.0376952 +0.00583924,0.0907708,-0.0911633,-2.75363,0.0620819,0.0385169 +0.00589733,0.0906,-0.0912413,-2.75558,0.0611046,0.0393783 +0.00595679,0.0904276,-0.091319,-2.75756,0.0600918,0.0402801 +0.00601766,0.0902533,-0.0913963,-2.75957,0.0590449,0.041223 +0.00608002,0.0900772,-0.0914731,-2.76161,0.0579651,0.0422074 +0.00614392,0.0898994,-0.0915491,-2.76368,0.0568541,0.0432336 +0.00620944,0.0897199,-0.0916243,-2.76579,0.0557136,0.0443017 +0.00627663,0.0895386,-0.0916985,-2.76793,0.0545452,0.0454116 +0.00634554,0.0893558,-0.0917715,-2.77011,0.053351,0.0465632 +0.00641624,0.0891714,-0.0918432,-2.77232,0.0521328,0.047756 +0.00648878,0.0889855,-0.0919134,-2.77457,0.0508929,0.0489897 +0.0065632,0.0887983,-0.0919818,-2.77686,0.0496334,0.0502635 +0.00663956,0.0886099,-0.0920484,-2.77918,0.0483566,0.0515766 +0.00671787,0.0884203,-0.0921131,-2.78154,0.0470646,0.0529281 +0.00679818,0.0882298,-0.0921755,-2.78393,0.0457599,0.0543167 +0.00688051,0.0880385,-0.0922357,-2.78636,0.0444449,0.0557414 +0.00696487,0.0878466,-0.0922935,-2.78882,0.0431219,0.0572007 +0.00705126,0.0876541,-0.0923486,-2.79132,0.0417933,0.0586932 +0.00713968,0.0874613,-0.0924012,-2.79384,0.0404615,0.0602172 +0.00723011,0.0872683,-0.0924509,-2.7964,0.0391289,0.061771 +0.00732252,0.0870753,-0.0924978,-2.79898,0.0377978,0.063353 +0.00741688,0.0868825,-0.0925418,-2.80159,0.0364705,0.0649612 +0.00751314,0.0866901,-0.0925827,-2.80422,0.0351492,0.0665937 +0.00761122,0.0864981,-0.0926207,-2.80687,0.0338362,0.0682485 +0.00771107,0.0863068,-0.0926556,-2.80954,0.0325335,0.0699235 +0.00781258,0.0861164,-0.0926875,-2.81223,0.0312431,0.0716168 +0.00791566,0.0859269,-0.0927163,-2.81493,0.029967,0.0733261 +0.0080202,0.0857385,-0.0927421,-2.81764,0.028707,0.0750495 +0.00812607,0.0855513,-0.092765,-2.82036,0.0274648,0.0767847 +0.00823313,0.0853655,-0.0927851,-2.82309,0.0262421,0.0785298 +0.00834123,0.0851812,-0.0928024,-2.82581,0.0250402,0.0802826 +0.00845022,0.0849984,-0.092817,-2.82854,0.0238607,0.0820411 +0.00855991,0.0848173,-0.092829,-2.83126,0.0227048,0.0838032 +0.00867013,0.0846379,-0.0928387,-2.83398,0.0215735,0.0855671 +0.00878069,0.0844602,-0.0928462,-2.83669,0.020468,0.0873309 +0.00889138,0.0842843,-0.0928517,-2.83939,0.0193891,0.0890927 +0.00900199,0.0841102,-0.0928552,-2.84207,0.0183377,0.0908508 +0.0091123,0.083938,-0.0928572,-2.84474,0.0173143,0.0926035 +0.0092221,0.0837675,-0.0928577,-2.84739,0.0163195,0.0943493 +0.00933114,0.0835988,-0.092857,-2.85001,0.0153539,0.0960867 +0.0094392,0.0834318,-0.0928554,-2.85261,0.0144177,0.0978143 +0.00954604,0.0832665,-0.0928531,-2.85519,0.0135113,0.0995308 +0.00965142,0.0831027,-0.0928503,-2.85774,0.0126348,0.101235 +0.00975509,0.0829405,-0.0928472,-2.86026,0.0117884,0.102926 +0.00985682,0.0827796,-0.0928443,-2.86275,0.0109721,0.104602 +0.00995635,0.08262,-0.0928416,-2.86521,0.0101859,0.106264 +0.0100535,0.0824616,-0.0928394,-2.86763,0.00942982,0.107909 +0.0101479,0.0823042,-0.092838,-2.87002,0.00870377,0.109538 +0.0102395,0.0821477,-0.0928377,-2.87238,0.00800766,0.111149 +0.0103279,0.0819919,-0.0928386,-2.8747,0.0073414,0.112742 +0.010413,0.0818366,-0.092841,-2.87699,0.00670487,0.114318 +0.0104946,0.0816817,-0.0928451,-2.87924,0.00609799,0.115874 +0.0105724,0.0815271,-0.0928511,-2.88145,0.00552068,0.117412 +0.0106462,0.0813725,-0.0928591,-2.88363,0.00497288,0.11893 +0.0107159,0.0812177,-0.0928694,-2.88578,0.00445457,0.120429 +0.0107813,0.0810627,-0.092882,-2.88789,0.00396577,0.121909 +0.0108423,0.0809072,-0.0928972,-2.88997,0.00350654,0.123368 +0.0108987,0.0807511,-0.092915,-2.89202,0.00307699,0.124809 +0.0109503,0.0805941,-0.0929355,-2.89404,0.0026773,0.126229 +0.0109971,0.0804362,-0.0929588,-2.89603,0.00230767,0.12763 +0.0110389,0.0802772,-0.092985,-2.89799,0.0019684,0.12901 +0.0110756,0.080117,-0.093014,-2.89993,0.00165981,0.130371 +0.0111073,0.0799554,-0.0930459,-2.90184,0.0013823,0.131712 +0.0111338,0.0797922,-0.0930807,-2.90373,0.00113632,0.133033 +0.011155,0.0796275,-0.0931183,-2.90559,0.000922375,0.134334 +0.011171,0.079461,-0.0931587,-2.90744,0.000741004,0.135615 +0.0111818,0.0792928,-0.0932018,-2.90928,0.0005928,0.136876 +0.0111874,0.0791227,-0.0932475,-2.91109,0.000478387,0.138116 +0.0111877,0.0789506,-0.0932956,-2.9129,0.000398416,0.139335 +0.0111828,0.0787766,-0.0933462,-2.91469,0.00035356,0.140534 +0.0111728,0.0786006,-0.0933989,-2.91648,0.000344499,0.141711 +0.0111578,0.0784226,-0.0934537,-2.91826,0.000371914,0.142867 +0.0111378,0.0782426,-0.0935104,-2.92003,0.000436476,0.144001 +0.0111129,0.0780607,-0.0935688,-2.9218,0.000538835,0.145112 +0.0110832,0.0778767,-0.0936286,-2.92357,0.000679607,0.146202 +0.0110489,0.0776908,-0.0936897,-2.92534,0.000859364,0.147268 +0.01101,0.0775031,-0.0937518,-2.92711,0.00107862,0.14831 +0.0109668,0.0773136,-0.0938148,-2.92888,0.00133783,0.149329 +0.0109193,0.0771224,-0.0938784,-2.93065,0.00163735,0.150323 +0.0108677,0.0769297,-0.0939424,-2.93243,0.00197746,0.151292 +0.0108123,0.0767354,-0.0940064,-2.93422,0.00235834,0.152236 +0.0107531,0.0765397,-0.0940704,-2.93601,0.00278004,0.153153 +0.0106904,0.0763428,-0.0941341,-2.93781,0.0032425,0.154045 +0.0106243,0.0761448,-0.0941972,-2.93962,0.00374553,0.154909 +0.010555,0.0759458,-0.0942596,-2.94143,0.00428878,0.155746 +0.0104828,0.0757461,-0.094321,-2.94325,0.00487178,0.156556 +0.0104078,0.0755456,-0.0943812,-2.94508,0.00549386,0.157338 +0.0103303,0.0753447,-0.0944401,-2.94692,0.00615423,0.158091 +0.0102505,0.0751434,-0.0944974,-2.94876,0.00685191,0.158816 +0.0101685,0.074942,-0.094553,-2.95061,0.00758576,0.159512 +0.0100846,0.0747405,-0.0946068,-2.95247,0.00835446,0.16018 +0.00999902,0.0745393,-0.0946586,-2.95433,0.00915651,0.160819 +0.00991195,0.0743384,-0.0947082,-2.9562,0.00999026,0.16143 +0.00982363,0.074138,-0.0947557,-2.95807,0.0108539,0.162012 +0.00973426,0.0739383,-0.0948008,-2.95994,0.0117453,0.162566 +0.00964406,0.0737394,-0.0948435,-2.96182,0.0126625,0.163092 +0.00955325,0.0735415,-0.0948838,-2.96369,0.013603,0.163592 +0.00946205,0.0733448,-0.0949216,-2.96557,0.0145644,0.164064 +0.00937066,0.0731494,-0.0949569,-2.96744,0.015544,0.16451 +0.00927931,0.0729554,-0.0949897,-2.9693,0.0165393,0.164931 +0.00918819,0.072763,-0.09502,-2.97117,0.0175472,0.165327 +0.00909752,0.0725723,-0.0950479,-2.97302,0.0185648,0.1657 +0.00900751,0.0723834,-0.0950732,-2.97487,0.0195891,0.166051 +0.00891834,0.0721965,-0.0950962,-2.97671,0.0206169,0.166379 +0.00883022,0.0720116,-0.0951169,-2.97853,0.021645,0.166688 +0.00874335,0.0718288,-0.0951354,-2.98035,0.0226703,0.166977 +0.00865791,0.0716482,-0.0951516,-2.98214,0.0236894,0.167249 +0.00857409,0.07147,-0.0951658,-2.98393,0.0246991,0.167505 +0.00849208,0.0712941,-0.0951781,-2.9857,0.0256961,0.167745 +0.00841204,0.0711207,-0.0951885,-2.98745,0.0266771,0.167972 +0.00833416,0.0709497,-0.0951972,-2.98918,0.0276391,0.168187 +0.00825859,0.0707812,-0.0952043,-2.99089,0.0285788,0.168392 +0.00818551,0.0706153,-0.0952099,-2.99258,0.0294931,0.168587 +0.00811506,0.0704519,-0.0952141,-2.99424,0.0303793,0.168776 +0.00804739,0.0702912,-0.0952172,-2.99589,0.0312343,0.168958 +0.00798266,0.070133,-0.0952191,-2.99751,0.0320555,0.169137 +0.00792098,0.0699774,-0.09522,-2.99911,0.0328402,0.169312 +0.0078625,0.0698245,-0.0952201,-3.00068,0.0335862,0.169487 +0.00780734,0.0696741,-0.0952195,-3.00223,0.034291,0.169662 +0.0077556,0.0695263,-0.0952182,-3.00376,0.0349526,0.169838 +0.0077074,0.069381,-0.0952163,-3.00526,0.035569,0.170018 +0.00766284,0.0692382,-0.0952141,-3.00673,0.0361387,0.170202 +0.007622,0.069098,-0.0952114,-3.00818,0.03666,0.170391 +0.00758497,0.0689601,-0.0952086,-3.0096,0.0371316,0.170588 +0.00755183,0.0688248,-0.0952055,-3.011,0.0375524,0.170792 +0.00752263,0.0686917,-0.0952023,-3.01238,0.0379215,0.171005 +0.00749744,0.0685611,-0.095199,-3.01373,0.0382383,0.171228 +0.00747629,0.0684327,-0.0951956,-3.01505,0.0385022,0.171462 +0.00745923,0.0683066,-0.0951923,-3.01636,0.0387129,0.171707 +0.00744628,0.0681827,-0.095189,-3.01764,0.0388705,0.171965 +0.00743746,0.068061,-0.0951857,-3.0189,0.038975,0.172235 +0.00743277,0.0679414,-0.0951824,-3.02014,0.0390268,0.172517 +0.00743222,0.0678239,-0.0951792,-3.02135,0.0390263,0.172814 +0.00743578,0.0677084,-0.095176,-3.02255,0.0389743,0.173124 +0.00744344,0.0675949,-0.0951728,-3.02373,0.0388717,0.173447 +0.00745515,0.0674834,-0.0951696,-3.02489,0.0387194,0.173785 +0.00747087,0.0673739,-0.0951663,-3.02603,0.0385187,0.174136 +0.00749055,0.0672662,-0.0951629,-3.02716,0.038271,0.1745 +0.00751411,0.0671604,-0.0951595,-3.02827,0.0379776,0.174878 +0.00754149,0.0670564,-0.0951558,-3.02936,0.0376403,0.175268 +0.00757259,0.0669543,-0.095152,-3.03044,0.0372606,0.175671 +0.00760732,0.0668539,-0.0951479,-3.0315,0.0368405,0.176086 +0.00764557,0.0667553,-0.0951434,-3.03255,0.0363818,0.176512 +0.00768722,0.0666584,-0.0951387,-3.03359,0.0358864,0.176948 +0.00773216,0.0665633,-0.0951335,-3.03461,0.0353565,0.177395 +0.00778024,0.0664698,-0.0951279,-3.03562,0.0347941,0.17785 +0.00783132,0.0663781,-0.0951219,-3.03662,0.0342014,0.178314 +0.00788526,0.066288,-0.0951153,-3.03761,0.0335804,0.178785 +0.0079419,0.0661996,-0.0951081,-3.03858,0.0329335,0.179262 +0.00800108,0.0661129,-0.0951004,-3.03954,0.0322628,0.179745 +0.00806263,0.0660278,-0.0950921,-3.0405,0.0315705,0.180232 +0.00812637,0.0659444,-0.0950832,-3.04144,0.0308588,0.180723 +0.00819213,0.0658626,-0.0950737,-3.04236,0.0301298,0.181216 +0.00825974,0.0657824,-0.0950636,-3.04328,0.0293856,0.18171 +0.008329,0.0657039,-0.0950528,-3.04419,0.0286284,0.182206 +0.00839973,0.0656271,-0.0950414,-3.04508,0.0278602,0.1827 +0.00847174,0.0655518,-0.0950295,-3.04597,0.0270831,0.183194 +0.00854486,0.0654782,-0.095017,-3.04684,0.0262989,0.183685 +0.00861889,0.0654061,-0.095004,-3.0477,0.0255095,0.184173 +0.00869366,0.0653357,-0.0949906,-3.04854,0.0247167,0.184657 +0.00876898,0.0652668,-0.0949767,-3.04938,0.0239223,0.185136 +0.00884467,0.0651996,-0.0949624,-3.0502,0.0231279,0.18561 +0.00892056,0.0651338,-0.0949479,-3.05101,0.0223351,0.186078 +0.00899648,0.0650697,-0.0949331,-3.0518,0.0215454,0.186538 +0.00907228,0.065007,-0.0949181,-3.05258,0.0207602,0.186992 +0.00914778,0.0649458,-0.0949031,-3.05335,0.0199808,0.187437 +0.00922285,0.0648862,-0.0948881,-3.05411,0.0192084,0.187874 +0.00929733,0.0648279,-0.0948731,-3.05485,0.0184443,0.188302 +0.00937111,0.064771,-0.0948583,-3.05557,0.0176894,0.188721 +0.00944404,0.0647155,-0.0948438,-3.05629,0.0169447,0.18913 +0.00951602,0.0646613,-0.0948296,-3.05698,0.0162111,0.18953 +0.00958694,0.0646084,-0.0948159,-3.05767,0.0154893,0.18992 +0.0096567,0.0645567,-0.0948026,-3.05834,0.0147801,0.190301 +0.00972522,0.0645062,-0.09479,-3.05899,0.0140841,0.190671 +0.00979241,0.0644567,-0.094778,-3.05963,0.0134017,0.191032 +0.00985822,0.0644083,-0.0947668,-3.06026,0.0127335,0.191383 +0.00992259,0.0643608,-0.0947564,-3.06087,0.0120798,0.191724 +0.00998548,0.0643142,-0.0947469,-3.06147,0.0114408,0.192056 +0.0100468,0.0642684,-0.0947383,-3.06205,0.0108168,0.192379 +0.0101067,0.0642234,-0.0947307,-3.06262,0.0102079,0.192693 +0.010165,0.064179,-0.0947242,-3.06318,0.00961424,0.192998 +0.0102217,0.0641351,-0.0947187,-3.06373,0.00903571,0.193295 +0.0102769,0.0640917,-0.0947144,-3.06427,0.00847228,0.193584 +0.0103306,0.0640486,-0.0947112,-3.0648,0.00792383,0.193866 +0.0103828,0.0640059,-0.0947091,-3.06531,0.00739018,0.19414 +0.0104335,0.0639633,-0.0947081,-3.06582,0.0068711,0.194409 +0.0104828,0.0639207,-0.0947083,-3.06632,0.00636631,0.194671 +0.0105308,0.0638782,-0.0947095,-3.06681,0.00587549,0.194928 +0.0105776,0.0638355,-0.0947119,-3.06729,0.00539828,0.195179 +0.0106231,0.0637926,-0.0947153,-3.06777,0.00493431,0.195426 +0.0106674,0.0637493,-0.0947197,-3.06824,0.00448314,0.195669 +0.0107108,0.0637057,-0.0947251,-3.06871,0.00404433,0.195909 +0.0107531,0.0636615,-0.0947314,-3.06917,0.00361742,0.196145 +0.0107946,0.0636167,-0.0947385,-3.06964,0.00320194,0.19638 +0.0108354,0.0635711,-0.0947464,-3.0701,0.00279739,0.196612 +0.0108755,0.0635248,-0.0947549,-3.07056,0.00240327,0.196842 +0.010915,0.0634776,-0.0947641,-3.07102,0.00201911,0.197072 +0.0109541,0.0634294,-0.0947738,-3.07148,0.00164439,0.197301 +0.0109928,0.0633802,-0.094784,-3.07195,0.00127862,0.19753 +0.0110313,0.0633298,-0.0947945,-3.07242,0.000921338,0.19776 +0.0110696,0.0632783,-0.0948053,-3.07289,0.000572059,0.19799 +0.0111079,0.0632255,-0.0948162,-3.07337,0.000230336,0.198221 +0.0111463,0.0631714,-0.0948272,-3.07385,-0.00010427,0.198453 +0.0111849,0.0631159,-0.0948382,-3.07434,-0.000432174,0.198688 +0.0112237,0.063059,-0.0948491,-3.07484,-0.000753771,0.198924 +0.0112628,0.0630007,-0.0948599,-3.07535,-0.00106943,0.199163 +0.0113024,0.0629409,-0.0948704,-3.07587,-0.0013795,0.199404 +0.0113425,0.0628796,-0.0948805,-3.07639,-0.00168431,0.199648 +0.0113832,0.0628169,-0.0948903,-3.07693,-0.00198414,0.199894 +0.0114245,0.0627526,-0.0948995,-3.07748,-0.00227928,0.200144 +0.0114665,0.0626868,-0.0949083,-3.07803,-0.00256996,0.200397 +0.0115093,0.0626195,-0.0949165,-3.0786,-0.00285642,0.200654 +0.0115529,0.0625507,-0.094924,-3.07918,-0.00313885,0.200913 +0.0115973,0.0624804,-0.0949309,-3.07978,-0.00341743,0.201176 +0.0116425,0.0624088,-0.0949372,-3.08038,-0.00369233,0.201442 +0.0116886,0.0623357,-0.0949427,-3.081,-0.00396368,0.201711 +0.0117356,0.0622614,-0.0949475,-3.08162,-0.00423162,0.201983 +0.0117834,0.0621858,-0.0949516,-3.08226,-0.00449627,0.202259 +0.0118321,0.0621089,-0.094955,-3.08291,-0.00475773,0.202537 +0.0118817,0.062031,-0.0949577,-3.08357,-0.00501611,0.202818 +0.0119321,0.061952,-0.0949598,-3.08424,-0.00527149,0.203101 +0.0119832,0.0618721,-0.0949612,-3.08493,-0.00552398,0.203386 +0.0120351,0.0617913,-0.094962,-3.08562,-0.00577368,0.203674 +0.0120877,0.0617098,-0.0949623,-3.08632,-0.00602069,0.203963 +0.012141,0.0616276,-0.0949621,-3.08702,-0.00626512,0.204253 +0.0121948,0.0615449,-0.0949614,-3.08774,-0.00650708,0.204545 +0.0122492,0.0614618,-0.0949604,-3.08846,-0.00674671,0.204837 +0.012304,0.0613785,-0.0949591,-3.08918,-0.00698415,0.20513 +0.0123592,0.061295,-0.0949576,-3.08991,-0.00721956,0.205423 +0.0124146,0.0612114,-0.0949559,-3.09064,-0.00745311,0.205715 +0.0124703,0.061128,-0.0949542,-3.09137,-0.00768501,0.206007 +0.0125262,0.0610449,-0.0949525,-3.09211,-0.00791546,0.206297 +0.0125821,0.0609622,-0.0949509,-3.09284,-0.0081447,0.206586 +0.012638,0.06088,-0.0949495,-3.09357,-0.00837297,0.206872 +0.0126937,0.0607985,-0.0949484,-3.0943,-0.00860054,0.207156 +0.0127493,0.0607179,-0.0949476,-3.09502,-0.0088277,0.207437 +0.0128046,0.0606382,-0.0949473,-3.09573,-0.00905476,0.207715 +0.0128595,0.0605596,-0.0949475,-3.09644,-0.00928203,0.207989 +0.012914,0.0604823,-0.0949484,-3.09714,-0.00950984,0.208258 +0.0129679,0.0604064,-0.0949499,-3.09782,-0.00973854,0.208523 +0.0130213,0.0603321,-0.0949521,-3.0985,-0.00996848,0.208783 +0.013074,0.0602594,-0.0949552,-3.09916,-0.0102,0.209037 +0.013126,0.0601885,-0.0949591,-3.0998,-0.0104335,0.209285 +0.0131772,0.0601195,-0.094964,-3.10043,-0.0106693,0.209526 +0.0132275,0.0600525,-0.0949698,-3.10104,-0.0109078,0.209761 +0.013277,0.0599877,-0.0949766,-3.10163,-0.0111493,0.209989 +0.0133255,0.0599251,-0.0949844,-3.10221,-0.0113942,0.21021 +0.013373,0.0598649,-0.0949933,-3.10276,-0.0116428,0.210423 +0.0134195,0.0598071,-0.0950032,-3.10329,-0.0118953,0.210627 +0.013465,0.0597518,-0.0950142,-3.10379,-0.0121522,0.210824 +0.0135095,0.0596991,-0.0950263,-3.10427,-0.0124135,0.211012 +0.0135528,0.0596491,-0.0950394,-3.10473,-0.0126796,0.211192 +0.0135951,0.0596018,-0.0950535,-3.10516,-0.0129507,0.211363 +0.0136362,0.0595574,-0.0950687,-3.10557,-0.0132269,0.211526 +0.0136763,0.0595157,-0.0950848,-3.10595,-0.0135083,0.211679 +0.0137154,0.0594769,-0.0951019,-3.10631,-0.013795,0.211824 +0.0137534,0.059441,-0.0951198,-3.10663,-0.0140871,0.21196 +0.0137903,0.059408,-0.0951386,-3.10693,-0.0143846,0.212087 +0.0138262,0.059378,-0.0951581,-3.10721,-0.0146874,0.212206 +0.0138612,0.0593509,-0.0951783,-3.10746,-0.0149954,0.212316 +0.0138952,0.0593267,-0.0951992,-3.10768,-0.0153084,0.212419 +0.0139284,0.0593055,-0.0952207,-3.10788,-0.0156264,0.212513 +0.0139607,0.0592871,-0.0952426,-3.10805,-0.0159491,0.2126 +0.0139922,0.0592717,-0.095265,-3.10819,-0.0162763,0.21268 +0.0140229,0.0592591,-0.0952877,-3.10832,-0.0166075,0.212752 +0.014053,0.0592493,-0.0953107,-3.10842,-0.0169426,0.212818 +0.0140825,0.0592422,-0.0953338,-3.10849,-0.0172811,0.212879 +0.0141114,0.0592379,-0.0953571,-3.10855,-0.0176226,0.212933 +0.0141399,0.0592362,-0.0953805,-3.10859,-0.0179667,0.212983 +0.0141679,0.0592371,-0.0954038,-3.1086,-0.018313,0.213028 +0.0141956,0.0592405,-0.0954271,-3.1086,-0.018661,0.213069 +0.014223,0.0592463,-0.0954502,-3.10859,-0.0190102,0.213107 +0.0142502,0.0592545,-0.0954731,-3.10855,-0.0193602,0.213142 +0.0142772,0.059265,-0.0954958,-3.10851,-0.0197103,0.213174 +0.0143042,0.0592776,-0.0955182,-3.10844,-0.0200603,0.213206 +0.0143313,0.0592923,-0.0955403,-3.10837,-0.0204094,0.213236 +0.0143584,0.059309,-0.0955621,-3.10829,-0.0207574,0.213266 +0.0143856,0.0593277,-0.0955835,-3.1082,-0.0211037,0.213296 +0.0144131,0.059348,-0.0956046,-3.10809,-0.0214479,0.213327 +0.0144408,0.0593701,-0.0956254,-3.10799,-0.0217896,0.213359 +0.0144689,0.0593938,-0.0956458,-3.10787,-0.0221283,0.213393 +0.0144974,0.0594189,-0.095666,-3.10775,-0.0224637,0.21343 +0.0145264,0.0594454,-0.0956859,-3.10763,-0.0227955,0.21347 +0.0145558,0.0594732,-0.0957055,-3.1075,-0.0231234,0.213513 +0.0145858,0.0595021,-0.095725,-3.10737,-0.0234471,0.21356 +0.0146163,0.059532,-0.0957445,-3.10724,-0.0237664,0.213611 +0.0146475,0.0595628,-0.0957639,-3.10711,-0.0240811,0.213666 +0.0146794,0.0595945,-0.0957833,-3.10698,-0.0243911,0.213727 +0.0147119,0.0596268,-0.0958029,-3.10685,-0.0246963,0.213792 +0.0147451,0.0596597,-0.0958228,-3.10672,-0.0249966,0.213863 +0.0147791,0.0596931,-0.095843,-3.10658,-0.0252921,0.213939 +0.0148137,0.0597269,-0.0958637,-3.10646,-0.0255826,0.214021 +0.0148492,0.059761,-0.0958849,-3.10633,-0.0258684,0.214108 +0.0148853,0.0597952,-0.0959069,-3.1062,-0.0261495,0.214201 +0.0149222,0.0598295,-0.0959297,-3.10608,-0.026426,0.214299 +0.0149598,0.0598637,-0.0959535,-3.10595,-0.0266981,0.214402 +0.0149981,0.0598978,-0.0959784,-3.10583,-0.0269661,0.21451 +0.0150371,0.0599316,-0.0960044,-3.10571,-0.02723,0.214622 +0.0150767,0.0599651,-0.0960319,-3.10559,-0.0274903,0.214739 +0.0151169,0.0599982,-0.0960608,-3.10547,-0.027747,0.21486 +0.0151578,0.0600308,-0.0960913,-3.10535,-0.0280005,0.214985 +0.0151992,0.0600627,-0.0961236,-3.10523,-0.0282512,0.215112 +0.0152411,0.0600939,-0.0961576,-3.10511,-0.0284992,0.215243 +0.0152834,0.0601244,-0.0961936,-3.10498,-0.0287449,0.215375 +0.0153262,0.0601539,-0.0962316,-3.10486,-0.0289885,0.215508 +0.0153693,0.0601826,-0.0962718,-3.10473,-0.0292304,0.215643 +0.0154127,0.0602101,-0.0963141,-3.1046,-0.0294708,0.215777 +0.0154563,0.0602366,-0.0963587,-3.10447,-0.02971,0.215911 +0.0155001,0.0602619,-0.0964057,-3.10433,-0.0299483,0.216044 +0.0155441,0.0602859,-0.096455,-3.10419,-0.0301858,0.216175 +0.0155881,0.0603087,-0.0965066,-3.10404,-0.0304228,0.216304 +0.0156322,0.06033,-0.0965607,-3.10389,-0.0306595,0.216429 +0.0156762,0.0603499,-0.0966171,-3.10373,-0.0308959,0.216551 +0.0157201,0.0603682,-0.096676,-3.10357,-0.0311323,0.216668 +0.0157638,0.060385,-0.0967372,-3.1034,-0.0313686,0.21678 +0.0158073,0.0604002,-0.0968007,-3.10323,-0.0316051,0.216887 +0.0158506,0.0604137,-0.0968664,-3.10305,-0.0318415,0.216988 +0.0158936,0.0604255,-0.0969343,-3.10287,-0.0320781,0.217082 +0.0159362,0.0604356,-0.0970043,-3.10268,-0.0323146,0.217168 +0.0159783,0.0604439,-0.0970762,-3.10248,-0.032551,0.217248 +0.0160201,0.0604503,-0.09715,-3.10229,-0.0327872,0.217319 +0.0160614,0.060455,-0.0972256,-3.10208,-0.0330229,0.217382 +0.0161022,0.0604578,-0.0973027,-3.10188,-0.0332581,0.217437 +0.0161424,0.0604587,-0.0973812,-3.10167,-0.0334924,0.217483 +0.0161821,0.0604578,-0.097461,-3.10146,-0.0337255,0.21752 +0.0162212,0.060455,-0.0975419,-3.10124,-0.0339573,0.217548 +0.0162597,0.0604503,-0.0976237,-3.10103,-0.0341873,0.217567 +0.0162976,0.0604439,-0.0977063,-3.10081,-0.0344153,0.217577 +0.0163349,0.0604356,-0.0977894,-3.1006,-0.0346407,0.217579 +0.0163716,0.0604255,-0.0978728,-3.10039,-0.0348634,0.217571 +0.0164077,0.0604138,-0.0979565,-3.10018,-0.0350828,0.217555 +0.0164432,0.0604003,-0.0980401,-3.09998,-0.0352985,0.217531 +0.0164781,0.0603853,-0.0981234,-3.09978,-0.0355102,0.217499 +0.0165124,0.0603687,-0.0982064,-3.09958,-0.0357174,0.217459 +0.0165461,0.0603506,-0.0982888,-3.09939,-0.0359198,0.217412 +0.0165793,0.0603312,-0.0983703,-3.09921,-0.0361168,0.217358 +0.016612,0.0603104,-0.098451,-3.09904,-0.0363081,0.217298 +0.0166442,0.0602886,-0.0985305,-3.09888,-0.0364932,0.217232 +0.0166759,0.0602656,-0.0986087,-3.09873,-0.036672,0.217161 +0.0167072,0.0602418,-0.0986854,-3.0986,-0.0368438,0.217085 +0.0167381,0.0602172,-0.0987606,-3.09847,-0.0370086,0.217004 +0.0167687,0.0601919,-0.0988341,-3.09836,-0.0371658,0.21692 +0.0167989,0.0601662,-0.0989058,-3.09826,-0.0373153,0.216834 +0.0168289,0.0601401,-0.0989755,-3.09817,-0.0374569,0.216745 +0.0168587,0.0601139,-0.0990433,-3.0981,-0.0375902,0.216654 +0.0168883,0.0600877,-0.0991089,-3.09805,-0.0377152,0.216562 +0.0169177,0.0600617,-0.0991724,-3.09801,-0.0378317,0.21647 +0.0169471,0.0600361,-0.0992337,-3.09799,-0.0379395,0.216378 +0.0169765,0.0600111,-0.0992927,-3.09798,-0.0380388,0.216287 +0.0170059,0.0599869,-0.0993495,-3.09799,-0.0381293,0.216197 +0.0170354,0.0599636,-0.0994041,-3.09801,-0.0382111,0.216109 +0.017065,0.0599415,-0.0994563,-3.09805,-0.0382844,0.216024 +0.0170948,0.0599208,-0.0995064,-3.09811,-0.0383491,0.215941 +0.0171248,0.0599017,-0.0995542,-3.09818,-0.0384054,0.215863 +0.0171551,0.0598844,-0.0995999,-3.09827,-0.0384535,0.215788 +0.0171857,0.059869,-0.0996435,-3.09837,-0.0384935,0.215717 +0.0172167,0.0598558,-0.099685,-3.09848,-0.0385258,0.215652 +0.0172481,0.059845,-0.0997245,-3.09861,-0.0385504,0.215592 +0.0172799,0.0598366,-0.0997622,-3.09875,-0.0385678,0.215537 +0.0173122,0.059831,-0.0997981,-3.0989,-0.0385782,0.215487 +0.017345,0.0598282,-0.0998323,-3.09906,-0.038582,0.215444 +0.0173784,0.0598285,-0.0998648,-3.09923,-0.0385795,0.215407 +0.0174123,0.0598319,-0.0998959,-3.09942,-0.038571,0.215376 +0.0174468,0.0598386,-0.0999256,-3.0996,-0.0385569,0.215352 +0.0174819,0.0598488,-0.099954,-3.0998,-0.0385375,0.215334 +0.0175176,0.0598624,-0.0999812,-3.1,-0.0385134,0.215323 +0.017554,0.0598797,-0.100007,-3.10021,-0.0384848,0.215318 +0.017591,0.0599006,-0.100033,-3.10042,-0.0384521,0.21532 +0.0176286,0.0599252,-0.100057,-3.10064,-0.0384157,0.215328 +0.0176669,0.0599537,-0.100081,-3.10086,-0.0383759,0.215342 +0.0177057,0.0599859,-0.100103,-3.10108,-0.0383332,0.215362 +0.0177452,0.060022,-0.100126,-3.1013,-0.0382879,0.215388 +0.0177852,0.0600618,-0.100148,-3.10152,-0.0382404,0.21542 +0.0178258,0.0601054,-0.100169,-3.10174,-0.0381909,0.215458 +0.0178669,0.0601527,-0.10019,-3.10196,-0.0381398,0.2155 +0.0179085,0.0602037,-0.100211,-3.10217,-0.0380873,0.215547 +0.0179506,0.0602582,-0.100232,-3.10239,-0.0380338,0.215599 +0.0179931,0.0603162,-0.100252,-3.1026,-0.0379796,0.215656 +0.0180359,0.0603776,-0.100272,-3.10281,-0.0379248,0.215716 +0.0180791,0.0604421,-0.100293,-3.10301,-0.0378697,0.21578 +0.0181226,0.0605098,-0.100313,-3.10321,-0.0378146,0.215847 +0.0181662,0.0605803,-0.100333,-3.1034,-0.0377595,0.215917 +0.01821,0.0606535,-0.100353,-3.10359,-0.0377047,0.21599 +0.018254,0.0607292,-0.100372,-3.10378,-0.0376503,0.216065 +0.0182979,0.0608072,-0.100392,-3.10396,-0.0375965,0.216141 +0.0183419,0.0608874,-0.100412,-3.10414,-0.0375433,0.216219 +0.0183858,0.0609693,-0.100431,-3.10431,-0.037491,0.216298 +0.0184295,0.0610529,-0.10045,-3.10447,-0.0374395,0.216378 +0.0184731,0.0611378,-0.100469,-3.10463,-0.037389,0.216459 +0.0185164,0.0612239,-0.100488,-3.10479,-0.0373395,0.216539 +0.0185594,0.0613107,-0.100507,-3.10495,-0.0372911,0.216619 +0.018602,0.0613982,-0.100525,-3.1051,-0.0372438,0.216698 +0.0186441,0.061486,-0.100542,-3.10524,-0.0371977,0.216777 +0.0186858,0.0615738,-0.10056,-3.10539,-0.0371528,0.216854 +0.018727,0.0616614,-0.100576,-3.10553,-0.037109,0.216929 +0.0187676,0.0617485,-0.100593,-3.10567,-0.0370665,0.217003 +0.0188075,0.0618348,-0.100608,-3.1058,-0.0370252,0.217074 +0.0188468,0.0619201,-0.100623,-3.10594,-0.0369851,0.217143 +0.0188853,0.0620042,-0.100637,-3.10607,-0.0369462,0.21721 +0.0189231,0.0620867,-0.100651,-3.1062,-0.0369085,0.217274 +0.0189602,0.0621675,-0.100663,-3.10634,-0.036872,0.217334 +0.0189964,0.0622463,-0.100675,-3.10647,-0.0368367,0.217391 +0.0190318,0.0623229,-0.100686,-3.1066,-0.0368025,0.217445 +0.0190663,0.0623972,-0.100695,-3.10673,-0.0367693,0.217495 +0.0190999,0.0624688,-0.100704,-3.10687,-0.0367373,0.217541 +0.0191327,0.0625376,-0.100712,-3.107,-0.0367062,0.217583 +0.0191646,0.0626035,-0.100719,-3.10714,-0.0366761,0.21762 +0.0191956,0.0626664,-0.100725,-3.10728,-0.0366469,0.217654 +0.0192258,0.062726,-0.10073,-3.10742,-0.0366186,0.217682 +0.019255,0.0627822,-0.100734,-3.10756,-0.0365911,0.217707 +0.0192834,0.0628351,-0.100737,-3.1077,-0.0365643,0.217726 +0.0193109,0.0628844,-0.100739,-3.10785,-0.0365381,0.217741 +0.0193375,0.0629301,-0.100739,-3.108,-0.0365124,0.217751 +0.0193633,0.0629721,-0.100739,-3.10815,-0.0364873,0.217756 +0.0193884,0.0630105,-0.100738,-3.1083,-0.0364625,0.217756 +0.0194126,0.0630452,-0.100736,-3.10846,-0.036438,0.217752 +0.0194361,0.0630761,-0.100733,-3.10862,-0.0364137,0.217742 +0.0194588,0.0631033,-0.100729,-3.10878,-0.0363894,0.217727 +0.0194809,0.0631269,-0.100724,-3.10894,-0.0363651,0.217708 +0.0195023,0.0631468,-0.100718,-3.10911,-0.0363407,0.217683 +0.0195231,0.0631631,-0.100712,-3.10927,-0.0363159,0.217654 +0.0195432,0.0631759,-0.100705,-3.10945,-0.0362909,0.21762 +0.0195629,0.0631852,-0.100697,-3.10962,-0.0362653,0.217581 +0.0195819,0.0631911,-0.100688,-3.10979,-0.0362391,0.217537 +0.0196005,0.0631938,-0.100679,-3.10997,-0.0362122,0.217489 +0.0196187,0.0631932,-0.100669,-3.11015,-0.0361846,0.217437 +0.0196364,0.0631896,-0.100659,-3.11033,-0.036156,0.21738 +0.0196537,0.063183,-0.100648,-3.11051,-0.0361264,0.21732 +0.0196706,0.0631736,-0.100636,-3.1107,-0.0360958,0.217255 +0.0196872,0.0631615,-0.100624,-3.11088,-0.036064,0.217186 +0.0197036,0.0631468,-0.100612,-3.11107,-0.036031,0.217114 +0.0197196,0.0631296,-0.100599,-3.11126,-0.0359968,0.217038 +0.0197354,0.0631101,-0.100586,-3.11145,-0.0359612,0.216959 +0.019751,0.0630885,-0.100572,-3.11164,-0.0359244,0.216877 +0.0197663,0.0630648,-0.100559,-3.11183,-0.0358862,0.216792 +0.0197815,0.0630392,-0.100545,-3.11203,-0.0358467,0.216704 +0.0197964,0.0630119,-0.10053,-3.11222,-0.0358059,0.216613 +0.0198113,0.062983,-0.100516,-3.11242,-0.0357639,0.216521 +0.0198259,0.0629525,-0.100501,-3.11262,-0.0357206,0.216426 +0.0198405,0.0629207,-0.100486,-3.11281,-0.0356762,0.216329 +0.0198548,0.0628877,-0.100471,-3.11301,-0.0356308,0.21623 +0.0198691,0.0628535,-0.100455,-3.11321,-0.0355845,0.21613 +0.0198832,0.0628184,-0.10044,-3.11342,-0.0355374,0.216028 +0.0198972,0.0627824,-0.100424,-3.11362,-0.0354896,0.215926 +0.0199111,0.0627457,-0.100408,-3.11382,-0.0354413,0.215822 +0.0199248,0.0627083,-0.100392,-3.11403,-0.0353928,0.215717 +0.0199384,0.0626704,-0.100376,-3.11423,-0.0353441,0.215612 +0.0199519,0.0626321,-0.10036,-3.11444,-0.0352955,0.215507 +0.0199653,0.0625935,-0.100344,-3.11465,-0.0352472,0.215401 +0.0199785,0.0625546,-0.100327,-3.11486,-0.0351995,0.215295 +0.0199915,0.0625156,-0.10031,-3.11507,-0.0351525,0.215189 +0.0200044,0.0624765,-0.100294,-3.11528,-0.0351066,0.215084 +0.0200172,0.0624375,-0.100277,-3.11549,-0.035062,0.214978 +0.0200297,0.0623985,-0.10026,-3.11571,-0.0350189,0.214874 +0.0200422,0.0623598,-0.100243,-3.11592,-0.0349777,0.21477 +0.0200544,0.0623213,-0.100226,-3.11614,-0.0349385,0.214666 +0.0200665,0.062283,-0.100209,-3.11635,-0.0349016,0.214564 +0.0200785,0.0622452,-0.100191,-3.11657,-0.0348674,0.214463 +0.0200903,0.0622078,-0.100174,-3.11679,-0.0348359,0.214362 +0.0201019,0.0621708,-0.100156,-3.11702,-0.0348076,0.214264 +0.0201134,0.0621344,-0.100139,-3.11724,-0.0347826,0.214166 +0.0201248,0.0620986,-0.100121,-3.11746,-0.0347612,0.21407 +0.020136,0.0620634,-0.100103,-3.11769,-0.0347434,0.213976 +0.0201471,0.0620289,-0.100085,-3.11791,-0.0347297,0.213883 +0.0201581,0.0619951,-0.100067,-3.11814,-0.03472,0.213792 +0.0201689,0.061962,-0.100049,-3.11837,-0.0347146,0.213703 +0.0201797,0.0619296,-0.100031,-3.1186,-0.0347135,0.213616 +0.0201904,0.0618981,-0.100013,-3.11883,-0.0347169,0.213531 +0.020201,0.0618674,-0.0999951,-3.11906,-0.0347249,0.213448 +0.0202115,0.0618375,-0.099977,-3.11929,-0.0347375,0.213367 +0.020222,0.0618085,-0.099959,-3.11952,-0.0347548,0.213289 +0.0202325,0.0617804,-0.0999409,-3.11976,-0.0347766,0.213212 +0.0202428,0.0617532,-0.099923,-3.11999,-0.0348031,0.213138 +0.0202532,0.0617269,-0.0999051,-3.12022,-0.0348341,0.213066 +0.0202635,0.0617015,-0.0998873,-3.12045,-0.0348696,0.212997 +0.0202738,0.0616771,-0.0998696,-3.12068,-0.0349093,0.212929 +0.020284,0.0616536,-0.0998521,-3.12091,-0.0349533,0.212865 +0.0202941,0.061631,-0.0998348,-3.12114,-0.0350012,0.212802 +0.0203042,0.0616094,-0.0998176,-3.12136,-0.0350529,0.212742 +0.0203143,0.0615887,-0.0998008,-3.12159,-0.0351082,0.212684 +0.0203242,0.0615689,-0.0997842,-3.12181,-0.0351668,0.212628 +0.020334,0.0615501,-0.099768,-3.12203,-0.0352283,0.212575 +0.0203436,0.0615322,-0.0997521,-3.12224,-0.0352925,0.212523 +0.020353,0.0615153,-0.0997366,-3.12245,-0.0353591,0.212474 +0.0203623,0.0614992,-0.0997215,-3.12266,-0.0354276,0.212427 +0.0203713,0.061484,-0.099707,-3.12286,-0.0354978,0.212381 +0.0203799,0.0614697,-0.0996929,-3.12306,-0.0355691,0.212338 +0.0203883,0.0614563,-0.0996795,-3.12325,-0.0356413,0.212296 +0.0203962,0.0614437,-0.0996666,-3.12343,-0.0357139,0.212255 +0.0204038,0.0614319,-0.0996544,-3.12361,-0.0357865,0.212216 +0.0204108,0.061421,-0.0996428,-3.12378,-0.0358586,0.212178 +0.0204173,0.0614108,-0.099632,-3.12395,-0.0359298,0.212142 +0.0204232,0.0614014,-0.0996219,-3.1241,-0.0359997,0.212107 +0.0204285,0.0613928,-0.0996127,-3.12425,-0.0360679,0.212072 +0.020433,0.0613848,-0.0996042,-3.12439,-0.0361339,0.212038 +0.0204369,0.0613776,-0.0995966,-3.12452,-0.0361974,0.212006 +0.02044,0.061371,-0.0995899,-3.12464,-0.0362579,0.211973 +0.0204423,0.061365,-0.099584,-3.12475,-0.036315,0.211941 +0.0204438,0.0613597,-0.0995791,-3.12485,-0.0363685,0.21191 +0.0204444,0.0613549,-0.099575,-3.12495,-0.036418,0.211879 +0.0204441,0.0613507,-0.0995719,-3.12503,-0.0364632,0.211848 +0.0204429,0.061347,-0.0995697,-3.1251,-0.0365038,0.211817 +0.0204409,0.0613438,-0.0995683,-3.12516,-0.0365396,0.211787 +0.020438,0.0613411,-0.0995679,-3.12521,-0.0365704,0.211757 +0.0204343,0.0613387,-0.0995682,-3.12525,-0.0365959,0.211727 +0.0204297,0.0613368,-0.0995694,-3.12528,-0.0366161,0.211698 +0.0204243,0.0613353,-0.0995714,-3.1253,-0.036631,0.211669 +0.0204182,0.0613341,-0.0995741,-3.12532,-0.0366403,0.21164 +0.0204114,0.0613333,-0.0995776,-3.12532,-0.0366441,0.211612 +0.020404,0.0613328,-0.0995816,-3.12531,-0.0366425,0.211585 +0.0203961,0.0613325,-0.0995862,-3.1253,-0.0366355,0.211559 +0.0203877,0.0613325,-0.0995914,-3.12527,-0.0366232,0.211534 +0.020379,0.0613328,-0.099597,-3.12524,-0.0366057,0.21151 +0.02037,0.0613333,-0.0996029,-3.1252,-0.0365833,0.211488 +0.0203608,0.061334,-0.0996092,-3.12515,-0.0365561,0.211468 +0.0203516,0.061335,-0.0996157,-3.1251,-0.0365244,0.211451 +0.0203425,0.0613361,-0.0996224,-3.12504,-0.0364883,0.211435 +0.0203335,0.0613375,-0.0996292,-3.12497,-0.0364484,0.211423 +0.0203249,0.0613391,-0.099636,-3.1249,-0.0364047,0.211413 +0.0203166,0.0613409,-0.0996428,-3.12483,-0.0363577,0.211406 +0.0203088,0.061343,-0.0996495,-3.12475,-0.0363077,0.211404 +0.0203015,0.0613453,-0.099656,-3.12466,-0.036255,0.211404 +0.020295,0.0613478,-0.0996625,-3.12457,-0.0362001,0.211409 +0.0202891,0.0613507,-0.0996687,-3.12448,-0.0361431,0.211418 +0.020284,0.0613539,-0.0996747,-3.12439,-0.0360845,0.211431 +0.0202798,0.0613575,-0.0996805,-3.12429,-0.0360246,0.211449 +0.0202763,0.0613614,-0.0996861,-3.12419,-0.0359637,0.211471 +0.0202737,0.0613658,-0.0996915,-3.12408,-0.0359021,0.211498 +0.0202719,0.0613707,-0.0996967,-3.12397,-0.0358401,0.211529 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-R_filtered.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-R_filtered.csv new file mode 100644 index 00000000..3be05d10 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/CoffeCappuccino-heart-R_filtered.csv @@ -0,0 +1,1258 @@ +0.013247,-0.0960563,-0.0251448,2.2424,0.002645,0.100934 +0.013249,-0.0960638,-0.0251392,2.24211,0.00262022,0.101017 +0.0132509,-0.0960719,-0.0251316,2.24179,0.00259165,0.101111 +0.0132526,-0.0960805,-0.0251221,2.24141,0.00255849,0.101219 +0.0132544,-0.0960897,-0.0251103,2.24098,0.00251985,0.10134 +0.0132563,-0.0960995,-0.0250961,2.24049,0.00247476,0.101474 +0.0132584,-0.0961099,-0.0250795,2.23994,0.00242217,0.101621 +0.0132608,-0.0961209,-0.0250602,2.23933,0.00236096,0.101781 +0.0132637,-0.0961325,-0.0250381,2.23866,0.00228991,0.101955 +0.0132673,-0.0961448,-0.0250132,2.23791,0.00220773,0.102141 +0.0132717,-0.0961578,-0.0249852,2.2371,0.00211304,0.102339 +0.0132772,-0.0961714,-0.0249541,2.2362,0.00200441,0.102549 +0.0132839,-0.0961859,-0.0249197,2.23523,0.00188033,0.10277 +0.0132921,-0.0962011,-0.024882,2.23418,0.0017392,0.103003 +0.0133021,-0.0962172,-0.0248409,2.23304,0.0015794,0.103245 +0.013314,-0.0962342,-0.0247963,2.23181,0.00139922,0.103496 +0.0133282,-0.0962522,-0.0247482,2.2305,0.00119693,0.103755 +0.013345,-0.0962713,-0.0246965,2.22909,0.000970752,0.104021 +0.0133647,-0.0962915,-0.0246412,2.22758,0.000718873,0.104293 +0.0133876,-0.096313,-0.0245824,2.22598,0.000439466,0.10457 +0.0134139,-0.0963359,-0.0245199,2.22427,0.000130691,0.10485 +0.0134442,-0.0963602,-0.0244539,2.22246,-0.00020929,0.105133 +0.0134786,-0.0963862,-0.0243844,2.22055,-0.000582301,0.105416 +0.0135176,-0.0964141,-0.0243115,2.21853,-0.000990143,0.105698 +0.0135615,-0.0964438,-0.0242352,2.21641,-0.00143458,0.105979 +0.0136106,-0.0964757,-0.0241556,2.21417,-0.00191731,0.106256 +0.0136653,-0.0965099,-0.0240729,2.21182,-0.00244,0.106528 +0.0137259,-0.0965467,-0.0239872,2.20935,-0.0030042,0.106794 +0.0137928,-0.0965862,-0.0238986,2.20678,-0.00361138,0.107052 +0.0138662,-0.0966286,-0.0238073,2.20408,-0.00426291,0.1073 +0.0139466,-0.0966743,-0.0237135,2.20128,-0.00496004,0.107538 +0.0140342,-0.0967234,-0.0236175,2.19835,-0.00570385,0.107765 +0.0141292,-0.0967762,-0.0235193,2.19531,-0.0064953,0.107978 +0.0142319,-0.096833,-0.0234192,2.19215,-0.00733519,0.108178 +0.0143426,-0.096894,-0.0233176,2.18887,-0.0082241,0.108362 +0.0144614,-0.0969595,-0.0232146,2.18548,-0.00916247,0.10853 +0.0145885,-0.0970299,-0.0231106,2.18197,-0.0101505,0.108682 +0.0147241,-0.0971053,-0.0230057,2.17834,-0.0111882,0.108816 +0.0148682,-0.0971861,-0.0229004,2.1746,-0.0122752,0.108933 +0.0150209,-0.0972725,-0.0227948,2.17074,-0.0134112,0.109032 +0.0151822,-0.0973648,-0.0226894,2.16677,-0.0145955,0.109112 +0.0153521,-0.0974633,-0.0225844,2.1627,-0.0158269,0.109175 +0.0155305,-0.0975682,-0.0224801,2.15851,-0.0171044,0.109219 +0.0157173,-0.0976799,-0.022377,2.15422,-0.0184264,0.109246 +0.0159123,-0.0977984,-0.0222752,2.14982,-0.0197911,0.109256 +0.0161153,-0.0979241,-0.0221751,2.14532,-0.0211966,0.10925 +0.016326,-0.0980572,-0.0220771,2.14073,-0.0226405,0.109228 +0.0165441,-0.0981977,-0.0219815,2.13604,-0.0241202,0.109193 +0.0167693,-0.0983459,-0.0218886,2.13127,-0.0256329,0.109144 +0.017001,-0.0985019,-0.0217987,2.1264,-0.0271757,0.109084 +0.0172389,-0.0986658,-0.021712,2.12146,-0.028745,0.109015 +0.0174823,-0.0988376,-0.021629,2.11644,-0.0303374,0.108937 +0.0177307,-0.0990174,-0.0215498,2.11135,-0.031949,0.108854 +0.0179834,-0.0992051,-0.0214748,2.1062,-0.0335759,0.108766 +0.0182398,-0.0994008,-0.0214041,2.10099,-0.0352139,0.108677 +0.0184991,-0.0996042,-0.0213381,2.09572,-0.0368585,0.108589 +0.0187606,-0.0998154,-0.0212769,2.09041,-0.0385052,0.108503 +0.0190234,-0.100034,-0.0212207,2.08506,-0.0401494,0.108422 +0.0192867,-0.10026,-0.0211697,2.07968,-0.0417863,0.10835 +0.0195496,-0.100493,-0.021124,2.07427,-0.0434109,0.108288 +0.0198111,-0.100733,-0.0210837,2.06885,-0.0450184,0.108239 +0.0200705,-0.100979,-0.021049,2.06342,-0.0466037,0.108205 +0.0203266,-0.101231,-0.0210197,2.05798,-0.0481619,0.10819 +0.0205786,-0.101488,-0.0209961,2.05256,-0.0496879,0.108195 +0.0208254,-0.101751,-0.020978,2.04716,-0.0511769,0.108224 +0.0210661,-0.102018,-0.0209654,2.04178,-0.0526239,0.108278 +0.0212997,-0.102289,-0.0209582,2.03644,-0.0540243,0.108361 +0.0215251,-0.102563,-0.0209563,2.03115,-0.0553734,0.108474 +0.0217415,-0.102839,-0.0209594,2.02591,-0.0566668,0.108619 +0.0219478,-0.103118,-0.0209674,2.02073,-0.0579003,0.108799 +0.0221432,-0.103397,-0.02098,2.01563,-0.0590699,0.109015 +0.0223268,-0.103677,-0.020997,2.01061,-0.0601718,0.10927 +0.0224977,-0.103956,-0.0210178,2.00568,-0.0612027,0.109564 +0.0226551,-0.104234,-0.0210423,2.00086,-0.0621593,0.1099 +0.0227982,-0.10451,-0.0210698,1.99614,-0.0630389,0.110278 +0.0229263,-0.104782,-0.0211,1.99155,-0.063839,0.110699 +0.0230387,-0.105051,-0.0211323,1.98709,-0.0645576,0.111165 +0.023135,-0.105314,-0.0211662,1.98276,-0.0651931,0.111675 +0.0232145,-0.105572,-0.021201,1.97858,-0.0657442,0.112231 +0.0232768,-0.105822,-0.0212362,1.97456,-0.0662102,0.112832 +0.0233215,-0.106065,-0.0212709,1.97069,-0.0665908,0.113479 +0.0233484,-0.1063,-0.0213045,1.967,-0.066886,0.114171 +0.0233572,-0.106524,-0.0213363,1.96348,-0.0670964,0.114908 +0.0233479,-0.106738,-0.0213655,1.96014,-0.0672232,0.11569 +0.0233204,-0.106941,-0.0213912,1.95699,-0.0672678,0.116514 +0.0232748,-0.107132,-0.0214127,1.95404,-0.0672323,0.117381 +0.0232112,-0.107309,-0.0214291,1.95128,-0.067119,0.11829 +0.0231299,-0.107472,-0.0214395,1.94872,-0.0669309,0.119237 +0.0230313,-0.107621,-0.0214431,1.94637,-0.0666713,0.120223 +0.0229158,-0.107755,-0.0214389,1.94422,-0.0663439,0.121245 +0.022784,-0.107872,-0.0214263,1.94229,-0.0659528,0.122301 +0.0226364,-0.107973,-0.0214042,1.94056,-0.0655027,0.123389 +0.0224738,-0.108057,-0.0213719,1.93905,-0.0649983,0.124506 +0.0222971,-0.108123,-0.0213284,1.93775,-0.0644449,0.125651 +0.022107,-0.10817,-0.0212731,1.93667,-0.0638478,0.12682 +0.0219047,-0.1082,-0.0212051,1.93579,-0.0632129,0.128011 +0.0216911,-0.10821,-0.0211237,1.93512,-0.0625461,0.129221 +0.0214673,-0.108201,-0.0210282,1.93465,-0.0618536,0.130446 +0.0212346,-0.108173,-0.020918,1.93439,-0.0611416,0.131684 +0.0209941,-0.108125,-0.0207925,1.93433,-0.0604166,0.132932 +0.0207473,-0.108059,-0.0206511,1.93446,-0.059685,0.134186 +0.0204953,-0.107972,-0.0204934,1.93478,-0.0589533,0.135443 +0.0202398,-0.107867,-0.020319,1.93528,-0.058228,0.136699 +0.0199819,-0.107742,-0.0201276,1.93596,-0.0575155,0.137951 +0.0197233,-0.107599,-0.0199189,1.9368,-0.0568222,0.139196 +0.0194653,-0.107437,-0.0196928,1.93781,-0.0561543,0.140429 +0.0192094,-0.107257,-0.0194493,1.93898,-0.0555177,0.141648 +0.0189572,-0.10706,-0.0191884,1.94029,-0.0549183,0.142848 +0.01871,-0.106847,-0.0189101,1.94173,-0.0543616,0.144027 +0.0184694,-0.106617,-0.0186148,1.9433,-0.0538529,0.145181 +0.0182367,-0.106372,-0.0183027,1.945,-0.053397,0.146305 +0.0180134,-0.106112,-0.0179743,1.9468,-0.0529987,0.147398 +0.0178008,-0.105839,-0.01763,1.94869,-0.0526621,0.148454 +0.0176003,-0.105553,-0.0172705,1.95068,-0.052391,0.149471 +0.0174132,-0.105256,-0.0168965,1.95274,-0.0521888,0.150446 +0.0172405,-0.104948,-0.0165087,1.95487,-0.0520583,0.151375 +0.0170835,-0.104631,-0.0161082,1.95705,-0.0520022,0.152255 +0.0169433,-0.104307,-0.0156958,1.95928,-0.0520222,0.153084 +0.0168207,-0.103975,-0.0152727,1.96154,-0.05212,0.153857 +0.0167168,-0.103639,-0.01484,1.96382,-0.0522964,0.154573 +0.0166323,-0.103298,-0.0143989,1.96612,-0.0525521,0.155229 +0.016568,-0.102956,-0.0139507,1.96841,-0.0528869,0.155823 +0.0165244,-0.102612,-0.0134968,1.97069,-0.0533004,0.156351 +0.016502,-0.102269,-0.0130386,1.97295,-0.0537916,0.156813 +0.0165013,-0.101928,-0.0125777,1.97517,-0.054359,0.157205 +0.0165226,-0.101591,-0.0121154,1.97736,-0.0550006,0.157528 +0.016566,-0.101259,-0.0116533,1.97948,-0.055714,0.157778 +0.0166316,-0.100934,-0.0111931,1.98155,-0.0564965,0.157954 +0.0167193,-0.100618,-0.0107364,1.98354,-0.0573446,0.158057 +0.016829,-0.100311,-0.0102846,1.98544,-0.0582548,0.158084 +0.0169605,-0.100016,-0.00983956,1.98726,-0.059223,0.158036 +0.0171133,-0.0997348,-0.00940272,1.98897,-0.0602448,0.157912 +0.0172869,-0.0994678,-0.00897573,1.99057,-0.0613156,0.157712 +0.0174807,-0.099217,-0.00856013,1.99205,-0.0624303,0.157438 +0.0176941,-0.0989837,-0.00815746,1.99341,-0.0635838,0.157089 +0.0179261,-0.0987693,-0.0077692,1.99464,-0.0647705,0.156666 +0.0181759,-0.0985751,-0.0073968,1.99573,-0.0659848,0.156171 +0.0184425,-0.0984024,-0.00704162,1.99667,-0.0672208,0.155606 +0.0187247,-0.0982523,-0.00670499,1.99746,-0.0684726,0.154972 +0.0190213,-0.0981259,-0.00638814,1.9981,-0.069734,0.154272 +0.0193311,-0.0980242,-0.00609224,1.99857,-0.070999,0.153509 +0.0196528,-0.0979481,-0.00581835,1.99889,-0.0722613,0.152685 +0.0199848,-0.0978984,-0.00556748,1.99903,-0.0735147,0.151804 +0.0203258,-0.0978758,-0.0053405,1.99901,-0.074753,0.150869 +0.0206743,-0.0978808,-0.0051382,1.99882,-0.0759701,0.149885 +0.0210285,-0.097914,-0.00496126,1.99845,-0.0771599,0.148855 +0.0213869,-0.0979756,-0.00481026,1.99792,-0.0783165,0.147785 +0.0217479,-0.0980659,-0.00468566,1.99721,-0.0794338,0.146678 +0.0221098,-0.098185,-0.00458782,1.99633,-0.0805064,0.145541 +0.0224709,-0.0983328,-0.00451696,1.99527,-0.0815285,0.144378 +0.0228294,-0.0985091,-0.0044732,1.99405,-0.082495,0.143196 +0.0231838,-0.0987137,-0.00445656,1.99266,-0.0834005,0.141999 +0.0235322,-0.0989461,-0.00446692,1.99112,-0.0842403,0.140794 +0.0238731,-0.0992058,-0.00450405,1.98941,-0.0850098,0.139588 +0.0242048,-0.0994921,-0.00456762,1.98755,-0.0857044,0.138386 +0.0245256,-0.099804,-0.00465718,1.98554,-0.0863202,0.137194 +0.0248341,-0.100141,-0.00477218,1.98338,-0.0868534,0.13602 +0.0251286,-0.100501,-0.00491195,1.98109,-0.0873005,0.13487 +0.0254078,-0.100884,-0.00507574,1.97868,-0.0876583,0.13375 +0.0256702,-0.101288,-0.00526269,1.97614,-0.087924,0.132667 +0.0259144,-0.101712,-0.00547185,1.97348,-0.0880953,0.131628 +0.0261394,-0.102154,-0.00570217,1.97072,-0.0881699,0.130638 +0.0263437,-0.102613,-0.00595255,1.96787,-0.0881463,0.129705 +0.0265265,-0.103086,-0.00622179,1.96492,-0.0880231,0.128833 +0.0266868,-0.103573,-0.00650861,1.96191,-0.0877993,0.12803 +0.0268235,-0.104071,-0.00681168,1.95882,-0.0874744,0.1273 +0.0269361,-0.104578,-0.00712962,1.95568,-0.0870483,0.12665 +0.0270238,-0.105093,-0.00746097,1.95249,-0.0865212,0.126084 +0.027086,-0.105612,-0.00780423,1.94927,-0.0858939,0.125607 +0.0271225,-0.106135,-0.00815789,1.94602,-0.0851673,0.125224 +0.0271328,-0.106659,-0.00852036,1.94277,-0.084343,0.124939 +0.0271168,-0.107182,-0.00889006,1.93951,-0.0834229,0.124755 +0.0270744,-0.107701,-0.00926536,1.93626,-0.0824094,0.124675 +0.0270057,-0.108215,-0.00964463,1.93304,-0.0813051,0.124702 +0.0269109,-0.108721,-0.0100262,1.92986,-0.0801132,0.124839 +0.0267903,-0.109218,-0.0104086,1.92672,-0.0788372,0.125087 +0.0266444,-0.109702,-0.0107899,1.92363,-0.0774811,0.125447 +0.0264737,-0.110173,-0.0111687,1.92062,-0.0760492,0.12592 +0.026279,-0.110628,-0.0115434,1.91769,-0.0745462,0.126505 +0.0260609,-0.111065,-0.0119122,1.91485,-0.072977,0.127204 +0.0258206,-0.111483,-0.0122738,1.91211,-0.071347,0.128013 +0.025559,-0.111879,-0.0126265,1.90948,-0.0696621,0.128932 +0.0252772,-0.112252,-0.012969,1.90697,-0.0679281,0.129959 +0.0249766,-0.112599,-0.0132997,1.9046,-0.0661514,0.13109 +0.0246584,-0.112921,-0.0136173,1.90236,-0.0643386,0.132323 +0.0243242,-0.113215,-0.0139204,1.90027,-0.0624964,0.133653 +0.0239754,-0.113479,-0.0142079,1.89833,-0.060632,0.135076 +0.0236136,-0.113714,-0.0144785,1.89656,-0.0587525,0.136587 +0.0232406,-0.113917,-0.0147311,1.89495,-0.0568654,0.13818 +0.0228581,-0.114089,-0.0149646,1.89352,-0.0549781,0.13985 +0.0224679,-0.114227,-0.0151782,1.89226,-0.0530984,0.14159 +0.0220718,-0.114332,-0.0153708,1.89119,-0.0512338,0.143394 +0.0216718,-0.114403,-0.0155419,1.8903,-0.0493922,0.145253 +0.0212697,-0.114439,-0.0156905,1.88959,-0.0475812,0.147162 +0.0208676,-0.114441,-0.0158162,1.88908,-0.0458086,0.149111 +0.0204673,-0.114409,-0.0159185,1.88875,-0.0440819,0.151093 +0.0200708,-0.114342,-0.0159969,1.88862,-0.0424087,0.1531 +0.0196802,-0.114242,-0.0160511,1.88867,-0.0407964,0.155122 +0.0192972,-0.114108,-0.0160809,1.88891,-0.0392521,0.157152 +0.0189239,-0.11394,-0.0160863,1.88933,-0.0377828,0.15918 +0.0185622,-0.113741,-0.0160673,1.88993,-0.0363952,0.161197 +0.0182139,-0.11351,-0.0160239,1.8907,-0.0350956,0.163195 +0.0178807,-0.113249,-0.0159565,1.89165,-0.0338903,0.165165 +0.0175645,-0.112958,-0.0158652,1.89275,-0.0327849,0.167099 +0.0172668,-0.11264,-0.0157507,1.89402,-0.0317847,0.168986 +0.0169893,-0.112295,-0.0156133,1.89543,-0.0308947,0.17082 +0.0167335,-0.111924,-0.0154537,1.89699,-0.0301193,0.172592 +0.0165008,-0.111531,-0.0152726,1.89868,-0.0294626,0.174294 +0.0162925,-0.111116,-0.015071,1.90049,-0.0289279,0.175918 +0.0161098,-0.110681,-0.0148496,1.90241,-0.0285184,0.177458 +0.0159539,-0.110228,-0.0146095,1.90444,-0.0282364,0.178905 +0.0158257,-0.109759,-0.0143518,1.90655,-0.0280839,0.180254 +0.015726,-0.109277,-0.0140775,1.90874,-0.0280621,0.181499 +0.0156557,-0.108782,-0.0137881,1.911,-0.0281719,0.182633 +0.0156152,-0.108278,-0.0134846,1.91332,-0.0284134,0.183653 +0.0156052,-0.107767,-0.0131685,1.91568,-0.0287862,0.184553 +0.0156259,-0.107251,-0.0128412,1.91806,-0.0292894,0.18533 +0.0156776,-0.106732,-0.0125041,1.92046,-0.0299213,0.18598 +0.0157603,-0.106213,-0.0121587,1.92287,-0.0306799,0.1865 +0.015874,-0.105695,-0.0118065,1.92526,-0.0315624,0.186888 +0.0160183,-0.105182,-0.011449,1.92763,-0.0325657,0.187143 +0.0161931,-0.104675,-0.0110878,1.92997,-0.0336859,0.187263 +0.0163978,-0.104177,-0.0107245,1.93225,-0.0349187,0.187249 +0.0166317,-0.10369,-0.0103605,1.93448,-0.0362594,0.187101 +0.0168942,-0.103216,-0.00999735,1.93663,-0.0377026,0.18682 +0.0171844,-0.102757,-0.00963665,1.93869,-0.0392427,0.186407 +0.0175012,-0.102316,-0.00927984,1.94065,-0.0408735,0.185864 +0.0178435,-0.101893,-0.00892838,1.94251,-0.0425885,0.185195 +0.01821,-0.101492,-0.00858366,1.94424,-0.0443808,0.184403 +0.0185995,-0.101114,-0.00824706,1.94585,-0.0462431,0.183492 +0.0190105,-0.100761,-0.00791987,1.94731,-0.048168,0.182466 +0.0194413,-0.100433,-0.00760333,1.94863,-0.0501475,0.181332 +0.0198904,-0.100134,-0.00729859,1.94978,-0.0521737,0.180093 +0.020356,-0.0998635,-0.00700676,1.95078,-0.0542383,0.178758 +0.0208362,-0.0996233,-0.00672885,1.9516,-0.056333,0.177331 +0.0213293,-0.0994146,-0.00646577,1.95224,-0.0584492,0.175821 +0.0218333,-0.0992383,-0.00621836,1.9527,-0.0605785,0.174235 +0.022346,-0.0990951,-0.00598737,1.95298,-0.062712,0.17258 +0.0228656,-0.0989857,-0.00577343,1.95306,-0.0648413,0.170866 +0.02339,-0.0989106,-0.0055771,1.95295,-0.0669576,0.1691 +0.023917,-0.0988703,-0.00539882,1.95264,-0.0690524,0.167291 +0.0244445,-0.0988648,-0.00523894,1.95214,-0.0711173,0.165448 +0.0249704,-0.0988942,-0.00509771,1.95143,-0.073144,0.163581 +0.0254926,-0.0989585,-0.00497526,1.95054,-0.0751243,0.161699 +0.026009,-0.0990573,-0.00487164,1.94944,-0.0770502,0.159811 +0.0265175,-0.0991902,-0.00478681,1.94816,-0.0789141,0.157927 +0.0270161,-0.0993566,-0.0047206,1.94669,-0.0807086,0.156056 +0.0275027,-0.0995559,-0.00467277,1.94503,-0.0824264,0.154209 +0.0279754,-0.0997871,-0.00464299,1.94319,-0.0840608,0.152393 +0.0284323,-0.100049,-0.00463083,1.94118,-0.0856053,0.15062 +0.0288715,-0.100341,-0.0046358,1.939,-0.0870538,0.148898 +0.0292914,-0.100661,-0.00465731,1.93666,-0.0884007,0.147236 +0.0296903,-0.101008,-0.00469471,1.93416,-0.0896406,0.145643 +0.0300665,-0.101381,-0.00474728,1.93153,-0.0907689,0.144127 +0.0304187,-0.101777,-0.00481422,1.92876,-0.0917811,0.142697 +0.0307455,-0.102196,-0.00489471,1.92586,-0.0926735,0.141361 +0.0310456,-0.102634,-0.00498786,1.92285,-0.0934426,0.140126 +0.0313178,-0.103091,-0.00509272,1.91973,-0.0940855,0.139 +0.0315613,-0.103564,-0.00520834,1.91652,-0.0946001,0.137989 +0.031775,-0.10405,-0.0053337,1.91323,-0.0949843,0.137098 +0.0319584,-0.104548,-0.00546778,1.90987,-0.0952371,0.136335 +0.0321107,-0.105056,-0.00560954,1.90645,-0.0953577,0.135704 +0.0322315,-0.105571,-0.00575791,1.90299,-0.0953458,0.13521 +0.0323204,-0.10609,-0.00591183,1.89949,-0.0952019,0.134856 +0.0323774,-0.106611,-0.00607023,1.89598,-0.0949269,0.134647 +0.0324023,-0.107133,-0.00623206,1.89246,-0.0945222,0.134584 +0.0323952,-0.107652,-0.00639626,1.88894,-0.0939898,0.13467 +0.0323565,-0.108166,-0.00656179,1.88544,-0.0933322,0.134906 +0.0322864,-0.108673,-0.00672764,1.88198,-0.0925524,0.135293 +0.0321855,-0.109169,-0.00689283,1.87856,-0.091654,0.135831 +0.0320545,-0.109654,-0.00705638,1.8752,-0.0906409,0.136519 +0.0318942,-0.110124,-0.00721737,1.87192,-0.0895176,0.137356 +0.0317054,-0.110578,-0.00737491,1.86871,-0.0882892,0.13834 +0.0314893,-0.111013,-0.00752815,1.8656,-0.086961,0.139468 +0.0312471,-0.111426,-0.00767627,1.86259,-0.0855387,0.140736 +0.0309799,-0.111817,-0.00781852,1.8597,-0.0840285,0.14214 +0.0306893,-0.112182,-0.00795419,1.85694,-0.0824371,0.143676 +0.0303767,-0.112521,-0.00808259,1.85432,-0.0807712,0.145337 +0.0300437,-0.112831,-0.00820313,1.85185,-0.0790381,0.147118 +0.029692,-0.11311,-0.00831524,1.84954,-0.0772452,0.149011 +0.0293234,-0.113358,-0.00841842,1.84739,-0.0754002,0.151009 +0.0289397,-0.113573,-0.00851221,1.84542,-0.073511,0.153105 +0.0285428,-0.113754,-0.00859622,1.84362,-0.0715858,0.155289 +0.0281347,-0.113899,-0.0086701,1.84202,-0.0696327,0.157552 +0.0277173,-0.114008,-0.00873358,1.84061,-0.06766,0.159885 +0.0272928,-0.11408,-0.00878642,1.8394,-0.0656762,0.162278 +0.0268632,-0.114114,-0.00882846,1.83839,-0.0636897,0.16472 +0.0264306,-0.11411,-0.00885956,1.8376,-0.0617087,0.167201 +0.025997,-0.114068,-0.00887967,1.83701,-0.0597418,0.169709 +0.0255646,-0.113987,-0.00888877,1.83663,-0.057797,0.172234 +0.0251355,-0.113868,-0.0088869,1.83646,-0.0558826,0.174763 +0.0247116,-0.113711,-0.00887414,1.83651,-0.0540065,0.177285 +0.0242951,-0.113516,-0.00885065,1.83677,-0.0521764,0.179789 +0.0238879,-0.113285,-0.00881659,1.83724,-0.0503997,0.182263 +0.023492,-0.113017,-0.00877219,1.83792,-0.0486838,0.184694 +0.0231091,-0.112713,-0.00871774,1.8388,-0.0470355,0.187072 +0.0227413,-0.112376,-0.00865354,1.83988,-0.0454614,0.189386 +0.0223901,-0.112005,-0.00857993,1.84116,-0.0439676,0.191623 +0.0220572,-0.111604,-0.00849731,1.84262,-0.04256,0.193774 +0.0217442,-0.111172,-0.0084061,1.84426,-0.041244,0.195827 +0.0214526,-0.110712,-0.00830674,1.84608,-0.0400243,0.197772 +0.0211837,-0.110226,-0.00819972,1.84806,-0.0389056,0.1996 +0.0209387,-0.109716,-0.00808553,1.8502,-0.0378916,0.201302 +0.0207189,-0.109184,-0.00796471,1.85248,-0.036986,0.202869 +0.0205251,-0.108633,-0.00783779,1.85489,-0.0361916,0.204292 +0.0203584,-0.108064,-0.00770533,1.85743,-0.0355109,0.205566 +0.0202193,-0.10748,-0.0075679,1.86007,-0.0349457,0.206682 +0.0201087,-0.106883,-0.00742609,1.86281,-0.0344973,0.207635 +0.0200269,-0.106278,-0.00728048,1.86564,-0.0341667,0.208421 +0.0199743,-0.105665,-0.00713166,1.86853,-0.0339541,0.209034 +0.0199512,-0.105048,-0.00698021,1.87148,-0.0338592,0.209471 +0.0199576,-0.10443,-0.00682672,1.87446,-0.0338813,0.20973 +0.0199934,-0.103813,-0.00667176,1.87747,-0.0340191,0.209809 +0.0200584,-0.1032,-0.0065159,1.88049,-0.0342708,0.209707 +0.0201524,-0.102595,-0.00635968,1.8835,-0.0346342,0.209425 +0.0202748,-0.102,-0.00620364,1.88649,-0.0351065,0.208962 +0.020425,-0.101418,-0.0060483,1.88944,-0.0356846,0.208322 +0.0206023,-0.100851,-0.00589414,1.89234,-0.0363649,0.207507 +0.0208059,-0.100303,-0.00574164,1.89516,-0.0371433,0.206521 +0.0210348,-0.0997758,-0.00559123,1.8979,-0.0380156,0.205368 +0.0212879,-0.0992723,-0.00544332,1.90054,-0.0389768,0.204054 +0.0215639,-0.0987948,-0.00529829,1.90305,-0.0400221,0.202584 +0.0218617,-0.0983458,-0.0051565,1.90544,-0.041146,0.200967 +0.0221797,-0.0979276,-0.00501825,1.90768,-0.0423428,0.19921 +0.0225165,-0.0975423,-0.00488383,1.90977,-0.0436067,0.197322 +0.0228705,-0.0971918,-0.00475348,1.91167,-0.0449315,0.195311 +0.0232401,-0.0968781,-0.00462741,1.9134,-0.0463109,0.193188 +0.0236235,-0.0966027,-0.00450581,1.91493,-0.0477384,0.190962 +0.0240189,-0.0963672,-0.00438881,1.91625,-0.0492074,0.188646 +0.0244246,-0.0961728,-0.00427651,1.91736,-0.050711,0.18625 +0.0248386,-0.0960208,-0.004169,1.91824,-0.0522425,0.183786 +0.025259,-0.095912,-0.00406632,1.91889,-0.0537949,0.181265 +0.0256838,-0.0958471,-0.00396848,1.91929,-0.0553611,0.178702 +0.0261111,-0.0958267,-0.00387547,1.91946,-0.0569342,0.176107 +0.026539,-0.095851,-0.00378726,1.91937,-0.0585072,0.173494 +0.0269654,-0.0959201,-0.00370377,1.91904,-0.0600729,0.170875 +0.0273883,-0.0960338,-0.00362493,1.91845,-0.0616244,0.168263 +0.0278059,-0.0961919,-0.00355064,1.9176,-0.0631548,0.16567 +0.0282161,-0.0963937,-0.00348078,1.91651,-0.064657,0.163109 +0.028617,-0.0966384,-0.00341524,1.91516,-0.0661242,0.160593 +0.0290069,-0.096925,-0.00335387,1.91357,-0.0675496,0.158132 +0.0293838,-0.0972522,-0.00329654,1.91174,-0.0689266,0.155738 +0.029746,-0.0976186,-0.00324312,1.90967,-0.0702485,0.153423 +0.0300918,-0.0980226,-0.00319346,1.90738,-0.0715089,0.151197 +0.0304196,-0.0984623,-0.00314742,1.90487,-0.0727013,0.149069 +0.0307277,-0.0989357,-0.0031049,1.90215,-0.0738194,0.14705 +0.0310147,-0.0994406,-0.00306576,1.89924,-0.0748572,0.145148 +0.0312792,-0.0999746,-0.00302991,1.89615,-0.0758086,0.143371 +0.0315198,-0.100535,-0.00299727,1.89289,-0.0766678,0.141727 +0.0317353,-0.10112,-0.00296775,1.88948,-0.077429,0.140221 +0.0319246,-0.101725,-0.00294133,1.88594,-0.0780867,0.138859 +0.0320867,-0.102349,-0.00291795,1.88228,-0.0786355,0.137647 +0.0322206,-0.102988,-0.00289763,1.87852,-0.0790701,0.136588 +0.0323254,-0.103639,-0.00288038,1.87469,-0.0793855,0.135686 +0.0324005,-0.104299,-0.00286622,1.8708,-0.0795768,0.134941 +0.0324453,-0.104965,-0.00285523,1.86687,-0.0796393,0.134357 +0.0324592,-0.105632,-0.00284749,1.86292,-0.0795686,0.133933 +0.0324419,-0.106299,-0.0028431,1.85899,-0.0793605,0.133668 +0.032393,-0.106962,-0.00284218,1.85509,-0.0790108,0.133561 +0.0323125,-0.107617,-0.00284487,1.85124,-0.0785158,0.13361 +0.0322002,-0.108261,-0.00285133,1.84746,-0.0778721,0.133812 +0.0320562,-0.10889,-0.00286173,1.84379,-0.0770763,0.134162 +0.0318806,-0.109503,-0.00287624,1.84024,-0.0761255,0.134657 +0.0316737,-0.110095,-0.00289505,1.83684,-0.0750171,0.13529 +0.0314359,-0.110663,-0.00291834,1.8336,-0.0737488,0.136056 +0.0311676,-0.111205,-0.00294629,1.83056,-0.0723185,0.136947 +0.0308694,-0.111718,-0.00297908,1.82774,-0.0707248,0.137955 +0.0305421,-0.112199,-0.00301688,1.82515,-0.0689663,0.139074 +0.0301862,-0.112646,-0.00305984,1.82281,-0.0670422,0.140294 +0.0298027,-0.113055,-0.0031081,1.82075,-0.0649522,0.141607 +0.0293926,-0.113426,-0.00316175,1.81899,-0.0626962,0.143002 +0.0289568,-0.113756,-0.00322089,1.81754,-0.0602749,0.14447 +0.0284964,-0.114043,-0.00328556,1.81641,-0.0576891,0.146002 +0.0280127,-0.114285,-0.00335579,1.81564,-0.0549404,0.147586 +0.0275069,-0.114482,-0.00343153,1.81522,-0.0520307,0.149212 +0.0269802,-0.114631,-0.00351273,1.81517,-0.0489625,0.150871 +0.0264341,-0.114733,-0.00359926,1.8155,-0.0457389,0.152551 +0.0258701,-0.114786,-0.00369096,1.81623,-0.0423634,0.154242 +0.0252896,-0.11479,-0.00378762,1.81735,-0.0388403,0.155934 +0.0246941,-0.114744,-0.00388896,1.81888,-0.0351741,0.157617 +0.0240854,-0.114649,-0.00399467,1.82082,-0.0313701,0.159279 +0.0234649,-0.114505,-0.00410435,1.82318,-0.0274342,0.160913 +0.0228344,-0.114311,-0.00421758,1.82594,-0.0233726,0.162509 +0.0221956,-0.11407,-0.00433387,1.82912,-0.0191923,0.164057 +0.0215501,-0.113781,-0.00445267,1.83271,-0.0149007,0.165548 +0.0208998,-0.113446,-0.0045734,1.83671,-0.0105057,0.166976 +0.0202464,-0.113066,-0.00469541,1.8411,-0.00601571,0.168332 +0.0195917,-0.112642,-0.00481801,1.84588,-0.00143972,0.169608 +0.0189375,-0.112177,-0.00494047,1.85105,0.00321298,0.170799 +0.0182854,-0.111673,-0.00506202,1.85658,0.00793261,0.171899 +0.0176374,-0.11113,-0.00518185,1.86247,0.012709,0.172901 +0.0169952,-0.110552,-0.00529914,1.86869,0.0175318,0.173801 +0.0163604,-0.109942,-0.00541302,1.87524,0.02239,0.174595 +0.0157348,-0.109301,-0.00552264,1.8821,0.0272727,0.175279 +0.0151202,-0.108632,-0.00562709,1.88925,0.0321687,0.175851 +0.0145181,-0.107938,-0.0057255,1.89666,0.0370664,0.176306 +0.0139301,-0.107223,-0.00581698,1.90431,0.0419544,0.176644 +0.0133579,-0.106488,-0.00590066,1.91219,0.046821,0.176863 +0.012803,-0.105738,-0.00597566,1.92027,0.0516547,0.176963 +0.0122667,-0.104974,-0.00604117,1.92852,0.0564439,0.176943 +0.0117506,-0.104202,-0.00609637,1.93692,0.0611772,0.176804 +0.011256,-0.103423,-0.00614049,1.94544,0.0658433,0.176546 +0.010784,-0.10264,-0.00617281,1.95406,0.0704311,0.176171 +0.0103359,-0.101858,-0.00619264,1.96275,0.0749298,0.175679 +0.00991281,-0.101079,-0.00619938,1.97149,0.0793291,0.175075 +0.00951572,-0.100306,-0.00619245,1.98024,0.0836189,0.174359 +0.00914556,-0.0995428,-0.00617136,1.98899,0.0877895,0.173535 +0.00880316,-0.0987918,-0.0061357,1.9977,0.0918318,0.172607 +0.00848924,-0.098056,-0.00608511,2.00635,0.0957373,0.171577 +0.00820444,-0.0973383,-0.00601932,2.01492,0.0994978,0.170449 +0.00794929,-0.0966413,-0.00593814,2.02338,0.103106,0.169228 +0.00772419,-0.0959678,-0.00584147,2.03171,0.106555,0.167918 +0.00752946,-0.09532,-0.00572929,2.03988,0.109839,0.166523 +0.0073653,-0.0947003,-0.00560166,2.04787,0.112953,0.165048 +0.0072318,-0.0941109,-0.00545872,2.05567,0.115891,0.163499 +0.00712891,-0.0935536,-0.00530073,2.06324,0.11865,0.161879 +0.00705652,-0.0930304,-0.005128,2.07058,0.121227,0.160194 +0.00701435,-0.0925427,-0.00494094,2.07766,0.12362,0.15845 +0.00700205,-0.0920922,-0.00474002,2.08447,0.125827,0.156651 +0.00701914,-0.0916799,-0.00452583,2.091,0.127847,0.154804 +0.00706503,-0.091307,-0.00429899,2.09723,0.12968,0.152913 +0.00713905,-0.0909743,-0.00406022,2.10315,0.131327,0.150984 +0.00724039,-0.0906825,-0.00381029,2.10874,0.13279,0.149023 +0.00736816,-0.0904321,-0.00355004,2.11401,0.13407,0.147035 +0.00752138,-0.0902232,-0.00328036,2.11894,0.135171,0.145026 +0.00769898,-0.0900561,-0.0030022,2.12353,0.136096,0.143002 +0.00789979,-0.0899305,-0.00271655,2.12776,0.136849,0.140967 +0.00812257,-0.0898462,-0.00242443,2.13165,0.137435,0.138929 +0.00836601,-0.0898028,-0.00212691,2.13518,0.13786,0.136892 +0.00862873,-0.0897995,-0.00182506,2.13836,0.138129,0.134861 +0.0089093,-0.0898355,-0.00152,2.14119,0.138249,0.132844 +0.00920623,-0.08991,-0.00121283,2.14367,0.138226,0.130844 +0.00951799,-0.0900217,-0.000904672,2.1458,0.138068,0.128868 +0.00984302,-0.0901694,-0.000596652,2.14759,0.137782,0.126921 +0.0101797,-0.0903517,-0.000289878,2.14904,0.137375,0.125008 +0.0105265,-0.0905671,1.45545e-05,2.15016,0.136855,0.123136 +0.0108817,-0.090814,0.00031557,2.15095,0.136231,0.121308 +0.0112437,-0.0910907,0.000612121,2.15143,0.13551,0.11953 +0.011611,-0.0913953,0.000903191,2.1516,0.1347,0.117807 +0.0119819,-0.0917261,0.0011878,2.15148,0.13381,0.116144 +0.0123548,-0.0920811,0.00146502,2.15106,0.132848,0.114546 +0.0127283,-0.0924582,0.00173396,2.15037,0.131821,0.113018 +0.0131008,-0.0928556,0.0019938,2.14941,0.130737,0.111563 +0.013471,-0.0932711,0.00224374,2.14819,0.129603,0.110187 +0.0138373,-0.0937027,0.00248308,2.14673,0.128427,0.108892 +0.0141986,-0.0941483,0.00271117,2.14504,0.127215,0.107685 +0.0145535,-0.094606,0.00292741,2.14311,0.125975,0.106567 +0.0149009,-0.0950736,0.00313129,2.14098,0.124711,0.105542 +0.0152398,-0.0955493,0.00332237,2.13865,0.12343,0.104615 +0.0155691,-0.0960311,0.00350026,2.13612,0.122137,0.103786 +0.0158879,-0.096517,0.00366467,2.13341,0.120837,0.10306 +0.0161955,-0.0970053,0.00381537,2.13054,0.119533,0.102439 +0.0164911,-0.0974941,0.00395219,2.1275,0.11823,0.101925 +0.0167743,-0.0979819,0.00407506,2.12431,0.116931,0.101518 +0.0170444,-0.0984669,0.00418397,2.12099,0.115639,0.101222 +0.0173011,-0.0989477,0.00427897,2.11752,0.114355,0.101037 +0.0175441,-0.0994229,0.0043602,2.11394,0.113082,0.100963 +0.0177734,-0.099891,0.00442785,2.11024,0.11182,0.101002 +0.0179887,-0.100351,0.00448219,2.10643,0.110571,0.101153 +0.0181902,-0.100802,0.00452354,2.10251,0.109334,0.101415 +0.018378,-0.101242,0.00455228,2.0985,0.108109,0.101789 +0.0185524,-0.101671,0.00456887,2.0944,0.106895,0.102272 +0.0187136,-0.102088,0.00457379,2.09022,0.105692,0.102865 +0.0188622,-0.102492,0.00456759,2.08596,0.104497,0.103564 +0.0189986,-0.102883,0.00455087,2.08162,0.103309,0.104368 +0.0191235,-0.103259,0.00452426,2.07721,0.102125,0.105274 +0.0192374,-0.103622,0.00448844,2.07274,0.100944,0.106279 +0.0193412,-0.10397,0.00444411,2.06821,0.0997612,0.107381 +0.0194357,-0.104304,0.00439201,2.06361,0.0985748,0.108576 +0.0195216,-0.104623,0.0043329,2.05896,0.0973814,0.109859 +0.0196,-0.104927,0.00426757,2.05425,0.0961776,0.111228 +0.0196716,-0.105216,0.00419683,2.0495,0.0949601,0.112678 +0.0197376,-0.105491,0.00412147,2.04469,0.0937254,0.114205 +0.0197988,-0.105752,0.00404234,2.03984,0.0924699,0.115803 +0.0198564,-0.105999,0.00396024,2.03495,0.0911904,0.117467 +0.0199112,-0.106232,0.00387601,2.03001,0.0898834,0.119194 +0.0199644,-0.106453,0.00379047,2.02503,0.0885457,0.120977 +0.0200169,-0.10666,0.00370443,2.02002,0.0871742,0.122811 +0.0200698,-0.106856,0.00361869,2.01497,0.085766,0.124691 +0.0201239,-0.10704,0.00353402,2.00989,0.0843184,0.126611 +0.0201803,-0.107214,0.00345119,2.00478,0.0828289,0.128566 +0.0202399,-0.107377,0.00337094,1.99963,0.0812953,0.13055 +0.0203034,-0.107531,0.00329397,1.99447,0.0797159,0.132558 +0.0203717,-0.107676,0.00322097,1.98928,0.0780891,0.134584 +0.0204456,-0.107813,0.00315258,1.98407,0.0764136,0.136622 +0.0205258,-0.107942,0.0030894,1.97885,0.0746888,0.138668 +0.0206129,-0.108065,0.00303202,1.97361,0.0729141,0.140716 +0.0207074,-0.108181,0.00298094,1.96836,0.0710894,0.142761 +0.0208099,-0.108292,0.00293667,1.96311,0.0692153,0.144798 +0.0209208,-0.108398,0.00289963,1.95786,0.0672923,0.146823 +0.0210404,-0.108501,0.00287023,1.95261,0.0653217,0.14883 +0.021169,-0.108599,0.0028488,1.94737,0.063305,0.150816 +0.0213067,-0.108695,0.00283564,1.94215,0.0612441,0.152776 +0.0214538,-0.108788,0.002831,1.93694,0.0591414,0.154706 +0.0216102,-0.108879,0.00283507,1.93175,0.0569995,0.156603 +0.0217758,-0.108969,0.002848,1.92659,0.0548216,0.158464 +0.0219507,-0.109058,0.00286988,1.92147,0.0526108,0.160285 +0.0221344,-0.109146,0.00290075,1.91639,0.050371,0.162063 +0.0223269,-0.109234,0.00294061,1.91135,0.0481061,0.163797 +0.0225277,-0.109322,0.00298941,1.90637,0.0458203,0.165483 +0.0227365,-0.10941,0.00304704,1.90144,0.0435179,0.167121 +0.0229528,-0.109498,0.00311337,1.89657,0.0412037,0.168707 +0.023176,-0.109587,0.00318819,1.89177,0.0388824,0.170242 +0.0234057,-0.109677,0.00327127,1.88705,0.0365589,0.171724 +0.0236411,-0.109767,0.00336235,1.8824,0.0342381,0.173153 +0.0238817,-0.109858,0.00346112,1.87784,0.0319253,0.174527 +0.0241268,-0.10995,0.00356722,1.87337,0.0296253,0.175847 +0.0243755,-0.110043,0.00368029,1.86899,0.0273432,0.177112 +0.0246273,-0.110137,0.00379991,1.86471,0.025084,0.178324 +0.0248812,-0.110231,0.00392566,1.86053,0.0228527,0.179483 +0.0251367,-0.110325,0.00405708,1.85646,0.0206539,0.180589 +0.0253927,-0.11042,0.0041937,1.8525,0.0184922,0.181644 +0.0256487,-0.110514,0.00433502,1.84865,0.0163722,0.182649 +0.0259037,-0.110609,0.00448055,1.84493,0.0142979,0.183604 +0.0261571,-0.110703,0.00462977,1.84132,0.0122733,0.184513 +0.0264081,-0.110796,0.00478216,1.83783,0.0103021,0.185376 +0.026656,-0.110889,0.00493721,1.83446,0.00838768,0.186196 +0.0269,-0.11098,0.00509439,1.83122,0.00653307,0.186974 +0.0271395,-0.11107,0.0052532,1.82811,0.004741,0.187712 +0.0273739,-0.111158,0.00541313,1.82512,0.00301386,0.188413 +0.0276026,-0.111244,0.00557368,1.82225,0.00135367,0.189079 +0.027825,-0.111327,0.00573437,1.81951,-0.000237913,0.189712 +0.0280406,-0.111408,0.00589474,1.8169,-0.00175959,0.190314 +0.028249,-0.111486,0.00605435,1.8144,-0.00321046,0.190888 +0.0284497,-0.11156,0.00621277,1.81203,-0.00458995,0.191436 +0.0286424,-0.111631,0.0063696,1.80978,-0.00589788,0.19196 +0.0288268,-0.111699,0.00652448,1.80764,-0.00713443,0.192463 +0.0290026,-0.111762,0.00667706,1.80561,-0.00830009,0.192947 +0.0291696,-0.111821,0.00682703,1.8037,-0.00939571,0.193414 +0.0293277,-0.111876,0.0069741,1.80189,-0.0104224,0.193867 +0.0294767,-0.111926,0.00711803,1.80018,-0.0113817,0.194306 +0.0296167,-0.111971,0.0072586,1.79858,-0.0122753,0.194735 +0.0297476,-0.112011,0.00739562,1.79707,-0.0131052,0.195155 +0.0298694,-0.112047,0.00752894,1.79565,-0.0138735,0.195568 +0.0299824,-0.112077,0.00765845,1.79431,-0.0145827,0.195976 +0.0300865,-0.112102,0.00778406,1.79306,-0.0152354,0.196381 +0.030182,-0.112121,0.00790571,1.79188,-0.0158343,0.196784 +0.0302691,-0.112135,0.0080234,1.79078,-0.0163824,0.197186 +0.030348,-0.112144,0.00813712,1.78975,-0.0168825,0.197588 +0.0304191,-0.112147,0.00824693,1.78878,-0.0173377,0.197993 +0.0304826,-0.112145,0.00835288,1.78786,-0.0177511,0.1984 +0.0305389,-0.112138,0.00845509,1.78701,-0.0181259,0.198811 +0.0305883,-0.112125,0.00855366,1.7862,-0.0184652,0.199227 +0.0306313,-0.112107,0.00864875,1.78544,-0.0187721,0.199649 +0.0306682,-0.112084,0.00874052,1.78472,-0.0190496,0.200076 +0.0306995,-0.112056,0.00882916,1.78403,-0.0193008,0.20051 +0.0307255,-0.112023,0.00891486,1.78338,-0.0195287,0.20095 +0.0307468,-0.111986,0.00899786,1.78277,-0.019736,0.201397 +0.0307637,-0.111943,0.00907838,1.78217,-0.0199255,0.201851 +0.0307768,-0.111897,0.00915666,1.78161,-0.0200999,0.202312 +0.0307864,-0.111846,0.00923295,1.78106,-0.0202617,0.202781 +0.030793,-0.111791,0.00930751,1.78053,-0.0204131,0.203255 +0.030797,-0.111732,0.00938061,1.78002,-0.0205566,0.203736 +0.030799,-0.11167,0.0094525,1.77952,-0.0206941,0.204223 +0.0307992,-0.111604,0.00952344,1.77903,-0.0208276,0.204716 +0.0307982,-0.111535,0.0095937,1.77855,-0.0209589,0.205213 +0.0307963,-0.111464,0.00966352,1.77807,-0.0210897,0.205715 +0.030794,-0.111389,0.00973316,1.77761,-0.0212213,0.206221 +0.0307915,-0.111313,0.00980286,1.77714,-0.0213551,0.206729 +0.0307893,-0.111234,0.00987284,1.77668,-0.0214924,0.20724 +0.0307877,-0.111153,0.00994333,1.77622,-0.0216342,0.207752 +0.0307871,-0.111071,0.0100145,1.77577,-0.0217813,0.208265 +0.0307877,-0.110987,0.0100866,1.77531,-0.0219345,0.208778 +0.0307897,-0.110902,0.0101598,1.77485,-0.0220945,0.209291 +0.0307936,-0.110816,0.0102342,1.7744,-0.0222617,0.209802 +0.0307994,-0.110729,0.01031,1.77394,-0.0224365,0.21031 +0.0308075,-0.110642,0.0103873,1.77348,-0.0226192,0.210816 +0.0308179,-0.110555,0.0104662,1.77301,-0.0228099,0.211319 +0.0308309,-0.110468,0.0105468,1.77255,-0.0230086,0.211817 +0.0308466,-0.110381,0.0106291,1.77208,-0.0232153,0.212312 +0.0308651,-0.110294,0.0107133,1.77161,-0.0234299,0.212801 +0.0308865,-0.110209,0.0107993,1.77114,-0.0236521,0.213285 +0.0309108,-0.110123,0.0108872,1.77066,-0.0238817,0.213763 +0.0309381,-0.110039,0.010977,1.77018,-0.0241182,0.214235 +0.0309684,-0.109956,0.0110686,1.7697,-0.0243613,0.214701 +0.0310017,-0.109874,0.011162,1.76922,-0.0246105,0.215161 +0.031038,-0.109794,0.0112571,1.76873,-0.0248653,0.215615 +0.0310773,-0.109715,0.0113539,1.76824,-0.0251252,0.216062 +0.0311194,-0.109637,0.0114524,1.76774,-0.0253895,0.216503 +0.0311643,-0.109562,0.0115523,1.76725,-0.0256577,0.216938 +0.0312119,-0.109488,0.0116536,1.76674,-0.0259292,0.217367 +0.0312621,-0.109416,0.0117563,1.76624,-0.0262035,0.217789 +0.0313149,-0.109346,0.0118601,1.76573,-0.0264798,0.218206 +0.0313699,-0.109277,0.0119649,1.76522,-0.0267577,0.218617 +0.0314272,-0.109211,0.0120707,1.7647,-0.0270366,0.219022 +0.0314865,-0.109147,0.0121772,1.76417,-0.0273159,0.219422 +0.0315477,-0.109085,0.0122843,1.76365,-0.027595,0.219817 +0.0316107,-0.109024,0.0123919,1.76311,-0.0278735,0.220207 +0.0316753,-0.108966,0.0124998,1.76258,-0.0281508,0.220592 +0.0317412,-0.10891,0.0126079,1.76203,-0.0284265,0.220973 +0.0318084,-0.108856,0.012716,1.76149,-0.0287002,0.221349 +0.0318767,-0.108804,0.012824,1.76093,-0.0289715,0.221721 +0.0319459,-0.108754,0.0129317,1.76037,-0.0292399,0.222088 +0.0320158,-0.108706,0.0130391,1.75981,-0.029505,0.222452 +0.0320863,-0.10866,0.0131459,1.75923,-0.0297666,0.222811 +0.0321572,-0.108615,0.0132521,1.75865,-0.0300242,0.223166 +0.0322283,-0.108573,0.0133575,1.75807,-0.0302776,0.223517 +0.0322994,-0.108532,0.013462,1.75748,-0.0305264,0.223864 +0.0323704,-0.108494,0.0135655,1.75688,-0.0307703,0.224206 +0.0324412,-0.108457,0.0136678,1.75628,-0.0310089,0.224545 +0.0325115,-0.108422,0.013769,1.75567,-0.0312419,0.224879 +0.0325813,-0.108388,0.0138689,1.75506,-0.031469,0.225208 +0.0326503,-0.108356,0.0139674,1.75443,-0.0316898,0.225534 +0.0327185,-0.108326,0.0140645,1.75381,-0.031904,0.225854 +0.0327857,-0.108298,0.0141601,1.75318,-0.0321112,0.226169 +0.0328517,-0.108271,0.0142542,1.75254,-0.032311,0.22648 +0.0329164,-0.108245,0.0143466,1.7519,-0.032503,0.226785 +0.0329798,-0.108222,0.0144374,1.75125,-0.0326868,0.227084 +0.0330416,-0.108199,0.0145266,1.7506,-0.032862,0.227378 +0.0331018,-0.108179,0.0146141,1.74995,-0.0330281,0.227666 +0.0331602,-0.10816,0.0146999,1.74929,-0.0331847,0.227948 +0.0332169,-0.108142,0.014784,1.74864,-0.0333313,0.228224 +0.0332716,-0.108126,0.0148664,1.74798,-0.0334676,0.228493 +0.0333242,-0.108112,0.0149472,1.74732,-0.033593,0.228755 +0.0333748,-0.108099,0.0150264,1.74666,-0.0337072,0.22901 +0.0334233,-0.108087,0.015104,1.746,-0.0338097,0.229257 +0.0334695,-0.108078,0.0151801,1.74534,-0.0339002,0.229497 +0.0335134,-0.10807,0.0152547,1.74468,-0.0339782,0.229729 +0.033555,-0.108063,0.0153278,1.74402,-0.0340434,0.229953 +0.0335943,-0.108058,0.0153996,1.74337,-0.0340955,0.230169 +0.0336312,-0.108055,0.0154702,1.74272,-0.0341343,0.230375 +0.0336658,-0.108054,0.0155396,1.74208,-0.0341595,0.230573 +0.0336979,-0.108055,0.0156079,1.74144,-0.0341709,0.230763 +0.0337276,-0.108057,0.0156752,1.7408,-0.0341683,0.230942 +0.033755,-0.108061,0.0157417,1.74017,-0.0341517,0.231113 +0.03378,-0.108067,0.0158074,1.73955,-0.0341209,0.231274 +0.0338026,-0.108075,0.0158725,1.73893,-0.034076,0.231426 +0.0338229,-0.108085,0.0159371,1.73832,-0.034017,0.231568 +0.033841,-0.108097,0.0160014,1.73772,-0.033944,0.231701 +0.0338568,-0.108111,0.0160654,1.73713,-0.033857,0.231824 +0.0338704,-0.108128,0.0161293,1.73654,-0.0337564,0.231938 +0.033882,-0.108146,0.0161933,1.73597,-0.0336422,0.232043 +0.0338914,-0.108166,0.0162575,1.7354,-0.0335148,0.232139 +0.0338989,-0.108188,0.016322,1.73484,-0.0333745,0.232226 +0.0339044,-0.108212,0.016387,1.73428,-0.0332216,0.232304 +0.0339081,-0.108238,0.0164527,1.73374,-0.0330565,0.232374 +0.0339101,-0.108267,0.0165191,1.73321,-0.0328798,0.232436 +0.0339104,-0.108297,0.0165865,1.73268,-0.0326918,0.23249 +0.0339091,-0.108329,0.0166549,1.73216,-0.032493,0.232537 +0.0339064,-0.108363,0.0167245,1.73166,-0.0322842,0.232577 +0.0339023,-0.108399,0.0167955,1.73115,-0.0320658,0.232611 +0.0338969,-0.108437,0.016868,1.73066,-0.0318385,0.232639 +0.0338904,-0.108476,0.0169421,1.73018,-0.031603,0.232661 +0.0338828,-0.108517,0.0170179,1.7297,-0.0313601,0.232678 +0.0338744,-0.108559,0.0170956,1.72923,-0.0311105,0.23269 +0.0338651,-0.108603,0.0171753,1.72877,-0.0308549,0.232698 +0.0338552,-0.108649,0.0172571,1.72831,-0.0305942,0.232702 +0.0338448,-0.108695,0.017341,1.72786,-0.0303293,0.232704 +0.033834,-0.108742,0.0174273,1.72742,-0.0300611,0.232702 +0.033823,-0.108791,0.017516,1.72698,-0.0297903,0.232698 +0.0338119,-0.10884,0.0176072,1.72655,-0.0295181,0.232692 +0.0338008,-0.10889,0.017701,1.72612,-0.0292451,0.232685 +0.0337899,-0.108941,0.0177975,1.72569,-0.0289725,0.232677 +0.0337794,-0.108992,0.0178966,1.72527,-0.0287011,0.232668 +0.0337693,-0.109044,0.0179986,1.72485,-0.0284319,0.232659 +0.0337599,-0.109096,0.0181035,1.72443,-0.0281657,0.232651 +0.0337513,-0.109148,0.0182112,1.72401,-0.0279035,0.232643 +0.0337436,-0.1092,0.0183219,1.72359,-0.0276462,0.232636 +0.033737,-0.109252,0.0184355,1.72318,-0.0273945,0.232631 +0.0337316,-0.109303,0.0185522,1.72276,-0.0271494,0.232629 +0.0337276,-0.109355,0.0186719,1.72234,-0.0269115,0.232628 +0.033725,-0.109406,0.0187946,1.72193,-0.0266816,0.232631 +0.0337239,-0.109456,0.0189204,1.7215,-0.0264603,0.232636 +0.0337246,-0.109506,0.0190492,1.72108,-0.0262484,0.232645 +0.0337271,-0.109555,0.019181,1.72065,-0.0260463,0.232659 +0.0337314,-0.109603,0.0193158,1.72022,-0.0258547,0.232676 +0.0337378,-0.10965,0.0194536,1.71978,-0.0256738,0.232698 +0.0337461,-0.109697,0.0195943,1.71934,-0.0255042,0.232725 +0.0337567,-0.109742,0.0197379,1.71889,-0.0253463,0.232757 +0.0337694,-0.109787,0.0198844,1.71843,-0.0252002,0.232795 +0.0337843,-0.109831,0.0200336,1.71797,-0.0250662,0.232838 +0.0338015,-0.109873,0.0201856,1.7175,-0.0249445,0.232887 +0.0338211,-0.109915,0.0203402,1.71702,-0.0248354,0.232942 +0.033843,-0.109955,0.0204974,1.71653,-0.0247388,0.233002 +0.0338673,-0.109995,0.0206572,1.71603,-0.0246548,0.233069 +0.033894,-0.110033,0.0208194,1.71553,-0.0245835,0.233141 +0.033923,-0.110071,0.020984,1.71501,-0.0245249,0.233219 +0.0339544,-0.110107,0.0211508,1.71448,-0.024479,0.233303 +0.0339883,-0.110143,0.02132,1.71395,-0.0244457,0.233392 +0.0340245,-0.110178,0.0214912,1.7134,-0.024425,0.233487 +0.034063,-0.110213,0.0216646,1.71284,-0.0244168,0.233586 +0.0341038,-0.110246,0.0218399,1.71227,-0.024421,0.23369 +0.034147,-0.11028,0.0220172,1.71168,-0.0244377,0.233798 +0.0341924,-0.110313,0.0221963,1.71109,-0.0244666,0.23391 +0.0342401,-0.110345,0.0223772,1.71048,-0.0245077,0.234025 +0.0342899,-0.110377,0.0225598,1.70987,-0.0245609,0.234142 +0.0343419,-0.11041,0.0227441,1.70924,-0.0246262,0.234262 +0.034396,-0.110442,0.0229299,1.70859,-0.0247035,0.234384 +0.0344521,-0.110474,0.0231174,1.70794,-0.0247928,0.234507 +0.0345103,-0.110507,0.0233064,1.70727,-0.0248939,0.234631 +0.0345703,-0.11054,0.0234968,1.70659,-0.0250068,0.234755 +0.0346323,-0.110573,0.0236887,1.70589,-0.0251314,0.234879 +0.0346961,-0.110607,0.023882,1.70519,-0.0252678,0.235002 +0.0347617,-0.110642,0.0240767,1.70447,-0.0254158,0.235124 +0.034829,-0.110678,0.0242728,1.70373,-0.0255755,0.235244 +0.034898,-0.110715,0.0244702,1.70299,-0.0257468,0.235362 +0.0349686,-0.110752,0.0246691,1.70223,-0.0259296,0.235478 +0.0350407,-0.110791,0.0248693,1.70146,-0.0261239,0.23559 +0.0351143,-0.110831,0.0250709,1.70067,-0.0263298,0.2357 +0.0351894,-0.110872,0.0252739,1.69987,-0.0265471,0.235806 +0.0352659,-0.110915,0.0254784,1.69906,-0.0267759,0.235909 +0.0353437,-0.110959,0.0256843,1.69823,-0.0270162,0.236008 +0.0354228,-0.111005,0.0258917,1.69739,-0.0272678,0.236103 +0.0355031,-0.111052,0.0261006,1.69653,-0.0275307,0.236195 +0.0355847,-0.1111,0.0263111,1.69566,-0.0278051,0.236282 +0.0356674,-0.11115,0.0265232,1.69478,-0.0280907,0.236365 +0.0357513,-0.111202,0.0267369,1.69388,-0.0283876,0.236444 +0.0358362,-0.111255,0.0269524,1.69297,-0.0286958,0.23652 +0.0359223,-0.11131,0.0271696,1.69205,-0.0290151,0.236592 +0.0360093,-0.111366,0.0273886,1.69111,-0.0293455,0.23666 +0.0360975,-0.111423,0.0276094,1.69015,-0.029687,0.236725 +0.0361866,-0.111482,0.0278321,1.68919,-0.0300395,0.236788 +0.0362767,-0.111542,0.0280568,1.68821,-0.0304028,0.236847 +0.0363678,-0.111603,0.0282834,1.68722,-0.0307768,0.236905 +0.0364599,-0.111665,0.0285121,1.68621,-0.0311613,0.23696 +0.0365529,-0.111728,0.0287428,1.68519,-0.0315562,0.237014 +0.0366469,-0.111792,0.0289756,1.68416,-0.0319612,0.237067 +0.0367418,-0.111857,0.0292105,1.68312,-0.0323761,0.23712 +0.0368376,-0.111922,0.0294475,1.68207,-0.0328005,0.237173 +0.0369343,-0.111987,0.0296866,1.68101,-0.0332341,0.237226 +0.037032,-0.112053,0.0299279,1.67993,-0.0336765,0.237281 +0.0371305,-0.112118,0.0301712,1.67885,-0.0341272,0.237337 +0.0372298,-0.112184,0.0304167,1.67776,-0.0345858,0.237397 +0.0373299,-0.112249,0.0306643,1.67666,-0.0350516,0.237459 +0.0374309,-0.112313,0.0309139,1.67555,-0.0355241,0.237525 +0.0375326,-0.112377,0.0311654,1.67444,-0.0360026,0.237595 +0.037635,-0.112439,0.031419,1.67333,-0.0364864,0.237671 +0.0377381,-0.112501,0.0316743,1.6722,-0.0369748,0.237752 +0.0378418,-0.112561,0.0319315,1.67108,-0.037467,0.23784 +0.0379461,-0.112619,0.0321904,1.66996,-0.0379621,0.237935 +0.0380509,-0.112676,0.0324509,1.66883,-0.0384594,0.238036 +0.0381562,-0.112731,0.0327128,1.66771,-0.0389579,0.238146 +0.0382618,-0.112783,0.0329762,1.66659,-0.0394568,0.238264 +0.0383678,-0.112833,0.0332408,1.66547,-0.0399552,0.238391 +0.0384741,-0.112881,0.0335065,1.66436,-0.0404521,0.238526 +0.0385805,-0.112926,0.0337732,1.66325,-0.0409468,0.23867 +0.038687,-0.112968,0.0340408,1.66215,-0.0414383,0.238824 +0.0387936,-0.113007,0.034309,1.66106,-0.0419258,0.238987 +0.0389002,-0.113043,0.0345778,1.65999,-0.0424085,0.239159 +0.0390067,-0.113075,0.034847,1.65892,-0.0428856,0.23934 +0.039113,-0.113104,0.0351164,1.65787,-0.0433565,0.23953 +0.0392191,-0.113129,0.0353859,1.65683,-0.0438205,0.239729 +0.0393249,-0.113151,0.0356552,1.65581,-0.0442769,0.239936 +0.0394303,-0.113169,0.0359243,1.6548,-0.0447252,0.24015 +0.0395354,-0.113184,0.036193,1.65381,-0.045165,0.240372 +0.03964,-0.113194,0.036461,1.65285,-0.0455958,0.2406 +0.0397441,-0.113201,0.0367284,1.6519,-0.0460173,0.240834 +0.0398477,-0.113204,0.0369948,1.65098,-0.0464292,0.241073 +0.0399506,-0.113203,0.0372603,1.65007,-0.0468313,0.241316 +0.040053,-0.113199,0.0375245,1.64919,-0.0472236,0.241563 +0.0401548,-0.11319,0.0377875,1.64833,-0.0476058,0.241813 +0.0402559,-0.113178,0.038049,1.6475,-0.0479781,0.242064 +0.0403564,-0.113162,0.038309,1.64669,-0.0483404,0.242316 +0.0404561,-0.113143,0.0385673,1.64591,-0.048693,0.242568 +0.0405553,-0.11312,0.0388238,1.64515,-0.0490359,0.242819 +0.0406537,-0.113093,0.0390785,1.64441,-0.0493694,0.243067 +0.0407515,-0.113064,0.0393312,1.6437,-0.0496938,0.243313 +0.0408487,-0.113031,0.0395819,1.64302,-0.0500093,0.243555 +0.0409453,-0.112995,0.0398305,1.64235,-0.0503164,0.243792 +0.0410413,-0.112956,0.040077,1.64172,-0.0506153,0.244024 +0.0411367,-0.112915,0.0403213,1.6411,-0.0509065,0.24425 +0.0412316,-0.112871,0.0405634,1.64051,-0.0511903,0.244468 +0.0413261,-0.112824,0.0408032,1.63993,-0.0514673,0.244679 +0.0414201,-0.112775,0.0410407,1.63938,-0.0517378,0.244882 +0.0415137,-0.112725,0.041276,1.63885,-0.0520024,0.245076 +0.041607,-0.112672,0.041509,1.63833,-0.0522613,0.24526 +0.0417,-0.112618,0.0417398,1.63783,-0.0525153,0.245435 +0.0417929,-0.112562,0.0419684,1.63735,-0.0527645,0.2456 +0.0418856,-0.112505,0.0421948,1.63688,-0.0530096,0.245754 +0.0419782,-0.112446,0.042419,1.63642,-0.0532509,0.245898 +0.0420708,-0.112387,0.0426411,1.63597,-0.0534888,0.246032 +0.0421634,-0.112327,0.0428612,1.63554,-0.0537238,0.246155 +0.0422562,-0.112267,0.0430793,1.63511,-0.053956,0.246268 +0.0423491,-0.112206,0.0432955,1.63469,-0.054186,0.24637 +0.0424423,-0.112144,0.0435098,1.63427,-0.0544139,0.246463 +0.0425358,-0.112083,0.0437224,1.63386,-0.0546401,0.246546 +0.0426296,-0.112022,0.0439333,1.63344,-0.0548646,0.246621 +0.0427239,-0.111961,0.0441427,1.63303,-0.0550877,0.246687 +0.0428186,-0.111901,0.0443505,1.63262,-0.0553096,0.246745 +0.0429137,-0.111841,0.0445569,1.6322,-0.0555301,0.246796 +0.0430094,-0.111782,0.044762,1.63178,-0.0557494,0.246841 +0.0431057,-0.111723,0.0449658,1.63135,-0.0559675,0.24688 +0.0432025,-0.111666,0.0451685,1.63091,-0.0561841,0.246916 +0.0432998,-0.111609,0.0453701,1.63047,-0.0563992,0.246947 +0.0433977,-0.111554,0.0455707,1.63001,-0.0566126,0.246977 +0.0434962,-0.1115,0.0457704,1.62955,-0.0568239,0.247005 +0.0435951,-0.111447,0.0459692,1.62907,-0.057033,0.247033 +0.0436946,-0.111395,0.0461673,1.62858,-0.0572395,0.247062 +0.0437944,-0.111345,0.0463646,1.62808,-0.0574429,0.247094 +0.0438947,-0.111296,0.0465613,1.62756,-0.0576429,0.247129 +0.0439953,-0.111249,0.0467573,1.62703,-0.057839,0.247168 +0.0440961,-0.111203,0.0469528,1.62649,-0.0580308,0.247213 +0.0441971,-0.111158,0.0471477,1.62593,-0.0582178,0.247264 +0.0442982,-0.111115,0.0473422,1.62535,-0.0583994,0.247324 +0.0443993,-0.111074,0.0475361,1.62476,-0.0585752,0.247392 +0.0445003,-0.111033,0.0477296,1.62415,-0.0587448,0.24747 +0.044601,-0.110995,0.0479226,1.62353,-0.0589075,0.247559 +0.0447014,-0.110957,0.0481151,1.62289,-0.0590631,0.247659 +0.0448014,-0.110921,0.0483072,1.62224,-0.0592109,0.247771 +0.0449008,-0.110886,0.0484988,1.62157,-0.0593507,0.247896 +0.0449996,-0.110852,0.04869,1.6209,-0.0594821,0.248035 +0.0450975,-0.11082,0.0488806,1.6202,-0.0596046,0.248187 +0.0451946,-0.110788,0.0490707,1.6195,-0.0597182,0.248353 +0.0452907,-0.110758,0.0492603,1.61879,-0.0598224,0.248534 +0.0453856,-0.110728,0.0494494,1.61806,-0.0599172,0.248729 +0.0454793,-0.1107,0.0496378,1.61733,-0.0600024,0.248938 +0.0455716,-0.110672,0.0498256,1.61659,-0.0600779,0.249162 +0.0456626,-0.110644,0.0500127,1.61585,-0.0601437,0.2494 +0.045752,-0.110618,0.0501992,1.61509,-0.0601999,0.249652 +0.0458397,-0.110591,0.0503849,1.61434,-0.0602466,0.249918 +0.0459258,-0.110566,0.0505698,1.61358,-0.0602838,0.250197 +0.0460102,-0.11054,0.0507539,1.61282,-0.0603119,0.250488 +0.0460927,-0.110515,0.0509371,1.61206,-0.0603311,0.250792 +0.0461734,-0.11049,0.0511194,1.6113,-0.0603416,0.251106 +0.0462521,-0.110465,0.0513008,1.61054,-0.060344,0.251432 +0.046329,-0.11044,0.0514812,1.60978,-0.0603385,0.251767 +0.0464038,-0.110415,0.0516606,1.60903,-0.0603257,0.252111 +0.0464767,-0.11039,0.0518389,1.60829,-0.0603061,0.252462 +0.0465476,-0.110364,0.0520161,1.60755,-0.0602802,0.252821 +0.0466165,-0.110339,0.0521922,1.60682,-0.0602487,0.253186 +0.0466835,-0.110312,0.0523672,1.6061,-0.0602121,0.253555 +0.0467486,-0.110286,0.052541,1.60539,-0.0601712,0.253929 +0.0468118,-0.110258,0.0527135,1.60469,-0.0601267,0.254305 +0.0468732,-0.110231,0.0528849,1.604,-0.0600792,0.254684 +0.0469328,-0.110202,0.053055,1.60332,-0.0600295,0.255062 +0.0469908,-0.110173,0.0532238,1.60266,-0.0599784,0.255441 +0.0470471,-0.110143,0.0533913,1.60201,-0.0599266,0.255818 +0.047102,-0.110112,0.0535576,1.60138,-0.0598751,0.256193 +0.0471554,-0.11008,0.0537225,1.60076,-0.0598244,0.256565 +0.0472075,-0.110048,0.0538861,1.60016,-0.0597755,0.256933 +0.0472584,-0.110014,0.0540484,1.59957,-0.0597291,0.257295 +0.0473081,-0.10998,0.0542094,1.599,-0.0596861,0.257652 +0.0473569,-0.109944,0.0543691,1.59844,-0.059647,0.258002 +0.0474048,-0.109908,0.0545275,1.5979,-0.0596127,0.258345 +0.047452,-0.10987,0.0546846,1.59738,-0.0595839,0.25868 +0.0474985,-0.109832,0.0548405,1.59687,-0.0595612,0.259007 +0.0475446,-0.109792,0.0549951,1.59638,-0.0595453,0.259325 +0.0475902,-0.109751,0.0551485,1.5959,-0.0595368,0.259633 +0.0476356,-0.10971,0.0553007,1.59544,-0.0595361,0.259933 +0.0476808,-0.109667,0.0554518,1.59499,-0.0595438,0.260222 +0.0477259,-0.109624,0.0556017,1.59456,-0.0595604,0.260502 +0.0477711,-0.109579,0.0557505,1.59414,-0.0595861,0.260772 +0.0478164,-0.109534,0.0558983,1.59374,-0.0596214,0.261032 +0.0478619,-0.109487,0.0560451,1.59335,-0.0596664,0.261283 +0.0479078,-0.10944,0.0561909,1.59297,-0.0597215,0.261524 +0.047954,-0.109392,0.0563359,1.5926,-0.0597867,0.261756 +0.0480007,-0.109343,0.0564799,1.59224,-0.0598621,0.26198 +0.0480479,-0.109293,0.0566232,1.59189,-0.0599479,0.262195 +0.0480956,-0.109243,0.0567656,1.59155,-0.0600439,0.262402 +0.048144,-0.109191,0.0569074,1.59122,-0.0601501,0.262601 +0.0481929,-0.10914,0.0570486,1.5909,-0.0602663,0.262794 +0.0482426,-0.109087,0.0571892,1.59058,-0.0603925,0.262981 +0.0482928,-0.109035,0.0573292,1.59027,-0.0605283,0.263163 +0.0483438,-0.108981,0.0574688,1.58997,-0.0606735,0.263339 +0.0483953,-0.108928,0.057608,1.58966,-0.0608278,0.263512 +0.0484476,-0.108874,0.0577468,1.58937,-0.0609908,0.263681 +0.0485004,-0.10882,0.0578853,1.58907,-0.0611622,0.263847 +0.0485538,-0.108765,0.0580237,1.58878,-0.0613415,0.264012 +0.0486077,-0.108711,0.0581618,1.58848,-0.0615283,0.264175 +0.0486622,-0.108656,0.0582998,1.58819,-0.0617222,0.264338 +0.048717,-0.108602,0.0584377,1.5879,-0.0619226,0.264501 +0.0487723,-0.108548,0.0585756,1.58761,-0.0621291,0.264665 +0.0488278,-0.108493,0.0587136,1.58731,-0.0623412,0.26483 +0.0488836,-0.108439,0.0588516,1.58702,-0.0625583,0.264997 +0.0489396,-0.108386,0.0589897,1.58672,-0.0627798,0.265167 +0.0489956,-0.108332,0.0591279,1.58642,-0.0630054,0.26534 +0.0490516,-0.10828,0.0592663,1.58612,-0.0632345,0.265516 +0.0491075,-0.108227,0.0594049,1.58582,-0.0634664,0.265696 +0.0491633,-0.108176,0.0595436,1.58551,-0.0637009,0.26588 +0.0492188,-0.108125,0.0596826,1.5852,-0.0639373,0.266068 +0.0492739,-0.108075,0.0598219,1.58488,-0.0641751,0.26626 +0.0493285,-0.108025,0.0599613,1.58457,-0.064414,0.266458 +0.0493827,-0.107977,0.060101,1.58425,-0.0646534,0.26666 +0.0494362,-0.107929,0.0602409,1.58392,-0.064893,0.266866 +0.049489,-0.107883,0.060381,1.5836,-0.0651323,0.267077 +0.049541,-0.107837,0.0605213,1.58327,-0.0653709,0.267293 +0.0495922,-0.107793,0.0606618,1.58293,-0.0656085,0.267513 +0.0496424,-0.10775,0.0608024,1.5826,-0.0658447,0.267737 +0.0496915,-0.107708,0.0609431,1.58226,-0.0660793,0.267965 +0.0497397,-0.107667,0.0610839,1.58192,-0.0663119,0.268196 +0.0497866,-0.107628,0.0612248,1.58158,-0.0665423,0.268431 +0.0498323,-0.107591,0.0613656,1.58123,-0.0667702,0.268668 +0.0498768,-0.107554,0.0615063,1.58089,-0.0669954,0.268907 +0.04992,-0.10752,0.0616469,1.58054,-0.0672177,0.269149 +0.0499618,-0.107487,0.0617874,1.58019,-0.067437,0.269392 +0.0500022,-0.107455,0.0619276,1.57985,-0.0676531,0.269636 +0.0500412,-0.107425,0.0620676,1.5795,-0.0678658,0.26988 +0.0500787,-0.107397,0.0622072,1.57915,-0.0680751,0.270124 +0.0501147,-0.107371,0.0623465,1.5788,-0.0682808,0.270368 +0.0501492,-0.107346,0.0624852,1.57845,-0.068483,0.27061 +0.0501823,-0.107323,0.0626235,1.57811,-0.0686816,0.270851 +0.0502137,-0.107302,0.0627612,1.57776,-0.0688766,0.27109 +0.0502437,-0.107283,0.0628984,1.57742,-0.0690679,0.271327 +0.0502721,-0.107265,0.0630348,1.57708,-0.0692557,0.27156 +0.050299,-0.10725,0.0631706,1.57674,-0.0694399,0.27179 +0.0503244,-0.107236,0.0633056,1.5764,-0.0696207,0.272016 +0.0503483,-0.107224,0.0634398,1.57606,-0.0697981,0.272238 +0.0503707,-0.107213,0.0635732,1.57573,-0.0699722,0.272455 +0.0503917,-0.107205,0.0637057,1.5754,-0.0701431,0.272667 +0.0504113,-0.107198,0.0638374,1.57507,-0.070311,0.272874 +0.0504294,-0.107193,0.0639681,1.57474,-0.070476,0.273075 +0.0504462,-0.107189,0.064098,1.57442,-0.0706382,0.273269 +0.0504617,-0.107188,0.064227,1.5741,-0.070798,0.273458 +0.0504759,-0.107188,0.064355,1.57379,-0.0709553,0.27364 +0.0504888,-0.107189,0.0644821,1.57347,-0.0711105,0.273815 +0.0505005,-0.107192,0.0646083,1.57316,-0.0712637,0.273983 +0.0505111,-0.107197,0.0647337,1.57286,-0.0714151,0.274144 +0.0505206,-0.107203,0.0648581,1.57255,-0.071565,0.274298 +0.050529,-0.10721,0.0649817,1.57225,-0.0717135,0.274444 +0.0505365,-0.107219,0.0651045,1.57196,-0.0718608,0.274583 +0.0505429,-0.107229,0.0652266,1.57166,-0.0720073,0.274715 +0.0505485,-0.10724,0.0653479,1.57137,-0.072153,0.274839 +0.0505532,-0.107253,0.0654685,1.57108,-0.0722983,0.274956 +0.0505571,-0.107266,0.0655885,1.5708,-0.0724432,0.275065 +0.0505603,-0.107281,0.0657079,1.57052,-0.0725882,0.275168 +0.0505629,-0.107297,0.0658267,1.57024,-0.0727332,0.275263 +0.0505648,-0.107313,0.0659452,1.56996,-0.0728786,0.275351 +0.0505661,-0.10733,0.0660632,1.56969,-0.0730246,0.275433 +0.050567,-0.107349,0.0661809,1.56942,-0.0731712,0.275508 +0.0505675,-0.107368,0.0662983,1.56915,-0.0733189,0.275576 +0.0505676,-0.107387,0.0664156,1.56889,-0.0734676,0.275639 +0.0505674,-0.107408,0.0665327,1.56863,-0.0736176,0.275695 +0.0505669,-0.107428,0.0666498,1.56836,-0.073769,0.275746 +0.0505663,-0.10745,0.0667669,1.56811,-0.0739221,0.275792 +0.0505656,-0.107471,0.0668841,1.56785,-0.074077,0.275832 +0.0505649,-0.107493,0.0670015,1.5676,-0.0742339,0.275868 +0.0505643,-0.107516,0.0671192,1.56735,-0.0743928,0.275899 +0.0505638,-0.107539,0.0672371,1.5671,-0.074554,0.275927 +0.0505635,-0.107562,0.0673555,1.56685,-0.0747177,0.275951 +0.0505635,-0.107585,0.0674742,1.5666,-0.0748838,0.275971 +0.0505638,-0.107608,0.0675935,1.56636,-0.0750527,0.275989 +0.0505646,-0.107631,0.0677133,1.56612,-0.0752244,0.276004 +0.0505659,-0.107654,0.0678337,1.56587,-0.075399,0.276017 +0.0505679,-0.107678,0.0679547,1.56564,-0.0755767,0.276028 +0.0505705,-0.107701,0.0680765,1.5654,-0.0757576,0.276038 +0.0505739,-0.107724,0.068199,1.56516,-0.0759418,0.276046 +0.0505781,-0.107746,0.0683222,1.56493,-0.0761295,0.276053 +0.0505833,-0.107769,0.0684462,1.56469,-0.0763206,0.276061 +0.0505894,-0.107791,0.068571,1.56446,-0.0765153,0.276068 +0.0505967,-0.107813,0.0686966,1.56423,-0.0767137,0.276075 +0.0506051,-0.107835,0.068823,1.564,-0.0769159,0.276083 +0.0506147,-0.107856,0.0689502,1.56378,-0.0771218,0.276091 +0.0506256,-0.107877,0.0690782,1.56355,-0.0773316,0.276101 +0.0506379,-0.107897,0.069207,1.56332,-0.0775452,0.276112 +0.0506515,-0.107917,0.0693365,1.5631,-0.0777627,0.276125 +0.0506667,-0.107936,0.0694667,1.56288,-0.077984,0.27614 +0.0506833,-0.107954,0.0695975,1.56266,-0.0782092,0.276157 +0.0507015,-0.107972,0.069729,1.56244,-0.078438,0.276176 +0.0507213,-0.107989,0.069861,1.56222,-0.0786706,0.276198 +0.0507426,-0.108005,0.0699934,1.562,-0.0789067,0.276223 +0.0507656,-0.108021,0.0701263,1.56179,-0.0791462,0.276251 +0.0507902,-0.108035,0.0702594,1.56157,-0.079389,0.276281 +0.0508164,-0.108049,0.0703927,1.56136,-0.0796348,0.276315 +0.0508442,-0.108061,0.0705262,1.56114,-0.0798835,0.276353 +0.0508737,-0.108073,0.0706596,1.56093,-0.0801348,0.276394 +0.0509046,-0.108083,0.070793,1.56072,-0.0803884,0.276438 +0.0509371,-0.108092,0.0709261,1.56051,-0.080644,0.276486 +0.0509711,-0.1081,0.0710589,1.56031,-0.0809012,0.276538 +0.0510064,-0.108107,0.0711911,1.5601,-0.0811598,0.276593 +0.0510432,-0.108113,0.0713228,1.55989,-0.0814193,0.276653 +0.0510811,-0.108118,0.0714537,1.55969,-0.0816793,0.276716 +0.0511203,-0.108121,0.0715837,1.55949,-0.0819393,0.276782 +0.0511605,-0.108123,0.0717127,1.55928,-0.082199,0.276853 +0.0512017,-0.108123,0.0718405,1.55908,-0.0824578,0.276926 +0.0512438,-0.108122,0.071967,1.55888,-0.0827152,0.277004 +0.0512866,-0.10812,0.0720921,1.55868,-0.0829709,0.277085 +0.05133,-0.108116,0.0722156,1.55848,-0.0832241,0.277169 +0.051374,-0.108111,0.0723374,1.55829,-0.0834745,0.277257 +0.0514183,-0.108104,0.0724573,1.55809,-0.0837216,0.277347 +0.0514628,-0.108096,0.0725752,1.55789,-0.0839647,0.277441 +0.0515075,-0.108087,0.0726911,1.5577,-0.0842035,0.277537 +0.0515521,-0.108076,0.0728048,1.55751,-0.0844373,0.277636 +0.0515965,-0.108064,0.0729161,1.55731,-0.0846659,0.277737 +0.0516405,-0.10805,0.0730251,1.55712,-0.0848886,0.277841 +0.0516842,-0.108035,0.0731316,1.55693,-0.085105,0.277946 +0.0517272,-0.108019,0.0732355,1.55675,-0.0853148,0.278054 +0.0517695,-0.108001,0.0733368,1.55656,-0.0855175,0.278163 +0.0518109,-0.107982,0.0734354,1.55637,-0.0857127,0.278273 +0.0518514,-0.107962,0.0735312,1.55619,-0.0859003,0.278385 +0.0518907,-0.107941,0.0736243,1.556,-0.0860798,0.278498 +0.0519289,-0.107918,0.0737146,1.55582,-0.086251,0.278612 +0.0519658,-0.107894,0.0738021,1.55564,-0.0864138,0.278726 +0.0520013,-0.107869,0.0738868,1.55546,-0.0865679,0.278841 +0.0520353,-0.107843,0.0739688,1.55529,-0.0867133,0.278956 +0.0520677,-0.107816,0.0740481,1.55511,-0.08685,0.279071 +0.0520985,-0.107787,0.0741247,1.55494,-0.0869778,0.279187 +0.0521277,-0.107758,0.0741986,1.55476,-0.0870968,0.279302 +0.0521552,-0.107728,0.0742701,1.55459,-0.0872072,0.279417 +0.052181,-0.107696,0.0743391,1.55442,-0.0873091,0.279533 +0.052205,-0.107664,0.0744058,1.55426,-0.0874026,0.279647 +0.0522272,-0.107631,0.0744703,1.55409,-0.0874881,0.279762 +0.0522477,-0.107597,0.0745327,1.55393,-0.0875658,0.279876 +0.0522665,-0.107562,0.0745931,1.55377,-0.087636,0.279989 +0.0522836,-0.107526,0.0746518,1.55361,-0.0876992,0.280103 +0.052299,-0.107489,0.0747089,1.55345,-0.0877558,0.280216 +0.0523129,-0.107451,0.0747645,1.55329,-0.0878063,0.280329 +0.0523252,-0.107413,0.0748189,1.55314,-0.0878512,0.280442 +0.052336,-0.107373,0.0748722,1.55298,-0.087891,0.280555 +0.0523454,-0.107332,0.0749247,1.55283,-0.0879264,0.280668 +0.0523535,-0.107291,0.0749765,1.55268,-0.0879579,0.280782 +0.0523603,-0.107248,0.0750279,1.55254,-0.0879862,0.280896 +0.0523661,-0.107204,0.0750791,1.55239,-0.088012,0.281012 +0.0523709,-0.107159,0.0751303,1.55225,-0.088036,0.281128 +0.0523747,-0.107112,0.0751817,1.55211,-0.0880587,0.281246 +0.0523778,-0.107064,0.0752335,1.55197,-0.0880811,0.281365 +0.0523802,-0.107015,0.075286,1.55183,-0.0881036,0.281486 +0.052382,-0.106964,0.0753394,1.5517,-0.0881271,0.28161 +0.0523834,-0.106911,0.0753938,1.55156,-0.0881523,0.281736 +0.0523845,-0.106857,0.0754496,1.55143,-0.0881799,0.281866 +0.0523855,-0.106801,0.0755069,1.5513,-0.0882104,0.281998 +0.0523863,-0.106742,0.0755659,1.55117,-0.0882447,0.282135 +0.0523872,-0.106681,0.0756267,1.55105,-0.0882833,0.282276 +0.0523882,-0.106618,0.0756897,1.55093,-0.0883269,0.282422 +0.0523895,-0.106552,0.0757548,1.55081,-0.088376,0.282573 +0.0523912,-0.106483,0.0758224,1.55069,-0.0884313,0.282729 +0.0523933,-0.106411,0.0758925,1.55058,-0.0884932,0.282892 +0.052396,-0.106336,0.0759653,1.55046,-0.0885622,0.283061 +0.0523993,-0.106257,0.0760409,1.55036,-0.0886388,0.283237 +0.0524034,-0.106174,0.0761194,1.55025,-0.0887234,0.28342 +0.0524082,-0.106088,0.076201,1.55015,-0.0888163,0.283611 +0.0524139,-0.105997,0.0762855,1.55006,-0.0889179,0.283811 +0.0524205,-0.105902,0.0763733,1.54997,-0.0890285,0.28402 +0.052428,-0.105802,0.0764642,1.54988,-0.0891483,0.284238 +0.0524366,-0.105697,0.0765584,1.5498,-0.0892774,0.284466 +0.0524462,-0.105587,0.0766557,1.54973,-0.089416,0.284704 +0.0524568,-0.105471,0.0767564,1.54966,-0.0895642,0.284953 +0.0524685,-0.105349,0.0768602,1.5496,-0.0897221,0.285214 +0.0524813,-0.105221,0.0769673,1.54955,-0.0898895,0.285486 +0.0524951,-0.105086,0.0770775,1.5495,-0.0900664,0.285771 +0.0525101,-0.104945,0.0771908,1.54946,-0.0902528,0.286068 +0.0525261,-0.104797,0.0773072,1.54943,-0.0904485,0.286379 +0.0525431,-0.104641,0.0774265,1.54941,-0.0906532,0.286704 +0.0525612,-0.104478,0.0775487,1.5494,-0.0908668,0.287042 +0.0525802,-0.104306,0.0776736,1.5494,-0.091089,0.287396 +0.0526003,-0.104127,0.0778012,1.54941,-0.0913195,0.287765 +0.0526212,-0.103939,0.0779312,1.54942,-0.0915578,0.28815 +0.0526431,-0.103742,0.0780637,1.54945,-0.0918037,0.288551 +0.0526658,-0.103536,0.0781984,1.54949,-0.0920567,0.288968 +0.0526893,-0.103321,0.0783351,1.54954,-0.0923163,0.289403 +0.0527135,-0.103096,0.0784738,1.54961,-0.0925822,0.289855 +0.0527385,-0.102861,0.0786143,1.54968,-0.0928539,0.290326 +0.0527641,-0.102617,0.0787563,1.54977,-0.0931307,0.290814 +0.0527903,-0.102362,0.0788998,1.54987,-0.0934123,0.291322 +0.0528171,-0.102097,0.0790446,1.54998,-0.0936982,0.291849 +0.0528443,-0.101822,0.0791904,1.5501,-0.0939877,0.292395 +0.0528721,-0.101536,0.0793371,1.55024,-0.0942804,0.292961 +0.0529003,-0.101239,0.0794846,1.55038,-0.0945757,0.293548 +0.0529288,-0.100931,0.0796326,1.55054,-0.0948731,0.294155 +0.0529577,-0.100612,0.079781,1.55072,-0.0951722,0.294783 +0.0529869,-0.100282,0.0799297,1.5509,-0.0954723,0.295431 +0.0530164,-0.0999406,0.0800783,1.5511,-0.095773,0.296101 +0.0530461,-0.0995884,0.0802269,1.5513,-0.0960739,0.296792 +0.053076,-0.0992251,0.0803752,1.55152,-0.0963745,0.297504 +0.0531061,-0.0988508,0.080523,1.55175,-0.0966742,0.298238 +0.0531365,-0.0984654,0.0806703,1.55199,-0.0969728,0.298992 +0.0531669,-0.0980691,0.0808168,1.55224,-0.0972698,0.299768 +0.0531976,-0.097662,0.0809625,1.5525,-0.0975649,0.300566 +0.0532284,-0.0972442,0.0811071,1.55277,-0.0978577,0.301383 +0.0532593,-0.0968159,0.0812505,1.55305,-0.0981479,0.302222 +0.0532903,-0.0963772,0.0813927,1.55334,-0.0984351,0.303081 +0.0533216,-0.0959285,0.0815335,1.55364,-0.0987192,0.303959 +0.0533529,-0.0954699,0.0816728,1.55394,-0.0989999,0.304858 +0.0533845,-0.0950016,0.0818105,1.55425,-0.099277,0.305775 +0.0534162,-0.0945241,0.0819465,1.55457,-0.0995502,0.30671 +0.0534481,-0.0940376,0.0820806,1.5549,-0.0998195,0.307663 +0.0534802,-0.0935423,0.0822128,1.55523,-0.100085,0.308633 +0.0535125,-0.0930388,0.0823431,1.55557,-0.100346,0.309619 +0.0535451,-0.0925273,0.0824713,1.55592,-0.100602,0.310621 +0.0535779,-0.0920083,0.0825973,1.55627,-0.100854,0.311637 +0.053611,-0.0914822,0.0827211,1.55662,-0.101102,0.312667 +0.0536444,-0.0909494,0.0828427,1.55698,-0.101345,0.313709 +0.0536781,-0.0904103,0.082962,1.55735,-0.101583,0.314762 +0.0537122,-0.0898655,0.0830789,1.55771,-0.101817,0.315826 +0.0537466,-0.0893154,0.0831933,1.55808,-0.102046,0.316899 +0.0537813,-0.0887605,0.0833054,1.55846,-0.102271,0.31798 +0.0538165,-0.0882013,0.0834149,1.55883,-0.10249,0.319068 +0.0538521,-0.0876383,0.0835219,1.55921,-0.102706,0.320161 +0.053888,-0.0870721,0.0836264,1.55959,-0.102916,0.321258 +0.0539244,-0.0865031,0.0837283,1.55997,-0.103122,0.322359 +0.0539612,-0.0859318,0.0838276,1.56036,-0.103323,0.323461 +0.0539985,-0.0853589,0.0839243,1.56074,-0.103519,0.324563 +0.0540362,-0.0847848,0.0840184,1.56113,-0.103711,0.325664 +0.0540743,-0.0842101,0.0841098,1.56151,-0.103898,0.326763 +0.0541129,-0.0836352,0.0841987,1.5619,-0.10408,0.327857 +0.0541519,-0.0830608,0.0842849,1.56228,-0.104257,0.328947 +0.0541913,-0.0824872,0.0843684,1.56266,-0.10443,0.330031 +0.0542311,-0.0819151,0.0844493,1.56305,-0.104597,0.331106 +0.0542713,-0.0813448,0.0845275,1.56343,-0.10476,0.332173 +0.0543119,-0.080777,0.0846031,1.56381,-0.104917,0.33323 +0.0543527,-0.0802119,0.0846759,1.56419,-0.105069,0.334276 +0.0543939,-0.0796502,0.0847462,1.56456,-0.105215,0.335309 +0.0544354,-0.0790922,0.0848137,1.56494,-0.105356,0.336329 +0.0544771,-0.0785384,0.0848785,1.56531,-0.105491,0.337334 +0.054519,-0.0779891,0.0849406,1.56568,-0.10562,0.338323 +0.054561,-0.0774447,0.085,1.56604,-0.105743,0.339297 +0.0546032,-0.0769056,0.0850566,1.56641,-0.10586,0.340253 +0.0546453,-0.0763721,0.0851104,1.56677,-0.105969,0.341191 +0.0546875,-0.0758445,0.0851614,1.56712,-0.106072,0.34211 +0.0547296,-0.0753231,0.0852095,1.56748,-0.106168,0.343009 +0.0547716,-0.0748082,0.0852547,1.56783,-0.106256,0.343888 +0.0548134,-0.0743,0.085297,1.56818,-0.106336,0.344747 +0.0548548,-0.0737987,0.0853361,1.56853,-0.106409,0.345584 +0.054896,-0.0733044,0.0853722,1.56887,-0.106472,0.3464 +0.0549367,-0.0728174,0.0854051,1.56921,-0.106527,0.347193 +0.0549769,-0.0723377,0.0854347,1.56956,-0.106572,0.347964 +0.0550165,-0.0718654,0.0854609,1.5699,-0.106608,0.348712 +0.0550554,-0.0714007,0.0854836,1.57024,-0.106633,0.349437 +0.0550935,-0.0709435,0.0855027,1.57059,-0.106648,0.350139 +0.0551308,-0.0704939,0.085518,1.57093,-0.106652,0.350818 +0.055167,-0.0700518,0.0855295,1.57128,-0.106645,0.351473 +0.0552022,-0.0696172,0.0855369,1.57164,-0.106626,0.352105 +0.0552362,-0.06919,0.0855401,1.572,-0.106594,0.352713 +0.0552688,-0.0687701,0.085539,1.57236,-0.10655,0.353297 +0.0553001,-0.0683574,0.0855333,1.57274,-0.106492,0.353857 +0.0553297,-0.0679518,0.0855229,1.57313,-0.106421,0.354394 +0.0553578,-0.0675531,0.0855077,1.57353,-0.106335,0.354908 +0.055384,-0.0671611,0.0854873,1.57395,-0.106234,0.355397 +0.0554083,-0.0667755,0.0854616,1.57439,-0.106118,0.355863 +0.0554305,-0.0663962,0.0854304,1.57485,-0.105986,0.356305 +0.0554505,-0.0660229,0.0853935,1.57533,-0.105837,0.356724 +0.0554682,-0.0656553,0.0853507,1.57583,-0.105672,0.357118 +0.0554833,-0.0652932,0.0853018,1.57637,-0.105488,0.357489 +0.0554959,-0.0649363,0.0852466,1.57693,-0.105286,0.357836 +0.0555056,-0.0645842,0.0851848,1.57754,-0.105065,0.358158 +0.0555124,-0.0642368,0.0851162,1.57818,-0.104824,0.358456 +0.0555161,-0.0638935,0.0850408,1.57887,-0.104563,0.35873 +0.0555165,-0.0635542,0.0849582,1.5796,-0.10428,0.358978 +0.0555134,-0.0632185,0.0848682,1.58038,-0.103975,0.359202 +0.0555068,-0.062886,0.0847708,1.58122,-0.103648,0.359399 +0.0554963,-0.0625565,0.0846658,1.58212,-0.103296,0.359571 +0.055482,-0.0622297,0.084553,1.58307,-0.102921,0.359715 +0.0554635,-0.0619051,0.0844322,1.5841,-0.10252,0.359832 +0.0554406,-0.0615826,0.0843035,1.5852,-0.102092,0.359922 +0.0554133,-0.0612617,0.0841665,1.58638,-0.101637,0.359982 +0.0553814,-0.0609423,0.0840214,1.58764,-0.101154,0.360013 +0.0553446,-0.0606239,0.0838679,1.58898,-0.100642,0.360013 +0.0553027,-0.0603064,0.0837062,1.59041,-0.100099,0.359982 +0.0552557,-0.0599895,0.083536,1.59194,-0.0995251,0.359918 +0.0552033,-0.0596729,0.0833576,1.59357,-0.0989183,0.359821 +0.0551453,-0.0593565,0.0831708,1.5953,-0.0982778,0.359689 +0.0550816,-0.0590399,0.0829758,1.59715,-0.0976023,0.359522 +0.055012,-0.0587231,0.0827726,1.5991,-0.0968907,0.359317 +0.0549363,-0.0584058,0.0825613,1.60118,-0.0961417,0.359075 +0.0548543,-0.0580879,0.082342,1.60337,-0.0953542,0.358793 +0.054766,-0.0577692,0.082115,1.6057,-0.0945268,0.358471 +0.0546711,-0.0574496,0.0818803,1.60815,-0.0936583,0.358108 +0.0545695,-0.0571291,0.0816383,1.61074,-0.0927474,0.357701 +0.0544611,-0.0568076,0.0813891,1.61347,-0.091793,0.35725 +0.0543457,-0.0564849,0.081133,1.61634,-0.0907937,0.356754 +0.0542232,-0.0561611,0.0808703,1.61935,-0.0897484,0.356212 +0.0540935,-0.0558362,0.0806013,1.62251,-0.0886558,0.355622 +0.0539566,-0.0555101,0.0803263,1.62582,-0.0875148,0.354984 +0.0538122,-0.0551829,0.0800458,1.62928,-0.0863244,0.354296 +0.0536605,-0.0548547,0.07976,1.6329,-0.0850834,0.353558 +0.0535013,-0.0545255,0.0794695,1.63668,-0.0837908,0.35277 +0.0533345,-0.0541953,0.0791745,1.64061,-0.0824459,0.35193 +0.0531602,-0.0538644,0.0788757,1.6447,-0.0810478,0.351038 +0.0529784,-0.0535328,0.0785733,1.64895,-0.0795958,0.350094 +0.0527891,-0.0532007,0.078268,1.65335,-0.0780893,0.349097 +0.0525924,-0.0528681,0.0779602,1.65792,-0.0765278,0.348048 +0.0523883,-0.0525354,0.0776503,1.66264,-0.0749112,0.346946 +0.0521769,-0.0522027,0.0773391,1.66752,-0.0732392,0.345792 +0.0519583,-0.0518702,0.0770268,1.67255,-0.0715119,0.344586 +0.0517328,-0.0515381,0.0767142,1.67773,-0.0697295,0.343329 +0.0515004,-0.0512066,0.0764017,1.68306,-0.0678923,0.342021 +0.0512614,-0.0508761,0.07609,1.68854,-0.0660011,0.340663 +0.051016,-0.0505468,0.0757795,1.69415,-0.0640567,0.339257 +0.0507644,-0.0502189,0.0754708,1.69991,-0.0620601,0.337804 +0.0505071,-0.0498927,0.0751645,1.70579,-0.0600127,0.336305 +0.0502442,-0.0495687,0.0748611,1.7118,-0.057916,0.334762 +0.0499761,-0.0492469,0.0745613,1.71793,-0.0557719,0.333177 +0.0497033,-0.0489279,0.0742656,1.72417,-0.0535824,0.331551 +0.0494261,-0.0486119,0.0739744,1.73052,-0.05135,0.329887 +0.049145,-0.0482992,0.0736885,1.73697,-0.0490772,0.328187 +0.0488604,-0.0479902,0.0734083,1.7435,-0.0467671,0.326454 +0.0485729,-0.0476853,0.0731344,1.75012,-0.0444227,0.32469 +0.0482829,-0.0473849,0.0728673,1.75681,-0.0420475,0.322898 +0.047991,-0.0470892,0.0726075,1.76356,-0.0396453,0.32108 +0.0476978,-0.0467987,0.0723555,1.77037,-0.03722,0.319241 +0.0474039,-0.0465137,0.0721119,1.77722,-0.0347759,0.317382 +0.0471099,-0.0462346,0.0718771,1.7841,-0.0323174,0.315507 +0.0468163,-0.0459618,0.0716516,1.791,-0.0298491,0.313619 +0.046524,-0.0456957,0.0714357,1.79791,-0.0273759,0.311722 +0.0462334,-0.0454367,0.0712301,1.80483,-0.0249029,0.309818 +0.0459453,-0.045185,0.0710349,1.81173,-0.0224353,0.307912 +0.0456603,-0.0449411,0.0708508,1.8186,-0.0199783,0.306006 +0.0453792,-0.0447053,0.0706779,1.82545,-0.0175374,0.304103 +0.0451025,-0.044478,0.0705166,1.83224,-0.0151181,0.302208 +0.0448309,-0.0442596,0.0703673,1.83898,-0.0127259,0.300323 +0.0445652,-0.0440502,0.0702301,1.84565,-0.0103662,0.298451 +0.0443058,-0.0438502,0.0701054,1.85223,-0.00804461,0.296597 +0.0440534,-0.0436599,0.0699934,1.85873,-0.00576651,0.294762 +0.0438087,-0.0434796,0.0698941,1.86512,-0.00353718,0.292949 +0.0435722,-0.0433095,0.0698078,1.8714,-0.0013618,0.291163 +0.0433444,-0.0431497,0.0697345,1.87756,0.000754689,0.289405 +0.0431258,-0.0430005,0.0696742,1.88358,0.00280754,0.287677 +0.0429169,-0.042862,0.069627,1.88946,0.00479227,0.285983 +0.0427181,-0.0427343,0.0695927,1.8952,0.0067047,0.284325 +0.0425298,-0.0426175,0.0695714,1.90077,0.00854099,0.282705 +0.0423522,-0.0425116,0.0695628,1.90618,0.0102977,0.281124 +0.0421857,-0.0424165,0.0695667,1.91142,0.0119716,0.279585 +0.0420305,-0.0423323,0.069583,1.91648,0.0135603,0.27809 +0.0418867,-0.0422588,0.0696112,1.92136,0.0150614,0.276639 +0.0417543,-0.0421959,0.069651,1.92606,0.0164733,0.275233 +0.0416335,-0.0421433,0.069702,1.93056,0.0177947,0.273875 +0.0415241,-0.0421009,0.0697638,1.93487,0.019025,0.272564 +0.0414261,-0.0420684,0.0698358,1.93899,0.0201639,0.271302 +0.0413393,-0.0420453,0.0699175,1.94292,0.0212118,0.270089 +0.0412634,-0.0420313,0.0700083,1.94665,0.0221696,0.268925 +0.0411981,-0.0420259,0.0701074,1.95018,0.0230387,0.26781 +0.0411431,-0.0420288,0.0702142,1.95353,0.0238211,0.266745 +0.0410979,-0.0420393,0.070328,1.95669,0.0245191,0.265729 +0.041062,-0.0420569,0.0704479,1.95966,0.0251357,0.264761 +0.041035,-0.0420809,0.0705732,1.96245,0.0256743,0.263843 +0.0410161,-0.0421108,0.0707029,1.96507,0.0261388,0.262972 +0.0410048,-0.0421459,0.0708363,1.96751,0.0265334,0.262148 +0.0410003,-0.0421854,0.0709724,1.96979,0.0268626,0.261371 +0.041002,-0.0422286,0.0711102,1.97192,0.0271316,0.260639 +0.0410091,-0.0422749,0.071249,1.97389,0.0273456,0.259951 +0.0410207,-0.0423233,0.0713877,1.97572,0.02751,0.259307 +0.0410362,-0.0423733,0.0715255,1.97742,0.0276306,0.258704 +0.0410547,-0.0424239,0.0716613,1.97899,0.0277132,0.258143 +0.0410755,-0.0424746,0.0717943,1.98045,0.0277637,0.257621 +0.0410976,-0.0425245,0.0719236,1.98179,0.0277881,0.257138 +0.0411203,-0.0425728,0.0720484,1.98304,0.0277923,0.256691 +0.0411428,-0.042619,0.0721678,1.98419,0.0277822,0.25628 +0.0411645,-0.0426623,0.072281,1.98526,0.0277634,0.255904 +0.0411845,-0.0427022,0.0723872,1.98625,0.0277416,0.25556 +0.0412023,-0.042738,0.0724858,1.98718,0.0277219,0.255247 +0.0412172,-0.0427692,0.0725762,1.98804,0.0277092,0.254965 +0.0412286,-0.0427953,0.0726576,1.98885,0.0277082,0.254712 +0.041236,-0.042816,0.0727297,1.98961,0.027723,0.254486 +0.041239,-0.0428308,0.072792,1.99033,0.0277573,0.254286 +0.0412373,-0.0428395,0.0728441,1.99101,0.0278144,0.254111 +0.0412306,-0.0428419,0.0728857,1.99166,0.0278968,0.253961 +0.0412186,-0.0428378,0.0729165,1.99228,0.0280067,0.253833 +0.0412013,-0.0428272,0.0729365,1.99287,0.0281456,0.253726 +0.0411785,-0.0428102,0.0729456,1.99343,0.0283145,0.253641 +0.0411505,-0.0427868,0.0729438,1.99397,0.0285135,0.253576 +0.0411172,-0.0427571,0.0729312,1.99448,0.0287423,0.253529 +0.0410789,-0.0427216,0.072908,1.99496,0.029,0.253502 +0.0410359,-0.0426804,0.0728745,1.99542,0.0292849,0.253492 +0.0409887,-0.042634,0.0728309,1.99584,0.0295948,0.2535 +0.0409375,-0.0425828,0.0727777,1.99623,0.0299269,0.253524 +0.0408831,-0.0425274,0.0727154,1.99658,0.0302778,0.253566 +0.0408258,-0.0424683,0.0726444,1.99688,0.0306437,0.253625 +0.0407665,-0.042406,0.0725653,1.99713,0.0310202,0.253701 +0.0407057,-0.0423414,0.0724788,1.99732,0.0314025,0.253794 +0.0406441,-0.042275,0.0723855,1.99745,0.0317855,0.253904 +0.0405827,-0.0422075,0.072286,1.9975,0.0321635,0.254033 +0.040522,-0.0421396,0.0721811,1.99747,0.0325311,0.254181 +0.0404629,-0.042072,0.0720715,1.99735,0.0328821,0.254348 +0.0404061,-0.0420054,0.0719579,1.99713,0.0332106,0.254536 +0.0403525,-0.0419405,0.0718409,1.9968,0.0335105,0.254747 +0.0403027,-0.0418778,0.0717214,1.99635,0.0337757,0.25498 +0.0402575,-0.0418179,0.0715999,1.99578,0.0340001,0.255239 +0.0402176,-0.0417615,0.0714771,1.99507,0.0341781,0.255525 +0.0401836,-0.0417089,0.0713536,1.99421,0.0343039,0.255839 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-0929-10.armplay b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-0929-10.armplay new file mode 100644 index 00000000..5e696a63 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-0929-10.armplay @@ -0,0 +1,1508 @@ +{ + "name": "aubo-joint", + "datatime": "29-Sep-2022 10:14:44", + "interval": 0.01, + "count": 40, + "jointlist": [ + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.605053627,0.1268308801,-1.279795365,-0.3339802077,1.567058186,0.05056032394], + [-1.604695894,0.127461259,-1.280734916,-0.3375239747,1.566793648,0.05031939775], + [-1.604102122,0.1285075712,-1.282294396,-0.3434059719,1.566354565,0.04991950486], + [-1.603275974,0.1299633659,-1.284464191,-0.3515899349,1.565743642,0.04936311076], + [-1.602222542,0.1318196676,-1.287230924,-0.3620254068,1.564964648,0.04865364579], + [-1.600948322,0.1340650316,-1.290577536,-0.3746480494,1.564022384,0.04779548404], + [-1.599461168,0.1366856145,-1.294483394,-0.38938004,1.56292266,0.04679391637], + [-1.597770251,0.1396652596,-1.298924419,-0.4061305509,1.561672255,0.04565511778], + [-1.595885994,0.1429855963,-1.303873228,-0.4247963096,1.560278881,0.04438610933], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,0.04299471489], + [-1.591585053,0.1505644863,-1.315169216,-0.4674021497,1.557098409,0.04148951286], + [-1.589194885,0.1547763133,-1.321446751,-0.4910795518,1.555330922,0.03987978332], + [-1.586664248,0.1592356673,-1.328093213,-0.516148463,1.55345956,0.03817545078], + [-1.584008745,0.1639150548,-1.335067625,-0.542454325,1.551495861,0.03638702302], + [-1.581244746,0.1687856259,-1.342326988,-0.5698349534,1.549451932,0.0345255263], + [-1.578389294,0.1738173519,-1.349826545,-0.5981215377,1.547340375,0.03260243735], + [-1.575459993,0.1789792105,-1.357520058,-0.6271396815,1.545174208,0.03062961266], + [-1.572474904,0.1842393771,-1.365360095,-0.6567104785,1.542966786,0.02861921536], + [-1.569452429,0.1895654211,-1.373298319,-0.6866516147,1.540731719,0.02658364021], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,0.0245354372], + [-1.56336998,0.2002835903,-1.389273258,-0.7469053715,1.536233853,0.02248723419], + [-1.560347505,0.2056096343,-1.397211483,-0.7768465077,1.533998786,0.02045165904], + [-1.557362416,0.2108698009,-1.40505152,-0.8064173046,1.531791364,0.01844126173], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,0.01646843705], + [-1.551577663,0.2210633855,-1.42024459,-0.8637220327,1.52751364,0.0145453481], + [-1.548813664,0.2259339566,-1.427503952,-0.8911026612,1.525469711,0.01268385138], + [-1.546158161,0.2306133441,-1.434478365,-0.9174085232,1.523506012,0.01089542362], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,0.009191091079], + [-1.541237356,0.2392845251,-1.447402362,-0.9661548365,1.519867163,0.007581361537], + [-1.539002393,0.2432228578,-1.453272266,-0.9882947505,1.518214447,0.006076159509], + [-1.536936415,0.2468634151,-1.45869835,-1.008760677,1.516686692,0.004684765066], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,0.003415756618], + [-1.533361241,0.2531633969,-1.468088183,-1.044176946,1.514042913,0.002276958024], + [-1.531874087,0.2557839798,-1.471994042,-1.058908937,1.512943189,0.001275390355], + [-1.530599867,0.2580293438,-1.475340654,-1.071531579,1.512000925,0.0004172286105], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.0002922363583], + [-1.528720287,0.2613414402,-1.480277182,-1.090151014,1.510611008,-0.0008486304635], + [-1.528126515,0.2623877524,-1.481836662,-1.096033011,1.510171924,-0.001248523351], + [-1.527768782,0.2630181313,-1.482776213,-1.099576778,1.509907386,-0.001489449547], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-0.001569923662], + [-1.527654348,0.2635105881,-1.482864395,-1.099981824,1.509815641,-0.001566160019], + [-1.527669507,0.2643557138,-1.48218791,-1.097647466,1.509805492,-0.001554876671], + [-1.527694738,0.2657623655,-1.48106195,-1.093762091,1.509788602,-0.00153609634], + [-1.52772999,0.2677277102,-1.479488781,-1.088333526,1.509765002,-0.001509856847], + [-1.527775193,0.2702477902,-1.477471572,-1.081372703,1.509734741,-0.001476211035], + [-1.527830255,0.2733175302,-1.475014385,-1.072893639,1.50969788,-0.001435226662], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-0.001386986266], + [-1.527969493,0.2810801679,-1.468800747,-1.051452117,1.509604667,-0.001331586997], + [-1.528053388,0.2857574325,-1.46505681,-1.038532839,1.509548503,-0.00126914042], + [-1.528146583,0.2909531229,-1.460897897,-1.024181595,1.509486113,-0.001199772295], + [-1.528248889,0.2966567756,-1.456332383,-1.008427286,1.509417624,-0.00112362232], + [-1.5283601,0.3028569042,-1.451369463,-0.9913016384,1.509343174,-0.001040843852], + [-1.528479993,0.3095410225,-1.446019131,-0.9728391421,1.509262911,-0.0009516035943], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-0.0008560812657], + [-1.528744839,0.3243064367,-1.43420009,-0.9320549437,1.509085609,-0.0007544692354], + [-1.52888926,0.332357997,-1.427755183,-0.9098153755,1.508988927,-0.0006469721363], + [-1.529041296,0.3408341358,-1.42097042,-0.8864030608,1.508887146,-0.0005338064534], + [-1.529200641,0.3497177831,-1.413859465,-0.8618651487,1.508780472,-0.0004152000873], + [-1.529366975,0.3589910486,-1.406436639,-0.8362510554,1.50866912,-0.0002913918954], + [-1.529539962,0.368635257,-1.39871689,-0.8096123643,1.508553313,-0.000162631211], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-2.917734088e-05], + [-1.529904492,0.3889581061,-1.382449376,-0.7534777309,1.508309278,0.0001087009566], + [-1.5300953,0.3995958194,-1.373934371,-0.7240948364,1.508181541,0.0002507260128], + [-1.530291295,0.410522703,-1.365187899,-0.6939132118,1.508050332,0.0003966118083], + [-1.530492082,0.4217167517,-1.356227573,-0.6629936387,1.507915915,0.0005460645484], + [-1.530697256,0.4331554221,-1.347071439,-0.6313983853,1.50777856,0.0006987832553], + [-1.530906406,0.4448156783,-1.337737936,-0.59919108,1.507638545,0.0008544603737], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,0.001012782391], + [-1.531334936,0.4687066204,-1.318614326,-0.5332008607,1.507351665,0.001173430467], + [-1.531553454,0.480889193,-1.308862732,-0.4995508423,1.507205377,0.001336081078], + [-1.531774222,0.493197222,-1.299010716,-0.4655542955,1.507057584,0.001500406668], + [-1.531996796,0.5056059205,-1.289078118,-0.4312796848,1.506908581,0.001666076307], + [-1.532220728,0.5180902992,-1.279084942,-0.3967960347,1.50675867,0.001832756358], + [-1.532445566,0.5306252162,-1.269051313,-0.3621727906,1.506608151,0.002000111149], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,0.002167803651], + [-1.532896149,0.5557456392,-1.248943559,-0.292786568,1.506306508,0.002335496153], + [-1.533120987,0.5682805562,-1.23890993,-0.2581633239,1.506155989,0.002502850944], + [-1.533344918,0.5807649348,-1.228916754,-0.2236796738,1.506006078,0.002669530995], + [-1.533567492,0.5931736334,-1.218984156,-0.1894050631,1.505857076,0.002835200633], + [-1.533788261,0.6054816624,-1.20913214,-0.1554085163,1.505709282,0.002999526223], + [-1.534006779,0.617664235,-1.199380546,-0.1217584979,1.505562995,0.003162176835], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,0.003322824911], + [-1.534435309,0.6415551771,-1.180256936,-0.05576827864,1.505276114,0.003481146928], + [-1.534644458,0.6532154333,-1.170923433,-0.02356097333,1.505136099,0.003636824046], + [-1.534849633,0.6646541037,-1.161767299,0.008034280154,1.504998744,0.003789542753], + [-1.53505042,0.6758481524,-1.152806973,0.03895385317,1.504864327,0.003938995493], + [-1.535246414,0.686775036,-1.144060501,0.06913547782,1.504733118,0.004084881289], + [-1.535437222,0.6974127493,-1.135545496,0.09851837233,1.504605381,0.004226906345], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,0.004364784642], + [-1.535801752,0.7177355984,-1.119277982,0.1546530057,1.504361346,0.004498238512], + [-1.535974739,0.7273798068,-1.111558233,0.1812916968,1.504245539,0.004626999197], + [-1.536141073,0.7366530723,-1.104135407,0.2069057901,1.504134187,0.004750807389], + [-1.536300419,0.7455367196,-1.097024452,0.2314437022,1.504027513,0.004869413755], + [-1.536452455,0.7540128584,-1.090239689,0.2548560169,1.503925732,0.004982579438], + [-1.536596875,0.7620644187,-1.083794782,0.2770955851,1.50382905,0.005090076537], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,0.005191688567], + [-1.536861721,0.7768298329,-1.071975741,0.3178797835,1.503651748,0.005287210896], + [-1.536981614,0.7835139512,-1.066625409,0.3363422798,1.503571486,0.005376451153], + [-1.537092825,0.7897140798,-1.061662489,0.353467927,1.503497035,0.005459229622], + [-1.537195131,0.7954177325,-1.057096975,0.3692222364,1.503428546,0.005535379596], + [-1.537288326,0.8006134229,-1.052938062,0.3835734808,1.503366157,0.005604747721], + [-1.537372222,0.8052906875,-1.049194125,0.3964927587,1.503309992,0.005667194298], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,0.005722593568], + [-1.53751146,0.8130533252,-1.042980487,0.4179342807,1.503216779,0.005770833964], + [-1.537566521,0.8161230652,-1.0405233,0.4264133444,1.503179918,0.005811818336], + [-1.537611724,0.8186431452,-1.038506091,0.4333741678,1.503149657,0.005845464148], + [-1.537646976,0.8206084899,-1.036932922,0.4388027328,1.503126058,0.005871703641], + [-1.537672207,0.8220151416,-1.035806962,0.4426881071,1.503109167,0.005890483972], + [-1.537687366,0.8228602673,-1.035130477,0.4450224659,1.503099018,0.005901767321], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,0.005905530964], + [-1.537796433,0.8220685929,-1.035281805,0.4446010298,1.503194357,0.005974482913], + [-1.538107822,0.8188544953,-1.036410403,0.4410081938,1.50348992,0.00618091365], + [-1.538624671,0.8135196881,-1.038283668,0.4350447509,1.503980499,0.006523550459], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,0.007000280872], + [-1.540260754,0.7966323809,-1.044213477,0.4161675005,1.505533426,0.007608165686], + [-1.5413699,0.7851839967,-1.048233463,0.4033700773,1.506586199,0.00834345709], + [-1.542664395,0.7718224929,-1.052925222,0.3884340989,1.507814899,0.009201621767], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,0.01017736885], + [-1.545776408,0.7397009258,-1.064204391,0.3525274348,1.510768742,0.01126468253], + [-1.547574741,0.7211389027,-1.07072226,0.3317781255,1.512475672,0.01245685915], + [-1.549520167,0.7010586192,-1.077773252,0.3093316492,1.51432222,0.01374654856], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,0.01512579938], + [-1.553803487,0.656847075,-1.093297695,0.2599103658,1.518387835,0.01658610809], + [-1.556114973,0.6329883931,-1.101675433,0.2332402574,1.520581837,0.01811847138], + [-1.558520898,0.6081549281,-1.110395457,0.2054805006,1.522865478,0.01971344173], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,0.02136118562], + [-1.563556242,0.5561811408,-1.128645535,0.1473822976,1.527644896,0.02305154416], + [-1.566154617,0.5293612541,-1.138063071,0.117402046,1.530111205,0.02477409572], + [-1.568785533,0.5022054801,-1.14759855,0.08704632726,1.532608402,0.02651822021], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,0.02827316451], + [-1.574080007,0.4475570061,-1.166787817,0.02595826147,1.537633778,0.03002810881], + [-1.576710923,0.4204012321,-1.176323297,-0.004397457311,1.540130975,0.0317722333], + [-1.579309297,0.3935813455,-1.185740833,-0.03437770887,1.542597284,0.03349478486], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,0.0351851434], + [-1.584344642,0.3416075581,-1.20399091,-0.09247591191,1.547376702,0.03683288729], + [-1.586750567,0.3167740931,-1.212710934,-0.1202356687,1.549660343,0.03842785764], + [-1.589062053,0.2929154112,-1.221088672,-0.1469057771,1.551854345,0.03996022094], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,0.04142052964], + [-1.593345373,0.248703867,-1.236613116,-0.1963270605,1.55591996,0.04279978047], + [-1.595290798,0.2286235835,-1.243664107,-0.2187735368,1.557766508,0.04408946987], + [-1.597089131,0.2100615604,-1.250181977,-0.239522846,1.559473438,0.0452816465], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,0.04636896018], + [-1.600201145,0.1779399933,-1.261461145,-0.2754295102,1.562427281,0.04734470726], + [-1.601495639,0.1645784895,-1.266152904,-0.2903654886,1.563655981,0.04820287193], + [-1.602604786,0.1531301053,-1.27017289,-0.3031629117,1.564708754,0.04893816334], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,0.04954604815], + [-1.604240869,0.1362427981,-1.276102699,-0.3220401622,1.566261681,0.05002277856], + [-1.604757717,0.130907991,-1.277975964,-0.328003605,1.56675226,0.05036541537], + [-1.605069107,0.1276938933,-1.279104562,-0.3315964411,1.567047823,0.05057184611] + ] +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-1014.armplay b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-1014.armplay new file mode 100644 index 00000000..7fccc661 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/aubo-joint-test-1014.armplay @@ -0,0 +1,1788 @@ +{ + "name": "aubo-joint", + "datatime": "14-Oct-2022 12:14:45", + "interval": 0.01, + "count": 30, + "jointlist": [ + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,0.05064079806], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,0.04873132378], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,0.0447502944], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,0.03870387664], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,0.0306022621], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,0.02045953919], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,0.008293515889], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-0.005874504167], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-0.0220199896], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-0.04011548979], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-0.06013098008], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-0.08203423934], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-0.1057912552], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-0.1313666517], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-0.1587241343], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-0.2225394113], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-0.2863247916], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-0.3500507059], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-0.4136882364], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-0.4772094338], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-0.5405876233], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-0.6037976969], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-0.6668163887], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-0.7296225292], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-0.7921972781], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-0.8545243301], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-0.9165900937], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-0.97838384], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-1.039897821], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-1.101127352], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-1.162193401], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-1.223218722], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-1.284203986], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-1.345150304], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-1.406059211], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-1.466932653], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-1.527772965], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-1.588582843], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-1.64936532], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-1.710123727], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-1.770861658], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-1.831582932], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-1.892291552], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-1.952991657], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-2.013687482], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-2.074383307], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-2.135083413], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-2.195792033], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-2.256513307], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-2.317251238], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-2.378009644], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-2.438792121], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-2.499602], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-2.560442312], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-2.621315754], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-2.682224661], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-2.743170978], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-2.804156243], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-2.865181564], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-2.926247612], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-2.987211604], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-3.047931874], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-3.108412434], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-3.168659924], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-3.228683537], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-3.288494917], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-3.348108037], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-3.407539038], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-3.466806058], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-3.525929034], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-3.584929477], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-3.643830244], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-3.702655281], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-3.761429367], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-3.820177836], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-3.878926306], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-3.937700391], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-3.996525429], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-4.055426195], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-4.114426638], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-4.173549614], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-4.232816635], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-4.292247636], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-4.351860755], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-4.411672135], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-4.471695748], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-4.531943238], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-4.592423799], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-4.653144068], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-4.71410806], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-4.716017534], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-4.719998564], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-4.726044981], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-4.734146596], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-4.744289319], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-4.756455342], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-4.770623362], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-4.786768848], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-4.804864348], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-4.824879838], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-4.846783097], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-4.870540113], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-4.89611551], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-4.923472992], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-4.987288269], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-5.05107365], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-5.114799564], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-5.178437094], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-5.241958292], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-5.305336481], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-5.368546555], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-5.431565247], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-5.494371387], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-5.556946136], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-5.619273188], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-5.681338952], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-5.743132698], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-5.804646679], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-5.86587621], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-5.926942259], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-5.98796758], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-6.048952844], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-6.109899162], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-6.170808069], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-6.231681511], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-6.292521823], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-6.353331701], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-6.414114178], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-6.474872585], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-6.535610516], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-6.59633179], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-6.65704041], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-6.717740515], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-6.77843634], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-6.839132165], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-6.899832271], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-6.960540891], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-7.021262165], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-7.082000096], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-7.142758502], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-7.203540979], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-7.264350858], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-7.32519117], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-7.386064612], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-7.446973519], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-7.507919836], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-7.568905101], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-7.629930422], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-7.69099647], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-7.751960462], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-7.812680732], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-7.873161292], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-7.933408782], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-7.993432395], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-8.053243775], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-8.112856895], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-8.172287896], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-8.231554916], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-8.290677892], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-8.349678335], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-8.408579102], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-8.467404139], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-8.526178225], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-8.584926694], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-8.643675164], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-8.702449249], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-8.761274287], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-8.820175053], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-8.879175496], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-8.938298472], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-8.997565493], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-9.056996494], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-9.116609613], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-9.176420993], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-9.236444606], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-9.296692096], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-9.357172657], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-9.417892926], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-9.478856918], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-9.480766392], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-9.484747421], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-9.490793839], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-9.498895454], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-9.509038177], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-9.5212042], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-9.53537222], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-9.551517705], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-9.569613206], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-9.589628696], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-9.611531955], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-9.635288971], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-9.660864368], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-9.68822185], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-9.752037127], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-9.815822508], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-9.879548422], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-9.943185952], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-10.00670715], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-10.07008534], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-10.13329541], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-10.1963141], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-10.25912025], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-10.32169499], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-10.38402205], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-10.44608781], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-10.50788156], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-10.56939554], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-10.63062507], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-10.69169112], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-10.75271644], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-10.8137017], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-10.87464802], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-10.93555693], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-10.99643037], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-11.05727068], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-11.11808056], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-11.17886304], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-11.23962144], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-11.30035937], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-11.36108065], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-11.42178927], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-11.48248937], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-11.5431852], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-11.60388102], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-11.66458113], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-11.72528975], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-11.78601102], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-11.84674895], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-11.90750736], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-11.96828984], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-12.02909972], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-12.08994003], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-12.15081347], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-12.21172238], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-12.27266869], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-12.33365396], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-12.39467928], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-12.45574533], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-12.51670932], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-12.57742959], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-12.63791015], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-12.69815764], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-12.75818125], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-12.81799263], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-12.87760575], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-12.93703675], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-12.99630377], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-13.05542675], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-13.11442719], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-13.17332796], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-13.232153], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-13.29092708], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-13.34967555], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-13.40842402], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-13.46719811], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-13.52602314], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-13.58492391], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-13.64392435], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-13.70304733], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-13.76231435], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-13.82174535], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-13.88135847], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-13.94116985], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-14.00119346], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-14.06144095], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-14.12192151], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-14.18264178], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-14.24360578], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-14.24551525], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-14.24949628], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-14.2555427], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-14.26364431], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-14.27378703], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-14.28595306], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-14.30012108], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-14.31626656], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-14.33436206], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-14.35437755], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-14.37628081], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-14.40003783], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-14.42561323], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-14.45297071], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-14.51678599], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-14.58057137], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-14.64429728], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-14.70793481], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-14.77145601], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-14.8348342], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-14.89804427], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-14.96106296], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-15.0238691], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-15.08644385], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-15.1487709], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-15.21083667], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-15.27263041], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-15.33414439], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-15.39537393], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-15.45643997], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-15.5174653], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-15.57845056], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-15.63939688], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-15.70030578], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-15.76117923], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-15.82201954], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-15.88282942], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-15.94361189], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-16.0043703], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-16.06510823], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-16.12582951], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-16.18653813], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-16.24723823], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-16.30793406], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-16.36862988], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-16.42932999], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-16.49003861], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-16.55075988], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-16.61149781], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-16.67225622], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-16.7330387], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-16.79384857], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-16.85468889], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-16.91556233], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-16.97647123], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-17.03741755], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-17.09840282], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-17.15942814], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-17.22049419], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-17.28145818], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-17.34217845], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-17.40265901], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-17.4629065], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-17.52293011], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-17.58274149], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-17.64235461], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-17.70178561], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-17.76105263], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-17.82017561], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-17.87917605], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-17.93807682], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-17.99690185], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-18.05567594], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-18.11442441], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-18.17317288], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-18.23194697], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-18.290772], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-18.34967277], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-18.40867321], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-18.46779619], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-18.52706321], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-18.58649421], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-18.64610733], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-18.70591871], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-18.76594232], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-18.82618981], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-18.88667037], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-18.94739064], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-19.00835463], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-19.01026411], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-19.01424514], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-19.02029156], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-19.02839317], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-19.03853589], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-19.05070192], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-19.06486994], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-19.08101542], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-19.09911092], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-19.11912641], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-19.14102967], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-19.16478669], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-19.19036208], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-19.21771957], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-19.28153484], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-19.34532022], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-19.40904614], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-19.47268367], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-19.53620487], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-19.59958306], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-19.66279313], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-19.72581182], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-19.78861796], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-19.85119271], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-19.91351976], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-19.97558553], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-20.03737927], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-20.09889325], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-20.16012278], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-20.22118883], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-20.28221415], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-20.34319942], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-20.40414574], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-20.46505464], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-20.52592808], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-20.5867684], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-20.64757828], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-20.70836075], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-20.76911916], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-20.82985709], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-20.89057836], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-20.95128698], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-21.01198709], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-21.07268291], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-21.13337874], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-21.19407884], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-21.25478746], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-21.31550874], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-21.37624667], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-21.43700508], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-21.49778755], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-21.55859743], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-21.61943774], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-21.68031119], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-21.74122009], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-21.80216641], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-21.86315167], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-21.924177], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-21.98524304], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-22.04620704], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-22.10692731], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-22.16740787], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-22.22765536], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-22.28767897], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-22.34749035], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-22.40710347], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-22.46653447], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-22.52580149], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-22.58492447], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-22.64392491], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-22.70282568], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-22.76165071], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-22.8204248], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-22.87917327], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-22.93792174], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-22.99669582], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-23.05552086], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-23.11442163], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-23.17342207], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-23.23254505], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-23.29181207], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-23.35124307], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-23.41085619], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-23.47066757], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-23.53069118], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-23.59093867], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-23.65141923], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-23.7121395], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-23.77310349], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-23.77501297], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-23.778994], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-23.78504041], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-23.79314203], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-23.80328475], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-23.81545077], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-23.82961879], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-23.84576428], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-23.86385978], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-23.88387527], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-23.90577853], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-23.92953554], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-23.95511094], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-23.98246842], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-24.0462837], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-24.11006908], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-24.173795], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-24.23743253], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-24.30095372], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-24.36433191], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-24.42754199], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-24.49056068], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-24.55336682], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-24.61594157], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-24.67826862], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-24.74033438], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-24.80212813], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-24.86364211], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-24.92487164], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-24.98593769], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-25.04696301], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-25.10794828], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-25.16889459], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-25.2298035], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-25.29067694], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-25.35151725], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-25.41232713], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-25.47310961], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-25.53386802], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-25.59460595], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-25.65532722], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-25.71603584], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-25.77673595], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-25.83743177], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-25.8981276], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-25.9588277], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-26.01953632], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-26.0802576], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-26.14099553], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-26.20175393], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-26.26253641], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-26.32334629], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-26.3841866], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-26.44506004], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-26.50596895], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-26.56691527], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-26.62790053], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-26.68892585], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-26.7499919], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-26.81095589], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-26.87167616], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-26.93215672], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-26.99240421], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-27.05242783], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-27.11223921], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-27.17185233], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-27.23128333], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-27.29055035], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-27.34967332], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-27.40867377], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-27.46757453], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-27.52639957], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-27.58517366], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-27.64392213], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-27.7026706], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-27.76144468], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-27.82026972], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-27.87917048], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-27.93817093], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-27.9972939], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-28.05656092], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-28.11599193], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-28.17560504], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-28.23541643], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-28.29544004], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-28.35568753], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-28.41616809], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-28.47688836], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-28.53785235], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-28.53976182], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-28.54374285], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-28.54978927], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-28.55789089], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-28.56803361], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-28.58019963], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-28.59436765], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-28.61051314], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-28.62860864], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-28.64862413], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-28.67052739], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-28.6942844], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-28.7198598], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-28.74721728], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-28.81103256], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-28.87481794], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-28.93854385], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-29.00218138], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-29.06570258], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-29.12908077], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-29.19229084], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-29.25530954], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-29.31811568], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-29.38069043], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-29.44301748], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-29.50508324], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-29.56687699], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-29.62839097], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-29.6896205], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-29.75068655], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-29.81171187], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-29.87269713], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-29.93364345], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-29.99455236], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-30.0554258], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-30.11626611], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-30.17707599], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-30.23785847], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-30.29861687], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-30.35935481], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-30.42007608], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-30.4807847], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-30.54148481], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-30.60218063], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-30.66287645], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-30.72357656], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-30.78428518], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-30.84500645], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-30.90574439], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-30.96650279], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-31.02728527], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-31.08809515], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-31.14893546], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-31.2098089], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-31.27071781], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-31.33166413], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-31.39264939], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-31.45367471], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-31.51474076], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-31.57570475], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-31.63642502], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-31.69690558], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-31.75715307], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-31.81717668], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-31.87698807], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-31.93660118], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-31.99603219], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-32.05529921], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-32.11442218], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-32.17342262], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-32.23232339], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-32.29114843], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-32.34992251], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-32.40867098], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-32.46741945], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-32.52619354], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-32.58501858], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-32.64391934], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-32.70291979], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-32.76204276], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-32.82130978], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-32.88074078], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-32.9403539], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-33.00016528], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-33.0601889], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-33.12043639], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-33.18091695], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-33.24163722], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-33.30260121], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-33.30451068], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-33.30849171], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-33.31453813], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-33.32263974], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-33.33278247], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-33.34494849], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-33.35911651], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-33.375262], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-33.3933575], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-33.41337299], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-33.43527624], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-33.45903326], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-33.48460866], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-33.51196614], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-33.57578142], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-33.6395668], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-33.70329271], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-33.76693024], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-33.83045144], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-33.89382963], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-33.9570397], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-34.02005839], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-34.08286453], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-34.14543928], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-34.20776634], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-34.2698321], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-34.33162585], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-34.39313983], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-34.45436936], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-34.51543541], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-34.57646073], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-34.63744599], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-34.69839231], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-34.75930122], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-34.82017466], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-34.88101497], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-34.94182485], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-35.00260733], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-35.06336573], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-35.12410366], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-35.18482494], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-35.24553356], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-35.30623366], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-35.36692949], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-35.42762531], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-35.48832542], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-35.54903404], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-35.60975531], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-35.67049324], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-35.73125165], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-35.79203413], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-35.85284401], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-35.91368432], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-35.97455776], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-36.03546667], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-36.09641298], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-36.15739825], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-36.21842357], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-36.27948962], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-36.34045361], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-36.40117388], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-36.46165444], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-36.52190193], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-36.58192554], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-36.64173692], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-36.70135004], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-36.76078104], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-36.82004806], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-36.87917104], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-36.93817148], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-36.99707225], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-37.05589729], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-37.11467137], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-37.17341984], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-37.23216831], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-37.2909424], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-37.34976743], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-37.4086682], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-37.46766864], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-37.52679162], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-37.58605864], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-37.64548964], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-37.70510276], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-37.76491414], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-37.82493775], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-37.88518524], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-37.9456658], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-38.00638607], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-38.06735007], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-38.06925954], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-38.07324057], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-38.07928699], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-38.0873886], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-38.09753132], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-38.10969735], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-38.12386537], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-38.14001085], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-38.15810635], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-38.17812184], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-38.2000251], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-38.22378212], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-38.24935752], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-38.276715], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-38.34053027], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-38.40431566], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-38.46804157], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-38.5316791], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-38.5952003], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-38.65857849], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-38.72178856], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-38.78480725], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-38.84761339], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-38.91018814], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-38.97251519], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-39.03458096], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-39.0963747], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-39.15788868], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-39.21911822], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-39.28018426], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-39.34120959], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-39.40219485], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-39.46314117], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-39.52405007], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-39.58492352], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-39.64576383], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-39.70657371], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-39.76735618], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-39.82811459], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-39.88885252], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-39.9495738], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-40.01028242], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-40.07098252], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-40.13167835], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-40.19237417], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-40.25307428], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-40.3137829], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-40.37450417], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-40.4352421], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-40.49600051], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-40.55678298], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-40.61759286], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-40.67843318], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-40.73930662], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-40.80021552], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-40.86116184], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-40.92214711], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-40.98317243], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-41.04423848], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-41.10520247], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-41.16592274], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-41.2264033], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-41.28665079], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-41.3466744], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-41.40648578], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-41.4660989], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-41.5255299], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-41.58479692], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-41.6439199], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-41.70292034], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-41.76182111], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-41.82064614], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-41.87942023], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-41.9381687], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-41.99691717], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-42.05569125], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-42.11451629], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-42.17341706], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-42.2324175], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-42.29154048], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-42.3508075], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-42.4102385], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-42.46985162], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-42.529663], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-42.58968661], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-42.6499341], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-42.71041466], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-42.77113493], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-42.83209892], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-42.8340084], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-42.83798943], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-42.84403584], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-42.85213746], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-42.86228018], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-42.87444621], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-42.88861423], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-42.90475971], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-42.92285521], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-42.9428707], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-42.96477396], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-42.98853098], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-43.01410637], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-43.04146386], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-43.10527913], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-43.16906451], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-43.23279043], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-43.29642796], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-43.35994916], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-43.42332734], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-43.48653742], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-43.54955611], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-43.61236225], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-43.674937], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-43.73726405], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-43.79932982], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-43.86112356], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-43.92263754], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-43.98386707], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-44.04493312], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-44.10595844], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-44.16694371], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-44.22789003], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-44.28879893], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-44.34967237], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-44.41051269], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-44.47132256], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-44.53210504], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-44.59286345], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-44.65360138], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-44.71432265], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-44.77503127], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-44.83573138], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-44.8964272], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-44.95712303], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-45.01782313], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-45.07853175], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-45.13925303], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-45.19999096], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-45.26074937], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-45.32153184], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-45.38234172], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-45.44318203], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-45.50405548], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-45.56496438], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-45.6259107], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-45.68689596], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-45.74792129], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-45.80898733], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-45.86995133], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-45.9306716], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-45.99115216], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-46.05139965], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-46.11142326], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-46.17123464], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-46.23084776], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-46.29027876], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-46.34954578], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-46.40866876], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-46.4676692], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-46.52656997], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-46.585395], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-46.64416909], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-46.70291756], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-46.76166603], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-46.82044011], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-46.87926515], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-46.93816592], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-46.99716636], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-47.05628934], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-47.11555636], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-47.17498736], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-47.23460048], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-47.29441186], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-47.35443547], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-47.41468296], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-47.47516352], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-47.53588379], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-47.59684778], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-47.59875726], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-47.60273829], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-47.6087847], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-47.61688632], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-47.62702904], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-47.63919506], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-47.65336308], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-47.66950857], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-47.68760407], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-47.70761956], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-47.72952282], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-47.75327983], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-47.77885523], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-47.80621271], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-47.87002799], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-47.93381337], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-47.99753929], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-48.06117682], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-48.12469801], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-48.1880762], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-48.25128628], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-48.31430497], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-48.37711111], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-48.43968586], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-48.50201291], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-48.56407867], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-48.62587242], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-48.6873864], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-48.74861593], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-48.80968198], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-48.8707073], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-48.93169257], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-48.99263888], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-49.05354779], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-49.11442123], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-49.17526154], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-49.23607142], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-49.2968539], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-49.35761231], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-49.41835024], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-49.47907151], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-49.53978013], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-49.60048024], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-49.66117606], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-49.72187189], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-49.78257199], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-49.84328061], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-49.90400189], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-49.96473982], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-50.02549822], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-50.0862807], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-50.14709058], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-50.20793089], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-50.26880433], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-50.32971324], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-50.39065956], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-50.45164482], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-50.51267014], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-50.57373619], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-50.63470018], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-50.69542045], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-50.75590101], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-50.8161485], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-50.87617212], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-50.9359835], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-50.99559662], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-51.05502762], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-51.11429464], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-51.17341761], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-51.23241806], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-51.29131882], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-51.35014386], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-51.40891795], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-51.46766642], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-51.52641489], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-51.58518897], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-51.64401401], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-51.70291477], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-51.76191522], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-51.82103819], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-51.88030521], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-51.93973622], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-51.99934933], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-52.05916071], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-52.11918433], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-52.17943182], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-52.23991238], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-52.30063265], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-52.36159664], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-52.36350611], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-52.36748714], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-52.37353356], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-52.38163518], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-52.3917779], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-52.40394392], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-52.41811194], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-52.43425743], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-52.45235293], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-52.47236842], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-52.49427168], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-52.51802869], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-52.54360409], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-52.57096157], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-52.63477685], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-52.69856223], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-52.76228814], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-52.82592567], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-52.88944687], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-52.95282506], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-53.01603513], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-53.07905383], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-53.14185997], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-53.20443472], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-53.26676177], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-53.32882753], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-53.39062128], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-53.45213526], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-53.51336479], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-53.57443084], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-53.63545616], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-53.69644142], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-53.75738774], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-53.81829665], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-53.87917009], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-53.9400104], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-54.00082028], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-54.06160276], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-54.12236116], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-54.1830991], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-54.24382037], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-54.30452899], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-54.36522909], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-54.42592492], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-54.48662074], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-54.54732085], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-54.60802947], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-54.66875074], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-54.72948868], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-54.79024708], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-54.85102956], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-54.91183944], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-54.97267975], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-55.03355319], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-55.0944621], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-55.15540842], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-55.21639368], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-55.277419], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-55.33848505], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-55.39944904], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-55.46016931], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-55.52064987], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-55.58089736], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-55.64092097], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-55.70073235], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-55.76034547], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-55.81977647], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-55.8790435], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-55.93816647], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-55.99716691], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-56.05606768], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-56.11489272], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-56.1736668], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-56.23241527], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-56.29116374], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-56.34993783], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-56.40876287], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-56.46766363], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-56.52666408], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-56.58578705], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-56.64505407], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-56.70448507], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-56.76409819], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-56.82390957], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-56.88393319], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-56.94418068], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-57.00466124], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-57.06538151], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-57.1263455], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-57.12825497], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-57.132236], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-57.13828242], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-57.14638403], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-57.15652676], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-57.16869278], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-57.1828608], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-57.19900628], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-57.21710179], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-57.23711728], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-57.25902053], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-57.28277755], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-57.30835295], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-57.33571043], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-57.39952571], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-57.46331109], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-57.527037], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-57.59067453], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-57.65419573], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-57.71757392], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-57.78078399], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-57.84380268], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-57.90660882], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-57.96918357], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-58.03151063], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-58.09357639], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-58.15537014], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-58.21688412], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-58.27811365], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-58.3391797], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-58.40020502], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-58.46119028], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-58.5221366], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-58.58304551], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-58.64391895], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-58.70475926], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-58.76556914], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-58.82635162], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-58.88711002], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-58.94784795], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-59.00856923], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-59.06927785], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-59.12997795], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-59.19067378], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-59.2513696], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-59.31206971], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-59.37277833], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-59.4334996], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-59.49423753], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-59.55499594], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-59.61577842], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-59.6765883], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-59.73742861], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-59.79830205], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-59.85921096], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-59.92015727], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-59.98114254], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-60.04216786], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-60.10323391], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-60.1641979], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-60.22491817], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-60.28539873], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-60.34564622], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-60.40566983], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-60.46548121], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-60.52509433], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-60.58452533], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-60.64379235], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-60.70291533], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-60.76191577], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-60.82081654], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-60.87964158], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-60.93841566], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-60.99716413], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-61.0559126], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-61.11468669], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-61.17351172], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-61.23241249], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-61.29141293], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-61.35053591], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-61.40980293], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-61.46923393], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-61.52884705], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-61.58865843], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-61.64868204], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-61.70892953], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-61.76941009], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-61.83013036], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-61.89109436], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-61.89300383], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-61.89698486], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-61.90303128], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-61.91113289], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-61.92127561], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-61.93344164], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-61.94760966], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-61.96375514], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-61.98185064], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-62.00186613], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-62.02376939], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-62.04752641], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-62.0731018], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-62.10045929], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-62.16427456], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-62.22805994], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-62.29178586], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-62.35542339], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-62.41894459], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-62.48232278], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-62.54553285], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-62.60855154], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-62.67135768], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-62.73393243], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-62.79625948], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-62.85832525], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-62.92011899], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-62.98163297], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-63.04286251], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-63.10392855], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-63.16495388], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-63.22593914], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-63.28688546], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-63.34779436], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-63.40866781], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-63.46950812], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-63.530318], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-63.59110047], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-63.65185888], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-63.71259681], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-63.77331809], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-63.83402671], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-63.89472681], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-63.95542264], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-64.01611846], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-64.07681857], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-64.13752719], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-64.19824846], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-64.25898639], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-64.3197448], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-64.38052727], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-64.44133715], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-64.50217747], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-64.56305091], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-64.62395981], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-64.68490613], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-64.7458914], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-64.80691672], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-64.86798277], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-64.92894676], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-64.98966703], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-65.05014759], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-65.11039508], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-65.17041869], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-65.23023007], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-65.28984319], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-65.34927419], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-65.40854121], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-65.46766419], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-65.52666463], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-65.5855654], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-65.64439043], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-65.70316452], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-65.76191299], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-65.82066146], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-65.87943554], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-65.93826058], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-65.99716135], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-66.05616179], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-66.11528477], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-66.17455179], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-66.23398279], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-66.29359591], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-66.35340729], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-66.4134309], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-66.47367839], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-66.53415895], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-66.59487922], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-66.65584321], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-66.65775269], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-66.66173372], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-66.66778013], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-66.67588175], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-66.68602447], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-66.6981905], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-66.71235852], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-66.728504], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-66.7465995], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-66.76661499], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-66.78851825], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-66.81227527], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-66.83785066], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-66.86520815], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-66.92902342], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-66.9928088], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-67.05653472], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-67.12017225], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-67.18369345], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-67.24707163], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-67.31028171], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-67.3733004], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-67.43610654], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-67.49868129], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-67.56100834], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-67.6230741], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-67.68486785], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-67.74638183], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-67.80761136], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-67.86867741], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-67.92970273], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-67.990688], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-68.05163432], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-68.11254322], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-68.17341666], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-68.23425698], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-68.29506685], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-68.35584933], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-68.41660774], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-68.47734567], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-68.53806694], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-68.59877556], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-68.65947567], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-68.72017149], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-68.78086732], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-68.84156742], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-68.90227604], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-68.96299732], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-69.02373525], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-69.08449366], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-69.14527613], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-69.20608601], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-69.26692632], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-69.32779977], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-69.38870867], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-69.44965499], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-69.51064025], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-69.57166558], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-69.63273162], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-69.69369562], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-69.75441588], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-69.81489645], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-69.87514394], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-69.93516755], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-69.99497893], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-70.05459205], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-70.11402305], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-70.17329007], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-70.23241305], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-70.29141349], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-70.35031425], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-70.40913929], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-70.46791338], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-70.52666185], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-70.58541032], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-70.6441844], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-70.70300944], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-70.76191021], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-70.82091065], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-70.88003363], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-70.93930065], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-70.99873165], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-71.05834477], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-71.11815615], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-71.17817976], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-71.23842725], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-71.29890781], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-71.35962808], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-71.42059207], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-71.42250155], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-71.42648257], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-71.43252899], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-71.44063061], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-71.45077333], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-71.46293935], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-71.47710737], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-71.49325286], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-71.51134836], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-71.53136385], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-71.55326711], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-71.57702412], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-71.60259952], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-71.629957], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-71.69377228], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-71.75755766], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-71.82128358], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-71.88492111], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-71.9484423], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-72.01182049], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-72.07503057], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-72.13804926], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-72.2008554], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-72.26343015], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-72.3257572], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-72.38782296], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-72.44961671], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-72.51113069], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-72.57236022], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-72.63342627], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-72.69445159], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-72.75543686], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-72.81638317], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-72.87729208], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-72.93816552], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-72.99900583], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-73.05981571], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-73.12059819], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-73.1813566], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-73.24209453], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-73.3028158], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-73.36352442], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-73.42422453], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-73.48492035], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-73.54561618], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-73.60631628], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-73.6670249], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-73.72774618], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-73.78848411], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-73.84924251], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-73.91002499], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-73.97083487], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-74.03167518], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-74.09254862], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-74.15345753], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-74.21440385], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-74.27538911], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-74.33641443], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-74.39748048], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-74.45844447], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-74.51916474], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-74.5796453], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-74.63989279], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-74.69991641], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-74.75972779], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-74.81934091], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-74.87877191], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-74.93803893], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-74.9971619], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-75.05616235], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-75.11506311], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-75.17388815], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-75.23266224], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-75.29141071], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-75.35015917], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-75.40893326], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-75.4677583], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-75.52665906], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-75.58565951], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-75.64478248], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-75.7040495], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-75.7634805], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-75.82309362], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-75.882905], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-75.94292862], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-76.00317611], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-76.06365667], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-76.12437694], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-76.18534093], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-76.1872504], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-76.19123143], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-76.19727785], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-76.20537947], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-76.21552219], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-76.22768821], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-76.24185623], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-76.25800172], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-76.27609722], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-76.29611271], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-76.31801597], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-76.34177298], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-76.36734838], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-76.39470586], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-76.45852114], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-76.52230652], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-76.58603243], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-76.64966996], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-76.71319116], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-76.77656935], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-76.83977942], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-76.90279812], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-76.96560426], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-77.02817901], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-77.09050606], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-77.15257182], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-77.21436557], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-77.27587955], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-77.33710908], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-77.39817513], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-77.45920045], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-77.52018571], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-77.58113203], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-77.64204094], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-77.70291438], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-77.76375469], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-77.82456457], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-77.88534705], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-77.94610545], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-78.00684338], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-78.06756466], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-78.12827328], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-78.18897338], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-78.24966921], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-78.31036503], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-78.37106514], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-78.43177376], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-78.49249503], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-78.55323296], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-78.61399137], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-78.67477385], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-78.73558373], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-78.79642404], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-78.85729748], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-78.91820639], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-78.97915271], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-79.04013797], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-79.10116329], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-79.16222934], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-79.22319333], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-79.2839136], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-79.34439416], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-79.40464165], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-79.46466526], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-79.52447664], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-79.58408976], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-79.64352076], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-79.70278779], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-79.76191076], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-79.8209112], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-79.87981197], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-79.93863701], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-79.99741109], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-80.05615956], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-80.11490803], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-80.17368212], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-80.23250716], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-80.29140792], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-80.35040837], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-80.40953134], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-80.46879836], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-80.52822936], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-80.58784248], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-80.64765386], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-80.70767748], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-80.76792497], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-80.82840553], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-80.8891258], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-80.95008979], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-80.95199926], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-80.95598029], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-80.96202671], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-80.97012832], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-80.98027105], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-80.99243707], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-81.00660509], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-81.02275057], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-81.04084607], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-81.06086157], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-81.08276482], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-81.10652184], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-81.13209724], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-81.15945472], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-81.22327], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-81.28705538], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-81.35078129], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-81.41441882], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-81.47794002], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-81.54131821], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-81.60452828], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-81.66754697], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-81.73035311], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-81.79292786], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-81.85525492], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-81.91732068], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-81.97911443], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-82.04062841], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-82.10185794], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-82.16292399], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-82.22394931], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-82.28493457], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-82.34588089], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-82.4067898], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-82.46766324], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-82.52850355], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-82.58931343], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-82.65009591], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-82.71085431], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-82.77159224], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-82.83231352], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-82.89302214], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-82.95372224], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-83.01441807], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-83.07511389], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-83.135814], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-83.19652262], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-83.25724389], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-83.31798182], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-83.37874023], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-83.43952271], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-83.50033259], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-83.5611729], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-83.62204634], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-83.68295525], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-83.74390156], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-83.80488683], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-83.86591215], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-83.9269782], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-83.98794219], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-84.04866246], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-84.10914302], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-84.16939051], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-84.22941412], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-84.2892255], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-84.34883862], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-84.40826962], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-84.46753664], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-84.52665962], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-84.58566006], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-84.64456083], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-84.70338587], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-84.76215995], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-84.82090842], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-84.87965689], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-84.93843098], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-84.99725601], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-85.05615678], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-85.11515722], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-85.1742802], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-85.23354722], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-85.29297822], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-85.35259134], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-85.41240272], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-85.47242633], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-85.53267382], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-85.59315438], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-85.65387465], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-85.71483864], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-85.71674812], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-85.72072915], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-85.72677557], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-85.73487718], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-85.7450199], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-85.75718593], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-85.77135395], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-85.78749943], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-85.80559493], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-85.82561042], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-85.84751368], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-85.8712707], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-85.89684609], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-85.92420358], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-85.98801885], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-86.05180423], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-86.11553015], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-86.17916768], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-86.24268888], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-86.30606707], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-86.36927714], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-86.43229583], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-86.49510197], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-86.55767672], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-86.62000377], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-86.68206954], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-86.74386328], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-86.80537726], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-86.8666068], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-86.92767284], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-86.98869816], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-87.04968343], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-87.11062975], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-87.17153865], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-87.2324121], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-87.29325241], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-87.35406229], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-87.41484476], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-87.47560317], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-87.5363411], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-87.59706238], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-87.65777099], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-87.7184711], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-87.77916693], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-87.83986275], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-87.90056286], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-87.96127148], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-88.02199275], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-88.08273068], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-88.14348909], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-88.20427156], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-88.26508144], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-88.32592175], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-88.3867952], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-88.4477041], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-88.50865042], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-88.56963569], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-88.63066101], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-88.69172706], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-88.75269105], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-88.81341132], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-88.87389188], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-88.93413937], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-88.99416298], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-89.05397436], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-89.11358748], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-89.17301848], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-89.2322855], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-89.29140848], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-89.35040892], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-89.40930969], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-89.46813472], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-89.52690881], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-89.58565728], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-89.64440575], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-89.70317983], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-89.76200487], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-89.82090564], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-89.87990608], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-89.93902906], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-89.99829608], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-90.05772708], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-90.1173402], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-90.17715158], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-90.23717519], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-90.29742268], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-90.35790324], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-90.41862351], + [-1.605173117,0.1266203211,-1.279481536,-0.3327965194,1.567146547,-90.4795875], + [-1.60492939,0.1270498035,-1.28012166,-0.3352109175,1.566966315,-90.48149698], + [-1.604201275,0.1283328496,-1.282033982,-0.3424237492,1.566427886,-90.48547801], + [-1.602997928,0.1304533245,-1.285194452,-0.354344309,1.565538032,-90.49152442], + [-1.601334481,0.1333845618,-1.289563327,-0.370822689,1.564307942,-90.49962604], + [-1.599231854,0.1370896997,-1.295085665,-0.3916516639,1.562753086,-90.50976876], + [-1.596716488,0.1415221438,-1.301692019,-0.4165692974,1.560893016,-90.52193479], + [-1.593820016,0.1466261536,-1.309299312,-0.4452622357,1.558751126,-90.53610281], + [-1.590578862,0.1523375432,-1.317811876,-0.4773696484,1.556354348,-90.55224829], + [-1.587033785,0.1585844885,-1.327122661,-0.5124877663,1.553732826,-90.57034379], + [-1.583229368,0.1652884307,-1.337114579,-0.5501749586,1.550919526,-90.59035928], + [-1.579213453,0.1723650637,-1.347661976,-0.589957287,1.547949826,-90.61226254], + [-1.575036542,0.1797253947,-1.358632211,-0.6313344657,1.544861073,-90.63601956], + [-1.570751162,0.1872768635,-1.369887329,-0.6737861526,1.541692109,-90.66159495], + [-1.566411205,0.1949245057,-1.381285789,-0.7167784931,1.538482786,-90.68895244], + [-1.562359481,0.2020642371,-1.391927231,-0.7569155387,1.535486607,-90.75276771], + [-1.55835215,0.2091257442,-1.402452083,-0.7966128345,1.532523255,-90.81655309], + [-1.554433115,0.2160316595,-1.412745033,-0.8354354485,1.529625197,-90.88027901], + [-1.550645314,0.2227063204,-1.422693309,-0.8729580321,1.526824184,-90.94391654], + [-1.547030248,0.229076598,-1.432187915,-0.9087694799,1.524150906,-91.00743773], + [-1.543627524,0.2350726981,-1.441124827,-0.9424774344,1.52163465,-91.07081592], + [-1.540474422,0.2406289261,-1.44940613,-0.973712584,1.519302987,-91.134026], + [-1.53760549,0.245684407,-1.456941092,-1.00213271,1.517181461,-91.19704469], + [-1.535052158,0.2501837518,-1.463647159,-1.027426435,1.515293317,-91.25985083], + [-1.532842403,0.2540776647,-1.469450858,-1.049316637,1.513659241,-91.32242558], + [-1.531000435,0.2573234833,-1.474288601,-1.067563481,1.512297138,-91.38475263], + [-1.529546435,0.2598856455,-1.478107386,-1.081967051,1.51122193,-91.44681839], + [-1.528496333,0.26173608,-1.480865374,-1.092369539,1.510445398,-91.50861214], + [-1.527861634,0.2628545128,-1.482532347,-1.098656973,1.509976049,-91.57012612], + [-1.527649292,0.2632286903,-1.483090041,-1.100760467,1.509819026,-91.63135565], + [-1.527676801,0.2647623226,-1.481862438,-1.096524354,1.50980061,-91.6924217], + [-1.527759025,0.2693464167,-1.47819308,-1.083862426,1.509745565,-91.75344702], + [-1.527895065,0.2769307483,-1.472122168,-1.062913411,1.509654493,-91.81443229], + [-1.528083429,0.2874322219,-1.463716218,-1.03390683,1.509528392,-91.87537861], + [-1.528322054,0.3007357811,-1.453067325,-0.9971604855,1.509368644,-91.93628751], + [-1.528608326,0.3166956694,-1.440292162,-0.9530769778,1.509176999,-91.99716095], + [-1.528939107,0.3351370269,-1.425530696,-0.9021392951,1.508955557,-92.05800127], + [-1.529310774,0.3558578062,-1.408944657,-0.8449055215,1.508706743,-92.11881114], + [-1.529719255,0.3786309862,-1.390715764,-0.782002722,1.508433285,-92.17959362], + [-1.530160075,0.403207059,-1.371043739,-0.714120073,1.508138178,-92.24035203], + [-1.530628403,0.4293167641,-1.35014411,-0.6420013109,1.507824655,-92.30108996], + [-1.531119108,0.4566740381,-1.328245859,-0.566436584,1.507496151,-92.36181123], + [-1.531626815,0.4849791491,-1.305588908,-0.4882537953,1.507156265,-92.42251985], + [-1.532145961,0.5139219802,-1.282421492,-0.4083095317,1.506808722,-92.48321996], + [-1.532670857,0.5431854277,-1.258997436,-0.3274796793,1.50645733,-92.54391578], + [-1.533195754,0.5724488752,-1.23557338,-0.2466498269,1.506105937,-92.60461161], + [-1.533714899,0.6013917063,-1.212405964,-0.1667055633,1.505758394,-92.66531171], + [-1.534222606,0.6296968172,-1.189749013,-0.08852277455,1.505418508,-92.72602033], + [-1.534713312,0.6570540913,-1.167850762,-0.01295804765,1.505090005,-92.78674161], + [-1.53518164,0.6831637964,-1.146951133,0.05916071443,1.504776481,-92.84747954], + [-1.535622459,0.7077398692,-1.127279107,0.1270433635,1.504481374,-92.90823795], + [-1.53603094,0.7305130492,-1.109050215,0.1899461629,1.504207916,-92.96902042], + [-1.536402607,0.7512338285,-1.092464176,0.2471799365,1.503959102,-93.0298303], + [-1.536733389,0.769675186,-1.07770271,0.2981176192,1.50373766,-93.09067061], + [-1.53701966,0.7856350743,-1.064927547,0.3422011269,1.503546015,-93.15154405], + [-1.537258285,0.7989386335,-1.054278654,0.3789474716,1.503386267,-93.21245296], + [-1.53744665,0.8094401071,-1.045872704,0.4079540525,1.503260167,-93.27339928], + [-1.537582689,0.8170244387,-1.039801792,0.4289030677,1.503169095,-93.33438454], + [-1.537664914,0.8216085328,-1.036132433,0.4415649951,1.503114049,-93.39540987], + [-1.537692423,0.8231421651,-1.034904831,0.4458011082,1.503095633,-93.45647591], + [-1.537877256,0.8212343553,-1.035574739,0.4436684885,1.503271072,-93.5174399], + [-1.53842973,0.8155318284,-1.037577125,0.4372939951,1.503795466,-93.57816017], + [-1.539343793,0.8060970623,-1.040890049,0.426747468,1.504663071,-93.63864073], + [-1.540609429,0.7930334265,-1.045477214,0.4121444574,1.50586438,-93.69888823], + [-1.542212772,0.7764840487,-1.051288363,0.3936449568,1.507386231,-93.75891184], + [-1.544136255,0.7566302475,-1.058259828,0.3714516506,1.509211951,-93.81872322], + [-1.546358805,0.7336895452,-1.066315227,0.3458076934,1.511321538,-93.87833634], + [-1.548856071,0.707913285,-1.075366304,0.3169940457,1.513691877,-93.93776734], + [-1.551600691,0.679583877,-1.085313893,0.2853263959,1.516296999,-93.99703436], + [-1.554562596,0.6490117041,-1.096049007,0.2511517013,1.519108362,-94.05615733], + [-1.557709334,0.6165317214,-1.107454029,0.214844387,1.522095163,-94.11515778], + [-1.561006429,0.5824997865,-1.119404004,0.1768022437,1.52522468,-94.17405854], + [-1.564417757,0.5472887602,-1.131768005,0.137442069,1.528462623,-94.23288358], + [-1.567905943,0.5112844221,-1.14441057,0.09719510112,1.531773518,-94.29165767], + [-1.57143277,0.4748812431,-1.157193184,0.05650229437,1.53512109,-94.35040614], + [-1.574959596,0.4384780641,-1.169975797,0.01580948761,1.538468662,-94.40915461], + [-1.578447782,0.402473726,-1.182618362,-0.02443748024,1.541779557,-94.46792869], + [-1.581859111,0.3672626997,-1.194982363,-0.06379765499,1.5450175,-94.52675373], + [-1.585156205,0.3332307648,-1.206932338,-0.1018397983,1.548147017,-94.5856545], + [-1.588302943,0.3007507821,-1.21833736,-0.1381471125,1.551133818,-94.64465494], + [-1.591264848,0.2701786092,-1.229072474,-0.1723218071,1.553945181,-94.70377791], + [-1.594009469,0.2418492012,-1.239020063,-0.203989457,1.556550303,-94.76304494], + [-1.596506734,0.216072941,-1.24807114,-0.2328031047,1.558920642,-94.82247594], + [-1.598729284,0.1931322387,-1.256126539,-0.2584470619,1.561030229,-94.88208906], + [-1.600652768,0.1732784375,-1.263098004,-0.280640368,1.562855949,-94.94190044], + [-1.602256111,0.1567290597,-1.268909153,-0.2991398686,1.5643778,-95.00192405], + [-1.603521747,0.1436654239,-1.273496318,-0.3137428793,1.565579109,-95.06217154], + [-1.60443581,0.1342306578,-1.276809242,-0.3242894063,1.566446714,-95.1226521], + [-1.604988284,0.1285281309,-1.278811628,-0.3306638998,1.566971108,-95.18337237] + ] +} diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/cartesian-heart-L.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/cartesian-heart-L.txt new file mode 100644 index 00000000..a8543ed7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/cartesian-heart-L.txt @@ -0,0 +1,2029 @@ +-0.38111997658578,-0.05957982004405301,0.2039997673510298,-85.72858321131038,-29.63326371828413,82.14821937101485 +-0.3812355301900943,-0.05989451449523802,0.2037453443345481,-85.71234877332736,-29.69590083449836,82.08416969742129 +-0.3813501266913597,-0.06020980057329059,0.2034901343127056,-85.69623975303735,-29.758474653157187,82.02014631116873 +-0.3814384946007605,-0.06045532252753546,0.2032917567530682,-85.68373636227994,-29.806959598632414,81.97056330360199 +-0.3815263362773244,-0.06070072196937144,0.20309313991201022,-85.67123977031248,-29.85540187482422,81.92084767736714 +-0.3815948320492224,-0.060891157570176276,0.20293793834881602,-85.66158316221991,-29.892858097643856,81.88252729244039 +-0.38166293325047734,-0.06108219639867986,0.20278261487746366,-85.65192617329889,-29.93029004250189,81.84425497065816 +-0.3817167141596223,-0.06123293435550042,0.20265727577744466,-85.6437727254561,-29.95977897997375,81.81467692704604 +-0.38177001783817843,-0.06138339091163376,0.20253142219455295,-85.63574882078734,-29.989305223623518,81.78504138615143 +-0.38181292812754364,-0.06150303151654604,0.20242382881703908,-85.6283076900597,-30.013103728020464,81.76268548397407 +-0.3818556884297859,-0.061623135056310764,0.20231673227532493,-85.62080959741154,-30.036836050503528,81.74036309922938 +-0.3818912274304697,-0.06171414538647233,0.20222027175380264,-85.61446652923296,-30.055414697383352,81.72597635194336 +-0.3819269782171262,-0.06180515012796984,0.20212419727214861,-85.60799488445103,-30.073986516969022,81.71152122077453 +-0.3819569992244032,-0.061873743028440044,0.2020337280445096,-85.60199074334565,-30.087957206218157,81.7039937255645 +-0.3819871613988882,-0.06194185391238432,0.20194299318072295,-85.59597664057178,-30.10197474538447,81.69633581709918 +-0.382014769815771,-0.06200329863495218,0.20184807593889537,-85.58851981339853,-30.11339016050438,81.69084143906726 +-0.38204247959174625,-0.06206435405917324,0.2017537772125154,-85.58098614531777,-30.124806222806463,81.68524092758433 +-0.38207296731557183,-0.062136660735101525,0.20164647178272882,-85.5707338353925,-30.135982606135173,81.67633513019902 +-0.38210324279591734,-0.062209018949596524,0.2015394353581816,-85.56047272266694,-30.147213454273846,81.66741659468151 +-0.38214059297472036,-0.062301017896063876,0.201417890965719,-85.54758538342138,-30.15970225468331,81.65294454731985 +-0.38217780238820487,-0.062393081831005545,0.20129628878419364,-85.53470688722294,-30.172123799725796,81.63847676323608 +-0.3822226538766865,-0.06250666550749212,0.201159266237753,-85.51971434611845,-30.186211001238327,81.6186844168195 +-0.3822674778412761,-0.06261992679603776,0.20102271991114257,-85.50457913453182,-30.20033836085218,81.59874616450278 +-0.3823194370558548,-0.06275531168839268,0.20086875334539048,-85.48679198079853,-30.216432829033376,81.57347580046242 +-0.38237131705270666,-0.0628905248672767,0.20071442236841053,-85.46905999513022,-30.232502161881644,81.54822979705894 +-0.38242933065947193,-0.06304560882123955,0.2005428107139342,-85.44848006302878,-30.250750828982664,81.51838690571083 +-0.3824870830390423,-0.06320084354144848,0.2003711965898983,-85.4278874528185,-30.268957765480213,81.48852769157814 +-0.3825508835179541,-0.06336817902134578,0.20018614126131792,-85.40607564669494,-30.288758062740474,81.45706120712721 +-0.3826142586371589,-0.06353616667021789,0.2000014002117363,-85.38419235063466,-30.30851604030308,81.42565791876754 +-0.3826857515895768,-0.06370877863936492,0.19980812293427444,-85.363451389036,-30.3293663620583,81.3962346475977 +-0.38275697508551,-0.06388119184817778,0.19961477655918916,-85.34270196787158,-30.350176348667816,81.36673637036266 +-0.38283824145213696,-0.0640583127490113,0.1994148087398719,-85.32387316749218,-30.37241653752227,81.33963834186311 +-0.38291911485670904,-0.06423527754288946,0.19921453320867746,-85.3050389105447,-30.394563234880852,81.31247221702694 +-0.38301014017357027,-0.06442089600355186,0.199007415418218,-85.28769025692146,-30.418867886850105,81.28594609956211 +-0.38310075925683074,-0.06460636729503466,0.1987999669624681,-85.27033232097949,-30.443084336071475,81.25934203872843 +-0.38320021782478364,-0.0648034047880385,0.19858609276915176,-85.25414904283316,-30.470175466002665,81.23208093058717 +-0.3832993629229591,-0.06500078280674021,0.19837172324236826,-85.23802435715139,-30.49718035534389,81.20489470227436 +-0.38340537806979413,-0.0652140030455766,0.19815027654566236,-85.22197709689588,-30.527617573136755,81.17511744902622 +-0.38351118820013497,-0.06542712274995827,0.19792841218788348,-85.20591707101651,-30.557965836438555,81.14526642024178 +-0.38362285031645926,-0.06566172362394473,0.19769789500570834,-85.18823746963166,-30.592154357204635,81.1099720550637 +-0.3837337322883981,-0.06589672836455104,0.1974663686839293,-85.17075253082423,-30.6263007838718,81.07475954196205 +-0.38385132003656575,-0.06615684557430901,0.19722446535750623,-85.15074730690492,-30.66469401921784,81.03211245456927 +-0.3839684858391009,-0.06641727328198357,0.19698262067678646,-85.13066997186652,-30.703022565208283,80.98934634725359 +-0.3840938368602033,-0.06670373181850434,0.19672846520773013,-85.10778291717634,-30.745854594528772,80.9385634990042 +-0.38421844440799113,-0.06699079337002414,0.19647399916670577,-85.08488905455943,-30.788670967877724,80.88779273854176 +-0.38435019980472185,-0.06729964967994126,0.19621053000190614,-85.0594931788558,-30.835398827086298,80.83034586605179 +-0.3844811341362471,-0.06760883675762683,0.19594627782605253,-85.03421860437321,-30.882039792286996,80.77293246097095 +-0.3846164362523805,-0.06793114596740224,0.19567800397247237,-85.00766152353383,-30.931114626188993,80.71180244877813 +-0.38475055899618893,-0.06825377784506248,0.19540892924525605,-84.98123330710646,-30.980148247745955,80.65064698202627 +-0.38488627330354336,-0.0685813540462411,0.1951413142847836,-84.95448581063357,-31.030073502944916,80.58845849100993 +-0.38502093719642516,-0.0689095180624451,0.1948731491776673,-84.92771856124104,-31.079893347336007,80.52616716262663 +-0.38515471426261305,-0.06923571970877293,0.19460992725200008,-84.90177864068325,-31.12951105193572,80.46490640319067 +-0.3852875885165292,-0.06956257426156308,0.19434635723530266,-84.87582799764911,-31.1789742926582,80.40360869675989 +-0.38541895415830874,-0.0698842708505329,0.19408933693291996,-84.85105311851399,-31.227698583210078,80.3443224007117 +-0.38554945416545366,-0.07020621484131635,0.19383229838253777,-84.82621462605313,-31.276328106549077,80.28491182726128 +-0.38567822603304547,-0.070521965562936,0.19358161947969776,-84.80236604073481,-31.323999881363047,80.2278354429752 +-0.3858063168195156,-0.0708379226439523,0.19333067642371496,-84.778448239935,-31.371583158519936,80.17063979851905 +-0.3859327646073296,-0.0711462230095833,0.19308656983757727,-84.75572997517857,-31.4180779290797,80.11590433128633 +-0.38605881242907036,-0.07145466797594635,0.1928425402544826,-84.73288006258691,-31.46443320406665,80.0610180402895 +-0.3861839072803822,-0.07175428426618094,0.19260704138681495,-84.71164405117558,-31.50948628843695,80.0085453870133 +-0.38630847674484325,-0.07205489522377402,0.19237156390389282,-84.6902879499288,-31.554412574010314,79.95610641646454 +-0.38643244733268034,-0.07234527522608737,0.19214642383897665,-84.67083064048764,-31.5976578252276,79.90598077302202 +-0.38655567149775316,-0.07263618619484152,0.19192128471784944,-84.65131242757546,-31.640840815137953,79.8558063887164 +-0.3866771596032368,-0.07291545023373018,0.19170738020083697,-84.63367212186081,-31.681880243337208,79.80809453701157 +-0.38679805814196844,-0.07319556618606066,0.19149328555059605,-84.61596303783625,-31.722864449941138,79.76038351857099 +-0.3869163496056545,-0.07346343928942661,0.19129051539631636,-84.59986600532297,-31.7614438091008,79.7151457283679 +-0.387034072673609,-0.0737318543649593,0.1910874381722547,-84.58377576220381,-31.799983741991262,79.66995509551886 +-0.38714965803232015,-0.07398800318530417,0.19089620308416644,-84.56950446185087,-31.836300734890152,79.62721903754469 +-0.3872648959783159,-0.07424491068156182,0.19070460390323515,-84.5552455637141,-31.872522458673515,79.58453028601002 +-0.38737926358552793,-0.07449146952812202,0.1905245497100091,-84.54331396006582,-31.90698127672678,79.54443342823441 +-0.3874933661218205,-0.07473799931672484,0.1903439498981727,-84.53138321068322,-31.941410318900694,79.50426138534519 +-0.38760763298630707,-0.07497459541694526,0.1901732063064577,-84.52215390442511,-31.974618329120833,79.466842423534 +-0.3877216910450237,-0.07521199920836552,0.19000256887714345,-84.51280506328548,-32.007805828362585,79.42946294176272 +-0.38783509993182075,-0.07543855439729583,0.1898404967128207,-84.50620142933944,-32.040178415370704,79.39511005328275 +-0.38794844654645094,-0.07566551517992079,0.1896785738541026,-84.49947157773951,-32.0725347766493,79.36074559569605 +-0.388059984802684,-0.07588190435282131,0.18952504287611274,-84.49505991085636,-32.1044387831587,79.32944745411719 +-0.38817116735716284,-0.07609870032893332,0.1893712277384825,-84.49065931103502,-32.136344853709026,79.29820614682063 +-0.3882800429428658,-0.07630523468855134,0.18922468981947657,-84.48814816088931,-32.168172383455236,79.26978471214318 +-0.38838834942434264,-0.07651197010901672,0.18907757573325623,-84.48571633732408,-32.19999831383462,79.24133561450873 +-0.38849349523127075,-0.07670943976725964,0.18893725861946273,-84.4846979521372,-32.231775310481616,79.21550717885185 +-0.38859847133583625,-0.07690686986461767,0.18879675934917953,-84.48368132199289,-32.263555084610886,79.18967676041923 +-0.3886991209240005,-0.07709423302945435,0.18866257339225012,-84.48384087671947,-32.29498153834434,79.16618329017831 +-0.388799836104475,-0.077282194695743,0.18852828676233313,-84.4839330588377,-32.32634919235192,79.14272357143872 +-0.38889638283606015,-0.07746070203187226,0.1883996578467963,-84.48473646231822,-32.357072479449315,79.12125925847138 +-0.38899256520874514,-0.07763934846098759,0.18827112459351622,-84.48554982789793,-32.387742218064886,79.099751844219 +-0.38908528539813336,-0.07781006574445633,0.1881475239306428,-84.48639884042505,-32.41761004999749,79.07965782199655 +-0.3891775562125357,-0.07798129414026943,0.18802400145138237,-84.4872643041638,-32.447424608500434,79.0595813595507 +-0.38926778905269044,-0.07814673270071418,0.18790418468231807,-84.4878231820721,-32.47658010833266,79.04002363553786 +-0.389357613306884,-0.07831268195760363,0.18778448869982367,-84.48839096057526,-32.50568156978569,79.02048635542347 +-0.389447685799553,-0.07847780607363011,0.1876667122157865,-84.48848682959353,-32.53467961704392,79.00046387029322 +-0.3895375695888499,-0.0786434087267717,0.1875489401962826,-84.48859669813582,-32.56373544250726,78.98044824568049 +-0.38962968259109165,-0.07881120723450664,0.18743143508400573,-84.48802685351421,-32.59271435428741,78.95914844756715 +-0.3897215816454057,-0.07897958419670219,0.18731430983262579,-84.48740274064868,-32.62175196958002,78.93787234408114 +-0.38981637811219905,-0.07915078748485621,0.18719771395381854,-84.48633192062151,-32.65049486253147,78.91498825640717 +-0.38991112291333596,-0.07932266608100581,0.18708126423977578,-84.48519615506672,-32.67923798991907,78.89218786968983 +-0.39000939169459403,-0.07949772928976885,0.1869666211850492,-84.48378741458578,-32.70724928159164,78.8679730355007 +-0.3901074047800764,-0.07967263255871398,0.18685160243022664,-84.48237296406238,-32.735314903528476,78.84369349854279 +-0.39020855453983905,-0.07984920822506991,0.18673959174580115,-84.48079548952357,-32.761827281203416,78.81875477294258 +-0.39030937413368694,-0.08002591660214373,0.18662682419368049,-84.47928620179827,-32.788343890399204,78.79379086801309 +-0.39041196594130867,-0.08020087217754907,0.18651881070190424,-84.47760404548416,-32.81242062216359,78.76853488121212 +-0.39051452290503996,-0.08037651008079785,0.18641055486673577,-84.47592841272147,-32.83644333363424,78.74339816251218 +-0.3906185598940999,-0.08055001414948856,0.18630812951413706,-84.47470856221977,-32.85753094619744,78.71845937517021 +-0.390722533418597,-0.08072373413263348,0.18620534166678618,-84.47356381717682,-32.87868339599113,78.69355677347427 +-0.3908297431628872,-0.08089682986132474,0.18610895142152017,-84.47306545944811,-32.897171802534736,78.66888251536439 +-0.39093694752932595,-0.08107004944174595,0.1860122609628394,-84.472582683447,-32.91571600625066,78.64415764190602 +-0.3910482773537881,-0.08124452704990912,0.18591715030617595,-84.47196901397928,-32.93202096697383,78.61878940711405 +-0.39115942891571265,-0.08141875485640886,0.18582181484307578,-84.47137107410273,-32.94832252038393,78.5933108121508 +-0.391274817277941,-0.08159660868181857,0.18572279285420448,-84.46946374183541,-32.962882193904285,78.56615958104143 +-0.3913899015587622,-0.08177501848616842,0.18562318337722422,-84.4676365633071,-32.97743917047559,78.53905441282997 +-0.39150825548514157,-0.08195655571286503,0.18551782059602123,-84.46354030663454,-32.990448939208,78.50971686987074 +-0.3916260425230823,-0.08213867886791516,0.18541193164173558,-84.4595229309964,-33.00345091847728,78.48042350464051 +-0.39174453208232524,-0.08232337566792311,0.1852980333657349,-84.45283351645942,-33.01471279525798,78.44892526704807 +-0.39186287813992304,-0.08250833950694589,0.18518454354464572,-84.446081592807,-33.02595360734311,78.41739086410203 +-0.3919822233789141,-0.08269773818563343,0.185063047537312,-84.43672481186499,-33.03573298177801,78.38338133436083 +-0.39210114326773815,-0.08288703889081084,0.18494102367480897,-84.42744679277128,-33.045444046553264,78.34935253545035 +-0.39222316829950366,-0.08308291993820184,0.18481394706296872,-84.41646785410961,-33.05445778790211,78.31253408917394 +-0.3923446531819466,-0.08327911471029738,0.18468588845534237,-84.40565100892523,-33.06341070503843,78.27579852246018 +-0.39246979580405783,-0.08348324722228626,0.1845548677725726,-84.39387748726821,-33.07190374393355,78.23677860355161 +-0.3925944766887851,-0.08368743223462567,0.1844232724245994,-84.38218486955527,-33.080380571702065,78.19780348395447 +-0.3927217221127983,-0.08389698494268051,0.18428806484221202,-84.36954006343123,-33.08822474774154,78.15724685012418 +-0.39284851434487666,-0.08410727816293227,0.1841525744750314,-84.356913078935,-33.09609522274334,78.11674935728269 +-0.3929771161376969,-0.08432170618655037,0.184014285398022,-84.34352338500227,-33.10344221433297,78.0753976914623 +-0.3931052443695131,-0.08453651106049791,0.1838760494459387,-84.3301422870073,-33.11075058189735,78.03405478492223 +-0.39323564576514947,-0.0847547537676372,0.18373802886410381,-84.31687879322007,-33.117808399340774,77.99226441862393 +-0.3933656719344406,-0.08497346631491137,0.18359973906129004,-84.30363325379228,-33.12478164497152,77.95054677785316 +-0.3934995022893151,-0.08519557207457698,0.1834654942309355,-84.29145993772381,-33.13160322292773,77.90874353673757 +-0.3936327211002469,-0.08541806207769952,0.18333110105877215,-84.2792824169009,-33.138450586970585,77.86692310080701 +-0.3937712855892924,-0.08564379615166633,0.18320266327633639,-84.26903205469216,-33.145748737055726,77.82521363338442 +-0.39390942430441767,-0.0858699440280781,0.18307430171338818,-84.2587366155819,-33.15295696539451,77.78348847615794 +-0.3940536015562906,-0.08609911931653513,0.18295381187627338,-84.25072909122711,-33.1610658104595,77.74190922181856 +-0.39419712557431985,-0.08632874188647402,0.1828326618764976,-84.242811757597,-33.16916653211343,77.70038378882928 +-0.3943472176555719,-0.08656073491746677,0.18272019704387255,-84.237579254021,-33.178526949893154,77.65915165322605 +-0.3944967733702359,-0.08679317697693523,0.18260762137228528,-84.23228178477902,-33.18792425860965,77.61787730300037 +-0.3946517222971594,-0.0870269188407895,0.1825036232606096,-84.2296634035034,-33.198728739369045,77.57688699378649 +-0.39480661383402305,-0.08726119001062108,0.1823997394775433,-84.2269164260815,-33.209511800224696,77.53588010193329 +-0.39496421285109934,-0.08749421269973891,0.18230357727456417,-84.22630248880611,-33.22142900549197,77.49557206384067 +-0.39512137156523586,-0.08772759960214623,0.18220708363559726,-84.22570852224428,-33.23333775249831,77.45521384673943 +-0.3952776584358275,-0.08795506618169771,0.18211833137276964,-84.22645317271272,-33.24551338963,77.41639662124565 +-0.39543357193145745,-0.0881829667092775,0.18202930840348483,-84.22720319878191,-33.257694032036106,77.37757556814324 +-0.39558534121872746,-0.08839950362155352,0.1819479780023143,-84.22925610481099,-33.269178292805165,77.34169202277094 +-0.3957365164659661,-0.08861693074438759,0.18186611165838823,-84.23132618856614,-33.2807287954415,77.30591907178065 +-0.39588266200774497,-0.08882043160283748,0.18179221104966375,-84.23459161558576,-33.29068900836344,77.27355886096981 +-0.3960284866610745,-0.08902438634569405,0.18171844211378888,-84.2377968133711,-33.30065570355701,77.24122064545054 +-0.3961692036176525,-0.08921655177818975,0.18164928153862875,-84.24153299199901,-33.309153264184395,77.21161941404077 +-0.39630971434271967,-0.0894089438557894,0.18158040542748338,-84.24514503481834,-33.317576318615956,77.18189487304977 +-0.3964460716692306,-0.08959128273773939,0.1815136395188844,-84.24870053759129,-33.324992241768925,77.15401874813224 +-0.39658201550044037,-0.08977392996469889,0.18144641241147247,-84.25227654205035,-33.332359762446025,77.12615983189359 +-0.39671579451314903,-0.08994895191626605,0.18138034928659513,-84.25530173270276,-33.339488078413986,77.09898919077145 +-0.3968491935061891,-0.09012476602144037,0.1813135809748265,-84.2584742679455,-33.346592085896255,77.07203060384828 +-0.3969821041961955,-0.09029602053823016,0.18124569714862085,-84.26055946228294,-33.35433995337224,77.04474764822581 +-0.3971145747430481,-0.09046726180100159,0.1811767570614292,-84.26286251658318,-33.362130671761115,77.01758892951797 +-0.39724638143417756,-0.09063503403714197,0.1811068632851661,-84.2640799879071,-33.37078753490132,76.99021135676445 +-0.39737804457309045,-0.09080257336862027,0.1810367743940102,-84.26529842178486,-33.37950291747923,76.96271117699023 +-0.3975085210096133,-0.0909656400600251,0.18096681775936174,-84.26584160635699,-33.38894203229049,76.93535475317415 +-0.3976386768002559,-0.09112886514976766,0.18089656879110272,-84.26646145373931,-33.39833380033257,76.90798435285205 +-0.3977674809217171,-0.09128690439875264,0.1808280818060792,-84.26683101862618,-33.408293601787136,76.88095002135637 +-0.39789593285959757,-0.09144519211734514,0.1807596064128624,-84.26713553713492,-33.418243143728226,76.85388035178468 +-0.3980230058735532,-0.09159755664079833,0.18069500402891708,-84.26767547284203,-33.428403501147486,76.82756636260196 +-0.39814961577432284,-0.09175014870141171,0.1806302592633781,-84.2682339233115,-33.4385120219488,76.80126064854421 +-0.3982743658372404,-0.09189598551287384,0.18057052490791534,-84.26945142550554,-33.44842002997296,76.77622108139934 +-0.39839891840295716,-0.09204154406691045,0.1805105099246674,-84.27074265806105,-33.45839528438879,76.75109958791855 +-0.39852139933135594,-0.09217865835169992,0.18045632390346406,-84.27283566568732,-33.468027492953496,76.72761480877769 +-0.39864361550758187,-0.09231588386443794,0.1804018770473352,-84.27500130270991,-33.47767048455651,76.70411636252742 +-0.39876386265918934,-0.09244470024310725,0.18035332054503483,-84.27823441405103,-33.487042337074975,76.68263026232277 +-0.3988840937716761,-0.09257320795893058,0.18030426205788117,-84.28152970780934,-33.4964799379625,76.66106327198871 +-0.39900261004668286,-0.09269338589171269,0.18026086433430702,-84.28608352889671,-33.505842438115614,76.64148739054373 +-0.39912112152041446,-0.09281372364696079,0.18021754164413759,-84.29064511632474,-33.515212870091666,76.62191710507524 +-0.399237144245726,-0.09292509049832731,0.18017837685781135,-84.29625234058048,-33.524441929609324,76.60439430760604 +-0.3993530157289686,-0.09303612009404874,0.1801394023803892,-84.30185951706342,-33.533677327760394,76.58676097608921 +-0.3994654238006685,-0.09313786034671598,0.18010421353344605,-84.30810591749055,-33.54272788600498,76.57112926409691 +-0.39957742710887434,-0.09323982717522458,0.18006809106672506,-84.31456414185081,-33.55176916384877,76.55567551206885 +-0.39968521618244,-0.09333246074663078,0.1800356917811609,-84.32158189280985,-33.56068977657436,76.54234197924956 +-0.3997928590009337,-0.09342479868277466,0.18000296526282183,-84.32860578770953,-33.569618738229906,76.52894951001588 +-0.39989552190998356,-0.09350738463104585,0.17997344199617787,-84.33639119382778,-33.57831038051374,76.51792680509027 +-0.399998111178862,-0.09359005319664168,0.1799438429900304,-84.34417829712986,-33.58700943375671,76.50690022758248 +-0.40009510095670087,-0.09366245648851562,0.17991772671296685,-84.35269045219424,-33.595287099943675,76.49811886182312 +-0.400192103516477,-0.09373502318839329,0.17989120147858292,-84.3612568482169,-33.60358622675691,76.48942400153604 +-0.4002833058282031,-0.09379740837969662,0.17986900122169075,-84.37055514800434,-33.61132882710401,76.48286830885134 +-0.40037447818351357,-0.09385944490797804,0.17984626781844237,-84.37998291256119,-33.619162352715165,76.47631708760828 +-0.40046003648338657,-0.09391127762713261,0.17982877438037892,-84.39033836026054,-33.62641485743015,76.47202496344619 +-0.40054544633936706,-0.09396276290410267,0.17981054010792333,-84.40082499335807,-33.63375861941058,76.46774524880966 +-0.40062439011209305,-0.09400299169079904,0.17979748048940644,-84.41238120274406,-33.64034610182611,76.46592589295376 +-0.40070361938841975,-0.09404285865506264,0.17978469550334097,-84.42387399111554,-33.646924586751666,76.464023065191 +-0.40077552101662756,-0.09407091421132302,0.179776867281762,-84.43623103615212,-33.65268597650729,76.464693863126 +-0.4008474378472793,-0.09409869139215962,0.17976852772543145,-84.44872191291212,-33.658479877136,76.46544448374182 +-0.40091220470091604,-0.09411393471847797,0.17976583269513088,-84.46173159962277,-33.663510477064506,76.46851464828102 +-0.4009767730668856,-0.09412928165178265,0.1797624097825721,-84.47487912133032,-33.668513414649624,76.47172170630311 +-0.4010333859515963,-0.09413259509990501,0.17976392007148517,-84.48848462296132,-33.67280187245076,76.47732790067033 +-0.40108989279717555,-0.09413591345067757,0.179765269942894,-84.50207509597263,-33.677087328139784,76.48292687507323 +-0.40113819993633454,-0.09412606191622049,0.17977269099141086,-84.51594382318586,-33.680295078710806,76.49090929941359 +-0.4011864075254632,-0.09411612155009162,0.17977957589547902,-84.52986284946876,-33.683508119555185,76.49886568022426 +-0.4012260214409838,-0.09409249083336188,0.17979313225116683,-84.54427225207897,-33.68546351287888,76.5093956166574 +-0.40126566821773185,-0.09406932975704249,0.1798069153913383,-84.55868046418333,-33.68741406589484,76.52003041475801 +-0.40129730342422254,-0.09403304793081727,0.17982720091439666,-84.57349352689756,-33.68832824745128,76.53277708949693 +-0.4013288456857964,-0.0939971611394919,0.1798471145908321,-84.58837642005872,-33.68918883055017,76.54562419795108 +-0.40135255105487905,-0.09395038929800897,0.1798711037923017,-84.60323141615946,-33.68945513600288,76.56017065273934 +-0.4013765631231351,-0.09390330562721119,0.17989540551168015,-84.61802696251426,-33.68964812301153,76.57469219086994 +-0.4013929763259527,-0.09384686444937117,0.1799225912657682,-84.63271717867786,-33.68955702611655,76.59084284999 +-0.4014094252864028,-0.09379012358400277,0.17995015599444117,-84.64734123224882,-33.689506645558154,76.60695591227025 +-0.4014194722565483,-0.09372493198151831,0.17998141491599517,-84.66225066969882,-33.68950558067706,76.62490135527713 +-0.4014295774794583,-0.09365933309789404,0.18001269480216212,-84.67715429186286,-33.68954830430611,76.64277452970511 +-0.40143426873144783,-0.09358670800774652,0.1800484462519958,-84.69259600175349,-33.69012022741573,76.66253072633329 +-0.40143920209906714,-0.09351377515175108,0.1800840530291689,-84.70810316505421,-33.6906340284752,76.68232462986983 +-0.40143985550485684,-0.09343546640308133,0.18012458262526276,-84.72434996300905,-33.69205451548406,76.70379635435916 +-0.4014405910361858,-0.09335685887129311,0.18016513805717368,-84.74059209093711,-33.69351577333062,76.7252586204834 +-0.40143903746964904,-0.09327453242923643,0.18021129202538497,-84.75784292542902,-33.695911430790275,76.74809023421439 +-0.4014372937398437,-0.09319222835937056,0.18025678850337773,-84.77517140733791,-33.69835867131895,76.77096111105998 +-0.4014349274311463,-0.09310752410594351,0.18030894411789766,-84.79365517724727,-33.70171079628787,76.79499412007917 +-0.4014323660912009,-0.0930228433375812,0.18036095866198026,-84.81221988244405,-33.7051091574468,76.81906890207355 +-0.4014292860990518,-0.09293576312496497,0.1804193201266173,-84.83195446754952,-33.70923488048457,76.84432810587812 +-0.40142628989016027,-0.09284878824309972,0.18047741831369446,-84.85168534410413,-33.71339772302506,76.86963682963626 +-0.40142192148930816,-0.09275902242001412,0.1805409546172052,-84.87241250632778,-33.71804173830568,76.89616839896118 +-0.4014177352156456,-0.09266937216953781,0.18060483950886944,-84.89307504181356,-33.72259750690383,76.92273120255945 +-0.40141180301636603,-0.09257608693125831,0.180675014358778,-84.91447985598153,-33.72704490771143,76.95063924351862 +-0.4014060202058738,-0.09248323031430442,0.18074561378753679,-84.93576011908195,-33.73143941410352,76.97854406465326 +-0.4013993503931924,-0.09238570954877127,0.18082428535663647,-84.95828812082644,-33.73518382037433,77.0080641685531 +-0.40139245241644445,-0.09228852298113892,0.18090294889149333,-84.98083204895053,-33.73889366224669,77.0375904855914 +-0.40138584716935466,-0.09218696045297278,0.18099237139382487,-85.0053374471363,-33.74153326271505,77.06917525401661 +-0.40137919644010767,-0.09208582648560612,0.18108207412006874,-85.02984215133556,-33.74413572249658,77.10081731953058 +-0.40137290284104976,-0.0919791803162644,0.18118304259503226,-85.05640364855748,-33.745237822261366,77.1346517429093 +-0.40136638163206334,-0.09187266269390675,0.18128390975008166,-85.08303922816837,-33.74637194414376,77.1685769111428 +-0.4013593586816828,-0.09176043833708909,0.1813953817516362,-85.11133288604077,-33.74561041261967,77.20472760775397 +-0.4013520439470214,-0.09164855910553786,0.181506865496631,-85.13963821615724,-33.74485391092337,77.24087460685615 +-0.40134307072710407,-0.09152956712942918,0.181627073718458,-85.16912063610793,-33.74204436837538,77.27921277868683 +-0.4013340985569345,-0.09141101566995492,0.1817480840224307,-85.19841803064108,-33.7390957086755,77.31750532036905 +-0.40132111945782534,-0.0912841937675578,0.18187478691459116,-85.22794579846645,-33.73390883003164,77.3576266066688 +-0.40130787563884956,-0.09115793327712524,0.1820015263386049,-85.25747851208097,-33.728617102484904,77.39786703916505 +-0.4012898021565372,-0.0910241612787639,0.1821330229224069,-85.2861556551166,-33.72108635670824,77.43937764393458 +-0.40127162675020467,-0.09089035719651693,0.18226426468978127,-85.31483172816391,-33.71349510808351,77.4808185824879 +-0.40124907702093837,-0.09075146505877774,0.18239819574947186,-85.34257379830868,-33.704199479042465,77.52287167315338 +-0.4012265796762683,-0.09061295203583206,0.18253221060661487,-85.37023708569991,-33.6948327036403,77.56487495359153 +-0.4012015089136921,-0.09047243872778604,0.18266731009021753,-85.39707745970279,-33.68442842403755,77.606816886932 +-0.40117635090710313,-0.09033160827078893,0.18280287708067713,-85.42379605153621,-33.673893860810416,77.64862847037817 +-0.40115037155731387,-0.0901921482605191,0.18293901351667813,-85.44979577131252,-33.662866234024186,77.68970632520181 +-0.40112399937935295,-0.09005238255096443,0.18307476378526738,-85.47587783169698,-33.65179890297609,77.73076281979833 +-0.4010987350370886,-0.08991524521226521,0.18321196132601136,-85.5015069810353,-33.640648761409544,77.77034913646726 +-0.4010730177786469,-0.08977869429029046,0.18334890149988714,-85.5271467650826,-33.62940023096191,77.81005372974386 +-0.4010495469167513,-0.08964454114547038,0.18348727149473665,-85.55267915290854,-33.61804145569196,77.84819303284667 +-0.4010258811725742,-0.08951085862654574,0.18362581098106345,-85.57822613416738,-33.6065794036116,77.88639175605698 +-0.4010041182028229,-0.08937927994825094,0.18376610682872543,-85.60373602226223,-33.59474389791834,77.92308579610963 +-0.400982235206034,-0.08924746939708864,0.1839059287026601,-85.62933261025182,-33.582875834532075,77.95982202964841 +-0.400962344724456,-0.08911692431418176,0.18404809807400102,-85.65490323304631,-33.570417444092364,77.99512698913928 +-0.4009424735875453,-0.08898653552698468,0.18419057907469355,-85.68040541120486,-33.557913593717764,78.03044508576485 +-0.40092280166746325,-0.08885382924362625,0.1843373214062464,-85.70672573230198,-33.54425181760001,78.06576171046272 +-0.4009028537413649,-0.08872119183729928,0.18448441175453795,-85.73298833105586,-33.53048277776169,78.10103823494052 +-0.40088100188814624,-0.08858012592926871,0.1846400285855823,-85.76104270615828,-33.51447450752686,78.13813382086913 +-0.4008591328434856,-0.08843922267298028,0.1847963864865577,-85.78895457225062,-33.498346546167475,78.17520092649565 +-0.4008349176300607,-0.08828936726148098,0.18496207265642214,-85.81900876757243,-33.48005694770656,78.21467268912521 +-0.4008105900019021,-0.08813957685594695,0.18512761853888804,-85.8491197682766,-33.461717767319705,78.25415136219009 +-0.40078571441175614,-0.08798350493133417,0.18530170207743252,-85.88085856471544,-33.44179334277835,78.29497236676836 +-0.40076063174671184,-0.08782720130482972,0.18547534382355504,-85.91266857942236,-33.42181935351369,78.33580299302095 +-0.4007346746007132,-0.08766474868380698,0.18565403181512743,-85.9453466987071,-33.400427576305404,78.37741582564163 +-0.40070802972903646,-0.08750280980496453,0.1858327726847943,-85.97802505172598,-33.37891947475564,78.41906708684817 +-0.40067832657808583,-0.08733338729833462,0.18601252060096657,-86.01028961190596,-33.35568973623346,78.46101676235773 +-0.4006485362062632,-0.08716416306772064,0.18619260543338362,-86.04247576562798,-33.332384791602585,78.50296188467934 +-0.4006168857138569,-0.08698938143819551,0.18637044561264307,-86.07355466065142,-33.30758270436621,78.54453095617599 +-0.40058480341065983,-0.08681480147595064,0.18654816884707445,-86.10469864053098,-33.282665500861725,78.58616351112036 +-0.4005520012966267,-0.08663615298903317,0.18672070147165074,-86.13458982766642,-33.25664930657672,78.62696448376947 +-0.40051900234301496,-0.08645752805916482,0.18689293670871554,-86.16446888263332,-33.230566887142665,78.66768055774781 +-0.400484912090557,-0.08627628480618532,0.18705809587584277,-86.19254146176374,-33.20359090878125,78.70719232411206 +-0.4004507472598552,-0.08609504983023086,0.1872231619819978,-86.22060753969558,-33.176556679362456,78.74661608207391 +-0.40041563935906477,-0.08591316887524215,0.18737721286645093,-86.24637505615452,-33.14926006024684,78.78389321626955 +-0.40038029968351435,-0.08573150694595504,0.1875308478989653,-86.27220182842275,-33.12192221031356,78.82124301242406 +-0.4003447942356343,-0.08555192718259094,0.18767095485841984,-86.2947952159844,-33.09537128446547,78.8553612869805 +-0.4003089820056591,-0.08537198371476326,0.18781036380647503,-86.31745772587037,-33.06878211413058,78.88938765655702 +-0.4002701024587515,-0.08519191822157993,0.18793512153851652,-86.33688298691357,-33.04300294669792,78.92075977941792 +-0.4002312953352214,-0.08501195572925725,0.18806021269242987,-86.35617399896742,-33.017173343648864,78.95204439663839 +-0.4001842143939621,-0.08482432041279135,0.18817242442707596,-86.37211608793936,-32.99124587256645,78.98210583562994 +-0.4001367740021865,-0.08463713891458684,0.1882849494208358,-86.38798638354066,-32.965278011237004,79.01211924063178 +-0.4000786673403294,-0.08443917994297702,0.18838525781130816,-86.40076442850778,-32.93935285037946,79.04197287369149 +-0.40002045564540656,-0.08424186237975038,0.18848575496784184,-86.41348600673895,-32.91334165347746,79.07190114088631 +-0.39995533481250495,-0.08403755664825308,0.18857363812066005,-86.42420866847657,-32.8891274135509,79.10149479211691 +-0.39989006417276496,-0.08383343103522838,0.18866151026168027,-86.43486661975444,-32.864830346782526,79.13104879173427 +-0.3998211266514963,-0.08362671887440609,0.18873749782347443,-86.44405034932899,-32.8434925766585,79.15962839329909 +-0.39975171716118274,-0.08342012538312046,0.18881306511210325,-86.4533020674315,-32.82213689479817,79.18818446621775 +-0.3996779890343236,-0.08321049526127264,0.18887682174125456,-86.4613452743902,-32.8037391765153,79.21615304040048 +-0.3996042310796616,-0.08300136306952267,0.18894130051149893,-86.46918095295173,-32.785301716495624,79.24400809818933 +-0.3995244069275091,-0.08278515462621928,0.18899391492554593,-86.47598114616551,-32.76901575679382,79.2721543581245 +-0.3994446277093612,-0.08256885116491167,0.18904715177627845,-86.48264249837011,-32.75275959034148,79.30021734526092 +-0.3993578035042965,-0.08234253472530743,0.18909047993675024,-86.4878978790732,-32.73749669094058,79.32912710337163 +-0.39927038475946824,-0.08211649547013156,0.18913371196961848,-86.49321161230986,-32.72222754586654,79.35806574920821 +-0.3991769894166567,-0.08188036961943637,0.18916802709829636,-86.49723114656445,-32.70707832455754,79.38756102963228 +-0.39908328469985016,-0.08164451546035276,0.18920220362203358,-86.50125974449381,-32.691858760132995,79.41705546577693 +-0.39898599154899345,-0.08140092129560267,0.1892286473787868,-86.50434401757893,-32.67624601201898,79.44628674700874 +-0.3988882560793807,-0.08115765491513054,0.18925480575856932,-86.50750990826165,-32.66063040049556,79.4755682380582 +-0.3987887194047867,-0.08090915826055797,0.18927354656456932,-86.50981148453121,-32.64439280747714,79.50405757059578 +-0.39868864648095936,-0.08066061256052236,0.189292187189148,-86.51213207228082,-32.62815217387354,79.53250584434932 +-0.3985865539433268,-0.0804080989708056,0.18930174997045116,-86.51345392158417,-32.61136868182993,79.55992177387455 +-0.39848391435646763,-0.0801563040269021,0.18931146678723218,-86.51477852064646,-32.594640709851575,79.58738569652432 +-0.39837777616125103,-0.07989987053683137,0.18931145517460135,-86.51491705942243,-32.577286046925664,79.61413272304164 +-0.3982716149403645,-0.07964364423866674,0.18931176110538234,-86.51491583619598,-32.55997211842809,79.6407400379735 +-0.39816039572921413,-0.07938207023145535,0.1893019662359679,-86.51385805470257,-32.54199089945252,79.66744480423407 +-0.39804909552657575,-0.07912042650223447,0.18929234524609415,-86.5127434430478,-32.52400855958076,79.69405532706314 +-0.39793290064913256,-0.07885375533089108,0.18927237619400278,-86.51056689200254,-32.50519915905739,79.7209483366352 +-0.39781623242317504,-0.07858736973335195,0.1892526259036847,-86.50834017327782,-32.48644770694821,79.7477510206039 +-0.3976956193152053,-0.07831760769973867,0.18922190254258586,-86.5048443279558,-32.46716028394979,79.77430032341557 +-0.3975744007432679,-0.07804865295198522,0.189190858556153,-86.50135334591049,-32.44782557133583,79.80091462732321 +-0.3974499166845389,-0.07778087148721595,0.18914655453919862,-86.49644902907225,-32.42866563415527,79.8265280340242 +-0.39732523584490176,-0.0775134871410001,0.18910246132764008,-86.49148524588506,-32.40945784255698,79.85212235289048 +-0.3971994913072503,-0.07725324457004967,0.18904248766065346,-86.48486155648206,-32.39166703847052,79.8755955770631 +-0.39707368987651037,-0.07699327389266025,0.18898248078059512,-86.47817620972826,-32.373887042230116,79.89898483556784 +-0.39694973082419627,-0.07674502825984325,0.18890499760407845,-86.47027212584379,-32.35831393106894,79.91965050692265 +-0.39682546158534293,-0.0764970535296242,0.18882755995994466,-86.46230736476106,-32.34281173254506,79.9402298332899 +-0.3967032836250281,-0.07625972351658673,0.18873445770568142,-86.45308073631995,-32.328872100561675,79.95855958515142 +-0.3965808083068303,-0.07602262727698142,0.18864141654824912,-86.44379713297327,-32.31494707816678,79.97680089022751 +-0.39645666884915093,-0.07579014227155391,0.18853164901527072,-86.43248514230947,-32.30126160345868,79.9937709429255 +-0.39633204827949964,-0.075558022809092,0.18842178334212736,-86.42124618676264,-32.28754853683654,80.0107944469254 +-0.3962036348067351,-0.0753297831062807,0.18829545667561695,-86.40759555733233,-32.27337538175053,80.02705862463236 +-0.3960749396601825,-0.07510180653681821,0.18816939337742586,-86.39394792828345,-32.25923046621371,80.04328273888488 +-0.3959443920250393,-0.07488129246607345,0.18802852146993165,-86.37856382870082,-32.244796376076394,80.05818554996597 +-0.3958132105374958,-0.07466116228916352,0.1878869591211063,-86.36332766730301,-32.23040454152882,80.0731809679263 +-0.3956829528013727,-0.07445225734131,0.18773188391156956,-86.34695246926795,-32.2161028211588,80.08606586694168 +-0.39555203394074134,-0.07424371811085353,0.1875765357053452,-86.33065645291417,-32.20183920859247,80.09900657988031 +-0.39542282627583414,-0.07404933743738443,0.18740656843766418,-86.31313597356815,-32.18804973345886,80.10931234504845 +-0.39529285775787937,-0.07385529822609863,0.18723625047528625,-86.29576891508225,-32.174246531348636,80.11970977856076 +-0.3951637541750733,-0.07367567847319378,0.18705014306266005,-86.27670801078594,-32.16083029355634,80.12718072043025 +-0.39503408812346286,-0.07349673443732897,0.18686409787457975,-86.2577144475897,-32.14744928108112,80.13474566334254 +-0.39490475895299765,-0.07333211486269371,0.18666357710544168,-86.23738756520065,-32.13419872768775,80.1397052674729 +-0.39477500837191193,-0.0731677452052551,0.1864632148272894,-86.21706415005424,-32.12103333192051,80.1446645716447 +-0.3946456354372179,-0.07301824969085867,0.18624960955244407,-86.19571999061029,-32.10823054179134,80.14717892956922 +-0.39451593287079134,-0.07286896974454751,0.18603585027496256,-86.17439659182385,-32.09540236149584,80.14970797687852 +-0.3943862017356773,-0.07273473407808316,0.18580892067752172,-86.1519574143191,-32.08346208275156,80.14998949209367 +-0.3942561313692786,-0.07260070939514246,0.18558228406391042,-86.12946325118011,-32.071487431639056,80.15025275237703 +-0.39412719438858346,-0.0724827999603486,0.18534424010211176,-86.10659675257611,-32.06076690305563,80.14869393645047 +-0.3939982671381066,-0.07236466565291938,0.1851064861844127,-86.08366101925135,-32.05006656146311,80.14705492249101 +-0.3938720431533602,-0.07226379135105511,0.1848601363756205,-86.06116519734995,-32.040619277967565,80.14379499687473 +-0.39374578541628324,-0.07216265864884695,0.18461443873474054,-86.0385359845076,-32.03118448704121,80.1404126612446 +-0.3936234557192949,-0.07207823392494493,0.18436090579359263,-86.01648942300832,-32.02264678306884,80.13528516311152 +-0.3935005422111919,-0.07199406596634916,0.18410775836408194,-85.99438572799805,-32.014062724342395,80.13019039726325 +-0.39338157286836667,-0.07192558476421548,0.1838474561450646,-85.97241515754497,-32.00572439675731,80.12308573531287 +-0.39326214070321286,-0.0718576188270694,0.18358744406900337,-85.9504402437687,-31.997393108020482,80.11604086987809 +-0.3931455795130242,-0.07180385451330644,0.18332005544650207,-85.92791226642701,-31.988230305972024,80.10714272221183 +-0.39302842977862323,-0.0717501200100889,0.18305310920622714,-85.90531702697803,-31.979071519960385,80.09815318581924 +-0.39291335246666415,-0.07170844304825891,0.18277879839501238,-85.88161373415934,-31.9678757693373,80.08715828549276 +-0.3927976692339341,-0.07166725524894688,0.18250467400561166,-85.85798162527253,-31.956629404994164,80.07626211241542 +-0.39268352676636487,-0.07163777654926942,0.18222404657034774,-85.83260816225155,-31.942370045683393,80.0626789691925 +-0.39256882635915574,-0.07160839825045077,0.18194361404268608,-85.80730947060296,-31.928111579958024,80.04914596488527 +-0.39245571143504177,-0.0715875765073411,0.18165889195715434,-85.78123173720219,-31.910306014468357,80.03439345147277 +-0.39234215242208015,-0.07156654817293713,0.18137480579811768,-85.75511069554986,-31.892442571212037,80.01963889672908 +-0.3922309552422588,-0.0715503545589205,0.1810888855796128,-85.729904052118,-31.870842237239327,80.00572479182226 +-0.3921195913841575,-0.07153430610449535,0.18080404057020777,-85.70451251612062,-31.849235084129738,79.99179087572759 +-0.39201079371813075,-0.07152502641123164,0.18051905293942408,-85.67969302275843,-31.82433396662147,79.97740891798837 +-0.39190137668013075,-0.07151631010687888,0.1802342565936061,-85.65495419426476,-31.799433087134847,79.96320012953242 +-0.39179344921245063,-0.071516891703589,0.17994902143267016,-85.63049997871946,-31.771894026900437,79.94788834993949 +-0.39168510517884353,-0.0715174369262761,0.17966374584888103,-85.60611659365495,-31.74429042550574,79.93258314041127 +-0.3915787948591712,-0.07152940406555405,0.17937602542253006,-85.58155512358269,-31.715331070678893,79.9161382398206 +-0.3914721246873145,-0.07154131797040311,0.17908831816345439,-85.55700753111593,-31.686359390921027,79.89966733977569 +-0.3913704115963905,-0.07156947997148363,0.17879304622847836,-85.53145262482005,-31.657733843729922,79.88063519159347 +-0.3912682334615415,-0.07159807426347953,0.17849817880764068,-85.5058417131439,-31.629142307220572,79.86165649755797 +-0.3911730257221372,-0.07164516747121885,0.1781922351913631,-85.4785069974673,-31.601869397929633,79.83927694347587 +-0.39107743144906676,-0.07169265912879635,0.17788648061466383,-85.45119734735665,-31.574630077801363,79.8169865515014 +-0.3909884149760856,-0.07175750865976599,0.17756936365779682,-85.42156648612668,-31.548338678398142,79.79169683057681 +-0.3908990314714565,-0.07182208020649926,0.17725276148393893,-85.39195499551523,-31.522076997949373,79.76644058562724 +-0.3908171478957684,-0.07190118490432676,0.1769270235537193,-85.3605961360851,-31.496208374998066,79.73880660127638 +-0.3907347214083886,-0.07198069832518994,0.17660142488108027,-85.3293252160021,-31.47036585490172,79.71130191039714 +-0.3906618666659583,-0.07207257942957693,0.1762734019852067,-85.29788427786812,-31.444404232401084,79.68251828379722 +-0.39058831362170643,-0.07216459865706434,0.17594520885618045,-85.26659759072568,-31.418413962664722,79.65390035868056 +-0.3905252822118507,-0.0722631947426545,0.17562209404965426,-85.23740548580852,-31.391337032560127,79.62687803553463 +-0.39046167400024856,-0.07236152404848083,0.17529880680769708,-85.20836297352199,-31.36423342846261,79.59995380037786 +-0.39040929263487134,-0.07246452891259385,0.17498160522750653,-85.18182442964878,-31.33581635909533,79.5754877990571 +-0.39035622196863684,-0.07256730128135781,0.17466436100466942,-85.15536661588914,-31.30737006630895,79.5510905567617 +-0.3903149074522814,-0.07268086750552698,0.17434846306265445,-85.12912728617258,-31.277889810221737,79.52591350631855 +-0.3902730559690121,-0.07279457540562956,0.17403240701588407,-85.10296660964424,-31.248435714081165,79.50085809901707 +-0.39024188574126717,-0.0729218351897655,0.17371480516709897,-85.07557498077645,-31.21754196355449,79.47326494836804 +-0.390210101693481,-0.07304885911211106,0.1733972947279765,-85.04827242547351,-31.186671338213696,79.44573619978347 +-0.39018938780201856,-0.07318904210028608,0.17307884389361639,-85.01961682784265,-31.15409046404444,79.41540352832406 +-0.39016827138133026,-0.0733289782288516,0.17276031932210684,-84.99098087455141,-31.12146285509218,79.3851061973638 +-0.39015952848065255,-0.07348407839605021,0.17243980255417354,-84.96111708911333,-31.08769353881731,79.35121984785302 +-0.39015038658317636,-0.07363894764278342,0.17211926189986107,-84.93135312029122,-31.05381529246952,79.31741636992837 +-0.390155910048,-0.07380946600412047,0.17179607282538514,-84.90039975706794,-31.01923757141211,79.2795597800658 +-0.39016040133897356,-0.07398023474486987,0.17147295804996593,-84.86954374311333,-30.984656564263982,79.2418352949443 +-0.39018017151401546,-0.07416557130263948,0.17114671875976165,-84.83768083016282,-30.94989944554152,79.20068548883285 +-0.3901993576510763,-0.07435057677240016,0.1708206454027256,-84.80578265775856,-30.91510843046186,79.15943423718247 +-0.3902317809252639,-0.07454715298520527,0.17049048590464172,-84.77251222963115,-30.880748223813285,79.11532446609793 +-0.39026306310689096,-0.07474424324773443,0.1701603999022072,-84.73928246821083,-30.846291153356404,79.07126569930118 +-0.3903062094923907,-0.07495148760112622,0.1698271959995884,-84.70471548829266,-30.812753528296213,79.02509119298587 +-0.3903485031427082,-0.07515846632913373,0.16949387762263582,-84.67025506009156,-30.77911851052197,78.97887978795167 +-0.3904035004268856,-0.07537653056194941,0.16915932504128442,-84.63476541613834,-30.74706827580987,78.93053692172086 +-0.3904574213685844,-0.07559488327993263,0.168824043941494,-84.59944606356,-30.71497815112683,78.88231007633885 +-0.39052541265126295,-0.07582522908694395,0.16848657189273264,-84.5628068995662,-30.68503804718261,78.83111185584282 +-0.39059247906461925,-0.07605636188003648,0.16814865561618397,-84.52627533272513,-30.654931667832944,78.78011722034523 +-0.3906721591529836,-0.07629750202487667,0.16780956438598768,-84.48834746365435,-30.62609420044739,78.72641132080625 +-0.39075099249182366,-0.07653900032213841,0.1674704256488704,-84.45040313131489,-30.59712401573943,78.67273584840251 +-0.39084135211449633,-0.07678729526622603,0.16713386894648322,-84.41196184423687,-30.56848839129841,78.61728578851194 +-0.3909311707866244,-0.0770356616138877,0.1667975165123518,-84.37344622653785,-30.53966167966468,78.56183844299926 +-0.3910352538523379,-0.07729309015251508,0.16646456072071725,-84.33503497380833,-30.511461203526707,78.50444806663737 +-0.39113844354120897,-0.07755048086256941,0.16613138086394658,-84.296679799846,-30.483062359117504,78.447010697142 +-0.3912572148302454,-0.07781836536501865,0.16580015496922487,-84.25789192940275,-30.455585588386878,78.38714815459132 +-0.39137529692769946,-0.07808624138083112,0.1654689399832356,-84.21909002749028,-30.428011036504653,78.32718603260948 +-0.3915073239529238,-0.07835983860774205,0.16513969545734747,-84.1796117113507,-30.400714663806014,78.26519835916665 +-0.3916384521787898,-0.0786339756764942,0.16481027897974365,-84.14020173880678,-30.373213653648122,78.20328085109065 +-0.3917824722189165,-0.07891049575757994,0.16448510274588393,-84.10047738736297,-30.345462973055405,78.14025784096067 +-0.3919255441387467,-0.07918760115691972,0.16415921565707647,-84.06081912744652,-30.317619833438755,78.07729459547966 +-0.39208366548585794,-0.07947290239693466,0.16383701070538065,-84.02071905482947,-30.290937349538876,78.01147877098842 +-0.39224078151232644,-0.07975875089841966,0.163514800605582,-83.98055818664895,-30.264072806024533,77.94560142728656 +-0.39241634678721377,-0.08006456195051923,0.16319312827957858,-83.93923587359295,-30.241171896377114,77.87351880750691 +-0.39259068713178347,-0.08037105431350403,0.1628712199406592,-83.89793600268833,-30.21802028467492,77.80142423731165 +-0.3927833570155694,-0.08070031019642833,0.16255067493783074,-83.85549094526036,-30.19992394605251,77.72279615491927 +-0.3929746046506556,-0.08103047015377277,0.16222967936026136,-83.81313820338788,-30.18162633839841,77.64422863632636 +-0.3931815371377762,-0.08137628790511657,0.1619134747347274,-83.77037024969782,-30.167902378763422,77.56154829177679 +-0.39338677541272427,-0.08172351392521245,0.1615965616509582,-83.72769314020955,-30.153968500881117,77.47897893070115 +-0.393605300120351,-0.08207776028953011,0.16128928799075481,-83.68538547558708,-30.143135527438407,77.39469029666346 +-0.393822448284272,-0.08243276769145304,0.16098066860859503,-83.64330078975634,-30.13210967479199,77.31051487732219 +-0.3940528925673752,-0.08278875232715964,0.16068977926116979,-83.60358918469787,-30.122642596061404,77.22688618714719 +-0.3942822571395853,-0.08314544302727699,0.1603978542676529,-83.56401842275794,-30.11303858747874,77.14327402551628 +-0.3945267883665372,-0.08350010326367478,0.16012903743877083,-83.52882248234106,-30.104399189543642,77.06146135693479 +-0.39477027351291527,-0.08385590740251815,0.1598599674448589,-83.49358837661856,-30.095506054358175,76.97964872631151 +-0.39502914913072207,-0.08420787108841576,0.1596152053533816,-83.46287325973304,-30.087062458678258,76.89987587434898 +-0.395286695648595,-0.08456134120236881,0.15936986359590866,-83.43218357719266,-30.078395766638852,76.8201375508734 +-0.3955575795834253,-0.0849084489768649,0.1591486217682035,-83.40545765540531,-30.069285705974526,76.74276382194515 +-0.3958273662538784,-0.08525627603813413,0.15892638810698223,-83.37881781416222,-30.060040941565802,76.66532759836171 +-0.3961081025382903,-0.08559481897058452,0.158728754120103,-83.3555897963309,-30.04951682142674,76.5905355113492 +-0.39638785293303136,-0.08593415312229213,0.15853019355975348,-83.33243325644378,-30.038876861748324,76.51572212144623 +-0.39667749608306146,-0.08626142954878487,0.1583557854594091,-83.31235519498765,-30.026659891005053,76.44388068538903 +-0.39696576637088365,-0.08658980185345053,0.15818045123947544,-83.2924107772765,-30.014349616599414,76.37205199006732 +-0.3972625791001726,-0.08690357823323626,0.1580294676850776,-83.27622120435973,-30.00063268696958,76.30416206293648 +-0.3975586738945232,-0.08721819126869526,0.15787776129567427,-83.26009745190429,-29.98690075634408,76.2363101075326 +-0.3978618942043344,-0.08751501156831684,0.15775291288537557,-83.24833509355936,-29.971966880987,76.17350185079843 +-0.3981641794263614,-0.08781283047676958,0.1576271796163799,-83.23668611030432,-29.956979450373485,76.11070179816527 +-0.3984716199526017,-0.08809088290836171,0.15752897094739673,-83.22990563062974,-29.940737926551858,76.05368106482968 +-0.3987786485819321,-0.08836953717770964,0.157429942750536,-83.22316669256573,-29.924463810086397,75.99662750368164 +-0.3990906819125064,-0.08862662157592298,0.15736077321251182,-83.22186988499638,-29.906725997616203,75.9453808190008 +-0.39940157863330933,-0.0888849706702961,0.1572905546512542,-83.22074215696222,-29.88893768863691,75.89422857277368 +-0.3997171727371617,-0.0891208725539125,0.1572519293907918,-83.22550860099888,-29.86956185287932,75.84885090496235 +-0.4000318824592366,-0.0893577278790608,0.1572120486537284,-83.23042449750687,-29.85022376231105,75.8035930838691 +-0.4003490569258151,-0.08957197975191081,0.15720246164287005,-83.24058119325522,-29.829266121056172,75.76371026992484 +-0.4006655039665608,-0.08978654078031159,0.15719178592218275,-83.25087208398253,-29.80829130846312,75.72378284848992 +-0.4009808399181111,-0.0899772012891042,0.1572072963899568,-83.26512696783571,-29.785617381988384,75.68891759148168 +-0.4012954569041015,-0.09016857759443916,0.15722264423681553,-83.27932337563723,-29.762964979416406,75.65402064920296 +-0.40160583219416435,-0.0903327330522368,0.15726292870074784,-83.29703809978781,-29.73869510719645,75.62457572322052 +-0.4019153974468056,-0.09049798155839295,0.15730307578330735,-83.31474906773302,-29.71440914335817,75.59523341738945 +-0.4022176082868143,-0.09063420588241719,0.15736813207753095,-83.33594020857565,-29.68874538221995,75.571944185363 +-0.4025193965148166,-0.09077090482839627,0.15743348902886703,-83.35704569846183,-29.66310074109127,75.54858936836946 +-0.40281158844581455,-0.0908799810643725,0.15752059090608947,-83.38085284674933,-29.636936962767017,75.53079274021334 +-0.40310336806280667,-0.09098894263675662,0.15760798435734089,-83.40464161681106,-29.610746913824872,75.51285441623646 +-0.4033848226832412,-0.09107296207837524,0.1577142173137599,-83.43054994973922,-29.585058953445316,75.49954077277611 +-0.40366600493608584,-0.09115717829070982,0.15782108401260012,-83.45637471708255,-29.559438990623498,75.48609804945121 +-0.40393646146429457,-0.09121818392262648,0.15794492876592078,-83.48440180598486,-29.535085607413404,75.47706792609719 +-0.40420685794859557,-0.09127900531919979,0.15806955920174257,-83.51228347745048,-29.510786974999967,75.46788157696776 +-0.40446618131906387,-0.09131670165958794,0.1582101845600807,-83.54254004234438,-29.488111779101878,75.46309923620854 +-0.4047252308914296,-0.09135456736355585,0.15835106886725483,-83.57270755710742,-29.465446470112642,75.4582571275288 +-0.40497314955670605,-0.09136477948886096,0.1585098717723596,-83.60621729290706,-29.443979633312985,75.45927394910443 +-0.4052206879602764,-0.09137507150210822,0.15866929568319715,-83.63964194859136,-29.422452048127063,75.46022352498177 +-0.4054568198959819,-0.09135090738730796,0.15885130417930723,-83.67789351078761,-29.40111757983464,75.46951673141771 +-0.40569228097852883,-0.09132684481071453,0.15903364892693872,-83.71613325568532,-29.379789539008637,75.47882327865844 +-0.40591658394969904,-0.09126633942846042,0.15924053503178362,-83.76015363743946,-29.35795422281542,75.49683677687541 +-0.40614054712347725,-0.09120586016117813,0.15944791626715205,-83.80407592276457,-29.336142715997646,75.5148104299251 +-0.4063525727476158,-0.09111202438658803,0.1596783736011055,-83.85306478542951,-29.313408849289647,75.5402263719821 +-0.40656388120976567,-0.09101778525548881,0.15990890167670058,-83.90210271676378,-29.290705809216938,75.56561806786988 +-0.40675936362965404,-0.09089146418851163,0.16015681455695016,-83.95395245707385,-29.266738296828283,75.59731946418577 +-0.4069539911540503,-0.0907650289263229,0.1604044423701093,-84.00591655014863,-29.242730868150765,75.62903187348444 +-0.4071289453032926,-0.09060693506588509,0.16066341456225486,-84.0584901821802,-29.21751873092557,75.66614053942449 +-0.4073029742550577,-0.0904483229783552,0.16092233548939744,-84.11119041205104,-29.192247949458732,75.70321307187284 +-0.40745597436991066,-0.09026123863659548,0.16119009852785748,-84.16388706852925,-29.16657488469895,75.74512091294224 +-0.4076083330759593,-0.09007361877199878,0.16145817496163958,-84.21659017182915,-29.140799837300154,75.7869262043078 +-0.40774085838915897,-0.08986116442256058,0.16173468382399261,-84.26971301931496,-29.115858175643453,75.83303246117829 +-0.40787239322481406,-0.0896487091280994,0.16201118451085672,-84.32290480824304,-29.090813573091456,75.87918594530413 +-0.4079858091158264,-0.08941440238303344,0.16229725398955547,-84.37695960521506,-29.067345929033912,75.92933389865115 +-0.4080983205047581,-0.08918043432682243,0.1625836211189534,-84.43102744477571,-29.04368664259341,75.97951074201725 +-0.40819325595625644,-0.0889261514244869,0.16287939350941377,-84.4863735678054,-29.021713753384674,76.03364872025492 +-0.4082876243632869,-0.08867172480599561,0.16317543693036926,-84.54167079933751,-28.99956858191057,76.08766369608101 +-0.40836515999348955,-0.08839993447530128,0.16348062590934642,-84.59845886682155,-28.979175249167223,76.14522172716691 +-0.40844203662543416,-0.08812763791656894,0.16378676067746015,-84.65514082486638,-28.958585228896006,76.20257296817194 +-0.4085055284331063,-0.08784146118487195,0.16410428590113238,-84.7142105843243,-28.939696849072366,76.26282950878209 +-0.40856782710883705,-0.08755491300477276,0.1644221434737223,-84.7733015524739,-28.920678868974374,76.32298457188178 +-0.40861895367964274,-0.08725531577917092,0.1647554600592538,-84.8355886963945,-28.902983559094082,76.3858463609141 +-0.4086686010440196,-0.08695620095296398,0.1650882608804735,-84.89803759905597,-28.885155263565697,76.44878889114027 +-0.4087057203690253,-0.08664338356510025,0.16543618695582385,-84.96295442541584,-28.867896985100543,76.51384096052514 +-0.40874154410205943,-0.08633078803728012,0.1657838120033479,-85.02803198384288,-28.85043370296549,76.57898735961248 +-0.40876235147888285,-0.08600423299419549,0.16614408232681868,-85.09459237420299,-28.83255293648816,76.6459297279974 +-0.40878207813455447,-0.08567783940729606,0.16650481741411574,-85.1611234404334,-28.814474113362305,76.71280671548845 +-0.4087873369153008,-0.08533493140622997,0.16688002480119926,-85.22948439002194,-28.79520177021019,76.78200467148655 +-0.408791196035713,-0.08499233468425944,0.1672549588089243,-85.29795084047298,-28.775683529870914,76.85124991095464 +-0.4087818830698397,-0.08462862101865563,0.1676472333041658,-85.3693464975554,-28.75451004460129,76.92492993743562 +-0.40877104805289216,-0.08426530249242348,0.1680396544753547,-85.44077318505174,-28.733048583510833,76.99862180252997 +-0.4087460170026946,-0.08387914665837738,0.16844651922497145,-85.51456449939855,-28.709414181055905,77.07723136217503 +-0.408719468028079,-0.08349298275590317,0.1688531534277958,-85.58838904536148,-28.685511440391693,77.15573770616614 +-0.40867657858186707,-0.08309063878451178,0.1692667353662059,-85.66202076994713,-28.659415119638854,77.23627606173773 +-0.40863223899394074,-0.08268844844798018,0.16968103944148852,-85.73555901894225,-28.6329657357008,77.31670352836082 +-0.4085712361786057,-0.08226859196315277,0.17009901262243848,-85.80812930378347,-28.604104801245306,77.39891053961088 +-0.40850849571941006,-0.08184929942137789,0.1705170291805648,-85.88066637335884,-28.574829112448473,77.48103080379741 +-0.40843068107112895,-0.08140571716125303,0.17094008246476597,-85.95331262169573,-28.542735817635794,77.56782657501654 +-0.408350758379423,-0.08096314466461338,0.17136290699740028,-86.02600275234371,-28.510272650749606,77.65456441334743 +-0.4082573758995012,-0.08049947743807062,0.17178778120317684,-86.09863772296491,-28.475862930794005,77.74582968783479 +-0.408161813308607,-0.08003670567951693,0.17221227471422376,-86.17137772694063,-28.44107206354415,77.83711306674044 +-0.4080535899429667,-0.07956540036216625,0.1726319705263707,-86.24243734826459,-28.406026043153474,77.92904765409276 +-0.40794334872386084,-0.07909537409085679,0.1730511618482668,-86.31359266702054,-28.370656721004217,78.02099691099875 +-0.4078258913804997,-0.07863583554453527,0.1734593325385323,-86.38259677123607,-28.337483589058994,78.10789026513864 +-0.40770633312428384,-0.07817717944072679,0.1738674502507349,-86.45163524842313,-28.304006721550415,78.19471856593665 +-0.4075842984487857,-0.07773470606338503,0.1742626020080352,-86.51921827418191,-28.27372068789343,78.27524126134442 +-0.40746011947174476,-0.07729338454364353,0.17465715094519563,-86.58688651079069,-28.24310379118989,78.35572946305668 +-0.40733180737953145,-0.07685947950166247,0.17503689855485818,-86.65334396009104,-28.21465726262557,78.43371163123565 +-0.4072019309816707,-0.0764259003154106,0.1754169193977647,-86.719768650504,-28.185880015982423,78.51150768725546 +-0.40706697575963446,-0.0760036070731682,0.1757784978138716,-86.78453428471116,-28.15961286198642,78.58646348884915 +-0.4069305802480671,-0.07558170846500722,0.17613985366797402,-86.84925879972019,-28.133036386061033,78.66128374642656 +-0.4067895022239205,-0.0751832991206616,0.1764757607391116,-86.91055786154759,-28.110217808224654,78.72865704366353 +-0.40664736125561274,-0.07478570637046171,0.17681175386612594,-86.9717482591929,-28.087124467262626,78.79598589114256 +-0.4065018978373972,-0.07441848877631328,0.1771169634430401,-87.02809312922244,-28.068389175546123,78.85374572795465 +-0.40635543111721123,-0.07405193154318787,0.17742211642061317,-87.08444767047726,-28.049496306168287,78.91147110138645 +-0.40620538721661403,-0.07371411928862377,0.1776925412626566,-87.13499104276599,-28.03457886542058,78.96013815767152 +-0.4060540004731235,-0.07337734314578026,0.17796226941862966,-87.18567568606171,-28.019443725358965,79.00890472239684 +-0.40589562781232247,-0.07306604463581794,0.17819408033844494,-87.22925448854134,-28.007597744235408,79.05000511237415 +-0.40573647374721145,-0.07275488910728882,0.17842590903541522,-87.27284245395055,-27.995620023012837,79.09102747493611 +-0.4055675682542486,-0.07246586434905608,0.17861943323518262,-87.30946813647436,-27.98621968269316,79.12622221963098 +-0.4053982300765592,-0.072177831159252,0.1788133566214781,-87.34597259906617,-27.97671089226329,79.16146008526094 +-0.40521876069671314,-0.0719076230617352,0.17897104527664204,-87.37636484404815,-27.96920131635285,79.19256648554234 +-0.4050386922868298,-0.07163801268804687,0.17912863632261064,-87.40669153251187,-27.961666999058956,79.22368595247194 +-0.40484858699932785,-0.07138503076657238,0.1792510399195778,-87.43091244650533,-27.95558355408847,79.25128500719039 +-0.4046580162701401,-0.07113302423535367,0.1793735230038655,-87.45507602403059,-27.949439348440237,79.27896336390909 +-0.4044565781378513,-0.07089728211221864,0.1794570192037867,-87.47198035161269,-27.944315696033712,79.3028868818954 +-0.4042546123771513,-0.07066212146572522,0.1795399111020602,-87.48895151428432,-27.93916032697025,79.32689291540785 +-0.4040396589515476,-0.0704416121714147,0.17957803470128364,-87.4962645532477,-27.934452572477046,79.34713086451252 +-0.40382406285355354,-0.07022161255780315,0.17961541808951156,-87.50372248943371,-27.92973872246632,79.36743515118232 +-0.4035933904579777,-0.07001395292815388,0.1796042639529875,-87.50036014096622,-27.924887040859165,79.38464969074178 +-0.40336223646503666,-0.0698068162611733,0.1795930053708767,-87.49694515164337,-27.920039123320723,79.4018469123765 +-0.40312515166332896,-0.06961671976117534,0.1795414180887524,-87.48658140018372,-27.91612892442527,79.41590113469675 +-0.40288768501474503,-0.06942760103518894,0.17948922762761574,-87.47629108152765,-27.912246046779376,79.43010950929339 +-0.40265996986631714,-0.06926718843124595,0.17941029891709148,-87.46562286230011,-27.911741920479237,79.44050858002488 +-0.4024321353765417,-0.06910743848015691,0.17933118546813218,-87.45495256955395,-27.91131071088099,79.4509002371896 +-0.402219423483289,-0.06898071964281899,0.17922693015447705,-87.44529572150603,-27.91544935397669,79.45699923891459 +-0.4020064256067789,-0.06885429899943639,0.17912298483277603,-87.43558270045702,-27.919594791786714,79.46307112045024 +-0.40180577004273155,-0.06876005757086812,0.17898937339250462,-87.42456058909397,-27.928048162319072,79.46479371503877 +-0.40160505019333537,-0.06866570471309494,0.17885627493065717,-87.41340731056087,-27.936505571590104,79.4664488700342 +-0.4014111315961515,-0.06859786274546896,0.17869040002479528,-87.39843647303661,-27.947962297558764,79.46486010142252 +-0.40121730061461014,-0.06852976766110892,0.17852458068708416,-87.38345231742588,-27.95942823034911,79.46320926972896 +-0.40102337382520925,-0.06847956781516917,0.1783250157535987,-87.36185385493,-27.971551893690084,79.46011802201485 +-0.4008290436548113,-0.06842953314867885,0.17812556341590632,-87.34030370313921,-27.983690732574043,79.45704100687455 +-0.40063961235302525,-0.06839934870933584,0.17789995545751908,-87.31396123739178,-27.995782803302443,79.45244430179368 +-0.4004497744533452,-0.06836891222603311,0.1776741017812611,-87.28773730069317,-28.00789195476008,79.44783616979782 +-0.40027751915436194,-0.06836191843907699,0.17743416843940632,-87.26172702266832,-28.019838453315458,79.44159749584152 +-0.4001046382123822,-0.06835543605095891,0.17719426235196462,-87.23571360469913,-28.031732700710855,79.43540689970762 +-0.3999509280458133,-0.06836873978183512,0.1769418219013703,-87.21032399375713,-28.041973978365593,79.42813144931505 +-0.3997966560858502,-0.06838213847721811,0.17668942150834238,-87.18493248561326,-28.05215859855022,79.42085633140776 +-0.3996582198353922,-0.06841395378021775,0.17642300970713817,-87.15801027625386,-28.05920241880003,79.4117722900902 +-0.3995194299028465,-0.0684458955996464,0.17615693425972576,-87.13102663818731,-28.066299581544214,79.40270532692402 +-0.39940055131648644,-0.06849640244579994,0.17588286417853857,-87.10401546208897,-28.069432583782074,79.39190665821873 +-0.3992810910108561,-0.06854645969545856,0.17560879447105557,-87.07701865027062,-28.07255477652172,79.38099287310229 +-0.3991820884191179,-0.06861622094727673,0.17532507671813793,-87.04852663879726,-28.07114707012313,79.36681219354446 +-0.39908224412498405,-0.06868604607188784,0.1750415709961166,-87.02010809789495,-28.069785181112003,79.35266433778766 +-0.3989931268052548,-0.06877652113407062,0.1747357777389318,-86.98386291773133,-28.063369568705603,79.33217495048558 +-0.39890339805169583,-0.06886702017868127,0.17443027361367155,-86.94763352490246,-28.056866184927905,79.31170158537522 +-0.39882050484199383,-0.06897779270123414,0.17410054151555893,-86.90182115316978,-28.045930832463764,79.28426022539263 +-0.3987367335636145,-0.06908852248199365,0.1737705819462697,-86.85608943642606,-28.034884903251818,79.25681848492606 +-0.39866357752710213,-0.06922079142737232,0.17342315570888772,-86.8032745908594,-28.020964186775398,79.22313255971393 +-0.3985893108453731,-0.06935313548932671,0.17307583296148674,-86.75054714323335,-28.007027173407597,79.18950520459357 +-0.3985287921998236,-0.06950668015489156,0.172719021872834,-86.6935626668076,-27.99148315140285,79.1507476396879 +-0.3984675022930765,-0.06965995025131587,0.17236233788160327,-86.63660707210326,-27.975896311192184,79.11201496044771 +-0.3984274338055619,-0.06983233070743758,0.17200827657438134,-86.58069071334401,-27.959600305610277,79.07056252099012 +-0.39838649892132316,-0.07000467164758753,0.17165508387584522,-86.52466950327286,-27.943178831338194,79.02901761729623 +-0.3983709566160877,-0.07019203036201543,0.17131187578279392,-86.47292771028471,-27.926253668276228,78.98655676055965 +-0.3983547772317819,-0.07037947357351135,0.17096967805564478,-86.42107610905104,-27.90920395318543,78.94406866944877 +-0.3983556060574187,-0.07057673147460479,0.17063319809973213,-86.37042825530752,-27.89065254784991,78.90034761223113 +-0.39835589198904975,-0.07077399996849022,0.17029776433891575,-86.3196141534254,-27.871904157398063,78.85652343055607 +-0.39836741273441717,-0.0709810670277217,0.16996427613796597,-86.26741399269848,-27.851591697182464,78.81054200923398 +-0.3983778828587391,-0.0711878356582829,0.16963028839986352,-86.21537704770437,-27.83115388084326,78.76455479545015 +-0.39840218457709276,-0.07140584900421995,0.16929914945581037,-86.16200003875998,-27.809996688737204,78.71524103897812 +-0.39842544740935704,-0.07162446378063694,0.168967710945508,-86.1087802313235,-27.788761343970794,78.66608594149521 +-0.39846372708561917,-0.07185420255877455,0.1686406231502689,-86.05506151826141,-27.767321121452287,78.61338978592126 +-0.39850116970104654,-0.07208388047686108,0.16831325358688723,-86.00144964563542,-27.745729973866084,78.56077981783532 +-0.39855389005641206,-0.07232092755205362,0.1679958522006229,-85.94919322656196,-27.723945689143385,78.50625103082919 +-0.39860566311284107,-0.07255816024903662,0.16767807278807256,-85.89705245137219,-27.70194407240236,78.45175658442923 +-0.39867135768028356,-0.0727967484239345,0.16737512004965654,-85.84775379869123,-27.67954495723822,78.39732458767531 +-0.39873631838093504,-0.07303513224704533,0.16707182164830542,-85.79850968655752,-27.65692905439829,78.34283423135867 +-0.39881269197013813,-0.07327085731896305,0.16678317492341896,-85.75171445775894,-27.63367312742145,78.2890433229746 +-0.39888821572222016,-0.07350681226120276,0.1664944238764159,-85.70496947794766,-27.610264747612774,78.23525214782181 +-0.3989735702609297,-0.0737339314126452,0.166219687620838,-85.66052897257471,-27.586252361512255,78.18346816285924 +-0.39905805788207094,-0.07396167232013194,0.16594521206380633,-85.61607439958271,-27.562036055466788,78.13170833104883 +-0.3991514430228905,-0.07417164583583408,0.16568862484446464,-85.57551159475348,-27.537092656260306,78.08501715786247 +-0.3992440192253211,-0.0743823232976238,0.1654322135215939,-85.53498465471134,-27.512035246955797,78.03842890250127 +-0.39934508694830695,-0.0745713897578436,0.1651976911566707,-85.49948893126528,-27.48637991089978,77.99835457173944 +-0.39944539459957573,-0.07476074483624406,0.16496313562750078,-85.46402462244838,-27.46063482819402,77.95832142252141 +-0.399554040835763,-0.07493049630207238,0.1647528280695453,-85.43380504145405,-27.435026872482723,77.92426382654403 +-0.39966236865276306,-0.07510059052005363,0.1645424439350299,-85.40355257066453,-27.4093497102884,77.89028219855538 +-0.399778393025786,-0.07525279550761899,0.1643568934142667,-85.37851876456986,-27.38447796565403,77.86123285450688 +-0.3998941022237924,-0.075405605684497,0.16417084672576424,-85.35351372363658,-27.359558384919936,77.8322721157681 +-0.400016672490879,-0.07554294948899902,0.1640101914838723,-85.33313131929148,-27.335764161506198,77.80719246868433 +-0.4001390236085903,-0.07568058600820507,0.16384897021965716,-85.3128270932131,-27.312003643359663,77.78222002284069 +-0.4002660787008808,-0.0758051876698331,0.1637125710705894,-85.29644607759194,-27.28939689745453,77.76016424189598 +-0.4003931396945742,-0.07592955641826123,0.16357613821802588,-85.28000679489837,-27.266812130059954,77.7380313456449 +-0.40052394480524084,-0.07604290848773124,0.163464369682006,-85.2670417917547,-27.245601964440684,77.71794579178811 +-0.400654726833364,-0.07615651444717018,0.1633521649296423,-85.25407791869567,-27.224432117124554,77.69792600108677 +-0.4007890383446319,-0.07626470614929215,0.16326309429914995,-85.24374441135755,-27.205149948088,77.67761789996722 +-0.40092329033646257,-0.0763730659164836,0.163173936391148,-85.23336208174607,-27.18584398427046,77.6573002352476 +-0.40106179760531224,-0.07648434811654047,0.16310704280100674,-85.22464757974849,-27.169094456216417,77.63360024257564 +-0.4012004307248949,-0.07659579165826097,0.16304032357869547,-85.21587661028632,-27.152322108664592,77.60987906496163 +-0.4013446080200124,-0.07671288932226716,0.1629965987992581,-85.20931442115095,-27.138102313568513,77.58216175816715 +-0.40148867512900543,-0.07683020516627989,0.16295275715943827,-85.202748519083,-27.123926482320055,77.55444822025704 +-0.40163823951609057,-0.07694901302904736,0.16293375124195655,-85.19911353444418,-27.111630341028107,77.52404676264818 +-0.4017874601193767,-0.07706756768649387,0.16291471366566926,-85.19548091342533,-27.09937683589395,77.49352474792002 +-0.40194015979254977,-0.0771814895726545,0.1629226624629993,-85.19541113202283,-27.088257345681306,77.4623338540677 +-0.40209286507042036,-0.0772960266962302,0.16293120928949317,-85.195216252846,-27.07717657474309,77.43113916543658 +-0.40224623042970553,-0.07739557300113001,0.1629690938997492,-85.20011099517518,-27.0664812654423,77.40281107532772 +-0.4023994257232062,-0.07749531897347423,0.16300692036111056,-85.20500288765497,-27.05585077641678,77.37446857904956 +-0.4025497430723307,-0.07756853154445591,0.16307636079907215,-85.21578588051759,-27.044670402382256,77.35334351582598 +-0.4027003329780009,-0.07764147770397814,0.16314623163460984,-85.22643495224949,-27.033489874459416,77.33209641066452 +-0.40284352430524295,-0.0776858723870141,0.16324283160176495,-85.24156301393215,-27.02160887991807,77.31787977670106 +-0.40298674193387274,-0.07773006872177288,0.16333999755270345,-85.2565554877942,-27.009731240018642,77.30359976760899 +-0.4031209504553873,-0.0777542736603267,0.16346010105297107,-85.2739797193911,-26.997821821171165,77.29257911138846 +-0.4032552805668141,-0.07777803931607526,0.163580587709841,-85.29133890733539,-26.985914421688626,77.28140351586813 +-0.4033803531823855,-0.07778512245428007,0.16372515443568852,-85.31113815759355,-26.974356227623748,77.27197495021363 +-0.4035050435907439,-0.07779257676293158,0.16386935442075407,-85.33105691611745,-26.962881562410608,77.26258448757322 +-0.40361923914231385,-0.07778030838551481,0.16403793061389427,-85.35360275192518,-26.951451685304285,77.2553871698951 +-0.40373300276399093,-0.07776849643806696,0.16420651578501205,-85.37621831672352,-26.93998525574252,77.24827434184148 +-0.40383385547952255,-0.07773385532578646,0.16439669172939178,-85.40088195342196,-26.928261768711618,77.24391018673644 +-0.4039345972643146,-0.07769913452602549,0.16458726825869416,-85.42553973200646,-26.916483650224333,77.23948292320777 +-0.4040201951518521,-0.0776354405462803,0.16479776339929636,-85.45242594070118,-26.90401384207316,77.24022253054426 +-0.4041055579760856,-0.07757124689746016,0.16500844017433164,-85.47930782737657,-26.89154029948733,77.2408298015523 +-0.40417540399376195,-0.07747114513362971,0.165240178257935,-85.5090484780494,-26.87765797795234,77.2486664911019 +-0.4042446562423988,-0.07737114532340456,0.16547176883926795,-85.53885475270027,-26.86371525238741,77.2565769188139 +-0.40429803911870776,-0.07723906836226552,0.1657227251997477,-85.57075757449978,-26.848705113982025,77.27012330487042 +-0.4043507392772061,-0.0771066237683566,0.16597301905943948,-85.6028566529678,-26.833633995081748,77.28369469629118 +-0.40438733732890253,-0.07694425957352423,0.1662413808520854,-85.63729981854028,-26.817929849071046,77.3029761939122 +-0.40442354625151933,-0.07678160014180517,0.16650950937556033,-85.67180397533345,-26.8021929480257,77.32226353010799 +-0.40444849568410074,-0.07658687154123062,0.16679921382427515,-85.71164235436108,-26.786179585244078,77.34918289792594 +-0.4044728525398279,-0.07639188743728675,0.16708903290877483,-85.75153514702687,-26.770109218338412,77.37610165671795 +-0.40449292912597756,-0.07616994783359773,0.1674023256084524,-85.79910991891695,-26.754963773414843,77.40968580831205 +-0.40451212398759123,-0.07594818730571584,0.1677156773571493,-85.84676184014911,-26.739673584742455,77.44333634961201 +-0.4045269876515013,-0.07570712992867218,0.16804843708788966,-85.90081458063801,-26.726061124712782,77.48133427067981 +-0.4045404970809532,-0.07546652681766099,0.16838098848849697,-85.95500751142947,-26.712336181622042,77.51936959146296 +-0.40454591253561656,-0.07521438883831426,0.16872658722186556,-86.01275566381386,-26.700593365716305,77.5588149211174 +-0.4045500105502984,-0.07496271589035677,0.16907210753510105,-86.0705802440084,-26.68871743334822,77.5982635585582 +-0.4045431089957715,-0.07470089210678167,0.16942422037724084,-86.13025129951647,-26.67843815641548,77.63866039102305 +-0.4045352132141189,-0.07443873314325654,0.16977694581808778,-86.18987215882176,-26.667997917492944,77.67889032872341 +-0.4045150074825626,-0.07416155908306352,0.1701330502593062,-86.25096141436619,-26.658453811598815,77.72206473667048 +-0.40449347485330134,-0.0738843126514285,0.17048894661517902,-86.3121900805993,-26.648762504197748,77.76527432369129 +-0.4044592589694148,-0.07359021087501962,0.1708448096155102,-86.37438930987456,-26.639574342911455,77.81226019668853 +-0.4044238220074394,-0.07329687287699042,0.17120078643727119,-86.43660983980988,-26.630206713357474,77.85934339299398 +-0.40437164917206947,-0.07299166900755683,0.17154935514359304,-86.497008813234,-26.62097987349881,77.90837197276369 +-0.40431818888674304,-0.0726868144169502,0.1718977453974789,-86.55743107563592,-26.611621605493642,77.95739137401291 +-0.40424282369443776,-0.07237872041318566,0.17222853085395973,-86.61236267865723,-26.602261607261187,78.00474641397122 +-0.40416668868683864,-0.07207146224729304,0.17256010110376568,-86.66712037346407,-26.59271224089064,78.052114530111 +-0.40406784886570507,-0.0717602055731111,0.17287231393024496,-86.71589008856664,-26.582560431366286,78.09815596855513 +-0.4039679739753149,-0.07144978724292037,0.1731843741561141,-86.76467996881024,-26.572192988419417,78.14424756531682 +-0.4038484764246668,-0.07112881427078792,0.1734812079266458,-86.80951811153551,-26.5603707592188,78.19273222772273 +-0.4037281884993671,-0.07080795002497994,0.17377746539557523,-86.85438563779469,-26.548340453696014,78.24116250858621 +-0.403590687917448,-0.07047760462189928,0.17405672263747501,-86.89619298149532,-26.535123837336634,78.29271590491088 +-0.4034522662627209,-0.0701479366299591,0.17433568164913277,-86.93801497908521,-26.521757271710847,78.3443107573114 +-0.4032957817824814,-0.06981323256864058,0.17459148035123084,-86.97499409394014,-26.507614381886846,78.39764213083808 +-0.4031384129058744,-0.06947918838642735,0.1748465055615057,-87.0120527170698,-26.493334082959407,78.45099094891694 +-0.4029576348641157,-0.06914604624579626,0.17506785517051607,-87.04043139582885,-26.478459867720183,78.50348131617899 +-0.4027760345468656,-0.06881372633408883,0.17528831101491105,-87.06889738073596,-26.463425671154276,78.55605328624434 +-0.40257116915254676,-0.06849447731418362,0.17546792777345607,-87.08663703676908,-26.448728774122372,78.60371072164084 +-0.40236566870671264,-0.06817639507486868,0.17564725926762217,-87.104391677485,-26.43390807033797,78.65143306247406 +-0.4021448567917877,-0.06788157084669913,0.17578886259312715,-87.11410226950717,-26.42051615664451,78.69226051752595 +-0.40192376115919703,-0.0675873528911425,0.17593037693968006,-87.12369148969371,-26.40713534829676,78.73296597411955 +-0.4016966857345471,-0.06731819040017921,0.17604317188585167,-87.13001375325909,-26.395766982703016,78.76849390053161 +-0.4014690539784431,-0.06704932426710242,0.17615529676564784,-87.13634634905895,-26.384321336815027,78.80396916730388 +-0.40124164962769987,-0.06680043431341659,0.17624593868442803,-87.1427759360198,-26.37487980095858,78.83755303987535 +-0.40101383060123985,-0.06655217203809535,0.17633578496255692,-87.14927944750215,-26.365367752180866,78.87116993550721 +-0.40078833803878966,-0.0663225863738878,0.17640454636892014,-87.1564583564972,-26.35790009344895,78.90402119370191 +-0.4005622356700905,-0.06609369877984907,0.17647261171575837,-87.16371090759563,-26.350419269772694,78.93695760561955 +-0.40033845553585956,-0.0658870018801028,0.17651651453431172,-87.1706043490238,-26.345258149399868,78.96813256153789 +-0.40011433343040814,-0.06568093356081448,0.17656046124432406,-87.1774418704492,-26.340134499893615,78.99934049247538 +-0.3998910139821195,-0.06550001136145575,0.1765755639255437,-87.18206641008709,-26.337310640915906,79.02789886248432 +-0.39966737145079057,-0.06531917346029754,0.17659026996938812,-87.18676480236803,-26.334479843951055,79.05643280122857 +-0.3994438680392097,-0.06516547533658217,0.17657342558115202,-87.18804516706646,-26.334022679628575,79.08138348261713 +-0.39922048096229124,-0.06501223459050393,0.17655720441107434,-87.18913304446876,-26.333497712957847,79.10630668305774 +-0.3989970945756109,-0.06489146865412941,0.17650747474711034,-87.18520213339352,-26.335375449451494,79.12555747476578 +-0.39877356743639253,-0.06477140665661002,0.17645780463556926,-87.18127579170635,-26.33731779962613,79.14485787563521 +-0.3985478863210192,-0.06469135381913647,0.17636865532759596,-87.16894746449007,-26.341679855481285,79.15536234488093 +-0.3983224030109417,-0.06461112196957887,0.17628027924007775,-87.15642078179874,-26.346048406422867,79.1657265285007 +-0.3980945601098629,-0.06457205312303209,0.17615019216219474,-87.1339158225773,-26.352206705016137,79.16614749228253 +-0.3978662360245585,-0.06453329015791634,0.17602023705552985,-87.11140763550326,-26.358383240501084,79.16662369112287 +-0.39763785255940953,-0.06453059665347316,0.17585375435117237,-87.080079941063,-26.365104463709777,79.15830995270538 +-0.3974090635225195,-0.06452849776316222,0.17568779197085257,-87.04869018648702,-26.37177343838074,79.1500697680174 +-0.3971860278854091,-0.06456099777301254,0.17549501344674318,-87.01195881934395,-26.378213427590662,79.1342809876077 +-0.3969629067475936,-0.06459321424182093,0.17530277597028476,-86.97515796896569,-26.384587317600772,79.11845885156623 +-0.39675489578421475,-0.06466264291589881,0.17509612026348553,-86.937379141833,-26.390509850822614,79.09553731409231 +-0.3965465312230775,-0.06473157872532415,0.1748893508602399,-86.89965549192041,-26.396462285862548,79.07252437822608 +-0.39635807275798796,-0.06483750990951932,0.1746728056825024,-86.8623524844524,-26.40194817560793,79.04229379938928 +-0.3961691353089897,-0.06494366755691118,0.17445656952509467,-86.8250038866159,-26.40732181118022,79.01204005137458 +-0.39599639113452134,-0.06508236249140678,0.1742251664842765,-86.7859096446622,-26.411811350473332,78.97512036928043 +-0.3958230353469565,-0.0652212723860622,0.1739940529260035,-86.74682065116964,-26.416170546150838,78.9382018181323 +-0.3956590586168157,-0.06538520143386232,0.17374223776432515,-86.7030748822407,-26.418786009560066,78.8961085836799 +-0.39549437583041747,-0.06554942757762079,0.1734907551770549,-86.65933467438902,-26.421365588142624,78.85406681367307 +-0.39533722128258136,-0.06573056995273781,0.1732193233353326,-86.61107502753327,-26.421639310283698,78.80970825003119 +-0.39517958944538367,-0.06591157477691126,0.17294821016690795,-86.56282632756059,-26.421803390763344,78.76534516557675 +-0.3950388446571997,-0.06611087416021783,0.17266622820111208,-86.51417544187655,-26.42113945046455,78.71986395270149 +-0.3948975579365282,-0.06630996106703174,0.17238457204155086,-86.46553829878467,-26.420295648464485,78.67432940492954 +-0.39478689502037934,-0.06654038720940023,0.17210136723364003,-86.42060780650982,-26.421337909366795,78.62448120241532 +-0.3946752477704347,-0.06677038862950313,0.17181815204118736,-86.37575445893002,-26.42231315752105,78.5745965381205 +-0.3945947172415445,-0.06703677685341436,0.1715312432985643,-86.33363428955704,-26.42601403976084,78.51852784306769 +-0.3945131196658792,-0.06730280991901279,0.17124424313920514,-86.29160050838469,-26.429518688026608,78.46243663363748 +-0.39445434613035035,-0.06759933730268013,0.1709480029931335,-86.248858370288,-26.434925064870715,78.40095488065634 +-0.3943943712837023,-0.06789557386502444,0.170651579084447,-86.2062091365772,-26.44011550776812,78.33944516346644 +-0.3943501109512666,-0.06821467538425294,0.17034265261253081,-86.16051969363068,-26.4458967083,78.2739803344931 +-0.3943045819761708,-0.06853393534324628,0.17003410045072417,-86.11486541060735,-26.45149173076272,78.20852098485969 +-0.3942681401763383,-0.06886763129655302,0.16971218476711541,-86.06454991744036,-26.456277243399576,78.1411553869838 +-0.39423062372410544,-0.06920139650095208,0.1693902523279106,-86.01432623591498,-26.460850845040593,78.07376570296461 +-0.39420198241513793,-0.06954750574726336,0.16905756005279252,-85.95956047348449,-26.464696551589363,78.00496867887836 +-0.39417204616583723,-0.06989345064158681,0.16872496529032507,-85.90484548753513,-26.46830829604456,77.93613348831354 +-0.39415411934483785,-0.0702537536148035,0.16838375080464288,-85.84671660526985,-26.472053643995945,77.86542324511986 +-0.39413507371057954,-0.07061418631175292,0.16804306271233369,-85.7885073480764,-26.475583445115394,77.79460065675813 +-0.3941294926968277,-0.0709867004863593,0.1676971650470249,-85.72727045804982,-26.47943213685507,77.72195954154039 +-0.3941219707454613,-0.0713598659268126,0.16735053608784775,-85.66628694879256,-26.48296008674489,77.64941895078536 +-0.3941284822076153,-0.07173742356825596,0.1670061160315056,-85.60419874956493,-26.486093928620676,77.57786605587133 +-0.3941331630273618,-0.07211565547148328,0.1666614702556601,-85.54222641011903,-26.48894664330475,77.50634898094155 +-0.39415320023669315,-0.07249233313719798,0.166323521232405,-85.4812066426684,-26.490865875435606,77.4376595392429 +-0.39417203376917453,-0.07286976285820641,0.16598636475881565,-85.42005326595043,-26.49249365402287,77.36895859599062 +-0.39420698341403654,-0.07325094943038253,0.16565512507276994,-85.35932733401381,-26.494128874406826,77.30064692078781 +-0.39424081877724726,-0.07363253845398869,0.16532460964682832,-85.29847255923099,-26.495471943133605,77.23226815500082 +-0.39429136235116197,-0.07402108720193815,0.16500064702048622,-85.2375824459595,-26.49776045475528,77.16233002951854 +-0.3943407120764038,-0.07441050960663319,0.16467698119262655,-85.17663221184631,-26.49970020289312,77.09242261577855 +-0.39440753395110434,-0.07480488268944041,0.16436288326833376,-85.11607288820879,-26.503131628294398,77.0212749617491 +-0.3944726577138525,-0.07519984065306234,0.16404829865093282,-85.05564177990482,-26.506230920883628,76.95017598088755 +-0.3945549025448167,-0.07559422049671936,0.16374854231392116,-84.99732051265453,-26.51048219901778,76.88020278767932 +-0.3946358891851506,-0.0759888988233004,0.16344858294251635,-84.93905426429492,-26.51446640995961,76.81023739340434 +-0.3947337101911243,-0.0763767088881593,0.16316896490268742,-84.88470016870532,-26.518766700700976,76.74286910625065 +-0.3948302064624759,-0.0767652518094709,0.1628889901082411,-84.8304613344685,-26.522832271500207,76.6755942296597 +-0.3949431316220292,-0.07714953833072362,0.16263017268996766,-84.7792043754614,-26.52707706072194,76.6087764090115 +-0.3950548794217672,-0.07753459759636826,0.1623706135617411,-84.72806782608649,-26.53115961490906,76.54205660486144 +-0.39518127056684715,-0.07791758886856415,0.16212989806475794,-84.67907585119903,-26.535819831714374,76.47439613357561 +-0.39530651968824293,-0.07830130101039826,0.1618891827103579,-84.63008122445709,-26.540244311204795,76.4067226400291 +-0.3954438350425303,-0.07868041340662593,0.16166702165434813,-84.58335098649191,-26.545360826561,76.33896994520347 +-0.3955802167563073,-0.07905986349207392,0.1614441352047614,-84.53668514627738,-26.550206245483242,76.27117483981058 +-0.39572558936335317,-0.07943027333016844,0.16124031602570835,-84.49205772277527,-26.55551062976626,76.2041466817186 +-0.39586979901635394,-0.07980144708861003,0.16103549203050618,-84.44762995151656,-26.560636472798713,76.13719603040644 +-0.39601997855113114,-0.08015926261858106,0.1608494326612588,-84.40511717465066,-26.565696167047115,76.07168432951465 +-0.3961691978096164,-0.08051781285130517,0.16066332063821964,-84.36259993559716,-26.570500080437228,76.00616465162653 +-0.3963223609629868,-0.08085971018344718,0.16049626271355147,-84.32257670088114,-26.5748450040364,75.94286323076837 +-0.3964748288312314,-0.08120191049092898,0.16032887115181524,-84.28254967213157,-26.578953532441503,75.87949891694491 +-0.39662975388460053,-0.08152404596703783,0.16018218955276683,-84.2456401711069,-26.58230278041482,75.81930906175015 +-0.3967836514708101,-0.08184675508331432,0.1600352010866263,-84.20878363392183,-26.585441059677574,75.75907979725244 +-0.3969378714533811,-0.08214587761914602,0.15990895034670607,-84.17512785873674,-26.58780230366965,75.70282288333605 +-0.39709128960499185,-0.08244551400166866,0.15978257236132093,-84.14153236344588,-26.58997735824497,75.6465383354732 +-0.3972431985190552,-0.08272031656984605,0.15967668404990054,-84.11097101269613,-26.59174443743559,75.59446439662041 +-0.39739422138098135,-0.08299566473671825,0.15956966991663912,-84.0806444390517,-26.593381331136552,75.5424967767334 +-0.3975437343878908,-0.08324657147103409,0.1594816253813754,-84.05343079956357,-26.59551038570329,75.49464245848618 +-0.3976929698507636,-0.08349744963755194,0.1593938125994597,-84.02612623804987,-26.597469554174584,75.44663689165796 +-0.3978402485268766,-0.08372487362873146,0.15932455441223511,-84.00244618988269,-26.600701792135816,75.4032064401318 +-0.3979872023597187,-0.0839523067925245,0.15925461982349928,-83.97886667076818,-26.6038787059269,75.35975985468204 +-0.39813290503991255,-0.08415541734624402,0.15920594971073448,-83.95981606596328,-26.60873538059255,75.32138390847867 +-0.39827850304056056,-0.0843587668642534,0.15915694496416297,-83.94079302204642,-26.613539677931016,75.28295502717201 +-0.39842300786875695,-0.08453712430212293,0.1591288525054101,-83.92637313702585,-26.619835830222065,75.24949259965373 +-0.39856737103040474,-0.08471576362472358,0.15910030777154247,-83.91196340702625,-26.62615412711664,75.21601933488031 +-0.39870843278364854,-0.08486973265778977,0.1590879080055244,-83.90064497164913,-26.633680200968342,75.18665785246314 +-0.3988495229204849,-0.08502384940289459,0.1590756602484154,-83.88928236789789,-26.641167888003213,75.15721931771593 +-0.3989845892655533,-0.08515331804316377,0.15907547269001296,-83.8794379855278,-26.649519119463505,75.13118684523967 +-0.3991196598001956,-0.0852829885715473,0.15907536168164974,-83.86960352344823,-26.65791304292843,75.10515760174142 +-0.399245610965545,-0.08538773377766144,0.15908464400945213,-83.86034625176197,-26.666972499730043,75.08228859827939 +-0.39937158809730544,-0.08549261846283221,0.15909438962084274,-83.85095791164373,-26.675990426388015,75.05935797879717 +-0.39948501473385156,-0.08557054600438697,0.15911081307776692,-83.84106632928636,-26.685410166148564,75.03968822705902 +-0.3995986689900676,-0.08564856933017306,0.15912753807057145,-83.83111152151942,-26.6947498105499,75.0199992159895 +-0.39969580657582005,-0.08569745249079999,0.15914863420687383,-83.81981313856473,-26.70404493077947,75.00425961214488 +-0.39979316843140766,-0.08574646338691842,0.1591695991769657,-83.80852111889713,-26.713281116549073,74.98857892344166 +-0.3998729575685119,-0.08576393525531845,0.1591952639502286,-83.79568707359589,-26.722080287584927,74.97720741705045 +-0.39995233801261404,-0.08578192508798023,0.1592201263803129,-83.78303429520315,-26.730972393756414,74.9660196577524 +-0.40001520458891315,-0.08576905277561328,0.15925119640514968,-83.76985106650791,-26.73957805798837,74.95970850401487 +-0.4000780740341707,-0.08575608884183578,0.15928230434993607,-83.75665920234431,-26.748178133246718,74.95333516831533 +-0.4001259415148129,-0.08571536517078428,0.15932153091009538,-83.74431443787999,-26.757111130766614,74.95195620174998 +-0.40017397961336765,-0.08567423583887634,0.15936046546436827,-83.73196644822663,-26.766050136645834,74.9505212037396 +-0.4002097183511254,-0.08560974213609762,0.15940703964045208,-83.72085606562801,-26.775978818714012,74.95304331119037 +-0.4002451766549884,-0.08554517318488335,0.15945332225401843,-83.70980377570655,-26.785919169273313,74.95554051190977 +-0.40027052203396013,-0.08546082669262178,0.15950711446733803,-83.7002883390562,-26.79758294937231,74.96113726582848 +-0.400295801965062,-0.08537687533965783,0.15956096956656043,-83.69071445021115,-26.8092427816963,74.96676130606346 +-0.4003119823945867,-0.08527595105677042,0.15962200224378084,-83.6833664208407,-26.823157510686627,74.97525084541418 +-0.4003282343639975,-0.08517551382486277,0.1596832734897608,-83.67596393067501,-26.83713212332787,74.98381855472698 +-0.40033570581705186,-0.08506075780841083,0.1597510605381155,-83.67059244776792,-26.853642697761252,74.99488943617263 +-0.4003430008588557,-0.08494652479391021,0.1598187903288132,-83.66522383337488,-26.87022159873717,75.00607211518407 +-0.40034035362037457,-0.08481865821452296,0.15988945263875182,-83.66103603157016,-26.88904048960108,75.0193851159034 +-0.40033760843890387,-0.08469084106564706,0.15996047679989894,-83.65678062681988,-26.90790713344564,75.03266665586685 +-0.40032295190109113,-0.08454996660215511,0.16003014686485328,-83.65197123104629,-26.92821044336062,75.04780412980122 +-0.4003083087416397,-0.08440883945114638,0.16009980189944284,-83.64714937740543,-26.948581618514876,75.06292458806568 +-0.4002807305141196,-0.08425520878237983,0.1601634838760525,-83.64030395053243,-26.96954588999652,75.07900781972857 +-0.40025301656457,-0.0841013583724501,0.16022741010904282,-83.63345107626122,-26.990581091098306,75.09507501885207 +-0.4002136600808603,-0.08393698979984283,0.16028263086650885,-83.62397111220277,-27.011983299848463,75.11119760168954 +-0.4001738913815195,-0.08377274877518255,0.1603378849817009,-83.61449065094604,-27.03339739654527,75.12731434030533 +-0.4001228979595337,-0.08359959165159292,0.16038339850149166,-83.60238245105586,-27.055017196918495,75.14372164685618 +-0.4000720363375439,-0.08342617407420957,0.1604291316704241,-83.59021203123082,-27.07664389021871,75.1600424452744 +-0.40000955308287245,-0.08324316867372261,0.16046506151734727,-83.5754877008603,-27.098175464779143,75.17719142313555 +-0.3999469893299064,-0.08306040687713591,0.1605010557885112,-83.56068415002606,-27.11978174129948,75.19433644564232 +-0.3998729024190283,-0.0828684788468105,0.16052813831053364,-83.54315212231633,-27.1408950419897,75.21249041895656 +-0.3997988010631627,-0.08267626207184006,0.16055497634424878,-83.52567490664022,-27.162046427547246,75.23054636252446 +-0.3997134870178811,-0.08247573580731136,0.16057260771336335,-83.50561512128823,-27.182491375467016,75.24963840217906 +-0.39962814563381593,-0.08227542688773823,0.1605904877027452,-83.4854786027096,-27.2030216157032,75.26866973605992 +-0.39953268693367705,-0.08206846763517205,0.16059803269934902,-83.46287353802617,-27.222985878681648,75.28849070564816 +-0.39943716421534153,-0.0818612837202222,0.16060614902323195,-83.44014642960016,-27.243028798826217,75.30812358009635 +-0.3993335446288958,-0.08165047746430831,0.1606033822903669,-83.41494625038672,-27.262938517290333,75.32779700517679 +-0.3992294708823507,-0.08143998874677275,0.16060082552523344,-83.38973946886225,-27.28296295091737,75.3474516674934 +-0.3991195177440867,-0.08122939432022157,0.1605876586008005,-83.362319211852,-27.303287496460083,75.36628928672991 +-0.3990089215909237,-0.08101914103454723,0.16057449126400333,-83.33489763612332,-27.323674786281096,75.38511431686382 +-0.39889371982162136,-0.08081151699283536,0.16055074661372096,-83.30552277122649,-27.344670017263983,75.40252123539152 +-0.3987781440887558,-0.08060461958895232,0.16052745359817036,-83.27601231255258,-27.365708686935225,75.41990962324643 +-0.398658178263496,-0.08040307616153329,0.16049426178035472,-83.2447475290227,-27.38734628135015,75.43561985791528 +-0.39853798535448903,-0.080201552436727,0.16046152856628013,-83.21334377607883,-27.409095241011908,75.4512415003468 +-0.3984130051716608,-0.08000620645081244,0.16041909015790604,-83.18040791081728,-27.43102442463774,75.46545325727008 +-0.39828785728491534,-0.0798110756191987,0.16037734496331402,-83.147331708843,-27.452995933795748,75.47952147497976 +-0.39815808713275014,-0.0796214272608663,0.16032672901285133,-83.11262912875864,-27.474511379102076,75.49214731834343 +-0.39802828127571,-0.07943206160257359,0.16027656441842603,-83.07778361440076,-27.49601764308225,75.50468104443115 +-0.3978939316532245,-0.07924907600558433,0.1602178479425387,-83.0413635310778,-27.516403066708655,75.51569002174902 +-0.39775958261877886,-0.07906590029931611,0.1601595713828563,-83.00480103076812,-27.53683193588107,75.52649652096736 +-0.3976221062403779,-0.0788899076773773,0.16009311030757656,-82.96662697609406,-27.555688438318462,75.53563364810357 +-0.3974843634609401,-0.07871372029680096,0.16002719553636496,-82.92830822519025,-27.57458953713241,75.544559686132 +-0.3973450438170859,-0.07854500254511315,0.1599530018891942,-82.88852998778935,-27.59168640444231,75.55180394349686 +-0.3972050920775425,-0.07837660172216827,0.15987901074168048,-82.84872711945081,-27.60885354402989,75.55901229187795 +-0.39706489329872696,-0.0782158498536768,0.15979739238177215,-82.80741683577119,-27.624146477815042,75.56452779386724 +-0.3969241464656273,-0.07805499531613116,0.15971559818775286,-82.76614528724409,-27.639514556755586,75.56997431921558 +-0.39678359463845525,-0.07790192773589362,0.15962442356032625,-82.72283050901383,-27.653082068857568,75.57340403356307 +-0.39664269883370923,-0.07774912234581306,0.1595334509342133,-82.67944451482592,-27.66670679936134,75.5767722960041 +-0.39650218219447186,-0.07760615827479887,0.15942868652360073,-82.63339432934325,-27.67922267915015,75.57757393644263 +-0.3963616378187426,-0.07746294400204791,0.15932449210465457,-82.58720873508395,-27.69172263440216,75.57818535423836 +-0.3962230763174571,-0.0773319918391286,0.15920441548159606,-82.53780950157206,-27.70393327231983,75.57544896490906 +-0.39608380406520854,-0.07720121096245083,0.15908423302674082,-82.48846137913517,-27.716156947529118,75.57266440433298 +-0.3959488250791463,-0.07708349486145225,0.1589479282945449,-82.43579771635912,-27.728687522085423,75.5661325996507 +-0.3958129662440208,-0.07696631327124456,0.15881188523475862,-82.38317184310445,-27.74133909378907,75.55958043871141 +-0.39568251238031654,-0.07686332953757556,0.1586599328570492,-82.32760818163655,-27.75452473068832,75.54930405324089 +-0.39555176409185927,-0.07676053100044505,0.1585085378113234,-82.27201093291912,-27.767817610993202,75.53898252124608 +-0.39542756696520787,-0.07667236806920563,0.15834353302675375,-82.21424007913349,-27.781788375966777,75.52527938339573 +-0.3953028546121226,-0.07658388972316033,0.1581791798224486,-82.15643751240654,-27.795853337627232,75.5114099968497 +-0.39518630381150854,-0.07651075876014801,0.15800493621154027,-82.09742251480571,-27.81069872764791,75.49461175531012 +-0.3950693813365347,-0.0764377405884398,0.1578312271493571,-82.03830789173591,-27.825565120317517,75.47772482786323 +-0.3949611703532776,-0.07637958405915637,0.15765070321847796,-81.97909133681632,-27.841078190074857,75.4584004917514 +-0.39485283639947255,-0.07632150936282613,0.157471401402356,-81.91964582881246,-27.8566338484578,75.43892651787269 +-0.3947539387432628,-0.07627749017887847,0.15728816894656708,-81.86063350272076,-27.87241564494736,75.41743935755451 +-0.3946549149146635,-0.07623343446890943,0.15710574727960833,-81.80146125606218,-27.888232160448272,75.39577378604258 +-0.3945649648250006,-0.07620232550473115,0.15692062296016118,-81.74300525249164,-27.903963425955254,75.37249957573133 +-0.3944745002880805,-0.07617159224108999,0.1567362818529868,-81.68445320917964,-27.91973392373208,75.34914033521562 +-0.39439337225872684,-0.07615137365346639,0.1565509707374017,-81.62642106011107,-27.93514244783128,75.32446122830223 +-0.39431135284041113,-0.07613155078810023,0.15636559193673175,-81.56850513089643,-27.95050204919774,75.29981192098062 +-0.3942389666806809,-0.07612228065861232,0.15617933866200093,-81.51088554842035,-27.96588896598582,75.27391563491427 +-0.39416591843832216,-0.07611307624034297,0.1559931446016154,-81.45330329026041,-27.98127329572054,75.24800154599932 +-0.39410335681888187,-0.07611571155740787,0.15580493626168526,-81.39602876429313,-27.99748837150617,75.22068045937638 +-0.3940402985461092,-0.07611876561312572,0.15561705526435374,-81.338730647056,-28.01373777149961,75.19335497483681 +-0.3939872976183714,-0.07613297560055049,0.15542781383349538,-81.28157489090809,-28.030996244884218,75.16498483359567 +-0.39393398973924076,-0.07614729914815652,0.15523899401410826,-81.22433373892248,-28.048223462178086,75.13659137801693 +-0.39388930071188666,-0.07616970569889878,0.1550491552674191,-81.16718161331904,-28.066111810924312,75.10774555379355 +-0.3938443752777435,-0.07619252569402764,0.15485991124314044,-81.10994531432875,-28.083958600239228,75.07888569408162 +-0.39380775347892794,-0.07621915017379924,0.1546717041292351,-81.05354622787819,-28.102307439157055,75.05129974318852 +-0.3937708158540043,-0.07624579711864866,0.15448426690926803,-80.99700063758021,-28.1206633449599,75.0235981746114 +-0.3937426960448758,-0.07627371403452665,0.15430009985078988,-80.94191205000662,-28.139496017200983,74.99830100784881 +-0.3937138599860299,-0.07630198301382832,0.154115911464026,-80.886867744881,-28.15830082319999,74.972989611712 +-0.393693959995592,-0.07633602531493161,0.15393386043769636,-80.8321428930915,-28.177823665150285,74.94773369686736 +-0.39367368801308555,-0.07637010459428734,0.15375166898253462,-80.77746414959547,-28.197325829807948,74.92246728918519 +-0.39366223509940373,-0.07641069578286094,0.15357135067308764,-80.7229962720398,-28.217589050528336,74.89673536512701 +-0.3936501211037264,-0.07645162423364238,0.15339140915786179,-80.66849626416305,-28.237806090633175,74.87094460002821 +-0.39364633860195675,-0.07649571598621707,0.15321464778644459,-80.61489790744781,-28.258712649013525,74.84603158915507 +-0.3936419794331853,-0.07653985652016558,0.15303821603462014,-80.56126871750985,-28.279586229320387,74.82106364424061 +-0.39364421970028174,-0.07659040204776313,0.15286208263307402,-80.50702081752499,-28.301657485901615,74.79514669208845 +-0.39364625842119505,-0.07664087988341392,0.15268670340828117,-80.45269316821913,-28.32367580065931,74.7690955215939 +-0.3936528038936118,-0.07670042951399751,0.15250860527742194,-80.39656634602919,-28.347123545625188,74.74082110161422 +-0.39365876535667477,-0.07675964922054285,0.15233072501671616,-80.34042422002786,-28.370587285787593,74.71242728748112 +-0.3936689551342555,-0.07682658758964278,0.15215283165646362,-80.28255116964378,-28.395221590986317,74.68210874801217 +-0.39367853438596156,-0.07689320089565534,0.15197437729614588,-80.22479868098787,-28.41982921021773,74.65174030598139 +-0.3936919873771343,-0.07696542124230167,0.15179896265979775,-80.16631223987275,-28.44526948659692,74.62011673561598 +-0.39370479204094744,-0.07703769767896779,0.15162342349639996,-80.10786252541219,-28.470721850640125,74.58844306647495 +-0.39372173533239213,-0.07711506073994571,0.15145415514783014,-80.04959899326906,-28.49700825861096,74.5560218473443 +-0.3937379405514324,-0.07719240911368497,0.1512842399811309,-79.99150692874923,-28.523260540978367,74.52357479805352 +-0.3937592633992698,-0.07727547813531535,0.15112222367394518,-79.93446551208922,-28.55078321022549,74.49063445873666 +-0.3937800633048063,-0.07735888330969744,0.1509602434219513,-79.87746614376407,-28.578245774619116,74.45764953146848 +-0.3938060574064167,-0.07744770618032798,0.1508071891102645,-79.82243496833999,-28.607003953261813,74.42480388714186 +-0.3938317335096826,-0.07753619974875653,0.15065414580568,-79.76744351123705,-28.635713214461692,74.39187224987843 +-0.39386254873717774,-0.07762831403337528,0.1505110702675942,-79.71481069837913,-28.665452549122172,74.35965697696479 +-0.3938931540579499,-0.0777201869340884,0.15036805050877108,-79.66216248919213,-28.6950861482109,74.32739406710398 +-0.3939289121175042,-0.07781352789854874,0.15023489818334315,-79.61219671398561,-28.725592388376445,74.29634703730459 +-0.39396439184650556,-0.0779069230399023,0.15010215516663192,-79.56215461481092,-28.75603758323169,74.26521188079244 +-0.39400465755031755,-0.07800034050736565,0.1499789491946491,-79.51511821785694,-28.78725771409372,74.23583800173373 +-0.39404468663137515,-0.07809369969095996,0.14985618865832934,-79.46799706084161,-28.818405533533003,74.20630747810307 +-0.3940891763557641,-0.07818663323113774,0.149743186197694,-79.42374487124644,-28.84990524418545,74.1784299383987 +-0.39413384588239975,-0.07827929475959806,0.14963053863023434,-79.37940477341155,-28.88129507551809,74.15047156870945 +-0.3941825258497757,-0.07837049180616912,0.14952700728123508,-79.33780519026472,-28.9124216969228,74.12390553420872 +-0.39423123161821405,-0.07846173727943126,0.1494237041494384,-79.29617369935241,-28.94356384222767,74.09727948198466 +-0.3942895022772191,-0.07855782895360938,0.1493329223596915,-79.25884396278967,-28.975397632915428,74.07046134088716 +-0.3943478881407045,-0.07865397406668578,0.14924279472606647,-79.22136485221398,-29.007223730179415,74.04353087224686 +-0.39442083560808605,-0.07876048468830582,0.1491676797364273,-79.18960718664752,-29.040705664536116,74.01476537101163 +-0.39449366392390556,-0.0788670691154527,0.1490925220447958,-79.15783097120627,-29.074146412420344,73.9859514134005 +-0.3945745052796772,-0.07897722250011205,0.14902939418854882,-79.12944745601844,-29.106895687695978,73.9569191615109 +-0.3946553801986934,-0.07908716360332554,0.1489662613354584,-79.10099243261098,-29.13966487737559,73.92781098069618 +-0.39473622337246994,-0.07919303212398349,0.1489094812948279,-79.07384908003178,-29.169522217822205,73.90018707437844 +-0.3948172931854486,-0.0792989657176863,0.14885304108195102,-79.04657186804076,-29.199323220642977,73.87247270996113 +-0.39489555582125185,-0.0793990329018886,0.14880163142624386,-79.01968111687778,-29.225637458267602,73.8462853075725 +-0.39497386692396363,-0.07949927398528125,0.1487503121657808,-78.99269985272035,-29.251970121657173,73.8200832410767 +-0.39504823960930796,-0.07959378537973871,0.14870338083700002,-78.9659279429726,-29.27471881153488,73.79556538210137 +-0.39512257043242205,-0.0796880657427218,0.14865634341979944,-78.93920345885532,-29.297457420762605,73.77104770394236 +-0.3951940773745937,-0.0797772259474578,0.1486151464458001,-78.91304960513479,-29.316918903942376,73.74824473735687 +-0.3952654408202565,-0.07986675994866556,0.14857355874335448,-78.88694690196023,-29.336357921679777,73.72545361880839 +-0.3953347341345157,-0.07995192300495979,0.1485377646266564,-78.8616924401204,-29.35256956503593,73.70410599892065 +-0.3954042759895139,-0.08003703776847816,0.1485023310881928,-78.83631089357515,-29.368727156574927,73.68262854482819 +-0.3954726764871041,-0.0801190077180183,0.1484714880766356,-78.81179751849378,-29.382186995731583,73.6622211942958 +-0.39554103821848374,-0.08020134462173142,0.14844075965444847,-78.78721866855953,-29.395545164813797,73.64179045461944 +-0.39560864666069195,-0.08028119411154344,0.14841357219663662,-78.76344482101268,-29.406894191617173,73.62215914924069 +-0.3956762645138463,-0.08036101595608236,0.14838645901160238,-78.73961177920799,-29.418201868002697,73.60244228368566 +-0.3957435093545838,-0.0804388203167622,0.14836266920543154,-78.7164599791879,-29.42794602163637,73.58351456545734 +-0.3958107254894626,-0.08051628947923403,0.1483387767692172,-78.69335963801447,-29.437740960195562,73.56453682235065 +-0.3958787140407737,-0.08059274742442012,0.14831892820845083,-78.67166329067581,-29.44669605190411,73.5465442846881 +-0.3959467508805293,-0.08066895049622132,0.14829906579920554,-78.64996384671542,-29.455641304383754,73.5285398865963 +-0.39601825064692364,-0.08074540925963367,0.14828575932671872,-78.6308387735718,-29.46465737576689,73.51140057397687 +-0.39608950397246345,-0.0808220371677076,0.14827217008824464,-78.6117633457757,-29.47373557661746,73.49433024535101 +-0.3961655720791274,-0.08090021750133475,0.1482664534884135,-78.59565969608455,-29.48349529625947,73.47797883556059 +-0.39624132672153944,-0.08097809709954043,0.14826066986669192,-78.57962607191986,-29.493255852925717,73.46160620328244 +-0.3963205960547037,-0.081058232477179,0.14826230189901432,-78.56647004339122,-29.504003918094778,73.44585668489837 +-0.3963999580892437,-0.08113813009060195,0.14826393622714137,-78.5532962963459,-29.514809545230968,73.43008626052863 +-0.3964815247178673,-0.08122040407472353,0.14827225396729832,-78.54235933311197,-29.526561238568775,73.41443928925413 +-0.396562968264913,-0.08130284122739628,0.14828005032351704,-78.53155017118591,-29.53833476554764,73.39890583730734 +-0.3966450955062975,-0.08138766446284838,0.14829255633365157,-78.52233833541028,-29.550795898032256,73.38332845337762 +-0.3967275986288596,-0.08147223029183027,0.14830543898198909,-78.51299565394932,-29.563283974152945,73.36767090012319 +-0.39681087407009624,-0.08155926946439186,0.1483211122719466,-78.50461555389217,-29.576287653949553,73.3517205370402 +-0.39689367956956206,-0.08164670264308811,0.148336764699294,-78.49629765003611,-29.589285062505787,73.33579446900617 +-0.3969776920205892,-0.08173729864334958,0.14835336538479765,-78.48818799048671,-29.60253228066801,73.31910490162028 +-0.3970612761173339,-0.0818278963486882,0.14836989075417553,-78.48014738569233,-29.615836172592036,73.30237482231135 +-0.39714561593348396,-0.08192261668887066,0.14838636449437673,-78.47198518890865,-29.628967878833073,73.28460674428945 +-0.3972301375856552,-0.08201730741384128,0.1484027374224317,-78.46382076055673,-29.64213446917664,73.26676454014043 +-0.3973153469389853,-0.0821150578965471,0.14841851341834483,-78.45552467860792,-29.654692727579977,73.24765872846551 +-0.39740067539040325,-0.08221338320945555,0.14843455254856877,-78.4471646999399,-29.667239809029002,73.22863650427632 +-0.3974867641252775,-0.08231334576924744,0.14845011746580475,-78.4386382081386,-29.678809440736533,73.2086282823112 +-0.39757269885530916,-0.08241380293007887,0.1484656613791016,-78.43011424216448,-29.69037282945022,73.18867531966734 +-0.39765934453272334,-0.08251437173627052,0.14848112279231213,-78.42139966514584,-29.70095506049342,73.16826505521381 +-0.397745652859663,-0.08261495456414873,0.14849627474341828,-78.41274560051859,-29.711589502150485,73.14781088083866 +-0.3978328269277446,-0.08271490735018709,0.14851165691342702,-78.40412671861796,-29.721497455388256,73.12726662843741 +-0.3979201374392229,-0.0828154270440191,0.14852732781036293,-78.39543540507694,-29.731447690332057,73.10678482405656 +-0.3980086487531458,-0.08291500440985884,0.14854410172757246,-78.38726652016248,-29.740900100252208,73.08643776345004 +-0.3980968991272382,-0.0830142871814764,0.1485608952573896,-78.3791113901918,-29.75034379963161,73.06603116120743 +-0.39818624848176143,-0.08311089260170679,0.1485817161850789,-78.37150688781304,-29.75893553297712,73.04625313107562 +-0.3982752529564483,-0.08320769871378564,0.14860216176296423,-78.36402266740699,-29.767498097471073,73.02659607517433 +-0.3983656972037665,-0.08330170228385793,0.14862760950318116,-78.35764912618482,-29.77502589524639,73.00783653359349 +-0.39845609508159013,-0.08339569961213031,0.1486534703853871,-78.35120052251504,-29.782580458223713,72.98896708699519 +-0.39855036187827775,-0.08348932776057932,0.14868785775893426,-78.34696569754458,-29.789446446882273,72.97087286811772 +-0.3986449015023319,-0.08358264361246999,0.148722138964,-78.34272818010177,-29.796361302087014,72.95271001295565 +-0.39874781206299315,-0.08367865201918784,0.1487723767779163,-78.34306951438641,-29.803278146969134,72.9347611595941 +-0.39885070767843833,-0.08377506378623675,0.14882244086583823,-78.34346863130774,-29.810251096938156,72.91682843357877 +-0.39896912922061595,-0.0838791447938541,0.14889342193310168,-78.35124088491482,-29.81800101842826,72.89776772238272 +-0.39908775784820466,-0.08398334577968465,0.14896524595762928,-78.35882009700025,-29.8257773553637,72.87859599041953 +-0.3992172893563992,-0.08409196548000372,0.14905232493047135,-78.37132272102296,-29.83339927191957,72.8585155869124 +-0.39934673223389605,-0.08420074675204617,0.14913960991696112,-78.38375288531834,-29.841081800510413,72.83838491344501 +-0.3994728580251404,-0.08430269306441718,0.1492282971578374,-78.39495996801482,-29.846272940736633,72.81923334020935 +-0.39959871568500854,-0.08440520290846656,0.14931743618764942,-78.40611835027485,-29.851411004070737,72.8001266328784 +-0.399716203275295,-0.0844961376280851,0.149402731077689,-78.41386887889286,-29.85324762357889,72.78278560108423 +-0.3998334996552184,-0.08458720785722688,0.14948764253819402,-78.42169862620015,-29.855110734491323,72.76548440003972 +-0.39994507087847997,-0.08466829952133069,0.14957155637953407,-78.4271966080943,-29.85420032795977,72.75002856442542 +-0.40005648198756144,-0.08474949298874196,0.14965548135411122,-78.43271512930225,-29.853239973804722,72.7345862091666 +-0.40016374850322484,-0.08482171202902863,0.1497401379108711,-78.4369216152641,-29.849921085159206,72.72121454631565 +-0.40027106888580893,-0.0848939260964364,0.14982464949838245,-78.4411969122,-29.846610533281357,72.70782277359889 +-0.40037478525933734,-0.08495678037447221,0.14991327604160626,-78.44523525700063,-29.84122550368316,72.69720476361424 +-0.4004783189660768,-0.08501972756322172,0.15000183119675992,-78.44933718589044,-29.835916552186667,72.68661445688139 +-0.4005793092871485,-0.08507382314694126,0.15009782760370396,-78.45461672462808,-29.82882551502012,72.67949451184622 +-0.40067997353296314,-0.08512760954182402,0.15019387156956698,-78.459959274703,-29.82175258329207,72.67235436652287 +-0.40077930171742926,-0.0851739855616906,0.15029880401587203,-78.46677077395265,-29.81348763006568,72.66797699828085 +-0.4008786229715282,-0.08522002482186045,0.150403804117212,-78.47358118359979,-29.805226892778066,72.66354673807118 +-0.40097616738558817,-0.08526177547112666,0.1505133922303827,-78.48110902813777,-29.796411944402216,72.66083422835057 +-0.4010737789125872,-0.08530306831649763,0.15062356942770602,-78.48849869377257,-29.787616371199057,72.65792309845021 +-0.4011689461033501,-0.08534134444992666,0.15073403880908745,-78.49512482873918,-29.77865857488301,72.65569705127626 +-0.40126435601714044,-0.08537914902000056,0.15084488118816924,-78.5016900301236,-29.76967840717189,72.65332107514729 +-0.40135704169397846,-0.08541353335790308,0.15095490572557596,-78.50706272464267,-29.76090043829316,72.65127399704053 +-0.40144973612723556,-0.08544786159928934,0.15106475081905538,-78.51243435334878,-29.75205569075825,72.64918129226741 +-0.40154054513380333,-0.08547924835316545,0.15117596996650196,-78.51719137762123,-29.74351269974339,72.64765815182037 +-0.4016309984154601,-0.08551057050104903,0.1512865546268571,-78.52207423164882,-29.73504209273567,72.64611959481255 +-0.4017223788616844,-0.08554136849444335,0.15140000421590022,-78.52675178262064,-29.727193893728707,72.6444289613864 +-0.40181349681451456,-0.0855717236567004,0.15151285157768035,-78.53154656207067,-29.719422072869307,72.6426745920385 +-0.40190860517957827,-0.08560550616398241,0.15162739949744455,-78.53628975942699,-29.712668106906786,72.63970693477353 +-0.40200365022151996,-0.08563892807137143,0.15174155138649012,-78.54114537497972,-29.706003041589003,72.63672625263318 +-0.4021008654698995,-0.08567227807954154,0.15185809789482274,-78.54619560376733,-29.699590765911946,72.63322843162766 +-0.4021978198896358,-0.0857060617422283,0.15197499700845737,-78.55124726537531,-29.693182816058574,72.62978025913381 +-0.4022945418061229,-0.08573526129631315,0.15209820205860947,-78.55766488069283,-29.68594070176616,72.62756891520286 +-0.40239094285499843,-0.0857646052879304,0.15222159860726775,-78.56407796056618,-29.678714205914087,72.62541365095846 +-0.4024901886205561,-0.08579144587485402,0.15235471592999353,-78.57275560522415,-29.670503309769682,72.62428455449131 +-0.4025889626173993,-0.08581835007700662,0.1524878905652235,-78.58150365616665,-29.662309126350163,72.623195389048 +-0.40268961321015045,-0.08584566033275814,0.15262713410573234,-78.59139954649024,-29.652974276431248,72.62185656064678 +-0.40279045891937915,-0.0858725849510699,0.1527667600403342,-78.60124096479112,-29.643570926174657,72.62043394350881 +-0.40289075928135676,-0.08589897855575224,0.15290964839102672,-78.6107607119302,-29.6326147033474,72.61834985307377 +-0.4029907629656865,-0.08592512015288829,0.1530523329021651,-78.62034728003928,-29.621633398514884,72.6163083364626 +-0.4030890604092152,-0.08594577270401915,0.15320053708373563,-78.63036368003841,-29.608697920682175,72.61536390741756 +-0.40318720945780295,-0.08596637067889663,0.15334886840841547,-78.64037981282269,-29.595700861358605,72.61437102256737 +-0.4032822755236507,-0.08597793486526623,0.1535031799444488,-78.65083613725257,-29.5807127067845,72.61531640509993 +-0.40337690864471587,-0.08598953567220183,0.15365724965957978,-78.66136677411325,-29.565685648665188,72.61630355372402 +-0.40346919849923546,-0.0859941298517559,0.1538138763286918,-78.67186239966024,-29.549529478352476,72.61858593399357 +-0.4035613510475321,-0.08599875467891285,0.15397102575474475,-78.68229684097977,-29.533303845605552,72.62085006262436 +-0.4036519167874984,-0.0859974331660559,0.15412992549919025,-78.69311860705074,-29.516904011919884,72.62458711690341 +-0.403742603592511,-0.08599620274015636,0.1542896352628425,-78.70380796855042,-29.500481186806486,72.62830839038416 +-0.4038321183098538,-0.08599023273561957,0.1544493409003139,-78.71499711349442,-29.484672240900274,72.63342877663744 +-0.40392152105051005,-0.08598437127210569,0.15460956072553622,-78.72610572831677,-29.468914520582533,72.63855518442223 +-0.40401178067358845,-0.08597619723417081,0.15477170082009548,-78.7380818775593,-29.454338477249664,72.64463767706106 +-0.4041018927264171,-0.08596803161964146,0.15493355186856564,-78.75011810543145,-29.439776010255475,72.65074460721765 +-0.4041939841922043,-0.08595873811384024,0.1551000153414981,-78.76382644961163,-29.42646568394347,72.65764519942681 +-0.40428607483967366,-0.08594984533182548,0.15526689042865574,-78.77746780569605,-29.4131394302011,72.66456455780968 +-0.4043795158754456,-0.08593864144224961,0.15543740762099964,-78.79252254011499,-29.400371889640603,72.67207792172266 +-0.404472451313341,-0.08592794894242994,0.15560773363747454,-78.80763860541929,-29.387623639682985,72.67972701095155 +-0.4045665534313974,-0.08591375932366545,0.15578090464568506,-78.8235108175491,-29.374418346573282,72.68762684326985 +-0.40466049672820126,-0.08589926210823166,0.15595411817751267,-78.8394379618907,-29.361233930079603,72.69554346077794 +-0.4047556634231042,-0.08588217126544792,0.15612813548925958,-78.85558033757924,-29.346783408855746,72.70296730243133 +-0.40485061664203725,-0.08586508582569867,0.15630224994824818,-78.87172188561452,-29.3323934092077,72.71037293294788 +-0.4049461627713883,-0.08584483111068268,0.15647507183981202,-78.88747480637036,-29.316161237127417,72.7170722521862 +-0.40504126877065416,-0.08582448174182337,0.15664771707028996,-78.90328530583047,-29.299984356460588,72.72371548289806 +-0.40513530743323223,-0.08579854735634013,0.15681924793237786,-78.91856861316853,-29.281729111479983,72.73038549337839 +-0.4052289020427422,-0.08577261500810235,0.15699058601440277,-78.9339218049961,-29.26342912903894,72.73708433426758 +-0.4053193388488675,-0.08573806036785543,0.15716094551130194,-78.94910756574117,-29.242879056236415,72.74478396500993 +-0.4054096122262712,-0.0857035119225803,0.15733144082901082,-78.9642895362815,-29.22227232257901,72.75248845025021 +-0.40549719958444774,-0.08565983663365416,0.15750181374751185,-78.97958061387786,-29.199727018757567,72.76157111417672 +-0.4055845954698363,-0.08561616374987004,0.1576718738096553,-78.99493345020551,-29.17719371038891,72.77068061354761 +-0.4056701052909829,-0.08556360542682838,0.15784110154091052,-79.01063474150803,-29.153385153644727,72.78136214759564 +-0.4057553410553983,-0.0855109475323062,0.15801032313671967,-79.02640477086108,-29.12951958683216,72.79202189615955 +-0.40583879466363654,-0.08544892778603463,0.1581787562688586,-79.04248582619529,-29.10473191374022,72.80446603521021 +-0.405921776023369,-0.0853868148687275,0.15834693434180155,-79.05868099339777,-29.079895741099612,72.81690986852588 +-0.406002560354412,-0.08531611833029881,0.1585145798183193,-79.0757833254082,-29.054654319932535,72.83164848441906 +-0.40608337003616557,-0.08524499874207432,0.15868288842042913,-79.09274313058619,-29.02937308011128,72.84625465626796 +-0.4061609027507681,-0.08516622129364997,0.15885010211977751,-79.11121746163306,-29.004500727153193,72.8636916708332 +-0.40623860593777095,-0.08508740039654686,0.15901826351852671,-79.12948158487757,-28.979630785215484,72.88100264916385 +-0.4063143978865897,-0.08500415601717384,0.15918345147305496,-79.14869406975778,-28.95599765117948,72.90005817882896 +-0.40639041686081123,-0.08492046271088796,0.15934873301149413,-79.16784617720668,-28.932278046845138,72.91902276760531 +-0.4064671232646907,-0.08483778286279708,0.15950806388192745,-79.18727209371076,-28.910189431420072,72.93813479890382 +-0.4065436716313364,-0.08475516571776416,0.15966750328364954,-79.20668815003616,-28.888096296197844,72.95728233774834 +-0.4066221718551486,-0.08467310591626898,0.15982102285033442,-79.22635640623643,-28.867382004272926,72.97597463075428 +-0.4067005260582286,-0.08459150799140008,0.15997435237221652,-79.24602132540275,-28.846606163459164,72.99477258473571 +-0.4067807805007472,-0.08450971750250318,0.1601228711198573,-79.26613050179172,-28.82667092685315,73.01341548800391 +-0.40686073415378304,-0.08442781663799132,0.16027133212868921,-79.2862265613989,-28.806707920185406,73.03198550645713 +-0.4069428651314067,-0.0843455173836186,0.1604157698602186,-79.3070104924157,-28.787100390271856,73.0504871565582 +-0.4070248300331565,-0.08426318876501421,0.16056069601421166,-79.32772802841315,-28.76745885288756,73.0689444214912 +-0.40710904430657313,-0.0841799649277835,0.16070242412545127,-79.34930488322748,-28.74768536992847,73.08738711313097 +-0.4071930917967109,-0.0840967120767382,0.16084464241759536,-79.37082047822977,-28.727823667595118,73.10579629873418 +-0.4072785420545134,-0.08401235130357007,0.1609828514294455,-79.39287948081866,-28.707284075472064,73.12376277501652 +-0.4073639454016865,-0.08392755077824082,0.16112117945502258,-79.41492724577515,-28.686725682918013,73.14165216829427 +-0.4074508356166666,-0.0838432263149288,0.16125601017453675,-79.43716520710923,-28.665330704334703,73.1587660762694 +-0.4075376708452222,-0.08375876329403745,0.1613906707083609,-79.459391823694,-28.643907456147446,73.17579853021984 +-0.4076256596699749,-0.08367430077843468,0.16152131226050556,-79.48184515598781,-28.621932842573138,73.19191492068067 +-0.4077134610371943,-0.08359029942982321,0.16165208514374904,-79.50428121684679,-28.599948925649144,73.20811848997978 +-0.4078012439557255,-0.08350501314552923,0.1617778794197053,-79.5268799593752,-28.57766909780316,73.22385124103162 +-0.4078891896125406,-0.0834192863588232,0.16190444833082035,-79.54935176155304,-28.55534871849349,73.23945686097603 +-0.40797646541246335,-0.08333124726361747,0.16202816538701675,-79.57256358722167,-28.533094484753722,73.25552825314732 +-0.4080636745386975,-0.08324308192836266,0.16215167601005886,-79.59576667729186,-28.510810489049458,73.27152560177058 +-0.4081504206134481,-0.08315200897891965,0.16227441825709757,-79.62018474970348,-28.48897120556766,73.2885843278957 +-0.4082369354664638,-0.08306041604231222,0.16239664621401176,-79.64466230009242,-28.467114682671,73.30554381333485 +-0.40832275319412115,-0.08296658188219022,0.16251576319017189,-79.66962088209281,-28.445833572924112,73.32299393927913 +-0.4084087482236716,-0.08287238068159039,0.1626352469726772,-79.69451581398067,-28.424525868131592,73.34039378377649 +-0.4084920410730847,-0.08277728775770861,0.16274699162032405,-79.71856126812094,-28.403699205399125,73.35761621681085 +-0.40857553944100555,-0.08268173650391822,0.16285873203275542,-79.74259492273404,-28.382910081861482,73.3747502877742 +-0.4086560946751465,-0.08258525862077791,0.1629616899576662,-79.76486129744605,-28.36218978260438,73.39108108144238 +-0.4087362071390038,-0.08248876461849405,0.1630642953089099,-79.78724294478218,-28.341535151947497,73.40744273339298 +-0.4088131355816115,-0.08239053948585745,0.1631592083516845,-79.80799895184796,-28.320119993274282,73.42308299203465 +-0.4088898417922948,-0.08229228753776535,0.16325403634372487,-79.82881181173913,-28.298759535277302,73.43872712225313 +-0.4089624909785099,-0.08219058625606153,0.16334212567650946,-79.84843007859894,-28.275355745735574,73.45413248828652 +-0.409035076442407,-0.08208834860822832,0.16343021603080024,-79.86804521103423,-28.25198166852119,73.4693959746053 +-0.4091038636354454,-0.08198153697836962,0.1635135852100392,-79.88655565063517,-28.225679149875905,73.48449304628376 +-0.40917245581714756,-0.0818746094980429,0.16359649675659163,-79.90518567634004,-28.19937885636708,73.49957771308762 +-0.4092372223225067,-0.08176419316750749,0.16367498819670576,-79.92305742732003,-28.17012338713651,73.51437302190337 +-0.4093020119960651,-0.08165375011138686,0.16375365289911079,-79.94085227386093,-28.140843788511216,73.52912254891145 +-0.40936328005275247,-0.08154147464395636,0.16382832741102185,-79.95836498160327,-28.108980545366677,73.5436377126485 +-0.4094248388168818,-0.08142865459765221,0.1639034291030574,-79.97575487081141,-28.07701309644904,73.55797626223682 +-0.4094833813305663,-0.08131506119531022,0.1639753524538198,-79.9933499318119,-28.04291849671557,73.5721509932604 +-0.4095418650679394,-0.08120152743188874,0.16404689565343436,-80.01099079596715,-28.008885006048658,73.58637522153028 +-0.4095987297257847,-0.08108755868899284,0.16411619084110982,-80.0291552973548,-27.97344041894465,73.60035589314815 +-0.40965562004410583,-0.0809736582104269,0.16418561203313675,-80.04724327062544,-27.937974880739887,73.61434327068305 +-0.4097122314166914,-0.0808616478720885,0.1642523029650227,-80.06647471341229,-27.90211919436328,73.62817863478078 +-0.4097688920316263,-0.08074918809296794,0.16431950300017942,-80.08557257104262,-27.8662234345602,73.64186720526298 +-0.40982716512100414,-0.0806393867846872,0.16438414766197562,-80.10607483577913,-27.830781961415685,73.65517537348083 +-0.409885209615793,-0.08052956950898241,0.1644486283087176,-80.12656329557083,-27.7953219666335,73.66845608496682 +-0.40994498171869553,-0.08042201139019228,0.1645106092731648,-80.14833291538838,-27.76071292043785,73.68157203833474 +-0.41000465898802996,-0.08031452871146459,0.16457258193801777,-80.17009697789321,-27.726099601245238,73.69472353595236 +-0.41006511410773083,-0.08020739688180945,0.16463108947454674,-80.19286848249585,-27.692155092610673,73.70812768592081 +-0.41012546341558875,-0.0801003328164099,0.16469001075460593,-80.21556360548453,-27.658248537959253,73.72151863573113 +-0.4101856746306438,-0.07999212637161954,0.16474502323979281,-80.2387078446768,-27.6246591248226,73.73552961394228 +-0.4102457168591295,-0.07988389961479993,0.16479995933911487,-80.26190684396602,-27.591007722064155,73.74955097654227 +-0.41030531715776974,-0.07977291631054652,0.16485161517007627,-80.28512063484224,-27.557350522865487,73.7643711241262 +-0.4103646477572076,-0.07966242660714443,0.1649027232469942,-80.308377528213,-27.523640781947343,73.77931392146537 +-0.41042332104638213,-0.07954773216397643,0.1649504141637701,-80.33163202907743,-27.489343077350636,73.7951985649569 +-0.4104819850832216,-0.07943299833897778,0.16499864459489968,-80.35474389761102,-27.455057591936473,73.81097820229311 +-0.410540132635592,-0.0793151774367323,0.16504311290636628,-80.37755176256846,-27.42063172122827,73.82760173954419 +-0.41059819928347463,-0.07919773734787874,0.16508812433618608,-80.40021846119207,-27.38616398031023,73.8441936087901 +-0.41065445245764143,-0.0790784758774079,0.16512549164790336,-80.42154056090365,-27.353167491316473,73.86122721276796 +-0.41071085889276526,-0.0789591698597537,0.16516318750140058,-80.44278998486564,-27.320135829385375,73.87820621688003 +-0.41076308804103534,-0.07883767116993187,0.16518808143899114,-80.4609415374137,-27.289359440069184,73.89530260619769 +-0.4108153342927504,-0.07871574912688922,0.16521297875913396,-80.47908357910508,-27.258562789684806,73.91232796431572 +-0.4108627478193884,-0.07859123691876863,0.16522429431964072,-80.49414254383152,-27.230000326871263,73.92960277436904 +-0.41091053869726346,-0.07846635818468958,0.16523606909304014,-80.50906624542412,-27.201351318679986,73.94680792234458 +-0.4109549382442572,-0.07833849691839752,0.16523770087763218,-80.52228687778803,-27.17475277129063,73.96439062683275 +-0.4109995503548346,-0.07821101463564004,0.16523936466661204,-80.53544178953182,-27.148073060721003,73.9820052705046 +-0.41104176320474195,-0.07808129206799683,0.165234058660235,-80.54795911448733,-27.123133414121426,74.00008984023015 +-0.4110840703690662,-0.07795185544115382,0.1652290823147799,-80.56041411389045,-27.09810409241803,74.01814784607129 +-0.411125189046667,-0.07782051706185017,0.16521995874414697,-80.57262721852837,-27.074146747210552,74.03644957867778 +-0.41116582318591477,-0.07768961013909109,0.16520996460745152,-80.5850317274406,-27.050269372746307,74.05488552940943 +-0.4112056477004775,-0.07755744994720462,0.1651970058143498,-80.59730983670957,-27.026826266155247,74.07335615955026 +-0.41124536856292804,-0.07742559497440778,0.1651836833224188,-80.60959785155615,-27.00341962887536,74.0918177753907 +-0.41128388235234564,-0.07729268091909916,0.1651672317970525,-80.62189513078954,-26.97977996069465,74.11019036682842 +-0.41132241642494355,-0.07715984044892442,0.1651512890683542,-80.63406630929596,-26.956111554088203,74.12855172140436 +-0.4113596074421476,-0.07702550409469973,0.16513168370982234,-80.64620373303333,-26.931357560382313,74.14665008360271 +-0.41139694447771824,-0.07689113264530681,0.1651127810845627,-80.65821665712447,-26.906566514203025,74.16467699424147 +-0.41143356617893984,-0.07675526731099235,0.1650923677616929,-80.67058011563483,-26.879886516089183,74.18237919390847 +-0.4114703801163576,-0.07661896344126548,0.16507260193897016,-80.68283562256994,-26.853117378809475,74.19997355954783 +-0.4115077858990581,-0.07648176511949073,0.16505384245539603,-80.69617427994298,-26.82416407204768,74.21728995675498 +-0.41154517182868117,-0.07634423516115546,0.16503542262550078,-80.70945912729337,-26.7951937947139,74.23456796956636 +-0.41158283163719933,-0.07620499099701195,0.16501716264046631,-80.72369562981325,-26.764106914951466,74.25155423536408 +-0.411620780852886,-0.07606578763081784,0.16499934440447847,-80.73779905572522,-26.732932643922805,74.26852358894715 +-0.4116583870553104,-0.07592406955252452,0.16498106316668232,-80.75249275009344,-26.699946830436804,74.28561929956247 +-0.411695991855026,-0.0757819363391039,0.16496277238146703,-80.76718860562161,-26.666891361567597,74.30265911288369 +-0.4117328587150798,-0.07563699020497844,0.16494498548774644,-80.78286055059527,-26.63255165175215,74.32050119891538 +-0.4117700611893363,-0.07549169516345063,0.16492759169245055,-80.79840195786439,-26.598183551206173,74.33827252125296 +-0.4118065122290412,-0.0753392205875299,0.16491436792585593,-80.81623633101549,-26.562868345071145,74.35858920348348 +-0.41184312542770773,-0.07518681653475567,0.16490101267079826,-80.83407123324018,-26.527539886052057,74.37894855564663 +-0.4118800213574515,-0.0750254413430044,0.16489524698275573,-80.85522869468824,-26.4917009281378,74.40314505854275 +-0.41191681697410976,-0.07486395727798342,0.16488951495360724,-80.8763690222172,-26.455877960217844,74.42724217647665 +-0.41195366672116285,-0.07469899723834875,0.16488951545064645,-80.90000631189405,-26.4202324272592,74.45322794157173 +-0.41199059653933523,-0.07453359795840125,0.16489010923174063,-80.92358481389147,-26.3844855480505,74.47910573821706 +-0.4120267669455204,-0.07436809183428426,0.1648950242232301,-80.94857520542828,-26.349239502518284,74.50525509893625 +-0.41206292527049854,-0.07420267436801649,0.16489963585657139,-80.97356008197512,-26.313963557287977,74.53143627854 +-0.4120981108079308,-0.0740357484367002,0.16490904877448287,-80.99938335373557,-26.279236226786004,74.55789520302267 +-0.412132953977082,-0.07386884768107776,0.16491777682273648,-81.02531690966451,-26.24449039784938,74.58438173356966 +-0.412166500008216,-0.07369654223193672,0.16493199468892894,-81.0523680900049,-26.210103002034664,74.61293320096084 +-0.41219997356446514,-0.07352373317267226,0.16494582432050858,-81.07946802427186,-26.17573115055436,74.64135719804165 +-0.4122320203266468,-0.07333774992738767,0.16496736319742267,-81.1083535272986,-26.141186295501225,74.67456880465394 +-0.4122636339131569,-0.07315129959387431,0.1649885030503559,-81.13735660305873,-26.10659811031731,74.70768914450935 +-0.41229242428552404,-0.07294886969134404,0.16501580197150667,-81.16789775108562,-26.071462281893375,74.74622325386842 +-0.4123210612682156,-0.07274605082389857,0.16504349489296521,-81.19837267655225,-26.03630521963953,74.78462956650273 +-0.4123452594020792,-0.07252932538435106,0.1650752680386796,-81.22928449153554,-26.000331077681864,74.82722021274941 +-0.4123693764649998,-0.07231221761209464,0.16510674556382093,-81.26018930700005,-25.96433867259036,74.86970770497354 +-0.41238937731200576,-0.07208826740565563,0.16514046635104077,-81.29031992373947,-25.927860728018995,74.91338066869713 +-0.4124088529663805,-0.07186470916519999,0.16517395764291587,-81.32045008557867,-25.891357082710112,74.95701465696085 +-0.4124263377472732,-0.07164445812236629,0.16520769959903078,-81.3488086776386,-25.855263643191837,74.99798703045869 +-0.41244344452058956,-0.07142458370153043,0.1652413771821876,-81.37718269207127,-25.81909987499541,75.03893686902501 +-0.41246038340651525,-0.07121181364694185,0.1652758722718245,-81.40415570420413,-25.783962671097143,75.07610398557233 +-0.4124772222429637,-0.07099937845368934,0.1653110577404986,-81.43100800939132,-25.748738373103873,75.11318552368972 +-0.4124946329304548,-0.07079359268101432,0.16534767734934722,-81.45717917268185,-25.714907447175484,75.14711442403798 +-0.41251218177942806,-0.07058741550800701,0.16538504537100063,-81.4831760544739,-25.680998501405025,75.18088960845665 +-0.41253000430232095,-0.07038587454109352,0.16542433369637244,-81.50851205824884,-25.648753767864054,75.21235554884598 +-0.4125475708136733,-0.07018427004512506,0.16546398379755262,-81.5337969841,-25.616386281024838,75.2437205262117 +-0.41256433350300503,-0.06998348482952876,0.16550564896787967,-81.55854170909124,-25.58544564581574,75.27410771967821 +-0.41258088863547093,-0.06978272175465275,0.1655477021753515,-81.58322887135306,-25.554390663188354,75.30444687726647 +-0.4125952733340033,-0.0695748611620387,0.16559481973332152,-81.60845770453216,-25.52388441632871,75.33656635799571 +-0.4126095296237185,-0.06936702089896286,0.16564203270035044,-81.63362846743232,-25.493261749080638,75.3686371655437 +-0.412621049868862,-0.06914175213175516,0.16569860543323994,-81.66109412158193,-25.461720491703883,75.40609131951814 +-0.412632228973833,-0.06891663901126066,0.16575504006781752,-81.68862836167764,-25.43013052521581,75.44360182133795 +-0.41264032185766286,-0.0686698923661267,0.16582353778157446,-81.71896525973217,-25.396217183742564,75.48753326713852 +-0.41264824440813225,-0.06842312178865577,0.16589265624242072,-81.7491964511897,-25.362259350556208,75.53132499308226 +-0.4126521415522821,-0.06815680112953645,0.16597229475332256,-81.7819395624226,-25.325096192555794,75.58040398315003 +-0.41265569610182107,-0.06789048288183036,0.16605200468355363,-81.81462746631834,-25.28787909623066,75.62935229533636 +-0.41265610519842344,-0.06760873614842308,0.16614079198932777,-81.84899467094608,-25.247259180688413,75.68177194681229 +-0.4126561903732048,-0.06732742183215917,0.16622983272248018,-81.88331052097423,-25.20657407472517,75.73412134155768 +-0.41265350827449143,-0.06703481050642822,0.1663255256146552,-81.91832341691135,-25.162430526882904,75.78821666877201 +-0.4126502853980089,-0.06674195985707726,0.16642063234214982,-81.95347104509928,-25.118249330335196,75.84226273791248 +-0.4126445726251976,-0.06644142940776968,0.1665193767715001,-81.9883646256525,-25.070746004511978,75.89696685000992 +-0.4126382948597278,-0.06614106938588064,0.1666184331910563,-82.02320993415668,-25.023122470149378,75.9515991164604 +-0.4126301132245232,-0.0658346260445947,0.16671874955152297,-82.05765500664161,-24.972609870097635,76.0062461658197 +-0.4126213178493068,-0.0655287710359573,0.16681938585355585,-82.09204587420177,-24.921977658184655,76.0608738975849 +-0.4126123302120781,-0.06521856736084888,0.16692272515804732,-82.1265763171692,-24.869103388346524,76.11531924644744 +-0.41260273795001756,-0.0649085490996926,0.16702591273620748,-82.16116596057644,-24.81612234405265,76.16973325882971 +-0.4125942657299032,-0.06459641570619981,0.16713487781099842,-82.19684266748894,-24.7619133328878,76.22418005707395 +-0.4125853865782978,-0.06428393354499913,0.16724348907410988,-82.23251392726937,-24.707636694612603,76.27843917415643 +-0.41257696411891875,-0.06397094018142435,0.16735550746695207,-82.26880899908947,-24.65332380403574,76.33255251980607 +-0.41256780220796774,-0.063658049740327,0.16746722311248907,-82.30511200440061,-24.598827844864545,76.38656021433712 +-0.41255691291679764,-0.06334550322528965,0.16757793760002315,-82.34014924535956,-24.545311826215585,76.4396546505903 +-0.4125451540826387,-0.063033174280307,0.16768818158026533,-82.37530821377604,-24.491692064637093,76.49274145186233 +-0.4125310181884745,-0.06272328421900349,0.16779512672755195,-82.40864732782497,-24.440000684357564,76.54428020327926 +-0.41251623625356265,-0.062413600514650405,0.16790187749500607,-82.44204791181824,-24.388266659258374,76.59579060934034 +-0.4125014681233496,-0.06210987715089575,0.1680070667716095,-82.47465050120397,-24.33958122814575,76.64536374636445 +-0.4124862915952673,-0.06180620693377367,0.1681123476563191,-82.5071853246055,-24.290719898485957,76.69480471795836 +-0.4124738003552332,-0.06151026164729151,0.1682189995787815,-82.54021410404489,-24.245700332730028,76.7425468637663 +-0.4124607603250604,-0.06121446673062438,0.16832553608217085,-82.57329955537327,-24.200524249481266,76.7902649250745 +-0.41245220445306596,-0.06092504084454363,0.16843709585003105,-82.6082566489408,-24.159037654588886,76.83716947510256 +-0.41244314915833513,-0.06063627389995216,0.16854864599774555,-82.64320846842499,-24.117452259766882,76.88414491783182 +-0.41243913956986,-0.06035280653417262,0.16866704347126243,-82.68063729796273,-24.078960703860936,76.93079997850808 +-0.41243468307934494,-0.060069465971350086,0.16878506816951275,-82.7181243461521,-24.04030438034377,76.97743924482803 +-0.41243351408629286,-0.05979204808954633,0.16890719365924467,-82.75706522798717,-24.003845715643475,77.023492581393 +-0.4124318659173315,-0.05951475724319361,0.1690293056245721,-82.79600834542164,-23.967273713938997,77.06950690559444 +-0.4124323762583575,-0.05924167123592745,0.16915430836920187,-82.83563724646332,-23.931787716722493,77.11474546260129 +-0.4124321871616693,-0.05896913537303468,0.16927910030694684,-82.87526451595518,-23.896243497020247,77.1599886329907 +-0.41243306841147453,-0.05869935348494182,0.1694079406656444,-82.91582477451352,-23.86092107936809,77.20501101713876 +-0.4124337982976043,-0.058429245934203095,0.16953672928247723,-82.95637967347822,-23.825483256519732,77.24993436152127 +-0.41243283530372266,-0.05815951150806197,0.16966715469369117,-82.99652961983321,-23.789334011417413,77.29476015147556 +-0.41243148910660626,-0.057889783379369106,0.16979731341259138,-83.036671984067,-23.75306368593931,77.33948079340614 +-0.41242570319891647,-0.05761758833493557,0.16992319372176082,-83.07437542791874,-23.715450729613618,77.38381681853538 +-0.4124197803485836,-0.0573451639838852,0.1700494050686979,-83.11200682489255,-23.677732724861674,77.4280761420178 +-0.4124086830435781,-0.05706935462750633,0.1701682486538291,-83.14677467938807,-23.63823712712749,77.47194478380996 +-0.4123973837081809,-0.05679404771815677,0.17028747320809628,-83.18142095688368,-23.598633624696674,77.51577821882991 +-0.4123826625087412,-0.05651515386938491,0.17040053802118443,-83.2136351788941,-23.55736239698181,77.55903746239808 +-0.41236783431455826,-0.05623636443797116,0.17051400863892674,-83.24572041270848,-23.51598952822654,77.60221016871358 +-0.4123500551605975,-0.05595538850384817,0.17062180392405174,-83.27581942007942,-23.47312305368158,77.64491897023747 +-0.4123321799281615,-0.055674510483818926,0.17073000182821282,-83.30578269515686,-23.430220012994496,77.68752703587325 +-0.4123118153896027,-0.05539622265603117,0.17083218139812714,-83.33303106429003,-23.38653366418193,77.72792474463301 +-0.41229111893103415,-0.055118060237652346,0.17093442499920336,-83.36021229967582,-23.342825036845632,77.76824573269171 +-0.4122678124640695,-0.05485094008970684,0.17102917847011903,-83.3836999472705,-23.299408106406705,77.80347837867987 +-0.4122438637685476,-0.054584406275170916,0.1711235941495353,-83.40724141550609,-23.255934566645823,77.83875790176394 +-0.4122171966188757,-0.054328792148128933,0.1712124905750763,-83.42726726554565,-23.212789422380375,77.86856955731781 +-0.4121901637699129,-0.05407380364053486,0.1713008956459036,-83.44735899667269,-23.169606245305882,77.89849149744941 +-0.41215965840891455,-0.05382494587489444,0.17138439702486882,-83.46447977108181,-23.125883322486292,77.92459928322685 +-0.4121290075599666,-0.053576192659228354,0.17146804673263483,-83.48159321142548,-23.08218234418607,77.9506754271157 +-0.4120944186528134,-0.05332942803831162,0.17154562898006423,-83.49564196911815,-23.03734662894439,77.9737817146564 +-0.41205958096071116,-0.05308287404174415,0.17162315402981262,-83.50968640321166,-22.99248776614451,77.99692120976634 +-0.4120220185722163,-0.05283132310463134,0.17169700478636493,-83.52188046099427,-22.945692161924583,78.01952478764662 +-0.4119839195283922,-0.05257985044173413,0.17177045481815478,-83.53413795608567,-22.898869969376204,78.04207518864773 +-0.4119456217639031,-0.05231338122282557,0.1718457772414162,-83.54683702827256,-22.849376020914924,78.06766865628066 +-0.4119069136479703,-0.052047087893551086,0.1719208843633283,-83.55951996967819,-22.79985550969948,78.09323831270508 +-0.4118691668653278,-0.051763525295152955,0.17200051853272455,-83.57426640232613,-22.74768389738074,78.1236302119811 +-0.4118314005859216,-0.05147958847913093,0.17208006744154838,-83.58899056101248,-22.695530073897512,78.15387912418548 +-0.41179566466494555,-0.05118051631914319,0.17216520240655117,-83.60604788700593,-22.641549036103847,78.18867138264157 +-0.41175919668717187,-0.0508820754052711,0.17225033322113179,-83.6231040587626,-22.587521332376593,78.22348617570738 +-0.41172470765897856,-0.05057082728986496,0.1723404590378508,-83.6427500499476,-22.532484879254493,78.26256645994545 +-0.41168999027385333,-0.0502600377316901,0.17243129886247763,-83.66221024769604,-22.47738066746058,78.30153898227312 +-0.4116564358343329,-0.04993889012028096,0.17252676214430557,-83.68416376949088,-22.421874745118085,78.34419460830993 +-0.41162259914209726,-0.049617919399995734,0.17262244244327304,-83.70605500042149,-22.36630238415128,78.38679503773068 +-0.4115902400161682,-0.04928844416433135,0.17272450019216148,-83.73062217905395,-22.31060263559248,78.43258154085193 +-0.4115575740675618,-0.048959140035679714,0.1728263930143052,-83.75518652816545,-22.254765217674773,78.47832978400949 +-0.4115276007436408,-0.04862335849452679,0.17293757483802835,-83.78265992281892,-22.198934280677324,78.52663852045795 +-0.4114967994891676,-0.04828752759003899,0.17304788541541682,-83.81031350783809,-22.142959243384244,78.57496983931745 +-0.4114682537601956,-0.04794555331483057,0.17316626418280934,-83.8403862232695,-22.086785493546426,78.62528512193279 +-0.41143911979983594,-0.04760348466776235,0.17328453109655523,-83.87046072911919,-22.03045170627529,78.67555060662163 +-0.41141083228943665,-0.04725372919005852,0.17340737537920264,-83.90179116466199,-21.973450091622656,78.72779757471152 +-0.4113817368955983,-0.04690423951612955,0.1735295295202718,-83.93317688508353,-21.91639078280729,78.78000383327085 +-0.4113525896865866,-0.04654616521650413,0.17365503344999939,-83.9652347541022,-21.858298098702065,78.83428468674417 +-0.4113229232911796,-0.04618791170412104,0.17378022133283746,-83.99727419466507,-21.800140900842255,78.88844371000543 +-0.4112932941087241,-0.04582380116173235,0.17390808461625992,-84.03003413705423,-21.74087025093551,78.94412274474489 +-0.41126295574381133,-0.04545954533260769,0.17403626115087148,-84.06272939000874,-21.68147439755122,78.999659734415 +-0.41123395643165767,-0.045092887359532416,0.17416937899293894,-84.09613230572737,-21.621038295459318,79.05560238673911 +-0.41120398141631587,-0.04472653550026865,0.17430171107325798,-84.12965121811234,-21.560413831638943,79.11152996584258 +-0.41117547858249237,-0.04436027051532552,0.17443842955413427,-84.16410952230362,-21.498779153614397,79.16724056617349 +-0.4111459975531321,-0.04399472234455458,0.17457480800027475,-84.19856860439972,-21.43701084165082,79.22294888158532 +-0.411117683427706,-0.04363150062918141,0.174714273167257,-84.23321962446012,-21.37409598771767,79.27782689459966 +-0.4110884567753232,-0.043268968139136665,0.17485354029972397,-84.26792959548563,-21.311045178178777,79.33271536569188 +-0.41105984800390666,-0.04291053270107944,0.17499427788344424,-84.30263705380331,-21.24690406876433,79.3864093272213 +-0.4110307518524481,-0.04255229573727084,0.1751348737172158,-84.3373291932477,-21.182687667985814,79.44002280584536 +-0.4110018440317594,-0.04219914659277757,0.17527568134412105,-84.3716667942076,-21.117509809103804,79.49247889548735 +-0.4109722830718652,-0.041846221128666115,0.17541609414658124,-84.40603485575879,-21.05226121275015,79.54486968244179 +-0.4109422398457875,-0.04149754849663771,0.17555433663129189,-84.4395467048236,-20.98601058742508,79.59626635166681 +-0.410911594644324,-0.041149192069480964,0.1756925940502661,-84.47298398484403,-20.919702162405216,79.64762204093898 +-0.4108806583657433,-0.0408045344875502,0.17582858365012627,-84.50536417647129,-20.852652730095834,79.6979549173296 +-0.4108490452551835,-0.040460203522950614,0.17596448328448827,-84.53773581861357,-20.78543366722531,79.74827644446658 +-0.4108205909971712,-0.04012278244070427,0.1760997211136607,-84.57072836767307,-20.718308021406976,79.79733927624943 +-0.41079174294810505,-0.03978512970004357,0.1762356256350794,-84.60357675311216,-20.651068643193803,79.84622571356296 +-0.4107716323264893,-0.039458309186339066,0.1763752669343463,-84.6395626737511,-20.584910604646566,79.89332153188901 +-0.41075113483179787,-0.039131618434695814,0.176515644871548,-84.6753926794855,-20.518634792314465,79.94028195339952 +-0.41074127517646586,-0.03881704379029726,0.17666139421132787,-84.71481171210247,-20.454154564094186,79.98529804867177 +-0.4107305488218066,-0.038503173639993185,0.17680684033810776,-84.75426381632067,-20.389548947859236,80.03035723395708 +-0.4107288768497675,-0.03820260917682176,0.17695551377567947,-84.79640904004809,-20.32752830304164,80.07343191072768 +-0.410726791966992,-0.03790183016210406,0.17710396640413384,-84.83852297227926,-20.265327106861506,80.11642121067099 +-0.4107324270190887,-0.03761859316960155,0.17725280272418045,-84.88183748813199,-20.206605068095485,80.15665147002703 +-0.41073731067174846,-0.03733560302761525,0.17740100961233599,-84.92524568879126,-20.147701985982433,80.19689875272844 +-0.4107480834096007,-0.03707100601276907,0.17754562168959004,-84.96837327839938,-20.09241855624543,80.23342247073195 +-0.4107583188632037,-0.03680700656554694,0.17769030328655677,-85.01147759013642,-20.03697070442143,80.2699859735579 +-0.41077161286569774,-0.03655960448029913,0.17782793331404778,-85.05287111299573,-19.98459839377686,80.30297447460974 +-0.41078445101437644,-0.03631218861602489,0.1779652280165408,-85.09430848718323,-19.93206082826689,80.33586051251858 +-0.41079753075843783,-0.03607866884667218,0.17809250749242014,-85.1326203657747,-19.881803557205586,80.36552747317769 +-0.4108102098026558,-0.03584551506907366,0.17821949332842812,-85.17096284923868,-19.8315118682292,80.39514128870181 +-0.41082186525445696,-0.035623436660337036,0.17833598442238907,-85.20574907878819,-19.78268436971085,80.42199144452226 +-0.41083304469641224,-0.03540175740019297,0.1784519478451876,-85.24057248336463,-19.733777993369152,80.44880919232648 +-0.41084256365473204,-0.03518909876749795,0.1785576628836238,-85.27192433032583,-19.68587013684264,80.47345944805156 +-0.41085180418658523,-0.034976499759315625,0.1786634250937948,-85.30325481357903,-19.637961398248653,80.49805814148473 +-0.4108586132279646,-0.034772981241528424,0.17875911901130107,-85.33105967591345,-19.590991638129815,80.5207852015174 +-0.410865435766367,-0.03456953316594311,0.17885519662019655,-85.3587809704507,-19.543980707385646,80.54349741936171 +-0.41086965083826965,-0.03437398556218031,0.17894174611907862,-85.38300409499374,-19.497847335840028,80.5645401254827 +-0.4108736165846768,-0.03417848860377647,0.17902788238524625,-85.40731973115533,-19.451724630941424,80.58557982156536 +-0.4108752013097131,-0.033989782251146974,0.17910634326227032,-85.42838687219741,-19.406353029529193,80.60533573654261 +-0.410876618516559,-0.0338012031500771,0.17918484163568224,-85.4494352192276,-19.360951091841148,80.62511573760524 +-0.4108741137435132,-0.033617505179359616,0.17925665619068454,-85.46755338786477,-19.31614354034801,80.64420714054263 +-0.41087142983963504,-0.03343393774107157,0.1793288780145462,-85.48560050389507,-19.271258425008043,80.6633082304912 +-0.4108635149188382,-0.03324964976340296,0.17939710214346255,-85.50117490907184,-19.22631750070876,80.68279084454429 +-0.4108553133141392,-0.03306545150109542,0.17946562829344734,-85.5167430056694,-19.18129320577437,80.70226138626829 +-0.4108425506648814,-0.03287798622936584,0.17953458466645317,-85.53100206392739,-19.135980839639707,80.72291332040001 +-0.41082940081222274,-0.03269061878104336,0.17960323383734572,-85.54531163757984,-19.090583529819177,80.74356483705124 +-0.41081395568538936,-0.03250267548736861,0.17967426045901422,-85.55901320002556,-19.045634926394346,80.76529552249086 +-0.41079834798517056,-0.032314280171719785,0.17974484567609422,-85.57277334330729,-19.000708625561305,80.7869033870501 +-0.41078160601780916,-0.03212801796112781,0.17981836699048243,-85.58649418289677,-18.956793621834084,80.80932281281294 +-0.4107648101577326,-0.031941687257114944,0.1798916789428732,-85.60027391028721,-18.912900409673583,80.83167789566431 +-0.41074884396572964,-0.031757270404451816,0.17996918732305203,-85.61466981591478,-18.87026726143556,80.85463963701086 +-0.4107325803591131,-0.03157292952438533,0.18004654446641108,-85.62912595097093,-18.8275459766051,80.87759877277924 +-0.41071825593965083,-0.03138941563813366,0.18012922199535975,-85.64462935689055,-18.78570374264656,80.90120711953014 +-0.410703813945738,-0.031205947707867554,0.18021195016870323,-85.66007247748992,-18.743837492758054,80.92478160121784 +-0.4106918499832141,-0.03102222936152669,0.1803004801850458,-85.67687982332342,-18.702318431655364,80.94913287642073 +-0.41067982320834245,-0.030838235141277356,0.18038909733260514,-85.69362293248759,-18.66077666067908,80.97344566210309 +-0.41067132110899485,-0.03065530347229161,0.18048374211589202,-85.71200982886204,-18.620185974697158,80.99823791786515 +-0.41066261452406216,-0.03047242516059253,0.18057839841228598,-85.73038838137182,-18.57950242799711,81.0230079899778 +-0.41065859247138475,-0.030291457795549308,0.18067932372048673,-85.7506998979202,-18.539983925980675,81.04810139830691 +-0.41065403586483407,-0.030110517375152093,0.18077986713670613,-85.77111848547972,-18.500413905422914,81.07314191242622 +-0.41065340017129565,-0.0299294198294282,0.18088628835555362,-85.79332714172124,-18.46101332158481,81.09846805109416 +-0.4106524494991385,-0.02974799587310205,0.1809925516006729,-85.81551697420724,-18.421627122490026,81.1237002654903 +-0.41065334336531367,-0.029565165876987924,0.1811023000935496,-85.83908361927733,-18.381514015161116,81.149376353877 +-0.4106540979633191,-0.02938195617684876,0.18121262864776372,-85.86259219606373,-18.341361383874965,81.17494689875616 +-0.41065544144631694,-0.029196717823124024,0.18132507978582232,-85.88700649697513,-18.300205390187767,81.20100463988187 +-0.41065653752358017,-0.029011040417906454,0.18143755355410432,-85.91140932784081,-18.25894001260622,81.22692001829601 +-0.4106572751960521,-0.028823795391428854,0.1815513528972603,-85.93636802045033,-18.216463843755363,81.25316774136735 +-0.4106578989293599,-0.02863624903599525,0.18166530860349653,-85.96124802059065,-18.174006141963922,81.27934989854265 +-0.41065696307017274,-0.028446733297289944,0.1817793926830368,-85.98608996307199,-18.13005247691824,81.30563938665524 +-0.4106556611817366,-0.02825780034450974,0.18189342315816326,-86.01097920442507,-18.086047409926948,81.33202662334668 +-0.41065140489201746,-0.028065130416147645,0.18200661777912086,-86.03519216717328,-18.039952926871784,81.35837396366342 +-0.41064664233943154,-0.027873061622028808,0.182119930148476,-86.05938889188698,-17.9937568238979,81.38478861717759 +-0.41063717947212514,-0.027677929427774188,0.18223027181394635,-86.08224417405906,-17.945376484794394,81.4110859312029 +-0.4106274648848006,-0.027482441462853502,0.1823405984347826,-86.10509430681445,-17.89694685596266,81.43728690474344 +-0.41061238135447276,-0.02728549049350032,0.18244665078445932,-86.12606226430958,-17.846374129281045,81.4631362832794 +-0.41059698814204487,-0.027088628360919027,0.18255222490660597,-86.14713751047152,-17.795686318044655,81.48898860446273 +-0.41057363834799077,-0.026889389158719065,0.18265218117265125,-86.16527814706336,-17.742533213309848,81.51415255287486 +-0.4105500871737904,-0.026690211551807036,0.18275176241593774,-86.18346022694689,-17.689335203446085,81.5392918043118 +-0.41051368896634227,-0.02648667146201654,0.18284258700750353,-86.19742229424702,-17.633198158726316,81.56362745363057 +-0.4104769804700988,-0.026283676095596585,0.18293334631998592,-86.21142147406317,-17.57702601246355,81.58800946958554 +-0.41042715184252887,-0.02607693681973325,0.18301468847045996,-86.22102380047832,-17.518469954990938,81.61162760673237 +-0.410377175346357,-0.025869984722869326,0.18309601532617806,-86.23061368754415,-17.45989932802006,81.6352210490853 +-0.41031734967151734,-0.025662877686857544,0.18316823299871252,-86.23694381155131,-17.400482501226662,81.65819135180024 +-0.41025750196431,-0.025455450152799194,0.18324104516160786,-86.24316208061353,-17.341010306054322,81.68105736593661 +-0.41018732490134097,-0.02524714160358308,0.18330456316087268,-86.24606195642191,-17.2815304677605,81.70399277479002 +-0.41011684640278073,-0.0250394017323899,0.18336753111429674,-86.24907949234955,-17.22203294482124,81.72700796890855 +-0.4100370270708106,-0.02482816321302725,0.18342455174184652,-86.24945464186231,-17.163001281407105,81.75158858721751 +-0.4099568901269217,-0.024617237392191973,0.1834808637562205,-86.24989135285632,-17.10402702447017,81.7762454200546 +-0.40987708402826184,-0.024403807579238435,0.18353797518307136,-86.25169896947786,-17.046740240590392,81.80388041420889 +-0.4097970721980206,-0.024190173727846737,0.1835954272815321,-86.25344154935266,-16.989517361929767,81.83144093914264 +-0.40972366505031144,-0.023975715178756317,0.18365852304261193,-86.2590838459404,-16.934905652588483,81.86229621142992 +-0.40965021215881936,-0.023761686290534233,0.18372190199831082,-86.26465902693243,-16.88028684608639,81.89311938390192 +-0.409583600738953,-0.02354709754612315,0.18379144300077263,-86.27422405344397,-16.82813967232948,81.92673960931681 +-0.40951697178525304,-0.02333211239543579,0.1838608301191147,-86.28379052399553,-16.776020924700017,81.96022336958421 +-0.4094571750205147,-0.023117731782913806,0.183936480225804,-86.29676405077542,-16.72562071503144,81.99580368691272 +-0.4093971691851189,-0.022902994838082905,0.18401172993161785,-86.3097844675371,-16.67512007772363,82.03126243706106 +-0.40934331574386884,-0.0226891123767528,0.18409106437372855,-86.32550306998664,-16.62531367017268,82.06780987896192 +-0.40928938873660914,-0.02247532237866473,0.18417065115232145,-86.341160354861,-16.57552883411451,82.1043113985795 +-0.40924118164614437,-0.022263178403462154,0.18425221199971642,-86.35838424969373,-16.525526306442345,82.14076623912617 +-0.4091926083291936,-0.022051606298970093,0.1843332452430626,-86.37571796924611,-16.475519933030764,82.1772843680986 +-0.40914965861602426,-0.021844214655106824,0.18441341575669848,-86.3938341813497,-16.42546931949423,82.21266578716646 +-0.40910633635045085,-0.02163687453956291,0.18449346151537638,-86.41199950497442,-16.375358066503836,82.24797083101703 +-0.4090641455233126,-0.021436089258432614,0.18456736091438755,-86.4289319832544,-16.32536824798377,82.28094691875893 +-0.4090216851956863,-0.021235719588334347,0.18464125313632868,-86.44584800695365,-16.27539027571495,82.31388298568935 +-0.40897099370382906,-0.021042284048301295,0.1847025701791225,-86.45812747461224,-16.225614655914487,82.34363593859098 +-0.40892010753295466,-0.020848440500834814,0.18476385396198894,-86.47039701022538,-16.17580596640307,82.37324051073423 +-0.4088585892230753,-0.02066397896575116,0.1848106274481664,-86.47765707062135,-16.127409913333754,82.39961560410434 +-0.4087972175623524,-0.02047916465983915,0.18485776265120926,-86.48479790157116,-16.07901724757435,82.42589711444548 +-0.4087300825050181,-0.020305267547079765,0.18489516396662822,-86.48866999267366,-16.033303829194665,82.44928670575325 +-0.40866256729312556,-0.020131448257249954,0.1849317936179668,-86.49266437388883,-15.987618165499038,82.47263825749683 +-0.4085931511659191,-0.019967416463533456,0.1849627701411171,-86.49496498027789,-15.945156892568544,82.49385482980469 +-0.40852335835240705,-0.019803577841296535,0.1849933546600321,-86.4973316317095,-15.902740776890935,82.51508330743967 +-0.40845361252754486,-0.019647629304626546,0.18502026217397605,-86.49926216811917,-15.863546588201027,82.53519639044995 +-0.40838362014097807,-0.019491833819875112,0.18504743000406995,-86.50119264583225,-15.82429075077801,82.5553057335011 +-0.40831504605808444,-0.01934132426528609,0.1850726930836137,-86.5033021609332,-15.7876572156894,82.57501929042981 +-0.4082460246499084,-0.019191339963820095,0.18509750262211924,-86.50552812123514,-15.75105768033522,82.59476233020735 +-0.40818360309497925,-0.01904413331088539,0.18512504829437482,-86.50935558873944,-15.71575100460694,82.6148987468581 +-0.4081210738908667,-0.01889652446345537,0.18515213808746186,-86.51324938796878,-15.680479242153531,82.63493310437978 +-0.40807325983769405,-0.018749921002366846,0.18518573460460283,-86.5211020557652,-15.645372829939602,82.65609463614895 +-0.4080255463535338,-0.018603423335936453,0.18521960677286045,-86.52889973605893,-15.610263306797442,82.67728721191365 +-0.4079945899626456,-0.018456006525000623,0.18525942201674186,-86.54091050842945,-15.574101594527047,82.69934087163011 +-0.40796379120661724,-0.01830894703362561,0.18530005726224108,-86.55273591371095,-15.538005899884642,82.72137713148611 +-0.40794594059875944,-0.018160025373723743,0.1853443535765922,-86.56715330962668,-15.499709993976515,82.7439674667386 +-0.40792772982395276,-0.018011637107603132,0.18538835796317352,-86.58162011179527,-15.461381256733365,82.76661296941603 +-0.407918975325533,-0.017860330923223713,0.1854350219133002,-86.5970066416045,-15.420204163674194,82.78981157084752 +-0.4079098515367314,-0.017709129976788876,0.18548135649694444,-86.61244639661653,-15.378989181389496,82.8129988968696 +-0.4079080361166708,-0.017556210976729048,0.18552942751488577,-86.62866870971915,-15.33489758999536,82.836125238052 +-0.4079059530205357,-0.017403472442692067,0.18557777227475158,-86.6448843332071,-15.290778899577578,82.85929008775761 +-0.4079112424377544,-0.017251938908032574,0.18563011889430164,-86.66237798853724,-15.244500642972195,82.88149561918152 +-0.40791639887068026,-0.01710080481572418,0.1856825318736358,-86.6798540686763,-15.198193846859414,82.90372526770543 +-0.4079276380846131,-0.016952520633044546,0.1857392300372139,-86.69870388028845,-15.15069558168854,82.92461330183367 +-0.4079384337275792,-0.016804842743888507,0.1857955653342168,-86.71765473102549,-15.10309302543756,82.94561994614372 +-0.407953819904017,-0.016660964134552064,0.18585684261924304,-86.73785520283371,-15.055076860879273,82.96549929251194 +-0.407969304574471,-0.016516997485218315,0.18591891287952422,-86.75791480247965,-15.006995630578471,82.98530570006658 +-0.4079872073810049,-0.016376515782657933,0.18598480964515968,-86.77934506522008,-14.958697269996891,83.00451531810363 +-0.4080049732841271,-0.016236053853357732,0.18605116366572905,-86.80069547242994,-14.9103797585035,83.02367298435585 +-0.40802238637593136,-0.016097935328047833,0.18611984030321624,-86.8221462626006,-14.861679920478048,83.04254972428285 +-0.4080396820335096,-0.015959911489415737,0.1861885639452432,-86.843578607148,-14.81295310615879,83.06144803224214 +-0.40805513818082984,-0.015825959196978268,0.18625505183105448,-86.86405538225895,-14.764295820342475,83.0796118979248 +-0.4080706619137439,-0.015692363064460965,0.18632189305348987,-86.88446096556699,-14.715562711096224,83.09779201054988 +-0.4080849384391416,-0.015567322148464666,0.18638340319008637,-86.90316720598527,-14.668013344913607,83.11413442281305 +-0.4080991089969258,-0.015442276300604824,0.18644494583441262,-86.9218611158742,-14.62038297637416,83.1304464692552 +-0.40811211485252546,-0.015328383113275196,0.18649853776797115,-86.93856225603928,-14.574283700492474,83.14438301302783 +-0.4081250129100545,-0.015214606120219007,0.18655253800428606,-86.95519731149687,-14.528178168003713,83.1583396823973 +-0.40813579844416137,-0.015111778487613234,0.18659671154850813,-86.9693162511905,-14.483308585953491,83.1697037022123 +-0.40814662143800207,-0.0150089223352034,0.1866409958810106,-86.98336534153879,-14.438436578944197,83.18102991865729 +-0.40815371321311444,-0.014916440506802506,0.1866724559676521,-86.99410798983946,-14.394445626670263,83.18949231885486 +-0.4081608603745276,-0.014824326882375019,0.18670405646760738,-87.00478048902302,-14.350513573920217,83.19797049506614 +-0.4081634240775445,-0.01474163694747728,0.18672192949637353,-87.01162836705802,-14.30695398218526,83.20350011861593 +-0.40816603281348574,-0.014659018053238715,0.18673985964412831,-87.01842353102094,-14.263401850941252,83.2090617818441 +-0.4081639367444341,-0.014583896519625592,0.18674449230582135,-87.02186818192345,-14.219538724110178,83.21193786792313 +-0.4081618772407898,-0.014509180551999484,0.1867491856688495,-87.02525786146786,-14.175684047042761,83.21486071016942 +-0.4081558182384976,-0.014440380660712682,0.18674411319866513,-87.02596582696769,-14.131044334433255,83.21575115170374 +-0.40815000832834636,-0.014370999850393126,0.18673901627467454,-87.02666428933715,-14.0864027623343,83.2165209109359 +-0.40814077024280004,-0.014306896740586494,0.1867272028068468,-87.02584333585261,-14.041024787720353,83.21599526677403 +-0.4081316120953512,-0.014242780490238527,0.1867150548124519,-87.02503218238395,-13.995588616790686,83.21548341466551 +-0.40812051520860304,-0.014181810912749518,0.18669959325738833,-87.02357142883022,-13.94950586222125,83.21398600111611 +-0.40810941989246696,-0.014120445141063948,0.18668454829281955,-87.02204566715541,-13.903436159114994,83.21242448953441 +-0.40809766595056945,-0.014060362195591966,0.18666897962427384,-87.02069821401196,-13.856663254696493,83.21048037121867 +-0.40808569902502156,-0.014000349572740184,0.1866531142156431,-87.01940197130872,-13.80982316683623,83.20855403203456 +-0.40807400818431483,-0.01393964033078339,0.186640013410337,-87.01881299683532,-13.762456848637356,83.20682028064394 +-0.408062119677844,-0.013878587576805532,0.18662660400862247,-87.0182758040828,-13.715080762823062,83.20504218489785 +-0.4080513545326909,-0.01381530033192127,0.18661764200774766,-87.01890571599488,-13.667125803442152,83.20390193559282 +-0.4080405589523298,-0.013752012356087875,0.18660863636833777,-87.01953851016415,-13.619169839914928,83.20276012616229 +-0.40803169654647087,-0.013685411999184563,0.18660509393238853,-87.02162543386919,-13.570546887966255,83.20255932525424 +-0.4080228475653005,-0.013618703670292887,0.18660198479729187,-87.02360365041278,-13.521940574831874,83.2022738971774 +-0.408016727554239,-0.013548998724195155,0.18660483321070695,-87.02703960743249,-13.472430670678468,83.20292540788242 +-0.4080107316658169,-0.013479264930562035,0.18660792446255764,-87.03046908766991,-13.422863055850263,83.20357477275134 +-0.4080097326946086,-0.013408830777561359,0.18661852862094347,-87.03557926562839,-13.372677686857635,83.20462229748568 +-0.4080086114629923,-0.013338340719140515,0.1866294637776199,-87.04067808892736,-13.322431777196428,83.20560739164516 +-0.40801371620203486,-0.013269960354646254,0.18664739986022863,-87.0476121571073,-13.271828531908323,83.20671746796879 +-0.40801878912383105,-0.013201175659466297,0.18666571728479273,-87.05448394163676,-13.221233609998526,83.20774397986604 +-0.4080278924103363,-0.013134004855901937,0.1866875360121275,-87.0618154164455,-13.17019559440916,83.20916146969871 +-0.408037211507759,-0.01306678071831803,0.18670968904192525,-87.06908106022125,-13.119165943103829,83.21056054912904 +-0.4080491600320537,-0.01300208418476649,0.18673260029642186,-87.07600494755627,-13.068057046730761,83.21279516222893 +-0.4080614164080226,-0.012937256418898382,0.18675595592478603,-87.0828029033182,-13.016969221341599,83.21498146308993 +-0.40807721712240863,-0.012875211426580754,0.18678075671835945,-87.0896560909145,-12.966344202313051,83.21801667548345 +-0.4080933022031864,-0.012813531181147628,0.18680596924342888,-87.09638686511303,-12.915798576093765,83.22111293022179 +-0.4081140045865206,-0.012754069781447705,0.18683416698723254,-87.10374771393857,-12.865782075175172,83.22523573123014 +-0.4081346195550484,-0.012695104794091916,0.18686232707722977,-87.1111492348004,-12.815813854380483,83.22945691470997 +-0.40815971938727924,-0.012637120276594804,0.18689453294975658,-87.11931022642896,-12.766439704420636,83.23506580536747 +-0.4081847400403342,-0.012579242284191022,0.18692626985559502,-87.12758032653183,-12.717100073375988,83.24073739517443 +-0.40821300102987756,-0.012520844667083433,0.18696283905685532,-87.13694483545036,-12.668044023148461,83.24821880166023 +-0.4082415166232448,-0.012461965287986612,0.18699976543085078,-87.14620176162086,-12.61900275107547,83.25560713470011 +-0.4082739145615257,-0.012401764745724173,0.18704362700732124,-87.15763450879447,-12.570469286090452,83.26466738296482 +-0.40830650592643414,-0.012341497432506995,0.18708741257574607,-87.16906745725001,-12.521870498004484,83.27371407336112 +-0.4083460847639402,-0.012282039237976453,0.18714106377639256,-87.18392546446573,-12.47448378818747,83.28396180279483 +-0.40838577458804964,-0.012222630737420873,0.18719448552205087,-87.19876917058905,-12.427035010568737,83.29424768867533 +-0.40843215252275916,-0.012163641472146436,0.1872573290565017,-87.21738996364046,-12.380594014868445,83.30551466792501 +-0.4084784507572524,-0.012105080103654214,0.1873206365902491,-87.23593556339965,-12.334154410674998,83.31680247303318 +-0.408530032137323,-0.01204473381436015,0.18739211252618343,-87.25751693240352,-12.287978067048288,83.32901099042867 +-0.4085811986525751,-0.011984991969115955,0.1874636353333742,-87.27914045760569,-12.241780333120374,83.34130722558122 +-0.40863566822923736,-0.011923117509056641,0.18754194598085375,-87.30304864311796,-12.19507108258251,83.35417566584724 +-0.40869021530003125,-0.011861194339330555,0.18762057491024203,-87.326900289237,-12.148296408253023,83.36699899021852 +-0.40874610309915727,-0.011796994801723429,0.1877037766350818,-87.35229689033054,-12.099989377024814,83.37981989501311 +-0.4088020956191486,-0.01173231456322621,0.18778777550568865,-87.37756005638508,-12.051688643470177,83.39250869306092 +-0.4088582897330279,-0.011666009638467437,0.18787549445118526,-87.40380040639805,-12.001130984684075,83.40454288072549 +-0.40891475156601126,-0.011599285776947979,0.18796332702053364,-87.42996361303197,-11.95057032375138,83.4165167603182 +-0.4089711468450121,-0.011531865277151457,0.18805425973920684,-87.45669047717936,-11.898204295574578,83.4273156385993 +-0.40902755583745953,-0.011464826636922804,0.18814500616439334,-87.48339864253951,-11.84587897463452,83.43812131164303 +-0.409083156758126,-0.01139869125936456,0.18823667247175896,-87.51031698668992,-11.792670889451534,83.4477049904231 +-0.4091387442971701,-0.011332937035556392,0.18832812638103352,-87.53722180897928,-11.739504521415128,83.45728865478321 +-0.4091937140121533,-0.01126889826457185,0.1884205480468385,-87.56455174342858,-11.68651247123556,83.46598246686247 +-0.40924866423389394,-0.011204845209123751,0.18851314848790846,-87.59180583702674,-11.633519292542761,83.47461440337457 +-0.4093039705395156,-0.011142244376798907,0.1886084257632852,-87.62034923336849,-11.581233135402403,83.48289852334914 +-0.4093592522091608,-0.01108014686764415,0.18870391283115887,-87.64882242839089,-11.528948465976281,83.49124016573003 +-0.40941343432598587,-0.011017890313961248,0.18880083372520676,-87.6780763005187,-11.477227970466341,83.4995420225953 +-0.4094673825944628,-0.010955587374722159,0.1888981652543875,-87.70730721903381,-11.42543626487739,83.50773679173786 +-0.4095171108086335,-0.010891213592854027,0.1889922902806495,-87.73563398653147,-11.373295436175601,83.51624327427223 +-0.40956662705598745,-0.010826797941126481,0.18908641551574407,-87.76399377842388,-11.321128409977115,83.52465419699105 +-0.4096098488305783,-0.01075778479081023,0.18917394032943416,-87.79021151095408,-11.267571772913195,83.53312330896645 +-0.4096528371966046,-0.01068884071762953,0.18926173419961004,-87.81634384160036,-11.214014437864147,83.54153220300185 +-0.4096879548403384,-0.010615409640271217,0.18933884862461015,-87.83958472193268,-11.158421365838985,83.54983063543263 +-0.4097229258925969,-0.010542031087249687,0.1894163693661829,-87.86276187909826,-11.102767809375338,83.55808540840867 +-0.4097487793959182,-0.010464293734379876,0.1894803075240857,-87.88190835075777,-11.044680890348252,83.56586551876485 +-0.4097747358669771,-0.01038650382356128,0.18954414283520307,-87.90109460155307,-10.986513978262586,83.57362394196018 +-0.40979111613159047,-0.010305078665347564,0.1895913628322462,-87.9161413400463,-10.92563950624075,83.58068731481822 +-0.4098077869840311,-0.010223633968943088,0.18963904844521595,-87.9310559584961,-10.864781732198963,83.58775535030446 +-0.4098162321586325,-0.010139268921034048,0.18967050887770898,-87.94240991266733,-10.801140770180242,83.59402192832887 +-0.40982467522153254,-0.010054882000398155,0.18970203012235373,-87.95374165443323,-10.737493750688108,83.60025369710722 +-0.40982535817722043,-0.009968793237979154,0.18971768342711975,-87.96138948324221,-10.671479097867824,83.605551118338 +-0.4098257252013311,-0.009882791016292233,0.1897325170375184,-87.96920418324576,-10.605365627421236,83.61086290406352 +-0.4098171379623222,-0.009797177260554207,0.18972933873494002,-87.97280282752726,-10.537834718049764,83.61483973807842 +-0.4098085591925848,-0.0097115594048581,0.18972660424654123,-87.97629198278369,-10.47026756471846,83.61879084150455 +-0.4097909596601056,-0.009628394478313887,0.1897057690929886,-87.97583653540401,-10.402196322400217,83.62155088136177 +-0.4097733287482096,-0.009545233036314868,0.18968449464837414,-87.97545031915888,-10.334053178136916,83.62432008466335 +-0.4097487281642143,-0.009464990288829134,0.1896493003266276,-87.97237452315794,-10.266573310556568,83.62621504178998 +-0.4097241086613134,-0.0093848672432785,0.1896140975171179,-87.96929996104835,-10.199097254087128,83.62817420559067 +-0.40969596956709553,-0.009308707396080682,0.18956946390493895,-87.96541246499571,-10.133550834185497,83.62993115077853 +-0.409667596483549,-0.009232661007030032,0.18952453264437488,-87.96157888290743,-10.067994899565038,83.63171537530098 +-0.40963777676769664,-0.009161487834586424,0.18947397498651117,-87.95835561612836,-10.005045524430798,83.63391118783028 +-0.40960805206041306,-0.0090898940181567,0.18942354260557287,-87.95507249958735,-9.942111322124866,83.63605288640568 +-0.4095782144844221,-0.009022983250370542,0.18937035615421138,-87.95329488877287,-9.881748408072557,83.63852712574433 +-0.40954822166386995,-0.008955620082751442,0.18931703810948444,-87.9515833581167,-9.821370289533828,83.64090236273174 +-0.4095190572527623,-0.008892863245983082,0.18926234739738917,-87.95131759701721,-9.762982027302277,83.6432107431923 +-0.40948954370178153,-0.008830258920330014,0.1892076597721483,-87.95110082024487,-9.704583412318915,83.64553680935373 +-0.40946046245448464,-0.008771484699004212,0.18915081965942973,-87.95189043012012,-9.647341011733033,83.64740226556846 +-0.4094312294017435,-0.008712279424454364,0.18909374871496226,-87.95267775455801,-9.590040401842812,83.64916227645725 +-0.4094012598376351,-0.008656499829250583,0.18903223477411632,-87.95366916438928,-9.533496841874618,83.65023233973157 +-0.40937109139678535,-0.00860110581954647,0.1889708852472567,-87.95460876168937,-9.476961462311424,83.65128889841836 +-0.4093388583239622,-0.008549807542511306,0.18890253073307878,-87.95461099481207,-9.421378478827739,83.65159970198101 +-0.40930637447167756,-0.008498274016410179,0.18883383449798538,-87.954679361111,-9.365783473241253,83.65191127224004 +-0.4092712828218794,-0.008453494097727748,0.18875601533020828,-87.95352878446789,-9.312043274118732,83.65140500408329 +-0.4092361878176599,-0.008408407196644457,0.1886782114225979,-87.95237185647125,-9.258364359541138,83.65088952683557 +-0.40919922779085205,-0.008372619471717593,0.18859224973660443,-87.95049902205425,-9.20766334376558,83.64942452795711 +-0.40916223061360685,-0.008336842515451179,0.18850630791277867,-87.94862484245688,-9.157018896859137,83.64795404420391 +-0.40912423911112183,-0.008310158429887152,0.18841389294558197,-87.9460859138633,-9.110315329074847,83.64555922707366 +-0.4090858487488007,-0.008283537923830755,0.18832145922509386,-87.94360298794368,-9.063654845049617,83.64312263991083 +-0.40904608352833016,-0.008264833166503616,0.18822327620227522,-87.93983232395497,-9.02126771773936,83.63999519310016 +-0.4090060754884576,-0.00824581817881899,0.18812482857968105,-87.93611344522745,-8.978925734632956,83.63682322242585 +-0.4089643192955268,-0.008232229062889729,0.1880209281915676,-87.93152726473195,-8.940701352754902,83.63367180652742 +-0.40892257120637754,-0.008218643008222767,0.1879175394446607,-87.92682975204633,-8.902500631393671,83.63050946711374 +-0.40888218105758806,-0.008207283485868355,0.18781281638559946,-87.92233708204245,-8.868339546467784,83.62809615198671 +-0.40884152342569147,-0.008196419939931893,0.18770823726135014,-87.91783577753185,-8.834237736429584,83.62574129612238 +-0.40880416136264114,-0.008187532078967899,0.18760479837556363,-87.91462659797001,-8.803823944557708,83.62436224625439 +-0.40876691341077376,-0.008179125108498095,0.1875012360681227,-87.91147492803418,-8.77345725822171,83.62311289418678 +-0.40873317451882807,-0.008173792401228966,0.18739934490960722,-87.90909742453356,-8.746061635128475,83.62238509425434 +-0.40869935519984596,-0.008168582851414807,0.18729702497046283,-87.90683126046144,-8.718701846974112,83.62172902355357 +-0.40866831262281855,-0.008166633316712454,0.1871947956130482,-87.90472154404803,-8.693180491279822,83.6213227429433 +-0.4086374471571649,-0.008164509566991995,0.18709293245120312,-87.90255019106263,-8.667726637632041,83.62084393771302 +-0.4086083556716583,-0.008164354215009884,0.1869902809835405,-87.90015254183567,-8.642365026471486,83.62038764196333 +-0.40857940859832786,-0.008164255135325607,0.18688833373339853,-87.897645708667,-8.617029743329871,83.6199786011873 +-0.40855160421696823,-0.008164337445226169,0.18678663574618448,-87.89463034407207,-8.590122740529806,83.61915883023896 +-0.4085239864803615,-0.008164437635811553,0.18668527939626806,-87.89156343384705,-8.563172934946364,83.61838923767428 +-0.4084981426671077,-0.00816574841600827,0.18658592162961665,-87.88827039017096,-8.534057287264456,83.61709884408128 +-0.40847201959870755,-0.008166652459837248,0.18648667502203242,-87.88497371681188,-8.504882936951319,83.61569565972873 +-0.40844819854038056,-0.008171467708291788,0.18639119828048936,-87.8814393262445,-8.473359017729793,83.61274337872054 +-0.4084241192693273,-0.008176370619431439,0.18629544133891796,-87.87796376026995,-8.441821779798813,83.60980372671901 +-0.4084017933044992,-0.008186791231214574,0.18620253366505296,-87.87423820704879,-8.408114417322485,83.60450423836943 +-0.4083796791903789,-0.008196738214189467,0.18610998691195643,-87.87044663502239,-8.374420424431204,83.59914328741651 +-0.4083598946493562,-0.00821060805235356,0.18602035389823876,-87.86670988430708,-8.339196812903676,83.59281104132891 +-0.4083401446944706,-0.008224566794621288,0.18593120760723647,-87.86286341989775,-8.30405524991965,83.58652698735472 +-0.4083237226433327,-0.008239642688475962,0.18584569611728455,-87.85974948961143,-8.268290670836564,83.58060579508525 +-0.4083072834403256,-0.008255108660720045,0.18576022704377926,-87.85662998376039,-8.232526710019341,83.5747373043896 +-0.4082945351724664,-0.00827079721244299,0.18567994544298552,-87.85442062188598,-8.197101918008242,83.56967631702261 +-0.40828180101053024,-0.008286981705485294,0.18559931306172087,-87.85226844860897,-8.16166681276987,83.5647389177178 +-0.40827270385299635,-0.008303336889792304,0.18552500331377828,-87.85136031824261,-8.126802793437523,83.56097583282028 +-0.40826334022780797,-0.008319793151862542,0.18545033969585872,-87.85052029501519,-8.09198063709263,83.5572231288881 +-0.40825756550245046,-0.008335021151123764,0.18538290913802202,-87.85148451616607,-8.05762211118206,83.55478475513637 +-0.40825205628638367,-0.008350660147255759,0.185316275967841,-87.85227658146634,-8.023304212921733,83.55243906256223 +-0.408249639540037,-0.008364372712519982,0.1852563503169735,-87.85494755241818,-7.989337636282786,83.55163822831774 +-0.40824740864014647,-0.008377941096589958,0.18519671800858656,-87.85756509991532,-7.955322710110449,83.5507762469318 +-0.4082479566722377,-0.008390443564250394,0.18514241624572045,-87.86165693419645,-7.921556722227035,83.55112235509449 +-0.4082484616539519,-0.008403382886007768,0.1850885036479477,-87.86569059347704,-7.88774662015595,83.5515228548945 +-0.4082522259060015,-0.00841731062162547,0.18503993337047345,-87.87084916447287,-7.854151107553023,83.55238860739892 +-0.4082559678905525,-0.008431362198018585,0.18499173868615013,-87.87595156766614,-7.820514054272177,83.55330612251306 +-0.4082622630670455,-0.008449017225812525,0.18494856805556764,-87.8820042388544,-7.786901607448677,83.55388296699567 +-0.408268772930486,-0.00846666856757844,0.18490571359153932,-87.88799724013104,-7.753246477821128,83.55449314440408 +-0.40827692706897906,-0.008490914823088128,0.1848675282247174,-87.89458659115145,-7.719579147013779,83.55392042689112 +-0.4082849813439311,-0.008515583220379375,0.18482925468995173,-87.90122508055937,-7.685901301863779,83.55339641439032 +-0.4082943256221314,-0.008548345498887416,0.18479470955581884,-87.90783233211954,-7.652248572133306,83.55097050732154 +-0.40830330068080756,-0.008581234611004337,0.18476010787663938,-87.91450250227047,-7.618585316125431,83.54854546982435 +-0.40831287314971376,-0.0086223614842445,0.18472700916039975,-87.92073307444466,-7.58492045661987,83.54410904752751 +-0.4083224518038907,-0.008663157135035432,0.1846939053669884,-87.92696307399174,-7.551318360169138,83.53965829768146 +-0.4083326282524574,-0.008711356963676295,0.18466225362663802,-87.93288541389033,-7.518105683350841,83.53343539698682 +-0.4083428120479446,-0.008759635930451579,0.18463063391675769,-87.93880634129347,-7.484841952887083,83.5272606558829 +-0.4083537884210945,-0.008814557344537927,0.18460119118071175,-87.94503506363763,-7.452733573723415,83.52004445609917 +-0.40836475823887797,-0.008868955590446231,0.18457175850862728,-87.95126484942368,-7.4206267956905005,83.51270051038146 +-0.4083771079056997,-0.008928274426561286,0.1845462378639537,-87.9583766053782,-7.3906873385848595,83.50509570684306 +-0.4083893607894332,-0.008987639471375472,0.18452023109539772,-87.96560497089635,-7.360671732422783,83.49750756175273 +-0.40840412129432957,-0.009050624221788872,0.1844995195391222,-87.97439881929245,-7.333980194137573,83.49043259136693 +-0.4084187865340536,-0.009113950631937956,0.18447874934147368,-87.98323484849269,-7.307284810805181,83.48335693440592 +-0.40843682225390976,-0.009180382172268256,0.184464118309331,-87.99443720954517,-7.2846255226274454,83.47727998905205 +-0.40845507525925284,-0.009246757944167447,0.18444940590133688,-88.00563691411622,-7.262033405047829,83.47119412946716 +-0.408476294003823,-0.009316129708919388,0.18444004305876913,-88.01880762943141,-7.243510950215131,83.46610154628392 +-0.4084973069691252,-0.00938529477282092,0.18443038564523775,-88.0320271424914,-7.225048703638904,83.46101725518989 +-0.4085182025217644,-0.009456771748956955,0.1844229959833657,-88.04574616843023,-7.209953989235851,83.4568409169992 +-0.40853910732496723,-0.009528229098679786,0.1844152294875691,-88.0595256848845,-7.194857348502058,83.45265713440375 +-0.40855683842055995,-0.009600280581628928,0.1844061180469549,-88.07269132053518,-7.1817140263533075,83.44914128210608 +-0.4085747833347818,-0.009672358009751844,0.18439734309066377,-88.08579828152384,-7.168595071016192,83.44566735023146 +-0.408589517991717,-0.009744130555144656,0.18438777528867034,-88.09794802445082,-7.156116325957224,83.44251450152477 +-0.4086041360613165,-0.009815852928320934,0.18437771090854516,-88.11020821905586,-7.143621211038053,83.43931606924222 +-0.408617073482446,-0.00988749688836739,0.18436841839720877,-88.12197967657181,-7.130618905268242,83.43624157171725 +-0.40863004169423367,-0.009958826610620863,0.1843591612217375,-88.13374075685418,-7.117686377005917,83.43315739656043 +-0.4086421761573221,-0.010028243786798757,0.18435119855162255,-88.14563284567289,-7.103275822603653,83.4304769642461 +-0.40865457804292105,-0.010097163181133226,0.18434402830290894,-88.15735423476984,-7.088908627202762,83.4277119935796 +-0.4086656891158411,-0.010161804788305015,0.1843390192618473,-88.1690446405735,-7.0725050367767786,83.4258663516679 +-0.40867657802223345,-0.010226111671847976,0.18433329301057916,-88.18085191639996,-7.056083784092287,83.42396575284425 +-0.40868580674190214,-0.010284179832127455,0.18433039690620293,-88.19239164900054,-7.037581631754337,83.42318755768727 +-0.40869511661282487,-0.010341915305396784,0.18432716489281384,-88.20394721774225,-7.019083297396845,83.42240779398975 +-0.4087026660286658,-0.01039278503529717,0.18432661067759407,-88.21546619338571,-6.998700662416945,83.42310281127298 +-0.4087103170658919,-0.01044352923035674,0.1843257833666816,-88.22697957948635,-6.978321501116021,83.42373489752148 +-0.4087170523103,-0.010487230466364461,0.18432849993698058,-88.23875566050035,-6.956453035663058,83.42592914940602 +-0.40872378115016444,-0.010530616061272868,0.1843311821386523,-88.25053316925319,-6.934588724728149,83.42811173033917 +-0.40873066219845294,-0.010568809252521377,0.18433782036759666,-88.26260054845888,-6.911715104006825,83.4314998385214 +-0.4087373504661365,-0.010607477436656118,0.18434417778695084,-88.27468027436838,-6.888897303136497,83.43493676955752 +-0.40874388887364427,-0.010645576737946444,0.18435419299705955,-88.28663877562875,-6.865645072204939,83.4381879775765 +-0.40875041436588955,-0.01068369290611984,0.18436378663995,-88.29866034606242,-6.842381103472789,83.44143932147456 +-0.4087562803191619,-0.010728067957099546,0.18437632452829417,-88.31047553438232,-6.818994265126649,83.44276491334354 +-0.40876240794053353,-0.010772276487364035,0.18438923805582438,-88.32219047721591,-6.795629217055431,83.44401669455915 +-0.4087688379999695,-0.0108217948669838,0.18440559079147673,-88.33404859869877,-6.771624461906214,83.44357319762572 +-0.40877539112464345,-0.010871272819370115,0.18442168791872854,-88.3459028720423,-6.747682724200731,83.4431182594493 +-0.40878479464947315,-0.010920019814967805,0.18444162529583413,-88.35833279617323,-6.722314512272736,83.44287667468734 +-0.40879417479250446,-0.01096926672466729,0.184461164829685,-88.37082307087951,-6.696997457282836,83.44274113036012 +-0.40880902722739204,-0.011015821367230644,0.18448410627937226,-88.38451038374556,-6.669921105369383,83.44334754283388 +-0.4088238408871998,-0.011062415876812393,0.18450746996361078,-88.39813124480841,-6.642920438251365,83.44394106629281 +-0.4088450146762942,-0.01110852907054398,0.18453355671920757,-88.41311096895933,-6.614329630339911,83.44493732146252 +-0.4088660338125154,-0.011154699113957112,0.18455950424250855,-88.42815892708761,-6.585729972794307,83.44592738579138 +-0.4088920347942756,-0.011200458142235317,0.18458709267870585,-88.44370875042254,-6.555659428497237,83.44717535803208 +-0.4089176950678685,-0.011246325489226605,0.18461429040913072,-88.45937226378554,-6.525513577471591,83.44841563315194 +-0.40894510662183126,-0.011291295981845098,0.18464045297871148,-88.47470384313246,-6.493966717977458,83.4499904444244 +-0.40897238246258294,-0.011336411814650074,0.18466641545020226,-88.49003463058018,-6.462426381740649,83.4516038893795 +-0.4090003853568532,-0.011381077422778427,0.18469071260888723,-88.50474691770808,-6.4298245591943335,83.45339716625038 +-0.4090281257599341,-0.011425906354032636,0.18471466894493352,-88.51952561455056,-6.39721451542896,83.45522811415803 +-0.409057601593514,-0.011471008860305124,0.18473884747515115,-88.53434840890384,-6.364085347428762,83.45718408805507 +-0.40908696774516357,-0.01151584972119045,0.18476241890606654,-88.549226020975,-6.330893519920523,83.45913473754983 +-0.4091191506821733,-0.011558591611844388,0.18478775032763645,-88.56496581865561,-6.2969264839957155,83.46174934852105 +-0.4091513046246843,-0.011601340876743624,0.18481352147079344,-88.5806402376716,-6.262976855758342,83.46433749018409 +-0.40918519458043434,-0.01163889495913642,0.1848407297961465,-88.59740835537997,-6.227664873771492,83.4681413224468 +-0.40921912013550504,-0.011676354588129795,0.18486844452622814,-88.61405653379767,-6.19237926402366,83.47185807409427 +-0.4092536635410442,-0.011706972042772781,0.18489798746263017,-88.63134263706894,-6.155272691649775,83.47721044591705 +-0.4092881937058934,-0.011737509435718108,0.1849271566271103,-88.64868308491704,-6.1182123361665814,83.48249147516923 +-0.4093220851125074,-0.011759770551597548,0.18495794977907695,-88.6660993514267,-6.078992214678637,83.48936050420723 +-0.40935583218169724,-0.011782483634291713,0.1849886482227012,-88.68357475885496,-6.0397582211145435,83.4962644080305 +-0.4093871908658335,-0.01179857109087952,0.18501760759313932,-88.70026999474722,-5.998681002568002,83.50402859040528 +-0.40941851114470434,-0.011815085438760267,0.18504658396873394,-88.71696182804217,-5.957602123057653,83.51182770031625 +-0.4094465674793699,-0.011829028270117795,0.18507165171982337,-88.73190299952952,-5.915529728207033,83.51985482934091 +-0.40947468077049576,-0.011842543843234188,0.18509677375927613,-88.74679561566631,-5.873406947904921,83.52779920000455 +-0.40949979870855313,-0.011855171933771738,0.18511788448435715,-88.75993028654968,-5.83118904728018,83.53555038308163 +-0.4095249701365822,-0.011868103020670387,0.18513867867590023,-88.77307003845732,-5.789022784430579,83.54328571046777 +-0.4095482725862828,-0.011881141373937643,0.18515808536879622,-88.78507184823039,-5.747829236004119,83.55075498661034 +-0.40957166843224513,-0.01189456140836724,0.18517721104002727,-88.79707260786029,-5.70669028713342,83.55826954423397 +-0.4095955791102687,-0.011910393972188835,0.18519821362097852,-88.80905502535987,-5.66777221928133,83.56560009983617 +-0.4096192157704501,-0.01192590660421354,0.1852192652928699,-88.82104513823316,-5.628850420018568,83.57285771133428 +-0.4096462465199463,-0.011945798503507604,0.18524531171985764,-88.83414932836568,-5.593054370681153,83.58008702913725 +-0.4096735968640638,-0.011965086200014699,0.18527181029299106,-88.84713008797834,-5.557280631849712,83.58717605810855 +-0.4097056604840308,-0.011988107193106806,0.18530502453436326,-88.86213506718441,-5.524731232035438,83.59419453095917 +-0.409737931408497,-0.01201156870156754,0.18533858208550907,-88.87707943254541,-5.492194199603814,83.60130886995081 +-0.4097758004878936,-0.01203808068087922,0.1853814231811865,-88.89431905488479,-5.462712348945514,83.60832357357401 +-0.4098135288599073,-0.012064749407494857,0.1854240626154532,-88.91155881514835,-5.433173816640716,83.6153842486985 +-0.4098567182793388,-0.012094098985155802,0.185475487782924,-88.93098325418349,-5.406318868711658,83.62246467580931 +-0.4098998598384704,-0.012123873458724135,0.18552696935873605,-88.95040605339457,-5.379406426954354,83.62958045714242 +-0.4099477213014659,-0.012155203570340542,0.18558624541939353,-88.97140639345038,-5.354340802152527,83.6369618972718 +-0.40999529592173733,-0.012186945311159672,0.18564482752077135,-88.99252252476039,-5.329250678830351,83.64433909464584 +-0.4100461724876283,-0.012218316574934274,0.18570884212468872,-89.01452619533723,-5.305070164516402,83.65198483547103 +-0.41009710152518913,-0.012249694910606665,0.18577260756574937,-89.03652998378901,-5.280890304384029,83.65962064878707 +-0.41014890721318575,-0.012280555445967276,0.1858385952879375,-89.05859179365184,-5.256933243806272,83.66746662215361 +-0.4102006413869896,-0.012311463821212926,0.18590505502057186,-89.08058817757329,-5.232989457080038,83.67529170513893 +-0.41025149245037285,-0.012341544079246133,0.1859706156790972,-89.10169418833085,-5.208946280139133,83.68308869452578 +-0.4103019380601892,-0.01237134421275339,0.18603616779846666,-89.12285746862914,-5.1848338014686455,83.69081079959088 +-0.4103499355678776,-0.01240068591086986,0.18609921668982057,-89.14231832234685,-5.1606184240576285,83.69854116644431 +-0.4103976304235122,-0.012430136094704072,0.18616196174995056,-89.16184322967509,-5.136332223623068,83.70626307548748 +-0.41044214250508687,-0.012458255578180519,0.18622064544889316,-89.17928123262512,-5.112194304623272,83.71384940963586 +-0.4104864059575335,-0.012486144907691427,0.18627944795095044,-89.19670965512239,-5.088000802634291,83.72141873580333 +-0.4105265651749507,-0.012512763048413061,0.1863327467779355,-89.21200707599832,-5.063912348051955,83.72907958405052 +-0.41056656591399066,-0.012539016200825231,0.18638634956155303,-89.22730810786139,-5.039878723822701,83.73666313071658 +-0.4106023714538778,-0.012562144880470291,0.18643507111446836,-89.24023840119347,-5.01577758447117,83.74450103783154 +-0.4106378223613306,-0.012585405285512163,0.18648338211294696,-89.25328158350376,-4.9916513228225305,83.75234024907225 +-0.410668733795869,-0.012603438586016008,0.1865264488966109,-89.26407357018478,-4.9672109091899594,83.76060753334635 +-0.4106994978448993,-0.01262182999697918,0.18656941818360404,-89.27492634350962,-4.942698054468772,83.7688737406147 +-0.4107255987207217,-0.012634017822416757,0.18660699447168091,-89.28375264627427,-4.917428082418904,83.77772349083052 +-0.4107517930134885,-0.01264584445630737,0.1866447678484204,-89.29258291861663,-4.892155151658323,83.78656098914648 +-0.410773972422837,-0.012651047300469717,0.18667810701600754,-89.29955828729716,-4.8655723000787185,83.79588277091038 +-0.4107960922196673,-0.012655764319546445,0.18671101094261291,-89.30664147884494,-4.838964063741463,83.80509469014362 +-0.410814862151875,-0.012654472087209087,0.18673990692688552,-89.31227227757442,-4.810845457463774,83.8147739069669 +-0.41083374010450235,-0.01265305097900414,0.1867690486631208,-89.31790195854616,-4.7826668004680615,83.82439369055801 +-0.4108506238333954,-0.012646657979350787,0.18679527544914493,-89.32257367493854,-4.75332447160252,83.83411212775302 +-0.4108677185131813,-0.012640205985150796,0.18682184703507188,-89.32718910166392,-4.723991234256698,83.84382808731877 +-0.41088375074310124,-0.012631173989252217,0.1868462359327763,-89.33129935553508,-4.694024349281705,83.85361085275616 +-0.41089946630896473,-0.012622240833891837,0.18687022606557108,-89.3355228615495,-4.663974830320927,83.86340440011882 +-0.4109147915617178,-0.012611241849551577,0.18689286154524148,-89.33924751334604,-4.633690334502577,83.87332797397791 +-0.410930443935937,-0.01260015785498704,0.1869159402266277,-89.34285056315895,-4.603486451229325,83.88324581107224 +-0.4109454913989566,-0.012587885352120645,0.18693818045902677,-89.34645868638852,-4.573399143753286,83.8932665699993 +-0.41096063160524254,-0.012575568165505008,0.18696053520096217,-89.35000390481986,-4.543380129719091,83.90327115269118 +-0.4109767110976966,-0.01256392446316383,0.18698461498933922,-89.35404971180364,-4.513994920828216,83.91314433443682 +-0.4109928996274379,-0.012552127092435611,0.18700852020604983,-89.35815653383007,-4.484594068476349,83.92294992433207 +-0.41101008082223,-0.012542884979235586,0.18703544264976407,-89.36282463559718,-4.456317437224015,83.9320980817401 +-0.41102725068844265,-0.012534044064288444,0.1870623921402989,-89.36748347118034,-4.428040153682178,83.9412973741347 +-0.4110443827346223,-0.012529491191657194,0.1870911334758868,-89.37253885100719,-4.40108420175358,83.94936473829134 +-0.4110616147783678,-0.012525008545675939,0.18712040959888948,-89.37746945908702,-4.374209885283386,83.95747367693387 +-0.4110781271459041,-0.012525528801702518,0.1871503701431193,-89.3825657474106,-4.348534133532193,83.96454589181062 +-0.4110947189191229,-0.012525714411664488,0.18718038649061314,-89.3876144612791,-4.322924646422519,83.97160774921625 +-0.41111022944175457,-0.012530176577657703,0.18720970969542636,-89.39247283035706,-4.298363032778659,83.97766172803018 +-0.41112600489907036,-0.012534576536395794,0.18723939088886862,-89.3972301228428,-4.273764030450464,83.9837132565281 +-0.41114002365615243,-0.012543955572091522,0.18726727419923325,-89.40164131513454,-4.2500068478507425,83.9881133379001 +-0.4111543726685851,-0.012553239880127645,0.18729558994588816,-89.40593307902455,-4.226331531819976,83.99250728647961 +-0.41116663381558266,-0.012569324573056664,0.18732228828506464,-89.40988230926921,-4.203251815793789,83.99423399553017 +-0.4111791173032189,-0.012585819080089405,0.18734932994473194,-89.41377108245685,-4.180185159050215,83.99606247267023 +-0.4111903311530213,-0.012608005202240466,0.18737624005358466,-89.41737195179515,-4.157419888953488,83.99528423884307 +-0.4112012170419687,-0.012630310467920597,0.18740271243569048,-89.42108830206708,-4.134631148079745,83.99451836088099 +-0.41121201015259967,-0.01265390075593699,0.18742954378579937,-89.42496378892471,-4.1113911088386095,83.99267056797392 +-0.4112229757779576,-0.012677356984517177,0.18745710007640193,-89.42872851937527,-4.0881747778613695,83.99075887341236 +-0.41123485056429976,-0.012696505206590797,0.1874853450346621,-89.433059865207,-4.063824756903297,83.989464783537 +-0.41124650205474156,-0.012716048191129287,0.18751332935774906,-89.43744286950295,-4.039464184157738,83.98816903123661 +-0.4112595376653698,-0.012729091965907394,0.18754254251523028,-89.44223107597365,-4.013385835086671,83.98811953928359 +-0.41127282945255494,-0.012741962993383524,0.18757173440900127,-89.44701552969141,-3.9873081945874653,83.98800576837216 +-0.4112866100682958,-0.012748768311320699,0.18760020119769794,-89.45192126972677,-3.9591662212888403,83.98883435775156 +-0.41130062974012505,-0.012755509635288362,0.18762859309961222,-89.45682325841288,-3.9310251794614155,83.98965968621883 +-0.41131490182247676,-0.01275723919147638,0.18765532786058237,-89.46134269571287,-3.900689237176966,83.99105283959727 +-0.4113292303150329,-0.012758619056426668,0.18768168449308772,-89.46591203560854,-3.870285955810187,83.99243495543037 +-0.4113434101313409,-0.012756599175253874,0.18770431979378543,-89.46975579549753,-3.8379256156698847,83.99413159230885 +-0.4113578012380843,-0.01275451121197102,0.18772728307100575,-89.473537101183,-3.805578076337562,83.9958198166028 +-0.4113709088388836,-0.012750985160954437,0.18774396271100405,-89.47609706028942,-3.7718857582050442,83.99744321115512 +-0.4113837889030616,-0.012747520842304752,0.18776075645781748,-89.47864487928085,-3.738195680807064,83.99905601557187 +-0.41139423753325877,-0.012745314938778313,0.18777015664566596,-89.47928420045217,-3.7040973605515366,84.00009564528168 +-0.41140456240426937,-0.012743137421724879,0.18777986127538904,-89.47991992297061,-3.669999659070912,84.00112746869534 +-0.41141278618112553,-0.012744810108115429,0.18778188939658516,-89.47881993290346,-3.63642603226658,84.00153470305816 +-0.41142099495218465,-0.01274599511032555,0.1877843214909789,-89.47765614511574,-3.602808047053153,84.00182876305756 +-0.41142783849710984,-0.012751286099525902,0.18778048916222784,-89.47508638806885,-3.570389956574357,84.00162707043194 +-0.4114346938025084,-0.012756161529373852,0.18777664549711878,-89.47251827115853,-3.5379715204612237,84.00136523537326 +-0.41144037170472136,-0.012763735013798835,0.18776746296259336,-89.46871582754153,-3.5067779211568797,84.00073842864745 +-0.41144626834462417,-0.012771546774870052,0.18775863303371434,-89.46484633468714,-3.4755975293351047,84.00011346277039 +-0.4114509671508847,-0.012783052228770672,0.18774530264218367,-89.46002376262594,-3.4456314565904975,83.99861991519226 +-0.4114557866198031,-0.012794117927017443,0.18773167014885644,-89.45520954714664,-3.415720185165241,83.99708022566 +-0.41145963010258846,-0.012811936957071099,0.18771552828663757,-89.44975941765472,-3.3872222971123938,83.99360367099523 +-0.41146350612648314,-0.012829850040018617,0.18769900732404404,-89.44436451979574,-3.358712087469417,83.99019222584226 +-0.4114673221146422,-0.012855075869643753,0.18768083360789387,-89.43862211075691,-3.3315482970293915,83.98463261293799 +-0.4114712042107455,-0.01287976403319524,0.18766325876109916,-89.43282905926019,-3.304391990150164,83.97895611983871 +-0.41147508626103696,-0.012907461811251603,0.18764371396836868,-89.42692646926545,-3.2779841766421343,83.97247590511228 +-0.4114790985821355,-0.012935117634158846,0.1876243326424581,-89.42094820437555,-3.2515320546634077,83.96599754189388 +-0.4114825202887514,-0.01296199267870804,0.18760285656766476,-89.41481798507026,-3.225227239005412,83.95968072274037 +-0.4114862575486552,-0.0129886861703042,0.18758181304948196,-89.40856843720523,-3.1988865429243116,83.95331066739652 +-0.41148939321224554,-0.013016272942127566,0.18755970367706268,-89.40203317512939,-3.172820184415239,83.94624021445897 +-0.4114922965646358,-0.01304445036391677,0.18753725709541513,-89.39555286362494,-3.146739749963943,83.93929840235407 +-0.4114954709111025,-0.01307322904281627,0.18751461304387423,-89.38896757824001,-3.120838003655643,83.93166018588785 +-0.4114984371049395,-0.013102578333360829,0.18749168128942653,-89.3824287941661,-3.0949809091574547,83.92414779099973 +-0.41150201622666954,-0.013128641790669054,0.18746883480026974,-89.37606879632327,-3.069158225582791,83.91739308705439 +-0.411505854250217,-0.013155126445414583,0.18744595050917304,-89.36969844167712,-3.0433924555506353,83.91076089971631 +-0.41151019347046935,-0.013179628963505371,0.18742339131891284,-89.3636195691675,-3.018091863683643,83.90471616856715 +-0.41151457859021834,-0.013204104811004716,0.18740048031063683,-89.35759057362586,-2.9927780597666396,83.89867783765374 +-0.411519197625817,-0.013231731499927596,0.18737810294130514,-89.35167548494573,-2.9685062877235,83.89178490121309 +-0.4115237043115603,-0.013259691097163448,0.1873556668285702,-89.34581338588742,-2.9442772852296617,83.88489405042024 +-0.4115280158980814,-0.013290164082704892,0.18733267771042927,-89.34005938803857,-2.921440840488829,83.87742536527217 +-0.4115323412939152,-0.013320632581457312,0.18730972960834327,-89.33429822676906,-2.8986026585315354,83.86996102313827 +-0.4115368417209625,-0.01334944972207891,0.18728644956560883,-89.3287162628867,-2.877237694629557,83.8637529837311 +-0.41154110151218565,-0.013378640631329,0.18726288161615967,-89.3231856509718,-2.8559161693142805,83.85754598142846 +-0.4115459788067725,-0.01340475403550756,0.1872395056721294,-89.3179421040675,-2.8361729118713677,83.85312591746612 +-0.41155073291703737,-0.01343138828038401,0.1872154874598211,-89.31276200961956,-2.8164724786822037,83.84881615451192 +-0.41155588743446014,-0.013456311445532193,0.1871918271405277,-89.30791877782517,-2.798444503895567,83.84577260085742 +-0.4115611217042887,-0.013481506481680242,0.18716880238985548,-89.30301317225151,-2.780484332720355,83.84272333733563 +-0.4115664619755116,-0.013505855460720848,0.18714559508868156,-89.2985684425527,-2.763990765279923,83.840488108593 +-0.4115717741858543,-0.01353071873833614,0.1871227937577209,-89.29406002829568,-2.747509844843124,83.83836514760122 +-0.41157744138890184,-0.013555508341613343,0.18710045525732127,-89.28989701303395,-2.732338853634202,83.83664039826962 +-0.41158310976936074,-0.013580413983839967,0.18707854912044533,-89.28567035130297,-2.7171805295179956,83.83497807218714 +-0.4115886948037061,-0.013606159917553803,0.1870569066873996,-89.2816707978594,-2.702948800721384,83.83343096119347 +-0.41159429789918145,-0.013631992837475071,0.18703529214050024,-89.27767124392534,-2.6887167825937586,83.83194053084472 +-0.41159994695441743,-0.013658995334648663,0.18701424883339354,-89.27372461366824,-2.674979012486621,83.83004687012605 +-0.4116057799002787,-0.013685527279173312,0.18699391436068,-89.26966558150829,-2.661262704200368,83.82809188435655 +-0.41161148421219507,-0.013714563518695766,0.18697340210968652,-89.26588465423663,-2.6475875603195407,83.82558006114348 +-0.4116172006453148,-0.013743091635786728,0.1869529179868552,-89.26210337073888,-2.633967952746733,83.82295664503587 +-0.4116230982135937,-0.013772900704799002,0.186933317454726,-89.25854789277139,-2.6201681265137937,83.81948298603658 +-0.4116288974661653,-0.013802845277192027,0.18691351530593045,-89.25498567399264,-2.6063693868930877,83.81607224165813 +-0.411634380663222,-0.013834332240326416,0.186895034516491,-89.25152878816381,-2.592358186727696,83.81186783731009 +-0.4116399616213424,-0.013865284446795384,0.1868767572608087,-89.24807822194776,-2.5783436515773426,83.80754763240962 +-0.41164461799032537,-0.01389837217867776,0.18685929974700813,-89.24479146197726,-2.564333841161095,83.8024896542438 +-0.41164918874558676,-0.013931498705491388,0.18684179216774105,-89.24155643270666,-2.550312201876911,83.79744245331433 +-0.4116529685774132,-0.013966501537823903,0.18682530607170195,-89.23849195138949,-2.5366962937690927,83.79170518226191 +-0.41165673945447223,-0.014001506995217114,0.186808820801237,-89.23542723522276,-2.5230788790176746,83.78596939084134 +-0.4116596377617773,-0.014039013023177546,0.18679353534005427,-89.2324767312154,-2.5103991138523916,83.77988903880565 +-0.41166278207983387,-0.014076841773711116,0.1867782204740353,-89.22951427545912,-2.497662653235057,83.77386150111005 +-0.4116645324327171,-0.014116922420173664,0.18676390615833116,-89.22683675095388,-2.4862306770537224,83.76743305531086 +-0.41166652913460744,-0.014157313075560937,0.1867495507646936,-89.22414893273665,-2.4747991383433074,83.7610547783345 +-0.4116673931767654,-0.014200709275723769,0.1867370937056101,-89.22163699818246,-2.46492292323155,83.75438513768361 +-0.41166817090021524,-0.01424401516251829,0.18672416640219144,-89.21923364697881,-2.455022546631486,83.74765786586354 +-0.41166753836436215,-0.014289751162928174,0.1867127675207268,-89.21722835614592,-2.446753192697377,83.74081402207653 +-0.41166714143166583,-0.014335318342910797,0.18670174767017067,-89.21515570233421,-2.4384951734909035,83.73391326884068 +-0.4116648229846705,-0.014384562991747951,0.18669246440373316,-89.21353543518099,-2.4317284217152944,83.72626084554439 +-0.4116627058533688,-0.01443384511406029,0.18668348389007558,-89.21186154880056,-2.4249717422900794,83.71866289191402 +-0.4116579293891719,-0.014488126335925777,0.1866765058141681,-89.21044935508313,-2.4194896084887265,83.70911288436085 +-0.4116531894355193,-0.014542699382621385,0.18666960644692046,-89.20898995672198,-2.4140149971927287,83.69955775346348 +-0.4116457919310267,-0.014599797293419772,0.18666427911526803,-89.20768597699333,-2.409111661774971,83.68880222345224 +-0.4116385170851978,-0.014656449070702057,0.18665918047676042,-89.20638361354113,-2.40420713673647,83.67799063792907 +-0.4116291639666497,-0.014709731235815093,0.18665520378249292,-89.20514250470936,-2.398852514118605,83.66775325010089 +-0.4116198084286043,-0.0147626057621838,0.18665122729474742,-89.20390135893052,-2.3934970257039474,83.65746487063349 +-0.41160878452187066,-0.01480911382333415,0.18664809125891943,-89.20261330083459,-2.3871606423776295,83.64844386850227 +-0.41159789361421567,-0.014855597158375589,0.18664468903660597,-89.20132183677268,-2.3808241338799463,83.63943155239782 +-0.4115854980860265,-0.014896092876329078,0.18664178978351947,-89.19975580476394,-2.3733726389713925,83.63139116486812 +-0.4115730305379943,-0.014936124757016653,0.18663922400017482,-89.19814761029446,-2.3658701559277726,83.62324097785923 +-0.4115595275618055,-0.014971413314605664,0.18663635623178446,-89.19630835453512,-2.357292437858335,83.61578060259184 +-0.41154614853186344,-0.015006269139790501,0.18663362749621573,-89.1944069401596,-2.3486686158162944,83.60826952630269 +-0.41153250647965367,-0.01503647048531033,0.18663133549354252,-89.19240611465455,-2.339111508400728,83.6012790925978 +-0.4115187275522013,-0.015066618283588684,0.1866289167289798,-89.1904654005781,-2.3295409374795435,83.59423202572428 +-0.41150574393906825,-0.015094836800239653,0.18662870371284673,-89.18851422291903,-2.3196915349130096,83.5873019036695 +-0.41149273400968067,-0.015122578599325587,0.18662845316081933,-89.18656953367842,-2.3097822663540244,83.58026938011565 +-0.4114805579759476,-0.015152334186494351,0.18663021235948068,-89.18495350423832,-2.30035530558585,83.57220458957352 +-0.4114683297857875,-0.015182593724774568,0.18663234207760884,-89.18328887862813,-2.2908806008360822,83.56425019383963 +-0.4114572967640058,-0.015215661530894112,0.1866373521959254,-89.18183006824673,-2.2822456077018223,83.55486593176437 +-0.4114462550153306,-0.01524912705765609,0.18664196910231143,-89.18043327422743,-2.273597870909633,83.54554092607239 +-0.41143656660708483,-0.0152856873144952,0.18664846613373823,-89.17920158266892,-2.2658619718545445,83.53517436922793 +-0.41142674408412416,-0.015322388255168976,0.18665524418176735,-89.17797501726707,-2.2581250641532535,83.52486469534672 +-0.41141865825157126,-0.015361655889101808,0.1866630559806718,-89.17667928420373,-2.2512332653100042,83.51363036986902 +-0.41141043554584467,-0.015401040769653124,0.18667117203866285,-89.1753853512772,-2.24428357069918,83.50245018590527 +-0.4114035209126833,-0.015443270577176663,0.18667954739459428,-89.17386102921597,-2.2379887825931473,83.49078962776802 +-0.41139655372911144,-0.015485030803749217,0.18668829004265497,-89.17227939658163,-2.2317028825351612,83.47902302512405 +-0.41139118786243234,-0.015526422972786863,0.1866967303871661,-89.17041534215396,-2.2255917307771798,83.46769488656801 +-0.4113858582568734,-0.015568211401078683,0.18670521115017244,-89.16850580943047,-2.219487669614425,83.45642345219662 +-0.411382549418918,-0.015605238518938039,0.1867136225234542,-89.16625539031527,-2.213206384817863,83.44691894314096 +-0.41137915550973647,-0.015642300481131452,0.18672153997933663,-89.16412239175047,-2.206901513864269,83.43742629814923 +-0.4113780519409991,-0.015674069890325618,0.18672919470279942,-89.16171365803912,-2.2001847512906583,83.42998658324537 +-0.41137698081699037,-0.015705931467074274,0.18673645601553282,-89.15936206942716,-2.1933997485933605,83.42261194260708 +-0.41137773083212337,-0.015733642033775683,0.18674323033311044,-89.15685329500113,-2.186282696078549,83.41678280607594 +-0.4113785003306112,-0.015761426007708093,0.1867500315488931,-89.15434448482914,-2.1792225344738756,83.41100639610141 +-0.4113809820655072,-0.015785669114376136,0.1867555841021888,-89.15178259291287,-2.1718591000150504,83.40638093469607 +-0.41138351997190425,-0.01581039836993671,0.18676160849867426,-89.14911150080509,-2.164573096320932,83.40186899367062 +-0.4113874413235314,-0.01583305215788952,0.18676660528385922,-89.14632163307319,-2.157215500665525,83.39821030805861 +-0.411391259646933,-0.015855841684745298,0.18677095738736274,-89.14359561739636,-2.1499035144463785,83.39461536655188 +-0.4113954777550695,-0.015877309790884586,0.18677383901902977,-89.14082010432345,-2.1426147312847728,83.39159462757522 +-0.41140000201903776,-0.01589898012118486,0.18677716298880387,-89.13792329854408,-2.1354040284734466,83.38856412164826 +-0.41140490247444517,-0.015919880038087558,0.186779216560732,-89.1349741095208,-2.128383111252101,83.3858746883058 +-0.41140959204577265,-0.01594125718597092,0.1867809942781388,-89.13207854064828,-2.12140867626889,83.3832451813757 +-0.41141426324417674,-0.01596443483969373,0.18678125320918454,-89.12923896306177,-2.114924953610813,83.38020776553974 +-0.41141898263723786,-0.01598750650397747,0.18678199622667588,-89.12628815496633,-2.1085175308816964,83.37710629111449 +-0.4114233053095061,-0.016014412398701466,0.18678151810137497,-89.12327095532413,-2.1028933618958634,83.37307749765561 +-0.4114275100986423,-0.016041274709954395,0.1867809282675353,-89.12031561817294,-2.0972558166316833,83.36899866233674 +-0.41143170960754916,-0.016069266656241143,0.18677889664800978,-89.11729847279246,-2.0921968208158135,83.36484450701964 +-0.4114357871139904,-0.016097707615332038,0.1867767530180498,-89.11434333084446,-2.087182575256582,83.36075546654634 +-0.4114398714618748,-0.016125583839995683,0.18677361004377185,-89.1112752475021,-2.082713544287827,83.35705436255446 +-0.41144363581184495,-0.01615395876723902,0.18677006333899437,-89.10831622780577,-2.078223300816436,83.35340894957316 +-0.4114476613513379,-0.016183304511843785,0.1867659095163897,-89.10524034170322,-2.0745536668240505,83.34981730413296 +-0.4114514965490544,-0.016213097019881037,0.18676188733758034,-89.10211553306938,-2.0708917403533715,83.34627383467891 +-0.4114556652496404,-0.016245485733330275,0.18675801497229758,-89.09931709463,-2.0681870707387855,83.34249253559715 +-0.41146006059764717,-0.016277921176695964,0.18675447239389042,-89.09646492345969,-2.0654346969096027,83.33877366510659 +-0.41146568475499246,-0.01631269072742071,0.18675300400037398,-89.09446021412965,-2.0636021889443037,83.33484139919072 +-0.41147131144448196,-0.016347848332714174,0.18675157355866503,-89.09244865480133,-2.0617699742732443,83.33095854747963 +-0.4114788887802652,-0.016385052239788936,0.18675400027166664,-89.0915687071343,-2.0606336727125263,83.32682376635412 +-0.4114864574518875,-0.016422647626486056,0.18675601773125577,-89.0907442139064,-2.0594866999080566,83.32274566022771 +-0.41149626308583265,-0.016463042693139043,0.18676288386486298,-89.09114953574682,-2.0587250761682756,83.3181879628983 +-0.4115060230818405,-0.016503430015643555,0.18676968901879745,-89.09157009566607,-2.0579034027132868,83.31362317523494 +-0.41151827440777644,-0.016547084058157552,0.18678119385469774,-89.09299279707403,-2.0571590815230736,83.30835066863975 +-0.41153021741531426,-0.016590846513599697,0.18679230570486957,-89.0945233751232,-2.056339036767366,83.30308973498016 +-0.41154380230859056,-0.01663761700799672,0.18680711590274318,-89.09666730726538,-2.055261944617693,83.29681122416324 +-0.411557143682325,-0.01668488864280905,0.18682116837437215,-89.09893767661067,-2.054220806167454,83.29060116605275 +-0.4115711374699792,-0.016735298276611618,0.18683847618188237,-89.10131193743183,-2.052727358939139,83.28325213670352 +-0.4115850434977344,-0.016786218426295546,0.1868557206825528,-89.10373556274362,-2.051170278171638,83.27601494166153 +-0.41159896037215066,-0.01684038345258977,0.18687519721015702,-89.10610229862219,-2.049135546472055,83.26776187657963 +-0.41161265922964096,-0.016894699321780463,0.18689438259173943,-89.10852179438037,-2.0470368736068956,83.25955924013005 +-0.41162604651434564,-0.016951174867818206,0.18691530041878418,-89.11083052315338,-2.0442496581852785,83.25056590658654 +-0.4116392914838044,-0.01700809711209969,0.18693611806291838,-89.11320025879415,-2.0415107668745227,83.24163000235566 +-0.41165224548005136,-0.017066321358458286,0.18695875733340964,-89.1153293013997,-2.0381137492238595,83.23212743992293 +-0.41166513178045616,-0.017125073806705846,0.18698134827705556,-89.11747242516527,-2.034717005860504,83.22273783030906 +-0.4116773400248207,-0.017185109457951764,0.18700460974366037,-89.11949122134251,-2.0309303455333376,83.21288708570549 +-0.4116895232383033,-0.017245271764307485,0.18702786083528633,-89.1215174174997,-2.0270878074338388,83.20310039998321 +-0.411700899840693,-0.017307154988454795,0.18705133142384098,-89.12325760342803,-2.023112801097622,83.19289968564829 +-0.4117120708378962,-0.01736920659962729,0.18707451463340957,-89.12505390861338,-2.019188006423763,83.18276130434097 +-0.411722741741156,-0.017433389994076204,0.18709676340805534,-89.12645640055355,-2.0154936123713827,83.17231261149384 +-0.4117330906781991,-0.017497180467794415,0.1871190409485418,-89.12790457569383,-2.0118489900449252,83.16175349307046 +-0.4117424325908242,-0.01756378106191274,0.18713883380196777,-89.12890829172729,-2.008902393727033,83.15100178637321 +-0.4117517472881608,-0.01763039133986964,0.18715861559867317,-89.12991408589166,-2.005899287388491,83.14025091996193 +-0.4117598166574037,-0.017699150746179115,0.18717502312894796,-89.13057789726157,-2.004034641429129,83.12923763216247 +-0.41176785506014224,-0.017767907990165588,0.18719185171388672,-89.13117976048505,-2.002124191065975,83.11822129698781 +-0.4117751989501447,-0.017838959866931597,0.18720538524997557,-89.13156113235246,-2.0015624076903396,83.1071226810211 +-0.4117823868082169,-0.017910069992766092,0.18721866668787104,-89.13194446136103,-2.001058259593235,83.09603008586203 +-0.41178908496180133,-0.017982329964537566,0.18722939612883405,-89.13215021440433,-2.001900464501866,83.08495916303339 +-0.41179550762476724,-0.01805499131168664,0.18723935097972194,-89.13247567689235,-2.002721751719098,83.07389585085963 +-0.41180167294200204,-0.018127493510369422,0.18724648041494743,-89.13273602144241,-2.0046483486784186,83.06304086508972 +-0.4118076660938288,-0.018199941988336077,0.18725389139529905,-89.13300157221764,-2.0065159326567974,83.05213060765108 +-0.41181323438712214,-0.018271257646742464,0.1872577119665268,-89.1334439712706,-2.0091097633145396,83.04156356133777 +-0.4118190075437044,-0.018342499666751846,0.18726187303532932,-89.13382602184276,-2.0116568326758038,83.03099359660574 +-0.411823967008093,-0.01841116955433962,0.18726261059974195,-89.13403321488339,-2.0143596900684986,83.02058133433843 +-0.41182880113755377,-0.01847988708169905,0.1872628131537367,-89.13436539049405,-2.0169848469177794,83.01018118337035 +-0.4118319265211733,-0.018544653634127023,0.18725803165843974,-89.13407201612279,-2.0189846655052457,82.9998811476223 +-0.4118350288130447,-0.01860983641484,0.18725284301405098,-89.13384284441831,-2.0209739275970495,82.98964653060327 +-0.4118358417869181,-0.018670323018848592,0.18724204168177305,-89.13264083769594,-2.0218208022835036,82.97933249733957 +-0.4118365780566562,-0.018731240684941752,0.18723119063113286,-89.13145233074994,-2.0226645420891227,82.96908208726597 +-0.4118354792252901,-0.01878743815789967,0.18721408879072954,-89.1292903678857,-2.0221896895344265,82.9586405180679 +-0.4118341706282368,-0.018844013534633594,0.18719723166695637,-89.12713993318737,-2.0217104945326487,82.94820282284537 +-0.41183134047984876,-0.01889650593973695,0.18717446167915117,-89.12414702230554,-2.0201753027390303,82.93764106427919 +-0.4118286186940439,-0.018948882636531744,0.1871519331237764,-89.12114867373626,-2.0186378998116346,82.92702636922371 +-0.4118244938203319,-0.018997817085131125,0.18712404141042605,-89.11752870748239,-2.016467951526202,82.91650892092332 +-0.41182031855641976,-0.019046762289658375,0.18709654697433545,-89.11385105992512,-2.0143621312898095,82.90598886567643 +-0.41181489738098787,-0.019091699504364054,0.18706474385502675,-89.10988964109092,-2.0122047816997983,82.89580741320702 +-0.4118097224007037,-0.01913696002214116,0.1870337475088316,-89.10576428353811,-2.0100710082053888,82.88567690219547 +-0.41180355128086776,-0.019178101128023733,0.18699972136823914,-89.10169657455867,-2.0085253568179153,82.87622429737515 +-0.4117974143803949,-0.019219239870852056,0.186966172616442,-89.09752397125385,-2.006993702702243,82.8667751176469 +-0.41179082827475516,-0.01925739025136243,0.18693147082668207,-89.09356741160715,-2.006656226624354,82.85822293292523 +-0.4117842203960461,-0.01929515550363553,0.1868967231479665,-89.08961900227447,-2.0063150580284175,82.84962160426929 +-0.41177758487708227,-0.019330540794816956,0.1868623378515765,-89.08595723697715,-2.007499975833359,82.84197540264765 +-0.4117708730236078,-0.019365533664237683,0.18682787721373248,-89.08234245107856,-2.0086754989809443,82.83427267375671 +-0.4117639170279656,-0.01939771826056877,0.1867945665906482,-89.07914083702302,-2.01129970074833,82.82742419623766 +-0.4117572116525604,-0.019430330647429286,0.18676123970919914,-89.07592565768108,-2.0139253303983997,82.82068766830213 +-0.4117500757674098,-0.01945945955736303,0.18672913812519257,-89.07311399628512,-2.017544389309165,82.81474559826424 +-0.4117430945292825,-0.01948884810092781,0.18669733175749612,-89.07025478118516,-2.0211690523478008,82.80880322955926 +-0.4117355696299019,-0.019514810366267676,0.18666696973019553,-89.067735515589,-2.0249960946884444,82.8036745379469 +-0.41172814612900077,-0.01954022577650355,0.1866367235103631,-89.06515348762423,-2.028888486075883,82.79842284960918 +-0.4117197944552061,-0.019562315279665426,0.18660835687696162,-89.06263508444734,-2.0323976593523185,82.79398366190816 +-0.4117114713848038,-0.019583903036976727,0.1865796095082488,-89.06017214470828,-2.0358391044576445,82.78943610851769 +-0.41170173589575465,-0.019601483960360197,0.1865523307520813,-89.05743563345052,-2.03843514396863,82.78557639702817 +-0.41169187111327293,-0.019619407895049797,0.18652496468839555,-89.05475284238287,-2.041078422282933,82.78171914023724 +-0.41167966483173035,-0.019632685240894246,0.18649856586543043,-89.05168250680022,-2.042382148723746,82.7785611110621 +-0.4116675287421388,-0.019645928717535503,0.18647266636032564,-89.04849393812049,-2.0437038976154285,82.77539704430262 +-0.4116528212989953,-0.01965396701702895,0.18644799723046399,-89.04508864206926,-2.0436038439441777,82.77293437965655 +-0.41163824944549454,-0.019662375843951377,0.1864230753323597,-89.04167317128174,-2.043505259965351,82.77053457071852 +-0.41162131285639836,-0.019666135297271008,0.18640118495114563,-89.03821949936194,-2.042184344390166,82.76883733676107 +-0.41160472580863816,-0.01966979302820277,0.1863793451313823,-89.0347067260606,-2.040872509104162,82.76713819005955 +-0.4115861906426129,-0.01966970704549837,0.18636105501383216,-89.03159242457276,-2.038669258903135,82.76621216454039 +-0.41156793241640016,-0.019669848064145116,0.18634318320302787,-89.02836152672336,-2.0364832123473664,82.76528398100089 +-0.41154816038409947,-0.019666212848261214,0.18632988621527075,-89.0257064213512,-2.0335511464120604,82.76518705183679 +-0.4115286407711046,-0.019662106416469913,0.1863165098627239,-89.02305303614474,-2.0306187558405657,82.76503412926961 +-0.41150800002226134,-0.019654637730913194,0.18630853296060987,-89.02102795735759,-2.026990516666663,82.76583969712667 +-0.411487395957059,-0.01964713679825518,0.18630018366415227,-89.01905185216262,-2.023354904607835,82.76663872147076 +-0.41146590158466934,-0.019637593281067733,0.18629741647457013,-89.0177668091819,-2.0191661121029107,82.76775354920758 +-0.41144415688655245,-0.019628148670787257,0.18629470110479526,-89.01648013532218,-2.0149779021117546,82.7688770488163 +-0.41142175733930186,-0.019620822507994205,0.18629742254317172,-89.01581220462973,-2.0106085937615217,82.76915622477401 +-0.41139934609097434,-0.019613421755364353,0.1863001305480792,-89.01514585858206,-2.0061807410217734,82.76938362001982 +-0.4113765866816334,-0.019609123840499003,0.186308266286441,-89.01514884867336,-2.0017825739424158,82.76848438772554 +-0.4113536761356092,-0.0196052823487187,0.18631656924428247,-89.0150910794915,-1.997394225829093,82.7676410904149 +-0.41133080535431454,-0.019603371661591172,0.18633007648348662,-89.01577401374627,-1.9930382076787894,82.76613778620437 +-0.41130805200850074,-0.019601404084300535,0.1863436975919263,-89.01639789040378,-1.988634439363894,82.7646247712609 +-0.41128602269041775,-0.01960103741393944,0.1863627492113883,-89.01758644028278,-1.9841836046750383,82.76273591769221 +-0.41126399174480405,-0.019600671707412025,0.18638179819742848,-89.01877502141645,-1.9796754151493208,82.76084786739324 +-0.41124309913488566,-0.019600036862427492,0.18640575551038674,-89.0205348652985,-1.974910126802397,82.75920419777965 +-0.4112222308309963,-0.0195994190671454,0.18642974834400794,-89.02228800493778,-1.9700888875926714,82.75756952608891 +-0.4112035893075575,-0.01959570934384825,0.18645773574316848,-89.02461838481062,-1.964588070413223,82.75745029962799 +-0.41118494910461534,-0.019591497801019056,0.1864861424394833,-89.0268861186814,-1.9590961757365168,82.75721068427546 +-0.4111689536109605,-0.019583575801770108,0.18651804873117775,-89.02967593265544,-1.9527070869153458,82.75855306755305 +-0.4111532012519059,-0.01957558452669523,0.1865503219009622,-89.0324048752717,-1.9463846308740338,82.75989181438764 +-0.4111397372168773,-0.019565178362388816,0.18658554488140214,-89.03531066019679,-1.9391449527704778,82.76222616904253 +-0.41112626700362764,-0.01955477553796929,0.18662076749372802,-89.03821632676538,-1.9319046016310815,82.76455981131134 +-0.4111152017031375,-0.019543095983733605,0.18665872552331242,-89.04101489647886,-1.9239507612733104,82.76747521750787 +-0.4111039262554107,-0.019531068217528452,0.18669636529789838,-89.04386564487159,-1.9159880990950882,82.77033355545345 +-0.4110951653275622,-0.019518486385078748,0.18673691412378463,-89.04672088775449,-1.9073996208368096,82.7734868683766 +-0.4110862283837533,-0.01950595692360821,0.18677678894756153,-89.049678914028,-1.898794217347681,82.77664275282251 +-0.4110798504682724,-0.019492552718048062,0.1868204275073994,-89.05282542035468,-1.8896493788952002,82.7801010297245 +-0.4110734678683468,-0.01947883204144793,0.1868636324553201,-89.05606976298542,-1.880488966374626,82.78355812041319 +-0.41106959679102933,-0.019464556806096614,0.18691071367334072,-89.05994429346673,-1.870946788673708,82.78732459084209 +-0.4110660337351264,-0.0194497927752333,0.18695820347975234,-89.06370893705649,-1.861478371484172,82.79103408281539 +-0.41106494647550595,-0.019434490603939633,0.18700899102093219,-89.06837130130857,-1.851638399834603,82.79488437445742 +-0.4110640797321123,-0.019419227709392556,0.187060102149609,-89.0729812386701,-1.8418637084242313,82.79879198009422 +-0.41106499963553644,-0.019404652568551853,0.1871136330771967,-89.07820698860748,-1.8318548434733852,82.8019701490989 +-0.4110658560947256,-0.019390598106313273,0.18716755352185585,-89.08338202656181,-1.8218538485487457,82.80526277051932 +-0.41106791559042943,-0.019378837270800822,0.1872231191706067,-89.08883378464033,-1.8117662143833801,82.80701740696504 +-0.4110699803589542,-0.01936747331701419,0.18727830944479038,-89.09433597305525,-1.8016123793155492,82.80882904829188 +-0.41107305345628575,-0.019356932023456938,0.18733506014977436,-89.10012499711128,-1.7912196236803122,82.80984639460344 +-0.411075944833228,-0.019346535221394498,0.18739112116123213,-89.10602535379397,-1.7807519873185944,82.81092584782772 +-0.41107987033673665,-0.019334811926011358,0.18744827387396717,-89.11214018618482,-1.769907487287534,82.81195370700205 +-0.41108375357584465,-0.019323204335324376,0.18750537463058364,-89.11827015280315,-1.7590607292835714,82.81304128828832 +-0.41108784039392954,-0.019310512377370553,0.18756169617523497,-89.12439699051212,-1.747871898640265,82.81407544774517 +-0.4110917182568487,-0.019297789438199972,0.18761734051248669,-89.13063313456135,-1.736606536347758,82.81505174608762 +-0.4110951938406171,-0.019284975725014558,0.18767133377464285,-89.13659061184462,-1.7250969928811644,82.81590381972609 +-0.41109860556089595,-0.01927179307018695,0.18772529484182543,-89.14259344599898,-1.7135795924243762,82.81670543784298 +-0.4111013320813093,-0.019258909610783498,0.18777609826871355,-89.14832755269269,-1.7019300744817527,82.8173781022093 +-0.41110394702219477,-0.01924605847937208,0.18782725132858055,-89.15405135078731,-1.6902815961752056,82.81804822475875 +-0.4111051797394085,-0.01923299800573236,0.18787412509152707,-89.15943796267413,-1.6785739619115676,82.81870961003918 +-0.41110643636739896,-0.0192199303167543,0.1879214511599623,-89.16471980006585,-1.6669397689657777,82.81936499583614 +-0.41110597658704084,-0.01920613083820337,0.18796414121196375,-89.16965513607207,-1.6553104396390694,82.82018837831124 +-0.41110581479411046,-0.01919191382569979,0.18800764672538314,-89.17441669084205,-1.6437090485941266,82.82099459376654 +-0.41110378718051505,-0.019177285180588324,0.18804589369299862,-89.17901924900063,-1.6323139826116049,82.82214022647408 +-0.41110195682967543,-0.019162187949811837,0.18808486529702603,-89.18350188522601,-1.6209374308748354,82.82322264216072 +-0.41109898505121256,-0.019146559958873197,0.18811982364320726,-89.18775638920178,-1.6100078937249538,82.82468903271807 +-0.41109577404173236,-0.0191310138350511,0.18815445448532758,-89.19206977500927,-1.5990109123694058,82.82616313273292 +-0.411091967932121,-0.019113955353777426,0.1881857682735646,-89.19599315294225,-1.5884297393709768,82.8279016754838 +-0.4110878998580364,-0.019097372825561232,0.188217174512136,-89.19991298032869,-1.577848356896802,82.82969506491807 +-0.41108288080560695,-0.019080026730727187,0.18824420005853348,-89.2033764107279,-1.5673447002562213,82.83158723371135 +-0.4110776143431263,-0.019062765288582653,0.1882708737363812,-89.20690714291774,-1.556829633150881,82.83348682406827 +-0.41107152428587446,-0.019045366296455743,0.18829367944033934,-89.2095789868142,-1.5462202956683913,82.83513464155394 +-0.4110654192729899,-0.019027960291261095,0.1883164744413784,-89.21225744715221,-1.535609344128851,82.8367799604648 +-0.4110584530889819,-0.01901135505715601,0.18833456348279812,-89.21408127715158,-1.5248409598703452,82.83799915574676 +-0.4110511645505621,-0.01899445804504503,0.18835262999030988,-89.2159640470801,-1.5140626823540013,82.83916971505919 +-0.41104302260574227,-0.018978463494634515,0.18836652333167186,-89.21699580583059,-1.5030131322626423,82.83997785806365 +-0.4110348850532095,-0.018961966040318676,0.18838041639219,-89.21802734832265,-1.49201989041743,82.84066700460089 +-0.4110257813293589,-0.018946293229549924,0.18839059056635715,-89.21837685564982,-1.4809597395542766,82.8411151168267 +-0.41101664975079333,-0.018930629608867752,0.18840073762409293,-89.21873140462776,-1.46984141619332,82.84156400574788 +-0.4110067668343035,-0.01891753275828599,0.18840895223754786,-89.2184586474447,-1.4592050086292365,82.84118379263853 +-0.4109968099955361,-0.018904366324195537,0.18841668232808714,-89.21829702388126,-1.4485498011507958,82.84075185476473 +-0.4109860422617801,-0.018896967297571052,0.18842350036360242,-89.21778731451212,-1.439051996207129,82.83863788252529 +-0.4109751985835105,-0.018889591607458123,0.18842982257251914,-89.21739560737429,-1.4294777150628433,82.8365226834649 +-0.4109639372916706,-0.018886044086006776,0.1884367568400521,-89.21704814114992,-1.4211874044996362,82.8334790610774 +-0.4109525427533092,-0.01888253638336318,0.18844356300325008,-89.21676637623997,-1.4129434904698106,82.83043125627758 +-0.4109416291157396,-0.018878849700699016,0.18845181146979773,-89.21698429360009,-1.4057707745538208,82.82772842129634 +-0.4109306581183583,-0.018875474927734906,0.1884600215210052,-89.21720879028219,-1.3986534465289304,82.8250197933077 +-0.41091986628144594,-0.018872611098533748,0.18847007778274655,-89.21822103110148,-1.3926631113279104,82.82209110247251 +-0.41090924258617084,-0.01887018871620723,0.1884808197744969,-89.21912378780401,-1.3867486938301097,82.81926975819545 +-0.41089861822995244,-0.018869159346709824,0.18849336106582817,-89.22070326561767,-1.3817406166522268,82.81581540971085 +-0.4108878737459485,-0.01886826889209596,0.18850608121758466,-89.2222205025514,-1.3768008896122472,82.81241998657822 +-0.41087686804253876,-0.01886759626383476,0.1885201541379235,-89.22408235381431,-1.3723156654294013,82.80873874608909 +-0.4108658501678397,-0.018866822648563722,0.18853422691078747,-89.22594414145331,-1.3677725631816424,82.80500165405341 +-0.4108543470077353,-0.018864566354758902,0.18854977340493886,-89.2278014152541,-1.3632336828430827,82.80121121375672 +-0.41084283547373107,-0.01886269944868489,0.18856535787497591,-89.22965702293719,-1.3586953488395959,82.7974699676859 +-0.41083051016439853,-0.01885880328879605,0.18858185539065916,-89.23168937527869,-1.3537927901518396,82.79385328424777 +-0.4108183262359114,-0.01885536791821206,0.18859808605534945,-89.23371851755599,-1.3488918406684598,82.79035400443523 +-0.410805925315633,-0.01884899254637648,0.18861710471836352,-89.2358592500233,-1.3436411770799779,82.7870920301436 +-0.4107932749097245,-0.018843182209648826,0.18863533749197448,-89.23813162173714,-1.33837009083206,82.78393861495175 +-0.4107810456110801,-0.018834648243157337,0.1886565711071259,-89.24095441754143,-1.3328534613438228,82.78126935369714 +-0.41076890782930164,-0.018826474886819558,0.18867800725953984,-89.24377888854008,-1.327336493529552,82.77864913130549 +-0.410757708166692,-0.018815500450118067,0.188703324529882,-89.24751345783251,-1.3216340000493034,82.7767432753905 +-0.41074647466092323,-0.01880451309604042,0.18872901308201764,-89.2511940327522,-1.3159402300880394,82.77482693719064 +-0.41073598545833834,-0.01879126639787737,0.18875863474415983,-89.25578357199457,-1.3100072654535435,82.77391216561371 +-0.41072553902247333,-0.018777609521945307,0.18878787551730533,-89.26042868262978,-1.3040649289873998,82.77294142030271 +-0.4107155115877088,-0.018761459028845337,0.188820982013855,-89.26569615475498,-1.297815373019582,82.77296167031585 +-0.4107055719998882,-0.01874536448887533,0.1888547027226503,-89.27091469825777,-1.2915735894271945,82.77302755569657 +-0.4106956775495487,-0.018726315893506193,0.18889035368001683,-89.27663729158914,-1.284812187396708,82.7739204259657 +-0.41068563332248215,-0.018707699153158272,0.18892629985935477,-89.2823580033609,-1.2780500361224971,82.77486663797988 +-0.41067539037208356,-0.018686311392600657,0.18896384491678359,-89.28826368260509,-1.2705877380539123,82.77651567722111 +-0.41066515489215816,-0.01866532198333526,0.18900143056300006,-89.29415728004567,-1.2631832225680808,82.77821353192726 +-0.41065429033386713,-0.018642908617331408,0.18903961850572293,-89.29988923083839,-1.2550709589812505,82.78043112374532 +-0.41064339863851745,-0.01862042485329747,0.18907822943097782,-89.30555842013804,-1.2469667624412697,82.78259288895224 +-0.41063106734729493,-0.018598227758930302,0.1891157782275868,-89.31072257440734,-1.2381458726679528,82.78503358675174 +-0.4106190255441535,-0.01857595881278666,0.18915372254359528,-89.31577857388805,-1.2293985011333086,82.78747659569933 +-0.41060539760824943,-0.018555386291286155,0.18919005823938406,-89.32020861996489,-1.2201186570907745,82.78990887557975 +-0.41059177586632956,-0.018534403747846373,0.18922680315015372,-89.32457775633723,-1.210847413151742,82.79228043425681 +-0.4105770126588324,-0.018516254348990527,0.18926163100040233,-89.32838075913807,-1.2012579754253567,82.79447104796722 +-0.41056227579207794,-0.01849840564255978,0.18929691899308848,-89.33207559598995,-1.1916846904959986,82.79665989094414 +-0.41054647512055314,-0.018484292276231967,0.18933063194595892,-89.33514286540627,-1.182085355300797,82.79848765676616 +-0.41053082372898886,-0.01846975006092877,0.18936405125186523,-89.33820664462208,-1.1724859230425981,82.80026483260866 +-0.410514424061701,-0.018460901486748324,0.18939618866578298,-89.34053916721275,-1.1632736122080318,82.80161657944532 +-0.41049796385990933,-0.01845208458896698,0.18942775452591049,-89.34292215774009,-1.1541099919105486,82.80296965910385 +-0.41048067601309407,-0.018449944413465286,0.18945727445603416,-89.34467936593008,-1.1455411726295612,82.80373169394983 +-0.4104634947362098,-0.018447351754950034,0.1894868822506277,-89.34638256776779,-1.1370381601018946,82.80442660200116 +-0.41044576445714676,-0.01845097710122033,0.18951450656097515,-89.34752242660078,-1.129120268381921,82.80448433445704 +-0.41042816217384764,-0.01845485922524623,0.18954187445263765,-89.34865202548643,-1.1212605188831857,82.80453578639805 +-0.4104102442949529,-0.018464834598934804,0.18956773815669653,-89.3493282794529,-1.114027891929923,82.80411581563554 +-0.41039242015960153,-0.01847438380935311,0.18959368983149144,-89.3499556354096,-1.1068032182530967,82.80363325990504 +-0.41037464276599256,-0.018490235282416903,0.18961813333646785,-89.35033852056229,-1.10034270889368,82.80268502902781 +-0.41035706470391875,-0.018506106869478373,0.1896428795211301,-89.35067262751814,-1.093833576518091,82.8017842374926 +-0.4103396475386906,-0.018527986904339072,0.18966675414702283,-89.35089637788869,-1.0880046899574003,82.8000779152554 +-0.41032248140358346,-0.018550291998473745,0.18969059908462332,-89.35111351764111,-1.0821203372161041,82.7984898885375 +-0.4103058257594844,-0.018578892710479036,0.18971476581299745,-89.35110193115614,-1.0767036494931077,82.79597041425741 +-0.4102891962988612,-0.018607401784504318,0.18973854913695712,-89.3511408056083,-1.0713354041074448,82.79339830643036 +-0.4102730731470033,-0.018642113321207604,0.18976215945220073,-89.35095090300219,-1.0662048757712657,82.78984278546127 +-0.41025681026061533,-0.018677351667053574,0.1897855151738719,-89.35076278115318,-1.0611319332593758,82.78639766933921 +-0.41024131442210343,-0.018718234517782248,0.18980882635735624,-89.35012331602626,-1.0561031055687629,82.78186355509477 +-0.4102258114542822,-0.018759604455574813,0.18983214761471315,-89.34947718046745,-1.0510755284975044,82.77743529790106 +-0.4102115493034064,-0.018803519075211134,0.1898543669497183,-89.34854449411242,-1.045854372887853,82.7727262587049 +-0.41019713761112075,-0.01884756405091377,0.1898768510024834,-89.34761524478303,-1.0406327507292257,82.7680720934815 +-0.410185788294522,-0.018890669532777765,0.18989961642784325,-89.34680873290806,-1.035353086401252,82.76467932169511 +-0.410174130981671,-0.018933860941883665,0.18992199893509143,-89.34610841339304,-1.0300559605184691,82.76128860943551 +-0.41016762921468064,-0.01897576396340095,0.1899477345823368,-89.34614560970921,-1.0252967468638423,82.75968313800648 +-0.41016080960237855,-0.0190180636316349,0.18997267216805636,-89.3463546934426,-1.020509274241498,82.75807730965026 +-0.4101590747164363,-0.019059550061453406,0.19000148236891357,-89.34775865752408,-1.0165223669208368,82.75779966058876 +-0.41015745857766284,-0.01910089577830211,0.19003053562596972,-89.34915753400092,-1.0125360468154398,82.75746538638656 +-0.4101601298015713,-0.01914192078747244,0.19006265521653212,-89.35174399653216,-1.0093482394083457,82.75823525956103 +-0.41016261636762724,-0.019182883892821204,0.1900950321120565,-89.3543405677802,-1.006158626505381,82.75894186721227 +-0.4101683910901124,-0.01922281172157765,0.19012910996345325,-89.35806008143686,-1.0037168301218333,82.76034396497602 +-0.4101743868446833,-0.01926307318176429,0.19016395230671904,-89.36161446370889,-1.0013022830874547,82.76179924791435 +-0.4101825582954205,-0.01930173927768998,0.19019929881477463,-89.36590728403752,-0.9994674832223656,82.76377857219131 +-0.41019066074714544,-0.01934032250203109,0.19023501649886917,-89.37014278527518,-0.997699329511584,82.7656996995426 +-0.4102000018618477,-0.019376418872990478,0.1902703281900628,-89.37483394757774,-0.9963302858740496,82.76819036981544 +-0.41020953474573557,-0.019412380364970228,0.19030597234863864,-89.37946272492425,-0.9949711785747504,82.77062686460062 +-0.41021944886425804,-0.019445598305555284,0.19034079330637962,-89.38438217195868,-0.9939818471024383,82.77369393846747 +-0.41022926468091575,-0.019478436516668654,0.1903755028020555,-89.38935565961486,-0.9929844746062826,82.77670378878923 +-0.4102389463779419,-0.0195069565267222,0.19041017812689887,-89.39421710422208,-0.9917923606265959,82.78022961304686 +-0.4102484076544787,-0.019535542137821466,0.19044412250721013,-89.39920168975414,-0.990580851532073,82.7837574292684 +-0.41025640093232046,-0.019558461572187463,0.19047728134887554,-89.4040088146748,-0.9883270890994889,82.7876928356575 +-0.41026447860636,-0.019581062915380684,0.19051091601881848,-89.40870641791527,-0.9860340986267939,82.79163175414516 +-0.41027058671404604,-0.019597751307651776,0.19054316953739853,-89.41306762501192,-0.9824348397800159,82.7957510518552 +-0.41027635682154306,-0.01961452717201498,0.19057541466262265,-89.41748104338849,-0.9788268667362429,82.79986391684768 +-0.41028056554445963,-0.019626645124126374,0.19060725848233095,-89.42138830391602,-0.974162015093434,82.80386820301042 +-0.41028441320356623,-0.01963927850087377,0.1906386621425805,-89.4254169017564,-0.9695347373220821,82.80793143010521 +-0.41028701492350106,-0.019648085517630975,0.19066984003816198,-89.42915443628178,-0.9642701194211442,82.8117039891651 +-0.4102894812617176,-0.019657341431533998,0.1907008056480223,-89.4328919131935,-0.9589478569324846,82.81553964560547 +-0.4102910072171556,-0.019663837232281323,0.19073252605994365,-89.43641199734168,-0.9533746599628189,82.81902720828026 +-0.4102924285870894,-0.019670362993186072,0.19076405668981158,-89.43992359319334,-0.947745177059819,82.82251966293211 +-0.41029290463354096,-0.019675053529172662,0.19079610204869588,-89.44355438939319,-0.9420359586033784,82.82549148326757 +-0.41029334576082,-0.01968025582080281,0.1908285662967623,-89.44711944274376,-0.9363374997387253,82.82857936052486 +-0.4102935209994111,-0.019683252163304896,0.1908628040393432,-89.45074283014377,-0.930568090236509,82.83103799461944 +-0.4102934727069998,-0.019686711611647367,0.19089631984047545,-89.45448250842996,-0.9247223886315958,82.83355470742711 +-0.410292692538212,-0.019688468984570967,0.19093172100291828,-89.45828091887832,-0.9185787857482932,82.8356730808571 +-0.4102922476590142,-0.019689730587112833,0.19096755768459822,-89.46196459986744,-0.9124532567109387,82.83773250418878 +-0.41029052028273405,-0.019688833674844253,0.1910040699277092,-89.46575986795574,-0.9055663157295983,82.8395710684395 +-0.41028877623952015,-0.019687837404915226,0.1910405737280907,-89.4695566580902,-0.8987355600084106,82.84135190755536 +-0.4102859796453842,-0.019684009738255653,0.1910781734666029,-89.47312595699856,-0.8910248205794045,82.84273378610976 +-0.4102831443805649,-0.019680499121662934,0.19111578764579804,-89.47669341581697,-0.8833135809755038,82.8441164209199 +-0.4102791650957922,-0.0196755293736334,0.191153379444647,-89.47992487612562,-0.8747933256398747,82.84498171749766 +-0.4102748685978539,-0.01967024257535066,0.19119097259989506,-89.48320685576621,-0.8662646916049187,82.84578878970395 +-0.4102696181520066,-0.019664174306640053,0.19122831437022608,-89.48598549498364,-0.857180716441498,82.84596468197164 +-0.41026405271886857,-0.01965781201512766,0.19126564532729104,-89.48881635598256,-0.8481455526509718,82.8460904576464 +-0.41025736741062835,-0.019651489467931396,0.1913030663484709,-89.49147934552055,-0.8390167593536526,82.8456846082179 +-0.41025069196459235,-0.019645095720867367,0.19134051544388486,-89.49413717836799,-0.8298309617241288,82.8452322597417 +-0.4102436565949323,-0.019638745117885645,0.1913790105688879,-89.49691523683619,-0.821191928196643,82.84419523411974 +-0.4102366723920684,-0.01963199355008123,0.19141755649069683,-89.49967979219915,-0.8125551091514602,82.84310768200946 +-0.4102293189020366,-0.019626107535959378,0.19145668315884823,-89.50290849917074,-0.804868243851983,82.84155245930363 +-0.4102219378963158,-0.01962021774021483,0.19149620463480274,-89.50607482056036,-0.7971341165098927,82.83999431864258 +-0.41021451971346395,-0.01961417257263555,0.19153681326996413,-89.50980702183237,-0.7906238566285345,82.8381484335902 +-0.41020717335034784,-0.01960811867345072,0.19157751393602687,-89.51349033126083,-0.7841215280171643,82.83630277854913 +-0.4101994039904899,-0.019601796225986734,0.19161908518090626,-89.51778522151022,-0.7788941610537277,82.83422595722608 +-0.41019195910421125,-0.01959547133471727,0.19166109166086018,-89.52196554866724,-0.7736858010969881,82.83220149717299 +-0.41018353079722747,-0.019589256176605077,0.19170307938497264,-89.52649768182076,-0.7696212942141377,82.82988083095155 +-0.41017511975843585,-0.019582931917942678,0.19174511935188798,-89.53101628335787,-0.7655587433541854,82.82750305143819 +-0.4101654747710568,-0.01957640444123529,0.1917863730031281,-89.53543320046721,-0.7624839353747204,82.82477564964834 +-0.41015578610482883,-0.019569889984330624,0.19182719613732033,-89.53995301022223,-0.7593928493032662,82.82204919268284 +-0.41014434220132134,-0.019562568073837577,0.19186624485100842,-89.54419113319194,-0.7570343705372471,82.81907918548497 +-0.4101330679666644,-0.0195556983733476,0.19190600907815755,-89.54831978007006,-0.754694207110739,82.81622525704024 +-0.41012006178416877,-0.019546376550263186,0.19194370663639415,-89.5522229663214,-0.7529666472576374,82.81324576787043 +-0.4101068586419485,-0.019537614424655167,0.19198067946777103,-89.55623753776383,-0.7512792198104984,82.81038492145991 +-0.4100919463147514,-0.019527847599750903,0.19201680456445497,-89.55979660645056,-0.7503512104012037,82.80716943095688 +-0.41007693664712197,-0.019518214305037182,0.1920522822868314,-89.56341984685159,-0.7494135952700685,82.8040110470112 +-0.4100596081847281,-0.01950959637323771,0.19208630026712614,-89.56663458864251,-0.7494450499387522,82.79958360745277 +-0.4100422513789895,-0.019501373458047602,0.1921198635247599,-89.5699218885736,-0.749465254926471,82.79520666812095 +-0.4100230453520649,-0.01949432824230994,0.19215243921014194,-89.57290548644882,-0.7504966679699863,82.78973428039413 +-0.4100036756902019,-0.019487740870443943,0.19218431695323082,-89.57596673022104,-0.7515734221035643,82.78432067631812 +-0.4099823442452841,-0.019480014789096015,0.1922153559044449,-89.57884216133415,-0.7534804783142919,82.77843784654968 +-0.40996098820139026,-0.019472717980332774,0.19224638150051332,-89.58171936171611,-0.7554449841387725,82.77261460122135 +-0.4099378651115124,-0.019463868085759076,0.19227651635075851,-89.5844250923184,-0.7583575904891191,82.766837289806 +-0.40991497501507046,-0.019455066521943565,0.19230654983525272,-89.5871410935188,-0.7612121600129932,82.76112400090668 +-0.4098904800298937,-0.019445045660625188,0.19233519733895527,-89.58990676170971,-0.7650382730036244,82.75568471429415 +-0.40986630857610207,-0.0194345337123146,0.1923642363128856,-89.59255951638134,-0.7688254975230884,82.75018836164121 +-0.4098411506343808,-0.019422213909823502,0.19239236403153964,-89.5953332724827,-0.7735188050696293,82.74526295090904 +-0.409816013321765,-0.019409877768984535,0.19242053849674853,-89.59809865001877,-0.7781564233268929,82.74033659664903 +-0.40979029250822374,-0.019395997427584924,0.19244847601022588,-89.60098018765736,-0.7837023030332091,82.73620672014238 +-0.4097647015209232,-0.019382092912936105,0.1924762224776073,-89.60392584844416,-0.7891808482472962,82.73208553400671 +-0.40973891158589,-0.019365593174854714,0.19250384773916268,-89.60703673368936,-0.7953315360032193,82.72875477659265 +-0.4097130849757996,-0.01934951609958087,0.19253145436502542,-89.61014594828566,-0.8014252216929304,82.72548825965308 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/coffee_spline.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/coffee_spline.txt new file mode 100644 index 00000000..93db0bc1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/coffee_spline.txt @@ -0,0 +1,3621 @@ +-0.447470,0.091880,1.538650,-1.676920,-1.990530,-0.753760 +-0.447610,0.091910,1.538850,-1.676525,-1.990945,-0.753995 +-0.447750,0.091940,1.539050,-1.676130,-1.991360,-0.754230 +-0.447858,0.091963,1.539205,-1.675824,-1.991682,-0.754413 +-0.447967,0.091987,1.539361,-1.675518,-1.992004,-0.754597 +-0.448050,0.092005,1.539481,-1.675284,-1.992252,-0.754744 +-0.448132,0.092024,1.539601,-1.675049,-1.992501,-0.754891 +-0.448194,0.092038,1.539690,-1.674879,-1.992692,-0.755020 +-0.448256,0.092052,1.539779,-1.674709,-1.992884,-0.755149 +-0.448298,0.092057,1.539830,-1.674613,-1.993029,-0.755283 +-0.448339,0.092062,1.539880,-1.674516,-1.993174,-0.755416 +-0.448358,0.092060,1.539891,-1.674500,-1.993274,-0.755579 +-0.448377,0.092058,1.539902,-1.674484,-1.993373,-0.755741 +-0.448371,0.092057,1.539889,-1.674532,-1.993427,-0.755949 +-0.448366,0.092056,1.539875,-1.674580,-1.993481,-0.756158 +-0.448342,0.092058,1.539850,-1.674673,-1.993504,-0.756420 +-0.448318,0.092061,1.539824,-1.674765,-1.993527,-0.756682 +-0.448283,0.092068,1.539794,-1.674885,-1.993533,-0.757001 +-0.448248,0.092074,1.539764,-1.675005,-1.993540,-0.757321 +-0.448205,0.092092,1.539743,-1.675131,-1.993536,-0.757695 +-0.448161,0.092110,1.539723,-1.675256,-1.993531,-0.758070 +-0.448110,0.092144,1.539725,-1.675369,-1.993520,-0.758493 +-0.448059,0.092179,1.539727,-1.675482,-1.993508,-0.758915 +-0.448005,0.092232,1.539760,-1.675567,-1.993498,-0.759379 +-0.447952,0.092284,1.539793,-1.675651,-1.993487,-0.759842 +-0.447897,0.092358,1.539864,-1.675695,-1.993483,-0.760339 +-0.447843,0.092432,1.539935,-1.675738,-1.993478,-0.760837 +-0.447790,0.092524,1.540039,-1.675744,-1.993486,-0.761371 +-0.447738,0.092616,1.540142,-1.675749,-1.993493,-0.761906 +-0.447694,0.092718,1.540267,-1.675725,-1.993527,-0.762482 +-0.447650,0.092820,1.540392,-1.675701,-1.993561,-0.763058 +-0.447619,0.092926,1.540529,-1.675655,-1.993631,-0.763680 +-0.447588,0.093032,1.540666,-1.675610,-1.993701,-0.764301 +-0.447569,0.093141,1.540814,-1.675547,-1.993806,-0.764970 +-0.447551,0.093250,1.540961,-1.675483,-1.993912,-0.765639 +-0.447544,0.093362,1.541117,-1.675407,-1.994051,-0.766359 +-0.447536,0.093475,1.541273,-1.675330,-1.994190,-0.767078 +-0.447540,0.093585,1.541430,-1.675252,-1.994365,-0.767852 +-0.447544,0.093696,1.541586,-1.675173,-1.994539,-0.768626 +-0.447558,0.093804,1.541742,-1.675096,-1.994749,-0.769453 +-0.447572,0.093912,1.541897,-1.675019,-1.994959,-0.770280 +-0.447592,0.094021,1.542061,-1.674937,-1.995196,-0.771156 +-0.447612,0.094131,1.542224,-1.674856,-1.995433,-0.772031 +-0.447637,0.094244,1.542398,-1.674767,-1.995694,-0.772954 +-0.447661,0.094356,1.542572,-1.674678,-1.995955,-0.773877 +-0.447688,0.094465,1.542742,-1.674604,-1.996239,-0.774856 +-0.447715,0.094574,1.542912,-1.674530,-1.996523,-0.775836 +-0.447742,0.094671,1.543061,-1.674498,-1.996832,-0.776896 +-0.447768,0.094767,1.543210,-1.674467,-1.997141,-0.777955 +-0.447797,0.094846,1.543334,-1.674482,-1.997484,-0.779107 +-0.447825,0.094925,1.543457,-1.674497,-1.997826,-0.780258 +-0.447862,0.094980,1.543551,-1.674552,-1.998217,-0.781503 +-0.447898,0.095035,1.543646,-1.674608,-1.998608,-0.782747 +-0.447950,0.095057,1.543703,-1.674703,-1.999065,-0.784084 +-0.448002,0.095079,1.543760,-1.674798,-1.999522,-0.785422 +-0.448075,0.095063,1.543777,-1.674930,-2.000056,-0.786850 +-0.448147,0.095046,1.543793,-1.675062,-2.000591,-0.788279 +-0.448237,0.094996,1.543779,-1.675222,-2.001197,-0.789794 +-0.448327,0.094945,1.543764,-1.675382,-2.001803,-0.791310 +-0.448430,0.094866,1.543728,-1.675565,-2.002472,-0.792908 +-0.448533,0.094788,1.543692,-1.675747,-2.003141,-0.794507 +-0.448650,0.094680,1.543635,-1.675952,-2.003874,-0.796189 +-0.448768,0.094571,1.543579,-1.676157,-2.004607,-0.797870 +-0.448895,0.094436,1.543502,-1.676388,-2.005394,-0.799647 +-0.449023,0.094301,1.543425,-1.676619,-2.006181,-0.801423 +-0.449152,0.094144,1.543331,-1.676882,-2.007007,-0.803308 +-0.449281,0.093987,1.543237,-1.677146,-2.007832,-0.805192 +-0.449411,0.093809,1.543125,-1.677445,-2.008692,-0.807188 +-0.449540,0.093631,1.543014,-1.677745,-2.009551,-0.809183 +-0.449673,0.093429,1.542884,-1.678079,-2.010452,-0.811288 +-0.449806,0.093227,1.542753,-1.678414,-2.011352,-0.813392 +-0.449947,0.092998,1.542604,-1.678783,-2.012302,-0.815604 +-0.450088,0.092768,1.542455,-1.679152,-2.013251,-0.817815 +-0.450237,0.092508,1.542282,-1.679564,-2.014247,-0.820133 +-0.450385,0.092249,1.542110,-1.679976,-2.015244,-0.822452 +-0.450539,0.091959,1.541912,-1.680441,-2.016281,-0.824884 +-0.450693,0.091670,1.541713,-1.680906,-2.017319,-0.827316 +-0.450858,0.091348,1.541489,-1.681419,-2.018411,-0.829860 +-0.451023,0.091026,1.541265,-1.681933,-2.019502,-0.832405 +-0.451209,0.090670,1.541020,-1.682481,-2.020664,-0.835054 +-0.451395,0.090314,1.540776,-1.683029,-2.021827,-0.837704 +-0.451605,0.089921,1.540505,-1.683615,-2.023067,-0.840457 +-0.451815,0.089527,1.540235,-1.684202,-2.024308,-0.843210 +-0.452048,0.089097,1.539935,-1.684830,-2.025622,-0.846059 +-0.452281,0.088666,1.539636,-1.685459,-2.026936,-0.848907 +-0.452533,0.088210,1.539327,-1.686108,-2.028309,-0.851831 +-0.452785,0.087754,1.539019,-1.686757,-2.029682,-0.854756 +-0.453052,0.087290,1.538733,-1.687391,-2.031102,-0.857730 +-0.453319,0.086825,1.538447,-1.688024,-2.032521,-0.860704 +-0.453600,0.086361,1.538201,-1.688622,-2.033978,-0.863710 +-0.453881,0.085897,1.537954,-1.689219,-2.035435,-0.866715 +-0.454172,0.085435,1.537743,-1.689787,-2.036922,-0.869750 +-0.454463,0.084973,1.537532,-1.690355,-2.038410,-0.872785 +-0.454765,0.084512,1.537350,-1.690899,-2.039928,-0.875851 +-0.455067,0.084052,1.537167,-1.691444,-2.041446,-0.878918 +-0.455380,0.083593,1.537006,-1.691972,-2.042996,-0.882013 +-0.455694,0.083134,1.536845,-1.692500,-2.044546,-0.885108 +-0.456018,0.082669,1.536686,-1.693033,-2.046126,-0.888231 +-0.456342,0.082204,1.536527,-1.693565,-2.047706,-0.891355 +-0.456675,0.081726,1.536349,-1.694124,-2.049318,-0.894500 +-0.457009,0.081247,1.536172,-1.694683,-2.050930,-0.897646 +-0.457355,0.080752,1.535970,-1.695270,-2.052576,-0.900790 +-0.457701,0.080256,1.535768,-1.695857,-2.054222,-0.903935 +-0.458057,0.079751,1.535552,-1.696460,-2.055893,-0.907047 +-0.458413,0.079245,1.535337,-1.697062,-2.057565,-0.910159 +-0.458769,0.078740,1.535119,-1.697681,-2.059248,-0.913237 +-0.459126,0.078235,1.534902,-1.698299,-2.060931,-0.916315 +-0.459476,0.077738,1.534692,-1.698937,-2.062627,-0.919373 +-0.459827,0.077241,1.534482,-1.699575,-2.064322,-0.922431 +-0.460169,0.076756,1.534285,-1.700226,-2.066027,-0.925459 +-0.460512,0.076272,1.534088,-1.700876,-2.067733,-0.928487 +-0.460845,0.075797,1.533891,-1.701545,-2.069443,-0.931460 +-0.461178,0.075322,1.533693,-1.702214,-2.071154,-0.934434 +-0.461499,0.074848,1.533472,-1.702922,-2.072861,-0.937335 +-0.461819,0.074374,1.533251,-1.703631,-2.074568,-0.940236 +-0.462122,0.073898,1.532989,-1.704405,-2.076257,-0.943051 +-0.462424,0.073423,1.532726,-1.705178,-2.077946,-0.945866 +-0.462705,0.072945,1.532413,-1.706028,-2.079609,-0.948581 +-0.462985,0.072466,1.532099,-1.706879,-2.081272,-0.951296 +-0.463247,0.071986,1.531734,-1.707804,-2.082910,-0.953905 +-0.463508,0.071505,1.531368,-1.708728,-2.084547,-0.956513 +-0.463751,0.071026,1.530955,-1.709719,-2.086161,-0.959016 +-0.463994,0.070546,1.530542,-1.710710,-2.087775,-0.961518 +-0.464226,0.070065,1.530082,-1.711758,-2.089380,-0.963919 +-0.464458,0.069584,1.529622,-1.712805,-2.090985,-0.966319 +-0.464693,0.069090,1.529106,-1.713898,-2.092609,-0.968619 +-0.464927,0.068596,1.528590,-1.714992,-2.094234,-0.970918 +-0.465166,0.068089,1.528019,-1.716124,-2.095881,-0.973117 +-0.465405,0.067581,1.527448,-1.717256,-2.097528,-0.975315 +-0.465640,0.067072,1.526836,-1.718417,-2.099179,-0.977404 +-0.465876,0.066562,1.526225,-1.719578,-2.100830,-0.979494 +-0.466102,0.066059,1.525584,-1.720761,-2.102473,-0.981462 +-0.466329,0.065556,1.524943,-1.721943,-2.104116,-0.983431 +-0.466543,0.065063,1.524277,-1.723145,-2.105742,-0.985269 +-0.466757,0.064570,1.523610,-1.724347,-2.107369,-0.987107 +-0.466949,0.064100,1.522934,-1.725561,-2.108957,-0.988810 +-0.467141,0.063630,1.522258,-1.726774,-2.110545,-0.990513 +-0.467298,0.063206,1.521601,-1.727979,-2.112066,-0.992071 +-0.467455,0.062782,1.520945,-1.729184,-2.113587,-0.993630 +-0.467566,0.062418,1.520325,-1.730376,-2.115020,-0.995028 +-0.467678,0.062054,1.519705,-1.731567,-2.116453,-0.996427 +-0.467739,0.061759,1.519130,-1.732741,-2.117787,-0.997660 +-0.467801,0.061463,1.518556,-1.733915,-2.119121,-0.998892 +-0.467813,0.061237,1.518026,-1.735074,-2.120358,-0.999965 +-0.467824,0.061011,1.517496,-1.736233,-2.121596,-1.001037 +-0.467786,0.060846,1.516988,-1.737408,-2.122741,-1.001963 +-0.467748,0.060680,1.516479,-1.738584,-2.123887,-1.002888 +-0.467667,0.060556,1.515964,-1.739805,-2.124961,-1.003677 +-0.467587,0.060433,1.515448,-1.741026,-2.126034,-1.004467 +-0.467479,0.060331,1.514900,-1.742309,-2.127070,-1.005132 +-0.467371,0.060230,1.514351,-1.743592,-2.128106,-1.005797 +-0.467239,0.060137,1.513749,-1.744961,-2.129118,-1.006356 +-0.467108,0.060044,1.513146,-1.746330,-2.130130,-1.006916 +-0.466952,0.059960,1.512491,-1.747786,-2.131117,-1.007382 +-0.466797,0.059876,1.511835,-1.749243,-2.132105,-1.007849 +-0.466627,0.059789,1.511119,-1.750785,-2.133090,-1.008237 +-0.466458,0.059702,1.510404,-1.752327,-2.134076,-1.008625 +-0.466284,0.059598,1.509613,-1.753960,-2.135082,-1.008961 +-0.466110,0.059494,1.508822,-1.755592,-2.136088,-1.009298 +-0.465931,0.059373,1.507967,-1.757299,-2.137117,-1.009599 +-0.465753,0.059252,1.507112,-1.759005,-2.138145,-1.009900 +-0.465568,0.059116,1.506198,-1.760771,-2.139203,-1.010168 +-0.465384,0.058979,1.505284,-1.762537,-2.140261,-1.010435 +-0.465183,0.058825,1.504301,-1.764377,-2.141347,-1.010672 +-0.464982,0.058670,1.503318,-1.766216,-2.142432,-1.010910 +-0.464760,0.058499,1.502268,-1.768120,-2.143523,-1.011120 +-0.464538,0.058327,1.501219,-1.770024,-2.144613,-1.011331 +-0.464287,0.058158,1.500144,-1.771943,-2.145670,-1.011516 +-0.464035,0.057989,1.499068,-1.773862,-2.146726,-1.011701 +-0.463730,0.057864,1.498024,-1.775742,-2.147700,-1.011853 +-0.463424,0.057739,1.496980,-1.777623,-2.148674,-1.012004 +-0.463047,0.057686,1.496006,-1.779430,-2.149527,-1.012114 +-0.462669,0.057632,1.495032,-1.781237,-2.150379,-1.012223 +-0.462213,0.057656,1.494138,-1.782958,-2.151087,-1.012291 +-0.461758,0.057679,1.493245,-1.784678,-2.151794,-1.012359 +-0.461221,0.057785,1.492444,-1.786294,-2.152336,-1.012377 +-0.460683,0.057890,1.491644,-1.787910,-2.152878,-1.012395 +-0.460068,0.058077,1.490948,-1.789401,-2.153252,-1.012350 +-0.459452,0.058265,1.490251,-1.790892,-2.153626,-1.012306 +-0.458774,0.058518,1.489646,-1.792256,-2.153855,-1.012200 +-0.458095,0.058771,1.489040,-1.793620,-2.154084,-1.012095 +-0.457368,0.059066,1.488500,-1.794874,-2.154190,-1.011937 +-0.456640,0.059361,1.487960,-1.796128,-2.154296,-1.011779 +-0.455871,0.059687,1.487473,-1.797282,-2.154287,-1.011573 +-0.455101,0.060013,1.486985,-1.798436,-2.154279,-1.011367 +-0.454292,0.060361,1.486542,-1.799499,-2.154163,-1.011124 +-0.453484,0.060709,1.486099,-1.800562,-2.154048,-1.010882 +-0.452645,0.061057,1.485671,-1.801558,-2.153843,-1.010621 +-0.451807,0.061406,1.485244,-1.802554,-2.153638,-1.010359 +-0.450945,0.061736,1.484803,-1.803511,-2.153351,-1.010094 +-0.450083,0.062066,1.484362,-1.804469,-2.153064,-1.009829 +-0.449196,0.062375,1.483901,-1.805398,-2.152689,-1.009572 +-0.448309,0.062684,1.483439,-1.806327,-2.152314,-1.009314 +-0.447397,0.062980,1.482971,-1.807214,-2.151843,-1.009065 +-0.446486,0.063277,1.482504,-1.808101,-2.151373,-1.008817 +-0.445543,0.063576,1.482056,-1.808922,-2.150789,-1.008571 +-0.444600,0.063876,1.481609,-1.809743,-2.150205,-1.008325 +-0.443614,0.064203,1.481214,-1.810472,-2.149475,-1.008074 +-0.442627,0.064529,1.480820,-1.811202,-2.148746,-1.007824 +-0.441585,0.064901,1.480507,-1.811815,-2.147843,-1.007563 +-0.440543,0.065274,1.480194,-1.812429,-2.146939,-1.007301 +-0.439440,0.065699,1.479975,-1.812914,-2.145848,-1.007025 +-0.438337,0.066125,1.479757,-1.813398,-2.144756,-1.006749 +-0.437171,0.066611,1.479646,-1.813742,-2.143465,-1.006453 +-0.436005,0.067097,1.479535,-1.814086,-2.142174,-1.006157 +-0.434759,0.067656,1.479549,-1.814273,-2.140649,-1.005836 +-0.433514,0.068215,1.479563,-1.814460,-2.139124,-1.005515 +-0.432167,0.068858,1.479713,-1.814476,-2.137323,-1.005170 +-0.430819,0.069501,1.479864,-1.814492,-2.135522,-1.004825 +-0.429372,0.070222,1.480147,-1.814335,-2.133447,-1.004472 +-0.427925,0.070943,1.480430,-1.814179,-2.131372,-1.004119 +-0.426383,0.071743,1.480851,-1.813851,-2.129029,-1.003775 +-0.424841,0.072542,1.481271,-1.813524,-2.126686,-1.003430 +-0.423190,0.073433,1.481844,-1.813031,-2.124044,-1.003103 +-0.421540,0.074324,1.482417,-1.812538,-2.121403,-1.002775 +-0.419784,0.075309,1.483150,-1.811879,-2.118468,-1.002468 +-0.418028,0.076293,1.483883,-1.811221,-2.115533,-1.002161 +-0.416189,0.077358,1.484771,-1.810391,-2.112346,-1.001880 +-0.414349,0.078422,1.485660,-1.809561,-2.109159,-1.001599 +-0.412444,0.079550,1.486692,-1.808565,-2.105759,-1.001348 +-0.410539,0.080678,1.487724,-1.807569,-2.102360,-1.001097 +-0.408592,0.081851,1.488886,-1.806411,-2.098796,-1.000872 +-0.406644,0.083024,1.490047,-1.805254,-2.095233,-1.000646 +-0.404677,0.084225,1.491321,-1.803941,-2.091554,-1.000441 +-0.402710,0.085425,1.492596,-1.802629,-2.087876,-1.000237 +-0.400735,0.086634,1.493959,-1.801186,-2.084114,-1.000051 +-0.398759,0.087844,1.495323,-1.799743,-2.080352,-0.999865 +-0.396785,0.089045,1.496747,-1.798204,-2.076531,-0.999697 +-0.394810,0.090246,1.498171,-1.796664,-2.072710,-0.999530 +-0.392841,0.091427,1.499634,-1.795063,-2.068846,-0.999386 +-0.390872,0.092608,1.501097,-1.793461,-2.064982,-0.999243 +-0.388906,0.093760,1.502577,-1.791834,-2.061081,-0.999143 +-0.386940,0.094911,1.504056,-1.790207,-2.057180,-0.999043 +-0.384979,0.096025,1.505532,-1.788587,-2.053250,-0.999004 +-0.383018,0.097138,1.507008,-1.786967,-2.049320,-0.998965 +-0.381072,0.098204,1.508469,-1.785368,-2.045386,-0.998992 +-0.379126,0.099271,1.509931,-1.783769,-2.041451,-0.999018 +-0.377215,0.100286,1.511379,-1.782177,-2.037558,-0.999111 +-0.375304,0.101300,1.512826,-1.780585,-2.033665,-0.999203 +-0.373438,0.102266,1.514270,-1.778984,-2.029842,-0.999358 +-0.371572,0.103232,1.515713,-1.777383,-2.026019,-0.999514 +-0.369755,0.104154,1.517158,-1.775767,-2.022280,-0.999725 +-0.367938,0.105075,1.518603,-1.774152,-2.018541,-0.999936 +-0.366181,0.105950,1.520051,-1.772512,-2.014912,-1.000196 +-0.364425,0.106825,1.521500,-1.770873,-2.011283,-1.000456 +-0.362740,0.107657,1.522962,-1.769194,-2.007788,-1.000758 +-0.361056,0.108488,1.524423,-1.767516,-2.004293,-1.001060 +-0.359453,0.109274,1.525895,-1.765802,-2.000953,-1.001408 +-0.357850,0.110059,1.527366,-1.764088,-1.997612,-1.001756 +-0.356337,0.110786,1.528824,-1.762366,-1.994451,-1.002158 +-0.354825,0.111513,1.530281,-1.760644,-1.991289,-1.002560 +-0.353406,0.112169,1.531695,-1.758952,-1.988316,-1.003030 +-0.351988,0.112824,1.533110,-1.757260,-1.985343,-1.003499 +-0.350661,0.113405,1.534466,-1.755618,-1.982559,-1.004047 +-0.349334,0.113986,1.535822,-1.753977,-1.979776,-1.004596 +-0.348104,0.114501,1.537142,-1.752359,-1.977189,-1.005229 +-0.346873,0.115015,1.538461,-1.750741,-1.974603,-1.005862 +-0.345745,0.115471,1.539769,-1.749114,-1.972229,-1.006582 +-0.344617,0.115926,1.541077,-1.747488,-1.969855,-1.007303 +-0.343597,0.116317,1.542360,-1.745871,-1.967708,-1.008106 +-0.342578,0.116707,1.543642,-1.744254,-1.965561,-1.008910 +-0.341671,0.117036,1.544892,-1.742661,-1.963653,-1.009783 +-0.340765,0.117365,1.546142,-1.741068,-1.961744,-1.010656 +-0.339975,0.117640,1.547363,-1.739501,-1.960081,-1.011591 +-0.339186,0.117914,1.548585,-1.737935,-1.958418,-1.012526 +-0.338517,0.118131,1.549755,-1.736430,-1.957010,-1.013523 +-0.337848,0.118347,1.550926,-1.734924,-1.955602,-1.014520 +-0.337300,0.118497,1.552015,-1.733525,-1.954452,-1.015581 +-0.336752,0.118647,1.553104,-1.732126,-1.953302,-1.016641 +-0.336316,0.118728,1.554089,-1.730875,-1.952397,-1.017764 +-0.335881,0.118809,1.555074,-1.729623,-1.951491,-1.018887 +-0.335546,0.118820,1.555933,-1.728564,-1.950808,-1.020065 +-0.335211,0.118831,1.556792,-1.727504,-1.950124,-1.021243 +-0.334970,0.118764,1.557495,-1.726682,-1.949648,-1.022465 +-0.334729,0.118698,1.558197,-1.725859,-1.949171,-1.023687 +-0.334580,0.118546,1.558723,-1.725300,-1.948898,-1.024941 +-0.334430,0.118394,1.559249,-1.724741,-1.948625,-1.026195 +-0.334378,0.118156,1.559596,-1.724441,-1.948567,-1.027472 +-0.334326,0.117917,1.559944,-1.724141,-1.948508,-1.028750 +-0.334372,0.117591,1.560113,-1.724095,-1.948668,-1.030038 +-0.334417,0.117266,1.560282,-1.724049,-1.948828,-1.031326 +-0.334553,0.116861,1.560279,-1.724249,-1.949195,-1.032616 +-0.334689,0.116455,1.560277,-1.724449,-1.949562,-1.033907 +-0.334925,0.115976,1.560119,-1.724862,-1.950157,-1.035192 +-0.335161,0.115497,1.559961,-1.725274,-1.950752,-1.036477 +-0.335515,0.114941,1.559656,-1.725865,-1.951612,-1.037755 +-0.335869,0.114385,1.559351,-1.726457,-1.952472,-1.039032 +-0.336340,0.113754,1.558901,-1.727220,-1.953595,-1.040299 +-0.336811,0.113123,1.558452,-1.727982,-1.954717,-1.041566 +-0.337387,0.112422,1.557858,-1.728912,-1.956082,-1.042824 +-0.337964,0.111721,1.557265,-1.729841,-1.957446,-1.044081 +-0.338634,0.110954,1.556530,-1.730934,-1.959032,-1.045326 +-0.339303,0.110188,1.555794,-1.732027,-1.960618,-1.046571 +-0.340053,0.109364,1.554927,-1.733277,-1.962399,-1.047795 +-0.340803,0.108541,1.554060,-1.734527,-1.964180,-1.049019 +-0.341624,0.107673,1.553081,-1.735911,-1.966141,-1.050212 +-0.342445,0.106805,1.552102,-1.737295,-1.968101,-1.051406 +-0.343331,0.105896,1.551022,-1.738795,-1.970233,-1.052566 +-0.344216,0.104987,1.549942,-1.740296,-1.972364,-1.053726 +-0.345156,0.104034,1.548751,-1.741926,-1.974650,-1.054847 +-0.346096,0.103081,1.547559,-1.743557,-1.976935,-1.055969 +-0.347077,0.102081,1.546246,-1.745336,-1.979349,-1.057051 +-0.348058,0.101081,1.544932,-1.747116,-1.981763,-1.058132 +-0.349071,0.100034,1.543493,-1.749051,-1.984290,-1.059171 +-0.350085,0.098987,1.542054,-1.750985,-1.986817,-1.060210 +-0.351133,0.097887,1.540478,-1.753087,-1.989468,-1.061208 +-0.352181,0.096787,1.538902,-1.755190,-1.992118,-1.062207 +-0.353265,0.095631,1.537180,-1.757475,-1.994908,-1.063170 +-0.354348,0.094474,1.535458,-1.759761,-1.997698,-1.064133 +-0.355462,0.093267,1.533596,-1.762218,-2.000616,-1.065056 +-0.356576,0.092060,1.531735,-1.764676,-2.003534,-1.065980 +-0.357703,0.090822,1.529769,-1.767264,-2.006538,-1.066852 +-0.358831,0.089585,1.527804,-1.769852,-2.009543,-1.067725 +-0.359945,0.088353,1.525788,-1.772515,-2.012573,-1.068544 +-0.361060,0.087122,1.523772,-1.775179,-2.015603,-1.069362 +-0.362138,0.085924,1.521744,-1.777878,-2.018605,-1.070126 +-0.363215,0.084725,1.519716,-1.780577,-2.021608,-1.070889 +-0.364237,0.083579,1.517702,-1.783286,-2.024535,-1.071593 +-0.365258,0.082432,1.515689,-1.785995,-2.027463,-1.072297 +-0.366202,0.081355,1.513713,-1.788698,-2.030267,-1.072931 +-0.367146,0.080278,1.511736,-1.791400,-2.033072,-1.073565 +-0.368002,0.079278,1.509808,-1.794088,-2.035720,-1.074120 +-0.368857,0.078279,1.507880,-1.796775,-2.038368,-1.074674 +-0.369619,0.077358,1.506004,-1.799439,-2.040843,-1.075142 +-0.370381,0.076437,1.504128,-1.802103,-2.043319,-1.075609 +-0.371043,0.075589,1.502294,-1.804756,-2.045601,-1.075998 +-0.371705,0.074742,1.500460,-1.807408,-2.047884,-1.076386 +-0.372262,0.073961,1.498658,-1.810062,-2.049960,-1.076717 +-0.372818,0.073180,1.496855,-1.812715,-2.052036,-1.077048 +-0.373271,0.072464,1.495087,-1.815357,-2.053905,-1.077335 +-0.373725,0.071749,1.493319,-1.817998,-2.055775,-1.077622 +-0.374077,0.071099,1.491598,-1.820607,-2.057437,-1.077866 +-0.374429,0.070450,1.489877,-1.823216,-2.059100,-1.078109 +-0.374685,0.069865,1.488209,-1.825771,-2.060561,-1.078306 +-0.374942,0.069280,1.486542,-1.828327,-2.062022,-1.078503 +-0.375106,0.068762,1.484942,-1.830802,-2.063282,-1.078644 +-0.375270,0.068244,1.483343,-1.833276,-2.064542,-1.078786 +-0.375345,0.067804,1.481839,-1.835626,-2.065602,-1.078866 +-0.375420,0.067364,1.480336,-1.837976,-2.066661,-1.078945 +-0.375410,0.067011,1.478953,-1.840157,-2.067528,-1.078963 +-0.375400,0.066657,1.477570,-1.842339,-2.068396,-1.078981 +-0.375302,0.066402,1.476331,-1.844320,-2.069063,-1.078938 +-0.375205,0.066148,1.475092,-1.846302,-2.069730,-1.078896 +-0.375015,0.066009,1.474027,-1.848049,-2.070182,-1.078790 +-0.374825,0.065871,1.472962,-1.849797,-2.070635,-1.078685 +-0.374543,0.065859,1.472093,-1.851281,-2.070868,-1.078509 +-0.374262,0.065848,1.471224,-1.852765,-2.071102,-1.078332 +-0.373898,0.065956,1.470548,-1.853979,-2.071126,-1.078080 +-0.373534,0.066064,1.469872,-1.855193,-2.071150,-1.077828 +-0.373097,0.066272,1.469363,-1.856155,-2.070979,-1.077502 +-0.372661,0.066480,1.468854,-1.857117,-2.070809,-1.077177 +-0.372158,0.066771,1.468490,-1.857844,-2.070454,-1.076783 +-0.371656,0.067062,1.468127,-1.858571,-2.070098,-1.076388 +-0.371089,0.067431,1.467903,-1.859071,-2.069555,-1.075931 +-0.370522,0.067800,1.467679,-1.859570,-2.069012,-1.075473 +-0.369888,0.068250,1.467599,-1.859838,-2.068273,-1.074960 +-0.369254,0.068699,1.467519,-1.860107,-2.067533,-1.074447 +-0.368546,0.069223,1.467569,-1.860169,-2.066585,-1.073885 +-0.367839,0.069747,1.467619,-1.860232,-2.065637,-1.073323 +-0.367058,0.070334,1.467778,-1.860116,-2.064475,-1.072714 +-0.366277,0.070921,1.467936,-1.860001,-2.063314,-1.072106 +-0.365415,0.071574,1.468203,-1.859708,-2.061918,-1.071442 +-0.364553,0.072227,1.468471,-1.859415,-2.060521,-1.070779 +-0.363586,0.072964,1.468866,-1.858929,-2.058838,-1.070047 +-0.362619,0.073702,1.469261,-1.858443,-2.057154,-1.069316 +-0.361539,0.074536,1.469800,-1.857756,-2.055166,-1.068521 +-0.360459,0.075370,1.470338,-1.857068,-2.053177,-1.067726 +-0.359278,0.076291,1.471013,-1.856191,-2.050910,-1.066880 +-0.358097,0.077212,1.471687,-1.855315,-2.048643,-1.066035 +-0.356828,0.078204,1.472480,-1.854271,-2.046128,-1.065155 +-0.355560,0.079196,1.473273,-1.853228,-2.043613,-1.064275 +-0.354222,0.080244,1.474171,-1.852032,-2.040894,-1.063386 +-0.352883,0.081291,1.475069,-1.850836,-2.038174,-1.062496 +-0.351491,0.082384,1.476065,-1.849497,-2.035288,-1.061627 +-0.350098,0.083477,1.477061,-1.848157,-2.032402,-1.060759 +-0.348653,0.084610,1.478147,-1.846696,-2.029362,-1.059938 +-0.347208,0.085744,1.479233,-1.845235,-2.026322,-1.059118 +-0.345712,0.086912,1.480399,-1.843676,-2.023138,-1.058370 +-0.344216,0.088080,1.481565,-1.842117,-2.019954,-1.057622 +-0.342676,0.089282,1.482812,-1.840467,-2.016645,-1.056962 +-0.341136,0.090483,1.484059,-1.838816,-2.013337,-1.056302 +-0.339560,0.091720,1.485400,-1.837064,-2.009927,-1.055730 +-0.337985,0.092957,1.486740,-1.835311,-2.006517,-1.055159 +-0.336394,0.094221,1.488175,-1.833449,-2.003054,-1.054671 +-0.334803,0.095485,1.489609,-1.831588,-1.999591,-1.054183 +-0.333220,0.096760,1.491121,-1.829626,-1.996126,-1.053772 +-0.331637,0.098034,1.492632,-1.827664,-1.992661,-1.053361 +-0.330069,0.099310,1.494209,-1.825616,-1.989214,-1.053027 +-0.328501,0.100586,1.495785,-1.823568,-1.985767,-1.052692 +-0.326952,0.101866,1.497432,-1.821433,-1.982349,-1.052440 +-0.325403,0.103146,1.499079,-1.819299,-1.978932,-1.052187 +-0.323889,0.104422,1.500792,-1.817078,-1.975579,-1.052028 +-0.322375,0.105697,1.502505,-1.814857,-1.972227,-1.051869 +-0.320917,0.106948,1.504260,-1.812564,-1.968987,-1.051814 +-0.319460,0.108199,1.506016,-1.810271,-1.965746,-1.051759 +-0.318065,0.109417,1.507799,-1.807924,-1.962631,-1.051813 +-0.316670,0.110634,1.509583,-1.805578,-1.959516,-1.051867 +-0.315332,0.111822,1.511394,-1.803194,-1.956514,-1.052035 +-0.313993,0.113010,1.513204,-1.800809,-1.953512,-1.052202 +-0.312705,0.114168,1.515032,-1.798412,-1.950615,-1.052485 +-0.311418,0.115326,1.516859,-1.796014,-1.947718,-1.052767 +-0.310186,0.116441,1.518678,-1.793635,-1.944938,-1.053161 +-0.308954,0.117557,1.520498,-1.791256,-1.942157,-1.053554 +-0.307804,0.118613,1.522289,-1.788908,-1.939542,-1.054045 +-0.306653,0.119669,1.524080,-1.786560,-1.936927,-1.054536 +-0.305603,0.120655,1.525833,-1.784251,-1.934518,-1.055108 +-0.304553,0.121642,1.527585,-1.781942,-1.932109,-1.055681 +-0.303597,0.122559,1.529292,-1.779696,-1.929892,-1.056331 +-0.302640,0.123477,1.530999,-1.777450,-1.927675,-1.056981 +-0.301771,0.124327,1.532653,-1.775290,-1.925638,-1.057715 +-0.300902,0.125176,1.534308,-1.773130,-1.923601,-1.058450 +-0.300127,0.125948,1.535890,-1.771085,-1.921759,-1.059260 +-0.299352,0.126720,1.537473,-1.769039,-1.919916,-1.060070 +-0.298683,0.127399,1.538946,-1.767155,-1.918294,-1.060940 +-0.298014,0.128078,1.540420,-1.765271,-1.916671,-1.061811 +-0.297468,0.128646,1.541751,-1.763586,-1.915302,-1.062729 +-0.296922,0.129214,1.543081,-1.761901,-1.913933,-1.063647 +-0.296511,0.129664,1.544251,-1.760433,-1.912842,-1.064602 +-0.296099,0.130114,1.545420,-1.758966,-1.911752,-1.065556 +-0.295822,0.130441,1.546407,-1.757746,-1.910942,-1.066537 +-0.295544,0.130769,1.547395,-1.756526,-1.910133,-1.067518 +-0.295401,0.130967,1.548174,-1.755587,-1.909609,-1.068521 +-0.295257,0.131165,1.548954,-1.754648,-1.909086,-1.069524 +-0.295249,0.131233,1.549515,-1.754003,-1.908855,-1.070545 +-0.295240,0.131300,1.550076,-1.753357,-1.908625,-1.071566 +-0.295358,0.131249,1.550428,-1.752999,-1.908674,-1.072593 +-0.295476,0.131197,1.550781,-1.752641,-1.908723,-1.073619 +-0.295708,0.131037,1.550931,-1.752569,-1.909036,-1.074644 +-0.295941,0.130876,1.551081,-1.752497,-1.909348,-1.075669 +-0.296284,0.130604,1.551018,-1.752722,-1.909921,-1.076694 +-0.296627,0.130333,1.550955,-1.752947,-1.910495,-1.077719 +-0.297080,0.129947,1.550671,-1.753477,-1.911329,-1.078748 +-0.297532,0.129560,1.550386,-1.754007,-1.912163,-1.079776 +-0.298090,0.129060,1.549879,-1.754838,-1.913252,-1.080808 +-0.298647,0.128559,1.549371,-1.755669,-1.914341,-1.081840 +-0.299301,0.127952,1.548653,-1.756786,-1.915670,-1.082875 +-0.299955,0.127344,1.547934,-1.757904,-1.916999,-1.083910 +-0.300694,0.126636,1.547012,-1.759298,-1.918549,-1.084949 +-0.301432,0.125928,1.546091,-1.760692,-1.920100,-1.085987 +-0.302252,0.125118,1.544965,-1.762357,-1.921866,-1.087029 +-0.303072,0.124308,1.543839,-1.764022,-1.923633,-1.088070 +-0.303966,0.123400,1.542517,-1.765940,-1.925608,-1.089118 +-0.304861,0.122492,1.541195,-1.767859,-1.927584,-1.090165 +-0.305824,0.121495,1.539698,-1.769998,-1.929758,-1.091219 +-0.306787,0.120498,1.538201,-1.772137,-1.931932,-1.092272 +-0.307820,0.119423,1.536556,-1.774449,-1.934311,-1.093330 +-0.308853,0.118348,1.534912,-1.776762,-1.936690,-1.094388 +-0.309962,0.117209,1.533158,-1.779190,-1.939282,-1.095442 +-0.311070,0.116070,1.531404,-1.781617,-1.941874,-1.096495 +-0.312250,0.114878,1.529567,-1.784122,-1.944670,-1.097532 +-0.313430,0.113686,1.527730,-1.786627,-1.947466,-1.098568 +-0.314664,0.112453,1.525823,-1.789201,-1.950428,-1.099578 +-0.315898,0.111221,1.523915,-1.791774,-1.953390,-1.100589 +-0.317162,0.109958,1.521940,-1.794426,-1.956470,-1.101567 +-0.318426,0.108696,1.519965,-1.797078,-1.959549,-1.102546 +-0.319705,0.107401,1.517910,-1.799827,-1.962713,-1.103487 +-0.320984,0.106106,1.515854,-1.802576,-1.965876,-1.104428 +-0.322274,0.104770,1.513704,-1.805435,-1.969110,-1.105327 +-0.323564,0.103434,1.511554,-1.808295,-1.972344,-1.106226 +-0.324864,0.102056,1.509309,-1.811258,-1.975640,-1.107071 +-0.326164,0.100678,1.507064,-1.814221,-1.978937,-1.107916 +-0.327470,0.099254,1.504716,-1.817299,-1.982293,-1.108697 +-0.328777,0.097831,1.502367,-1.820378,-1.985650,-1.109477 +-0.330088,0.096355,1.499893,-1.823606,-1.989073,-1.110197 +-0.331399,0.094880,1.497420,-1.826834,-1.992495,-1.110917 +-0.332691,0.093363,1.494826,-1.830217,-1.995937,-1.111590 +-0.333984,0.091846,1.492232,-1.833600,-1.999378,-1.112264 +-0.335221,0.090319,1.489550,-1.837119,-2.002751,-1.112905 +-0.336457,0.088792,1.486868,-1.840637,-2.006124,-1.113547 +-0.337612,0.087282,1.484138,-1.844252,-2.009372,-1.114169 +-0.338767,0.085772,1.481408,-1.847866,-2.012619,-1.114792 +-0.339830,0.084302,1.478669,-1.851520,-2.015713,-1.115402 +-0.340894,0.082831,1.475931,-1.855174,-2.018806,-1.116012 +-0.341857,0.081425,1.473232,-1.858807,-2.021719,-1.116605 +-0.342820,0.080019,1.470532,-1.862440,-2.024631,-1.117197 +-0.343671,0.078707,1.467926,-1.865983,-2.027331,-1.117759 +-0.344523,0.077395,1.465321,-1.869526,-2.030032,-1.118320 +-0.345258,0.076204,1.462858,-1.872915,-2.032503,-1.118847 +-0.345994,0.075013,1.460395,-1.876304,-2.034974,-1.119373 +-0.346614,0.073957,1.458111,-1.879484,-2.037210,-1.119865 +-0.347234,0.072902,1.455827,-1.882663,-2.039447,-1.120358 +-0.347735,0.071996,1.453748,-1.885595,-2.041435,-1.120807 +-0.348237,0.071089,1.451668,-1.888526,-2.043422,-1.121256 +-0.348603,0.070352,1.449823,-1.891180,-2.045118,-1.121646 +-0.348970,0.069616,1.447979,-1.893834,-2.046814,-1.122037 +-0.349180,0.069069,1.446392,-1.896193,-2.048167,-1.122355 +-0.349391,0.068521,1.444805,-1.898553,-2.049519,-1.122673 +-0.349443,0.068163,1.443475,-1.900615,-2.050515,-1.122911 +-0.349494,0.067804,1.442145,-1.902677,-2.051510,-1.123150 +-0.349400,0.067620,1.441060,-1.904441,-2.052165,-1.123299 +-0.349305,0.067435,1.439976,-1.906205,-2.052820,-1.123447 +-0.349075,0.067420,1.439138,-1.907654,-2.053151,-1.123494 +-0.348846,0.067404,1.438301,-1.909104,-2.053482,-1.123541 +-0.348491,0.067551,1.437716,-1.910223,-2.053505,-1.123480 +-0.348137,0.067699,1.437130,-1.911342,-2.053528,-1.123420 +-0.347667,0.067995,1.436779,-1.912140,-2.053262,-1.123255 +-0.347197,0.068291,1.436427,-1.912939,-2.052995,-1.123090 +-0.346623,0.068715,1.436285,-1.913443,-2.052459,-1.122824 +-0.346049,0.069140,1.436142,-1.913947,-2.051923,-1.122559 +-0.345381,0.069677,1.436187,-1.914178,-2.051136,-1.122197 +-0.344714,0.070213,1.436232,-1.914408,-2.050349,-1.121836 +-0.343966,0.070846,1.436442,-1.914389,-2.049334,-1.121392 +-0.343218,0.071478,1.436652,-1.914370,-2.048320,-1.120948 +-0.342398,0.072190,1.437003,-1.914133,-2.047094,-1.120435 +-0.341578,0.072901,1.437354,-1.913895,-2.045868,-1.119922 +-0.340693,0.073675,1.437819,-1.913472,-2.044442,-1.119345 +-0.339807,0.074449,1.438285,-1.913050,-2.043016,-1.118768 +-0.338871,0.075266,1.438841,-1.912467,-2.041418,-1.118132 +-0.337935,0.076084,1.439397,-1.911884,-2.039820,-1.117495 +-0.336965,0.076923,1.440019,-1.911162,-2.038082,-1.116804 +-0.335995,0.077763,1.440641,-1.910441,-2.036344,-1.116114 +-0.334996,0.078613,1.441312,-1.909602,-2.034477,-1.115377 +-0.333998,0.079462,1.441983,-1.908764,-2.032610,-1.114641 +-0.332969,0.080320,1.442697,-1.907825,-2.030614,-1.113875 +-0.331941,0.081177,1.443411,-1.906885,-2.028618,-1.113109 +-0.330876,0.082048,1.444174,-1.905852,-2.026484,-1.112338 +-0.329810,0.082919,1.444937,-1.904819,-2.024350,-1.111566 +-0.328701,0.083809,1.445754,-1.903696,-2.022072,-1.110809 +-0.327591,0.084700,1.446571,-1.902573,-2.019794,-1.110053 +-0.326441,0.085609,1.447442,-1.901366,-2.017381,-1.109336 +-0.325290,0.086517,1.448313,-1.900159,-2.014968,-1.108619 +-0.324093,0.087448,1.449239,-1.898876,-2.012414,-1.107963 +-0.322895,0.088378,1.450165,-1.897594,-2.009860,-1.107307 +-0.321634,0.089354,1.451185,-1.896202,-2.007128,-1.106716 +-0.320372,0.090330,1.452204,-1.894811,-2.004396,-1.106126 +-0.319042,0.091370,1.453351,-1.893267,-2.001475,-1.105600 +-0.317711,0.092410,1.454499,-1.891723,-1.998554,-1.105075 +-0.316326,0.093508,1.455776,-1.890023,-1.995478,-1.104612 +-0.314941,0.094606,1.457053,-1.888323,-1.992402,-1.104149 +-0.313502,0.095760,1.458461,-1.886460,-1.989177,-1.103742 +-0.312064,0.096914,1.459870,-1.884597,-1.985953,-1.103335 +-0.310568,0.098128,1.461419,-1.882566,-1.982575,-1.102984 +-0.309073,0.099342,1.462968,-1.880535,-1.979198,-1.102634 +-0.307529,0.100611,1.464648,-1.878356,-1.975693,-1.102354 +-0.305985,0.101879,1.466329,-1.876178,-1.972189,-1.102073 +-0.304421,0.103175,1.468106,-1.873885,-1.968619,-1.101879 +-0.302856,0.104471,1.469884,-1.871593,-1.965049,-1.101684 +-0.301299,0.105764,1.471716,-1.869229,-1.961475,-1.101585 +-0.299743,0.107056,1.473548,-1.866865,-1.957901,-1.101485 +-0.298206,0.108334,1.475415,-1.864458,-1.954352,-1.101494 +-0.296669,0.109611,1.477281,-1.862052,-1.950803,-1.101503 +-0.295165,0.110866,1.479169,-1.859621,-1.947314,-1.101633 +-0.293661,0.112121,1.481056,-1.857190,-1.943826,-1.101763 +-0.292210,0.113340,1.482946,-1.854752,-1.940445,-1.102017 +-0.290760,0.114559,1.484836,-1.852314,-1.937064,-1.102272 +-0.289380,0.115731,1.486712,-1.849887,-1.933828,-1.102637 +-0.288000,0.116902,1.488587,-1.847461,-1.930593,-1.103002 +-0.286705,0.118017,1.490432,-1.845065,-1.927536,-1.103455 +-0.285411,0.119132,1.492277,-1.842669,-1.924480,-1.103907 +-0.284214,0.120181,1.494073,-1.840331,-1.921632,-1.104432 +-0.283018,0.121229,1.495869,-1.837993,-1.918784,-1.104956 +-0.281920,0.122206,1.497599,-1.835743,-1.916152,-1.105547 +-0.280822,0.123183,1.499329,-1.833494,-1.913520,-1.106138 +-0.279818,0.124088,1.500981,-1.831362,-1.911099,-1.106792 +-0.278814,0.124993,1.502633,-1.829231,-1.908677,-1.107447 +-0.277898,0.125823,1.504191,-1.827253,-1.906458,-1.108168 +-0.276981,0.126653,1.505749,-1.825275,-1.904239,-1.108889 +-0.276144,0.127405,1.507194,-1.823484,-1.902209,-1.109677 +-0.275307,0.128157,1.508640,-1.821693,-1.900178,-1.110466 +-0.274540,0.128828,1.509959,-1.820119,-1.898314,-1.111316 +-0.273772,0.129499,1.511277,-1.818544,-1.896451,-1.112166 +-0.273079,0.130080,1.512452,-1.817202,-1.894768,-1.113076 +-0.272386,0.130662,1.513627,-1.815861,-1.893085,-1.113986 +-0.271799,0.131133,1.514638,-1.814752,-1.891646,-1.114959 +-0.271213,0.131604,1.515650,-1.813644,-1.890206,-1.115932 +-0.270755,0.131956,1.516496,-1.812755,-1.889057,-1.116969 +-0.270298,0.132309,1.517342,-1.811865,-1.887908,-1.118005 +-0.269971,0.132555,1.518043,-1.811171,-1.887052,-1.119097 +-0.269643,0.132802,1.518744,-1.810476,-1.886196,-1.120189 +-0.269441,0.132954,1.519316,-1.809961,-1.885624,-1.121320 +-0.269239,0.133107,1.519889,-1.809446,-1.885051,-1.122450 +-0.269154,0.133167,1.520328,-1.809122,-1.884747,-1.123606 +-0.269069,0.133228,1.520767,-1.808798,-1.884443,-1.124762 +-0.269085,0.133196,1.521056,-1.808698,-1.884377,-1.125930 +-0.269101,0.133164,1.521345,-1.808597,-1.884310,-1.127099 +-0.269203,0.133036,1.521464,-1.808756,-1.884450,-1.128262 +-0.269305,0.132908,1.521583,-1.808914,-1.884590,-1.129426 +-0.269477,0.132686,1.521524,-1.809351,-1.884909,-1.130571 +-0.269650,0.132464,1.521465,-1.809787,-1.885227,-1.131715 +-0.269890,0.132150,1.521229,-1.810497,-1.885723,-1.132836 +-0.270131,0.131836,1.520993,-1.811207,-1.886220,-1.133956 +-0.270467,0.131405,1.520553,-1.812210,-1.886952,-1.135058 +-0.270802,0.130975,1.520112,-1.813212,-1.887685,-1.136159 +-0.271262,0.130395,1.519424,-1.814548,-1.888723,-1.137247 +-0.271722,0.129815,1.518735,-1.815883,-1.889762,-1.138336 +-0.272309,0.129083,1.517795,-1.817549,-1.891114,-1.139408 +-0.272896,0.128352,1.516856,-1.819216,-1.892466,-1.140480 +-0.273605,0.127480,1.515684,-1.821179,-1.894121,-1.141530 +-0.274314,0.126609,1.514513,-1.823142,-1.895776,-1.142580 +-0.275149,0.125600,1.513121,-1.825368,-1.897741,-1.143603 +-0.275985,0.124591,1.511728,-1.827595,-1.899705,-1.144627 +-0.276937,0.123456,1.510133,-1.830053,-1.901957,-1.145614 +-0.277890,0.122320,1.508537,-1.832511,-1.904210,-1.146601 +-0.278936,0.121082,1.506765,-1.835170,-1.906703,-1.147537 +-0.279982,0.119843,1.504992,-1.837830,-1.909195,-1.148472 +-0.281108,0.118515,1.503062,-1.840664,-1.911898,-1.149339 +-0.282233,0.117187,1.501132,-1.843498,-1.914602,-1.150207 +-0.283429,0.115777,1.499055,-1.846484,-1.917500,-1.150998 +-0.284626,0.114367,1.496978,-1.849470,-1.920398,-1.151790 +-0.285881,0.112883,1.494759,-1.852598,-1.923465,-1.152503 +-0.287135,0.111399,1.492540,-1.855727,-1.926531,-1.153217 +-0.288429,0.109856,1.490196,-1.858983,-1.929726,-1.153848 +-0.289722,0.108313,1.487852,-1.862239,-1.932920,-1.154478 +-0.291026,0.106735,1.485407,-1.865603,-1.936189,-1.155023 +-0.292331,0.105157,1.482962,-1.868967,-1.939457,-1.155568 +-0.293624,0.103565,1.480441,-1.872420,-1.942750,-1.156032 +-0.294916,0.101974,1.477920,-1.875873,-1.946044,-1.156495 +-0.296172,0.100389,1.475345,-1.879394,-1.949313,-1.156887 +-0.297427,0.098804,1.472771,-1.882915,-1.952583,-1.157279 +-0.298629,0.097243,1.470165,-1.886482,-1.955787,-1.157609 +-0.299830,0.095682,1.467559,-1.890049,-1.958992,-1.157939 +-0.300964,0.094158,1.464941,-1.893637,-1.962104,-1.158210 +-0.302098,0.092635,1.462324,-1.897225,-1.965216,-1.158481 +-0.303133,0.091177,1.459725,-1.900812,-1.968168,-1.158686 +-0.304168,0.089720,1.457126,-1.904398,-1.971119,-1.158890 +-0.305073,0.088355,1.454580,-1.907956,-1.973840,-1.159014 +-0.305978,0.086991,1.452034,-1.911513,-1.976562,-1.159138 +-0.306746,0.085736,1.449574,-1.914996,-1.979033,-1.159170 +-0.307515,0.084481,1.447115,-1.918479,-1.981505,-1.159202 +-0.308148,0.083354,1.444782,-1.921827,-1.983719,-1.159137 +-0.308781,0.082227,1.442450,-1.925176,-1.985934,-1.159072 +-0.309272,0.081240,1.440270,-1.928352,-1.987873,-1.158910 +-0.309764,0.080252,1.438090,-1.931528,-1.989812,-1.158748 +-0.310111,0.079408,1.436070,-1.934516,-1.991458,-1.158486 +-0.310457,0.078564,1.434051,-1.937505,-1.993105,-1.158224 +-0.310658,0.077868,1.432207,-1.940278,-1.994451,-1.157858 +-0.310859,0.077173,1.430364,-1.943052,-1.995798,-1.157492 +-0.310912,0.076640,1.428723,-1.945573,-1.996831,-1.157019 +-0.310965,0.076106,1.427082,-1.948094,-1.997864,-1.156545 +-0.310866,0.075748,1.425668,-1.950326,-1.998570,-1.155964 +-0.310768,0.075389,1.424255,-1.952558,-1.999275,-1.155383 +-0.310521,0.075210,1.423085,-1.954476,-1.999649,-1.154700 +-0.310273,0.075031,1.421915,-1.956395,-2.000023,-1.154017 +-0.309881,0.075033,1.420996,-1.957983,-2.000065,-1.153233 +-0.309490,0.075035,1.420078,-1.959571,-2.000107,-1.152450 +-0.308943,0.075230,1.419430,-1.960802,-1.999792,-1.151559 +-0.308397,0.075425,1.418783,-1.962032,-1.999476,-1.150668 +-0.307675,0.075834,1.418429,-1.962879,-1.998764,-1.149661 +-0.306953,0.076242,1.418075,-1.963725,-1.998052,-1.148654 +-0.306062,0.076859,1.418013,-1.964185,-1.996954,-1.147537 +-0.305171,0.077475,1.417951,-1.964644,-1.995856,-1.146420 +-0.304140,0.078266,1.418149,-1.964740,-1.994426,-1.145207 +-0.303110,0.079056,1.418348,-1.964835,-1.992996,-1.143994 +-0.301967,0.079990,1.418779,-1.964588,-1.991288,-1.142701 +-0.300824,0.080924,1.419210,-1.964341,-1.989579,-1.141407 +-0.299584,0.081983,1.419858,-1.963775,-1.987620,-1.140050 +-0.298343,0.083043,1.420505,-1.963210,-1.985661,-1.138693 +-0.297004,0.084215,1.421348,-1.962365,-1.983448,-1.137295 +-0.295664,0.085387,1.422191,-1.961520,-1.981235,-1.135898 +-0.294217,0.086661,1.423205,-1.960443,-1.978748,-1.134478 +-0.292770,0.087935,1.424220,-1.959366,-1.976261,-1.133059 +-0.291224,0.089297,1.425387,-1.958087,-1.973514,-1.131634 +-0.289678,0.090658,1.426555,-1.956808,-1.970768,-1.130209 +-0.288058,0.092087,1.427860,-1.955342,-1.967805,-1.128797 +-0.286437,0.093516,1.429165,-1.953876,-1.964843,-1.127384 +-0.284751,0.095004,1.430599,-1.952239,-1.961681,-1.126000 +-0.283064,0.096493,1.432033,-1.950602,-1.958520,-1.124616 +-0.281310,0.098040,1.433595,-1.948809,-1.955155,-1.123274 +-0.279555,0.099588,1.435157,-1.947016,-1.951790,-1.121932 +-0.277746,0.101185,1.436841,-1.945076,-1.948247,-1.120646 +-0.275936,0.102783,1.438525,-1.943135,-1.944704,-1.119360 +-0.274100,0.104414,1.440322,-1.941048,-1.941038,-1.118151 +-0.272264,0.106046,1.442119,-1.938961,-1.937372,-1.116942 +-0.270422,0.107698,1.444021,-1.936733,-1.933626,-1.115833 +-0.268580,0.109350,1.445923,-1.934506,-1.929880,-1.114724 +-0.266733,0.111017,1.447917,-1.932165,-1.926057,-1.113733 +-0.264886,0.112684,1.449911,-1.929824,-1.922233,-1.112742 +-0.263019,0.114363,1.451983,-1.927407,-1.918309,-1.111883 +-0.261153,0.116043,1.454055,-1.924991,-1.914384,-1.111024 +-0.259261,0.117731,1.456192,-1.922525,-1.910352,-1.110302 +-0.257368,0.119418,1.458329,-1.920060,-1.906320,-1.109581 +-0.255444,0.121115,1.460527,-1.917566,-1.902169,-1.108994 +-0.253519,0.122812,1.462725,-1.915073,-1.898018,-1.108406 +-0.251548,0.124519,1.464975,-1.912583,-1.893727,-1.107949 +-0.249578,0.126225,1.467224,-1.910092,-1.889436,-1.107493 +-0.247576,0.127921,1.469491,-1.907647,-1.885035,-1.107167 +-0.245573,0.129618,1.471758,-1.905202,-1.880635,-1.106841 +-0.243561,0.131282,1.474014,-1.902826,-1.876175,-1.106642 +-0.241550,0.132946,1.476270,-1.900450,-1.871716,-1.106444 +-0.239545,0.134575,1.478515,-1.898140,-1.867234,-1.106372 +-0.237540,0.136204,1.480760,-1.895830,-1.862752,-1.106300 +-0.235567,0.137795,1.482999,-1.893574,-1.858306,-1.106362 +-0.233594,0.139385,1.485239,-1.891317,-1.853861,-1.106424 +-0.231680,0.140932,1.487475,-1.889105,-1.849513,-1.106632 +-0.229765,0.142480,1.489710,-1.886894,-1.845165,-1.106840 +-0.227928,0.143973,1.491924,-1.884745,-1.840959,-1.107198 +-0.226091,0.145466,1.494137,-1.882596,-1.836753,-1.107555 +-0.224352,0.146884,1.496290,-1.880547,-1.832739,-1.108056 +-0.222614,0.148302,1.498444,-1.878498,-1.828724,-1.108558 +-0.220996,0.149624,1.500506,-1.876578,-1.824955,-1.109199 +-0.219378,0.150946,1.502568,-1.874658,-1.821186,-1.109841 +-0.217906,0.152160,1.504522,-1.872878,-1.817721,-1.110623 +-0.216434,0.153373,1.506475,-1.871098,-1.814255,-1.111406 +-0.215129,0.154467,1.508307,-1.869468,-1.811143,-1.112333 +-0.213824,0.155560,1.510138,-1.867838,-1.808030,-1.113261 +-0.212700,0.156520,1.511821,-1.866388,-1.805304,-1.114327 +-0.211577,0.157480,1.513503,-1.864938,-1.802578,-1.115393 +-0.210657,0.158280,1.514994,-1.863713,-1.800286,-1.116600 +-0.209737,0.159079,1.516485,-1.862488,-1.797995,-1.117806 +-0.209038,0.159698,1.517750,-1.861534,-1.796174,-1.119165 +-0.208339,0.160316,1.519016,-1.860580,-1.794353,-1.120523 +-0.207848,0.160754,1.520039,-1.859930,-1.792984,-1.122021 +-0.207356,0.161191,1.521062,-1.859281,-1.791615,-1.123519 +-0.207058,0.161443,1.521820,-1.858967,-1.790677,-1.125128 +-0.206760,0.161695,1.522578,-1.858654,-1.789738,-1.126737 +-0.206657,0.161749,1.523043,-1.858701,-1.789232,-1.128429 +-0.206555,0.161802,1.523509,-1.858749,-1.788726,-1.130121 +-0.206641,0.161654,1.523668,-1.859171,-1.788641,-1.131868 +-0.206728,0.161505,1.523826,-1.859594,-1.788555,-1.133616 +-0.206993,0.161156,1.523676,-1.860390,-1.788874,-1.135396 +-0.207259,0.160808,1.523526,-1.861186,-1.789193,-1.137176 +-0.207697,0.160261,1.523068,-1.862348,-1.789905,-1.138966 +-0.208135,0.159715,1.522609,-1.863511,-1.790616,-1.140756 +-0.208737,0.158976,1.521850,-1.865024,-1.791706,-1.142529 +-0.209340,0.158238,1.521091,-1.866537,-1.792796,-1.144303 +-0.210105,0.157315,1.520048,-1.868374,-1.794262,-1.146033 +-0.210871,0.156393,1.519005,-1.870212,-1.795728,-1.147763 +-0.211799,0.155292,1.517687,-1.872356,-1.797567,-1.149418 +-0.212727,0.154190,1.516368,-1.874500,-1.799405,-1.151074 +-0.213809,0.152918,1.514786,-1.876931,-1.801601,-1.152621 +-0.214892,0.151645,1.513203,-1.879362,-1.803798,-1.154167 +-0.216126,0.150210,1.511373,-1.882056,-1.806347,-1.155572 +-0.217360,0.148775,1.509542,-1.884750,-1.808897,-1.156978 +-0.218753,0.147169,1.507456,-1.887698,-1.811814,-1.158224 +-0.220146,0.145563,1.505370,-1.890647,-1.814730,-1.159470 +-0.221697,0.143782,1.503019,-1.893852,-1.818014,-1.160550 +-0.223249,0.142000,1.500669,-1.897056,-1.821299,-1.161629 +-0.224944,0.140049,1.498056,-1.900517,-1.824922,-1.162539 +-0.226638,0.138097,1.495444,-1.903978,-1.828545,-1.163449 +-0.228449,0.135984,1.492566,-1.907707,-1.832451,-1.164184 +-0.230259,0.133871,1.489689,-1.911436,-1.836356,-1.164920 +-0.232160,0.131599,1.486538,-1.915446,-1.840495,-1.165473 +-0.234061,0.129326,1.483387,-1.919455,-1.844634,-1.166026 +-0.236029,0.126906,1.479969,-1.923738,-1.848957,-1.166376 +-0.237997,0.124485,1.476551,-1.928020,-1.853281,-1.166727 +-0.240008,0.121942,1.472899,-1.932536,-1.857738,-1.166851 +-0.242020,0.119400,1.469248,-1.937053,-1.862195,-1.166976 +-0.244056,0.116763,1.465404,-1.941756,-1.866745,-1.166858 +-0.246093,0.114126,1.461560,-1.946460,-1.871295,-1.166740 +-0.248137,0.111415,1.457551,-1.951314,-1.875903,-1.166368 +-0.250182,0.108704,1.453543,-1.956168,-1.880510,-1.165996 +-0.252216,0.105944,1.449402,-1.961133,-1.885134,-1.165357 +-0.254251,0.103184,1.445261,-1.966097,-1.889758,-1.164717 +-0.256254,0.100415,1.441046,-1.971107,-1.894351,-1.163791 +-0.258258,0.097645,1.436831,-1.976117,-1.898943,-1.162865 +-0.260231,0.094896,1.432587,-1.981111,-1.903503,-1.161620 +-0.262204,0.092147,1.428343,-1.986106,-1.908063,-1.160375 +-0.264181,0.089421,1.424087,-1.991037,-1.912659,-1.158761 +-0.266158,0.086696,1.419830,-1.995968,-1.917254,-1.157147 +-0.268151,0.084016,1.415607,-2.000767,-1.921898,-1.155144 +-0.270143,0.081337,1.411384,-2.005567,-1.926541,-1.153140 +-0.272123,0.078746,1.407252,-2.010178,-1.931166,-1.150764 +-0.274104,0.076154,1.403120,-2.014789,-1.935791,-1.148388 +-0.276049,0.073680,1.399122,-2.019169,-1.940343,-1.145663 +-0.277994,0.071206,1.395124,-2.023549,-1.944894,-1.142937 +-0.279897,0.068881,1.391317,-2.027631,-1.949348,-1.139877 +-0.281799,0.066557,1.387510,-2.031714,-1.953802,-1.136818 +-0.283663,0.064411,1.383953,-2.035429,-1.958152,-1.133445 +-0.285526,0.062264,1.380396,-2.039144,-1.962501,-1.130073 +-0.287360,0.060305,1.377117,-2.042452,-1.966760,-1.126430 +-0.289195,0.058346,1.373838,-2.045760,-1.971018,-1.122786 +-0.291014,0.056569,1.370841,-2.048643,-1.975208,-1.118912 +-0.292833,0.054791,1.367843,-2.051527,-1.979397,-1.115037 +-0.294633,0.053194,1.365126,-2.053994,-1.983503,-1.110957 +-0.296434,0.051597,1.362408,-2.056461,-1.987610,-1.106877 +-0.298211,0.050180,1.359968,-2.058524,-1.991621,-1.102621 +-0.299988,0.048764,1.357528,-2.060587,-1.995631,-1.098365 +-0.301738,0.047537,1.355379,-2.062245,-1.999535,-1.093962 +-0.303488,0.046311,1.353230,-2.063903,-2.003438,-1.089558 +-0.305201,0.045284,1.351380,-2.065164,-2.007212,-1.085037 +-0.306915,0.044257,1.349530,-2.066425,-2.010986,-1.080517 +-0.308599,0.043415,1.347958,-2.067319,-2.014644,-1.075920 +-0.310282,0.042573,1.346386,-2.068213,-2.018302,-1.071323 +-0.311955,0.041887,1.345060,-2.068769,-2.021880,-1.066678 +-0.313628,0.041202,1.343735,-2.069325,-2.025458,-1.062033 +-0.315294,0.040664,1.342648,-2.069559,-2.028958,-1.057360 +-0.316959,0.040125,1.341560,-2.069792,-2.032459,-1.052686 +-0.318599,0.039746,1.340721,-2.069710,-2.035845,-1.048000 +-0.320240,0.039366,1.339883,-2.069627,-2.039230,-1.043313 +-0.321834,0.039151,1.339289,-2.069257,-2.042454,-1.038628 +-0.323428,0.038937,1.338696,-2.068886,-2.045678,-1.033943 +-0.324962,0.038866,1.338311,-2.068280,-2.048710,-1.029290 +-0.326497,0.038795,1.337925,-2.067674,-2.051743,-1.024638 +-0.327966,0.038845,1.337713,-2.066871,-2.054575,-1.020058 +-0.329435,0.038896,1.337502,-2.066069,-2.057406,-1.015478 +-0.330822,0.039073,1.337467,-2.065082,-2.059999,-1.011005 +-0.332209,0.039250,1.337432,-2.064095,-2.062593,-1.006531 +-0.333485,0.039585,1.337609,-2.062912,-2.064890,-1.002187 +-0.334761,0.039919,1.337786,-2.061729,-2.067187,-0.997843 +-0.335912,0.040444,1.338227,-2.060307,-2.069155,-0.993644 +-0.337062,0.040968,1.338668,-2.058884,-2.071123,-0.989445 +-0.338069,0.041715,1.339423,-2.057179,-2.072724,-0.985406 +-0.339077,0.042463,1.340178,-2.055474,-2.074325,-0.981367 +-0.339908,0.043468,1.341290,-2.053460,-2.075496,-0.977493 +-0.340739,0.044473,1.342402,-2.051445,-2.076667,-0.973620 +-0.341374,0.045755,1.343897,-2.049108,-2.077365,-0.969906 +-0.342009,0.047037,1.345392,-2.046770,-2.078062,-0.966192 +-0.342450,0.048593,1.347275,-2.044098,-2.078294,-0.962625 +-0.342892,0.050149,1.349159,-2.041426,-2.078525,-0.959057 +-0.343144,0.051991,1.351463,-2.038380,-2.078290,-0.955604 +-0.343396,0.053834,1.353766,-2.035333,-2.078054,-0.952150 +-0.343455,0.055981,1.356520,-2.031880,-2.077336,-0.948781 +-0.343513,0.058128,1.359274,-2.028426,-2.076619,-0.945412 +-0.343388,0.060543,1.362428,-2.024619,-2.075444,-0.942134 +-0.343263,0.062958,1.365583,-2.020813,-2.074269,-0.938857 +-0.342968,0.065573,1.369037,-2.016769,-2.072680,-0.935694 +-0.342673,0.068187,1.372491,-2.012725,-2.071091,-0.932531 +-0.342228,0.070933,1.376147,-2.008550,-2.069144,-0.929507 +-0.341783,0.073679,1.379803,-2.004375,-2.067196,-0.926484 +-0.341223,0.076483,1.383568,-2.000159,-2.064975,-0.923621 +-0.340663,0.079287,1.387332,-1.995942,-2.062755,-0.920759 +-0.340027,0.082087,1.391131,-1.991743,-2.060356,-0.918076 +-0.339391,0.084887,1.394929,-1.987544,-2.057956,-0.915393 +-0.338707,0.087645,1.398720,-1.983389,-2.055447,-0.912901 +-0.338024,0.090403,1.402511,-1.979235,-2.052939,-0.910409 +-0.337312,0.093089,1.406258,-1.975156,-2.050370,-0.908118 +-0.336600,0.095774,1.410004,-1.971077,-2.047802,-0.905826 +-0.335873,0.098365,1.413675,-1.967104,-2.045213,-0.903748 +-0.335147,0.100955,1.417346,-1.963131,-2.042625,-0.901670 +-0.334411,0.103447,1.420937,-1.959273,-2.040034,-0.899813 +-0.333675,0.105939,1.424528,-1.955415,-2.037444,-0.897956 +-0.332931,0.108339,1.428048,-1.951666,-2.034859,-0.896315 +-0.332186,0.110738,1.431567,-1.947917,-2.032274,-0.894674 +-0.331438,0.113042,1.435012,-1.944277,-2.029710,-0.893249 +-0.330690,0.115346,1.438457,-1.940637,-2.027145,-0.891824 +-0.329952,0.117539,1.441809,-1.937115,-2.024631,-0.890614 +-0.329213,0.119733,1.445161,-1.933593,-2.022117,-0.889403 +-0.328496,0.121810,1.448421,-1.930176,-2.019677,-0.888391 +-0.327778,0.123888,1.451682,-1.926760,-2.017238,-0.887378 +-0.327073,0.125884,1.454904,-1.923391,-2.014858,-0.886541 +-0.326368,0.127879,1.458127,-1.920022,-2.012478,-0.885704 +-0.325658,0.129837,1.461375,-1.916641,-2.010123,-0.885023 +-0.324948,0.131795,1.464623,-1.913260,-2.007768,-0.884342 +-0.324236,0.133719,1.467903,-1.909854,-2.005438,-0.883800 +-0.323523,0.135643,1.471182,-1.906449,-2.003107,-0.883258 +-0.322815,0.137523,1.474477,-1.903026,-2.000816,-0.882833 +-0.322108,0.139403,1.477773,-1.899604,-1.998525,-0.882408 +-0.321401,0.141251,1.481100,-1.896149,-1.996265,-0.882082 +-0.320694,0.143099,1.484427,-1.892694,-1.994006,-0.881756 +-0.319986,0.144927,1.487802,-1.889187,-1.991773,-0.881521 +-0.319278,0.146756,1.491178,-1.885680,-1.989541,-0.881286 +-0.318583,0.148556,1.494588,-1.882126,-1.987361,-0.881134 +-0.317888,0.150356,1.497998,-1.878572,-1.985182,-0.880982 +-0.317222,0.152108,1.501413,-1.874994,-1.983086,-0.880899 +-0.316556,0.153861,1.504829,-1.871416,-1.980989,-0.880816 +-0.315923,0.155558,1.508233,-1.867834,-1.978981,-0.880788 +-0.315290,0.157256,1.511638,-1.864252,-1.976973,-0.880761 +-0.314686,0.158896,1.515012,-1.860697,-1.975047,-0.880788 +-0.314081,0.160535,1.518386,-1.857141,-1.973121,-0.880814 +-0.313498,0.162104,1.521693,-1.853661,-1.971266,-0.880892 +-0.312915,0.163673,1.525001,-1.850181,-1.969411,-0.880970 +-0.312340,0.165175,1.528239,-1.846794,-1.967597,-0.881089 +-0.311766,0.166677,1.531476,-1.843407,-1.965784,-0.881208 +-0.311191,0.168128,1.534672,-1.840092,-1.963987,-0.881353 +-0.310617,0.169578,1.537868,-1.836778,-1.962190,-0.881498 +-0.310048,0.170975,1.541019,-1.833539,-1.960417,-0.881653 +-0.309479,0.172373,1.544171,-1.830299,-1.958644,-0.881808 +-0.308922,0.173713,1.547263,-1.827146,-1.956911,-0.881964 +-0.308365,0.175053,1.550356,-1.823993,-1.955178,-0.882119 +-0.307823,0.176332,1.553376,-1.820941,-1.953495,-0.882277 +-0.307282,0.177611,1.556396,-1.817889,-1.951812,-0.882434 +-0.306760,0.178816,1.559312,-1.814970,-1.950194,-0.882601 +-0.306239,0.180021,1.562229,-1.812052,-1.948575,-0.882767 +-0.305742,0.181142,1.565015,-1.809294,-1.947032,-0.882950 +-0.305246,0.182263,1.567801,-1.806536,-1.945489,-0.883134 +-0.304775,0.183299,1.570450,-1.803944,-1.944026,-0.883339 +-0.304304,0.184335,1.573099,-1.801352,-1.942564,-0.883545 +-0.303858,0.185289,1.575610,-1.798925,-1.941182,-0.883770 +-0.303413,0.186243,1.578121,-1.796497,-1.939800,-0.883995 +-0.302991,0.187114,1.580488,-1.794242,-1.938495,-0.884234 +-0.302570,0.187984,1.582855,-1.791986,-1.937190,-0.884474 +-0.302170,0.188774,1.585080,-1.789897,-1.935959,-0.884726 +-0.301771,0.189564,1.587304,-1.787808,-1.934729,-0.884978 +-0.301395,0.190283,1.589402,-1.785863,-1.933572,-0.885237 +-0.301018,0.191002,1.591500,-1.783917,-1.932416,-0.885496 +-0.300667,0.191657,1.593486,-1.782093,-1.931338,-0.885757 +-0.300317,0.192312,1.595471,-1.780269,-1.930261,-0.886018 +-0.299999,0.192902,1.597346,-1.778555,-1.929276,-0.886286 +-0.299681,0.193493,1.599221,-1.776841,-1.928292,-0.886553 +-0.299405,0.194009,1.600975,-1.775237,-1.927419,-0.886846 +-0.299130,0.194525,1.602729,-1.773634,-1.926545,-0.887138 +-0.298898,0.194964,1.604355,-1.772145,-1.925784,-0.887470 +-0.298667,0.195403,1.605981,-1.770656,-1.925023,-0.887801 +-0.298473,0.195770,1.607485,-1.769282,-1.924359,-0.888170 +-0.298279,0.196138,1.608989,-1.767908,-1.923695,-0.888538 +-0.298118,0.196439,1.610376,-1.766649,-1.923117,-0.888940 +-0.297957,0.196740,1.611763,-1.765390,-1.922539,-0.889341 +-0.297826,0.196978,1.613038,-1.764242,-1.922038,-0.889773 +-0.297695,0.197216,1.614312,-1.763094,-1.921537,-0.890204 +-0.297589,0.197396,1.615478,-1.762057,-1.921099,-0.890656 +-0.297483,0.197575,1.616643,-1.761019,-1.920662,-0.891108 +-0.297393,0.197702,1.617701,-1.760099,-1.920269,-0.891562 +-0.297303,0.197828,1.618758,-1.759178,-1.919876,-0.892015 +-0.297223,0.197913,1.619723,-1.758359,-1.919511,-0.892445 +-0.297143,0.197998,1.620689,-1.757539,-1.919146,-0.892874 +-0.297074,0.198051,1.621585,-1.756791,-1.918808,-0.893261 +-0.297006,0.198105,1.622481,-1.756042,-1.918471,-0.893647 +-0.296953,0.198132,1.623320,-1.755341,-1.918167,-0.893987 +-0.296901,0.198159,1.624159,-1.754639,-1.917863,-0.894326 +-0.296862,0.198166,1.624951,-1.753971,-1.917587,-0.894626 +-0.296823,0.198173,1.625744,-1.753302,-1.917311,-0.894926 +-0.296787,0.198169,1.626497,-1.752665,-1.917046,-0.895194 +-0.296751,0.198165,1.627249,-1.752029,-1.916780,-0.895462 +-0.296706,0.198157,1.627965,-1.751425,-1.916505,-0.895706 +-0.296662,0.198149,1.628680,-1.750822,-1.916230,-0.895949 +-0.296603,0.198145,1.629369,-1.750243,-1.915933,-0.896172 +-0.296544,0.198141,1.630058,-1.749665,-1.915636,-0.896395 +-0.296474,0.198139,1.630722,-1.749104,-1.915327,-0.896604 +-0.296405,0.198137,1.631386,-1.748543,-1.915018,-0.896814 +-0.296335,0.198132,1.632023,-1.747993,-1.914714,-0.897014 +-0.296264,0.198127,1.632659,-1.747443,-1.914411,-0.897215 +-0.296191,0.198120,1.633275,-1.746897,-1.914108,-0.897408 +-0.296117,0.198113,1.633891,-1.746351,-1.913805,-0.897601 +-0.296028,0.198108,1.634493,-1.745810,-1.913480,-0.897788 +-0.295939,0.198103,1.635094,-1.745269,-1.913156,-0.897975 +-0.295831,0.198100,1.635680,-1.744734,-1.912803,-0.898155 +-0.295722,0.198097,1.636267,-1.744198,-1.912450,-0.898336 +-0.295595,0.198096,1.636839,-1.743663,-1.912070,-0.898510 +-0.295469,0.198095,1.637412,-1.743128,-1.911691,-0.898684 +-0.295324,0.198096,1.637968,-1.742592,-1.911285,-0.898854 +-0.295180,0.198097,1.638525,-1.742057,-1.910879,-0.899024 +-0.295022,0.198095,1.639061,-1.741523,-1.910454,-0.899196 +-0.294865,0.198093,1.639597,-1.740989,-1.910029,-0.899369 +-0.294699,0.198079,1.640101,-1.740466,-1.909594,-0.899549 +-0.294533,0.198066,1.640605,-1.739944,-1.909160,-0.899730 +-0.294359,0.198036,1.641066,-1.739448,-1.908716,-0.899923 +-0.294186,0.198006,1.641527,-1.738952,-1.908273,-0.900117 +-0.294014,0.197954,1.641941,-1.738482,-1.907835,-0.900329 +-0.293842,0.197902,1.642355,-1.738012,-1.907398,-0.900540 +-0.293678,0.197829,1.642731,-1.737551,-1.906979,-0.900767 +-0.293515,0.197755,1.643108,-1.737090,-1.906560,-0.900994 +-0.293357,0.197674,1.643472,-1.736611,-1.906151,-0.901234 +-0.293198,0.197593,1.643837,-1.736131,-1.905743,-0.901473 +-0.293046,0.197511,1.644206,-1.735615,-1.905344,-0.901727 +-0.292893,0.197429,1.644575,-1.735098,-1.904945,-0.901982 +-0.292750,0.197343,1.644944,-1.734548,-1.904564,-0.902256 +-0.292606,0.197257,1.645312,-1.733997,-1.904184,-0.902530 +-0.292473,0.197167,1.645680,-1.733418,-1.903820,-0.902823 +-0.292339,0.197077,1.646048,-1.732838,-1.903457,-0.903116 +-0.292220,0.196982,1.646416,-1.732227,-1.903121,-0.903422 +-0.292101,0.196886,1.646783,-1.731616,-1.902785,-0.903728 +-0.292003,0.196783,1.647153,-1.730972,-1.902487,-0.904045 +-0.291905,0.196680,1.647523,-1.730327,-1.902190,-0.904362 +-0.291823,0.196571,1.647893,-1.729657,-1.901924,-0.904697 +-0.291741,0.196463,1.648263,-1.728987,-1.901659,-0.905032 +-0.291668,0.196345,1.648623,-1.728314,-1.901416,-0.905394 +-0.291595,0.196228,1.648983,-1.727640,-1.901174,-0.905757 +-0.291535,0.196095,1.649324,-1.726975,-1.900963,-0.906160 +-0.291474,0.195962,1.649664,-1.726310,-1.900752,-0.906562 +-0.291431,0.195809,1.649983,-1.725654,-1.900585,-0.907018 +-0.291388,0.195657,1.650303,-1.724997,-1.900418,-0.907473 +-0.291363,0.195481,1.650593,-1.724363,-1.900295,-0.907982 +-0.291337,0.195305,1.650884,-1.723729,-1.900172,-0.908491 +-0.291328,0.195103,1.651140,-1.723129,-1.900089,-0.909044 +-0.291319,0.194902,1.651397,-1.722528,-1.900007,-0.909597 +-0.291327,0.194679,1.651629,-1.721950,-1.899964,-0.910181 +-0.291335,0.194456,1.651862,-1.721373,-1.899921,-0.910766 +-0.291359,0.194215,1.652077,-1.720809,-1.899917,-0.911373 +-0.291384,0.193975,1.652293,-1.720245,-1.899914,-0.911980 +-0.291426,0.193717,1.652495,-1.719691,-1.899952,-0.912603 +-0.291468,0.193459,1.652696,-1.719136,-1.899990,-0.913226 +-0.291524,0.193186,1.652882,-1.718593,-1.900062,-0.913866 +-0.291580,0.192912,1.653068,-1.718051,-1.900134,-0.914506 +-0.291644,0.192624,1.653234,-1.717532,-1.900232,-0.915175 +-0.291707,0.192335,1.653400,-1.717014,-1.900330,-0.915845 +-0.291778,0.192037,1.653550,-1.716515,-1.900452,-0.916557 +-0.291848,0.191739,1.653701,-1.716015,-1.900574,-0.917269 +-0.291926,0.191442,1.653856,-1.715510,-1.900723,-0.918034 +-0.292003,0.191144,1.654010,-1.715005,-1.900871,-0.918798 +-0.292090,0.190856,1.654187,-1.714470,-1.901049,-0.919609 +-0.292177,0.190569,1.654364,-1.713935,-1.901227,-0.920420 +-0.292280,0.190284,1.654559,-1.713367,-1.901448,-0.921272 +-0.292383,0.189999,1.654754,-1.712798,-1.901668,-0.922124 +-0.292505,0.189702,1.654945,-1.712220,-1.901939,-0.923023 +-0.292627,0.189404,1.655136,-1.711641,-1.902209,-0.923922 +-0.292759,0.189088,1.655303,-1.711086,-1.902518,-0.924873 +-0.292891,0.188772,1.655470,-1.710532,-1.902826,-0.925824 +-0.293033,0.188428,1.655590,-1.710031,-1.903175,-0.926825 +-0.293176,0.188084,1.655710,-1.709530,-1.903524,-0.927826 +-0.293338,0.187695,1.655752,-1.709114,-1.903932,-0.928877 +-0.293501,0.187306,1.655794,-1.708699,-1.904341,-0.929928 +-0.293687,0.186862,1.655737,-1.708392,-1.904814,-0.931028 +-0.293872,0.186418,1.655680,-1.708086,-1.905288,-0.932127 +-0.294080,0.185918,1.655515,-1.707900,-1.905828,-0.933270 +-0.294287,0.185417,1.655349,-1.707714,-1.906368,-0.934413 +-0.294516,0.184865,1.655086,-1.707634,-1.906975,-0.935593 +-0.294745,0.184313,1.654822,-1.707554,-1.907582,-0.936773 +-0.294991,0.183724,1.654484,-1.707548,-1.908246,-0.937981 +-0.295237,0.183135,1.654145,-1.707543,-1.908911,-0.939190 +-0.295487,0.182526,1.653760,-1.707582,-1.909611,-0.940425 +-0.295738,0.181918,1.653375,-1.707621,-1.910311,-0.941659 +-0.295972,0.181314,1.652972,-1.707680,-1.911007,-0.942916 +-0.296206,0.180710,1.652570,-1.707739,-1.911703,-0.944173 +-0.296404,0.180134,1.652181,-1.707793,-1.912359,-0.945451 +-0.296603,0.179558,1.651792,-1.707847,-1.913015,-0.946729 +-0.296755,0.179027,1.651444,-1.707871,-1.913608,-0.948031 +-0.296908,0.178496,1.651097,-1.707895,-1.914201,-0.949332 +-0.297012,0.178015,1.650801,-1.707875,-1.914727,-0.950663 +-0.297117,0.177534,1.650505,-1.707855,-1.915253,-0.951994 +-0.297181,0.177095,1.650255,-1.707790,-1.915726,-0.953357 +-0.297245,0.176656,1.650005,-1.707725,-1.916200,-0.954720 +-0.297276,0.176249,1.649792,-1.707622,-1.916633,-0.956112 +-0.297306,0.175842,1.649579,-1.707518,-1.917066,-0.957504 +-0.297304,0.175464,1.649398,-1.707384,-1.917457,-0.958911 +-0.297302,0.175086,1.649217,-1.707249,-1.917848,-0.960319 +-0.297266,0.174732,1.649062,-1.707099,-1.918194,-0.961729 +-0.297231,0.174379,1.648906,-1.706948,-1.918540,-0.963138 +-0.297162,0.174047,1.648768,-1.706795,-1.918839,-0.964541 +-0.297093,0.173715,1.648630,-1.706641,-1.919139,-0.965944 +-0.296991,0.173398,1.648498,-1.706503,-1.919392,-0.967338 +-0.296890,0.173081,1.648366,-1.706364,-1.919644,-0.968732 +-0.296756,0.172770,1.648222,-1.706263,-1.919849,-0.970124 +-0.296621,0.172460,1.648078,-1.706162,-1.920053,-0.971516 +-0.296453,0.172153,1.647912,-1.706116,-1.920207,-0.972914 +-0.296285,0.171845,1.647745,-1.706070,-1.920360,-0.974312 +-0.296089,0.171537,1.647554,-1.706080,-1.920470,-0.975723 +-0.295893,0.171230,1.647362,-1.706090,-1.920580,-0.977134 +-0.295670,0.170929,1.647158,-1.706143,-1.920648,-0.978560 +-0.295447,0.170628,1.646953,-1.706196,-1.920716,-0.979986 +-0.295189,0.170345,1.646749,-1.706280,-1.920729,-0.981424 +-0.294932,0.170063,1.646545,-1.706363,-1.920743,-0.982862 +-0.294642,0.169808,1.646359,-1.706455,-1.920706,-0.984309 +-0.294353,0.169553,1.646173,-1.706547,-1.920670,-0.985756 +-0.294039,0.169331,1.646021,-1.706619,-1.920601,-0.987209 +-0.293725,0.169109,1.645869,-1.706691,-1.920533,-0.988662 +-0.293391,0.168919,1.645751,-1.706739,-1.920443,-0.990124 +-0.293057,0.168730,1.645634,-1.706787,-1.920353,-0.991585 +-0.292695,0.168579,1.645550,-1.706821,-1.920227,-0.993055 +-0.292333,0.168427,1.645466,-1.706855,-1.920101,-0.994526 +-0.291931,0.168322,1.645418,-1.706883,-1.919917,-0.996003 +-0.291529,0.168217,1.645370,-1.706911,-1.919734,-0.997481 +-0.291080,0.168160,1.645355,-1.706942,-1.919487,-0.998976 +-0.290630,0.168104,1.645341,-1.706973,-1.919239,-1.000472 +-0.290132,0.168094,1.645355,-1.707017,-1.918938,-1.002006 +-0.289633,0.168084,1.645368,-1.707062,-1.918637,-1.003541 +-0.289094,0.168112,1.645397,-1.707128,-1.918305,-1.005121 +-0.288556,0.168140,1.645426,-1.707195,-1.917974,-1.006702 +-0.288004,0.168187,1.645451,-1.707289,-1.917656,-1.008319 +-0.287451,0.168234,1.645476,-1.707384,-1.917338,-1.009936 +-0.286913,0.168282,1.645482,-1.707506,-1.917081,-1.011580 +-0.286375,0.168330,1.645488,-1.707628,-1.916824,-1.013225 +-0.285860,0.168372,1.645468,-1.707778,-1.916639,-1.014883 +-0.285346,0.168414,1.645447,-1.707929,-1.916454,-1.016542 +-0.284848,0.168453,1.645396,-1.708117,-1.916321,-1.018201 +-0.284349,0.168492,1.645345,-1.708306,-1.916188,-1.019861 +-0.283855,0.168531,1.645260,-1.708545,-1.916077,-1.021511 +-0.283360,0.168571,1.645176,-1.708785,-1.915965,-1.023161 +-0.282853,0.168613,1.645053,-1.709090,-1.915844,-1.024796 +-0.282347,0.168656,1.644930,-1.709396,-1.915723,-1.026430 +-0.281822,0.168701,1.644762,-1.709780,-1.915575,-1.028042 +-0.281296,0.168745,1.644594,-1.710164,-1.915426,-1.029654 +-0.280756,0.168785,1.644375,-1.710627,-1.915256,-1.031232 +-0.280215,0.168825,1.644155,-1.711090,-1.915085,-1.032810 +-0.279670,0.168854,1.643886,-1.711617,-1.914911,-1.034338 +-0.279126,0.168883,1.643617,-1.712144,-1.914738,-1.035867 +-0.278587,0.168895,1.643298,-1.712723,-1.914579,-1.037335 +-0.278047,0.168906,1.642979,-1.713302,-1.914420,-1.038803 +-0.277522,0.168893,1.642608,-1.713928,-1.914289,-1.040206 +-0.276996,0.168881,1.642236,-1.714554,-1.914159,-1.041610 +-0.276487,0.168842,1.641813,-1.715221,-1.914063,-1.042952 +-0.275979,0.168803,1.641390,-1.715888,-1.913967,-1.044294 +-0.275482,0.168743,1.640922,-1.716592,-1.913897,-1.045586 +-0.274986,0.168682,1.640455,-1.717296,-1.913828,-1.046878 +-0.274490,0.168609,1.639953,-1.718032,-1.913766,-1.048133 +-0.273994,0.168535,1.639450,-1.718768,-1.913704,-1.049388 +-0.273492,0.168458,1.638925,-1.719529,-1.913636,-1.050616 +-0.272989,0.168381,1.638400,-1.720291,-1.913568,-1.051845 +-0.272482,0.168303,1.637861,-1.721065,-1.913502,-1.053055 +-0.271974,0.168226,1.637322,-1.721838,-1.913436,-1.054265 +-0.271472,0.168147,1.636776,-1.722611,-1.913391,-1.055462 +-0.270970,0.168069,1.636229,-1.723385,-1.913346,-1.056660 +-0.270487,0.167984,1.635679,-1.724142,-1.913349,-1.057845 +-0.270004,0.167900,1.635129,-1.724900,-1.913352,-1.059030 +-0.269545,0.167810,1.634580,-1.725634,-1.913413,-1.060201 +-0.269087,0.167720,1.634031,-1.726367,-1.913474,-1.061371 +-0.268646,0.167629,1.633488,-1.727079,-1.913578,-1.062529 +-0.268205,0.167538,1.632944,-1.727790,-1.913682,-1.063686 +-0.267772,0.167451,1.632409,-1.728484,-1.913813,-1.064837 +-0.267340,0.167364,1.631875,-1.729178,-1.913943,-1.065988 +-0.266910,0.167280,1.631345,-1.729864,-1.914088,-1.067137 +-0.266480,0.167196,1.630816,-1.730550,-1.914233,-1.068286 +-0.266051,0.167109,1.630280,-1.731244,-1.914389,-1.069438 +-0.265622,0.167021,1.629744,-1.731937,-1.914545,-1.070590 +-0.265194,0.166925,1.629191,-1.732653,-1.914710,-1.071749 +-0.264766,0.166829,1.628639,-1.733368,-1.914874,-1.072909 +-0.264337,0.166720,1.628063,-1.734114,-1.915045,-1.074082 +-0.263909,0.166611,1.627488,-1.734861,-1.915216,-1.075255 +-0.263483,0.166485,1.626879,-1.735647,-1.915397,-1.076439 +-0.263057,0.166359,1.626271,-1.736434,-1.915578,-1.077624 +-0.262635,0.166214,1.625629,-1.737259,-1.915770,-1.078817 +-0.262213,0.166070,1.624988,-1.738084,-1.915963,-1.080009 +-0.261791,0.165911,1.624316,-1.738942,-1.916170,-1.081221 +-0.261369,0.165753,1.623644,-1.739799,-1.916376,-1.082433 +-0.260939,0.165583,1.622938,-1.740695,-1.916600,-1.083690 +-0.260509,0.165413,1.622232,-1.741590,-1.916823,-1.084947 +-0.260058,0.165242,1.621495,-1.742528,-1.917039,-1.086253 +-0.259607,0.165071,1.620758,-1.743466,-1.917255,-1.087560 +-0.259123,0.164915,1.620013,-1.744428,-1.917432,-1.088900 +-0.258639,0.164760,1.619268,-1.745391,-1.917610,-1.090240 +-0.258125,0.164632,1.618542,-1.746346,-1.917744,-1.091592 +-0.257611,0.164505,1.617815,-1.747302,-1.917878,-1.092944 +-0.257072,0.164412,1.617124,-1.748228,-1.917970,-1.094286 +-0.256533,0.164319,1.616433,-1.749154,-1.918062,-1.095629 +-0.255966,0.164267,1.615788,-1.750041,-1.918103,-1.096946 +-0.255400,0.164214,1.615144,-1.750928,-1.918144,-1.098263 +-0.254806,0.164206,1.614554,-1.751769,-1.918135,-1.099550 +-0.254213,0.164198,1.613964,-1.752610,-1.918126,-1.100837 +-0.253596,0.164232,1.613430,-1.753401,-1.918071,-1.102086 +-0.252979,0.164267,1.612896,-1.754191,-1.918016,-1.103335 +-0.252340,0.164342,1.612420,-1.754928,-1.917917,-1.104535 +-0.251702,0.164418,1.611943,-1.755665,-1.917818,-1.105736 +-0.251049,0.164531,1.611523,-1.756339,-1.917684,-1.106882 +-0.250395,0.164644,1.611104,-1.757014,-1.917551,-1.108027 +-0.249734,0.164787,1.610736,-1.757625,-1.917393,-1.109117 +-0.249072,0.164931,1.610368,-1.758236,-1.917236,-1.110207 +-0.248403,0.165097,1.610039,-1.758799,-1.917058,-1.111248 +-0.247734,0.165263,1.609710,-1.759361,-1.916881,-1.112289 +-0.247064,0.165445,1.609409,-1.759887,-1.916694,-1.113287 +-0.246393,0.165627,1.609109,-1.760412,-1.916507,-1.114286 +-0.245726,0.165815,1.608828,-1.760908,-1.916322,-1.115250 +-0.245060,0.166003,1.608547,-1.761404,-1.916138,-1.116215 +-0.244397,0.166187,1.608268,-1.761892,-1.915954,-1.117149 +-0.243734,0.166371,1.607989,-1.762380,-1.915771,-1.118083 +-0.243075,0.166539,1.607690,-1.762891,-1.915585,-1.118980 +-0.242415,0.166706,1.607391,-1.763403,-1.915399,-1.119877 +-0.241766,0.166844,1.607051,-1.763958,-1.915224,-1.120729 +-0.241118,0.166982,1.606711,-1.764513,-1.915048,-1.121581 +-0.240496,0.167080,1.606328,-1.765104,-1.914914,-1.122391 +-0.239875,0.167179,1.605945,-1.765694,-1.914781,-1.123200 +-0.239296,0.167240,1.605534,-1.766291,-1.914721,-1.123975 +-0.238717,0.167302,1.605123,-1.766888,-1.914661,-1.124750 +-0.238186,0.167337,1.604709,-1.767459,-1.914686,-1.125496 +-0.237654,0.167372,1.604295,-1.768030,-1.914712,-1.126241 +-0.237160,0.167400,1.603904,-1.768550,-1.914804,-1.126959 +-0.236665,0.167428,1.603513,-1.769070,-1.914897,-1.127677 +-0.236191,0.167470,1.603168,-1.769523,-1.915027,-1.128369 +-0.235718,0.167511,1.602823,-1.769976,-1.915158,-1.129060 +-0.235255,0.167576,1.602535,-1.770358,-1.915306,-1.129725 +-0.234792,0.167641,1.602246,-1.770741,-1.915453,-1.130391 +-0.234333,0.167731,1.602008,-1.771066,-1.915601,-1.131025 +-0.233873,0.167821,1.601770,-1.771391,-1.915749,-1.131660 +-0.233409,0.167929,1.601561,-1.771691,-1.915889,-1.132263 +-0.232944,0.168038,1.601352,-1.771991,-1.916028,-1.132865 +-0.232468,0.168158,1.601152,-1.772294,-1.916160,-1.133444 +-0.231992,0.168278,1.600952,-1.772597,-1.916292,-1.134023 +-0.231499,0.168410,1.600756,-1.772912,-1.916407,-1.134583 +-0.231006,0.168542,1.600560,-1.773226,-1.916522,-1.135144 +-0.230496,0.168690,1.600376,-1.773543,-1.916611,-1.135684 +-0.229986,0.168838,1.600193,-1.773861,-1.916700,-1.136224 +-0.229465,0.169004,1.600030,-1.774167,-1.916770,-1.136745 +-0.228944,0.169169,1.599867,-1.774474,-1.916840,-1.137265 +-0.228420,0.169352,1.599729,-1.774761,-1.916902,-1.137766 +-0.227895,0.169534,1.599591,-1.775048,-1.916963,-1.138268 +-0.227374,0.169728,1.599474,-1.775317,-1.917023,-1.138749 +-0.226852,0.169922,1.599357,-1.775586,-1.917084,-1.139229 +-0.226334,0.170124,1.599258,-1.775841,-1.917140,-1.139685 +-0.225816,0.170327,1.599158,-1.776097,-1.917197,-1.140140 +-0.225292,0.170541,1.599074,-1.776350,-1.917229,-1.140571 +-0.224767,0.170755,1.598990,-1.776602,-1.917260,-1.141001 +-0.224224,0.170987,1.598923,-1.776862,-1.917240,-1.141404 +-0.223681,0.171218,1.598856,-1.777122,-1.917219,-1.141808 +-0.223113,0.171474,1.598814,-1.777386,-1.917133,-1.142181 +-0.222545,0.171729,1.598773,-1.777650,-1.917046,-1.142555 +-0.221956,0.172008,1.598761,-1.777912,-1.916902,-1.142901 +-0.221368,0.172287,1.598749,-1.778173,-1.916757,-1.143247 +-0.220762,0.172585,1.598762,-1.778435,-1.916562,-1.143565 +-0.220156,0.172884,1.598776,-1.778697,-1.916366,-1.143884 +-0.219532,0.173202,1.598813,-1.778965,-1.916117,-1.144170 +-0.218908,0.173519,1.598849,-1.779234,-1.915868,-1.144455 +-0.218267,0.173857,1.598912,-1.779506,-1.915570,-1.144708 +-0.217626,0.174195,1.598974,-1.779779,-1.915272,-1.144961 +-0.216975,0.174548,1.599057,-1.780054,-1.914937,-1.145184 +-0.216325,0.174901,1.599141,-1.780329,-1.914603,-1.145407 +-0.215670,0.175258,1.599230,-1.780621,-1.914245,-1.145596 +-0.215015,0.175616,1.599318,-1.780913,-1.913887,-1.145786 +-0.214360,0.175973,1.599403,-1.781228,-1.913515,-1.145936 +-0.213705,0.176329,1.599487,-1.781543,-1.913142,-1.146086 +-0.213049,0.176687,1.599572,-1.781877,-1.912753,-1.146189 +-0.212392,0.177046,1.599656,-1.782211,-1.912364,-1.146292 +-0.211736,0.177413,1.599755,-1.782544,-1.911963,-1.146339 +-0.211079,0.177780,1.599854,-1.782877,-1.911561,-1.146386 +-0.210431,0.178165,1.599990,-1.783176,-1.911160,-1.146373 +-0.209782,0.178550,1.600126,-1.783476,-1.910760,-1.146360 +-0.209142,0.178955,1.600299,-1.783741,-1.910361,-1.146286 +-0.208503,0.179359,1.600473,-1.784007,-1.909961,-1.146212 +-0.207860,0.179782,1.600671,-1.784266,-1.909541,-1.146081 +-0.207217,0.180205,1.600869,-1.784525,-1.909121,-1.145949 +-0.206549,0.180652,1.601085,-1.784799,-1.908644,-1.145760 +-0.205882,0.181099,1.601301,-1.785074,-1.908166,-1.145571 +-0.205171,0.181578,1.601536,-1.785377,-1.907598,-1.145325 +-0.204460,0.182057,1.601772,-1.785679,-1.907030,-1.145079 +-0.203701,0.182568,1.602027,-1.786009,-1.906367,-1.144779 +-0.202943,0.183079,1.602282,-1.786340,-1.905704,-1.144480 +-0.202150,0.183615,1.602551,-1.786695,-1.904970,-1.144126 +-0.201356,0.184151,1.602820,-1.787051,-1.904237,-1.143773 +-0.200545,0.184701,1.603095,-1.787430,-1.903462,-1.143355 +-0.199733,0.185251,1.603371,-1.787810,-1.902688,-1.142937 +-0.198908,0.185809,1.603646,-1.788219,-1.901888,-1.142436 +-0.198082,0.186368,1.603921,-1.788629,-1.901087,-1.141935 +-0.197242,0.186930,1.604181,-1.789086,-1.900267,-1.141334 +-0.196401,0.187492,1.604442,-1.789544,-1.899448,-1.140734 +-0.195551,0.188053,1.604681,-1.790056,-1.898620,-1.140031 +-0.194700,0.188613,1.604920,-1.790569,-1.897793,-1.139327 +-0.193842,0.189174,1.605142,-1.791127,-1.896955,-1.138525 +-0.192983,0.189735,1.605364,-1.791684,-1.896118,-1.137722 +-0.192118,0.190302,1.605584,-1.792265,-1.895267,-1.136827 +-0.191252,0.190868,1.605803,-1.792845,-1.894416,-1.135931 +-0.190384,0.191444,1.606034,-1.793423,-1.893556,-1.134951 +-0.189516,0.192020,1.606264,-1.794000,-1.892696,-1.133971 +-0.188647,0.192600,1.606501,-1.794574,-1.891824,-1.132915 +-0.187779,0.193181,1.606737,-1.795148,-1.890952,-1.131859 +-0.186911,0.193758,1.606964,-1.795736,-1.890067,-1.130736 +-0.186043,0.194336,1.607191,-1.796323,-1.889182,-1.129613 +-0.185187,0.194901,1.607398,-1.796928,-1.888305,-1.128441 +-0.184332,0.195467,1.607605,-1.797532,-1.887428,-1.127269 +-0.183509,0.196009,1.607781,-1.798152,-1.886595,-1.126068 +-0.182686,0.196550,1.607956,-1.798771,-1.885763,-1.124867 +-0.181901,0.197059,1.608085,-1.799419,-1.884986,-1.123647 +-0.181116,0.197567,1.608214,-1.800067,-1.884210,-1.122428 +-0.180348,0.198048,1.608289,-1.800768,-1.883448,-1.121188 +-0.179580,0.198528,1.608364,-1.801470,-1.882687,-1.119948 +-0.178806,0.198994,1.608389,-1.802237,-1.881899,-1.118689 +-0.178032,0.199459,1.608414,-1.803005,-1.881111,-1.117431 +-0.177253,0.199914,1.608396,-1.803829,-1.880302,-1.116157 +-0.176475,0.200368,1.608379,-1.804654,-1.879493,-1.114882 +-0.175690,0.200812,1.608320,-1.805537,-1.878658,-1.113581 +-0.174906,0.201257,1.608261,-1.806420,-1.877824,-1.112280 +-0.174107,0.201696,1.608159,-1.807371,-1.876947,-1.110939 +-0.173307,0.202134,1.608056,-1.808321,-1.876070,-1.109599 +-0.172509,0.202560,1.607909,-1.809329,-1.875180,-1.108217 +-0.171710,0.202987,1.607762,-1.810336,-1.874290,-1.106835 +-0.170941,0.203390,1.607570,-1.811380,-1.873438,-1.105404 +-0.170171,0.203793,1.607377,-1.812423,-1.872586,-1.103973 +-0.169441,0.204172,1.607148,-1.813484,-1.871795,-1.102481 +-0.168712,0.204550,1.606918,-1.814545,-1.871004,-1.100988 +-0.168019,0.204911,1.606662,-1.815609,-1.870269,-1.099434 +-0.167326,0.205272,1.606406,-1.816672,-1.869533,-1.097880 +-0.166649,0.205621,1.606121,-1.817750,-1.868818,-1.096266 +-0.165972,0.205970,1.605836,-1.818828,-1.868102,-1.094651 +-0.165294,0.206309,1.605514,-1.819936,-1.867375,-1.092969 +-0.164615,0.206649,1.605193,-1.821044,-1.866648,-1.091286 +-0.163940,0.206975,1.604830,-1.822180,-1.865916,-1.089528 +-0.163265,0.207302,1.604467,-1.823316,-1.865184,-1.087770 +-0.162598,0.207610,1.604057,-1.824484,-1.864452,-1.085925 +-0.161931,0.207919,1.603647,-1.825651,-1.863721,-1.084080 +-0.161267,0.208209,1.603185,-1.826857,-1.862981,-1.082140 +-0.160604,0.208498,1.602722,-1.828063,-1.862242,-1.080199 +-0.159941,0.208772,1.602209,-1.829304,-1.861485,-1.078156 +-0.159279,0.209045,1.601696,-1.830545,-1.860728,-1.076112 +-0.158619,0.209296,1.601125,-1.831828,-1.859951,-1.073957 +-0.157958,0.209548,1.600554,-1.833111,-1.859175,-1.071802 +-0.157287,0.209774,1.599902,-1.834467,-1.858357,-1.069513 +-0.156615,0.210000,1.599250,-1.835823,-1.857538,-1.067224 +-0.155909,0.210213,1.598509,-1.837273,-1.856640,-1.064776 +-0.155203,0.210425,1.597767,-1.838723,-1.855742,-1.062327 +-0.154463,0.210632,1.596952,-1.840247,-1.854767,-1.059733 +-0.153723,0.210839,1.596137,-1.841771,-1.853791,-1.057138 +-0.152973,0.211037,1.595264,-1.843331,-1.852778,-1.054439 +-0.152224,0.211235,1.594391,-1.844892,-1.851766,-1.051739 +-0.151486,0.211421,1.593473,-1.846463,-1.850751,-1.048974 +-0.150748,0.211607,1.592556,-1.848033,-1.849736,-1.046209 +-0.150029,0.211779,1.591599,-1.849604,-1.848733,-1.043407 +-0.149311,0.211950,1.590643,-1.851174,-1.847729,-1.040606 +-0.148624,0.212107,1.589662,-1.852724,-1.846755,-1.037795 +-0.147937,0.212264,1.588681,-1.854273,-1.845781,-1.034984 +-0.147303,0.212403,1.587691,-1.855772,-1.844873,-1.032187 +-0.146669,0.212542,1.586701,-1.857270,-1.843966,-1.029391 +-0.146095,0.212660,1.585705,-1.858714,-1.843135,-1.026619 +-0.145521,0.212779,1.584708,-1.860157,-1.842304,-1.023848 +-0.144987,0.212880,1.583703,-1.861567,-1.841511,-1.021102 +-0.144453,0.212982,1.582698,-1.862976,-1.840718,-1.018356 +-0.143941,0.213071,1.581683,-1.864368,-1.839926,-1.015642 +-0.143428,0.213161,1.580668,-1.865760,-1.839134,-1.012929 +-0.142928,0.213235,1.579636,-1.867154,-1.838323,-1.010256 +-0.142428,0.213309,1.578605,-1.868548,-1.837511,-1.007584 +-0.141936,0.213361,1.577542,-1.869968,-1.836668,-1.004961 +-0.141444,0.213413,1.576480,-1.871387,-1.835825,-1.002338 +-0.140970,0.213434,1.575381,-1.872837,-1.834964,-0.999780 +-0.140496,0.213455,1.574282,-1.874286,-1.834104,-0.997222 +-0.140053,0.213431,1.573132,-1.875773,-1.833250,-0.994753 +-0.139610,0.213407,1.571983,-1.877259,-1.832395,-0.992283 +-0.139211,0.213329,1.570776,-1.878780,-1.831572,-0.989929 +-0.138812,0.213251,1.569570,-1.880301,-1.830750,-0.987574 +-0.138485,0.213122,1.568334,-1.881803,-1.830011,-0.985365 +-0.138159,0.212992,1.567098,-1.883305,-1.829272,-0.983156 +-0.137937,0.212813,1.565860,-1.884733,-1.828673,-0.981104 +-0.137715,0.212634,1.564622,-1.886162,-1.828073,-0.979053 +-0.137617,0.212401,1.563389,-1.887497,-1.827644,-0.977160 +-0.137519,0.212168,1.562156,-1.888833,-1.827215,-0.975267 +-0.137543,0.211887,1.560938,-1.890062,-1.826950,-0.973531 +-0.137567,0.211606,1.559719,-1.891292,-1.826685,-0.971795 +-0.137685,0.211299,1.558538,-1.892408,-1.826531,-0.970206 +-0.137803,0.210992,1.557356,-1.893523,-1.826378,-0.968618 +-0.137972,0.210682,1.556227,-1.894538,-1.826253,-0.967156 +-0.138140,0.210372,1.555099,-1.895553,-1.826129,-0.965695 +-0.138321,0.210073,1.554022,-1.896498,-1.825962,-0.964340 +-0.138501,0.209773,1.552944,-1.897442,-1.825796,-0.962984 +-0.138682,0.209488,1.551920,-1.898326,-1.825564,-0.961725 +-0.138864,0.209203,1.550896,-1.899210,-1.825333,-0.960465 +-0.139059,0.208927,1.549926,-1.900025,-1.825059,-0.959303 +-0.139254,0.208651,1.548955,-1.900840,-1.824784,-0.958140 +-0.139478,0.208370,1.548023,-1.901593,-1.824492,-0.957075 +-0.139702,0.208089,1.547090,-1.902347,-1.824199,-0.956010 +-0.139978,0.207788,1.546181,-1.903041,-1.823931,-0.955047 +-0.140253,0.207486,1.545272,-1.903736,-1.823662,-0.954084 +-0.140608,0.207149,1.544377,-1.904371,-1.823472,-0.953229 +-0.140963,0.206811,1.543481,-1.905006,-1.823281,-0.952373 +-0.141402,0.206436,1.542596,-1.905587,-1.823179,-0.951636 +-0.141840,0.206060,1.541711,-1.906168,-1.823078,-0.950899 +-0.142357,0.205658,1.540854,-1.906677,-1.823059,-0.950289 +-0.142874,0.205257,1.539998,-1.907186,-1.823039,-0.949679 +-0.143473,0.204840,1.539194,-1.907593,-1.823100,-0.949196 +-0.144073,0.204422,1.538391,-1.908000,-1.823161,-0.948713 +-0.144735,0.203992,1.537631,-1.908330,-1.823251,-0.948349 +-0.145398,0.203561,1.536872,-1.908660,-1.823340,-0.947984 +-0.146093,0.203130,1.536161,-1.908932,-1.823400,-0.947729 +-0.146788,0.202700,1.535451,-1.909204,-1.823460,-0.947474 +-0.147517,0.202288,1.534832,-1.909372,-1.823503,-0.947322 +-0.148245,0.201877,1.534213,-1.909539,-1.823546,-0.947170 +-0.149018,0.201486,1.533702,-1.909581,-1.823599,-0.947108 +-0.149790,0.201096,1.533191,-1.909624,-1.823652,-0.947046 +-0.150591,0.200727,1.532781,-1.909562,-1.823698,-0.947066 +-0.151392,0.200358,1.532372,-1.909500,-1.823743,-0.947086 +-0.152207,0.200008,1.532052,-1.909357,-1.823766,-0.947195 +-0.153021,0.199657,1.531733,-1.909214,-1.823790,-0.947304 +-0.153859,0.199306,1.531477,-1.909013,-1.823815,-0.947506 +-0.154697,0.198954,1.531220,-1.908813,-1.823841,-0.947708 +-0.155564,0.198594,1.531024,-1.908554,-1.823891,-0.948010 +-0.156432,0.198235,1.530827,-1.908295,-1.823941,-0.948312 +-0.157312,0.197881,1.530706,-1.907972,-1.823994,-0.948723 +-0.158192,0.197527,1.530584,-1.907649,-1.824048,-0.949133 +-0.159069,0.197176,1.530521,-1.907292,-1.824083,-0.949652 +-0.159946,0.196824,1.530457,-1.906936,-1.824118,-0.950170 +-0.160833,0.196456,1.530425,-1.906570,-1.824162,-0.950788 +-0.161719,0.196087,1.530392,-1.906205,-1.824205,-0.951406 +-0.162620,0.195699,1.530386,-1.905835,-1.824267,-0.952110 +-0.163521,0.195311,1.530380,-1.905466,-1.824328,-0.952815 +-0.164426,0.194912,1.530412,-1.905086,-1.824393,-0.953594 +-0.165331,0.194512,1.530443,-1.904706,-1.824458,-0.954374 +-0.166246,0.194102,1.530517,-1.904305,-1.824537,-0.955225 +-0.167161,0.193691,1.530590,-1.903904,-1.824616,-0.956077 +-0.168076,0.193267,1.530698,-1.903495,-1.824697,-0.956988 +-0.168992,0.192843,1.530805,-1.903086,-1.824777,-0.957900 +-0.169888,0.192409,1.530940,-1.902686,-1.824825,-0.958855 +-0.170784,0.191976,1.531075,-1.902286,-1.824872,-0.959810 +-0.171650,0.191537,1.531236,-1.901902,-1.824871,-0.960808 +-0.172517,0.191098,1.531396,-1.901517,-1.824870,-0.961806 +-0.173353,0.190652,1.531578,-1.901147,-1.824823,-0.962854 +-0.174190,0.190206,1.531760,-1.900777,-1.824776,-0.963901 +-0.175008,0.189753,1.531968,-1.900402,-1.824707,-0.965005 +-0.175826,0.189300,1.532177,-1.900027,-1.824638,-0.966109 +-0.176627,0.188852,1.532435,-1.899618,-1.824554,-0.967273 +-0.177428,0.188404,1.532693,-1.899209,-1.824471,-0.968437 +-0.178206,0.187977,1.533022,-1.898740,-1.824366,-0.969664 +-0.178983,0.187551,1.533352,-1.898270,-1.824261,-0.970891 +-0.179741,0.187152,1.533766,-1.897721,-1.824146,-0.972184 +-0.180499,0.186754,1.534179,-1.897171,-1.824031,-0.973478 +-0.181240,0.186388,1.534680,-1.896534,-1.823912,-0.974836 +-0.181980,0.186022,1.535180,-1.895897,-1.823792,-0.976195 +-0.182699,0.185689,1.535766,-1.895173,-1.823667,-0.977617 +-0.183419,0.185357,1.536353,-1.894448,-1.823541,-0.979039 +-0.184121,0.185057,1.537028,-1.893632,-1.823412,-0.980537 +-0.184823,0.184757,1.537704,-1.892816,-1.823283,-0.982036 +-0.185511,0.184488,1.538475,-1.891904,-1.823145,-0.983640 +-0.186198,0.184219,1.539245,-1.890993,-1.823007,-0.985243 +-0.186869,0.183977,1.540098,-1.890006,-1.822862,-0.986963 +-0.187540,0.183735,1.540950,-1.889019,-1.822718,-0.988682 +-0.188211,0.183503,1.541853,-1.887981,-1.822607,-0.990508 +-0.188881,0.183271,1.542756,-1.886943,-1.822497,-0.992334 +-0.189555,0.183045,1.543692,-1.885865,-1.822439,-0.994256 +-0.190229,0.182818,1.544629,-1.884788,-1.822382,-0.996178 +-0.190882,0.182612,1.545603,-1.883679,-1.822343,-0.998184 +-0.191536,0.182407,1.546577,-1.882570,-1.822304,-1.000191 +-0.192164,0.182225,1.547584,-1.881436,-1.822287,-1.002277 +-0.192793,0.182043,1.548591,-1.880301,-1.822269,-1.004362 +-0.193406,0.181880,1.549620,-1.879147,-1.822298,-1.006531 +-0.194018,0.181717,1.550648,-1.877993,-1.822328,-1.008700 +-0.194607,0.181572,1.551686,-1.876838,-1.822398,-1.010959 +-0.195195,0.181428,1.552723,-1.875682,-1.822468,-1.013218 +-0.195755,0.181298,1.553755,-1.874537,-1.822577,-1.015574 +-0.196315,0.181169,1.554787,-1.873392,-1.822686,-1.017930 +-0.196853,0.181056,1.555818,-1.872243,-1.822850,-1.020384 +-0.197390,0.180943,1.556849,-1.871094,-1.823014,-1.022838 +-0.197897,0.180859,1.557892,-1.869924,-1.823219,-1.025376 +-0.198405,0.180775,1.558936,-1.868755,-1.823425,-1.027913 +-0.198862,0.180737,1.560008,-1.867556,-1.823638,-1.030515 +-0.199320,0.180699,1.561079,-1.866357,-1.823852,-1.033116 +-0.199720,0.180713,1.562187,-1.865120,-1.824058,-1.035761 +-0.200120,0.180728,1.563294,-1.863883,-1.824264,-1.038406 +-0.200454,0.180800,1.564440,-1.862607,-1.824443,-1.041075 +-0.200788,0.180872,1.565586,-1.861331,-1.824623,-1.043744 +-0.201038,0.181014,1.566781,-1.860012,-1.824742,-1.046424 +-0.201289,0.181156,1.567976,-1.858694,-1.824861,-1.049104 +-0.201449,0.181370,1.569218,-1.857339,-1.824901,-1.051787 +-0.201608,0.181584,1.570461,-1.855983,-1.824941,-1.054471 +-0.201678,0.181854,1.571723,-1.854622,-1.824899,-1.057153 +-0.201747,0.182125,1.572986,-1.853261,-1.824858,-1.059836 +-0.201732,0.182436,1.574237,-1.851926,-1.824739,-1.062514 +-0.201716,0.182746,1.575488,-1.850591,-1.824620,-1.065191 +-0.201619,0.183087,1.576712,-1.849300,-1.824426,-1.067859 +-0.201522,0.183428,1.577935,-1.848008,-1.824232,-1.070527 +-0.201342,0.183797,1.579121,-1.846770,-1.823954,-1.073180 +-0.201162,0.184165,1.580307,-1.845532,-1.823676,-1.075833 +-0.200883,0.184572,1.581463,-1.844347,-1.823282,-1.078469 +-0.200605,0.184978,1.582620,-1.843162,-1.822889,-1.081105 +-0.200198,0.185447,1.583767,-1.842026,-1.822323,-1.083718 +-0.199791,0.185915,1.584914,-1.840890,-1.821756,-1.086331 +-0.199235,0.186463,1.586070,-1.839796,-1.820979,-1.088913 +-0.198680,0.187012,1.587225,-1.838701,-1.820202,-1.091494 +-0.197987,0.187644,1.588401,-1.837628,-1.819233,-1.094031 +-0.197294,0.188276,1.589577,-1.836554,-1.818263,-1.096567 +-0.196491,0.188984,1.590775,-1.835484,-1.817153,-1.099049 +-0.195688,0.189692,1.591973,-1.834414,-1.816043,-1.101530 +-0.194803,0.190457,1.593174,-1.833356,-1.814844,-1.103952 +-0.193918,0.191222,1.594375,-1.832297,-1.813645,-1.106375 +-0.192969,0.192019,1.595543,-1.831286,-1.812396,-1.108756 +-0.192020,0.192817,1.596711,-1.830275,-1.811148,-1.111138 +-0.191009,0.193629,1.597805,-1.829365,-1.809867,-1.113512 +-0.189999,0.194440,1.598900,-1.828455,-1.808586,-1.115887 +-0.188931,0.195243,1.599882,-1.827696,-1.807282,-1.118262 +-0.187863,0.196046,1.600865,-1.826937,-1.805978,-1.120637 +-0.186751,0.196814,1.601696,-1.826369,-1.804668,-1.123001 +-0.185640,0.197582,1.602527,-1.825801,-1.803358,-1.125365 +-0.184498,0.198289,1.603173,-1.825457,-1.802061,-1.127704 +-0.183357,0.198996,1.603820,-1.825112,-1.800764,-1.130043 +-0.182197,0.199630,1.604270,-1.824995,-1.799496,-1.132339 +-0.181038,0.200264,1.604721,-1.824878,-1.798227,-1.134634 +-0.179866,0.200826,1.604991,-1.824968,-1.796991,-1.136867 +-0.178694,0.201387,1.605260,-1.825058,-1.795756,-1.139100 +-0.177517,0.201884,1.605372,-1.825321,-1.794555,-1.141253 +-0.176339,0.202381,1.605485,-1.825583,-1.793354,-1.143405 +-0.175163,0.202818,1.605465,-1.825981,-1.792194,-1.145458 +-0.173988,0.203255,1.605446,-1.826378,-1.791035,-1.147511 +-0.172825,0.203640,1.605324,-1.826870,-1.789927,-1.149454 +-0.171662,0.204026,1.605201,-1.827361,-1.788819,-1.151396 +-0.170520,0.204365,1.605001,-1.827911,-1.787772,-1.153230 +-0.169377,0.204705,1.604800,-1.828461,-1.786726,-1.155063 +-0.168254,0.205004,1.604538,-1.829052,-1.785737,-1.156793 +-0.167132,0.205303,1.604275,-1.829642,-1.784749,-1.158522 +-0.166023,0.205568,1.603960,-1.830269,-1.783799,-1.160152 +-0.164914,0.205833,1.603645,-1.830896,-1.782849,-1.161782 +-0.163815,0.206066,1.603285,-1.831560,-1.781930,-1.163322 +-0.162716,0.206299,1.602924,-1.832223,-1.781011,-1.164862 +-0.161637,0.206495,1.602517,-1.832924,-1.780136,-1.166329 +-0.160557,0.206691,1.602109,-1.833624,-1.779261,-1.167795 +-0.159499,0.206849,1.601657,-1.834364,-1.778435,-1.169195 +-0.158442,0.207006,1.601204,-1.835103,-1.777608,-1.170595 +-0.157400,0.207133,1.600720,-1.835871,-1.776814,-1.171926 +-0.156359,0.207260,1.600236,-1.836638,-1.776019,-1.173257 +-0.155328,0.207368,1.599740,-1.837415,-1.775246,-1.174516 +-0.154297,0.207476,1.599245,-1.838191,-1.774473,-1.175776 +-0.153278,0.207577,1.598759,-1.838948,-1.773723,-1.176953 +-0.152258,0.207677,1.598274,-1.839705,-1.772973,-1.178130 +-0.151260,0.207775,1.597816,-1.840416,-1.772264,-1.179214 +-0.150262,0.207873,1.597357,-1.841127,-1.771554,-1.180297 +-0.149299,0.207964,1.596923,-1.841789,-1.770910,-1.181285 +-0.148335,0.208055,1.596489,-1.842452,-1.770266,-1.182272 +-0.147404,0.208126,1.596049,-1.843101,-1.769683,-1.183170 +-0.146473,0.208197,1.595609,-1.843751,-1.769100,-1.184067 +-0.145550,0.208242,1.595135,-1.844437,-1.768534,-1.184879 +-0.144626,0.208286,1.594660,-1.845123,-1.767968,-1.185691 +-0.143692,0.208307,1.594146,-1.845864,-1.767385,-1.186433 +-0.142758,0.208329,1.593633,-1.846605,-1.766803,-1.187175 +-0.141804,0.208330,1.593080,-1.847406,-1.766202,-1.187873 +-0.140850,0.208331,1.592527,-1.848207,-1.765601,-1.188570 +-0.139872,0.208309,1.591927,-1.849076,-1.764993,-1.189247 +-0.138895,0.208287,1.591328,-1.849946,-1.764386,-1.189923 +-0.137899,0.208241,1.590686,-1.850875,-1.763789,-1.190584 +-0.136903,0.208195,1.590043,-1.851804,-1.763192,-1.191244 +-0.135898,0.208129,1.589370,-1.852775,-1.762618,-1.191883 +-0.134894,0.208064,1.588697,-1.853746,-1.762044,-1.192521 +-0.133880,0.207989,1.588011,-1.854738,-1.761486,-1.193129 +-0.132866,0.207914,1.587325,-1.855730,-1.760929,-1.193736 +-0.131824,0.207849,1.586653,-1.856720,-1.760349,-1.194296 +-0.130783,0.207784,1.585980,-1.857710,-1.759769,-1.194856 +-0.129714,0.207739,1.585338,-1.858677,-1.759163,-1.195353 +-0.128645,0.207693,1.584695,-1.859643,-1.758556,-1.195850 +-0.127567,0.207665,1.584092,-1.860563,-1.757953,-1.196286 +-0.126490,0.207637,1.583488,-1.861483,-1.757350,-1.196722 +-0.125398,0.207635,1.582932,-1.862348,-1.756743,-1.197107 +-0.124307,0.207632,1.582377,-1.863214,-1.756136,-1.197492 +-0.123180,0.207658,1.581858,-1.864052,-1.755482,-1.197831 +-0.122053,0.207684,1.581339,-1.864891,-1.754828,-1.198169 +-0.120881,0.207736,1.580844,-1.865725,-1.754106,-1.198466 +-0.119709,0.207787,1.580349,-1.866559,-1.753385,-1.198763 +-0.118511,0.207866,1.579889,-1.867365,-1.752630,-1.199035 +-0.117312,0.207945,1.579430,-1.868172,-1.751875,-1.199308 +-0.116109,0.208052,1.579019,-1.868922,-1.751131,-1.199570 +-0.114907,0.208159,1.578608,-1.869673,-1.750387,-1.199833 +-0.113703,0.208293,1.578243,-1.870368,-1.749659,-1.200085 +-0.112498,0.208427,1.577879,-1.871064,-1.748932,-1.200336 +-0.111292,0.208582,1.577549,-1.871717,-1.748219,-1.200566 +-0.110085,0.208738,1.577218,-1.872370,-1.747506,-1.200795 +-0.108891,0.208906,1.576918,-1.872976,-1.746832,-1.200998 +-0.107697,0.209075,1.576617,-1.873582,-1.746158,-1.201202 +-0.106521,0.209260,1.576354,-1.874128,-1.745529,-1.201377 +-0.105345,0.209445,1.576091,-1.874674,-1.744900,-1.201553 +-0.104158,0.209662,1.575880,-1.875161,-1.744257,-1.201694 +-0.102971,0.209880,1.575669,-1.875647,-1.743613,-1.201836 +-0.101737,0.210146,1.575519,-1.876087,-1.742887,-1.201939 +-0.100502,0.210412,1.575368,-1.876526,-1.742160,-1.202042 +-0.099212,0.210725,1.575271,-1.876934,-1.741330,-1.202112 +-0.097922,0.211038,1.575174,-1.877343,-1.740501,-1.202181 +-0.096598,0.211384,1.575115,-1.877727,-1.739603,-1.202228 +-0.095274,0.211729,1.575055,-1.878111,-1.738705,-1.202276 +-0.093949,0.212086,1.575014,-1.878474,-1.737793,-1.202319 +-0.092625,0.212443,1.574972,-1.878837,-1.736880,-1.202362 +-0.091320,0.212795,1.574931,-1.879188,-1.735985,-1.202412 +-0.090015,0.213147,1.574889,-1.879540,-1.735090,-1.202463 +-0.088741,0.213485,1.574837,-1.879885,-1.734228,-1.202525 +-0.087467,0.213822,1.574785,-1.880231,-1.733367,-1.202586 +-0.086222,0.214143,1.574720,-1.880575,-1.732534,-1.202653 +-0.084976,0.214464,1.574656,-1.880920,-1.731701,-1.202720 +-0.083742,0.214771,1.574580,-1.881266,-1.730873,-1.202782 +-0.082508,0.215078,1.574505,-1.881612,-1.730046,-1.202844 +-0.081292,0.215369,1.574420,-1.881956,-1.729229,-1.202883 +-0.080076,0.215659,1.574336,-1.882301,-1.728413,-1.202923 +-0.078894,0.215924,1.574236,-1.882645,-1.727625,-1.202920 +-0.077713,0.216189,1.574137,-1.882989,-1.726838,-1.202917 +-0.076569,0.216425,1.574022,-1.883336,-1.726075,-1.202856 +-0.075425,0.216662,1.573906,-1.883683,-1.725312,-1.202794 +-0.074307,0.216882,1.573790,-1.884024,-1.724548,-1.202662 +-0.073189,0.217102,1.573673,-1.884365,-1.723783,-1.202531 +-0.072085,0.217321,1.573574,-1.884690,-1.722993,-1.202323 +-0.070981,0.217540,1.573474,-1.885014,-1.722203,-1.202115 +-0.069889,0.217765,1.573401,-1.885318,-1.721381,-1.201827 +-0.068797,0.217990,1.573328,-1.885621,-1.720558,-1.201538 +-0.067722,0.218224,1.573288,-1.885897,-1.719712,-1.201166 +-0.066647,0.218458,1.573248,-1.886173,-1.718865,-1.200793 +-0.065602,0.218702,1.573248,-1.886412,-1.718016,-1.200334 +-0.064556,0.218947,1.573247,-1.886650,-1.717167,-1.199875 +-0.063550,0.219205,1.573294,-1.886841,-1.716335,-1.199332 +-0.062545,0.219463,1.573341,-1.887031,-1.715503,-1.198789 +-0.061572,0.219737,1.573433,-1.887184,-1.714679,-1.198159 +-0.060600,0.220012,1.573525,-1.887336,-1.713856,-1.197530 +-0.059656,0.220294,1.573643,-1.887480,-1.713035,-1.196804 +-0.058713,0.220577,1.573760,-1.887624,-1.712215,-1.196078 +-0.057809,0.220855,1.573882,-1.887783,-1.711421,-1.195247 +-0.056905,0.221133,1.574004,-1.887943,-1.710628,-1.194417 +-0.056045,0.221398,1.574117,-1.888133,-1.709872,-1.193476 +-0.055185,0.221663,1.574229,-1.888322,-1.709117,-1.192536 +-0.054357,0.221917,1.574328,-1.888556,-1.708382,-1.191478 +-0.053529,0.222170,1.574427,-1.888790,-1.707647,-1.190419 +-0.052717,0.222420,1.574517,-1.889075,-1.706909,-1.189244 +-0.051904,0.222671,1.574606,-1.889360,-1.706171,-1.188068 +-0.051093,0.222924,1.574687,-1.889703,-1.705406,-1.186780 +-0.050282,0.223177,1.574769,-1.890046,-1.704642,-1.185491 +-0.049473,0.223424,1.574829,-1.890462,-1.703855,-1.184096 +-0.048664,0.223671,1.574888,-1.890878,-1.703068,-1.182701 +-0.047872,0.223896,1.574901,-1.891383,-1.702289,-1.181216 +-0.047081,0.224120,1.574915,-1.891888,-1.701510,-1.179731 +-0.046318,0.224313,1.574873,-1.892481,-1.700764,-1.178180 +-0.045556,0.224506,1.574832,-1.893074,-1.700019,-1.176629 +-0.044830,0.224673,1.574747,-1.893734,-1.699324,-1.175030 +-0.044103,0.224839,1.574663,-1.894394,-1.698629,-1.173430 +-0.043419,0.224980,1.574540,-1.895105,-1.697997,-1.171786 +-0.042734,0.225121,1.574417,-1.895815,-1.697366,-1.170142 +-0.042100,0.225229,1.574251,-1.896568,-1.696816,-1.168453 +-0.041467,0.225337,1.574086,-1.897322,-1.696266,-1.166764 +-0.040888,0.225417,1.573885,-1.898099,-1.695808,-1.165035 +-0.040310,0.225496,1.573684,-1.898876,-1.695350,-1.163306 +-0.039775,0.225556,1.573460,-1.899666,-1.694969,-1.161514 +-0.039239,0.225615,1.573235,-1.900456,-1.694587,-1.159723 +-0.038721,0.225660,1.572980,-1.901273,-1.694238,-1.157813 +-0.038203,0.225704,1.572725,-1.902090,-1.693889,-1.155903 +-0.037683,0.225736,1.572437,-1.902937,-1.693537,-1.153853 +-0.037163,0.225768,1.572149,-1.903784,-1.693185,-1.151802 +-0.036646,0.225792,1.571837,-1.904642,-1.692830,-1.149622 +-0.036129,0.225816,1.571525,-1.905501,-1.692475,-1.147442 +-0.035614,0.225844,1.571209,-1.906342,-1.692110,-1.145144 +-0.035099,0.225872,1.570894,-1.907183,-1.691746,-1.142846 +-0.034568,0.225924,1.570596,-1.907988,-1.691337,-1.140445 +-0.034036,0.225975,1.570298,-1.908794,-1.690928,-1.138044 +-0.033484,0.226050,1.570015,-1.909566,-1.690467,-1.135554 +-0.032932,0.226125,1.569731,-1.910339,-1.690005,-1.133063 +-0.032386,0.226208,1.569447,-1.911078,-1.689533,-1.130490 +-0.031840,0.226292,1.569163,-1.911817,-1.689062,-1.127918 +-0.031332,0.226377,1.568881,-1.912502,-1.688632,-1.125279 +-0.030824,0.226462,1.568599,-1.913187,-1.688203,-1.122641 +-0.030366,0.226555,1.568334,-1.913795,-1.687839,-1.119962 +-0.029908,0.226648,1.568068,-1.914402,-1.687475,-1.117284 +-0.029502,0.226752,1.567823,-1.914926,-1.687180,-1.114582 +-0.029096,0.226857,1.567579,-1.915450,-1.686885,-1.111881 +-0.028748,0.226966,1.567344,-1.915903,-1.686669,-1.109165 +-0.028399,0.227075,1.567108,-1.916356,-1.686452,-1.106449 +-0.028104,0.227185,1.566869,-1.916756,-1.686306,-1.103721 +-0.027808,0.227294,1.566630,-1.917156,-1.686160,-1.100993 +-0.027549,0.227405,1.566380,-1.917524,-1.686053,-1.098248 +-0.027290,0.227516,1.566130,-1.917893,-1.685946,-1.095502 +-0.027064,0.227624,1.565861,-1.918247,-1.685872,-1.092738 +-0.026837,0.227732,1.565591,-1.918600,-1.685797,-1.089974 +-0.026652,0.227827,1.565291,-1.918950,-1.685768,-1.087196 +-0.026466,0.227923,1.564991,-1.919300,-1.685739,-1.084419 +-0.026325,0.227997,1.564648,-1.919660,-1.685759,-1.081629 +-0.026184,0.228072,1.564305,-1.920020,-1.685779,-1.078840 +-0.026089,0.228114,1.563901,-1.920413,-1.685850,-1.076042 +-0.025993,0.228157,1.563496,-1.920806,-1.685922,-1.073244 +-0.025938,0.228160,1.563017,-1.921250,-1.686036,-1.070439 +-0.025883,0.228164,1.562538,-1.921694,-1.686150,-1.067633 +-0.025864,0.228139,1.562000,-1.922178,-1.686295,-1.064822 +-0.025844,0.228114,1.561461,-1.922662,-1.686441,-1.062012 +-0.025864,0.228062,1.560875,-1.923168,-1.686623,-1.059205 +-0.025884,0.228011,1.560289,-1.923675,-1.686805,-1.056399 +-0.025954,0.227922,1.559646,-1.924207,-1.687041,-1.053602 +-0.026025,0.227833,1.559002,-1.924739,-1.687277,-1.050806 +-0.026156,0.227692,1.558285,-1.925306,-1.687584,-1.048020 +-0.026288,0.227550,1.557567,-1.925874,-1.687890,-1.045234 +-0.026486,0.227344,1.556757,-1.926493,-1.688273,-1.042464 +-0.026684,0.227137,1.555946,-1.927111,-1.688657,-1.039694 +-0.026941,0.226865,1.555039,-1.927788,-1.689101,-1.036943 +-0.027197,0.226594,1.554132,-1.928465,-1.689545,-1.034192 +-0.027501,0.226271,1.553149,-1.929185,-1.690029,-1.031464 +-0.027805,0.225949,1.552165,-1.929905,-1.690512,-1.028737 +-0.028149,0.225594,1.551132,-1.930644,-1.691022,-1.026036 +-0.028493,0.225239,1.550098,-1.931383,-1.691531,-1.023334 +-0.028873,0.224867,1.549035,-1.932123,-1.692057,-1.020664 +-0.029252,0.224494,1.547972,-1.932863,-1.692584,-1.017994 +-0.029674,0.224111,1.546889,-1.933590,-1.693138,-1.015350 +-0.030097,0.223727,1.545805,-1.934318,-1.693691,-1.012706 +-0.030584,0.223329,1.544698,-1.935023,-1.694302,-1.010070 +-0.031072,0.222932,1.543591,-1.935728,-1.694912,-1.007435 +-0.031635,0.222515,1.542453,-1.936414,-1.695597,-1.004817 +-0.032198,0.222097,1.541315,-1.937100,-1.696281,-1.002200 +-0.032839,0.221651,1.540138,-1.937777,-1.697046,-0.999627 +-0.033479,0.221205,1.538962,-1.938454,-1.697810,-0.997055 +-0.034204,0.220725,1.537744,-1.939127,-1.698668,-0.994551 +-0.034929,0.220245,1.536527,-1.939799,-1.699525,-0.992046 +-0.035731,0.219732,1.535274,-1.940470,-1.700464,-0.989626 +-0.036533,0.219219,1.534021,-1.941140,-1.701404,-0.987206 +-0.037384,0.218679,1.532733,-1.941829,-1.702380,-0.984888 +-0.038236,0.218139,1.531444,-1.942517,-1.703355,-0.982570 +-0.039110,0.217571,1.530108,-1.943256,-1.704321,-0.980377 +-0.039984,0.217003,1.528771,-1.943995,-1.705287,-0.978183 +-0.040859,0.216403,1.527375,-1.944811,-1.706209,-0.976134 +-0.041735,0.215803,1.525979,-1.945627,-1.707131,-0.974085 +-0.042607,0.215171,1.524525,-1.946521,-1.708001,-0.972196 +-0.043480,0.214538,1.523071,-1.947415,-1.708871,-0.970307 +-0.044359,0.213883,1.521588,-1.948353,-1.709705,-0.968587 +-0.045237,0.213227,1.520104,-1.949290,-1.710538,-0.966867 +-0.046134,0.212566,1.518633,-1.950215,-1.711357,-0.965323 +-0.047030,0.211905,1.517163,-1.951140,-1.712176,-0.963779 +-0.047962,0.211256,1.515751,-1.951985,-1.713011,-0.962420 +-0.048894,0.210606,1.514340,-1.952831,-1.713845,-0.961061 +-0.049865,0.209991,1.513036,-1.953539,-1.714701,-0.959890 +-0.050836,0.209375,1.511732,-1.954246,-1.715558,-0.958719 +-0.051814,0.208815,1.510560,-1.954806,-1.716379,-0.957726 +-0.052792,0.208255,1.509387,-1.955367,-1.717200,-0.956733 +-0.053743,0.207760,1.508345,-1.955799,-1.717929,-0.955915 +-0.054695,0.207264,1.507304,-1.956232,-1.718657,-0.955097 +-0.055621,0.206833,1.506396,-1.956533,-1.719296,-0.954461 +-0.056548,0.206401,1.505488,-1.956833,-1.719936,-0.953826 +-0.057460,0.206034,1.504725,-1.956991,-1.720505,-0.953370 +-0.058371,0.205667,1.503961,-1.957148,-1.721074,-0.952915 +-0.059279,0.205354,1.503332,-1.957171,-1.721594,-0.952629 +-0.060188,0.205042,1.502703,-1.957195,-1.722114,-0.952343 +-0.061109,0.204754,1.502170,-1.957119,-1.722617,-0.952218 +-0.062030,0.204467,1.501638,-1.957044,-1.723120,-0.952092 +-0.062969,0.204184,1.501171,-1.956905,-1.723618,-0.952117 +-0.063909,0.203902,1.500704,-1.956767,-1.724115,-0.952142 +-0.064859,0.203618,1.500292,-1.956589,-1.724599,-0.952308 +-0.065809,0.203335,1.499879,-1.956411,-1.725084,-0.952474 +-0.066765,0.203041,1.499506,-1.956218,-1.725549,-0.952778 +-0.067722,0.202747,1.499132,-1.956024,-1.726014,-0.953082 +-0.068685,0.202434,1.498787,-1.955829,-1.726461,-0.953522 +-0.069648,0.202121,1.498443,-1.955633,-1.726909,-0.953963 +-0.070621,0.201788,1.498132,-1.955429,-1.727348,-0.954541 +-0.071594,0.201456,1.497821,-1.955224,-1.727787,-0.955120 +-0.072569,0.201108,1.497551,-1.955002,-1.728204,-0.955842 +-0.073544,0.200760,1.497281,-1.954781,-1.728622,-0.956564 +-0.074511,0.200405,1.497068,-1.954527,-1.728990,-0.957448 +-0.075477,0.200051,1.496855,-1.954274,-1.729359,-0.958333 +-0.076451,0.199698,1.496732,-1.953941,-1.729688,-0.959405 +-0.077425,0.199346,1.496610,-1.953609,-1.730017,-0.960477 +-0.078417,0.199010,1.496613,-1.953149,-1.730326,-0.961744 +-0.079410,0.198674,1.496616,-1.952690,-1.730635,-0.963010 +-0.080403,0.198371,1.496763,-1.952089,-1.730910,-0.964459 +-0.081397,0.198068,1.496910,-1.951488,-1.731184,-0.965907 +-0.082381,0.197809,1.497210,-1.950736,-1.731416,-0.967521 +-0.083365,0.197549,1.497510,-1.949983,-1.731649,-0.969134 +-0.084347,0.197339,1.497975,-1.949056,-1.731865,-0.970892 +-0.085330,0.197129,1.498441,-1.948128,-1.732082,-0.972650 +-0.086319,0.196970,1.499077,-1.947013,-1.732305,-0.974526 +-0.087309,0.196810,1.499713,-1.945898,-1.732529,-0.976403 +-0.088300,0.196696,1.500498,-1.944621,-1.732759,-0.978377 +-0.089291,0.196581,1.501284,-1.943344,-1.732990,-0.980352 +-0.090276,0.196494,1.502176,-1.941957,-1.733221,-0.982403 +-0.091260,0.196407,1.503069,-1.940570,-1.733452,-0.984454 +-0.092226,0.196336,1.504033,-1.939120,-1.733668,-0.986567 +-0.093191,0.196265,1.504997,-1.937670,-1.733884,-0.988680 +-0.094121,0.196207,1.506016,-1.936186,-1.734063,-0.990851 +-0.095050,0.196150,1.507034,-1.934701,-1.734243,-0.993021 +-0.095945,0.196101,1.508093,-1.933195,-1.734392,-0.995245 +-0.096839,0.196052,1.509152,-1.931689,-1.734541,-0.997469 +-0.097708,0.195999,1.510232,-1.930176,-1.734685,-0.999741 +-0.098577,0.195946,1.511312,-1.928663,-1.734828,-1.002012 +-0.099419,0.195886,1.512401,-1.927153,-1.734970,-1.004337 +-0.100260,0.195826,1.513491,-1.925643,-1.735112,-1.006662 +-0.101079,0.195765,1.514599,-1.924117,-1.735267,-1.009049 +-0.101898,0.195704,1.515708,-1.922590,-1.735421,-1.011436 +-0.102712,0.195644,1.516847,-1.921021,-1.735627,-1.013891 +-0.103525,0.195585,1.517985,-1.919451,-1.735832,-1.016345 +-0.104320,0.195533,1.519152,-1.917843,-1.736068,-1.018865 +-0.105115,0.195482,1.520318,-1.916234,-1.736304,-1.021385 +-0.105853,0.195459,1.521523,-1.914594,-1.736509,-1.023962 +-0.106592,0.195436,1.522729,-1.912954,-1.736713,-1.026539 +-0.107265,0.195461,1.523995,-1.911259,-1.736871,-1.029161 +-0.107939,0.195486,1.525262,-1.909565,-1.737030,-1.031783 +-0.108554,0.195563,1.526598,-1.907802,-1.737159,-1.034440 +-0.109170,0.195640,1.527934,-1.906040,-1.737288,-1.037098 +-0.109722,0.195765,1.529321,-1.904234,-1.737385,-1.039790 +-0.110274,0.195889,1.530709,-1.902428,-1.737481,-1.042482 +-0.110753,0.196054,1.532122,-1.900615,-1.737532,-1.045205 +-0.111232,0.196219,1.533536,-1.898802,-1.737584,-1.047928 +-0.111637,0.196419,1.534960,-1.897005,-1.737595,-1.050673 +-0.112042,0.196618,1.536384,-1.895207,-1.737606,-1.053419 +-0.112385,0.196845,1.537806,-1.893437,-1.737601,-1.056176 +-0.112728,0.197071,1.539228,-1.891666,-1.737597,-1.058933 +-0.113024,0.197306,1.540616,-1.889952,-1.737610,-1.061688 +-0.113321,0.197540,1.542004,-1.888238,-1.737623,-1.064442 +-0.113583,0.197766,1.543330,-1.886610,-1.737678,-1.067184 +-0.113845,0.197992,1.544656,-1.884983,-1.737733,-1.069925 +-0.114070,0.198212,1.545922,-1.883441,-1.737831,-1.072669 +-0.114296,0.198432,1.547187,-1.881899,-1.737929,-1.075414 +-0.114475,0.198663,1.548419,-1.880415,-1.738062,-1.078192 +-0.114655,0.198894,1.549651,-1.878932,-1.738194,-1.080971 +-0.114773,0.199152,1.550869,-1.877493,-1.738331,-1.083785 +-0.114891,0.199411,1.552087,-1.876054,-1.738467,-1.086599 +-0.114931,0.199704,1.553288,-1.874669,-1.738575,-1.089423 +-0.114971,0.199998,1.554489,-1.873284,-1.738683,-1.092247 +-0.114939,0.200322,1.555666,-1.871957,-1.738766,-1.095064 +-0.114907,0.200647,1.556844,-1.870631,-1.738849,-1.097880 +-0.114814,0.200992,1.557985,-1.869367,-1.738926,-1.100679 +-0.114722,0.201338,1.559127,-1.868102,-1.739004,-1.103477 +-0.114575,0.201694,1.560215,-1.866916,-1.739079,-1.106249 +-0.114427,0.202049,1.561304,-1.865730,-1.739154,-1.109021 +-0.114226,0.202405,1.562322,-1.864640,-1.739224,-1.111771 +-0.114025,0.202761,1.563340,-1.863550,-1.739294,-1.114521 +-0.113760,0.203114,1.564274,-1.862578,-1.739334,-1.117257 +-0.113495,0.203467,1.565208,-1.861606,-1.739375,-1.119993 +-0.113143,0.203822,1.566052,-1.860775,-1.739337,-1.122722 +-0.112791,0.204176,1.566897,-1.859944,-1.739299,-1.125450 +-0.112331,0.204538,1.567649,-1.859270,-1.739144,-1.128176 +-0.111871,0.204900,1.568401,-1.858596,-1.738989,-1.130901 +-0.111307,0.205265,1.569057,-1.858081,-1.738715,-1.133618 +-0.110742,0.205631,1.569713,-1.857567,-1.738441,-1.136335 +-0.110081,0.206000,1.570281,-1.857198,-1.738058,-1.139030 +-0.109420,0.206370,1.570848,-1.856828,-1.737676,-1.141725 +-0.108658,0.206756,1.571348,-1.856583,-1.737169,-1.144376 +-0.107895,0.207142,1.571848,-1.856338,-1.736662,-1.147026 +-0.107036,0.207549,1.572291,-1.856201,-1.736034,-1.149611 +-0.106177,0.207956,1.572734,-1.856064,-1.735407,-1.152195 +-0.105251,0.208380,1.573127,-1.856014,-1.734709,-1.154704 +-0.104324,0.208804,1.573521,-1.855965,-1.734012,-1.157212 +-0.103347,0.209242,1.573868,-1.855991,-1.733274,-1.159637 +-0.102369,0.209680,1.574215,-1.856017,-1.732537,-1.162062 +-0.101349,0.210121,1.574502,-1.856130,-1.731771,-1.164392 +-0.100328,0.210563,1.574789,-1.856242,-1.731006,-1.166722 +-0.099277,0.210994,1.574997,-1.856458,-1.730232,-1.168947 +-0.098227,0.211424,1.575205,-1.856673,-1.729458,-1.171172 +-0.097160,0.211832,1.575321,-1.856998,-1.728701,-1.173297 +-0.096094,0.212239,1.575438,-1.857323,-1.727945,-1.175422 +-0.095029,0.212611,1.575450,-1.857762,-1.727233,-1.177460 +-0.093964,0.212982,1.575462,-1.858201,-1.726521,-1.179497 +-0.092901,0.213312,1.575366,-1.858760,-1.725852,-1.181446 +-0.091839,0.213642,1.575269,-1.859318,-1.725183,-1.183395 +-0.090765,0.213941,1.575076,-1.859988,-1.724526,-1.185252 +-0.089692,0.214240,1.574883,-1.860659,-1.723869,-1.187109 +-0.088596,0.214519,1.574611,-1.861428,-1.723201,-1.188882 +-0.087501,0.214798,1.574338,-1.862197,-1.722534,-1.190656 +-0.086391,0.215057,1.573991,-1.863055,-1.721867,-1.192355 +-0.085282,0.215315,1.573644,-1.863913,-1.721201,-1.194055 +-0.084184,0.215542,1.573222,-1.864846,-1.720580,-1.195686 +-0.083087,0.215769,1.572800,-1.865780,-1.719959,-1.197318 +-0.082015,0.215967,1.572316,-1.866766,-1.719405,-1.198893 +-0.080942,0.216164,1.571832,-1.867753,-1.718850,-1.200467 +-0.079882,0.216352,1.571317,-1.868766,-1.718337,-1.201994 +-0.078822,0.216539,1.570802,-1.869778,-1.717824,-1.203521 +-0.077754,0.216739,1.570288,-1.870792,-1.717328,-1.205015 +-0.076686,0.216940,1.569773,-1.871805,-1.716833,-1.206509 +-0.075600,0.217165,1.569272,-1.872809,-1.716357,-1.207988 +-0.074515,0.217389,1.568772,-1.873814,-1.715880,-1.209467 +-0.073403,0.217640,1.568284,-1.874813,-1.715410,-1.210937 +-0.072291,0.217890,1.567797,-1.875812,-1.714939,-1.212407 +-0.071142,0.218161,1.567313,-1.876825,-1.714444,-1.213864 +-0.069994,0.218431,1.566829,-1.877837,-1.713948,-1.215321 +-0.068814,0.218708,1.566330,-1.878880,-1.713426,-1.216769 +-0.067634,0.218984,1.565831,-1.879924,-1.712905,-1.218217 +-0.066455,0.219244,1.565299,-1.880999,-1.712405,-1.219658 +-0.065276,0.219504,1.564767,-1.882074,-1.711905,-1.221098 +-0.064131,0.219734,1.564199,-1.883166,-1.711475,-1.222525 +-0.062986,0.219963,1.563630,-1.884259,-1.711045,-1.223951 +-0.061880,0.220165,1.563035,-1.885354,-1.710686,-1.225353 +-0.060773,0.220367,1.562440,-1.886448,-1.710326,-1.226755 +-0.059690,0.220551,1.561833,-1.887536,-1.710008,-1.228120 +-0.058607,0.220736,1.561225,-1.888623,-1.709689,-1.229486 +-0.057530,0.220914,1.560617,-1.889702,-1.709374,-1.230797 +-0.056453,0.221093,1.560009,-1.890780,-1.709059,-1.232108 +-0.055365,0.221269,1.559401,-1.891855,-1.708710,-1.233345 +-0.054278,0.221446,1.558793,-1.892930,-1.708362,-1.234582 +-0.053170,0.221619,1.558181,-1.894010,-1.707956,-1.235740 +-0.052062,0.221792,1.557570,-1.895089,-1.707551,-1.236898 +-0.050919,0.221967,1.556958,-1.896176,-1.707055,-1.237978 +-0.049776,0.222142,1.556346,-1.897263,-1.706560,-1.239059 +-0.048581,0.222326,1.555740,-1.898358,-1.705939,-1.240062 +-0.047386,0.222510,1.555135,-1.899454,-1.705317,-1.241064 +-0.046139,0.222704,1.554542,-1.900552,-1.704566,-1.241991 +-0.044893,0.222899,1.553949,-1.901651,-1.703814,-1.242917 +-0.043599,0.223111,1.553385,-1.902731,-1.702938,-1.243770 +-0.042305,0.223323,1.552820,-1.903810,-1.702062,-1.244622 +-0.040976,0.223565,1.552311,-1.904834,-1.701083,-1.245401 +-0.039648,0.223806,1.551802,-1.905858,-1.700105,-1.246180 +-0.038321,0.224072,1.551359,-1.906792,-1.699093,-1.246882 +-0.036993,0.224338,1.550916,-1.907727,-1.698081,-1.247584 +-0.035707,0.224613,1.550528,-1.908563,-1.697103,-1.248197 +-0.034420,0.224889,1.550140,-1.909400,-1.696126,-1.248810 +-0.033184,0.225169,1.549803,-1.910138,-1.695201,-1.249324 +-0.031948,0.225449,1.549466,-1.910877,-1.694276,-1.249837 +-0.030739,0.225750,1.549192,-1.911519,-1.693366,-1.250247 +-0.029530,0.226052,1.548919,-1.912161,-1.692456,-1.250656 +-0.028319,0.226398,1.548729,-1.912706,-1.691515,-1.250964 +-0.027107,0.226743,1.548540,-1.913251,-1.690574,-1.251271 +-0.025893,0.227139,1.548444,-1.913691,-1.689607,-1.251476 +-0.024678,0.227536,1.548349,-1.914131,-1.688641,-1.251681 +-0.023472,0.227981,1.548347,-1.914463,-1.687671,-1.251779 +-0.022266,0.228426,1.548346,-1.914795,-1.686701,-1.251876 +-0.021063,0.228917,1.548428,-1.915039,-1.685720,-1.251864 +-0.019859,0.229408,1.548510,-1.915283,-1.684739,-1.251852 +-0.018655,0.229934,1.548652,-1.915473,-1.683745,-1.251732 +-0.017451,0.230461,1.548794,-1.915663,-1.682752,-1.251612 +-0.016260,0.231006,1.548966,-1.915833,-1.681770,-1.251383 +-0.015069,0.231550,1.549138,-1.916002,-1.680789,-1.251154 +-0.013884,0.232097,1.549309,-1.916199,-1.679820,-1.250816 +-0.012700,0.232643,1.549479,-1.916396,-1.678851,-1.250478 +-0.011500,0.233181,1.549610,-1.916683,-1.677875,-1.250040 +-0.010300,0.233719,1.549742,-1.916969,-1.676898,-1.249603 +-0.009092,0.234229,1.549804,-1.917380,-1.675930,-1.249076 +-0.007883,0.234739,1.549867,-1.917791,-1.674962,-1.248549 +-0.006694,0.235208,1.549855,-1.918319,-1.674041,-1.247939 +-0.005504,0.235678,1.549843,-1.918848,-1.673119,-1.247328 +-0.004348,0.236115,1.549779,-1.919462,-1.672260,-1.246639 +-0.003191,0.236552,1.549715,-1.920076,-1.671401,-1.245949 +-0.002085,0.236963,1.549622,-1.920740,-1.670625,-1.245187 +-0.000978,0.237374,1.549529,-1.921404,-1.669849,-1.244424 +0.000064,0.237761,1.549421,-1.922092,-1.669172,-1.243591 +0.001106,0.238149,1.549314,-1.922780,-1.668495,-1.242757 +0.002094,0.238525,1.549209,-1.923472,-1.667886,-1.241847 +0.003083,0.238900,1.549105,-1.924164,-1.667276,-1.240936 +0.004043,0.239281,1.549025,-1.924844,-1.666682,-1.239952 +0.005003,0.239662,1.548945,-1.925524,-1.666088,-1.238967 +0.005949,0.240059,1.548904,-1.926179,-1.665479,-1.237925 +0.006895,0.240456,1.548863,-1.926835,-1.664871,-1.236883 +0.007828,0.240870,1.548863,-1.927462,-1.664243,-1.235803 +0.008761,0.241283,1.548863,-1.928088,-1.663616,-1.234722 +0.009667,0.241707,1.548900,-1.928679,-1.662984,-1.233608 +0.010573,0.242130,1.548938,-1.929270,-1.662353,-1.232494 +0.011439,0.242556,1.549005,-1.929825,-1.661734,-1.231343 +0.012304,0.242981,1.549072,-1.930379,-1.661116,-1.230193 +0.013125,0.243396,1.549151,-1.930911,-1.660515,-1.229003 +0.013945,0.243810,1.549229,-1.931443,-1.659914,-1.227813 +0.014705,0.244197,1.549295,-1.931966,-1.659351,-1.226577 +0.015465,0.244584,1.549362,-1.932490,-1.658789,-1.225340 +0.016149,0.244930,1.549400,-1.933014,-1.658292,-1.224043 +0.016833,0.245275,1.549439,-1.933537,-1.657795,-1.222746 +0.017439,0.245578,1.549447,-1.934062,-1.657368,-1.221374 +0.018044,0.245882,1.549456,-1.934587,-1.656941,-1.220002 +0.018576,0.246154,1.549450,-1.935096,-1.656582,-1.218548 +0.019107,0.246426,1.549444,-1.935605,-1.656222,-1.217094 +0.019567,0.246677,1.549441,-1.936078,-1.655926,-1.215544 +0.020027,0.246928,1.549437,-1.936552,-1.655631,-1.213994 +0.020421,0.247155,1.549425,-1.937005,-1.655391,-1.212329 +0.020816,0.247382,1.549413,-1.937458,-1.655151,-1.210664 +0.021148,0.247577,1.549374,-1.937913,-1.654964,-1.208877 +0.021481,0.247773,1.549335,-1.938369,-1.654776,-1.207090 +0.021766,0.247937,1.549260,-1.938843,-1.654620,-1.205180 +0.022051,0.248101,1.549185,-1.939318,-1.654463,-1.203270 +0.022313,0.248237,1.549065,-1.939837,-1.654295,-1.201237 +0.022576,0.248374,1.548945,-1.940355,-1.654127,-1.199205 +0.022827,0.248490,1.548784,-1.940919,-1.653932,-1.197064 +0.023079,0.248606,1.548624,-1.941482,-1.653737,-1.194924 +0.023315,0.248715,1.548449,-1.942061,-1.653531,-1.192700 +0.023550,0.248824,1.548273,-1.942639,-1.653324,-1.190477 +0.023761,0.248933,1.548100,-1.943207,-1.653127,-1.188186 +0.023973,0.249043,1.547927,-1.943775,-1.652930,-1.185895 +0.024157,0.249159,1.547768,-1.944314,-1.652751,-1.183536 +0.024342,0.249275,1.547610,-1.944854,-1.652572,-1.181177 +0.024510,0.249414,1.547488,-1.945344,-1.652400,-1.178718 +0.024679,0.249554,1.547366,-1.945835,-1.652227,-1.176260 +0.024839,0.249733,1.547301,-1.946256,-1.652050,-1.173644 +0.025000,0.249913,1.547236,-1.946678,-1.651872,-1.171028 +0.025166,0.250135,1.547222,-1.947044,-1.651669,-1.168235 +0.025332,0.250357,1.547209,-1.947411,-1.651465,-1.165443 +0.025518,0.250609,1.547221,-1.947756,-1.651217,-1.162495 +0.025704,0.250861,1.547234,-1.948102,-1.650968,-1.159547 +0.025885,0.251126,1.547257,-1.948432,-1.650719,-1.156481 +0.026066,0.251391,1.547280,-1.948762,-1.650471,-1.153415 +0.026222,0.251651,1.547293,-1.949088,-1.650260,-1.150274 +0.026378,0.251910,1.547306,-1.949415,-1.650049,-1.147133 +0.026517,0.252152,1.547285,-1.949769,-1.649867,-1.143948 +0.026656,0.252393,1.547263,-1.950123,-1.649685,-1.140763 +0.026770,0.252600,1.547182,-1.950529,-1.649548,-1.137558 +0.026883,0.252808,1.547101,-1.950934,-1.649410,-1.134352 +0.026958,0.252964,1.546938,-1.951405,-1.649343,-1.131141 +0.027032,0.253119,1.546775,-1.951877,-1.649276,-1.127929 +0.027086,0.253226,1.546525,-1.952427,-1.649247,-1.124710 +0.027140,0.253332,1.546274,-1.952978,-1.649218,-1.121491 +0.027191,0.253399,1.545946,-1.953602,-1.649195,-1.118263 +0.027243,0.253466,1.545617,-1.954226,-1.649171,-1.115036 +0.027276,0.253500,1.545234,-1.954884,-1.649178,-1.111808 +0.027309,0.253533,1.544850,-1.955542,-1.649184,-1.108580 +0.027326,0.253549,1.544437,-1.956198,-1.649214,-1.105353 +0.027343,0.253564,1.544024,-1.956854,-1.649243,-1.102125 +0.027368,0.253578,1.543599,-1.957495,-1.649250,-1.098896 +0.027393,0.253592,1.543175,-1.958137,-1.649256,-1.095667 +0.027442,0.253612,1.542741,-1.958765,-1.649212,-1.092446 +0.027491,0.253631,1.542307,-1.959393,-1.649167,-1.089225 +0.027562,0.253655,1.541863,-1.960005,-1.649076,-1.086021 +0.027633,0.253679,1.541419,-1.960617,-1.648984,-1.082817 +0.027703,0.253703,1.540966,-1.961198,-1.648885,-1.079642 +0.027773,0.253727,1.540514,-1.961780,-1.648785,-1.076466 +0.027824,0.253745,1.540051,-1.962322,-1.648707,-1.073332 +0.027874,0.253763,1.539587,-1.962864,-1.648628,-1.070197 +0.027906,0.253774,1.539109,-1.963376,-1.648567,-1.067101 +0.027938,0.253784,1.538630,-1.963887,-1.648506,-1.064006 +0.027958,0.253784,1.538129,-1.964381,-1.648451,-1.060951 +0.027978,0.253784,1.537628,-1.964875,-1.648396,-1.057896 +0.027983,0.253765,1.537087,-1.965369,-1.648350,-1.054885 +0.027989,0.253746,1.536547,-1.965863,-1.648305,-1.051874 +0.027970,0.253690,1.535937,-1.966385,-1.648278,-1.048867 +0.027952,0.253633,1.535327,-1.966908,-1.648251,-1.045859 +0.027899,0.253528,1.534621,-1.967483,-1.648248,-1.042783 +0.027847,0.253423,1.533914,-1.968057,-1.648245,-1.039707 +0.027751,0.253264,1.533104,-1.968692,-1.648276,-1.036535 +0.027656,0.253104,1.532293,-1.969326,-1.648308,-1.033362 +0.027511,0.252889,1.531380,-1.970023,-1.648381,-1.030112 +0.027366,0.252673,1.530467,-1.970720,-1.648454,-1.026861 +0.027183,0.252408,1.529459,-1.971484,-1.648547,-1.023558 +0.027001,0.252143,1.528451,-1.972248,-1.648641,-1.020254 +0.026790,0.251834,1.527354,-1.973083,-1.648739,-1.016930 +0.026578,0.251524,1.526256,-1.973918,-1.648838,-1.013606 +0.026328,0.251173,1.525081,-1.974809,-1.648958,-1.010308 +0.026078,0.250822,1.523905,-1.975700,-1.649079,-1.007010 +0.025779,0.250438,1.522673,-1.976625,-1.649242,-1.003782 +0.025481,0.250054,1.521441,-1.977549,-1.649405,-1.000554 +0.025130,0.249640,1.520165,-1.978496,-1.649614,-0.997420 +0.024780,0.249227,1.518889,-1.979443,-1.649824,-0.994287 +0.024375,0.248778,1.517566,-1.980417,-1.650084,-0.991274 +0.023971,0.248330,1.516244,-1.981392,-1.650344,-0.988260 +0.023496,0.247839,1.514872,-1.982392,-1.650676,-0.985394 +0.023022,0.247347,1.513501,-1.983393,-1.651008,-0.982528 +0.022468,0.246814,1.512095,-1.984402,-1.651428,-0.979829 +0.021913,0.246282,1.510689,-1.985412,-1.651848,-0.977131 +0.021291,0.245712,1.509254,-1.986433,-1.652329,-0.974616 +0.020670,0.245143,1.507820,-1.987455,-1.652810,-0.972101 +0.020012,0.244543,1.506360,-1.988503,-1.653294,-0.969778 +0.019355,0.243944,1.504900,-1.989551,-1.653778,-0.967454 +0.018675,0.243336,1.503452,-1.990590,-1.654240,-0.965333 +0.017996,0.242729,1.502004,-1.991629,-1.654702,-0.963211 +0.017294,0.242140,1.500621,-1.992597,-1.655141,-0.961312 +0.016592,0.241550,1.499238,-1.993564,-1.655580,-0.959413 +0.015883,0.240991,1.497940,-1.994444,-1.655969,-0.957749 +0.015175,0.240431,1.496641,-1.995324,-1.656359,-0.956085 +0.014476,0.239905,1.495431,-1.996112,-1.656669,-0.954657 +0.013776,0.239380,1.494222,-1.996901,-1.656979,-0.953229 +0.013077,0.238895,1.493122,-1.997570,-1.657225,-0.952045 +0.012378,0.238411,1.492023,-1.998239,-1.657470,-0.950860 +0.011658,0.237970,1.491053,-1.998757,-1.657690,-0.949928 +0.010938,0.237528,1.490082,-1.999275,-1.657909,-0.948996 +0.010183,0.237130,1.489250,-1.999625,-1.658127,-0.948314 +0.009428,0.236731,1.488417,-1.999974,-1.658346,-0.947631 +0.008637,0.236373,1.487725,-2.000149,-1.658566,-0.947181 +0.007846,0.236016,1.487033,-2.000323,-1.658787,-0.946730 +0.007020,0.235693,1.486473,-2.000335,-1.659012,-0.946484 +0.006193,0.235370,1.485914,-2.000346,-1.659238,-0.946237 +0.005331,0.235065,1.485461,-2.000223,-1.659468,-0.946170 +0.004469,0.234760,1.485009,-2.000100,-1.659698,-0.946103 +0.003578,0.234457,1.484634,-1.999878,-1.659924,-0.946201 +0.002688,0.234153,1.484259,-1.999656,-1.660150,-0.946299 +0.001773,0.233839,1.483938,-1.999369,-1.660368,-0.946546 +0.000859,0.233525,1.483617,-1.999082,-1.660586,-0.946794 +-0.000066,0.233195,1.483337,-1.998754,-1.660775,-0.947177 +-0.000991,0.232865,1.483057,-1.998426,-1.660964,-0.947561 +-0.001910,0.232526,1.482820,-1.998065,-1.661101,-0.948072 +-0.002829,0.232187,1.482583,-1.997705,-1.661239,-0.948584 +-0.003728,0.231842,1.482388,-1.997325,-1.661306,-0.949211 +-0.004627,0.231498,1.482192,-1.996945,-1.661373,-0.949839 +-0.005507,0.231150,1.482049,-1.996533,-1.661364,-0.950595 +-0.006386,0.230803,1.481906,-1.996121,-1.661354,-0.951351 +-0.007279,0.230465,1.481859,-1.995609,-1.661315,-0.952268 +-0.008173,0.230127,1.481813,-1.995097,-1.661275,-0.953185 +-0.009092,0.229814,1.481898,-1.994439,-1.661231,-0.954273 +-0.010011,0.229502,1.481983,-1.993782,-1.661186,-0.955360 +-0.010934,0.229231,1.482213,-1.992973,-1.661117,-0.956611 +-0.011856,0.228960,1.482443,-1.992165,-1.661049,-0.957863 +-0.012762,0.228747,1.482831,-1.991199,-1.660937,-0.959270 +-0.013667,0.228535,1.483220,-1.990234,-1.660825,-0.960676 +-0.014548,0.228391,1.483776,-1.989108,-1.660674,-0.962228 +-0.015430,0.228246,1.484331,-1.987982,-1.660523,-0.963780 +-0.016301,0.228161,1.485040,-1.986702,-1.660367,-0.965468 +-0.017172,0.228076,1.485750,-1.985422,-1.660212,-0.967155 +-0.018041,0.228034,1.486585,-1.984017,-1.660079,-0.968965 +-0.018910,0.227992,1.487421,-1.982612,-1.659945,-0.970775 +-0.019777,0.227982,1.488359,-1.981111,-1.659844,-0.972696 +-0.020643,0.227972,1.489297,-1.979610,-1.659743,-0.974617 +-0.021507,0.227988,1.490324,-1.978028,-1.659685,-0.976643 +-0.022371,0.228005,1.491351,-1.976446,-1.659627,-0.978669 +-0.023230,0.228041,1.492452,-1.974799,-1.659618,-0.980798 +-0.024088,0.228077,1.493554,-1.973151,-1.659609,-0.982926 +-0.024939,0.228131,1.494723,-1.971445,-1.659652,-0.985160 +-0.025790,0.228185,1.495892,-1.969739,-1.659696,-0.987394 +-0.026639,0.228257,1.497130,-1.967972,-1.659806,-0.989729 +-0.027488,0.228330,1.498367,-1.966204,-1.659917,-0.992065 +-0.028332,0.228424,1.499670,-1.964376,-1.660093,-0.994490 +-0.029176,0.228518,1.500974,-1.962547,-1.660269,-0.996916 +-0.029997,0.228647,1.502355,-1.960647,-1.660484,-0.999425 +-0.030819,0.228776,1.503737,-1.958748,-1.660699,-1.001934 +-0.031611,0.228951,1.505211,-1.956758,-1.660943,-1.004518 +-0.032403,0.229127,1.506685,-1.954769,-1.661187,-1.007102 +-0.033180,0.229348,1.508254,-1.952674,-1.661486,-1.009749 +-0.033958,0.229570,1.509824,-1.950578,-1.661785,-1.012396 +-0.034735,0.229834,1.511488,-1.948367,-1.662161,-1.015091 +-0.035512,0.230098,1.513151,-1.946155,-1.662537,-1.017785 +-0.036276,0.230399,1.514890,-1.943849,-1.662961,-1.020508 +-0.037039,0.230700,1.516629,-1.941542,-1.663386,-1.023230 +-0.037774,0.231030,1.518417,-1.939174,-1.663828,-1.025960 +-0.038509,0.231360,1.520205,-1.936806,-1.664271,-1.028690 +-0.039220,0.231715,1.522038,-1.934378,-1.664733,-1.031416 +-0.039930,0.232071,1.523870,-1.931951,-1.665195,-1.034142 +-0.040616,0.232453,1.525745,-1.929467,-1.665671,-1.036857 +-0.041302,0.232835,1.527619,-1.926983,-1.666148,-1.039571 +-0.041942,0.233234,1.529505,-1.924489,-1.666599,-1.042269 +-0.042583,0.233633,1.531390,-1.921995,-1.667050,-1.044967 +-0.043156,0.234028,1.533233,-1.919561,-1.667437,-1.047637 +-0.043730,0.234423,1.535077,-1.917128,-1.667823,-1.050307 +-0.044244,0.234796,1.536843,-1.914791,-1.668155,-1.052936 +-0.044759,0.235170,1.538610,-1.912454,-1.668487,-1.055565 +-0.045233,0.235519,1.540300,-1.910206,-1.668801,-1.058155 +-0.045707,0.235868,1.541991,-1.907959,-1.669116,-1.060746 +-0.046159,0.236196,1.543612,-1.905787,-1.669446,-1.063304 +-0.046610,0.236523,1.545234,-1.903614,-1.669775,-1.065863 +-0.047066,0.236819,1.546777,-1.901517,-1.670170,-1.068387 +-0.047522,0.237115,1.548320,-1.899419,-1.670564,-1.070912 +-0.048002,0.237374,1.549784,-1.897388,-1.671061,-1.073423 +-0.048482,0.237634,1.551249,-1.895357,-1.671559,-1.075934 +-0.048973,0.237880,1.552662,-1.893369,-1.672144,-1.078468 +-0.049464,0.238126,1.554076,-1.891381,-1.672728,-1.081003 +-0.049946,0.238382,1.555464,-1.889421,-1.673370,-1.083561 +-0.050427,0.238637,1.556852,-1.887461,-1.674012,-1.086120 +-0.050892,0.238915,1.558221,-1.885528,-1.674700,-1.088670 +-0.051356,0.239192,1.559591,-1.883596,-1.675388,-1.091221 +-0.051804,0.239497,1.560946,-1.881691,-1.676125,-1.093737 +-0.052251,0.239801,1.562301,-1.879786,-1.676861,-1.096253 +-0.052687,0.240135,1.563640,-1.877910,-1.677655,-1.098714 +-0.053122,0.240468,1.564979,-1.876035,-1.678450,-1.101176 +-0.053544,0.240822,1.566287,-1.874208,-1.679302,-1.103570 +-0.053967,0.241177,1.567595,-1.872382,-1.680155,-1.105965 +-0.054370,0.241543,1.568846,-1.870640,-1.681055,-1.108286 +-0.054773,0.241908,1.570097,-1.868898,-1.681954,-1.110606 +-0.055146,0.242272,1.571263,-1.867279,-1.682880,-1.112851 +-0.055520,0.242637,1.572430,-1.865661,-1.683806,-1.115095 +-0.055853,0.242988,1.573486,-1.864206,-1.684741,-1.117272 +-0.056187,0.243339,1.574542,-1.862751,-1.685675,-1.119448 +-0.056480,0.243660,1.575462,-1.861493,-1.686616,-1.121568 +-0.056774,0.243981,1.576382,-1.860235,-1.687557,-1.123687 +-0.057030,0.244260,1.577149,-1.859193,-1.688505,-1.125763 +-0.057287,0.244539,1.577916,-1.858150,-1.689454,-1.127838 +-0.057503,0.244766,1.578520,-1.857336,-1.690399,-1.129876 +-0.057719,0.244994,1.579124,-1.856521,-1.691344,-1.131914 +-0.057894,0.245164,1.579561,-1.855936,-1.692278,-1.133917 +-0.058069,0.245334,1.579998,-1.855350,-1.693213,-1.135920 +-0.058204,0.245444,1.580270,-1.854983,-1.694128,-1.137882 +-0.058339,0.245553,1.580543,-1.854616,-1.695043,-1.139845 +-0.058436,0.245605,1.580664,-1.854446,-1.695934,-1.141759 +-0.058533,0.245656,1.580786,-1.854276,-1.696824,-1.143672 +-0.058604,0.245653,1.580776,-1.854272,-1.697703,-1.145535 +-0.058675,0.245650,1.580766,-1.854267,-1.698581,-1.147398 +-0.058729,0.245595,1.580640,-1.854401,-1.699455,-1.149210 +-0.058783,0.245541,1.580514,-1.854534,-1.700328,-1.151022 +-0.058812,0.245441,1.580284,-1.854793,-1.701173,-1.152782 +-0.058841,0.245341,1.580054,-1.855053,-1.702017,-1.154542 +-0.058827,0.245207,1.579730,-1.855431,-1.702791,-1.156254 +-0.058812,0.245073,1.579406,-1.855810,-1.703565,-1.157966 +-0.058734,0.244915,1.579000,-1.856303,-1.704229,-1.159637 +-0.058657,0.244756,1.578593,-1.856795,-1.704893,-1.161309 +-0.058502,0.244584,1.578116,-1.857392,-1.705417,-1.162942 +-0.058346,0.244411,1.577640,-1.857988,-1.705940,-1.164576 +-0.058094,0.244243,1.577115,-1.858673,-1.706287,-1.166176 +-0.057842,0.244074,1.576590,-1.859357,-1.706634,-1.167777 +-0.057465,0.243933,1.576044,-1.860114,-1.706757,-1.169351 +-0.057089,0.243792,1.575497,-1.860871,-1.706880,-1.170925 +-0.056564,0.243697,1.574951,-1.861691,-1.706736,-1.172482 +-0.056038,0.243602,1.574405,-1.862511,-1.706591,-1.174039 +-0.055353,0.243567,1.573873,-1.863388,-1.706159,-1.175587 +-0.054668,0.243531,1.573340,-1.864264,-1.705727,-1.177135 +-0.053822,0.243558,1.572827,-1.865194,-1.705004,-1.178678 +-0.052977,0.243585,1.572315,-1.866124,-1.704282,-1.180222 +-0.051983,0.243679,1.571832,-1.867093,-1.703293,-1.181760 +-0.050990,0.243772,1.571349,-1.868062,-1.702304,-1.183299 +-0.049876,0.243932,1.570913,-1.869038,-1.701100,-1.184829 +-0.048761,0.244093,1.570477,-1.870014,-1.699895,-1.186359 +-0.047559,0.244316,1.570099,-1.870967,-1.698536,-1.187875 +-0.046357,0.244540,1.569721,-1.871920,-1.697177,-1.189392 +-0.045105,0.244819,1.569408,-1.872818,-1.695738,-1.190893 +-0.043852,0.245098,1.569096,-1.873716,-1.694299,-1.192395 +-0.042590,0.245426,1.568859,-1.874525,-1.692859,-1.193890 +-0.041327,0.245755,1.568623,-1.875333,-1.691420,-1.195385 +-0.040091,0.246123,1.568464,-1.876032,-1.690043,-1.196871 +-0.038855,0.246492,1.568306,-1.876731,-1.688665,-1.198358 +-0.037671,0.246883,1.568212,-1.877325,-1.687387,-1.199825 +-0.036487,0.247274,1.568118,-1.877920,-1.686109,-1.201291 +-0.035367,0.247671,1.568068,-1.878429,-1.684937,-1.202724 +-0.034247,0.248069,1.568018,-1.878939,-1.683765,-1.204157 +-0.033191,0.248457,1.567990,-1.879391,-1.682693,-1.205541 +-0.032135,0.248846,1.567962,-1.879842,-1.681621,-1.206925 +-0.031151,0.249210,1.567933,-1.880257,-1.680655,-1.208248 +-0.030168,0.249574,1.567905,-1.880671,-1.679690,-1.209571 +-0.029264,0.249901,1.567861,-1.881060,-1.678842,-1.210823 +-0.028360,0.250229,1.567817,-1.881448,-1.677994,-1.212076 +-0.027535,0.250517,1.567753,-1.881815,-1.677262,-1.213247 +-0.026710,0.250805,1.567689,-1.882181,-1.676530,-1.214418 +-0.025968,0.251053,1.567609,-1.882520,-1.675918,-1.215502 +-0.025225,0.251302,1.567528,-1.882858,-1.675306,-1.216586 +-0.024566,0.251512,1.567434,-1.883166,-1.674813,-1.217581 +-0.023906,0.251722,1.567339,-1.883474,-1.674320,-1.218577 +-0.023320,0.251894,1.567226,-1.883760,-1.673928,-1.219482 +-0.022734,0.252065,1.567112,-1.884045,-1.673537,-1.220387 +-0.022205,0.252204,1.566980,-1.884317,-1.673219,-1.221204 +-0.021675,0.252342,1.566849,-1.884589,-1.672902,-1.222022 +-0.021180,0.252458,1.566705,-1.884852,-1.672620,-1.222758 +-0.020685,0.252574,1.566561,-1.885115,-1.672338,-1.223494 +-0.020206,0.252679,1.566413,-1.885373,-1.672063,-1.224154 +-0.019727,0.252784,1.566264,-1.885631,-1.671788,-1.224813 +-0.019259,0.252881,1.566114,-1.885884,-1.671518,-1.225401 +-0.018792,0.252977,1.565964,-1.886138,-1.671247,-1.225989 +-0.018343,0.253063,1.565808,-1.886394,-1.670999,-1.226506 +-0.017895,0.253148,1.565652,-1.886650,-1.670751,-1.227023 +-0.017478,0.253211,1.565473,-1.886926,-1.670549,-1.227464 +-0.017061,0.253274,1.565293,-1.887202,-1.670347,-1.227904 +-0.016678,0.253307,1.565075,-1.887518,-1.670199,-1.228263 +-0.016295,0.253339,1.564857,-1.887834,-1.670051,-1.228622 +-0.015946,0.253338,1.564593,-1.888201,-1.669956,-1.228895 +-0.015597,0.253337,1.564329,-1.888568,-1.669862,-1.229167 +-0.015275,0.253306,1.564019,-1.888992,-1.669812,-1.229355 +-0.014954,0.253276,1.563709,-1.889416,-1.669763,-1.229542 +-0.014651,0.253225,1.563364,-1.889892,-1.669743,-1.229653 +-0.014348,0.253174,1.563018,-1.890369,-1.669724,-1.229763 +-0.014057,0.253116,1.562654,-1.890886,-1.669726,-1.229808 +-0.013766,0.253058,1.562289,-1.891402,-1.669729,-1.229853 +-0.013493,0.252997,1.561913,-1.891951,-1.669763,-1.229842 +-0.013221,0.252936,1.561537,-1.892500,-1.669798,-1.229830 +-0.012976,0.252864,1.561136,-1.893095,-1.669882,-1.229763 +-0.012730,0.252791,1.560735,-1.893690,-1.669966,-1.229696 +-0.012517,0.252703,1.560300,-1.894340,-1.670110,-1.229573 +-0.012303,0.252615,1.559865,-1.894990,-1.670254,-1.229450 +-0.012131,0.252513,1.559405,-1.895678,-1.670469,-1.229274 +-0.011959,0.252411,1.558945,-1.896366,-1.670684,-1.229099 +-0.011831,0.252297,1.558471,-1.897069,-1.670966,-1.228877 +-0.011704,0.252183,1.557998,-1.897773,-1.671249,-1.228654 +-0.011611,0.252060,1.557518,-1.898483,-1.671572,-1.228388 +-0.011518,0.251938,1.557038,-1.899193,-1.671895,-1.228122 +-0.011447,0.251813,1.556560,-1.899902,-1.672228,-1.227810 +-0.011376,0.251688,1.556082,-1.900611,-1.672561,-1.227499 +-0.011313,0.251564,1.555610,-1.901314,-1.672869,-1.227136 +-0.011250,0.251440,1.555139,-1.902017,-1.673177,-1.226774 +-0.011182,0.251312,1.554662,-1.902729,-1.673432,-1.226349 +-0.011114,0.251183,1.554185,-1.903442,-1.673686,-1.225924 +-0.011034,0.251037,1.553678,-1.904192,-1.673868,-1.225424 +-0.010954,0.250892,1.553171,-1.904942,-1.674050,-1.224924 +-0.010853,0.250724,1.552623,-1.905743,-1.674143,-1.224341 +-0.010753,0.250555,1.552076,-1.906543,-1.674237,-1.223758 +-0.010627,0.250372,1.551498,-1.907380,-1.674232,-1.223087 +-0.010502,0.250188,1.550921,-1.908216,-1.674227,-1.222416 +-0.010357,0.249997,1.550333,-1.909060,-1.674133,-1.221659 +-0.010211,0.249806,1.549745,-1.909905,-1.674039,-1.220902 +-0.010055,0.249618,1.549171,-1.910723,-1.673873,-1.220062 +-0.009899,0.249429,1.548596,-1.911540,-1.673706,-1.219221 +-0.009734,0.249261,1.548065,-1.912294,-1.673474,-1.218303 +-0.009569,0.249092,1.547534,-1.913048,-1.673243,-1.217385 +-0.009393,0.248961,1.547077,-1.913704,-1.672947,-1.216394 +-0.009218,0.248830,1.546620,-1.914359,-1.672652,-1.215403 +-0.009030,0.248754,1.546263,-1.914887,-1.672298,-1.214342 +-0.008843,0.248677,1.545907,-1.915415,-1.671944,-1.213281 +-0.008643,0.248668,1.545669,-1.915798,-1.671534,-1.212154 +-0.008444,0.248659,1.545432,-1.916180,-1.671125,-1.211027 +-0.008228,0.248721,1.545316,-1.916420,-1.670660,-1.209838 +-0.008013,0.248784,1.545201,-1.916661,-1.670196,-1.208649 +-0.007786,0.248907,1.545186,-1.916787,-1.669688,-1.207393 +-0.007560,0.249029,1.545170,-1.916914,-1.669181,-1.206138 +-0.007340,0.249187,1.545216,-1.916970,-1.668664,-1.204811 +-0.007120,0.249344,1.545261,-1.917027,-1.668147,-1.203484 +-0.006922,0.249516,1.545336,-1.917046,-1.667656,-1.202087 +-0.006725,0.249688,1.545411,-1.917065,-1.667164,-1.200690 +-0.006543,0.249873,1.545506,-1.917065,-1.666692,-1.199228 +-0.006362,0.250059,1.545601,-1.917065,-1.666220,-1.197766 +-0.006174,0.250259,1.545705,-1.917075,-1.665730,-1.196248 +-0.005986,0.250460,1.545810,-1.917084,-1.665239,-1.194731 +-0.005780,0.250669,1.545907,-1.917132,-1.664715,-1.193169 +-0.005575,0.250879,1.546004,-1.917179,-1.664191,-1.191606 +-0.005362,0.251089,1.546081,-1.917274,-1.663650,-1.190015 +-0.005149,0.251299,1.546158,-1.917369,-1.663109,-1.188423 +-0.004939,0.251502,1.546209,-1.917513,-1.662575,-1.186821 +-0.004730,0.251705,1.546260,-1.917656,-1.662041,-1.185219 +-0.004534,0.251895,1.546280,-1.917850,-1.661533,-1.183626 +-0.004338,0.252086,1.546300,-1.918043,-1.661026,-1.182033 +-0.004184,0.252253,1.546283,-1.918278,-1.660599,-1.180458 +-0.004030,0.252421,1.546266,-1.918513,-1.660171,-1.178882 +-0.003953,0.252556,1.546215,-1.918768,-1.659885,-1.177327 +-0.003875,0.252691,1.546163,-1.919023,-1.659600,-1.175773 +-0.003878,0.252795,1.546082,-1.919284,-1.659464,-1.174247 +-0.003881,0.252899,1.546002,-1.919546,-1.659329,-1.172720 +-0.003946,0.252981,1.545901,-1.919810,-1.659311,-1.171207 +-0.004011,0.253063,1.545799,-1.920074,-1.659294,-1.169694 +-0.004112,0.253132,1.545682,-1.920344,-1.659345,-1.168180 +-0.004213,0.253201,1.545564,-1.920614,-1.659397,-1.166666 +-0.004318,0.253268,1.545434,-1.920895,-1.659462,-1.165152 +-0.004423,0.253335,1.545304,-1.921177,-1.659526,-1.163638 +-0.004510,0.253405,1.545164,-1.921474,-1.659561,-1.162125 +-0.004596,0.253475,1.545025,-1.921770,-1.659596,-1.160612 +-0.004655,0.253549,1.544872,-1.922083,-1.659583,-1.159097 +-0.004714,0.253622,1.544720,-1.922397,-1.659570,-1.157582 +-0.004750,0.253693,1.544549,-1.922724,-1.659514,-1.156059 +-0.004787,0.253764,1.544379,-1.923052,-1.659458,-1.154537 +-0.004823,0.253821,1.544184,-1.923386,-1.659397,-1.153004 +-0.004859,0.253879,1.543988,-1.923720,-1.659336,-1.151470 +-0.004919,0.253916,1.543766,-1.924050,-1.659309,-1.149921 +-0.004979,0.253953,1.543544,-1.924381,-1.659282,-1.148372 +-0.005066,0.253971,1.543302,-1.924700,-1.659295,-1.146800 +-0.005153,0.253989,1.543059,-1.925019,-1.659308,-1.145228 +-0.005262,0.253995,1.542803,-1.925323,-1.659350,-1.143624 +-0.005371,0.254000,1.542546,-1.925627,-1.659391,-1.142019 +-0.005496,0.253995,1.542275,-1.925921,-1.659448,-1.140367 +-0.005620,0.253990,1.542004,-1.926216,-1.659505,-1.138715 +-0.005758,0.253966,1.541699,-1.926526,-1.659571,-1.136996 +-0.005895,0.253943,1.541394,-1.926837,-1.659637,-1.135277 +-0.006050,0.253882,1.541020,-1.927204,-1.659717,-1.133478 +-0.006205,0.253821,1.540646,-1.927572,-1.659796,-1.131678 +-0.006368,0.253717,1.540184,-1.928027,-1.659873,-1.129793 +-0.006530,0.253612,1.539721,-1.928482,-1.659949,-1.127908 +-0.006688,0.253469,1.539171,-1.929035,-1.659998,-1.125936 +-0.006845,0.253326,1.538620,-1.929589,-1.660047,-1.123965 +-0.006997,0.253136,1.537962,-1.930266,-1.660065,-1.121905 +-0.007148,0.252946,1.537304,-1.930944,-1.660083,-1.119845 +-0.007296,0.252689,1.536503,-1.931788,-1.660074,-1.117683 +-0.007445,0.252431,1.535702,-1.932631,-1.660065,-1.115520 +-0.007598,0.252093,1.534738,-1.933661,-1.660038,-1.113236 +-0.007752,0.251756,1.533775,-1.934692,-1.660011,-1.110952 +-0.007929,0.251341,1.532663,-1.935878,-1.659997,-1.108545 +-0.008107,0.250927,1.531552,-1.937065,-1.659982,-1.106138 +-0.008321,0.250453,1.530327,-1.938358,-1.660003,-1.103620 +-0.008535,0.249979,1.529102,-1.939651,-1.660023,-1.101101 +-0.008774,0.249472,1.527805,-1.941004,-1.660056,-1.098475 +-0.009013,0.248966,1.526507,-1.942358,-1.660090,-1.095848 +-0.009252,0.248454,1.525170,-1.943743,-1.660094,-1.093117 +-0.009491,0.247942,1.523833,-1.945128,-1.660098,-1.090386 +-0.009708,0.247443,1.522477,-1.946532,-1.660034,-1.087562 +-0.009925,0.246944,1.521120,-1.947935,-1.659969,-1.084739 +-0.010112,0.246474,1.519769,-1.949330,-1.659822,-1.081851 +-0.010298,0.246003,1.518419,-1.950725,-1.659675,-1.078964 +-0.010474,0.245570,1.517101,-1.952070,-1.659477,-1.076048 +-0.010649,0.245137,1.515783,-1.953415,-1.659279,-1.073132 +-0.010842,0.244734,1.514499,-1.954692,-1.659081,-1.070221 +-0.011034,0.244331,1.513216,-1.955968,-1.658884,-1.067310 +-0.011255,0.243941,1.511945,-1.957196,-1.658707,-1.064430 +-0.011477,0.243552,1.510674,-1.958425,-1.658530,-1.061551 +-0.011732,0.243151,1.509372,-1.959655,-1.658374,-1.058699 +-0.011987,0.242750,1.508069,-1.960885,-1.658217,-1.055848 +-0.012289,0.242308,1.506680,-1.962174,-1.658089,-1.053007 +-0.012592,0.241866,1.505290,-1.963463,-1.657961,-1.050167 +-0.012944,0.241365,1.503784,-1.964847,-1.657861,-1.047347 +-0.013295,0.240864,1.502279,-1.966231,-1.657761,-1.044527 +-0.013675,0.240308,1.500661,-1.967720,-1.657660,-1.041759 +-0.014054,0.239753,1.499043,-1.969208,-1.657559,-1.038992 +-0.014438,0.239154,1.497334,-1.970793,-1.657421,-1.036306 +-0.014822,0.238555,1.495624,-1.972378,-1.657282,-1.033619 +-0.015213,0.237924,1.493851,-1.974030,-1.657116,-1.031047 +-0.015605,0.237293,1.492078,-1.975681,-1.656949,-1.028474 +-0.016024,0.236638,1.490278,-1.977348,-1.656797,-1.026059 +-0.016444,0.235984,1.488479,-1.979016,-1.656645,-1.023644 +-0.016900,0.235328,1.486703,-1.980639,-1.656528,-1.021433 +-0.017355,0.234673,1.484927,-1.982262,-1.656410,-1.019223 +-0.017836,0.234051,1.483238,-1.983776,-1.656312,-1.017253 +-0.018316,0.233429,1.481548,-1.985290,-1.656215,-1.015283 +-0.018813,0.232869,1.479994,-1.986643,-1.656129,-1.013582 +-0.019310,0.232308,1.478440,-1.987995,-1.656044,-1.011882 +-0.019829,0.231823,1.477058,-1.989142,-1.655985,-1.010477 +-0.020347,0.231339,1.475676,-1.990289,-1.655926,-1.009072 +-0.020888,0.230941,1.474492,-1.991197,-1.655901,-1.007974 +-0.021429,0.230544,1.473309,-1.992106,-1.655876,-1.006877 +-0.021983,0.230242,1.472341,-1.992764,-1.655869,-1.006082 +-0.022537,0.229940,1.471373,-1.993422,-1.655862,-1.005286 +-0.023087,0.229740,1.470628,-1.993832,-1.655845,-1.004777 +-0.023638,0.229539,1.469884,-1.994241,-1.655829,-1.004268 +-0.024169,0.229433,1.469348,-1.994429,-1.655774,-1.004023 +-0.024700,0.229327,1.468812,-1.994616,-1.655720,-1.003777 +-0.025208,0.229294,1.468451,-1.994621,-1.655623,-1.003776 +-0.025717,0.229262,1.468090,-1.994626,-1.655527,-1.003775 +-0.026205,0.229281,1.467874,-1.994482,-1.655396,-1.004007 +-0.026693,0.229301,1.467657,-1.994339,-1.655266,-1.004240 +-0.027168,0.229350,1.467551,-1.994082,-1.655116,-1.004693 +-0.027644,0.229399,1.467445,-1.993825,-1.654966,-1.005145 +-0.028119,0.229454,1.467419,-1.993484,-1.654820,-1.005803 +-0.028594,0.229509,1.467392,-1.993143,-1.654674,-1.006462 +-0.029065,0.229568,1.467441,-1.992724,-1.654528,-1.007326 +-0.029537,0.229627,1.467490,-1.992306,-1.654382,-1.008191 +-0.029992,0.229695,1.467619,-1.991813,-1.654225,-1.009268 +-0.030446,0.229763,1.467747,-1.991319,-1.654067,-1.010345 +-0.030886,0.229846,1.467966,-1.990740,-1.653905,-1.011631 +-0.031326,0.229929,1.468184,-1.990160,-1.653742,-1.012916 +-0.031752,0.230035,1.468510,-1.989470,-1.653577,-1.014399 +-0.032178,0.230142,1.468836,-1.988781,-1.653412,-1.015882 +-0.032583,0.230285,1.469294,-1.987954,-1.653231,-1.017581 +-0.032987,0.230429,1.469752,-1.987128,-1.653051,-1.019279 +-0.033348,0.230638,1.470386,-1.986129,-1.652819,-1.021234 +-0.033709,0.230847,1.471019,-1.985129,-1.652587,-1.023188 +-0.034011,0.231142,1.471858,-1.983933,-1.652282,-1.025400 +-0.034312,0.231437,1.472696,-1.982736,-1.651978,-1.027612 +-0.034567,0.231821,1.473742,-1.981333,-1.651632,-1.030052 +-0.034822,0.232204,1.474789,-1.979930,-1.651286,-1.032492 +-0.035050,0.232667,1.476033,-1.978325,-1.650945,-1.035131 +-0.035277,0.233131,1.477278,-1.976720,-1.650604,-1.037770 +-0.035482,0.233664,1.478698,-1.974938,-1.650290,-1.040582 +-0.035688,0.234198,1.480119,-1.973156,-1.649977,-1.043393 +-0.035867,0.234789,1.481681,-1.971243,-1.649691,-1.046350 +-0.036046,0.235380,1.483242,-1.969329,-1.649406,-1.049307 +-0.036184,0.236016,1.484909,-1.967338,-1.649130,-1.052383 +-0.036321,0.236652,1.486575,-1.965346,-1.648854,-1.055459 +-0.036400,0.237327,1.488317,-1.963323,-1.648561,-1.058643 +-0.036478,0.238002,1.490059,-1.961301,-1.648268,-1.061828 +-0.036490,0.238698,1.491832,-1.959306,-1.647948,-1.065121 +-0.036501,0.239394,1.493605,-1.957310,-1.647628,-1.068415 +-0.036448,0.240087,1.495360,-1.955398,-1.647288,-1.071812 +-0.036395,0.240779,1.497115,-1.953486,-1.646947,-1.075210 +-0.036290,0.241447,1.498813,-1.951692,-1.646606,-1.078693 +-0.036185,0.242115,1.500511,-1.949898,-1.646265,-1.082176 +-0.036054,0.242736,1.502119,-1.948240,-1.645967,-1.085710 +-0.035923,0.243356,1.503728,-1.946581,-1.645668,-1.089245 +-0.035800,0.243913,1.505228,-1.945055,-1.645464,-1.092792 +-0.035677,0.244470,1.506728,-1.943529,-1.645259,-1.096339 +-0.035575,0.244966,1.508126,-1.942112,-1.645163,-1.099864 +-0.035472,0.245462,1.509524,-1.940695,-1.645067,-1.103390 +-0.035377,0.245920,1.510850,-1.939352,-1.645049,-1.106873 +-0.035281,0.246378,1.512176,-1.938010,-1.645031,-1.110356 +-0.035164,0.246826,1.513461,-1.936712,-1.645033,-1.113781 +-0.035046,0.247274,1.514745,-1.935415,-1.645035,-1.117207 +-0.034873,0.247732,1.516005,-1.934154,-1.644990,-1.120561 +-0.034700,0.248190,1.517264,-1.932894,-1.644946,-1.123915 +-0.034458,0.248662,1.518496,-1.931675,-1.644824,-1.127189 +-0.034216,0.249134,1.519728,-1.930456,-1.644701,-1.130463 +-0.033909,0.249616,1.520925,-1.929284,-1.644504,-1.133661 +-0.033603,0.250097,1.522121,-1.928112,-1.644306,-1.136860 +-0.033219,0.250588,1.523270,-1.927006,-1.644008,-1.139996 +-0.032836,0.251078,1.524419,-1.925899,-1.643711,-1.143132 +-0.032374,0.251568,1.525499,-1.924887,-1.643311,-1.146217 +-0.031911,0.252057,1.526578,-1.923876,-1.642910,-1.149301 +-0.031405,0.252522,1.527560,-1.922977,-1.642469,-1.152345 +-0.030898,0.252987,1.528543,-1.922078,-1.642027,-1.155388 +-0.030383,0.253409,1.529412,-1.921295,-1.641608,-1.158393 +-0.029868,0.253832,1.530281,-1.920512,-1.641189,-1.161398 +-0.029366,0.254209,1.531039,-1.919830,-1.640832,-1.164364 +-0.028863,0.254586,1.531797,-1.919147,-1.640474,-1.167331 +-0.028371,0.254932,1.532471,-1.918534,-1.640174,-1.170255 +-0.027880,0.255279,1.533144,-1.917922,-1.639874,-1.173179 +-0.027368,0.255629,1.533777,-1.917343,-1.639587,-1.176079 +-0.026856,0.255979,1.534409,-1.916764,-1.639301,-1.178978 +-0.026293,0.256365,1.535041,-1.916186,-1.638985,-1.181891 +-0.025731,0.256752,1.535673,-1.915609,-1.638669,-1.184805 +-0.025111,0.257185,1.536317,-1.915023,-1.638316,-1.187733 +-0.024491,0.257619,1.536961,-1.914438,-1.637963,-1.190662 +-0.023832,0.258091,1.537607,-1.913850,-1.637601,-1.193577 +-0.023174,0.258564,1.538253,-1.913262,-1.637238,-1.196492 +-0.022500,0.259066,1.538893,-1.912672,-1.636908,-1.199370 +-0.021826,0.259568,1.539534,-1.912081,-1.636577,-1.202248 +-0.021160,0.260091,1.540161,-1.911489,-1.636320,-1.205069 +-0.020494,0.260613,1.540789,-1.910897,-1.636062,-1.207890 +-0.019846,0.261147,1.541389,-1.910315,-1.635891,-1.210630 +-0.019197,0.261680,1.541989,-1.909734,-1.635720,-1.213370 +-0.018554,0.262221,1.542556,-1.909175,-1.635608,-1.216003 +-0.017910,0.262763,1.543123,-1.908616,-1.635497,-1.218637 +-0.017248,0.263311,1.543648,-1.908101,-1.635399,-1.221151 +-0.016585,0.263860,1.544174,-1.907585,-1.635301,-1.223665 +-0.015889,0.264405,1.544638,-1.907141,-1.635185,-1.226056 +-0.015192,0.264950,1.545103,-1.906698,-1.635069,-1.228447 +-0.014459,0.265479,1.545491,-1.906346,-1.634923,-1.230715 +-0.013726,0.266008,1.545878,-1.905995,-1.634777,-1.232983 +-0.012959,0.266509,1.546174,-1.905752,-1.634598,-1.235138 +-0.012191,0.267010,1.546470,-1.905510,-1.634420,-1.237292 +-0.011394,0.267468,1.546656,-1.905396,-1.634211,-1.239343 +-0.010596,0.267925,1.546842,-1.905281,-1.634002,-1.241393 +-0.009773,0.268322,1.546896,-1.905317,-1.633771,-1.243342 +-0.008949,0.268718,1.546950,-1.905353,-1.633540,-1.245291 +-0.008102,0.269042,1.546857,-1.905554,-1.633286,-1.247140 +-0.007254,0.269366,1.546764,-1.905755,-1.633031,-1.248989 +-0.006384,0.269610,1.546518,-1.906128,-1.632757,-1.250744 +-0.005515,0.269854,1.546271,-1.906501,-1.632484,-1.252499 +-0.004628,0.270016,1.545872,-1.907046,-1.632194,-1.254169 +-0.003741,0.270178,1.545473,-1.907591,-1.631904,-1.255839 +-0.002822,0.270266,1.544931,-1.908310,-1.631573,-1.257434 +-0.001903,0.270353,1.544389,-1.909030,-1.631241,-1.259029 +-0.000934,0.270379,1.543719,-1.909921,-1.630834,-1.260561 +0.000035,0.270405,1.543049,-1.910812,-1.630426,-1.262093 +0.001056,0.270378,1.542269,-1.911861,-1.629936,-1.263580 +0.002078,0.270352,1.541490,-1.912909,-1.629446,-1.265067 +0.003143,0.270279,1.540615,-1.914098,-1.628886,-1.266529 +0.004208,0.270206,1.539740,-1.915287,-1.628327,-1.267991 +0.005303,0.270093,1.538786,-1.916596,-1.627722,-1.269446 +0.006399,0.269980,1.537832,-1.917904,-1.627117,-1.270900 +0.007502,0.269825,1.536806,-1.919312,-1.626511,-1.272353 +0.008604,0.269670,1.535780,-1.920720,-1.625905,-1.273806 +0.009688,0.269469,1.534683,-1.922214,-1.625342,-1.275254 +0.010773,0.269268,1.533586,-1.923708,-1.624780,-1.276702 +0.011831,0.269036,1.532447,-1.925250,-1.624276,-1.278143 +0.012889,0.268803,1.531308,-1.926792,-1.623771,-1.279584 +0.013918,0.268560,1.530166,-1.928336,-1.623331,-1.281010 +0.014946,0.268318,1.529024,-1.929879,-1.622892,-1.282435 +0.015941,0.268078,1.527903,-1.931390,-1.622520,-1.283823 +0.016935,0.267837,1.526782,-1.932901,-1.622149,-1.285212 +0.017917,0.267612,1.525691,-1.934377,-1.621816,-1.286537 +0.018898,0.267386,1.524600,-1.935854,-1.621483,-1.287862 +0.019901,0.267176,1.523519,-1.937329,-1.621142,-1.289101 +0.020903,0.266965,1.522438,-1.938805,-1.620801,-1.290340 +0.021937,0.266765,1.521357,-1.940291,-1.620431,-1.291481 +0.022972,0.266566,1.520277,-1.941777,-1.620061,-1.292623 +0.024031,0.266384,1.519214,-1.943253,-1.619662,-1.293666 +0.025091,0.266202,1.518152,-1.944730,-1.619263,-1.294708 +0.026167,0.266043,1.517122,-1.946176,-1.618840,-1.295657 +0.027244,0.265883,1.516093,-1.947623,-1.618417,-1.296605 +0.028323,0.265742,1.515100,-1.949029,-1.617986,-1.297468 +0.029402,0.265601,1.514107,-1.950434,-1.617556,-1.298331 +0.030461,0.265470,1.513152,-1.951784,-1.617150,-1.299119 +0.031521,0.265339,1.512198,-1.953133,-1.616745,-1.299907 +0.032553,0.265220,1.511292,-1.954411,-1.616372,-1.300623 +0.033585,0.265101,1.510385,-1.955688,-1.616000,-1.301339 +0.034602,0.265000,1.509535,-1.956888,-1.615633,-1.301980 +0.035619,0.264898,1.508685,-1.958088,-1.615266,-1.302622 +0.036627,0.264814,1.507890,-1.959212,-1.614889,-1.303184 +0.037635,0.264730,1.507094,-1.960336,-1.614512,-1.303746 +0.038630,0.264668,1.506364,-1.961370,-1.614124,-1.304223 +0.039626,0.264606,1.505634,-1.962405,-1.613737,-1.304700 +0.040610,0.264581,1.504997,-1.963319,-1.613332,-1.305088 +0.041594,0.264556,1.504359,-1.964233,-1.612928,-1.305477 +0.042576,0.264583,1.503834,-1.965010,-1.612486,-1.305775 +0.043558,0.264611,1.503309,-1.965788,-1.612044,-1.306073 +0.044549,0.264692,1.502890,-1.966443,-1.611547,-1.306276 +0.045540,0.264772,1.502471,-1.967099,-1.611050,-1.306480 +0.046538,0.264897,1.502137,-1.967662,-1.610495,-1.306587 +0.047537,0.265022,1.501803,-1.968225,-1.609940,-1.306693 +0.048537,0.265181,1.501533,-1.968720,-1.609341,-1.306703 +0.049537,0.265341,1.501264,-1.969215,-1.608741,-1.306713 +0.050521,0.265525,1.501044,-1.969660,-1.608125,-1.306630 +0.051506,0.265709,1.500825,-1.970104,-1.607509,-1.306547 +0.052464,0.265912,1.500645,-1.970510,-1.606895,-1.306369 +0.053422,0.266115,1.500466,-1.970915,-1.606280,-1.306191 +0.054358,0.266333,1.500314,-1.971301,-1.605659,-1.305915 +0.055295,0.266550,1.500162,-1.971686,-1.605037,-1.305639 +0.056213,0.266775,1.500021,-1.972075,-1.604403,-1.305264 +0.057130,0.267000,1.499881,-1.972464,-1.603769,-1.304890 +0.058022,0.267224,1.499740,-1.972867,-1.603138,-1.304427 +0.058914,0.267447,1.499599,-1.973270,-1.602507,-1.303964 +0.059769,0.267662,1.499450,-1.973693,-1.601896,-1.303423 +0.060625,0.267877,1.499300,-1.974117,-1.601286,-1.302882 +0.061446,0.268086,1.499144,-1.974558,-1.600695,-1.302274 +0.062267,0.268294,1.498989,-1.975000,-1.600103,-1.301666 +0.063054,0.268502,1.498835,-1.975451,-1.599528,-1.300998 +0.063841,0.268709,1.498682,-1.975902,-1.598954,-1.300330 +0.064593,0.268917,1.498535,-1.976356,-1.598398,-1.299611 +0.065345,0.269126,1.498389,-1.976811,-1.597843,-1.298892 +0.066078,0.269353,1.498273,-1.977249,-1.597281,-1.298131 +0.066811,0.269580,1.498157,-1.977688,-1.596719,-1.297370 +0.067544,0.269848,1.498104,-1.978085,-1.596118,-1.296574 +0.068278,0.270116,1.498050,-1.978483,-1.595517,-1.295778 +0.069011,0.270429,1.498066,-1.978830,-1.594878,-1.294951 +0.069744,0.270741,1.498082,-1.979178,-1.594239,-1.294124 +0.070460,0.271086,1.498152,-1.979485,-1.593592,-1.293266 +0.071177,0.271431,1.498221,-1.979792,-1.592945,-1.292408 +0.071856,0.271785,1.498313,-1.980085,-1.592329,-1.291511 +0.072535,0.272139,1.498404,-1.980378,-1.591713,-1.290614 +0.073163,0.272478,1.498479,-1.980692,-1.591148,-1.289676 +0.073791,0.272817,1.498554,-1.981006,-1.590582,-1.288738 +0.074370,0.273128,1.498590,-1.981365,-1.590060,-1.287763 +0.074948,0.273438,1.498626,-1.981725,-1.589538,-1.286789 +0.075482,0.273710,1.498608,-1.982146,-1.589047,-1.285781 +0.076016,0.273983,1.498590,-1.982568,-1.588556,-1.284774 +0.076511,0.274214,1.498512,-1.983059,-1.588084,-1.283735 +0.077006,0.274445,1.498433,-1.983550,-1.587613,-1.282697 +0.077466,0.274641,1.498304,-1.984097,-1.587157,-1.281634 +0.077926,0.274836,1.498176,-1.984644,-1.586701,-1.280570 +0.078352,0.275010,1.498022,-1.985217,-1.586259,-1.279487 +0.078779,0.275183,1.497868,-1.985790,-1.585816,-1.278404 +0.079168,0.275346,1.497712,-1.986356,-1.585396,-1.277301 +0.079557,0.275508,1.497555,-1.986921,-1.584975,-1.276197 +0.079895,0.275667,1.497417,-1.987446,-1.584599,-1.275067 +0.080232,0.275826,1.497280,-1.987971,-1.584224,-1.273937 +0.080513,0.275995,1.497187,-1.988420,-1.583905,-1.272765 +0.080793,0.276164,1.497095,-1.988869,-1.583586,-1.271594 +0.081029,0.276357,1.497067,-1.989224,-1.583302,-1.270358 +0.081265,0.276550,1.497039,-1.989580,-1.583017,-1.269123 +0.081472,0.276773,1.497080,-1.989841,-1.582742,-1.267799 +0.081679,0.276995,1.497121,-1.990101,-1.582467,-1.266476 +0.081862,0.277252,1.497237,-1.990258,-1.582193,-1.265050 +0.082044,0.277509,1.497354,-1.990415,-1.581918,-1.263623 +0.082208,0.277804,1.497548,-1.990469,-1.581632,-1.262090 +0.082373,0.278099,1.497742,-1.990524,-1.581346,-1.260558 +0.082533,0.278428,1.498002,-1.990494,-1.581025,-1.258920 +0.082693,0.278758,1.498262,-1.990465,-1.580705,-1.257283 +0.082854,0.279112,1.498565,-1.990384,-1.580338,-1.255546 +0.083014,0.279466,1.498868,-1.990303,-1.579972,-1.253809 +0.083179,0.279828,1.499185,-1.990210,-1.579558,-1.251981 +0.083343,0.280191,1.499501,-1.990117,-1.579143,-1.250154 +0.083502,0.280544,1.499803,-1.990044,-1.578696,-1.248254 +0.083661,0.280897,1.500104,-1.989972,-1.578249,-1.246355 +0.083785,0.281213,1.500355,-1.989949,-1.577821,-1.244403 +0.083909,0.281530,1.500607,-1.989927,-1.577394,-1.242452 +0.083975,0.281779,1.500766,-1.989990,-1.577029,-1.240458 +0.084040,0.282028,1.500926,-1.990053,-1.576665,-1.238465 +0.084034,0.282196,1.500977,-1.990215,-1.576388,-1.236434 +0.084028,0.282365,1.501029,-1.990377,-1.576111,-1.234403 +0.083957,0.282462,1.500986,-1.990628,-1.575913,-1.232334 +0.083887,0.282559,1.500942,-1.990879,-1.575715,-1.230265 +0.083781,0.282604,1.500824,-1.991208,-1.575549,-1.228149 +0.083676,0.282649,1.500706,-1.991537,-1.575383,-1.226032 +0.083549,0.282655,1.500533,-1.991927,-1.575227,-1.223869 +0.083423,0.282661,1.500360,-1.992316,-1.575071,-1.221706 +0.083269,0.282638,1.500151,-1.992736,-1.574940,-1.219511 +0.083116,0.282615,1.499942,-1.993155,-1.574808,-1.217315 +0.082929,0.282569,1.499712,-1.993582,-1.574715,-1.215107 +0.082741,0.282522,1.499482,-1.994009,-1.574621,-1.212899 +0.082520,0.282453,1.499234,-1.994432,-1.574571,-1.210697 +0.082298,0.282384,1.498987,-1.994856,-1.574521,-1.208495 +0.082031,0.282286,1.498714,-1.995277,-1.574533,-1.206301 +0.081764,0.282189,1.498442,-1.995697,-1.574545,-1.204106 +0.081432,0.282056,1.498135,-1.996113,-1.574650,-1.201901 +0.081101,0.281923,1.497829,-1.996529,-1.574756,-1.199695 +0.080713,0.281757,1.497489,-1.996940,-1.574945,-1.197462 +0.080324,0.281592,1.497149,-1.997350,-1.575135,-1.195228 +0.079903,0.281401,1.496778,-1.997758,-1.575372,-1.192961 +0.079482,0.281210,1.496406,-1.998167,-1.575609,-1.190693 +0.079042,0.281001,1.496009,-1.998569,-1.575873,-1.188391 +0.078601,0.280791,1.495611,-1.998972,-1.576137,-1.186090 +0.078151,0.280566,1.495192,-1.999367,-1.576417,-1.183758 +0.077701,0.280341,1.494772,-1.999761,-1.576698,-1.181426 +0.077251,0.280092,1.494312,-2.000170,-1.576979,-1.179059 +0.076802,0.279844,1.493852,-2.000579,-1.577261,-1.176691 +0.076354,0.279558,1.493323,-2.001031,-1.577541,-1.174278 +0.075907,0.279271,1.492795,-2.001482,-1.577822,-1.171864 +0.075452,0.278943,1.492193,-2.001976,-1.578118,-1.169400 +0.074998,0.278615,1.491592,-2.002469,-1.578414,-1.166936 +0.074539,0.278251,1.490923,-2.002995,-1.578723,-1.164421 +0.074079,0.277887,1.490255,-2.003521,-1.579031,-1.161907 +0.073616,0.277491,1.489523,-2.004078,-1.579349,-1.159343 +0.073154,0.277095,1.488791,-2.004634,-1.579668,-1.156780 +0.072679,0.276671,1.488004,-2.005208,-1.580011,-1.154170 +0.072205,0.276247,1.487217,-2.005783,-1.580355,-1.151561 +0.071722,0.275808,1.486391,-2.006362,-1.580722,-1.148904 +0.071239,0.275369,1.485564,-2.006942,-1.581089,-1.146247 +0.070752,0.274923,1.484706,-2.007525,-1.581473,-1.143539 +0.070264,0.274477,1.483847,-2.008108,-1.581857,-1.140832 +0.069757,0.274015,1.482946,-2.008704,-1.582283,-1.138075 +0.069250,0.273553,1.482045,-2.009300,-1.582709,-1.135318 +0.068696,0.273059,1.481079,-2.009926,-1.583223,-1.132520 +0.068142,0.272564,1.480114,-2.010552,-1.583738,-1.129722 +0.067525,0.272021,1.479062,-2.011233,-1.584364,-1.126889 +0.066908,0.271478,1.478010,-2.011914,-1.584991,-1.124055 +0.066226,0.270868,1.476837,-2.012689,-1.585732,-1.121184 +0.065543,0.270258,1.475665,-2.013463,-1.586472,-1.118312 +0.064785,0.269561,1.474343,-2.014361,-1.587340,-1.115411 +0.064026,0.268864,1.473021,-2.015260,-1.588208,-1.112511 +0.063184,0.268074,1.471540,-2.016292,-1.589213,-1.109594 +0.062342,0.267283,1.470060,-2.017324,-1.590217,-1.106678 +0.061437,0.266406,1.468425,-2.018496,-1.591320,-1.103743 +0.060532,0.265528,1.466791,-2.019668,-1.592422,-1.100808 +0.059595,0.264572,1.465006,-2.020993,-1.593561,-1.097846 +0.058658,0.263616,1.463220,-2.022318,-1.594700,-1.094883 +0.057713,0.262586,1.461283,-2.023806,-1.595830,-1.091902 +0.056768,0.261555,1.459347,-2.025293,-1.596961,-1.088921 +0.055852,0.260462,1.457265,-2.026949,-1.598017,-1.085943 +0.054936,0.259368,1.455182,-2.028605,-1.599074,-1.082965 +0.054074,0.258237,1.452990,-2.030398,-1.600013,-1.080020 +0.053212,0.257105,1.450797,-2.032191,-1.600952,-1.077076 +0.052394,0.255962,1.448548,-2.034055,-1.601786,-1.074197 +0.051575,0.254818,1.446299,-2.035918,-1.602620,-1.071318 +0.050792,0.253679,1.444030,-2.037804,-1.603357,-1.068531 +0.050008,0.252541,1.441762,-2.039689,-1.604094,-1.065744 +0.049239,0.251413,1.439499,-2.041551,-1.604760,-1.063072 +0.048470,0.250285,1.437235,-2.043413,-1.605427,-1.060400 +0.047699,0.249173,1.434993,-2.045216,-1.606033,-1.057850 +0.046927,0.248061,1.432750,-2.047020,-1.606638,-1.055300 +0.046165,0.246981,1.430556,-2.048737,-1.607160,-1.052890 +0.045403,0.245900,1.428363,-2.050455,-1.607681,-1.050481 +0.044640,0.244860,1.426247,-2.052053,-1.608142,-1.048245 +0.043876,0.243821,1.424132,-2.053651,-1.608602,-1.046009 +0.043087,0.242816,1.422105,-2.055115,-1.609045,-1.043966 +0.042298,0.241811,1.420077,-2.056579,-1.609488,-1.041924 +0.041483,0.240836,1.418135,-2.057919,-1.609917,-1.040070 +0.040668,0.239860,1.416194,-2.059259,-1.610345,-1.038216 +0.039845,0.238909,1.414329,-2.060501,-1.610735,-1.036552 +0.039022,0.237958,1.412465,-2.061744,-1.611125,-1.034888 +0.038203,0.237030,1.410674,-2.062904,-1.611463,-1.033428 +0.037385,0.236101,1.408884,-2.064065,-1.611802,-1.031969 +0.036557,0.235193,1.407176,-2.065131,-1.612117,-1.030722 +0.035729,0.234285,1.405468,-2.066197,-1.612433,-1.029475 +0.034873,0.233400,1.403863,-2.067142,-1.612764,-1.028446 +0.034016,0.232515,1.402258,-2.068088,-1.613094,-1.027418 +0.033130,0.231666,1.400783,-2.068888,-1.613444,-1.026618 +0.032243,0.230817,1.399309,-2.069689,-1.613795,-1.025818 +0.031331,0.230009,1.397974,-2.070340,-1.614159,-1.025254 +0.030419,0.229201,1.396640,-2.070991,-1.614523,-1.024691 +0.029486,0.228438,1.395451,-2.071491,-1.614894,-1.024372 +0.028554,0.227675,1.394262,-2.071990,-1.615264,-1.024054 +0.027633,0.226978,1.393247,-2.072327,-1.615589,-1.023985 +0.026712,0.226282,1.392231,-2.072664,-1.615914,-1.023916 +0.025832,0.225673,1.391413,-2.072829,-1.616145,-1.024090 +0.024953,0.225064,1.390594,-2.072994,-1.616377,-1.024264 +0.024110,0.224543,1.389976,-2.072984,-1.616526,-1.024679 +0.023268,0.224021,1.389358,-2.072973,-1.616676,-1.025093 +0.022441,0.223574,1.388929,-2.072792,-1.616780,-1.025743 +0.021614,0.223126,1.388500,-2.072612,-1.616885,-1.026392 +0.020783,0.222739,1.388246,-2.072265,-1.616982,-1.027264 +0.019951,0.222352,1.387993,-2.071918,-1.617078,-1.028137 +0.019114,0.222014,1.387899,-2.071423,-1.617174,-1.029227 +0.018278,0.221677,1.387805,-2.070928,-1.617269,-1.030317 +0.017451,0.221380,1.387847,-2.070319,-1.617346,-1.031624 +0.016624,0.221084,1.387890,-2.069710,-1.617422,-1.032932 +0.015800,0.220821,1.388059,-2.068996,-1.617496,-1.034444 +0.014975,0.220557,1.388229,-2.068282,-1.617569,-1.035957 +0.014151,0.220331,1.388531,-2.067459,-1.617642,-1.037648 +0.013327,0.220105,1.388833,-2.066636,-1.617715,-1.039340 +0.012530,0.219918,1.389261,-2.065722,-1.617747,-1.041186 +0.011734,0.219731,1.389689,-2.064807,-1.617778,-1.043032 +0.010978,0.219581,1.390229,-2.063820,-1.617745,-1.045008 +0.010223,0.219431,1.390769,-2.062832,-1.617712,-1.046985 +0.009523,0.219321,1.391416,-2.061781,-1.617595,-1.049069 +0.008823,0.219212,1.392063,-2.060730,-1.617479,-1.051153 +0.008180,0.219146,1.392815,-2.059618,-1.617280,-1.053330 +0.007536,0.219079,1.393567,-2.058505,-1.617082,-1.055506 +0.006937,0.219063,1.394436,-2.057306,-1.616832,-1.057763 +0.006337,0.219047,1.395305,-2.056106,-1.616583,-1.060020 +0.005782,0.219100,1.396316,-2.054788,-1.616287,-1.062343 +0.005227,0.219152,1.397328,-2.053470,-1.615990,-1.064666 +0.004709,0.219275,1.398482,-2.052028,-1.615666,-1.067051 +0.004192,0.219399,1.399635,-2.050585,-1.615342,-1.069435 +0.003698,0.219582,1.400911,-2.049032,-1.615022,-1.071894 +0.003203,0.219764,1.402186,-2.047478,-1.614702,-1.074352 +0.002727,0.219989,1.403545,-2.045847,-1.614399,-1.076891 +0.002252,0.220213,1.404905,-2.044217,-1.614095,-1.079431 +0.001808,0.220461,1.406302,-2.042565,-1.613792,-1.082061 +0.001364,0.220709,1.407699,-2.040914,-1.613489,-1.084691 +0.000977,0.220976,1.409113,-2.039277,-1.613149,-1.087446 +0.000590,0.221244,1.410528,-2.037639,-1.612809,-1.090201 +0.000265,0.221528,1.411960,-2.036019,-1.612422,-1.093125 +-0.000059,0.221812,1.413391,-2.034398,-1.612036,-1.096049 +-0.000342,0.222104,1.414832,-2.032789,-1.611642,-1.099144 +-0.000624,0.222396,1.416273,-2.031181,-1.611247,-1.102238 +-0.000870,0.222699,1.417724,-2.029578,-1.610864,-1.105470 +-0.001117,0.223001,1.419176,-2.027974,-1.610481,-1.108702 +-0.001322,0.223339,1.420671,-2.026338,-1.610105,-1.112042 +-0.001526,0.223677,1.422167,-2.024703,-1.609729,-1.115381 +-0.001692,0.224071,1.423738,-2.022998,-1.609368,-1.118790 +-0.001858,0.224465,1.425308,-2.021293,-1.609007,-1.122199 +-0.001977,0.224917,1.426946,-2.019526,-1.608650,-1.125641 +-0.002096,0.225368,1.428585,-2.017759,-1.608292,-1.129082 +-0.002157,0.225872,1.430271,-2.015953,-1.607919,-1.132543 +-0.002217,0.226375,1.431958,-2.014146,-1.607545,-1.136003 +-0.002223,0.226917,1.433667,-2.012323,-1.607161,-1.139477 +-0.002228,0.227460,1.435375,-2.010499,-1.606777,-1.142951 +-0.002190,0.228021,1.437074,-2.008685,-1.606400,-1.146428 +-0.002153,0.228583,1.438773,-2.006871,-1.606023,-1.149906 +-0.002094,0.229150,1.440444,-2.005072,-1.605688,-1.153386 +-0.002035,0.229716,1.442115,-2.003273,-1.605352,-1.156866 +-0.001979,0.230277,1.443749,-2.001487,-1.605098,-1.160345 +-0.001923,0.230838,1.445384,-1.999701,-1.604843,-1.163824 +-0.001880,0.231389,1.446976,-1.997928,-1.604686,-1.167281 +-0.001838,0.231939,1.448569,-1.996156,-1.604529,-1.170737 +-0.001803,0.232477,1.450115,-1.994403,-1.604459,-1.174140 +-0.001769,0.233016,1.451661,-1.992649,-1.604388,-1.177543 +-0.001731,0.233540,1.453148,-1.990935,-1.604381,-1.180858 +-0.001693,0.234064,1.454636,-1.989221,-1.604373,-1.184172 +-0.001643,0.234569,1.456049,-1.987569,-1.604408,-1.187365 +-0.001592,0.235074,1.457463,-1.985917,-1.604442,-1.190557 +-0.001513,0.235556,1.458786,-1.984356,-1.604486,-1.193599 +-0.001433,0.236038,1.460109,-1.982795,-1.604529,-1.196641 +-0.001304,0.236491,1.461323,-1.981358,-1.604537,-1.199519 +-0.001174,0.236945,1.462537,-1.979921,-1.604545,-1.202397 +-0.000984,0.237362,1.463623,-1.978635,-1.604497,-1.205117 +-0.000794,0.237779,1.464708,-1.977350,-1.604449,-1.207836 +-0.000558,0.238148,1.465652,-1.976228,-1.604365,-1.210415 +-0.000322,0.238517,1.466597,-1.975106,-1.604280,-1.212993 +-0.000051,0.238833,1.467396,-1.974150,-1.604175,-1.215447 +0.000220,0.239148,1.468195,-1.973194,-1.604069,-1.217901 +0.000523,0.239413,1.468857,-1.972396,-1.603942,-1.220246 +0.000826,0.239678,1.469519,-1.971598,-1.603815,-1.222590 +0.001149,0.239900,1.470067,-1.970931,-1.603686,-1.224838 +0.001472,0.240123,1.470615,-1.970264,-1.603557,-1.227087 +0.001803,0.240312,1.471075,-1.969695,-1.603445,-1.229249 +0.002133,0.240501,1.471535,-1.969126,-1.603333,-1.231412 +0.002473,0.240663,1.471918,-1.968645,-1.603232,-1.233487 +0.002813,0.240825,1.472301,-1.968165,-1.603131,-1.235562 +0.003172,0.240959,1.472602,-1.967781,-1.603023,-1.237542 +0.003530,0.241093,1.472904,-1.967397,-1.602915,-1.239522 +0.003904,0.241200,1.473127,-1.967108,-1.602802,-1.241404 +0.004278,0.241306,1.473349,-1.966820,-1.602690,-1.243287 +0.004670,0.241388,1.473495,-1.966625,-1.602570,-1.245079 +0.005061,0.241470,1.473641,-1.966429,-1.602451,-1.246872 +0.005477,0.241535,1.473720,-1.966311,-1.602321,-1.248587 +0.005892,0.241600,1.473799,-1.966193,-1.602192,-1.250303 +0.006330,0.241659,1.473832,-1.966122,-1.602055,-1.251945 +0.006768,0.241718,1.473865,-1.966051,-1.601917,-1.253587 +0.007237,0.241785,1.473872,-1.966008,-1.601754,-1.255154 +0.007706,0.241852,1.473880,-1.965964,-1.601590,-1.256720 +0.008203,0.241939,1.473883,-1.965924,-1.601404,-1.258222 +0.008700,0.242026,1.473886,-1.965884,-1.601218,-1.259725 +0.009216,0.242141,1.473904,-1.965821,-1.601025,-1.261177 +0.009733,0.242256,1.473922,-1.965758,-1.600832,-1.262629 +0.010263,0.242401,1.473961,-1.965665,-1.600639,-1.264039 +0.010793,0.242546,1.473999,-1.965573,-1.600446,-1.265449 +0.011332,0.242716,1.474055,-1.965455,-1.600258,-1.266826 +0.011871,0.242887,1.474110,-1.965337,-1.600070,-1.268203 +0.012423,0.243077,1.474172,-1.965209,-1.599877,-1.269557 +0.012976,0.243267,1.474234,-1.965082,-1.599684,-1.270911 +0.013549,0.243471,1.474288,-1.964969,-1.599468,-1.272252 +0.014122,0.243675,1.474343,-1.964855,-1.599252,-1.273592 +0.014710,0.243880,1.474374,-1.964775,-1.599019,-1.274928 +0.015299,0.244086,1.474405,-1.964694,-1.598785,-1.276264 +0.015886,0.244277,1.474391,-1.964665,-1.598562,-1.277605 +0.016473,0.244467,1.474377,-1.964636,-1.598338,-1.278945 +0.017041,0.244624,1.474297,-1.964676,-1.598156,-1.280297 +0.017608,0.244782,1.474217,-1.964715,-1.597975,-1.281648 +0.018143,0.244896,1.474060,-1.964830,-1.597860,-1.283013 +0.018679,0.245009,1.473903,-1.964944,-1.597745,-1.284378 +0.019181,0.245079,1.473671,-1.965130,-1.597699,-1.285754 +0.019684,0.245149,1.473440,-1.965317,-1.597653,-1.287131 +0.020165,0.245178,1.473139,-1.965572,-1.597659,-1.288515 +0.020646,0.245207,1.472838,-1.965828,-1.597665,-1.289898 +0.021114,0.245199,1.472471,-1.966150,-1.597706,-1.291279 +0.021582,0.245191,1.472104,-1.966472,-1.597747,-1.292659 +0.022035,0.245148,1.471678,-1.966850,-1.597823,-1.294025 +0.022488,0.245104,1.471253,-1.967227,-1.597899,-1.295391 +0.022921,0.245025,1.470771,-1.967654,-1.598014,-1.296731 +0.023354,0.244946,1.470289,-1.968081,-1.598129,-1.298071 +0.023772,0.244833,1.469754,-1.968555,-1.598271,-1.299381 +0.024189,0.244720,1.469218,-1.969029,-1.598414,-1.300692 +0.024608,0.244580,1.468636,-1.969551,-1.598554,-1.301977 +0.025026,0.244440,1.468054,-1.970073,-1.598694,-1.303263 +0.025462,0.244277,1.467425,-1.970650,-1.598803,-1.304535 +0.025897,0.244114,1.466796,-1.971226,-1.598913,-1.305806 +0.026357,0.243931,1.466123,-1.971857,-1.598981,-1.307069 +0.026816,0.243747,1.465450,-1.972487,-1.599050,-1.308332 +0.027291,0.243544,1.464739,-1.973162,-1.599090,-1.309590 +0.027767,0.243340,1.464028,-1.973836,-1.599131,-1.310847 +0.028249,0.243117,1.463285,-1.974545,-1.599159,-1.312101 +0.028731,0.242894,1.462543,-1.975254,-1.599187,-1.313354 +0.029223,0.242655,1.461776,-1.975989,-1.599197,-1.314600 +0.029716,0.242415,1.461010,-1.976725,-1.599206,-1.315845 +0.030228,0.242165,1.460227,-1.977480,-1.599184,-1.317077 +0.030740,0.241915,1.459443,-1.978236,-1.599162,-1.318308 +0.031271,0.241657,1.458651,-1.979004,-1.599107,-1.319517 +0.031801,0.241398,1.457858,-1.979772,-1.599053,-1.320726 +0.032345,0.241134,1.457063,-1.980544,-1.598966,-1.321906 +0.032889,0.240871,1.456269,-1.981315,-1.598880,-1.323085 +0.033442,0.240605,1.455483,-1.982080,-1.598764,-1.324234 +0.033994,0.240340,1.454696,-1.982846,-1.598648,-1.325382 +0.034558,0.240080,1.453930,-1.983593,-1.598494,-1.326499 +0.035123,0.239821,1.453164,-1.984341,-1.598339,-1.327616 +0.035713,0.239578,1.452433,-1.985062,-1.598120,-1.328699 +0.036304,0.239336,1.451701,-1.985783,-1.597900,-1.329782 +0.036934,0.239119,1.451013,-1.986474,-1.597588,-1.330826 +0.037565,0.238902,1.450325,-1.987165,-1.597277,-1.331871 +0.038245,0.238716,1.449685,-1.987828,-1.596856,-1.332874 +0.038925,0.238530,1.449045,-1.988491,-1.596435,-1.333876 +0.039655,0.238380,1.448463,-1.989118,-1.595903,-1.334835 +0.040386,0.238231,1.447881,-1.989745,-1.595370,-1.335794 +0.041151,0.238115,1.447356,-1.990332,-1.594756,-1.336710 +0.041916,0.237999,1.446831,-1.990920,-1.594142,-1.337626 +0.042693,0.237903,1.446348,-1.991476,-1.593488,-1.338494 +0.043469,0.237806,1.445865,-1.992032,-1.592833,-1.339362 +0.044241,0.237724,1.445418,-1.992559,-1.592166,-1.340183 +0.045013,0.237642,1.444971,-1.993086,-1.591498,-1.341004 +0.045776,0.237575,1.444562,-1.993579,-1.590831,-1.341782 +0.046539,0.237508,1.444153,-1.994072,-1.590163,-1.342560 +0.047294,0.237455,1.443778,-1.994537,-1.589498,-1.343297 +0.048048,0.237402,1.443403,-1.995001,-1.588833,-1.344035 +0.048784,0.237358,1.443058,-1.995439,-1.588189,-1.344730 +0.049520,0.237315,1.442712,-1.995877,-1.587545,-1.345425 +0.050229,0.237282,1.442398,-1.996280,-1.586939,-1.346077 +0.050937,0.237249,1.442085,-1.996683,-1.586333,-1.346728 +0.051615,0.237228,1.441804,-1.997046,-1.585773,-1.347328 +0.052292,0.237206,1.441524,-1.997409,-1.585212,-1.347927 +0.052931,0.237193,1.441273,-1.997729,-1.584710,-1.348456 +0.053570,0.237180,1.441023,-1.998050,-1.584208,-1.348986 +0.054173,0.237183,1.440810,-1.998320,-1.583758,-1.349431 +0.054776,0.237185,1.440598,-1.998589,-1.583309,-1.349876 +0.055355,0.237211,1.440433,-1.998804,-1.582889,-1.350236 +0.055935,0.237237,1.440268,-1.999018,-1.582470,-1.350596 +0.056503,0.237292,1.440153,-1.999181,-1.582057,-1.350874 +0.057071,0.237347,1.440038,-1.999344,-1.581644,-1.351153 +0.057637,0.237428,1.439966,-1.999468,-1.581221,-1.351359 +0.058204,0.237510,1.439895,-1.999591,-1.580797,-1.351564 +0.058769,0.237608,1.439847,-1.999698,-1.580358,-1.351707 +0.059335,0.237705,1.439799,-1.999805,-1.579919,-1.351849 +0.059895,0.237802,1.439748,-1.999925,-1.579472,-1.351944 +0.060454,0.237899,1.439698,-2.000045,-1.579025,-1.352038 +0.060993,0.237976,1.439619,-2.000201,-1.578596,-1.352100 +0.061531,0.238053,1.439540,-2.000357,-1.578167,-1.352161 +0.062029,0.238096,1.439417,-2.000561,-1.577791,-1.352208 +0.062526,0.238139,1.439294,-2.000766,-1.577415,-1.352254 +0.062979,0.238145,1.439126,-2.001019,-1.577105,-1.352300 +0.063432,0.238151,1.438959,-2.001272,-1.576794,-1.352346 +0.063847,0.238126,1.438757,-2.001566,-1.576536,-1.352398 +0.064261,0.238102,1.438556,-2.001860,-1.576278,-1.352450 +0.064640,0.238055,1.438333,-2.002182,-1.576063,-1.352509 +0.065020,0.238009,1.438110,-2.002504,-1.575848,-1.352568 +0.065361,0.237947,1.437880,-2.002836,-1.575677,-1.352635 +0.065702,0.237885,1.437650,-2.003168,-1.575506,-1.352702 +0.066004,0.237815,1.437422,-2.003497,-1.575375,-1.352777 +0.066306,0.237744,1.437195,-2.003826,-1.575245,-1.352851 +0.066571,0.237668,1.436974,-2.004146,-1.575147,-1.352931 +0.066836,0.237593,1.436752,-2.004466,-1.575050,-1.353012 +0.067065,0.237513,1.436537,-2.004774,-1.574982,-1.353095 +0.067293,0.237433,1.436322,-2.005082,-1.574914,-1.353179 +0.067487,0.237349,1.436112,-2.005376,-1.574872,-1.353262 +0.067681,0.237265,1.435901,-2.005669,-1.574829,-1.353345 +0.067846,0.237179,1.435693,-2.005948,-1.574800,-1.353419 +0.068011,0.237092,1.435484,-2.006227,-1.574770,-1.353492 +0.068160,0.237007,1.435277,-2.006493,-1.574730,-1.353540 +0.068310,0.236922,1.435069,-2.006758,-1.574690,-1.353588 +0.068457,0.236843,1.434863,-2.007012,-1.574615,-1.353597 +0.068604,0.236764,1.434657,-2.007266,-1.574541,-1.353605 +0.068756,0.236693,1.434449,-2.007511,-1.574421,-1.353567 +0.068908,0.236621,1.434242,-2.007756,-1.574302,-1.353528 +0.069063,0.236551,1.434022,-2.008002,-1.574141,-1.353438 +0.069217,0.236481,1.433802,-2.008247,-1.573981,-1.353348 +0.069377,0.236409,1.433560,-2.008502,-1.573781,-1.353204 +0.069536,0.236337,1.433318,-2.008758,-1.573581,-1.353060 +0.069707,0.236264,1.433052,-2.009028,-1.573332,-1.352866 +0.069878,0.236190,1.432786,-2.009298,-1.573083,-1.352673 +0.070067,0.236121,1.432502,-2.009578,-1.572781,-1.352440 +0.070255,0.236051,1.432218,-2.009858,-1.572478,-1.352207 +0.070465,0.235993,1.431930,-2.010136,-1.572119,-1.351947 +0.070674,0.235935,1.431642,-2.010414,-1.571761,-1.351686 +0.070902,0.235895,1.431362,-2.010676,-1.571355,-1.351412 +0.071130,0.235854,1.431082,-2.010938,-1.570950,-1.351137 +0.071364,0.235831,1.430817,-2.011172,-1.570522,-1.350865 +0.071599,0.235809,1.430553,-2.011407,-1.570094,-1.350592 +0.071827,0.235801,1.430303,-2.011612,-1.569671,-1.350335 +0.072055,0.235793,1.430054,-2.011817,-1.569248,-1.350079 +0.072265,0.235793,1.429815,-2.011996,-1.568852,-1.349847 +0.072476,0.235794,1.429576,-2.012176,-1.568457,-1.349615 +0.072664,0.235804,1.429352,-2.012327,-1.568103,-1.349415 +0.072852,0.235813,1.429128,-2.012478,-1.567749,-1.349215 +0.073016,0.235836,1.428930,-2.012591,-1.567443,-1.349052 +0.073179,0.235860,1.428733,-2.012704,-1.567136,-1.348889 +0.073324,0.235903,1.428568,-2.012778,-1.566871,-1.348761 +0.073469,0.235945,1.428403,-2.012851,-1.566606,-1.348632 +0.073594,0.236009,1.428276,-2.012881,-1.566389,-1.348529 +0.073719,0.236074,1.428148,-2.012912,-1.566172,-1.348427 +0.073806,0.236150,1.428048,-2.012903,-1.566033,-1.348333 +0.073892,0.236226,1.427948,-2.012894,-1.565893,-1.348239 +0.073929,0.236303,1.427856,-2.012859,-1.565849,-1.348129 +0.073965,0.236380,1.427764,-2.012824,-1.565805,-1.348020 +0.073963,0.236451,1.427660,-2.012782,-1.565836,-1.347873 +0.073961,0.236522,1.427556,-2.012739,-1.565866,-1.347726 +0.073936,0.236581,1.427422,-2.012711,-1.565941,-1.347535 +0.073911,0.236640,1.427288,-2.012682,-1.566015,-1.347344 +0.073870,0.236682,1.427115,-2.012678,-1.566120,-1.347117 +0.073829,0.236725,1.426941,-2.012674,-1.566226,-1.346890 +0.073780,0.236756,1.426739,-2.012684,-1.566350,-1.346643 +0.073731,0.236787,1.426537,-2.012694,-1.566474,-1.346396 +0.073685,0.236820,1.426324,-2.012703,-1.566596,-1.346149 +0.073639,0.236853,1.426111,-2.012712,-1.566718,-1.345902 +0.073605,0.236892,1.425895,-2.012716,-1.566825,-1.345668 +0.073570,0.236932,1.425680,-2.012720,-1.566932,-1.345434 +0.073545,0.236980,1.425467,-2.012713,-1.567026,-1.345217 +0.073521,0.237027,1.425254,-2.012706,-1.567121,-1.345001 +0.073500,0.237083,1.425049,-2.012684,-1.567212,-1.344799 +0.073479,0.237138,1.424843,-2.012662,-1.567304,-1.344597 +0.073450,0.237195,1.424642,-2.012627,-1.567412,-1.344405 +0.073421,0.237253,1.424440,-2.012591,-1.567521,-1.344213 +0.073376,0.237307,1.424242,-2.012543,-1.567658,-1.344032 +0.073331,0.237362,1.424043,-2.012496,-1.567794,-1.343850 +0.073279,0.237415,1.423848,-2.012442,-1.567942,-1.343682 +0.073228,0.237469,1.423652,-2.012388,-1.568091,-1.343513 +0.073179,0.237518,1.423453,-2.012343,-1.568233,-1.343356 +0.073130,0.237567,1.423254,-2.012299,-1.568376,-1.343200 +0.073082,0.237600,1.423031,-2.012285,-1.568517,-1.343051 +0.073034,0.237633,1.422808,-2.012272,-1.568657,-1.342903 +0.072974,0.237636,1.422541,-2.012309,-1.568812,-1.342753 +0.072915,0.237639,1.422274,-2.012346,-1.568966,-1.342604 +0.072841,0.237610,1.421961,-2.012437,-1.569139,-1.342448 +0.072767,0.237582,1.421648,-2.012527,-1.569312,-1.342292 +0.072687,0.237530,1.421299,-2.012664,-1.569487,-1.342131 +0.072608,0.237478,1.420950,-2.012800,-1.569662,-1.341970 +0.072537,0.237409,1.420571,-2.012983,-1.569818,-1.341807 +0.072465,0.237341,1.420191,-2.013165,-1.569974,-1.341643 +0.072409,0.237258,1.419778,-2.013400,-1.570101,-1.341482 +0.072353,0.237175,1.419365,-2.013635,-1.570228,-1.341321 +0.072318,0.237076,1.418910,-2.013932,-1.570320,-1.341169 +0.072283,0.236976,1.418455,-2.014230,-1.570412,-1.341018 +0.072275,0.236859,1.417951,-2.014600,-1.570465,-1.340881 +0.072267,0.236741,1.417446,-2.014970,-1.570518,-1.340745 +0.072273,0.236602,1.416890,-2.015408,-1.570554,-1.340620 +0.072280,0.236464,1.416333,-2.015847,-1.570591,-1.340495 +0.072284,0.236305,1.415732,-2.016338,-1.570643,-1.340374 +0.072287,0.236146,1.415132,-2.016829,-1.570694,-1.340252 +0.072291,0.235980,1.414509,-2.017348,-1.570757,-1.340126 +0.072294,0.235815,1.413886,-2.017866,-1.570819,-1.339999 +0.072318,0.235661,1.413261,-2.018395,-1.570858,-1.339862 +0.072342,0.235507,1.412635,-2.018924,-1.570896,-1.339724 +0.072406,0.235379,1.412022,-2.019450,-1.570882,-1.339580 +0.072470,0.235250,1.411409,-2.019976,-1.570867,-1.339437 +0.072575,0.235153,1.410822,-2.020483,-1.570798,-1.339298 +0.072681,0.235056,1.410235,-2.020991,-1.570730,-1.339159 +0.072817,0.234990,1.409681,-2.021470,-1.570625,-1.339030 +0.072953,0.234923,1.409127,-2.021949,-1.570520,-1.338902 +0.073103,0.234878,1.408600,-2.022400,-1.570406,-1.338788 +0.073254,0.234833,1.408074,-2.022851,-1.570293,-1.338675 +0.073406,0.234798,1.407566,-2.023277,-1.570193,-1.338580 +0.073559,0.234764,1.407059,-2.023703,-1.570094,-1.338484 +0.073713,0.234738,1.406569,-2.024107,-1.570010,-1.338412 +0.073867,0.234713,1.406079,-2.024511,-1.569926,-1.338339 +0.074022,0.234695,1.405608,-2.024894,-1.569862,-1.338290 +0.074176,0.234677,1.405136,-2.025277,-1.569798,-1.338241 +0.074325,0.234665,1.404682,-2.025642,-1.569764,-1.338213 +0.074474,0.234653,1.404228,-2.026007,-1.569729,-1.338185 +0.074620,0.234642,1.403779,-2.026370,-1.569718,-1.338173 +0.074766,0.234630,1.403330,-2.026733,-1.569706,-1.338161 +0.074908,0.234602,1.402858,-2.027128,-1.569718,-1.338155 +0.075049,0.234574,1.402386,-2.027522,-1.569730,-1.338149 +0.075175,0.234512,1.401863,-2.027974,-1.569780,-1.338138 +0.075301,0.234451,1.401340,-2.028425,-1.569830,-1.338127 +0.075404,0.234349,1.400760,-2.028939,-1.569925,-1.338104 +0.075507,0.234248,1.400179,-2.029453,-1.570021,-1.338082 +0.075584,0.234105,1.399539,-2.030029,-1.570164,-1.338043 +0.075662,0.233963,1.398899,-2.030604,-1.570308,-1.338004 +0.075721,0.233786,1.398210,-2.031230,-1.570486,-1.337949 +0.075779,0.233609,1.397521,-2.031855,-1.570664,-1.337894 +0.075829,0.233418,1.396815,-2.032499,-1.570859,-1.337834 +0.075880,0.233228,1.396108,-2.033143,-1.571053,-1.337775 +0.075920,0.233042,1.395417,-2.033768,-1.571268,-1.337731 +0.075960,0.232856,1.394726,-2.034394,-1.571482,-1.337687 +0.075985,0.232683,1.394067,-2.034978,-1.571726,-1.337671 +0.076010,0.232510,1.393408,-2.035563,-1.571969,-1.337655 +0.076024,0.232359,1.392794,-2.036095,-1.572236,-1.337676 +0.076038,0.232207,1.392180,-2.036626,-1.572503,-1.337697 +0.076047,0.232087,1.391626,-2.037092,-1.572789,-1.337761 +0.076055,0.231966,1.391071,-2.037558,-1.573075,-1.337824 +0.076058,0.231881,1.390583,-2.037950,-1.573379,-1.337923 +0.076061,0.231795,1.390096,-2.038342,-1.573684,-1.338022 +0.076071,0.231753,1.389686,-2.038657,-1.573986,-1.338142 +0.076080,0.231710,1.389275,-2.038971,-1.574289,-1.338262 +0.076118,0.231725,1.388959,-2.039200,-1.574552,-1.338395 +0.076157,0.231741,1.388643,-2.039430,-1.574815,-1.338528 +0.076240,0.231813,1.388414,-2.039591,-1.575011,-1.338664 +0.076323,0.231885,1.388185,-2.039752,-1.575206,-1.338800 +0.076447,0.231994,1.388007,-2.039881,-1.575338,-1.338930 +0.076572,0.232103,1.387829,-2.040011,-1.575471,-1.339059 +0.076725,0.232219,1.387657,-2.040151,-1.575558,-1.339175 +0.076878,0.232336,1.387485,-2.040292,-1.575645,-1.339291 +0.077057,0.232442,1.387286,-2.040477,-1.575692,-1.339395 +0.077237,0.232548,1.387087,-2.040662,-1.575738,-1.339498 +0.077436,0.232639,1.386854,-2.040896,-1.575756,-1.339594 +0.077635,0.232729,1.386621,-2.041131,-1.575775,-1.339689 +0.077838,0.232803,1.386358,-2.041403,-1.575794,-1.339777 +0.078040,0.232877,1.386096,-2.041675,-1.575814,-1.339865 +0.078238,0.232940,1.385815,-2.041968,-1.575847,-1.339947 +0.078437,0.233004,1.385535,-2.042262,-1.575880,-1.340029 +0.078633,0.233067,1.385255,-2.042559,-1.575922,-1.340107 +0.078829,0.233131,1.384975,-2.042856,-1.575965,-1.340185 +0.079022,0.233199,1.384701,-2.043149,-1.576020,-1.340267 +0.079215,0.233268,1.384427,-2.043442,-1.576075,-1.340349 +0.079412,0.233346,1.384160,-2.043730,-1.576138,-1.340451 +0.079608,0.233424,1.383894,-2.044018,-1.576200,-1.340553 +0.079817,0.233518,1.383644,-2.044296,-1.576252,-1.340689 +0.080027,0.233612,1.383394,-2.044573,-1.576303,-1.340824 +0.080256,0.233724,1.383164,-2.044839,-1.576332,-1.340995 +0.080484,0.233837,1.382935,-2.045104,-1.576360,-1.341167 +0.080728,0.233957,1.382715,-2.045370,-1.576370,-1.341371 +0.080972,0.234078,1.382495,-2.045635,-1.576379,-1.341575 +0.081226,0.234196,1.382268,-2.045916,-1.576378,-1.341807 +0.081479,0.234315,1.382042,-2.046197,-1.576376,-1.342038 +0.081729,0.234420,1.381797,-2.046502,-1.576383,-1.342297 +0.081980,0.234526,1.381552,-2.046807,-1.576390,-1.342556 +0.082216,0.234608,1.381278,-2.047145,-1.576426,-1.342844 +0.082452,0.234691,1.381004,-2.047483,-1.576461,-1.343133 +0.082674,0.234750,1.380696,-2.047856,-1.576523,-1.343449 +0.082897,0.234809,1.380389,-2.048229,-1.576586,-1.343766 +0.083109,0.234846,1.380055,-2.048630,-1.576668,-1.344108 +0.083321,0.234884,1.379722,-2.049032,-1.576750,-1.344450 +0.083525,0.234908,1.379373,-2.049448,-1.576847,-1.344813 +0.083730,0.234931,1.379025,-2.049865,-1.576943,-1.345176 +0.083926,0.234944,1.378669,-2.050287,-1.577052,-1.345554 +0.084123,0.234958,1.378314,-2.050709,-1.577161,-1.345933 +0.084310,0.234961,1.377953,-2.051132,-1.577284,-1.346321 +0.084497,0.234964,1.377593,-2.051554,-1.577408,-1.346710 +0.084682,0.234961,1.377230,-2.051976,-1.577535,-1.347106 +0.084867,0.234957,1.376868,-2.052397,-1.577662,-1.347502 +0.085059,0.234953,1.376510,-2.052814,-1.577777,-1.347899 +0.085251,0.234948,1.376152,-2.053230,-1.577891,-1.348296 +0.085454,0.234945,1.375801,-2.053639,-1.577989,-1.348686 +0.085657,0.234941,1.375451,-2.054048,-1.578086,-1.349075 +0.085869,0.234937,1.375104,-2.054452,-1.578167,-1.349450 +0.086081,0.234932,1.374758,-2.054857,-1.578249,-1.349825 +0.086296,0.234920,1.374404,-2.055268,-1.578325,-1.350176 +0.086511,0.234907,1.374050,-2.055679,-1.578401,-1.350528 +0.086721,0.234886,1.373688,-2.056096,-1.578484,-1.350851 +0.086932,0.234865,1.373325,-2.056513,-1.578567,-1.351174 +0.087140,0.234844,1.372968,-2.056926,-1.578658,-1.351473 +0.087348,0.234824,1.372611,-2.057339,-1.578748,-1.351771 +0.087555,0.234802,1.372255,-2.057752,-1.578845,-1.352044 +0.087762,0.234780,1.371899,-2.058166,-1.578942,-1.352316 +0.087970,0.234750,1.371528,-2.058599,-1.579044,-1.352552 +0.088179,0.234720,1.371157,-2.059031,-1.579145,-1.352789 +0.088398,0.234692,1.370785,-2.059472,-1.579236,-1.352990 +0.088618,0.234665,1.370413,-2.059913,-1.579327,-1.353192 +0.088857,0.234660,1.370072,-2.060334,-1.579396,-1.353365 +0.089096,0.234655,1.369730,-2.060755,-1.579466,-1.353538 +0.089370,0.234679,1.369423,-2.061158,-1.579491,-1.353679 +0.089643,0.234702,1.369116,-2.061561,-1.579516,-1.353819 +0.089964,0.234748,1.368823,-2.061971,-1.579473,-1.353923 +0.090286,0.234794,1.368530,-2.062382,-1.579430,-1.354026 +0.090647,0.234853,1.368238,-2.062811,-1.579334,-1.354097 +0.091008,0.234911,1.367946,-2.063239,-1.579238,-1.354168 +0.091388,0.234978,1.367655,-2.063678,-1.579125,-1.354222 +0.091769,0.235044,1.367364,-2.064117,-1.579012,-1.354275 +0.092156,0.235115,1.367073,-2.064564,-1.578905,-1.354330 +0.092544,0.235185,1.366782,-2.065011,-1.578799,-1.354386 +0.092947,0.235263,1.366493,-2.065467,-1.578688,-1.354462 +0.093349,0.235340,1.366204,-2.065923,-1.578577,-1.354538 +0.093779,0.235430,1.365922,-2.066390,-1.578444,-1.354648 +0.094209,0.235519,1.365640,-2.066856,-1.578311,-1.354758 +0.094659,0.235623,1.365370,-2.067326,-1.578164,-1.354906 +0.095109,0.235727,1.365100,-2.067795,-1.578017,-1.355053 +0.095570,0.235841,1.364841,-2.068263,-1.577873,-1.355221 +0.096030,0.235956,1.364582,-2.068730,-1.577729,-1.355390 +0.096495,0.236078,1.364331,-2.069193,-1.577602,-1.355557 +0.096960,0.236199,1.364081,-2.069657,-1.577476,-1.355724 +0.097429,0.236330,1.363844,-2.070106,-1.577367,-1.355880 +0.097899,0.236460,1.363608,-2.070555,-1.577258,-1.356035 +0.098379,0.236602,1.363390,-2.070984,-1.577151,-1.356178 +0.098859,0.236744,1.363172,-2.071413,-1.577043,-1.356321 +0.099357,0.236900,1.362976,-2.071818,-1.576917,-1.356452 +0.099855,0.237056,1.362781,-2.072223,-1.576791,-1.356583 +0.100376,0.237236,1.362620,-2.072592,-1.576632,-1.356709 +0.100898,0.237416,1.362460,-2.072962,-1.576474,-1.356836 +0.101431,0.237620,1.362342,-2.073282,-1.576303,-1.356967 +0.101964,0.237824,1.362224,-2.073602,-1.576132,-1.357098 +0.102493,0.238043,1.362138,-2.073878,-1.575970,-1.357235 +0.103021,0.238263,1.362052,-2.074154,-1.575808,-1.357372 +0.103538,0.238480,1.361968,-2.074415,-1.575663,-1.357504 +0.104056,0.238697,1.361885,-2.074676,-1.575517,-1.357636 +0.104561,0.238897,1.361779,-2.074949,-1.575385,-1.357748 +0.105066,0.239097,1.361673,-2.075222,-1.575253,-1.357860 +0.105567,0.239277,1.361535,-2.075520,-1.575121,-1.357951 +0.106068,0.239458,1.361397,-2.075818,-1.574990,-1.358043 +0.106579,0.239629,1.361238,-2.076136,-1.574838,-1.358126 +0.107089,0.239799,1.361079,-2.076454,-1.574687,-1.358209 +0.107607,0.239974,1.360927,-2.076766,-1.574523,-1.358300 +0.108125,0.240150,1.360774,-2.077078,-1.574360,-1.358390 +0.108627,0.240332,1.360639,-2.077365,-1.574222,-1.358491 +0.109130,0.240515,1.360505,-2.077652,-1.574084,-1.358592 +0.109603,0.240696,1.360378,-2.077918,-1.573994,-1.358699 +0.110076,0.240877,1.360252,-2.078184,-1.573905,-1.358805 +0.110517,0.241042,1.360112,-2.078452,-1.573866,-1.358908 +0.110958,0.241207,1.359972,-2.078719,-1.573826,-1.359012 +0.111378,0.241338,1.359783,-2.079027,-1.573815,-1.359101 +0.111798,0.241469,1.359594,-2.079336,-1.573804,-1.359191 +0.112220,0.241563,1.359347,-2.079702,-1.573783,-1.359262 +0.112642,0.241658,1.359100,-2.080069,-1.573762,-1.359334 +0.113071,0.241731,1.358819,-2.080467,-1.573724,-1.359397 +0.113500,0.241804,1.358537,-2.080866,-1.573687,-1.359460 +0.113937,0.241873,1.358254,-2.081263,-1.573631,-1.359527 +0.114374,0.241942,1.357971,-2.081659,-1.573575,-1.359595 +0.114821,0.242023,1.357714,-2.082026,-1.573496,-1.359678 +0.115269,0.242104,1.357457,-2.082393,-1.573417,-1.359760 +0.115720,0.242203,1.357238,-2.082716,-1.573326,-1.359858 +0.116172,0.242301,1.357019,-2.083038,-1.573234,-1.359957 +0.116613,0.242411,1.356835,-2.083315,-1.573154,-1.360065 +0.117054,0.242521,1.356650,-2.083592,-1.573074,-1.360174 +0.117464,0.242636,1.356495,-2.083821,-1.573039,-1.360284 +0.117874,0.242750,1.356339,-2.084049,-1.573005,-1.360395 +0.118245,0.242863,1.356205,-2.084236,-1.573032,-1.360502 +0.118616,0.242977,1.356072,-2.084423,-1.573059,-1.360609 +0.118959,0.243091,1.355958,-2.084576,-1.573131,-1.360715 +0.119303,0.243205,1.355844,-2.084730,-1.573204,-1.360822 +0.119636,0.243326,1.355753,-2.084856,-1.573295,-1.360932 +0.119970,0.243446,1.355662,-2.084982,-1.573386,-1.361042 +0.120312,0.243587,1.355606,-2.085077,-1.573465,-1.361157 +0.120654,0.243728,1.355551,-2.085172,-1.573545,-1.361272 +0.121023,0.243906,1.355552,-2.085224,-1.573580,-1.361397 +0.121393,0.244083,1.355553,-2.085276,-1.573615,-1.361522 +0.121788,0.244297,1.355606,-2.085289,-1.573614,-1.361657 +0.122183,0.244511,1.355659,-2.085303,-1.573612,-1.361792 +0.122572,0.244739,1.355736,-2.085296,-1.573631,-1.361927 +0.122962,0.244968,1.355813,-2.085289,-1.573650,-1.362061 +0.123326,0.245191,1.355887,-2.085283,-1.573723,-1.362189 +0.123690,0.245415,1.355960,-2.085276,-1.573797,-1.362316 +0.124031,0.245622,1.356008,-2.085294,-1.573915,-1.362435 +0.124372,0.245829,1.356055,-2.085312,-1.574032,-1.362554 +0.124703,0.246005,1.356047,-2.085391,-1.574168,-1.362657 +0.125035,0.246182,1.356040,-2.085469,-1.574303,-1.362759 +0.125369,0.246313,1.355944,-2.085646,-1.574430,-1.362833 +0.125703,0.246443,1.355849,-2.085823,-1.574558,-1.362907 +0.126040,0.246522,1.355655,-2.086108,-1.574670,-1.362955 +0.126377,0.246601,1.355462,-2.086393,-1.574783,-1.363003 +0.126706,0.246631,1.355181,-2.086771,-1.574896,-1.363042 +0.127035,0.246661,1.354900,-2.087148,-1.575009,-1.363081 +0.127343,0.246648,1.354548,-2.087595,-1.575142,-1.363123 +0.127651,0.246634,1.354195,-2.088042,-1.575274,-1.363165 +0.127929,0.246588,1.353796,-2.088528,-1.575439,-1.363217 +0.128207,0.246542,1.353397,-2.089014,-1.575604,-1.363269 +0.128458,0.246478,1.352978,-2.089511,-1.575799,-1.363334 +0.128709,0.246415,1.352559,-2.090009,-1.575994,-1.363398 +0.128951,0.246346,1.352135,-2.090509,-1.576189,-1.363471 +0.129192,0.246277,1.351711,-2.091010,-1.576385,-1.363544 +0.129438,0.246207,1.351286,-2.091513,-1.576558,-1.363615 +0.129684,0.246137,1.350862,-2.092015,-1.576730,-1.363686 +0.129943,0.246075,1.350449,-2.092508,-1.576863,-1.363742 +0.130201,0.246013,1.350036,-2.093000,-1.576997,-1.363799 +0.130477,0.245970,1.349654,-2.093462,-1.577083,-1.363834 +0.130753,0.245927,1.349272,-2.093924,-1.577169,-1.363870 +0.131048,0.245909,1.348931,-2.094345,-1.577207,-1.363882 +0.131343,0.245892,1.348590,-2.094765,-1.577244,-1.363893 +0.131664,0.245895,1.348280,-2.095159,-1.577223,-1.363877 +0.131984,0.245898,1.347970,-2.095553,-1.577201,-1.363860 +0.132325,0.245908,1.347670,-2.095941,-1.577133,-1.363815 +0.132667,0.245919,1.347370,-2.096329,-1.577064,-1.363770 +0.133009,0.245928,1.347072,-2.096714,-1.576986,-1.363700 +0.133351,0.245938,1.346774,-2.097099,-1.576907,-1.363630 +0.133681,0.245943,1.346477,-2.097479,-1.576842,-1.363543 +0.134011,0.245948,1.346180,-2.097860,-1.576776,-1.363455 +0.134329,0.245950,1.345886,-2.098234,-1.576726,-1.363357 +0.134647,0.245952,1.345593,-2.098608,-1.576676,-1.363258 +0.134957,0.245957,1.345308,-2.098971,-1.576636,-1.363153 +0.135267,0.245962,1.345024,-2.099335,-1.576597,-1.363049 +0.135574,0.245973,1.344751,-2.099688,-1.576560,-1.362937 +0.135881,0.245984,1.344479,-2.100041,-1.576523,-1.362825 +0.136188,0.246001,1.344217,-2.100389,-1.576483,-1.362701 +0.136496,0.246019,1.343954,-2.100738,-1.576442,-1.362576 +0.136802,0.246033,1.343686,-2.101099,-1.576404,-1.362433 +0.137107,0.246047,1.343417,-2.101460,-1.576366,-1.362290 +0.137407,0.246048,1.343124,-2.101851,-1.576339,-1.362122 +0.137706,0.246048,1.342832,-2.102243,-1.576312,-1.361954 +0.137988,0.246032,1.342514,-2.102660,-1.576313,-1.361765 +0.138270,0.246015,1.342197,-2.103077,-1.576313,-1.361577 +0.138515,0.245976,1.341858,-2.103510,-1.576373,-1.361381 +0.138759,0.245937,1.341518,-2.103943,-1.576433,-1.361185 +0.138955,0.245873,1.341158,-2.104387,-1.576565,-1.360989 +0.139152,0.245808,1.340797,-2.104831,-1.576696,-1.360794 +0.139305,0.245723,1.340427,-2.105274,-1.576889,-1.360606 +0.139458,0.245638,1.340056,-2.105717,-1.577081,-1.360418 +0.139580,0.245543,1.339692,-2.106147,-1.577309,-1.360243 +0.139702,0.245449,1.339328,-2.106576,-1.577538,-1.360068 +0.139814,0.245358,1.338988,-2.106983,-1.577763,-1.359904 +0.139926,0.245268,1.338647,-2.107390,-1.577989,-1.359739 +0.140052,0.245197,1.338347,-2.107764,-1.578170,-1.359575 +0.140178,0.245127,1.338047,-2.108138,-1.578350,-1.359411 +0.140326,0.245087,1.337803,-2.108467,-1.578472,-1.359239 +0.140473,0.245047,1.337559,-2.108795,-1.578594,-1.359067 +0.140634,0.245041,1.337382,-2.109064,-1.578670,-1.358880 +0.140794,0.245036,1.337204,-2.109332,-1.578747,-1.358693 +0.140961,0.245062,1.337088,-2.109544,-1.578787,-1.358488 +0.141129,0.245088,1.336972,-2.109756,-1.578827,-1.358283 +0.141309,0.245138,1.336900,-2.109934,-1.578827,-1.358057 +0.141488,0.245189,1.336827,-2.110111,-1.578828,-1.357831 +0.141681,0.245255,1.336780,-2.110274,-1.578789,-1.357585 +0.141873,0.245321,1.336733,-2.110437,-1.578750,-1.357338 +0.142071,0.245396,1.336697,-2.110596,-1.578686,-1.357075 +0.142269,0.245470,1.336662,-2.110754,-1.578623,-1.356812 +0.142468,0.245542,1.336618,-2.110927,-1.578544,-1.356529 +0.142667,0.245613,1.336574,-2.111100,-1.578464,-1.356245 +0.142853,0.245666,1.336497,-2.111307,-1.578392,-1.355935 +0.143039,0.245719,1.336420,-2.111514,-1.578320,-1.355625 +0.143190,0.245746,1.336305,-2.111754,-1.578293,-1.355288 +0.143342,0.245773,1.336191,-2.111993,-1.578266,-1.354950 +0.143453,0.245782,1.336051,-2.112251,-1.578290,-1.354585 +0.143564,0.245790,1.335911,-2.112509,-1.578314,-1.354220 +0.143639,0.245782,1.335751,-2.112780,-1.578383,-1.353818 +0.143714,0.245774,1.335591,-2.113052,-1.578452,-1.353415 +0.143759,0.245745,1.335400,-2.113350,-1.578554,-1.352960 +0.143804,0.245715,1.335209,-2.113649,-1.578656,-1.352504 +0.143837,0.245658,1.334970,-2.113998,-1.578761,-1.351976 +0.143870,0.245600,1.334732,-2.114348,-1.578866,-1.351448 +0.143904,0.245502,1.334419,-2.114781,-1.578951,-1.350829 +0.143938,0.245403,1.334106,-2.115214,-1.579037,-1.350209 +0.143973,0.245254,1.333703,-2.115746,-1.579102,-1.349497 +0.144008,0.245105,1.333300,-2.116278,-1.579168,-1.348785 +0.144038,0.244912,1.332821,-2.116890,-1.579223,-1.347998 +0.144068,0.244720,1.332342,-2.117501,-1.579279,-1.347210 +0.144089,0.244500,1.331817,-2.118158,-1.579335,-1.346376 +0.144111,0.244280,1.331293,-2.118815,-1.579391,-1.345543 +0.144120,0.244050,1.330755,-2.119482,-1.579456,-1.344688 +0.144128,0.243821,1.330216,-2.120148,-1.579522,-1.343833 +0.144125,0.243596,1.329692,-2.120793,-1.579601,-1.342968 +0.144121,0.243371,1.329167,-2.121439,-1.579681,-1.342102 +0.144103,0.243158,1.328669,-2.122048,-1.579781,-1.341218 +0.144085,0.242945,1.328170,-2.122658,-1.579881,-1.340333 +0.144055,0.242742,1.327693,-2.123237,-1.580001,-1.339418 +0.144025,0.242538,1.327216,-2.123817,-1.580120,-1.338503 +0.143996,0.242334,1.326739,-2.124393,-1.580236,-1.337540 +0.143967,0.242130,1.326262,-2.124970,-1.580351,-1.336576 +0.143946,0.241915,1.325766,-2.125565,-1.580452,-1.335550 +0.143924,0.241700,1.325270,-2.126160,-1.580552,-1.334524 +0.143898,0.241477,1.324766,-2.126757,-1.580654,-1.333435 +0.143873,0.241253,1.324263,-2.127355,-1.580757,-1.332346 +0.143825,0.241033,1.323781,-2.127919,-1.580888,-1.331201 +0.143778,0.240813,1.323299,-2.128483,-1.581020,-1.330056 +0.143715,0.240607,1.322853,-2.129002,-1.581169,-1.328857 +0.143653,0.240401,1.322407,-2.129520,-1.581318,-1.327659 +0.143604,0.240209,1.321985,-2.130022,-1.581433,-1.326392 +0.143556,0.240016,1.321562,-2.130524,-1.581547,-1.325125 +0.143539,0.239824,1.321132,-2.131047,-1.581599,-1.323780 +0.143522,0.239632,1.320701,-2.131570,-1.581650,-1.322434 +0.143523,0.239419,1.320230,-2.132140,-1.581660,-1.321016 +0.143525,0.239206,1.319760,-2.132710,-1.581671,-1.319599 +0.143511,0.238956,1.319231,-2.133328,-1.581696,-1.318126 +0.143497,0.238705,1.318703,-2.133946,-1.581722,-1.316654 +0.143445,0.238413,1.318115,-2.134604,-1.581802,-1.315134 +0.143392,0.238120,1.317527,-2.135261,-1.581883,-1.313614 +0.143307,0.237787,1.316879,-2.135960,-1.582011,-1.312039 +0.143221,0.237453,1.316231,-2.136659,-1.582139,-1.310464 +0.143115,0.237094,1.315543,-2.137384,-1.582293,-1.308828 +0.143010,0.236734,1.314855,-2.138108,-1.582447,-1.307192 +0.142898,0.236369,1.314158,-2.138829,-1.582607,-1.305495 +0.142786,0.236003,1.313460,-2.139549,-1.582768,-1.303798 +0.142672,0.235639,1.312767,-2.140252,-1.582928,-1.302045 +0.142558,0.235276,1.312074,-2.140954,-1.583089,-1.300293 +0.142432,0.234914,1.311389,-2.141629,-1.583266,-1.298491 +0.142305,0.234551,1.310703,-2.142304,-1.583444,-1.296689 +0.142158,0.234188,1.310025,-2.142948,-1.583651,-1.294846 +0.142012,0.233826,1.309347,-2.143592,-1.583858,-1.293003 +0.141855,0.233464,1.308675,-2.144213,-1.584078,-1.291131 +0.141699,0.233102,1.308003,-2.144833,-1.584298,-1.289259 +0.141545,0.232744,1.307336,-2.145439,-1.584512,-1.287369 +0.141390,0.232386,1.306669,-2.146044,-1.584726,-1.285478 +0.141238,0.232032,1.306008,-2.146637,-1.584932,-1.283582 +0.141086,0.231679,1.305347,-2.147231,-1.585139,-1.281685 +0.140928,0.231329,1.304698,-2.147806,-1.585352,-1.279793 +0.140769,0.230980,1.304048,-2.148382,-1.585565,-1.277901 +0.140588,0.230634,1.303412,-2.148932,-1.585814,-1.276016 +0.140406,0.230287,1.302776,-2.149481,-1.586062,-1.274132 +0.140195,0.229943,1.302155,-2.149999,-1.586357,-1.272256 +0.139984,0.229599,1.301535,-2.150516,-1.586652,-1.270380 +0.139747,0.229256,1.300926,-2.151005,-1.586987,-1.268510 +0.139510,0.228913,1.300318,-2.151493,-1.587322,-1.266640 +0.139253,0.228564,1.299707,-2.151967,-1.587689,-1.264769 +0.138997,0.228216,1.299097,-2.152441,-1.588057,-1.262898 +0.138719,0.227856,1.298475,-2.152911,-1.588456,-1.261018 +0.138441,0.227496,1.297853,-2.153381,-1.588855,-1.259137 +0.138139,0.227123,1.297217,-2.153847,-1.589288,-1.257239 +0.137838,0.226749,1.296582,-2.154313,-1.589721,-1.255341 +0.137520,0.226362,1.295931,-2.154781,-1.590171,-1.253419 +0.137203,0.225974,1.295279,-2.155248,-1.590621,-1.251498 +0.136879,0.225577,1.294616,-2.155717,-1.591067,-1.249541 +0.136556,0.225180,1.293953,-2.156186,-1.591514,-1.247585 +0.136221,0.224776,1.293285,-2.156647,-1.591962,-1.245581 +0.135887,0.224372,1.292616,-2.157109,-1.592410,-1.243576 +0.135531,0.223952,1.291931,-2.157572,-1.592872,-1.241530 +0.135175,0.223532,1.291247,-2.158034,-1.593333,-1.239484 +0.134798,0.223084,1.290525,-2.158522,-1.593809,-1.237416 +0.134422,0.222636,1.289803,-2.159009,-1.594285,-1.235348 +0.134027,0.222160,1.289042,-2.159525,-1.594773,-1.233274 +0.133633,0.221683,1.288281,-2.160040,-1.595262,-1.231201 +0.133211,0.221181,1.287493,-2.160568,-1.595783,-1.229139 +0.132789,0.220679,1.286705,-2.161097,-1.596303,-1.227076 +0.132338,0.220159,1.285901,-2.161625,-1.596862,-1.225038 +0.131887,0.219639,1.285098,-2.162154,-1.597421,-1.223000 +0.131428,0.219117,1.284297,-2.162674,-1.597987,-1.220995 +0.130969,0.218595,1.283497,-2.163193,-1.598552,-1.218990 +0.130522,0.218085,1.282718,-2.163695,-1.599095,-1.217022 +0.130075,0.217576,1.281940,-2.164197,-1.599637,-1.215053 +0.129653,0.217089,1.281194,-2.164674,-1.600137,-1.213124 +0.129230,0.216603,1.280448,-2.165152,-1.600638,-1.211195 +0.128841,0.216145,1.279739,-2.165606,-1.601083,-1.209309 +0.128452,0.215686,1.279030,-2.166060,-1.601529,-1.207422 +0.128099,0.215259,1.278361,-2.166490,-1.601916,-1.205589 +0.127746,0.214831,1.277691,-2.166919,-1.602303,-1.203756 +0.127429,0.214438,1.277068,-2.167317,-1.602632,-1.201993 +0.127113,0.214046,1.276445,-2.167715,-1.602961,-1.200229 +0.126830,0.213695,1.275882,-2.168065,-1.603239,-1.198551 +0.126548,0.213345,1.275319,-2.168415,-1.603518,-1.196873 +0.126284,0.213043,1.274833,-2.168692,-1.603773,-1.195294 +0.126021,0.212742,1.274348,-2.168969,-1.604028,-1.193715 +0.125761,0.212494,1.273956,-2.169148,-1.604287,-1.192240 +0.125501,0.212247,1.273563,-2.169327,-1.604546,-1.190766 +0.125234,0.212056,1.273272,-2.169396,-1.604827,-1.189394 +0.124967,0.211866,1.272981,-2.169466,-1.605108,-1.188022 +0.124690,0.211733,1.272792,-2.169422,-1.605417,-1.186743 +0.124412,0.211600,1.272603,-2.169378,-1.605727,-1.185465 +0.124130,0.211519,1.272503,-2.169238,-1.606054,-1.184260 +0.123848,0.211439,1.272404,-2.169097,-1.606381,-1.183056 +0.123570,0.211391,1.272356,-2.168903,-1.606710,-1.181902 +0.123292,0.211343,1.272309,-2.168709,-1.607039,-1.180748 +0.123021,0.211302,1.272267,-2.168512,-1.607363,-1.179620 +0.122751,0.211261,1.272226,-2.168315,-1.607687,-1.178491 +0.122491,0.211208,1.272155,-2.168155,-1.607998,-1.177368 +0.122231,0.211155,1.272084,-2.167994,-1.608309,-1.176246 +0.121995,0.211077,1.271957,-2.167907,-1.608584,-1.175117 +0.121759,0.210999,1.271830,-2.167819,-1.608859,-1.173989 +0.121551,0.210882,1.271618,-2.167837,-1.609086,-1.172850 +0.121343,0.210764,1.271405,-2.167855,-1.609313,-1.171711 +0.121156,0.210600,1.271099,-2.167985,-1.609504,-1.170568 +0.120968,0.210437,1.270793,-2.168115,-1.609695,-1.169425 +0.120794,0.210233,1.270409,-2.168338,-1.609860,-1.168292 +0.120621,0.210030,1.270025,-2.168561,-1.610025,-1.167160 +0.120458,0.209796,1.269583,-2.168854,-1.610172,-1.166050 +0.120296,0.209563,1.269141,-2.169148,-1.610319,-1.164940 +0.120134,0.209308,1.268662,-2.169485,-1.610466,-1.163865 +0.119972,0.209053,1.268183,-2.169821,-1.610613,-1.162789 +0.119793,0.208782,1.267685,-2.170174,-1.610791,-1.161754 +0.119614,0.208512,1.267187,-2.170527,-1.610969,-1.160718 +0.119405,0.208230,1.266686,-2.170874,-1.611197,-1.159717 +0.119195,0.207949,1.266185,-2.171220,-1.611426,-1.158717 +0.118960,0.207668,1.265697,-2.171543,-1.611696,-1.157744 +0.118725,0.207387,1.265209,-2.171866,-1.611966,-1.156771 +0.118483,0.207124,1.264757,-2.172149,-1.612243,-1.155817 +0.118241,0.206861,1.264306,-2.172432,-1.612521,-1.154863 +0.118010,0.206627,1.263905,-2.172667,-1.612775,-1.153919 +0.117778,0.206394,1.263504,-2.172902,-1.613029,-1.152974 +0.117563,0.206193,1.263156,-2.173091,-1.613244,-1.152034 +0.117348,0.205992,1.262808,-2.173279,-1.613458,-1.151093 +0.117159,0.205816,1.262495,-2.173443,-1.613617,-1.150149 +0.116970,0.205640,1.262182,-2.173606,-1.613775,-1.149205 +0.116812,0.205470,1.261871,-2.173783,-1.613866,-1.148248 +0.116654,0.205301,1.261561,-2.173961,-1.613957,-1.147291 +0.116520,0.205120,1.261223,-2.174179,-1.613993,-1.146319 +0.116386,0.204939,1.260885,-2.174398,-1.614030,-1.145347 +0.116258,0.204737,1.260511,-2.174662,-1.614043,-1.144370 +0.116131,0.204534,1.260137,-2.174927,-1.614056,-1.143392 +0.115997,0.204306,1.259728,-2.175231,-1.614071,-1.142422 +0.115862,0.204079,1.259320,-2.175535,-1.614086,-1.141453 +0.115714,0.203831,1.258887,-2.175865,-1.614116,-1.140502 +0.115566,0.203583,1.258454,-2.176196,-1.614146,-1.139551 +0.115400,0.203320,1.258008,-2.176538,-1.614200,-1.138627 +0.115233,0.203057,1.257562,-2.176880,-1.614254,-1.137703 +0.115046,0.202785,1.257117,-2.177218,-1.614338,-1.136808 +0.114859,0.202513,1.256672,-2.177556,-1.614421,-1.135914 +0.114655,0.202240,1.256241,-2.177877,-1.614529,-1.135047 +0.114451,0.201967,1.255809,-2.178198,-1.614637,-1.134180 +0.114237,0.201693,1.255390,-2.178504,-1.614759,-1.133333 +0.114022,0.201419,1.254972,-2.178809,-1.614882,-1.132486 +0.113797,0.201143,1.254565,-2.179099,-1.615016,-1.131650 +0.113572,0.200867,1.254157,-2.179389,-1.615150,-1.130815 +0.113336,0.200594,1.253770,-2.179655,-1.615296,-1.129987 +0.113101,0.200320,1.253382,-2.179921,-1.615443,-1.129160 +0.112858,0.200052,1.253021,-2.180155,-1.615597,-1.128347 +0.112616,0.199785,1.252659,-2.180390,-1.615751,-1.127534 +0.112373,0.199530,1.252330,-2.180590,-1.615903,-1.126751 +0.112130,0.199274,1.252001,-2.180790,-1.616056,-1.125967 +0.111895,0.199037,1.251714,-2.180950,-1.616194,-1.125231 +0.111660,0.198801,1.251427,-2.181110,-1.616332,-1.124494 +0.111434,0.198584,1.251183,-2.181230,-1.616453,-1.123817 +0.111207,0.198367,1.250939,-2.181350,-1.616575,-1.123139 +0.110984,0.198166,1.250733,-2.181431,-1.616687,-1.122524 +0.110760,0.197965,1.250528,-2.181512,-1.616800,-1.121908 +0.110536,0.197777,1.250356,-2.181559,-1.616911,-1.121353 +0.110312,0.197588,1.250184,-2.181606,-1.617022,-1.120797 +0.110087,0.197410,1.250040,-2.181625,-1.617133,-1.120292 +0.109861,0.197232,1.249896,-2.181644,-1.617243,-1.119786 +0.109641,0.197067,1.249780,-2.181638,-1.617344,-1.119324 +0.109421,0.196902,1.249663,-2.181633,-1.617444,-1.118862 +0.109213,0.196756,1.249580,-2.181601,-1.617525,-1.118443 +0.109005,0.196610,1.249496,-2.181569,-1.617606,-1.118023 +0.108815,0.196490,1.249450,-2.181507,-1.617663,-1.117645 +0.108624,0.196369,1.249404,-2.181445,-1.617721,-1.117267 +0.108452,0.196278,1.249399,-2.181349,-1.617756,-1.116931 +0.108280,0.196187,1.249395,-2.181253,-1.617791,-1.116594 +0.108128,0.196129,1.249435,-2.181119,-1.617805,-1.116302 +0.107976,0.196071,1.249475,-2.180986,-1.617819,-1.116010 +0.107845,0.196042,1.249550,-2.180826,-1.617812,-1.115763 +0.107713,0.196013,1.249624,-2.180666,-1.617805,-1.115517 +0.107599,0.196004,1.249715,-2.180498,-1.617787,-1.115318 +0.107484,0.195995,1.249807,-2.180330,-1.617769,-1.115119 +0.107385,0.195999,1.249899,-2.180170,-1.617742,-1.114967 +0.107287,0.196002,1.249992,-2.180009,-1.617714,-1.114815 +0.107196,0.196012,1.250077,-2.179861,-1.617692,-1.114711 +0.107104,0.196021,1.250162,-2.179713,-1.617671,-1.114607 +0.107006,0.196032,1.250236,-2.179573,-1.617680,-1.114549 +0.106907,0.196043,1.250311,-2.179433,-1.617689,-1.114492 +0.106798,0.196056,1.250375,-2.179298,-1.617731,-1.114474 +0.106689,0.196069,1.250439,-2.179163,-1.617774,-1.114456 +0.106578,0.196088,1.250495,-2.179033,-1.617836,-1.114464 +0.106467,0.196106,1.250552,-2.178903,-1.617898,-1.114473 +0.106358,0.196133,1.250603,-2.178776,-1.617970,-1.114494 +0.106249,0.196160,1.250654,-2.178648,-1.618041,-1.114515 +0.106147,0.196197,1.250700,-2.178523,-1.618111,-1.114534 +0.106045,0.196233,1.250747,-2.178397,-1.618181,-1.114554 +0.105952,0.196278,1.250788,-2.178275,-1.618244,-1.114560 +0.105859,0.196323,1.250829,-2.178153,-1.618307,-1.114566 +0.105765,0.196370,1.250859,-2.178035,-1.618374,-1.114552 +0.105672,0.196418,1.250889,-2.177916,-1.618442,-1.114538 +0.105570,0.196458,1.250897,-2.177808,-1.618524,-1.114504 +0.105469,0.196499,1.250905,-2.177701,-1.618606,-1.114471 +0.105366,0.196526,1.250876,-2.177620,-1.618690,-1.114426 +0.105263,0.196553,1.250847,-2.177539,-1.618774,-1.114382 +0.105169,0.196568,1.250781,-2.177490,-1.618844,-1.114341 +0.105075,0.196583,1.250714,-2.177440,-1.618915,-1.114300 +0.104997,0.196593,1.250620,-2.177414,-1.618962,-1.114272 +0.104918,0.196602,1.250527,-2.177389,-1.619009,-1.114244 +0.104858,0.196614,1.250418,-2.177376,-1.619027,-1.114233 +0.104798,0.196625,1.250309,-2.177363,-1.619045,-1.114222 +0.104759,0.196652,1.250209,-2.177341,-1.619031,-1.114230 +0.104721,0.196678,1.250109,-2.177320,-1.619017,-1.114238 +0.104708,0.196736,1.250043,-2.177268,-1.618962,-1.114259 +0.104695,0.196794,1.249978,-2.177216,-1.618907,-1.114280 +0.104710,0.196891,1.249961,-2.177125,-1.618804,-1.114308 +0.104725,0.196988,1.249943,-2.177033,-1.618702,-1.114336 +0.104766,0.197118,1.249968,-2.176912,-1.618556,-1.114368 +0.104807,0.197248,1.249992,-2.176790,-1.618409,-1.114400 +0.104869,0.197400,1.250042,-2.176657,-1.618229,-1.114434 +0.104930,0.197551,1.250092,-2.176523,-1.618050,-1.114468 +0.105006,0.197709,1.250146,-2.176401,-1.617849,-1.114502 +0.105081,0.197867,1.250200,-2.176278,-1.617648,-1.114535 +0.105161,0.198015,1.250235,-2.176190,-1.617443,-1.114563 +0.105241,0.198163,1.250270,-2.176102,-1.617237,-1.114590 +0.105317,0.198292,1.250274,-2.176060,-1.617040,-1.114610 +0.105393,0.198422,1.250277,-2.176017,-1.616843,-1.114629 +0.105459,0.198528,1.250247,-2.176022,-1.616666,-1.114643 +0.105525,0.198635,1.250216,-2.176027,-1.616489,-1.114658 +0.105573,0.198715,1.250148,-2.176079,-1.616350,-1.114675 +0.105620,0.198795,1.250080,-2.176131,-1.616211,-1.114692 +0.105643,0.198840,1.249965,-2.176238,-1.616121,-1.114717 +0.105666,0.198886,1.249849,-2.176344,-1.616032,-1.114743 +0.105667,0.198896,1.249683,-2.176510,-1.615987,-1.114778 +0.105668,0.198907,1.249518,-2.176676,-1.615942,-1.114814 +0.105656,0.198891,1.249314,-2.176891,-1.615927,-1.114861 +0.105644,0.198876,1.249110,-2.177106,-1.615911,-1.114908 +0.105626,0.198848,1.248891,-2.177350,-1.615913,-1.114968 +0.105608,0.198821,1.248672,-2.177594,-1.615915,-1.115027 +0.105586,0.198795,1.248462,-2.177841,-1.615933,-1.115098 +0.105563,0.198769,1.248252,-2.178088,-1.615951,-1.115168 +0.105533,0.198756,1.248072,-2.178312,-1.615989,-1.115242 +0.105504,0.198743,1.247892,-2.178536,-1.616026,-1.115317 +0.105469,0.198750,1.247757,-2.178723,-1.616078,-1.115387 +0.105435,0.198757,1.247621,-2.178909,-1.616130,-1.115458 +0.105400,0.198787,1.247534,-2.179053,-1.616189,-1.115514 +0.105365,0.198817,1.247447,-2.179197,-1.616247,-1.115571 +0.105336,0.198868,1.247404,-2.179301,-1.616299,-1.115606 +0.105308,0.198920,1.247361,-2.179406,-1.616351,-1.115641 +0.105285,0.198991,1.247360,-2.179473,-1.616396,-1.115654 +0.105262,0.199062,1.247359,-2.179539,-1.616440,-1.115668 +0.105234,0.199150,1.247399,-2.179562,-1.616493,-1.115665 +0.105206,0.199237,1.247439,-2.179585,-1.616545,-1.115663 +0.105171,0.199337,1.247513,-2.179568,-1.616609,-1.115653 +0.105135,0.199436,1.247587,-2.179552,-1.616673,-1.115644 +0.105097,0.199542,1.247685,-2.179508,-1.616740,-1.115635 +0.105058,0.199648,1.247783,-2.179465,-1.616808,-1.115626 +0.105015,0.199759,1.247900,-2.179397,-1.616880,-1.115623 +0.104973,0.199870,1.248017,-2.179330,-1.616952,-1.115620 +0.104933,0.199984,1.248145,-2.179250,-1.617017,-1.115624 +0.104893,0.200098,1.248274,-2.179171,-1.617081,-1.115627 +0.104865,0.200215,1.248408,-2.179089,-1.617122,-1.115638 +0.104837,0.200332,1.248543,-2.179007,-1.617164,-1.115648 +0.104822,0.200457,1.248690,-2.178917,-1.617179,-1.115665 +0.104807,0.200583,1.248837,-2.178827,-1.617194,-1.115682 +0.104808,0.200719,1.248997,-2.178730,-1.617177,-1.115701 +0.104810,0.200856,1.249158,-2.178634,-1.617159,-1.115721 +0.104823,0.201003,1.249332,-2.178527,-1.617118,-1.115742 +0.104837,0.201150,1.249506,-2.178419,-1.617076,-1.115763 +0.104845,0.201304,1.249692,-2.178297,-1.617038,-1.115786 +0.104854,0.201457,1.249878,-2.178174,-1.617000,-1.115809 +0.104855,0.201601,1.250045,-2.178068,-1.616969,-1.115833 +0.104856,0.201745,1.250212,-2.177962,-1.616938,-1.115857 +0.104861,0.201860,1.250322,-2.177917,-1.616895,-1.115876 +0.104866,0.201975,1.250432,-2.177872,-1.616853,-1.115896 +0.104878,0.202054,1.250469,-2.177905,-1.616793,-1.115911 +0.104891,0.202132,1.250506,-2.177939,-1.616734,-1.115927 +0.104905,0.202172,1.250470,-2.178047,-1.616669,-1.115941 +0.104919,0.202211,1.250434,-2.178155,-1.616604,-1.115956 +0.104926,0.202214,1.250334,-2.178324,-1.616549,-1.115973 +0.104932,0.202217,1.250233,-2.178493,-1.616494,-1.115990 +0.104926,0.202193,1.250085,-2.178700,-1.616460,-1.116012 +0.104919,0.202168,1.249937,-2.178908,-1.616426,-1.116033 +0.104897,0.202131,1.249770,-2.179124,-1.616415,-1.116059 +0.104875,0.202095,1.249602,-2.179340,-1.616405,-1.116084 +0.104842,0.202065,1.249446,-2.179535,-1.616414,-1.116117 +0.104809,0.202035,1.249289,-2.179730,-1.616423,-1.116149 +0.104769,0.202026,1.249169,-2.179880,-1.616444,-1.116189 +0.104730,0.202018,1.249048,-2.180031,-1.616465,-1.116230 +0.104693,0.202042,1.248978,-2.180126,-1.616488,-1.116278 +0.104655,0.202066,1.248907,-2.180221,-1.616512,-1.116326 +0.104631,0.202127,1.248890,-2.180264,-1.616520,-1.116379 +0.104608,0.202187,1.248873,-2.180306,-1.616529,-1.116433 +0.104604,0.202280,1.248902,-2.180308,-1.616513,-1.116488 +0.104600,0.202373,1.248930,-2.180310,-1.616498,-1.116543 +0.104614,0.202488,1.248990,-2.180287,-1.616461,-1.116597 +0.104629,0.202604,1.249049,-2.180264,-1.616425,-1.116651 +0.104660,0.202728,1.249117,-2.180239,-1.616372,-1.116703 +0.104690,0.202852,1.249186,-2.180214,-1.616319,-1.116755 +0.104734,0.202970,1.249239,-2.180210,-1.616252,-1.116805 +0.104779,0.203087,1.249293,-2.180206,-1.616186,-1.116855 +0.104829,0.203190,1.249321,-2.180231,-1.616117,-1.116901 +0.104879,0.203292,1.249348,-2.180257,-1.616048,-1.116948 +0.104922,0.203377,1.249353,-2.180304,-1.615996,-1.116986 +0.104966,0.203463,1.249358,-2.180351,-1.615945,-1.117024 +0.104991,0.203538,1.249358,-2.180398,-1.615929,-1.117052 +0.105017,0.203614,1.249357,-2.180445,-1.615913,-1.117080 +0.105015,0.203690,1.249375,-2.180464,-1.615947,-1.117097 +0.105013,0.203766,1.249393,-2.180483,-1.615982,-1.117114 +0.104984,0.203850,1.249441,-2.180460,-1.616066,-1.117124 +0.104955,0.203935,1.249490,-2.180437,-1.616149,-1.117133 +0.104908,0.204036,1.249579,-2.180368,-1.616267,-1.117138 +0.104861,0.204137,1.249668,-2.180299,-1.616384,-1.117144 +0.104803,0.204265,1.249810,-2.180173,-1.616525,-1.117150 +0.104745,0.204392,1.249952,-2.180047,-1.616665,-1.117156 +0.104681,0.204555,1.250157,-2.179857,-1.616820,-1.117163 +0.104616,0.204717,1.250362,-2.179666,-1.616975,-1.117169 +0.104543,0.204913,1.250627,-2.179414,-1.617146,-1.117170 +0.104469,0.205109,1.250893,-2.179161,-1.617316,-1.117171 +0.104386,0.205327,1.251198,-2.178866,-1.617502,-1.117161 +0.104302,0.205545,1.251504,-2.178571,-1.617687,-1.117151 +0.104217,0.205774,1.251827,-2.178261,-1.617872,-1.117126 +0.104131,0.206004,1.252150,-2.177951,-1.618058,-1.117100 +0.104051,0.206236,1.252473,-2.177649,-1.618229,-1.117056 +0.103970,0.206468,1.252795,-2.177347,-1.618400,-1.117011 +0.103889,0.206689,1.253094,-2.177075,-1.618564,-1.116949 +0.103809,0.206909,1.253392,-2.176803,-1.618727,-1.116888 +0.103715,0.207102,1.253643,-2.176579,-1.618903,-1.116810 +0.103621,0.207295,1.253894,-2.176356,-1.619079,-1.116732 +0.103505,0.207445,1.254077,-2.176196,-1.619281,-1.116639 +0.103389,0.207595,1.254260,-2.176037,-1.619483,-1.116547 +0.103256,0.207696,1.254361,-2.175957,-1.619701,-1.116443 +0.103123,0.207797,1.254461,-2.175878,-1.619919,-1.116340 +0.102988,0.207854,1.254483,-2.175878,-1.620124,-1.116232 +0.102854,0.207912,1.254504,-2.175878,-1.620330,-1.116124 +0.102730,0.207940,1.254465,-2.175942,-1.620501,-1.116018 +0.102607,0.207969,1.254425,-2.176005,-1.620671,-1.115912 +0.102493,0.207979,1.254348,-2.176105,-1.620806,-1.115812 +0.102379,0.207990,1.254271,-2.176204,-1.620941,-1.115712 +0.102269,0.207994,1.254179,-2.176313,-1.621049,-1.115618 +0.102159,0.207997,1.254086,-2.176421,-1.621158,-1.115524 +0.102054,0.208001,1.253995,-2.176519,-1.621239,-1.115435 +0.101949,0.208004,1.253904,-2.176617,-1.621321,-1.115346 +0.101854,0.208013,1.253822,-2.176698,-1.621368,-1.115261 +0.101759,0.208022,1.253741,-2.176778,-1.621416,-1.115176 +0.101677,0.208037,1.253672,-2.176840,-1.621425,-1.115094 +0.101596,0.208052,1.253603,-2.176902,-1.621434,-1.115012 +0.101527,0.208071,1.253545,-2.176947,-1.621407,-1.114933 +0.101459,0.208090,1.253486,-2.176993,-1.621380,-1.114854 +0.101401,0.208110,1.253436,-2.177024,-1.621326,-1.114780 +0.101344,0.208130,1.253386,-2.177056,-1.621272,-1.114706 +0.101293,0.208151,1.253346,-2.177071,-1.621199,-1.114642 +0.101242,0.208172,1.253306,-2.177086,-1.621127,-1.114578 +0.101194,0.208196,1.253281,-2.177079,-1.621047,-1.114528 +0.101146,0.208219,1.253257,-2.177071,-1.620967,-1.114478 +0.101098,0.208246,1.253247,-2.177042,-1.620884,-1.114444 +0.101050,0.208272,1.253238,-2.177013,-1.620802,-1.114410 +0.101008,0.208303,1.253245,-2.176966,-1.620713,-1.114391 +0.100965,0.208334,1.253251,-2.176919,-1.620623,-1.114371 +0.100935,0.208374,1.253276,-2.176857,-1.620518,-1.114363 +0.100905,0.208414,1.253300,-2.176795,-1.620412,-1.114354 +0.100891,0.208465,1.253342,-2.176723,-1.620285,-1.114354 +0.100877,0.208516,1.253383,-2.176651,-1.620158,-1.114353 +0.100882,0.208582,1.253444,-2.176570,-1.620008,-1.114358 +0.100888,0.208647,1.253505,-2.176489,-1.619858,-1.114364 +0.100916,0.208732,1.253587,-2.176401,-1.619681,-1.114373 +0.100945,0.208817,1.253670,-2.176312,-1.619504,-1.114383 +0.100997,0.208920,1.253771,-2.176223,-1.619301,-1.114396 +0.101049,0.209023,1.253871,-2.176135,-1.619098,-1.114409 +0.101114,0.209141,1.253987,-2.176045,-1.618889,-1.114428 +0.101180,0.209260,1.254103,-2.175956,-1.618680,-1.114447 +0.101248,0.209392,1.254235,-2.175863,-1.618484,-1.114473 +0.101317,0.209524,1.254368,-2.175769,-1.618288,-1.114500 +0.101382,0.209665,1.254509,-2.175678,-1.618116,-1.114537 +0.101448,0.209806,1.254651,-2.175586,-1.617944,-1.114575 +0.101505,0.209946,1.254789,-2.175506,-1.617803,-1.114624 +0.101561,0.210087,1.254928,-2.175426,-1.617663,-1.114672 +0.101604,0.210217,1.255047,-2.175372,-1.617564,-1.114731 +0.101646,0.210347,1.255166,-2.175318,-1.617465,-1.114790 +0.101667,0.210455,1.255248,-2.175306,-1.617418,-1.114859 +0.101688,0.210562,1.255329,-2.175294,-1.617371,-1.114927 +0.101676,0.210634,1.255358,-2.175334,-1.617395,-1.115005 +0.101664,0.210707,1.255386,-2.175374,-1.617419,-1.115083 +0.101609,0.210736,1.255352,-2.175473,-1.617529,-1.115170 +0.101554,0.210765,1.255317,-2.175572,-1.617639,-1.115258 +0.101456,0.210748,1.255217,-2.175732,-1.617832,-1.115357 +0.101359,0.210732,1.255116,-2.175891,-1.618024,-1.115456 +0.101226,0.210674,1.254956,-2.176105,-1.618286,-1.115566 +0.101093,0.210616,1.254796,-2.176320,-1.618547,-1.115676 +0.100934,0.210529,1.254597,-2.176569,-1.618860,-1.115798 +0.100775,0.210442,1.254397,-2.176818,-1.619173,-1.115921 +0.100602,0.210345,1.254187,-2.177072,-1.619515,-1.116058 +0.100428,0.210248,1.253977,-2.177326,-1.619858,-1.116195 +0.100257,0.210162,1.253788,-2.177555,-1.620201,-1.116347 +0.100085,0.210077,1.253600,-2.177784,-1.620544,-1.116499 +0.099933,0.210018,1.253449,-2.177974,-1.620854,-1.116660 +0.099781,0.209958,1.253299,-2.178164,-1.621165,-1.116820 +0.099658,0.209925,1.253185,-2.178318,-1.621424,-1.116978 +0.099535,0.209892,1.253072,-2.178471,-1.621684,-1.117137 +0.099441,0.209880,1.252988,-2.178595,-1.621890,-1.117286 +0.099346,0.209868,1.252905,-2.178718,-1.622097,-1.117436 +0.099274,0.209869,1.252840,-2.178820,-1.622257,-1.117575 +0.099203,0.209871,1.252776,-2.178921,-1.622418,-1.117714 +0.099148,0.209878,1.252723,-2.179008,-1.622540,-1.117845 +0.099094,0.209885,1.252670,-2.179095,-1.622662,-1.117976 +0.099051,0.209895,1.252624,-2.179169,-1.622755,-1.118105 +0.099009,0.209904,1.252578,-2.179243,-1.622848,-1.118234 +0.098971,0.209912,1.252536,-2.179307,-1.622921,-1.118364 +0.098934,0.209920,1.252494,-2.179371,-1.622995,-1.118494 +0.098910,0.209926,1.252451,-2.179433,-1.623035,-1.118620 +0.098886,0.209932,1.252408,-2.179496,-1.623075,-1.118745 +0.098889,0.209936,1.252359,-2.179569,-1.623057,-1.118858 +0.098893,0.209941,1.252311,-2.179643,-1.623039,-1.118970 +0.098926,0.209949,1.252263,-2.179722,-1.622962,-1.119065 +0.098959,0.209957,1.252216,-2.179800,-1.622884,-1.119160 +0.099012,0.209976,1.252188,-2.179864,-1.622761,-1.119235 +0.099066,0.209995,1.252160,-2.179927,-1.622639,-1.119311 +0.099133,0.210027,1.252157,-2.179969,-1.622484,-1.119369 +0.099199,0.210059,1.252154,-2.180010,-1.622330,-1.119427 +0.099270,0.210102,1.252175,-2.180029,-1.622162,-1.119472 +0.099341,0.210144,1.252196,-2.180048,-1.621993,-1.119516 +0.099403,0.210190,1.252233,-2.180047,-1.621834,-1.119554 +0.099465,0.210236,1.252270,-2.180046,-1.621674,-1.119592 +0.099508,0.210275,1.252308,-2.180038,-1.621540,-1.119632 +0.099552,0.210314,1.252347,-2.180031,-1.621407,-1.119673 +0.099581,0.210340,1.252374,-2.180029,-1.621295,-1.119723 +0.099610,0.210366,1.252402,-2.180028,-1.621183,-1.119773 +0.099629,0.210379,1.252415,-2.180039,-1.621084,-1.119839 +0.099649,0.210391,1.252427,-2.180051,-1.620985,-1.119904 +0.099657,0.210392,1.252428,-2.180071,-1.620904,-1.119992 +0.099665,0.210393,1.252428,-2.180091,-1.620823,-1.120079 +0.099658,0.210386,1.252426,-2.180107,-1.620767,-1.120185 +0.099651,0.210379,1.252424,-2.180123,-1.620711,-1.120290 +0.099624,0.210370,1.252429,-2.180121,-1.620687,-1.120405 +0.099597,0.210361,1.252435,-2.180119,-1.620662,-1.120520 \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/1.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/1.csv new file mode 100644 index 00000000..a8426a1c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/1.csv @@ -0,0 +1,14016 @@ +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000009,-0.000009,-0.000009,-0.000009,-0.000009,-0.000009 +-0.000032,-0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000075,-0.000075,-0.000075,-0.000075,-0.000075,-0.000075 +-0.000146,-0.000146,-0.000146,-0.000146,-0.000146,-0.000146 +-0.000252,-0.000252,-0.000252,-0.000252,-0.000252,-0.000252 +-0.0004,-0.0004,-0.0004,-0.0004,-0.0004,-0.0004 +-0.000597,-0.000597,-0.000597,-0.000597,-0.000597,-0.000597 +-0.000851,-0.000851,-0.000851,-0.000851,-0.000851,-0.000851 +-0.001167,-0.001167,-0.001167,-0.001167,-0.001167,-0.001167 +-0.001553,-0.001553,-0.001553,-0.001553,-0.001553,-0.001553 +-0.002016,-0.002016,-0.002016,-0.002016,-0.002016,-0.002016 +-0.002559,-0.002559,-0.002559,-0.002559,-0.002559,-0.002559 +-0.003178,-0.003178,-0.003178,-0.003178,-0.003178,-0.003178 +-0.003863,-0.003863,-0.003863,-0.003863,-0.003863,-0.003863 +-0.00461,-0.00461,-0.00461,-0.00461,-0.00461,-0.00461 +-0.00541,-0.00541,-0.00541,-0.00541,-0.00541,-0.00541 +-0.006257,-0.006257,-0.006257,-0.006257,-0.006257,-0.006257 +-0.007143,-0.007143,-0.007143,-0.007143,-0.007143,-0.007143 +-0.008062,-0.008062,-0.008062,-0.008062,-0.008062,-0.008062 +-0.009007,-0.009007,-0.009007,-0.009007,-0.009007,-0.009007 +-0.00997,-0.00997,-0.00997,-0.00997,-0.00997,-0.00997 +-0.010945,-0.010945,-0.010945,-0.010945,-0.010945,-0.010945 +-0.011924,-0.011924,-0.011924,-0.011924,-0.011924,-0.011924 +-0.012904,-0.012904,-0.012904,-0.012904,-0.012904,-0.012904 +-0.013884,-0.013884,-0.013884,-0.013884,-0.013884,-0.013884 +-0.014864,-0.014864,-0.014864,-0.014864,-0.014864,-0.014864 +-0.015844,-0.015844,-0.015844,-0.015844,-0.015844,-0.015844 +-0.016824,-0.016824,-0.016824,-0.016824,-0.016824,-0.016824 +-0.017804,-0.017804,-0.017804,-0.017804,-0.017804,-0.017804 +-0.018784,-0.018784,-0.018784,-0.018784,-0.018784,-0.018784 +-0.019764,-0.019764,-0.019764,-0.019764,-0.019764,-0.019764 +-0.020744,-0.020744,-0.020744,-0.020744,-0.020744,-0.020744 +-0.021724,-0.021724,-0.021724,-0.021724,-0.021724,-0.021724 +-0.022704,-0.022704,-0.022704,-0.022704,-0.022704,-0.022704 +-0.023684,-0.023684,-0.023684,-0.023684,-0.023684,-0.023684 +-0.024664,-0.024664,-0.024664,-0.024664,-0.024664,-0.024664 +-0.025644,-0.025644,-0.025644,-0.025644,-0.025644,-0.025644 +-0.026624,-0.026624,-0.026624,-0.026624,-0.026624,-0.026624 +-0.027604,-0.027604,-0.027604,-0.027604,-0.027604,-0.027604 +-0.028584,-0.028584,-0.028584,-0.028584,-0.028584,-0.028584 +-0.029564,-0.029564,-0.029564,-0.029564,-0.029564,-0.029564 +-0.030544,-0.030544,-0.030544,-0.030544,-0.030544,-0.030544 +-0.031524,-0.031524,-0.031524,-0.031524,-0.031524,-0.031524 +-0.032504,-0.032504,-0.032504,-0.032504,-0.032504,-0.032504 +-0.033484,-0.033484,-0.033484,-0.033484,-0.033484,-0.033484 +-0.034464,-0.034464,-0.034464,-0.034464,-0.034464,-0.034464 +-0.035444,-0.035444,-0.035444,-0.035444,-0.035444,-0.035444 +-0.036424,-0.036424,-0.036424,-0.036424,-0.036424,-0.036424 +-0.037404,-0.037404,-0.037404,-0.037404,-0.037404,-0.037404 +-0.038384,-0.038384,-0.038384,-0.038384,-0.038384,-0.038384 +-0.039364,-0.039364,-0.039364,-0.039364,-0.039364,-0.039364 +-0.040344,-0.040344,-0.040344,-0.040344,-0.040344,-0.040344 +-0.041324,-0.041324,-0.041324,-0.041324,-0.041324,-0.041324 +-0.042304,-0.042304,-0.042304,-0.042304,-0.042304,-0.042304 +-0.043284,-0.043284,-0.043284,-0.043284,-0.043284,-0.043284 +-0.044264,-0.044264,-0.044264,-0.044264,-0.044264,-0.044264 +-0.045244,-0.045244,-0.045244,-0.045244,-0.045244,-0.045244 +-0.046224,-0.046224,-0.046224,-0.046224,-0.046224,-0.046224 +-0.047204,-0.047204,-0.047204,-0.047204,-0.047204,-0.047204 +-0.048184,-0.048184,-0.048184,-0.048184,-0.048184,-0.048184 +-0.049164,-0.049164,-0.049164,-0.049164,-0.049164,-0.049164 +-0.050144,-0.050144,-0.050144,-0.050144,-0.050144,-0.050144 +-0.051124,-0.051124,-0.051124,-0.051124,-0.051124,-0.051124 +-0.052104,-0.052104,-0.052104,-0.052104,-0.052104,-0.052104 +-0.053084,-0.053084,-0.053084,-0.053084,-0.053084,-0.053084 +-0.054064,-0.054064,-0.054064,-0.054064,-0.054064,-0.054064 +-0.055044,-0.055044,-0.055044,-0.055044,-0.055044,-0.055044 +-0.056024,-0.056024,-0.056024,-0.056024,-0.056024,-0.056024 +-0.057004,-0.057004,-0.057004,-0.057004,-0.057004,-0.057004 +-0.057984,-0.057984,-0.057984,-0.057984,-0.057984,-0.057984 +-0.058964,-0.058964,-0.058964,-0.058964,-0.058964,-0.058964 +-0.059944,-0.059944,-0.059944,-0.059944,-0.059944,-0.059944 +-0.060924,-0.060924,-0.060924,-0.060924,-0.060924,-0.060924 +-0.061904,-0.061904,-0.061904,-0.061904,-0.061904,-0.061904 +-0.062884,-0.062884,-0.062884,-0.062884,-0.062884,-0.062884 +-0.063864,-0.063864,-0.063864,-0.063864,-0.063864,-0.063864 +-0.064844,-0.064844,-0.064844,-0.064844,-0.064844,-0.064844 +-0.065824,-0.065824,-0.065824,-0.065824,-0.065824,-0.065824 +-0.066804,-0.066804,-0.066804,-0.066804,-0.066804,-0.066804 +-0.067784,-0.067784,-0.067784,-0.067784,-0.067784,-0.067784 +-0.068764,-0.068764,-0.068764,-0.068764,-0.068764,-0.068764 +-0.069744,-0.069744,-0.069744,-0.069744,-0.069744,-0.069744 +-0.070724,-0.070724,-0.070724,-0.070724,-0.070724,-0.070724 +-0.071704,-0.071704,-0.071704,-0.071704,-0.071704,-0.071704 +-0.072684,-0.072684,-0.072684,-0.072684,-0.072684,-0.072684 +-0.073664,-0.073664,-0.073664,-0.073664,-0.073664,-0.073664 +-0.074644,-0.074644,-0.074644,-0.074644,-0.074644,-0.074644 +-0.075624,-0.075624,-0.075624,-0.075624,-0.075624,-0.075624 +-0.076604,-0.076604,-0.076604,-0.076604,-0.076604,-0.076604 +-0.077584,-0.077584,-0.077584,-0.077584,-0.077584,-0.077584 +-0.078564,-0.078564,-0.078564,-0.078564,-0.078564,-0.078564 +-0.079544,-0.079544,-0.079544,-0.079544,-0.079544,-0.079544 +-0.080524,-0.080524,-0.080524,-0.080524,-0.080524,-0.080524 +-0.081504,-0.081504,-0.081504,-0.081504,-0.081504,-0.081504 +-0.082484,-0.082484,-0.082484,-0.082484,-0.082484,-0.082484 +-0.083464,-0.083464,-0.083464,-0.083464,-0.083464,-0.083464 +-0.084444,-0.084444,-0.084444,-0.084444,-0.084444,-0.084444 +-0.085424,-0.085424,-0.085424,-0.085424,-0.085424,-0.085424 +-0.086404,-0.086404,-0.086404,-0.086404,-0.086404,-0.086404 +-0.087384,-0.087384,-0.087384,-0.087384,-0.087384,-0.087384 +-0.088364,-0.088364,-0.088364,-0.088364,-0.088364,-0.088364 +-0.089344,-0.089344,-0.089344,-0.089344,-0.089344,-0.089344 +-0.090324,-0.090324,-0.090324,-0.090324,-0.090324,-0.090324 +-0.091304,-0.091304,-0.091304,-0.091304,-0.091304,-0.091304 +-0.092284,-0.092284,-0.092284,-0.092284,-0.092284,-0.092284 +-0.093264,-0.093264,-0.093264,-0.093264,-0.093264,-0.093264 +-0.094244,-0.094244,-0.094244,-0.094244,-0.094244,-0.094244 +-0.095224,-0.095224,-0.095224,-0.095224,-0.095224,-0.095224 +-0.096204,-0.096204,-0.096204,-0.096204,-0.096204,-0.096204 +-0.097184,-0.097184,-0.097184,-0.097184,-0.097184,-0.097184 +-0.098164,-0.098164,-0.098164,-0.098164,-0.098164,-0.098164 +-0.099144,-0.099144,-0.099144,-0.099144,-0.099144,-0.099144 +-0.100124,-0.100124,-0.100124,-0.100124,-0.100124,-0.100124 +-0.101104,-0.101104,-0.101104,-0.101104,-0.101104,-0.101104 +-0.102084,-0.102084,-0.102084,-0.102084,-0.102084,-0.102084 +-0.103064,-0.103064,-0.103064,-0.103064,-0.103064,-0.103064 +-0.104044,-0.104044,-0.104044,-0.104044,-0.104044,-0.104044 +-0.105024,-0.105024,-0.105024,-0.105024,-0.105024,-0.105024 +-0.106004,-0.106004,-0.106004,-0.106004,-0.106004,-0.106004 +-0.106984,-0.106984,-0.106984,-0.106984,-0.106984,-0.106984 +-0.107964,-0.107964,-0.107964,-0.107964,-0.107964,-0.107964 +-0.108944,-0.108944,-0.108944,-0.108944,-0.108944,-0.108944 +-0.109924,-0.109924,-0.109924,-0.109924,-0.109924,-0.109924 +-0.110904,-0.110904,-0.110904,-0.110904,-0.110904,-0.110904 +-0.111884,-0.111884,-0.111884,-0.111884,-0.111884,-0.111884 +-0.112864,-0.112864,-0.112864,-0.112864,-0.112864,-0.112864 +-0.113844,-0.113844,-0.113844,-0.113844,-0.113844,-0.113844 +-0.114824,-0.114824,-0.114824,-0.114824,-0.114824,-0.114824 +-0.115804,-0.115804,-0.115804,-0.115804,-0.115804,-0.115804 +-0.116784,-0.116784,-0.116784,-0.116784,-0.116784,-0.116784 +-0.117764,-0.117764,-0.117764,-0.117764,-0.117764,-0.117764 +-0.118744,-0.118744,-0.118744,-0.118744,-0.118744,-0.118744 +-0.119724,-0.119724,-0.119724,-0.119724,-0.119724,-0.119724 +-0.120704,-0.120704,-0.120704,-0.120704,-0.120704,-0.120704 +-0.121684,-0.121684,-0.121684,-0.121684,-0.121684,-0.121684 +-0.122664,-0.122664,-0.122664,-0.122664,-0.122664,-0.122664 +-0.123644,-0.123644,-0.123644,-0.123644,-0.123644,-0.123644 +-0.124624,-0.124624,-0.124624,-0.124624,-0.124624,-0.124624 +-0.125604,-0.125604,-0.125604,-0.125604,-0.125604,-0.125604 +-0.126584,-0.126584,-0.126584,-0.126584,-0.126584,-0.126584 +-0.127564,-0.127564,-0.127564,-0.127564,-0.127564,-0.127564 +-0.128544,-0.128544,-0.128544,-0.128544,-0.128544,-0.128544 +-0.129524,-0.129524,-0.129524,-0.129524,-0.129524,-0.129524 +-0.130504,-0.130504,-0.130504,-0.130504,-0.130504,-0.130504 +-0.131484,-0.131484,-0.131484,-0.131484,-0.131484,-0.131484 +-0.132464,-0.132464,-0.132464,-0.132464,-0.132464,-0.132464 +-0.133444,-0.133444,-0.133444,-0.133444,-0.133444,-0.133444 +-0.134424,-0.134424,-0.134424,-0.134424,-0.134424,-0.134424 +-0.135404,-0.135404,-0.135404,-0.135404,-0.135404,-0.135404 +-0.136384,-0.136384,-0.136384,-0.136384,-0.136384,-0.136384 +-0.137364,-0.137364,-0.137364,-0.137364,-0.137364,-0.137364 +-0.138344,-0.138344,-0.138344,-0.138344,-0.138344,-0.138344 +-0.139324,-0.139324,-0.139324,-0.139324,-0.139324,-0.139324 +-0.140304,-0.140304,-0.140304,-0.140304,-0.140304,-0.140304 +-0.141284,-0.141284,-0.141284,-0.141284,-0.141284,-0.141284 +-0.142264,-0.142264,-0.142264,-0.142264,-0.142264,-0.142264 +-0.143244,-0.143244,-0.143244,-0.143244,-0.143244,-0.143244 +-0.144224,-0.144224,-0.144224,-0.144224,-0.144224,-0.144224 +-0.145204,-0.145204,-0.145204,-0.145204,-0.145204,-0.145204 +-0.146184,-0.146184,-0.146184,-0.146184,-0.146184,-0.146184 +-0.147164,-0.147164,-0.147164,-0.147164,-0.147164,-0.147164 +-0.148144,-0.148144,-0.148144,-0.148144,-0.148144,-0.148144 +-0.149124,-0.149124,-0.149124,-0.149124,-0.149124,-0.149124 +-0.150104,-0.150104,-0.150104,-0.150104,-0.150104,-0.150104 +-0.151084,-0.151084,-0.151084,-0.151084,-0.151084,-0.151084 +-0.152064,-0.152064,-0.152064,-0.152064,-0.152064,-0.152064 +-0.153044,-0.153044,-0.153044,-0.153044,-0.153044,-0.153044 +-0.154024,-0.154024,-0.154024,-0.154024,-0.154024,-0.154024 +-0.155004,-0.155004,-0.155004,-0.155004,-0.155004,-0.155004 +-0.155984,-0.155984,-0.155984,-0.155984,-0.155984,-0.155984 +-0.156964,-0.156964,-0.156964,-0.156964,-0.156964,-0.156964 +-0.157944,-0.157944,-0.157944,-0.157944,-0.157944,-0.157944 +-0.158924,-0.158924,-0.158924,-0.158924,-0.158924,-0.158924 +-0.159904,-0.159904,-0.159904,-0.159904,-0.159904,-0.159904 +-0.160884,-0.160884,-0.160884,-0.160884,-0.160884,-0.160884 +-0.161864,-0.161864,-0.161864,-0.161864,-0.161864,-0.161864 +-0.162844,-0.162844,-0.162844,-0.162844,-0.162844,-0.162844 +-0.163824,-0.163824,-0.163824,-0.163824,-0.163824,-0.163824 +-0.164804,-0.164804,-0.164804,-0.164804,-0.164804,-0.164804 +-0.165784,-0.165784,-0.165784,-0.165784,-0.165784,-0.165784 +-0.166764,-0.166764,-0.166764,-0.166764,-0.166764,-0.166764 +-0.167744,-0.167744,-0.167744,-0.167744,-0.167744,-0.167744 +-0.168724,-0.168724,-0.168724,-0.168724,-0.168724,-0.168724 +-0.169704,-0.169704,-0.169704,-0.169704,-0.169704,-0.169704 +-0.170684,-0.170684,-0.170684,-0.170684,-0.170684,-0.170684 +-0.171664,-0.171664,-0.171664,-0.171664,-0.171664,-0.171664 +-0.172644,-0.172644,-0.172644,-0.172644,-0.172644,-0.172644 +-0.173624,-0.173624,-0.173624,-0.173624,-0.173624,-0.173624 +-0.174604,-0.174604,-0.174604,-0.174604,-0.174604,-0.174604 +-0.175584,-0.175584,-0.175584,-0.175584,-0.175584,-0.175584 +-0.176564,-0.176564,-0.176564,-0.176564,-0.176564,-0.176564 +-0.177544,-0.177544,-0.177544,-0.177544,-0.177544,-0.177544 +-0.178524,-0.178524,-0.178524,-0.178524,-0.178524,-0.178524 +-0.179504,-0.179504,-0.179504,-0.179504,-0.179504,-0.179504 +-0.180484,-0.180484,-0.180484,-0.180484,-0.180484,-0.180484 +-0.181464,-0.181464,-0.181464,-0.181464,-0.181464,-0.181464 +-0.182444,-0.182444,-0.182444,-0.182444,-0.182444,-0.182444 +-0.183424,-0.183424,-0.183424,-0.183424,-0.183424,-0.183424 +-0.184404,-0.184404,-0.184404,-0.184404,-0.184404,-0.184404 +-0.185384,-0.185384,-0.185384,-0.185384,-0.185384,-0.185384 +-0.186364,-0.186364,-0.186364,-0.186364,-0.186364,-0.186364 +-0.187344,-0.187344,-0.187344,-0.187344,-0.187344,-0.187344 +-0.188324,-0.188324,-0.188324,-0.188324,-0.188324,-0.188324 +-0.189304,-0.189304,-0.189304,-0.189304,-0.189304,-0.189304 +-0.190284,-0.190284,-0.190284,-0.190284,-0.190284,-0.190284 +-0.191264,-0.191264,-0.191264,-0.191264,-0.191264,-0.191264 +-0.192244,-0.192244,-0.192244,-0.192244,-0.192244,-0.192244 +-0.193224,-0.193224,-0.193224,-0.193224,-0.193224,-0.193224 +-0.194204,-0.194204,-0.194204,-0.194204,-0.194204,-0.194204 +-0.195184,-0.195184,-0.195184,-0.195184,-0.195184,-0.195184 +-0.196164,-0.196164,-0.196164,-0.196164,-0.196164,-0.196164 +-0.197144,-0.197144,-0.197144,-0.197144,-0.197144,-0.197144 +-0.198124,-0.198124,-0.198124,-0.198124,-0.198124,-0.198124 +-0.199104,-0.199104,-0.199104,-0.199104,-0.199104,-0.199104 +-0.200084,-0.200084,-0.200084,-0.200084,-0.200084,-0.200084 +-0.201064,-0.201064,-0.201064,-0.201064,-0.201064,-0.201064 +-0.202044,-0.202044,-0.202044,-0.202044,-0.202044,-0.202044 +-0.203024,-0.203024,-0.203024,-0.203024,-0.203024,-0.203024 +-0.204004,-0.204004,-0.204004,-0.204004,-0.204004,-0.204004 +-0.204984,-0.204984,-0.204984,-0.204984,-0.204984,-0.204984 +-0.205964,-0.205964,-0.205964,-0.205964,-0.205964,-0.205964 +-0.206944,-0.206944,-0.206944,-0.206944,-0.206944,-0.206944 +-0.207924,-0.207924,-0.207924,-0.207924,-0.207924,-0.207924 +-0.208904,-0.208904,-0.208904,-0.208904,-0.208904,-0.208904 +-0.209884,-0.209884,-0.209884,-0.209884,-0.209884,-0.209884 +-0.210864,-0.210864,-0.210864,-0.210864,-0.210864,-0.210864 +-0.211844,-0.211844,-0.211844,-0.211844,-0.211844,-0.211844 +-0.212824,-0.212824,-0.212824,-0.212824,-0.212824,-0.212824 +-0.213804,-0.213804,-0.213804,-0.213804,-0.213804,-0.213804 +-0.214784,-0.214784,-0.214784,-0.214784,-0.214784,-0.214784 +-0.215764,-0.215764,-0.215764,-0.215764,-0.215764,-0.215764 +-0.216744,-0.216744,-0.216744,-0.216744,-0.216744,-0.216744 +-0.217724,-0.217724,-0.217724,-0.217724,-0.217724,-0.217724 +-0.218704,-0.218704,-0.218704,-0.218704,-0.218704,-0.218704 +-0.219684,-0.219684,-0.219684,-0.219684,-0.219684,-0.219684 +-0.220664,-0.220664,-0.220664,-0.220664,-0.220664,-0.220664 +-0.221644,-0.221644,-0.221644,-0.221644,-0.221644,-0.221644 +-0.222624,-0.222624,-0.222624,-0.222624,-0.222624,-0.222624 +-0.223604,-0.223604,-0.223604,-0.223604,-0.223604,-0.223604 +-0.224584,-0.224584,-0.224584,-0.224584,-0.224584,-0.224584 +-0.225564,-0.225564,-0.225564,-0.225564,-0.225564,-0.225564 +-0.226544,-0.226544,-0.226544,-0.226544,-0.226544,-0.226544 +-0.227524,-0.227524,-0.227524,-0.227524,-0.227524,-0.227524 +-0.228504,-0.228504,-0.228504,-0.228504,-0.228504,-0.228504 +-0.229484,-0.229484,-0.229484,-0.229484,-0.229484,-0.229484 +-0.230464,-0.230464,-0.230464,-0.230464,-0.230464,-0.230464 +-0.231444,-0.231444,-0.231444,-0.231444,-0.231444,-0.231444 +-0.232424,-0.232424,-0.232424,-0.232424,-0.232424,-0.232424 +-0.233404,-0.233404,-0.233404,-0.233404,-0.233404,-0.233404 +-0.234384,-0.234384,-0.234384,-0.234384,-0.234384,-0.234384 +-0.235364,-0.235364,-0.235364,-0.235364,-0.235364,-0.235364 +-0.236344,-0.236344,-0.236344,-0.236344,-0.236344,-0.236344 +-0.237324,-0.237324,-0.237324,-0.237324,-0.237324,-0.237324 +-0.238304,-0.238304,-0.238304,-0.238304,-0.238304,-0.238304 +-0.239284,-0.239284,-0.239284,-0.239284,-0.239284,-0.239284 +-0.240264,-0.240264,-0.240264,-0.240264,-0.240264,-0.240264 +-0.241244,-0.241244,-0.241244,-0.241244,-0.241244,-0.241244 +-0.242224,-0.242224,-0.242224,-0.242224,-0.242224,-0.242224 +-0.243204,-0.243204,-0.243204,-0.243204,-0.243204,-0.243204 +-0.244184,-0.244184,-0.244184,-0.244184,-0.244184,-0.244184 +-0.245164,-0.245164,-0.245164,-0.245164,-0.245164,-0.245164 +-0.246144,-0.246144,-0.246144,-0.246144,-0.246144,-0.246144 +-0.247124,-0.247124,-0.247124,-0.247124,-0.247124,-0.247124 +-0.248104,-0.248104,-0.248104,-0.248104,-0.248104,-0.248104 +-0.249084,-0.249084,-0.249084,-0.249084,-0.249084,-0.249084 +-0.250064,-0.250064,-0.250064,-0.250064,-0.250064,-0.250064 +-0.251044,-0.251044,-0.251044,-0.251044,-0.251044,-0.251044 +-0.252024,-0.252024,-0.252024,-0.252024,-0.252024,-0.252024 +-0.253004,-0.253004,-0.253004,-0.253004,-0.253004,-0.253004 +-0.253984,-0.253984,-0.253984,-0.253984,-0.253984,-0.253984 +-0.254964,-0.254964,-0.254964,-0.254964,-0.254964,-0.254964 +-0.255944,-0.255944,-0.255944,-0.255944,-0.255944,-0.255944 +-0.256924,-0.256924,-0.256924,-0.256924,-0.256924,-0.256924 +-0.257904,-0.257904,-0.257904,-0.257904,-0.257904,-0.257904 +-0.258884,-0.258884,-0.258884,-0.258884,-0.258884,-0.258884 +-0.259864,-0.259864,-0.259864,-0.259864,-0.259864,-0.259864 +-0.260844,-0.260844,-0.260844,-0.260844,-0.260844,-0.260844 +-0.261824,-0.261824,-0.261824,-0.261824,-0.261824,-0.261824 +-0.262804,-0.262804,-0.262804,-0.262804,-0.262804,-0.262804 +-0.263784,-0.263784,-0.263784,-0.263784,-0.263784,-0.263784 +-0.264764,-0.264764,-0.264764,-0.264764,-0.264764,-0.264764 +-0.265744,-0.265744,-0.265744,-0.265744,-0.265744,-0.265744 +-0.266724,-0.266724,-0.266724,-0.266724,-0.266724,-0.266724 +-0.267704,-0.267704,-0.267704,-0.267704,-0.267704,-0.267704 +-0.268684,-0.268684,-0.268684,-0.268684,-0.268684,-0.268684 +-0.269664,-0.269664,-0.269664,-0.269664,-0.269664,-0.269664 +-0.270644,-0.270644,-0.270644,-0.270644,-0.270644,-0.270644 +-0.271624,-0.271624,-0.271624,-0.271624,-0.271624,-0.271624 +-0.272604,-0.272604,-0.272604,-0.272604,-0.272604,-0.272604 +-0.273584,-0.273584,-0.273584,-0.273584,-0.273584,-0.273584 +-0.274564,-0.274564,-0.274564,-0.274564,-0.274564,-0.274564 +-0.275544,-0.275544,-0.275544,-0.275544,-0.275544,-0.275544 +-0.276524,-0.276524,-0.276524,-0.276524,-0.276524,-0.276524 +-0.277504,-0.277504,-0.277504,-0.277504,-0.277504,-0.277504 +-0.278484,-0.278484,-0.278484,-0.278484,-0.278484,-0.278484 +-0.279464,-0.279464,-0.279464,-0.279464,-0.279464,-0.279464 +-0.280444,-0.280444,-0.280444,-0.280444,-0.280444,-0.280444 +-0.281424,-0.281424,-0.281424,-0.281424,-0.281424,-0.281424 +-0.282404,-0.282404,-0.282404,-0.282404,-0.282404,-0.282404 +-0.283384,-0.283384,-0.283384,-0.283384,-0.283384,-0.283384 +-0.284364,-0.284364,-0.284364,-0.284364,-0.284364,-0.284364 +-0.285344,-0.285344,-0.285344,-0.285344,-0.285344,-0.285344 +-0.286324,-0.286324,-0.286324,-0.286324,-0.286324,-0.286324 +-0.287304,-0.287304,-0.287304,-0.287304,-0.287304,-0.287304 +-0.288284,-0.288284,-0.288284,-0.288284,-0.288284,-0.288284 +-0.289264,-0.289264,-0.289264,-0.289264,-0.289264,-0.289264 +-0.290244,-0.290244,-0.290244,-0.290244,-0.290244,-0.290244 +-0.291224,-0.291224,-0.291224,-0.291224,-0.291224,-0.291224 +-0.292204,-0.292204,-0.292204,-0.292204,-0.292204,-0.292204 +-0.293184,-0.293184,-0.293184,-0.293184,-0.293184,-0.293184 +-0.294164,-0.294164,-0.294164,-0.294164,-0.294164,-0.294164 +-0.295144,-0.295144,-0.295144,-0.295144,-0.295144,-0.295144 +-0.296124,-0.296124,-0.296124,-0.296124,-0.296124,-0.296124 +-0.297104,-0.297104,-0.297104,-0.297104,-0.297104,-0.297104 +-0.298084,-0.298084,-0.298084,-0.298084,-0.298084,-0.298084 +-0.299064,-0.299064,-0.299064,-0.299064,-0.299064,-0.299064 +-0.300044,-0.300044,-0.300044,-0.300044,-0.300044,-0.300044 +-0.301024,-0.301024,-0.301024,-0.301024,-0.301024,-0.301024 +-0.302004,-0.302004,-0.302004,-0.302004,-0.302004,-0.302004 +-0.302984,-0.302984,-0.302984,-0.302984,-0.302984,-0.302984 +-0.303964,-0.303964,-0.303964,-0.303964,-0.303964,-0.303964 +-0.304944,-0.304944,-0.304944,-0.304944,-0.304944,-0.304944 +-0.305924,-0.305924,-0.305924,-0.305924,-0.305924,-0.305924 +-0.306904,-0.306904,-0.306904,-0.306904,-0.306904,-0.306904 +-0.307884,-0.307884,-0.307884,-0.307884,-0.307884,-0.307884 +-0.308864,-0.308864,-0.308864,-0.308864,-0.308864,-0.308864 +-0.309844,-0.309844,-0.309844,-0.309844,-0.309844,-0.309844 +-0.310824,-0.310824,-0.310824,-0.310824,-0.310824,-0.310824 +-0.311804,-0.311804,-0.311804,-0.311804,-0.311804,-0.311804 +-0.312784,-0.312784,-0.312784,-0.312784,-0.312784,-0.312784 +-0.313764,-0.313764,-0.313764,-0.313764,-0.313764,-0.313764 +-0.314744,-0.314744,-0.314744,-0.314744,-0.314744,-0.314744 +-0.315724,-0.315724,-0.315724,-0.315724,-0.315724,-0.315724 +-0.316704,-0.316704,-0.316704,-0.316704,-0.316704,-0.316704 +-0.317684,-0.317684,-0.317684,-0.317684,-0.317684,-0.317684 +-0.318664,-0.318664,-0.318664,-0.318664,-0.318664,-0.318664 +-0.319644,-0.319644,-0.319644,-0.319644,-0.319644,-0.319644 +-0.320624,-0.320624,-0.320624,-0.320624,-0.320624,-0.320624 +-0.321604,-0.321604,-0.321604,-0.321604,-0.321604,-0.321604 +-0.322584,-0.322584,-0.322584,-0.322584,-0.322584,-0.322584 +-0.323564,-0.323564,-0.323564,-0.323564,-0.323564,-0.323564 +-0.324544,-0.324544,-0.324544,-0.324544,-0.324544,-0.324544 +-0.325524,-0.325524,-0.325524,-0.325524,-0.325524,-0.325524 +-0.326504,-0.326504,-0.326504,-0.326504,-0.326504,-0.326504 +-0.327484,-0.327484,-0.327484,-0.327484,-0.327484,-0.327484 +-0.328464,-0.328464,-0.328464,-0.328464,-0.328464,-0.328464 +-0.329444,-0.329444,-0.329444,-0.329444,-0.329444,-0.329444 +-0.330424,-0.330424,-0.330424,-0.330424,-0.330424,-0.330424 +-0.331404,-0.331404,-0.331404,-0.331404,-0.331404,-0.331404 +-0.332384,-0.332384,-0.332384,-0.332384,-0.332384,-0.332384 +-0.333364,-0.333364,-0.333364,-0.333364,-0.333364,-0.333364 +-0.334344,-0.334344,-0.334344,-0.334344,-0.334344,-0.334344 +-0.335324,-0.335324,-0.335324,-0.335324,-0.335324,-0.335324 +-0.336304,-0.336304,-0.336304,-0.336304,-0.336304,-0.336304 +-0.337284,-0.337284,-0.337284,-0.337284,-0.337284,-0.337284 +-0.338264,-0.338264,-0.338264,-0.338264,-0.338264,-0.338264 +-0.339244,-0.339244,-0.339244,-0.339244,-0.339244,-0.339244 +-0.340224,-0.340224,-0.340224,-0.340224,-0.340224,-0.340224 +-0.341204,-0.341204,-0.341204,-0.341204,-0.341204,-0.341204 +-0.342184,-0.342184,-0.342184,-0.342184,-0.342184,-0.342184 +-0.343164,-0.343164,-0.343164,-0.343164,-0.343164,-0.343164 +-0.344144,-0.344144,-0.344144,-0.344144,-0.344144,-0.344144 +-0.345124,-0.345124,-0.345124,-0.345124,-0.345124,-0.345124 +-0.346104,-0.346104,-0.346104,-0.346104,-0.346104,-0.346104 +-0.347084,-0.347084,-0.347084,-0.347084,-0.347084,-0.347084 +-0.348064,-0.348064,-0.348064,-0.348064,-0.348064,-0.348064 +-0.349044,-0.349044,-0.349044,-0.349044,-0.349044,-0.349044 +-0.350024,-0.350024,-0.350024,-0.350024,-0.350024,-0.350024 +-0.351004,-0.351004,-0.351004,-0.351004,-0.351004,-0.351004 +-0.351984,-0.351984,-0.351984,-0.351984,-0.351984,-0.351984 +-0.352964,-0.352964,-0.352964,-0.352964,-0.352964,-0.352964 +-0.353944,-0.353944,-0.353944,-0.353944,-0.353944,-0.353944 +-0.354924,-0.354924,-0.354924,-0.354924,-0.354924,-0.354924 +-0.355904,-0.355904,-0.355904,-0.355904,-0.355904,-0.355904 +-0.356884,-0.356884,-0.356884,-0.356884,-0.356884,-0.356884 +-0.357864,-0.357864,-0.357864,-0.357864,-0.357864,-0.357864 +-0.358844,-0.358844,-0.358844,-0.358844,-0.358844,-0.358844 +-0.359824,-0.359824,-0.359824,-0.359824,-0.359824,-0.359824 +-0.360804,-0.360804,-0.360804,-0.360804,-0.360804,-0.360804 +-0.361784,-0.361784,-0.361784,-0.361784,-0.361784,-0.361784 +-0.362764,-0.362764,-0.362764,-0.362764,-0.362764,-0.362764 +-0.363744,-0.363744,-0.363744,-0.363744,-0.363744,-0.363744 +-0.364724,-0.364724,-0.364724,-0.364724,-0.364724,-0.364724 +-0.365704,-0.365704,-0.365704,-0.365704,-0.365704,-0.365704 +-0.366684,-0.366684,-0.366684,-0.366684,-0.366684,-0.366684 +-0.367664,-0.367664,-0.367664,-0.367664,-0.367664,-0.367664 +-0.368644,-0.368644,-0.368644,-0.368644,-0.368644,-0.368644 +-0.369624,-0.369624,-0.369624,-0.369624,-0.369624,-0.369624 +-0.370604,-0.370604,-0.370604,-0.370604,-0.370604,-0.370604 +-0.371584,-0.371584,-0.371584,-0.371584,-0.371584,-0.371584 +-0.372564,-0.372564,-0.372564,-0.372564,-0.372564,-0.372564 +-0.373544,-0.373544,-0.373544,-0.373544,-0.373544,-0.373544 +-0.374524,-0.374524,-0.374524,-0.374524,-0.374524,-0.374524 +-0.375504,-0.375504,-0.375504,-0.375504,-0.375504,-0.375504 +-0.376484,-0.376484,-0.376484,-0.376484,-0.376484,-0.376484 +-0.377464,-0.377464,-0.377464,-0.377464,-0.377464,-0.377464 +-0.378444,-0.378444,-0.378444,-0.378444,-0.378444,-0.378444 +-0.379424,-0.379424,-0.379424,-0.379424,-0.379424,-0.379424 +-0.380404,-0.380404,-0.380404,-0.380404,-0.380404,-0.380404 +-0.381384,-0.381384,-0.381384,-0.381384,-0.381384,-0.381384 +-0.382364,-0.382364,-0.382364,-0.382364,-0.382364,-0.382364 +-0.383344,-0.383344,-0.383344,-0.383344,-0.383344,-0.383344 +-0.384324,-0.384324,-0.384324,-0.384324,-0.384324,-0.384324 +-0.385304,-0.385304,-0.385304,-0.385304,-0.385304,-0.385304 +-0.386284,-0.386284,-0.386284,-0.386284,-0.386284,-0.386284 +-0.387264,-0.387264,-0.387264,-0.387264,-0.387264,-0.387264 +-0.388244,-0.388244,-0.388244,-0.388244,-0.388244,-0.388244 +-0.389224,-0.389224,-0.389224,-0.389224,-0.389224,-0.389224 +-0.390204,-0.390204,-0.390204,-0.390204,-0.390204,-0.390204 +-0.391184,-0.391184,-0.391184,-0.391184,-0.391184,-0.391184 +-0.392164,-0.392164,-0.392164,-0.392164,-0.392164,-0.392164 +-0.393144,-0.393144,-0.393144,-0.393144,-0.393144,-0.393144 +-0.394124,-0.394124,-0.394124,-0.394124,-0.394124,-0.394124 +-0.395104,-0.395104,-0.395104,-0.395104,-0.395104,-0.395104 +-0.396084,-0.396084,-0.396084,-0.396084,-0.396084,-0.396084 +-0.397064,-0.397064,-0.397064,-0.397064,-0.397064,-0.397064 +-0.398044,-0.398044,-0.398044,-0.398044,-0.398044,-0.398044 +-0.399024,-0.399024,-0.399024,-0.399024,-0.399024,-0.399024 +-0.400004,-0.400004,-0.400004,-0.400004,-0.400004,-0.400004 +-0.400984,-0.400984,-0.400984,-0.400984,-0.400984,-0.400984 +-0.401964,-0.401964,-0.401964,-0.401964,-0.401964,-0.401964 +-0.402944,-0.402944,-0.402944,-0.402944,-0.402944,-0.402944 +-0.403924,-0.403924,-0.403924,-0.403924,-0.403924,-0.403924 +-0.404904,-0.404904,-0.404904,-0.404904,-0.404904,-0.404904 +-0.405884,-0.405884,-0.405884,-0.405884,-0.405884,-0.405884 +-0.406864,-0.406864,-0.406864,-0.406864,-0.406864,-0.406864 +-0.407844,-0.407844,-0.407844,-0.407844,-0.407844,-0.407844 +-0.408824,-0.408824,-0.408824,-0.408824,-0.408824,-0.408824 +-0.409804,-0.409804,-0.409804,-0.409804,-0.409804,-0.409804 +-0.410784,-0.410784,-0.410784,-0.410784,-0.410784,-0.410784 +-0.411764,-0.411764,-0.411764,-0.411764,-0.411764,-0.411764 +-0.412744,-0.412744,-0.412744,-0.412744,-0.412744,-0.412744 +-0.413724,-0.413724,-0.413724,-0.413724,-0.413724,-0.413724 +-0.414704,-0.414704,-0.414704,-0.414704,-0.414704,-0.414704 +-0.415684,-0.415684,-0.415684,-0.415684,-0.415684,-0.415684 +-0.416664,-0.416664,-0.416664,-0.416664,-0.416664,-0.416664 +-0.417644,-0.417644,-0.417644,-0.417644,-0.417644,-0.417644 +-0.418624,-0.418624,-0.418624,-0.418624,-0.418624,-0.418624 +-0.419604,-0.419604,-0.419604,-0.419604,-0.419604,-0.419604 +-0.420584,-0.420584,-0.420584,-0.420584,-0.420584,-0.420584 +-0.421564,-0.421564,-0.421564,-0.421564,-0.421564,-0.421564 +-0.422544,-0.422544,-0.422544,-0.422544,-0.422544,-0.422544 +-0.423524,-0.423524,-0.423524,-0.423524,-0.423524,-0.423524 +-0.424504,-0.424504,-0.424504,-0.424504,-0.424504,-0.424504 +-0.425484,-0.425484,-0.425484,-0.425484,-0.425484,-0.425484 +-0.426464,-0.426464,-0.426464,-0.426464,-0.426464,-0.426464 +-0.427444,-0.427444,-0.427444,-0.427444,-0.427444,-0.427444 +-0.428424,-0.428424,-0.428424,-0.428424,-0.428424,-0.428424 +-0.429404,-0.429404,-0.429404,-0.429404,-0.429404,-0.429404 +-0.430384,-0.430384,-0.430384,-0.430384,-0.430384,-0.430384 +-0.431364,-0.431364,-0.431364,-0.431364,-0.431364,-0.431364 +-0.432344,-0.432344,-0.432344,-0.432344,-0.432344,-0.432344 +-0.433324,-0.433324,-0.433324,-0.433324,-0.433324,-0.433324 +-0.434304,-0.434304,-0.434304,-0.434304,-0.434304,-0.434304 +-0.435284,-0.435284,-0.435284,-0.435284,-0.435284,-0.435284 +-0.436264,-0.436264,-0.436264,-0.436264,-0.436264,-0.436264 +-0.437244,-0.437244,-0.437244,-0.437244,-0.437244,-0.437244 +-0.438224,-0.438224,-0.438224,-0.438224,-0.438224,-0.438224 +-0.439204,-0.439204,-0.439204,-0.439204,-0.439204,-0.439204 +-0.440184,-0.440184,-0.440184,-0.440184,-0.440184,-0.440184 +-0.441164,-0.441164,-0.441164,-0.441164,-0.441164,-0.441164 +-0.442144,-0.442144,-0.442144,-0.442144,-0.442144,-0.442144 +-0.443124,-0.443124,-0.443124,-0.443124,-0.443124,-0.443124 +-0.444104,-0.444104,-0.444104,-0.444104,-0.444104,-0.444104 +-0.445084,-0.445084,-0.445084,-0.445084,-0.445084,-0.445084 +-0.446064,-0.446064,-0.446064,-0.446064,-0.446064,-0.446064 +-0.447044,-0.447044,-0.447044,-0.447044,-0.447044,-0.447044 +-0.448024,-0.448024,-0.448024,-0.448024,-0.448024,-0.448024 +-0.449004,-0.449004,-0.449004,-0.449004,-0.449004,-0.449004 +-0.449984,-0.449984,-0.449984,-0.449984,-0.449984,-0.449984 +-0.450964,-0.450964,-0.450964,-0.450964,-0.450964,-0.450964 +-0.451944,-0.451944,-0.451944,-0.451944,-0.451944,-0.451944 +-0.452924,-0.452924,-0.452924,-0.452924,-0.452924,-0.452924 +-0.453904,-0.453904,-0.453904,-0.453904,-0.453904,-0.453904 +-0.454884,-0.454884,-0.454884,-0.454884,-0.454884,-0.454884 +-0.455864,-0.455864,-0.455864,-0.455864,-0.455864,-0.455864 +-0.456844,-0.456844,-0.456844,-0.456844,-0.456844,-0.456844 +-0.457824,-0.457824,-0.457824,-0.457824,-0.457824,-0.457824 +-0.458804,-0.458804,-0.458804,-0.458804,-0.458804,-0.458804 +-0.459784,-0.459784,-0.459784,-0.459784,-0.459784,-0.459784 +-0.460764,-0.460764,-0.460764,-0.460764,-0.460764,-0.460764 +-0.461744,-0.461744,-0.461744,-0.461744,-0.461744,-0.461744 +-0.462724,-0.462724,-0.462724,-0.462724,-0.462724,-0.462724 +-0.463704,-0.463704,-0.463704,-0.463704,-0.463704,-0.463704 +-0.464684,-0.464684,-0.464684,-0.464684,-0.464684,-0.464684 +-0.465664,-0.465664,-0.465664,-0.465664,-0.465664,-0.465664 +-0.466644,-0.466644,-0.466644,-0.466644,-0.466644,-0.466644 +-0.467624,-0.467624,-0.467624,-0.467624,-0.467624,-0.467624 +-0.468604,-0.468604,-0.468604,-0.468604,-0.468604,-0.468604 +-0.469584,-0.469584,-0.469584,-0.469584,-0.469584,-0.469584 +-0.470564,-0.470564,-0.470564,-0.470564,-0.470564,-0.470564 +-0.471544,-0.471544,-0.471544,-0.471544,-0.471544,-0.471544 +-0.472524,-0.472524,-0.472524,-0.472524,-0.472524,-0.472524 +-0.473504,-0.473504,-0.473504,-0.473504,-0.473504,-0.473504 +-0.474484,-0.474484,-0.474484,-0.474484,-0.474484,-0.474484 +-0.475464,-0.475464,-0.475464,-0.475464,-0.475464,-0.475464 +-0.476444,-0.476444,-0.476444,-0.476444,-0.476444,-0.476444 +-0.477424,-0.477424,-0.477424,-0.477424,-0.477424,-0.477424 +-0.478404,-0.478404,-0.478404,-0.478404,-0.478404,-0.478404 +-0.479384,-0.479384,-0.479384,-0.479384,-0.479384,-0.479384 +-0.480364,-0.480364,-0.480364,-0.480364,-0.480364,-0.480364 +-0.481344,-0.481344,-0.481344,-0.481344,-0.481344,-0.481344 +-0.482324,-0.482324,-0.482324,-0.482324,-0.482324,-0.482324 +-0.483304,-0.483304,-0.483304,-0.483304,-0.483304,-0.483304 +-0.484284,-0.484284,-0.484284,-0.484284,-0.484284,-0.484284 +-0.485264,-0.485264,-0.485264,-0.485264,-0.485264,-0.485264 +-0.486244,-0.486244,-0.486244,-0.486244,-0.486244,-0.486244 +-0.487224,-0.487224,-0.487224,-0.487224,-0.487224,-0.487224 +-0.488204,-0.488204,-0.488204,-0.488204,-0.488204,-0.488204 +-0.489184,-0.489184,-0.489184,-0.489184,-0.489184,-0.489184 +-0.490164,-0.490164,-0.490164,-0.490164,-0.490164,-0.490164 +-0.491144,-0.491144,-0.491144,-0.491144,-0.491144,-0.491144 +-0.492124,-0.492124,-0.492124,-0.492124,-0.492124,-0.492124 +-0.493104,-0.493104,-0.493104,-0.493104,-0.493104,-0.493104 +-0.494084,-0.494084,-0.494084,-0.494084,-0.494084,-0.494084 +-0.495064,-0.495064,-0.495064,-0.495064,-0.495064,-0.495064 +-0.496044,-0.496044,-0.496044,-0.496044,-0.496044,-0.496044 +-0.497024,-0.497024,-0.497024,-0.497024,-0.497024,-0.497024 +-0.498004,-0.498004,-0.498004,-0.498004,-0.498004,-0.498004 +-0.498984,-0.498984,-0.498984,-0.498984,-0.498984,-0.498984 +-0.499964,-0.499964,-0.499964,-0.499964,-0.499964,-0.499964 +-0.500944,-0.500944,-0.500944,-0.500944,-0.500944,-0.500944 +-0.501924,-0.501924,-0.501924,-0.501924,-0.501924,-0.501924 +-0.502904,-0.502904,-0.502904,-0.502904,-0.502904,-0.502904 +-0.503884,-0.503884,-0.503884,-0.503884,-0.503884,-0.503884 +-0.504864,-0.504864,-0.504864,-0.504864,-0.504864,-0.504864 +-0.505844,-0.505844,-0.505844,-0.505844,-0.505844,-0.505844 +-0.506824,-0.506824,-0.506824,-0.506824,-0.506824,-0.506824 +-0.507804,-0.507804,-0.507804,-0.507804,-0.507804,-0.507804 +-0.508784,-0.508784,-0.508784,-0.508784,-0.508784,-0.508784 +-0.509764,-0.509764,-0.509764,-0.509764,-0.509764,-0.509764 +-0.510744,-0.510744,-0.510744,-0.510744,-0.510744,-0.510744 +-0.511724,-0.511724,-0.511724,-0.511724,-0.511724,-0.511724 +-0.512704,-0.512704,-0.512704,-0.512704,-0.512704,-0.512704 +-0.513684,-0.513684,-0.513684,-0.513684,-0.513684,-0.513684 +-0.514664,-0.514664,-0.514664,-0.514664,-0.514664,-0.514664 +-0.515644,-0.515644,-0.515644,-0.515644,-0.515644,-0.515644 +-0.516624,-0.516624,-0.516624,-0.516624,-0.516624,-0.516624 +-0.517604,-0.517604,-0.517604,-0.517604,-0.517604,-0.517604 +-0.518584,-0.518584,-0.518584,-0.518584,-0.518584,-0.518584 +-0.519564,-0.519564,-0.519564,-0.519564,-0.519564,-0.519564 +-0.520544,-0.520544,-0.520544,-0.520544,-0.520544,-0.520544 +-0.521524,-0.521524,-0.521524,-0.521524,-0.521524,-0.521524 +-0.522504,-0.522504,-0.522504,-0.522504,-0.522504,-0.522504 +-0.523484,-0.523484,-0.523484,-0.523484,-0.523484,-0.523484 +-0.524464,-0.524464,-0.524464,-0.524464,-0.524464,-0.524464 +-0.525444,-0.525444,-0.525444,-0.525444,-0.525444,-0.525444 +-0.526424,-0.526424,-0.526424,-0.526424,-0.526424,-0.526424 +-0.527404,-0.527404,-0.527404,-0.527404,-0.527404,-0.527404 +-0.528384,-0.528384,-0.528384,-0.528384,-0.528384,-0.528384 +-0.529364,-0.529364,-0.529364,-0.529364,-0.529364,-0.529364 +-0.530344,-0.530344,-0.530344,-0.530344,-0.530344,-0.530344 +-0.531324,-0.531324,-0.531324,-0.531324,-0.531324,-0.531324 +-0.532304,-0.532304,-0.532304,-0.532304,-0.532304,-0.532304 +-0.533284,-0.533284,-0.533284,-0.533284,-0.533284,-0.533284 +-0.534264,-0.534264,-0.534264,-0.534264,-0.534264,-0.534264 +-0.535244,-0.535244,-0.535244,-0.535244,-0.535244,-0.535244 +-0.536224,-0.536224,-0.536224,-0.536224,-0.536224,-0.536224 +-0.537204,-0.537204,-0.537204,-0.537204,-0.537204,-0.537204 +-0.538184,-0.538184,-0.538184,-0.538184,-0.538184,-0.538184 +-0.539164,-0.539164,-0.539164,-0.539164,-0.539164,-0.539164 +-0.540144,-0.540144,-0.540144,-0.540144,-0.540144,-0.540144 +-0.541124,-0.541124,-0.541124,-0.541124,-0.541124,-0.541124 +-0.542104,-0.542104,-0.542104,-0.542104,-0.542104,-0.542104 +-0.543084,-0.543084,-0.543084,-0.543084,-0.543084,-0.543084 +-0.544064,-0.544064,-0.544064,-0.544064,-0.544064,-0.544064 +-0.545044,-0.545044,-0.545044,-0.545044,-0.545044,-0.545044 +-0.546024,-0.546024,-0.546024,-0.546024,-0.546024,-0.546024 +-0.547004,-0.547004,-0.547004,-0.547004,-0.547004,-0.547004 +-0.547984,-0.547984,-0.547984,-0.547984,-0.547984,-0.547984 +-0.548964,-0.548964,-0.548964,-0.548964,-0.548964,-0.548964 +-0.549944,-0.549944,-0.549944,-0.549944,-0.549944,-0.549944 +-0.550924,-0.550924,-0.550924,-0.550924,-0.550924,-0.550924 +-0.551904,-0.551904,-0.551904,-0.551904,-0.551904,-0.551904 +-0.552884,-0.552884,-0.552884,-0.552884,-0.552884,-0.552884 +-0.553864,-0.553864,-0.553864,-0.553864,-0.553864,-0.553864 +-0.554844,-0.554844,-0.554844,-0.554844,-0.554844,-0.554844 +-0.555824,-0.555824,-0.555824,-0.555824,-0.555824,-0.555824 +-0.556804,-0.556804,-0.556804,-0.556804,-0.556804,-0.556804 +-0.557784,-0.557784,-0.557784,-0.557784,-0.557784,-0.557784 +-0.558764,-0.558764,-0.558764,-0.558764,-0.558764,-0.558764 +-0.559744,-0.559744,-0.559744,-0.559744,-0.559744,-0.559744 +-0.560724,-0.560724,-0.560724,-0.560724,-0.560724,-0.560724 +-0.561704,-0.561704,-0.561704,-0.561704,-0.561704,-0.561704 +-0.562684,-0.562684,-0.562684,-0.562684,-0.562684,-0.562684 +-0.563664,-0.563664,-0.563664,-0.563664,-0.563664,-0.563664 +-0.564644,-0.564644,-0.564644,-0.564644,-0.564644,-0.564644 +-0.565624,-0.565624,-0.565624,-0.565624,-0.565624,-0.565624 +-0.566604,-0.566604,-0.566604,-0.566604,-0.566604,-0.566604 +-0.567584,-0.567584,-0.567584,-0.567584,-0.567584,-0.567584 +-0.568564,-0.568564,-0.568564,-0.568564,-0.568564,-0.568564 +-0.569544,-0.569544,-0.569544,-0.569544,-0.569544,-0.569544 +-0.570524,-0.570524,-0.570524,-0.570524,-0.570524,-0.570524 +-0.571504,-0.571504,-0.571504,-0.571504,-0.571504,-0.571504 +-0.572484,-0.572484,-0.572484,-0.572484,-0.572484,-0.572484 +-0.573464,-0.573464,-0.573464,-0.573464,-0.573464,-0.573464 +-0.574444,-0.574444,-0.574444,-0.574444,-0.574444,-0.574444 +-0.575424,-0.575424,-0.575424,-0.575424,-0.575424,-0.575424 +-0.576404,-0.576404,-0.576404,-0.576404,-0.576404,-0.576404 +-0.577384,-0.577384,-0.577384,-0.577384,-0.577384,-0.577384 +-0.578364,-0.578364,-0.578364,-0.578364,-0.578364,-0.578364 +-0.579344,-0.579344,-0.579344,-0.579344,-0.579344,-0.579344 +-0.580324,-0.580324,-0.580324,-0.580324,-0.580324,-0.580324 +-0.581304,-0.581304,-0.581304,-0.581304,-0.581304,-0.581304 +-0.582284,-0.582284,-0.582284,-0.582284,-0.582284,-0.582284 +-0.583264,-0.583264,-0.583264,-0.583264,-0.583264,-0.583264 +-0.584244,-0.584244,-0.584244,-0.584244,-0.584244,-0.584244 +-0.585224,-0.585224,-0.585224,-0.585224,-0.585224,-0.585224 +-0.586204,-0.586204,-0.586204,-0.586204,-0.586204,-0.586204 +-0.587184,-0.587184,-0.587184,-0.587184,-0.587184,-0.587184 +-0.588164,-0.588164,-0.588164,-0.588164,-0.588164,-0.588164 +-0.589144,-0.589144,-0.589144,-0.589144,-0.589144,-0.589144 +-0.590124,-0.590124,-0.590124,-0.590124,-0.590124,-0.590124 +-0.591104,-0.591104,-0.591104,-0.591104,-0.591104,-0.591104 +-0.592084,-0.592084,-0.592084,-0.592084,-0.592084,-0.592084 +-0.593064,-0.593064,-0.593064,-0.593064,-0.593064,-0.593064 +-0.594044,-0.594044,-0.594044,-0.594044,-0.594044,-0.594044 +-0.595024,-0.595024,-0.595024,-0.595024,-0.595024,-0.595024 +-0.596004,-0.596004,-0.596004,-0.596004,-0.596004,-0.596004 +-0.596984,-0.596984,-0.596984,-0.596984,-0.596984,-0.596984 +-0.597964,-0.597964,-0.597964,-0.597964,-0.597964,-0.597964 +-0.598944,-0.598944,-0.598944,-0.598944,-0.598944,-0.598944 +-0.599924,-0.599924,-0.599924,-0.599924,-0.599924,-0.599924 +-0.600904,-0.600904,-0.600904,-0.600904,-0.600904,-0.600904 +-0.601884,-0.601884,-0.601884,-0.601884,-0.601884,-0.601884 +-0.602864,-0.602864,-0.602864,-0.602864,-0.602864,-0.602864 +-0.603844,-0.603844,-0.603844,-0.603844,-0.603844,-0.603844 +-0.604824,-0.604824,-0.604824,-0.604824,-0.604824,-0.604824 +-0.605804,-0.605804,-0.605804,-0.605804,-0.605804,-0.605804 +-0.606784,-0.606784,-0.606784,-0.606784,-0.606784,-0.606784 +-0.607764,-0.607764,-0.607764,-0.607764,-0.607764,-0.607764 +-0.608744,-0.608744,-0.608744,-0.608744,-0.608744,-0.608744 +-0.609724,-0.609724,-0.609724,-0.609724,-0.609724,-0.609724 +-0.610704,-0.610704,-0.610704,-0.610704,-0.610704,-0.610704 +-0.611684,-0.611684,-0.611684,-0.611684,-0.611684,-0.611684 +-0.612664,-0.612664,-0.612664,-0.612664,-0.612664,-0.612664 +-0.613644,-0.613644,-0.613644,-0.613644,-0.613644,-0.613644 +-0.614624,-0.614624,-0.614624,-0.614624,-0.614624,-0.614624 +-0.615604,-0.615604,-0.615604,-0.615604,-0.615604,-0.615604 +-0.616584,-0.616584,-0.616584,-0.616584,-0.616584,-0.616584 +-0.617564,-0.617564,-0.617564,-0.617564,-0.617564,-0.617564 +-0.618544,-0.618544,-0.618544,-0.618544,-0.618544,-0.618544 +-0.619524,-0.619524,-0.619524,-0.619524,-0.619524,-0.619524 +-0.620504,-0.620504,-0.620504,-0.620504,-0.620504,-0.620504 +-0.621484,-0.621484,-0.621484,-0.621484,-0.621484,-0.621484 +-0.622464,-0.622464,-0.622464,-0.622464,-0.622464,-0.622464 +-0.623444,-0.623444,-0.623444,-0.623444,-0.623444,-0.623444 +-0.624424,-0.624424,-0.624424,-0.624424,-0.624424,-0.624424 +-0.625404,-0.625404,-0.625404,-0.625404,-0.625404,-0.625404 +-0.626384,-0.626384,-0.626384,-0.626384,-0.626384,-0.626384 +-0.627364,-0.627364,-0.627364,-0.627364,-0.627364,-0.627364 +-0.628344,-0.628344,-0.628344,-0.628344,-0.628344,-0.628344 +-0.629324,-0.629324,-0.629324,-0.629324,-0.629324,-0.629324 +-0.630304,-0.630304,-0.630304,-0.630304,-0.630304,-0.630304 +-0.631284,-0.631284,-0.631284,-0.631284,-0.631284,-0.631284 +-0.632264,-0.632264,-0.632264,-0.632264,-0.632264,-0.632264 +-0.633244,-0.633244,-0.633244,-0.633244,-0.633244,-0.633244 +-0.634224,-0.634224,-0.634224,-0.634224,-0.634224,-0.634224 +-0.635204,-0.635204,-0.635204,-0.635204,-0.635204,-0.635204 +-0.636184,-0.636184,-0.636184,-0.636184,-0.636184,-0.636184 +-0.637164,-0.637164,-0.637164,-0.637164,-0.637164,-0.637164 +-0.638144,-0.638144,-0.638144,-0.638144,-0.638144,-0.638144 +-0.639124,-0.639124,-0.639124,-0.639124,-0.639124,-0.639124 +-0.640104,-0.640104,-0.640104,-0.640104,-0.640104,-0.640104 +-0.641084,-0.641084,-0.641084,-0.641084,-0.641084,-0.641084 +-0.642064,-0.642064,-0.642064,-0.642064,-0.642064,-0.642064 +-0.643044,-0.643044,-0.643044,-0.643044,-0.643044,-0.643044 +-0.644024,-0.644024,-0.644024,-0.644024,-0.644024,-0.644024 +-0.645004,-0.645004,-0.645004,-0.645004,-0.645004,-0.645004 +-0.645984,-0.645984,-0.645984,-0.645984,-0.645984,-0.645984 +-0.646964,-0.646964,-0.646964,-0.646964,-0.646964,-0.646964 +-0.647944,-0.647944,-0.647944,-0.647944,-0.647944,-0.647944 +-0.648924,-0.648924,-0.648924,-0.648924,-0.648924,-0.648924 +-0.649904,-0.649904,-0.649904,-0.649904,-0.649904,-0.649904 +-0.650884,-0.650884,-0.650884,-0.650884,-0.650884,-0.650884 +-0.651864,-0.651864,-0.651864,-0.651864,-0.651864,-0.651864 +-0.652844,-0.652844,-0.652844,-0.652844,-0.652844,-0.652844 +-0.653824,-0.653824,-0.653824,-0.653824,-0.653824,-0.653824 +-0.654804,-0.654804,-0.654804,-0.654804,-0.654804,-0.654804 +-0.655784,-0.655784,-0.655784,-0.655784,-0.655784,-0.655784 +-0.656764,-0.656764,-0.656764,-0.656764,-0.656764,-0.656764 +-0.657744,-0.657744,-0.657744,-0.657744,-0.657744,-0.657744 +-0.658724,-0.658724,-0.658724,-0.658724,-0.658724,-0.658724 +-0.659704,-0.659704,-0.659704,-0.659704,-0.659704,-0.659704 +-0.660684,-0.660684,-0.660684,-0.660684,-0.660684,-0.660684 +-0.661664,-0.661664,-0.661664,-0.661664,-0.661664,-0.661664 +-0.662644,-0.662644,-0.662644,-0.662644,-0.662644,-0.662644 +-0.663624,-0.663624,-0.663624,-0.663624,-0.663624,-0.663624 +-0.664604,-0.664604,-0.664604,-0.664604,-0.664604,-0.664604 +-0.665584,-0.665584,-0.665584,-0.665584,-0.665584,-0.665584 +-0.666564,-0.666564,-0.666564,-0.666564,-0.666564,-0.666564 +-0.667544,-0.667544,-0.667544,-0.667544,-0.667544,-0.667544 +-0.668524,-0.668524,-0.668524,-0.668524,-0.668524,-0.668524 +-0.669504,-0.669504,-0.669504,-0.669504,-0.669504,-0.669504 +-0.670484,-0.670484,-0.670484,-0.670484,-0.670484,-0.670484 +-0.671464,-0.671464,-0.671464,-0.671464,-0.671464,-0.671464 +-0.672444,-0.672444,-0.672444,-0.672444,-0.672444,-0.672444 +-0.673424,-0.673424,-0.673424,-0.673424,-0.673424,-0.673424 +-0.674404,-0.674404,-0.674404,-0.674404,-0.674404,-0.674404 +-0.675384,-0.675384,-0.675384,-0.675384,-0.675384,-0.675384 +-0.676364,-0.676364,-0.676364,-0.676364,-0.676364,-0.676364 +-0.677344,-0.677344,-0.677344,-0.677344,-0.677344,-0.677344 +-0.678324,-0.678324,-0.678324,-0.678324,-0.678324,-0.678324 +-0.679304,-0.679304,-0.679304,-0.679304,-0.679304,-0.679304 +-0.680284,-0.680284,-0.680284,-0.680284,-0.680284,-0.680284 +-0.681264,-0.681264,-0.681264,-0.681264,-0.681264,-0.681264 +-0.682244,-0.682244,-0.682244,-0.682244,-0.682244,-0.682244 +-0.683224,-0.683224,-0.683224,-0.683224,-0.683224,-0.683224 +-0.684204,-0.684204,-0.684204,-0.684204,-0.684204,-0.684204 +-0.685184,-0.685184,-0.685184,-0.685184,-0.685184,-0.685184 +-0.686164,-0.686164,-0.686164,-0.686164,-0.686164,-0.686164 +-0.687144,-0.687144,-0.687144,-0.687144,-0.687144,-0.687144 +-0.688124,-0.688124,-0.688124,-0.688124,-0.688124,-0.688124 +-0.689104,-0.689104,-0.689104,-0.689104,-0.689104,-0.689104 +-0.690084,-0.690084,-0.690084,-0.690084,-0.690084,-0.690084 +-0.691064,-0.691064,-0.691064,-0.691064,-0.691064,-0.691064 +-0.692044,-0.692044,-0.692044,-0.692044,-0.692044,-0.692044 +-0.693024,-0.693024,-0.693024,-0.693024,-0.693024,-0.693024 +-0.694004,-0.694004,-0.694004,-0.694004,-0.694004,-0.694004 +-0.694984,-0.694984,-0.694984,-0.694984,-0.694984,-0.694984 +-0.695964,-0.695964,-0.695964,-0.695964,-0.695964,-0.695964 +-0.696944,-0.696944,-0.696944,-0.696944,-0.696944,-0.696944 +-0.697924,-0.697924,-0.697924,-0.697924,-0.697924,-0.697924 +-0.698904,-0.698904,-0.698904,-0.698904,-0.698904,-0.698904 +-0.699884,-0.699884,-0.699884,-0.699884,-0.699884,-0.699884 +-0.700864,-0.700864,-0.700864,-0.700864,-0.700864,-0.700864 +-0.701844,-0.701844,-0.701844,-0.701844,-0.701844,-0.701844 +-0.702824,-0.702824,-0.702824,-0.702824,-0.702824,-0.702824 +-0.703804,-0.703804,-0.703804,-0.703804,-0.703804,-0.703804 +-0.704784,-0.704784,-0.704784,-0.704784,-0.704784,-0.704784 +-0.705764,-0.705764,-0.705764,-0.705764,-0.705764,-0.705764 +-0.706744,-0.706744,-0.706744,-0.706744,-0.706744,-0.706744 +-0.707724,-0.707724,-0.707724,-0.707724,-0.707724,-0.707724 +-0.708704,-0.708704,-0.708704,-0.708704,-0.708704,-0.708704 +-0.709684,-0.709684,-0.709684,-0.709684,-0.709684,-0.709684 +-0.710664,-0.710664,-0.710664,-0.710664,-0.710664,-0.710664 +-0.711644,-0.711644,-0.711644,-0.711644,-0.711644,-0.711644 +-0.712624,-0.712624,-0.712624,-0.712624,-0.712624,-0.712624 +-0.713604,-0.713604,-0.713604,-0.713604,-0.713604,-0.713604 +-0.714584,-0.714584,-0.714584,-0.714584,-0.714584,-0.714584 +-0.715564,-0.715564,-0.715564,-0.715564,-0.715564,-0.715564 +-0.716544,-0.716544,-0.716544,-0.716544,-0.716544,-0.716544 +-0.717524,-0.717524,-0.717524,-0.717524,-0.717524,-0.717524 +-0.718504,-0.718504,-0.718504,-0.718504,-0.718504,-0.718504 +-0.719484,-0.719484,-0.719484,-0.719484,-0.719484,-0.719484 +-0.720464,-0.720464,-0.720464,-0.720464,-0.720464,-0.720464 +-0.721444,-0.721444,-0.721444,-0.721444,-0.721444,-0.721444 +-0.722424,-0.722424,-0.722424,-0.722424,-0.722424,-0.722424 +-0.723404,-0.723404,-0.723404,-0.723404,-0.723404,-0.723404 +-0.724384,-0.724384,-0.724384,-0.724384,-0.724384,-0.724384 +-0.725364,-0.725364,-0.725364,-0.725364,-0.725364,-0.725364 +-0.726344,-0.726344,-0.726344,-0.726344,-0.726344,-0.726344 +-0.727324,-0.727324,-0.727324,-0.727324,-0.727324,-0.727324 +-0.728304,-0.728304,-0.728304,-0.728304,-0.728304,-0.728304 +-0.729284,-0.729284,-0.729284,-0.729284,-0.729284,-0.729284 +-0.730264,-0.730264,-0.730264,-0.730264,-0.730264,-0.730264 +-0.731244,-0.731244,-0.731244,-0.731244,-0.731244,-0.731244 +-0.732224,-0.732224,-0.732224,-0.732224,-0.732224,-0.732224 +-0.733204,-0.733204,-0.733204,-0.733204,-0.733204,-0.733204 +-0.734184,-0.734184,-0.734184,-0.734184,-0.734184,-0.734184 +-0.735164,-0.735164,-0.735164,-0.735164,-0.735164,-0.735164 +-0.736144,-0.736144,-0.736144,-0.736144,-0.736144,-0.736144 +-0.737124,-0.737124,-0.737124,-0.737124,-0.737124,-0.737124 +-0.738104,-0.738104,-0.738104,-0.738104,-0.738104,-0.738104 +-0.739084,-0.739084,-0.739084,-0.739084,-0.739084,-0.739084 +-0.740064,-0.740064,-0.740064,-0.740064,-0.740064,-0.740064 +-0.741044,-0.741044,-0.741044,-0.741044,-0.741044,-0.741044 +-0.742024,-0.742024,-0.742024,-0.742024,-0.742024,-0.742024 +-0.743004,-0.743004,-0.743004,-0.743004,-0.743004,-0.743004 +-0.743984,-0.743984,-0.743984,-0.743984,-0.743984,-0.743984 +-0.744964,-0.744964,-0.744964,-0.744964,-0.744964,-0.744964 +-0.745944,-0.745944,-0.745944,-0.745944,-0.745944,-0.745944 +-0.746924,-0.746924,-0.746924,-0.746924,-0.746924,-0.746924 +-0.747904,-0.747904,-0.747904,-0.747904,-0.747904,-0.747904 +-0.748884,-0.748884,-0.748884,-0.748884,-0.748884,-0.748884 +-0.749864,-0.749864,-0.749864,-0.749864,-0.749864,-0.749864 +-0.750844,-0.750844,-0.750844,-0.750844,-0.750844,-0.750844 +-0.751824,-0.751824,-0.751824,-0.751824,-0.751824,-0.751824 +-0.752804,-0.752804,-0.752804,-0.752804,-0.752804,-0.752804 +-0.753784,-0.753784,-0.753784,-0.753784,-0.753784,-0.753784 +-0.754764,-0.754764,-0.754764,-0.754764,-0.754764,-0.754764 +-0.755744,-0.755744,-0.755744,-0.755744,-0.755744,-0.755744 +-0.756724,-0.756724,-0.756724,-0.756724,-0.756724,-0.756724 +-0.757704,-0.757704,-0.757704,-0.757704,-0.757704,-0.757704 +-0.758684,-0.758684,-0.758684,-0.758684,-0.758684,-0.758684 +-0.759664,-0.759664,-0.759664,-0.759664,-0.759664,-0.759664 +-0.760644,-0.760644,-0.760644,-0.760644,-0.760644,-0.760644 +-0.761624,-0.761624,-0.761624,-0.761624,-0.761624,-0.761624 +-0.762604,-0.762604,-0.762604,-0.762604,-0.762604,-0.762604 +-0.763584,-0.763584,-0.763584,-0.763584,-0.763584,-0.763584 +-0.764564,-0.764564,-0.764564,-0.764564,-0.764564,-0.764564 +-0.765544,-0.765544,-0.765544,-0.765544,-0.765544,-0.765544 +-0.766524,-0.766524,-0.766524,-0.766524,-0.766524,-0.766524 +-0.767504,-0.767504,-0.767504,-0.767504,-0.767504,-0.767504 +-0.768484,-0.768484,-0.768484,-0.768484,-0.768484,-0.768484 +-0.769464,-0.769464,-0.769464,-0.769464,-0.769464,-0.769464 +-0.770444,-0.770444,-0.770444,-0.770444,-0.770444,-0.770444 +-0.771424,-0.771424,-0.771424,-0.771424,-0.771424,-0.771424 +-0.772404,-0.772404,-0.772404,-0.772404,-0.772404,-0.772404 +-0.773384,-0.773384,-0.773384,-0.773384,-0.773384,-0.773384 +-0.774364,-0.774364,-0.774364,-0.774364,-0.774364,-0.774364 +-0.775344,-0.775344,-0.775344,-0.775344,-0.775344,-0.775344 +-0.776324,-0.776324,-0.776324,-0.776324,-0.776324,-0.776324 +-0.777304,-0.777304,-0.777304,-0.777304,-0.777304,-0.777304 +-0.778284,-0.778284,-0.778284,-0.778284,-0.778284,-0.778284 +-0.779264,-0.779264,-0.779264,-0.779264,-0.779264,-0.779264 +-0.780244,-0.780244,-0.780244,-0.780244,-0.780244,-0.780244 +-0.781224,-0.781224,-0.781224,-0.781224,-0.781224,-0.781224 +-0.782204,-0.782204,-0.782204,-0.782204,-0.782204,-0.782204 +-0.783184,-0.783184,-0.783184,-0.783184,-0.783184,-0.783184 +-0.784164,-0.784164,-0.784164,-0.784164,-0.784164,-0.784164 +-0.785144,-0.785144,-0.785144,-0.785144,-0.785144,-0.785144 +-0.786124,-0.786124,-0.786124,-0.786124,-0.786124,-0.786124 +-0.787104,-0.787104,-0.787104,-0.787104,-0.787104,-0.787104 +-0.788084,-0.788084,-0.788084,-0.788084,-0.788084,-0.788084 +-0.789064,-0.789064,-0.789064,-0.789064,-0.789064,-0.789064 +-0.790044,-0.790044,-0.790044,-0.790044,-0.790044,-0.790044 +-0.791024,-0.791024,-0.791024,-0.791024,-0.791024,-0.791024 +-0.792004,-0.792004,-0.792004,-0.792004,-0.792004,-0.792004 +-0.792984,-0.792984,-0.792984,-0.792984,-0.792984,-0.792984 +-0.793964,-0.793964,-0.793964,-0.793964,-0.793964,-0.793964 +-0.794944,-0.794944,-0.794944,-0.794944,-0.794944,-0.794944 +-0.795924,-0.795924,-0.795924,-0.795924,-0.795924,-0.795924 +-0.796904,-0.796904,-0.796904,-0.796904,-0.796904,-0.796904 +-0.797884,-0.797884,-0.797884,-0.797884,-0.797884,-0.797884 +-0.798864,-0.798864,-0.798864,-0.798864,-0.798864,-0.798864 +-0.799844,-0.799844,-0.799844,-0.799844,-0.799844,-0.799844 +-0.800824,-0.800824,-0.800824,-0.800824,-0.800824,-0.800824 +-0.801804,-0.801804,-0.801804,-0.801804,-0.801804,-0.801804 +-0.802784,-0.802784,-0.802784,-0.802784,-0.802784,-0.802784 +-0.803764,-0.803764,-0.803764,-0.803764,-0.803764,-0.803764 +-0.804744,-0.804744,-0.804744,-0.804744,-0.804744,-0.804744 +-0.805724,-0.805724,-0.805724,-0.805724,-0.805724,-0.805724 +-0.806704,-0.806704,-0.806704,-0.806704,-0.806704,-0.806704 +-0.807684,-0.807684,-0.807684,-0.807684,-0.807684,-0.807684 +-0.808664,-0.808664,-0.808664,-0.808664,-0.808664,-0.808664 +-0.809644,-0.809644,-0.809644,-0.809644,-0.809644,-0.809644 +-0.810624,-0.810624,-0.810624,-0.810624,-0.810624,-0.810624 +-0.811604,-0.811604,-0.811604,-0.811604,-0.811604,-0.811604 +-0.812584,-0.812584,-0.812584,-0.812584,-0.812584,-0.812584 +-0.813564,-0.813564,-0.813564,-0.813564,-0.813564,-0.813564 +-0.814544,-0.814544,-0.814544,-0.814544,-0.814544,-0.814544 +-0.815524,-0.815524,-0.815524,-0.815524,-0.815524,-0.815524 +-0.816504,-0.816504,-0.816504,-0.816504,-0.816504,-0.816504 +-0.817484,-0.817484,-0.817484,-0.817484,-0.817484,-0.817484 +-0.818464,-0.818464,-0.818464,-0.818464,-0.818464,-0.818464 +-0.819444,-0.819444,-0.819444,-0.819444,-0.819444,-0.819444 +-0.820424,-0.820424,-0.820424,-0.820424,-0.820424,-0.820424 +-0.821404,-0.821404,-0.821404,-0.821404,-0.821404,-0.821404 +-0.822384,-0.822384,-0.822384,-0.822384,-0.822384,-0.822384 +-0.823364,-0.823364,-0.823364,-0.823364,-0.823364,-0.823364 +-0.824344,-0.824344,-0.824344,-0.824344,-0.824344,-0.824344 +-0.825324,-0.825324,-0.825324,-0.825324,-0.825324,-0.825324 +-0.826304,-0.826304,-0.826304,-0.826304,-0.826304,-0.826304 +-0.827284,-0.827284,-0.827284,-0.827284,-0.827284,-0.827284 +-0.828264,-0.828264,-0.828264,-0.828264,-0.828264,-0.828264 +-0.829244,-0.829244,-0.829244,-0.829244,-0.829244,-0.829244 +-0.830224,-0.830224,-0.830224,-0.830224,-0.830224,-0.830224 +-0.831204,-0.831204,-0.831204,-0.831204,-0.831204,-0.831204 +-0.832184,-0.832184,-0.832184,-0.832184,-0.832184,-0.832184 +-0.833164,-0.833164,-0.833164,-0.833164,-0.833164,-0.833164 +-0.834144,-0.834144,-0.834144,-0.834144,-0.834144,-0.834144 +-0.835124,-0.835124,-0.835124,-0.835124,-0.835124,-0.835124 +-0.836104,-0.836104,-0.836104,-0.836104,-0.836104,-0.836104 +-0.837084,-0.837084,-0.837084,-0.837084,-0.837084,-0.837084 +-0.838064,-0.838064,-0.838064,-0.838064,-0.838064,-0.838064 +-0.839044,-0.839044,-0.839044,-0.839044,-0.839044,-0.839044 +-0.840024,-0.840024,-0.840024,-0.840024,-0.840024,-0.840024 +-0.841004,-0.841004,-0.841004,-0.841004,-0.841004,-0.841004 +-0.841984,-0.841984,-0.841984,-0.841984,-0.841984,-0.841984 +-0.842964,-0.842964,-0.842964,-0.842964,-0.842964,-0.842964 +-0.843944,-0.843944,-0.843944,-0.843944,-0.843944,-0.843944 +-0.844924,-0.844924,-0.844924,-0.844924,-0.844924,-0.844924 +-0.845904,-0.845904,-0.845904,-0.845904,-0.845904,-0.845904 +-0.846884,-0.846884,-0.846884,-0.846884,-0.846884,-0.846884 +-0.847864,-0.847864,-0.847864,-0.847864,-0.847864,-0.847864 +-0.848844,-0.848844,-0.848844,-0.848844,-0.848844,-0.848844 +-0.849824,-0.849824,-0.849824,-0.849824,-0.849824,-0.849824 +-0.850804,-0.850804,-0.850804,-0.850804,-0.850804,-0.850804 +-0.851784,-0.851784,-0.851784,-0.851784,-0.851784,-0.851784 +-0.852764,-0.852764,-0.852764,-0.852764,-0.852764,-0.852764 +-0.853744,-0.853744,-0.853744,-0.853744,-0.853744,-0.853744 +-0.854724,-0.854724,-0.854724,-0.854724,-0.854724,-0.854724 +-0.855704,-0.855704,-0.855704,-0.855704,-0.855704,-0.855704 +-0.856684,-0.856684,-0.856684,-0.856684,-0.856684,-0.856684 +-0.857664,-0.857664,-0.857664,-0.857664,-0.857664,-0.857664 +-0.858644,-0.858644,-0.858644,-0.858644,-0.858644,-0.858644 +-0.859624,-0.859624,-0.859624,-0.859624,-0.859624,-0.859624 +-0.860604,-0.860604,-0.860604,-0.860604,-0.860604,-0.860604 +-0.861584,-0.861584,-0.861584,-0.861584,-0.861584,-0.861584 +-0.862564,-0.862564,-0.862564,-0.862564,-0.862564,-0.862564 +-0.863544,-0.863544,-0.863544,-0.863544,-0.863544,-0.863544 +-0.864524,-0.864524,-0.864524,-0.864524,-0.864524,-0.864524 +-0.865504,-0.865504,-0.865504,-0.865504,-0.865504,-0.865504 +-0.866484,-0.866484,-0.866484,-0.866484,-0.866484,-0.866484 +-0.867464,-0.867464,-0.867464,-0.867464,-0.867464,-0.867464 +-0.868444,-0.868444,-0.868444,-0.868444,-0.868444,-0.868444 +-0.869424,-0.869424,-0.869424,-0.869424,-0.869424,-0.869424 +-0.870404,-0.870404,-0.870404,-0.870404,-0.870404,-0.870404 +-0.871384,-0.871384,-0.871384,-0.871384,-0.871384,-0.871384 +-0.872364,-0.872364,-0.872364,-0.872364,-0.872364,-0.872364 +-0.873344,-0.873344,-0.873344,-0.873344,-0.873344,-0.873344 +-0.874324,-0.874324,-0.874324,-0.874324,-0.874324,-0.874324 +-0.875304,-0.875304,-0.875304,-0.875304,-0.875304,-0.875304 +-0.876284,-0.876284,-0.876284,-0.876284,-0.876284,-0.876284 +-0.877264,-0.877264,-0.877264,-0.877264,-0.877264,-0.877264 +-0.878244,-0.878244,-0.878244,-0.878244,-0.878244,-0.878244 +-0.879224,-0.879224,-0.879224,-0.879224,-0.879224,-0.879224 +-0.880204,-0.880204,-0.880204,-0.880204,-0.880204,-0.880204 +-0.881184,-0.881184,-0.881184,-0.881184,-0.881184,-0.881184 +-0.882164,-0.882164,-0.882164,-0.882164,-0.882164,-0.882164 +-0.883144,-0.883144,-0.883144,-0.883144,-0.883144,-0.883144 +-0.884124,-0.884124,-0.884124,-0.884124,-0.884124,-0.884124 +-0.885104,-0.885104,-0.885104,-0.885104,-0.885104,-0.885104 +-0.886084,-0.886084,-0.886084,-0.886084,-0.886084,-0.886084 +-0.887064,-0.887064,-0.887064,-0.887064,-0.887064,-0.887064 +-0.888044,-0.888044,-0.888044,-0.888044,-0.888044,-0.888044 +-0.889024,-0.889024,-0.889024,-0.889024,-0.889024,-0.889024 +-0.890004,-0.890004,-0.890004,-0.890004,-0.890004,-0.890004 +-0.890984,-0.890984,-0.890984,-0.890984,-0.890984,-0.890984 +-0.891964,-0.891964,-0.891964,-0.891964,-0.891964,-0.891964 +-0.892944,-0.892944,-0.892944,-0.892944,-0.892944,-0.892944 +-0.893924,-0.893924,-0.893924,-0.893924,-0.893924,-0.893924 +-0.894904,-0.894904,-0.894904,-0.894904,-0.894904,-0.894904 +-0.895884,-0.895884,-0.895884,-0.895884,-0.895884,-0.895884 +-0.896864,-0.896864,-0.896864,-0.896864,-0.896864,-0.896864 +-0.897844,-0.897844,-0.897844,-0.897844,-0.897844,-0.897844 +-0.898824,-0.898824,-0.898824,-0.898824,-0.898824,-0.898824 +-0.899804,-0.899804,-0.899804,-0.899804,-0.899804,-0.899804 +-0.900784,-0.900784,-0.900784,-0.900784,-0.900784,-0.900784 +-0.901764,-0.901764,-0.901764,-0.901764,-0.901764,-0.901764 +-0.902744,-0.902744,-0.902744,-0.902744,-0.902744,-0.902744 +-0.903724,-0.903724,-0.903724,-0.903724,-0.903724,-0.903724 +-0.904704,-0.904704,-0.904704,-0.904704,-0.904704,-0.904704 +-0.905684,-0.905684,-0.905684,-0.905684,-0.905684,-0.905684 +-0.906664,-0.906664,-0.906664,-0.906664,-0.906664,-0.906664 +-0.907644,-0.907644,-0.907644,-0.907644,-0.907644,-0.907644 +-0.908624,-0.908624,-0.908624,-0.908624,-0.908624,-0.908624 +-0.909604,-0.909604,-0.909604,-0.909604,-0.909604,-0.909604 +-0.910584,-0.910584,-0.910584,-0.910584,-0.910584,-0.910584 +-0.911564,-0.911564,-0.911564,-0.911564,-0.911564,-0.911564 +-0.912544,-0.912544,-0.912544,-0.912544,-0.912544,-0.912544 +-0.913524,-0.913524,-0.913524,-0.913524,-0.913524,-0.913524 +-0.914504,-0.914504,-0.914504,-0.914504,-0.914504,-0.914504 +-0.915484,-0.915484,-0.915484,-0.915484,-0.915484,-0.915484 +-0.916464,-0.916464,-0.916464,-0.916464,-0.916464,-0.916464 +-0.917444,-0.917444,-0.917444,-0.917444,-0.917444,-0.917444 +-0.918424,-0.918424,-0.918424,-0.918424,-0.918424,-0.918424 +-0.919404,-0.919404,-0.919404,-0.919404,-0.919404,-0.919404 +-0.920384,-0.920384,-0.920384,-0.920384,-0.920384,-0.920384 +-0.921364,-0.921364,-0.921364,-0.921364,-0.921364,-0.921364 +-0.922344,-0.922344,-0.922344,-0.922344,-0.922344,-0.922344 +-0.923324,-0.923324,-0.923324,-0.923324,-0.923324,-0.923324 +-0.924304,-0.924304,-0.924304,-0.924304,-0.924304,-0.924304 +-0.925284,-0.925284,-0.925284,-0.925284,-0.925284,-0.925284 +-0.926264,-0.926264,-0.926264,-0.926264,-0.926264,-0.926264 +-0.927244,-0.927244,-0.927244,-0.927244,-0.927244,-0.927244 +-0.928224,-0.928224,-0.928224,-0.928224,-0.928224,-0.928224 +-0.929204,-0.929204,-0.929204,-0.929204,-0.929204,-0.929204 +-0.930184,-0.930184,-0.930184,-0.930184,-0.930184,-0.930184 +-0.931164,-0.931164,-0.931164,-0.931164,-0.931164,-0.931164 +-0.932144,-0.932144,-0.932144,-0.932144,-0.932144,-0.932144 +-0.933124,-0.933124,-0.933124,-0.933124,-0.933124,-0.933124 +-0.934104,-0.934104,-0.934104,-0.934104,-0.934104,-0.934104 +-0.935084,-0.935084,-0.935084,-0.935084,-0.935084,-0.935084 +-0.936064,-0.936064,-0.936064,-0.936064,-0.936064,-0.936064 +-0.937044,-0.937044,-0.937044,-0.937044,-0.937044,-0.937044 +-0.938024,-0.938024,-0.938024,-0.938024,-0.938024,-0.938024 +-0.939004,-0.939004,-0.939004,-0.939004,-0.939004,-0.939004 +-0.939984,-0.939984,-0.939984,-0.939984,-0.939984,-0.939984 +-0.940964,-0.940964,-0.940964,-0.940964,-0.940964,-0.940964 +-0.941944,-0.941944,-0.941944,-0.941944,-0.941944,-0.941944 +-0.942924,-0.942924,-0.942924,-0.942924,-0.942924,-0.942924 +-0.943904,-0.943904,-0.943904,-0.943904,-0.943904,-0.943904 +-0.944884,-0.944884,-0.944884,-0.944884,-0.944884,-0.944884 +-0.945864,-0.945864,-0.945864,-0.945864,-0.945864,-0.945864 +-0.946844,-0.946844,-0.946844,-0.946844,-0.946844,-0.946844 +-0.947824,-0.947824,-0.947824,-0.947824,-0.947824,-0.947824 +-0.948804,-0.948804,-0.948804,-0.948804,-0.948804,-0.948804 +-0.949784,-0.949784,-0.949784,-0.949784,-0.949784,-0.949784 +-0.950764,-0.950764,-0.950764,-0.950764,-0.950764,-0.950764 +-0.951744,-0.951744,-0.951744,-0.951744,-0.951744,-0.951744 +-0.952724,-0.952724,-0.952724,-0.952724,-0.952724,-0.952724 +-0.953704,-0.953704,-0.953704,-0.953704,-0.953704,-0.953704 +-0.954684,-0.954684,-0.954684,-0.954684,-0.954684,-0.954684 +-0.955664,-0.955664,-0.955664,-0.955664,-0.955664,-0.955664 +-0.956644,-0.956644,-0.956644,-0.956644,-0.956644,-0.956644 +-0.957624,-0.957624,-0.957624,-0.957624,-0.957624,-0.957624 +-0.958604,-0.958604,-0.958604,-0.958604,-0.958604,-0.958604 +-0.959584,-0.959584,-0.959584,-0.959584,-0.959584,-0.959584 +-0.960564,-0.960564,-0.960564,-0.960564,-0.960564,-0.960564 +-0.961544,-0.961544,-0.961544,-0.961544,-0.961544,-0.961544 +-0.962524,-0.962524,-0.962524,-0.962524,-0.962524,-0.962524 +-0.963504,-0.963504,-0.963504,-0.963504,-0.963504,-0.963504 +-0.964484,-0.964484,-0.964484,-0.964484,-0.964484,-0.964484 +-0.965464,-0.965464,-0.965464,-0.965464,-0.965464,-0.965464 +-0.966444,-0.966444,-0.966444,-0.966444,-0.966444,-0.966444 +-0.967424,-0.967424,-0.967424,-0.967424,-0.967424,-0.967424 +-0.968404,-0.968404,-0.968404,-0.968404,-0.968404,-0.968404 +-0.969384,-0.969384,-0.969384,-0.969384,-0.969384,-0.969384 +-0.970364,-0.970364,-0.970364,-0.970364,-0.970364,-0.970364 +-0.971344,-0.971344,-0.971344,-0.971344,-0.971344,-0.971344 +-0.972324,-0.972324,-0.972324,-0.972324,-0.972324,-0.972324 +-0.973304,-0.973304,-0.973304,-0.973304,-0.973304,-0.973304 +-0.974284,-0.974284,-0.974284,-0.974284,-0.974284,-0.974284 +-0.975264,-0.975264,-0.975264,-0.975264,-0.975264,-0.975264 +-0.976244,-0.976244,-0.976244,-0.976244,-0.976244,-0.976244 +-0.977224,-0.977224,-0.977224,-0.977224,-0.977224,-0.977224 +-0.978204,-0.978204,-0.978204,-0.978204,-0.978204,-0.978204 +-0.979184,-0.979184,-0.979184,-0.979184,-0.979184,-0.979184 +-0.980164,-0.980164,-0.980164,-0.980164,-0.980164,-0.980164 +-0.981144,-0.981144,-0.981144,-0.981144,-0.981144,-0.981144 +-0.982124,-0.982124,-0.982124,-0.982124,-0.982124,-0.982124 +-0.983104,-0.983104,-0.983104,-0.983104,-0.983104,-0.983104 +-0.984084,-0.984084,-0.984084,-0.984084,-0.984084,-0.984084 +-0.985064,-0.985064,-0.985064,-0.985064,-0.985064,-0.985064 +-0.986044,-0.986044,-0.986044,-0.986044,-0.986044,-0.986044 +-0.987024,-0.987024,-0.987024,-0.987024,-0.987024,-0.987024 +-0.988004,-0.988004,-0.988004,-0.988004,-0.988004,-0.988004 +-0.988984,-0.988984,-0.988984,-0.988984,-0.988984,-0.988984 +-0.989964,-0.989964,-0.989964,-0.989964,-0.989964,-0.989964 +-0.990944,-0.990944,-0.990944,-0.990944,-0.990944,-0.990944 +-0.991924,-0.991924,-0.991924,-0.991924,-0.991924,-0.991924 +-0.992904,-0.992904,-0.992904,-0.992904,-0.992904,-0.992904 +-0.993884,-0.993884,-0.993884,-0.993884,-0.993884,-0.993884 +-0.994864,-0.994864,-0.994864,-0.994864,-0.994864,-0.994864 +-0.995844,-0.995844,-0.995844,-0.995844,-0.995844,-0.995844 +-0.996824,-0.996824,-0.996824,-0.996824,-0.996824,-0.996824 +-0.997804,-0.997804,-0.997804,-0.997804,-0.997804,-0.997804 +-0.998784,-0.998784,-0.998784,-0.998784,-0.998784,-0.998784 +-0.999764,-0.999764,-0.999764,-0.999764,-0.999764,-0.999764 +-1.000744,-1.000744,-1.000744,-1.000744,-1.000744,-1.000744 +-1.001724,-1.001724,-1.001724,-1.001724,-1.001724,-1.001724 +-1.002704,-1.002704,-1.002704,-1.002704,-1.002704,-1.002704 +-1.003684,-1.003684,-1.003684,-1.003684,-1.003684,-1.003684 +-1.004664,-1.004664,-1.004664,-1.004664,-1.004664,-1.004664 +-1.005644,-1.005644,-1.005644,-1.005644,-1.005644,-1.005644 +-1.006624,-1.006624,-1.006624,-1.006624,-1.006624,-1.006624 +-1.007604,-1.007604,-1.007604,-1.007604,-1.007604,-1.007604 +-1.008584,-1.008584,-1.008584,-1.008584,-1.008584,-1.008584 +-1.009564,-1.009564,-1.009564,-1.009564,-1.009564,-1.009564 +-1.010544,-1.010544,-1.010544,-1.010544,-1.010544,-1.010544 +-1.011524,-1.011524,-1.011524,-1.011524,-1.011524,-1.011524 +-1.012504,-1.012504,-1.012504,-1.012504,-1.012504,-1.012504 +-1.013484,-1.013484,-1.013484,-1.013484,-1.013484,-1.013484 +-1.014464,-1.014464,-1.014464,-1.014464,-1.014464,-1.014464 +-1.015444,-1.015444,-1.015444,-1.015444,-1.015444,-1.015444 +-1.016424,-1.016424,-1.016424,-1.016424,-1.016424,-1.016424 +-1.017404,-1.017404,-1.017404,-1.017404,-1.017404,-1.017404 +-1.018384,-1.018384,-1.018384,-1.018384,-1.018384,-1.018384 +-1.019364,-1.019364,-1.019364,-1.019364,-1.019364,-1.019364 +-1.020344,-1.020344,-1.020344,-1.020344,-1.020344,-1.020344 +-1.021324,-1.021324,-1.021324,-1.021324,-1.021324,-1.021324 +-1.022304,-1.022304,-1.022304,-1.022304,-1.022304,-1.022304 +-1.023284,-1.023284,-1.023284,-1.023284,-1.023284,-1.023284 +-1.024264,-1.024264,-1.024264,-1.024264,-1.024264,-1.024264 +-1.025244,-1.025244,-1.025244,-1.025244,-1.025244,-1.025244 +-1.026224,-1.026224,-1.026224,-1.026224,-1.026224,-1.026224 +-1.027204,-1.027204,-1.027204,-1.027204,-1.027204,-1.027204 +-1.028184,-1.028184,-1.028184,-1.028184,-1.028184,-1.028184 +-1.029164,-1.029164,-1.029164,-1.029164,-1.029164,-1.029164 +-1.030144,-1.030144,-1.030144,-1.030144,-1.030144,-1.030144 +-1.031124,-1.031124,-1.031124,-1.031124,-1.031124,-1.031124 +-1.032104,-1.032104,-1.032104,-1.032104,-1.032104,-1.032104 +-1.033084,-1.033084,-1.033084,-1.033084,-1.033084,-1.033084 +-1.034064,-1.034064,-1.034064,-1.034064,-1.034064,-1.034064 +-1.035044,-1.035044,-1.035044,-1.035044,-1.035044,-1.035044 +-1.036024,-1.036024,-1.036024,-1.036024,-1.036024,-1.036024 +-1.037004,-1.037004,-1.037004,-1.037004,-1.037004,-1.037004 +-1.037984,-1.037984,-1.037984,-1.037984,-1.037984,-1.037984 +-1.038964,-1.038964,-1.038964,-1.038964,-1.038964,-1.038964 +-1.039944,-1.039944,-1.039944,-1.039944,-1.039944,-1.039944 +-1.040924,-1.040924,-1.040924,-1.040924,-1.040924,-1.040924 +-1.041904,-1.041904,-1.041904,-1.041904,-1.041904,-1.041904 +-1.042884,-1.042884,-1.042884,-1.042884,-1.042884,-1.042884 +-1.043864,-1.043864,-1.043864,-1.043864,-1.043864,-1.043864 +-1.044844,-1.044844,-1.044844,-1.044844,-1.044844,-1.044844 +-1.045824,-1.045824,-1.045824,-1.045824,-1.045824,-1.045824 +-1.046804,-1.046804,-1.046804,-1.046804,-1.046804,-1.046804 +-1.047784,-1.047784,-1.047784,-1.047784,-1.047784,-1.047784 +-1.048764,-1.048764,-1.048764,-1.048764,-1.048764,-1.048764 +-1.049744,-1.049744,-1.049744,-1.049744,-1.049744,-1.049744 +-1.050724,-1.050724,-1.050724,-1.050724,-1.050724,-1.050724 +-1.051704,-1.051704,-1.051704,-1.051704,-1.051704,-1.051704 +-1.052684,-1.052684,-1.052684,-1.052684,-1.052684,-1.052684 +-1.053664,-1.053664,-1.053664,-1.053664,-1.053664,-1.053664 +-1.054644,-1.054644,-1.054644,-1.054644,-1.054644,-1.054644 +-1.055624,-1.055624,-1.055624,-1.055624,-1.055624,-1.055624 +-1.056604,-1.056604,-1.056604,-1.056604,-1.056604,-1.056604 +-1.057584,-1.057584,-1.057584,-1.057584,-1.057584,-1.057584 +-1.058564,-1.058564,-1.058564,-1.058564,-1.058564,-1.058564 +-1.059544,-1.059544,-1.059544,-1.059544,-1.059544,-1.059544 +-1.060524,-1.060524,-1.060524,-1.060524,-1.060524,-1.060524 +-1.061504,-1.061504,-1.061504,-1.061504,-1.061504,-1.061504 +-1.062484,-1.062484,-1.062484,-1.062484,-1.062484,-1.062484 +-1.063464,-1.063464,-1.063464,-1.063464,-1.063464,-1.063464 +-1.064444,-1.064444,-1.064444,-1.064444,-1.064444,-1.064444 +-1.065424,-1.065424,-1.065424,-1.065424,-1.065424,-1.065424 +-1.066404,-1.066404,-1.066404,-1.066404,-1.066404,-1.066404 +-1.067384,-1.067384,-1.067384,-1.067384,-1.067384,-1.067384 +-1.068364,-1.068364,-1.068364,-1.068364,-1.068364,-1.068364 +-1.069344,-1.069344,-1.069344,-1.069344,-1.069344,-1.069344 +-1.070324,-1.070324,-1.070324,-1.070324,-1.070324,-1.070324 +-1.071304,-1.071304,-1.071304,-1.071304,-1.071304,-1.071304 +-1.072284,-1.072284,-1.072284,-1.072284,-1.072284,-1.072284 +-1.073264,-1.073264,-1.073264,-1.073264,-1.073264,-1.073264 +-1.074244,-1.074244,-1.074244,-1.074244,-1.074244,-1.074244 +-1.075224,-1.075224,-1.075224,-1.075224,-1.075224,-1.075224 +-1.076204,-1.076204,-1.076204,-1.076204,-1.076204,-1.076204 +-1.077184,-1.077184,-1.077184,-1.077184,-1.077184,-1.077184 +-1.078164,-1.078164,-1.078164,-1.078164,-1.078164,-1.078164 +-1.079144,-1.079144,-1.079144,-1.079144,-1.079144,-1.079144 +-1.080124,-1.080124,-1.080124,-1.080124,-1.080124,-1.080124 +-1.081104,-1.081104,-1.081104,-1.081104,-1.081104,-1.081104 +-1.082084,-1.082084,-1.082084,-1.082084,-1.082084,-1.082084 +-1.083064,-1.083064,-1.083064,-1.083064,-1.083064,-1.083064 +-1.084044,-1.084044,-1.084044,-1.084044,-1.084044,-1.084044 +-1.085024,-1.085024,-1.085024,-1.085024,-1.085024,-1.085024 +-1.086004,-1.086004,-1.086004,-1.086004,-1.086004,-1.086004 +-1.086984,-1.086984,-1.086984,-1.086984,-1.086984,-1.086984 +-1.087964,-1.087964,-1.087964,-1.087964,-1.087964,-1.087964 +-1.088944,-1.088944,-1.088944,-1.088944,-1.088944,-1.088944 +-1.089924,-1.089924,-1.089924,-1.089924,-1.089924,-1.089924 +-1.090904,-1.090904,-1.090904,-1.090904,-1.090904,-1.090904 +-1.091884,-1.091884,-1.091884,-1.091884,-1.091884,-1.091884 +-1.092864,-1.092864,-1.092864,-1.092864,-1.092864,-1.092864 +-1.093844,-1.093844,-1.093844,-1.093844,-1.093844,-1.093844 +-1.094824,-1.094824,-1.094824,-1.094824,-1.094824,-1.094824 +-1.095804,-1.095804,-1.095804,-1.095804,-1.095804,-1.095804 +-1.096784,-1.096784,-1.096784,-1.096784,-1.096784,-1.096784 +-1.097764,-1.097764,-1.097764,-1.097764,-1.097764,-1.097764 +-1.098744,-1.098744,-1.098744,-1.098744,-1.098744,-1.098744 +-1.099724,-1.099724,-1.099724,-1.099724,-1.099724,-1.099724 +-1.100704,-1.100704,-1.100704,-1.100704,-1.100704,-1.100704 +-1.101684,-1.101684,-1.101684,-1.101684,-1.101684,-1.101684 +-1.102664,-1.102664,-1.102664,-1.102664,-1.102664,-1.102664 +-1.103644,-1.103644,-1.103644,-1.103644,-1.103644,-1.103644 +-1.104624,-1.104624,-1.104624,-1.104624,-1.104624,-1.104624 +-1.105604,-1.105604,-1.105604,-1.105604,-1.105604,-1.105604 +-1.106584,-1.106584,-1.106584,-1.106584,-1.106584,-1.106584 +-1.107564,-1.107564,-1.107564,-1.107564,-1.107564,-1.107564 +-1.108544,-1.108544,-1.108544,-1.108544,-1.108544,-1.108544 +-1.109524,-1.109524,-1.109524,-1.109524,-1.109524,-1.109524 +-1.110504,-1.110504,-1.110504,-1.110504,-1.110504,-1.110504 +-1.111484,-1.111484,-1.111484,-1.111484,-1.111484,-1.111484 +-1.112464,-1.112464,-1.112464,-1.112464,-1.112464,-1.112464 +-1.113444,-1.113444,-1.113444,-1.113444,-1.113444,-1.113444 +-1.114424,-1.114424,-1.114424,-1.114424,-1.114424,-1.114424 +-1.115404,-1.115404,-1.115404,-1.115404,-1.115404,-1.115404 +-1.116384,-1.116384,-1.116384,-1.116384,-1.116384,-1.116384 +-1.117364,-1.117364,-1.117364,-1.117364,-1.117364,-1.117364 +-1.118344,-1.118344,-1.118344,-1.118344,-1.118344,-1.118344 +-1.119324,-1.119324,-1.119324,-1.119324,-1.119324,-1.119324 +-1.120304,-1.120304,-1.120304,-1.120304,-1.120304,-1.120304 +-1.121284,-1.121284,-1.121284,-1.121284,-1.121284,-1.121284 +-1.122264,-1.122264,-1.122264,-1.122264,-1.122264,-1.122264 +-1.123244,-1.123244,-1.123244,-1.123244,-1.123244,-1.123244 +-1.124224,-1.124224,-1.124224,-1.124224,-1.124224,-1.124224 +-1.125204,-1.125204,-1.125204,-1.125204,-1.125204,-1.125204 +-1.126184,-1.126184,-1.126184,-1.126184,-1.126184,-1.126184 +-1.127164,-1.127164,-1.127164,-1.127164,-1.127164,-1.127164 +-1.128144,-1.128144,-1.128144,-1.128144,-1.128144,-1.128144 +-1.129124,-1.129124,-1.129124,-1.129124,-1.129124,-1.129124 +-1.130104,-1.130104,-1.130104,-1.130104,-1.130104,-1.130104 +-1.131084,-1.131084,-1.131084,-1.131084,-1.131084,-1.131084 +-1.132064,-1.132064,-1.132064,-1.132064,-1.132064,-1.132064 +-1.133044,-1.133044,-1.133044,-1.133044,-1.133044,-1.133044 +-1.134024,-1.134024,-1.134024,-1.134024,-1.134024,-1.134024 +-1.135004,-1.135004,-1.135004,-1.135004,-1.135004,-1.135004 +-1.135984,-1.135984,-1.135984,-1.135984,-1.135984,-1.135984 +-1.136964,-1.136964,-1.136964,-1.136964,-1.136964,-1.136964 +-1.137944,-1.137944,-1.137944,-1.137944,-1.137944,-1.137944 +-1.138924,-1.138924,-1.138924,-1.138924,-1.138924,-1.138924 +-1.139904,-1.139904,-1.139904,-1.139904,-1.139904,-1.139904 +-1.140884,-1.140884,-1.140884,-1.140884,-1.140884,-1.140884 +-1.141864,-1.141864,-1.141864,-1.141864,-1.141864,-1.141864 +-1.142844,-1.142844,-1.142844,-1.142844,-1.142844,-1.142844 +-1.143824,-1.143824,-1.143824,-1.143824,-1.143824,-1.143824 +-1.144804,-1.144804,-1.144804,-1.144804,-1.144804,-1.144804 +-1.145784,-1.145784,-1.145784,-1.145784,-1.145784,-1.145784 +-1.146764,-1.146764,-1.146764,-1.146764,-1.146764,-1.146764 +-1.147744,-1.147744,-1.147744,-1.147744,-1.147744,-1.147744 +-1.148724,-1.148724,-1.148724,-1.148724,-1.148724,-1.148724 +-1.149704,-1.149704,-1.149704,-1.149704,-1.149704,-1.149704 +-1.150684,-1.150684,-1.150684,-1.150684,-1.150684,-1.150684 +-1.151664,-1.151664,-1.151664,-1.151664,-1.151664,-1.151664 +-1.152644,-1.152644,-1.152644,-1.152644,-1.152644,-1.152644 +-1.153624,-1.153624,-1.153624,-1.153624,-1.153624,-1.153624 +-1.154604,-1.154604,-1.154604,-1.154604,-1.154604,-1.154604 +-1.155584,-1.155584,-1.155584,-1.155584,-1.155584,-1.155584 +-1.156564,-1.156564,-1.156564,-1.156564,-1.156564,-1.156564 +-1.157544,-1.157544,-1.157544,-1.157544,-1.157544,-1.157544 +-1.158524,-1.158524,-1.158524,-1.158524,-1.158524,-1.158524 +-1.159504,-1.159504,-1.159504,-1.159504,-1.159504,-1.159504 +-1.160484,-1.160484,-1.160484,-1.160484,-1.160484,-1.160484 +-1.161464,-1.161464,-1.161464,-1.161464,-1.161464,-1.161464 +-1.162444,-1.162444,-1.162444,-1.162444,-1.162444,-1.162444 +-1.163424,-1.163424,-1.163424,-1.163424,-1.163424,-1.163424 +-1.164404,-1.164404,-1.164404,-1.164404,-1.164404,-1.164404 +-1.165384,-1.165384,-1.165384,-1.165384,-1.165384,-1.165384 +-1.166364,-1.166364,-1.166364,-1.166364,-1.166364,-1.166364 +-1.167344,-1.167344,-1.167344,-1.167344,-1.167344,-1.167344 +-1.168324,-1.168324,-1.168324,-1.168324,-1.168324,-1.168324 +-1.169304,-1.169304,-1.169304,-1.169304,-1.169304,-1.169304 +-1.170284,-1.170284,-1.170284,-1.170284,-1.170284,-1.170284 +-1.171264,-1.171264,-1.171264,-1.171264,-1.171264,-1.171264 +-1.172244,-1.172244,-1.172244,-1.172244,-1.172244,-1.172244 +-1.173224,-1.173224,-1.173224,-1.173224,-1.173224,-1.173224 +-1.174204,-1.174204,-1.174204,-1.174204,-1.174204,-1.174204 +-1.175184,-1.175184,-1.175184,-1.175184,-1.175184,-1.175184 +-1.176164,-1.176164,-1.176164,-1.176164,-1.176164,-1.176164 +-1.177144,-1.177144,-1.177144,-1.177144,-1.177144,-1.177144 +-1.178124,-1.178124,-1.178124,-1.178124,-1.178124,-1.178124 +-1.179104,-1.179104,-1.179104,-1.179104,-1.179104,-1.179104 +-1.180084,-1.180084,-1.180084,-1.180084,-1.180084,-1.180084 +-1.181064,-1.181064,-1.181064,-1.181064,-1.181064,-1.181064 +-1.182044,-1.182044,-1.182044,-1.182044,-1.182044,-1.182044 +-1.183024,-1.183024,-1.183024,-1.183024,-1.183024,-1.183024 +-1.184004,-1.184004,-1.184004,-1.184004,-1.184004,-1.184004 +-1.184984,-1.184984,-1.184984,-1.184984,-1.184984,-1.184984 +-1.185964,-1.185964,-1.185964,-1.185964,-1.185964,-1.185964 +-1.186944,-1.186944,-1.186944,-1.186944,-1.186944,-1.186944 +-1.187924,-1.187924,-1.187924,-1.187924,-1.187924,-1.187924 +-1.188904,-1.188904,-1.188904,-1.188904,-1.188904,-1.188904 +-1.189884,-1.189884,-1.189884,-1.189884,-1.189884,-1.189884 +-1.190864,-1.190864,-1.190864,-1.190864,-1.190864,-1.190864 +-1.191844,-1.191844,-1.191844,-1.191844,-1.191844,-1.191844 +-1.192824,-1.192824,-1.192824,-1.192824,-1.192824,-1.192824 +-1.193804,-1.193804,-1.193804,-1.193804,-1.193804,-1.193804 +-1.194784,-1.194784,-1.194784,-1.194784,-1.194784,-1.194784 +-1.195764,-1.195764,-1.195764,-1.195764,-1.195764,-1.195764 +-1.196744,-1.196744,-1.196744,-1.196744,-1.196744,-1.196744 +-1.197724,-1.197724,-1.197724,-1.197724,-1.197724,-1.197724 +-1.198704,-1.198704,-1.198704,-1.198704,-1.198704,-1.198704 +-1.199684,-1.199684,-1.199684,-1.199684,-1.199684,-1.199684 +-1.200664,-1.200664,-1.200664,-1.200664,-1.200664,-1.200664 +-1.201644,-1.201644,-1.201644,-1.201644,-1.201644,-1.201644 +-1.202624,-1.202624,-1.202624,-1.202624,-1.202624,-1.202624 +-1.203604,-1.203604,-1.203604,-1.203604,-1.203604,-1.203604 +-1.204584,-1.204584,-1.204584,-1.204584,-1.204584,-1.204584 +-1.205564,-1.205564,-1.205564,-1.205564,-1.205564,-1.205564 +-1.206544,-1.206544,-1.206544,-1.206544,-1.206544,-1.206544 +-1.207524,-1.207524,-1.207524,-1.207524,-1.207524,-1.207524 +-1.208504,-1.208504,-1.208504,-1.208504,-1.208504,-1.208504 +-1.209484,-1.209484,-1.209484,-1.209484,-1.209484,-1.209484 +-1.210464,-1.210464,-1.210464,-1.210464,-1.210464,-1.210464 +-1.211444,-1.211444,-1.211444,-1.211444,-1.211444,-1.211444 +-1.212424,-1.212424,-1.212424,-1.212424,-1.212424,-1.212424 +-1.213404,-1.213404,-1.213404,-1.213404,-1.213404,-1.213404 +-1.214384,-1.214384,-1.214384,-1.214384,-1.214384,-1.214384 +-1.215364,-1.215364,-1.215364,-1.215364,-1.215364,-1.215364 +-1.216344,-1.216344,-1.216344,-1.216344,-1.216344,-1.216344 +-1.217324,-1.217324,-1.217324,-1.217324,-1.217324,-1.217324 +-1.218304,-1.218304,-1.218304,-1.218304,-1.218304,-1.218304 +-1.219284,-1.219284,-1.219284,-1.219284,-1.219284,-1.219284 +-1.220264,-1.220264,-1.220264,-1.220264,-1.220264,-1.220264 +-1.221244,-1.221244,-1.221244,-1.221244,-1.221244,-1.221244 +-1.222224,-1.222224,-1.222224,-1.222224,-1.222224,-1.222224 +-1.223204,-1.223204,-1.223204,-1.223204,-1.223204,-1.223204 +-1.224184,-1.224184,-1.224184,-1.224184,-1.224184,-1.224184 +-1.225164,-1.225164,-1.225164,-1.225164,-1.225164,-1.225164 +-1.226144,-1.226144,-1.226144,-1.226144,-1.226144,-1.226144 +-1.227124,-1.227124,-1.227124,-1.227124,-1.227124,-1.227124 +-1.228104,-1.228104,-1.228104,-1.228104,-1.228104,-1.228104 +-1.229084,-1.229084,-1.229084,-1.229084,-1.229084,-1.229084 +-1.230064,-1.230064,-1.230064,-1.230064,-1.230064,-1.230064 +-1.231044,-1.231044,-1.231044,-1.231044,-1.231044,-1.231044 +-1.232024,-1.232024,-1.232024,-1.232024,-1.232024,-1.232024 +-1.233004,-1.233004,-1.233004,-1.233004,-1.233004,-1.233004 +-1.233984,-1.233984,-1.233984,-1.233984,-1.233984,-1.233984 +-1.234964,-1.234964,-1.234964,-1.234964,-1.234964,-1.234964 +-1.235944,-1.235944,-1.235944,-1.235944,-1.235944,-1.235944 +-1.236924,-1.236924,-1.236924,-1.236924,-1.236924,-1.236924 +-1.237904,-1.237904,-1.237904,-1.237904,-1.237904,-1.237904 +-1.238884,-1.238884,-1.238884,-1.238884,-1.238884,-1.238884 +-1.239864,-1.239864,-1.239864,-1.239864,-1.239864,-1.239864 +-1.240844,-1.240844,-1.240844,-1.240844,-1.240844,-1.240844 +-1.241824,-1.241824,-1.241824,-1.241824,-1.241824,-1.241824 +-1.242804,-1.242804,-1.242804,-1.242804,-1.242804,-1.242804 +-1.243784,-1.243784,-1.243784,-1.243784,-1.243784,-1.243784 +-1.244764,-1.244764,-1.244764,-1.244764,-1.244764,-1.244764 +-1.245744,-1.245744,-1.245744,-1.245744,-1.245744,-1.245744 +-1.246724,-1.246724,-1.246724,-1.246724,-1.246724,-1.246724 +-1.247704,-1.247704,-1.247704,-1.247704,-1.247704,-1.247704 +-1.248684,-1.248684,-1.248684,-1.248684,-1.248684,-1.248684 +-1.249664,-1.249664,-1.249664,-1.249664,-1.249664,-1.249664 +-1.250644,-1.250644,-1.250644,-1.250644,-1.250644,-1.250644 +-1.251624,-1.251624,-1.251624,-1.251624,-1.251624,-1.251624 +-1.252604,-1.252604,-1.252604,-1.252604,-1.252604,-1.252604 +-1.253584,-1.253584,-1.253584,-1.253584,-1.253584,-1.253584 +-1.254564,-1.254564,-1.254564,-1.254564,-1.254564,-1.254564 +-1.255544,-1.255544,-1.255544,-1.255544,-1.255544,-1.255544 +-1.256524,-1.256524,-1.256524,-1.256524,-1.256524,-1.256524 +-1.257504,-1.257504,-1.257504,-1.257504,-1.257504,-1.257504 +-1.258484,-1.258484,-1.258484,-1.258484,-1.258484,-1.258484 +-1.259464,-1.259464,-1.259464,-1.259464,-1.259464,-1.259464 +-1.260444,-1.260444,-1.260444,-1.260444,-1.260444,-1.260444 +-1.261424,-1.261424,-1.261424,-1.261424,-1.261424,-1.261424 +-1.262404,-1.262404,-1.262404,-1.262404,-1.262404,-1.262404 +-1.263384,-1.263384,-1.263384,-1.263384,-1.263384,-1.263384 +-1.264364,-1.264364,-1.264364,-1.264364,-1.264364,-1.264364 +-1.265344,-1.265344,-1.265344,-1.265344,-1.265344,-1.265344 +-1.266324,-1.266324,-1.266324,-1.266324,-1.266324,-1.266324 +-1.267304,-1.267304,-1.267304,-1.267304,-1.267304,-1.267304 +-1.268284,-1.268284,-1.268284,-1.268284,-1.268284,-1.268284 +-1.269264,-1.269264,-1.269264,-1.269264,-1.269264,-1.269264 +-1.270244,-1.270244,-1.270244,-1.270244,-1.270244,-1.270244 +-1.271224,-1.271224,-1.271224,-1.271224,-1.271224,-1.271224 +-1.272204,-1.272204,-1.272204,-1.272204,-1.272204,-1.272204 +-1.273184,-1.273184,-1.273184,-1.273184,-1.273184,-1.273184 +-1.274164,-1.274164,-1.274164,-1.274164,-1.274164,-1.274164 +-1.275144,-1.275144,-1.275144,-1.275144,-1.275144,-1.275144 +-1.276124,-1.276124,-1.276124,-1.276124,-1.276124,-1.276124 +-1.277104,-1.277104,-1.277104,-1.277104,-1.277104,-1.277104 +-1.278084,-1.278084,-1.278084,-1.278084,-1.278084,-1.278084 +-1.279064,-1.279064,-1.279064,-1.279064,-1.279064,-1.279064 +-1.280044,-1.280044,-1.280044,-1.280044,-1.280044,-1.280044 +-1.281024,-1.281024,-1.281024,-1.281024,-1.281024,-1.281024 +-1.282004,-1.282004,-1.282004,-1.282004,-1.282004,-1.282004 +-1.282984,-1.282984,-1.282984,-1.282984,-1.282984,-1.282984 +-1.283964,-1.283964,-1.283964,-1.283964,-1.283964,-1.283964 +-1.284944,-1.284944,-1.284944,-1.284944,-1.284944,-1.284944 +-1.285924,-1.285924,-1.285924,-1.285924,-1.285924,-1.285924 +-1.286904,-1.286904,-1.286904,-1.286904,-1.286904,-1.286904 +-1.287884,-1.287884,-1.287884,-1.287884,-1.287884,-1.287884 +-1.288864,-1.288864,-1.288864,-1.288864,-1.288864,-1.288864 +-1.289844,-1.289844,-1.289844,-1.289844,-1.289844,-1.289844 +-1.290824,-1.290824,-1.290824,-1.290824,-1.290824,-1.290824 +-1.291804,-1.291804,-1.291804,-1.291804,-1.291804,-1.291804 +-1.292784,-1.292784,-1.292784,-1.292784,-1.292784,-1.292784 +-1.293764,-1.293764,-1.293764,-1.293764,-1.293764,-1.293764 +-1.294744,-1.294744,-1.294744,-1.294744,-1.294744,-1.294744 +-1.295724,-1.295724,-1.295724,-1.295724,-1.295724,-1.295724 +-1.296704,-1.296704,-1.296704,-1.296704,-1.296704,-1.296704 +-1.297684,-1.297684,-1.297684,-1.297684,-1.297684,-1.297684 +-1.298664,-1.298664,-1.298664,-1.298664,-1.298664,-1.298664 +-1.299644,-1.299644,-1.299644,-1.299644,-1.299644,-1.299644 +-1.300624,-1.300624,-1.300624,-1.300624,-1.300624,-1.300624 +-1.301604,-1.301604,-1.301604,-1.301604,-1.301604,-1.301604 +-1.302584,-1.302584,-1.302584,-1.302584,-1.302584,-1.302584 +-1.303564,-1.303564,-1.303564,-1.303564,-1.303564,-1.303564 +-1.304544,-1.304544,-1.304544,-1.304544,-1.304544,-1.304544 +-1.305524,-1.305524,-1.305524,-1.305524,-1.305524,-1.305524 +-1.306504,-1.306504,-1.306504,-1.306504,-1.306504,-1.306504 +-1.307484,-1.307484,-1.307484,-1.307484,-1.307484,-1.307484 +-1.308464,-1.308464,-1.308464,-1.308464,-1.308464,-1.308464 +-1.309444,-1.309444,-1.309444,-1.309444,-1.309444,-1.309444 +-1.310424,-1.310424,-1.310424,-1.310424,-1.310424,-1.310424 +-1.311404,-1.311404,-1.311404,-1.311404,-1.311404,-1.311404 +-1.312384,-1.312384,-1.312384,-1.312384,-1.312384,-1.312384 +-1.313364,-1.313364,-1.313364,-1.313364,-1.313364,-1.313364 +-1.314344,-1.314344,-1.314344,-1.314344,-1.314344,-1.314344 +-1.315324,-1.315324,-1.315324,-1.315324,-1.315324,-1.315324 +-1.316304,-1.316304,-1.316304,-1.316304,-1.316304,-1.316304 +-1.317284,-1.317284,-1.317284,-1.317284,-1.317284,-1.317284 +-1.318264,-1.318264,-1.318264,-1.318264,-1.318264,-1.318264 +-1.319244,-1.319244,-1.319244,-1.319244,-1.319244,-1.319244 +-1.320224,-1.320224,-1.320224,-1.320224,-1.320224,-1.320224 +-1.321204,-1.321204,-1.321204,-1.321204,-1.321204,-1.321204 +-1.322184,-1.322184,-1.322184,-1.322184,-1.322184,-1.322184 +-1.323164,-1.323164,-1.323164,-1.323164,-1.323164,-1.323164 +-1.324144,-1.324144,-1.324144,-1.324144,-1.324144,-1.324144 +-1.325124,-1.325124,-1.325124,-1.325124,-1.325124,-1.325124 +-1.326104,-1.326104,-1.326104,-1.326104,-1.326104,-1.326104 +-1.327084,-1.327084,-1.327084,-1.327084,-1.327084,-1.327084 +-1.328064,-1.328064,-1.328064,-1.328064,-1.328064,-1.328064 +-1.329044,-1.329044,-1.329044,-1.329044,-1.329044,-1.329044 +-1.330024,-1.330024,-1.330024,-1.330024,-1.330024,-1.330024 +-1.331004,-1.331004,-1.331004,-1.331004,-1.331004,-1.331004 +-1.331984,-1.331984,-1.331984,-1.331984,-1.331984,-1.331984 +-1.332964,-1.332964,-1.332964,-1.332964,-1.332964,-1.332964 +-1.333944,-1.333944,-1.333944,-1.333944,-1.333944,-1.333944 +-1.334924,-1.334924,-1.334924,-1.334924,-1.334924,-1.334924 +-1.335904,-1.335904,-1.335904,-1.335904,-1.335904,-1.335904 +-1.336884,-1.336884,-1.336884,-1.336884,-1.336884,-1.336884 +-1.337864,-1.337864,-1.337864,-1.337864,-1.337864,-1.337864 +-1.338844,-1.338844,-1.338844,-1.338844,-1.338844,-1.338844 +-1.339824,-1.339824,-1.339824,-1.339824,-1.339824,-1.339824 +-1.340804,-1.340804,-1.340804,-1.340804,-1.340804,-1.340804 +-1.341784,-1.341784,-1.341784,-1.341784,-1.341784,-1.341784 +-1.342764,-1.342764,-1.342764,-1.342764,-1.342764,-1.342764 +-1.343744,-1.343744,-1.343744,-1.343744,-1.343744,-1.343744 +-1.344724,-1.344724,-1.344724,-1.344724,-1.344724,-1.344724 +-1.345704,-1.345704,-1.345704,-1.345704,-1.345704,-1.345704 +-1.346684,-1.346684,-1.346684,-1.346684,-1.346684,-1.346684 +-1.347664,-1.347664,-1.347664,-1.347664,-1.347664,-1.347664 +-1.348644,-1.348644,-1.348644,-1.348644,-1.348644,-1.348644 +-1.349624,-1.349624,-1.349624,-1.349624,-1.349624,-1.349624 +-1.350604,-1.350604,-1.350604,-1.350604,-1.350604,-1.350604 +-1.351584,-1.351584,-1.351584,-1.351584,-1.351584,-1.351584 +-1.352564,-1.352564,-1.352564,-1.352564,-1.352564,-1.352564 +-1.353544,-1.353544,-1.353544,-1.353544,-1.353544,-1.353544 +-1.354524,-1.354524,-1.354524,-1.354524,-1.354524,-1.354524 +-1.355504,-1.355504,-1.355504,-1.355504,-1.355504,-1.355504 +-1.356484,-1.356484,-1.356484,-1.356484,-1.356484,-1.356484 +-1.357464,-1.357464,-1.357464,-1.357464,-1.357464,-1.357464 +-1.358444,-1.358444,-1.358444,-1.358444,-1.358444,-1.358444 +-1.359424,-1.359424,-1.359424,-1.359424,-1.359424,-1.359424 +-1.360404,-1.360404,-1.360404,-1.360404,-1.360404,-1.360404 +-1.361384,-1.361384,-1.361384,-1.361384,-1.361384,-1.361384 +-1.362364,-1.362364,-1.362364,-1.362364,-1.362364,-1.362364 +-1.363344,-1.363344,-1.363344,-1.363344,-1.363344,-1.363344 +-1.364324,-1.364324,-1.364324,-1.364324,-1.364324,-1.364324 +-1.365304,-1.365304,-1.365304,-1.365304,-1.365304,-1.365304 +-1.366284,-1.366284,-1.366284,-1.366284,-1.366284,-1.366284 +-1.367264,-1.367264,-1.367264,-1.367264,-1.367264,-1.367264 +-1.368244,-1.368244,-1.368244,-1.368244,-1.368244,-1.368244 +-1.369224,-1.369224,-1.369224,-1.369224,-1.369224,-1.369224 +-1.370204,-1.370204,-1.370204,-1.370204,-1.370204,-1.370204 +-1.371184,-1.371184,-1.371184,-1.371184,-1.371184,-1.371184 +-1.372164,-1.372164,-1.372164,-1.372164,-1.372164,-1.372164 +-1.373144,-1.373144,-1.373144,-1.373144,-1.373144,-1.373144 +-1.374124,-1.374124,-1.374124,-1.374124,-1.374124,-1.374124 +-1.375104,-1.375104,-1.375104,-1.375104,-1.375104,-1.375104 +-1.376084,-1.376084,-1.376084,-1.376084,-1.376084,-1.376084 +-1.377064,-1.377064,-1.377064,-1.377064,-1.377064,-1.377064 +-1.378044,-1.378044,-1.378044,-1.378044,-1.378044,-1.378044 +-1.379024,-1.379024,-1.379024,-1.379024,-1.379024,-1.379024 +-1.380004,-1.380004,-1.380004,-1.380004,-1.380004,-1.380004 +-1.380984,-1.380984,-1.380984,-1.380984,-1.380984,-1.380984 +-1.381964,-1.381964,-1.381964,-1.381964,-1.381964,-1.381964 +-1.382944,-1.382944,-1.382944,-1.382944,-1.382944,-1.382944 +-1.383924,-1.383924,-1.383924,-1.383924,-1.383924,-1.383924 +-1.384904,-1.384904,-1.384904,-1.384904,-1.384904,-1.384904 +-1.385884,-1.385884,-1.385884,-1.385884,-1.385884,-1.385884 +-1.386864,-1.386864,-1.386864,-1.386864,-1.386864,-1.386864 +-1.387844,-1.387844,-1.387844,-1.387844,-1.387844,-1.387844 +-1.388824,-1.388824,-1.388824,-1.388824,-1.388824,-1.388824 +-1.389804,-1.389804,-1.389804,-1.389804,-1.389804,-1.389804 +-1.390784,-1.390784,-1.390784,-1.390784,-1.390784,-1.390784 +-1.391764,-1.391764,-1.391764,-1.391764,-1.391764,-1.391764 +-1.392744,-1.392744,-1.392744,-1.392744,-1.392744,-1.392744 +-1.393724,-1.393724,-1.393724,-1.393724,-1.393724,-1.393724 +-1.394704,-1.394704,-1.394704,-1.394704,-1.394704,-1.394704 +-1.395684,-1.395684,-1.395684,-1.395684,-1.395684,-1.395684 +-1.396664,-1.396664,-1.396664,-1.396664,-1.396664,-1.396664 +-1.397644,-1.397644,-1.397644,-1.397644,-1.397644,-1.397644 +-1.398624,-1.398624,-1.398624,-1.398624,-1.398624,-1.398624 +-1.399604,-1.399604,-1.399604,-1.399604,-1.399604,-1.399604 +-1.400584,-1.400584,-1.400584,-1.400584,-1.400584,-1.400584 +-1.401564,-1.401564,-1.401564,-1.401564,-1.401564,-1.401564 +-1.402544,-1.402544,-1.402544,-1.402544,-1.402544,-1.402544 +-1.403524,-1.403524,-1.403524,-1.403524,-1.403524,-1.403524 +-1.404504,-1.404504,-1.404504,-1.404504,-1.404504,-1.404504 +-1.405484,-1.405484,-1.405484,-1.405484,-1.405484,-1.405484 +-1.406464,-1.406464,-1.406464,-1.406464,-1.406464,-1.406464 +-1.407444,-1.407444,-1.407444,-1.407444,-1.407444,-1.407444 +-1.408424,-1.408424,-1.408424,-1.408424,-1.408424,-1.408424 +-1.409404,-1.409404,-1.409404,-1.409404,-1.409404,-1.409404 +-1.410384,-1.410384,-1.410384,-1.410384,-1.410384,-1.410384 +-1.411364,-1.411364,-1.411364,-1.411364,-1.411364,-1.411364 +-1.412344,-1.412344,-1.412344,-1.412344,-1.412344,-1.412344 +-1.413324,-1.413324,-1.413324,-1.413324,-1.413324,-1.413324 +-1.414304,-1.414304,-1.414304,-1.414304,-1.414304,-1.414304 +-1.415284,-1.415284,-1.415284,-1.415284,-1.415284,-1.415284 +-1.416264,-1.416264,-1.416264,-1.416264,-1.416264,-1.416264 +-1.417244,-1.417244,-1.417244,-1.417244,-1.417244,-1.417244 +-1.418224,-1.418224,-1.418224,-1.418224,-1.418224,-1.418224 +-1.419204,-1.419204,-1.419204,-1.419204,-1.419204,-1.419204 +-1.420184,-1.420184,-1.420184,-1.420184,-1.420184,-1.420184 +-1.421164,-1.421164,-1.421164,-1.421164,-1.421164,-1.421164 +-1.422144,-1.422144,-1.422144,-1.422144,-1.422144,-1.422144 +-1.423124,-1.423124,-1.423124,-1.423124,-1.423124,-1.423124 +-1.424104,-1.424104,-1.424104,-1.424104,-1.424104,-1.424104 +-1.425084,-1.425084,-1.425084,-1.425084,-1.425084,-1.425084 +-1.426064,-1.426064,-1.426064,-1.426064,-1.426064,-1.426064 +-1.427044,-1.427044,-1.427044,-1.427044,-1.427044,-1.427044 +-1.428024,-1.428024,-1.428024,-1.428024,-1.428024,-1.428024 +-1.429004,-1.429004,-1.429004,-1.429004,-1.429004,-1.429004 +-1.429984,-1.429984,-1.429984,-1.429984,-1.429984,-1.429984 +-1.430964,-1.430964,-1.430964,-1.430964,-1.430964,-1.430964 +-1.431944,-1.431944,-1.431944,-1.431944,-1.431944,-1.431944 +-1.432924,-1.432924,-1.432924,-1.432924,-1.432924,-1.432924 +-1.433904,-1.433904,-1.433904,-1.433904,-1.433904,-1.433904 +-1.434884,-1.434884,-1.434884,-1.434884,-1.434884,-1.434884 +-1.435864,-1.435864,-1.435864,-1.435864,-1.435864,-1.435864 +-1.436844,-1.436844,-1.436844,-1.436844,-1.436844,-1.436844 +-1.437824,-1.437824,-1.437824,-1.437824,-1.437824,-1.437824 +-1.438804,-1.438804,-1.438804,-1.438804,-1.438804,-1.438804 +-1.439784,-1.439784,-1.439784,-1.439784,-1.439784,-1.439784 +-1.440764,-1.440764,-1.440764,-1.440764,-1.440764,-1.440764 +-1.441744,-1.441744,-1.441744,-1.441744,-1.441744,-1.441744 +-1.442724,-1.442724,-1.442724,-1.442724,-1.442724,-1.442724 +-1.443704,-1.443704,-1.443704,-1.443704,-1.443704,-1.443704 +-1.444684,-1.444684,-1.444684,-1.444684,-1.444684,-1.444684 +-1.445664,-1.445664,-1.445664,-1.445664,-1.445664,-1.445664 +-1.446644,-1.446644,-1.446644,-1.446644,-1.446644,-1.446644 +-1.447624,-1.447624,-1.447624,-1.447624,-1.447624,-1.447624 +-1.448604,-1.448604,-1.448604,-1.448604,-1.448604,-1.448604 +-1.449584,-1.449584,-1.449584,-1.449584,-1.449584,-1.449584 +-1.450564,-1.450564,-1.450564,-1.450564,-1.450564,-1.450564 +-1.451544,-1.451544,-1.451544,-1.451544,-1.451544,-1.451544 +-1.452524,-1.452524,-1.452524,-1.452524,-1.452524,-1.452524 +-1.453504,-1.453504,-1.453504,-1.453504,-1.453504,-1.453504 +-1.454484,-1.454484,-1.454484,-1.454484,-1.454484,-1.454484 +-1.455464,-1.455464,-1.455464,-1.455464,-1.455464,-1.455464 +-1.456444,-1.456444,-1.456444,-1.456444,-1.456444,-1.456444 +-1.457424,-1.457424,-1.457424,-1.457424,-1.457424,-1.457424 +-1.458404,-1.458404,-1.458404,-1.458404,-1.458404,-1.458404 +-1.459384,-1.459384,-1.459384,-1.459384,-1.459384,-1.459384 +-1.460364,-1.460364,-1.460364,-1.460364,-1.460364,-1.460364 +-1.461344,-1.461344,-1.461344,-1.461344,-1.461344,-1.461344 +-1.462324,-1.462324,-1.462324,-1.462324,-1.462324,-1.462324 +-1.463304,-1.463304,-1.463304,-1.463304,-1.463304,-1.463304 +-1.464284,-1.464284,-1.464284,-1.464284,-1.464284,-1.464284 +-1.465264,-1.465264,-1.465264,-1.465264,-1.465264,-1.465264 +-1.466244,-1.466244,-1.466244,-1.466244,-1.466244,-1.466244 +-1.467224,-1.467224,-1.467224,-1.467224,-1.467224,-1.467224 +-1.468204,-1.468204,-1.468204,-1.468204,-1.468204,-1.468204 +-1.469184,-1.469184,-1.469184,-1.469184,-1.469184,-1.469184 +-1.470164,-1.470164,-1.470164,-1.470164,-1.470164,-1.470164 +-1.471144,-1.471144,-1.471144,-1.471144,-1.471144,-1.471144 +-1.472124,-1.472124,-1.472124,-1.472124,-1.472124,-1.472124 +-1.473104,-1.473104,-1.473104,-1.473104,-1.473104,-1.473104 +-1.474084,-1.474084,-1.474084,-1.474084,-1.474084,-1.474084 +-1.475064,-1.475064,-1.475064,-1.475064,-1.475064,-1.475064 +-1.476044,-1.476044,-1.476044,-1.476044,-1.476044,-1.476044 +-1.477024,-1.477024,-1.477024,-1.477024,-1.477024,-1.477024 +-1.478004,-1.478004,-1.478004,-1.478004,-1.478004,-1.478004 +-1.478984,-1.478984,-1.478984,-1.478984,-1.478984,-1.478984 +-1.479964,-1.479964,-1.479964,-1.479964,-1.479964,-1.479964 +-1.480944,-1.480944,-1.480944,-1.480944,-1.480944,-1.480944 +-1.481924,-1.481924,-1.481924,-1.481924,-1.481924,-1.481924 +-1.482904,-1.482904,-1.482904,-1.482904,-1.482904,-1.482904 +-1.483884,-1.483884,-1.483884,-1.483884,-1.483884,-1.483884 +-1.484864,-1.484864,-1.484864,-1.484864,-1.484864,-1.484864 +-1.485844,-1.485844,-1.485844,-1.485844,-1.485844,-1.485844 +-1.486824,-1.486824,-1.486824,-1.486824,-1.486824,-1.486824 +-1.487804,-1.487804,-1.487804,-1.487804,-1.487804,-1.487804 +-1.488784,-1.488784,-1.488784,-1.488784,-1.488784,-1.488784 +-1.489764,-1.489764,-1.489764,-1.489764,-1.489764,-1.489764 +-1.490744,-1.490744,-1.490744,-1.490744,-1.490744,-1.490744 +-1.491724,-1.491724,-1.491724,-1.491724,-1.491724,-1.491724 +-1.492704,-1.492704,-1.492704,-1.492704,-1.492704,-1.492704 +-1.493684,-1.493684,-1.493684,-1.493684,-1.493684,-1.493684 +-1.494664,-1.494664,-1.494664,-1.494664,-1.494664,-1.494664 +-1.495644,-1.495644,-1.495644,-1.495644,-1.495644,-1.495644 +-1.496624,-1.496624,-1.496624,-1.496624,-1.496624,-1.496624 +-1.497604,-1.497604,-1.497604,-1.497604,-1.497604,-1.497604 +-1.498584,-1.498584,-1.498584,-1.498584,-1.498584,-1.498584 +-1.499564,-1.499564,-1.499564,-1.499564,-1.499564,-1.499564 +-1.500544,-1.500544,-1.500544,-1.500544,-1.500544,-1.500544 +-1.501524,-1.501524,-1.501524,-1.501524,-1.501524,-1.501524 +-1.502504,-1.502504,-1.502504,-1.502504,-1.502504,-1.502504 +-1.503484,-1.503484,-1.503484,-1.503484,-1.503484,-1.503484 +-1.504464,-1.504464,-1.504464,-1.504464,-1.504464,-1.504464 +-1.505444,-1.505444,-1.505444,-1.505444,-1.505444,-1.505444 +-1.506424,-1.506424,-1.506424,-1.506424,-1.506424,-1.506424 +-1.507404,-1.507404,-1.507404,-1.507404,-1.507404,-1.507404 +-1.508384,-1.508384,-1.508384,-1.508384,-1.508384,-1.508384 +-1.509364,-1.509364,-1.509364,-1.509364,-1.509364,-1.509364 +-1.510344,-1.510344,-1.510344,-1.510344,-1.510344,-1.510344 +-1.511324,-1.511324,-1.511324,-1.511324,-1.511324,-1.511324 +-1.512304,-1.512304,-1.512304,-1.512304,-1.512304,-1.512304 +-1.513284,-1.513284,-1.513284,-1.513284,-1.513284,-1.513284 +-1.514264,-1.514264,-1.514264,-1.514264,-1.514264,-1.514264 +-1.515244,-1.515244,-1.515244,-1.515244,-1.515244,-1.515244 +-1.516224,-1.516224,-1.516224,-1.516224,-1.516224,-1.516224 +-1.517204,-1.517204,-1.517204,-1.517204,-1.517204,-1.517204 +-1.518184,-1.518184,-1.518184,-1.518184,-1.518184,-1.518184 +-1.519164,-1.519164,-1.519164,-1.519164,-1.519164,-1.519164 +-1.520144,-1.520144,-1.520144,-1.520144,-1.520144,-1.520144 +-1.521124,-1.521124,-1.521124,-1.521124,-1.521124,-1.521124 +-1.522104,-1.522104,-1.522104,-1.522104,-1.522104,-1.522104 +-1.523084,-1.523084,-1.523084,-1.523084,-1.523084,-1.523084 +-1.524064,-1.524064,-1.524064,-1.524064,-1.524064,-1.524064 +-1.525044,-1.525044,-1.525044,-1.525044,-1.525044,-1.525044 +-1.526024,-1.526024,-1.526024,-1.526024,-1.526024,-1.526024 +-1.527004,-1.527004,-1.527004,-1.527004,-1.527004,-1.527004 +-1.527984,-1.527984,-1.527984,-1.527984,-1.527984,-1.527984 +-1.528964,-1.528964,-1.528964,-1.528964,-1.528964,-1.528964 +-1.529944,-1.529944,-1.529944,-1.529944,-1.529944,-1.529944 +-1.530924,-1.530924,-1.530924,-1.530924,-1.530924,-1.530924 +-1.531904,-1.531904,-1.531904,-1.531904,-1.531904,-1.531904 +-1.532884,-1.532884,-1.532884,-1.532884,-1.532884,-1.532884 +-1.533864,-1.533864,-1.533864,-1.533864,-1.533864,-1.533864 +-1.534844,-1.534844,-1.534844,-1.534844,-1.534844,-1.534844 +-1.535824,-1.535824,-1.535824,-1.535824,-1.535824,-1.535824 +-1.536804,-1.536804,-1.536804,-1.536804,-1.536804,-1.536804 +-1.537784,-1.537784,-1.537784,-1.537784,-1.537784,-1.537784 +-1.538764,-1.538764,-1.538764,-1.538764,-1.538764,-1.538764 +-1.539744,-1.539744,-1.539744,-1.539744,-1.539744,-1.539744 +-1.540724,-1.540724,-1.540724,-1.540724,-1.540724,-1.540724 +-1.541704,-1.541704,-1.541704,-1.541704,-1.541704,-1.541704 +-1.542684,-1.542684,-1.542684,-1.542684,-1.542684,-1.542684 +-1.543664,-1.543664,-1.543664,-1.543664,-1.543664,-1.543664 +-1.544644,-1.544644,-1.544644,-1.544644,-1.544644,-1.544644 +-1.545624,-1.545624,-1.545624,-1.545624,-1.545624,-1.545624 +-1.546604,-1.546604,-1.546604,-1.546604,-1.546604,-1.546604 +-1.547584,-1.547584,-1.547584,-1.547584,-1.547584,-1.547584 +-1.548564,-1.548564,-1.548564,-1.548564,-1.548564,-1.548564 +-1.549544,-1.549544,-1.549544,-1.549544,-1.549544,-1.549544 +-1.550524,-1.550524,-1.550524,-1.550524,-1.550524,-1.550524 +-1.551504,-1.551504,-1.551504,-1.551504,-1.551504,-1.551504 +-1.552484,-1.552484,-1.552484,-1.552484,-1.552484,-1.552484 +-1.553464,-1.553464,-1.553464,-1.553464,-1.553464,-1.553464 +-1.554444,-1.554444,-1.554444,-1.554444,-1.554444,-1.554444 +-1.555424,-1.555424,-1.555424,-1.555424,-1.555424,-1.555424 +-1.556404,-1.556404,-1.556404,-1.556404,-1.556404,-1.556404 +-1.557384,-1.557384,-1.557384,-1.557384,-1.557384,-1.557384 +-1.558364,-1.558364,-1.558364,-1.558364,-1.558364,-1.558364 +-1.559344,-1.559344,-1.559344,-1.559344,-1.559344,-1.559344 +-1.560324,-1.560324,-1.560324,-1.560324,-1.560324,-1.560324 +-1.561304,-1.561304,-1.561304,-1.561304,-1.561304,-1.561304 +-1.562284,-1.562284,-1.562284,-1.562284,-1.562284,-1.562284 +-1.563264,-1.563264,-1.563264,-1.563264,-1.563264,-1.563264 +-1.564244,-1.564244,-1.564244,-1.564244,-1.564244,-1.564244 +-1.565224,-1.565224,-1.565224,-1.565224,-1.565224,-1.565224 +-1.566204,-1.566204,-1.566204,-1.566204,-1.566204,-1.566204 +-1.567184,-1.567184,-1.567184,-1.567184,-1.567184,-1.567184 +-1.568164,-1.568164,-1.568164,-1.568164,-1.568164,-1.568164 +-1.569144,-1.569144,-1.569144,-1.569144,-1.569144,-1.569144 +-1.570124,-1.570124,-1.570124,-1.570124,-1.570124,-1.570124 +-1.571104,-1.571104,-1.571104,-1.571104,-1.571104,-1.571104 +-1.572084,-1.572084,-1.572084,-1.572084,-1.572084,-1.572084 +-1.573064,-1.573064,-1.573064,-1.573064,-1.573064,-1.573064 +-1.574044,-1.574044,-1.574044,-1.574044,-1.574044,-1.574044 +-1.575024,-1.575024,-1.575024,-1.575024,-1.575024,-1.575024 +-1.576004,-1.576004,-1.576004,-1.576004,-1.576004,-1.576004 +-1.576984,-1.576984,-1.576984,-1.576984,-1.576984,-1.576984 +-1.577964,-1.577964,-1.577964,-1.577964,-1.577964,-1.577964 +-1.578944,-1.578944,-1.578944,-1.578944,-1.578944,-1.578944 +-1.579924,-1.579924,-1.579924,-1.579924,-1.579924,-1.579924 +-1.580904,-1.580904,-1.580904,-1.580904,-1.580904,-1.580904 +-1.581884,-1.581884,-1.581884,-1.581884,-1.581884,-1.581884 +-1.582864,-1.582864,-1.582864,-1.582864,-1.582864,-1.582864 +-1.583844,-1.583844,-1.583844,-1.583844,-1.583844,-1.583844 +-1.584824,-1.584824,-1.584824,-1.584824,-1.584824,-1.584824 +-1.585804,-1.585804,-1.585804,-1.585804,-1.585804,-1.585804 +-1.586784,-1.586784,-1.586784,-1.586784,-1.586784,-1.586784 +-1.587764,-1.587764,-1.587764,-1.587764,-1.587764,-1.587764 +-1.588744,-1.588744,-1.588744,-1.588744,-1.588744,-1.588744 +-1.589724,-1.589724,-1.589724,-1.589724,-1.589724,-1.589724 +-1.590704,-1.590704,-1.590704,-1.590704,-1.590704,-1.590704 +-1.591684,-1.591684,-1.591684,-1.591684,-1.591684,-1.591684 +-1.592664,-1.592664,-1.592664,-1.592664,-1.592664,-1.592664 +-1.593644,-1.593644,-1.593644,-1.593644,-1.593644,-1.593644 +-1.594624,-1.594624,-1.594624,-1.594624,-1.594624,-1.594624 +-1.595604,-1.595604,-1.595604,-1.595604,-1.595604,-1.595604 +-1.596584,-1.596584,-1.596584,-1.596584,-1.596584,-1.596584 +-1.597564,-1.597564,-1.597564,-1.597564,-1.597564,-1.597564 +-1.598544,-1.598544,-1.598544,-1.598544,-1.598544,-1.598544 +-1.599524,-1.599524,-1.599524,-1.599524,-1.599524,-1.599524 +-1.600504,-1.600504,-1.600504,-1.600504,-1.600504,-1.600504 +-1.601484,-1.601484,-1.601484,-1.601484,-1.601484,-1.601484 +-1.602464,-1.602464,-1.602464,-1.602464,-1.602464,-1.602464 +-1.603444,-1.603444,-1.603444,-1.603444,-1.603444,-1.603444 +-1.604424,-1.604424,-1.604424,-1.604424,-1.604424,-1.604424 +-1.605404,-1.605404,-1.605404,-1.605404,-1.605404,-1.605404 +-1.606384,-1.606384,-1.606384,-1.606384,-1.606384,-1.606384 +-1.607364,-1.607364,-1.607364,-1.607364,-1.607364,-1.607364 +-1.608344,-1.608344,-1.608344,-1.608344,-1.608344,-1.608344 +-1.609324,-1.609324,-1.609324,-1.609324,-1.609324,-1.609324 +-1.610304,-1.610304,-1.610304,-1.610304,-1.610304,-1.610304 +-1.611284,-1.611284,-1.611284,-1.611284,-1.611284,-1.611284 +-1.612264,-1.612264,-1.612264,-1.612264,-1.612264,-1.612264 +-1.613244,-1.613244,-1.613244,-1.613244,-1.613244,-1.613244 +-1.614224,-1.614224,-1.614224,-1.614224,-1.614224,-1.614224 +-1.615204,-1.615204,-1.615204,-1.615204,-1.615204,-1.615204 +-1.616184,-1.616184,-1.616184,-1.616184,-1.616184,-1.616184 +-1.617164,-1.617164,-1.617164,-1.617164,-1.617164,-1.617164 +-1.618144,-1.618144,-1.618144,-1.618144,-1.618144,-1.618144 +-1.619124,-1.619124,-1.619124,-1.619124,-1.619124,-1.619124 +-1.620104,-1.620104,-1.620104,-1.620104,-1.620104,-1.620104 +-1.621084,-1.621084,-1.621084,-1.621084,-1.621084,-1.621084 +-1.622064,-1.622064,-1.622064,-1.622064,-1.622064,-1.622064 +-1.623044,-1.623044,-1.623044,-1.623044,-1.623044,-1.623044 +-1.624024,-1.624024,-1.624024,-1.624024,-1.624024,-1.624024 +-1.625004,-1.625004,-1.625004,-1.625004,-1.625004,-1.625004 +-1.625984,-1.625984,-1.625984,-1.625984,-1.625984,-1.625984 +-1.626964,-1.626964,-1.626964,-1.626964,-1.626964,-1.626964 +-1.627944,-1.627944,-1.627944,-1.627944,-1.627944,-1.627944 +-1.628924,-1.628924,-1.628924,-1.628924,-1.628924,-1.628924 +-1.629904,-1.629904,-1.629904,-1.629904,-1.629904,-1.629904 +-1.630884,-1.630884,-1.630884,-1.630884,-1.630884,-1.630884 +-1.631864,-1.631864,-1.631864,-1.631864,-1.631864,-1.631864 +-1.632844,-1.632844,-1.632844,-1.632844,-1.632844,-1.632844 +-1.633824,-1.633824,-1.633824,-1.633824,-1.633824,-1.633824 +-1.634804,-1.634804,-1.634804,-1.634804,-1.634804,-1.634804 +-1.635784,-1.635784,-1.635784,-1.635784,-1.635784,-1.635784 +-1.636764,-1.636764,-1.636764,-1.636764,-1.636764,-1.636764 +-1.637744,-1.637744,-1.637744,-1.637744,-1.637744,-1.637744 +-1.638724,-1.638724,-1.638724,-1.638724,-1.638724,-1.638724 +-1.639704,-1.639704,-1.639704,-1.639704,-1.639704,-1.639704 +-1.640684,-1.640684,-1.640684,-1.640684,-1.640684,-1.640684 +-1.641664,-1.641664,-1.641664,-1.641664,-1.641664,-1.641664 +-1.642644,-1.642644,-1.642644,-1.642644,-1.642644,-1.642644 +-1.643624,-1.643624,-1.643624,-1.643624,-1.643624,-1.643624 +-1.644604,-1.644604,-1.644604,-1.644604,-1.644604,-1.644604 +-1.645584,-1.645584,-1.645584,-1.645584,-1.645584,-1.645584 +-1.646564,-1.646564,-1.646564,-1.646564,-1.646564,-1.646564 +-1.647544,-1.647544,-1.647544,-1.647544,-1.647544,-1.647544 +-1.648524,-1.648524,-1.648524,-1.648524,-1.648524,-1.648524 +-1.649504,-1.649504,-1.649504,-1.649504,-1.649504,-1.649504 +-1.650484,-1.650484,-1.650484,-1.650484,-1.650484,-1.650484 +-1.651464,-1.651464,-1.651464,-1.651464,-1.651464,-1.651464 +-1.652444,-1.652444,-1.652444,-1.652444,-1.652444,-1.652444 +-1.653424,-1.653424,-1.653424,-1.653424,-1.653424,-1.653424 +-1.654404,-1.654404,-1.654404,-1.654404,-1.654404,-1.654404 +-1.655384,-1.655384,-1.655384,-1.655384,-1.655384,-1.655384 +-1.656364,-1.656364,-1.656364,-1.656364,-1.656364,-1.656364 +-1.657344,-1.657344,-1.657344,-1.657344,-1.657344,-1.657344 +-1.658324,-1.658324,-1.658324,-1.658324,-1.658324,-1.658324 +-1.659304,-1.659304,-1.659304,-1.659304,-1.659304,-1.659304 +-1.660284,-1.660284,-1.660284,-1.660284,-1.660284,-1.660284 +-1.661264,-1.661264,-1.661264,-1.661264,-1.661264,-1.661264 +-1.662244,-1.662244,-1.662244,-1.662244,-1.662244,-1.662244 +-1.663224,-1.663224,-1.663224,-1.663224,-1.663224,-1.663224 +-1.664204,-1.664204,-1.664204,-1.664204,-1.664204,-1.664204 +-1.665184,-1.665184,-1.665184,-1.665184,-1.665184,-1.665184 +-1.666164,-1.666164,-1.666164,-1.666164,-1.666164,-1.666164 +-1.667144,-1.667144,-1.667144,-1.667144,-1.667144,-1.667144 +-1.668124,-1.668124,-1.668124,-1.668124,-1.668124,-1.668124 +-1.669104,-1.669104,-1.669104,-1.669104,-1.669104,-1.669104 +-1.670084,-1.670084,-1.670084,-1.670084,-1.670084,-1.670084 +-1.671064,-1.671064,-1.671064,-1.671064,-1.671064,-1.671064 +-1.672044,-1.672044,-1.672044,-1.672044,-1.672044,-1.672044 +-1.673024,-1.673024,-1.673024,-1.673024,-1.673024,-1.673024 +-1.674004,-1.674004,-1.674004,-1.674004,-1.674004,-1.674004 +-1.674984,-1.674984,-1.674984,-1.674984,-1.674984,-1.674984 +-1.675964,-1.675964,-1.675964,-1.675964,-1.675964,-1.675964 +-1.676944,-1.676944,-1.676944,-1.676944,-1.676944,-1.676944 +-1.677924,-1.677924,-1.677924,-1.677924,-1.677924,-1.677924 +-1.678904,-1.678904,-1.678904,-1.678904,-1.678904,-1.678904 +-1.679884,-1.679884,-1.679884,-1.679884,-1.679884,-1.679884 +-1.680864,-1.680864,-1.680864,-1.680864,-1.680864,-1.680864 +-1.681844,-1.681844,-1.681844,-1.681844,-1.681844,-1.681844 +-1.682824,-1.682824,-1.682824,-1.682824,-1.682824,-1.682824 +-1.683804,-1.683804,-1.683804,-1.683804,-1.683804,-1.683804 +-1.684784,-1.684784,-1.684784,-1.684784,-1.684784,-1.684784 +-1.685764,-1.685764,-1.685764,-1.685764,-1.685764,-1.685764 +-1.686744,-1.686744,-1.686744,-1.686744,-1.686744,-1.686744 +-1.687724,-1.687724,-1.687724,-1.687724,-1.687724,-1.687724 +-1.688704,-1.688704,-1.688704,-1.688704,-1.688704,-1.688704 +-1.689684,-1.689684,-1.689684,-1.689684,-1.689684,-1.689684 +-1.690664,-1.690664,-1.690664,-1.690664,-1.690664,-1.690664 +-1.691644,-1.691644,-1.691644,-1.691644,-1.691644,-1.691644 +-1.692624,-1.692624,-1.692624,-1.692624,-1.692624,-1.692624 +-1.693604,-1.693604,-1.693604,-1.693604,-1.693604,-1.693604 +-1.694584,-1.694584,-1.694584,-1.694584,-1.694584,-1.694584 +-1.695564,-1.695564,-1.695564,-1.695564,-1.695564,-1.695564 +-1.696544,-1.696544,-1.696544,-1.696544,-1.696544,-1.696544 +-1.697524,-1.697524,-1.697524,-1.697524,-1.697524,-1.697524 +-1.698504,-1.698504,-1.698504,-1.698504,-1.698504,-1.698504 +-1.699484,-1.699484,-1.699484,-1.699484,-1.699484,-1.699484 +-1.700464,-1.700464,-1.700464,-1.700464,-1.700464,-1.700464 +-1.701444,-1.701444,-1.701444,-1.701444,-1.701444,-1.701444 +-1.702424,-1.702424,-1.702424,-1.702424,-1.702424,-1.702424 +-1.703404,-1.703404,-1.703404,-1.703404,-1.703404,-1.703404 +-1.704384,-1.704384,-1.704384,-1.704384,-1.704384,-1.704384 +-1.705364,-1.705364,-1.705364,-1.705364,-1.705364,-1.705364 +-1.706344,-1.706344,-1.706344,-1.706344,-1.706344,-1.706344 +-1.707324,-1.707324,-1.707324,-1.707324,-1.707324,-1.707324 +-1.708304,-1.708304,-1.708304,-1.708304,-1.708304,-1.708304 +-1.709284,-1.709284,-1.709284,-1.709284,-1.709284,-1.709284 +-1.710264,-1.710264,-1.710264,-1.710264,-1.710264,-1.710264 +-1.711244,-1.711244,-1.711244,-1.711244,-1.711244,-1.711244 +-1.712224,-1.712224,-1.712224,-1.712224,-1.712224,-1.712224 +-1.713204,-1.713204,-1.713204,-1.713204,-1.713204,-1.713204 +-1.714184,-1.714184,-1.714184,-1.714184,-1.714184,-1.714184 +-1.715164,-1.715164,-1.715164,-1.715164,-1.715164,-1.715164 +-1.716144,-1.716144,-1.716144,-1.716144,-1.716144,-1.716144 +-1.717124,-1.717124,-1.717124,-1.717124,-1.717124,-1.717124 +-1.718104,-1.718104,-1.718104,-1.718104,-1.718104,-1.718104 +-1.719084,-1.719084,-1.719084,-1.719084,-1.719084,-1.719084 +-1.720064,-1.720064,-1.720064,-1.720064,-1.720064,-1.720064 +-1.721044,-1.721044,-1.721044,-1.721044,-1.721044,-1.721044 +-1.722024,-1.722024,-1.722024,-1.722024,-1.722024,-1.722024 +-1.723004,-1.723004,-1.723004,-1.723004,-1.723004,-1.723004 +-1.723984,-1.723984,-1.723984,-1.723984,-1.723984,-1.723984 +-1.724964,-1.724964,-1.724964,-1.724964,-1.724964,-1.724964 +-1.725944,-1.725944,-1.725944,-1.725944,-1.725944,-1.725944 +-1.726924,-1.726924,-1.726924,-1.726924,-1.726924,-1.726924 +-1.727904,-1.727904,-1.727904,-1.727904,-1.727904,-1.727904 +-1.728884,-1.728884,-1.728884,-1.728884,-1.728884,-1.728884 +-1.729864,-1.729864,-1.729864,-1.729864,-1.729864,-1.729864 +-1.730844,-1.730844,-1.730844,-1.730844,-1.730844,-1.730844 +-1.731824,-1.731824,-1.731824,-1.731824,-1.731824,-1.731824 +-1.732804,-1.732804,-1.732804,-1.732804,-1.732804,-1.732804 +-1.733784,-1.733784,-1.733784,-1.733784,-1.733784,-1.733784 +-1.734763,-1.734763,-1.734763,-1.734763,-1.734763,-1.734763 +-1.735734,-1.735734,-1.735734,-1.735734,-1.735734,-1.735734 +-1.73669,-1.73669,-1.73669,-1.73669,-1.73669,-1.73669 +-1.737625,-1.737625,-1.737625,-1.737625,-1.737625,-1.737625 +-1.738531,-1.738531,-1.738531,-1.738531,-1.738531,-1.738531 +-1.739402,-1.739402,-1.739402,-1.739402,-1.739402,-1.739402 +-1.74023,-1.74023,-1.74023,-1.74023,-1.74023,-1.74023 +-1.741009,-1.741009,-1.741009,-1.741009,-1.741009,-1.741009 +-1.741731,-1.741731,-1.741731,-1.741731,-1.741731,-1.741731 +-1.742389,-1.742389,-1.742389,-1.742389,-1.742389,-1.742389 +-1.742977,-1.742977,-1.742977,-1.742977,-1.742977,-1.742977 +-1.743487,-1.743487,-1.743487,-1.743487,-1.743487,-1.743487 +-1.743917,-1.743917,-1.743917,-1.743917,-1.743917,-1.743917 +-1.744273,-1.744273,-1.744273,-1.744273,-1.744273,-1.744273 +-1.744562,-1.744562,-1.744562,-1.744562,-1.744562,-1.744562 +-1.744791,-1.744791,-1.744791,-1.744791,-1.744791,-1.744791 +-1.744967,-1.744967,-1.744967,-1.744967,-1.744967,-1.744967 +-1.745097,-1.745097,-1.745097,-1.745097,-1.745097,-1.745097 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745295,-1.745295,-1.745295,-1.745295,-1.745295,-1.745295 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745291,-1.745291,-1.745291,-1.745291,-1.745291,-1.745291 +-1.745269,-1.745269,-1.745269,-1.745269,-1.745269,-1.745269 +-1.745225,-1.745225,-1.745225,-1.745225,-1.745225,-1.745225 +-1.745154,-1.745154,-1.745154,-1.745154,-1.745154,-1.745154 +-1.745048,-1.745048,-1.745048,-1.745048,-1.745048,-1.745048 +-1.7449,-1.7449,-1.7449,-1.7449,-1.7449,-1.7449 +-1.744703,-1.744703,-1.744703,-1.744703,-1.744703,-1.744703 +-1.744449,-1.744449,-1.744449,-1.744449,-1.744449,-1.744449 +-1.744133,-1.744133,-1.744133,-1.744133,-1.744133,-1.744133 +-1.743747,-1.743747,-1.743747,-1.743747,-1.743747,-1.743747 +-1.743284,-1.743284,-1.743284,-1.743284,-1.743284,-1.743284 +-1.742741,-1.742741,-1.742741,-1.742741,-1.742741,-1.742741 +-1.742122,-1.742122,-1.742122,-1.742122,-1.742122,-1.742122 +-1.741437,-1.741437,-1.741437,-1.741437,-1.741437,-1.741437 +-1.74069,-1.74069,-1.74069,-1.74069,-1.74069,-1.74069 +-1.73989,-1.73989,-1.73989,-1.73989,-1.73989,-1.73989 +-1.739043,-1.739043,-1.739043,-1.739043,-1.739043,-1.739043 +-1.738157,-1.738157,-1.738157,-1.738157,-1.738157,-1.738157 +-1.737238,-1.737238,-1.737238,-1.737238,-1.737238,-1.737238 +-1.736293,-1.736293,-1.736293,-1.736293,-1.736293,-1.736293 +-1.73533,-1.73533,-1.73533,-1.73533,-1.73533,-1.73533 +-1.734355,-1.734355,-1.734355,-1.734355,-1.734355,-1.734355 +-1.733376,-1.733376,-1.733376,-1.733376,-1.733376,-1.733376 +-1.732396,-1.732396,-1.732396,-1.732396,-1.732396,-1.732396 +-1.731416,-1.731416,-1.731416,-1.731416,-1.731416,-1.731416 +-1.730436,-1.730436,-1.730436,-1.730436,-1.730436,-1.730436 +-1.729456,-1.729456,-1.729456,-1.729456,-1.729456,-1.729456 +-1.728476,-1.728476,-1.728476,-1.728476,-1.728476,-1.728476 +-1.727496,-1.727496,-1.727496,-1.727496,-1.727496,-1.727496 +-1.726516,-1.726516,-1.726516,-1.726516,-1.726516,-1.726516 +-1.725536,-1.725536,-1.725536,-1.725536,-1.725536,-1.725536 +-1.724556,-1.724556,-1.724556,-1.724556,-1.724556,-1.724556 +-1.723576,-1.723576,-1.723576,-1.723576,-1.723576,-1.723576 +-1.722596,-1.722596,-1.722596,-1.722596,-1.722596,-1.722596 +-1.721616,-1.721616,-1.721616,-1.721616,-1.721616,-1.721616 +-1.720636,-1.720636,-1.720636,-1.720636,-1.720636,-1.720636 +-1.719656,-1.719656,-1.719656,-1.719656,-1.719656,-1.719656 +-1.718676,-1.718676,-1.718676,-1.718676,-1.718676,-1.718676 +-1.717696,-1.717696,-1.717696,-1.717696,-1.717696,-1.717696 +-1.716716,-1.716716,-1.716716,-1.716716,-1.716716,-1.716716 +-1.715736,-1.715736,-1.715736,-1.715736,-1.715736,-1.715736 +-1.714756,-1.714756,-1.714756,-1.714756,-1.714756,-1.714756 +-1.713776,-1.713776,-1.713776,-1.713776,-1.713776,-1.713776 +-1.712796,-1.712796,-1.712796,-1.712796,-1.712796,-1.712796 +-1.711816,-1.711816,-1.711816,-1.711816,-1.711816,-1.711816 +-1.710836,-1.710836,-1.710836,-1.710836,-1.710836,-1.710836 +-1.709856,-1.709856,-1.709856,-1.709856,-1.709856,-1.709856 +-1.708876,-1.708876,-1.708876,-1.708876,-1.708876,-1.708876 +-1.707896,-1.707896,-1.707896,-1.707896,-1.707896,-1.707896 +-1.706916,-1.706916,-1.706916,-1.706916,-1.706916,-1.706916 +-1.705936,-1.705936,-1.705936,-1.705936,-1.705936,-1.705936 +-1.704956,-1.704956,-1.704956,-1.704956,-1.704956,-1.704956 +-1.703976,-1.703976,-1.703976,-1.703976,-1.703976,-1.703976 +-1.702996,-1.702996,-1.702996,-1.702996,-1.702996,-1.702996 +-1.702016,-1.702016,-1.702016,-1.702016,-1.702016,-1.702016 +-1.701036,-1.701036,-1.701036,-1.701036,-1.701036,-1.701036 +-1.700056,-1.700056,-1.700056,-1.700056,-1.700056,-1.700056 +-1.699076,-1.699076,-1.699076,-1.699076,-1.699076,-1.699076 +-1.698096,-1.698096,-1.698096,-1.698096,-1.698096,-1.698096 +-1.697116,-1.697116,-1.697116,-1.697116,-1.697116,-1.697116 +-1.696136,-1.696136,-1.696136,-1.696136,-1.696136,-1.696136 +-1.695156,-1.695156,-1.695156,-1.695156,-1.695156,-1.695156 +-1.694176,-1.694176,-1.694176,-1.694176,-1.694176,-1.694176 +-1.693196,-1.693196,-1.693196,-1.693196,-1.693196,-1.693196 +-1.692216,-1.692216,-1.692216,-1.692216,-1.692216,-1.692216 +-1.691236,-1.691236,-1.691236,-1.691236,-1.691236,-1.691236 +-1.690256,-1.690256,-1.690256,-1.690256,-1.690256,-1.690256 +-1.689276,-1.689276,-1.689276,-1.689276,-1.689276,-1.689276 +-1.688296,-1.688296,-1.688296,-1.688296,-1.688296,-1.688296 +-1.687316,-1.687316,-1.687316,-1.687316,-1.687316,-1.687316 +-1.686336,-1.686336,-1.686336,-1.686336,-1.686336,-1.686336 +-1.685356,-1.685356,-1.685356,-1.685356,-1.685356,-1.685356 +-1.684376,-1.684376,-1.684376,-1.684376,-1.684376,-1.684376 +-1.683396,-1.683396,-1.683396,-1.683396,-1.683396,-1.683396 +-1.682416,-1.682416,-1.682416,-1.682416,-1.682416,-1.682416 +-1.681436,-1.681436,-1.681436,-1.681436,-1.681436,-1.681436 +-1.680456,-1.680456,-1.680456,-1.680456,-1.680456,-1.680456 +-1.679476,-1.679476,-1.679476,-1.679476,-1.679476,-1.679476 +-1.678496,-1.678496,-1.678496,-1.678496,-1.678496,-1.678496 +-1.677516,-1.677516,-1.677516,-1.677516,-1.677516,-1.677516 +-1.676536,-1.676536,-1.676536,-1.676536,-1.676536,-1.676536 +-1.675556,-1.675556,-1.675556,-1.675556,-1.675556,-1.675556 +-1.674576,-1.674576,-1.674576,-1.674576,-1.674576,-1.674576 +-1.673596,-1.673596,-1.673596,-1.673596,-1.673596,-1.673596 +-1.672616,-1.672616,-1.672616,-1.672616,-1.672616,-1.672616 +-1.671636,-1.671636,-1.671636,-1.671636,-1.671636,-1.671636 +-1.670656,-1.670656,-1.670656,-1.670656,-1.670656,-1.670656 +-1.669676,-1.669676,-1.669676,-1.669676,-1.669676,-1.669676 +-1.668696,-1.668696,-1.668696,-1.668696,-1.668696,-1.668696 +-1.667716,-1.667716,-1.667716,-1.667716,-1.667716,-1.667716 +-1.666736,-1.666736,-1.666736,-1.666736,-1.666736,-1.666736 +-1.665756,-1.665756,-1.665756,-1.665756,-1.665756,-1.665756 +-1.664776,-1.664776,-1.664776,-1.664776,-1.664776,-1.664776 +-1.663796,-1.663796,-1.663796,-1.663796,-1.663796,-1.663796 +-1.662816,-1.662816,-1.662816,-1.662816,-1.662816,-1.662816 +-1.661836,-1.661836,-1.661836,-1.661836,-1.661836,-1.661836 +-1.660856,-1.660856,-1.660856,-1.660856,-1.660856,-1.660856 +-1.659876,-1.659876,-1.659876,-1.659876,-1.659876,-1.659876 +-1.658896,-1.658896,-1.658896,-1.658896,-1.658896,-1.658896 +-1.657916,-1.657916,-1.657916,-1.657916,-1.657916,-1.657916 +-1.656936,-1.656936,-1.656936,-1.656936,-1.656936,-1.656936 +-1.655956,-1.655956,-1.655956,-1.655956,-1.655956,-1.655956 +-1.654976,-1.654976,-1.654976,-1.654976,-1.654976,-1.654976 +-1.653996,-1.653996,-1.653996,-1.653996,-1.653996,-1.653996 +-1.653016,-1.653016,-1.653016,-1.653016,-1.653016,-1.653016 +-1.652036,-1.652036,-1.652036,-1.652036,-1.652036,-1.652036 +-1.651056,-1.651056,-1.651056,-1.651056,-1.651056,-1.651056 +-1.650076,-1.650076,-1.650076,-1.650076,-1.650076,-1.650076 +-1.649096,-1.649096,-1.649096,-1.649096,-1.649096,-1.649096 +-1.648116,-1.648116,-1.648116,-1.648116,-1.648116,-1.648116 +-1.647136,-1.647136,-1.647136,-1.647136,-1.647136,-1.647136 +-1.646156,-1.646156,-1.646156,-1.646156,-1.646156,-1.646156 +-1.645176,-1.645176,-1.645176,-1.645176,-1.645176,-1.645176 +-1.644196,-1.644196,-1.644196,-1.644196,-1.644196,-1.644196 +-1.643216,-1.643216,-1.643216,-1.643216,-1.643216,-1.643216 +-1.642236,-1.642236,-1.642236,-1.642236,-1.642236,-1.642236 +-1.641256,-1.641256,-1.641256,-1.641256,-1.641256,-1.641256 +-1.640276,-1.640276,-1.640276,-1.640276,-1.640276,-1.640276 +-1.639296,-1.639296,-1.639296,-1.639296,-1.639296,-1.639296 +-1.638316,-1.638316,-1.638316,-1.638316,-1.638316,-1.638316 +-1.637336,-1.637336,-1.637336,-1.637336,-1.637336,-1.637336 +-1.636356,-1.636356,-1.636356,-1.636356,-1.636356,-1.636356 +-1.635376,-1.635376,-1.635376,-1.635376,-1.635376,-1.635376 +-1.634396,-1.634396,-1.634396,-1.634396,-1.634396,-1.634396 +-1.633416,-1.633416,-1.633416,-1.633416,-1.633416,-1.633416 +-1.632436,-1.632436,-1.632436,-1.632436,-1.632436,-1.632436 +-1.631456,-1.631456,-1.631456,-1.631456,-1.631456,-1.631456 +-1.630476,-1.630476,-1.630476,-1.630476,-1.630476,-1.630476 +-1.629496,-1.629496,-1.629496,-1.629496,-1.629496,-1.629496 +-1.628516,-1.628516,-1.628516,-1.628516,-1.628516,-1.628516 +-1.627536,-1.627536,-1.627536,-1.627536,-1.627536,-1.627536 +-1.626556,-1.626556,-1.626556,-1.626556,-1.626556,-1.626556 +-1.625576,-1.625576,-1.625576,-1.625576,-1.625576,-1.625576 +-1.624596,-1.624596,-1.624596,-1.624596,-1.624596,-1.624596 +-1.623616,-1.623616,-1.623616,-1.623616,-1.623616,-1.623616 +-1.622636,-1.622636,-1.622636,-1.622636,-1.622636,-1.622636 +-1.621656,-1.621656,-1.621656,-1.621656,-1.621656,-1.621656 +-1.620676,-1.620676,-1.620676,-1.620676,-1.620676,-1.620676 +-1.619696,-1.619696,-1.619696,-1.619696,-1.619696,-1.619696 +-1.618716,-1.618716,-1.618716,-1.618716,-1.618716,-1.618716 +-1.617736,-1.617736,-1.617736,-1.617736,-1.617736,-1.617736 +-1.616756,-1.616756,-1.616756,-1.616756,-1.616756,-1.616756 +-1.615776,-1.615776,-1.615776,-1.615776,-1.615776,-1.615776 +-1.614796,-1.614796,-1.614796,-1.614796,-1.614796,-1.614796 +-1.613816,-1.613816,-1.613816,-1.613816,-1.613816,-1.613816 +-1.612836,-1.612836,-1.612836,-1.612836,-1.612836,-1.612836 +-1.611856,-1.611856,-1.611856,-1.611856,-1.611856,-1.611856 +-1.610876,-1.610876,-1.610876,-1.610876,-1.610876,-1.610876 +-1.609896,-1.609896,-1.609896,-1.609896,-1.609896,-1.609896 +-1.608916,-1.608916,-1.608916,-1.608916,-1.608916,-1.608916 +-1.607936,-1.607936,-1.607936,-1.607936,-1.607936,-1.607936 +-1.606956,-1.606956,-1.606956,-1.606956,-1.606956,-1.606956 +-1.605976,-1.605976,-1.605976,-1.605976,-1.605976,-1.605976 +-1.604996,-1.604996,-1.604996,-1.604996,-1.604996,-1.604996 +-1.604016,-1.604016,-1.604016,-1.604016,-1.604016,-1.604016 +-1.603036,-1.603036,-1.603036,-1.603036,-1.603036,-1.603036 +-1.602056,-1.602056,-1.602056,-1.602056,-1.602056,-1.602056 +-1.601076,-1.601076,-1.601076,-1.601076,-1.601076,-1.601076 +-1.600096,-1.600096,-1.600096,-1.600096,-1.600096,-1.600096 +-1.599116,-1.599116,-1.599116,-1.599116,-1.599116,-1.599116 +-1.598136,-1.598136,-1.598136,-1.598136,-1.598136,-1.598136 +-1.597156,-1.597156,-1.597156,-1.597156,-1.597156,-1.597156 +-1.596176,-1.596176,-1.596176,-1.596176,-1.596176,-1.596176 +-1.595196,-1.595196,-1.595196,-1.595196,-1.595196,-1.595196 +-1.594216,-1.594216,-1.594216,-1.594216,-1.594216,-1.594216 +-1.593236,-1.593236,-1.593236,-1.593236,-1.593236,-1.593236 +-1.592256,-1.592256,-1.592256,-1.592256,-1.592256,-1.592256 +-1.591276,-1.591276,-1.591276,-1.591276,-1.591276,-1.591276 +-1.590296,-1.590296,-1.590296,-1.590296,-1.590296,-1.590296 +-1.589316,-1.589316,-1.589316,-1.589316,-1.589316,-1.589316 +-1.588336,-1.588336,-1.588336,-1.588336,-1.588336,-1.588336 +-1.587356,-1.587356,-1.587356,-1.587356,-1.587356,-1.587356 +-1.586376,-1.586376,-1.586376,-1.586376,-1.586376,-1.586376 +-1.585396,-1.585396,-1.585396,-1.585396,-1.585396,-1.585396 +-1.584416,-1.584416,-1.584416,-1.584416,-1.584416,-1.584416 +-1.583436,-1.583436,-1.583436,-1.583436,-1.583436,-1.583436 +-1.582456,-1.582456,-1.582456,-1.582456,-1.582456,-1.582456 +-1.581476,-1.581476,-1.581476,-1.581476,-1.581476,-1.581476 +-1.580496,-1.580496,-1.580496,-1.580496,-1.580496,-1.580496 +-1.579516,-1.579516,-1.579516,-1.579516,-1.579516,-1.579516 +-1.578536,-1.578536,-1.578536,-1.578536,-1.578536,-1.578536 +-1.577556,-1.577556,-1.577556,-1.577556,-1.577556,-1.577556 +-1.576576,-1.576576,-1.576576,-1.576576,-1.576576,-1.576576 +-1.575596,-1.575596,-1.575596,-1.575596,-1.575596,-1.575596 +-1.574616,-1.574616,-1.574616,-1.574616,-1.574616,-1.574616 +-1.573636,-1.573636,-1.573636,-1.573636,-1.573636,-1.573636 +-1.572656,-1.572656,-1.572656,-1.572656,-1.572656,-1.572656 +-1.571676,-1.571676,-1.571676,-1.571676,-1.571676,-1.571676 +-1.570696,-1.570696,-1.570696,-1.570696,-1.570696,-1.570696 +-1.569716,-1.569716,-1.569716,-1.569716,-1.569716,-1.569716 +-1.568736,-1.568736,-1.568736,-1.568736,-1.568736,-1.568736 +-1.567756,-1.567756,-1.567756,-1.567756,-1.567756,-1.567756 +-1.566776,-1.566776,-1.566776,-1.566776,-1.566776,-1.566776 +-1.565796,-1.565796,-1.565796,-1.565796,-1.565796,-1.565796 +-1.564816,-1.564816,-1.564816,-1.564816,-1.564816,-1.564816 +-1.563836,-1.563836,-1.563836,-1.563836,-1.563836,-1.563836 +-1.562856,-1.562856,-1.562856,-1.562856,-1.562856,-1.562856 +-1.561876,-1.561876,-1.561876,-1.561876,-1.561876,-1.561876 +-1.560896,-1.560896,-1.560896,-1.560896,-1.560896,-1.560896 +-1.559916,-1.559916,-1.559916,-1.559916,-1.559916,-1.559916 +-1.558936,-1.558936,-1.558936,-1.558936,-1.558936,-1.558936 +-1.557956,-1.557956,-1.557956,-1.557956,-1.557956,-1.557956 +-1.556976,-1.556976,-1.556976,-1.556976,-1.556976,-1.556976 +-1.555996,-1.555996,-1.555996,-1.555996,-1.555996,-1.555996 +-1.555016,-1.555016,-1.555016,-1.555016,-1.555016,-1.555016 +-1.554036,-1.554036,-1.554036,-1.554036,-1.554036,-1.554036 +-1.553056,-1.553056,-1.553056,-1.553056,-1.553056,-1.553056 +-1.552076,-1.552076,-1.552076,-1.552076,-1.552076,-1.552076 +-1.551096,-1.551096,-1.551096,-1.551096,-1.551096,-1.551096 +-1.550116,-1.550116,-1.550116,-1.550116,-1.550116,-1.550116 +-1.549136,-1.549136,-1.549136,-1.549136,-1.549136,-1.549136 +-1.548156,-1.548156,-1.548156,-1.548156,-1.548156,-1.548156 +-1.547176,-1.547176,-1.547176,-1.547176,-1.547176,-1.547176 +-1.546196,-1.546196,-1.546196,-1.546196,-1.546196,-1.546196 +-1.545216,-1.545216,-1.545216,-1.545216,-1.545216,-1.545216 +-1.544236,-1.544236,-1.544236,-1.544236,-1.544236,-1.544236 +-1.543256,-1.543256,-1.543256,-1.543256,-1.543256,-1.543256 +-1.542276,-1.542276,-1.542276,-1.542276,-1.542276,-1.542276 +-1.541296,-1.541296,-1.541296,-1.541296,-1.541296,-1.541296 +-1.540316,-1.540316,-1.540316,-1.540316,-1.540316,-1.540316 +-1.539336,-1.539336,-1.539336,-1.539336,-1.539336,-1.539336 +-1.538356,-1.538356,-1.538356,-1.538356,-1.538356,-1.538356 +-1.537376,-1.537376,-1.537376,-1.537376,-1.537376,-1.537376 +-1.536396,-1.536396,-1.536396,-1.536396,-1.536396,-1.536396 +-1.535416,-1.535416,-1.535416,-1.535416,-1.535416,-1.535416 +-1.534436,-1.534436,-1.534436,-1.534436,-1.534436,-1.534436 +-1.533456,-1.533456,-1.533456,-1.533456,-1.533456,-1.533456 +-1.532476,-1.532476,-1.532476,-1.532476,-1.532476,-1.532476 +-1.531496,-1.531496,-1.531496,-1.531496,-1.531496,-1.531496 +-1.530516,-1.530516,-1.530516,-1.530516,-1.530516,-1.530516 +-1.529536,-1.529536,-1.529536,-1.529536,-1.529536,-1.529536 +-1.528556,-1.528556,-1.528556,-1.528556,-1.528556,-1.528556 +-1.527576,-1.527576,-1.527576,-1.527576,-1.527576,-1.527576 +-1.526596,-1.526596,-1.526596,-1.526596,-1.526596,-1.526596 +-1.525616,-1.525616,-1.525616,-1.525616,-1.525616,-1.525616 +-1.524636,-1.524636,-1.524636,-1.524636,-1.524636,-1.524636 +-1.523656,-1.523656,-1.523656,-1.523656,-1.523656,-1.523656 +-1.522676,-1.522676,-1.522676,-1.522676,-1.522676,-1.522676 +-1.521696,-1.521696,-1.521696,-1.521696,-1.521696,-1.521696 +-1.520716,-1.520716,-1.520716,-1.520716,-1.520716,-1.520716 +-1.519736,-1.519736,-1.519736,-1.519736,-1.519736,-1.519736 +-1.518756,-1.518756,-1.518756,-1.518756,-1.518756,-1.518756 +-1.517776,-1.517776,-1.517776,-1.517776,-1.517776,-1.517776 +-1.516796,-1.516796,-1.516796,-1.516796,-1.516796,-1.516796 +-1.515816,-1.515816,-1.515816,-1.515816,-1.515816,-1.515816 +-1.514836,-1.514836,-1.514836,-1.514836,-1.514836,-1.514836 +-1.513856,-1.513856,-1.513856,-1.513856,-1.513856,-1.513856 +-1.512876,-1.512876,-1.512876,-1.512876,-1.512876,-1.512876 +-1.511896,-1.511896,-1.511896,-1.511896,-1.511896,-1.511896 +-1.510916,-1.510916,-1.510916,-1.510916,-1.510916,-1.510916 +-1.509936,-1.509936,-1.509936,-1.509936,-1.509936,-1.509936 +-1.508956,-1.508956,-1.508956,-1.508956,-1.508956,-1.508956 +-1.507976,-1.507976,-1.507976,-1.507976,-1.507976,-1.507976 +-1.506996,-1.506996,-1.506996,-1.506996,-1.506996,-1.506996 +-1.506016,-1.506016,-1.506016,-1.506016,-1.506016,-1.506016 +-1.505036,-1.505036,-1.505036,-1.505036,-1.505036,-1.505036 +-1.504056,-1.504056,-1.504056,-1.504056,-1.504056,-1.504056 +-1.503076,-1.503076,-1.503076,-1.503076,-1.503076,-1.503076 +-1.502096,-1.502096,-1.502096,-1.502096,-1.502096,-1.502096 +-1.501116,-1.501116,-1.501116,-1.501116,-1.501116,-1.501116 +-1.500136,-1.500136,-1.500136,-1.500136,-1.500136,-1.500136 +-1.499156,-1.499156,-1.499156,-1.499156,-1.499156,-1.499156 +-1.498176,-1.498176,-1.498176,-1.498176,-1.498176,-1.498176 +-1.497196,-1.497196,-1.497196,-1.497196,-1.497196,-1.497196 +-1.496216,-1.496216,-1.496216,-1.496216,-1.496216,-1.496216 +-1.495236,-1.495236,-1.495236,-1.495236,-1.495236,-1.495236 +-1.494256,-1.494256,-1.494256,-1.494256,-1.494256,-1.494256 +-1.493276,-1.493276,-1.493276,-1.493276,-1.493276,-1.493276 +-1.492296,-1.492296,-1.492296,-1.492296,-1.492296,-1.492296 +-1.491316,-1.491316,-1.491316,-1.491316,-1.491316,-1.491316 +-1.490336,-1.490336,-1.490336,-1.490336,-1.490336,-1.490336 +-1.489356,-1.489356,-1.489356,-1.489356,-1.489356,-1.489356 +-1.488376,-1.488376,-1.488376,-1.488376,-1.488376,-1.488376 +-1.487396,-1.487396,-1.487396,-1.487396,-1.487396,-1.487396 +-1.486416,-1.486416,-1.486416,-1.486416,-1.486416,-1.486416 +-1.485436,-1.485436,-1.485436,-1.485436,-1.485436,-1.485436 +-1.484456,-1.484456,-1.484456,-1.484456,-1.484456,-1.484456 +-1.483476,-1.483476,-1.483476,-1.483476,-1.483476,-1.483476 +-1.482496,-1.482496,-1.482496,-1.482496,-1.482496,-1.482496 +-1.481516,-1.481516,-1.481516,-1.481516,-1.481516,-1.481516 +-1.480536,-1.480536,-1.480536,-1.480536,-1.480536,-1.480536 +-1.479556,-1.479556,-1.479556,-1.479556,-1.479556,-1.479556 +-1.478576,-1.478576,-1.478576,-1.478576,-1.478576,-1.478576 +-1.477596,-1.477596,-1.477596,-1.477596,-1.477596,-1.477596 +-1.476616,-1.476616,-1.476616,-1.476616,-1.476616,-1.476616 +-1.475636,-1.475636,-1.475636,-1.475636,-1.475636,-1.475636 +-1.474656,-1.474656,-1.474656,-1.474656,-1.474656,-1.474656 +-1.473676,-1.473676,-1.473676,-1.473676,-1.473676,-1.473676 +-1.472696,-1.472696,-1.472696,-1.472696,-1.472696,-1.472696 +-1.471716,-1.471716,-1.471716,-1.471716,-1.471716,-1.471716 +-1.470736,-1.470736,-1.470736,-1.470736,-1.470736,-1.470736 +-1.469756,-1.469756,-1.469756,-1.469756,-1.469756,-1.469756 +-1.468776,-1.468776,-1.468776,-1.468776,-1.468776,-1.468776 +-1.467796,-1.467796,-1.467796,-1.467796,-1.467796,-1.467796 +-1.466816,-1.466816,-1.466816,-1.466816,-1.466816,-1.466816 +-1.465836,-1.465836,-1.465836,-1.465836,-1.465836,-1.465836 +-1.464856,-1.464856,-1.464856,-1.464856,-1.464856,-1.464856 +-1.463876,-1.463876,-1.463876,-1.463876,-1.463876,-1.463876 +-1.462896,-1.462896,-1.462896,-1.462896,-1.462896,-1.462896 +-1.461916,-1.461916,-1.461916,-1.461916,-1.461916,-1.461916 +-1.460936,-1.460936,-1.460936,-1.460936,-1.460936,-1.460936 +-1.459956,-1.459956,-1.459956,-1.459956,-1.459956,-1.459956 +-1.458976,-1.458976,-1.458976,-1.458976,-1.458976,-1.458976 +-1.457996,-1.457996,-1.457996,-1.457996,-1.457996,-1.457996 +-1.457016,-1.457016,-1.457016,-1.457016,-1.457016,-1.457016 +-1.456036,-1.456036,-1.456036,-1.456036,-1.456036,-1.456036 +-1.455056,-1.455056,-1.455056,-1.455056,-1.455056,-1.455056 +-1.454076,-1.454076,-1.454076,-1.454076,-1.454076,-1.454076 +-1.453096,-1.453096,-1.453096,-1.453096,-1.453096,-1.453096 +-1.452116,-1.452116,-1.452116,-1.452116,-1.452116,-1.452116 +-1.451136,-1.451136,-1.451136,-1.451136,-1.451136,-1.451136 +-1.450156,-1.450156,-1.450156,-1.450156,-1.450156,-1.450156 +-1.449176,-1.449176,-1.449176,-1.449176,-1.449176,-1.449176 +-1.448196,-1.448196,-1.448196,-1.448196,-1.448196,-1.448196 +-1.447216,-1.447216,-1.447216,-1.447216,-1.447216,-1.447216 +-1.446236,-1.446236,-1.446236,-1.446236,-1.446236,-1.446236 +-1.445256,-1.445256,-1.445256,-1.445256,-1.445256,-1.445256 +-1.444276,-1.444276,-1.444276,-1.444276,-1.444276,-1.444276 +-1.443296,-1.443296,-1.443296,-1.443296,-1.443296,-1.443296 +-1.442316,-1.442316,-1.442316,-1.442316,-1.442316,-1.442316 +-1.441336,-1.441336,-1.441336,-1.441336,-1.441336,-1.441336 +-1.440356,-1.440356,-1.440356,-1.440356,-1.440356,-1.440356 +-1.439376,-1.439376,-1.439376,-1.439376,-1.439376,-1.439376 +-1.438396,-1.438396,-1.438396,-1.438396,-1.438396,-1.438396 +-1.437416,-1.437416,-1.437416,-1.437416,-1.437416,-1.437416 +-1.436436,-1.436436,-1.436436,-1.436436,-1.436436,-1.436436 +-1.435456,-1.435456,-1.435456,-1.435456,-1.435456,-1.435456 +-1.434476,-1.434476,-1.434476,-1.434476,-1.434476,-1.434476 +-1.433496,-1.433496,-1.433496,-1.433496,-1.433496,-1.433496 +-1.432516,-1.432516,-1.432516,-1.432516,-1.432516,-1.432516 +-1.431536,-1.431536,-1.431536,-1.431536,-1.431536,-1.431536 +-1.430556,-1.430556,-1.430556,-1.430556,-1.430556,-1.430556 +-1.429576,-1.429576,-1.429576,-1.429576,-1.429576,-1.429576 +-1.428596,-1.428596,-1.428596,-1.428596,-1.428596,-1.428596 +-1.427616,-1.427616,-1.427616,-1.427616,-1.427616,-1.427616 +-1.426636,-1.426636,-1.426636,-1.426636,-1.426636,-1.426636 +-1.425656,-1.425656,-1.425656,-1.425656,-1.425656,-1.425656 +-1.424676,-1.424676,-1.424676,-1.424676,-1.424676,-1.424676 +-1.423696,-1.423696,-1.423696,-1.423696,-1.423696,-1.423696 +-1.422716,-1.422716,-1.422716,-1.422716,-1.422716,-1.422716 +-1.421736,-1.421736,-1.421736,-1.421736,-1.421736,-1.421736 +-1.420756,-1.420756,-1.420756,-1.420756,-1.420756,-1.420756 +-1.419776,-1.419776,-1.419776,-1.419776,-1.419776,-1.419776 +-1.418796,-1.418796,-1.418796,-1.418796,-1.418796,-1.418796 +-1.417816,-1.417816,-1.417816,-1.417816,-1.417816,-1.417816 +-1.416836,-1.416836,-1.416836,-1.416836,-1.416836,-1.416836 +-1.415856,-1.415856,-1.415856,-1.415856,-1.415856,-1.415856 +-1.414876,-1.414876,-1.414876,-1.414876,-1.414876,-1.414876 +-1.413896,-1.413896,-1.413896,-1.413896,-1.413896,-1.413896 +-1.412916,-1.412916,-1.412916,-1.412916,-1.412916,-1.412916 +-1.411936,-1.411936,-1.411936,-1.411936,-1.411936,-1.411936 +-1.410956,-1.410956,-1.410956,-1.410956,-1.410956,-1.410956 +-1.409976,-1.409976,-1.409976,-1.409976,-1.409976,-1.409976 +-1.408996,-1.408996,-1.408996,-1.408996,-1.408996,-1.408996 +-1.408016,-1.408016,-1.408016,-1.408016,-1.408016,-1.408016 +-1.407036,-1.407036,-1.407036,-1.407036,-1.407036,-1.407036 +-1.406056,-1.406056,-1.406056,-1.406056,-1.406056,-1.406056 +-1.405076,-1.405076,-1.405076,-1.405076,-1.405076,-1.405076 +-1.404096,-1.404096,-1.404096,-1.404096,-1.404096,-1.404096 +-1.403116,-1.403116,-1.403116,-1.403116,-1.403116,-1.403116 +-1.402136,-1.402136,-1.402136,-1.402136,-1.402136,-1.402136 +-1.401156,-1.401156,-1.401156,-1.401156,-1.401156,-1.401156 +-1.400176,-1.400176,-1.400176,-1.400176,-1.400176,-1.400176 +-1.399196,-1.399196,-1.399196,-1.399196,-1.399196,-1.399196 +-1.398216,-1.398216,-1.398216,-1.398216,-1.398216,-1.398216 +-1.397236,-1.397236,-1.397236,-1.397236,-1.397236,-1.397236 +-1.396256,-1.396256,-1.396256,-1.396256,-1.396256,-1.396256 +-1.395276,-1.395276,-1.395276,-1.395276,-1.395276,-1.395276 +-1.394296,-1.394296,-1.394296,-1.394296,-1.394296,-1.394296 +-1.393316,-1.393316,-1.393316,-1.393316,-1.393316,-1.393316 +-1.392336,-1.392336,-1.392336,-1.392336,-1.392336,-1.392336 +-1.391356,-1.391356,-1.391356,-1.391356,-1.391356,-1.391356 +-1.390376,-1.390376,-1.390376,-1.390376,-1.390376,-1.390376 +-1.389396,-1.389396,-1.389396,-1.389396,-1.389396,-1.389396 +-1.388416,-1.388416,-1.388416,-1.388416,-1.388416,-1.388416 +-1.387436,-1.387436,-1.387436,-1.387436,-1.387436,-1.387436 +-1.386456,-1.386456,-1.386456,-1.386456,-1.386456,-1.386456 +-1.385476,-1.385476,-1.385476,-1.385476,-1.385476,-1.385476 +-1.384496,-1.384496,-1.384496,-1.384496,-1.384496,-1.384496 +-1.383516,-1.383516,-1.383516,-1.383516,-1.383516,-1.383516 +-1.382536,-1.382536,-1.382536,-1.382536,-1.382536,-1.382536 +-1.381556,-1.381556,-1.381556,-1.381556,-1.381556,-1.381556 +-1.380576,-1.380576,-1.380576,-1.380576,-1.380576,-1.380576 +-1.379596,-1.379596,-1.379596,-1.379596,-1.379596,-1.379596 +-1.378616,-1.378616,-1.378616,-1.378616,-1.378616,-1.378616 +-1.377636,-1.377636,-1.377636,-1.377636,-1.377636,-1.377636 +-1.376656,-1.376656,-1.376656,-1.376656,-1.376656,-1.376656 +-1.375676,-1.375676,-1.375676,-1.375676,-1.375676,-1.375676 +-1.374696,-1.374696,-1.374696,-1.374696,-1.374696,-1.374696 +-1.373716,-1.373716,-1.373716,-1.373716,-1.373716,-1.373716 +-1.372736,-1.372736,-1.372736,-1.372736,-1.372736,-1.372736 +-1.371756,-1.371756,-1.371756,-1.371756,-1.371756,-1.371756 +-1.370776,-1.370776,-1.370776,-1.370776,-1.370776,-1.370776 +-1.369796,-1.369796,-1.369796,-1.369796,-1.369796,-1.369796 +-1.368816,-1.368816,-1.368816,-1.368816,-1.368816,-1.368816 +-1.367836,-1.367836,-1.367836,-1.367836,-1.367836,-1.367836 +-1.366856,-1.366856,-1.366856,-1.366856,-1.366856,-1.366856 +-1.365876,-1.365876,-1.365876,-1.365876,-1.365876,-1.365876 +-1.364896,-1.364896,-1.364896,-1.364896,-1.364896,-1.364896 +-1.363916,-1.363916,-1.363916,-1.363916,-1.363916,-1.363916 +-1.362936,-1.362936,-1.362936,-1.362936,-1.362936,-1.362936 +-1.361956,-1.361956,-1.361956,-1.361956,-1.361956,-1.361956 +-1.360976,-1.360976,-1.360976,-1.360976,-1.360976,-1.360976 +-1.359996,-1.359996,-1.359996,-1.359996,-1.359996,-1.359996 +-1.359016,-1.359016,-1.359016,-1.359016,-1.359016,-1.359016 +-1.358036,-1.358036,-1.358036,-1.358036,-1.358036,-1.358036 +-1.357056,-1.357056,-1.357056,-1.357056,-1.357056,-1.357056 +-1.356076,-1.356076,-1.356076,-1.356076,-1.356076,-1.356076 +-1.355096,-1.355096,-1.355096,-1.355096,-1.355096,-1.355096 +-1.354116,-1.354116,-1.354116,-1.354116,-1.354116,-1.354116 +-1.353136,-1.353136,-1.353136,-1.353136,-1.353136,-1.353136 +-1.352156,-1.352156,-1.352156,-1.352156,-1.352156,-1.352156 +-1.351176,-1.351176,-1.351176,-1.351176,-1.351176,-1.351176 +-1.350196,-1.350196,-1.350196,-1.350196,-1.350196,-1.350196 +-1.349216,-1.349216,-1.349216,-1.349216,-1.349216,-1.349216 +-1.348236,-1.348236,-1.348236,-1.348236,-1.348236,-1.348236 +-1.347256,-1.347256,-1.347256,-1.347256,-1.347256,-1.347256 +-1.346276,-1.346276,-1.346276,-1.346276,-1.346276,-1.346276 +-1.345296,-1.345296,-1.345296,-1.345296,-1.345296,-1.345296 +-1.344316,-1.344316,-1.344316,-1.344316,-1.344316,-1.344316 +-1.343336,-1.343336,-1.343336,-1.343336,-1.343336,-1.343336 +-1.342356,-1.342356,-1.342356,-1.342356,-1.342356,-1.342356 +-1.341376,-1.341376,-1.341376,-1.341376,-1.341376,-1.341376 +-1.340396,-1.340396,-1.340396,-1.340396,-1.340396,-1.340396 +-1.339416,-1.339416,-1.339416,-1.339416,-1.339416,-1.339416 +-1.338436,-1.338436,-1.338436,-1.338436,-1.338436,-1.338436 +-1.337456,-1.337456,-1.337456,-1.337456,-1.337456,-1.337456 +-1.336476,-1.336476,-1.336476,-1.336476,-1.336476,-1.336476 +-1.335496,-1.335496,-1.335496,-1.335496,-1.335496,-1.335496 +-1.334516,-1.334516,-1.334516,-1.334516,-1.334516,-1.334516 +-1.333536,-1.333536,-1.333536,-1.333536,-1.333536,-1.333536 +-1.332556,-1.332556,-1.332556,-1.332556,-1.332556,-1.332556 +-1.331576,-1.331576,-1.331576,-1.331576,-1.331576,-1.331576 +-1.330596,-1.330596,-1.330596,-1.330596,-1.330596,-1.330596 +-1.329616,-1.329616,-1.329616,-1.329616,-1.329616,-1.329616 +-1.328636,-1.328636,-1.328636,-1.328636,-1.328636,-1.328636 +-1.327656,-1.327656,-1.327656,-1.327656,-1.327656,-1.327656 +-1.326676,-1.326676,-1.326676,-1.326676,-1.326676,-1.326676 +-1.325696,-1.325696,-1.325696,-1.325696,-1.325696,-1.325696 +-1.324716,-1.324716,-1.324716,-1.324716,-1.324716,-1.324716 +-1.323736,-1.323736,-1.323736,-1.323736,-1.323736,-1.323736 +-1.322756,-1.322756,-1.322756,-1.322756,-1.322756,-1.322756 +-1.321776,-1.321776,-1.321776,-1.321776,-1.321776,-1.321776 +-1.320796,-1.320796,-1.320796,-1.320796,-1.320796,-1.320796 +-1.319816,-1.319816,-1.319816,-1.319816,-1.319816,-1.319816 +-1.318836,-1.318836,-1.318836,-1.318836,-1.318836,-1.318836 +-1.317856,-1.317856,-1.317856,-1.317856,-1.317856,-1.317856 +-1.316876,-1.316876,-1.316876,-1.316876,-1.316876,-1.316876 +-1.315896,-1.315896,-1.315896,-1.315896,-1.315896,-1.315896 +-1.314916,-1.314916,-1.314916,-1.314916,-1.314916,-1.314916 +-1.313936,-1.313936,-1.313936,-1.313936,-1.313936,-1.313936 +-1.312956,-1.312956,-1.312956,-1.312956,-1.312956,-1.312956 +-1.311976,-1.311976,-1.311976,-1.311976,-1.311976,-1.311976 +-1.310996,-1.310996,-1.310996,-1.310996,-1.310996,-1.310996 +-1.310016,-1.310016,-1.310016,-1.310016,-1.310016,-1.310016 +-1.309036,-1.309036,-1.309036,-1.309036,-1.309036,-1.309036 +-1.308056,-1.308056,-1.308056,-1.308056,-1.308056,-1.308056 +-1.307076,-1.307076,-1.307076,-1.307076,-1.307076,-1.307076 +-1.306096,-1.306096,-1.306096,-1.306096,-1.306096,-1.306096 +-1.305116,-1.305116,-1.305116,-1.305116,-1.305116,-1.305116 +-1.304136,-1.304136,-1.304136,-1.304136,-1.304136,-1.304136 +-1.303156,-1.303156,-1.303156,-1.303156,-1.303156,-1.303156 +-1.302176,-1.302176,-1.302176,-1.302176,-1.302176,-1.302176 +-1.301196,-1.301196,-1.301196,-1.301196,-1.301196,-1.301196 +-1.300216,-1.300216,-1.300216,-1.300216,-1.300216,-1.300216 +-1.299236,-1.299236,-1.299236,-1.299236,-1.299236,-1.299236 +-1.298256,-1.298256,-1.298256,-1.298256,-1.298256,-1.298256 +-1.297276,-1.297276,-1.297276,-1.297276,-1.297276,-1.297276 +-1.296296,-1.296296,-1.296296,-1.296296,-1.296296,-1.296296 +-1.295316,-1.295316,-1.295316,-1.295316,-1.295316,-1.295316 +-1.294336,-1.294336,-1.294336,-1.294336,-1.294336,-1.294336 +-1.293356,-1.293356,-1.293356,-1.293356,-1.293356,-1.293356 +-1.292376,-1.292376,-1.292376,-1.292376,-1.292376,-1.292376 +-1.291396,-1.291396,-1.291396,-1.291396,-1.291396,-1.291396 +-1.290416,-1.290416,-1.290416,-1.290416,-1.290416,-1.290416 +-1.289436,-1.289436,-1.289436,-1.289436,-1.289436,-1.289436 +-1.288456,-1.288456,-1.288456,-1.288456,-1.288456,-1.288456 +-1.287476,-1.287476,-1.287476,-1.287476,-1.287476,-1.287476 +-1.286496,-1.286496,-1.286496,-1.286496,-1.286496,-1.286496 +-1.285516,-1.285516,-1.285516,-1.285516,-1.285516,-1.285516 +-1.284536,-1.284536,-1.284536,-1.284536,-1.284536,-1.284536 +-1.283556,-1.283556,-1.283556,-1.283556,-1.283556,-1.283556 +-1.282576,-1.282576,-1.282576,-1.282576,-1.282576,-1.282576 +-1.281596,-1.281596,-1.281596,-1.281596,-1.281596,-1.281596 +-1.280616,-1.280616,-1.280616,-1.280616,-1.280616,-1.280616 +-1.279636,-1.279636,-1.279636,-1.279636,-1.279636,-1.279636 +-1.278656,-1.278656,-1.278656,-1.278656,-1.278656,-1.278656 +-1.277676,-1.277676,-1.277676,-1.277676,-1.277676,-1.277676 +-1.276696,-1.276696,-1.276696,-1.276696,-1.276696,-1.276696 +-1.275716,-1.275716,-1.275716,-1.275716,-1.275716,-1.275716 +-1.274736,-1.274736,-1.274736,-1.274736,-1.274736,-1.274736 +-1.273756,-1.273756,-1.273756,-1.273756,-1.273756,-1.273756 +-1.272776,-1.272776,-1.272776,-1.272776,-1.272776,-1.272776 +-1.271796,-1.271796,-1.271796,-1.271796,-1.271796,-1.271796 +-1.270816,-1.270816,-1.270816,-1.270816,-1.270816,-1.270816 +-1.269836,-1.269836,-1.269836,-1.269836,-1.269836,-1.269836 +-1.268856,-1.268856,-1.268856,-1.268856,-1.268856,-1.268856 +-1.267876,-1.267876,-1.267876,-1.267876,-1.267876,-1.267876 +-1.266896,-1.266896,-1.266896,-1.266896,-1.266896,-1.266896 +-1.265916,-1.265916,-1.265916,-1.265916,-1.265916,-1.265916 +-1.264936,-1.264936,-1.264936,-1.264936,-1.264936,-1.264936 +-1.263956,-1.263956,-1.263956,-1.263956,-1.263956,-1.263956 +-1.262976,-1.262976,-1.262976,-1.262976,-1.262976,-1.262976 +-1.261996,-1.261996,-1.261996,-1.261996,-1.261996,-1.261996 +-1.261016,-1.261016,-1.261016,-1.261016,-1.261016,-1.261016 +-1.260036,-1.260036,-1.260036,-1.260036,-1.260036,-1.260036 +-1.259056,-1.259056,-1.259056,-1.259056,-1.259056,-1.259056 +-1.258076,-1.258076,-1.258076,-1.258076,-1.258076,-1.258076 +-1.257096,-1.257096,-1.257096,-1.257096,-1.257096,-1.257096 +-1.256116,-1.256116,-1.256116,-1.256116,-1.256116,-1.256116 +-1.255136,-1.255136,-1.255136,-1.255136,-1.255136,-1.255136 +-1.254156,-1.254156,-1.254156,-1.254156,-1.254156,-1.254156 +-1.253176,-1.253176,-1.253176,-1.253176,-1.253176,-1.253176 +-1.252196,-1.252196,-1.252196,-1.252196,-1.252196,-1.252196 +-1.251216,-1.251216,-1.251216,-1.251216,-1.251216,-1.251216 +-1.250236,-1.250236,-1.250236,-1.250236,-1.250236,-1.250236 +-1.249256,-1.249256,-1.249256,-1.249256,-1.249256,-1.249256 +-1.248276,-1.248276,-1.248276,-1.248276,-1.248276,-1.248276 +-1.247296,-1.247296,-1.247296,-1.247296,-1.247296,-1.247296 +-1.246316,-1.246316,-1.246316,-1.246316,-1.246316,-1.246316 +-1.245336,-1.245336,-1.245336,-1.245336,-1.245336,-1.245336 +-1.244356,-1.244356,-1.244356,-1.244356,-1.244356,-1.244356 +-1.243376,-1.243376,-1.243376,-1.243376,-1.243376,-1.243376 +-1.242396,-1.242396,-1.242396,-1.242396,-1.242396,-1.242396 +-1.241416,-1.241416,-1.241416,-1.241416,-1.241416,-1.241416 +-1.240436,-1.240436,-1.240436,-1.240436,-1.240436,-1.240436 +-1.239456,-1.239456,-1.239456,-1.239456,-1.239456,-1.239456 +-1.238476,-1.238476,-1.238476,-1.238476,-1.238476,-1.238476 +-1.237496,-1.237496,-1.237496,-1.237496,-1.237496,-1.237496 +-1.236516,-1.236516,-1.236516,-1.236516,-1.236516,-1.236516 +-1.235536,-1.235536,-1.235536,-1.235536,-1.235536,-1.235536 +-1.234556,-1.234556,-1.234556,-1.234556,-1.234556,-1.234556 +-1.233576,-1.233576,-1.233576,-1.233576,-1.233576,-1.233576 +-1.232596,-1.232596,-1.232596,-1.232596,-1.232596,-1.232596 +-1.231616,-1.231616,-1.231616,-1.231616,-1.231616,-1.231616 +-1.230636,-1.230636,-1.230636,-1.230636,-1.230636,-1.230636 +-1.229656,-1.229656,-1.229656,-1.229656,-1.229656,-1.229656 +-1.228676,-1.228676,-1.228676,-1.228676,-1.228676,-1.228676 +-1.227696,-1.227696,-1.227696,-1.227696,-1.227696,-1.227696 +-1.226716,-1.226716,-1.226716,-1.226716,-1.226716,-1.226716 +-1.225736,-1.225736,-1.225736,-1.225736,-1.225736,-1.225736 +-1.224756,-1.224756,-1.224756,-1.224756,-1.224756,-1.224756 +-1.223776,-1.223776,-1.223776,-1.223776,-1.223776,-1.223776 +-1.222796,-1.222796,-1.222796,-1.222796,-1.222796,-1.222796 +-1.221816,-1.221816,-1.221816,-1.221816,-1.221816,-1.221816 +-1.220836,-1.220836,-1.220836,-1.220836,-1.220836,-1.220836 +-1.219856,-1.219856,-1.219856,-1.219856,-1.219856,-1.219856 +-1.218876,-1.218876,-1.218876,-1.218876,-1.218876,-1.218876 +-1.217896,-1.217896,-1.217896,-1.217896,-1.217896,-1.217896 +-1.216916,-1.216916,-1.216916,-1.216916,-1.216916,-1.216916 +-1.215936,-1.215936,-1.215936,-1.215936,-1.215936,-1.215936 +-1.214956,-1.214956,-1.214956,-1.214956,-1.214956,-1.214956 +-1.213976,-1.213976,-1.213976,-1.213976,-1.213976,-1.213976 +-1.212996,-1.212996,-1.212996,-1.212996,-1.212996,-1.212996 +-1.212016,-1.212016,-1.212016,-1.212016,-1.212016,-1.212016 +-1.211036,-1.211036,-1.211036,-1.211036,-1.211036,-1.211036 +-1.210056,-1.210056,-1.210056,-1.210056,-1.210056,-1.210056 +-1.209076,-1.209076,-1.209076,-1.209076,-1.209076,-1.209076 +-1.208096,-1.208096,-1.208096,-1.208096,-1.208096,-1.208096 +-1.207116,-1.207116,-1.207116,-1.207116,-1.207116,-1.207116 +-1.206136,-1.206136,-1.206136,-1.206136,-1.206136,-1.206136 +-1.205156,-1.205156,-1.205156,-1.205156,-1.205156,-1.205156 +-1.204176,-1.204176,-1.204176,-1.204176,-1.204176,-1.204176 +-1.203196,-1.203196,-1.203196,-1.203196,-1.203196,-1.203196 +-1.202216,-1.202216,-1.202216,-1.202216,-1.202216,-1.202216 +-1.201236,-1.201236,-1.201236,-1.201236,-1.201236,-1.201236 +-1.200256,-1.200256,-1.200256,-1.200256,-1.200256,-1.200256 +-1.199276,-1.199276,-1.199276,-1.199276,-1.199276,-1.199276 +-1.198296,-1.198296,-1.198296,-1.198296,-1.198296,-1.198296 +-1.197316,-1.197316,-1.197316,-1.197316,-1.197316,-1.197316 +-1.196336,-1.196336,-1.196336,-1.196336,-1.196336,-1.196336 +-1.195356,-1.195356,-1.195356,-1.195356,-1.195356,-1.195356 +-1.194376,-1.194376,-1.194376,-1.194376,-1.194376,-1.194376 +-1.193396,-1.193396,-1.193396,-1.193396,-1.193396,-1.193396 +-1.192416,-1.192416,-1.192416,-1.192416,-1.192416,-1.192416 +-1.191436,-1.191436,-1.191436,-1.191436,-1.191436,-1.191436 +-1.190456,-1.190456,-1.190456,-1.190456,-1.190456,-1.190456 +-1.189476,-1.189476,-1.189476,-1.189476,-1.189476,-1.189476 +-1.188496,-1.188496,-1.188496,-1.188496,-1.188496,-1.188496 +-1.187516,-1.187516,-1.187516,-1.187516,-1.187516,-1.187516 +-1.186536,-1.186536,-1.186536,-1.186536,-1.186536,-1.186536 +-1.185556,-1.185556,-1.185556,-1.185556,-1.185556,-1.185556 +-1.184576,-1.184576,-1.184576,-1.184576,-1.184576,-1.184576 +-1.183596,-1.183596,-1.183596,-1.183596,-1.183596,-1.183596 +-1.182616,-1.182616,-1.182616,-1.182616,-1.182616,-1.182616 +-1.181636,-1.181636,-1.181636,-1.181636,-1.181636,-1.181636 +-1.180656,-1.180656,-1.180656,-1.180656,-1.180656,-1.180656 +-1.179676,-1.179676,-1.179676,-1.179676,-1.179676,-1.179676 +-1.178696,-1.178696,-1.178696,-1.178696,-1.178696,-1.178696 +-1.177716,-1.177716,-1.177716,-1.177716,-1.177716,-1.177716 +-1.176736,-1.176736,-1.176736,-1.176736,-1.176736,-1.176736 +-1.175756,-1.175756,-1.175756,-1.175756,-1.175756,-1.175756 +-1.174776,-1.174776,-1.174776,-1.174776,-1.174776,-1.174776 +-1.173796,-1.173796,-1.173796,-1.173796,-1.173796,-1.173796 +-1.172816,-1.172816,-1.172816,-1.172816,-1.172816,-1.172816 +-1.171836,-1.171836,-1.171836,-1.171836,-1.171836,-1.171836 +-1.170856,-1.170856,-1.170856,-1.170856,-1.170856,-1.170856 +-1.169876,-1.169876,-1.169876,-1.169876,-1.169876,-1.169876 +-1.168896,-1.168896,-1.168896,-1.168896,-1.168896,-1.168896 +-1.167916,-1.167916,-1.167916,-1.167916,-1.167916,-1.167916 +-1.166936,-1.166936,-1.166936,-1.166936,-1.166936,-1.166936 +-1.165956,-1.165956,-1.165956,-1.165956,-1.165956,-1.165956 +-1.164976,-1.164976,-1.164976,-1.164976,-1.164976,-1.164976 +-1.163996,-1.163996,-1.163996,-1.163996,-1.163996,-1.163996 +-1.163016,-1.163016,-1.163016,-1.163016,-1.163016,-1.163016 +-1.162036,-1.162036,-1.162036,-1.162036,-1.162036,-1.162036 +-1.161056,-1.161056,-1.161056,-1.161056,-1.161056,-1.161056 +-1.160076,-1.160076,-1.160076,-1.160076,-1.160076,-1.160076 +-1.159096,-1.159096,-1.159096,-1.159096,-1.159096,-1.159096 +-1.158116,-1.158116,-1.158116,-1.158116,-1.158116,-1.158116 +-1.157136,-1.157136,-1.157136,-1.157136,-1.157136,-1.157136 +-1.156156,-1.156156,-1.156156,-1.156156,-1.156156,-1.156156 +-1.155176,-1.155176,-1.155176,-1.155176,-1.155176,-1.155176 +-1.154196,-1.154196,-1.154196,-1.154196,-1.154196,-1.154196 +-1.153216,-1.153216,-1.153216,-1.153216,-1.153216,-1.153216 +-1.152236,-1.152236,-1.152236,-1.152236,-1.152236,-1.152236 +-1.151256,-1.151256,-1.151256,-1.151256,-1.151256,-1.151256 +-1.150276,-1.150276,-1.150276,-1.150276,-1.150276,-1.150276 +-1.149296,-1.149296,-1.149296,-1.149296,-1.149296,-1.149296 +-1.148316,-1.148316,-1.148316,-1.148316,-1.148316,-1.148316 +-1.147336,-1.147336,-1.147336,-1.147336,-1.147336,-1.147336 +-1.146356,-1.146356,-1.146356,-1.146356,-1.146356,-1.146356 +-1.145376,-1.145376,-1.145376,-1.145376,-1.145376,-1.145376 +-1.144396,-1.144396,-1.144396,-1.144396,-1.144396,-1.144396 +-1.143416,-1.143416,-1.143416,-1.143416,-1.143416,-1.143416 +-1.142436,-1.142436,-1.142436,-1.142436,-1.142436,-1.142436 +-1.141456,-1.141456,-1.141456,-1.141456,-1.141456,-1.141456 +-1.140476,-1.140476,-1.140476,-1.140476,-1.140476,-1.140476 +-1.139496,-1.139496,-1.139496,-1.139496,-1.139496,-1.139496 +-1.138516,-1.138516,-1.138516,-1.138516,-1.138516,-1.138516 +-1.137536,-1.137536,-1.137536,-1.137536,-1.137536,-1.137536 +-1.136556,-1.136556,-1.136556,-1.136556,-1.136556,-1.136556 +-1.135576,-1.135576,-1.135576,-1.135576,-1.135576,-1.135576 +-1.134596,-1.134596,-1.134596,-1.134596,-1.134596,-1.134596 +-1.133616,-1.133616,-1.133616,-1.133616,-1.133616,-1.133616 +-1.132636,-1.132636,-1.132636,-1.132636,-1.132636,-1.132636 +-1.131656,-1.131656,-1.131656,-1.131656,-1.131656,-1.131656 +-1.130676,-1.130676,-1.130676,-1.130676,-1.130676,-1.130676 +-1.129696,-1.129696,-1.129696,-1.129696,-1.129696,-1.129696 +-1.128716,-1.128716,-1.128716,-1.128716,-1.128716,-1.128716 +-1.127736,-1.127736,-1.127736,-1.127736,-1.127736,-1.127736 +-1.126756,-1.126756,-1.126756,-1.126756,-1.126756,-1.126756 +-1.125776,-1.125776,-1.125776,-1.125776,-1.125776,-1.125776 +-1.124796,-1.124796,-1.124796,-1.124796,-1.124796,-1.124796 +-1.123816,-1.123816,-1.123816,-1.123816,-1.123816,-1.123816 +-1.122836,-1.122836,-1.122836,-1.122836,-1.122836,-1.122836 +-1.121856,-1.121856,-1.121856,-1.121856,-1.121856,-1.121856 +-1.120876,-1.120876,-1.120876,-1.120876,-1.120876,-1.120876 +-1.119896,-1.119896,-1.119896,-1.119896,-1.119896,-1.119896 +-1.118916,-1.118916,-1.118916,-1.118916,-1.118916,-1.118916 +-1.117936,-1.117936,-1.117936,-1.117936,-1.117936,-1.117936 +-1.116956,-1.116956,-1.116956,-1.116956,-1.116956,-1.116956 +-1.115976,-1.115976,-1.115976,-1.115976,-1.115976,-1.115976 +-1.114996,-1.114996,-1.114996,-1.114996,-1.114996,-1.114996 +-1.114016,-1.114016,-1.114016,-1.114016,-1.114016,-1.114016 +-1.113036,-1.113036,-1.113036,-1.113036,-1.113036,-1.113036 +-1.112056,-1.112056,-1.112056,-1.112056,-1.112056,-1.112056 +-1.111076,-1.111076,-1.111076,-1.111076,-1.111076,-1.111076 +-1.110096,-1.110096,-1.110096,-1.110096,-1.110096,-1.110096 +-1.109116,-1.109116,-1.109116,-1.109116,-1.109116,-1.109116 +-1.108136,-1.108136,-1.108136,-1.108136,-1.108136,-1.108136 +-1.107156,-1.107156,-1.107156,-1.107156,-1.107156,-1.107156 +-1.106176,-1.106176,-1.106176,-1.106176,-1.106176,-1.106176 +-1.105196,-1.105196,-1.105196,-1.105196,-1.105196,-1.105196 +-1.104216,-1.104216,-1.104216,-1.104216,-1.104216,-1.104216 +-1.103236,-1.103236,-1.103236,-1.103236,-1.103236,-1.103236 +-1.102256,-1.102256,-1.102256,-1.102256,-1.102256,-1.102256 +-1.101276,-1.101276,-1.101276,-1.101276,-1.101276,-1.101276 +-1.100296,-1.100296,-1.100296,-1.100296,-1.100296,-1.100296 +-1.099316,-1.099316,-1.099316,-1.099316,-1.099316,-1.099316 +-1.098336,-1.098336,-1.098336,-1.098336,-1.098336,-1.098336 +-1.097356,-1.097356,-1.097356,-1.097356,-1.097356,-1.097356 +-1.096376,-1.096376,-1.096376,-1.096376,-1.096376,-1.096376 +-1.095396,-1.095396,-1.095396,-1.095396,-1.095396,-1.095396 +-1.094416,-1.094416,-1.094416,-1.094416,-1.094416,-1.094416 +-1.093436,-1.093436,-1.093436,-1.093436,-1.093436,-1.093436 +-1.092456,-1.092456,-1.092456,-1.092456,-1.092456,-1.092456 +-1.091476,-1.091476,-1.091476,-1.091476,-1.091476,-1.091476 +-1.090496,-1.090496,-1.090496,-1.090496,-1.090496,-1.090496 +-1.089516,-1.089516,-1.089516,-1.089516,-1.089516,-1.089516 +-1.088536,-1.088536,-1.088536,-1.088536,-1.088536,-1.088536 +-1.087556,-1.087556,-1.087556,-1.087556,-1.087556,-1.087556 +-1.086576,-1.086576,-1.086576,-1.086576,-1.086576,-1.086576 +-1.085596,-1.085596,-1.085596,-1.085596,-1.085596,-1.085596 +-1.084616,-1.084616,-1.084616,-1.084616,-1.084616,-1.084616 +-1.083636,-1.083636,-1.083636,-1.083636,-1.083636,-1.083636 +-1.082656,-1.082656,-1.082656,-1.082656,-1.082656,-1.082656 +-1.081676,-1.081676,-1.081676,-1.081676,-1.081676,-1.081676 +-1.080696,-1.080696,-1.080696,-1.080696,-1.080696,-1.080696 +-1.079716,-1.079716,-1.079716,-1.079716,-1.079716,-1.079716 +-1.078736,-1.078736,-1.078736,-1.078736,-1.078736,-1.078736 +-1.077756,-1.077756,-1.077756,-1.077756,-1.077756,-1.077756 +-1.076776,-1.076776,-1.076776,-1.076776,-1.076776,-1.076776 +-1.075796,-1.075796,-1.075796,-1.075796,-1.075796,-1.075796 +-1.074816,-1.074816,-1.074816,-1.074816,-1.074816,-1.074816 +-1.073836,-1.073836,-1.073836,-1.073836,-1.073836,-1.073836 +-1.072856,-1.072856,-1.072856,-1.072856,-1.072856,-1.072856 +-1.071876,-1.071876,-1.071876,-1.071876,-1.071876,-1.071876 +-1.070896,-1.070896,-1.070896,-1.070896,-1.070896,-1.070896 +-1.069916,-1.069916,-1.069916,-1.069916,-1.069916,-1.069916 +-1.068936,-1.068936,-1.068936,-1.068936,-1.068936,-1.068936 +-1.067956,-1.067956,-1.067956,-1.067956,-1.067956,-1.067956 +-1.066976,-1.066976,-1.066976,-1.066976,-1.066976,-1.066976 +-1.065996,-1.065996,-1.065996,-1.065996,-1.065996,-1.065996 +-1.065016,-1.065016,-1.065016,-1.065016,-1.065016,-1.065016 +-1.064036,-1.064036,-1.064036,-1.064036,-1.064036,-1.064036 +-1.063056,-1.063056,-1.063056,-1.063056,-1.063056,-1.063056 +-1.062076,-1.062076,-1.062076,-1.062076,-1.062076,-1.062076 +-1.061096,-1.061096,-1.061096,-1.061096,-1.061096,-1.061096 +-1.060116,-1.060116,-1.060116,-1.060116,-1.060116,-1.060116 +-1.059136,-1.059136,-1.059136,-1.059136,-1.059136,-1.059136 +-1.058156,-1.058156,-1.058156,-1.058156,-1.058156,-1.058156 +-1.057176,-1.057176,-1.057176,-1.057176,-1.057176,-1.057176 +-1.056196,-1.056196,-1.056196,-1.056196,-1.056196,-1.056196 +-1.055216,-1.055216,-1.055216,-1.055216,-1.055216,-1.055216 +-1.054236,-1.054236,-1.054236,-1.054236,-1.054236,-1.054236 +-1.053256,-1.053256,-1.053256,-1.053256,-1.053256,-1.053256 +-1.052276,-1.052276,-1.052276,-1.052276,-1.052276,-1.052276 +-1.051296,-1.051296,-1.051296,-1.051296,-1.051296,-1.051296 +-1.050316,-1.050316,-1.050316,-1.050316,-1.050316,-1.050316 +-1.049336,-1.049336,-1.049336,-1.049336,-1.049336,-1.049336 +-1.048356,-1.048356,-1.048356,-1.048356,-1.048356,-1.048356 +-1.047376,-1.047376,-1.047376,-1.047376,-1.047376,-1.047376 +-1.046396,-1.046396,-1.046396,-1.046396,-1.046396,-1.046396 +-1.045416,-1.045416,-1.045416,-1.045416,-1.045416,-1.045416 +-1.044436,-1.044436,-1.044436,-1.044436,-1.044436,-1.044436 +-1.043456,-1.043456,-1.043456,-1.043456,-1.043456,-1.043456 +-1.042476,-1.042476,-1.042476,-1.042476,-1.042476,-1.042476 +-1.041496,-1.041496,-1.041496,-1.041496,-1.041496,-1.041496 +-1.040516,-1.040516,-1.040516,-1.040516,-1.040516,-1.040516 +-1.039536,-1.039536,-1.039536,-1.039536,-1.039536,-1.039536 +-1.038556,-1.038556,-1.038556,-1.038556,-1.038556,-1.038556 +-1.037576,-1.037576,-1.037576,-1.037576,-1.037576,-1.037576 +-1.036596,-1.036596,-1.036596,-1.036596,-1.036596,-1.036596 +-1.035616,-1.035616,-1.035616,-1.035616,-1.035616,-1.035616 +-1.034636,-1.034636,-1.034636,-1.034636,-1.034636,-1.034636 +-1.033656,-1.033656,-1.033656,-1.033656,-1.033656,-1.033656 +-1.032676,-1.032676,-1.032676,-1.032676,-1.032676,-1.032676 +-1.031696,-1.031696,-1.031696,-1.031696,-1.031696,-1.031696 +-1.030716,-1.030716,-1.030716,-1.030716,-1.030716,-1.030716 +-1.029736,-1.029736,-1.029736,-1.029736,-1.029736,-1.029736 +-1.028756,-1.028756,-1.028756,-1.028756,-1.028756,-1.028756 +-1.027776,-1.027776,-1.027776,-1.027776,-1.027776,-1.027776 +-1.026796,-1.026796,-1.026796,-1.026796,-1.026796,-1.026796 +-1.025816,-1.025816,-1.025816,-1.025816,-1.025816,-1.025816 +-1.024836,-1.024836,-1.024836,-1.024836,-1.024836,-1.024836 +-1.023856,-1.023856,-1.023856,-1.023856,-1.023856,-1.023856 +-1.022876,-1.022876,-1.022876,-1.022876,-1.022876,-1.022876 +-1.021896,-1.021896,-1.021896,-1.021896,-1.021896,-1.021896 +-1.020916,-1.020916,-1.020916,-1.020916,-1.020916,-1.020916 +-1.019936,-1.019936,-1.019936,-1.019936,-1.019936,-1.019936 +-1.018956,-1.018956,-1.018956,-1.018956,-1.018956,-1.018956 +-1.017976,-1.017976,-1.017976,-1.017976,-1.017976,-1.017976 +-1.016996,-1.016996,-1.016996,-1.016996,-1.016996,-1.016996 +-1.016016,-1.016016,-1.016016,-1.016016,-1.016016,-1.016016 +-1.015036,-1.015036,-1.015036,-1.015036,-1.015036,-1.015036 +-1.014056,-1.014056,-1.014056,-1.014056,-1.014056,-1.014056 +-1.013076,-1.013076,-1.013076,-1.013076,-1.013076,-1.013076 +-1.012096,-1.012096,-1.012096,-1.012096,-1.012096,-1.012096 +-1.011116,-1.011116,-1.011116,-1.011116,-1.011116,-1.011116 +-1.010136,-1.010136,-1.010136,-1.010136,-1.010136,-1.010136 +-1.009156,-1.009156,-1.009156,-1.009156,-1.009156,-1.009156 +-1.008176,-1.008176,-1.008176,-1.008176,-1.008176,-1.008176 +-1.007196,-1.007196,-1.007196,-1.007196,-1.007196,-1.007196 +-1.006216,-1.006216,-1.006216,-1.006216,-1.006216,-1.006216 +-1.005236,-1.005236,-1.005236,-1.005236,-1.005236,-1.005236 +-1.004256,-1.004256,-1.004256,-1.004256,-1.004256,-1.004256 +-1.003276,-1.003276,-1.003276,-1.003276,-1.003276,-1.003276 +-1.002296,-1.002296,-1.002296,-1.002296,-1.002296,-1.002296 +-1.001316,-1.001316,-1.001316,-1.001316,-1.001316,-1.001316 +-1.000336,-1.000336,-1.000336,-1.000336,-1.000336,-1.000336 +-0.999356,-0.999356,-0.999356,-0.999356,-0.999356,-0.999356 +-0.998376,-0.998376,-0.998376,-0.998376,-0.998376,-0.998376 +-0.997396,-0.997396,-0.997396,-0.997396,-0.997396,-0.997396 +-0.996416,-0.996416,-0.996416,-0.996416,-0.996416,-0.996416 +-0.995436,-0.995436,-0.995436,-0.995436,-0.995436,-0.995436 +-0.994456,-0.994456,-0.994456,-0.994456,-0.994456,-0.994456 +-0.993476,-0.993476,-0.993476,-0.993476,-0.993476,-0.993476 +-0.992496,-0.992496,-0.992496,-0.992496,-0.992496,-0.992496 +-0.991516,-0.991516,-0.991516,-0.991516,-0.991516,-0.991516 +-0.990536,-0.990536,-0.990536,-0.990536,-0.990536,-0.990536 +-0.989556,-0.989556,-0.989556,-0.989556,-0.989556,-0.989556 +-0.988576,-0.988576,-0.988576,-0.988576,-0.988576,-0.988576 +-0.987596,-0.987596,-0.987596,-0.987596,-0.987596,-0.987596 +-0.986616,-0.986616,-0.986616,-0.986616,-0.986616,-0.986616 +-0.985636,-0.985636,-0.985636,-0.985636,-0.985636,-0.985636 +-0.984656,-0.984656,-0.984656,-0.984656,-0.984656,-0.984656 +-0.983676,-0.983676,-0.983676,-0.983676,-0.983676,-0.983676 +-0.982696,-0.982696,-0.982696,-0.982696,-0.982696,-0.982696 +-0.981716,-0.981716,-0.981716,-0.981716,-0.981716,-0.981716 +-0.980736,-0.980736,-0.980736,-0.980736,-0.980736,-0.980736 +-0.979756,-0.979756,-0.979756,-0.979756,-0.979756,-0.979756 +-0.978776,-0.978776,-0.978776,-0.978776,-0.978776,-0.978776 +-0.977796,-0.977796,-0.977796,-0.977796,-0.977796,-0.977796 +-0.976816,-0.976816,-0.976816,-0.976816,-0.976816,-0.976816 +-0.975836,-0.975836,-0.975836,-0.975836,-0.975836,-0.975836 +-0.974856,-0.974856,-0.974856,-0.974856,-0.974856,-0.974856 +-0.973876,-0.973876,-0.973876,-0.973876,-0.973876,-0.973876 +-0.972896,-0.972896,-0.972896,-0.972896,-0.972896,-0.972896 +-0.971916,-0.971916,-0.971916,-0.971916,-0.971916,-0.971916 +-0.970936,-0.970936,-0.970936,-0.970936,-0.970936,-0.970936 +-0.969956,-0.969956,-0.969956,-0.969956,-0.969956,-0.969956 +-0.968976,-0.968976,-0.968976,-0.968976,-0.968976,-0.968976 +-0.967996,-0.967996,-0.967996,-0.967996,-0.967996,-0.967996 +-0.967016,-0.967016,-0.967016,-0.967016,-0.967016,-0.967016 +-0.966036,-0.966036,-0.966036,-0.966036,-0.966036,-0.966036 +-0.965056,-0.965056,-0.965056,-0.965056,-0.965056,-0.965056 +-0.964076,-0.964076,-0.964076,-0.964076,-0.964076,-0.964076 +-0.963096,-0.963096,-0.963096,-0.963096,-0.963096,-0.963096 +-0.962116,-0.962116,-0.962116,-0.962116,-0.962116,-0.962116 +-0.961136,-0.961136,-0.961136,-0.961136,-0.961136,-0.961136 +-0.960156,-0.960156,-0.960156,-0.960156,-0.960156,-0.960156 +-0.959176,-0.959176,-0.959176,-0.959176,-0.959176,-0.959176 +-0.958196,-0.958196,-0.958196,-0.958196,-0.958196,-0.958196 +-0.957216,-0.957216,-0.957216,-0.957216,-0.957216,-0.957216 +-0.956236,-0.956236,-0.956236,-0.956236,-0.956236,-0.956236 +-0.955256,-0.955256,-0.955256,-0.955256,-0.955256,-0.955256 +-0.954276,-0.954276,-0.954276,-0.954276,-0.954276,-0.954276 +-0.953296,-0.953296,-0.953296,-0.953296,-0.953296,-0.953296 +-0.952316,-0.952316,-0.952316,-0.952316,-0.952316,-0.952316 +-0.951336,-0.951336,-0.951336,-0.951336,-0.951336,-0.951336 +-0.950356,-0.950356,-0.950356,-0.950356,-0.950356,-0.950356 +-0.949376,-0.949376,-0.949376,-0.949376,-0.949376,-0.949376 +-0.948396,-0.948396,-0.948396,-0.948396,-0.948396,-0.948396 +-0.947416,-0.947416,-0.947416,-0.947416,-0.947416,-0.947416 +-0.946436,-0.946436,-0.946436,-0.946436,-0.946436,-0.946436 +-0.945456,-0.945456,-0.945456,-0.945456,-0.945456,-0.945456 +-0.944476,-0.944476,-0.944476,-0.944476,-0.944476,-0.944476 +-0.943496,-0.943496,-0.943496,-0.943496,-0.943496,-0.943496 +-0.942516,-0.942516,-0.942516,-0.942516,-0.942516,-0.942516 +-0.941536,-0.941536,-0.941536,-0.941536,-0.941536,-0.941536 +-0.940556,-0.940556,-0.940556,-0.940556,-0.940556,-0.940556 +-0.939576,-0.939576,-0.939576,-0.939576,-0.939576,-0.939576 +-0.938596,-0.938596,-0.938596,-0.938596,-0.938596,-0.938596 +-0.937616,-0.937616,-0.937616,-0.937616,-0.937616,-0.937616 +-0.936636,-0.936636,-0.936636,-0.936636,-0.936636,-0.936636 +-0.935656,-0.935656,-0.935656,-0.935656,-0.935656,-0.935656 +-0.934676,-0.934676,-0.934676,-0.934676,-0.934676,-0.934676 +-0.933696,-0.933696,-0.933696,-0.933696,-0.933696,-0.933696 +-0.932716,-0.932716,-0.932716,-0.932716,-0.932716,-0.932716 +-0.931736,-0.931736,-0.931736,-0.931736,-0.931736,-0.931736 +-0.930756,-0.930756,-0.930756,-0.930756,-0.930756,-0.930756 +-0.929776,-0.929776,-0.929776,-0.929776,-0.929776,-0.929776 +-0.928796,-0.928796,-0.928796,-0.928796,-0.928796,-0.928796 +-0.927816,-0.927816,-0.927816,-0.927816,-0.927816,-0.927816 +-0.926836,-0.926836,-0.926836,-0.926836,-0.926836,-0.926836 +-0.925856,-0.925856,-0.925856,-0.925856,-0.925856,-0.925856 +-0.924876,-0.924876,-0.924876,-0.924876,-0.924876,-0.924876 +-0.923896,-0.923896,-0.923896,-0.923896,-0.923896,-0.923896 +-0.922916,-0.922916,-0.922916,-0.922916,-0.922916,-0.922916 +-0.921936,-0.921936,-0.921936,-0.921936,-0.921936,-0.921936 +-0.920956,-0.920956,-0.920956,-0.920956,-0.920956,-0.920956 +-0.919976,-0.919976,-0.919976,-0.919976,-0.919976,-0.919976 +-0.918996,-0.918996,-0.918996,-0.918996,-0.918996,-0.918996 +-0.918016,-0.918016,-0.918016,-0.918016,-0.918016,-0.918016 +-0.917036,-0.917036,-0.917036,-0.917036,-0.917036,-0.917036 +-0.916056,-0.916056,-0.916056,-0.916056,-0.916056,-0.916056 +-0.915076,-0.915076,-0.915076,-0.915076,-0.915076,-0.915076 +-0.914096,-0.914096,-0.914096,-0.914096,-0.914096,-0.914096 +-0.913116,-0.913116,-0.913116,-0.913116,-0.913116,-0.913116 +-0.912136,-0.912136,-0.912136,-0.912136,-0.912136,-0.912136 +-0.911156,-0.911156,-0.911156,-0.911156,-0.911156,-0.911156 +-0.910176,-0.910176,-0.910176,-0.910176,-0.910176,-0.910176 +-0.909196,-0.909196,-0.909196,-0.909196,-0.909196,-0.909196 +-0.908216,-0.908216,-0.908216,-0.908216,-0.908216,-0.908216 +-0.907236,-0.907236,-0.907236,-0.907236,-0.907236,-0.907236 +-0.906256,-0.906256,-0.906256,-0.906256,-0.906256,-0.906256 +-0.905276,-0.905276,-0.905276,-0.905276,-0.905276,-0.905276 +-0.904296,-0.904296,-0.904296,-0.904296,-0.904296,-0.904296 +-0.903316,-0.903316,-0.903316,-0.903316,-0.903316,-0.903316 +-0.902336,-0.902336,-0.902336,-0.902336,-0.902336,-0.902336 +-0.901356,-0.901356,-0.901356,-0.901356,-0.901356,-0.901356 +-0.900376,-0.900376,-0.900376,-0.900376,-0.900376,-0.900376 +-0.899396,-0.899396,-0.899396,-0.899396,-0.899396,-0.899396 +-0.898416,-0.898416,-0.898416,-0.898416,-0.898416,-0.898416 +-0.897436,-0.897436,-0.897436,-0.897436,-0.897436,-0.897436 +-0.896456,-0.896456,-0.896456,-0.896456,-0.896456,-0.896456 +-0.895476,-0.895476,-0.895476,-0.895476,-0.895476,-0.895476 +-0.894496,-0.894496,-0.894496,-0.894496,-0.894496,-0.894496 +-0.893516,-0.893516,-0.893516,-0.893516,-0.893516,-0.893516 +-0.892536,-0.892536,-0.892536,-0.892536,-0.892536,-0.892536 +-0.891556,-0.891556,-0.891556,-0.891556,-0.891556,-0.891556 +-0.890576,-0.890576,-0.890576,-0.890576,-0.890576,-0.890576 +-0.889596,-0.889596,-0.889596,-0.889596,-0.889596,-0.889596 +-0.888616,-0.888616,-0.888616,-0.888616,-0.888616,-0.888616 +-0.887636,-0.887636,-0.887636,-0.887636,-0.887636,-0.887636 +-0.886656,-0.886656,-0.886656,-0.886656,-0.886656,-0.886656 +-0.885676,-0.885676,-0.885676,-0.885676,-0.885676,-0.885676 +-0.884696,-0.884696,-0.884696,-0.884696,-0.884696,-0.884696 +-0.883716,-0.883716,-0.883716,-0.883716,-0.883716,-0.883716 +-0.882736,-0.882736,-0.882736,-0.882736,-0.882736,-0.882736 +-0.881756,-0.881756,-0.881756,-0.881756,-0.881756,-0.881756 +-0.880776,-0.880776,-0.880776,-0.880776,-0.880776,-0.880776 +-0.879796,-0.879796,-0.879796,-0.879796,-0.879796,-0.879796 +-0.878816,-0.878816,-0.878816,-0.878816,-0.878816,-0.878816 +-0.877836,-0.877836,-0.877836,-0.877836,-0.877836,-0.877836 +-0.876856,-0.876856,-0.876856,-0.876856,-0.876856,-0.876856 +-0.875876,-0.875876,-0.875876,-0.875876,-0.875876,-0.875876 +-0.874896,-0.874896,-0.874896,-0.874896,-0.874896,-0.874896 +-0.873916,-0.873916,-0.873916,-0.873916,-0.873916,-0.873916 +-0.872936,-0.872936,-0.872936,-0.872936,-0.872936,-0.872936 +-0.871956,-0.871956,-0.871956,-0.871956,-0.871956,-0.871956 +-0.870976,-0.870976,-0.870976,-0.870976,-0.870976,-0.870976 +-0.869996,-0.869996,-0.869996,-0.869996,-0.869996,-0.869996 +-0.869016,-0.869016,-0.869016,-0.869016,-0.869016,-0.869016 +-0.868036,-0.868036,-0.868036,-0.868036,-0.868036,-0.868036 +-0.867056,-0.867056,-0.867056,-0.867056,-0.867056,-0.867056 +-0.866076,-0.866076,-0.866076,-0.866076,-0.866076,-0.866076 +-0.865096,-0.865096,-0.865096,-0.865096,-0.865096,-0.865096 +-0.864116,-0.864116,-0.864116,-0.864116,-0.864116,-0.864116 +-0.863136,-0.863136,-0.863136,-0.863136,-0.863136,-0.863136 +-0.862156,-0.862156,-0.862156,-0.862156,-0.862156,-0.862156 +-0.861176,-0.861176,-0.861176,-0.861176,-0.861176,-0.861176 +-0.860196,-0.860196,-0.860196,-0.860196,-0.860196,-0.860196 +-0.859216,-0.859216,-0.859216,-0.859216,-0.859216,-0.859216 +-0.858236,-0.858236,-0.858236,-0.858236,-0.858236,-0.858236 +-0.857256,-0.857256,-0.857256,-0.857256,-0.857256,-0.857256 +-0.856276,-0.856276,-0.856276,-0.856276,-0.856276,-0.856276 +-0.855296,-0.855296,-0.855296,-0.855296,-0.855296,-0.855296 +-0.854316,-0.854316,-0.854316,-0.854316,-0.854316,-0.854316 +-0.853336,-0.853336,-0.853336,-0.853336,-0.853336,-0.853336 +-0.852356,-0.852356,-0.852356,-0.852356,-0.852356,-0.852356 +-0.851376,-0.851376,-0.851376,-0.851376,-0.851376,-0.851376 +-0.850396,-0.850396,-0.850396,-0.850396,-0.850396,-0.850396 +-0.849416,-0.849416,-0.849416,-0.849416,-0.849416,-0.849416 +-0.848436,-0.848436,-0.848436,-0.848436,-0.848436,-0.848436 +-0.847456,-0.847456,-0.847456,-0.847456,-0.847456,-0.847456 +-0.846476,-0.846476,-0.846476,-0.846476,-0.846476,-0.846476 +-0.845496,-0.845496,-0.845496,-0.845496,-0.845496,-0.845496 +-0.844516,-0.844516,-0.844516,-0.844516,-0.844516,-0.844516 +-0.843536,-0.843536,-0.843536,-0.843536,-0.843536,-0.843536 +-0.842556,-0.842556,-0.842556,-0.842556,-0.842556,-0.842556 +-0.841576,-0.841576,-0.841576,-0.841576,-0.841576,-0.841576 +-0.840596,-0.840596,-0.840596,-0.840596,-0.840596,-0.840596 +-0.839616,-0.839616,-0.839616,-0.839616,-0.839616,-0.839616 +-0.838636,-0.838636,-0.838636,-0.838636,-0.838636,-0.838636 +-0.837656,-0.837656,-0.837656,-0.837656,-0.837656,-0.837656 +-0.836676,-0.836676,-0.836676,-0.836676,-0.836676,-0.836676 +-0.835696,-0.835696,-0.835696,-0.835696,-0.835696,-0.835696 +-0.834716,-0.834716,-0.834716,-0.834716,-0.834716,-0.834716 +-0.833736,-0.833736,-0.833736,-0.833736,-0.833736,-0.833736 +-0.832756,-0.832756,-0.832756,-0.832756,-0.832756,-0.832756 +-0.831776,-0.831776,-0.831776,-0.831776,-0.831776,-0.831776 +-0.830796,-0.830796,-0.830796,-0.830796,-0.830796,-0.830796 +-0.829816,-0.829816,-0.829816,-0.829816,-0.829816,-0.829816 +-0.828836,-0.828836,-0.828836,-0.828836,-0.828836,-0.828836 +-0.827856,-0.827856,-0.827856,-0.827856,-0.827856,-0.827856 +-0.826876,-0.826876,-0.826876,-0.826876,-0.826876,-0.826876 +-0.825896,-0.825896,-0.825896,-0.825896,-0.825896,-0.825896 +-0.824916,-0.824916,-0.824916,-0.824916,-0.824916,-0.824916 +-0.823936,-0.823936,-0.823936,-0.823936,-0.823936,-0.823936 +-0.822956,-0.822956,-0.822956,-0.822956,-0.822956,-0.822956 +-0.821976,-0.821976,-0.821976,-0.821976,-0.821976,-0.821976 +-0.820996,-0.820996,-0.820996,-0.820996,-0.820996,-0.820996 +-0.820016,-0.820016,-0.820016,-0.820016,-0.820016,-0.820016 +-0.819036,-0.819036,-0.819036,-0.819036,-0.819036,-0.819036 +-0.818056,-0.818056,-0.818056,-0.818056,-0.818056,-0.818056 +-0.817076,-0.817076,-0.817076,-0.817076,-0.817076,-0.817076 +-0.816096,-0.816096,-0.816096,-0.816096,-0.816096,-0.816096 +-0.815116,-0.815116,-0.815116,-0.815116,-0.815116,-0.815116 +-0.814136,-0.814136,-0.814136,-0.814136,-0.814136,-0.814136 +-0.813156,-0.813156,-0.813156,-0.813156,-0.813156,-0.813156 +-0.812176,-0.812176,-0.812176,-0.812176,-0.812176,-0.812176 +-0.811196,-0.811196,-0.811196,-0.811196,-0.811196,-0.811196 +-0.810216,-0.810216,-0.810216,-0.810216,-0.810216,-0.810216 +-0.809236,-0.809236,-0.809236,-0.809236,-0.809236,-0.809236 +-0.808256,-0.808256,-0.808256,-0.808256,-0.808256,-0.808256 +-0.807276,-0.807276,-0.807276,-0.807276,-0.807276,-0.807276 +-0.806296,-0.806296,-0.806296,-0.806296,-0.806296,-0.806296 +-0.805316,-0.805316,-0.805316,-0.805316,-0.805316,-0.805316 +-0.804336,-0.804336,-0.804336,-0.804336,-0.804336,-0.804336 +-0.803356,-0.803356,-0.803356,-0.803356,-0.803356,-0.803356 +-0.802376,-0.802376,-0.802376,-0.802376,-0.802376,-0.802376 +-0.801396,-0.801396,-0.801396,-0.801396,-0.801396,-0.801396 +-0.800416,-0.800416,-0.800416,-0.800416,-0.800416,-0.800416 +-0.799436,-0.799436,-0.799436,-0.799436,-0.799436,-0.799436 +-0.798456,-0.798456,-0.798456,-0.798456,-0.798456,-0.798456 +-0.797476,-0.797476,-0.797476,-0.797476,-0.797476,-0.797476 +-0.796496,-0.796496,-0.796496,-0.796496,-0.796496,-0.796496 +-0.795516,-0.795516,-0.795516,-0.795516,-0.795516,-0.795516 +-0.794536,-0.794536,-0.794536,-0.794536,-0.794536,-0.794536 +-0.793556,-0.793556,-0.793556,-0.793556,-0.793556,-0.793556 +-0.792576,-0.792576,-0.792576,-0.792576,-0.792576,-0.792576 +-0.791596,-0.791596,-0.791596,-0.791596,-0.791596,-0.791596 +-0.790616,-0.790616,-0.790616,-0.790616,-0.790616,-0.790616 +-0.789636,-0.789636,-0.789636,-0.789636,-0.789636,-0.789636 +-0.788656,-0.788656,-0.788656,-0.788656,-0.788656,-0.788656 +-0.787676,-0.787676,-0.787676,-0.787676,-0.787676,-0.787676 +-0.786696,-0.786696,-0.786696,-0.786696,-0.786696,-0.786696 +-0.785716,-0.785716,-0.785716,-0.785716,-0.785716,-0.785716 +-0.784736,-0.784736,-0.784736,-0.784736,-0.784736,-0.784736 +-0.783756,-0.783756,-0.783756,-0.783756,-0.783756,-0.783756 +-0.782776,-0.782776,-0.782776,-0.782776,-0.782776,-0.782776 +-0.781796,-0.781796,-0.781796,-0.781796,-0.781796,-0.781796 +-0.780816,-0.780816,-0.780816,-0.780816,-0.780816,-0.780816 +-0.779836,-0.779836,-0.779836,-0.779836,-0.779836,-0.779836 +-0.778856,-0.778856,-0.778856,-0.778856,-0.778856,-0.778856 +-0.777876,-0.777876,-0.777876,-0.777876,-0.777876,-0.777876 +-0.776896,-0.776896,-0.776896,-0.776896,-0.776896,-0.776896 +-0.775916,-0.775916,-0.775916,-0.775916,-0.775916,-0.775916 +-0.774936,-0.774936,-0.774936,-0.774936,-0.774936,-0.774936 +-0.773956,-0.773956,-0.773956,-0.773956,-0.773956,-0.773956 +-0.772976,-0.772976,-0.772976,-0.772976,-0.772976,-0.772976 +-0.771996,-0.771996,-0.771996,-0.771996,-0.771996,-0.771996 +-0.771016,-0.771016,-0.771016,-0.771016,-0.771016,-0.771016 +-0.770036,-0.770036,-0.770036,-0.770036,-0.770036,-0.770036 +-0.769056,-0.769056,-0.769056,-0.769056,-0.769056,-0.769056 +-0.768076,-0.768076,-0.768076,-0.768076,-0.768076,-0.768076 +-0.767096,-0.767096,-0.767096,-0.767096,-0.767096,-0.767096 +-0.766116,-0.766116,-0.766116,-0.766116,-0.766116,-0.766116 +-0.765136,-0.765136,-0.765136,-0.765136,-0.765136,-0.765136 +-0.764156,-0.764156,-0.764156,-0.764156,-0.764156,-0.764156 +-0.763176,-0.763176,-0.763176,-0.763176,-0.763176,-0.763176 +-0.762196,-0.762196,-0.762196,-0.762196,-0.762196,-0.762196 +-0.761216,-0.761216,-0.761216,-0.761216,-0.761216,-0.761216 +-0.760236,-0.760236,-0.760236,-0.760236,-0.760236,-0.760236 +-0.759256,-0.759256,-0.759256,-0.759256,-0.759256,-0.759256 +-0.758276,-0.758276,-0.758276,-0.758276,-0.758276,-0.758276 +-0.757296,-0.757296,-0.757296,-0.757296,-0.757296,-0.757296 +-0.756316,-0.756316,-0.756316,-0.756316,-0.756316,-0.756316 +-0.755336,-0.755336,-0.755336,-0.755336,-0.755336,-0.755336 +-0.754356,-0.754356,-0.754356,-0.754356,-0.754356,-0.754356 +-0.753376,-0.753376,-0.753376,-0.753376,-0.753376,-0.753376 +-0.752396,-0.752396,-0.752396,-0.752396,-0.752396,-0.752396 +-0.751416,-0.751416,-0.751416,-0.751416,-0.751416,-0.751416 +-0.750436,-0.750436,-0.750436,-0.750436,-0.750436,-0.750436 +-0.749456,-0.749456,-0.749456,-0.749456,-0.749456,-0.749456 +-0.748476,-0.748476,-0.748476,-0.748476,-0.748476,-0.748476 +-0.747496,-0.747496,-0.747496,-0.747496,-0.747496,-0.747496 +-0.746516,-0.746516,-0.746516,-0.746516,-0.746516,-0.746516 +-0.745536,-0.745536,-0.745536,-0.745536,-0.745536,-0.745536 +-0.744556,-0.744556,-0.744556,-0.744556,-0.744556,-0.744556 +-0.743576,-0.743576,-0.743576,-0.743576,-0.743576,-0.743576 +-0.742596,-0.742596,-0.742596,-0.742596,-0.742596,-0.742596 +-0.741616,-0.741616,-0.741616,-0.741616,-0.741616,-0.741616 +-0.740636,-0.740636,-0.740636,-0.740636,-0.740636,-0.740636 +-0.739656,-0.739656,-0.739656,-0.739656,-0.739656,-0.739656 +-0.738676,-0.738676,-0.738676,-0.738676,-0.738676,-0.738676 +-0.737696,-0.737696,-0.737696,-0.737696,-0.737696,-0.737696 +-0.736716,-0.736716,-0.736716,-0.736716,-0.736716,-0.736716 +-0.735736,-0.735736,-0.735736,-0.735736,-0.735736,-0.735736 +-0.734756,-0.734756,-0.734756,-0.734756,-0.734756,-0.734756 +-0.733776,-0.733776,-0.733776,-0.733776,-0.733776,-0.733776 +-0.732796,-0.732796,-0.732796,-0.732796,-0.732796,-0.732796 +-0.731816,-0.731816,-0.731816,-0.731816,-0.731816,-0.731816 +-0.730836,-0.730836,-0.730836,-0.730836,-0.730836,-0.730836 +-0.729856,-0.729856,-0.729856,-0.729856,-0.729856,-0.729856 +-0.728876,-0.728876,-0.728876,-0.728876,-0.728876,-0.728876 +-0.727896,-0.727896,-0.727896,-0.727896,-0.727896,-0.727896 +-0.726916,-0.726916,-0.726916,-0.726916,-0.726916,-0.726916 +-0.725936,-0.725936,-0.725936,-0.725936,-0.725936,-0.725936 +-0.724956,-0.724956,-0.724956,-0.724956,-0.724956,-0.724956 +-0.723976,-0.723976,-0.723976,-0.723976,-0.723976,-0.723976 +-0.722996,-0.722996,-0.722996,-0.722996,-0.722996,-0.722996 +-0.722016,-0.722016,-0.722016,-0.722016,-0.722016,-0.722016 +-0.721036,-0.721036,-0.721036,-0.721036,-0.721036,-0.721036 +-0.720056,-0.720056,-0.720056,-0.720056,-0.720056,-0.720056 +-0.719076,-0.719076,-0.719076,-0.719076,-0.719076,-0.719076 +-0.718096,-0.718096,-0.718096,-0.718096,-0.718096,-0.718096 +-0.717116,-0.717116,-0.717116,-0.717116,-0.717116,-0.717116 +-0.716136,-0.716136,-0.716136,-0.716136,-0.716136,-0.716136 +-0.715156,-0.715156,-0.715156,-0.715156,-0.715156,-0.715156 +-0.714176,-0.714176,-0.714176,-0.714176,-0.714176,-0.714176 +-0.713196,-0.713196,-0.713196,-0.713196,-0.713196,-0.713196 +-0.712216,-0.712216,-0.712216,-0.712216,-0.712216,-0.712216 +-0.711236,-0.711236,-0.711236,-0.711236,-0.711236,-0.711236 +-0.710256,-0.710256,-0.710256,-0.710256,-0.710256,-0.710256 +-0.709276,-0.709276,-0.709276,-0.709276,-0.709276,-0.709276 +-0.708296,-0.708296,-0.708296,-0.708296,-0.708296,-0.708296 +-0.707316,-0.707316,-0.707316,-0.707316,-0.707316,-0.707316 +-0.706336,-0.706336,-0.706336,-0.706336,-0.706336,-0.706336 +-0.705356,-0.705356,-0.705356,-0.705356,-0.705356,-0.705356 +-0.704376,-0.704376,-0.704376,-0.704376,-0.704376,-0.704376 +-0.703396,-0.703396,-0.703396,-0.703396,-0.703396,-0.703396 +-0.702416,-0.702416,-0.702416,-0.702416,-0.702416,-0.702416 +-0.701436,-0.701436,-0.701436,-0.701436,-0.701436,-0.701436 +-0.700456,-0.700456,-0.700456,-0.700456,-0.700456,-0.700456 +-0.699476,-0.699476,-0.699476,-0.699476,-0.699476,-0.699476 +-0.698496,-0.698496,-0.698496,-0.698496,-0.698496,-0.698496 +-0.697516,-0.697516,-0.697516,-0.697516,-0.697516,-0.697516 +-0.696536,-0.696536,-0.696536,-0.696536,-0.696536,-0.696536 +-0.695556,-0.695556,-0.695556,-0.695556,-0.695556,-0.695556 +-0.694576,-0.694576,-0.694576,-0.694576,-0.694576,-0.694576 +-0.693596,-0.693596,-0.693596,-0.693596,-0.693596,-0.693596 +-0.692616,-0.692616,-0.692616,-0.692616,-0.692616,-0.692616 +-0.691636,-0.691636,-0.691636,-0.691636,-0.691636,-0.691636 +-0.690656,-0.690656,-0.690656,-0.690656,-0.690656,-0.690656 +-0.689676,-0.689676,-0.689676,-0.689676,-0.689676,-0.689676 +-0.688696,-0.688696,-0.688696,-0.688696,-0.688696,-0.688696 +-0.687716,-0.687716,-0.687716,-0.687716,-0.687716,-0.687716 +-0.686736,-0.686736,-0.686736,-0.686736,-0.686736,-0.686736 +-0.685756,-0.685756,-0.685756,-0.685756,-0.685756,-0.685756 +-0.684776,-0.684776,-0.684776,-0.684776,-0.684776,-0.684776 +-0.683796,-0.683796,-0.683796,-0.683796,-0.683796,-0.683796 +-0.682816,-0.682816,-0.682816,-0.682816,-0.682816,-0.682816 +-0.681836,-0.681836,-0.681836,-0.681836,-0.681836,-0.681836 +-0.680856,-0.680856,-0.680856,-0.680856,-0.680856,-0.680856 +-0.679876,-0.679876,-0.679876,-0.679876,-0.679876,-0.679876 +-0.678896,-0.678896,-0.678896,-0.678896,-0.678896,-0.678896 +-0.677916,-0.677916,-0.677916,-0.677916,-0.677916,-0.677916 +-0.676936,-0.676936,-0.676936,-0.676936,-0.676936,-0.676936 +-0.675956,-0.675956,-0.675956,-0.675956,-0.675956,-0.675956 +-0.674976,-0.674976,-0.674976,-0.674976,-0.674976,-0.674976 +-0.673996,-0.673996,-0.673996,-0.673996,-0.673996,-0.673996 +-0.673016,-0.673016,-0.673016,-0.673016,-0.673016,-0.673016 +-0.672036,-0.672036,-0.672036,-0.672036,-0.672036,-0.672036 +-0.671056,-0.671056,-0.671056,-0.671056,-0.671056,-0.671056 +-0.670076,-0.670076,-0.670076,-0.670076,-0.670076,-0.670076 +-0.669096,-0.669096,-0.669096,-0.669096,-0.669096,-0.669096 +-0.668116,-0.668116,-0.668116,-0.668116,-0.668116,-0.668116 +-0.667136,-0.667136,-0.667136,-0.667136,-0.667136,-0.667136 +-0.666156,-0.666156,-0.666156,-0.666156,-0.666156,-0.666156 +-0.665176,-0.665176,-0.665176,-0.665176,-0.665176,-0.665176 +-0.664196,-0.664196,-0.664196,-0.664196,-0.664196,-0.664196 +-0.663216,-0.663216,-0.663216,-0.663216,-0.663216,-0.663216 +-0.662236,-0.662236,-0.662236,-0.662236,-0.662236,-0.662236 +-0.661256,-0.661256,-0.661256,-0.661256,-0.661256,-0.661256 +-0.660276,-0.660276,-0.660276,-0.660276,-0.660276,-0.660276 +-0.659296,-0.659296,-0.659296,-0.659296,-0.659296,-0.659296 +-0.658316,-0.658316,-0.658316,-0.658316,-0.658316,-0.658316 +-0.657336,-0.657336,-0.657336,-0.657336,-0.657336,-0.657336 +-0.656356,-0.656356,-0.656356,-0.656356,-0.656356,-0.656356 +-0.655376,-0.655376,-0.655376,-0.655376,-0.655376,-0.655376 +-0.654396,-0.654396,-0.654396,-0.654396,-0.654396,-0.654396 +-0.653416,-0.653416,-0.653416,-0.653416,-0.653416,-0.653416 +-0.652436,-0.652436,-0.652436,-0.652436,-0.652436,-0.652436 +-0.651456,-0.651456,-0.651456,-0.651456,-0.651456,-0.651456 +-0.650476,-0.650476,-0.650476,-0.650476,-0.650476,-0.650476 +-0.649496,-0.649496,-0.649496,-0.649496,-0.649496,-0.649496 +-0.648516,-0.648516,-0.648516,-0.648516,-0.648516,-0.648516 +-0.647536,-0.647536,-0.647536,-0.647536,-0.647536,-0.647536 +-0.646556,-0.646556,-0.646556,-0.646556,-0.646556,-0.646556 +-0.645576,-0.645576,-0.645576,-0.645576,-0.645576,-0.645576 +-0.644596,-0.644596,-0.644596,-0.644596,-0.644596,-0.644596 +-0.643616,-0.643616,-0.643616,-0.643616,-0.643616,-0.643616 +-0.642636,-0.642636,-0.642636,-0.642636,-0.642636,-0.642636 +-0.641656,-0.641656,-0.641656,-0.641656,-0.641656,-0.641656 +-0.640676,-0.640676,-0.640676,-0.640676,-0.640676,-0.640676 +-0.639696,-0.639696,-0.639696,-0.639696,-0.639696,-0.639696 +-0.638716,-0.638716,-0.638716,-0.638716,-0.638716,-0.638716 +-0.637736,-0.637736,-0.637736,-0.637736,-0.637736,-0.637736 +-0.636756,-0.636756,-0.636756,-0.636756,-0.636756,-0.636756 +-0.635776,-0.635776,-0.635776,-0.635776,-0.635776,-0.635776 +-0.634796,-0.634796,-0.634796,-0.634796,-0.634796,-0.634796 +-0.633816,-0.633816,-0.633816,-0.633816,-0.633816,-0.633816 +-0.632836,-0.632836,-0.632836,-0.632836,-0.632836,-0.632836 +-0.631856,-0.631856,-0.631856,-0.631856,-0.631856,-0.631856 +-0.630876,-0.630876,-0.630876,-0.630876,-0.630876,-0.630876 +-0.629896,-0.629896,-0.629896,-0.629896,-0.629896,-0.629896 +-0.628916,-0.628916,-0.628916,-0.628916,-0.628916,-0.628916 +-0.627936,-0.627936,-0.627936,-0.627936,-0.627936,-0.627936 +-0.626956,-0.626956,-0.626956,-0.626956,-0.626956,-0.626956 +-0.625976,-0.625976,-0.625976,-0.625976,-0.625976,-0.625976 +-0.624996,-0.624996,-0.624996,-0.624996,-0.624996,-0.624996 +-0.624016,-0.624016,-0.624016,-0.624016,-0.624016,-0.624016 +-0.623036,-0.623036,-0.623036,-0.623036,-0.623036,-0.623036 +-0.622056,-0.622056,-0.622056,-0.622056,-0.622056,-0.622056 +-0.621076,-0.621076,-0.621076,-0.621076,-0.621076,-0.621076 +-0.620096,-0.620096,-0.620096,-0.620096,-0.620096,-0.620096 +-0.619116,-0.619116,-0.619116,-0.619116,-0.619116,-0.619116 +-0.618136,-0.618136,-0.618136,-0.618136,-0.618136,-0.618136 +-0.617156,-0.617156,-0.617156,-0.617156,-0.617156,-0.617156 +-0.616176,-0.616176,-0.616176,-0.616176,-0.616176,-0.616176 +-0.615196,-0.615196,-0.615196,-0.615196,-0.615196,-0.615196 +-0.614216,-0.614216,-0.614216,-0.614216,-0.614216,-0.614216 +-0.613236,-0.613236,-0.613236,-0.613236,-0.613236,-0.613236 +-0.612256,-0.612256,-0.612256,-0.612256,-0.612256,-0.612256 +-0.611276,-0.611276,-0.611276,-0.611276,-0.611276,-0.611276 +-0.610296,-0.610296,-0.610296,-0.610296,-0.610296,-0.610296 +-0.609316,-0.609316,-0.609316,-0.609316,-0.609316,-0.609316 +-0.608336,-0.608336,-0.608336,-0.608336,-0.608336,-0.608336 +-0.607356,-0.607356,-0.607356,-0.607356,-0.607356,-0.607356 +-0.606376,-0.606376,-0.606376,-0.606376,-0.606376,-0.606376 +-0.605396,-0.605396,-0.605396,-0.605396,-0.605396,-0.605396 +-0.604416,-0.604416,-0.604416,-0.604416,-0.604416,-0.604416 +-0.603436,-0.603436,-0.603436,-0.603436,-0.603436,-0.603436 +-0.602456,-0.602456,-0.602456,-0.602456,-0.602456,-0.602456 +-0.601476,-0.601476,-0.601476,-0.601476,-0.601476,-0.601476 +-0.600496,-0.600496,-0.600496,-0.600496,-0.600496,-0.600496 +-0.599516,-0.599516,-0.599516,-0.599516,-0.599516,-0.599516 +-0.598536,-0.598536,-0.598536,-0.598536,-0.598536,-0.598536 +-0.597556,-0.597556,-0.597556,-0.597556,-0.597556,-0.597556 +-0.596576,-0.596576,-0.596576,-0.596576,-0.596576,-0.596576 +-0.595596,-0.595596,-0.595596,-0.595596,-0.595596,-0.595596 +-0.594616,-0.594616,-0.594616,-0.594616,-0.594616,-0.594616 +-0.593636,-0.593636,-0.593636,-0.593636,-0.593636,-0.593636 +-0.592656,-0.592656,-0.592656,-0.592656,-0.592656,-0.592656 +-0.591676,-0.591676,-0.591676,-0.591676,-0.591676,-0.591676 +-0.590696,-0.590696,-0.590696,-0.590696,-0.590696,-0.590696 +-0.589716,-0.589716,-0.589716,-0.589716,-0.589716,-0.589716 +-0.588736,-0.588736,-0.588736,-0.588736,-0.588736,-0.588736 +-0.587756,-0.587756,-0.587756,-0.587756,-0.587756,-0.587756 +-0.586776,-0.586776,-0.586776,-0.586776,-0.586776,-0.586776 +-0.585796,-0.585796,-0.585796,-0.585796,-0.585796,-0.585796 +-0.584816,-0.584816,-0.584816,-0.584816,-0.584816,-0.584816 +-0.583836,-0.583836,-0.583836,-0.583836,-0.583836,-0.583836 +-0.582856,-0.582856,-0.582856,-0.582856,-0.582856,-0.582856 +-0.581876,-0.581876,-0.581876,-0.581876,-0.581876,-0.581876 +-0.580896,-0.580896,-0.580896,-0.580896,-0.580896,-0.580896 +-0.579916,-0.579916,-0.579916,-0.579916,-0.579916,-0.579916 +-0.578936,-0.578936,-0.578936,-0.578936,-0.578936,-0.578936 +-0.577956,-0.577956,-0.577956,-0.577956,-0.577956,-0.577956 +-0.576976,-0.576976,-0.576976,-0.576976,-0.576976,-0.576976 +-0.575996,-0.575996,-0.575996,-0.575996,-0.575996,-0.575996 +-0.575016,-0.575016,-0.575016,-0.575016,-0.575016,-0.575016 +-0.574036,-0.574036,-0.574036,-0.574036,-0.574036,-0.574036 +-0.573056,-0.573056,-0.573056,-0.573056,-0.573056,-0.573056 +-0.572076,-0.572076,-0.572076,-0.572076,-0.572076,-0.572076 +-0.571096,-0.571096,-0.571096,-0.571096,-0.571096,-0.571096 +-0.570116,-0.570116,-0.570116,-0.570116,-0.570116,-0.570116 +-0.569136,-0.569136,-0.569136,-0.569136,-0.569136,-0.569136 +-0.568156,-0.568156,-0.568156,-0.568156,-0.568156,-0.568156 +-0.567176,-0.567176,-0.567176,-0.567176,-0.567176,-0.567176 +-0.566196,-0.566196,-0.566196,-0.566196,-0.566196,-0.566196 +-0.565216,-0.565216,-0.565216,-0.565216,-0.565216,-0.565216 +-0.564236,-0.564236,-0.564236,-0.564236,-0.564236,-0.564236 +-0.563256,-0.563256,-0.563256,-0.563256,-0.563256,-0.563256 +-0.562276,-0.562276,-0.562276,-0.562276,-0.562276,-0.562276 +-0.561296,-0.561296,-0.561296,-0.561296,-0.561296,-0.561296 +-0.560316,-0.560316,-0.560316,-0.560316,-0.560316,-0.560316 +-0.559336,-0.559336,-0.559336,-0.559336,-0.559336,-0.559336 +-0.558356,-0.558356,-0.558356,-0.558356,-0.558356,-0.558356 +-0.557376,-0.557376,-0.557376,-0.557376,-0.557376,-0.557376 +-0.556396,-0.556396,-0.556396,-0.556396,-0.556396,-0.556396 +-0.555416,-0.555416,-0.555416,-0.555416,-0.555416,-0.555416 +-0.554436,-0.554436,-0.554436,-0.554436,-0.554436,-0.554436 +-0.553456,-0.553456,-0.553456,-0.553456,-0.553456,-0.553456 +-0.552476,-0.552476,-0.552476,-0.552476,-0.552476,-0.552476 +-0.551496,-0.551496,-0.551496,-0.551496,-0.551496,-0.551496 +-0.550516,-0.550516,-0.550516,-0.550516,-0.550516,-0.550516 +-0.549536,-0.549536,-0.549536,-0.549536,-0.549536,-0.549536 +-0.548556,-0.548556,-0.548556,-0.548556,-0.548556,-0.548556 +-0.547576,-0.547576,-0.547576,-0.547576,-0.547576,-0.547576 +-0.546596,-0.546596,-0.546596,-0.546596,-0.546596,-0.546596 +-0.545616,-0.545616,-0.545616,-0.545616,-0.545616,-0.545616 +-0.544636,-0.544636,-0.544636,-0.544636,-0.544636,-0.544636 +-0.543656,-0.543656,-0.543656,-0.543656,-0.543656,-0.543656 +-0.542676,-0.542676,-0.542676,-0.542676,-0.542676,-0.542676 +-0.541696,-0.541696,-0.541696,-0.541696,-0.541696,-0.541696 +-0.540716,-0.540716,-0.540716,-0.540716,-0.540716,-0.540716 +-0.539736,-0.539736,-0.539736,-0.539736,-0.539736,-0.539736 +-0.538756,-0.538756,-0.538756,-0.538756,-0.538756,-0.538756 +-0.537776,-0.537776,-0.537776,-0.537776,-0.537776,-0.537776 +-0.536796,-0.536796,-0.536796,-0.536796,-0.536796,-0.536796 +-0.535816,-0.535816,-0.535816,-0.535816,-0.535816,-0.535816 +-0.534836,-0.534836,-0.534836,-0.534836,-0.534836,-0.534836 +-0.533856,-0.533856,-0.533856,-0.533856,-0.533856,-0.533856 +-0.532876,-0.532876,-0.532876,-0.532876,-0.532876,-0.532876 +-0.531896,-0.531896,-0.531896,-0.531896,-0.531896,-0.531896 +-0.530916,-0.530916,-0.530916,-0.530916,-0.530916,-0.530916 +-0.529936,-0.529936,-0.529936,-0.529936,-0.529936,-0.529936 +-0.528956,-0.528956,-0.528956,-0.528956,-0.528956,-0.528956 +-0.527976,-0.527976,-0.527976,-0.527976,-0.527976,-0.527976 +-0.526996,-0.526996,-0.526996,-0.526996,-0.526996,-0.526996 +-0.526016,-0.526016,-0.526016,-0.526016,-0.526016,-0.526016 +-0.525036,-0.525036,-0.525036,-0.525036,-0.525036,-0.525036 +-0.524056,-0.524056,-0.524056,-0.524056,-0.524056,-0.524056 +-0.523076,-0.523076,-0.523076,-0.523076,-0.523076,-0.523076 +-0.522096,-0.522096,-0.522096,-0.522096,-0.522096,-0.522096 +-0.521116,-0.521116,-0.521116,-0.521116,-0.521116,-0.521116 +-0.520136,-0.520136,-0.520136,-0.520136,-0.520136,-0.520136 +-0.519156,-0.519156,-0.519156,-0.519156,-0.519156,-0.519156 +-0.518176,-0.518176,-0.518176,-0.518176,-0.518176,-0.518176 +-0.517196,-0.517196,-0.517196,-0.517196,-0.517196,-0.517196 +-0.516216,-0.516216,-0.516216,-0.516216,-0.516216,-0.516216 +-0.515236,-0.515236,-0.515236,-0.515236,-0.515236,-0.515236 +-0.514256,-0.514256,-0.514256,-0.514256,-0.514256,-0.514256 +-0.513276,-0.513276,-0.513276,-0.513276,-0.513276,-0.513276 +-0.512296,-0.512296,-0.512296,-0.512296,-0.512296,-0.512296 +-0.511316,-0.511316,-0.511316,-0.511316,-0.511316,-0.511316 +-0.510336,-0.510336,-0.510336,-0.510336,-0.510336,-0.510336 +-0.509356,-0.509356,-0.509356,-0.509356,-0.509356,-0.509356 +-0.508376,-0.508376,-0.508376,-0.508376,-0.508376,-0.508376 +-0.507396,-0.507396,-0.507396,-0.507396,-0.507396,-0.507396 +-0.506416,-0.506416,-0.506416,-0.506416,-0.506416,-0.506416 +-0.505436,-0.505436,-0.505436,-0.505436,-0.505436,-0.505436 +-0.504456,-0.504456,-0.504456,-0.504456,-0.504456,-0.504456 +-0.503476,-0.503476,-0.503476,-0.503476,-0.503476,-0.503476 +-0.502496,-0.502496,-0.502496,-0.502496,-0.502496,-0.502496 +-0.501516,-0.501516,-0.501516,-0.501516,-0.501516,-0.501516 +-0.500536,-0.500536,-0.500536,-0.500536,-0.500536,-0.500536 +-0.499556,-0.499556,-0.499556,-0.499556,-0.499556,-0.499556 +-0.498576,-0.498576,-0.498576,-0.498576,-0.498576,-0.498576 +-0.497596,-0.497596,-0.497596,-0.497596,-0.497596,-0.497596 +-0.496616,-0.496616,-0.496616,-0.496616,-0.496616,-0.496616 +-0.495636,-0.495636,-0.495636,-0.495636,-0.495636,-0.495636 +-0.494656,-0.494656,-0.494656,-0.494656,-0.494656,-0.494656 +-0.493676,-0.493676,-0.493676,-0.493676,-0.493676,-0.493676 +-0.492696,-0.492696,-0.492696,-0.492696,-0.492696,-0.492696 +-0.491716,-0.491716,-0.491716,-0.491716,-0.491716,-0.491716 +-0.490736,-0.490736,-0.490736,-0.490736,-0.490736,-0.490736 +-0.489756,-0.489756,-0.489756,-0.489756,-0.489756,-0.489756 +-0.488776,-0.488776,-0.488776,-0.488776,-0.488776,-0.488776 +-0.487796,-0.487796,-0.487796,-0.487796,-0.487796,-0.487796 +-0.486816,-0.486816,-0.486816,-0.486816,-0.486816,-0.486816 +-0.485836,-0.485836,-0.485836,-0.485836,-0.485836,-0.485836 +-0.484856,-0.484856,-0.484856,-0.484856,-0.484856,-0.484856 +-0.483876,-0.483876,-0.483876,-0.483876,-0.483876,-0.483876 +-0.482896,-0.482896,-0.482896,-0.482896,-0.482896,-0.482896 +-0.481916,-0.481916,-0.481916,-0.481916,-0.481916,-0.481916 +-0.480936,-0.480936,-0.480936,-0.480936,-0.480936,-0.480936 +-0.479956,-0.479956,-0.479956,-0.479956,-0.479956,-0.479956 +-0.478976,-0.478976,-0.478976,-0.478976,-0.478976,-0.478976 +-0.477996,-0.477996,-0.477996,-0.477996,-0.477996,-0.477996 +-0.477016,-0.477016,-0.477016,-0.477016,-0.477016,-0.477016 +-0.476036,-0.476036,-0.476036,-0.476036,-0.476036,-0.476036 +-0.475056,-0.475056,-0.475056,-0.475056,-0.475056,-0.475056 +-0.474076,-0.474076,-0.474076,-0.474076,-0.474076,-0.474076 +-0.473096,-0.473096,-0.473096,-0.473096,-0.473096,-0.473096 +-0.472116,-0.472116,-0.472116,-0.472116,-0.472116,-0.472116 +-0.471136,-0.471136,-0.471136,-0.471136,-0.471136,-0.471136 +-0.470156,-0.470156,-0.470156,-0.470156,-0.470156,-0.470156 +-0.469176,-0.469176,-0.469176,-0.469176,-0.469176,-0.469176 +-0.468196,-0.468196,-0.468196,-0.468196,-0.468196,-0.468196 +-0.467216,-0.467216,-0.467216,-0.467216,-0.467216,-0.467216 +-0.466236,-0.466236,-0.466236,-0.466236,-0.466236,-0.466236 +-0.465256,-0.465256,-0.465256,-0.465256,-0.465256,-0.465256 +-0.464276,-0.464276,-0.464276,-0.464276,-0.464276,-0.464276 +-0.463296,-0.463296,-0.463296,-0.463296,-0.463296,-0.463296 +-0.462316,-0.462316,-0.462316,-0.462316,-0.462316,-0.462316 +-0.461336,-0.461336,-0.461336,-0.461336,-0.461336,-0.461336 +-0.460356,-0.460356,-0.460356,-0.460356,-0.460356,-0.460356 +-0.459376,-0.459376,-0.459376,-0.459376,-0.459376,-0.459376 +-0.458396,-0.458396,-0.458396,-0.458396,-0.458396,-0.458396 +-0.457416,-0.457416,-0.457416,-0.457416,-0.457416,-0.457416 +-0.456436,-0.456436,-0.456436,-0.456436,-0.456436,-0.456436 +-0.455456,-0.455456,-0.455456,-0.455456,-0.455456,-0.455456 +-0.454476,-0.454476,-0.454476,-0.454476,-0.454476,-0.454476 +-0.453496,-0.453496,-0.453496,-0.453496,-0.453496,-0.453496 +-0.452516,-0.452516,-0.452516,-0.452516,-0.452516,-0.452516 +-0.451536,-0.451536,-0.451536,-0.451536,-0.451536,-0.451536 +-0.450556,-0.450556,-0.450556,-0.450556,-0.450556,-0.450556 +-0.449576,-0.449576,-0.449576,-0.449576,-0.449576,-0.449576 +-0.448596,-0.448596,-0.448596,-0.448596,-0.448596,-0.448596 +-0.447616,-0.447616,-0.447616,-0.447616,-0.447616,-0.447616 +-0.446636,-0.446636,-0.446636,-0.446636,-0.446636,-0.446636 +-0.445656,-0.445656,-0.445656,-0.445656,-0.445656,-0.445656 +-0.444676,-0.444676,-0.444676,-0.444676,-0.444676,-0.444676 +-0.443696,-0.443696,-0.443696,-0.443696,-0.443696,-0.443696 +-0.442716,-0.442716,-0.442716,-0.442716,-0.442716,-0.442716 +-0.441736,-0.441736,-0.441736,-0.441736,-0.441736,-0.441736 +-0.440756,-0.440756,-0.440756,-0.440756,-0.440756,-0.440756 +-0.439776,-0.439776,-0.439776,-0.439776,-0.439776,-0.439776 +-0.438796,-0.438796,-0.438796,-0.438796,-0.438796,-0.438796 +-0.437816,-0.437816,-0.437816,-0.437816,-0.437816,-0.437816 +-0.436836,-0.436836,-0.436836,-0.436836,-0.436836,-0.436836 +-0.435856,-0.435856,-0.435856,-0.435856,-0.435856,-0.435856 +-0.434876,-0.434876,-0.434876,-0.434876,-0.434876,-0.434876 +-0.433896,-0.433896,-0.433896,-0.433896,-0.433896,-0.433896 +-0.432916,-0.432916,-0.432916,-0.432916,-0.432916,-0.432916 +-0.431936,-0.431936,-0.431936,-0.431936,-0.431936,-0.431936 +-0.430956,-0.430956,-0.430956,-0.430956,-0.430956,-0.430956 +-0.429976,-0.429976,-0.429976,-0.429976,-0.429976,-0.429976 +-0.428996,-0.428996,-0.428996,-0.428996,-0.428996,-0.428996 +-0.428016,-0.428016,-0.428016,-0.428016,-0.428016,-0.428016 +-0.427036,-0.427036,-0.427036,-0.427036,-0.427036,-0.427036 +-0.426056,-0.426056,-0.426056,-0.426056,-0.426056,-0.426056 +-0.425076,-0.425076,-0.425076,-0.425076,-0.425076,-0.425076 +-0.424096,-0.424096,-0.424096,-0.424096,-0.424096,-0.424096 +-0.423116,-0.423116,-0.423116,-0.423116,-0.423116,-0.423116 +-0.422136,-0.422136,-0.422136,-0.422136,-0.422136,-0.422136 +-0.421156,-0.421156,-0.421156,-0.421156,-0.421156,-0.421156 +-0.420176,-0.420176,-0.420176,-0.420176,-0.420176,-0.420176 +-0.419196,-0.419196,-0.419196,-0.419196,-0.419196,-0.419196 +-0.418216,-0.418216,-0.418216,-0.418216,-0.418216,-0.418216 +-0.417236,-0.417236,-0.417236,-0.417236,-0.417236,-0.417236 +-0.416256,-0.416256,-0.416256,-0.416256,-0.416256,-0.416256 +-0.415276,-0.415276,-0.415276,-0.415276,-0.415276,-0.415276 +-0.414296,-0.414296,-0.414296,-0.414296,-0.414296,-0.414296 +-0.413316,-0.413316,-0.413316,-0.413316,-0.413316,-0.413316 +-0.412336,-0.412336,-0.412336,-0.412336,-0.412336,-0.412336 +-0.411356,-0.411356,-0.411356,-0.411356,-0.411356,-0.411356 +-0.410376,-0.410376,-0.410376,-0.410376,-0.410376,-0.410376 +-0.409396,-0.409396,-0.409396,-0.409396,-0.409396,-0.409396 +-0.408416,-0.408416,-0.408416,-0.408416,-0.408416,-0.408416 +-0.407436,-0.407436,-0.407436,-0.407436,-0.407436,-0.407436 +-0.406456,-0.406456,-0.406456,-0.406456,-0.406456,-0.406456 +-0.405476,-0.405476,-0.405476,-0.405476,-0.405476,-0.405476 +-0.404496,-0.404496,-0.404496,-0.404496,-0.404496,-0.404496 +-0.403516,-0.403516,-0.403516,-0.403516,-0.403516,-0.403516 +-0.402536,-0.402536,-0.402536,-0.402536,-0.402536,-0.402536 +-0.401556,-0.401556,-0.401556,-0.401556,-0.401556,-0.401556 +-0.400576,-0.400576,-0.400576,-0.400576,-0.400576,-0.400576 +-0.399596,-0.399596,-0.399596,-0.399596,-0.399596,-0.399596 +-0.398616,-0.398616,-0.398616,-0.398616,-0.398616,-0.398616 +-0.397636,-0.397636,-0.397636,-0.397636,-0.397636,-0.397636 +-0.396656,-0.396656,-0.396656,-0.396656,-0.396656,-0.396656 +-0.395676,-0.395676,-0.395676,-0.395676,-0.395676,-0.395676 +-0.394696,-0.394696,-0.394696,-0.394696,-0.394696,-0.394696 +-0.393716,-0.393716,-0.393716,-0.393716,-0.393716,-0.393716 +-0.392736,-0.392736,-0.392736,-0.392736,-0.392736,-0.392736 +-0.391756,-0.391756,-0.391756,-0.391756,-0.391756,-0.391756 +-0.390776,-0.390776,-0.390776,-0.390776,-0.390776,-0.390776 +-0.389796,-0.389796,-0.389796,-0.389796,-0.389796,-0.389796 +-0.388816,-0.388816,-0.388816,-0.388816,-0.388816,-0.388816 +-0.387836,-0.387836,-0.387836,-0.387836,-0.387836,-0.387836 +-0.386856,-0.386856,-0.386856,-0.386856,-0.386856,-0.386856 +-0.385876,-0.385876,-0.385876,-0.385876,-0.385876,-0.385876 +-0.384896,-0.384896,-0.384896,-0.384896,-0.384896,-0.384896 +-0.383916,-0.383916,-0.383916,-0.383916,-0.383916,-0.383916 +-0.382936,-0.382936,-0.382936,-0.382936,-0.382936,-0.382936 +-0.381956,-0.381956,-0.381956,-0.381956,-0.381956,-0.381956 +-0.380976,-0.380976,-0.380976,-0.380976,-0.380976,-0.380976 +-0.379996,-0.379996,-0.379996,-0.379996,-0.379996,-0.379996 +-0.379016,-0.379016,-0.379016,-0.379016,-0.379016,-0.379016 +-0.378036,-0.378036,-0.378036,-0.378036,-0.378036,-0.378036 +-0.377056,-0.377056,-0.377056,-0.377056,-0.377056,-0.377056 +-0.376076,-0.376076,-0.376076,-0.376076,-0.376076,-0.376076 +-0.375096,-0.375096,-0.375096,-0.375096,-0.375096,-0.375096 +-0.374116,-0.374116,-0.374116,-0.374116,-0.374116,-0.374116 +-0.373136,-0.373136,-0.373136,-0.373136,-0.373136,-0.373136 +-0.372156,-0.372156,-0.372156,-0.372156,-0.372156,-0.372156 +-0.371176,-0.371176,-0.371176,-0.371176,-0.371176,-0.371176 +-0.370196,-0.370196,-0.370196,-0.370196,-0.370196,-0.370196 +-0.369216,-0.369216,-0.369216,-0.369216,-0.369216,-0.369216 +-0.368236,-0.368236,-0.368236,-0.368236,-0.368236,-0.368236 +-0.367256,-0.367256,-0.367256,-0.367256,-0.367256,-0.367256 +-0.366276,-0.366276,-0.366276,-0.366276,-0.366276,-0.366276 +-0.365296,-0.365296,-0.365296,-0.365296,-0.365296,-0.365296 +-0.364316,-0.364316,-0.364316,-0.364316,-0.364316,-0.364316 +-0.363336,-0.363336,-0.363336,-0.363336,-0.363336,-0.363336 +-0.362356,-0.362356,-0.362356,-0.362356,-0.362356,-0.362356 +-0.361376,-0.361376,-0.361376,-0.361376,-0.361376,-0.361376 +-0.360396,-0.360396,-0.360396,-0.360396,-0.360396,-0.360396 +-0.359416,-0.359416,-0.359416,-0.359416,-0.359416,-0.359416 +-0.358436,-0.358436,-0.358436,-0.358436,-0.358436,-0.358436 +-0.357456,-0.357456,-0.357456,-0.357456,-0.357456,-0.357456 +-0.356476,-0.356476,-0.356476,-0.356476,-0.356476,-0.356476 +-0.355496,-0.355496,-0.355496,-0.355496,-0.355496,-0.355496 +-0.354516,-0.354516,-0.354516,-0.354516,-0.354516,-0.354516 +-0.353536,-0.353536,-0.353536,-0.353536,-0.353536,-0.353536 +-0.352556,-0.352556,-0.352556,-0.352556,-0.352556,-0.352556 +-0.351576,-0.351576,-0.351576,-0.351576,-0.351576,-0.351576 +-0.350596,-0.350596,-0.350596,-0.350596,-0.350596,-0.350596 +-0.349616,-0.349616,-0.349616,-0.349616,-0.349616,-0.349616 +-0.348636,-0.348636,-0.348636,-0.348636,-0.348636,-0.348636 +-0.347656,-0.347656,-0.347656,-0.347656,-0.347656,-0.347656 +-0.346676,-0.346676,-0.346676,-0.346676,-0.346676,-0.346676 +-0.345696,-0.345696,-0.345696,-0.345696,-0.345696,-0.345696 +-0.344716,-0.344716,-0.344716,-0.344716,-0.344716,-0.344716 +-0.343736,-0.343736,-0.343736,-0.343736,-0.343736,-0.343736 +-0.342756,-0.342756,-0.342756,-0.342756,-0.342756,-0.342756 +-0.341776,-0.341776,-0.341776,-0.341776,-0.341776,-0.341776 +-0.340796,-0.340796,-0.340796,-0.340796,-0.340796,-0.340796 +-0.339816,-0.339816,-0.339816,-0.339816,-0.339816,-0.339816 +-0.338836,-0.338836,-0.338836,-0.338836,-0.338836,-0.338836 +-0.337856,-0.337856,-0.337856,-0.337856,-0.337856,-0.337856 +-0.336876,-0.336876,-0.336876,-0.336876,-0.336876,-0.336876 +-0.335896,-0.335896,-0.335896,-0.335896,-0.335896,-0.335896 +-0.334916,-0.334916,-0.334916,-0.334916,-0.334916,-0.334916 +-0.333936,-0.333936,-0.333936,-0.333936,-0.333936,-0.333936 +-0.332956,-0.332956,-0.332956,-0.332956,-0.332956,-0.332956 +-0.331976,-0.331976,-0.331976,-0.331976,-0.331976,-0.331976 +-0.330996,-0.330996,-0.330996,-0.330996,-0.330996,-0.330996 +-0.330016,-0.330016,-0.330016,-0.330016,-0.330016,-0.330016 +-0.329036,-0.329036,-0.329036,-0.329036,-0.329036,-0.329036 +-0.328056,-0.328056,-0.328056,-0.328056,-0.328056,-0.328056 +-0.327076,-0.327076,-0.327076,-0.327076,-0.327076,-0.327076 +-0.326096,-0.326096,-0.326096,-0.326096,-0.326096,-0.326096 +-0.325116,-0.325116,-0.325116,-0.325116,-0.325116,-0.325116 +-0.324136,-0.324136,-0.324136,-0.324136,-0.324136,-0.324136 +-0.323156,-0.323156,-0.323156,-0.323156,-0.323156,-0.323156 +-0.322176,-0.322176,-0.322176,-0.322176,-0.322176,-0.322176 +-0.321196,-0.321196,-0.321196,-0.321196,-0.321196,-0.321196 +-0.320216,-0.320216,-0.320216,-0.320216,-0.320216,-0.320216 +-0.319236,-0.319236,-0.319236,-0.319236,-0.319236,-0.319236 +-0.318256,-0.318256,-0.318256,-0.318256,-0.318256,-0.318256 +-0.317276,-0.317276,-0.317276,-0.317276,-0.317276,-0.317276 +-0.316296,-0.316296,-0.316296,-0.316296,-0.316296,-0.316296 +-0.315316,-0.315316,-0.315316,-0.315316,-0.315316,-0.315316 +-0.314336,-0.314336,-0.314336,-0.314336,-0.314336,-0.314336 +-0.313356,-0.313356,-0.313356,-0.313356,-0.313356,-0.313356 +-0.312376,-0.312376,-0.312376,-0.312376,-0.312376,-0.312376 +-0.311396,-0.311396,-0.311396,-0.311396,-0.311396,-0.311396 +-0.310416,-0.310416,-0.310416,-0.310416,-0.310416,-0.310416 +-0.309436,-0.309436,-0.309436,-0.309436,-0.309436,-0.309436 +-0.308456,-0.308456,-0.308456,-0.308456,-0.308456,-0.308456 +-0.307476,-0.307476,-0.307476,-0.307476,-0.307476,-0.307476 +-0.306496,-0.306496,-0.306496,-0.306496,-0.306496,-0.306496 +-0.305516,-0.305516,-0.305516,-0.305516,-0.305516,-0.305516 +-0.304536,-0.304536,-0.304536,-0.304536,-0.304536,-0.304536 +-0.303556,-0.303556,-0.303556,-0.303556,-0.303556,-0.303556 +-0.302576,-0.302576,-0.302576,-0.302576,-0.302576,-0.302576 +-0.301596,-0.301596,-0.301596,-0.301596,-0.301596,-0.301596 +-0.300616,-0.300616,-0.300616,-0.300616,-0.300616,-0.300616 +-0.299636,-0.299636,-0.299636,-0.299636,-0.299636,-0.299636 +-0.298656,-0.298656,-0.298656,-0.298656,-0.298656,-0.298656 +-0.297676,-0.297676,-0.297676,-0.297676,-0.297676,-0.297676 +-0.296696,-0.296696,-0.296696,-0.296696,-0.296696,-0.296696 +-0.295716,-0.295716,-0.295716,-0.295716,-0.295716,-0.295716 +-0.294736,-0.294736,-0.294736,-0.294736,-0.294736,-0.294736 +-0.293756,-0.293756,-0.293756,-0.293756,-0.293756,-0.293756 +-0.292776,-0.292776,-0.292776,-0.292776,-0.292776,-0.292776 +-0.291796,-0.291796,-0.291796,-0.291796,-0.291796,-0.291796 +-0.290816,-0.290816,-0.290816,-0.290816,-0.290816,-0.290816 +-0.289836,-0.289836,-0.289836,-0.289836,-0.289836,-0.289836 +-0.288856,-0.288856,-0.288856,-0.288856,-0.288856,-0.288856 +-0.287876,-0.287876,-0.287876,-0.287876,-0.287876,-0.287876 +-0.286896,-0.286896,-0.286896,-0.286896,-0.286896,-0.286896 +-0.285916,-0.285916,-0.285916,-0.285916,-0.285916,-0.285916 +-0.284936,-0.284936,-0.284936,-0.284936,-0.284936,-0.284936 +-0.283956,-0.283956,-0.283956,-0.283956,-0.283956,-0.283956 +-0.282976,-0.282976,-0.282976,-0.282976,-0.282976,-0.282976 +-0.281996,-0.281996,-0.281996,-0.281996,-0.281996,-0.281996 +-0.281016,-0.281016,-0.281016,-0.281016,-0.281016,-0.281016 +-0.280036,-0.280036,-0.280036,-0.280036,-0.280036,-0.280036 +-0.279056,-0.279056,-0.279056,-0.279056,-0.279056,-0.279056 +-0.278076,-0.278076,-0.278076,-0.278076,-0.278076,-0.278076 +-0.277096,-0.277096,-0.277096,-0.277096,-0.277096,-0.277096 +-0.276116,-0.276116,-0.276116,-0.276116,-0.276116,-0.276116 +-0.275136,-0.275136,-0.275136,-0.275136,-0.275136,-0.275136 +-0.274156,-0.274156,-0.274156,-0.274156,-0.274156,-0.274156 +-0.273176,-0.273176,-0.273176,-0.273176,-0.273176,-0.273176 +-0.272196,-0.272196,-0.272196,-0.272196,-0.272196,-0.272196 +-0.271216,-0.271216,-0.271216,-0.271216,-0.271216,-0.271216 +-0.270236,-0.270236,-0.270236,-0.270236,-0.270236,-0.270236 +-0.269256,-0.269256,-0.269256,-0.269256,-0.269256,-0.269256 +-0.268276,-0.268276,-0.268276,-0.268276,-0.268276,-0.268276 +-0.267296,-0.267296,-0.267296,-0.267296,-0.267296,-0.267296 +-0.266316,-0.266316,-0.266316,-0.266316,-0.266316,-0.266316 +-0.265336,-0.265336,-0.265336,-0.265336,-0.265336,-0.265336 +-0.264356,-0.264356,-0.264356,-0.264356,-0.264356,-0.264356 +-0.263376,-0.263376,-0.263376,-0.263376,-0.263376,-0.263376 +-0.262396,-0.262396,-0.262396,-0.262396,-0.262396,-0.262396 +-0.261416,-0.261416,-0.261416,-0.261416,-0.261416,-0.261416 +-0.260436,-0.260436,-0.260436,-0.260436,-0.260436,-0.260436 +-0.259456,-0.259456,-0.259456,-0.259456,-0.259456,-0.259456 +-0.258476,-0.258476,-0.258476,-0.258476,-0.258476,-0.258476 +-0.257496,-0.257496,-0.257496,-0.257496,-0.257496,-0.257496 +-0.256516,-0.256516,-0.256516,-0.256516,-0.256516,-0.256516 +-0.255536,-0.255536,-0.255536,-0.255536,-0.255536,-0.255536 +-0.254556,-0.254556,-0.254556,-0.254556,-0.254556,-0.254556 +-0.253576,-0.253576,-0.253576,-0.253576,-0.253576,-0.253576 +-0.252596,-0.252596,-0.252596,-0.252596,-0.252596,-0.252596 +-0.251616,-0.251616,-0.251616,-0.251616,-0.251616,-0.251616 +-0.250636,-0.250636,-0.250636,-0.250636,-0.250636,-0.250636 +-0.249656,-0.249656,-0.249656,-0.249656,-0.249656,-0.249656 +-0.248676,-0.248676,-0.248676,-0.248676,-0.248676,-0.248676 +-0.247696,-0.247696,-0.247696,-0.247696,-0.247696,-0.247696 +-0.246716,-0.246716,-0.246716,-0.246716,-0.246716,-0.246716 +-0.245736,-0.245736,-0.245736,-0.245736,-0.245736,-0.245736 +-0.244756,-0.244756,-0.244756,-0.244756,-0.244756,-0.244756 +-0.243776,-0.243776,-0.243776,-0.243776,-0.243776,-0.243776 +-0.242796,-0.242796,-0.242796,-0.242796,-0.242796,-0.242796 +-0.241816,-0.241816,-0.241816,-0.241816,-0.241816,-0.241816 +-0.240836,-0.240836,-0.240836,-0.240836,-0.240836,-0.240836 +-0.239856,-0.239856,-0.239856,-0.239856,-0.239856,-0.239856 +-0.238876,-0.238876,-0.238876,-0.238876,-0.238876,-0.238876 +-0.237896,-0.237896,-0.237896,-0.237896,-0.237896,-0.237896 +-0.236916,-0.236916,-0.236916,-0.236916,-0.236916,-0.236916 +-0.235936,-0.235936,-0.235936,-0.235936,-0.235936,-0.235936 +-0.234956,-0.234956,-0.234956,-0.234956,-0.234956,-0.234956 +-0.233976,-0.233976,-0.233976,-0.233976,-0.233976,-0.233976 +-0.232996,-0.232996,-0.232996,-0.232996,-0.232996,-0.232996 +-0.232016,-0.232016,-0.232016,-0.232016,-0.232016,-0.232016 +-0.231036,-0.231036,-0.231036,-0.231036,-0.231036,-0.231036 +-0.230056,-0.230056,-0.230056,-0.230056,-0.230056,-0.230056 +-0.229076,-0.229076,-0.229076,-0.229076,-0.229076,-0.229076 +-0.228096,-0.228096,-0.228096,-0.228096,-0.228096,-0.228096 +-0.227116,-0.227116,-0.227116,-0.227116,-0.227116,-0.227116 +-0.226136,-0.226136,-0.226136,-0.226136,-0.226136,-0.226136 +-0.225156,-0.225156,-0.225156,-0.225156,-0.225156,-0.225156 +-0.224176,-0.224176,-0.224176,-0.224176,-0.224176,-0.224176 +-0.223196,-0.223196,-0.223196,-0.223196,-0.223196,-0.223196 +-0.222216,-0.222216,-0.222216,-0.222216,-0.222216,-0.222216 +-0.221236,-0.221236,-0.221236,-0.221236,-0.221236,-0.221236 +-0.220256,-0.220256,-0.220256,-0.220256,-0.220256,-0.220256 +-0.219276,-0.219276,-0.219276,-0.219276,-0.219276,-0.219276 +-0.218296,-0.218296,-0.218296,-0.218296,-0.218296,-0.218296 +-0.217316,-0.217316,-0.217316,-0.217316,-0.217316,-0.217316 +-0.216336,-0.216336,-0.216336,-0.216336,-0.216336,-0.216336 +-0.215356,-0.215356,-0.215356,-0.215356,-0.215356,-0.215356 +-0.214376,-0.214376,-0.214376,-0.214376,-0.214376,-0.214376 +-0.213396,-0.213396,-0.213396,-0.213396,-0.213396,-0.213396 +-0.212416,-0.212416,-0.212416,-0.212416,-0.212416,-0.212416 +-0.211436,-0.211436,-0.211436,-0.211436,-0.211436,-0.211436 +-0.210456,-0.210456,-0.210456,-0.210456,-0.210456,-0.210456 +-0.209476,-0.209476,-0.209476,-0.209476,-0.209476,-0.209476 +-0.208496,-0.208496,-0.208496,-0.208496,-0.208496,-0.208496 +-0.207516,-0.207516,-0.207516,-0.207516,-0.207516,-0.207516 +-0.206536,-0.206536,-0.206536,-0.206536,-0.206536,-0.206536 +-0.205556,-0.205556,-0.205556,-0.205556,-0.205556,-0.205556 +-0.204576,-0.204576,-0.204576,-0.204576,-0.204576,-0.204576 +-0.203596,-0.203596,-0.203596,-0.203596,-0.203596,-0.203596 +-0.202616,-0.202616,-0.202616,-0.202616,-0.202616,-0.202616 +-0.201636,-0.201636,-0.201636,-0.201636,-0.201636,-0.201636 +-0.200656,-0.200656,-0.200656,-0.200656,-0.200656,-0.200656 +-0.199676,-0.199676,-0.199676,-0.199676,-0.199676,-0.199676 +-0.198696,-0.198696,-0.198696,-0.198696,-0.198696,-0.198696 +-0.197716,-0.197716,-0.197716,-0.197716,-0.197716,-0.197716 +-0.196736,-0.196736,-0.196736,-0.196736,-0.196736,-0.196736 +-0.195756,-0.195756,-0.195756,-0.195756,-0.195756,-0.195756 +-0.194776,-0.194776,-0.194776,-0.194776,-0.194776,-0.194776 +-0.193796,-0.193796,-0.193796,-0.193796,-0.193796,-0.193796 +-0.192816,-0.192816,-0.192816,-0.192816,-0.192816,-0.192816 +-0.191836,-0.191836,-0.191836,-0.191836,-0.191836,-0.191836 +-0.190856,-0.190856,-0.190856,-0.190856,-0.190856,-0.190856 +-0.189876,-0.189876,-0.189876,-0.189876,-0.189876,-0.189876 +-0.188896,-0.188896,-0.188896,-0.188896,-0.188896,-0.188896 +-0.187916,-0.187916,-0.187916,-0.187916,-0.187916,-0.187916 +-0.186936,-0.186936,-0.186936,-0.186936,-0.186936,-0.186936 +-0.185956,-0.185956,-0.185956,-0.185956,-0.185956,-0.185956 +-0.184976,-0.184976,-0.184976,-0.184976,-0.184976,-0.184976 +-0.183996,-0.183996,-0.183996,-0.183996,-0.183996,-0.183996 +-0.183016,-0.183016,-0.183016,-0.183016,-0.183016,-0.183016 +-0.182036,-0.182036,-0.182036,-0.182036,-0.182036,-0.182036 +-0.181056,-0.181056,-0.181056,-0.181056,-0.181056,-0.181056 +-0.180076,-0.180076,-0.180076,-0.180076,-0.180076,-0.180076 +-0.179096,-0.179096,-0.179096,-0.179096,-0.179096,-0.179096 +-0.178116,-0.178116,-0.178116,-0.178116,-0.178116,-0.178116 +-0.177136,-0.177136,-0.177136,-0.177136,-0.177136,-0.177136 +-0.176156,-0.176156,-0.176156,-0.176156,-0.176156,-0.176156 +-0.175176,-0.175176,-0.175176,-0.175176,-0.175176,-0.175176 +-0.174196,-0.174196,-0.174196,-0.174196,-0.174196,-0.174196 +-0.173216,-0.173216,-0.173216,-0.173216,-0.173216,-0.173216 +-0.172236,-0.172236,-0.172236,-0.172236,-0.172236,-0.172236 +-0.171256,-0.171256,-0.171256,-0.171256,-0.171256,-0.171256 +-0.170276,-0.170276,-0.170276,-0.170276,-0.170276,-0.170276 +-0.169296,-0.169296,-0.169296,-0.169296,-0.169296,-0.169296 +-0.168316,-0.168316,-0.168316,-0.168316,-0.168316,-0.168316 +-0.167336,-0.167336,-0.167336,-0.167336,-0.167336,-0.167336 +-0.166356,-0.166356,-0.166356,-0.166356,-0.166356,-0.166356 +-0.165376,-0.165376,-0.165376,-0.165376,-0.165376,-0.165376 +-0.164396,-0.164396,-0.164396,-0.164396,-0.164396,-0.164396 +-0.163416,-0.163416,-0.163416,-0.163416,-0.163416,-0.163416 +-0.162436,-0.162436,-0.162436,-0.162436,-0.162436,-0.162436 +-0.161456,-0.161456,-0.161456,-0.161456,-0.161456,-0.161456 +-0.160476,-0.160476,-0.160476,-0.160476,-0.160476,-0.160476 +-0.159496,-0.159496,-0.159496,-0.159496,-0.159496,-0.159496 +-0.158516,-0.158516,-0.158516,-0.158516,-0.158516,-0.158516 +-0.157536,-0.157536,-0.157536,-0.157536,-0.157536,-0.157536 +-0.156556,-0.156556,-0.156556,-0.156556,-0.156556,-0.156556 +-0.155576,-0.155576,-0.155576,-0.155576,-0.155576,-0.155576 +-0.154596,-0.154596,-0.154596,-0.154596,-0.154596,-0.154596 +-0.153616,-0.153616,-0.153616,-0.153616,-0.153616,-0.153616 +-0.152636,-0.152636,-0.152636,-0.152636,-0.152636,-0.152636 +-0.151656,-0.151656,-0.151656,-0.151656,-0.151656,-0.151656 +-0.150676,-0.150676,-0.150676,-0.150676,-0.150676,-0.150676 +-0.149696,-0.149696,-0.149696,-0.149696,-0.149696,-0.149696 +-0.148716,-0.148716,-0.148716,-0.148716,-0.148716,-0.148716 +-0.147736,-0.147736,-0.147736,-0.147736,-0.147736,-0.147736 +-0.146756,-0.146756,-0.146756,-0.146756,-0.146756,-0.146756 +-0.145776,-0.145776,-0.145776,-0.145776,-0.145776,-0.145776 +-0.144796,-0.144796,-0.144796,-0.144796,-0.144796,-0.144796 +-0.143816,-0.143816,-0.143816,-0.143816,-0.143816,-0.143816 +-0.142836,-0.142836,-0.142836,-0.142836,-0.142836,-0.142836 +-0.141856,-0.141856,-0.141856,-0.141856,-0.141856,-0.141856 +-0.140876,-0.140876,-0.140876,-0.140876,-0.140876,-0.140876 +-0.139896,-0.139896,-0.139896,-0.139896,-0.139896,-0.139896 +-0.138916,-0.138916,-0.138916,-0.138916,-0.138916,-0.138916 +-0.137936,-0.137936,-0.137936,-0.137936,-0.137936,-0.137936 +-0.136956,-0.136956,-0.136956,-0.136956,-0.136956,-0.136956 +-0.135976,-0.135976,-0.135976,-0.135976,-0.135976,-0.135976 +-0.134996,-0.134996,-0.134996,-0.134996,-0.134996,-0.134996 +-0.134016,-0.134016,-0.134016,-0.134016,-0.134016,-0.134016 +-0.133036,-0.133036,-0.133036,-0.133036,-0.133036,-0.133036 +-0.132056,-0.132056,-0.132056,-0.132056,-0.132056,-0.132056 +-0.131076,-0.131076,-0.131076,-0.131076,-0.131076,-0.131076 +-0.130096,-0.130096,-0.130096,-0.130096,-0.130096,-0.130096 +-0.129116,-0.129116,-0.129116,-0.129116,-0.129116,-0.129116 +-0.128136,-0.128136,-0.128136,-0.128136,-0.128136,-0.128136 +-0.127156,-0.127156,-0.127156,-0.127156,-0.127156,-0.127156 +-0.126176,-0.126176,-0.126176,-0.126176,-0.126176,-0.126176 +-0.125196,-0.125196,-0.125196,-0.125196,-0.125196,-0.125196 +-0.124216,-0.124216,-0.124216,-0.124216,-0.124216,-0.124216 +-0.123236,-0.123236,-0.123236,-0.123236,-0.123236,-0.123236 +-0.122256,-0.122256,-0.122256,-0.122256,-0.122256,-0.122256 +-0.121276,-0.121276,-0.121276,-0.121276,-0.121276,-0.121276 +-0.120296,-0.120296,-0.120296,-0.120296,-0.120296,-0.120296 +-0.119316,-0.119316,-0.119316,-0.119316,-0.119316,-0.119316 +-0.118336,-0.118336,-0.118336,-0.118336,-0.118336,-0.118336 +-0.117356,-0.117356,-0.117356,-0.117356,-0.117356,-0.117356 +-0.116376,-0.116376,-0.116376,-0.116376,-0.116376,-0.116376 +-0.115396,-0.115396,-0.115396,-0.115396,-0.115396,-0.115396 +-0.114416,-0.114416,-0.114416,-0.114416,-0.114416,-0.114416 +-0.113436,-0.113436,-0.113436,-0.113436,-0.113436,-0.113436 +-0.112456,-0.112456,-0.112456,-0.112456,-0.112456,-0.112456 +-0.111476,-0.111476,-0.111476,-0.111476,-0.111476,-0.111476 +-0.110496,-0.110496,-0.110496,-0.110496,-0.110496,-0.110496 +-0.109516,-0.109516,-0.109516,-0.109516,-0.109516,-0.109516 +-0.108536,-0.108536,-0.108536,-0.108536,-0.108536,-0.108536 +-0.107556,-0.107556,-0.107556,-0.107556,-0.107556,-0.107556 +-0.106576,-0.106576,-0.106576,-0.106576,-0.106576,-0.106576 +-0.105596,-0.105596,-0.105596,-0.105596,-0.105596,-0.105596 +-0.104616,-0.104616,-0.104616,-0.104616,-0.104616,-0.104616 +-0.103636,-0.103636,-0.103636,-0.103636,-0.103636,-0.103636 +-0.102656,-0.102656,-0.102656,-0.102656,-0.102656,-0.102656 +-0.101676,-0.101676,-0.101676,-0.101676,-0.101676,-0.101676 +-0.100696,-0.100696,-0.100696,-0.100696,-0.100696,-0.100696 +-0.099716,-0.099716,-0.099716,-0.099716,-0.099716,-0.099716 +-0.098736,-0.098736,-0.098736,-0.098736,-0.098736,-0.098736 +-0.097756,-0.097756,-0.097756,-0.097756,-0.097756,-0.097756 +-0.096776,-0.096776,-0.096776,-0.096776,-0.096776,-0.096776 +-0.095796,-0.095796,-0.095796,-0.095796,-0.095796,-0.095796 +-0.094816,-0.094816,-0.094816,-0.094816,-0.094816,-0.094816 +-0.093836,-0.093836,-0.093836,-0.093836,-0.093836,-0.093836 +-0.092856,-0.092856,-0.092856,-0.092856,-0.092856,-0.092856 +-0.091876,-0.091876,-0.091876,-0.091876,-0.091876,-0.091876 +-0.090896,-0.090896,-0.090896,-0.090896,-0.090896,-0.090896 +-0.089916,-0.089916,-0.089916,-0.089916,-0.089916,-0.089916 +-0.088936,-0.088936,-0.088936,-0.088936,-0.088936,-0.088936 +-0.087956,-0.087956,-0.087956,-0.087956,-0.087956,-0.087956 +-0.086976,-0.086976,-0.086976,-0.086976,-0.086976,-0.086976 +-0.085996,-0.085996,-0.085996,-0.085996,-0.085996,-0.085996 +-0.085016,-0.085016,-0.085016,-0.085016,-0.085016,-0.085016 +-0.084036,-0.084036,-0.084036,-0.084036,-0.084036,-0.084036 +-0.083056,-0.083056,-0.083056,-0.083056,-0.083056,-0.083056 +-0.082076,-0.082076,-0.082076,-0.082076,-0.082076,-0.082076 +-0.081096,-0.081096,-0.081096,-0.081096,-0.081096,-0.081096 +-0.080116,-0.080116,-0.080116,-0.080116,-0.080116,-0.080116 +-0.079136,-0.079136,-0.079136,-0.079136,-0.079136,-0.079136 +-0.078156,-0.078156,-0.078156,-0.078156,-0.078156,-0.078156 +-0.077176,-0.077176,-0.077176,-0.077176,-0.077176,-0.077176 +-0.076196,-0.076196,-0.076196,-0.076196,-0.076196,-0.076196 +-0.075216,-0.075216,-0.075216,-0.075216,-0.075216,-0.075216 +-0.074236,-0.074236,-0.074236,-0.074236,-0.074236,-0.074236 +-0.073256,-0.073256,-0.073256,-0.073256,-0.073256,-0.073256 +-0.072276,-0.072276,-0.072276,-0.072276,-0.072276,-0.072276 +-0.071296,-0.071296,-0.071296,-0.071296,-0.071296,-0.071296 +-0.070316,-0.070316,-0.070316,-0.070316,-0.070316,-0.070316 +-0.069336,-0.069336,-0.069336,-0.069336,-0.069336,-0.069336 +-0.068356,-0.068356,-0.068356,-0.068356,-0.068356,-0.068356 +-0.067376,-0.067376,-0.067376,-0.067376,-0.067376,-0.067376 +-0.066396,-0.066396,-0.066396,-0.066396,-0.066396,-0.066396 +-0.065416,-0.065416,-0.065416,-0.065416,-0.065416,-0.065416 +-0.064436,-0.064436,-0.064436,-0.064436,-0.064436,-0.064436 +-0.063456,-0.063456,-0.063456,-0.063456,-0.063456,-0.063456 +-0.062476,-0.062476,-0.062476,-0.062476,-0.062476,-0.062476 +-0.061496,-0.061496,-0.061496,-0.061496,-0.061496,-0.061496 +-0.060516,-0.060516,-0.060516,-0.060516,-0.060516,-0.060516 +-0.059536,-0.059536,-0.059536,-0.059536,-0.059536,-0.059536 +-0.058556,-0.058556,-0.058556,-0.058556,-0.058556,-0.058556 +-0.057576,-0.057576,-0.057576,-0.057576,-0.057576,-0.057576 +-0.056596,-0.056596,-0.056596,-0.056596,-0.056596,-0.056596 +-0.055616,-0.055616,-0.055616,-0.055616,-0.055616,-0.055616 +-0.054636,-0.054636,-0.054636,-0.054636,-0.054636,-0.054636 +-0.053656,-0.053656,-0.053656,-0.053656,-0.053656,-0.053656 +-0.052676,-0.052676,-0.052676,-0.052676,-0.052676,-0.052676 +-0.051696,-0.051696,-0.051696,-0.051696,-0.051696,-0.051696 +-0.050716,-0.050716,-0.050716,-0.050716,-0.050716,-0.050716 +-0.049736,-0.049736,-0.049736,-0.049736,-0.049736,-0.049736 +-0.048756,-0.048756,-0.048756,-0.048756,-0.048756,-0.048756 +-0.047776,-0.047776,-0.047776,-0.047776,-0.047776,-0.047776 +-0.046796,-0.046796,-0.046796,-0.046796,-0.046796,-0.046796 +-0.045816,-0.045816,-0.045816,-0.045816,-0.045816,-0.045816 +-0.044836,-0.044836,-0.044836,-0.044836,-0.044836,-0.044836 +-0.043856,-0.043856,-0.043856,-0.043856,-0.043856,-0.043856 +-0.042876,-0.042876,-0.042876,-0.042876,-0.042876,-0.042876 +-0.041896,-0.041896,-0.041896,-0.041896,-0.041896,-0.041896 +-0.040916,-0.040916,-0.040916,-0.040916,-0.040916,-0.040916 +-0.039936,-0.039936,-0.039936,-0.039936,-0.039936,-0.039936 +-0.038956,-0.038956,-0.038956,-0.038956,-0.038956,-0.038956 +-0.037976,-0.037976,-0.037976,-0.037976,-0.037976,-0.037976 +-0.036996,-0.036996,-0.036996,-0.036996,-0.036996,-0.036996 +-0.036016,-0.036016,-0.036016,-0.036016,-0.036016,-0.036016 +-0.035036,-0.035036,-0.035036,-0.035036,-0.035036,-0.035036 +-0.034056,-0.034056,-0.034056,-0.034056,-0.034056,-0.034056 +-0.033076,-0.033076,-0.033076,-0.033076,-0.033076,-0.033076 +-0.032096,-0.032096,-0.032096,-0.032096,-0.032096,-0.032096 +-0.031116,-0.031116,-0.031116,-0.031116,-0.031116,-0.031116 +-0.030136,-0.030136,-0.030136,-0.030136,-0.030136,-0.030136 +-0.029156,-0.029156,-0.029156,-0.029156,-0.029156,-0.029156 +-0.028176,-0.028176,-0.028176,-0.028176,-0.028176,-0.028176 +-0.027196,-0.027196,-0.027196,-0.027196,-0.027196,-0.027196 +-0.026216,-0.026216,-0.026216,-0.026216,-0.026216,-0.026216 +-0.025236,-0.025236,-0.025236,-0.025236,-0.025236,-0.025236 +-0.024256,-0.024256,-0.024256,-0.024256,-0.024256,-0.024256 +-0.023276,-0.023276,-0.023276,-0.023276,-0.023276,-0.023276 +-0.022296,-0.022296,-0.022296,-0.022296,-0.022296,-0.022296 +-0.021316,-0.021316,-0.021316,-0.021316,-0.021316,-0.021316 +-0.020336,-0.020336,-0.020336,-0.020336,-0.020336,-0.020336 +-0.019356,-0.019356,-0.019356,-0.019356,-0.019356,-0.019356 +-0.018376,-0.018376,-0.018376,-0.018376,-0.018376,-0.018376 +-0.017396,-0.017396,-0.017396,-0.017396,-0.017396,-0.017396 +-0.016416,-0.016416,-0.016416,-0.016416,-0.016416,-0.016416 +-0.015436,-0.015436,-0.015436,-0.015436,-0.015436,-0.015436 +-0.014456,-0.014456,-0.014456,-0.014456,-0.014456,-0.014456 +-0.013476,-0.013476,-0.013476,-0.013476,-0.013476,-0.013476 +-0.012496,-0.012496,-0.012496,-0.012496,-0.012496,-0.012496 +-0.011516,-0.011516,-0.011516,-0.011516,-0.011516,-0.011516 +-0.010537,-0.010537,-0.010537,-0.010537,-0.010537,-0.010537 +-0.009566,-0.009566,-0.009566,-0.009566,-0.009566,-0.009566 +-0.00861,-0.00861,-0.00861,-0.00861,-0.00861,-0.00861 +-0.007675,-0.007675,-0.007675,-0.007675,-0.007675,-0.007675 +-0.006769,-0.006769,-0.006769,-0.006769,-0.006769,-0.006769 +-0.005898,-0.005898,-0.005898,-0.005898,-0.005898,-0.005898 +-0.00507,-0.00507,-0.00507,-0.00507,-0.00507,-0.00507 +-0.004291,-0.004291,-0.004291,-0.004291,-0.004291,-0.004291 +-0.003569,-0.003569,-0.003569,-0.003569,-0.003569,-0.003569 +-0.002911,-0.002911,-0.002911,-0.002911,-0.002911,-0.002911 +-0.002323,-0.002323,-0.002323,-0.002323,-0.002323,-0.002323 +-0.001813,-0.001813,-0.001813,-0.001813,-0.001813,-0.001813 +-0.001383,-0.001383,-0.001383,-0.001383,-0.001383,-0.001383 +-0.001027,-0.001027,-0.001027,-0.001027,-0.001027,-0.001027 +-0.000738,-0.000738,-0.000738,-0.000738,-0.000738,-0.000738 +-0.000509,-0.000509,-0.000509,-0.000509,-0.000509,-0.000509 +-0.000333,-0.000333,-0.000333,-0.000333,-0.000333,-0.000333 +-0.000203,-0.000203,-0.000203,-0.000203,-0.000203,-0.000203 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000013,0.000013,0.000013,0.000013,0.000013,0.000013 +0.000045,0.000045,0.000045,0.000045,0.000045,0.000045 +0.000107,0.000107,0.000107,0.000107,0.000107,0.000107 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.00036,0.00036,0.00036,0.00036,0.00036,0.00036 +0.000572,0.000572,0.000572,0.000572,0.000572,0.000572 +0.000853,0.000853,0.000853,0.000853,0.000853,0.000853 +0.001215,0.001215,0.001215,0.001215,0.001215,0.001215 +0.001667,0.001667,0.001667,0.001667,0.001667,0.001667 +0.002218,0.002218,0.002218,0.002218,0.002218,0.002218 +0.00288,0.00288,0.00288,0.00288,0.00288,0.00288 +0.003662,0.003662,0.003662,0.003662,0.003662,0.003662 +0.004573,0.004573,0.004573,0.004573,0.004573,0.004573 +0.005623,0.005623,0.005623,0.005623,0.005623,0.005623 +0.006805,0.006805,0.006805,0.006805,0.006805,0.006805 +0.008111,0.008111,0.008111,0.008111,0.008111,0.008111 +0.009529,0.009529,0.009529,0.009529,0.009529,0.009529 +0.01105,0.01105,0.01105,0.01105,0.01105,0.01105 +0.012663,0.012663,0.012663,0.012663,0.012663,0.012663 +0.01436,0.01436,0.01436,0.01436,0.01436,0.01436 +0.016129,0.016129,0.016129,0.016129,0.016129,0.016129 +0.017962,0.017962,0.017962,0.017962,0.017962,0.017962 +0.019847,0.019847,0.019847,0.019847,0.019847,0.019847 +0.021775,0.021775,0.021775,0.021775,0.021775,0.021775 +0.023736,0.023736,0.023736,0.023736,0.023736,0.023736 +0.025719,0.025719,0.025719,0.025719,0.025719,0.025719 +0.027716,0.027716,0.027716,0.027716,0.027716,0.027716 +0.029716,0.029716,0.029716,0.029716,0.029716,0.029716 +0.031716,0.031716,0.031716,0.031716,0.031716,0.031716 +0.033716,0.033716,0.033716,0.033716,0.033716,0.033716 +0.035716,0.035716,0.035716,0.035716,0.035716,0.035716 +0.037716,0.037716,0.037716,0.037716,0.037716,0.037716 +0.039716,0.039716,0.039716,0.039716,0.039716,0.039716 +0.041716,0.041716,0.041716,0.041716,0.041716,0.041716 +0.043716,0.043716,0.043716,0.043716,0.043716,0.043716 +0.045716,0.045716,0.045716,0.045716,0.045716,0.045716 +0.047716,0.047716,0.047716,0.047716,0.047716,0.047716 +0.049716,0.049716,0.049716,0.049716,0.049716,0.049716 +0.051716,0.051716,0.051716,0.051716,0.051716,0.051716 +0.053716,0.053716,0.053716,0.053716,0.053716,0.053716 +0.055716,0.055716,0.055716,0.055716,0.055716,0.055716 +0.057716,0.057716,0.057716,0.057716,0.057716,0.057716 +0.059716,0.059716,0.059716,0.059716,0.059716,0.059716 +0.061716,0.061716,0.061716,0.061716,0.061716,0.061716 +0.063716,0.063716,0.063716,0.063716,0.063716,0.063716 +0.065716,0.065716,0.065716,0.065716,0.065716,0.065716 +0.067716,0.067716,0.067716,0.067716,0.067716,0.067716 +0.069716,0.069716,0.069716,0.069716,0.069716,0.069716 +0.071716,0.071716,0.071716,0.071716,0.071716,0.071716 +0.073716,0.073716,0.073716,0.073716,0.073716,0.073716 +0.075716,0.075716,0.075716,0.075716,0.075716,0.075716 +0.077716,0.077716,0.077716,0.077716,0.077716,0.077716 +0.079716,0.079716,0.079716,0.079716,0.079716,0.079716 +0.081716,0.081716,0.081716,0.081716,0.081716,0.081716 +0.083716,0.083716,0.083716,0.083716,0.083716,0.083716 +0.085716,0.085716,0.085716,0.085716,0.085716,0.085716 +0.087716,0.087716,0.087716,0.087716,0.087716,0.087716 +0.089716,0.089716,0.089716,0.089716,0.089716,0.089716 +0.091716,0.091716,0.091716,0.091716,0.091716,0.091716 +0.093716,0.093716,0.093716,0.093716,0.093716,0.093716 +0.095716,0.095716,0.095716,0.095716,0.095716,0.095716 +0.097716,0.097716,0.097716,0.097716,0.097716,0.097716 +0.099716,0.099716,0.099716,0.099716,0.099716,0.099716 +0.101716,0.101716,0.101716,0.101716,0.101716,0.101716 +0.103716,0.103716,0.103716,0.103716,0.103716,0.103716 +0.105716,0.105716,0.105716,0.105716,0.105716,0.105716 +0.107716,0.107716,0.107716,0.107716,0.107716,0.107716 +0.109716,0.109716,0.109716,0.109716,0.109716,0.109716 +0.111716,0.111716,0.111716,0.111716,0.111716,0.111716 +0.113716,0.113716,0.113716,0.113716,0.113716,0.113716 +0.115716,0.115716,0.115716,0.115716,0.115716,0.115716 +0.117716,0.117716,0.117716,0.117716,0.117716,0.117716 +0.119716,0.119716,0.119716,0.119716,0.119716,0.119716 +0.121716,0.121716,0.121716,0.121716,0.121716,0.121716 +0.123716,0.123716,0.123716,0.123716,0.123716,0.123716 +0.125716,0.125716,0.125716,0.125716,0.125716,0.125716 +0.127716,0.127716,0.127716,0.127716,0.127716,0.127716 +0.129716,0.129716,0.129716,0.129716,0.129716,0.129716 +0.131716,0.131716,0.131716,0.131716,0.131716,0.131716 +0.133716,0.133716,0.133716,0.133716,0.133716,0.133716 +0.135716,0.135716,0.135716,0.135716,0.135716,0.135716 +0.137716,0.137716,0.137716,0.137716,0.137716,0.137716 +0.139716,0.139716,0.139716,0.139716,0.139716,0.139716 +0.141716,0.141716,0.141716,0.141716,0.141716,0.141716 +0.143716,0.143716,0.143716,0.143716,0.143716,0.143716 +0.145716,0.145716,0.145716,0.145716,0.145716,0.145716 +0.147716,0.147716,0.147716,0.147716,0.147716,0.147716 +0.149716,0.149716,0.149716,0.149716,0.149716,0.149716 +0.151716,0.151716,0.151716,0.151716,0.151716,0.151716 +0.153716,0.153716,0.153716,0.153716,0.153716,0.153716 +0.155716,0.155716,0.155716,0.155716,0.155716,0.155716 +0.157716,0.157716,0.157716,0.157716,0.157716,0.157716 +0.159716,0.159716,0.159716,0.159716,0.159716,0.159716 +0.161716,0.161716,0.161716,0.161716,0.161716,0.161716 +0.163716,0.163716,0.163716,0.163716,0.163716,0.163716 +0.165716,0.165716,0.165716,0.165716,0.165716,0.165716 +0.167716,0.167716,0.167716,0.167716,0.167716,0.167716 +0.169716,0.169716,0.169716,0.169716,0.169716,0.169716 +0.171716,0.171716,0.171716,0.171716,0.171716,0.171716 +0.173716,0.173716,0.173716,0.173716,0.173716,0.173716 +0.175716,0.175716,0.175716,0.175716,0.175716,0.175716 +0.177716,0.177716,0.177716,0.177716,0.177716,0.177716 +0.179716,0.179716,0.179716,0.179716,0.179716,0.179716 +0.181716,0.181716,0.181716,0.181716,0.181716,0.181716 +0.183716,0.183716,0.183716,0.183716,0.183716,0.183716 +0.185716,0.185716,0.185716,0.185716,0.185716,0.185716 +0.187716,0.187716,0.187716,0.187716,0.187716,0.187716 +0.189716,0.189716,0.189716,0.189716,0.189716,0.189716 +0.191716,0.191716,0.191716,0.191716,0.191716,0.191716 +0.193716,0.193716,0.193716,0.193716,0.193716,0.193716 +0.195716,0.195716,0.195716,0.195716,0.195716,0.195716 +0.197716,0.197716,0.197716,0.197716,0.197716,0.197716 +0.199716,0.199716,0.199716,0.199716,0.199716,0.199716 +0.201716,0.201716,0.201716,0.201716,0.201716,0.201716 +0.203716,0.203716,0.203716,0.203716,0.203716,0.203716 +0.205716,0.205716,0.205716,0.205716,0.205716,0.205716 +0.207716,0.207716,0.207716,0.207716,0.207716,0.207716 +0.209716,0.209716,0.209716,0.209716,0.209716,0.209716 +0.211716,0.211716,0.211716,0.211716,0.211716,0.211716 +0.213716,0.213716,0.213716,0.213716,0.213716,0.213716 +0.215716,0.215716,0.215716,0.215716,0.215716,0.215716 +0.217716,0.217716,0.217716,0.217716,0.217716,0.217716 +0.219716,0.219716,0.219716,0.219716,0.219716,0.219716 +0.221716,0.221716,0.221716,0.221716,0.221716,0.221716 +0.223716,0.223716,0.223716,0.223716,0.223716,0.223716 +0.225716,0.225716,0.225716,0.225716,0.225716,0.225716 +0.227716,0.227716,0.227716,0.227716,0.227716,0.227716 +0.229716,0.229716,0.229716,0.229716,0.229716,0.229716 +0.231716,0.231716,0.231716,0.231716,0.231716,0.231716 +0.233716,0.233716,0.233716,0.233716,0.233716,0.233716 +0.235716,0.235716,0.235716,0.235716,0.235716,0.235716 +0.237716,0.237716,0.237716,0.237716,0.237716,0.237716 +0.239716,0.239716,0.239716,0.239716,0.239716,0.239716 +0.241716,0.241716,0.241716,0.241716,0.241716,0.241716 +0.243716,0.243716,0.243716,0.243716,0.243716,0.243716 +0.245716,0.245716,0.245716,0.245716,0.245716,0.245716 +0.247716,0.247716,0.247716,0.247716,0.247716,0.247716 +0.249716,0.249716,0.249716,0.249716,0.249716,0.249716 +0.251716,0.251716,0.251716,0.251716,0.251716,0.251716 +0.253716,0.253716,0.253716,0.253716,0.253716,0.253716 +0.255716,0.255716,0.255716,0.255716,0.255716,0.255716 +0.257716,0.257716,0.257716,0.257716,0.257716,0.257716 +0.259716,0.259716,0.259716,0.259716,0.259716,0.259716 +0.261716,0.261716,0.261716,0.261716,0.261716,0.261716 +0.263716,0.263716,0.263716,0.263716,0.263716,0.263716 +0.265716,0.265716,0.265716,0.265716,0.265716,0.265716 +0.267716,0.267716,0.267716,0.267716,0.267716,0.267716 +0.269716,0.269716,0.269716,0.269716,0.269716,0.269716 +0.271716,0.271716,0.271716,0.271716,0.271716,0.271716 +0.273716,0.273716,0.273716,0.273716,0.273716,0.273716 +0.275716,0.275716,0.275716,0.275716,0.275716,0.275716 +0.277716,0.277716,0.277716,0.277716,0.277716,0.277716 +0.279716,0.279716,0.279716,0.279716,0.279716,0.279716 +0.281716,0.281716,0.281716,0.281716,0.281716,0.281716 +0.283716,0.283716,0.283716,0.283716,0.283716,0.283716 +0.285716,0.285716,0.285716,0.285716,0.285716,0.285716 +0.287716,0.287716,0.287716,0.287716,0.287716,0.287716 +0.289716,0.289716,0.289716,0.289716,0.289716,0.289716 +0.291716,0.291716,0.291716,0.291716,0.291716,0.291716 +0.293716,0.293716,0.293716,0.293716,0.293716,0.293716 +0.295716,0.295716,0.295716,0.295716,0.295716,0.295716 +0.297716,0.297716,0.297716,0.297716,0.297716,0.297716 +0.299716,0.299716,0.299716,0.299716,0.299716,0.299716 +0.301716,0.301716,0.301716,0.301716,0.301716,0.301716 +0.303716,0.303716,0.303716,0.303716,0.303716,0.303716 +0.305716,0.305716,0.305716,0.305716,0.305716,0.305716 +0.307716,0.307716,0.307716,0.307716,0.307716,0.307716 +0.309716,0.309716,0.309716,0.309716,0.309716,0.309716 +0.311716,0.311716,0.311716,0.311716,0.311716,0.311716 +0.313716,0.313716,0.313716,0.313716,0.313716,0.313716 +0.315716,0.315716,0.315716,0.315716,0.315716,0.315716 +0.317716,0.317716,0.317716,0.317716,0.317716,0.317716 +0.319716,0.319716,0.319716,0.319716,0.319716,0.319716 +0.321716,0.321716,0.321716,0.321716,0.321716,0.321716 +0.323716,0.323716,0.323716,0.323716,0.323716,0.323716 +0.325716,0.325716,0.325716,0.325716,0.325716,0.325716 +0.327716,0.327716,0.327716,0.327716,0.327716,0.327716 +0.329716,0.329716,0.329716,0.329716,0.329716,0.329716 +0.331716,0.331716,0.331716,0.331716,0.331716,0.331716 +0.333716,0.333716,0.333716,0.333716,0.333716,0.333716 +0.335716,0.335716,0.335716,0.335716,0.335716,0.335716 +0.337716,0.337716,0.337716,0.337716,0.337716,0.337716 +0.339716,0.339716,0.339716,0.339716,0.339716,0.339716 +0.341716,0.341716,0.341716,0.341716,0.341716,0.341716 +0.343716,0.343716,0.343716,0.343716,0.343716,0.343716 +0.345716,0.345716,0.345716,0.345716,0.345716,0.345716 +0.347716,0.347716,0.347716,0.347716,0.347716,0.347716 +0.349716,0.349716,0.349716,0.349716,0.349716,0.349716 +0.351716,0.351716,0.351716,0.351716,0.351716,0.351716 +0.353716,0.353716,0.353716,0.353716,0.353716,0.353716 +0.355716,0.355716,0.355716,0.355716,0.355716,0.355716 +0.357716,0.357716,0.357716,0.357716,0.357716,0.357716 +0.359716,0.359716,0.359716,0.359716,0.359716,0.359716 +0.361716,0.361716,0.361716,0.361716,0.361716,0.361716 +0.363716,0.363716,0.363716,0.363716,0.363716,0.363716 +0.365716,0.365716,0.365716,0.365716,0.365716,0.365716 +0.367716,0.367716,0.367716,0.367716,0.367716,0.367716 +0.369716,0.369716,0.369716,0.369716,0.369716,0.369716 +0.371716,0.371716,0.371716,0.371716,0.371716,0.371716 +0.373716,0.373716,0.373716,0.373716,0.373716,0.373716 +0.375716,0.375716,0.375716,0.375716,0.375716,0.375716 +0.377716,0.377716,0.377716,0.377716,0.377716,0.377716 +0.379716,0.379716,0.379716,0.379716,0.379716,0.379716 +0.381716,0.381716,0.381716,0.381716,0.381716,0.381716 +0.383716,0.383716,0.383716,0.383716,0.383716,0.383716 +0.385716,0.385716,0.385716,0.385716,0.385716,0.385716 +0.387716,0.387716,0.387716,0.387716,0.387716,0.387716 +0.389716,0.389716,0.389716,0.389716,0.389716,0.389716 +0.391716,0.391716,0.391716,0.391716,0.391716,0.391716 +0.393716,0.393716,0.393716,0.393716,0.393716,0.393716 +0.395716,0.395716,0.395716,0.395716,0.395716,0.395716 +0.397716,0.397716,0.397716,0.397716,0.397716,0.397716 +0.399716,0.399716,0.399716,0.399716,0.399716,0.399716 +0.401716,0.401716,0.401716,0.401716,0.401716,0.401716 +0.403716,0.403716,0.403716,0.403716,0.403716,0.403716 +0.405716,0.405716,0.405716,0.405716,0.405716,0.405716 +0.407716,0.407716,0.407716,0.407716,0.407716,0.407716 +0.409716,0.409716,0.409716,0.409716,0.409716,0.409716 +0.411716,0.411716,0.411716,0.411716,0.411716,0.411716 +0.413716,0.413716,0.413716,0.413716,0.413716,0.413716 +0.415716,0.415716,0.415716,0.415716,0.415716,0.415716 +0.417716,0.417716,0.417716,0.417716,0.417716,0.417716 +0.419716,0.419716,0.419716,0.419716,0.419716,0.419716 +0.421716,0.421716,0.421716,0.421716,0.421716,0.421716 +0.423716,0.423716,0.423716,0.423716,0.423716,0.423716 +0.425716,0.425716,0.425716,0.425716,0.425716,0.425716 +0.427716,0.427716,0.427716,0.427716,0.427716,0.427716 +0.429716,0.429716,0.429716,0.429716,0.429716,0.429716 +0.431716,0.431716,0.431716,0.431716,0.431716,0.431716 +0.433716,0.433716,0.433716,0.433716,0.433716,0.433716 +0.435716,0.435716,0.435716,0.435716,0.435716,0.435716 +0.437716,0.437716,0.437716,0.437716,0.437716,0.437716 +0.439716,0.439716,0.439716,0.439716,0.439716,0.439716 +0.441716,0.441716,0.441716,0.441716,0.441716,0.441716 +0.443716,0.443716,0.443716,0.443716,0.443716,0.443716 +0.445716,0.445716,0.445716,0.445716,0.445716,0.445716 +0.447716,0.447716,0.447716,0.447716,0.447716,0.447716 +0.449716,0.449716,0.449716,0.449716,0.449716,0.449716 +0.451716,0.451716,0.451716,0.451716,0.451716,0.451716 +0.453716,0.453716,0.453716,0.453716,0.453716,0.453716 +0.455716,0.455716,0.455716,0.455716,0.455716,0.455716 +0.457716,0.457716,0.457716,0.457716,0.457716,0.457716 +0.459716,0.459716,0.459716,0.459716,0.459716,0.459716 +0.461716,0.461716,0.461716,0.461716,0.461716,0.461716 +0.463716,0.463716,0.463716,0.463716,0.463716,0.463716 +0.465716,0.465716,0.465716,0.465716,0.465716,0.465716 +0.467716,0.467716,0.467716,0.467716,0.467716,0.467716 +0.469716,0.469716,0.469716,0.469716,0.469716,0.469716 +0.471716,0.471716,0.471716,0.471716,0.471716,0.471716 +0.473716,0.473716,0.473716,0.473716,0.473716,0.473716 +0.475716,0.475716,0.475716,0.475716,0.475716,0.475716 +0.477716,0.477716,0.477716,0.477716,0.477716,0.477716 +0.479716,0.479716,0.479716,0.479716,0.479716,0.479716 +0.481716,0.481716,0.481716,0.481716,0.481716,0.481716 +0.483716,0.483716,0.483716,0.483716,0.483716,0.483716 +0.485716,0.485716,0.485716,0.485716,0.485716,0.485716 +0.487716,0.487716,0.487716,0.487716,0.487716,0.487716 +0.489716,0.489716,0.489716,0.489716,0.489716,0.489716 +0.491716,0.491716,0.491716,0.491716,0.491716,0.491716 +0.493716,0.493716,0.493716,0.493716,0.493716,0.493716 +0.495716,0.495716,0.495716,0.495716,0.495716,0.495716 +0.497716,0.497716,0.497716,0.497716,0.497716,0.497716 +0.499716,0.499716,0.499716,0.499716,0.499716,0.499716 +0.501716,0.501716,0.501716,0.501716,0.501716,0.501716 +0.503716,0.503716,0.503716,0.503716,0.503716,0.503716 +0.505716,0.505716,0.505716,0.505716,0.505716,0.505716 +0.507716,0.507716,0.507716,0.507716,0.507716,0.507716 +0.509716,0.509716,0.509716,0.509716,0.509716,0.509716 +0.511716,0.511716,0.511716,0.511716,0.511716,0.511716 +0.513716,0.513716,0.513716,0.513716,0.513716,0.513716 +0.515716,0.515716,0.515716,0.515716,0.515716,0.515716 +0.517716,0.517716,0.517716,0.517716,0.517716,0.517716 +0.519716,0.519716,0.519716,0.519716,0.519716,0.519716 +0.521716,0.521716,0.521716,0.521716,0.521716,0.521716 +0.523716,0.523716,0.523716,0.523716,0.523716,0.523716 +0.525716,0.525716,0.525716,0.525716,0.525716,0.525716 +0.527716,0.527716,0.527716,0.527716,0.527716,0.527716 +0.529716,0.529716,0.529716,0.529716,0.529716,0.529716 +0.531716,0.531716,0.531716,0.531716,0.531716,0.531716 +0.533716,0.533716,0.533716,0.533716,0.533716,0.533716 +0.535716,0.535716,0.535716,0.535716,0.535716,0.535716 +0.537716,0.537716,0.537716,0.537716,0.537716,0.537716 +0.539716,0.539716,0.539716,0.539716,0.539716,0.539716 +0.541716,0.541716,0.541716,0.541716,0.541716,0.541716 +0.543716,0.543716,0.543716,0.543716,0.543716,0.543716 +0.545716,0.545716,0.545716,0.545716,0.545716,0.545716 +0.547716,0.547716,0.547716,0.547716,0.547716,0.547716 +0.549716,0.549716,0.549716,0.549716,0.549716,0.549716 +0.551716,0.551716,0.551716,0.551716,0.551716,0.551716 +0.553716,0.553716,0.553716,0.553716,0.553716,0.553716 +0.555716,0.555716,0.555716,0.555716,0.555716,0.555716 +0.557716,0.557716,0.557716,0.557716,0.557716,0.557716 +0.559716,0.559716,0.559716,0.559716,0.559716,0.559716 +0.561716,0.561716,0.561716,0.561716,0.561716,0.561716 +0.563716,0.563716,0.563716,0.563716,0.563716,0.563716 +0.565716,0.565716,0.565716,0.565716,0.565716,0.565716 +0.567716,0.567716,0.567716,0.567716,0.567716,0.567716 +0.569716,0.569716,0.569716,0.569716,0.569716,0.569716 +0.571716,0.571716,0.571716,0.571716,0.571716,0.571716 +0.573716,0.573716,0.573716,0.573716,0.573716,0.573716 +0.575716,0.575716,0.575716,0.575716,0.575716,0.575716 +0.577716,0.577716,0.577716,0.577716,0.577716,0.577716 +0.579716,0.579716,0.579716,0.579716,0.579716,0.579716 +0.581716,0.581716,0.581716,0.581716,0.581716,0.581716 +0.583716,0.583716,0.583716,0.583716,0.583716,0.583716 +0.585716,0.585716,0.585716,0.585716,0.585716,0.585716 +0.587716,0.587716,0.587716,0.587716,0.587716,0.587716 +0.589716,0.589716,0.589716,0.589716,0.589716,0.589716 +0.591716,0.591716,0.591716,0.591716,0.591716,0.591716 +0.593716,0.593716,0.593716,0.593716,0.593716,0.593716 +0.595716,0.595716,0.595716,0.595716,0.595716,0.595716 +0.597716,0.597716,0.597716,0.597716,0.597716,0.597716 +0.599716,0.599716,0.599716,0.599716,0.599716,0.599716 +0.601716,0.601716,0.601716,0.601716,0.601716,0.601716 +0.603716,0.603716,0.603716,0.603716,0.603716,0.603716 +0.605716,0.605716,0.605716,0.605716,0.605716,0.605716 +0.607716,0.607716,0.607716,0.607716,0.607716,0.607716 +0.609716,0.609716,0.609716,0.609716,0.609716,0.609716 +0.611716,0.611716,0.611716,0.611716,0.611716,0.611716 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.615716,0.615716,0.615716,0.615716,0.615716,0.615716 +0.617716,0.617716,0.617716,0.617716,0.617716,0.617716 +0.619716,0.619716,0.619716,0.619716,0.619716,0.619716 +0.621716,0.621716,0.621716,0.621716,0.621716,0.621716 +0.623716,0.623716,0.623716,0.623716,0.623716,0.623716 +0.625716,0.625716,0.625716,0.625716,0.625716,0.625716 +0.627716,0.627716,0.627716,0.627716,0.627716,0.627716 +0.629716,0.629716,0.629716,0.629716,0.629716,0.629716 +0.631716,0.631716,0.631716,0.631716,0.631716,0.631716 +0.633716,0.633716,0.633716,0.633716,0.633716,0.633716 +0.635716,0.635716,0.635716,0.635716,0.635716,0.635716 +0.637716,0.637716,0.637716,0.637716,0.637716,0.637716 +0.639716,0.639716,0.639716,0.639716,0.639716,0.639716 +0.641716,0.641716,0.641716,0.641716,0.641716,0.641716 +0.643716,0.643716,0.643716,0.643716,0.643716,0.643716 +0.645716,0.645716,0.645716,0.645716,0.645716,0.645716 +0.647716,0.647716,0.647716,0.647716,0.647716,0.647716 +0.649716,0.649716,0.649716,0.649716,0.649716,0.649716 +0.651716,0.651716,0.651716,0.651716,0.651716,0.651716 +0.653716,0.653716,0.653716,0.653716,0.653716,0.653716 +0.655716,0.655716,0.655716,0.655716,0.655716,0.655716 +0.657716,0.657716,0.657716,0.657716,0.657716,0.657716 +0.659716,0.659716,0.659716,0.659716,0.659716,0.659716 +0.661716,0.661716,0.661716,0.661716,0.661716,0.661716 +0.663716,0.663716,0.663716,0.663716,0.663716,0.663716 +0.665716,0.665716,0.665716,0.665716,0.665716,0.665716 +0.667716,0.667716,0.667716,0.667716,0.667716,0.667716 +0.669716,0.669716,0.669716,0.669716,0.669716,0.669716 +0.671716,0.671716,0.671716,0.671716,0.671716,0.671716 +0.673716,0.673716,0.673716,0.673716,0.673716,0.673716 +0.675716,0.675716,0.675716,0.675716,0.675716,0.675716 +0.677716,0.677716,0.677716,0.677716,0.677716,0.677716 +0.679716,0.679716,0.679716,0.679716,0.679716,0.679716 +0.681716,0.681716,0.681716,0.681716,0.681716,0.681716 +0.683716,0.683716,0.683716,0.683716,0.683716,0.683716 +0.685716,0.685716,0.685716,0.685716,0.685716,0.685716 +0.687716,0.687716,0.687716,0.687716,0.687716,0.687716 +0.689716,0.689716,0.689716,0.689716,0.689716,0.689716 +0.691716,0.691716,0.691716,0.691716,0.691716,0.691716 +0.693716,0.693716,0.693716,0.693716,0.693716,0.693716 +0.695716,0.695716,0.695716,0.695716,0.695716,0.695716 +0.697716,0.697716,0.697716,0.697716,0.697716,0.697716 +0.699716,0.699716,0.699716,0.699716,0.699716,0.699716 +0.701716,0.701716,0.701716,0.701716,0.701716,0.701716 +0.703716,0.703716,0.703716,0.703716,0.703716,0.703716 +0.705716,0.705716,0.705716,0.705716,0.705716,0.705716 +0.707716,0.707716,0.707716,0.707716,0.707716,0.707716 +0.709716,0.709716,0.709716,0.709716,0.709716,0.709716 +0.711716,0.711716,0.711716,0.711716,0.711716,0.711716 +0.713716,0.713716,0.713716,0.713716,0.713716,0.713716 +0.715716,0.715716,0.715716,0.715716,0.715716,0.715716 +0.717716,0.717716,0.717716,0.717716,0.717716,0.717716 +0.719716,0.719716,0.719716,0.719716,0.719716,0.719716 +0.721716,0.721716,0.721716,0.721716,0.721716,0.721716 +0.723716,0.723716,0.723716,0.723716,0.723716,0.723716 +0.725716,0.725716,0.725716,0.725716,0.725716,0.725716 +0.727716,0.727716,0.727716,0.727716,0.727716,0.727716 +0.729716,0.729716,0.729716,0.729716,0.729716,0.729716 +0.731716,0.731716,0.731716,0.731716,0.731716,0.731716 +0.733716,0.733716,0.733716,0.733716,0.733716,0.733716 +0.735716,0.735716,0.735716,0.735716,0.735716,0.735716 +0.737716,0.737716,0.737716,0.737716,0.737716,0.737716 +0.739716,0.739716,0.739716,0.739716,0.739716,0.739716 +0.741716,0.741716,0.741716,0.741716,0.741716,0.741716 +0.743716,0.743716,0.743716,0.743716,0.743716,0.743716 +0.745716,0.745716,0.745716,0.745716,0.745716,0.745716 +0.747716,0.747716,0.747716,0.747716,0.747716,0.747716 +0.749716,0.749716,0.749716,0.749716,0.749716,0.749716 +0.751716,0.751716,0.751716,0.751716,0.751716,0.751716 +0.753716,0.753716,0.753716,0.753716,0.753716,0.753716 +0.755716,0.755716,0.755716,0.755716,0.755716,0.755716 +0.757716,0.757716,0.757716,0.757716,0.757716,0.757716 +0.759716,0.759716,0.759716,0.759716,0.759716,0.759716 +0.761716,0.761716,0.761716,0.761716,0.761716,0.761716 +0.763716,0.763716,0.763716,0.763716,0.763716,0.763716 +0.765716,0.765716,0.765716,0.765716,0.765716,0.765716 +0.767716,0.767716,0.767716,0.767716,0.767716,0.767716 +0.769716,0.769716,0.769716,0.769716,0.769716,0.769716 +0.771716,0.771716,0.771716,0.771716,0.771716,0.771716 +0.773716,0.773716,0.773716,0.773716,0.773716,0.773716 +0.775716,0.775716,0.775716,0.775716,0.775716,0.775716 +0.777716,0.777716,0.777716,0.777716,0.777716,0.777716 +0.779716,0.779716,0.779716,0.779716,0.779716,0.779716 +0.781716,0.781716,0.781716,0.781716,0.781716,0.781716 +0.783716,0.783716,0.783716,0.783716,0.783716,0.783716 +0.785716,0.785716,0.785716,0.785716,0.785716,0.785716 +0.787716,0.787716,0.787716,0.787716,0.787716,0.787716 +0.789716,0.789716,0.789716,0.789716,0.789716,0.789716 +0.791716,0.791716,0.791716,0.791716,0.791716,0.791716 +0.793716,0.793716,0.793716,0.793716,0.793716,0.793716 +0.795716,0.795716,0.795716,0.795716,0.795716,0.795716 +0.797716,0.797716,0.797716,0.797716,0.797716,0.797716 +0.799716,0.799716,0.799716,0.799716,0.799716,0.799716 +0.801716,0.801716,0.801716,0.801716,0.801716,0.801716 +0.803716,0.803716,0.803716,0.803716,0.803716,0.803716 +0.805716,0.805716,0.805716,0.805716,0.805716,0.805716 +0.807716,0.807716,0.807716,0.807716,0.807716,0.807716 +0.809716,0.809716,0.809716,0.809716,0.809716,0.809716 +0.811716,0.811716,0.811716,0.811716,0.811716,0.811716 +0.813716,0.813716,0.813716,0.813716,0.813716,0.813716 +0.815716,0.815716,0.815716,0.815716,0.815716,0.815716 +0.817716,0.817716,0.817716,0.817716,0.817716,0.817716 +0.819716,0.819716,0.819716,0.819716,0.819716,0.819716 +0.821716,0.821716,0.821716,0.821716,0.821716,0.821716 +0.823716,0.823716,0.823716,0.823716,0.823716,0.823716 +0.825716,0.825716,0.825716,0.825716,0.825716,0.825716 +0.827716,0.827716,0.827716,0.827716,0.827716,0.827716 +0.829716,0.829716,0.829716,0.829716,0.829716,0.829716 +0.831716,0.831716,0.831716,0.831716,0.831716,0.831716 +0.833716,0.833716,0.833716,0.833716,0.833716,0.833716 +0.835716,0.835716,0.835716,0.835716,0.835716,0.835716 +0.837716,0.837716,0.837716,0.837716,0.837716,0.837716 +0.839716,0.839716,0.839716,0.839716,0.839716,0.839716 +0.841716,0.841716,0.841716,0.841716,0.841716,0.841716 +0.843716,0.843716,0.843716,0.843716,0.843716,0.843716 +0.845716,0.845716,0.845716,0.845716,0.845716,0.845716 +0.847716,0.847716,0.847716,0.847716,0.847716,0.847716 +0.849716,0.849716,0.849716,0.849716,0.849716,0.849716 +0.851716,0.851716,0.851716,0.851716,0.851716,0.851716 +0.853716,0.853716,0.853716,0.853716,0.853716,0.853716 +0.855716,0.855716,0.855716,0.855716,0.855716,0.855716 +0.857716,0.857716,0.857716,0.857716,0.857716,0.857716 +0.859716,0.859716,0.859716,0.859716,0.859716,0.859716 +0.861716,0.861716,0.861716,0.861716,0.861716,0.861716 +0.863716,0.863716,0.863716,0.863716,0.863716,0.863716 +0.865716,0.865716,0.865716,0.865716,0.865716,0.865716 +0.867716,0.867716,0.867716,0.867716,0.867716,0.867716 +0.869716,0.869716,0.869716,0.869716,0.869716,0.869716 +0.871716,0.871716,0.871716,0.871716,0.871716,0.871716 +0.873716,0.873716,0.873716,0.873716,0.873716,0.873716 +0.875716,0.875716,0.875716,0.875716,0.875716,0.875716 +0.877716,0.877716,0.877716,0.877716,0.877716,0.877716 +0.879716,0.879716,0.879716,0.879716,0.879716,0.879716 +0.881716,0.881716,0.881716,0.881716,0.881716,0.881716 +0.883716,0.883716,0.883716,0.883716,0.883716,0.883716 +0.885716,0.885716,0.885716,0.885716,0.885716,0.885716 +0.887716,0.887716,0.887716,0.887716,0.887716,0.887716 +0.889716,0.889716,0.889716,0.889716,0.889716,0.889716 +0.891716,0.891716,0.891716,0.891716,0.891716,0.891716 +0.893716,0.893716,0.893716,0.893716,0.893716,0.893716 +0.895716,0.895716,0.895716,0.895716,0.895716,0.895716 +0.897716,0.897716,0.897716,0.897716,0.897716,0.897716 +0.899716,0.899716,0.899716,0.899716,0.899716,0.899716 +0.901716,0.901716,0.901716,0.901716,0.901716,0.901716 +0.903716,0.903716,0.903716,0.903716,0.903716,0.903716 +0.905716,0.905716,0.905716,0.905716,0.905716,0.905716 +0.907716,0.907716,0.907716,0.907716,0.907716,0.907716 +0.909716,0.909716,0.909716,0.909716,0.909716,0.909716 +0.911716,0.911716,0.911716,0.911716,0.911716,0.911716 +0.913716,0.913716,0.913716,0.913716,0.913716,0.913716 +0.915716,0.915716,0.915716,0.915716,0.915716,0.915716 +0.917716,0.917716,0.917716,0.917716,0.917716,0.917716 +0.919716,0.919716,0.919716,0.919716,0.919716,0.919716 +0.921716,0.921716,0.921716,0.921716,0.921716,0.921716 +0.923716,0.923716,0.923716,0.923716,0.923716,0.923716 +0.925716,0.925716,0.925716,0.925716,0.925716,0.925716 +0.927716,0.927716,0.927716,0.927716,0.927716,0.927716 +0.929716,0.929716,0.929716,0.929716,0.929716,0.929716 +0.931716,0.931716,0.931716,0.931716,0.931716,0.931716 +0.933716,0.933716,0.933716,0.933716,0.933716,0.933716 +0.935716,0.935716,0.935716,0.935716,0.935716,0.935716 +0.937716,0.937716,0.937716,0.937716,0.937716,0.937716 +0.939716,0.939716,0.939716,0.939716,0.939716,0.939716 +0.941716,0.941716,0.941716,0.941716,0.941716,0.941716 +0.943716,0.943716,0.943716,0.943716,0.943716,0.943716 +0.945716,0.945716,0.945716,0.945716,0.945716,0.945716 +0.947716,0.947716,0.947716,0.947716,0.947716,0.947716 +0.949716,0.949716,0.949716,0.949716,0.949716,0.949716 +0.951716,0.951716,0.951716,0.951716,0.951716,0.951716 +0.953716,0.953716,0.953716,0.953716,0.953716,0.953716 +0.955716,0.955716,0.955716,0.955716,0.955716,0.955716 +0.957716,0.957716,0.957716,0.957716,0.957716,0.957716 +0.959716,0.959716,0.959716,0.959716,0.959716,0.959716 +0.961716,0.961716,0.961716,0.961716,0.961716,0.961716 +0.963716,0.963716,0.963716,0.963716,0.963716,0.963716 +0.965716,0.965716,0.965716,0.965716,0.965716,0.965716 +0.967716,0.967716,0.967716,0.967716,0.967716,0.967716 +0.969716,0.969716,0.969716,0.969716,0.969716,0.969716 +0.971716,0.971716,0.971716,0.971716,0.971716,0.971716 +0.973716,0.973716,0.973716,0.973716,0.973716,0.973716 +0.975716,0.975716,0.975716,0.975716,0.975716,0.975716 +0.977716,0.977716,0.977716,0.977716,0.977716,0.977716 +0.979716,0.979716,0.979716,0.979716,0.979716,0.979716 +0.981716,0.981716,0.981716,0.981716,0.981716,0.981716 +0.983716,0.983716,0.983716,0.983716,0.983716,0.983716 +0.985716,0.985716,0.985716,0.985716,0.985716,0.985716 +0.987716,0.987716,0.987716,0.987716,0.987716,0.987716 +0.989716,0.989716,0.989716,0.989716,0.989716,0.989716 +0.991716,0.991716,0.991716,0.991716,0.991716,0.991716 +0.993716,0.993716,0.993716,0.993716,0.993716,0.993716 +0.995716,0.995716,0.995716,0.995716,0.995716,0.995716 +0.997716,0.997716,0.997716,0.997716,0.997716,0.997716 +0.999716,0.999716,0.999716,0.999716,0.999716,0.999716 +1.001716,1.001716,1.001716,1.001716,1.001716,1.001716 +1.003716,1.003716,1.003716,1.003716,1.003716,1.003716 +1.005716,1.005716,1.005716,1.005716,1.005716,1.005716 +1.007716,1.007716,1.007716,1.007716,1.007716,1.007716 +1.009716,1.009716,1.009716,1.009716,1.009716,1.009716 +1.011716,1.011716,1.011716,1.011716,1.011716,1.011716 +1.013716,1.013716,1.013716,1.013716,1.013716,1.013716 +1.015716,1.015716,1.015716,1.015716,1.015716,1.015716 +1.017716,1.017716,1.017716,1.017716,1.017716,1.017716 +1.019716,1.019716,1.019716,1.019716,1.019716,1.019716 +1.021716,1.021716,1.021716,1.021716,1.021716,1.021716 +1.023716,1.023716,1.023716,1.023716,1.023716,1.023716 +1.025716,1.025716,1.025716,1.025716,1.025716,1.025716 +1.027716,1.027716,1.027716,1.027716,1.027716,1.027716 +1.029716,1.029716,1.029716,1.029716,1.029716,1.029716 +1.031716,1.031716,1.031716,1.031716,1.031716,1.031716 +1.033716,1.033716,1.033716,1.033716,1.033716,1.033716 +1.035716,1.035716,1.035716,1.035716,1.035716,1.035716 +1.037716,1.037716,1.037716,1.037716,1.037716,1.037716 +1.039716,1.039716,1.039716,1.039716,1.039716,1.039716 +1.041716,1.041716,1.041716,1.041716,1.041716,1.041716 +1.043716,1.043716,1.043716,1.043716,1.043716,1.043716 +1.045716,1.045716,1.045716,1.045716,1.045716,1.045716 +1.047716,1.047716,1.047716,1.047716,1.047716,1.047716 +1.049716,1.049716,1.049716,1.049716,1.049716,1.049716 +1.051716,1.051716,1.051716,1.051716,1.051716,1.051716 +1.053716,1.053716,1.053716,1.053716,1.053716,1.053716 +1.055716,1.055716,1.055716,1.055716,1.055716,1.055716 +1.057716,1.057716,1.057716,1.057716,1.057716,1.057716 +1.059716,1.059716,1.059716,1.059716,1.059716,1.059716 +1.061716,1.061716,1.061716,1.061716,1.061716,1.061716 +1.063716,1.063716,1.063716,1.063716,1.063716,1.063716 +1.065716,1.065716,1.065716,1.065716,1.065716,1.065716 +1.067716,1.067716,1.067716,1.067716,1.067716,1.067716 +1.069716,1.069716,1.069716,1.069716,1.069716,1.069716 +1.071716,1.071716,1.071716,1.071716,1.071716,1.071716 +1.073716,1.073716,1.073716,1.073716,1.073716,1.073716 +1.075716,1.075716,1.075716,1.075716,1.075716,1.075716 +1.077716,1.077716,1.077716,1.077716,1.077716,1.077716 +1.079716,1.079716,1.079716,1.079716,1.079716,1.079716 +1.081716,1.081716,1.081716,1.081716,1.081716,1.081716 +1.083716,1.083716,1.083716,1.083716,1.083716,1.083716 +1.085716,1.085716,1.085716,1.085716,1.085716,1.085716 +1.087716,1.087716,1.087716,1.087716,1.087716,1.087716 +1.089716,1.089716,1.089716,1.089716,1.089716,1.089716 +1.091716,1.091716,1.091716,1.091716,1.091716,1.091716 +1.093716,1.093716,1.093716,1.093716,1.093716,1.093716 +1.095716,1.095716,1.095716,1.095716,1.095716,1.095716 +1.097716,1.097716,1.097716,1.097716,1.097716,1.097716 +1.099716,1.099716,1.099716,1.099716,1.099716,1.099716 +1.101716,1.101716,1.101716,1.101716,1.101716,1.101716 +1.103716,1.103716,1.103716,1.103716,1.103716,1.103716 +1.105716,1.105716,1.105716,1.105716,1.105716,1.105716 +1.107716,1.107716,1.107716,1.107716,1.107716,1.107716 +1.109716,1.109716,1.109716,1.109716,1.109716,1.109716 +1.111716,1.111716,1.111716,1.111716,1.111716,1.111716 +1.113716,1.113716,1.113716,1.113716,1.113716,1.113716 +1.115716,1.115716,1.115716,1.115716,1.115716,1.115716 +1.117716,1.117716,1.117716,1.117716,1.117716,1.117716 +1.119716,1.119716,1.119716,1.119716,1.119716,1.119716 +1.121716,1.121716,1.121716,1.121716,1.121716,1.121716 +1.123716,1.123716,1.123716,1.123716,1.123716,1.123716 +1.125716,1.125716,1.125716,1.125716,1.125716,1.125716 +1.127716,1.127716,1.127716,1.127716,1.127716,1.127716 +1.129716,1.129716,1.129716,1.129716,1.129716,1.129716 +1.131716,1.131716,1.131716,1.131716,1.131716,1.131716 +1.133716,1.133716,1.133716,1.133716,1.133716,1.133716 +1.135716,1.135716,1.135716,1.135716,1.135716,1.135716 +1.137716,1.137716,1.137716,1.137716,1.137716,1.137716 +1.139716,1.139716,1.139716,1.139716,1.139716,1.139716 +1.141716,1.141716,1.141716,1.141716,1.141716,1.141716 +1.143716,1.143716,1.143716,1.143716,1.143716,1.143716 +1.145716,1.145716,1.145716,1.145716,1.145716,1.145716 +1.147716,1.147716,1.147716,1.147716,1.147716,1.147716 +1.149716,1.149716,1.149716,1.149716,1.149716,1.149716 +1.151716,1.151716,1.151716,1.151716,1.151716,1.151716 +1.153716,1.153716,1.153716,1.153716,1.153716,1.153716 +1.155716,1.155716,1.155716,1.155716,1.155716,1.155716 +1.157716,1.157716,1.157716,1.157716,1.157716,1.157716 +1.159716,1.159716,1.159716,1.159716,1.159716,1.159716 +1.161716,1.161716,1.161716,1.161716,1.161716,1.161716 +1.163716,1.163716,1.163716,1.163716,1.163716,1.163716 +1.165716,1.165716,1.165716,1.165716,1.165716,1.165716 +1.167716,1.167716,1.167716,1.167716,1.167716,1.167716 +1.169716,1.169716,1.169716,1.169716,1.169716,1.169716 +1.171716,1.171716,1.171716,1.171716,1.171716,1.171716 +1.173716,1.173716,1.173716,1.173716,1.173716,1.173716 +1.175716,1.175716,1.175716,1.175716,1.175716,1.175716 +1.177716,1.177716,1.177716,1.177716,1.177716,1.177716 +1.179716,1.179716,1.179716,1.179716,1.179716,1.179716 +1.181716,1.181716,1.181716,1.181716,1.181716,1.181716 +1.183716,1.183716,1.183716,1.183716,1.183716,1.183716 +1.185716,1.185716,1.185716,1.185716,1.185716,1.185716 +1.187716,1.187716,1.187716,1.187716,1.187716,1.187716 +1.189716,1.189716,1.189716,1.189716,1.189716,1.189716 +1.191716,1.191716,1.191716,1.191716,1.191716,1.191716 +1.193716,1.193716,1.193716,1.193716,1.193716,1.193716 +1.195716,1.195716,1.195716,1.195716,1.195716,1.195716 +1.197716,1.197716,1.197716,1.197716,1.197716,1.197716 +1.199716,1.199716,1.199716,1.199716,1.199716,1.199716 +1.201716,1.201716,1.201716,1.201716,1.201716,1.201716 +1.203716,1.203716,1.203716,1.203716,1.203716,1.203716 +1.205716,1.205716,1.205716,1.205716,1.205716,1.205716 +1.207716,1.207716,1.207716,1.207716,1.207716,1.207716 +1.209716,1.209716,1.209716,1.209716,1.209716,1.209716 +1.211716,1.211716,1.211716,1.211716,1.211716,1.211716 +1.213716,1.213716,1.213716,1.213716,1.213716,1.213716 +1.215716,1.215716,1.215716,1.215716,1.215716,1.215716 +1.217716,1.217716,1.217716,1.217716,1.217716,1.217716 +1.219716,1.219716,1.219716,1.219716,1.219716,1.219716 +1.221716,1.221716,1.221716,1.221716,1.221716,1.221716 +1.223716,1.223716,1.223716,1.223716,1.223716,1.223716 +1.225716,1.225716,1.225716,1.225716,1.225716,1.225716 +1.227716,1.227716,1.227716,1.227716,1.227716,1.227716 +1.229716,1.229716,1.229716,1.229716,1.229716,1.229716 +1.231716,1.231716,1.231716,1.231716,1.231716,1.231716 +1.233716,1.233716,1.233716,1.233716,1.233716,1.233716 +1.235716,1.235716,1.235716,1.235716,1.235716,1.235716 +1.237716,1.237716,1.237716,1.237716,1.237716,1.237716 +1.239716,1.239716,1.239716,1.239716,1.239716,1.239716 +1.241716,1.241716,1.241716,1.241716,1.241716,1.241716 +1.243716,1.243716,1.243716,1.243716,1.243716,1.243716 +1.245716,1.245716,1.245716,1.245716,1.245716,1.245716 +1.247716,1.247716,1.247716,1.247716,1.247716,1.247716 +1.249716,1.249716,1.249716,1.249716,1.249716,1.249716 +1.251716,1.251716,1.251716,1.251716,1.251716,1.251716 +1.253716,1.253716,1.253716,1.253716,1.253716,1.253716 +1.255716,1.255716,1.255716,1.255716,1.255716,1.255716 +1.257716,1.257716,1.257716,1.257716,1.257716,1.257716 +1.259716,1.259716,1.259716,1.259716,1.259716,1.259716 +1.261716,1.261716,1.261716,1.261716,1.261716,1.261716 +1.263716,1.263716,1.263716,1.263716,1.263716,1.263716 +1.265716,1.265716,1.265716,1.265716,1.265716,1.265716 +1.267716,1.267716,1.267716,1.267716,1.267716,1.267716 +1.269716,1.269716,1.269716,1.269716,1.269716,1.269716 +1.271716,1.271716,1.271716,1.271716,1.271716,1.271716 +1.273716,1.273716,1.273716,1.273716,1.273716,1.273716 +1.275716,1.275716,1.275716,1.275716,1.275716,1.275716 +1.277716,1.277716,1.277716,1.277716,1.277716,1.277716 +1.279716,1.279716,1.279716,1.279716,1.279716,1.279716 +1.281716,1.281716,1.281716,1.281716,1.281716,1.281716 +1.283716,1.283716,1.283716,1.283716,1.283716,1.283716 +1.285716,1.285716,1.285716,1.285716,1.285716,1.285716 +1.287716,1.287716,1.287716,1.287716,1.287716,1.287716 +1.289716,1.289716,1.289716,1.289716,1.289716,1.289716 +1.291716,1.291716,1.291716,1.291716,1.291716,1.291716 +1.293716,1.293716,1.293716,1.293716,1.293716,1.293716 +1.295716,1.295716,1.295716,1.295716,1.295716,1.295716 +1.297716,1.297716,1.297716,1.297716,1.297716,1.297716 +1.299716,1.299716,1.299716,1.299716,1.299716,1.299716 +1.301716,1.301716,1.301716,1.301716,1.301716,1.301716 +1.303716,1.303716,1.303716,1.303716,1.303716,1.303716 +1.305716,1.305716,1.305716,1.305716,1.305716,1.305716 +1.307716,1.307716,1.307716,1.307716,1.307716,1.307716 +1.309716,1.309716,1.309716,1.309716,1.309716,1.309716 +1.311716,1.311716,1.311716,1.311716,1.311716,1.311716 +1.313716,1.313716,1.313716,1.313716,1.313716,1.313716 +1.315716,1.315716,1.315716,1.315716,1.315716,1.315716 +1.317716,1.317716,1.317716,1.317716,1.317716,1.317716 +1.319716,1.319716,1.319716,1.319716,1.319716,1.319716 +1.321716,1.321716,1.321716,1.321716,1.321716,1.321716 +1.323716,1.323716,1.323716,1.323716,1.323716,1.323716 +1.325716,1.325716,1.325716,1.325716,1.325716,1.325716 +1.327716,1.327716,1.327716,1.327716,1.327716,1.327716 +1.329716,1.329716,1.329716,1.329716,1.329716,1.329716 +1.331716,1.331716,1.331716,1.331716,1.331716,1.331716 +1.333716,1.333716,1.333716,1.333716,1.333716,1.333716 +1.335716,1.335716,1.335716,1.335716,1.335716,1.335716 +1.337716,1.337716,1.337716,1.337716,1.337716,1.337716 +1.339716,1.339716,1.339716,1.339716,1.339716,1.339716 +1.341716,1.341716,1.341716,1.341716,1.341716,1.341716 +1.343716,1.343716,1.343716,1.343716,1.343716,1.343716 +1.345716,1.345716,1.345716,1.345716,1.345716,1.345716 +1.347716,1.347716,1.347716,1.347716,1.347716,1.347716 +1.349716,1.349716,1.349716,1.349716,1.349716,1.349716 +1.351716,1.351716,1.351716,1.351716,1.351716,1.351716 +1.353716,1.353716,1.353716,1.353716,1.353716,1.353716 +1.355716,1.355716,1.355716,1.355716,1.355716,1.355716 +1.357716,1.357716,1.357716,1.357716,1.357716,1.357716 +1.359716,1.359716,1.359716,1.359716,1.359716,1.359716 +1.361716,1.361716,1.361716,1.361716,1.361716,1.361716 +1.363716,1.363716,1.363716,1.363716,1.363716,1.363716 +1.365716,1.365716,1.365716,1.365716,1.365716,1.365716 +1.367716,1.367716,1.367716,1.367716,1.367716,1.367716 +1.369716,1.369716,1.369716,1.369716,1.369716,1.369716 +1.371716,1.371716,1.371716,1.371716,1.371716,1.371716 +1.373716,1.373716,1.373716,1.373716,1.373716,1.373716 +1.375716,1.375716,1.375716,1.375716,1.375716,1.375716 +1.377716,1.377716,1.377716,1.377716,1.377716,1.377716 +1.379716,1.379716,1.379716,1.379716,1.379716,1.379716 +1.381716,1.381716,1.381716,1.381716,1.381716,1.381716 +1.383716,1.383716,1.383716,1.383716,1.383716,1.383716 +1.385716,1.385716,1.385716,1.385716,1.385716,1.385716 +1.387716,1.387716,1.387716,1.387716,1.387716,1.387716 +1.389716,1.389716,1.389716,1.389716,1.389716,1.389716 +1.391716,1.391716,1.391716,1.391716,1.391716,1.391716 +1.393716,1.393716,1.393716,1.393716,1.393716,1.393716 +1.395716,1.395716,1.395716,1.395716,1.395716,1.395716 +1.397716,1.397716,1.397716,1.397716,1.397716,1.397716 +1.399716,1.399716,1.399716,1.399716,1.399716,1.399716 +1.401716,1.401716,1.401716,1.401716,1.401716,1.401716 +1.403716,1.403716,1.403716,1.403716,1.403716,1.403716 +1.405716,1.405716,1.405716,1.405716,1.405716,1.405716 +1.407716,1.407716,1.407716,1.407716,1.407716,1.407716 +1.409716,1.409716,1.409716,1.409716,1.409716,1.409716 +1.411716,1.411716,1.411716,1.411716,1.411716,1.411716 +1.413716,1.413716,1.413716,1.413716,1.413716,1.413716 +1.415716,1.415716,1.415716,1.415716,1.415716,1.415716 +1.417716,1.417716,1.417716,1.417716,1.417716,1.417716 +1.419716,1.419716,1.419716,1.419716,1.419716,1.419716 +1.421716,1.421716,1.421716,1.421716,1.421716,1.421716 +1.423716,1.423716,1.423716,1.423716,1.423716,1.423716 +1.425716,1.425716,1.425716,1.425716,1.425716,1.425716 +1.427716,1.427716,1.427716,1.427716,1.427716,1.427716 +1.429716,1.429716,1.429716,1.429716,1.429716,1.429716 +1.431716,1.431716,1.431716,1.431716,1.431716,1.431716 +1.433716,1.433716,1.433716,1.433716,1.433716,1.433716 +1.435716,1.435716,1.435716,1.435716,1.435716,1.435716 +1.437716,1.437716,1.437716,1.437716,1.437716,1.437716 +1.439716,1.439716,1.439716,1.439716,1.439716,1.439716 +1.441716,1.441716,1.441716,1.441716,1.441716,1.441716 +1.443716,1.443716,1.443716,1.443716,1.443716,1.443716 +1.445716,1.445716,1.445716,1.445716,1.445716,1.445716 +1.447716,1.447716,1.447716,1.447716,1.447716,1.447716 +1.449716,1.449716,1.449716,1.449716,1.449716,1.449716 +1.451716,1.451716,1.451716,1.451716,1.451716,1.451716 +1.453716,1.453716,1.453716,1.453716,1.453716,1.453716 +1.455716,1.455716,1.455716,1.455716,1.455716,1.455716 +1.457716,1.457716,1.457716,1.457716,1.457716,1.457716 +1.459716,1.459716,1.459716,1.459716,1.459716,1.459716 +1.461716,1.461716,1.461716,1.461716,1.461716,1.461716 +1.463716,1.463716,1.463716,1.463716,1.463716,1.463716 +1.465716,1.465716,1.465716,1.465716,1.465716,1.465716 +1.467716,1.467716,1.467716,1.467716,1.467716,1.467716 +1.469716,1.469716,1.469716,1.469716,1.469716,1.469716 +1.471716,1.471716,1.471716,1.471716,1.471716,1.471716 +1.473716,1.473716,1.473716,1.473716,1.473716,1.473716 +1.475716,1.475716,1.475716,1.475716,1.475716,1.475716 +1.477716,1.477716,1.477716,1.477716,1.477716,1.477716 +1.479716,1.479716,1.479716,1.479716,1.479716,1.479716 +1.481716,1.481716,1.481716,1.481716,1.481716,1.481716 +1.483716,1.483716,1.483716,1.483716,1.483716,1.483716 +1.485716,1.485716,1.485716,1.485716,1.485716,1.485716 +1.487716,1.487716,1.487716,1.487716,1.487716,1.487716 +1.489716,1.489716,1.489716,1.489716,1.489716,1.489716 +1.491716,1.491716,1.491716,1.491716,1.491716,1.491716 +1.493716,1.493716,1.493716,1.493716,1.493716,1.493716 +1.495716,1.495716,1.495716,1.495716,1.495716,1.495716 +1.497716,1.497716,1.497716,1.497716,1.497716,1.497716 +1.499716,1.499716,1.499716,1.499716,1.499716,1.499716 +1.501716,1.501716,1.501716,1.501716,1.501716,1.501716 +1.503716,1.503716,1.503716,1.503716,1.503716,1.503716 +1.505716,1.505716,1.505716,1.505716,1.505716,1.505716 +1.507716,1.507716,1.507716,1.507716,1.507716,1.507716 +1.509716,1.509716,1.509716,1.509716,1.509716,1.509716 +1.511716,1.511716,1.511716,1.511716,1.511716,1.511716 +1.513716,1.513716,1.513716,1.513716,1.513716,1.513716 +1.515716,1.515716,1.515716,1.515716,1.515716,1.515716 +1.517716,1.517716,1.517716,1.517716,1.517716,1.517716 +1.519716,1.519716,1.519716,1.519716,1.519716,1.519716 +1.521716,1.521716,1.521716,1.521716,1.521716,1.521716 +1.523716,1.523716,1.523716,1.523716,1.523716,1.523716 +1.525716,1.525716,1.525716,1.525716,1.525716,1.525716 +1.527716,1.527716,1.527716,1.527716,1.527716,1.527716 +1.529716,1.529716,1.529716,1.529716,1.529716,1.529716 +1.531716,1.531716,1.531716,1.531716,1.531716,1.531716 +1.533716,1.533716,1.533716,1.533716,1.533716,1.533716 +1.535716,1.535716,1.535716,1.535716,1.535716,1.535716 +1.537716,1.537716,1.537716,1.537716,1.537716,1.537716 +1.539716,1.539716,1.539716,1.539716,1.539716,1.539716 +1.541716,1.541716,1.541716,1.541716,1.541716,1.541716 +1.543716,1.543716,1.543716,1.543716,1.543716,1.543716 +1.545716,1.545716,1.545716,1.545716,1.545716,1.545716 +1.547716,1.547716,1.547716,1.547716,1.547716,1.547716 +1.549716,1.549716,1.549716,1.549716,1.549716,1.549716 +1.551716,1.551716,1.551716,1.551716,1.551716,1.551716 +1.553716,1.553716,1.553716,1.553716,1.553716,1.553716 +1.555716,1.555716,1.555716,1.555716,1.555716,1.555716 +1.557716,1.557716,1.557716,1.557716,1.557716,1.557716 +1.559716,1.559716,1.559716,1.559716,1.559716,1.559716 +1.561716,1.561716,1.561716,1.561716,1.561716,1.561716 +1.563716,1.563716,1.563716,1.563716,1.563716,1.563716 +1.565716,1.565716,1.565716,1.565716,1.565716,1.565716 +1.567716,1.567716,1.567716,1.567716,1.567716,1.567716 +1.569716,1.569716,1.569716,1.569716,1.569716,1.569716 +1.571716,1.571716,1.571716,1.571716,1.571716,1.571716 +1.573716,1.573716,1.573716,1.573716,1.573716,1.573716 +1.575716,1.575716,1.575716,1.575716,1.575716,1.575716 +1.577716,1.577716,1.577716,1.577716,1.577716,1.577716 +1.579716,1.579716,1.579716,1.579716,1.579716,1.579716 +1.581716,1.581716,1.581716,1.581716,1.581716,1.581716 +1.583716,1.583716,1.583716,1.583716,1.583716,1.583716 +1.585716,1.585716,1.585716,1.585716,1.585716,1.585716 +1.587716,1.587716,1.587716,1.587716,1.587716,1.587716 +1.589716,1.589716,1.589716,1.589716,1.589716,1.589716 +1.591716,1.591716,1.591716,1.591716,1.591716,1.591716 +1.593716,1.593716,1.593716,1.593716,1.593716,1.593716 +1.595716,1.595716,1.595716,1.595716,1.595716,1.595716 +1.597716,1.597716,1.597716,1.597716,1.597716,1.597716 +1.599716,1.599716,1.599716,1.599716,1.599716,1.599716 +1.601716,1.601716,1.601716,1.601716,1.601716,1.601716 +1.603716,1.603716,1.603716,1.603716,1.603716,1.603716 +1.605716,1.605716,1.605716,1.605716,1.605716,1.605716 +1.607716,1.607716,1.607716,1.607716,1.607716,1.607716 +1.609716,1.609716,1.609716,1.609716,1.609716,1.609716 +1.611716,1.611716,1.611716,1.611716,1.611716,1.611716 +1.613716,1.613716,1.613716,1.613716,1.613716,1.613716 +1.615716,1.615716,1.615716,1.615716,1.615716,1.615716 +1.617716,1.617716,1.617716,1.617716,1.617716,1.617716 +1.619716,1.619716,1.619716,1.619716,1.619716,1.619716 +1.621716,1.621716,1.621716,1.621716,1.621716,1.621716 +1.623716,1.623716,1.623716,1.623716,1.623716,1.623716 +1.625716,1.625716,1.625716,1.625716,1.625716,1.625716 +1.627716,1.627716,1.627716,1.627716,1.627716,1.627716 +1.629716,1.629716,1.629716,1.629716,1.629716,1.629716 +1.631716,1.631716,1.631716,1.631716,1.631716,1.631716 +1.633716,1.633716,1.633716,1.633716,1.633716,1.633716 +1.635716,1.635716,1.635716,1.635716,1.635716,1.635716 +1.637716,1.637716,1.637716,1.637716,1.637716,1.637716 +1.639716,1.639716,1.639716,1.639716,1.639716,1.639716 +1.641716,1.641716,1.641716,1.641716,1.641716,1.641716 +1.643716,1.643716,1.643716,1.643716,1.643716,1.643716 +1.645716,1.645716,1.645716,1.645716,1.645716,1.645716 +1.647716,1.647716,1.647716,1.647716,1.647716,1.647716 +1.649716,1.649716,1.649716,1.649716,1.649716,1.649716 +1.651716,1.651716,1.651716,1.651716,1.651716,1.651716 +1.653716,1.653716,1.653716,1.653716,1.653716,1.653716 +1.655716,1.655716,1.655716,1.655716,1.655716,1.655716 +1.657716,1.657716,1.657716,1.657716,1.657716,1.657716 +1.659716,1.659716,1.659716,1.659716,1.659716,1.659716 +1.661716,1.661716,1.661716,1.661716,1.661716,1.661716 +1.663716,1.663716,1.663716,1.663716,1.663716,1.663716 +1.665716,1.665716,1.665716,1.665716,1.665716,1.665716 +1.667716,1.667716,1.667716,1.667716,1.667716,1.667716 +1.669716,1.669716,1.669716,1.669716,1.669716,1.669716 +1.671716,1.671716,1.671716,1.671716,1.671716,1.671716 +1.673716,1.673716,1.673716,1.673716,1.673716,1.673716 +1.675716,1.675716,1.675716,1.675716,1.675716,1.675716 +1.677716,1.677716,1.677716,1.677716,1.677716,1.677716 +1.679716,1.679716,1.679716,1.679716,1.679716,1.679716 +1.681716,1.681716,1.681716,1.681716,1.681716,1.681716 +1.683716,1.683716,1.683716,1.683716,1.683716,1.683716 +1.685716,1.685716,1.685716,1.685716,1.685716,1.685716 +1.687716,1.687716,1.687716,1.687716,1.687716,1.687716 +1.689716,1.689716,1.689716,1.689716,1.689716,1.689716 +1.691716,1.691716,1.691716,1.691716,1.691716,1.691716 +1.693716,1.693716,1.693716,1.693716,1.693716,1.693716 +1.695716,1.695716,1.695716,1.695716,1.695716,1.695716 +1.697716,1.697716,1.697716,1.697716,1.697716,1.697716 +1.699716,1.699716,1.699716,1.699716,1.699716,1.699716 +1.701716,1.701716,1.701716,1.701716,1.701716,1.701716 +1.703716,1.703716,1.703716,1.703716,1.703716,1.703716 +1.705716,1.705716,1.705716,1.705716,1.705716,1.705716 +1.707716,1.707716,1.707716,1.707716,1.707716,1.707716 +1.709716,1.709716,1.709716,1.709716,1.709716,1.709716 +1.711716,1.711716,1.711716,1.711716,1.711716,1.711716 +1.713716,1.713716,1.713716,1.713716,1.713716,1.713716 +1.715716,1.715716,1.715716,1.715716,1.715716,1.715716 +1.717716,1.717716,1.717716,1.717716,1.717716,1.717716 +1.719712,1.719712,1.719712,1.719712,1.719712,1.719712 +1.721694,1.721694,1.721694,1.721694,1.721694,1.721694 +1.723653,1.723653,1.723653,1.723653,1.723653,1.723653 +1.725579,1.725579,1.725579,1.725579,1.725579,1.725579 +1.727461,1.727461,1.727461,1.727461,1.727461,1.727461 +1.729289,1.729289,1.729289,1.729289,1.729289,1.729289 +1.731054,1.731054,1.731054,1.731054,1.731054,1.731054 +1.732745,1.732745,1.732745,1.732745,1.732745,1.732745 +1.734353,1.734353,1.734353,1.734353,1.734353,1.734353 +1.735868,1.735868,1.735868,1.735868,1.735868,1.735868 +1.737279,1.737279,1.737279,1.737279,1.737279,1.737279 +1.738576,1.738576,1.738576,1.738576,1.738576,1.738576 +1.73975,1.73975,1.73975,1.73975,1.73975,1.73975 +1.740791,1.740791,1.740791,1.740791,1.740791,1.740791 +1.741694,1.741694,1.741694,1.741694,1.741694,1.741694 +1.742467,1.742467,1.742467,1.742467,1.742467,1.742467 +1.743121,1.743121,1.743121,1.743121,1.743121,1.743121 +1.743666,1.743666,1.743666,1.743666,1.743666,1.743666 +1.744111,1.744111,1.744111,1.744111,1.744111,1.744111 +1.744468,1.744468,1.744468,1.744468,1.744468,1.744468 +1.744744,1.744744,1.744744,1.744744,1.744744,1.744744 +1.744952,1.744952,1.744952,1.744952,1.744952,1.744952 +1.7451,1.7451,1.7451,1.7451,1.7451,1.7451 +1.745199,1.745199,1.745199,1.745199,1.745199,1.745199 +1.745258,1.745258,1.745258,1.745258,1.745258,1.745258 +1.745288,1.745288,1.745288,1.745288,1.745288,1.745288 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745287,1.745287,1.745287,1.745287,1.745287,1.745287 +1.745255,1.745255,1.745255,1.745255,1.745255,1.745255 +1.745193,1.745193,1.745193,1.745193,1.745193,1.745193 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.74494,1.74494,1.74494,1.74494,1.74494,1.74494 +1.744728,1.744728,1.744728,1.744728,1.744728,1.744728 +1.744447,1.744447,1.744447,1.744447,1.744447,1.744447 +1.744085,1.744085,1.744085,1.744085,1.744085,1.744085 +1.743633,1.743633,1.743633,1.743633,1.743633,1.743633 +1.743082,1.743082,1.743082,1.743082,1.743082,1.743082 +1.74242,1.74242,1.74242,1.74242,1.74242,1.74242 +1.741638,1.741638,1.741638,1.741638,1.741638,1.741638 +1.740727,1.740727,1.740727,1.740727,1.740727,1.740727 +1.739677,1.739677,1.739677,1.739677,1.739677,1.739677 +1.738495,1.738495,1.738495,1.738495,1.738495,1.738495 +1.737189,1.737189,1.737189,1.737189,1.737189,1.737189 +1.735771,1.735771,1.735771,1.735771,1.735771,1.735771 +1.73425,1.73425,1.73425,1.73425,1.73425,1.73425 +1.732637,1.732637,1.732637,1.732637,1.732637,1.732637 +1.73094,1.73094,1.73094,1.73094,1.73094,1.73094 +1.729171,1.729171,1.729171,1.729171,1.729171,1.729171 +1.727338,1.727338,1.727338,1.727338,1.727338,1.727338 +1.725453,1.725453,1.725453,1.725453,1.725453,1.725453 +1.723525,1.723525,1.723525,1.723525,1.723525,1.723525 +1.721564,1.721564,1.721564,1.721564,1.721564,1.721564 +1.719581,1.719581,1.719581,1.719581,1.719581,1.719581 +1.717584,1.717584,1.717584,1.717584,1.717584,1.717584 +1.715584,1.715584,1.715584,1.715584,1.715584,1.715584 +1.713584,1.713584,1.713584,1.713584,1.713584,1.713584 +1.711584,1.711584,1.711584,1.711584,1.711584,1.711584 +1.709584,1.709584,1.709584,1.709584,1.709584,1.709584 +1.707584,1.707584,1.707584,1.707584,1.707584,1.707584 +1.705584,1.705584,1.705584,1.705584,1.705584,1.705584 +1.703584,1.703584,1.703584,1.703584,1.703584,1.703584 +1.701584,1.701584,1.701584,1.701584,1.701584,1.701584 +1.699584,1.699584,1.699584,1.699584,1.699584,1.699584 +1.697584,1.697584,1.697584,1.697584,1.697584,1.697584 +1.695584,1.695584,1.695584,1.695584,1.695584,1.695584 +1.693584,1.693584,1.693584,1.693584,1.693584,1.693584 +1.691584,1.691584,1.691584,1.691584,1.691584,1.691584 +1.689584,1.689584,1.689584,1.689584,1.689584,1.689584 +1.687584,1.687584,1.687584,1.687584,1.687584,1.687584 +1.685584,1.685584,1.685584,1.685584,1.685584,1.685584 +1.683584,1.683584,1.683584,1.683584,1.683584,1.683584 +1.681584,1.681584,1.681584,1.681584,1.681584,1.681584 +1.679584,1.679584,1.679584,1.679584,1.679584,1.679584 +1.677584,1.677584,1.677584,1.677584,1.677584,1.677584 +1.675584,1.675584,1.675584,1.675584,1.675584,1.675584 +1.673584,1.673584,1.673584,1.673584,1.673584,1.673584 +1.671584,1.671584,1.671584,1.671584,1.671584,1.671584 +1.669584,1.669584,1.669584,1.669584,1.669584,1.669584 +1.667584,1.667584,1.667584,1.667584,1.667584,1.667584 +1.665584,1.665584,1.665584,1.665584,1.665584,1.665584 +1.663584,1.663584,1.663584,1.663584,1.663584,1.663584 +1.661584,1.661584,1.661584,1.661584,1.661584,1.661584 +1.659584,1.659584,1.659584,1.659584,1.659584,1.659584 +1.657584,1.657584,1.657584,1.657584,1.657584,1.657584 +1.655584,1.655584,1.655584,1.655584,1.655584,1.655584 +1.653584,1.653584,1.653584,1.653584,1.653584,1.653584 +1.651584,1.651584,1.651584,1.651584,1.651584,1.651584 +1.649584,1.649584,1.649584,1.649584,1.649584,1.649584 +1.647584,1.647584,1.647584,1.647584,1.647584,1.647584 +1.645584,1.645584,1.645584,1.645584,1.645584,1.645584 +1.643584,1.643584,1.643584,1.643584,1.643584,1.643584 +1.641584,1.641584,1.641584,1.641584,1.641584,1.641584 +1.639584,1.639584,1.639584,1.639584,1.639584,1.639584 +1.637584,1.637584,1.637584,1.637584,1.637584,1.637584 +1.635584,1.635584,1.635584,1.635584,1.635584,1.635584 +1.633584,1.633584,1.633584,1.633584,1.633584,1.633584 +1.631584,1.631584,1.631584,1.631584,1.631584,1.631584 +1.629584,1.629584,1.629584,1.629584,1.629584,1.629584 +1.627584,1.627584,1.627584,1.627584,1.627584,1.627584 +1.625584,1.625584,1.625584,1.625584,1.625584,1.625584 +1.623584,1.623584,1.623584,1.623584,1.623584,1.623584 +1.621584,1.621584,1.621584,1.621584,1.621584,1.621584 +1.619584,1.619584,1.619584,1.619584,1.619584,1.619584 +1.617584,1.617584,1.617584,1.617584,1.617584,1.617584 +1.615584,1.615584,1.615584,1.615584,1.615584,1.615584 +1.613584,1.613584,1.613584,1.613584,1.613584,1.613584 +1.611584,1.611584,1.611584,1.611584,1.611584,1.611584 +1.609584,1.609584,1.609584,1.609584,1.609584,1.609584 +1.607584,1.607584,1.607584,1.607584,1.607584,1.607584 +1.605584,1.605584,1.605584,1.605584,1.605584,1.605584 +1.603584,1.603584,1.603584,1.603584,1.603584,1.603584 +1.601584,1.601584,1.601584,1.601584,1.601584,1.601584 +1.599584,1.599584,1.599584,1.599584,1.599584,1.599584 +1.597584,1.597584,1.597584,1.597584,1.597584,1.597584 +1.595584,1.595584,1.595584,1.595584,1.595584,1.595584 +1.593584,1.593584,1.593584,1.593584,1.593584,1.593584 +1.591584,1.591584,1.591584,1.591584,1.591584,1.591584 +1.589584,1.589584,1.589584,1.589584,1.589584,1.589584 +1.587584,1.587584,1.587584,1.587584,1.587584,1.587584 +1.585584,1.585584,1.585584,1.585584,1.585584,1.585584 +1.583584,1.583584,1.583584,1.583584,1.583584,1.583584 +1.581584,1.581584,1.581584,1.581584,1.581584,1.581584 +1.579584,1.579584,1.579584,1.579584,1.579584,1.579584 +1.577584,1.577584,1.577584,1.577584,1.577584,1.577584 +1.575584,1.575584,1.575584,1.575584,1.575584,1.575584 +1.573584,1.573584,1.573584,1.573584,1.573584,1.573584 +1.571584,1.571584,1.571584,1.571584,1.571584,1.571584 +1.569584,1.569584,1.569584,1.569584,1.569584,1.569584 +1.567584,1.567584,1.567584,1.567584,1.567584,1.567584 +1.565584,1.565584,1.565584,1.565584,1.565584,1.565584 +1.563584,1.563584,1.563584,1.563584,1.563584,1.563584 +1.561584,1.561584,1.561584,1.561584,1.561584,1.561584 +1.559584,1.559584,1.559584,1.559584,1.559584,1.559584 +1.557584,1.557584,1.557584,1.557584,1.557584,1.557584 +1.555584,1.555584,1.555584,1.555584,1.555584,1.555584 +1.553584,1.553584,1.553584,1.553584,1.553584,1.553584 +1.551584,1.551584,1.551584,1.551584,1.551584,1.551584 +1.549584,1.549584,1.549584,1.549584,1.549584,1.549584 +1.547584,1.547584,1.547584,1.547584,1.547584,1.547584 +1.545584,1.545584,1.545584,1.545584,1.545584,1.545584 +1.543584,1.543584,1.543584,1.543584,1.543584,1.543584 +1.541584,1.541584,1.541584,1.541584,1.541584,1.541584 +1.539584,1.539584,1.539584,1.539584,1.539584,1.539584 +1.537584,1.537584,1.537584,1.537584,1.537584,1.537584 +1.535584,1.535584,1.535584,1.535584,1.535584,1.535584 +1.533584,1.533584,1.533584,1.533584,1.533584,1.533584 +1.531584,1.531584,1.531584,1.531584,1.531584,1.531584 +1.529584,1.529584,1.529584,1.529584,1.529584,1.529584 +1.527584,1.527584,1.527584,1.527584,1.527584,1.527584 +1.525584,1.525584,1.525584,1.525584,1.525584,1.525584 +1.523584,1.523584,1.523584,1.523584,1.523584,1.523584 +1.521584,1.521584,1.521584,1.521584,1.521584,1.521584 +1.519584,1.519584,1.519584,1.519584,1.519584,1.519584 +1.517584,1.517584,1.517584,1.517584,1.517584,1.517584 +1.515584,1.515584,1.515584,1.515584,1.515584,1.515584 +1.513584,1.513584,1.513584,1.513584,1.513584,1.513584 +1.511584,1.511584,1.511584,1.511584,1.511584,1.511584 +1.509584,1.509584,1.509584,1.509584,1.509584,1.509584 +1.507584,1.507584,1.507584,1.507584,1.507584,1.507584 +1.505584,1.505584,1.505584,1.505584,1.505584,1.505584 +1.503584,1.503584,1.503584,1.503584,1.503584,1.503584 +1.501584,1.501584,1.501584,1.501584,1.501584,1.501584 +1.499584,1.499584,1.499584,1.499584,1.499584,1.499584 +1.497584,1.497584,1.497584,1.497584,1.497584,1.497584 +1.495584,1.495584,1.495584,1.495584,1.495584,1.495584 +1.493584,1.493584,1.493584,1.493584,1.493584,1.493584 +1.491584,1.491584,1.491584,1.491584,1.491584,1.491584 +1.489584,1.489584,1.489584,1.489584,1.489584,1.489584 +1.487584,1.487584,1.487584,1.487584,1.487584,1.487584 +1.485584,1.485584,1.485584,1.485584,1.485584,1.485584 +1.483584,1.483584,1.483584,1.483584,1.483584,1.483584 +1.481584,1.481584,1.481584,1.481584,1.481584,1.481584 +1.479584,1.479584,1.479584,1.479584,1.479584,1.479584 +1.477584,1.477584,1.477584,1.477584,1.477584,1.477584 +1.475584,1.475584,1.475584,1.475584,1.475584,1.475584 +1.473584,1.473584,1.473584,1.473584,1.473584,1.473584 +1.471584,1.471584,1.471584,1.471584,1.471584,1.471584 +1.469584,1.469584,1.469584,1.469584,1.469584,1.469584 +1.467584,1.467584,1.467584,1.467584,1.467584,1.467584 +1.465584,1.465584,1.465584,1.465584,1.465584,1.465584 +1.463584,1.463584,1.463584,1.463584,1.463584,1.463584 +1.461584,1.461584,1.461584,1.461584,1.461584,1.461584 +1.459584,1.459584,1.459584,1.459584,1.459584,1.459584 +1.457584,1.457584,1.457584,1.457584,1.457584,1.457584 +1.455584,1.455584,1.455584,1.455584,1.455584,1.455584 +1.453584,1.453584,1.453584,1.453584,1.453584,1.453584 +1.451584,1.451584,1.451584,1.451584,1.451584,1.451584 +1.449584,1.449584,1.449584,1.449584,1.449584,1.449584 +1.447584,1.447584,1.447584,1.447584,1.447584,1.447584 +1.445584,1.445584,1.445584,1.445584,1.445584,1.445584 +1.443584,1.443584,1.443584,1.443584,1.443584,1.443584 +1.441584,1.441584,1.441584,1.441584,1.441584,1.441584 +1.439584,1.439584,1.439584,1.439584,1.439584,1.439584 +1.437584,1.437584,1.437584,1.437584,1.437584,1.437584 +1.435584,1.435584,1.435584,1.435584,1.435584,1.435584 +1.433584,1.433584,1.433584,1.433584,1.433584,1.433584 +1.431584,1.431584,1.431584,1.431584,1.431584,1.431584 +1.429584,1.429584,1.429584,1.429584,1.429584,1.429584 +1.427584,1.427584,1.427584,1.427584,1.427584,1.427584 +1.425584,1.425584,1.425584,1.425584,1.425584,1.425584 +1.423584,1.423584,1.423584,1.423584,1.423584,1.423584 +1.421584,1.421584,1.421584,1.421584,1.421584,1.421584 +1.419584,1.419584,1.419584,1.419584,1.419584,1.419584 +1.417584,1.417584,1.417584,1.417584,1.417584,1.417584 +1.415584,1.415584,1.415584,1.415584,1.415584,1.415584 +1.413584,1.413584,1.413584,1.413584,1.413584,1.413584 +1.411584,1.411584,1.411584,1.411584,1.411584,1.411584 +1.409584,1.409584,1.409584,1.409584,1.409584,1.409584 +1.407584,1.407584,1.407584,1.407584,1.407584,1.407584 +1.405584,1.405584,1.405584,1.405584,1.405584,1.405584 +1.403584,1.403584,1.403584,1.403584,1.403584,1.403584 +1.401584,1.401584,1.401584,1.401584,1.401584,1.401584 +1.399584,1.399584,1.399584,1.399584,1.399584,1.399584 +1.397584,1.397584,1.397584,1.397584,1.397584,1.397584 +1.395584,1.395584,1.395584,1.395584,1.395584,1.395584 +1.393584,1.393584,1.393584,1.393584,1.393584,1.393584 +1.391584,1.391584,1.391584,1.391584,1.391584,1.391584 +1.389584,1.389584,1.389584,1.389584,1.389584,1.389584 +1.387584,1.387584,1.387584,1.387584,1.387584,1.387584 +1.385584,1.385584,1.385584,1.385584,1.385584,1.385584 +1.383584,1.383584,1.383584,1.383584,1.383584,1.383584 +1.381584,1.381584,1.381584,1.381584,1.381584,1.381584 +1.379584,1.379584,1.379584,1.379584,1.379584,1.379584 +1.377584,1.377584,1.377584,1.377584,1.377584,1.377584 +1.375584,1.375584,1.375584,1.375584,1.375584,1.375584 +1.373584,1.373584,1.373584,1.373584,1.373584,1.373584 +1.371584,1.371584,1.371584,1.371584,1.371584,1.371584 +1.369584,1.369584,1.369584,1.369584,1.369584,1.369584 +1.367584,1.367584,1.367584,1.367584,1.367584,1.367584 +1.365584,1.365584,1.365584,1.365584,1.365584,1.365584 +1.363584,1.363584,1.363584,1.363584,1.363584,1.363584 +1.361584,1.361584,1.361584,1.361584,1.361584,1.361584 +1.359584,1.359584,1.359584,1.359584,1.359584,1.359584 +1.357584,1.357584,1.357584,1.357584,1.357584,1.357584 +1.355584,1.355584,1.355584,1.355584,1.355584,1.355584 +1.353584,1.353584,1.353584,1.353584,1.353584,1.353584 +1.351584,1.351584,1.351584,1.351584,1.351584,1.351584 +1.349584,1.349584,1.349584,1.349584,1.349584,1.349584 +1.347584,1.347584,1.347584,1.347584,1.347584,1.347584 +1.345584,1.345584,1.345584,1.345584,1.345584,1.345584 +1.343584,1.343584,1.343584,1.343584,1.343584,1.343584 +1.341584,1.341584,1.341584,1.341584,1.341584,1.341584 +1.339584,1.339584,1.339584,1.339584,1.339584,1.339584 +1.337584,1.337584,1.337584,1.337584,1.337584,1.337584 +1.335584,1.335584,1.335584,1.335584,1.335584,1.335584 +1.333584,1.333584,1.333584,1.333584,1.333584,1.333584 +1.331584,1.331584,1.331584,1.331584,1.331584,1.331584 +1.329584,1.329584,1.329584,1.329584,1.329584,1.329584 +1.327584,1.327584,1.327584,1.327584,1.327584,1.327584 +1.325584,1.325584,1.325584,1.325584,1.325584,1.325584 +1.323584,1.323584,1.323584,1.323584,1.323584,1.323584 +1.321584,1.321584,1.321584,1.321584,1.321584,1.321584 +1.319584,1.319584,1.319584,1.319584,1.319584,1.319584 +1.317584,1.317584,1.317584,1.317584,1.317584,1.317584 +1.315584,1.315584,1.315584,1.315584,1.315584,1.315584 +1.313584,1.313584,1.313584,1.313584,1.313584,1.313584 +1.311584,1.311584,1.311584,1.311584,1.311584,1.311584 +1.309584,1.309584,1.309584,1.309584,1.309584,1.309584 +1.307584,1.307584,1.307584,1.307584,1.307584,1.307584 +1.305584,1.305584,1.305584,1.305584,1.305584,1.305584 +1.303584,1.303584,1.303584,1.303584,1.303584,1.303584 +1.301584,1.301584,1.301584,1.301584,1.301584,1.301584 +1.299584,1.299584,1.299584,1.299584,1.299584,1.299584 +1.297584,1.297584,1.297584,1.297584,1.297584,1.297584 +1.295584,1.295584,1.295584,1.295584,1.295584,1.295584 +1.293584,1.293584,1.293584,1.293584,1.293584,1.293584 +1.291584,1.291584,1.291584,1.291584,1.291584,1.291584 +1.289584,1.289584,1.289584,1.289584,1.289584,1.289584 +1.287584,1.287584,1.287584,1.287584,1.287584,1.287584 +1.285584,1.285584,1.285584,1.285584,1.285584,1.285584 +1.283584,1.283584,1.283584,1.283584,1.283584,1.283584 +1.281584,1.281584,1.281584,1.281584,1.281584,1.281584 +1.279584,1.279584,1.279584,1.279584,1.279584,1.279584 +1.277584,1.277584,1.277584,1.277584,1.277584,1.277584 +1.275584,1.275584,1.275584,1.275584,1.275584,1.275584 +1.273584,1.273584,1.273584,1.273584,1.273584,1.273584 +1.271584,1.271584,1.271584,1.271584,1.271584,1.271584 +1.269584,1.269584,1.269584,1.269584,1.269584,1.269584 +1.267584,1.267584,1.267584,1.267584,1.267584,1.267584 +1.265584,1.265584,1.265584,1.265584,1.265584,1.265584 +1.263584,1.263584,1.263584,1.263584,1.263584,1.263584 +1.261584,1.261584,1.261584,1.261584,1.261584,1.261584 +1.259584,1.259584,1.259584,1.259584,1.259584,1.259584 +1.257584,1.257584,1.257584,1.257584,1.257584,1.257584 +1.255584,1.255584,1.255584,1.255584,1.255584,1.255584 +1.253584,1.253584,1.253584,1.253584,1.253584,1.253584 +1.251584,1.251584,1.251584,1.251584,1.251584,1.251584 +1.249584,1.249584,1.249584,1.249584,1.249584,1.249584 +1.247584,1.247584,1.247584,1.247584,1.247584,1.247584 +1.245584,1.245584,1.245584,1.245584,1.245584,1.245584 +1.243584,1.243584,1.243584,1.243584,1.243584,1.243584 +1.241584,1.241584,1.241584,1.241584,1.241584,1.241584 +1.239584,1.239584,1.239584,1.239584,1.239584,1.239584 +1.237584,1.237584,1.237584,1.237584,1.237584,1.237584 +1.235584,1.235584,1.235584,1.235584,1.235584,1.235584 +1.233584,1.233584,1.233584,1.233584,1.233584,1.233584 +1.231584,1.231584,1.231584,1.231584,1.231584,1.231584 +1.229584,1.229584,1.229584,1.229584,1.229584,1.229584 +1.227584,1.227584,1.227584,1.227584,1.227584,1.227584 +1.225584,1.225584,1.225584,1.225584,1.225584,1.225584 +1.223584,1.223584,1.223584,1.223584,1.223584,1.223584 +1.221584,1.221584,1.221584,1.221584,1.221584,1.221584 +1.219584,1.219584,1.219584,1.219584,1.219584,1.219584 +1.217584,1.217584,1.217584,1.217584,1.217584,1.217584 +1.215584,1.215584,1.215584,1.215584,1.215584,1.215584 +1.213584,1.213584,1.213584,1.213584,1.213584,1.213584 +1.211584,1.211584,1.211584,1.211584,1.211584,1.211584 +1.209584,1.209584,1.209584,1.209584,1.209584,1.209584 +1.207584,1.207584,1.207584,1.207584,1.207584,1.207584 +1.205584,1.205584,1.205584,1.205584,1.205584,1.205584 +1.203584,1.203584,1.203584,1.203584,1.203584,1.203584 +1.201584,1.201584,1.201584,1.201584,1.201584,1.201584 +1.199584,1.199584,1.199584,1.199584,1.199584,1.199584 +1.197584,1.197584,1.197584,1.197584,1.197584,1.197584 +1.195584,1.195584,1.195584,1.195584,1.195584,1.195584 +1.193584,1.193584,1.193584,1.193584,1.193584,1.193584 +1.191584,1.191584,1.191584,1.191584,1.191584,1.191584 +1.189584,1.189584,1.189584,1.189584,1.189584,1.189584 +1.187584,1.187584,1.187584,1.187584,1.187584,1.187584 +1.185584,1.185584,1.185584,1.185584,1.185584,1.185584 +1.183584,1.183584,1.183584,1.183584,1.183584,1.183584 +1.181584,1.181584,1.181584,1.181584,1.181584,1.181584 +1.179584,1.179584,1.179584,1.179584,1.179584,1.179584 +1.177584,1.177584,1.177584,1.177584,1.177584,1.177584 +1.175584,1.175584,1.175584,1.175584,1.175584,1.175584 +1.173584,1.173584,1.173584,1.173584,1.173584,1.173584 +1.171584,1.171584,1.171584,1.171584,1.171584,1.171584 +1.169584,1.169584,1.169584,1.169584,1.169584,1.169584 +1.167584,1.167584,1.167584,1.167584,1.167584,1.167584 +1.165584,1.165584,1.165584,1.165584,1.165584,1.165584 +1.163584,1.163584,1.163584,1.163584,1.163584,1.163584 +1.161584,1.161584,1.161584,1.161584,1.161584,1.161584 +1.159584,1.159584,1.159584,1.159584,1.159584,1.159584 +1.157584,1.157584,1.157584,1.157584,1.157584,1.157584 +1.155584,1.155584,1.155584,1.155584,1.155584,1.155584 +1.153584,1.153584,1.153584,1.153584,1.153584,1.153584 +1.151584,1.151584,1.151584,1.151584,1.151584,1.151584 +1.149584,1.149584,1.149584,1.149584,1.149584,1.149584 +1.147584,1.147584,1.147584,1.147584,1.147584,1.147584 +1.145584,1.145584,1.145584,1.145584,1.145584,1.145584 +1.143584,1.143584,1.143584,1.143584,1.143584,1.143584 +1.141584,1.141584,1.141584,1.141584,1.141584,1.141584 +1.139584,1.139584,1.139584,1.139584,1.139584,1.139584 +1.137584,1.137584,1.137584,1.137584,1.137584,1.137584 +1.135584,1.135584,1.135584,1.135584,1.135584,1.135584 +1.133584,1.133584,1.133584,1.133584,1.133584,1.133584 +1.131584,1.131584,1.131584,1.131584,1.131584,1.131584 +1.129584,1.129584,1.129584,1.129584,1.129584,1.129584 +1.127584,1.127584,1.127584,1.127584,1.127584,1.127584 +1.125584,1.125584,1.125584,1.125584,1.125584,1.125584 +1.123584,1.123584,1.123584,1.123584,1.123584,1.123584 +1.121584,1.121584,1.121584,1.121584,1.121584,1.121584 +1.119584,1.119584,1.119584,1.119584,1.119584,1.119584 +1.117584,1.117584,1.117584,1.117584,1.117584,1.117584 +1.115584,1.115584,1.115584,1.115584,1.115584,1.115584 +1.113584,1.113584,1.113584,1.113584,1.113584,1.113584 +1.111584,1.111584,1.111584,1.111584,1.111584,1.111584 +1.109584,1.109584,1.109584,1.109584,1.109584,1.109584 +1.107584,1.107584,1.107584,1.107584,1.107584,1.107584 +1.105584,1.105584,1.105584,1.105584,1.105584,1.105584 +1.103584,1.103584,1.103584,1.103584,1.103584,1.103584 +1.101584,1.101584,1.101584,1.101584,1.101584,1.101584 +1.099584,1.099584,1.099584,1.099584,1.099584,1.099584 +1.097584,1.097584,1.097584,1.097584,1.097584,1.097584 +1.095584,1.095584,1.095584,1.095584,1.095584,1.095584 +1.093584,1.093584,1.093584,1.093584,1.093584,1.093584 +1.091584,1.091584,1.091584,1.091584,1.091584,1.091584 +1.089584,1.089584,1.089584,1.089584,1.089584,1.089584 +1.087584,1.087584,1.087584,1.087584,1.087584,1.087584 +1.085584,1.085584,1.085584,1.085584,1.085584,1.085584 +1.083584,1.083584,1.083584,1.083584,1.083584,1.083584 +1.081584,1.081584,1.081584,1.081584,1.081584,1.081584 +1.079584,1.079584,1.079584,1.079584,1.079584,1.079584 +1.077584,1.077584,1.077584,1.077584,1.077584,1.077584 +1.075584,1.075584,1.075584,1.075584,1.075584,1.075584 +1.073584,1.073584,1.073584,1.073584,1.073584,1.073584 +1.071584,1.071584,1.071584,1.071584,1.071584,1.071584 +1.069584,1.069584,1.069584,1.069584,1.069584,1.069584 +1.067584,1.067584,1.067584,1.067584,1.067584,1.067584 +1.065584,1.065584,1.065584,1.065584,1.065584,1.065584 +1.063584,1.063584,1.063584,1.063584,1.063584,1.063584 +1.061584,1.061584,1.061584,1.061584,1.061584,1.061584 +1.059584,1.059584,1.059584,1.059584,1.059584,1.059584 +1.057584,1.057584,1.057584,1.057584,1.057584,1.057584 +1.055584,1.055584,1.055584,1.055584,1.055584,1.055584 +1.053584,1.053584,1.053584,1.053584,1.053584,1.053584 +1.051584,1.051584,1.051584,1.051584,1.051584,1.051584 +1.049584,1.049584,1.049584,1.049584,1.049584,1.049584 +1.047584,1.047584,1.047584,1.047584,1.047584,1.047584 +1.045584,1.045584,1.045584,1.045584,1.045584,1.045584 +1.043584,1.043584,1.043584,1.043584,1.043584,1.043584 +1.041584,1.041584,1.041584,1.041584,1.041584,1.041584 +1.039584,1.039584,1.039584,1.039584,1.039584,1.039584 +1.037584,1.037584,1.037584,1.037584,1.037584,1.037584 +1.035584,1.035584,1.035584,1.035584,1.035584,1.035584 +1.033584,1.033584,1.033584,1.033584,1.033584,1.033584 +1.031584,1.031584,1.031584,1.031584,1.031584,1.031584 +1.029584,1.029584,1.029584,1.029584,1.029584,1.029584 +1.027584,1.027584,1.027584,1.027584,1.027584,1.027584 +1.025584,1.025584,1.025584,1.025584,1.025584,1.025584 +1.023584,1.023584,1.023584,1.023584,1.023584,1.023584 +1.021584,1.021584,1.021584,1.021584,1.021584,1.021584 +1.019584,1.019584,1.019584,1.019584,1.019584,1.019584 +1.017584,1.017584,1.017584,1.017584,1.017584,1.017584 +1.015584,1.015584,1.015584,1.015584,1.015584,1.015584 +1.013584,1.013584,1.013584,1.013584,1.013584,1.013584 +1.011584,1.011584,1.011584,1.011584,1.011584,1.011584 +1.009584,1.009584,1.009584,1.009584,1.009584,1.009584 +1.007584,1.007584,1.007584,1.007584,1.007584,1.007584 +1.005584,1.005584,1.005584,1.005584,1.005584,1.005584 +1.003584,1.003584,1.003584,1.003584,1.003584,1.003584 +1.001584,1.001584,1.001584,1.001584,1.001584,1.001584 +0.999584,0.999584,0.999584,0.999584,0.999584,0.999584 +0.997584,0.997584,0.997584,0.997584,0.997584,0.997584 +0.995584,0.995584,0.995584,0.995584,0.995584,0.995584 +0.993584,0.993584,0.993584,0.993584,0.993584,0.993584 +0.991584,0.991584,0.991584,0.991584,0.991584,0.991584 +0.989584,0.989584,0.989584,0.989584,0.989584,0.989584 +0.987584,0.987584,0.987584,0.987584,0.987584,0.987584 +0.985584,0.985584,0.985584,0.985584,0.985584,0.985584 +0.983584,0.983584,0.983584,0.983584,0.983584,0.983584 +0.981584,0.981584,0.981584,0.981584,0.981584,0.981584 +0.979584,0.979584,0.979584,0.979584,0.979584,0.979584 +0.977584,0.977584,0.977584,0.977584,0.977584,0.977584 +0.975584,0.975584,0.975584,0.975584,0.975584,0.975584 +0.973584,0.973584,0.973584,0.973584,0.973584,0.973584 +0.971584,0.971584,0.971584,0.971584,0.971584,0.971584 +0.969584,0.969584,0.969584,0.969584,0.969584,0.969584 +0.967584,0.967584,0.967584,0.967584,0.967584,0.967584 +0.965584,0.965584,0.965584,0.965584,0.965584,0.965584 +0.963584,0.963584,0.963584,0.963584,0.963584,0.963584 +0.961584,0.961584,0.961584,0.961584,0.961584,0.961584 +0.959584,0.959584,0.959584,0.959584,0.959584,0.959584 +0.957584,0.957584,0.957584,0.957584,0.957584,0.957584 +0.955584,0.955584,0.955584,0.955584,0.955584,0.955584 +0.953584,0.953584,0.953584,0.953584,0.953584,0.953584 +0.951584,0.951584,0.951584,0.951584,0.951584,0.951584 +0.949584,0.949584,0.949584,0.949584,0.949584,0.949584 +0.947584,0.947584,0.947584,0.947584,0.947584,0.947584 +0.945584,0.945584,0.945584,0.945584,0.945584,0.945584 +0.943584,0.943584,0.943584,0.943584,0.943584,0.943584 +0.941584,0.941584,0.941584,0.941584,0.941584,0.941584 +0.939584,0.939584,0.939584,0.939584,0.939584,0.939584 +0.937584,0.937584,0.937584,0.937584,0.937584,0.937584 +0.935584,0.935584,0.935584,0.935584,0.935584,0.935584 +0.933584,0.933584,0.933584,0.933584,0.933584,0.933584 +0.931584,0.931584,0.931584,0.931584,0.931584,0.931584 +0.929584,0.929584,0.929584,0.929584,0.929584,0.929584 +0.927584,0.927584,0.927584,0.927584,0.927584,0.927584 +0.925584,0.925584,0.925584,0.925584,0.925584,0.925584 +0.923584,0.923584,0.923584,0.923584,0.923584,0.923584 +0.921584,0.921584,0.921584,0.921584,0.921584,0.921584 +0.919584,0.919584,0.919584,0.919584,0.919584,0.919584 +0.917584,0.917584,0.917584,0.917584,0.917584,0.917584 +0.915584,0.915584,0.915584,0.915584,0.915584,0.915584 +0.913584,0.913584,0.913584,0.913584,0.913584,0.913584 +0.911584,0.911584,0.911584,0.911584,0.911584,0.911584 +0.909584,0.909584,0.909584,0.909584,0.909584,0.909584 +0.907584,0.907584,0.907584,0.907584,0.907584,0.907584 +0.905584,0.905584,0.905584,0.905584,0.905584,0.905584 +0.903584,0.903584,0.903584,0.903584,0.903584,0.903584 +0.901584,0.901584,0.901584,0.901584,0.901584,0.901584 +0.899584,0.899584,0.899584,0.899584,0.899584,0.899584 +0.897584,0.897584,0.897584,0.897584,0.897584,0.897584 +0.895584,0.895584,0.895584,0.895584,0.895584,0.895584 +0.893584,0.893584,0.893584,0.893584,0.893584,0.893584 +0.891584,0.891584,0.891584,0.891584,0.891584,0.891584 +0.889584,0.889584,0.889584,0.889584,0.889584,0.889584 +0.887584,0.887584,0.887584,0.887584,0.887584,0.887584 +0.885584,0.885584,0.885584,0.885584,0.885584,0.885584 +0.883584,0.883584,0.883584,0.883584,0.883584,0.883584 +0.881584,0.881584,0.881584,0.881584,0.881584,0.881584 +0.879584,0.879584,0.879584,0.879584,0.879584,0.879584 +0.877584,0.877584,0.877584,0.877584,0.877584,0.877584 +0.875584,0.875584,0.875584,0.875584,0.875584,0.875584 +0.873584,0.873584,0.873584,0.873584,0.873584,0.873584 +0.871584,0.871584,0.871584,0.871584,0.871584,0.871584 +0.869584,0.869584,0.869584,0.869584,0.869584,0.869584 +0.867584,0.867584,0.867584,0.867584,0.867584,0.867584 +0.865584,0.865584,0.865584,0.865584,0.865584,0.865584 +0.863584,0.863584,0.863584,0.863584,0.863584,0.863584 +0.861584,0.861584,0.861584,0.861584,0.861584,0.861584 +0.859584,0.859584,0.859584,0.859584,0.859584,0.859584 +0.857584,0.857584,0.857584,0.857584,0.857584,0.857584 +0.855584,0.855584,0.855584,0.855584,0.855584,0.855584 +0.853584,0.853584,0.853584,0.853584,0.853584,0.853584 +0.851584,0.851584,0.851584,0.851584,0.851584,0.851584 +0.849584,0.849584,0.849584,0.849584,0.849584,0.849584 +0.847584,0.847584,0.847584,0.847584,0.847584,0.847584 +0.845584,0.845584,0.845584,0.845584,0.845584,0.845584 +0.843584,0.843584,0.843584,0.843584,0.843584,0.843584 +0.841584,0.841584,0.841584,0.841584,0.841584,0.841584 +0.839584,0.839584,0.839584,0.839584,0.839584,0.839584 +0.837584,0.837584,0.837584,0.837584,0.837584,0.837584 +0.835584,0.835584,0.835584,0.835584,0.835584,0.835584 +0.833584,0.833584,0.833584,0.833584,0.833584,0.833584 +0.831584,0.831584,0.831584,0.831584,0.831584,0.831584 +0.829584,0.829584,0.829584,0.829584,0.829584,0.829584 +0.827584,0.827584,0.827584,0.827584,0.827584,0.827584 +0.825584,0.825584,0.825584,0.825584,0.825584,0.825584 +0.823584,0.823584,0.823584,0.823584,0.823584,0.823584 +0.821584,0.821584,0.821584,0.821584,0.821584,0.821584 +0.819584,0.819584,0.819584,0.819584,0.819584,0.819584 +0.817584,0.817584,0.817584,0.817584,0.817584,0.817584 +0.815584,0.815584,0.815584,0.815584,0.815584,0.815584 +0.813584,0.813584,0.813584,0.813584,0.813584,0.813584 +0.811584,0.811584,0.811584,0.811584,0.811584,0.811584 +0.809584,0.809584,0.809584,0.809584,0.809584,0.809584 +0.807584,0.807584,0.807584,0.807584,0.807584,0.807584 +0.805584,0.805584,0.805584,0.805584,0.805584,0.805584 +0.803584,0.803584,0.803584,0.803584,0.803584,0.803584 +0.801584,0.801584,0.801584,0.801584,0.801584,0.801584 +0.799584,0.799584,0.799584,0.799584,0.799584,0.799584 +0.797584,0.797584,0.797584,0.797584,0.797584,0.797584 +0.795584,0.795584,0.795584,0.795584,0.795584,0.795584 +0.793584,0.793584,0.793584,0.793584,0.793584,0.793584 +0.791584,0.791584,0.791584,0.791584,0.791584,0.791584 +0.789584,0.789584,0.789584,0.789584,0.789584,0.789584 +0.787584,0.787584,0.787584,0.787584,0.787584,0.787584 +0.785584,0.785584,0.785584,0.785584,0.785584,0.785584 +0.783584,0.783584,0.783584,0.783584,0.783584,0.783584 +0.781584,0.781584,0.781584,0.781584,0.781584,0.781584 +0.779584,0.779584,0.779584,0.779584,0.779584,0.779584 +0.777584,0.777584,0.777584,0.777584,0.777584,0.777584 +0.775584,0.775584,0.775584,0.775584,0.775584,0.775584 +0.773584,0.773584,0.773584,0.773584,0.773584,0.773584 +0.771584,0.771584,0.771584,0.771584,0.771584,0.771584 +0.769584,0.769584,0.769584,0.769584,0.769584,0.769584 +0.767584,0.767584,0.767584,0.767584,0.767584,0.767584 +0.765584,0.765584,0.765584,0.765584,0.765584,0.765584 +0.763584,0.763584,0.763584,0.763584,0.763584,0.763584 +0.761584,0.761584,0.761584,0.761584,0.761584,0.761584 +0.759584,0.759584,0.759584,0.759584,0.759584,0.759584 +0.757584,0.757584,0.757584,0.757584,0.757584,0.757584 +0.755584,0.755584,0.755584,0.755584,0.755584,0.755584 +0.753584,0.753584,0.753584,0.753584,0.753584,0.753584 +0.751584,0.751584,0.751584,0.751584,0.751584,0.751584 +0.749584,0.749584,0.749584,0.749584,0.749584,0.749584 +0.747584,0.747584,0.747584,0.747584,0.747584,0.747584 +0.745584,0.745584,0.745584,0.745584,0.745584,0.745584 +0.743584,0.743584,0.743584,0.743584,0.743584,0.743584 +0.741584,0.741584,0.741584,0.741584,0.741584,0.741584 +0.739584,0.739584,0.739584,0.739584,0.739584,0.739584 +0.737584,0.737584,0.737584,0.737584,0.737584,0.737584 +0.735584,0.735584,0.735584,0.735584,0.735584,0.735584 +0.733584,0.733584,0.733584,0.733584,0.733584,0.733584 +0.731584,0.731584,0.731584,0.731584,0.731584,0.731584 +0.729584,0.729584,0.729584,0.729584,0.729584,0.729584 +0.727584,0.727584,0.727584,0.727584,0.727584,0.727584 +0.725584,0.725584,0.725584,0.725584,0.725584,0.725584 +0.723584,0.723584,0.723584,0.723584,0.723584,0.723584 +0.721584,0.721584,0.721584,0.721584,0.721584,0.721584 +0.719584,0.719584,0.719584,0.719584,0.719584,0.719584 +0.717584,0.717584,0.717584,0.717584,0.717584,0.717584 +0.715584,0.715584,0.715584,0.715584,0.715584,0.715584 +0.713584,0.713584,0.713584,0.713584,0.713584,0.713584 +0.711584,0.711584,0.711584,0.711584,0.711584,0.711584 +0.709584,0.709584,0.709584,0.709584,0.709584,0.709584 +0.707584,0.707584,0.707584,0.707584,0.707584,0.707584 +0.705584,0.705584,0.705584,0.705584,0.705584,0.705584 +0.703584,0.703584,0.703584,0.703584,0.703584,0.703584 +0.701584,0.701584,0.701584,0.701584,0.701584,0.701584 +0.699584,0.699584,0.699584,0.699584,0.699584,0.699584 +0.697584,0.697584,0.697584,0.697584,0.697584,0.697584 +0.695584,0.695584,0.695584,0.695584,0.695584,0.695584 +0.693584,0.693584,0.693584,0.693584,0.693584,0.693584 +0.691584,0.691584,0.691584,0.691584,0.691584,0.691584 +0.689584,0.689584,0.689584,0.689584,0.689584,0.689584 +0.687584,0.687584,0.687584,0.687584,0.687584,0.687584 +0.685584,0.685584,0.685584,0.685584,0.685584,0.685584 +0.683584,0.683584,0.683584,0.683584,0.683584,0.683584 +0.681584,0.681584,0.681584,0.681584,0.681584,0.681584 +0.679584,0.679584,0.679584,0.679584,0.679584,0.679584 +0.677584,0.677584,0.677584,0.677584,0.677584,0.677584 +0.675584,0.675584,0.675584,0.675584,0.675584,0.675584 +0.673584,0.673584,0.673584,0.673584,0.673584,0.673584 +0.671584,0.671584,0.671584,0.671584,0.671584,0.671584 +0.669584,0.669584,0.669584,0.669584,0.669584,0.669584 +0.667584,0.667584,0.667584,0.667584,0.667584,0.667584 +0.665584,0.665584,0.665584,0.665584,0.665584,0.665584 +0.663584,0.663584,0.663584,0.663584,0.663584,0.663584 +0.661584,0.661584,0.661584,0.661584,0.661584,0.661584 +0.659584,0.659584,0.659584,0.659584,0.659584,0.659584 +0.657584,0.657584,0.657584,0.657584,0.657584,0.657584 +0.655584,0.655584,0.655584,0.655584,0.655584,0.655584 +0.653584,0.653584,0.653584,0.653584,0.653584,0.653584 +0.651584,0.651584,0.651584,0.651584,0.651584,0.651584 +0.649584,0.649584,0.649584,0.649584,0.649584,0.649584 +0.647584,0.647584,0.647584,0.647584,0.647584,0.647584 +0.645584,0.645584,0.645584,0.645584,0.645584,0.645584 +0.643584,0.643584,0.643584,0.643584,0.643584,0.643584 +0.641584,0.641584,0.641584,0.641584,0.641584,0.641584 +0.639584,0.639584,0.639584,0.639584,0.639584,0.639584 +0.637584,0.637584,0.637584,0.637584,0.637584,0.637584 +0.635584,0.635584,0.635584,0.635584,0.635584,0.635584 +0.633584,0.633584,0.633584,0.633584,0.633584,0.633584 +0.631584,0.631584,0.631584,0.631584,0.631584,0.631584 +0.629584,0.629584,0.629584,0.629584,0.629584,0.629584 +0.627584,0.627584,0.627584,0.627584,0.627584,0.627584 +0.625584,0.625584,0.625584,0.625584,0.625584,0.625584 +0.623584,0.623584,0.623584,0.623584,0.623584,0.623584 +0.621584,0.621584,0.621584,0.621584,0.621584,0.621584 +0.619584,0.619584,0.619584,0.619584,0.619584,0.619584 +0.617584,0.617584,0.617584,0.617584,0.617584,0.617584 +0.615584,0.615584,0.615584,0.615584,0.615584,0.615584 +0.613584,0.613584,0.613584,0.613584,0.613584,0.613584 +0.611584,0.611584,0.611584,0.611584,0.611584,0.611584 +0.609584,0.609584,0.609584,0.609584,0.609584,0.609584 +0.607584,0.607584,0.607584,0.607584,0.607584,0.607584 +0.605584,0.605584,0.605584,0.605584,0.605584,0.605584 +0.603584,0.603584,0.603584,0.603584,0.603584,0.603584 +0.601584,0.601584,0.601584,0.601584,0.601584,0.601584 +0.599584,0.599584,0.599584,0.599584,0.599584,0.599584 +0.597584,0.597584,0.597584,0.597584,0.597584,0.597584 +0.595584,0.595584,0.595584,0.595584,0.595584,0.595584 +0.593584,0.593584,0.593584,0.593584,0.593584,0.593584 +0.591584,0.591584,0.591584,0.591584,0.591584,0.591584 +0.589584,0.589584,0.589584,0.589584,0.589584,0.589584 +0.587584,0.587584,0.587584,0.587584,0.587584,0.587584 +0.585584,0.585584,0.585584,0.585584,0.585584,0.585584 +0.583584,0.583584,0.583584,0.583584,0.583584,0.583584 +0.581584,0.581584,0.581584,0.581584,0.581584,0.581584 +0.579584,0.579584,0.579584,0.579584,0.579584,0.579584 +0.577584,0.577584,0.577584,0.577584,0.577584,0.577584 +0.575584,0.575584,0.575584,0.575584,0.575584,0.575584 +0.573584,0.573584,0.573584,0.573584,0.573584,0.573584 +0.571584,0.571584,0.571584,0.571584,0.571584,0.571584 +0.569584,0.569584,0.569584,0.569584,0.569584,0.569584 +0.567584,0.567584,0.567584,0.567584,0.567584,0.567584 +0.565584,0.565584,0.565584,0.565584,0.565584,0.565584 +0.563584,0.563584,0.563584,0.563584,0.563584,0.563584 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.559584,0.559584,0.559584,0.559584,0.559584,0.559584 +0.557584,0.557584,0.557584,0.557584,0.557584,0.557584 +0.555584,0.555584,0.555584,0.555584,0.555584,0.555584 +0.553584,0.553584,0.553584,0.553584,0.553584,0.553584 +0.551584,0.551584,0.551584,0.551584,0.551584,0.551584 +0.549584,0.549584,0.549584,0.549584,0.549584,0.549584 +0.547584,0.547584,0.547584,0.547584,0.547584,0.547584 +0.545584,0.545584,0.545584,0.545584,0.545584,0.545584 +0.543584,0.543584,0.543584,0.543584,0.543584,0.543584 +0.541584,0.541584,0.541584,0.541584,0.541584,0.541584 +0.539584,0.539584,0.539584,0.539584,0.539584,0.539584 +0.537584,0.537584,0.537584,0.537584,0.537584,0.537584 +0.535584,0.535584,0.535584,0.535584,0.535584,0.535584 +0.533584,0.533584,0.533584,0.533584,0.533584,0.533584 +0.531584,0.531584,0.531584,0.531584,0.531584,0.531584 +0.529584,0.529584,0.529584,0.529584,0.529584,0.529584 +0.527584,0.527584,0.527584,0.527584,0.527584,0.527584 +0.525584,0.525584,0.525584,0.525584,0.525584,0.525584 +0.523584,0.523584,0.523584,0.523584,0.523584,0.523584 +0.521584,0.521584,0.521584,0.521584,0.521584,0.521584 +0.519584,0.519584,0.519584,0.519584,0.519584,0.519584 +0.517584,0.517584,0.517584,0.517584,0.517584,0.517584 +0.515584,0.515584,0.515584,0.515584,0.515584,0.515584 +0.513584,0.513584,0.513584,0.513584,0.513584,0.513584 +0.511584,0.511584,0.511584,0.511584,0.511584,0.511584 +0.509584,0.509584,0.509584,0.509584,0.509584,0.509584 +0.507584,0.507584,0.507584,0.507584,0.507584,0.507584 +0.505584,0.505584,0.505584,0.505584,0.505584,0.505584 +0.503584,0.503584,0.503584,0.503584,0.503584,0.503584 +0.501584,0.501584,0.501584,0.501584,0.501584,0.501584 +0.499584,0.499584,0.499584,0.499584,0.499584,0.499584 +0.497584,0.497584,0.497584,0.497584,0.497584,0.497584 +0.495584,0.495584,0.495584,0.495584,0.495584,0.495584 +0.493584,0.493584,0.493584,0.493584,0.493584,0.493584 +0.491584,0.491584,0.491584,0.491584,0.491584,0.491584 +0.489584,0.489584,0.489584,0.489584,0.489584,0.489584 +0.487584,0.487584,0.487584,0.487584,0.487584,0.487584 +0.485584,0.485584,0.485584,0.485584,0.485584,0.485584 +0.483584,0.483584,0.483584,0.483584,0.483584,0.483584 +0.481584,0.481584,0.481584,0.481584,0.481584,0.481584 +0.479584,0.479584,0.479584,0.479584,0.479584,0.479584 +0.477584,0.477584,0.477584,0.477584,0.477584,0.477584 +0.475584,0.475584,0.475584,0.475584,0.475584,0.475584 +0.473584,0.473584,0.473584,0.473584,0.473584,0.473584 +0.471584,0.471584,0.471584,0.471584,0.471584,0.471584 +0.469584,0.469584,0.469584,0.469584,0.469584,0.469584 +0.467584,0.467584,0.467584,0.467584,0.467584,0.467584 +0.465584,0.465584,0.465584,0.465584,0.465584,0.465584 +0.463584,0.463584,0.463584,0.463584,0.463584,0.463584 +0.461584,0.461584,0.461584,0.461584,0.461584,0.461584 +0.459584,0.459584,0.459584,0.459584,0.459584,0.459584 +0.457584,0.457584,0.457584,0.457584,0.457584,0.457584 +0.455584,0.455584,0.455584,0.455584,0.455584,0.455584 +0.453584,0.453584,0.453584,0.453584,0.453584,0.453584 +0.451584,0.451584,0.451584,0.451584,0.451584,0.451584 +0.449584,0.449584,0.449584,0.449584,0.449584,0.449584 +0.447584,0.447584,0.447584,0.447584,0.447584,0.447584 +0.445584,0.445584,0.445584,0.445584,0.445584,0.445584 +0.443584,0.443584,0.443584,0.443584,0.443584,0.443584 +0.441584,0.441584,0.441584,0.441584,0.441584,0.441584 +0.439584,0.439584,0.439584,0.439584,0.439584,0.439584 +0.437584,0.437584,0.437584,0.437584,0.437584,0.437584 +0.435584,0.435584,0.435584,0.435584,0.435584,0.435584 +0.433584,0.433584,0.433584,0.433584,0.433584,0.433584 +0.431584,0.431584,0.431584,0.431584,0.431584,0.431584 +0.429584,0.429584,0.429584,0.429584,0.429584,0.429584 +0.427584,0.427584,0.427584,0.427584,0.427584,0.427584 +0.425584,0.425584,0.425584,0.425584,0.425584,0.425584 +0.423584,0.423584,0.423584,0.423584,0.423584,0.423584 +0.421584,0.421584,0.421584,0.421584,0.421584,0.421584 +0.419584,0.419584,0.419584,0.419584,0.419584,0.419584 +0.417584,0.417584,0.417584,0.417584,0.417584,0.417584 +0.415584,0.415584,0.415584,0.415584,0.415584,0.415584 +0.413584,0.413584,0.413584,0.413584,0.413584,0.413584 +0.411584,0.411584,0.411584,0.411584,0.411584,0.411584 +0.409584,0.409584,0.409584,0.409584,0.409584,0.409584 +0.407584,0.407584,0.407584,0.407584,0.407584,0.407584 +0.405584,0.405584,0.405584,0.405584,0.405584,0.405584 +0.403584,0.403584,0.403584,0.403584,0.403584,0.403584 +0.401584,0.401584,0.401584,0.401584,0.401584,0.401584 +0.399584,0.399584,0.399584,0.399584,0.399584,0.399584 +0.397584,0.397584,0.397584,0.397584,0.397584,0.397584 +0.395584,0.395584,0.395584,0.395584,0.395584,0.395584 +0.393584,0.393584,0.393584,0.393584,0.393584,0.393584 +0.391584,0.391584,0.391584,0.391584,0.391584,0.391584 +0.389584,0.389584,0.389584,0.389584,0.389584,0.389584 +0.387584,0.387584,0.387584,0.387584,0.387584,0.387584 +0.385584,0.385584,0.385584,0.385584,0.385584,0.385584 +0.383584,0.383584,0.383584,0.383584,0.383584,0.383584 +0.381584,0.381584,0.381584,0.381584,0.381584,0.381584 +0.379584,0.379584,0.379584,0.379584,0.379584,0.379584 +0.377584,0.377584,0.377584,0.377584,0.377584,0.377584 +0.375584,0.375584,0.375584,0.375584,0.375584,0.375584 +0.373584,0.373584,0.373584,0.373584,0.373584,0.373584 +0.371584,0.371584,0.371584,0.371584,0.371584,0.371584 +0.369584,0.369584,0.369584,0.369584,0.369584,0.369584 +0.367584,0.367584,0.367584,0.367584,0.367584,0.367584 +0.365584,0.365584,0.365584,0.365584,0.365584,0.365584 +0.363584,0.363584,0.363584,0.363584,0.363584,0.363584 +0.361584,0.361584,0.361584,0.361584,0.361584,0.361584 +0.359584,0.359584,0.359584,0.359584,0.359584,0.359584 +0.357584,0.357584,0.357584,0.357584,0.357584,0.357584 +0.355584,0.355584,0.355584,0.355584,0.355584,0.355584 +0.353584,0.353584,0.353584,0.353584,0.353584,0.353584 +0.351584,0.351584,0.351584,0.351584,0.351584,0.351584 +0.349584,0.349584,0.349584,0.349584,0.349584,0.349584 +0.347584,0.347584,0.347584,0.347584,0.347584,0.347584 +0.345584,0.345584,0.345584,0.345584,0.345584,0.345584 +0.343584,0.343584,0.343584,0.343584,0.343584,0.343584 +0.341584,0.341584,0.341584,0.341584,0.341584,0.341584 +0.339584,0.339584,0.339584,0.339584,0.339584,0.339584 +0.337584,0.337584,0.337584,0.337584,0.337584,0.337584 +0.335584,0.335584,0.335584,0.335584,0.335584,0.335584 +0.333584,0.333584,0.333584,0.333584,0.333584,0.333584 +0.331584,0.331584,0.331584,0.331584,0.331584,0.331584 +0.329584,0.329584,0.329584,0.329584,0.329584,0.329584 +0.327584,0.327584,0.327584,0.327584,0.327584,0.327584 +0.325584,0.325584,0.325584,0.325584,0.325584,0.325584 +0.323584,0.323584,0.323584,0.323584,0.323584,0.323584 +0.321584,0.321584,0.321584,0.321584,0.321584,0.321584 +0.319584,0.319584,0.319584,0.319584,0.319584,0.319584 +0.317584,0.317584,0.317584,0.317584,0.317584,0.317584 +0.315584,0.315584,0.315584,0.315584,0.315584,0.315584 +0.313584,0.313584,0.313584,0.313584,0.313584,0.313584 +0.311584,0.311584,0.311584,0.311584,0.311584,0.311584 +0.309584,0.309584,0.309584,0.309584,0.309584,0.309584 +0.307584,0.307584,0.307584,0.307584,0.307584,0.307584 +0.305584,0.305584,0.305584,0.305584,0.305584,0.305584 +0.303584,0.303584,0.303584,0.303584,0.303584,0.303584 +0.301584,0.301584,0.301584,0.301584,0.301584,0.301584 +0.299584,0.299584,0.299584,0.299584,0.299584,0.299584 +0.297584,0.297584,0.297584,0.297584,0.297584,0.297584 +0.295584,0.295584,0.295584,0.295584,0.295584,0.295584 +0.293584,0.293584,0.293584,0.293584,0.293584,0.293584 +0.291584,0.291584,0.291584,0.291584,0.291584,0.291584 +0.289584,0.289584,0.289584,0.289584,0.289584,0.289584 +0.287584,0.287584,0.287584,0.287584,0.287584,0.287584 +0.285584,0.285584,0.285584,0.285584,0.285584,0.285584 +0.283584,0.283584,0.283584,0.283584,0.283584,0.283584 +0.281584,0.281584,0.281584,0.281584,0.281584,0.281584 +0.279584,0.279584,0.279584,0.279584,0.279584,0.279584 +0.277584,0.277584,0.277584,0.277584,0.277584,0.277584 +0.275584,0.275584,0.275584,0.275584,0.275584,0.275584 +0.273584,0.273584,0.273584,0.273584,0.273584,0.273584 +0.271584,0.271584,0.271584,0.271584,0.271584,0.271584 +0.269584,0.269584,0.269584,0.269584,0.269584,0.269584 +0.267584,0.267584,0.267584,0.267584,0.267584,0.267584 +0.265584,0.265584,0.265584,0.265584,0.265584,0.265584 +0.263584,0.263584,0.263584,0.263584,0.263584,0.263584 +0.261584,0.261584,0.261584,0.261584,0.261584,0.261584 +0.259584,0.259584,0.259584,0.259584,0.259584,0.259584 +0.257584,0.257584,0.257584,0.257584,0.257584,0.257584 +0.255584,0.255584,0.255584,0.255584,0.255584,0.255584 +0.253584,0.253584,0.253584,0.253584,0.253584,0.253584 +0.251584,0.251584,0.251584,0.251584,0.251584,0.251584 +0.249584,0.249584,0.249584,0.249584,0.249584,0.249584 +0.247584,0.247584,0.247584,0.247584,0.247584,0.247584 +0.245584,0.245584,0.245584,0.245584,0.245584,0.245584 +0.243584,0.243584,0.243584,0.243584,0.243584,0.243584 +0.241584,0.241584,0.241584,0.241584,0.241584,0.241584 +0.239584,0.239584,0.239584,0.239584,0.239584,0.239584 +0.237584,0.237584,0.237584,0.237584,0.237584,0.237584 +0.235584,0.235584,0.235584,0.235584,0.235584,0.235584 +0.233584,0.233584,0.233584,0.233584,0.233584,0.233584 +0.231584,0.231584,0.231584,0.231584,0.231584,0.231584 +0.229584,0.229584,0.229584,0.229584,0.229584,0.229584 +0.227584,0.227584,0.227584,0.227584,0.227584,0.227584 +0.225584,0.225584,0.225584,0.225584,0.225584,0.225584 +0.223584,0.223584,0.223584,0.223584,0.223584,0.223584 +0.221584,0.221584,0.221584,0.221584,0.221584,0.221584 +0.219584,0.219584,0.219584,0.219584,0.219584,0.219584 +0.217584,0.217584,0.217584,0.217584,0.217584,0.217584 +0.215584,0.215584,0.215584,0.215584,0.215584,0.215584 +0.213584,0.213584,0.213584,0.213584,0.213584,0.213584 +0.211584,0.211584,0.211584,0.211584,0.211584,0.211584 +0.209584,0.209584,0.209584,0.209584,0.209584,0.209584 +0.207584,0.207584,0.207584,0.207584,0.207584,0.207584 +0.205584,0.205584,0.205584,0.205584,0.205584,0.205584 +0.203584,0.203584,0.203584,0.203584,0.203584,0.203584 +0.201584,0.201584,0.201584,0.201584,0.201584,0.201584 +0.199584,0.199584,0.199584,0.199584,0.199584,0.199584 +0.197584,0.197584,0.197584,0.197584,0.197584,0.197584 +0.195584,0.195584,0.195584,0.195584,0.195584,0.195584 +0.193584,0.193584,0.193584,0.193584,0.193584,0.193584 +0.191584,0.191584,0.191584,0.191584,0.191584,0.191584 +0.189584,0.189584,0.189584,0.189584,0.189584,0.189584 +0.187584,0.187584,0.187584,0.187584,0.187584,0.187584 +0.185584,0.185584,0.185584,0.185584,0.185584,0.185584 +0.183584,0.183584,0.183584,0.183584,0.183584,0.183584 +0.181584,0.181584,0.181584,0.181584,0.181584,0.181584 +0.179584,0.179584,0.179584,0.179584,0.179584,0.179584 +0.177584,0.177584,0.177584,0.177584,0.177584,0.177584 +0.175584,0.175584,0.175584,0.175584,0.175584,0.175584 +0.173584,0.173584,0.173584,0.173584,0.173584,0.173584 +0.171584,0.171584,0.171584,0.171584,0.171584,0.171584 +0.169584,0.169584,0.169584,0.169584,0.169584,0.169584 +0.167584,0.167584,0.167584,0.167584,0.167584,0.167584 +0.165584,0.165584,0.165584,0.165584,0.165584,0.165584 +0.163584,0.163584,0.163584,0.163584,0.163584,0.163584 +0.161584,0.161584,0.161584,0.161584,0.161584,0.161584 +0.159584,0.159584,0.159584,0.159584,0.159584,0.159584 +0.157584,0.157584,0.157584,0.157584,0.157584,0.157584 +0.155584,0.155584,0.155584,0.155584,0.155584,0.155584 +0.153584,0.153584,0.153584,0.153584,0.153584,0.153584 +0.151584,0.151584,0.151584,0.151584,0.151584,0.151584 +0.149584,0.149584,0.149584,0.149584,0.149584,0.149584 +0.147584,0.147584,0.147584,0.147584,0.147584,0.147584 +0.145584,0.145584,0.145584,0.145584,0.145584,0.145584 +0.143584,0.143584,0.143584,0.143584,0.143584,0.143584 +0.141584,0.141584,0.141584,0.141584,0.141584,0.141584 +0.139584,0.139584,0.139584,0.139584,0.139584,0.139584 +0.137584,0.137584,0.137584,0.137584,0.137584,0.137584 +0.135584,0.135584,0.135584,0.135584,0.135584,0.135584 +0.133584,0.133584,0.133584,0.133584,0.133584,0.133584 +0.131584,0.131584,0.131584,0.131584,0.131584,0.131584 +0.129584,0.129584,0.129584,0.129584,0.129584,0.129584 +0.127584,0.127584,0.127584,0.127584,0.127584,0.127584 +0.125584,0.125584,0.125584,0.125584,0.125584,0.125584 +0.123584,0.123584,0.123584,0.123584,0.123584,0.123584 +0.121584,0.121584,0.121584,0.121584,0.121584,0.121584 +0.119584,0.119584,0.119584,0.119584,0.119584,0.119584 +0.117584,0.117584,0.117584,0.117584,0.117584,0.117584 +0.115584,0.115584,0.115584,0.115584,0.115584,0.115584 +0.113584,0.113584,0.113584,0.113584,0.113584,0.113584 +0.111584,0.111584,0.111584,0.111584,0.111584,0.111584 +0.109584,0.109584,0.109584,0.109584,0.109584,0.109584 +0.107584,0.107584,0.107584,0.107584,0.107584,0.107584 +0.105584,0.105584,0.105584,0.105584,0.105584,0.105584 +0.103584,0.103584,0.103584,0.103584,0.103584,0.103584 +0.101584,0.101584,0.101584,0.101584,0.101584,0.101584 +0.099584,0.099584,0.099584,0.099584,0.099584,0.099584 +0.097584,0.097584,0.097584,0.097584,0.097584,0.097584 +0.095584,0.095584,0.095584,0.095584,0.095584,0.095584 +0.093584,0.093584,0.093584,0.093584,0.093584,0.093584 +0.091584,0.091584,0.091584,0.091584,0.091584,0.091584 +0.089584,0.089584,0.089584,0.089584,0.089584,0.089584 +0.087584,0.087584,0.087584,0.087584,0.087584,0.087584 +0.085584,0.085584,0.085584,0.085584,0.085584,0.085584 +0.083584,0.083584,0.083584,0.083584,0.083584,0.083584 +0.081584,0.081584,0.081584,0.081584,0.081584,0.081584 +0.079584,0.079584,0.079584,0.079584,0.079584,0.079584 +0.077584,0.077584,0.077584,0.077584,0.077584,0.077584 +0.075584,0.075584,0.075584,0.075584,0.075584,0.075584 +0.073584,0.073584,0.073584,0.073584,0.073584,0.073584 +0.071584,0.071584,0.071584,0.071584,0.071584,0.071584 +0.069584,0.069584,0.069584,0.069584,0.069584,0.069584 +0.067584,0.067584,0.067584,0.067584,0.067584,0.067584 +0.065584,0.065584,0.065584,0.065584,0.065584,0.065584 +0.063584,0.063584,0.063584,0.063584,0.063584,0.063584 +0.061584,0.061584,0.061584,0.061584,0.061584,0.061584 +0.059584,0.059584,0.059584,0.059584,0.059584,0.059584 +0.057584,0.057584,0.057584,0.057584,0.057584,0.057584 +0.055584,0.055584,0.055584,0.055584,0.055584,0.055584 +0.053584,0.053584,0.053584,0.053584,0.053584,0.053584 +0.051584,0.051584,0.051584,0.051584,0.051584,0.051584 +0.049584,0.049584,0.049584,0.049584,0.049584,0.049584 +0.047584,0.047584,0.047584,0.047584,0.047584,0.047584 +0.045584,0.045584,0.045584,0.045584,0.045584,0.045584 +0.043584,0.043584,0.043584,0.043584,0.043584,0.043584 +0.041584,0.041584,0.041584,0.041584,0.041584,0.041584 +0.039584,0.039584,0.039584,0.039584,0.039584,0.039584 +0.037584,0.037584,0.037584,0.037584,0.037584,0.037584 +0.035584,0.035584,0.035584,0.035584,0.035584,0.035584 +0.033584,0.033584,0.033584,0.033584,0.033584,0.033584 +0.031584,0.031584,0.031584,0.031584,0.031584,0.031584 +0.029584,0.029584,0.029584,0.029584,0.029584,0.029584 +0.027584,0.027584,0.027584,0.027584,0.027584,0.027584 +0.025588,0.025588,0.025588,0.025588,0.025588,0.025588 +0.023606,0.023606,0.023606,0.023606,0.023606,0.023606 +0.021647,0.021647,0.021647,0.021647,0.021647,0.021647 +0.019721,0.019721,0.019721,0.019721,0.019721,0.019721 +0.017839,0.017839,0.017839,0.017839,0.017839,0.017839 +0.016011,0.016011,0.016011,0.016011,0.016011,0.016011 +0.014246,0.014246,0.014246,0.014246,0.014246,0.014246 +0.012555,0.012555,0.012555,0.012555,0.012555,0.012555 +0.010947,0.010947,0.010947,0.010947,0.010947,0.010947 +0.009432,0.009432,0.009432,0.009432,0.009432,0.009432 +0.008021,0.008021,0.008021,0.008021,0.008021,0.008021 +0.006724,0.006724,0.006724,0.006724,0.006724,0.006724 +0.00555,0.00555,0.00555,0.00555,0.00555,0.00555 +0.004509,0.004509,0.004509,0.004509,0.004509,0.004509 +0.003606,0.003606,0.003606,0.003606,0.003606,0.003606 +0.002833,0.002833,0.002833,0.002833,0.002833,0.002833 +0.002179,0.002179,0.002179,0.002179,0.002179,0.002179 +0.001634,0.001634,0.001634,0.001634,0.001634,0.001634 +0.001189,0.001189,0.001189,0.001189,0.001189,0.001189 +0.000832,0.000832,0.000832,0.000832,0.000832,0.000832 +0.000556,0.000556,0.000556,0.000556,0.000556,0.000556 +0.000348,0.000348,0.000348,0.000348,0.000348,0.000348 +0.0002,0.0002,0.0002,0.0002,0.0002,0.0002 +0.000101,0.000101,0.000101,0.000101,0.000101,0.000101 +0.000042,0.000042,0.000042,0.000042,0.000042,0.000042 +0.000012,0.000012,0.000012,0.000012,0.000012,0.000012 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000013,-0.000013,-0.000013,-0.000013,-0.000013,-0.000013 +-0.000045,-0.000045,-0.000045,-0.000045,-0.000045,-0.000045 +-0.000107,-0.000107,-0.000107,-0.000107,-0.000107,-0.000107 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.00036,-0.00036,-0.00036,-0.00036,-0.00036,-0.00036 +-0.000572,-0.000572,-0.000572,-0.000572,-0.000572,-0.000572 +-0.000853,-0.000853,-0.000853,-0.000853,-0.000853,-0.000853 +-0.001215,-0.001215,-0.001215,-0.001215,-0.001215,-0.001215 +-0.001667,-0.001667,-0.001667,-0.001667,-0.001667,-0.001667 +-0.002218,-0.002218,-0.002218,-0.002218,-0.002218,-0.002218 +-0.00288,-0.00288,-0.00288,-0.00288,-0.00288,-0.00288 +-0.003662,-0.003662,-0.003662,-0.003662,-0.003662,-0.003662 +-0.004573,-0.004573,-0.004573,-0.004573,-0.004573,-0.004573 +-0.005623,-0.005623,-0.005623,-0.005623,-0.005623,-0.005623 +-0.006805,-0.006805,-0.006805,-0.006805,-0.006805,-0.006805 +-0.008111,-0.008111,-0.008111,-0.008111,-0.008111,-0.008111 +-0.009529,-0.009529,-0.009529,-0.009529,-0.009529,-0.009529 +-0.01105,-0.01105,-0.01105,-0.01105,-0.01105,-0.01105 +-0.012663,-0.012663,-0.012663,-0.012663,-0.012663,-0.012663 +-0.01436,-0.01436,-0.01436,-0.01436,-0.01436,-0.01436 +-0.016129,-0.016129,-0.016129,-0.016129,-0.016129,-0.016129 +-0.017962,-0.017962,-0.017962,-0.017962,-0.017962,-0.017962 +-0.019847,-0.019847,-0.019847,-0.019847,-0.019847,-0.019847 +-0.021775,-0.021775,-0.021775,-0.021775,-0.021775,-0.021775 +-0.023736,-0.023736,-0.023736,-0.023736,-0.023736,-0.023736 +-0.025719,-0.025719,-0.025719,-0.025719,-0.025719,-0.025719 +-0.027716,-0.027716,-0.027716,-0.027716,-0.027716,-0.027716 +-0.029716,-0.029716,-0.029716,-0.029716,-0.029716,-0.029716 +-0.031716,-0.031716,-0.031716,-0.031716,-0.031716,-0.031716 +-0.033716,-0.033716,-0.033716,-0.033716,-0.033716,-0.033716 +-0.035716,-0.035716,-0.035716,-0.035716,-0.035716,-0.035716 +-0.037716,-0.037716,-0.037716,-0.037716,-0.037716,-0.037716 +-0.039716,-0.039716,-0.039716,-0.039716,-0.039716,-0.039716 +-0.041716,-0.041716,-0.041716,-0.041716,-0.041716,-0.041716 +-0.043716,-0.043716,-0.043716,-0.043716,-0.043716,-0.043716 +-0.045716,-0.045716,-0.045716,-0.045716,-0.045716,-0.045716 +-0.047716,-0.047716,-0.047716,-0.047716,-0.047716,-0.047716 +-0.049716,-0.049716,-0.049716,-0.049716,-0.049716,-0.049716 +-0.051716,-0.051716,-0.051716,-0.051716,-0.051716,-0.051716 +-0.053716,-0.053716,-0.053716,-0.053716,-0.053716,-0.053716 +-0.055716,-0.055716,-0.055716,-0.055716,-0.055716,-0.055716 +-0.057716,-0.057716,-0.057716,-0.057716,-0.057716,-0.057716 +-0.059716,-0.059716,-0.059716,-0.059716,-0.059716,-0.059716 +-0.061716,-0.061716,-0.061716,-0.061716,-0.061716,-0.061716 +-0.063716,-0.063716,-0.063716,-0.063716,-0.063716,-0.063716 +-0.065716,-0.065716,-0.065716,-0.065716,-0.065716,-0.065716 +-0.067716,-0.067716,-0.067716,-0.067716,-0.067716,-0.067716 +-0.069716,-0.069716,-0.069716,-0.069716,-0.069716,-0.069716 +-0.071716,-0.071716,-0.071716,-0.071716,-0.071716,-0.071716 +-0.073716,-0.073716,-0.073716,-0.073716,-0.073716,-0.073716 +-0.075716,-0.075716,-0.075716,-0.075716,-0.075716,-0.075716 +-0.077716,-0.077716,-0.077716,-0.077716,-0.077716,-0.077716 +-0.079716,-0.079716,-0.079716,-0.079716,-0.079716,-0.079716 +-0.081716,-0.081716,-0.081716,-0.081716,-0.081716,-0.081716 +-0.083716,-0.083716,-0.083716,-0.083716,-0.083716,-0.083716 +-0.085716,-0.085716,-0.085716,-0.085716,-0.085716,-0.085716 +-0.087716,-0.087716,-0.087716,-0.087716,-0.087716,-0.087716 +-0.089716,-0.089716,-0.089716,-0.089716,-0.089716,-0.089716 +-0.091716,-0.091716,-0.091716,-0.091716,-0.091716,-0.091716 +-0.093716,-0.093716,-0.093716,-0.093716,-0.093716,-0.093716 +-0.095716,-0.095716,-0.095716,-0.095716,-0.095716,-0.095716 +-0.097716,-0.097716,-0.097716,-0.097716,-0.097716,-0.097716 +-0.099716,-0.099716,-0.099716,-0.099716,-0.099716,-0.099716 +-0.101716,-0.101716,-0.101716,-0.101716,-0.101716,-0.101716 +-0.103716,-0.103716,-0.103716,-0.103716,-0.103716,-0.103716 +-0.105716,-0.105716,-0.105716,-0.105716,-0.105716,-0.105716 +-0.107716,-0.107716,-0.107716,-0.107716,-0.107716,-0.107716 +-0.109716,-0.109716,-0.109716,-0.109716,-0.109716,-0.109716 +-0.111716,-0.111716,-0.111716,-0.111716,-0.111716,-0.111716 +-0.113716,-0.113716,-0.113716,-0.113716,-0.113716,-0.113716 +-0.115716,-0.115716,-0.115716,-0.115716,-0.115716,-0.115716 +-0.117716,-0.117716,-0.117716,-0.117716,-0.117716,-0.117716 +-0.119716,-0.119716,-0.119716,-0.119716,-0.119716,-0.119716 +-0.121716,-0.121716,-0.121716,-0.121716,-0.121716,-0.121716 +-0.123716,-0.123716,-0.123716,-0.123716,-0.123716,-0.123716 +-0.125716,-0.125716,-0.125716,-0.125716,-0.125716,-0.125716 +-0.127716,-0.127716,-0.127716,-0.127716,-0.127716,-0.127716 +-0.129716,-0.129716,-0.129716,-0.129716,-0.129716,-0.129716 +-0.131716,-0.131716,-0.131716,-0.131716,-0.131716,-0.131716 +-0.133716,-0.133716,-0.133716,-0.133716,-0.133716,-0.133716 +-0.135716,-0.135716,-0.135716,-0.135716,-0.135716,-0.135716 +-0.137716,-0.137716,-0.137716,-0.137716,-0.137716,-0.137716 +-0.139716,-0.139716,-0.139716,-0.139716,-0.139716,-0.139716 +-0.141716,-0.141716,-0.141716,-0.141716,-0.141716,-0.141716 +-0.143716,-0.143716,-0.143716,-0.143716,-0.143716,-0.143716 +-0.145716,-0.145716,-0.145716,-0.145716,-0.145716,-0.145716 +-0.147716,-0.147716,-0.147716,-0.147716,-0.147716,-0.147716 +-0.149716,-0.149716,-0.149716,-0.149716,-0.149716,-0.149716 +-0.151716,-0.151716,-0.151716,-0.151716,-0.151716,-0.151716 +-0.153716,-0.153716,-0.153716,-0.153716,-0.153716,-0.153716 +-0.155716,-0.155716,-0.155716,-0.155716,-0.155716,-0.155716 +-0.157716,-0.157716,-0.157716,-0.157716,-0.157716,-0.157716 +-0.159716,-0.159716,-0.159716,-0.159716,-0.159716,-0.159716 +-0.161716,-0.161716,-0.161716,-0.161716,-0.161716,-0.161716 +-0.163716,-0.163716,-0.163716,-0.163716,-0.163716,-0.163716 +-0.165716,-0.165716,-0.165716,-0.165716,-0.165716,-0.165716 +-0.167716,-0.167716,-0.167716,-0.167716,-0.167716,-0.167716 +-0.169716,-0.169716,-0.169716,-0.169716,-0.169716,-0.169716 +-0.171716,-0.171716,-0.171716,-0.171716,-0.171716,-0.171716 +-0.173716,-0.173716,-0.173716,-0.173716,-0.173716,-0.173716 +-0.175716,-0.175716,-0.175716,-0.175716,-0.175716,-0.175716 +-0.177716,-0.177716,-0.177716,-0.177716,-0.177716,-0.177716 +-0.179716,-0.179716,-0.179716,-0.179716,-0.179716,-0.179716 +-0.181716,-0.181716,-0.181716,-0.181716,-0.181716,-0.181716 +-0.183716,-0.183716,-0.183716,-0.183716,-0.183716,-0.183716 +-0.185716,-0.185716,-0.185716,-0.185716,-0.185716,-0.185716 +-0.187716,-0.187716,-0.187716,-0.187716,-0.187716,-0.187716 +-0.189716,-0.189716,-0.189716,-0.189716,-0.189716,-0.189716 +-0.191716,-0.191716,-0.191716,-0.191716,-0.191716,-0.191716 +-0.193716,-0.193716,-0.193716,-0.193716,-0.193716,-0.193716 +-0.195716,-0.195716,-0.195716,-0.195716,-0.195716,-0.195716 +-0.197716,-0.197716,-0.197716,-0.197716,-0.197716,-0.197716 +-0.199716,-0.199716,-0.199716,-0.199716,-0.199716,-0.199716 +-0.201716,-0.201716,-0.201716,-0.201716,-0.201716,-0.201716 +-0.203716,-0.203716,-0.203716,-0.203716,-0.203716,-0.203716 +-0.205716,-0.205716,-0.205716,-0.205716,-0.205716,-0.205716 +-0.207716,-0.207716,-0.207716,-0.207716,-0.207716,-0.207716 +-0.209716,-0.209716,-0.209716,-0.209716,-0.209716,-0.209716 +-0.211716,-0.211716,-0.211716,-0.211716,-0.211716,-0.211716 +-0.213716,-0.213716,-0.213716,-0.213716,-0.213716,-0.213716 +-0.215716,-0.215716,-0.215716,-0.215716,-0.215716,-0.215716 +-0.217716,-0.217716,-0.217716,-0.217716,-0.217716,-0.217716 +-0.219716,-0.219716,-0.219716,-0.219716,-0.219716,-0.219716 +-0.221716,-0.221716,-0.221716,-0.221716,-0.221716,-0.221716 +-0.223716,-0.223716,-0.223716,-0.223716,-0.223716,-0.223716 +-0.225716,-0.225716,-0.225716,-0.225716,-0.225716,-0.225716 +-0.227716,-0.227716,-0.227716,-0.227716,-0.227716,-0.227716 +-0.229716,-0.229716,-0.229716,-0.229716,-0.229716,-0.229716 +-0.231716,-0.231716,-0.231716,-0.231716,-0.231716,-0.231716 +-0.233716,-0.233716,-0.233716,-0.233716,-0.233716,-0.233716 +-0.235716,-0.235716,-0.235716,-0.235716,-0.235716,-0.235716 +-0.237716,-0.237716,-0.237716,-0.237716,-0.237716,-0.237716 +-0.239716,-0.239716,-0.239716,-0.239716,-0.239716,-0.239716 +-0.241716,-0.241716,-0.241716,-0.241716,-0.241716,-0.241716 +-0.243716,-0.243716,-0.243716,-0.243716,-0.243716,-0.243716 +-0.245716,-0.245716,-0.245716,-0.245716,-0.245716,-0.245716 +-0.247716,-0.247716,-0.247716,-0.247716,-0.247716,-0.247716 +-0.249716,-0.249716,-0.249716,-0.249716,-0.249716,-0.249716 +-0.251716,-0.251716,-0.251716,-0.251716,-0.251716,-0.251716 +-0.253716,-0.253716,-0.253716,-0.253716,-0.253716,-0.253716 +-0.255716,-0.255716,-0.255716,-0.255716,-0.255716,-0.255716 +-0.257716,-0.257716,-0.257716,-0.257716,-0.257716,-0.257716 +-0.259716,-0.259716,-0.259716,-0.259716,-0.259716,-0.259716 +-0.261716,-0.261716,-0.261716,-0.261716,-0.261716,-0.261716 +-0.263716,-0.263716,-0.263716,-0.263716,-0.263716,-0.263716 +-0.265716,-0.265716,-0.265716,-0.265716,-0.265716,-0.265716 +-0.267716,-0.267716,-0.267716,-0.267716,-0.267716,-0.267716 +-0.269716,-0.269716,-0.269716,-0.269716,-0.269716,-0.269716 +-0.271716,-0.271716,-0.271716,-0.271716,-0.271716,-0.271716 +-0.273716,-0.273716,-0.273716,-0.273716,-0.273716,-0.273716 +-0.275716,-0.275716,-0.275716,-0.275716,-0.275716,-0.275716 +-0.277716,-0.277716,-0.277716,-0.277716,-0.277716,-0.277716 +-0.279716,-0.279716,-0.279716,-0.279716,-0.279716,-0.279716 +-0.281716,-0.281716,-0.281716,-0.281716,-0.281716,-0.281716 +-0.283716,-0.283716,-0.283716,-0.283716,-0.283716,-0.283716 +-0.285716,-0.285716,-0.285716,-0.285716,-0.285716,-0.285716 +-0.287716,-0.287716,-0.287716,-0.287716,-0.287716,-0.287716 +-0.289716,-0.289716,-0.289716,-0.289716,-0.289716,-0.289716 +-0.291716,-0.291716,-0.291716,-0.291716,-0.291716,-0.291716 +-0.293716,-0.293716,-0.293716,-0.293716,-0.293716,-0.293716 +-0.295716,-0.295716,-0.295716,-0.295716,-0.295716,-0.295716 +-0.297716,-0.297716,-0.297716,-0.297716,-0.297716,-0.297716 +-0.299716,-0.299716,-0.299716,-0.299716,-0.299716,-0.299716 +-0.301716,-0.301716,-0.301716,-0.301716,-0.301716,-0.301716 +-0.303716,-0.303716,-0.303716,-0.303716,-0.303716,-0.303716 +-0.305716,-0.305716,-0.305716,-0.305716,-0.305716,-0.305716 +-0.307716,-0.307716,-0.307716,-0.307716,-0.307716,-0.307716 +-0.309716,-0.309716,-0.309716,-0.309716,-0.309716,-0.309716 +-0.311716,-0.311716,-0.311716,-0.311716,-0.311716,-0.311716 +-0.313716,-0.313716,-0.313716,-0.313716,-0.313716,-0.313716 +-0.315716,-0.315716,-0.315716,-0.315716,-0.315716,-0.315716 +-0.317716,-0.317716,-0.317716,-0.317716,-0.317716,-0.317716 +-0.319716,-0.319716,-0.319716,-0.319716,-0.319716,-0.319716 +-0.321716,-0.321716,-0.321716,-0.321716,-0.321716,-0.321716 +-0.323716,-0.323716,-0.323716,-0.323716,-0.323716,-0.323716 +-0.325716,-0.325716,-0.325716,-0.325716,-0.325716,-0.325716 +-0.327716,-0.327716,-0.327716,-0.327716,-0.327716,-0.327716 +-0.329716,-0.329716,-0.329716,-0.329716,-0.329716,-0.329716 +-0.331716,-0.331716,-0.331716,-0.331716,-0.331716,-0.331716 +-0.333716,-0.333716,-0.333716,-0.333716,-0.333716,-0.333716 +-0.335716,-0.335716,-0.335716,-0.335716,-0.335716,-0.335716 +-0.337716,-0.337716,-0.337716,-0.337716,-0.337716,-0.337716 +-0.339716,-0.339716,-0.339716,-0.339716,-0.339716,-0.339716 +-0.341716,-0.341716,-0.341716,-0.341716,-0.341716,-0.341716 +-0.343716,-0.343716,-0.343716,-0.343716,-0.343716,-0.343716 +-0.345716,-0.345716,-0.345716,-0.345716,-0.345716,-0.345716 +-0.347716,-0.347716,-0.347716,-0.347716,-0.347716,-0.347716 +-0.349716,-0.349716,-0.349716,-0.349716,-0.349716,-0.349716 +-0.351716,-0.351716,-0.351716,-0.351716,-0.351716,-0.351716 +-0.353716,-0.353716,-0.353716,-0.353716,-0.353716,-0.353716 +-0.355716,-0.355716,-0.355716,-0.355716,-0.355716,-0.355716 +-0.357716,-0.357716,-0.357716,-0.357716,-0.357716,-0.357716 +-0.359716,-0.359716,-0.359716,-0.359716,-0.359716,-0.359716 +-0.361716,-0.361716,-0.361716,-0.361716,-0.361716,-0.361716 +-0.363716,-0.363716,-0.363716,-0.363716,-0.363716,-0.363716 +-0.365716,-0.365716,-0.365716,-0.365716,-0.365716,-0.365716 +-0.367716,-0.367716,-0.367716,-0.367716,-0.367716,-0.367716 +-0.369716,-0.369716,-0.369716,-0.369716,-0.369716,-0.369716 +-0.371716,-0.371716,-0.371716,-0.371716,-0.371716,-0.371716 +-0.373716,-0.373716,-0.373716,-0.373716,-0.373716,-0.373716 +-0.375716,-0.375716,-0.375716,-0.375716,-0.375716,-0.375716 +-0.377716,-0.377716,-0.377716,-0.377716,-0.377716,-0.377716 +-0.379716,-0.379716,-0.379716,-0.379716,-0.379716,-0.379716 +-0.381716,-0.381716,-0.381716,-0.381716,-0.381716,-0.381716 +-0.383716,-0.383716,-0.383716,-0.383716,-0.383716,-0.383716 +-0.385716,-0.385716,-0.385716,-0.385716,-0.385716,-0.385716 +-0.387716,-0.387716,-0.387716,-0.387716,-0.387716,-0.387716 +-0.389716,-0.389716,-0.389716,-0.389716,-0.389716,-0.389716 +-0.391716,-0.391716,-0.391716,-0.391716,-0.391716,-0.391716 +-0.393716,-0.393716,-0.393716,-0.393716,-0.393716,-0.393716 +-0.395716,-0.395716,-0.395716,-0.395716,-0.395716,-0.395716 +-0.397716,-0.397716,-0.397716,-0.397716,-0.397716,-0.397716 +-0.399716,-0.399716,-0.399716,-0.399716,-0.399716,-0.399716 +-0.401716,-0.401716,-0.401716,-0.401716,-0.401716,-0.401716 +-0.403716,-0.403716,-0.403716,-0.403716,-0.403716,-0.403716 +-0.405716,-0.405716,-0.405716,-0.405716,-0.405716,-0.405716 +-0.407716,-0.407716,-0.407716,-0.407716,-0.407716,-0.407716 +-0.409716,-0.409716,-0.409716,-0.409716,-0.409716,-0.409716 +-0.411716,-0.411716,-0.411716,-0.411716,-0.411716,-0.411716 +-0.413716,-0.413716,-0.413716,-0.413716,-0.413716,-0.413716 +-0.415716,-0.415716,-0.415716,-0.415716,-0.415716,-0.415716 +-0.417716,-0.417716,-0.417716,-0.417716,-0.417716,-0.417716 +-0.419716,-0.419716,-0.419716,-0.419716,-0.419716,-0.419716 +-0.421716,-0.421716,-0.421716,-0.421716,-0.421716,-0.421716 +-0.423716,-0.423716,-0.423716,-0.423716,-0.423716,-0.423716 +-0.425716,-0.425716,-0.425716,-0.425716,-0.425716,-0.425716 +-0.427716,-0.427716,-0.427716,-0.427716,-0.427716,-0.427716 +-0.429716,-0.429716,-0.429716,-0.429716,-0.429716,-0.429716 +-0.431716,-0.431716,-0.431716,-0.431716,-0.431716,-0.431716 +-0.433716,-0.433716,-0.433716,-0.433716,-0.433716,-0.433716 +-0.435716,-0.435716,-0.435716,-0.435716,-0.435716,-0.435716 +-0.437716,-0.437716,-0.437716,-0.437716,-0.437716,-0.437716 +-0.439716,-0.439716,-0.439716,-0.439716,-0.439716,-0.439716 +-0.441716,-0.441716,-0.441716,-0.441716,-0.441716,-0.441716 +-0.443716,-0.443716,-0.443716,-0.443716,-0.443716,-0.443716 +-0.445716,-0.445716,-0.445716,-0.445716,-0.445716,-0.445716 +-0.447716,-0.447716,-0.447716,-0.447716,-0.447716,-0.447716 +-0.449716,-0.449716,-0.449716,-0.449716,-0.449716,-0.449716 +-0.451716,-0.451716,-0.451716,-0.451716,-0.451716,-0.451716 +-0.453716,-0.453716,-0.453716,-0.453716,-0.453716,-0.453716 +-0.455716,-0.455716,-0.455716,-0.455716,-0.455716,-0.455716 +-0.457716,-0.457716,-0.457716,-0.457716,-0.457716,-0.457716 +-0.459716,-0.459716,-0.459716,-0.459716,-0.459716,-0.459716 +-0.461716,-0.461716,-0.461716,-0.461716,-0.461716,-0.461716 +-0.463716,-0.463716,-0.463716,-0.463716,-0.463716,-0.463716 +-0.465716,-0.465716,-0.465716,-0.465716,-0.465716,-0.465716 +-0.467716,-0.467716,-0.467716,-0.467716,-0.467716,-0.467716 +-0.469716,-0.469716,-0.469716,-0.469716,-0.469716,-0.469716 +-0.471716,-0.471716,-0.471716,-0.471716,-0.471716,-0.471716 +-0.473716,-0.473716,-0.473716,-0.473716,-0.473716,-0.473716 +-0.475716,-0.475716,-0.475716,-0.475716,-0.475716,-0.475716 +-0.477716,-0.477716,-0.477716,-0.477716,-0.477716,-0.477716 +-0.479716,-0.479716,-0.479716,-0.479716,-0.479716,-0.479716 +-0.481716,-0.481716,-0.481716,-0.481716,-0.481716,-0.481716 +-0.483716,-0.483716,-0.483716,-0.483716,-0.483716,-0.483716 +-0.485716,-0.485716,-0.485716,-0.485716,-0.485716,-0.485716 +-0.487716,-0.487716,-0.487716,-0.487716,-0.487716,-0.487716 +-0.489716,-0.489716,-0.489716,-0.489716,-0.489716,-0.489716 +-0.491716,-0.491716,-0.491716,-0.491716,-0.491716,-0.491716 +-0.493716,-0.493716,-0.493716,-0.493716,-0.493716,-0.493716 +-0.495716,-0.495716,-0.495716,-0.495716,-0.495716,-0.495716 +-0.497716,-0.497716,-0.497716,-0.497716,-0.497716,-0.497716 +-0.499716,-0.499716,-0.499716,-0.499716,-0.499716,-0.499716 +-0.501716,-0.501716,-0.501716,-0.501716,-0.501716,-0.501716 +-0.503716,-0.503716,-0.503716,-0.503716,-0.503716,-0.503716 +-0.505716,-0.505716,-0.505716,-0.505716,-0.505716,-0.505716 +-0.507716,-0.507716,-0.507716,-0.507716,-0.507716,-0.507716 +-0.509716,-0.509716,-0.509716,-0.509716,-0.509716,-0.509716 +-0.511716,-0.511716,-0.511716,-0.511716,-0.511716,-0.511716 +-0.513716,-0.513716,-0.513716,-0.513716,-0.513716,-0.513716 +-0.515716,-0.515716,-0.515716,-0.515716,-0.515716,-0.515716 +-0.517716,-0.517716,-0.517716,-0.517716,-0.517716,-0.517716 +-0.519716,-0.519716,-0.519716,-0.519716,-0.519716,-0.519716 +-0.521716,-0.521716,-0.521716,-0.521716,-0.521716,-0.521716 +-0.523716,-0.523716,-0.523716,-0.523716,-0.523716,-0.523716 +-0.525716,-0.525716,-0.525716,-0.525716,-0.525716,-0.525716 +-0.527716,-0.527716,-0.527716,-0.527716,-0.527716,-0.527716 +-0.529716,-0.529716,-0.529716,-0.529716,-0.529716,-0.529716 +-0.531716,-0.531716,-0.531716,-0.531716,-0.531716,-0.531716 +-0.533716,-0.533716,-0.533716,-0.533716,-0.533716,-0.533716 +-0.535716,-0.535716,-0.535716,-0.535716,-0.535716,-0.535716 +-0.537716,-0.537716,-0.537716,-0.537716,-0.537716,-0.537716 +-0.539716,-0.539716,-0.539716,-0.539716,-0.539716,-0.539716 +-0.541716,-0.541716,-0.541716,-0.541716,-0.541716,-0.541716 +-0.543716,-0.543716,-0.543716,-0.543716,-0.543716,-0.543716 +-0.545716,-0.545716,-0.545716,-0.545716,-0.545716,-0.545716 +-0.547716,-0.547716,-0.547716,-0.547716,-0.547716,-0.547716 +-0.549716,-0.549716,-0.549716,-0.549716,-0.549716,-0.549716 +-0.551716,-0.551716,-0.551716,-0.551716,-0.551716,-0.551716 +-0.553716,-0.553716,-0.553716,-0.553716,-0.553716,-0.553716 +-0.555716,-0.555716,-0.555716,-0.555716,-0.555716,-0.555716 +-0.557716,-0.557716,-0.557716,-0.557716,-0.557716,-0.557716 +-0.559716,-0.559716,-0.559716,-0.559716,-0.559716,-0.559716 +-0.561716,-0.561716,-0.561716,-0.561716,-0.561716,-0.561716 +-0.563716,-0.563716,-0.563716,-0.563716,-0.563716,-0.563716 +-0.565716,-0.565716,-0.565716,-0.565716,-0.565716,-0.565716 +-0.567716,-0.567716,-0.567716,-0.567716,-0.567716,-0.567716 +-0.569716,-0.569716,-0.569716,-0.569716,-0.569716,-0.569716 +-0.571716,-0.571716,-0.571716,-0.571716,-0.571716,-0.571716 +-0.573716,-0.573716,-0.573716,-0.573716,-0.573716,-0.573716 +-0.575716,-0.575716,-0.575716,-0.575716,-0.575716,-0.575716 +-0.577716,-0.577716,-0.577716,-0.577716,-0.577716,-0.577716 +-0.579716,-0.579716,-0.579716,-0.579716,-0.579716,-0.579716 +-0.581716,-0.581716,-0.581716,-0.581716,-0.581716,-0.581716 +-0.583716,-0.583716,-0.583716,-0.583716,-0.583716,-0.583716 +-0.585716,-0.585716,-0.585716,-0.585716,-0.585716,-0.585716 +-0.587716,-0.587716,-0.587716,-0.587716,-0.587716,-0.587716 +-0.589716,-0.589716,-0.589716,-0.589716,-0.589716,-0.589716 +-0.591716,-0.591716,-0.591716,-0.591716,-0.591716,-0.591716 +-0.593716,-0.593716,-0.593716,-0.593716,-0.593716,-0.593716 +-0.595716,-0.595716,-0.595716,-0.595716,-0.595716,-0.595716 +-0.597716,-0.597716,-0.597716,-0.597716,-0.597716,-0.597716 +-0.599716,-0.599716,-0.599716,-0.599716,-0.599716,-0.599716 +-0.601716,-0.601716,-0.601716,-0.601716,-0.601716,-0.601716 +-0.603716,-0.603716,-0.603716,-0.603716,-0.603716,-0.603716 +-0.605716,-0.605716,-0.605716,-0.605716,-0.605716,-0.605716 +-0.607716,-0.607716,-0.607716,-0.607716,-0.607716,-0.607716 +-0.609716,-0.609716,-0.609716,-0.609716,-0.609716,-0.609716 +-0.611716,-0.611716,-0.611716,-0.611716,-0.611716,-0.611716 +-0.613716,-0.613716,-0.613716,-0.613716,-0.613716,-0.613716 +-0.615716,-0.615716,-0.615716,-0.615716,-0.615716,-0.615716 +-0.617716,-0.617716,-0.617716,-0.617716,-0.617716,-0.617716 +-0.619716,-0.619716,-0.619716,-0.619716,-0.619716,-0.619716 +-0.621716,-0.621716,-0.621716,-0.621716,-0.621716,-0.621716 +-0.623716,-0.623716,-0.623716,-0.623716,-0.623716,-0.623716 +-0.625716,-0.625716,-0.625716,-0.625716,-0.625716,-0.625716 +-0.627716,-0.627716,-0.627716,-0.627716,-0.627716,-0.627716 +-0.629716,-0.629716,-0.629716,-0.629716,-0.629716,-0.629716 +-0.631716,-0.631716,-0.631716,-0.631716,-0.631716,-0.631716 +-0.633716,-0.633716,-0.633716,-0.633716,-0.633716,-0.633716 +-0.635716,-0.635716,-0.635716,-0.635716,-0.635716,-0.635716 +-0.637716,-0.637716,-0.637716,-0.637716,-0.637716,-0.637716 +-0.639716,-0.639716,-0.639716,-0.639716,-0.639716,-0.639716 +-0.641716,-0.641716,-0.641716,-0.641716,-0.641716,-0.641716 +-0.643716,-0.643716,-0.643716,-0.643716,-0.643716,-0.643716 +-0.645716,-0.645716,-0.645716,-0.645716,-0.645716,-0.645716 +-0.647716,-0.647716,-0.647716,-0.647716,-0.647716,-0.647716 +-0.649716,-0.649716,-0.649716,-0.649716,-0.649716,-0.649716 +-0.651716,-0.651716,-0.651716,-0.651716,-0.651716,-0.651716 +-0.653716,-0.653716,-0.653716,-0.653716,-0.653716,-0.653716 +-0.655716,-0.655716,-0.655716,-0.655716,-0.655716,-0.655716 +-0.657716,-0.657716,-0.657716,-0.657716,-0.657716,-0.657716 +-0.659716,-0.659716,-0.659716,-0.659716,-0.659716,-0.659716 +-0.661716,-0.661716,-0.661716,-0.661716,-0.661716,-0.661716 +-0.663716,-0.663716,-0.663716,-0.663716,-0.663716,-0.663716 +-0.665716,-0.665716,-0.665716,-0.665716,-0.665716,-0.665716 +-0.667716,-0.667716,-0.667716,-0.667716,-0.667716,-0.667716 +-0.669716,-0.669716,-0.669716,-0.669716,-0.669716,-0.669716 +-0.671716,-0.671716,-0.671716,-0.671716,-0.671716,-0.671716 +-0.673716,-0.673716,-0.673716,-0.673716,-0.673716,-0.673716 +-0.675716,-0.675716,-0.675716,-0.675716,-0.675716,-0.675716 +-0.677716,-0.677716,-0.677716,-0.677716,-0.677716,-0.677716 +-0.679716,-0.679716,-0.679716,-0.679716,-0.679716,-0.679716 +-0.681716,-0.681716,-0.681716,-0.681716,-0.681716,-0.681716 +-0.683716,-0.683716,-0.683716,-0.683716,-0.683716,-0.683716 +-0.685716,-0.685716,-0.685716,-0.685716,-0.685716,-0.685716 +-0.687716,-0.687716,-0.687716,-0.687716,-0.687716,-0.687716 +-0.689716,-0.689716,-0.689716,-0.689716,-0.689716,-0.689716 +-0.691716,-0.691716,-0.691716,-0.691716,-0.691716,-0.691716 +-0.693716,-0.693716,-0.693716,-0.693716,-0.693716,-0.693716 +-0.695716,-0.695716,-0.695716,-0.695716,-0.695716,-0.695716 +-0.697716,-0.697716,-0.697716,-0.697716,-0.697716,-0.697716 +-0.699716,-0.699716,-0.699716,-0.699716,-0.699716,-0.699716 +-0.701716,-0.701716,-0.701716,-0.701716,-0.701716,-0.701716 +-0.703716,-0.703716,-0.703716,-0.703716,-0.703716,-0.703716 +-0.705716,-0.705716,-0.705716,-0.705716,-0.705716,-0.705716 +-0.707716,-0.707716,-0.707716,-0.707716,-0.707716,-0.707716 +-0.709716,-0.709716,-0.709716,-0.709716,-0.709716,-0.709716 +-0.711716,-0.711716,-0.711716,-0.711716,-0.711716,-0.711716 +-0.713716,-0.713716,-0.713716,-0.713716,-0.713716,-0.713716 +-0.715716,-0.715716,-0.715716,-0.715716,-0.715716,-0.715716 +-0.717716,-0.717716,-0.717716,-0.717716,-0.717716,-0.717716 +-0.719716,-0.719716,-0.719716,-0.719716,-0.719716,-0.719716 +-0.721716,-0.721716,-0.721716,-0.721716,-0.721716,-0.721716 +-0.723716,-0.723716,-0.723716,-0.723716,-0.723716,-0.723716 +-0.725716,-0.725716,-0.725716,-0.725716,-0.725716,-0.725716 +-0.727716,-0.727716,-0.727716,-0.727716,-0.727716,-0.727716 +-0.729716,-0.729716,-0.729716,-0.729716,-0.729716,-0.729716 +-0.731716,-0.731716,-0.731716,-0.731716,-0.731716,-0.731716 +-0.733716,-0.733716,-0.733716,-0.733716,-0.733716,-0.733716 +-0.735716,-0.735716,-0.735716,-0.735716,-0.735716,-0.735716 +-0.737716,-0.737716,-0.737716,-0.737716,-0.737716,-0.737716 +-0.739716,-0.739716,-0.739716,-0.739716,-0.739716,-0.739716 +-0.741716,-0.741716,-0.741716,-0.741716,-0.741716,-0.741716 +-0.743716,-0.743716,-0.743716,-0.743716,-0.743716,-0.743716 +-0.745716,-0.745716,-0.745716,-0.745716,-0.745716,-0.745716 +-0.747716,-0.747716,-0.747716,-0.747716,-0.747716,-0.747716 +-0.749716,-0.749716,-0.749716,-0.749716,-0.749716,-0.749716 +-0.751716,-0.751716,-0.751716,-0.751716,-0.751716,-0.751716 +-0.753716,-0.753716,-0.753716,-0.753716,-0.753716,-0.753716 +-0.755716,-0.755716,-0.755716,-0.755716,-0.755716,-0.755716 +-0.757716,-0.757716,-0.757716,-0.757716,-0.757716,-0.757716 +-0.759716,-0.759716,-0.759716,-0.759716,-0.759716,-0.759716 +-0.761716,-0.761716,-0.761716,-0.761716,-0.761716,-0.761716 +-0.763716,-0.763716,-0.763716,-0.763716,-0.763716,-0.763716 +-0.765716,-0.765716,-0.765716,-0.765716,-0.765716,-0.765716 +-0.767716,-0.767716,-0.767716,-0.767716,-0.767716,-0.767716 +-0.769716,-0.769716,-0.769716,-0.769716,-0.769716,-0.769716 +-0.771716,-0.771716,-0.771716,-0.771716,-0.771716,-0.771716 +-0.773716,-0.773716,-0.773716,-0.773716,-0.773716,-0.773716 +-0.775716,-0.775716,-0.775716,-0.775716,-0.775716,-0.775716 +-0.777716,-0.777716,-0.777716,-0.777716,-0.777716,-0.777716 +-0.779716,-0.779716,-0.779716,-0.779716,-0.779716,-0.779716 +-0.781716,-0.781716,-0.781716,-0.781716,-0.781716,-0.781716 +-0.783716,-0.783716,-0.783716,-0.783716,-0.783716,-0.783716 +-0.785716,-0.785716,-0.785716,-0.785716,-0.785716,-0.785716 +-0.787716,-0.787716,-0.787716,-0.787716,-0.787716,-0.787716 +-0.789716,-0.789716,-0.789716,-0.789716,-0.789716,-0.789716 +-0.791716,-0.791716,-0.791716,-0.791716,-0.791716,-0.791716 +-0.793716,-0.793716,-0.793716,-0.793716,-0.793716,-0.793716 +-0.795716,-0.795716,-0.795716,-0.795716,-0.795716,-0.795716 +-0.797716,-0.797716,-0.797716,-0.797716,-0.797716,-0.797716 +-0.799716,-0.799716,-0.799716,-0.799716,-0.799716,-0.799716 +-0.801716,-0.801716,-0.801716,-0.801716,-0.801716,-0.801716 +-0.803716,-0.803716,-0.803716,-0.803716,-0.803716,-0.803716 +-0.805716,-0.805716,-0.805716,-0.805716,-0.805716,-0.805716 +-0.807716,-0.807716,-0.807716,-0.807716,-0.807716,-0.807716 +-0.809716,-0.809716,-0.809716,-0.809716,-0.809716,-0.809716 +-0.811716,-0.811716,-0.811716,-0.811716,-0.811716,-0.811716 +-0.813716,-0.813716,-0.813716,-0.813716,-0.813716,-0.813716 +-0.815716,-0.815716,-0.815716,-0.815716,-0.815716,-0.815716 +-0.817716,-0.817716,-0.817716,-0.817716,-0.817716,-0.817716 +-0.819716,-0.819716,-0.819716,-0.819716,-0.819716,-0.819716 +-0.821716,-0.821716,-0.821716,-0.821716,-0.821716,-0.821716 +-0.823716,-0.823716,-0.823716,-0.823716,-0.823716,-0.823716 +-0.825716,-0.825716,-0.825716,-0.825716,-0.825716,-0.825716 +-0.827716,-0.827716,-0.827716,-0.827716,-0.827716,-0.827716 +-0.829716,-0.829716,-0.829716,-0.829716,-0.829716,-0.829716 +-0.831716,-0.831716,-0.831716,-0.831716,-0.831716,-0.831716 +-0.833716,-0.833716,-0.833716,-0.833716,-0.833716,-0.833716 +-0.835716,-0.835716,-0.835716,-0.835716,-0.835716,-0.835716 +-0.837716,-0.837716,-0.837716,-0.837716,-0.837716,-0.837716 +-0.839716,-0.839716,-0.839716,-0.839716,-0.839716,-0.839716 +-0.841716,-0.841716,-0.841716,-0.841716,-0.841716,-0.841716 +-0.843716,-0.843716,-0.843716,-0.843716,-0.843716,-0.843716 +-0.845716,-0.845716,-0.845716,-0.845716,-0.845716,-0.845716 +-0.847716,-0.847716,-0.847716,-0.847716,-0.847716,-0.847716 +-0.849716,-0.849716,-0.849716,-0.849716,-0.849716,-0.849716 +-0.851716,-0.851716,-0.851716,-0.851716,-0.851716,-0.851716 +-0.853716,-0.853716,-0.853716,-0.853716,-0.853716,-0.853716 +-0.855716,-0.855716,-0.855716,-0.855716,-0.855716,-0.855716 +-0.857716,-0.857716,-0.857716,-0.857716,-0.857716,-0.857716 +-0.859716,-0.859716,-0.859716,-0.859716,-0.859716,-0.859716 +-0.861716,-0.861716,-0.861716,-0.861716,-0.861716,-0.861716 +-0.863716,-0.863716,-0.863716,-0.863716,-0.863716,-0.863716 +-0.865716,-0.865716,-0.865716,-0.865716,-0.865716,-0.865716 +-0.867716,-0.867716,-0.867716,-0.867716,-0.867716,-0.867716 +-0.869716,-0.869716,-0.869716,-0.869716,-0.869716,-0.869716 +-0.871716,-0.871716,-0.871716,-0.871716,-0.871716,-0.871716 +-0.873716,-0.873716,-0.873716,-0.873716,-0.873716,-0.873716 +-0.875716,-0.875716,-0.875716,-0.875716,-0.875716,-0.875716 +-0.877716,-0.877716,-0.877716,-0.877716,-0.877716,-0.877716 +-0.879716,-0.879716,-0.879716,-0.879716,-0.879716,-0.879716 +-0.881716,-0.881716,-0.881716,-0.881716,-0.881716,-0.881716 +-0.883716,-0.883716,-0.883716,-0.883716,-0.883716,-0.883716 +-0.885716,-0.885716,-0.885716,-0.885716,-0.885716,-0.885716 +-0.887716,-0.887716,-0.887716,-0.887716,-0.887716,-0.887716 +-0.889716,-0.889716,-0.889716,-0.889716,-0.889716,-0.889716 +-0.891716,-0.891716,-0.891716,-0.891716,-0.891716,-0.891716 +-0.893716,-0.893716,-0.893716,-0.893716,-0.893716,-0.893716 +-0.895716,-0.895716,-0.895716,-0.895716,-0.895716,-0.895716 +-0.897716,-0.897716,-0.897716,-0.897716,-0.897716,-0.897716 +-0.899716,-0.899716,-0.899716,-0.899716,-0.899716,-0.899716 +-0.901716,-0.901716,-0.901716,-0.901716,-0.901716,-0.901716 +-0.903716,-0.903716,-0.903716,-0.903716,-0.903716,-0.903716 +-0.905716,-0.905716,-0.905716,-0.905716,-0.905716,-0.905716 +-0.907716,-0.907716,-0.907716,-0.907716,-0.907716,-0.907716 +-0.909716,-0.909716,-0.909716,-0.909716,-0.909716,-0.909716 +-0.911716,-0.911716,-0.911716,-0.911716,-0.911716,-0.911716 +-0.913716,-0.913716,-0.913716,-0.913716,-0.913716,-0.913716 +-0.915716,-0.915716,-0.915716,-0.915716,-0.915716,-0.915716 +-0.917716,-0.917716,-0.917716,-0.917716,-0.917716,-0.917716 +-0.919716,-0.919716,-0.919716,-0.919716,-0.919716,-0.919716 +-0.921716,-0.921716,-0.921716,-0.921716,-0.921716,-0.921716 +-0.923716,-0.923716,-0.923716,-0.923716,-0.923716,-0.923716 +-0.925716,-0.925716,-0.925716,-0.925716,-0.925716,-0.925716 +-0.927716,-0.927716,-0.927716,-0.927716,-0.927716,-0.927716 +-0.929716,-0.929716,-0.929716,-0.929716,-0.929716,-0.929716 +-0.931716,-0.931716,-0.931716,-0.931716,-0.931716,-0.931716 +-0.933716,-0.933716,-0.933716,-0.933716,-0.933716,-0.933716 +-0.935716,-0.935716,-0.935716,-0.935716,-0.935716,-0.935716 +-0.937716,-0.937716,-0.937716,-0.937716,-0.937716,-0.937716 +-0.939716,-0.939716,-0.939716,-0.939716,-0.939716,-0.939716 +-0.941716,-0.941716,-0.941716,-0.941716,-0.941716,-0.941716 +-0.943716,-0.943716,-0.943716,-0.943716,-0.943716,-0.943716 +-0.945716,-0.945716,-0.945716,-0.945716,-0.945716,-0.945716 +-0.947716,-0.947716,-0.947716,-0.947716,-0.947716,-0.947716 +-0.949716,-0.949716,-0.949716,-0.949716,-0.949716,-0.949716 +-0.951716,-0.951716,-0.951716,-0.951716,-0.951716,-0.951716 +-0.953716,-0.953716,-0.953716,-0.953716,-0.953716,-0.953716 +-0.955716,-0.955716,-0.955716,-0.955716,-0.955716,-0.955716 +-0.957716,-0.957716,-0.957716,-0.957716,-0.957716,-0.957716 +-0.959716,-0.959716,-0.959716,-0.959716,-0.959716,-0.959716 +-0.961716,-0.961716,-0.961716,-0.961716,-0.961716,-0.961716 +-0.963716,-0.963716,-0.963716,-0.963716,-0.963716,-0.963716 +-0.965716,-0.965716,-0.965716,-0.965716,-0.965716,-0.965716 +-0.967716,-0.967716,-0.967716,-0.967716,-0.967716,-0.967716 +-0.969716,-0.969716,-0.969716,-0.969716,-0.969716,-0.969716 +-0.971716,-0.971716,-0.971716,-0.971716,-0.971716,-0.971716 +-0.973716,-0.973716,-0.973716,-0.973716,-0.973716,-0.973716 +-0.975716,-0.975716,-0.975716,-0.975716,-0.975716,-0.975716 +-0.977716,-0.977716,-0.977716,-0.977716,-0.977716,-0.977716 +-0.979716,-0.979716,-0.979716,-0.979716,-0.979716,-0.979716 +-0.981716,-0.981716,-0.981716,-0.981716,-0.981716,-0.981716 +-0.983716,-0.983716,-0.983716,-0.983716,-0.983716,-0.983716 +-0.985716,-0.985716,-0.985716,-0.985716,-0.985716,-0.985716 +-0.987716,-0.987716,-0.987716,-0.987716,-0.987716,-0.987716 +-0.989716,-0.989716,-0.989716,-0.989716,-0.989716,-0.989716 +-0.991716,-0.991716,-0.991716,-0.991716,-0.991716,-0.991716 +-0.993716,-0.993716,-0.993716,-0.993716,-0.993716,-0.993716 +-0.995716,-0.995716,-0.995716,-0.995716,-0.995716,-0.995716 +-0.997716,-0.997716,-0.997716,-0.997716,-0.997716,-0.997716 +-0.999716,-0.999716,-0.999716,-0.999716,-0.999716,-0.999716 +-1.001716,-1.001716,-1.001716,-1.001716,-1.001716,-1.001716 +-1.003716,-1.003716,-1.003716,-1.003716,-1.003716,-1.003716 +-1.005716,-1.005716,-1.005716,-1.005716,-1.005716,-1.005716 +-1.007716,-1.007716,-1.007716,-1.007716,-1.007716,-1.007716 +-1.009716,-1.009716,-1.009716,-1.009716,-1.009716,-1.009716 +-1.011716,-1.011716,-1.011716,-1.011716,-1.011716,-1.011716 +-1.013716,-1.013716,-1.013716,-1.013716,-1.013716,-1.013716 +-1.015716,-1.015716,-1.015716,-1.015716,-1.015716,-1.015716 +-1.017716,-1.017716,-1.017716,-1.017716,-1.017716,-1.017716 +-1.019716,-1.019716,-1.019716,-1.019716,-1.019716,-1.019716 +-1.021716,-1.021716,-1.021716,-1.021716,-1.021716,-1.021716 +-1.023716,-1.023716,-1.023716,-1.023716,-1.023716,-1.023716 +-1.025716,-1.025716,-1.025716,-1.025716,-1.025716,-1.025716 +-1.027716,-1.027716,-1.027716,-1.027716,-1.027716,-1.027716 +-1.029716,-1.029716,-1.029716,-1.029716,-1.029716,-1.029716 +-1.031716,-1.031716,-1.031716,-1.031716,-1.031716,-1.031716 +-1.033716,-1.033716,-1.033716,-1.033716,-1.033716,-1.033716 +-1.035716,-1.035716,-1.035716,-1.035716,-1.035716,-1.035716 +-1.037716,-1.037716,-1.037716,-1.037716,-1.037716,-1.037716 +-1.039716,-1.039716,-1.039716,-1.039716,-1.039716,-1.039716 +-1.041716,-1.041716,-1.041716,-1.041716,-1.041716,-1.041716 +-1.043716,-1.043716,-1.043716,-1.043716,-1.043716,-1.043716 +-1.045716,-1.045716,-1.045716,-1.045716,-1.045716,-1.045716 +-1.047716,-1.047716,-1.047716,-1.047716,-1.047716,-1.047716 +-1.049716,-1.049716,-1.049716,-1.049716,-1.049716,-1.049716 +-1.051716,-1.051716,-1.051716,-1.051716,-1.051716,-1.051716 +-1.053716,-1.053716,-1.053716,-1.053716,-1.053716,-1.053716 +-1.055716,-1.055716,-1.055716,-1.055716,-1.055716,-1.055716 +-1.057716,-1.057716,-1.057716,-1.057716,-1.057716,-1.057716 +-1.059716,-1.059716,-1.059716,-1.059716,-1.059716,-1.059716 +-1.061716,-1.061716,-1.061716,-1.061716,-1.061716,-1.061716 +-1.063716,-1.063716,-1.063716,-1.063716,-1.063716,-1.063716 +-1.065716,-1.065716,-1.065716,-1.065716,-1.065716,-1.065716 +-1.067716,-1.067716,-1.067716,-1.067716,-1.067716,-1.067716 +-1.069716,-1.069716,-1.069716,-1.069716,-1.069716,-1.069716 +-1.071716,-1.071716,-1.071716,-1.071716,-1.071716,-1.071716 +-1.073716,-1.073716,-1.073716,-1.073716,-1.073716,-1.073716 +-1.075716,-1.075716,-1.075716,-1.075716,-1.075716,-1.075716 +-1.077716,-1.077716,-1.077716,-1.077716,-1.077716,-1.077716 +-1.079716,-1.079716,-1.079716,-1.079716,-1.079716,-1.079716 +-1.081716,-1.081716,-1.081716,-1.081716,-1.081716,-1.081716 +-1.083716,-1.083716,-1.083716,-1.083716,-1.083716,-1.083716 +-1.085716,-1.085716,-1.085716,-1.085716,-1.085716,-1.085716 +-1.087716,-1.087716,-1.087716,-1.087716,-1.087716,-1.087716 +-1.089716,-1.089716,-1.089716,-1.089716,-1.089716,-1.089716 +-1.091716,-1.091716,-1.091716,-1.091716,-1.091716,-1.091716 +-1.093716,-1.093716,-1.093716,-1.093716,-1.093716,-1.093716 +-1.095716,-1.095716,-1.095716,-1.095716,-1.095716,-1.095716 +-1.097716,-1.097716,-1.097716,-1.097716,-1.097716,-1.097716 +-1.099716,-1.099716,-1.099716,-1.099716,-1.099716,-1.099716 +-1.101716,-1.101716,-1.101716,-1.101716,-1.101716,-1.101716 +-1.103716,-1.103716,-1.103716,-1.103716,-1.103716,-1.103716 +-1.105716,-1.105716,-1.105716,-1.105716,-1.105716,-1.105716 +-1.107716,-1.107716,-1.107716,-1.107716,-1.107716,-1.107716 +-1.109716,-1.109716,-1.109716,-1.109716,-1.109716,-1.109716 +-1.111716,-1.111716,-1.111716,-1.111716,-1.111716,-1.111716 +-1.113716,-1.113716,-1.113716,-1.113716,-1.113716,-1.113716 +-1.115716,-1.115716,-1.115716,-1.115716,-1.115716,-1.115716 +-1.117716,-1.117716,-1.117716,-1.117716,-1.117716,-1.117716 +-1.119716,-1.119716,-1.119716,-1.119716,-1.119716,-1.119716 +-1.121716,-1.121716,-1.121716,-1.121716,-1.121716,-1.121716 +-1.123716,-1.123716,-1.123716,-1.123716,-1.123716,-1.123716 +-1.125716,-1.125716,-1.125716,-1.125716,-1.125716,-1.125716 +-1.127716,-1.127716,-1.127716,-1.127716,-1.127716,-1.127716 +-1.129716,-1.129716,-1.129716,-1.129716,-1.129716,-1.129716 +-1.131716,-1.131716,-1.131716,-1.131716,-1.131716,-1.131716 +-1.133716,-1.133716,-1.133716,-1.133716,-1.133716,-1.133716 +-1.135716,-1.135716,-1.135716,-1.135716,-1.135716,-1.135716 +-1.137716,-1.137716,-1.137716,-1.137716,-1.137716,-1.137716 +-1.139716,-1.139716,-1.139716,-1.139716,-1.139716,-1.139716 +-1.141716,-1.141716,-1.141716,-1.141716,-1.141716,-1.141716 +-1.143716,-1.143716,-1.143716,-1.143716,-1.143716,-1.143716 +-1.145716,-1.145716,-1.145716,-1.145716,-1.145716,-1.145716 +-1.147716,-1.147716,-1.147716,-1.147716,-1.147716,-1.147716 +-1.149716,-1.149716,-1.149716,-1.149716,-1.149716,-1.149716 +-1.151716,-1.151716,-1.151716,-1.151716,-1.151716,-1.151716 +-1.153716,-1.153716,-1.153716,-1.153716,-1.153716,-1.153716 +-1.155716,-1.155716,-1.155716,-1.155716,-1.155716,-1.155716 +-1.157716,-1.157716,-1.157716,-1.157716,-1.157716,-1.157716 +-1.159716,-1.159716,-1.159716,-1.159716,-1.159716,-1.159716 +-1.161716,-1.161716,-1.161716,-1.161716,-1.161716,-1.161716 +-1.163716,-1.163716,-1.163716,-1.163716,-1.163716,-1.163716 +-1.165716,-1.165716,-1.165716,-1.165716,-1.165716,-1.165716 +-1.167716,-1.167716,-1.167716,-1.167716,-1.167716,-1.167716 +-1.169716,-1.169716,-1.169716,-1.169716,-1.169716,-1.169716 +-1.171716,-1.171716,-1.171716,-1.171716,-1.171716,-1.171716 +-1.173716,-1.173716,-1.173716,-1.173716,-1.173716,-1.173716 +-1.175716,-1.175716,-1.175716,-1.175716,-1.175716,-1.175716 +-1.177716,-1.177716,-1.177716,-1.177716,-1.177716,-1.177716 +-1.179716,-1.179716,-1.179716,-1.179716,-1.179716,-1.179716 +-1.181716,-1.181716,-1.181716,-1.181716,-1.181716,-1.181716 +-1.183716,-1.183716,-1.183716,-1.183716,-1.183716,-1.183716 +-1.185716,-1.185716,-1.185716,-1.185716,-1.185716,-1.185716 +-1.187716,-1.187716,-1.187716,-1.187716,-1.187716,-1.187716 +-1.189716,-1.189716,-1.189716,-1.189716,-1.189716,-1.189716 +-1.191716,-1.191716,-1.191716,-1.191716,-1.191716,-1.191716 +-1.193716,-1.193716,-1.193716,-1.193716,-1.193716,-1.193716 +-1.195716,-1.195716,-1.195716,-1.195716,-1.195716,-1.195716 +-1.197716,-1.197716,-1.197716,-1.197716,-1.197716,-1.197716 +-1.199716,-1.199716,-1.199716,-1.199716,-1.199716,-1.199716 +-1.201716,-1.201716,-1.201716,-1.201716,-1.201716,-1.201716 +-1.203716,-1.203716,-1.203716,-1.203716,-1.203716,-1.203716 +-1.205716,-1.205716,-1.205716,-1.205716,-1.205716,-1.205716 +-1.207716,-1.207716,-1.207716,-1.207716,-1.207716,-1.207716 +-1.209716,-1.209716,-1.209716,-1.209716,-1.209716,-1.209716 +-1.211716,-1.211716,-1.211716,-1.211716,-1.211716,-1.211716 +-1.213716,-1.213716,-1.213716,-1.213716,-1.213716,-1.213716 +-1.215716,-1.215716,-1.215716,-1.215716,-1.215716,-1.215716 +-1.217716,-1.217716,-1.217716,-1.217716,-1.217716,-1.217716 +-1.219716,-1.219716,-1.219716,-1.219716,-1.219716,-1.219716 +-1.221716,-1.221716,-1.221716,-1.221716,-1.221716,-1.221716 +-1.223716,-1.223716,-1.223716,-1.223716,-1.223716,-1.223716 +-1.225716,-1.225716,-1.225716,-1.225716,-1.225716,-1.225716 +-1.227716,-1.227716,-1.227716,-1.227716,-1.227716,-1.227716 +-1.229716,-1.229716,-1.229716,-1.229716,-1.229716,-1.229716 +-1.231716,-1.231716,-1.231716,-1.231716,-1.231716,-1.231716 +-1.233716,-1.233716,-1.233716,-1.233716,-1.233716,-1.233716 +-1.235716,-1.235716,-1.235716,-1.235716,-1.235716,-1.235716 +-1.237716,-1.237716,-1.237716,-1.237716,-1.237716,-1.237716 +-1.239716,-1.239716,-1.239716,-1.239716,-1.239716,-1.239716 +-1.241716,-1.241716,-1.241716,-1.241716,-1.241716,-1.241716 +-1.243716,-1.243716,-1.243716,-1.243716,-1.243716,-1.243716 +-1.245716,-1.245716,-1.245716,-1.245716,-1.245716,-1.245716 +-1.247716,-1.247716,-1.247716,-1.247716,-1.247716,-1.247716 +-1.249716,-1.249716,-1.249716,-1.249716,-1.249716,-1.249716 +-1.251716,-1.251716,-1.251716,-1.251716,-1.251716,-1.251716 +-1.253716,-1.253716,-1.253716,-1.253716,-1.253716,-1.253716 +-1.255716,-1.255716,-1.255716,-1.255716,-1.255716,-1.255716 +-1.257716,-1.257716,-1.257716,-1.257716,-1.257716,-1.257716 +-1.259716,-1.259716,-1.259716,-1.259716,-1.259716,-1.259716 +-1.261716,-1.261716,-1.261716,-1.261716,-1.261716,-1.261716 +-1.263716,-1.263716,-1.263716,-1.263716,-1.263716,-1.263716 +-1.265716,-1.265716,-1.265716,-1.265716,-1.265716,-1.265716 +-1.267716,-1.267716,-1.267716,-1.267716,-1.267716,-1.267716 +-1.269716,-1.269716,-1.269716,-1.269716,-1.269716,-1.269716 +-1.271716,-1.271716,-1.271716,-1.271716,-1.271716,-1.271716 +-1.273716,-1.273716,-1.273716,-1.273716,-1.273716,-1.273716 +-1.275716,-1.275716,-1.275716,-1.275716,-1.275716,-1.275716 +-1.277716,-1.277716,-1.277716,-1.277716,-1.277716,-1.277716 +-1.279716,-1.279716,-1.279716,-1.279716,-1.279716,-1.279716 +-1.281716,-1.281716,-1.281716,-1.281716,-1.281716,-1.281716 +-1.283716,-1.283716,-1.283716,-1.283716,-1.283716,-1.283716 +-1.285716,-1.285716,-1.285716,-1.285716,-1.285716,-1.285716 +-1.287716,-1.287716,-1.287716,-1.287716,-1.287716,-1.287716 +-1.289716,-1.289716,-1.289716,-1.289716,-1.289716,-1.289716 +-1.291716,-1.291716,-1.291716,-1.291716,-1.291716,-1.291716 +-1.293716,-1.293716,-1.293716,-1.293716,-1.293716,-1.293716 +-1.295716,-1.295716,-1.295716,-1.295716,-1.295716,-1.295716 +-1.297716,-1.297716,-1.297716,-1.297716,-1.297716,-1.297716 +-1.299716,-1.299716,-1.299716,-1.299716,-1.299716,-1.299716 +-1.301716,-1.301716,-1.301716,-1.301716,-1.301716,-1.301716 +-1.303716,-1.303716,-1.303716,-1.303716,-1.303716,-1.303716 +-1.305716,-1.305716,-1.305716,-1.305716,-1.305716,-1.305716 +-1.307716,-1.307716,-1.307716,-1.307716,-1.307716,-1.307716 +-1.309716,-1.309716,-1.309716,-1.309716,-1.309716,-1.309716 +-1.311716,-1.311716,-1.311716,-1.311716,-1.311716,-1.311716 +-1.313716,-1.313716,-1.313716,-1.313716,-1.313716,-1.313716 +-1.315716,-1.315716,-1.315716,-1.315716,-1.315716,-1.315716 +-1.317716,-1.317716,-1.317716,-1.317716,-1.317716,-1.317716 +-1.319716,-1.319716,-1.319716,-1.319716,-1.319716,-1.319716 +-1.321716,-1.321716,-1.321716,-1.321716,-1.321716,-1.321716 +-1.323716,-1.323716,-1.323716,-1.323716,-1.323716,-1.323716 +-1.325716,-1.325716,-1.325716,-1.325716,-1.325716,-1.325716 +-1.327716,-1.327716,-1.327716,-1.327716,-1.327716,-1.327716 +-1.329716,-1.329716,-1.329716,-1.329716,-1.329716,-1.329716 +-1.331716,-1.331716,-1.331716,-1.331716,-1.331716,-1.331716 +-1.333716,-1.333716,-1.333716,-1.333716,-1.333716,-1.333716 +-1.335716,-1.335716,-1.335716,-1.335716,-1.335716,-1.335716 +-1.337716,-1.337716,-1.337716,-1.337716,-1.337716,-1.337716 +-1.339716,-1.339716,-1.339716,-1.339716,-1.339716,-1.339716 +-1.341716,-1.341716,-1.341716,-1.341716,-1.341716,-1.341716 +-1.343716,-1.343716,-1.343716,-1.343716,-1.343716,-1.343716 +-1.345716,-1.345716,-1.345716,-1.345716,-1.345716,-1.345716 +-1.347716,-1.347716,-1.347716,-1.347716,-1.347716,-1.347716 +-1.349716,-1.349716,-1.349716,-1.349716,-1.349716,-1.349716 +-1.351716,-1.351716,-1.351716,-1.351716,-1.351716,-1.351716 +-1.353716,-1.353716,-1.353716,-1.353716,-1.353716,-1.353716 +-1.355716,-1.355716,-1.355716,-1.355716,-1.355716,-1.355716 +-1.357716,-1.357716,-1.357716,-1.357716,-1.357716,-1.357716 +-1.359716,-1.359716,-1.359716,-1.359716,-1.359716,-1.359716 +-1.361716,-1.361716,-1.361716,-1.361716,-1.361716,-1.361716 +-1.363716,-1.363716,-1.363716,-1.363716,-1.363716,-1.363716 +-1.365716,-1.365716,-1.365716,-1.365716,-1.365716,-1.365716 +-1.367716,-1.367716,-1.367716,-1.367716,-1.367716,-1.367716 +-1.369716,-1.369716,-1.369716,-1.369716,-1.369716,-1.369716 +-1.371716,-1.371716,-1.371716,-1.371716,-1.371716,-1.371716 +-1.373716,-1.373716,-1.373716,-1.373716,-1.373716,-1.373716 +-1.375716,-1.375716,-1.375716,-1.375716,-1.375716,-1.375716 +-1.377716,-1.377716,-1.377716,-1.377716,-1.377716,-1.377716 +-1.379716,-1.379716,-1.379716,-1.379716,-1.379716,-1.379716 +-1.381716,-1.381716,-1.381716,-1.381716,-1.381716,-1.381716 +-1.383716,-1.383716,-1.383716,-1.383716,-1.383716,-1.383716 +-1.385716,-1.385716,-1.385716,-1.385716,-1.385716,-1.385716 +-1.387716,-1.387716,-1.387716,-1.387716,-1.387716,-1.387716 +-1.389716,-1.389716,-1.389716,-1.389716,-1.389716,-1.389716 +-1.391716,-1.391716,-1.391716,-1.391716,-1.391716,-1.391716 +-1.393716,-1.393716,-1.393716,-1.393716,-1.393716,-1.393716 +-1.395716,-1.395716,-1.395716,-1.395716,-1.395716,-1.395716 +-1.397716,-1.397716,-1.397716,-1.397716,-1.397716,-1.397716 +-1.399716,-1.399716,-1.399716,-1.399716,-1.399716,-1.399716 +-1.401716,-1.401716,-1.401716,-1.401716,-1.401716,-1.401716 +-1.403716,-1.403716,-1.403716,-1.403716,-1.403716,-1.403716 +-1.405716,-1.405716,-1.405716,-1.405716,-1.405716,-1.405716 +-1.407716,-1.407716,-1.407716,-1.407716,-1.407716,-1.407716 +-1.409716,-1.409716,-1.409716,-1.409716,-1.409716,-1.409716 +-1.411716,-1.411716,-1.411716,-1.411716,-1.411716,-1.411716 +-1.413716,-1.413716,-1.413716,-1.413716,-1.413716,-1.413716 +-1.415716,-1.415716,-1.415716,-1.415716,-1.415716,-1.415716 +-1.417716,-1.417716,-1.417716,-1.417716,-1.417716,-1.417716 +-1.419716,-1.419716,-1.419716,-1.419716,-1.419716,-1.419716 +-1.421716,-1.421716,-1.421716,-1.421716,-1.421716,-1.421716 +-1.423716,-1.423716,-1.423716,-1.423716,-1.423716,-1.423716 +-1.425716,-1.425716,-1.425716,-1.425716,-1.425716,-1.425716 +-1.427716,-1.427716,-1.427716,-1.427716,-1.427716,-1.427716 +-1.429716,-1.429716,-1.429716,-1.429716,-1.429716,-1.429716 +-1.431716,-1.431716,-1.431716,-1.431716,-1.431716,-1.431716 +-1.433716,-1.433716,-1.433716,-1.433716,-1.433716,-1.433716 +-1.435716,-1.435716,-1.435716,-1.435716,-1.435716,-1.435716 +-1.437716,-1.437716,-1.437716,-1.437716,-1.437716,-1.437716 +-1.439716,-1.439716,-1.439716,-1.439716,-1.439716,-1.439716 +-1.441716,-1.441716,-1.441716,-1.441716,-1.441716,-1.441716 +-1.443716,-1.443716,-1.443716,-1.443716,-1.443716,-1.443716 +-1.445716,-1.445716,-1.445716,-1.445716,-1.445716,-1.445716 +-1.447716,-1.447716,-1.447716,-1.447716,-1.447716,-1.447716 +-1.449716,-1.449716,-1.449716,-1.449716,-1.449716,-1.449716 +-1.451716,-1.451716,-1.451716,-1.451716,-1.451716,-1.451716 +-1.453716,-1.453716,-1.453716,-1.453716,-1.453716,-1.453716 +-1.455716,-1.455716,-1.455716,-1.455716,-1.455716,-1.455716 +-1.457716,-1.457716,-1.457716,-1.457716,-1.457716,-1.457716 +-1.459716,-1.459716,-1.459716,-1.459716,-1.459716,-1.459716 +-1.461716,-1.461716,-1.461716,-1.461716,-1.461716,-1.461716 +-1.463716,-1.463716,-1.463716,-1.463716,-1.463716,-1.463716 +-1.465716,-1.465716,-1.465716,-1.465716,-1.465716,-1.465716 +-1.467716,-1.467716,-1.467716,-1.467716,-1.467716,-1.467716 +-1.469716,-1.469716,-1.469716,-1.469716,-1.469716,-1.469716 +-1.471716,-1.471716,-1.471716,-1.471716,-1.471716,-1.471716 +-1.473716,-1.473716,-1.473716,-1.473716,-1.473716,-1.473716 +-1.475716,-1.475716,-1.475716,-1.475716,-1.475716,-1.475716 +-1.477716,-1.477716,-1.477716,-1.477716,-1.477716,-1.477716 +-1.479716,-1.479716,-1.479716,-1.479716,-1.479716,-1.479716 +-1.481716,-1.481716,-1.481716,-1.481716,-1.481716,-1.481716 +-1.483716,-1.483716,-1.483716,-1.483716,-1.483716,-1.483716 +-1.485716,-1.485716,-1.485716,-1.485716,-1.485716,-1.485716 +-1.487716,-1.487716,-1.487716,-1.487716,-1.487716,-1.487716 +-1.489716,-1.489716,-1.489716,-1.489716,-1.489716,-1.489716 +-1.491716,-1.491716,-1.491716,-1.491716,-1.491716,-1.491716 +-1.493716,-1.493716,-1.493716,-1.493716,-1.493716,-1.493716 +-1.495716,-1.495716,-1.495716,-1.495716,-1.495716,-1.495716 +-1.497716,-1.497716,-1.497716,-1.497716,-1.497716,-1.497716 +-1.499716,-1.499716,-1.499716,-1.499716,-1.499716,-1.499716 +-1.501716,-1.501716,-1.501716,-1.501716,-1.501716,-1.501716 +-1.503716,-1.503716,-1.503716,-1.503716,-1.503716,-1.503716 +-1.505716,-1.505716,-1.505716,-1.505716,-1.505716,-1.505716 +-1.507716,-1.507716,-1.507716,-1.507716,-1.507716,-1.507716 +-1.509716,-1.509716,-1.509716,-1.509716,-1.509716,-1.509716 +-1.511716,-1.511716,-1.511716,-1.511716,-1.511716,-1.511716 +-1.513716,-1.513716,-1.513716,-1.513716,-1.513716,-1.513716 +-1.515716,-1.515716,-1.515716,-1.515716,-1.515716,-1.515716 +-1.517716,-1.517716,-1.517716,-1.517716,-1.517716,-1.517716 +-1.519716,-1.519716,-1.519716,-1.519716,-1.519716,-1.519716 +-1.521716,-1.521716,-1.521716,-1.521716,-1.521716,-1.521716 +-1.523716,-1.523716,-1.523716,-1.523716,-1.523716,-1.523716 +-1.525716,-1.525716,-1.525716,-1.525716,-1.525716,-1.525716 +-1.527716,-1.527716,-1.527716,-1.527716,-1.527716,-1.527716 +-1.529716,-1.529716,-1.529716,-1.529716,-1.529716,-1.529716 +-1.531716,-1.531716,-1.531716,-1.531716,-1.531716,-1.531716 +-1.533716,-1.533716,-1.533716,-1.533716,-1.533716,-1.533716 +-1.535716,-1.535716,-1.535716,-1.535716,-1.535716,-1.535716 +-1.537716,-1.537716,-1.537716,-1.537716,-1.537716,-1.537716 +-1.539716,-1.539716,-1.539716,-1.539716,-1.539716,-1.539716 +-1.541716,-1.541716,-1.541716,-1.541716,-1.541716,-1.541716 +-1.543716,-1.543716,-1.543716,-1.543716,-1.543716,-1.543716 +-1.545716,-1.545716,-1.545716,-1.545716,-1.545716,-1.545716 +-1.547716,-1.547716,-1.547716,-1.547716,-1.547716,-1.547716 +-1.549716,-1.549716,-1.549716,-1.549716,-1.549716,-1.549716 +-1.551716,-1.551716,-1.551716,-1.551716,-1.551716,-1.551716 +-1.553716,-1.553716,-1.553716,-1.553716,-1.553716,-1.553716 +-1.555716,-1.555716,-1.555716,-1.555716,-1.555716,-1.555716 +-1.557716,-1.557716,-1.557716,-1.557716,-1.557716,-1.557716 +-1.559716,-1.559716,-1.559716,-1.559716,-1.559716,-1.559716 +-1.561716,-1.561716,-1.561716,-1.561716,-1.561716,-1.561716 +-1.563716,-1.563716,-1.563716,-1.563716,-1.563716,-1.563716 +-1.565716,-1.565716,-1.565716,-1.565716,-1.565716,-1.565716 +-1.567716,-1.567716,-1.567716,-1.567716,-1.567716,-1.567716 +-1.569716,-1.569716,-1.569716,-1.569716,-1.569716,-1.569716 +-1.571716,-1.571716,-1.571716,-1.571716,-1.571716,-1.571716 +-1.573716,-1.573716,-1.573716,-1.573716,-1.573716,-1.573716 +-1.575716,-1.575716,-1.575716,-1.575716,-1.575716,-1.575716 +-1.577716,-1.577716,-1.577716,-1.577716,-1.577716,-1.577716 +-1.579716,-1.579716,-1.579716,-1.579716,-1.579716,-1.579716 +-1.581716,-1.581716,-1.581716,-1.581716,-1.581716,-1.581716 +-1.583716,-1.583716,-1.583716,-1.583716,-1.583716,-1.583716 +-1.585716,-1.585716,-1.585716,-1.585716,-1.585716,-1.585716 +-1.587716,-1.587716,-1.587716,-1.587716,-1.587716,-1.587716 +-1.589716,-1.589716,-1.589716,-1.589716,-1.589716,-1.589716 +-1.591716,-1.591716,-1.591716,-1.591716,-1.591716,-1.591716 +-1.593716,-1.593716,-1.593716,-1.593716,-1.593716,-1.593716 +-1.595716,-1.595716,-1.595716,-1.595716,-1.595716,-1.595716 +-1.597716,-1.597716,-1.597716,-1.597716,-1.597716,-1.597716 +-1.599716,-1.599716,-1.599716,-1.599716,-1.599716,-1.599716 +-1.601716,-1.601716,-1.601716,-1.601716,-1.601716,-1.601716 +-1.603716,-1.603716,-1.603716,-1.603716,-1.603716,-1.603716 +-1.605716,-1.605716,-1.605716,-1.605716,-1.605716,-1.605716 +-1.607716,-1.607716,-1.607716,-1.607716,-1.607716,-1.607716 +-1.609716,-1.609716,-1.609716,-1.609716,-1.609716,-1.609716 +-1.611716,-1.611716,-1.611716,-1.611716,-1.611716,-1.611716 +-1.613716,-1.613716,-1.613716,-1.613716,-1.613716,-1.613716 +-1.615716,-1.615716,-1.615716,-1.615716,-1.615716,-1.615716 +-1.617716,-1.617716,-1.617716,-1.617716,-1.617716,-1.617716 +-1.619716,-1.619716,-1.619716,-1.619716,-1.619716,-1.619716 +-1.621716,-1.621716,-1.621716,-1.621716,-1.621716,-1.621716 +-1.623716,-1.623716,-1.623716,-1.623716,-1.623716,-1.623716 +-1.625716,-1.625716,-1.625716,-1.625716,-1.625716,-1.625716 +-1.627716,-1.627716,-1.627716,-1.627716,-1.627716,-1.627716 +-1.629716,-1.629716,-1.629716,-1.629716,-1.629716,-1.629716 +-1.631716,-1.631716,-1.631716,-1.631716,-1.631716,-1.631716 +-1.633716,-1.633716,-1.633716,-1.633716,-1.633716,-1.633716 +-1.635716,-1.635716,-1.635716,-1.635716,-1.635716,-1.635716 +-1.637716,-1.637716,-1.637716,-1.637716,-1.637716,-1.637716 +-1.639716,-1.639716,-1.639716,-1.639716,-1.639716,-1.639716 +-1.641716,-1.641716,-1.641716,-1.641716,-1.641716,-1.641716 +-1.643716,-1.643716,-1.643716,-1.643716,-1.643716,-1.643716 +-1.645716,-1.645716,-1.645716,-1.645716,-1.645716,-1.645716 +-1.647716,-1.647716,-1.647716,-1.647716,-1.647716,-1.647716 +-1.649716,-1.649716,-1.649716,-1.649716,-1.649716,-1.649716 +-1.651716,-1.651716,-1.651716,-1.651716,-1.651716,-1.651716 +-1.653716,-1.653716,-1.653716,-1.653716,-1.653716,-1.653716 +-1.655716,-1.655716,-1.655716,-1.655716,-1.655716,-1.655716 +-1.657716,-1.657716,-1.657716,-1.657716,-1.657716,-1.657716 +-1.659716,-1.659716,-1.659716,-1.659716,-1.659716,-1.659716 +-1.661716,-1.661716,-1.661716,-1.661716,-1.661716,-1.661716 +-1.663716,-1.663716,-1.663716,-1.663716,-1.663716,-1.663716 +-1.665716,-1.665716,-1.665716,-1.665716,-1.665716,-1.665716 +-1.667716,-1.667716,-1.667716,-1.667716,-1.667716,-1.667716 +-1.669716,-1.669716,-1.669716,-1.669716,-1.669716,-1.669716 +-1.671716,-1.671716,-1.671716,-1.671716,-1.671716,-1.671716 +-1.673716,-1.673716,-1.673716,-1.673716,-1.673716,-1.673716 +-1.675716,-1.675716,-1.675716,-1.675716,-1.675716,-1.675716 +-1.677716,-1.677716,-1.677716,-1.677716,-1.677716,-1.677716 +-1.679716,-1.679716,-1.679716,-1.679716,-1.679716,-1.679716 +-1.681716,-1.681716,-1.681716,-1.681716,-1.681716,-1.681716 +-1.683716,-1.683716,-1.683716,-1.683716,-1.683716,-1.683716 +-1.685716,-1.685716,-1.685716,-1.685716,-1.685716,-1.685716 +-1.687716,-1.687716,-1.687716,-1.687716,-1.687716,-1.687716 +-1.689716,-1.689716,-1.689716,-1.689716,-1.689716,-1.689716 +-1.691716,-1.691716,-1.691716,-1.691716,-1.691716,-1.691716 +-1.693716,-1.693716,-1.693716,-1.693716,-1.693716,-1.693716 +-1.695716,-1.695716,-1.695716,-1.695716,-1.695716,-1.695716 +-1.697716,-1.697716,-1.697716,-1.697716,-1.697716,-1.697716 +-1.699716,-1.699716,-1.699716,-1.699716,-1.699716,-1.699716 +-1.701716,-1.701716,-1.701716,-1.701716,-1.701716,-1.701716 +-1.703716,-1.703716,-1.703716,-1.703716,-1.703716,-1.703716 +-1.705716,-1.705716,-1.705716,-1.705716,-1.705716,-1.705716 +-1.707716,-1.707716,-1.707716,-1.707716,-1.707716,-1.707716 +-1.709716,-1.709716,-1.709716,-1.709716,-1.709716,-1.709716 +-1.711716,-1.711716,-1.711716,-1.711716,-1.711716,-1.711716 +-1.713716,-1.713716,-1.713716,-1.713716,-1.713716,-1.713716 +-1.715716,-1.715716,-1.715716,-1.715716,-1.715716,-1.715716 +-1.717716,-1.717716,-1.717716,-1.717716,-1.717716,-1.717716 +-1.719712,-1.719712,-1.719712,-1.719712,-1.719712,-1.719712 +-1.721694,-1.721694,-1.721694,-1.721694,-1.721694,-1.721694 +-1.723653,-1.723653,-1.723653,-1.723653,-1.723653,-1.723653 +-1.725579,-1.725579,-1.725579,-1.725579,-1.725579,-1.725579 +-1.727461,-1.727461,-1.727461,-1.727461,-1.727461,-1.727461 +-1.729289,-1.729289,-1.729289,-1.729289,-1.729289,-1.729289 +-1.731054,-1.731054,-1.731054,-1.731054,-1.731054,-1.731054 +-1.732745,-1.732745,-1.732745,-1.732745,-1.732745,-1.732745 +-1.734353,-1.734353,-1.734353,-1.734353,-1.734353,-1.734353 +-1.735868,-1.735868,-1.735868,-1.735868,-1.735868,-1.735868 +-1.737279,-1.737279,-1.737279,-1.737279,-1.737279,-1.737279 +-1.738576,-1.738576,-1.738576,-1.738576,-1.738576,-1.738576 +-1.73975,-1.73975,-1.73975,-1.73975,-1.73975,-1.73975 +-1.740791,-1.740791,-1.740791,-1.740791,-1.740791,-1.740791 +-1.741694,-1.741694,-1.741694,-1.741694,-1.741694,-1.741694 +-1.742467,-1.742467,-1.742467,-1.742467,-1.742467,-1.742467 +-1.743121,-1.743121,-1.743121,-1.743121,-1.743121,-1.743121 +-1.743666,-1.743666,-1.743666,-1.743666,-1.743666,-1.743666 +-1.744111,-1.744111,-1.744111,-1.744111,-1.744111,-1.744111 +-1.744468,-1.744468,-1.744468,-1.744468,-1.744468,-1.744468 +-1.744744,-1.744744,-1.744744,-1.744744,-1.744744,-1.744744 +-1.744952,-1.744952,-1.744952,-1.744952,-1.744952,-1.744952 +-1.7451,-1.7451,-1.7451,-1.7451,-1.7451,-1.7451 +-1.745199,-1.745199,-1.745199,-1.745199,-1.745199,-1.745199 +-1.745258,-1.745258,-1.745258,-1.745258,-1.745258,-1.745258 +-1.745288,-1.745288,-1.745288,-1.745288,-1.745288,-1.745288 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745287,-1.745287,-1.745287,-1.745287,-1.745287,-1.745287 +-1.745255,-1.745255,-1.745255,-1.745255,-1.745255,-1.745255 +-1.745193,-1.745193,-1.745193,-1.745193,-1.745193,-1.745193 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.74494,-1.74494,-1.74494,-1.74494,-1.74494,-1.74494 +-1.744728,-1.744728,-1.744728,-1.744728,-1.744728,-1.744728 +-1.744447,-1.744447,-1.744447,-1.744447,-1.744447,-1.744447 +-1.744085,-1.744085,-1.744085,-1.744085,-1.744085,-1.744085 +-1.743633,-1.743633,-1.743633,-1.743633,-1.743633,-1.743633 +-1.743082,-1.743082,-1.743082,-1.743082,-1.743082,-1.743082 +-1.74242,-1.74242,-1.74242,-1.74242,-1.74242,-1.74242 +-1.741638,-1.741638,-1.741638,-1.741638,-1.741638,-1.741638 +-1.740727,-1.740727,-1.740727,-1.740727,-1.740727,-1.740727 +-1.739677,-1.739677,-1.739677,-1.739677,-1.739677,-1.739677 +-1.738495,-1.738495,-1.738495,-1.738495,-1.738495,-1.738495 +-1.737189,-1.737189,-1.737189,-1.737189,-1.737189,-1.737189 +-1.735771,-1.735771,-1.735771,-1.735771,-1.735771,-1.735771 +-1.73425,-1.73425,-1.73425,-1.73425,-1.73425,-1.73425 +-1.732637,-1.732637,-1.732637,-1.732637,-1.732637,-1.732637 +-1.73094,-1.73094,-1.73094,-1.73094,-1.73094,-1.73094 +-1.729171,-1.729171,-1.729171,-1.729171,-1.729171,-1.729171 +-1.727338,-1.727338,-1.727338,-1.727338,-1.727338,-1.727338 +-1.725453,-1.725453,-1.725453,-1.725453,-1.725453,-1.725453 +-1.723525,-1.723525,-1.723525,-1.723525,-1.723525,-1.723525 +-1.721564,-1.721564,-1.721564,-1.721564,-1.721564,-1.721564 +-1.719581,-1.719581,-1.719581,-1.719581,-1.719581,-1.719581 +-1.717584,-1.717584,-1.717584,-1.717584,-1.717584,-1.717584 +-1.715584,-1.715584,-1.715584,-1.715584,-1.715584,-1.715584 +-1.713584,-1.713584,-1.713584,-1.713584,-1.713584,-1.713584 +-1.711584,-1.711584,-1.711584,-1.711584,-1.711584,-1.711584 +-1.709584,-1.709584,-1.709584,-1.709584,-1.709584,-1.709584 +-1.707584,-1.707584,-1.707584,-1.707584,-1.707584,-1.707584 +-1.705584,-1.705584,-1.705584,-1.705584,-1.705584,-1.705584 +-1.703584,-1.703584,-1.703584,-1.703584,-1.703584,-1.703584 +-1.701584,-1.701584,-1.701584,-1.701584,-1.701584,-1.701584 +-1.699584,-1.699584,-1.699584,-1.699584,-1.699584,-1.699584 +-1.697584,-1.697584,-1.697584,-1.697584,-1.697584,-1.697584 +-1.695584,-1.695584,-1.695584,-1.695584,-1.695584,-1.695584 +-1.693584,-1.693584,-1.693584,-1.693584,-1.693584,-1.693584 +-1.691584,-1.691584,-1.691584,-1.691584,-1.691584,-1.691584 +-1.689584,-1.689584,-1.689584,-1.689584,-1.689584,-1.689584 +-1.687584,-1.687584,-1.687584,-1.687584,-1.687584,-1.687584 +-1.685584,-1.685584,-1.685584,-1.685584,-1.685584,-1.685584 +-1.683584,-1.683584,-1.683584,-1.683584,-1.683584,-1.683584 +-1.681584,-1.681584,-1.681584,-1.681584,-1.681584,-1.681584 +-1.679584,-1.679584,-1.679584,-1.679584,-1.679584,-1.679584 +-1.677584,-1.677584,-1.677584,-1.677584,-1.677584,-1.677584 +-1.675584,-1.675584,-1.675584,-1.675584,-1.675584,-1.675584 +-1.673584,-1.673584,-1.673584,-1.673584,-1.673584,-1.673584 +-1.671584,-1.671584,-1.671584,-1.671584,-1.671584,-1.671584 +-1.669584,-1.669584,-1.669584,-1.669584,-1.669584,-1.669584 +-1.667584,-1.667584,-1.667584,-1.667584,-1.667584,-1.667584 +-1.665584,-1.665584,-1.665584,-1.665584,-1.665584,-1.665584 +-1.663584,-1.663584,-1.663584,-1.663584,-1.663584,-1.663584 +-1.661584,-1.661584,-1.661584,-1.661584,-1.661584,-1.661584 +-1.659584,-1.659584,-1.659584,-1.659584,-1.659584,-1.659584 +-1.657584,-1.657584,-1.657584,-1.657584,-1.657584,-1.657584 +-1.655584,-1.655584,-1.655584,-1.655584,-1.655584,-1.655584 +-1.653584,-1.653584,-1.653584,-1.653584,-1.653584,-1.653584 +-1.651584,-1.651584,-1.651584,-1.651584,-1.651584,-1.651584 +-1.649584,-1.649584,-1.649584,-1.649584,-1.649584,-1.649584 +-1.647584,-1.647584,-1.647584,-1.647584,-1.647584,-1.647584 +-1.645584,-1.645584,-1.645584,-1.645584,-1.645584,-1.645584 +-1.643584,-1.643584,-1.643584,-1.643584,-1.643584,-1.643584 +-1.641584,-1.641584,-1.641584,-1.641584,-1.641584,-1.641584 +-1.639584,-1.639584,-1.639584,-1.639584,-1.639584,-1.639584 +-1.637584,-1.637584,-1.637584,-1.637584,-1.637584,-1.637584 +-1.635584,-1.635584,-1.635584,-1.635584,-1.635584,-1.635584 +-1.633584,-1.633584,-1.633584,-1.633584,-1.633584,-1.633584 +-1.631584,-1.631584,-1.631584,-1.631584,-1.631584,-1.631584 +-1.629584,-1.629584,-1.629584,-1.629584,-1.629584,-1.629584 +-1.627584,-1.627584,-1.627584,-1.627584,-1.627584,-1.627584 +-1.625584,-1.625584,-1.625584,-1.625584,-1.625584,-1.625584 +-1.623584,-1.623584,-1.623584,-1.623584,-1.623584,-1.623584 +-1.621584,-1.621584,-1.621584,-1.621584,-1.621584,-1.621584 +-1.619584,-1.619584,-1.619584,-1.619584,-1.619584,-1.619584 +-1.617584,-1.617584,-1.617584,-1.617584,-1.617584,-1.617584 +-1.615584,-1.615584,-1.615584,-1.615584,-1.615584,-1.615584 +-1.613584,-1.613584,-1.613584,-1.613584,-1.613584,-1.613584 +-1.611584,-1.611584,-1.611584,-1.611584,-1.611584,-1.611584 +-1.609584,-1.609584,-1.609584,-1.609584,-1.609584,-1.609584 +-1.607584,-1.607584,-1.607584,-1.607584,-1.607584,-1.607584 +-1.605584,-1.605584,-1.605584,-1.605584,-1.605584,-1.605584 +-1.603584,-1.603584,-1.603584,-1.603584,-1.603584,-1.603584 +-1.601584,-1.601584,-1.601584,-1.601584,-1.601584,-1.601584 +-1.599584,-1.599584,-1.599584,-1.599584,-1.599584,-1.599584 +-1.597584,-1.597584,-1.597584,-1.597584,-1.597584,-1.597584 +-1.595584,-1.595584,-1.595584,-1.595584,-1.595584,-1.595584 +-1.593584,-1.593584,-1.593584,-1.593584,-1.593584,-1.593584 +-1.591584,-1.591584,-1.591584,-1.591584,-1.591584,-1.591584 +-1.589584,-1.589584,-1.589584,-1.589584,-1.589584,-1.589584 +-1.587584,-1.587584,-1.587584,-1.587584,-1.587584,-1.587584 +-1.585584,-1.585584,-1.585584,-1.585584,-1.585584,-1.585584 +-1.583584,-1.583584,-1.583584,-1.583584,-1.583584,-1.583584 +-1.581584,-1.581584,-1.581584,-1.581584,-1.581584,-1.581584 +-1.579584,-1.579584,-1.579584,-1.579584,-1.579584,-1.579584 +-1.577584,-1.577584,-1.577584,-1.577584,-1.577584,-1.577584 +-1.575584,-1.575584,-1.575584,-1.575584,-1.575584,-1.575584 +-1.573584,-1.573584,-1.573584,-1.573584,-1.573584,-1.573584 +-1.571584,-1.571584,-1.571584,-1.571584,-1.571584,-1.571584 +-1.569584,-1.569584,-1.569584,-1.569584,-1.569584,-1.569584 +-1.567584,-1.567584,-1.567584,-1.567584,-1.567584,-1.567584 +-1.565584,-1.565584,-1.565584,-1.565584,-1.565584,-1.565584 +-1.563584,-1.563584,-1.563584,-1.563584,-1.563584,-1.563584 +-1.561584,-1.561584,-1.561584,-1.561584,-1.561584,-1.561584 +-1.559584,-1.559584,-1.559584,-1.559584,-1.559584,-1.559584 +-1.557584,-1.557584,-1.557584,-1.557584,-1.557584,-1.557584 +-1.555584,-1.555584,-1.555584,-1.555584,-1.555584,-1.555584 +-1.553584,-1.553584,-1.553584,-1.553584,-1.553584,-1.553584 +-1.551584,-1.551584,-1.551584,-1.551584,-1.551584,-1.551584 +-1.549584,-1.549584,-1.549584,-1.549584,-1.549584,-1.549584 +-1.547584,-1.547584,-1.547584,-1.547584,-1.547584,-1.547584 +-1.545584,-1.545584,-1.545584,-1.545584,-1.545584,-1.545584 +-1.543584,-1.543584,-1.543584,-1.543584,-1.543584,-1.543584 +-1.541584,-1.541584,-1.541584,-1.541584,-1.541584,-1.541584 +-1.539584,-1.539584,-1.539584,-1.539584,-1.539584,-1.539584 +-1.537584,-1.537584,-1.537584,-1.537584,-1.537584,-1.537584 +-1.535584,-1.535584,-1.535584,-1.535584,-1.535584,-1.535584 +-1.533584,-1.533584,-1.533584,-1.533584,-1.533584,-1.533584 +-1.531584,-1.531584,-1.531584,-1.531584,-1.531584,-1.531584 +-1.529584,-1.529584,-1.529584,-1.529584,-1.529584,-1.529584 +-1.527584,-1.527584,-1.527584,-1.527584,-1.527584,-1.527584 +-1.525584,-1.525584,-1.525584,-1.525584,-1.525584,-1.525584 +-1.523584,-1.523584,-1.523584,-1.523584,-1.523584,-1.523584 +-1.521584,-1.521584,-1.521584,-1.521584,-1.521584,-1.521584 +-1.519584,-1.519584,-1.519584,-1.519584,-1.519584,-1.519584 +-1.517584,-1.517584,-1.517584,-1.517584,-1.517584,-1.517584 +-1.515584,-1.515584,-1.515584,-1.515584,-1.515584,-1.515584 +-1.513584,-1.513584,-1.513584,-1.513584,-1.513584,-1.513584 +-1.511584,-1.511584,-1.511584,-1.511584,-1.511584,-1.511584 +-1.509584,-1.509584,-1.509584,-1.509584,-1.509584,-1.509584 +-1.507584,-1.507584,-1.507584,-1.507584,-1.507584,-1.507584 +-1.505584,-1.505584,-1.505584,-1.505584,-1.505584,-1.505584 +-1.503584,-1.503584,-1.503584,-1.503584,-1.503584,-1.503584 +-1.501584,-1.501584,-1.501584,-1.501584,-1.501584,-1.501584 +-1.499584,-1.499584,-1.499584,-1.499584,-1.499584,-1.499584 +-1.497584,-1.497584,-1.497584,-1.497584,-1.497584,-1.497584 +-1.495584,-1.495584,-1.495584,-1.495584,-1.495584,-1.495584 +-1.493584,-1.493584,-1.493584,-1.493584,-1.493584,-1.493584 +-1.491584,-1.491584,-1.491584,-1.491584,-1.491584,-1.491584 +-1.489584,-1.489584,-1.489584,-1.489584,-1.489584,-1.489584 +-1.487584,-1.487584,-1.487584,-1.487584,-1.487584,-1.487584 +-1.485584,-1.485584,-1.485584,-1.485584,-1.485584,-1.485584 +-1.483584,-1.483584,-1.483584,-1.483584,-1.483584,-1.483584 +-1.481584,-1.481584,-1.481584,-1.481584,-1.481584,-1.481584 +-1.479584,-1.479584,-1.479584,-1.479584,-1.479584,-1.479584 +-1.477584,-1.477584,-1.477584,-1.477584,-1.477584,-1.477584 +-1.475584,-1.475584,-1.475584,-1.475584,-1.475584,-1.475584 +-1.473584,-1.473584,-1.473584,-1.473584,-1.473584,-1.473584 +-1.471584,-1.471584,-1.471584,-1.471584,-1.471584,-1.471584 +-1.469584,-1.469584,-1.469584,-1.469584,-1.469584,-1.469584 +-1.467584,-1.467584,-1.467584,-1.467584,-1.467584,-1.467584 +-1.465584,-1.465584,-1.465584,-1.465584,-1.465584,-1.465584 +-1.463584,-1.463584,-1.463584,-1.463584,-1.463584,-1.463584 +-1.461584,-1.461584,-1.461584,-1.461584,-1.461584,-1.461584 +-1.459584,-1.459584,-1.459584,-1.459584,-1.459584,-1.459584 +-1.457584,-1.457584,-1.457584,-1.457584,-1.457584,-1.457584 +-1.455584,-1.455584,-1.455584,-1.455584,-1.455584,-1.455584 +-1.453584,-1.453584,-1.453584,-1.453584,-1.453584,-1.453584 +-1.451584,-1.451584,-1.451584,-1.451584,-1.451584,-1.451584 +-1.449584,-1.449584,-1.449584,-1.449584,-1.449584,-1.449584 +-1.447584,-1.447584,-1.447584,-1.447584,-1.447584,-1.447584 +-1.445584,-1.445584,-1.445584,-1.445584,-1.445584,-1.445584 +-1.443584,-1.443584,-1.443584,-1.443584,-1.443584,-1.443584 +-1.441584,-1.441584,-1.441584,-1.441584,-1.441584,-1.441584 +-1.439584,-1.439584,-1.439584,-1.439584,-1.439584,-1.439584 +-1.437584,-1.437584,-1.437584,-1.437584,-1.437584,-1.437584 +-1.435584,-1.435584,-1.435584,-1.435584,-1.435584,-1.435584 +-1.433584,-1.433584,-1.433584,-1.433584,-1.433584,-1.433584 +-1.431584,-1.431584,-1.431584,-1.431584,-1.431584,-1.431584 +-1.429584,-1.429584,-1.429584,-1.429584,-1.429584,-1.429584 +-1.427584,-1.427584,-1.427584,-1.427584,-1.427584,-1.427584 +-1.425584,-1.425584,-1.425584,-1.425584,-1.425584,-1.425584 +-1.423584,-1.423584,-1.423584,-1.423584,-1.423584,-1.423584 +-1.421584,-1.421584,-1.421584,-1.421584,-1.421584,-1.421584 +-1.419584,-1.419584,-1.419584,-1.419584,-1.419584,-1.419584 +-1.417584,-1.417584,-1.417584,-1.417584,-1.417584,-1.417584 +-1.415584,-1.415584,-1.415584,-1.415584,-1.415584,-1.415584 +-1.413584,-1.413584,-1.413584,-1.413584,-1.413584,-1.413584 +-1.411584,-1.411584,-1.411584,-1.411584,-1.411584,-1.411584 +-1.409584,-1.409584,-1.409584,-1.409584,-1.409584,-1.409584 +-1.407584,-1.407584,-1.407584,-1.407584,-1.407584,-1.407584 +-1.405584,-1.405584,-1.405584,-1.405584,-1.405584,-1.405584 +-1.403584,-1.403584,-1.403584,-1.403584,-1.403584,-1.403584 +-1.401584,-1.401584,-1.401584,-1.401584,-1.401584,-1.401584 +-1.399584,-1.399584,-1.399584,-1.399584,-1.399584,-1.399584 +-1.397584,-1.397584,-1.397584,-1.397584,-1.397584,-1.397584 +-1.395584,-1.395584,-1.395584,-1.395584,-1.395584,-1.395584 +-1.393584,-1.393584,-1.393584,-1.393584,-1.393584,-1.393584 +-1.391584,-1.391584,-1.391584,-1.391584,-1.391584,-1.391584 +-1.389584,-1.389584,-1.389584,-1.389584,-1.389584,-1.389584 +-1.387584,-1.387584,-1.387584,-1.387584,-1.387584,-1.387584 +-1.385584,-1.385584,-1.385584,-1.385584,-1.385584,-1.385584 +-1.383584,-1.383584,-1.383584,-1.383584,-1.383584,-1.383584 +-1.381584,-1.381584,-1.381584,-1.381584,-1.381584,-1.381584 +-1.379584,-1.379584,-1.379584,-1.379584,-1.379584,-1.379584 +-1.377584,-1.377584,-1.377584,-1.377584,-1.377584,-1.377584 +-1.375584,-1.375584,-1.375584,-1.375584,-1.375584,-1.375584 +-1.373584,-1.373584,-1.373584,-1.373584,-1.373584,-1.373584 +-1.371584,-1.371584,-1.371584,-1.371584,-1.371584,-1.371584 +-1.369584,-1.369584,-1.369584,-1.369584,-1.369584,-1.369584 +-1.367584,-1.367584,-1.367584,-1.367584,-1.367584,-1.367584 +-1.365584,-1.365584,-1.365584,-1.365584,-1.365584,-1.365584 +-1.363584,-1.363584,-1.363584,-1.363584,-1.363584,-1.363584 +-1.361584,-1.361584,-1.361584,-1.361584,-1.361584,-1.361584 +-1.359584,-1.359584,-1.359584,-1.359584,-1.359584,-1.359584 +-1.357584,-1.357584,-1.357584,-1.357584,-1.357584,-1.357584 +-1.355584,-1.355584,-1.355584,-1.355584,-1.355584,-1.355584 +-1.353584,-1.353584,-1.353584,-1.353584,-1.353584,-1.353584 +-1.351584,-1.351584,-1.351584,-1.351584,-1.351584,-1.351584 +-1.349584,-1.349584,-1.349584,-1.349584,-1.349584,-1.349584 +-1.347584,-1.347584,-1.347584,-1.347584,-1.347584,-1.347584 +-1.345584,-1.345584,-1.345584,-1.345584,-1.345584,-1.345584 +-1.343584,-1.343584,-1.343584,-1.343584,-1.343584,-1.343584 +-1.341584,-1.341584,-1.341584,-1.341584,-1.341584,-1.341584 +-1.339584,-1.339584,-1.339584,-1.339584,-1.339584,-1.339584 +-1.337584,-1.337584,-1.337584,-1.337584,-1.337584,-1.337584 +-1.335584,-1.335584,-1.335584,-1.335584,-1.335584,-1.335584 +-1.333584,-1.333584,-1.333584,-1.333584,-1.333584,-1.333584 +-1.331584,-1.331584,-1.331584,-1.331584,-1.331584,-1.331584 +-1.329584,-1.329584,-1.329584,-1.329584,-1.329584,-1.329584 +-1.327584,-1.327584,-1.327584,-1.327584,-1.327584,-1.327584 +-1.325584,-1.325584,-1.325584,-1.325584,-1.325584,-1.325584 +-1.323584,-1.323584,-1.323584,-1.323584,-1.323584,-1.323584 +-1.321584,-1.321584,-1.321584,-1.321584,-1.321584,-1.321584 +-1.319584,-1.319584,-1.319584,-1.319584,-1.319584,-1.319584 +-1.317584,-1.317584,-1.317584,-1.317584,-1.317584,-1.317584 +-1.315584,-1.315584,-1.315584,-1.315584,-1.315584,-1.315584 +-1.313584,-1.313584,-1.313584,-1.313584,-1.313584,-1.313584 +-1.311584,-1.311584,-1.311584,-1.311584,-1.311584,-1.311584 +-1.309584,-1.309584,-1.309584,-1.309584,-1.309584,-1.309584 +-1.307584,-1.307584,-1.307584,-1.307584,-1.307584,-1.307584 +-1.305584,-1.305584,-1.305584,-1.305584,-1.305584,-1.305584 +-1.303584,-1.303584,-1.303584,-1.303584,-1.303584,-1.303584 +-1.301584,-1.301584,-1.301584,-1.301584,-1.301584,-1.301584 +-1.299584,-1.299584,-1.299584,-1.299584,-1.299584,-1.299584 +-1.297584,-1.297584,-1.297584,-1.297584,-1.297584,-1.297584 +-1.295584,-1.295584,-1.295584,-1.295584,-1.295584,-1.295584 +-1.293584,-1.293584,-1.293584,-1.293584,-1.293584,-1.293584 +-1.291584,-1.291584,-1.291584,-1.291584,-1.291584,-1.291584 +-1.289584,-1.289584,-1.289584,-1.289584,-1.289584,-1.289584 +-1.287584,-1.287584,-1.287584,-1.287584,-1.287584,-1.287584 +-1.285584,-1.285584,-1.285584,-1.285584,-1.285584,-1.285584 +-1.283584,-1.283584,-1.283584,-1.283584,-1.283584,-1.283584 +-1.281584,-1.281584,-1.281584,-1.281584,-1.281584,-1.281584 +-1.279584,-1.279584,-1.279584,-1.279584,-1.279584,-1.279584 +-1.277584,-1.277584,-1.277584,-1.277584,-1.277584,-1.277584 +-1.275584,-1.275584,-1.275584,-1.275584,-1.275584,-1.275584 +-1.273584,-1.273584,-1.273584,-1.273584,-1.273584,-1.273584 +-1.271584,-1.271584,-1.271584,-1.271584,-1.271584,-1.271584 +-1.269584,-1.269584,-1.269584,-1.269584,-1.269584,-1.269584 +-1.267584,-1.267584,-1.267584,-1.267584,-1.267584,-1.267584 +-1.265584,-1.265584,-1.265584,-1.265584,-1.265584,-1.265584 +-1.263584,-1.263584,-1.263584,-1.263584,-1.263584,-1.263584 +-1.261584,-1.261584,-1.261584,-1.261584,-1.261584,-1.261584 +-1.259584,-1.259584,-1.259584,-1.259584,-1.259584,-1.259584 +-1.257584,-1.257584,-1.257584,-1.257584,-1.257584,-1.257584 +-1.255584,-1.255584,-1.255584,-1.255584,-1.255584,-1.255584 +-1.253584,-1.253584,-1.253584,-1.253584,-1.253584,-1.253584 +-1.251584,-1.251584,-1.251584,-1.251584,-1.251584,-1.251584 +-1.249584,-1.249584,-1.249584,-1.249584,-1.249584,-1.249584 +-1.247584,-1.247584,-1.247584,-1.247584,-1.247584,-1.247584 +-1.245584,-1.245584,-1.245584,-1.245584,-1.245584,-1.245584 +-1.243584,-1.243584,-1.243584,-1.243584,-1.243584,-1.243584 +-1.241584,-1.241584,-1.241584,-1.241584,-1.241584,-1.241584 +-1.239584,-1.239584,-1.239584,-1.239584,-1.239584,-1.239584 +-1.237584,-1.237584,-1.237584,-1.237584,-1.237584,-1.237584 +-1.235584,-1.235584,-1.235584,-1.235584,-1.235584,-1.235584 +-1.233584,-1.233584,-1.233584,-1.233584,-1.233584,-1.233584 +-1.231584,-1.231584,-1.231584,-1.231584,-1.231584,-1.231584 +-1.229584,-1.229584,-1.229584,-1.229584,-1.229584,-1.229584 +-1.227584,-1.227584,-1.227584,-1.227584,-1.227584,-1.227584 +-1.225584,-1.225584,-1.225584,-1.225584,-1.225584,-1.225584 +-1.223584,-1.223584,-1.223584,-1.223584,-1.223584,-1.223584 +-1.221584,-1.221584,-1.221584,-1.221584,-1.221584,-1.221584 +-1.219584,-1.219584,-1.219584,-1.219584,-1.219584,-1.219584 +-1.217584,-1.217584,-1.217584,-1.217584,-1.217584,-1.217584 +-1.215584,-1.215584,-1.215584,-1.215584,-1.215584,-1.215584 +-1.213584,-1.213584,-1.213584,-1.213584,-1.213584,-1.213584 +-1.211584,-1.211584,-1.211584,-1.211584,-1.211584,-1.211584 +-1.209584,-1.209584,-1.209584,-1.209584,-1.209584,-1.209584 +-1.207584,-1.207584,-1.207584,-1.207584,-1.207584,-1.207584 +-1.205584,-1.205584,-1.205584,-1.205584,-1.205584,-1.205584 +-1.203584,-1.203584,-1.203584,-1.203584,-1.203584,-1.203584 +-1.201584,-1.201584,-1.201584,-1.201584,-1.201584,-1.201584 +-1.199584,-1.199584,-1.199584,-1.199584,-1.199584,-1.199584 +-1.197584,-1.197584,-1.197584,-1.197584,-1.197584,-1.197584 +-1.195584,-1.195584,-1.195584,-1.195584,-1.195584,-1.195584 +-1.193584,-1.193584,-1.193584,-1.193584,-1.193584,-1.193584 +-1.191584,-1.191584,-1.191584,-1.191584,-1.191584,-1.191584 +-1.189584,-1.189584,-1.189584,-1.189584,-1.189584,-1.189584 +-1.187584,-1.187584,-1.187584,-1.187584,-1.187584,-1.187584 +-1.185584,-1.185584,-1.185584,-1.185584,-1.185584,-1.185584 +-1.183584,-1.183584,-1.183584,-1.183584,-1.183584,-1.183584 +-1.181584,-1.181584,-1.181584,-1.181584,-1.181584,-1.181584 +-1.179584,-1.179584,-1.179584,-1.179584,-1.179584,-1.179584 +-1.177584,-1.177584,-1.177584,-1.177584,-1.177584,-1.177584 +-1.175584,-1.175584,-1.175584,-1.175584,-1.175584,-1.175584 +-1.173584,-1.173584,-1.173584,-1.173584,-1.173584,-1.173584 +-1.171584,-1.171584,-1.171584,-1.171584,-1.171584,-1.171584 +-1.169584,-1.169584,-1.169584,-1.169584,-1.169584,-1.169584 +-1.167584,-1.167584,-1.167584,-1.167584,-1.167584,-1.167584 +-1.165584,-1.165584,-1.165584,-1.165584,-1.165584,-1.165584 +-1.163584,-1.163584,-1.163584,-1.163584,-1.163584,-1.163584 +-1.161584,-1.161584,-1.161584,-1.161584,-1.161584,-1.161584 +-1.159584,-1.159584,-1.159584,-1.159584,-1.159584,-1.159584 +-1.157584,-1.157584,-1.157584,-1.157584,-1.157584,-1.157584 +-1.155584,-1.155584,-1.155584,-1.155584,-1.155584,-1.155584 +-1.153584,-1.153584,-1.153584,-1.153584,-1.153584,-1.153584 +-1.151584,-1.151584,-1.151584,-1.151584,-1.151584,-1.151584 +-1.149584,-1.149584,-1.149584,-1.149584,-1.149584,-1.149584 +-1.147584,-1.147584,-1.147584,-1.147584,-1.147584,-1.147584 +-1.145584,-1.145584,-1.145584,-1.145584,-1.145584,-1.145584 +-1.143584,-1.143584,-1.143584,-1.143584,-1.143584,-1.143584 +-1.141584,-1.141584,-1.141584,-1.141584,-1.141584,-1.141584 +-1.139584,-1.139584,-1.139584,-1.139584,-1.139584,-1.139584 +-1.137584,-1.137584,-1.137584,-1.137584,-1.137584,-1.137584 +-1.135584,-1.135584,-1.135584,-1.135584,-1.135584,-1.135584 +-1.133584,-1.133584,-1.133584,-1.133584,-1.133584,-1.133584 +-1.131584,-1.131584,-1.131584,-1.131584,-1.131584,-1.131584 +-1.129584,-1.129584,-1.129584,-1.129584,-1.129584,-1.129584 +-1.127584,-1.127584,-1.127584,-1.127584,-1.127584,-1.127584 +-1.125584,-1.125584,-1.125584,-1.125584,-1.125584,-1.125584 +-1.123584,-1.123584,-1.123584,-1.123584,-1.123584,-1.123584 +-1.121584,-1.121584,-1.121584,-1.121584,-1.121584,-1.121584 +-1.119584,-1.119584,-1.119584,-1.119584,-1.119584,-1.119584 +-1.117584,-1.117584,-1.117584,-1.117584,-1.117584,-1.117584 +-1.115584,-1.115584,-1.115584,-1.115584,-1.115584,-1.115584 +-1.113584,-1.113584,-1.113584,-1.113584,-1.113584,-1.113584 +-1.111584,-1.111584,-1.111584,-1.111584,-1.111584,-1.111584 +-1.109584,-1.109584,-1.109584,-1.109584,-1.109584,-1.109584 +-1.107584,-1.107584,-1.107584,-1.107584,-1.107584,-1.107584 +-1.105584,-1.105584,-1.105584,-1.105584,-1.105584,-1.105584 +-1.103584,-1.103584,-1.103584,-1.103584,-1.103584,-1.103584 +-1.101584,-1.101584,-1.101584,-1.101584,-1.101584,-1.101584 +-1.099584,-1.099584,-1.099584,-1.099584,-1.099584,-1.099584 +-1.097584,-1.097584,-1.097584,-1.097584,-1.097584,-1.097584 +-1.095584,-1.095584,-1.095584,-1.095584,-1.095584,-1.095584 +-1.093584,-1.093584,-1.093584,-1.093584,-1.093584,-1.093584 +-1.091584,-1.091584,-1.091584,-1.091584,-1.091584,-1.091584 +-1.089584,-1.089584,-1.089584,-1.089584,-1.089584,-1.089584 +-1.087584,-1.087584,-1.087584,-1.087584,-1.087584,-1.087584 +-1.085584,-1.085584,-1.085584,-1.085584,-1.085584,-1.085584 +-1.083584,-1.083584,-1.083584,-1.083584,-1.083584,-1.083584 +-1.081584,-1.081584,-1.081584,-1.081584,-1.081584,-1.081584 +-1.079584,-1.079584,-1.079584,-1.079584,-1.079584,-1.079584 +-1.077584,-1.077584,-1.077584,-1.077584,-1.077584,-1.077584 +-1.075584,-1.075584,-1.075584,-1.075584,-1.075584,-1.075584 +-1.073584,-1.073584,-1.073584,-1.073584,-1.073584,-1.073584 +-1.071584,-1.071584,-1.071584,-1.071584,-1.071584,-1.071584 +-1.069584,-1.069584,-1.069584,-1.069584,-1.069584,-1.069584 +-1.067584,-1.067584,-1.067584,-1.067584,-1.067584,-1.067584 +-1.065584,-1.065584,-1.065584,-1.065584,-1.065584,-1.065584 +-1.063584,-1.063584,-1.063584,-1.063584,-1.063584,-1.063584 +-1.061584,-1.061584,-1.061584,-1.061584,-1.061584,-1.061584 +-1.059584,-1.059584,-1.059584,-1.059584,-1.059584,-1.059584 +-1.057584,-1.057584,-1.057584,-1.057584,-1.057584,-1.057584 +-1.055584,-1.055584,-1.055584,-1.055584,-1.055584,-1.055584 +-1.053584,-1.053584,-1.053584,-1.053584,-1.053584,-1.053584 +-1.051584,-1.051584,-1.051584,-1.051584,-1.051584,-1.051584 +-1.049584,-1.049584,-1.049584,-1.049584,-1.049584,-1.049584 +-1.047584,-1.047584,-1.047584,-1.047584,-1.047584,-1.047584 +-1.045584,-1.045584,-1.045584,-1.045584,-1.045584,-1.045584 +-1.043584,-1.043584,-1.043584,-1.043584,-1.043584,-1.043584 +-1.041584,-1.041584,-1.041584,-1.041584,-1.041584,-1.041584 +-1.039584,-1.039584,-1.039584,-1.039584,-1.039584,-1.039584 +-1.037584,-1.037584,-1.037584,-1.037584,-1.037584,-1.037584 +-1.035584,-1.035584,-1.035584,-1.035584,-1.035584,-1.035584 +-1.033584,-1.033584,-1.033584,-1.033584,-1.033584,-1.033584 +-1.031584,-1.031584,-1.031584,-1.031584,-1.031584,-1.031584 +-1.029584,-1.029584,-1.029584,-1.029584,-1.029584,-1.029584 +-1.027584,-1.027584,-1.027584,-1.027584,-1.027584,-1.027584 +-1.025584,-1.025584,-1.025584,-1.025584,-1.025584,-1.025584 +-1.023584,-1.023584,-1.023584,-1.023584,-1.023584,-1.023584 +-1.021584,-1.021584,-1.021584,-1.021584,-1.021584,-1.021584 +-1.019584,-1.019584,-1.019584,-1.019584,-1.019584,-1.019584 +-1.017584,-1.017584,-1.017584,-1.017584,-1.017584,-1.017584 +-1.015584,-1.015584,-1.015584,-1.015584,-1.015584,-1.015584 +-1.013584,-1.013584,-1.013584,-1.013584,-1.013584,-1.013584 +-1.011584,-1.011584,-1.011584,-1.011584,-1.011584,-1.011584 +-1.009584,-1.009584,-1.009584,-1.009584,-1.009584,-1.009584 +-1.007584,-1.007584,-1.007584,-1.007584,-1.007584,-1.007584 +-1.005584,-1.005584,-1.005584,-1.005584,-1.005584,-1.005584 +-1.003584,-1.003584,-1.003584,-1.003584,-1.003584,-1.003584 +-1.001584,-1.001584,-1.001584,-1.001584,-1.001584,-1.001584 +-0.999584,-0.999584,-0.999584,-0.999584,-0.999584,-0.999584 +-0.997584,-0.997584,-0.997584,-0.997584,-0.997584,-0.997584 +-0.995584,-0.995584,-0.995584,-0.995584,-0.995584,-0.995584 +-0.993584,-0.993584,-0.993584,-0.993584,-0.993584,-0.993584 +-0.991584,-0.991584,-0.991584,-0.991584,-0.991584,-0.991584 +-0.989584,-0.989584,-0.989584,-0.989584,-0.989584,-0.989584 +-0.987584,-0.987584,-0.987584,-0.987584,-0.987584,-0.987584 +-0.985584,-0.985584,-0.985584,-0.985584,-0.985584,-0.985584 +-0.983584,-0.983584,-0.983584,-0.983584,-0.983584,-0.983584 +-0.981584,-0.981584,-0.981584,-0.981584,-0.981584,-0.981584 +-0.979584,-0.979584,-0.979584,-0.979584,-0.979584,-0.979584 +-0.977584,-0.977584,-0.977584,-0.977584,-0.977584,-0.977584 +-0.975584,-0.975584,-0.975584,-0.975584,-0.975584,-0.975584 +-0.973584,-0.973584,-0.973584,-0.973584,-0.973584,-0.973584 +-0.971584,-0.971584,-0.971584,-0.971584,-0.971584,-0.971584 +-0.969584,-0.969584,-0.969584,-0.969584,-0.969584,-0.969584 +-0.967584,-0.967584,-0.967584,-0.967584,-0.967584,-0.967584 +-0.965584,-0.965584,-0.965584,-0.965584,-0.965584,-0.965584 +-0.963584,-0.963584,-0.963584,-0.963584,-0.963584,-0.963584 +-0.961584,-0.961584,-0.961584,-0.961584,-0.961584,-0.961584 +-0.959584,-0.959584,-0.959584,-0.959584,-0.959584,-0.959584 +-0.957584,-0.957584,-0.957584,-0.957584,-0.957584,-0.957584 +-0.955584,-0.955584,-0.955584,-0.955584,-0.955584,-0.955584 +-0.953584,-0.953584,-0.953584,-0.953584,-0.953584,-0.953584 +-0.951584,-0.951584,-0.951584,-0.951584,-0.951584,-0.951584 +-0.949584,-0.949584,-0.949584,-0.949584,-0.949584,-0.949584 +-0.947584,-0.947584,-0.947584,-0.947584,-0.947584,-0.947584 +-0.945584,-0.945584,-0.945584,-0.945584,-0.945584,-0.945584 +-0.943584,-0.943584,-0.943584,-0.943584,-0.943584,-0.943584 +-0.941584,-0.941584,-0.941584,-0.941584,-0.941584,-0.941584 +-0.939584,-0.939584,-0.939584,-0.939584,-0.939584,-0.939584 +-0.937584,-0.937584,-0.937584,-0.937584,-0.937584,-0.937584 +-0.935584,-0.935584,-0.935584,-0.935584,-0.935584,-0.935584 +-0.933584,-0.933584,-0.933584,-0.933584,-0.933584,-0.933584 +-0.931584,-0.931584,-0.931584,-0.931584,-0.931584,-0.931584 +-0.929584,-0.929584,-0.929584,-0.929584,-0.929584,-0.929584 +-0.927584,-0.927584,-0.927584,-0.927584,-0.927584,-0.927584 +-0.925584,-0.925584,-0.925584,-0.925584,-0.925584,-0.925584 +-0.923584,-0.923584,-0.923584,-0.923584,-0.923584,-0.923584 +-0.921584,-0.921584,-0.921584,-0.921584,-0.921584,-0.921584 +-0.919584,-0.919584,-0.919584,-0.919584,-0.919584,-0.919584 +-0.917584,-0.917584,-0.917584,-0.917584,-0.917584,-0.917584 +-0.915584,-0.915584,-0.915584,-0.915584,-0.915584,-0.915584 +-0.913584,-0.913584,-0.913584,-0.913584,-0.913584,-0.913584 +-0.911584,-0.911584,-0.911584,-0.911584,-0.911584,-0.911584 +-0.909584,-0.909584,-0.909584,-0.909584,-0.909584,-0.909584 +-0.907584,-0.907584,-0.907584,-0.907584,-0.907584,-0.907584 +-0.905584,-0.905584,-0.905584,-0.905584,-0.905584,-0.905584 +-0.903584,-0.903584,-0.903584,-0.903584,-0.903584,-0.903584 +-0.901584,-0.901584,-0.901584,-0.901584,-0.901584,-0.901584 +-0.899584,-0.899584,-0.899584,-0.899584,-0.899584,-0.899584 +-0.897584,-0.897584,-0.897584,-0.897584,-0.897584,-0.897584 +-0.895584,-0.895584,-0.895584,-0.895584,-0.895584,-0.895584 +-0.893584,-0.893584,-0.893584,-0.893584,-0.893584,-0.893584 +-0.891584,-0.891584,-0.891584,-0.891584,-0.891584,-0.891584 +-0.889584,-0.889584,-0.889584,-0.889584,-0.889584,-0.889584 +-0.887584,-0.887584,-0.887584,-0.887584,-0.887584,-0.887584 +-0.885584,-0.885584,-0.885584,-0.885584,-0.885584,-0.885584 +-0.883584,-0.883584,-0.883584,-0.883584,-0.883584,-0.883584 +-0.881584,-0.881584,-0.881584,-0.881584,-0.881584,-0.881584 +-0.879584,-0.879584,-0.879584,-0.879584,-0.879584,-0.879584 +-0.877584,-0.877584,-0.877584,-0.877584,-0.877584,-0.877584 +-0.875584,-0.875584,-0.875584,-0.875584,-0.875584,-0.875584 +-0.873584,-0.873584,-0.873584,-0.873584,-0.873584,-0.873584 +-0.871584,-0.871584,-0.871584,-0.871584,-0.871584,-0.871584 +-0.869584,-0.869584,-0.869584,-0.869584,-0.869584,-0.869584 +-0.867584,-0.867584,-0.867584,-0.867584,-0.867584,-0.867584 +-0.865584,-0.865584,-0.865584,-0.865584,-0.865584,-0.865584 +-0.863584,-0.863584,-0.863584,-0.863584,-0.863584,-0.863584 +-0.861584,-0.861584,-0.861584,-0.861584,-0.861584,-0.861584 +-0.859584,-0.859584,-0.859584,-0.859584,-0.859584,-0.859584 +-0.857584,-0.857584,-0.857584,-0.857584,-0.857584,-0.857584 +-0.855584,-0.855584,-0.855584,-0.855584,-0.855584,-0.855584 +-0.853584,-0.853584,-0.853584,-0.853584,-0.853584,-0.853584 +-0.851584,-0.851584,-0.851584,-0.851584,-0.851584,-0.851584 +-0.849584,-0.849584,-0.849584,-0.849584,-0.849584,-0.849584 +-0.847584,-0.847584,-0.847584,-0.847584,-0.847584,-0.847584 +-0.845584,-0.845584,-0.845584,-0.845584,-0.845584,-0.845584 +-0.843584,-0.843584,-0.843584,-0.843584,-0.843584,-0.843584 +-0.841584,-0.841584,-0.841584,-0.841584,-0.841584,-0.841584 +-0.839584,-0.839584,-0.839584,-0.839584,-0.839584,-0.839584 +-0.837584,-0.837584,-0.837584,-0.837584,-0.837584,-0.837584 +-0.835584,-0.835584,-0.835584,-0.835584,-0.835584,-0.835584 +-0.833584,-0.833584,-0.833584,-0.833584,-0.833584,-0.833584 +-0.831584,-0.831584,-0.831584,-0.831584,-0.831584,-0.831584 +-0.829584,-0.829584,-0.829584,-0.829584,-0.829584,-0.829584 +-0.827584,-0.827584,-0.827584,-0.827584,-0.827584,-0.827584 +-0.825584,-0.825584,-0.825584,-0.825584,-0.825584,-0.825584 +-0.823584,-0.823584,-0.823584,-0.823584,-0.823584,-0.823584 +-0.821584,-0.821584,-0.821584,-0.821584,-0.821584,-0.821584 +-0.819584,-0.819584,-0.819584,-0.819584,-0.819584,-0.819584 +-0.817584,-0.817584,-0.817584,-0.817584,-0.817584,-0.817584 +-0.815584,-0.815584,-0.815584,-0.815584,-0.815584,-0.815584 +-0.813584,-0.813584,-0.813584,-0.813584,-0.813584,-0.813584 +-0.811584,-0.811584,-0.811584,-0.811584,-0.811584,-0.811584 +-0.809584,-0.809584,-0.809584,-0.809584,-0.809584,-0.809584 +-0.807584,-0.807584,-0.807584,-0.807584,-0.807584,-0.807584 +-0.805584,-0.805584,-0.805584,-0.805584,-0.805584,-0.805584 +-0.803584,-0.803584,-0.803584,-0.803584,-0.803584,-0.803584 +-0.801584,-0.801584,-0.801584,-0.801584,-0.801584,-0.801584 +-0.799584,-0.799584,-0.799584,-0.799584,-0.799584,-0.799584 +-0.797584,-0.797584,-0.797584,-0.797584,-0.797584,-0.797584 +-0.795584,-0.795584,-0.795584,-0.795584,-0.795584,-0.795584 +-0.793584,-0.793584,-0.793584,-0.793584,-0.793584,-0.793584 +-0.791584,-0.791584,-0.791584,-0.791584,-0.791584,-0.791584 +-0.789584,-0.789584,-0.789584,-0.789584,-0.789584,-0.789584 +-0.787584,-0.787584,-0.787584,-0.787584,-0.787584,-0.787584 +-0.785584,-0.785584,-0.785584,-0.785584,-0.785584,-0.785584 +-0.783584,-0.783584,-0.783584,-0.783584,-0.783584,-0.783584 +-0.781584,-0.781584,-0.781584,-0.781584,-0.781584,-0.781584 +-0.779584,-0.779584,-0.779584,-0.779584,-0.779584,-0.779584 +-0.777584,-0.777584,-0.777584,-0.777584,-0.777584,-0.777584 +-0.775584,-0.775584,-0.775584,-0.775584,-0.775584,-0.775584 +-0.773584,-0.773584,-0.773584,-0.773584,-0.773584,-0.773584 +-0.771584,-0.771584,-0.771584,-0.771584,-0.771584,-0.771584 +-0.769584,-0.769584,-0.769584,-0.769584,-0.769584,-0.769584 +-0.767584,-0.767584,-0.767584,-0.767584,-0.767584,-0.767584 +-0.765584,-0.765584,-0.765584,-0.765584,-0.765584,-0.765584 +-0.763584,-0.763584,-0.763584,-0.763584,-0.763584,-0.763584 +-0.761584,-0.761584,-0.761584,-0.761584,-0.761584,-0.761584 +-0.759584,-0.759584,-0.759584,-0.759584,-0.759584,-0.759584 +-0.757584,-0.757584,-0.757584,-0.757584,-0.757584,-0.757584 +-0.755584,-0.755584,-0.755584,-0.755584,-0.755584,-0.755584 +-0.753584,-0.753584,-0.753584,-0.753584,-0.753584,-0.753584 +-0.751584,-0.751584,-0.751584,-0.751584,-0.751584,-0.751584 +-0.749584,-0.749584,-0.749584,-0.749584,-0.749584,-0.749584 +-0.747584,-0.747584,-0.747584,-0.747584,-0.747584,-0.747584 +-0.745584,-0.745584,-0.745584,-0.745584,-0.745584,-0.745584 +-0.743584,-0.743584,-0.743584,-0.743584,-0.743584,-0.743584 +-0.741584,-0.741584,-0.741584,-0.741584,-0.741584,-0.741584 +-0.739584,-0.739584,-0.739584,-0.739584,-0.739584,-0.739584 +-0.737584,-0.737584,-0.737584,-0.737584,-0.737584,-0.737584 +-0.735584,-0.735584,-0.735584,-0.735584,-0.735584,-0.735584 +-0.733584,-0.733584,-0.733584,-0.733584,-0.733584,-0.733584 +-0.731584,-0.731584,-0.731584,-0.731584,-0.731584,-0.731584 +-0.729584,-0.729584,-0.729584,-0.729584,-0.729584,-0.729584 +-0.727584,-0.727584,-0.727584,-0.727584,-0.727584,-0.727584 +-0.725584,-0.725584,-0.725584,-0.725584,-0.725584,-0.725584 +-0.723584,-0.723584,-0.723584,-0.723584,-0.723584,-0.723584 +-0.721584,-0.721584,-0.721584,-0.721584,-0.721584,-0.721584 +-0.719584,-0.719584,-0.719584,-0.719584,-0.719584,-0.719584 +-0.717584,-0.717584,-0.717584,-0.717584,-0.717584,-0.717584 +-0.715584,-0.715584,-0.715584,-0.715584,-0.715584,-0.715584 +-0.713584,-0.713584,-0.713584,-0.713584,-0.713584,-0.713584 +-0.711584,-0.711584,-0.711584,-0.711584,-0.711584,-0.711584 +-0.709584,-0.709584,-0.709584,-0.709584,-0.709584,-0.709584 +-0.707584,-0.707584,-0.707584,-0.707584,-0.707584,-0.707584 +-0.705584,-0.705584,-0.705584,-0.705584,-0.705584,-0.705584 +-0.703584,-0.703584,-0.703584,-0.703584,-0.703584,-0.703584 +-0.701584,-0.701584,-0.701584,-0.701584,-0.701584,-0.701584 +-0.699584,-0.699584,-0.699584,-0.699584,-0.699584,-0.699584 +-0.697584,-0.697584,-0.697584,-0.697584,-0.697584,-0.697584 +-0.695584,-0.695584,-0.695584,-0.695584,-0.695584,-0.695584 +-0.693584,-0.693584,-0.693584,-0.693584,-0.693584,-0.693584 +-0.691584,-0.691584,-0.691584,-0.691584,-0.691584,-0.691584 +-0.689584,-0.689584,-0.689584,-0.689584,-0.689584,-0.689584 +-0.687584,-0.687584,-0.687584,-0.687584,-0.687584,-0.687584 +-0.685584,-0.685584,-0.685584,-0.685584,-0.685584,-0.685584 +-0.683584,-0.683584,-0.683584,-0.683584,-0.683584,-0.683584 +-0.681584,-0.681584,-0.681584,-0.681584,-0.681584,-0.681584 +-0.679584,-0.679584,-0.679584,-0.679584,-0.679584,-0.679584 +-0.677584,-0.677584,-0.677584,-0.677584,-0.677584,-0.677584 +-0.675584,-0.675584,-0.675584,-0.675584,-0.675584,-0.675584 +-0.673584,-0.673584,-0.673584,-0.673584,-0.673584,-0.673584 +-0.671584,-0.671584,-0.671584,-0.671584,-0.671584,-0.671584 +-0.669584,-0.669584,-0.669584,-0.669584,-0.669584,-0.669584 +-0.667584,-0.667584,-0.667584,-0.667584,-0.667584,-0.667584 +-0.665584,-0.665584,-0.665584,-0.665584,-0.665584,-0.665584 +-0.663584,-0.663584,-0.663584,-0.663584,-0.663584,-0.663584 +-0.661584,-0.661584,-0.661584,-0.661584,-0.661584,-0.661584 +-0.659584,-0.659584,-0.659584,-0.659584,-0.659584,-0.659584 +-0.657584,-0.657584,-0.657584,-0.657584,-0.657584,-0.657584 +-0.655584,-0.655584,-0.655584,-0.655584,-0.655584,-0.655584 +-0.653584,-0.653584,-0.653584,-0.653584,-0.653584,-0.653584 +-0.651584,-0.651584,-0.651584,-0.651584,-0.651584,-0.651584 +-0.649584,-0.649584,-0.649584,-0.649584,-0.649584,-0.649584 +-0.647584,-0.647584,-0.647584,-0.647584,-0.647584,-0.647584 +-0.645584,-0.645584,-0.645584,-0.645584,-0.645584,-0.645584 +-0.643584,-0.643584,-0.643584,-0.643584,-0.643584,-0.643584 +-0.641584,-0.641584,-0.641584,-0.641584,-0.641584,-0.641584 +-0.639584,-0.639584,-0.639584,-0.639584,-0.639584,-0.639584 +-0.637584,-0.637584,-0.637584,-0.637584,-0.637584,-0.637584 +-0.635584,-0.635584,-0.635584,-0.635584,-0.635584,-0.635584 +-0.633584,-0.633584,-0.633584,-0.633584,-0.633584,-0.633584 +-0.631584,-0.631584,-0.631584,-0.631584,-0.631584,-0.631584 +-0.629584,-0.629584,-0.629584,-0.629584,-0.629584,-0.629584 +-0.627584,-0.627584,-0.627584,-0.627584,-0.627584,-0.627584 +-0.625584,-0.625584,-0.625584,-0.625584,-0.625584,-0.625584 +-0.623584,-0.623584,-0.623584,-0.623584,-0.623584,-0.623584 +-0.621584,-0.621584,-0.621584,-0.621584,-0.621584,-0.621584 +-0.619584,-0.619584,-0.619584,-0.619584,-0.619584,-0.619584 +-0.617584,-0.617584,-0.617584,-0.617584,-0.617584,-0.617584 +-0.615584,-0.615584,-0.615584,-0.615584,-0.615584,-0.615584 +-0.613584,-0.613584,-0.613584,-0.613584,-0.613584,-0.613584 +-0.611584,-0.611584,-0.611584,-0.611584,-0.611584,-0.611584 +-0.609584,-0.609584,-0.609584,-0.609584,-0.609584,-0.609584 +-0.607584,-0.607584,-0.607584,-0.607584,-0.607584,-0.607584 +-0.605584,-0.605584,-0.605584,-0.605584,-0.605584,-0.605584 +-0.603584,-0.603584,-0.603584,-0.603584,-0.603584,-0.603584 +-0.601584,-0.601584,-0.601584,-0.601584,-0.601584,-0.601584 +-0.599584,-0.599584,-0.599584,-0.599584,-0.599584,-0.599584 +-0.597584,-0.597584,-0.597584,-0.597584,-0.597584,-0.597584 +-0.595584,-0.595584,-0.595584,-0.595584,-0.595584,-0.595584 +-0.593584,-0.593584,-0.593584,-0.593584,-0.593584,-0.593584 +-0.591584,-0.591584,-0.591584,-0.591584,-0.591584,-0.591584 +-0.589584,-0.589584,-0.589584,-0.589584,-0.589584,-0.589584 +-0.587584,-0.587584,-0.587584,-0.587584,-0.587584,-0.587584 +-0.585584,-0.585584,-0.585584,-0.585584,-0.585584,-0.585584 +-0.583584,-0.583584,-0.583584,-0.583584,-0.583584,-0.583584 +-0.581584,-0.581584,-0.581584,-0.581584,-0.581584,-0.581584 +-0.579584,-0.579584,-0.579584,-0.579584,-0.579584,-0.579584 +-0.577584,-0.577584,-0.577584,-0.577584,-0.577584,-0.577584 +-0.575584,-0.575584,-0.575584,-0.575584,-0.575584,-0.575584 +-0.573584,-0.573584,-0.573584,-0.573584,-0.573584,-0.573584 +-0.571584,-0.571584,-0.571584,-0.571584,-0.571584,-0.571584 +-0.569584,-0.569584,-0.569584,-0.569584,-0.569584,-0.569584 +-0.567584,-0.567584,-0.567584,-0.567584,-0.567584,-0.567584 +-0.565584,-0.565584,-0.565584,-0.565584,-0.565584,-0.565584 +-0.563584,-0.563584,-0.563584,-0.563584,-0.563584,-0.563584 +-0.561584,-0.561584,-0.561584,-0.561584,-0.561584,-0.561584 +-0.559584,-0.559584,-0.559584,-0.559584,-0.559584,-0.559584 +-0.557584,-0.557584,-0.557584,-0.557584,-0.557584,-0.557584 +-0.555584,-0.555584,-0.555584,-0.555584,-0.555584,-0.555584 +-0.553584,-0.553584,-0.553584,-0.553584,-0.553584,-0.553584 +-0.551584,-0.551584,-0.551584,-0.551584,-0.551584,-0.551584 +-0.549584,-0.549584,-0.549584,-0.549584,-0.549584,-0.549584 +-0.547584,-0.547584,-0.547584,-0.547584,-0.547584,-0.547584 +-0.545584,-0.545584,-0.545584,-0.545584,-0.545584,-0.545584 +-0.543584,-0.543584,-0.543584,-0.543584,-0.543584,-0.543584 +-0.541584,-0.541584,-0.541584,-0.541584,-0.541584,-0.541584 +-0.539584,-0.539584,-0.539584,-0.539584,-0.539584,-0.539584 +-0.537584,-0.537584,-0.537584,-0.537584,-0.537584,-0.537584 +-0.535584,-0.535584,-0.535584,-0.535584,-0.535584,-0.535584 +-0.533584,-0.533584,-0.533584,-0.533584,-0.533584,-0.533584 +-0.531584,-0.531584,-0.531584,-0.531584,-0.531584,-0.531584 +-0.529584,-0.529584,-0.529584,-0.529584,-0.529584,-0.529584 +-0.527584,-0.527584,-0.527584,-0.527584,-0.527584,-0.527584 +-0.525584,-0.525584,-0.525584,-0.525584,-0.525584,-0.525584 +-0.523584,-0.523584,-0.523584,-0.523584,-0.523584,-0.523584 +-0.521584,-0.521584,-0.521584,-0.521584,-0.521584,-0.521584 +-0.519584,-0.519584,-0.519584,-0.519584,-0.519584,-0.519584 +-0.517584,-0.517584,-0.517584,-0.517584,-0.517584,-0.517584 +-0.515584,-0.515584,-0.515584,-0.515584,-0.515584,-0.515584 +-0.513584,-0.513584,-0.513584,-0.513584,-0.513584,-0.513584 +-0.511584,-0.511584,-0.511584,-0.511584,-0.511584,-0.511584 +-0.509584,-0.509584,-0.509584,-0.509584,-0.509584,-0.509584 +-0.507584,-0.507584,-0.507584,-0.507584,-0.507584,-0.507584 +-0.505584,-0.505584,-0.505584,-0.505584,-0.505584,-0.505584 +-0.503584,-0.503584,-0.503584,-0.503584,-0.503584,-0.503584 +-0.501584,-0.501584,-0.501584,-0.501584,-0.501584,-0.501584 +-0.499584,-0.499584,-0.499584,-0.499584,-0.499584,-0.499584 +-0.497584,-0.497584,-0.497584,-0.497584,-0.497584,-0.497584 +-0.495584,-0.495584,-0.495584,-0.495584,-0.495584,-0.495584 +-0.493584,-0.493584,-0.493584,-0.493584,-0.493584,-0.493584 +-0.491584,-0.491584,-0.491584,-0.491584,-0.491584,-0.491584 +-0.489584,-0.489584,-0.489584,-0.489584,-0.489584,-0.489584 +-0.487584,-0.487584,-0.487584,-0.487584,-0.487584,-0.487584 +-0.485584,-0.485584,-0.485584,-0.485584,-0.485584,-0.485584 +-0.483584,-0.483584,-0.483584,-0.483584,-0.483584,-0.483584 +-0.481584,-0.481584,-0.481584,-0.481584,-0.481584,-0.481584 +-0.479584,-0.479584,-0.479584,-0.479584,-0.479584,-0.479584 +-0.477584,-0.477584,-0.477584,-0.477584,-0.477584,-0.477584 +-0.475584,-0.475584,-0.475584,-0.475584,-0.475584,-0.475584 +-0.473584,-0.473584,-0.473584,-0.473584,-0.473584,-0.473584 +-0.471584,-0.471584,-0.471584,-0.471584,-0.471584,-0.471584 +-0.469584,-0.469584,-0.469584,-0.469584,-0.469584,-0.469584 +-0.467584,-0.467584,-0.467584,-0.467584,-0.467584,-0.467584 +-0.465584,-0.465584,-0.465584,-0.465584,-0.465584,-0.465584 +-0.463584,-0.463584,-0.463584,-0.463584,-0.463584,-0.463584 +-0.461584,-0.461584,-0.461584,-0.461584,-0.461584,-0.461584 +-0.459584,-0.459584,-0.459584,-0.459584,-0.459584,-0.459584 +-0.457584,-0.457584,-0.457584,-0.457584,-0.457584,-0.457584 +-0.455584,-0.455584,-0.455584,-0.455584,-0.455584,-0.455584 +-0.453584,-0.453584,-0.453584,-0.453584,-0.453584,-0.453584 +-0.451584,-0.451584,-0.451584,-0.451584,-0.451584,-0.451584 +-0.449584,-0.449584,-0.449584,-0.449584,-0.449584,-0.449584 +-0.447584,-0.447584,-0.447584,-0.447584,-0.447584,-0.447584 +-0.445584,-0.445584,-0.445584,-0.445584,-0.445584,-0.445584 +-0.443584,-0.443584,-0.443584,-0.443584,-0.443584,-0.443584 +-0.441584,-0.441584,-0.441584,-0.441584,-0.441584,-0.441584 +-0.439584,-0.439584,-0.439584,-0.439584,-0.439584,-0.439584 +-0.437584,-0.437584,-0.437584,-0.437584,-0.437584,-0.437584 +-0.435584,-0.435584,-0.435584,-0.435584,-0.435584,-0.435584 +-0.433584,-0.433584,-0.433584,-0.433584,-0.433584,-0.433584 +-0.431584,-0.431584,-0.431584,-0.431584,-0.431584,-0.431584 +-0.429584,-0.429584,-0.429584,-0.429584,-0.429584,-0.429584 +-0.427584,-0.427584,-0.427584,-0.427584,-0.427584,-0.427584 +-0.425584,-0.425584,-0.425584,-0.425584,-0.425584,-0.425584 +-0.423584,-0.423584,-0.423584,-0.423584,-0.423584,-0.423584 +-0.421584,-0.421584,-0.421584,-0.421584,-0.421584,-0.421584 +-0.419584,-0.419584,-0.419584,-0.419584,-0.419584,-0.419584 +-0.417584,-0.417584,-0.417584,-0.417584,-0.417584,-0.417584 +-0.415584,-0.415584,-0.415584,-0.415584,-0.415584,-0.415584 +-0.413584,-0.413584,-0.413584,-0.413584,-0.413584,-0.413584 +-0.411584,-0.411584,-0.411584,-0.411584,-0.411584,-0.411584 +-0.409584,-0.409584,-0.409584,-0.409584,-0.409584,-0.409584 +-0.407584,-0.407584,-0.407584,-0.407584,-0.407584,-0.407584 +-0.405584,-0.405584,-0.405584,-0.405584,-0.405584,-0.405584 +-0.403584,-0.403584,-0.403584,-0.403584,-0.403584,-0.403584 +-0.401584,-0.401584,-0.401584,-0.401584,-0.401584,-0.401584 +-0.399584,-0.399584,-0.399584,-0.399584,-0.399584,-0.399584 +-0.397584,-0.397584,-0.397584,-0.397584,-0.397584,-0.397584 +-0.395584,-0.395584,-0.395584,-0.395584,-0.395584,-0.395584 +-0.393584,-0.393584,-0.393584,-0.393584,-0.393584,-0.393584 +-0.391584,-0.391584,-0.391584,-0.391584,-0.391584,-0.391584 +-0.389584,-0.389584,-0.389584,-0.389584,-0.389584,-0.389584 +-0.387584,-0.387584,-0.387584,-0.387584,-0.387584,-0.387584 +-0.385584,-0.385584,-0.385584,-0.385584,-0.385584,-0.385584 +-0.383584,-0.383584,-0.383584,-0.383584,-0.383584,-0.383584 +-0.381584,-0.381584,-0.381584,-0.381584,-0.381584,-0.381584 +-0.379584,-0.379584,-0.379584,-0.379584,-0.379584,-0.379584 +-0.377584,-0.377584,-0.377584,-0.377584,-0.377584,-0.377584 +-0.375584,-0.375584,-0.375584,-0.375584,-0.375584,-0.375584 +-0.373584,-0.373584,-0.373584,-0.373584,-0.373584,-0.373584 +-0.371584,-0.371584,-0.371584,-0.371584,-0.371584,-0.371584 +-0.369584,-0.369584,-0.369584,-0.369584,-0.369584,-0.369584 +-0.367584,-0.367584,-0.367584,-0.367584,-0.367584,-0.367584 +-0.365584,-0.365584,-0.365584,-0.365584,-0.365584,-0.365584 +-0.363584,-0.363584,-0.363584,-0.363584,-0.363584,-0.363584 +-0.361584,-0.361584,-0.361584,-0.361584,-0.361584,-0.361584 +-0.359584,-0.359584,-0.359584,-0.359584,-0.359584,-0.359584 +-0.357584,-0.357584,-0.357584,-0.357584,-0.357584,-0.357584 +-0.355584,-0.355584,-0.355584,-0.355584,-0.355584,-0.355584 +-0.353584,-0.353584,-0.353584,-0.353584,-0.353584,-0.353584 +-0.351584,-0.351584,-0.351584,-0.351584,-0.351584,-0.351584 +-0.349584,-0.349584,-0.349584,-0.349584,-0.349584,-0.349584 +-0.347584,-0.347584,-0.347584,-0.347584,-0.347584,-0.347584 +-0.345584,-0.345584,-0.345584,-0.345584,-0.345584,-0.345584 +-0.343584,-0.343584,-0.343584,-0.343584,-0.343584,-0.343584 +-0.341584,-0.341584,-0.341584,-0.341584,-0.341584,-0.341584 +-0.339584,-0.339584,-0.339584,-0.339584,-0.339584,-0.339584 +-0.337584,-0.337584,-0.337584,-0.337584,-0.337584,-0.337584 +-0.335584,-0.335584,-0.335584,-0.335584,-0.335584,-0.335584 +-0.333584,-0.333584,-0.333584,-0.333584,-0.333584,-0.333584 +-0.331584,-0.331584,-0.331584,-0.331584,-0.331584,-0.331584 +-0.329584,-0.329584,-0.329584,-0.329584,-0.329584,-0.329584 +-0.327584,-0.327584,-0.327584,-0.327584,-0.327584,-0.327584 +-0.325584,-0.325584,-0.325584,-0.325584,-0.325584,-0.325584 +-0.323584,-0.323584,-0.323584,-0.323584,-0.323584,-0.323584 +-0.321584,-0.321584,-0.321584,-0.321584,-0.321584,-0.321584 +-0.319584,-0.319584,-0.319584,-0.319584,-0.319584,-0.319584 +-0.317584,-0.317584,-0.317584,-0.317584,-0.317584,-0.317584 +-0.315584,-0.315584,-0.315584,-0.315584,-0.315584,-0.315584 +-0.313584,-0.313584,-0.313584,-0.313584,-0.313584,-0.313584 +-0.311584,-0.311584,-0.311584,-0.311584,-0.311584,-0.311584 +-0.309584,-0.309584,-0.309584,-0.309584,-0.309584,-0.309584 +-0.307584,-0.307584,-0.307584,-0.307584,-0.307584,-0.307584 +-0.305584,-0.305584,-0.305584,-0.305584,-0.305584,-0.305584 +-0.303584,-0.303584,-0.303584,-0.303584,-0.303584,-0.303584 +-0.301584,-0.301584,-0.301584,-0.301584,-0.301584,-0.301584 +-0.299584,-0.299584,-0.299584,-0.299584,-0.299584,-0.299584 +-0.297584,-0.297584,-0.297584,-0.297584,-0.297584,-0.297584 +-0.295584,-0.295584,-0.295584,-0.295584,-0.295584,-0.295584 +-0.293584,-0.293584,-0.293584,-0.293584,-0.293584,-0.293584 +-0.291584,-0.291584,-0.291584,-0.291584,-0.291584,-0.291584 +-0.289584,-0.289584,-0.289584,-0.289584,-0.289584,-0.289584 +-0.287584,-0.287584,-0.287584,-0.287584,-0.287584,-0.287584 +-0.285584,-0.285584,-0.285584,-0.285584,-0.285584,-0.285584 +-0.283584,-0.283584,-0.283584,-0.283584,-0.283584,-0.283584 +-0.281584,-0.281584,-0.281584,-0.281584,-0.281584,-0.281584 +-0.279584,-0.279584,-0.279584,-0.279584,-0.279584,-0.279584 +-0.277584,-0.277584,-0.277584,-0.277584,-0.277584,-0.277584 +-0.275584,-0.275584,-0.275584,-0.275584,-0.275584,-0.275584 +-0.273584,-0.273584,-0.273584,-0.273584,-0.273584,-0.273584 +-0.271584,-0.271584,-0.271584,-0.271584,-0.271584,-0.271584 +-0.269584,-0.269584,-0.269584,-0.269584,-0.269584,-0.269584 +-0.267584,-0.267584,-0.267584,-0.267584,-0.267584,-0.267584 +-0.265584,-0.265584,-0.265584,-0.265584,-0.265584,-0.265584 +-0.263584,-0.263584,-0.263584,-0.263584,-0.263584,-0.263584 +-0.261584,-0.261584,-0.261584,-0.261584,-0.261584,-0.261584 +-0.259584,-0.259584,-0.259584,-0.259584,-0.259584,-0.259584 +-0.257584,-0.257584,-0.257584,-0.257584,-0.257584,-0.257584 +-0.255584,-0.255584,-0.255584,-0.255584,-0.255584,-0.255584 +-0.253584,-0.253584,-0.253584,-0.253584,-0.253584,-0.253584 +-0.251584,-0.251584,-0.251584,-0.251584,-0.251584,-0.251584 +-0.249584,-0.249584,-0.249584,-0.249584,-0.249584,-0.249584 +-0.247584,-0.247584,-0.247584,-0.247584,-0.247584,-0.247584 +-0.245584,-0.245584,-0.245584,-0.245584,-0.245584,-0.245584 +-0.243584,-0.243584,-0.243584,-0.243584,-0.243584,-0.243584 +-0.241584,-0.241584,-0.241584,-0.241584,-0.241584,-0.241584 +-0.239584,-0.239584,-0.239584,-0.239584,-0.239584,-0.239584 +-0.237584,-0.237584,-0.237584,-0.237584,-0.237584,-0.237584 +-0.235584,-0.235584,-0.235584,-0.235584,-0.235584,-0.235584 +-0.233584,-0.233584,-0.233584,-0.233584,-0.233584,-0.233584 +-0.231584,-0.231584,-0.231584,-0.231584,-0.231584,-0.231584 +-0.229584,-0.229584,-0.229584,-0.229584,-0.229584,-0.229584 +-0.227584,-0.227584,-0.227584,-0.227584,-0.227584,-0.227584 +-0.225584,-0.225584,-0.225584,-0.225584,-0.225584,-0.225584 +-0.223584,-0.223584,-0.223584,-0.223584,-0.223584,-0.223584 +-0.221584,-0.221584,-0.221584,-0.221584,-0.221584,-0.221584 +-0.219584,-0.219584,-0.219584,-0.219584,-0.219584,-0.219584 +-0.217584,-0.217584,-0.217584,-0.217584,-0.217584,-0.217584 +-0.215584,-0.215584,-0.215584,-0.215584,-0.215584,-0.215584 +-0.213584,-0.213584,-0.213584,-0.213584,-0.213584,-0.213584 +-0.211584,-0.211584,-0.211584,-0.211584,-0.211584,-0.211584 +-0.209584,-0.209584,-0.209584,-0.209584,-0.209584,-0.209584 +-0.207584,-0.207584,-0.207584,-0.207584,-0.207584,-0.207584 +-0.205584,-0.205584,-0.205584,-0.205584,-0.205584,-0.205584 +-0.203584,-0.203584,-0.203584,-0.203584,-0.203584,-0.203584 +-0.201584,-0.201584,-0.201584,-0.201584,-0.201584,-0.201584 +-0.199584,-0.199584,-0.199584,-0.199584,-0.199584,-0.199584 +-0.197584,-0.197584,-0.197584,-0.197584,-0.197584,-0.197584 +-0.195584,-0.195584,-0.195584,-0.195584,-0.195584,-0.195584 +-0.193584,-0.193584,-0.193584,-0.193584,-0.193584,-0.193584 +-0.191584,-0.191584,-0.191584,-0.191584,-0.191584,-0.191584 +-0.189584,-0.189584,-0.189584,-0.189584,-0.189584,-0.189584 +-0.187584,-0.187584,-0.187584,-0.187584,-0.187584,-0.187584 +-0.185584,-0.185584,-0.185584,-0.185584,-0.185584,-0.185584 +-0.183584,-0.183584,-0.183584,-0.183584,-0.183584,-0.183584 +-0.181584,-0.181584,-0.181584,-0.181584,-0.181584,-0.181584 +-0.179584,-0.179584,-0.179584,-0.179584,-0.179584,-0.179584 +-0.177584,-0.177584,-0.177584,-0.177584,-0.177584,-0.177584 +-0.175584,-0.175584,-0.175584,-0.175584,-0.175584,-0.175584 +-0.173584,-0.173584,-0.173584,-0.173584,-0.173584,-0.173584 +-0.171584,-0.171584,-0.171584,-0.171584,-0.171584,-0.171584 +-0.169584,-0.169584,-0.169584,-0.169584,-0.169584,-0.169584 +-0.167584,-0.167584,-0.167584,-0.167584,-0.167584,-0.167584 +-0.165584,-0.165584,-0.165584,-0.165584,-0.165584,-0.165584 +-0.163584,-0.163584,-0.163584,-0.163584,-0.163584,-0.163584 +-0.161584,-0.161584,-0.161584,-0.161584,-0.161584,-0.161584 +-0.159584,-0.159584,-0.159584,-0.159584,-0.159584,-0.159584 +-0.157584,-0.157584,-0.157584,-0.157584,-0.157584,-0.157584 +-0.155584,-0.155584,-0.155584,-0.155584,-0.155584,-0.155584 +-0.153584,-0.153584,-0.153584,-0.153584,-0.153584,-0.153584 +-0.151584,-0.151584,-0.151584,-0.151584,-0.151584,-0.151584 +-0.149584,-0.149584,-0.149584,-0.149584,-0.149584,-0.149584 +-0.147584,-0.147584,-0.147584,-0.147584,-0.147584,-0.147584 +-0.145584,-0.145584,-0.145584,-0.145584,-0.145584,-0.145584 +-0.143584,-0.143584,-0.143584,-0.143584,-0.143584,-0.143584 +-0.141584,-0.141584,-0.141584,-0.141584,-0.141584,-0.141584 +-0.139584,-0.139584,-0.139584,-0.139584,-0.139584,-0.139584 +-0.137584,-0.137584,-0.137584,-0.137584,-0.137584,-0.137584 +-0.135584,-0.135584,-0.135584,-0.135584,-0.135584,-0.135584 +-0.133584,-0.133584,-0.133584,-0.133584,-0.133584,-0.133584 +-0.131584,-0.131584,-0.131584,-0.131584,-0.131584,-0.131584 +-0.129584,-0.129584,-0.129584,-0.129584,-0.129584,-0.129584 +-0.127584,-0.127584,-0.127584,-0.127584,-0.127584,-0.127584 +-0.125584,-0.125584,-0.125584,-0.125584,-0.125584,-0.125584 +-0.123584,-0.123584,-0.123584,-0.123584,-0.123584,-0.123584 +-0.121584,-0.121584,-0.121584,-0.121584,-0.121584,-0.121584 +-0.119584,-0.119584,-0.119584,-0.119584,-0.119584,-0.119584 +-0.117584,-0.117584,-0.117584,-0.117584,-0.117584,-0.117584 +-0.115584,-0.115584,-0.115584,-0.115584,-0.115584,-0.115584 +-0.113584,-0.113584,-0.113584,-0.113584,-0.113584,-0.113584 +-0.111584,-0.111584,-0.111584,-0.111584,-0.111584,-0.111584 +-0.109584,-0.109584,-0.109584,-0.109584,-0.109584,-0.109584 +-0.107584,-0.107584,-0.107584,-0.107584,-0.107584,-0.107584 +-0.105584,-0.105584,-0.105584,-0.105584,-0.105584,-0.105584 +-0.103584,-0.103584,-0.103584,-0.103584,-0.103584,-0.103584 +-0.101584,-0.101584,-0.101584,-0.101584,-0.101584,-0.101584 +-0.099584,-0.099584,-0.099584,-0.099584,-0.099584,-0.099584 +-0.097584,-0.097584,-0.097584,-0.097584,-0.097584,-0.097584 +-0.095584,-0.095584,-0.095584,-0.095584,-0.095584,-0.095584 +-0.093584,-0.093584,-0.093584,-0.093584,-0.093584,-0.093584 +-0.091584,-0.091584,-0.091584,-0.091584,-0.091584,-0.091584 +-0.089584,-0.089584,-0.089584,-0.089584,-0.089584,-0.089584 +-0.087584,-0.087584,-0.087584,-0.087584,-0.087584,-0.087584 +-0.085584,-0.085584,-0.085584,-0.085584,-0.085584,-0.085584 +-0.083584,-0.083584,-0.083584,-0.083584,-0.083584,-0.083584 +-0.081584,-0.081584,-0.081584,-0.081584,-0.081584,-0.081584 +-0.079584,-0.079584,-0.079584,-0.079584,-0.079584,-0.079584 +-0.077584,-0.077584,-0.077584,-0.077584,-0.077584,-0.077584 +-0.075584,-0.075584,-0.075584,-0.075584,-0.075584,-0.075584 +-0.073584,-0.073584,-0.073584,-0.073584,-0.073584,-0.073584 +-0.071584,-0.071584,-0.071584,-0.071584,-0.071584,-0.071584 +-0.069584,-0.069584,-0.069584,-0.069584,-0.069584,-0.069584 +-0.067584,-0.067584,-0.067584,-0.067584,-0.067584,-0.067584 +-0.065584,-0.065584,-0.065584,-0.065584,-0.065584,-0.065584 +-0.063584,-0.063584,-0.063584,-0.063584,-0.063584,-0.063584 +-0.061584,-0.061584,-0.061584,-0.061584,-0.061584,-0.061584 +-0.059584,-0.059584,-0.059584,-0.059584,-0.059584,-0.059584 +-0.057584,-0.057584,-0.057584,-0.057584,-0.057584,-0.057584 +-0.055584,-0.055584,-0.055584,-0.055584,-0.055584,-0.055584 +-0.053584,-0.053584,-0.053584,-0.053584,-0.053584,-0.053584 +-0.051584,-0.051584,-0.051584,-0.051584,-0.051584,-0.051584 +-0.049584,-0.049584,-0.049584,-0.049584,-0.049584,-0.049584 +-0.047584,-0.047584,-0.047584,-0.047584,-0.047584,-0.047584 +-0.045584,-0.045584,-0.045584,-0.045584,-0.045584,-0.045584 +-0.043584,-0.043584,-0.043584,-0.043584,-0.043584,-0.043584 +-0.041584,-0.041584,-0.041584,-0.041584,-0.041584,-0.041584 +-0.039584,-0.039584,-0.039584,-0.039584,-0.039584,-0.039584 +-0.037584,-0.037584,-0.037584,-0.037584,-0.037584,-0.037584 +-0.035584,-0.035584,-0.035584,-0.035584,-0.035584,-0.035584 +-0.033584,-0.033584,-0.033584,-0.033584,-0.033584,-0.033584 +-0.031584,-0.031584,-0.031584,-0.031584,-0.031584,-0.031584 +-0.029584,-0.029584,-0.029584,-0.029584,-0.029584,-0.029584 +-0.027584,-0.027584,-0.027584,-0.027584,-0.027584,-0.027584 +-0.025588,-0.025588,-0.025588,-0.025588,-0.025588,-0.025588 +-0.023606,-0.023606,-0.023606,-0.023606,-0.023606,-0.023606 +-0.021647,-0.021647,-0.021647,-0.021647,-0.021647,-0.021647 +-0.019721,-0.019721,-0.019721,-0.019721,-0.019721,-0.019721 +-0.017839,-0.017839,-0.017839,-0.017839,-0.017839,-0.017839 +-0.016011,-0.016011,-0.016011,-0.016011,-0.016011,-0.016011 +-0.014246,-0.014246,-0.014246,-0.014246,-0.014246,-0.014246 +-0.012555,-0.012555,-0.012555,-0.012555,-0.012555,-0.012555 +-0.010947,-0.010947,-0.010947,-0.010947,-0.010947,-0.010947 +-0.009432,-0.009432,-0.009432,-0.009432,-0.009432,-0.009432 +-0.008021,-0.008021,-0.008021,-0.008021,-0.008021,-0.008021 +-0.006724,-0.006724,-0.006724,-0.006724,-0.006724,-0.006724 +-0.00555,-0.00555,-0.00555,-0.00555,-0.00555,-0.00555 +-0.004509,-0.004509,-0.004509,-0.004509,-0.004509,-0.004509 +-0.003606,-0.003606,-0.003606,-0.003606,-0.003606,-0.003606 +-0.002833,-0.002833,-0.002833,-0.002833,-0.002833,-0.002833 +-0.002179,-0.002179,-0.002179,-0.002179,-0.002179,-0.002179 +-0.001634,-0.001634,-0.001634,-0.001634,-0.001634,-0.001634 +-0.001189,-0.001189,-0.001189,-0.001189,-0.001189,-0.001189 +-0.000832,-0.000832,-0.000832,-0.000832,-0.000832,-0.000832 +-0.000556,-0.000556,-0.000556,-0.000556,-0.000556,-0.000556 +-0.000348,-0.000348,-0.000348,-0.000348,-0.000348,-0.000348 +-0.0002,-0.0002,-0.0002,-0.0002,-0.0002,-0.0002 +-0.000101,-0.000101,-0.000101,-0.000101,-0.000101,-0.000101 +-0.000042,-0.000042,-0.000042,-0.000042,-0.000042,-0.000042 +-0.000012,-0.000012,-0.000012,-0.000012,-0.000012,-0.000012 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000017,0.000017,0.000017,0.000017,0.000017,0.000017 +0.000056,0.000056,0.000056,0.000056,0.000056,0.000056 +0.000133,0.000133,0.000133,0.000133,0.000133,0.000133 +0.00026,0.00026,0.00026,0.00026,0.00026,0.00026 +0.00045,0.00045,0.00045,0.00045,0.00045,0.00045 +0.000715,0.000715,0.000715,0.000715,0.000715,0.000715 +0.001067,0.001067,0.001067,0.001067,0.001067,0.001067 +0.001519,0.001519,0.001519,0.001519,0.001519,0.001519 +0.002083,0.002083,0.002083,0.002083,0.002083,0.002083 +0.002773,0.002773,0.002773,0.002773,0.002773,0.002773 +0.0036,0.0036,0.0036,0.0036,0.0036,0.0036 +0.004577,0.004577,0.004577,0.004577,0.004577,0.004577 +0.005717,0.005717,0.005717,0.005717,0.005717,0.005717 +0.007031,0.007031,0.007031,0.007031,0.007031,0.007031 +0.008533,0.008533,0.008533,0.008533,0.008533,0.008533 +0.010228,0.010228,0.010228,0.010228,0.010228,0.010228 +0.012106,0.012106,0.012106,0.012106,0.012106,0.012106 +0.014155,0.014155,0.014155,0.014155,0.014155,0.014155 +0.01636,0.01636,0.01636,0.01636,0.01636,0.01636 +0.018712,0.018712,0.018712,0.018712,0.018712,0.018712 +0.021196,0.021196,0.021196,0.021196,0.021196,0.021196 +0.0238,0.0238,0.0238,0.0238,0.0238,0.0238 +0.026512,0.026512,0.026512,0.026512,0.026512,0.026512 +0.02932,0.02932,0.02932,0.02932,0.02932,0.02932 +0.03221,0.03221,0.03221,0.03221,0.03221,0.03221 +0.03517,0.03517,0.03517,0.03517,0.03517,0.03517 +0.038188,0.038188,0.038188,0.038188,0.038188,0.038188 +0.041252,0.041252,0.041252,0.041252,0.041252,0.041252 +0.044348,0.044348,0.044348,0.044348,0.044348,0.044348 +0.047465,0.047465,0.047465,0.047465,0.047465,0.047465 +0.050589,0.050589,0.050589,0.050589,0.050589,0.050589 +0.053714,0.053714,0.053714,0.053714,0.053714,0.053714 +0.056839,0.056839,0.056839,0.056839,0.056839,0.056839 +0.059964,0.059964,0.059964,0.059964,0.059964,0.059964 +0.063089,0.063089,0.063089,0.063089,0.063089,0.063089 +0.066214,0.066214,0.066214,0.066214,0.066214,0.066214 +0.069339,0.069339,0.069339,0.069339,0.069339,0.069339 +0.072464,0.072464,0.072464,0.072464,0.072464,0.072464 +0.075589,0.075589,0.075589,0.075589,0.075589,0.075589 +0.078714,0.078714,0.078714,0.078714,0.078714,0.078714 +0.081839,0.081839,0.081839,0.081839,0.081839,0.081839 +0.084964,0.084964,0.084964,0.084964,0.084964,0.084964 +0.088089,0.088089,0.088089,0.088089,0.088089,0.088089 +0.091214,0.091214,0.091214,0.091214,0.091214,0.091214 +0.094339,0.094339,0.094339,0.094339,0.094339,0.094339 +0.097464,0.097464,0.097464,0.097464,0.097464,0.097464 +0.100589,0.100589,0.100589,0.100589,0.100589,0.100589 +0.103714,0.103714,0.103714,0.103714,0.103714,0.103714 +0.106839,0.106839,0.106839,0.106839,0.106839,0.106839 +0.109964,0.109964,0.109964,0.109964,0.109964,0.109964 +0.113089,0.113089,0.113089,0.113089,0.113089,0.113089 +0.116214,0.116214,0.116214,0.116214,0.116214,0.116214 +0.119339,0.119339,0.119339,0.119339,0.119339,0.119339 +0.122464,0.122464,0.122464,0.122464,0.122464,0.122464 +0.125589,0.125589,0.125589,0.125589,0.125589,0.125589 +0.128714,0.128714,0.128714,0.128714,0.128714,0.128714 +0.131839,0.131839,0.131839,0.131839,0.131839,0.131839 +0.134964,0.134964,0.134964,0.134964,0.134964,0.134964 +0.138089,0.138089,0.138089,0.138089,0.138089,0.138089 +0.141214,0.141214,0.141214,0.141214,0.141214,0.141214 +0.144339,0.144339,0.144339,0.144339,0.144339,0.144339 +0.147464,0.147464,0.147464,0.147464,0.147464,0.147464 +0.150589,0.150589,0.150589,0.150589,0.150589,0.150589 +0.153714,0.153714,0.153714,0.153714,0.153714,0.153714 +0.156839,0.156839,0.156839,0.156839,0.156839,0.156839 +0.159964,0.159964,0.159964,0.159964,0.159964,0.159964 +0.163089,0.163089,0.163089,0.163089,0.163089,0.163089 +0.166214,0.166214,0.166214,0.166214,0.166214,0.166214 +0.169339,0.169339,0.169339,0.169339,0.169339,0.169339 +0.172464,0.172464,0.172464,0.172464,0.172464,0.172464 +0.175589,0.175589,0.175589,0.175589,0.175589,0.175589 +0.178714,0.178714,0.178714,0.178714,0.178714,0.178714 +0.181839,0.181839,0.181839,0.181839,0.181839,0.181839 +0.184964,0.184964,0.184964,0.184964,0.184964,0.184964 +0.188089,0.188089,0.188089,0.188089,0.188089,0.188089 +0.191214,0.191214,0.191214,0.191214,0.191214,0.191214 +0.194339,0.194339,0.194339,0.194339,0.194339,0.194339 +0.197464,0.197464,0.197464,0.197464,0.197464,0.197464 +0.200589,0.200589,0.200589,0.200589,0.200589,0.200589 +0.203714,0.203714,0.203714,0.203714,0.203714,0.203714 +0.206839,0.206839,0.206839,0.206839,0.206839,0.206839 +0.209964,0.209964,0.209964,0.209964,0.209964,0.209964 +0.213089,0.213089,0.213089,0.213089,0.213089,0.213089 +0.216214,0.216214,0.216214,0.216214,0.216214,0.216214 +0.219339,0.219339,0.219339,0.219339,0.219339,0.219339 +0.222464,0.222464,0.222464,0.222464,0.222464,0.222464 +0.225589,0.225589,0.225589,0.225589,0.225589,0.225589 +0.228714,0.228714,0.228714,0.228714,0.228714,0.228714 +0.231839,0.231839,0.231839,0.231839,0.231839,0.231839 +0.234964,0.234964,0.234964,0.234964,0.234964,0.234964 +0.238089,0.238089,0.238089,0.238089,0.238089,0.238089 +0.241214,0.241214,0.241214,0.241214,0.241214,0.241214 +0.244339,0.244339,0.244339,0.244339,0.244339,0.244339 +0.247464,0.247464,0.247464,0.247464,0.247464,0.247464 +0.250589,0.250589,0.250589,0.250589,0.250589,0.250589 +0.253714,0.253714,0.253714,0.253714,0.253714,0.253714 +0.256839,0.256839,0.256839,0.256839,0.256839,0.256839 +0.259964,0.259964,0.259964,0.259964,0.259964,0.259964 +0.263089,0.263089,0.263089,0.263089,0.263089,0.263089 +0.266214,0.266214,0.266214,0.266214,0.266214,0.266214 +0.269339,0.269339,0.269339,0.269339,0.269339,0.269339 +0.272464,0.272464,0.272464,0.272464,0.272464,0.272464 +0.275589,0.275589,0.275589,0.275589,0.275589,0.275589 +0.278714,0.278714,0.278714,0.278714,0.278714,0.278714 +0.281839,0.281839,0.281839,0.281839,0.281839,0.281839 +0.284964,0.284964,0.284964,0.284964,0.284964,0.284964 +0.288089,0.288089,0.288089,0.288089,0.288089,0.288089 +0.291214,0.291214,0.291214,0.291214,0.291214,0.291214 +0.294339,0.294339,0.294339,0.294339,0.294339,0.294339 +0.297464,0.297464,0.297464,0.297464,0.297464,0.297464 +0.300589,0.300589,0.300589,0.300589,0.300589,0.300589 +0.303714,0.303714,0.303714,0.303714,0.303714,0.303714 +0.306839,0.306839,0.306839,0.306839,0.306839,0.306839 +0.309964,0.309964,0.309964,0.309964,0.309964,0.309964 +0.313089,0.313089,0.313089,0.313089,0.313089,0.313089 +0.316214,0.316214,0.316214,0.316214,0.316214,0.316214 +0.319339,0.319339,0.319339,0.319339,0.319339,0.319339 +0.322464,0.322464,0.322464,0.322464,0.322464,0.322464 +0.325589,0.325589,0.325589,0.325589,0.325589,0.325589 +0.328714,0.328714,0.328714,0.328714,0.328714,0.328714 +0.331839,0.331839,0.331839,0.331839,0.331839,0.331839 +0.334964,0.334964,0.334964,0.334964,0.334964,0.334964 +0.338089,0.338089,0.338089,0.338089,0.338089,0.338089 +0.341214,0.341214,0.341214,0.341214,0.341214,0.341214 +0.344339,0.344339,0.344339,0.344339,0.344339,0.344339 +0.347464,0.347464,0.347464,0.347464,0.347464,0.347464 +0.350589,0.350589,0.350589,0.350589,0.350589,0.350589 +0.353714,0.353714,0.353714,0.353714,0.353714,0.353714 +0.356839,0.356839,0.356839,0.356839,0.356839,0.356839 +0.359964,0.359964,0.359964,0.359964,0.359964,0.359964 +0.363089,0.363089,0.363089,0.363089,0.363089,0.363089 +0.366214,0.366214,0.366214,0.366214,0.366214,0.366214 +0.369339,0.369339,0.369339,0.369339,0.369339,0.369339 +0.372464,0.372464,0.372464,0.372464,0.372464,0.372464 +0.375589,0.375589,0.375589,0.375589,0.375589,0.375589 +0.378714,0.378714,0.378714,0.378714,0.378714,0.378714 +0.381839,0.381839,0.381839,0.381839,0.381839,0.381839 +0.384964,0.384964,0.384964,0.384964,0.384964,0.384964 +0.388089,0.388089,0.388089,0.388089,0.388089,0.388089 +0.391214,0.391214,0.391214,0.391214,0.391214,0.391214 +0.394339,0.394339,0.394339,0.394339,0.394339,0.394339 +0.397464,0.397464,0.397464,0.397464,0.397464,0.397464 +0.400589,0.400589,0.400589,0.400589,0.400589,0.400589 +0.403714,0.403714,0.403714,0.403714,0.403714,0.403714 +0.406839,0.406839,0.406839,0.406839,0.406839,0.406839 +0.409964,0.409964,0.409964,0.409964,0.409964,0.409964 +0.413089,0.413089,0.413089,0.413089,0.413089,0.413089 +0.416214,0.416214,0.416214,0.416214,0.416214,0.416214 +0.419339,0.419339,0.419339,0.419339,0.419339,0.419339 +0.422464,0.422464,0.422464,0.422464,0.422464,0.422464 +0.425589,0.425589,0.425589,0.425589,0.425589,0.425589 +0.428714,0.428714,0.428714,0.428714,0.428714,0.428714 +0.431839,0.431839,0.431839,0.431839,0.431839,0.431839 +0.434964,0.434964,0.434964,0.434964,0.434964,0.434964 +0.438089,0.438089,0.438089,0.438089,0.438089,0.438089 +0.441214,0.441214,0.441214,0.441214,0.441214,0.441214 +0.444339,0.444339,0.444339,0.444339,0.444339,0.444339 +0.447464,0.447464,0.447464,0.447464,0.447464,0.447464 +0.450589,0.450589,0.450589,0.450589,0.450589,0.450589 +0.453714,0.453714,0.453714,0.453714,0.453714,0.453714 +0.456839,0.456839,0.456839,0.456839,0.456839,0.456839 +0.459964,0.459964,0.459964,0.459964,0.459964,0.459964 +0.463089,0.463089,0.463089,0.463089,0.463089,0.463089 +0.466214,0.466214,0.466214,0.466214,0.466214,0.466214 +0.469339,0.469339,0.469339,0.469339,0.469339,0.469339 +0.472464,0.472464,0.472464,0.472464,0.472464,0.472464 +0.475589,0.475589,0.475589,0.475589,0.475589,0.475589 +0.478714,0.478714,0.478714,0.478714,0.478714,0.478714 +0.481839,0.481839,0.481839,0.481839,0.481839,0.481839 +0.484964,0.484964,0.484964,0.484964,0.484964,0.484964 +0.488089,0.488089,0.488089,0.488089,0.488089,0.488089 +0.491214,0.491214,0.491214,0.491214,0.491214,0.491214 +0.494339,0.494339,0.494339,0.494339,0.494339,0.494339 +0.497464,0.497464,0.497464,0.497464,0.497464,0.497464 +0.500589,0.500589,0.500589,0.500589,0.500589,0.500589 +0.503714,0.503714,0.503714,0.503714,0.503714,0.503714 +0.506839,0.506839,0.506839,0.506839,0.506839,0.506839 +0.509964,0.509964,0.509964,0.509964,0.509964,0.509964 +0.513089,0.513089,0.513089,0.513089,0.513089,0.513089 +0.516214,0.516214,0.516214,0.516214,0.516214,0.516214 +0.519339,0.519339,0.519339,0.519339,0.519339,0.519339 +0.522464,0.522464,0.522464,0.522464,0.522464,0.522464 +0.525589,0.525589,0.525589,0.525589,0.525589,0.525589 +0.528714,0.528714,0.528714,0.528714,0.528714,0.528714 +0.531839,0.531839,0.531839,0.531839,0.531839,0.531839 +0.534964,0.534964,0.534964,0.534964,0.534964,0.534964 +0.538089,0.538089,0.538089,0.538089,0.538089,0.538089 +0.541214,0.541214,0.541214,0.541214,0.541214,0.541214 +0.544339,0.544339,0.544339,0.544339,0.544339,0.544339 +0.547464,0.547464,0.547464,0.547464,0.547464,0.547464 +0.550589,0.550589,0.550589,0.550589,0.550589,0.550589 +0.553714,0.553714,0.553714,0.553714,0.553714,0.553714 +0.556839,0.556839,0.556839,0.556839,0.556839,0.556839 +0.559964,0.559964,0.559964,0.559964,0.559964,0.559964 +0.563089,0.563089,0.563089,0.563089,0.563089,0.563089 +0.566214,0.566214,0.566214,0.566214,0.566214,0.566214 +0.569339,0.569339,0.569339,0.569339,0.569339,0.569339 +0.572464,0.572464,0.572464,0.572464,0.572464,0.572464 +0.575589,0.575589,0.575589,0.575589,0.575589,0.575589 +0.578714,0.578714,0.578714,0.578714,0.578714,0.578714 +0.581839,0.581839,0.581839,0.581839,0.581839,0.581839 +0.584964,0.584964,0.584964,0.584964,0.584964,0.584964 +0.588089,0.588089,0.588089,0.588089,0.588089,0.588089 +0.591214,0.591214,0.591214,0.591214,0.591214,0.591214 +0.594339,0.594339,0.594339,0.594339,0.594339,0.594339 +0.597464,0.597464,0.597464,0.597464,0.597464,0.597464 +0.600589,0.600589,0.600589,0.600589,0.600589,0.600589 +0.603714,0.603714,0.603714,0.603714,0.603714,0.603714 +0.606839,0.606839,0.606839,0.606839,0.606839,0.606839 +0.609964,0.609964,0.609964,0.609964,0.609964,0.609964 +0.613089,0.613089,0.613089,0.613089,0.613089,0.613089 +0.616214,0.616214,0.616214,0.616214,0.616214,0.616214 +0.619339,0.619339,0.619339,0.619339,0.619339,0.619339 +0.622464,0.622464,0.622464,0.622464,0.622464,0.622464 +0.625589,0.625589,0.625589,0.625589,0.625589,0.625589 +0.628714,0.628714,0.628714,0.628714,0.628714,0.628714 +0.631839,0.631839,0.631839,0.631839,0.631839,0.631839 +0.634964,0.634964,0.634964,0.634964,0.634964,0.634964 +0.638089,0.638089,0.638089,0.638089,0.638089,0.638089 +0.641214,0.641214,0.641214,0.641214,0.641214,0.641214 +0.644339,0.644339,0.644339,0.644339,0.644339,0.644339 +0.647464,0.647464,0.647464,0.647464,0.647464,0.647464 +0.650589,0.650589,0.650589,0.650589,0.650589,0.650589 +0.653714,0.653714,0.653714,0.653714,0.653714,0.653714 +0.656839,0.656839,0.656839,0.656839,0.656839,0.656839 +0.659964,0.659964,0.659964,0.659964,0.659964,0.659964 +0.663089,0.663089,0.663089,0.663089,0.663089,0.663089 +0.666214,0.666214,0.666214,0.666214,0.666214,0.666214 +0.669339,0.669339,0.669339,0.669339,0.669339,0.669339 +0.672464,0.672464,0.672464,0.672464,0.672464,0.672464 +0.675589,0.675589,0.675589,0.675589,0.675589,0.675589 +0.678714,0.678714,0.678714,0.678714,0.678714,0.678714 +0.681839,0.681839,0.681839,0.681839,0.681839,0.681839 +0.684964,0.684964,0.684964,0.684964,0.684964,0.684964 +0.688089,0.688089,0.688089,0.688089,0.688089,0.688089 +0.691214,0.691214,0.691214,0.691214,0.691214,0.691214 +0.694339,0.694339,0.694339,0.694339,0.694339,0.694339 +0.697464,0.697464,0.697464,0.697464,0.697464,0.697464 +0.700589,0.700589,0.700589,0.700589,0.700589,0.700589 +0.703714,0.703714,0.703714,0.703714,0.703714,0.703714 +0.706839,0.706839,0.706839,0.706839,0.706839,0.706839 +0.709964,0.709964,0.709964,0.709964,0.709964,0.709964 +0.713089,0.713089,0.713089,0.713089,0.713089,0.713089 +0.716214,0.716214,0.716214,0.716214,0.716214,0.716214 +0.719339,0.719339,0.719339,0.719339,0.719339,0.719339 +0.722464,0.722464,0.722464,0.722464,0.722464,0.722464 +0.725589,0.725589,0.725589,0.725589,0.725589,0.725589 +0.728714,0.728714,0.728714,0.728714,0.728714,0.728714 +0.731839,0.731839,0.731839,0.731839,0.731839,0.731839 +0.734964,0.734964,0.734964,0.734964,0.734964,0.734964 +0.738089,0.738089,0.738089,0.738089,0.738089,0.738089 +0.741214,0.741214,0.741214,0.741214,0.741214,0.741214 +0.744339,0.744339,0.744339,0.744339,0.744339,0.744339 +0.747464,0.747464,0.747464,0.747464,0.747464,0.747464 +0.750589,0.750589,0.750589,0.750589,0.750589,0.750589 +0.753714,0.753714,0.753714,0.753714,0.753714,0.753714 +0.756839,0.756839,0.756839,0.756839,0.756839,0.756839 +0.759964,0.759964,0.759964,0.759964,0.759964,0.759964 +0.763089,0.763089,0.763089,0.763089,0.763089,0.763089 +0.766214,0.766214,0.766214,0.766214,0.766214,0.766214 +0.769339,0.769339,0.769339,0.769339,0.769339,0.769339 +0.772464,0.772464,0.772464,0.772464,0.772464,0.772464 +0.775589,0.775589,0.775589,0.775589,0.775589,0.775589 +0.778714,0.778714,0.778714,0.778714,0.778714,0.778714 +0.781839,0.781839,0.781839,0.781839,0.781839,0.781839 +0.784964,0.784964,0.784964,0.784964,0.784964,0.784964 +0.788089,0.788089,0.788089,0.788089,0.788089,0.788089 +0.791214,0.791214,0.791214,0.791214,0.791214,0.791214 +0.794339,0.794339,0.794339,0.794339,0.794339,0.794339 +0.797464,0.797464,0.797464,0.797464,0.797464,0.797464 +0.800589,0.800589,0.800589,0.800589,0.800589,0.800589 +0.803714,0.803714,0.803714,0.803714,0.803714,0.803714 +0.806839,0.806839,0.806839,0.806839,0.806839,0.806839 +0.809964,0.809964,0.809964,0.809964,0.809964,0.809964 +0.813089,0.813089,0.813089,0.813089,0.813089,0.813089 +0.816214,0.816214,0.816214,0.816214,0.816214,0.816214 +0.819339,0.819339,0.819339,0.819339,0.819339,0.819339 +0.822464,0.822464,0.822464,0.822464,0.822464,0.822464 +0.825589,0.825589,0.825589,0.825589,0.825589,0.825589 +0.828714,0.828714,0.828714,0.828714,0.828714,0.828714 +0.831839,0.831839,0.831839,0.831839,0.831839,0.831839 +0.834964,0.834964,0.834964,0.834964,0.834964,0.834964 +0.838089,0.838089,0.838089,0.838089,0.838089,0.838089 +0.841214,0.841214,0.841214,0.841214,0.841214,0.841214 +0.844339,0.844339,0.844339,0.844339,0.844339,0.844339 +0.847464,0.847464,0.847464,0.847464,0.847464,0.847464 +0.850589,0.850589,0.850589,0.850589,0.850589,0.850589 +0.853714,0.853714,0.853714,0.853714,0.853714,0.853714 +0.856839,0.856839,0.856839,0.856839,0.856839,0.856839 +0.859964,0.859964,0.859964,0.859964,0.859964,0.859964 +0.863089,0.863089,0.863089,0.863089,0.863089,0.863089 +0.866214,0.866214,0.866214,0.866214,0.866214,0.866214 +0.869339,0.869339,0.869339,0.869339,0.869339,0.869339 +0.872464,0.872464,0.872464,0.872464,0.872464,0.872464 +0.875589,0.875589,0.875589,0.875589,0.875589,0.875589 +0.878714,0.878714,0.878714,0.878714,0.878714,0.878714 +0.881839,0.881839,0.881839,0.881839,0.881839,0.881839 +0.884964,0.884964,0.884964,0.884964,0.884964,0.884964 +0.888089,0.888089,0.888089,0.888089,0.888089,0.888089 +0.891214,0.891214,0.891214,0.891214,0.891214,0.891214 +0.894339,0.894339,0.894339,0.894339,0.894339,0.894339 +0.897464,0.897464,0.897464,0.897464,0.897464,0.897464 +0.900589,0.900589,0.900589,0.900589,0.900589,0.900589 +0.903714,0.903714,0.903714,0.903714,0.903714,0.903714 +0.906839,0.906839,0.906839,0.906839,0.906839,0.906839 +0.909964,0.909964,0.909964,0.909964,0.909964,0.909964 +0.913089,0.913089,0.913089,0.913089,0.913089,0.913089 +0.916214,0.916214,0.916214,0.916214,0.916214,0.916214 +0.919339,0.919339,0.919339,0.919339,0.919339,0.919339 +0.922464,0.922464,0.922464,0.922464,0.922464,0.922464 +0.925589,0.925589,0.925589,0.925589,0.925589,0.925589 +0.928714,0.928714,0.928714,0.928714,0.928714,0.928714 +0.931839,0.931839,0.931839,0.931839,0.931839,0.931839 +0.934964,0.934964,0.934964,0.934964,0.934964,0.934964 +0.938089,0.938089,0.938089,0.938089,0.938089,0.938089 +0.941214,0.941214,0.941214,0.941214,0.941214,0.941214 +0.944339,0.944339,0.944339,0.944339,0.944339,0.944339 +0.947464,0.947464,0.947464,0.947464,0.947464,0.947464 +0.950589,0.950589,0.950589,0.950589,0.950589,0.950589 +0.953714,0.953714,0.953714,0.953714,0.953714,0.953714 +0.956839,0.956839,0.956839,0.956839,0.956839,0.956839 +0.959964,0.959964,0.959964,0.959964,0.959964,0.959964 +0.963089,0.963089,0.963089,0.963089,0.963089,0.963089 +0.966214,0.966214,0.966214,0.966214,0.966214,0.966214 +0.969339,0.969339,0.969339,0.969339,0.969339,0.969339 +0.972464,0.972464,0.972464,0.972464,0.972464,0.972464 +0.975589,0.975589,0.975589,0.975589,0.975589,0.975589 +0.978714,0.978714,0.978714,0.978714,0.978714,0.978714 +0.981839,0.981839,0.981839,0.981839,0.981839,0.981839 +0.984964,0.984964,0.984964,0.984964,0.984964,0.984964 +0.988089,0.988089,0.988089,0.988089,0.988089,0.988089 +0.991214,0.991214,0.991214,0.991214,0.991214,0.991214 +0.994339,0.994339,0.994339,0.994339,0.994339,0.994339 +0.997464,0.997464,0.997464,0.997464,0.997464,0.997464 +1.000589,1.000589,1.000589,1.000589,1.000589,1.000589 +1.003714,1.003714,1.003714,1.003714,1.003714,1.003714 +1.006839,1.006839,1.006839,1.006839,1.006839,1.006839 +1.009964,1.009964,1.009964,1.009964,1.009964,1.009964 +1.013089,1.013089,1.013089,1.013089,1.013089,1.013089 +1.016214,1.016214,1.016214,1.016214,1.016214,1.016214 +1.019339,1.019339,1.019339,1.019339,1.019339,1.019339 +1.022464,1.022464,1.022464,1.022464,1.022464,1.022464 +1.025589,1.025589,1.025589,1.025589,1.025589,1.025589 +1.028714,1.028714,1.028714,1.028714,1.028714,1.028714 +1.031839,1.031839,1.031839,1.031839,1.031839,1.031839 +1.034964,1.034964,1.034964,1.034964,1.034964,1.034964 +1.038089,1.038089,1.038089,1.038089,1.038089,1.038089 +1.041214,1.041214,1.041214,1.041214,1.041214,1.041214 +1.044339,1.044339,1.044339,1.044339,1.044339,1.044339 +1.047464,1.047464,1.047464,1.047464,1.047464,1.047464 +1.050589,1.050589,1.050589,1.050589,1.050589,1.050589 +1.053714,1.053714,1.053714,1.053714,1.053714,1.053714 +1.056839,1.056839,1.056839,1.056839,1.056839,1.056839 +1.059964,1.059964,1.059964,1.059964,1.059964,1.059964 +1.063089,1.063089,1.063089,1.063089,1.063089,1.063089 +1.066214,1.066214,1.066214,1.066214,1.066214,1.066214 +1.069339,1.069339,1.069339,1.069339,1.069339,1.069339 +1.072464,1.072464,1.072464,1.072464,1.072464,1.072464 +1.075589,1.075589,1.075589,1.075589,1.075589,1.075589 +1.078714,1.078714,1.078714,1.078714,1.078714,1.078714 +1.081839,1.081839,1.081839,1.081839,1.081839,1.081839 +1.084964,1.084964,1.084964,1.084964,1.084964,1.084964 +1.088089,1.088089,1.088089,1.088089,1.088089,1.088089 +1.091214,1.091214,1.091214,1.091214,1.091214,1.091214 +1.094339,1.094339,1.094339,1.094339,1.094339,1.094339 +1.097464,1.097464,1.097464,1.097464,1.097464,1.097464 +1.100589,1.100589,1.100589,1.100589,1.100589,1.100589 +1.103714,1.103714,1.103714,1.103714,1.103714,1.103714 +1.106839,1.106839,1.106839,1.106839,1.106839,1.106839 +1.109964,1.109964,1.109964,1.109964,1.109964,1.109964 +1.113089,1.113089,1.113089,1.113089,1.113089,1.113089 +1.116214,1.116214,1.116214,1.116214,1.116214,1.116214 +1.119339,1.119339,1.119339,1.119339,1.119339,1.119339 +1.122464,1.122464,1.122464,1.122464,1.122464,1.122464 +1.125589,1.125589,1.125589,1.125589,1.125589,1.125589 +1.128714,1.128714,1.128714,1.128714,1.128714,1.128714 +1.131839,1.131839,1.131839,1.131839,1.131839,1.131839 +1.134964,1.134964,1.134964,1.134964,1.134964,1.134964 +1.138089,1.138089,1.138089,1.138089,1.138089,1.138089 +1.141214,1.141214,1.141214,1.141214,1.141214,1.141214 +1.144339,1.144339,1.144339,1.144339,1.144339,1.144339 +1.147464,1.147464,1.147464,1.147464,1.147464,1.147464 +1.150589,1.150589,1.150589,1.150589,1.150589,1.150589 +1.153714,1.153714,1.153714,1.153714,1.153714,1.153714 +1.156839,1.156839,1.156839,1.156839,1.156839,1.156839 +1.159964,1.159964,1.159964,1.159964,1.159964,1.159964 +1.163089,1.163089,1.163089,1.163089,1.163089,1.163089 +1.166214,1.166214,1.166214,1.166214,1.166214,1.166214 +1.169339,1.169339,1.169339,1.169339,1.169339,1.169339 +1.172464,1.172464,1.172464,1.172464,1.172464,1.172464 +1.175589,1.175589,1.175589,1.175589,1.175589,1.175589 +1.178714,1.178714,1.178714,1.178714,1.178714,1.178714 +1.181839,1.181839,1.181839,1.181839,1.181839,1.181839 +1.184964,1.184964,1.184964,1.184964,1.184964,1.184964 +1.188089,1.188089,1.188089,1.188089,1.188089,1.188089 +1.191214,1.191214,1.191214,1.191214,1.191214,1.191214 +1.194339,1.194339,1.194339,1.194339,1.194339,1.194339 +1.197464,1.197464,1.197464,1.197464,1.197464,1.197464 +1.200589,1.200589,1.200589,1.200589,1.200589,1.200589 +1.203714,1.203714,1.203714,1.203714,1.203714,1.203714 +1.206839,1.206839,1.206839,1.206839,1.206839,1.206839 +1.209964,1.209964,1.209964,1.209964,1.209964,1.209964 +1.213089,1.213089,1.213089,1.213089,1.213089,1.213089 +1.216214,1.216214,1.216214,1.216214,1.216214,1.216214 +1.219339,1.219339,1.219339,1.219339,1.219339,1.219339 +1.222464,1.222464,1.222464,1.222464,1.222464,1.222464 +1.225589,1.225589,1.225589,1.225589,1.225589,1.225589 +1.228714,1.228714,1.228714,1.228714,1.228714,1.228714 +1.231839,1.231839,1.231839,1.231839,1.231839,1.231839 +1.234964,1.234964,1.234964,1.234964,1.234964,1.234964 +1.238089,1.238089,1.238089,1.238089,1.238089,1.238089 +1.241214,1.241214,1.241214,1.241214,1.241214,1.241214 +1.244339,1.244339,1.244339,1.244339,1.244339,1.244339 +1.247464,1.247464,1.247464,1.247464,1.247464,1.247464 +1.250589,1.250589,1.250589,1.250589,1.250589,1.250589 +1.253714,1.253714,1.253714,1.253714,1.253714,1.253714 +1.256839,1.256839,1.256839,1.256839,1.256839,1.256839 +1.259964,1.259964,1.259964,1.259964,1.259964,1.259964 +1.263089,1.263089,1.263089,1.263089,1.263089,1.263089 +1.266214,1.266214,1.266214,1.266214,1.266214,1.266214 +1.269339,1.269339,1.269339,1.269339,1.269339,1.269339 +1.272464,1.272464,1.272464,1.272464,1.272464,1.272464 +1.275589,1.275589,1.275589,1.275589,1.275589,1.275589 +1.278714,1.278714,1.278714,1.278714,1.278714,1.278714 +1.281839,1.281839,1.281839,1.281839,1.281839,1.281839 +1.284964,1.284964,1.284964,1.284964,1.284964,1.284964 +1.288089,1.288089,1.288089,1.288089,1.288089,1.288089 +1.291214,1.291214,1.291214,1.291214,1.291214,1.291214 +1.294339,1.294339,1.294339,1.294339,1.294339,1.294339 +1.297464,1.297464,1.297464,1.297464,1.297464,1.297464 +1.300589,1.300589,1.300589,1.300589,1.300589,1.300589 +1.303714,1.303714,1.303714,1.303714,1.303714,1.303714 +1.306839,1.306839,1.306839,1.306839,1.306839,1.306839 +1.309964,1.309964,1.309964,1.309964,1.309964,1.309964 +1.313089,1.313089,1.313089,1.313089,1.313089,1.313089 +1.316214,1.316214,1.316214,1.316214,1.316214,1.316214 +1.319339,1.319339,1.319339,1.319339,1.319339,1.319339 +1.322464,1.322464,1.322464,1.322464,1.322464,1.322464 +1.325589,1.325589,1.325589,1.325589,1.325589,1.325589 +1.328714,1.328714,1.328714,1.328714,1.328714,1.328714 +1.331839,1.331839,1.331839,1.331839,1.331839,1.331839 +1.334964,1.334964,1.334964,1.334964,1.334964,1.334964 +1.338089,1.338089,1.338089,1.338089,1.338089,1.338089 +1.341214,1.341214,1.341214,1.341214,1.341214,1.341214 +1.344339,1.344339,1.344339,1.344339,1.344339,1.344339 +1.347464,1.347464,1.347464,1.347464,1.347464,1.347464 +1.350589,1.350589,1.350589,1.350589,1.350589,1.350589 +1.353714,1.353714,1.353714,1.353714,1.353714,1.353714 +1.356839,1.356839,1.356839,1.356839,1.356839,1.356839 +1.359964,1.359964,1.359964,1.359964,1.359964,1.359964 +1.363089,1.363089,1.363089,1.363089,1.363089,1.363089 +1.366214,1.366214,1.366214,1.366214,1.366214,1.366214 +1.369339,1.369339,1.369339,1.369339,1.369339,1.369339 +1.372464,1.372464,1.372464,1.372464,1.372464,1.372464 +1.375589,1.375589,1.375589,1.375589,1.375589,1.375589 +1.378714,1.378714,1.378714,1.378714,1.378714,1.378714 +1.381839,1.381839,1.381839,1.381839,1.381839,1.381839 +1.384964,1.384964,1.384964,1.384964,1.384964,1.384964 +1.388089,1.388089,1.388089,1.388089,1.388089,1.388089 +1.391214,1.391214,1.391214,1.391214,1.391214,1.391214 +1.394339,1.394339,1.394339,1.394339,1.394339,1.394339 +1.397464,1.397464,1.397464,1.397464,1.397464,1.397464 +1.400589,1.400589,1.400589,1.400589,1.400589,1.400589 +1.403714,1.403714,1.403714,1.403714,1.403714,1.403714 +1.406839,1.406839,1.406839,1.406839,1.406839,1.406839 +1.409964,1.409964,1.409964,1.409964,1.409964,1.409964 +1.413089,1.413089,1.413089,1.413089,1.413089,1.413089 +1.416214,1.416214,1.416214,1.416214,1.416214,1.416214 +1.419339,1.419339,1.419339,1.419339,1.419339,1.419339 +1.422464,1.422464,1.422464,1.422464,1.422464,1.422464 +1.425589,1.425589,1.425589,1.425589,1.425589,1.425589 +1.428714,1.428714,1.428714,1.428714,1.428714,1.428714 +1.431839,1.431839,1.431839,1.431839,1.431839,1.431839 +1.434964,1.434964,1.434964,1.434964,1.434964,1.434964 +1.438089,1.438089,1.438089,1.438089,1.438089,1.438089 +1.441214,1.441214,1.441214,1.441214,1.441214,1.441214 +1.444339,1.444339,1.444339,1.444339,1.444339,1.444339 +1.447464,1.447464,1.447464,1.447464,1.447464,1.447464 +1.450589,1.450589,1.450589,1.450589,1.450589,1.450589 +1.453714,1.453714,1.453714,1.453714,1.453714,1.453714 +1.456839,1.456839,1.456839,1.456839,1.456839,1.456839 +1.459964,1.459964,1.459964,1.459964,1.459964,1.459964 +1.463089,1.463089,1.463089,1.463089,1.463089,1.463089 +1.466214,1.466214,1.466214,1.466214,1.466214,1.466214 +1.469339,1.469339,1.469339,1.469339,1.469339,1.469339 +1.472464,1.472464,1.472464,1.472464,1.472464,1.472464 +1.475589,1.475589,1.475589,1.475589,1.475589,1.475589 +1.478714,1.478714,1.478714,1.478714,1.478714,1.478714 +1.481839,1.481839,1.481839,1.481839,1.481839,1.481839 +1.484964,1.484964,1.484964,1.484964,1.484964,1.484964 +1.488089,1.488089,1.488089,1.488089,1.488089,1.488089 +1.491214,1.491214,1.491214,1.491214,1.491214,1.491214 +1.494339,1.494339,1.494339,1.494339,1.494339,1.494339 +1.497464,1.497464,1.497464,1.497464,1.497464,1.497464 +1.500589,1.500589,1.500589,1.500589,1.500589,1.500589 +1.503714,1.503714,1.503714,1.503714,1.503714,1.503714 +1.506839,1.506839,1.506839,1.506839,1.506839,1.506839 +1.509964,1.509964,1.509964,1.509964,1.509964,1.509964 +1.513089,1.513089,1.513089,1.513089,1.513089,1.513089 +1.516214,1.516214,1.516214,1.516214,1.516214,1.516214 +1.519339,1.519339,1.519339,1.519339,1.519339,1.519339 +1.522464,1.522464,1.522464,1.522464,1.522464,1.522464 +1.525589,1.525589,1.525589,1.525589,1.525589,1.525589 +1.528714,1.528714,1.528714,1.528714,1.528714,1.528714 +1.531839,1.531839,1.531839,1.531839,1.531839,1.531839 +1.534964,1.534964,1.534964,1.534964,1.534964,1.534964 +1.538089,1.538089,1.538089,1.538089,1.538089,1.538089 +1.541214,1.541214,1.541214,1.541214,1.541214,1.541214 +1.544339,1.544339,1.544339,1.544339,1.544339,1.544339 +1.547464,1.547464,1.547464,1.547464,1.547464,1.547464 +1.550589,1.550589,1.550589,1.550589,1.550589,1.550589 +1.553714,1.553714,1.553714,1.553714,1.553714,1.553714 +1.556839,1.556839,1.556839,1.556839,1.556839,1.556839 +1.559964,1.559964,1.559964,1.559964,1.559964,1.559964 +1.563089,1.563089,1.563089,1.563089,1.563089,1.563089 +1.566214,1.566214,1.566214,1.566214,1.566214,1.566214 +1.569339,1.569339,1.569339,1.569339,1.569339,1.569339 +1.572464,1.572464,1.572464,1.572464,1.572464,1.572464 +1.575589,1.575589,1.575589,1.575589,1.575589,1.575589 +1.578714,1.578714,1.578714,1.578714,1.578714,1.578714 +1.581839,1.581839,1.581839,1.581839,1.581839,1.581839 +1.584964,1.584964,1.584964,1.584964,1.584964,1.584964 +1.588089,1.588089,1.588089,1.588089,1.588089,1.588089 +1.591214,1.591214,1.591214,1.591214,1.591214,1.591214 +1.594339,1.594339,1.594339,1.594339,1.594339,1.594339 +1.597464,1.597464,1.597464,1.597464,1.597464,1.597464 +1.600589,1.600589,1.600589,1.600589,1.600589,1.600589 +1.603714,1.603714,1.603714,1.603714,1.603714,1.603714 +1.606839,1.606839,1.606839,1.606839,1.606839,1.606839 +1.609964,1.609964,1.609964,1.609964,1.609964,1.609964 +1.613089,1.613089,1.613089,1.613089,1.613089,1.613089 +1.616214,1.616214,1.616214,1.616214,1.616214,1.616214 +1.619339,1.619339,1.619339,1.619339,1.619339,1.619339 +1.622464,1.622464,1.622464,1.622464,1.622464,1.622464 +1.625589,1.625589,1.625589,1.625589,1.625589,1.625589 +1.628714,1.628714,1.628714,1.628714,1.628714,1.628714 +1.631839,1.631839,1.631839,1.631839,1.631839,1.631839 +1.634964,1.634964,1.634964,1.634964,1.634964,1.634964 +1.638089,1.638089,1.638089,1.638089,1.638089,1.638089 +1.641214,1.641214,1.641214,1.641214,1.641214,1.641214 +1.644339,1.644339,1.644339,1.644339,1.644339,1.644339 +1.647464,1.647464,1.647464,1.647464,1.647464,1.647464 +1.650589,1.650589,1.650589,1.650589,1.650589,1.650589 +1.653714,1.653714,1.653714,1.653714,1.653714,1.653714 +1.656839,1.656839,1.656839,1.656839,1.656839,1.656839 +1.659964,1.659964,1.659964,1.659964,1.659964,1.659964 +1.663089,1.663089,1.663089,1.663089,1.663089,1.663089 +1.666214,1.666214,1.666214,1.666214,1.666214,1.666214 +1.669339,1.669339,1.669339,1.669339,1.669339,1.669339 +1.672464,1.672464,1.672464,1.672464,1.672464,1.672464 +1.675589,1.675589,1.675589,1.675589,1.675589,1.675589 +1.678714,1.678714,1.678714,1.678714,1.678714,1.678714 +1.681839,1.681839,1.681839,1.681839,1.681839,1.681839 +1.684964,1.684964,1.684964,1.684964,1.684964,1.684964 +1.688089,1.688089,1.688089,1.688089,1.688089,1.688089 +1.691214,1.691214,1.691214,1.691214,1.691214,1.691214 +1.694339,1.694339,1.694339,1.694339,1.694339,1.694339 +1.697464,1.697464,1.697464,1.697464,1.697464,1.697464 +1.700582,1.700582,1.700582,1.700582,1.700582,1.700582 +1.703682,1.703682,1.703682,1.703682,1.703682,1.703682 +1.70675,1.70675,1.70675,1.70675,1.70675,1.70675 +1.709774,1.709774,1.709774,1.709774,1.709774,1.709774 +1.712742,1.712742,1.712742,1.712742,1.712742,1.712742 +1.715641,1.715641,1.715641,1.715641,1.715641,1.715641 +1.718459,1.718459,1.718459,1.718459,1.718459,1.718459 +1.721183,1.721183,1.721183,1.721183,1.721183,1.721183 +1.723801,1.723801,1.723801,1.723801,1.723801,1.723801 +1.7263,1.7263,1.7263,1.7263,1.7263,1.7263 +1.728668,1.728668,1.728668,1.728668,1.728668,1.728668 +1.730891,1.730891,1.730891,1.730891,1.730891,1.730891 +1.732959,1.732959,1.732959,1.732959,1.732959,1.732959 +1.734858,1.734858,1.734858,1.734858,1.734858,1.734858 +1.736575,1.736575,1.736575,1.736575,1.736575,1.736575 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.739437,1.739437,1.739437,1.739437,1.739437,1.739437 +1.740596,1.740596,1.740596,1.740596,1.740596,1.740596 +1.741592,1.741592,1.741592,1.741592,1.741592,1.741592 +1.742436,1.742436,1.742436,1.742436,1.742436,1.742436 +1.743142,1.743142,1.743142,1.743142,1.743142,1.743142 +1.74372,1.74372,1.74372,1.74372,1.74372,1.74372 +1.744185,1.744185,1.744185,1.744185,1.744185,1.744185 +1.744548,1.744548,1.744548,1.744548,1.744548,1.744548 +1.744823,1.744823,1.744823,1.744823,1.744823,1.744823 +1.745021,1.745021,1.745021,1.745021,1.745021,1.745021 +1.745154,1.745154,1.745154,1.745154,1.745154,1.745154 +1.745237,1.745237,1.745237,1.745237,1.745237,1.745237 +1.74528,1.74528,1.74528,1.74528,1.74528,1.74528 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745283,1.745283,1.745283,1.745283,1.745283,1.745283 +1.745244,1.745244,1.745244,1.745244,1.745244,1.745244 +1.745167,1.745167,1.745167,1.745167,1.745167,1.745167 +1.74504,1.74504,1.74504,1.74504,1.74504,1.74504 +1.74485,1.74485,1.74485,1.74485,1.74485,1.74485 +1.744585,1.744585,1.744585,1.744585,1.744585,1.744585 +1.744233,1.744233,1.744233,1.744233,1.744233,1.744233 +1.743781,1.743781,1.743781,1.743781,1.743781,1.743781 +1.743217,1.743217,1.743217,1.743217,1.743217,1.743217 +1.742527,1.742527,1.742527,1.742527,1.742527,1.742527 +1.7417,1.7417,1.7417,1.7417,1.7417,1.7417 +1.740723,1.740723,1.740723,1.740723,1.740723,1.740723 +1.739583,1.739583,1.739583,1.739583,1.739583,1.739583 +1.738269,1.738269,1.738269,1.738269,1.738269,1.738269 +1.736767,1.736767,1.736767,1.736767,1.736767,1.736767 +1.735072,1.735072,1.735072,1.735072,1.735072,1.735072 +1.733194,1.733194,1.733194,1.733194,1.733194,1.733194 +1.731145,1.731145,1.731145,1.731145,1.731145,1.731145 +1.72894,1.72894,1.72894,1.72894,1.72894,1.72894 +1.726588,1.726588,1.726588,1.726588,1.726588,1.726588 +1.724104,1.724104,1.724104,1.724104,1.724104,1.724104 +1.7215,1.7215,1.7215,1.7215,1.7215,1.7215 +1.718788,1.718788,1.718788,1.718788,1.718788,1.718788 +1.71598,1.71598,1.71598,1.71598,1.71598,1.71598 +1.71309,1.71309,1.71309,1.71309,1.71309,1.71309 +1.71013,1.71013,1.71013,1.71013,1.71013,1.71013 +1.707112,1.707112,1.707112,1.707112,1.707112,1.707112 +1.704048,1.704048,1.704048,1.704048,1.704048,1.704048 +1.700952,1.700952,1.700952,1.700952,1.700952,1.700952 +1.697835,1.697835,1.697835,1.697835,1.697835,1.697835 +1.694711,1.694711,1.694711,1.694711,1.694711,1.694711 +1.691586,1.691586,1.691586,1.691586,1.691586,1.691586 +1.688461,1.688461,1.688461,1.688461,1.688461,1.688461 +1.685336,1.685336,1.685336,1.685336,1.685336,1.685336 +1.682211,1.682211,1.682211,1.682211,1.682211,1.682211 +1.679086,1.679086,1.679086,1.679086,1.679086,1.679086 +1.675961,1.675961,1.675961,1.675961,1.675961,1.675961 +1.672836,1.672836,1.672836,1.672836,1.672836,1.672836 +1.669711,1.669711,1.669711,1.669711,1.669711,1.669711 +1.666586,1.666586,1.666586,1.666586,1.666586,1.666586 +1.663461,1.663461,1.663461,1.663461,1.663461,1.663461 +1.660336,1.660336,1.660336,1.660336,1.660336,1.660336 +1.657211,1.657211,1.657211,1.657211,1.657211,1.657211 +1.654086,1.654086,1.654086,1.654086,1.654086,1.654086 +1.650961,1.650961,1.650961,1.650961,1.650961,1.650961 +1.647836,1.647836,1.647836,1.647836,1.647836,1.647836 +1.644711,1.644711,1.644711,1.644711,1.644711,1.644711 +1.641586,1.641586,1.641586,1.641586,1.641586,1.641586 +1.638461,1.638461,1.638461,1.638461,1.638461,1.638461 +1.635336,1.635336,1.635336,1.635336,1.635336,1.635336 +1.632211,1.632211,1.632211,1.632211,1.632211,1.632211 +1.629086,1.629086,1.629086,1.629086,1.629086,1.629086 +1.625961,1.625961,1.625961,1.625961,1.625961,1.625961 +1.622836,1.622836,1.622836,1.622836,1.622836,1.622836 +1.619711,1.619711,1.619711,1.619711,1.619711,1.619711 +1.616586,1.616586,1.616586,1.616586,1.616586,1.616586 +1.613461,1.613461,1.613461,1.613461,1.613461,1.613461 +1.610336,1.610336,1.610336,1.610336,1.610336,1.610336 +1.607211,1.607211,1.607211,1.607211,1.607211,1.607211 +1.604086,1.604086,1.604086,1.604086,1.604086,1.604086 +1.600961,1.600961,1.600961,1.600961,1.600961,1.600961 +1.597836,1.597836,1.597836,1.597836,1.597836,1.597836 +1.594711,1.594711,1.594711,1.594711,1.594711,1.594711 +1.591586,1.591586,1.591586,1.591586,1.591586,1.591586 +1.588461,1.588461,1.588461,1.588461,1.588461,1.588461 +1.585336,1.585336,1.585336,1.585336,1.585336,1.585336 +1.582211,1.582211,1.582211,1.582211,1.582211,1.582211 +1.579086,1.579086,1.579086,1.579086,1.579086,1.579086 +1.575961,1.575961,1.575961,1.575961,1.575961,1.575961 +1.572836,1.572836,1.572836,1.572836,1.572836,1.572836 +1.569711,1.569711,1.569711,1.569711,1.569711,1.569711 +1.566586,1.566586,1.566586,1.566586,1.566586,1.566586 +1.563461,1.563461,1.563461,1.563461,1.563461,1.563461 +1.560336,1.560336,1.560336,1.560336,1.560336,1.560336 +1.557211,1.557211,1.557211,1.557211,1.557211,1.557211 +1.554086,1.554086,1.554086,1.554086,1.554086,1.554086 +1.550961,1.550961,1.550961,1.550961,1.550961,1.550961 +1.547836,1.547836,1.547836,1.547836,1.547836,1.547836 +1.544711,1.544711,1.544711,1.544711,1.544711,1.544711 +1.541586,1.541586,1.541586,1.541586,1.541586,1.541586 +1.538461,1.538461,1.538461,1.538461,1.538461,1.538461 +1.535336,1.535336,1.535336,1.535336,1.535336,1.535336 +1.532211,1.532211,1.532211,1.532211,1.532211,1.532211 +1.529086,1.529086,1.529086,1.529086,1.529086,1.529086 +1.525961,1.525961,1.525961,1.525961,1.525961,1.525961 +1.522836,1.522836,1.522836,1.522836,1.522836,1.522836 +1.519711,1.519711,1.519711,1.519711,1.519711,1.519711 +1.516586,1.516586,1.516586,1.516586,1.516586,1.516586 +1.513461,1.513461,1.513461,1.513461,1.513461,1.513461 +1.510336,1.510336,1.510336,1.510336,1.510336,1.510336 +1.507211,1.507211,1.507211,1.507211,1.507211,1.507211 +1.504086,1.504086,1.504086,1.504086,1.504086,1.504086 +1.500961,1.500961,1.500961,1.500961,1.500961,1.500961 +1.497836,1.497836,1.497836,1.497836,1.497836,1.497836 +1.494711,1.494711,1.494711,1.494711,1.494711,1.494711 +1.491586,1.491586,1.491586,1.491586,1.491586,1.491586 +1.488461,1.488461,1.488461,1.488461,1.488461,1.488461 +1.485336,1.485336,1.485336,1.485336,1.485336,1.485336 +1.482211,1.482211,1.482211,1.482211,1.482211,1.482211 +1.479086,1.479086,1.479086,1.479086,1.479086,1.479086 +1.475961,1.475961,1.475961,1.475961,1.475961,1.475961 +1.472836,1.472836,1.472836,1.472836,1.472836,1.472836 +1.469711,1.469711,1.469711,1.469711,1.469711,1.469711 +1.466586,1.466586,1.466586,1.466586,1.466586,1.466586 +1.463461,1.463461,1.463461,1.463461,1.463461,1.463461 +1.460336,1.460336,1.460336,1.460336,1.460336,1.460336 +1.457211,1.457211,1.457211,1.457211,1.457211,1.457211 +1.454086,1.454086,1.454086,1.454086,1.454086,1.454086 +1.450961,1.450961,1.450961,1.450961,1.450961,1.450961 +1.447836,1.447836,1.447836,1.447836,1.447836,1.447836 +1.444711,1.444711,1.444711,1.444711,1.444711,1.444711 +1.441586,1.441586,1.441586,1.441586,1.441586,1.441586 +1.438461,1.438461,1.438461,1.438461,1.438461,1.438461 +1.435336,1.435336,1.435336,1.435336,1.435336,1.435336 +1.432211,1.432211,1.432211,1.432211,1.432211,1.432211 +1.429086,1.429086,1.429086,1.429086,1.429086,1.429086 +1.425961,1.425961,1.425961,1.425961,1.425961,1.425961 +1.422836,1.422836,1.422836,1.422836,1.422836,1.422836 +1.419711,1.419711,1.419711,1.419711,1.419711,1.419711 +1.416586,1.416586,1.416586,1.416586,1.416586,1.416586 +1.413461,1.413461,1.413461,1.413461,1.413461,1.413461 +1.410336,1.410336,1.410336,1.410336,1.410336,1.410336 +1.407211,1.407211,1.407211,1.407211,1.407211,1.407211 +1.404086,1.404086,1.404086,1.404086,1.404086,1.404086 +1.400961,1.400961,1.400961,1.400961,1.400961,1.400961 +1.397836,1.397836,1.397836,1.397836,1.397836,1.397836 +1.394711,1.394711,1.394711,1.394711,1.394711,1.394711 +1.391586,1.391586,1.391586,1.391586,1.391586,1.391586 +1.388461,1.388461,1.388461,1.388461,1.388461,1.388461 +1.385336,1.385336,1.385336,1.385336,1.385336,1.385336 +1.382211,1.382211,1.382211,1.382211,1.382211,1.382211 +1.379086,1.379086,1.379086,1.379086,1.379086,1.379086 +1.375961,1.375961,1.375961,1.375961,1.375961,1.375961 +1.372836,1.372836,1.372836,1.372836,1.372836,1.372836 +1.369711,1.369711,1.369711,1.369711,1.369711,1.369711 +1.366586,1.366586,1.366586,1.366586,1.366586,1.366586 +1.363461,1.363461,1.363461,1.363461,1.363461,1.363461 +1.360336,1.360336,1.360336,1.360336,1.360336,1.360336 +1.357211,1.357211,1.357211,1.357211,1.357211,1.357211 +1.354086,1.354086,1.354086,1.354086,1.354086,1.354086 +1.350961,1.350961,1.350961,1.350961,1.350961,1.350961 +1.347836,1.347836,1.347836,1.347836,1.347836,1.347836 +1.344711,1.344711,1.344711,1.344711,1.344711,1.344711 +1.341586,1.341586,1.341586,1.341586,1.341586,1.341586 +1.338461,1.338461,1.338461,1.338461,1.338461,1.338461 +1.335336,1.335336,1.335336,1.335336,1.335336,1.335336 +1.332211,1.332211,1.332211,1.332211,1.332211,1.332211 +1.329086,1.329086,1.329086,1.329086,1.329086,1.329086 +1.325961,1.325961,1.325961,1.325961,1.325961,1.325961 +1.322836,1.322836,1.322836,1.322836,1.322836,1.322836 +1.319711,1.319711,1.319711,1.319711,1.319711,1.319711 +1.316586,1.316586,1.316586,1.316586,1.316586,1.316586 +1.313461,1.313461,1.313461,1.313461,1.313461,1.313461 +1.310336,1.310336,1.310336,1.310336,1.310336,1.310336 +1.307211,1.307211,1.307211,1.307211,1.307211,1.307211 +1.304086,1.304086,1.304086,1.304086,1.304086,1.304086 +1.300961,1.300961,1.300961,1.300961,1.300961,1.300961 +1.297836,1.297836,1.297836,1.297836,1.297836,1.297836 +1.294711,1.294711,1.294711,1.294711,1.294711,1.294711 +1.291586,1.291586,1.291586,1.291586,1.291586,1.291586 +1.288461,1.288461,1.288461,1.288461,1.288461,1.288461 +1.285336,1.285336,1.285336,1.285336,1.285336,1.285336 +1.282211,1.282211,1.282211,1.282211,1.282211,1.282211 +1.279086,1.279086,1.279086,1.279086,1.279086,1.279086 +1.275961,1.275961,1.275961,1.275961,1.275961,1.275961 +1.272836,1.272836,1.272836,1.272836,1.272836,1.272836 +1.269711,1.269711,1.269711,1.269711,1.269711,1.269711 +1.266586,1.266586,1.266586,1.266586,1.266586,1.266586 +1.263461,1.263461,1.263461,1.263461,1.263461,1.263461 +1.260336,1.260336,1.260336,1.260336,1.260336,1.260336 +1.257211,1.257211,1.257211,1.257211,1.257211,1.257211 +1.254086,1.254086,1.254086,1.254086,1.254086,1.254086 +1.250961,1.250961,1.250961,1.250961,1.250961,1.250961 +1.247836,1.247836,1.247836,1.247836,1.247836,1.247836 +1.244711,1.244711,1.244711,1.244711,1.244711,1.244711 +1.241586,1.241586,1.241586,1.241586,1.241586,1.241586 +1.238461,1.238461,1.238461,1.238461,1.238461,1.238461 +1.235336,1.235336,1.235336,1.235336,1.235336,1.235336 +1.232211,1.232211,1.232211,1.232211,1.232211,1.232211 +1.229086,1.229086,1.229086,1.229086,1.229086,1.229086 +1.225961,1.225961,1.225961,1.225961,1.225961,1.225961 +1.222836,1.222836,1.222836,1.222836,1.222836,1.222836 +1.219711,1.219711,1.219711,1.219711,1.219711,1.219711 +1.216586,1.216586,1.216586,1.216586,1.216586,1.216586 +1.213461,1.213461,1.213461,1.213461,1.213461,1.213461 +1.210336,1.210336,1.210336,1.210336,1.210336,1.210336 +1.207211,1.207211,1.207211,1.207211,1.207211,1.207211 +1.204086,1.204086,1.204086,1.204086,1.204086,1.204086 +1.200961,1.200961,1.200961,1.200961,1.200961,1.200961 +1.197836,1.197836,1.197836,1.197836,1.197836,1.197836 +1.194711,1.194711,1.194711,1.194711,1.194711,1.194711 +1.191586,1.191586,1.191586,1.191586,1.191586,1.191586 +1.188461,1.188461,1.188461,1.188461,1.188461,1.188461 +1.185336,1.185336,1.185336,1.185336,1.185336,1.185336 +1.182211,1.182211,1.182211,1.182211,1.182211,1.182211 +1.179086,1.179086,1.179086,1.179086,1.179086,1.179086 +1.175961,1.175961,1.175961,1.175961,1.175961,1.175961 +1.172836,1.172836,1.172836,1.172836,1.172836,1.172836 +1.169711,1.169711,1.169711,1.169711,1.169711,1.169711 +1.166586,1.166586,1.166586,1.166586,1.166586,1.166586 +1.163461,1.163461,1.163461,1.163461,1.163461,1.163461 +1.160336,1.160336,1.160336,1.160336,1.160336,1.160336 +1.157211,1.157211,1.157211,1.157211,1.157211,1.157211 +1.154086,1.154086,1.154086,1.154086,1.154086,1.154086 +1.150961,1.150961,1.150961,1.150961,1.150961,1.150961 +1.147836,1.147836,1.147836,1.147836,1.147836,1.147836 +1.144711,1.144711,1.144711,1.144711,1.144711,1.144711 +1.141586,1.141586,1.141586,1.141586,1.141586,1.141586 +1.138461,1.138461,1.138461,1.138461,1.138461,1.138461 +1.135336,1.135336,1.135336,1.135336,1.135336,1.135336 +1.132211,1.132211,1.132211,1.132211,1.132211,1.132211 +1.129086,1.129086,1.129086,1.129086,1.129086,1.129086 +1.125961,1.125961,1.125961,1.125961,1.125961,1.125961 +1.122836,1.122836,1.122836,1.122836,1.122836,1.122836 +1.119711,1.119711,1.119711,1.119711,1.119711,1.119711 +1.116586,1.116586,1.116586,1.116586,1.116586,1.116586 +1.113461,1.113461,1.113461,1.113461,1.113461,1.113461 +1.110336,1.110336,1.110336,1.110336,1.110336,1.110336 +1.107211,1.107211,1.107211,1.107211,1.107211,1.107211 +1.104086,1.104086,1.104086,1.104086,1.104086,1.104086 +1.100961,1.100961,1.100961,1.100961,1.100961,1.100961 +1.097836,1.097836,1.097836,1.097836,1.097836,1.097836 +1.094711,1.094711,1.094711,1.094711,1.094711,1.094711 +1.091586,1.091586,1.091586,1.091586,1.091586,1.091586 +1.088461,1.088461,1.088461,1.088461,1.088461,1.088461 +1.085336,1.085336,1.085336,1.085336,1.085336,1.085336 +1.082211,1.082211,1.082211,1.082211,1.082211,1.082211 +1.079086,1.079086,1.079086,1.079086,1.079086,1.079086 +1.075961,1.075961,1.075961,1.075961,1.075961,1.075961 +1.072836,1.072836,1.072836,1.072836,1.072836,1.072836 +1.069711,1.069711,1.069711,1.069711,1.069711,1.069711 +1.066586,1.066586,1.066586,1.066586,1.066586,1.066586 +1.063461,1.063461,1.063461,1.063461,1.063461,1.063461 +1.060336,1.060336,1.060336,1.060336,1.060336,1.060336 +1.057211,1.057211,1.057211,1.057211,1.057211,1.057211 +1.054086,1.054086,1.054086,1.054086,1.054086,1.054086 +1.050961,1.050961,1.050961,1.050961,1.050961,1.050961 +1.047836,1.047836,1.047836,1.047836,1.047836,1.047836 +1.044711,1.044711,1.044711,1.044711,1.044711,1.044711 +1.041586,1.041586,1.041586,1.041586,1.041586,1.041586 +1.038461,1.038461,1.038461,1.038461,1.038461,1.038461 +1.035336,1.035336,1.035336,1.035336,1.035336,1.035336 +1.032211,1.032211,1.032211,1.032211,1.032211,1.032211 +1.029086,1.029086,1.029086,1.029086,1.029086,1.029086 +1.025961,1.025961,1.025961,1.025961,1.025961,1.025961 +1.022836,1.022836,1.022836,1.022836,1.022836,1.022836 +1.019711,1.019711,1.019711,1.019711,1.019711,1.019711 +1.016586,1.016586,1.016586,1.016586,1.016586,1.016586 +1.013461,1.013461,1.013461,1.013461,1.013461,1.013461 +1.010336,1.010336,1.010336,1.010336,1.010336,1.010336 +1.007211,1.007211,1.007211,1.007211,1.007211,1.007211 +1.004086,1.004086,1.004086,1.004086,1.004086,1.004086 +1.000961,1.000961,1.000961,1.000961,1.000961,1.000961 +0.997836,0.997836,0.997836,0.997836,0.997836,0.997836 +0.994711,0.994711,0.994711,0.994711,0.994711,0.994711 +0.991586,0.991586,0.991586,0.991586,0.991586,0.991586 +0.988461,0.988461,0.988461,0.988461,0.988461,0.988461 +0.985336,0.985336,0.985336,0.985336,0.985336,0.985336 +0.982211,0.982211,0.982211,0.982211,0.982211,0.982211 +0.979086,0.979086,0.979086,0.979086,0.979086,0.979086 +0.975961,0.975961,0.975961,0.975961,0.975961,0.975961 +0.972836,0.972836,0.972836,0.972836,0.972836,0.972836 +0.969711,0.969711,0.969711,0.969711,0.969711,0.969711 +0.966586,0.966586,0.966586,0.966586,0.966586,0.966586 +0.963461,0.963461,0.963461,0.963461,0.963461,0.963461 +0.960336,0.960336,0.960336,0.960336,0.960336,0.960336 +0.957211,0.957211,0.957211,0.957211,0.957211,0.957211 +0.954086,0.954086,0.954086,0.954086,0.954086,0.954086 +0.950961,0.950961,0.950961,0.950961,0.950961,0.950961 +0.947836,0.947836,0.947836,0.947836,0.947836,0.947836 +0.944711,0.944711,0.944711,0.944711,0.944711,0.944711 +0.941586,0.941586,0.941586,0.941586,0.941586,0.941586 +0.938461,0.938461,0.938461,0.938461,0.938461,0.938461 +0.935336,0.935336,0.935336,0.935336,0.935336,0.935336 +0.932211,0.932211,0.932211,0.932211,0.932211,0.932211 +0.929086,0.929086,0.929086,0.929086,0.929086,0.929086 +0.925961,0.925961,0.925961,0.925961,0.925961,0.925961 +0.922836,0.922836,0.922836,0.922836,0.922836,0.922836 +0.919711,0.919711,0.919711,0.919711,0.919711,0.919711 +0.916586,0.916586,0.916586,0.916586,0.916586,0.916586 +0.913461,0.913461,0.913461,0.913461,0.913461,0.913461 +0.910336,0.910336,0.910336,0.910336,0.910336,0.910336 +0.907211,0.907211,0.907211,0.907211,0.907211,0.907211 +0.904086,0.904086,0.904086,0.904086,0.904086,0.904086 +0.900961,0.900961,0.900961,0.900961,0.900961,0.900961 +0.897836,0.897836,0.897836,0.897836,0.897836,0.897836 +0.894711,0.894711,0.894711,0.894711,0.894711,0.894711 +0.891586,0.891586,0.891586,0.891586,0.891586,0.891586 +0.888461,0.888461,0.888461,0.888461,0.888461,0.888461 +0.885336,0.885336,0.885336,0.885336,0.885336,0.885336 +0.882211,0.882211,0.882211,0.882211,0.882211,0.882211 +0.879086,0.879086,0.879086,0.879086,0.879086,0.879086 +0.875961,0.875961,0.875961,0.875961,0.875961,0.875961 +0.872836,0.872836,0.872836,0.872836,0.872836,0.872836 +0.869711,0.869711,0.869711,0.869711,0.869711,0.869711 +0.866586,0.866586,0.866586,0.866586,0.866586,0.866586 +0.863461,0.863461,0.863461,0.863461,0.863461,0.863461 +0.860336,0.860336,0.860336,0.860336,0.860336,0.860336 +0.857211,0.857211,0.857211,0.857211,0.857211,0.857211 +0.854086,0.854086,0.854086,0.854086,0.854086,0.854086 +0.850961,0.850961,0.850961,0.850961,0.850961,0.850961 +0.847836,0.847836,0.847836,0.847836,0.847836,0.847836 +0.844711,0.844711,0.844711,0.844711,0.844711,0.844711 +0.841586,0.841586,0.841586,0.841586,0.841586,0.841586 +0.838461,0.838461,0.838461,0.838461,0.838461,0.838461 +0.835336,0.835336,0.835336,0.835336,0.835336,0.835336 +0.832211,0.832211,0.832211,0.832211,0.832211,0.832211 +0.829086,0.829086,0.829086,0.829086,0.829086,0.829086 +0.825961,0.825961,0.825961,0.825961,0.825961,0.825961 +0.822836,0.822836,0.822836,0.822836,0.822836,0.822836 +0.819711,0.819711,0.819711,0.819711,0.819711,0.819711 +0.816586,0.816586,0.816586,0.816586,0.816586,0.816586 +0.813461,0.813461,0.813461,0.813461,0.813461,0.813461 +0.810336,0.810336,0.810336,0.810336,0.810336,0.810336 +0.807211,0.807211,0.807211,0.807211,0.807211,0.807211 +0.804086,0.804086,0.804086,0.804086,0.804086,0.804086 +0.800961,0.800961,0.800961,0.800961,0.800961,0.800961 +0.797836,0.797836,0.797836,0.797836,0.797836,0.797836 +0.794711,0.794711,0.794711,0.794711,0.794711,0.794711 +0.791586,0.791586,0.791586,0.791586,0.791586,0.791586 +0.788461,0.788461,0.788461,0.788461,0.788461,0.788461 +0.785336,0.785336,0.785336,0.785336,0.785336,0.785336 +0.782211,0.782211,0.782211,0.782211,0.782211,0.782211 +0.779086,0.779086,0.779086,0.779086,0.779086,0.779086 +0.775961,0.775961,0.775961,0.775961,0.775961,0.775961 +0.772836,0.772836,0.772836,0.772836,0.772836,0.772836 +0.769711,0.769711,0.769711,0.769711,0.769711,0.769711 +0.766586,0.766586,0.766586,0.766586,0.766586,0.766586 +0.763461,0.763461,0.763461,0.763461,0.763461,0.763461 +0.760336,0.760336,0.760336,0.760336,0.760336,0.760336 +0.757211,0.757211,0.757211,0.757211,0.757211,0.757211 +0.754086,0.754086,0.754086,0.754086,0.754086,0.754086 +0.750961,0.750961,0.750961,0.750961,0.750961,0.750961 +0.747836,0.747836,0.747836,0.747836,0.747836,0.747836 +0.744711,0.744711,0.744711,0.744711,0.744711,0.744711 +0.741586,0.741586,0.741586,0.741586,0.741586,0.741586 +0.738461,0.738461,0.738461,0.738461,0.738461,0.738461 +0.735336,0.735336,0.735336,0.735336,0.735336,0.735336 +0.732211,0.732211,0.732211,0.732211,0.732211,0.732211 +0.729086,0.729086,0.729086,0.729086,0.729086,0.729086 +0.725961,0.725961,0.725961,0.725961,0.725961,0.725961 +0.722836,0.722836,0.722836,0.722836,0.722836,0.722836 +0.719711,0.719711,0.719711,0.719711,0.719711,0.719711 +0.716586,0.716586,0.716586,0.716586,0.716586,0.716586 +0.713461,0.713461,0.713461,0.713461,0.713461,0.713461 +0.710336,0.710336,0.710336,0.710336,0.710336,0.710336 +0.707211,0.707211,0.707211,0.707211,0.707211,0.707211 +0.704086,0.704086,0.704086,0.704086,0.704086,0.704086 +0.700961,0.700961,0.700961,0.700961,0.700961,0.700961 +0.697836,0.697836,0.697836,0.697836,0.697836,0.697836 +0.694711,0.694711,0.694711,0.694711,0.694711,0.694711 +0.691586,0.691586,0.691586,0.691586,0.691586,0.691586 +0.688461,0.688461,0.688461,0.688461,0.688461,0.688461 +0.685336,0.685336,0.685336,0.685336,0.685336,0.685336 +0.682211,0.682211,0.682211,0.682211,0.682211,0.682211 +0.679086,0.679086,0.679086,0.679086,0.679086,0.679086 +0.675961,0.675961,0.675961,0.675961,0.675961,0.675961 +0.672836,0.672836,0.672836,0.672836,0.672836,0.672836 +0.669711,0.669711,0.669711,0.669711,0.669711,0.669711 +0.666586,0.666586,0.666586,0.666586,0.666586,0.666586 +0.663461,0.663461,0.663461,0.663461,0.663461,0.663461 +0.660336,0.660336,0.660336,0.660336,0.660336,0.660336 +0.657211,0.657211,0.657211,0.657211,0.657211,0.657211 +0.654086,0.654086,0.654086,0.654086,0.654086,0.654086 +0.650961,0.650961,0.650961,0.650961,0.650961,0.650961 +0.647836,0.647836,0.647836,0.647836,0.647836,0.647836 +0.644711,0.644711,0.644711,0.644711,0.644711,0.644711 +0.641586,0.641586,0.641586,0.641586,0.641586,0.641586 +0.638461,0.638461,0.638461,0.638461,0.638461,0.638461 +0.635336,0.635336,0.635336,0.635336,0.635336,0.635336 +0.632211,0.632211,0.632211,0.632211,0.632211,0.632211 +0.629086,0.629086,0.629086,0.629086,0.629086,0.629086 +0.625961,0.625961,0.625961,0.625961,0.625961,0.625961 +0.622836,0.622836,0.622836,0.622836,0.622836,0.622836 +0.619711,0.619711,0.619711,0.619711,0.619711,0.619711 +0.616586,0.616586,0.616586,0.616586,0.616586,0.616586 +0.613461,0.613461,0.613461,0.613461,0.613461,0.613461 +0.610336,0.610336,0.610336,0.610336,0.610336,0.610336 +0.607211,0.607211,0.607211,0.607211,0.607211,0.607211 +0.604086,0.604086,0.604086,0.604086,0.604086,0.604086 +0.600961,0.600961,0.600961,0.600961,0.600961,0.600961 +0.597836,0.597836,0.597836,0.597836,0.597836,0.597836 +0.594711,0.594711,0.594711,0.594711,0.594711,0.594711 +0.591586,0.591586,0.591586,0.591586,0.591586,0.591586 +0.588461,0.588461,0.588461,0.588461,0.588461,0.588461 +0.585336,0.585336,0.585336,0.585336,0.585336,0.585336 +0.582211,0.582211,0.582211,0.582211,0.582211,0.582211 +0.579086,0.579086,0.579086,0.579086,0.579086,0.579086 +0.575961,0.575961,0.575961,0.575961,0.575961,0.575961 +0.572836,0.572836,0.572836,0.572836,0.572836,0.572836 +0.569711,0.569711,0.569711,0.569711,0.569711,0.569711 +0.566586,0.566586,0.566586,0.566586,0.566586,0.566586 +0.563461,0.563461,0.563461,0.563461,0.563461,0.563461 +0.560336,0.560336,0.560336,0.560336,0.560336,0.560336 +0.557211,0.557211,0.557211,0.557211,0.557211,0.557211 +0.554086,0.554086,0.554086,0.554086,0.554086,0.554086 +0.550961,0.550961,0.550961,0.550961,0.550961,0.550961 +0.547836,0.547836,0.547836,0.547836,0.547836,0.547836 +0.544711,0.544711,0.544711,0.544711,0.544711,0.544711 +0.541586,0.541586,0.541586,0.541586,0.541586,0.541586 +0.538461,0.538461,0.538461,0.538461,0.538461,0.538461 +0.535336,0.535336,0.535336,0.535336,0.535336,0.535336 +0.532211,0.532211,0.532211,0.532211,0.532211,0.532211 +0.529086,0.529086,0.529086,0.529086,0.529086,0.529086 +0.525961,0.525961,0.525961,0.525961,0.525961,0.525961 +0.522836,0.522836,0.522836,0.522836,0.522836,0.522836 +0.519711,0.519711,0.519711,0.519711,0.519711,0.519711 +0.516586,0.516586,0.516586,0.516586,0.516586,0.516586 +0.513461,0.513461,0.513461,0.513461,0.513461,0.513461 +0.510336,0.510336,0.510336,0.510336,0.510336,0.510336 +0.507211,0.507211,0.507211,0.507211,0.507211,0.507211 +0.504086,0.504086,0.504086,0.504086,0.504086,0.504086 +0.500961,0.500961,0.500961,0.500961,0.500961,0.500961 +0.497836,0.497836,0.497836,0.497836,0.497836,0.497836 +0.494711,0.494711,0.494711,0.494711,0.494711,0.494711 +0.491586,0.491586,0.491586,0.491586,0.491586,0.491586 +0.488461,0.488461,0.488461,0.488461,0.488461,0.488461 +0.485336,0.485336,0.485336,0.485336,0.485336,0.485336 +0.482211,0.482211,0.482211,0.482211,0.482211,0.482211 +0.479086,0.479086,0.479086,0.479086,0.479086,0.479086 +0.475961,0.475961,0.475961,0.475961,0.475961,0.475961 +0.472836,0.472836,0.472836,0.472836,0.472836,0.472836 +0.469711,0.469711,0.469711,0.469711,0.469711,0.469711 +0.466586,0.466586,0.466586,0.466586,0.466586,0.466586 +0.463461,0.463461,0.463461,0.463461,0.463461,0.463461 +0.460336,0.460336,0.460336,0.460336,0.460336,0.460336 +0.457211,0.457211,0.457211,0.457211,0.457211,0.457211 +0.454086,0.454086,0.454086,0.454086,0.454086,0.454086 +0.450961,0.450961,0.450961,0.450961,0.450961,0.450961 +0.447836,0.447836,0.447836,0.447836,0.447836,0.447836 +0.444711,0.444711,0.444711,0.444711,0.444711,0.444711 +0.441586,0.441586,0.441586,0.441586,0.441586,0.441586 +0.438461,0.438461,0.438461,0.438461,0.438461,0.438461 +0.435336,0.435336,0.435336,0.435336,0.435336,0.435336 +0.432211,0.432211,0.432211,0.432211,0.432211,0.432211 +0.429086,0.429086,0.429086,0.429086,0.429086,0.429086 +0.425961,0.425961,0.425961,0.425961,0.425961,0.425961 +0.422836,0.422836,0.422836,0.422836,0.422836,0.422836 +0.419711,0.419711,0.419711,0.419711,0.419711,0.419711 +0.416586,0.416586,0.416586,0.416586,0.416586,0.416586 +0.413461,0.413461,0.413461,0.413461,0.413461,0.413461 +0.410336,0.410336,0.410336,0.410336,0.410336,0.410336 +0.407211,0.407211,0.407211,0.407211,0.407211,0.407211 +0.404086,0.404086,0.404086,0.404086,0.404086,0.404086 +0.400961,0.400961,0.400961,0.400961,0.400961,0.400961 +0.397836,0.397836,0.397836,0.397836,0.397836,0.397836 +0.394711,0.394711,0.394711,0.394711,0.394711,0.394711 +0.391586,0.391586,0.391586,0.391586,0.391586,0.391586 +0.388461,0.388461,0.388461,0.388461,0.388461,0.388461 +0.385336,0.385336,0.385336,0.385336,0.385336,0.385336 +0.382211,0.382211,0.382211,0.382211,0.382211,0.382211 +0.379086,0.379086,0.379086,0.379086,0.379086,0.379086 +0.375961,0.375961,0.375961,0.375961,0.375961,0.375961 +0.372836,0.372836,0.372836,0.372836,0.372836,0.372836 +0.369711,0.369711,0.369711,0.369711,0.369711,0.369711 +0.366586,0.366586,0.366586,0.366586,0.366586,0.366586 +0.363461,0.363461,0.363461,0.363461,0.363461,0.363461 +0.360336,0.360336,0.360336,0.360336,0.360336,0.360336 +0.357211,0.357211,0.357211,0.357211,0.357211,0.357211 +0.354086,0.354086,0.354086,0.354086,0.354086,0.354086 +0.350961,0.350961,0.350961,0.350961,0.350961,0.350961 +0.347836,0.347836,0.347836,0.347836,0.347836,0.347836 +0.344711,0.344711,0.344711,0.344711,0.344711,0.344711 +0.341586,0.341586,0.341586,0.341586,0.341586,0.341586 +0.338461,0.338461,0.338461,0.338461,0.338461,0.338461 +0.335336,0.335336,0.335336,0.335336,0.335336,0.335336 +0.332211,0.332211,0.332211,0.332211,0.332211,0.332211 +0.329086,0.329086,0.329086,0.329086,0.329086,0.329086 +0.325961,0.325961,0.325961,0.325961,0.325961,0.325961 +0.322836,0.322836,0.322836,0.322836,0.322836,0.322836 +0.319711,0.319711,0.319711,0.319711,0.319711,0.319711 +0.316586,0.316586,0.316586,0.316586,0.316586,0.316586 +0.313461,0.313461,0.313461,0.313461,0.313461,0.313461 +0.310336,0.310336,0.310336,0.310336,0.310336,0.310336 +0.307211,0.307211,0.307211,0.307211,0.307211,0.307211 +0.304086,0.304086,0.304086,0.304086,0.304086,0.304086 +0.300961,0.300961,0.300961,0.300961,0.300961,0.300961 +0.297836,0.297836,0.297836,0.297836,0.297836,0.297836 +0.294711,0.294711,0.294711,0.294711,0.294711,0.294711 +0.291586,0.291586,0.291586,0.291586,0.291586,0.291586 +0.288461,0.288461,0.288461,0.288461,0.288461,0.288461 +0.285336,0.285336,0.285336,0.285336,0.285336,0.285336 +0.282211,0.282211,0.282211,0.282211,0.282211,0.282211 +0.279086,0.279086,0.279086,0.279086,0.279086,0.279086 +0.275961,0.275961,0.275961,0.275961,0.275961,0.275961 +0.272836,0.272836,0.272836,0.272836,0.272836,0.272836 +0.269711,0.269711,0.269711,0.269711,0.269711,0.269711 +0.266586,0.266586,0.266586,0.266586,0.266586,0.266586 +0.263461,0.263461,0.263461,0.263461,0.263461,0.263461 +0.260336,0.260336,0.260336,0.260336,0.260336,0.260336 +0.257211,0.257211,0.257211,0.257211,0.257211,0.257211 +0.254086,0.254086,0.254086,0.254086,0.254086,0.254086 +0.250961,0.250961,0.250961,0.250961,0.250961,0.250961 +0.247836,0.247836,0.247836,0.247836,0.247836,0.247836 +0.244711,0.244711,0.244711,0.244711,0.244711,0.244711 +0.241586,0.241586,0.241586,0.241586,0.241586,0.241586 +0.238461,0.238461,0.238461,0.238461,0.238461,0.238461 +0.235336,0.235336,0.235336,0.235336,0.235336,0.235336 +0.232211,0.232211,0.232211,0.232211,0.232211,0.232211 +0.229086,0.229086,0.229086,0.229086,0.229086,0.229086 +0.225961,0.225961,0.225961,0.225961,0.225961,0.225961 +0.222836,0.222836,0.222836,0.222836,0.222836,0.222836 +0.219711,0.219711,0.219711,0.219711,0.219711,0.219711 +0.216586,0.216586,0.216586,0.216586,0.216586,0.216586 +0.213461,0.213461,0.213461,0.213461,0.213461,0.213461 +0.210336,0.210336,0.210336,0.210336,0.210336,0.210336 +0.207211,0.207211,0.207211,0.207211,0.207211,0.207211 +0.204086,0.204086,0.204086,0.204086,0.204086,0.204086 +0.200961,0.200961,0.200961,0.200961,0.200961,0.200961 +0.197836,0.197836,0.197836,0.197836,0.197836,0.197836 +0.194711,0.194711,0.194711,0.194711,0.194711,0.194711 +0.191586,0.191586,0.191586,0.191586,0.191586,0.191586 +0.188461,0.188461,0.188461,0.188461,0.188461,0.188461 +0.185336,0.185336,0.185336,0.185336,0.185336,0.185336 +0.182211,0.182211,0.182211,0.182211,0.182211,0.182211 +0.179086,0.179086,0.179086,0.179086,0.179086,0.179086 +0.175961,0.175961,0.175961,0.175961,0.175961,0.175961 +0.172836,0.172836,0.172836,0.172836,0.172836,0.172836 +0.169711,0.169711,0.169711,0.169711,0.169711,0.169711 +0.166586,0.166586,0.166586,0.166586,0.166586,0.166586 +0.163461,0.163461,0.163461,0.163461,0.163461,0.163461 +0.160336,0.160336,0.160336,0.160336,0.160336,0.160336 +0.157211,0.157211,0.157211,0.157211,0.157211,0.157211 +0.154086,0.154086,0.154086,0.154086,0.154086,0.154086 +0.150961,0.150961,0.150961,0.150961,0.150961,0.150961 +0.147836,0.147836,0.147836,0.147836,0.147836,0.147836 +0.144711,0.144711,0.144711,0.144711,0.144711,0.144711 +0.141586,0.141586,0.141586,0.141586,0.141586,0.141586 +0.138461,0.138461,0.138461,0.138461,0.138461,0.138461 +0.135336,0.135336,0.135336,0.135336,0.135336,0.135336 +0.132211,0.132211,0.132211,0.132211,0.132211,0.132211 +0.129086,0.129086,0.129086,0.129086,0.129086,0.129086 +0.125961,0.125961,0.125961,0.125961,0.125961,0.125961 +0.122836,0.122836,0.122836,0.122836,0.122836,0.122836 +0.119711,0.119711,0.119711,0.119711,0.119711,0.119711 +0.116586,0.116586,0.116586,0.116586,0.116586,0.116586 +0.113461,0.113461,0.113461,0.113461,0.113461,0.113461 +0.110336,0.110336,0.110336,0.110336,0.110336,0.110336 +0.107211,0.107211,0.107211,0.107211,0.107211,0.107211 +0.104086,0.104086,0.104086,0.104086,0.104086,0.104086 +0.100961,0.100961,0.100961,0.100961,0.100961,0.100961 +0.097836,0.097836,0.097836,0.097836,0.097836,0.097836 +0.094711,0.094711,0.094711,0.094711,0.094711,0.094711 +0.091586,0.091586,0.091586,0.091586,0.091586,0.091586 +0.088461,0.088461,0.088461,0.088461,0.088461,0.088461 +0.085336,0.085336,0.085336,0.085336,0.085336,0.085336 +0.082211,0.082211,0.082211,0.082211,0.082211,0.082211 +0.079086,0.079086,0.079086,0.079086,0.079086,0.079086 +0.075961,0.075961,0.075961,0.075961,0.075961,0.075961 +0.072836,0.072836,0.072836,0.072836,0.072836,0.072836 +0.069711,0.069711,0.069711,0.069711,0.069711,0.069711 +0.066586,0.066586,0.066586,0.066586,0.066586,0.066586 +0.063461,0.063461,0.063461,0.063461,0.063461,0.063461 +0.060336,0.060336,0.060336,0.060336,0.060336,0.060336 +0.057211,0.057211,0.057211,0.057211,0.057211,0.057211 +0.054086,0.054086,0.054086,0.054086,0.054086,0.054086 +0.050961,0.050961,0.050961,0.050961,0.050961,0.050961 +0.047836,0.047836,0.047836,0.047836,0.047836,0.047836 +0.044718,0.044718,0.044718,0.044718,0.044718,0.044718 +0.041618,0.041618,0.041618,0.041618,0.041618,0.041618 +0.03855,0.03855,0.03855,0.03855,0.03855,0.03855 +0.035526,0.035526,0.035526,0.035526,0.035526,0.035526 +0.032558,0.032558,0.032558,0.032558,0.032558,0.032558 +0.029659,0.029659,0.029659,0.029659,0.029659,0.029659 +0.026841,0.026841,0.026841,0.026841,0.026841,0.026841 +0.024117,0.024117,0.024117,0.024117,0.024117,0.024117 +0.021499,0.021499,0.021499,0.021499,0.021499,0.021499 +0.019,0.019,0.019,0.019,0.019,0.019 +0.016632,0.016632,0.016632,0.016632,0.016632,0.016632 +0.014409,0.014409,0.014409,0.014409,0.014409,0.014409 +0.012341,0.012341,0.012341,0.012341,0.012341,0.012341 +0.010442,0.010442,0.010442,0.010442,0.010442,0.010442 +0.008725,0.008725,0.008725,0.008725,0.008725,0.008725 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.005863,0.005863,0.005863,0.005863,0.005863,0.005863 +0.004704,0.004704,0.004704,0.004704,0.004704,0.004704 +0.003708,0.003708,0.003708,0.003708,0.003708,0.003708 +0.002864,0.002864,0.002864,0.002864,0.002864,0.002864 +0.002158,0.002158,0.002158,0.002158,0.002158,0.002158 +0.00158,0.00158,0.00158,0.00158,0.00158,0.00158 +0.001115,0.001115,0.001115,0.001115,0.001115,0.001115 +0.000752,0.000752,0.000752,0.000752,0.000752,0.000752 +0.000477,0.000477,0.000477,0.000477,0.000477,0.000477 +0.000279,0.000279,0.000279,0.000279,0.000279,0.000279 +0.000146,0.000146,0.000146,0.000146,0.000146,0.000146 +0.000063,0.000063,0.000063,0.000063,0.000063,0.000063 +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.000056,-0.000056,-0.000056,-0.000056,-0.000056,-0.000056 +-0.000133,-0.000133,-0.000133,-0.000133,-0.000133,-0.000133 +-0.00026,-0.00026,-0.00026,-0.00026,-0.00026,-0.00026 +-0.00045,-0.00045,-0.00045,-0.00045,-0.00045,-0.00045 +-0.000715,-0.000715,-0.000715,-0.000715,-0.000715,-0.000715 +-0.001067,-0.001067,-0.001067,-0.001067,-0.001067,-0.001067 +-0.001519,-0.001519,-0.001519,-0.001519,-0.001519,-0.001519 +-0.002083,-0.002083,-0.002083,-0.002083,-0.002083,-0.002083 +-0.002773,-0.002773,-0.002773,-0.002773,-0.002773,-0.002773 +-0.0036,-0.0036,-0.0036,-0.0036,-0.0036,-0.0036 +-0.004577,-0.004577,-0.004577,-0.004577,-0.004577,-0.004577 +-0.005717,-0.005717,-0.005717,-0.005717,-0.005717,-0.005717 +-0.007031,-0.007031,-0.007031,-0.007031,-0.007031,-0.007031 +-0.008533,-0.008533,-0.008533,-0.008533,-0.008533,-0.008533 +-0.010228,-0.010228,-0.010228,-0.010228,-0.010228,-0.010228 +-0.012106,-0.012106,-0.012106,-0.012106,-0.012106,-0.012106 +-0.014155,-0.014155,-0.014155,-0.014155,-0.014155,-0.014155 +-0.01636,-0.01636,-0.01636,-0.01636,-0.01636,-0.01636 +-0.018712,-0.018712,-0.018712,-0.018712,-0.018712,-0.018712 +-0.021196,-0.021196,-0.021196,-0.021196,-0.021196,-0.021196 +-0.0238,-0.0238,-0.0238,-0.0238,-0.0238,-0.0238 +-0.026512,-0.026512,-0.026512,-0.026512,-0.026512,-0.026512 +-0.02932,-0.02932,-0.02932,-0.02932,-0.02932,-0.02932 +-0.03221,-0.03221,-0.03221,-0.03221,-0.03221,-0.03221 +-0.03517,-0.03517,-0.03517,-0.03517,-0.03517,-0.03517 +-0.038188,-0.038188,-0.038188,-0.038188,-0.038188,-0.038188 +-0.041252,-0.041252,-0.041252,-0.041252,-0.041252,-0.041252 +-0.044348,-0.044348,-0.044348,-0.044348,-0.044348,-0.044348 +-0.047465,-0.047465,-0.047465,-0.047465,-0.047465,-0.047465 +-0.050589,-0.050589,-0.050589,-0.050589,-0.050589,-0.050589 +-0.053714,-0.053714,-0.053714,-0.053714,-0.053714,-0.053714 +-0.056839,-0.056839,-0.056839,-0.056839,-0.056839,-0.056839 +-0.059964,-0.059964,-0.059964,-0.059964,-0.059964,-0.059964 +-0.063089,-0.063089,-0.063089,-0.063089,-0.063089,-0.063089 +-0.066214,-0.066214,-0.066214,-0.066214,-0.066214,-0.066214 +-0.069339,-0.069339,-0.069339,-0.069339,-0.069339,-0.069339 +-0.072464,-0.072464,-0.072464,-0.072464,-0.072464,-0.072464 +-0.075589,-0.075589,-0.075589,-0.075589,-0.075589,-0.075589 +-0.078714,-0.078714,-0.078714,-0.078714,-0.078714,-0.078714 +-0.081839,-0.081839,-0.081839,-0.081839,-0.081839,-0.081839 +-0.084964,-0.084964,-0.084964,-0.084964,-0.084964,-0.084964 +-0.088089,-0.088089,-0.088089,-0.088089,-0.088089,-0.088089 +-0.091214,-0.091214,-0.091214,-0.091214,-0.091214,-0.091214 +-0.094339,-0.094339,-0.094339,-0.094339,-0.094339,-0.094339 +-0.097464,-0.097464,-0.097464,-0.097464,-0.097464,-0.097464 +-0.100589,-0.100589,-0.100589,-0.100589,-0.100589,-0.100589 +-0.103714,-0.103714,-0.103714,-0.103714,-0.103714,-0.103714 +-0.106839,-0.106839,-0.106839,-0.106839,-0.106839,-0.106839 +-0.109964,-0.109964,-0.109964,-0.109964,-0.109964,-0.109964 +-0.113089,-0.113089,-0.113089,-0.113089,-0.113089,-0.113089 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.119339,-0.119339,-0.119339,-0.119339,-0.119339,-0.119339 +-0.122464,-0.122464,-0.122464,-0.122464,-0.122464,-0.122464 +-0.125589,-0.125589,-0.125589,-0.125589,-0.125589,-0.125589 +-0.128714,-0.128714,-0.128714,-0.128714,-0.128714,-0.128714 +-0.131839,-0.131839,-0.131839,-0.131839,-0.131839,-0.131839 +-0.134964,-0.134964,-0.134964,-0.134964,-0.134964,-0.134964 +-0.138089,-0.138089,-0.138089,-0.138089,-0.138089,-0.138089 +-0.141214,-0.141214,-0.141214,-0.141214,-0.141214,-0.141214 +-0.144339,-0.144339,-0.144339,-0.144339,-0.144339,-0.144339 +-0.147464,-0.147464,-0.147464,-0.147464,-0.147464,-0.147464 +-0.150589,-0.150589,-0.150589,-0.150589,-0.150589,-0.150589 +-0.153714,-0.153714,-0.153714,-0.153714,-0.153714,-0.153714 +-0.156839,-0.156839,-0.156839,-0.156839,-0.156839,-0.156839 +-0.159964,-0.159964,-0.159964,-0.159964,-0.159964,-0.159964 +-0.163089,-0.163089,-0.163089,-0.163089,-0.163089,-0.163089 +-0.166214,-0.166214,-0.166214,-0.166214,-0.166214,-0.166214 +-0.169339,-0.169339,-0.169339,-0.169339,-0.169339,-0.169339 +-0.172464,-0.172464,-0.172464,-0.172464,-0.172464,-0.172464 +-0.175589,-0.175589,-0.175589,-0.175589,-0.175589,-0.175589 +-0.178714,-0.178714,-0.178714,-0.178714,-0.178714,-0.178714 +-0.181839,-0.181839,-0.181839,-0.181839,-0.181839,-0.181839 +-0.184964,-0.184964,-0.184964,-0.184964,-0.184964,-0.184964 +-0.188089,-0.188089,-0.188089,-0.188089,-0.188089,-0.188089 +-0.191214,-0.191214,-0.191214,-0.191214,-0.191214,-0.191214 +-0.194339,-0.194339,-0.194339,-0.194339,-0.194339,-0.194339 +-0.197464,-0.197464,-0.197464,-0.197464,-0.197464,-0.197464 +-0.200589,-0.200589,-0.200589,-0.200589,-0.200589,-0.200589 +-0.203714,-0.203714,-0.203714,-0.203714,-0.203714,-0.203714 +-0.206839,-0.206839,-0.206839,-0.206839,-0.206839,-0.206839 +-0.209964,-0.209964,-0.209964,-0.209964,-0.209964,-0.209964 +-0.213089,-0.213089,-0.213089,-0.213089,-0.213089,-0.213089 +-0.216214,-0.216214,-0.216214,-0.216214,-0.216214,-0.216214 +-0.219339,-0.219339,-0.219339,-0.219339,-0.219339,-0.219339 +-0.222464,-0.222464,-0.222464,-0.222464,-0.222464,-0.222464 +-0.225589,-0.225589,-0.225589,-0.225589,-0.225589,-0.225589 +-0.228714,-0.228714,-0.228714,-0.228714,-0.228714,-0.228714 +-0.231839,-0.231839,-0.231839,-0.231839,-0.231839,-0.231839 +-0.234964,-0.234964,-0.234964,-0.234964,-0.234964,-0.234964 +-0.238089,-0.238089,-0.238089,-0.238089,-0.238089,-0.238089 +-0.241214,-0.241214,-0.241214,-0.241214,-0.241214,-0.241214 +-0.244339,-0.244339,-0.244339,-0.244339,-0.244339,-0.244339 +-0.247464,-0.247464,-0.247464,-0.247464,-0.247464,-0.247464 +-0.250589,-0.250589,-0.250589,-0.250589,-0.250589,-0.250589 +-0.253714,-0.253714,-0.253714,-0.253714,-0.253714,-0.253714 +-0.256839,-0.256839,-0.256839,-0.256839,-0.256839,-0.256839 +-0.259964,-0.259964,-0.259964,-0.259964,-0.259964,-0.259964 +-0.263089,-0.263089,-0.263089,-0.263089,-0.263089,-0.263089 +-0.266214,-0.266214,-0.266214,-0.266214,-0.266214,-0.266214 +-0.269339,-0.269339,-0.269339,-0.269339,-0.269339,-0.269339 +-0.272464,-0.272464,-0.272464,-0.272464,-0.272464,-0.272464 +-0.275589,-0.275589,-0.275589,-0.275589,-0.275589,-0.275589 +-0.278714,-0.278714,-0.278714,-0.278714,-0.278714,-0.278714 +-0.281839,-0.281839,-0.281839,-0.281839,-0.281839,-0.281839 +-0.284964,-0.284964,-0.284964,-0.284964,-0.284964,-0.284964 +-0.288089,-0.288089,-0.288089,-0.288089,-0.288089,-0.288089 +-0.291214,-0.291214,-0.291214,-0.291214,-0.291214,-0.291214 +-0.294339,-0.294339,-0.294339,-0.294339,-0.294339,-0.294339 +-0.297464,-0.297464,-0.297464,-0.297464,-0.297464,-0.297464 +-0.300589,-0.300589,-0.300589,-0.300589,-0.300589,-0.300589 +-0.303714,-0.303714,-0.303714,-0.303714,-0.303714,-0.303714 +-0.306839,-0.306839,-0.306839,-0.306839,-0.306839,-0.306839 +-0.309964,-0.309964,-0.309964,-0.309964,-0.309964,-0.309964 +-0.313089,-0.313089,-0.313089,-0.313089,-0.313089,-0.313089 +-0.316214,-0.316214,-0.316214,-0.316214,-0.316214,-0.316214 +-0.319339,-0.319339,-0.319339,-0.319339,-0.319339,-0.319339 +-0.322464,-0.322464,-0.322464,-0.322464,-0.322464,-0.322464 +-0.325589,-0.325589,-0.325589,-0.325589,-0.325589,-0.325589 +-0.328714,-0.328714,-0.328714,-0.328714,-0.328714,-0.328714 +-0.331839,-0.331839,-0.331839,-0.331839,-0.331839,-0.331839 +-0.334964,-0.334964,-0.334964,-0.334964,-0.334964,-0.334964 +-0.338089,-0.338089,-0.338089,-0.338089,-0.338089,-0.338089 +-0.341214,-0.341214,-0.341214,-0.341214,-0.341214,-0.341214 +-0.344339,-0.344339,-0.344339,-0.344339,-0.344339,-0.344339 +-0.347464,-0.347464,-0.347464,-0.347464,-0.347464,-0.347464 +-0.350589,-0.350589,-0.350589,-0.350589,-0.350589,-0.350589 +-0.353714,-0.353714,-0.353714,-0.353714,-0.353714,-0.353714 +-0.356839,-0.356839,-0.356839,-0.356839,-0.356839,-0.356839 +-0.359964,-0.359964,-0.359964,-0.359964,-0.359964,-0.359964 +-0.363089,-0.363089,-0.363089,-0.363089,-0.363089,-0.363089 +-0.366214,-0.366214,-0.366214,-0.366214,-0.366214,-0.366214 +-0.369339,-0.369339,-0.369339,-0.369339,-0.369339,-0.369339 +-0.372464,-0.372464,-0.372464,-0.372464,-0.372464,-0.372464 +-0.375589,-0.375589,-0.375589,-0.375589,-0.375589,-0.375589 +-0.378714,-0.378714,-0.378714,-0.378714,-0.378714,-0.378714 +-0.381839,-0.381839,-0.381839,-0.381839,-0.381839,-0.381839 +-0.384964,-0.384964,-0.384964,-0.384964,-0.384964,-0.384964 +-0.388089,-0.388089,-0.388089,-0.388089,-0.388089,-0.388089 +-0.391214,-0.391214,-0.391214,-0.391214,-0.391214,-0.391214 +-0.394339,-0.394339,-0.394339,-0.394339,-0.394339,-0.394339 +-0.397464,-0.397464,-0.397464,-0.397464,-0.397464,-0.397464 +-0.400589,-0.400589,-0.400589,-0.400589,-0.400589,-0.400589 +-0.403714,-0.403714,-0.403714,-0.403714,-0.403714,-0.403714 +-0.406839,-0.406839,-0.406839,-0.406839,-0.406839,-0.406839 +-0.409964,-0.409964,-0.409964,-0.409964,-0.409964,-0.409964 +-0.413089,-0.413089,-0.413089,-0.413089,-0.413089,-0.413089 +-0.416214,-0.416214,-0.416214,-0.416214,-0.416214,-0.416214 +-0.419339,-0.419339,-0.419339,-0.419339,-0.419339,-0.419339 +-0.422464,-0.422464,-0.422464,-0.422464,-0.422464,-0.422464 +-0.425589,-0.425589,-0.425589,-0.425589,-0.425589,-0.425589 +-0.428714,-0.428714,-0.428714,-0.428714,-0.428714,-0.428714 +-0.431839,-0.431839,-0.431839,-0.431839,-0.431839,-0.431839 +-0.434964,-0.434964,-0.434964,-0.434964,-0.434964,-0.434964 +-0.438089,-0.438089,-0.438089,-0.438089,-0.438089,-0.438089 +-0.441214,-0.441214,-0.441214,-0.441214,-0.441214,-0.441214 +-0.444339,-0.444339,-0.444339,-0.444339,-0.444339,-0.444339 +-0.447464,-0.447464,-0.447464,-0.447464,-0.447464,-0.447464 +-0.450589,-0.450589,-0.450589,-0.450589,-0.450589,-0.450589 +-0.453714,-0.453714,-0.453714,-0.453714,-0.453714,-0.453714 +-0.456839,-0.456839,-0.456839,-0.456839,-0.456839,-0.456839 +-0.459964,-0.459964,-0.459964,-0.459964,-0.459964,-0.459964 +-0.463089,-0.463089,-0.463089,-0.463089,-0.463089,-0.463089 +-0.466214,-0.466214,-0.466214,-0.466214,-0.466214,-0.466214 +-0.469339,-0.469339,-0.469339,-0.469339,-0.469339,-0.469339 +-0.472464,-0.472464,-0.472464,-0.472464,-0.472464,-0.472464 +-0.475589,-0.475589,-0.475589,-0.475589,-0.475589,-0.475589 +-0.478714,-0.478714,-0.478714,-0.478714,-0.478714,-0.478714 +-0.481839,-0.481839,-0.481839,-0.481839,-0.481839,-0.481839 +-0.484964,-0.484964,-0.484964,-0.484964,-0.484964,-0.484964 +-0.488089,-0.488089,-0.488089,-0.488089,-0.488089,-0.488089 +-0.491214,-0.491214,-0.491214,-0.491214,-0.491214,-0.491214 +-0.494339,-0.494339,-0.494339,-0.494339,-0.494339,-0.494339 +-0.497464,-0.497464,-0.497464,-0.497464,-0.497464,-0.497464 +-0.500589,-0.500589,-0.500589,-0.500589,-0.500589,-0.500589 +-0.503714,-0.503714,-0.503714,-0.503714,-0.503714,-0.503714 +-0.506839,-0.506839,-0.506839,-0.506839,-0.506839,-0.506839 +-0.509964,-0.509964,-0.509964,-0.509964,-0.509964,-0.509964 +-0.513089,-0.513089,-0.513089,-0.513089,-0.513089,-0.513089 +-0.516214,-0.516214,-0.516214,-0.516214,-0.516214,-0.516214 +-0.519339,-0.519339,-0.519339,-0.519339,-0.519339,-0.519339 +-0.522464,-0.522464,-0.522464,-0.522464,-0.522464,-0.522464 +-0.525589,-0.525589,-0.525589,-0.525589,-0.525589,-0.525589 +-0.528714,-0.528714,-0.528714,-0.528714,-0.528714,-0.528714 +-0.531839,-0.531839,-0.531839,-0.531839,-0.531839,-0.531839 +-0.534964,-0.534964,-0.534964,-0.534964,-0.534964,-0.534964 +-0.538089,-0.538089,-0.538089,-0.538089,-0.538089,-0.538089 +-0.541214,-0.541214,-0.541214,-0.541214,-0.541214,-0.541214 +-0.544339,-0.544339,-0.544339,-0.544339,-0.544339,-0.544339 +-0.547464,-0.547464,-0.547464,-0.547464,-0.547464,-0.547464 +-0.550589,-0.550589,-0.550589,-0.550589,-0.550589,-0.550589 +-0.553714,-0.553714,-0.553714,-0.553714,-0.553714,-0.553714 +-0.556839,-0.556839,-0.556839,-0.556839,-0.556839,-0.556839 +-0.559964,-0.559964,-0.559964,-0.559964,-0.559964,-0.559964 +-0.563089,-0.563089,-0.563089,-0.563089,-0.563089,-0.563089 +-0.566214,-0.566214,-0.566214,-0.566214,-0.566214,-0.566214 +-0.569339,-0.569339,-0.569339,-0.569339,-0.569339,-0.569339 +-0.572464,-0.572464,-0.572464,-0.572464,-0.572464,-0.572464 +-0.575589,-0.575589,-0.575589,-0.575589,-0.575589,-0.575589 +-0.578714,-0.578714,-0.578714,-0.578714,-0.578714,-0.578714 +-0.581839,-0.581839,-0.581839,-0.581839,-0.581839,-0.581839 +-0.584964,-0.584964,-0.584964,-0.584964,-0.584964,-0.584964 +-0.588089,-0.588089,-0.588089,-0.588089,-0.588089,-0.588089 +-0.591214,-0.591214,-0.591214,-0.591214,-0.591214,-0.591214 +-0.594339,-0.594339,-0.594339,-0.594339,-0.594339,-0.594339 +-0.597464,-0.597464,-0.597464,-0.597464,-0.597464,-0.597464 +-0.600589,-0.600589,-0.600589,-0.600589,-0.600589,-0.600589 +-0.603714,-0.603714,-0.603714,-0.603714,-0.603714,-0.603714 +-0.606839,-0.606839,-0.606839,-0.606839,-0.606839,-0.606839 +-0.609964,-0.609964,-0.609964,-0.609964,-0.609964,-0.609964 +-0.613089,-0.613089,-0.613089,-0.613089,-0.613089,-0.613089 +-0.616214,-0.616214,-0.616214,-0.616214,-0.616214,-0.616214 +-0.619339,-0.619339,-0.619339,-0.619339,-0.619339,-0.619339 +-0.622464,-0.622464,-0.622464,-0.622464,-0.622464,-0.622464 +-0.625589,-0.625589,-0.625589,-0.625589,-0.625589,-0.625589 +-0.628714,-0.628714,-0.628714,-0.628714,-0.628714,-0.628714 +-0.631839,-0.631839,-0.631839,-0.631839,-0.631839,-0.631839 +-0.634964,-0.634964,-0.634964,-0.634964,-0.634964,-0.634964 +-0.638089,-0.638089,-0.638089,-0.638089,-0.638089,-0.638089 +-0.641214,-0.641214,-0.641214,-0.641214,-0.641214,-0.641214 +-0.644339,-0.644339,-0.644339,-0.644339,-0.644339,-0.644339 +-0.647464,-0.647464,-0.647464,-0.647464,-0.647464,-0.647464 +-0.650589,-0.650589,-0.650589,-0.650589,-0.650589,-0.650589 +-0.653714,-0.653714,-0.653714,-0.653714,-0.653714,-0.653714 +-0.656839,-0.656839,-0.656839,-0.656839,-0.656839,-0.656839 +-0.659964,-0.659964,-0.659964,-0.659964,-0.659964,-0.659964 +-0.663089,-0.663089,-0.663089,-0.663089,-0.663089,-0.663089 +-0.666214,-0.666214,-0.666214,-0.666214,-0.666214,-0.666214 +-0.669339,-0.669339,-0.669339,-0.669339,-0.669339,-0.669339 +-0.672464,-0.672464,-0.672464,-0.672464,-0.672464,-0.672464 +-0.675589,-0.675589,-0.675589,-0.675589,-0.675589,-0.675589 +-0.678714,-0.678714,-0.678714,-0.678714,-0.678714,-0.678714 +-0.681839,-0.681839,-0.681839,-0.681839,-0.681839,-0.681839 +-0.684964,-0.684964,-0.684964,-0.684964,-0.684964,-0.684964 +-0.688089,-0.688089,-0.688089,-0.688089,-0.688089,-0.688089 +-0.691214,-0.691214,-0.691214,-0.691214,-0.691214,-0.691214 +-0.694339,-0.694339,-0.694339,-0.694339,-0.694339,-0.694339 +-0.697464,-0.697464,-0.697464,-0.697464,-0.697464,-0.697464 +-0.700589,-0.700589,-0.700589,-0.700589,-0.700589,-0.700589 +-0.703714,-0.703714,-0.703714,-0.703714,-0.703714,-0.703714 +-0.706839,-0.706839,-0.706839,-0.706839,-0.706839,-0.706839 +-0.709964,-0.709964,-0.709964,-0.709964,-0.709964,-0.709964 +-0.713089,-0.713089,-0.713089,-0.713089,-0.713089,-0.713089 +-0.716214,-0.716214,-0.716214,-0.716214,-0.716214,-0.716214 +-0.719339,-0.719339,-0.719339,-0.719339,-0.719339,-0.719339 +-0.722464,-0.722464,-0.722464,-0.722464,-0.722464,-0.722464 +-0.725589,-0.725589,-0.725589,-0.725589,-0.725589,-0.725589 +-0.728714,-0.728714,-0.728714,-0.728714,-0.728714,-0.728714 +-0.731839,-0.731839,-0.731839,-0.731839,-0.731839,-0.731839 +-0.734964,-0.734964,-0.734964,-0.734964,-0.734964,-0.734964 +-0.738089,-0.738089,-0.738089,-0.738089,-0.738089,-0.738089 +-0.741214,-0.741214,-0.741214,-0.741214,-0.741214,-0.741214 +-0.744339,-0.744339,-0.744339,-0.744339,-0.744339,-0.744339 +-0.747464,-0.747464,-0.747464,-0.747464,-0.747464,-0.747464 +-0.750589,-0.750589,-0.750589,-0.750589,-0.750589,-0.750589 +-0.753714,-0.753714,-0.753714,-0.753714,-0.753714,-0.753714 +-0.756839,-0.756839,-0.756839,-0.756839,-0.756839,-0.756839 +-0.759964,-0.759964,-0.759964,-0.759964,-0.759964,-0.759964 +-0.763089,-0.763089,-0.763089,-0.763089,-0.763089,-0.763089 +-0.766214,-0.766214,-0.766214,-0.766214,-0.766214,-0.766214 +-0.769339,-0.769339,-0.769339,-0.769339,-0.769339,-0.769339 +-0.772464,-0.772464,-0.772464,-0.772464,-0.772464,-0.772464 +-0.775589,-0.775589,-0.775589,-0.775589,-0.775589,-0.775589 +-0.778714,-0.778714,-0.778714,-0.778714,-0.778714,-0.778714 +-0.781839,-0.781839,-0.781839,-0.781839,-0.781839,-0.781839 +-0.784964,-0.784964,-0.784964,-0.784964,-0.784964,-0.784964 +-0.788089,-0.788089,-0.788089,-0.788089,-0.788089,-0.788089 +-0.791214,-0.791214,-0.791214,-0.791214,-0.791214,-0.791214 +-0.794339,-0.794339,-0.794339,-0.794339,-0.794339,-0.794339 +-0.797464,-0.797464,-0.797464,-0.797464,-0.797464,-0.797464 +-0.800589,-0.800589,-0.800589,-0.800589,-0.800589,-0.800589 +-0.803714,-0.803714,-0.803714,-0.803714,-0.803714,-0.803714 +-0.806839,-0.806839,-0.806839,-0.806839,-0.806839,-0.806839 +-0.809964,-0.809964,-0.809964,-0.809964,-0.809964,-0.809964 +-0.813089,-0.813089,-0.813089,-0.813089,-0.813089,-0.813089 +-0.816214,-0.816214,-0.816214,-0.816214,-0.816214,-0.816214 +-0.819339,-0.819339,-0.819339,-0.819339,-0.819339,-0.819339 +-0.822464,-0.822464,-0.822464,-0.822464,-0.822464,-0.822464 +-0.825589,-0.825589,-0.825589,-0.825589,-0.825589,-0.825589 +-0.828714,-0.828714,-0.828714,-0.828714,-0.828714,-0.828714 +-0.831839,-0.831839,-0.831839,-0.831839,-0.831839,-0.831839 +-0.834964,-0.834964,-0.834964,-0.834964,-0.834964,-0.834964 +-0.838089,-0.838089,-0.838089,-0.838089,-0.838089,-0.838089 +-0.841214,-0.841214,-0.841214,-0.841214,-0.841214,-0.841214 +-0.844339,-0.844339,-0.844339,-0.844339,-0.844339,-0.844339 +-0.847464,-0.847464,-0.847464,-0.847464,-0.847464,-0.847464 +-0.850589,-0.850589,-0.850589,-0.850589,-0.850589,-0.850589 +-0.853714,-0.853714,-0.853714,-0.853714,-0.853714,-0.853714 +-0.856839,-0.856839,-0.856839,-0.856839,-0.856839,-0.856839 +-0.859964,-0.859964,-0.859964,-0.859964,-0.859964,-0.859964 +-0.863089,-0.863089,-0.863089,-0.863089,-0.863089,-0.863089 +-0.866214,-0.866214,-0.866214,-0.866214,-0.866214,-0.866214 +-0.869339,-0.869339,-0.869339,-0.869339,-0.869339,-0.869339 +-0.872464,-0.872464,-0.872464,-0.872464,-0.872464,-0.872464 +-0.875589,-0.875589,-0.875589,-0.875589,-0.875589,-0.875589 +-0.878714,-0.878714,-0.878714,-0.878714,-0.878714,-0.878714 +-0.881839,-0.881839,-0.881839,-0.881839,-0.881839,-0.881839 +-0.884964,-0.884964,-0.884964,-0.884964,-0.884964,-0.884964 +-0.888089,-0.888089,-0.888089,-0.888089,-0.888089,-0.888089 +-0.891214,-0.891214,-0.891214,-0.891214,-0.891214,-0.891214 +-0.894339,-0.894339,-0.894339,-0.894339,-0.894339,-0.894339 +-0.897464,-0.897464,-0.897464,-0.897464,-0.897464,-0.897464 +-0.900589,-0.900589,-0.900589,-0.900589,-0.900589,-0.900589 +-0.903714,-0.903714,-0.903714,-0.903714,-0.903714,-0.903714 +-0.906839,-0.906839,-0.906839,-0.906839,-0.906839,-0.906839 +-0.909964,-0.909964,-0.909964,-0.909964,-0.909964,-0.909964 +-0.913089,-0.913089,-0.913089,-0.913089,-0.913089,-0.913089 +-0.916214,-0.916214,-0.916214,-0.916214,-0.916214,-0.916214 +-0.919339,-0.919339,-0.919339,-0.919339,-0.919339,-0.919339 +-0.922464,-0.922464,-0.922464,-0.922464,-0.922464,-0.922464 +-0.925589,-0.925589,-0.925589,-0.925589,-0.925589,-0.925589 +-0.928714,-0.928714,-0.928714,-0.928714,-0.928714,-0.928714 +-0.931839,-0.931839,-0.931839,-0.931839,-0.931839,-0.931839 +-0.934964,-0.934964,-0.934964,-0.934964,-0.934964,-0.934964 +-0.938089,-0.938089,-0.938089,-0.938089,-0.938089,-0.938089 +-0.941214,-0.941214,-0.941214,-0.941214,-0.941214,-0.941214 +-0.944339,-0.944339,-0.944339,-0.944339,-0.944339,-0.944339 +-0.947464,-0.947464,-0.947464,-0.947464,-0.947464,-0.947464 +-0.950589,-0.950589,-0.950589,-0.950589,-0.950589,-0.950589 +-0.953714,-0.953714,-0.953714,-0.953714,-0.953714,-0.953714 +-0.956839,-0.956839,-0.956839,-0.956839,-0.956839,-0.956839 +-0.959964,-0.959964,-0.959964,-0.959964,-0.959964,-0.959964 +-0.963089,-0.963089,-0.963089,-0.963089,-0.963089,-0.963089 +-0.966214,-0.966214,-0.966214,-0.966214,-0.966214,-0.966214 +-0.969339,-0.969339,-0.969339,-0.969339,-0.969339,-0.969339 +-0.972464,-0.972464,-0.972464,-0.972464,-0.972464,-0.972464 +-0.975589,-0.975589,-0.975589,-0.975589,-0.975589,-0.975589 +-0.978714,-0.978714,-0.978714,-0.978714,-0.978714,-0.978714 +-0.981839,-0.981839,-0.981839,-0.981839,-0.981839,-0.981839 +-0.984964,-0.984964,-0.984964,-0.984964,-0.984964,-0.984964 +-0.988089,-0.988089,-0.988089,-0.988089,-0.988089,-0.988089 +-0.991214,-0.991214,-0.991214,-0.991214,-0.991214,-0.991214 +-0.994339,-0.994339,-0.994339,-0.994339,-0.994339,-0.994339 +-0.997464,-0.997464,-0.997464,-0.997464,-0.997464,-0.997464 +-1.000589,-1.000589,-1.000589,-1.000589,-1.000589,-1.000589 +-1.003714,-1.003714,-1.003714,-1.003714,-1.003714,-1.003714 +-1.006839,-1.006839,-1.006839,-1.006839,-1.006839,-1.006839 +-1.009964,-1.009964,-1.009964,-1.009964,-1.009964,-1.009964 +-1.013089,-1.013089,-1.013089,-1.013089,-1.013089,-1.013089 +-1.016214,-1.016214,-1.016214,-1.016214,-1.016214,-1.016214 +-1.019339,-1.019339,-1.019339,-1.019339,-1.019339,-1.019339 +-1.022464,-1.022464,-1.022464,-1.022464,-1.022464,-1.022464 +-1.025589,-1.025589,-1.025589,-1.025589,-1.025589,-1.025589 +-1.028714,-1.028714,-1.028714,-1.028714,-1.028714,-1.028714 +-1.031839,-1.031839,-1.031839,-1.031839,-1.031839,-1.031839 +-1.034964,-1.034964,-1.034964,-1.034964,-1.034964,-1.034964 +-1.038089,-1.038089,-1.038089,-1.038089,-1.038089,-1.038089 +-1.041214,-1.041214,-1.041214,-1.041214,-1.041214,-1.041214 +-1.044339,-1.044339,-1.044339,-1.044339,-1.044339,-1.044339 +-1.047464,-1.047464,-1.047464,-1.047464,-1.047464,-1.047464 +-1.050589,-1.050589,-1.050589,-1.050589,-1.050589,-1.050589 +-1.053714,-1.053714,-1.053714,-1.053714,-1.053714,-1.053714 +-1.056839,-1.056839,-1.056839,-1.056839,-1.056839,-1.056839 +-1.059964,-1.059964,-1.059964,-1.059964,-1.059964,-1.059964 +-1.063089,-1.063089,-1.063089,-1.063089,-1.063089,-1.063089 +-1.066214,-1.066214,-1.066214,-1.066214,-1.066214,-1.066214 +-1.069339,-1.069339,-1.069339,-1.069339,-1.069339,-1.069339 +-1.072464,-1.072464,-1.072464,-1.072464,-1.072464,-1.072464 +-1.075589,-1.075589,-1.075589,-1.075589,-1.075589,-1.075589 +-1.078714,-1.078714,-1.078714,-1.078714,-1.078714,-1.078714 +-1.081839,-1.081839,-1.081839,-1.081839,-1.081839,-1.081839 +-1.084964,-1.084964,-1.084964,-1.084964,-1.084964,-1.084964 +-1.088089,-1.088089,-1.088089,-1.088089,-1.088089,-1.088089 +-1.091214,-1.091214,-1.091214,-1.091214,-1.091214,-1.091214 +-1.094339,-1.094339,-1.094339,-1.094339,-1.094339,-1.094339 +-1.097464,-1.097464,-1.097464,-1.097464,-1.097464,-1.097464 +-1.100589,-1.100589,-1.100589,-1.100589,-1.100589,-1.100589 +-1.103714,-1.103714,-1.103714,-1.103714,-1.103714,-1.103714 +-1.106839,-1.106839,-1.106839,-1.106839,-1.106839,-1.106839 +-1.109964,-1.109964,-1.109964,-1.109964,-1.109964,-1.109964 +-1.113089,-1.113089,-1.113089,-1.113089,-1.113089,-1.113089 +-1.116214,-1.116214,-1.116214,-1.116214,-1.116214,-1.116214 +-1.119339,-1.119339,-1.119339,-1.119339,-1.119339,-1.119339 +-1.122464,-1.122464,-1.122464,-1.122464,-1.122464,-1.122464 +-1.125589,-1.125589,-1.125589,-1.125589,-1.125589,-1.125589 +-1.128714,-1.128714,-1.128714,-1.128714,-1.128714,-1.128714 +-1.131839,-1.131839,-1.131839,-1.131839,-1.131839,-1.131839 +-1.134964,-1.134964,-1.134964,-1.134964,-1.134964,-1.134964 +-1.138089,-1.138089,-1.138089,-1.138089,-1.138089,-1.138089 +-1.141214,-1.141214,-1.141214,-1.141214,-1.141214,-1.141214 +-1.144339,-1.144339,-1.144339,-1.144339,-1.144339,-1.144339 +-1.147464,-1.147464,-1.147464,-1.147464,-1.147464,-1.147464 +-1.150589,-1.150589,-1.150589,-1.150589,-1.150589,-1.150589 +-1.153714,-1.153714,-1.153714,-1.153714,-1.153714,-1.153714 +-1.156839,-1.156839,-1.156839,-1.156839,-1.156839,-1.156839 +-1.159964,-1.159964,-1.159964,-1.159964,-1.159964,-1.159964 +-1.163089,-1.163089,-1.163089,-1.163089,-1.163089,-1.163089 +-1.166214,-1.166214,-1.166214,-1.166214,-1.166214,-1.166214 +-1.169339,-1.169339,-1.169339,-1.169339,-1.169339,-1.169339 +-1.172464,-1.172464,-1.172464,-1.172464,-1.172464,-1.172464 +-1.175589,-1.175589,-1.175589,-1.175589,-1.175589,-1.175589 +-1.178714,-1.178714,-1.178714,-1.178714,-1.178714,-1.178714 +-1.181839,-1.181839,-1.181839,-1.181839,-1.181839,-1.181839 +-1.184964,-1.184964,-1.184964,-1.184964,-1.184964,-1.184964 +-1.188089,-1.188089,-1.188089,-1.188089,-1.188089,-1.188089 +-1.191214,-1.191214,-1.191214,-1.191214,-1.191214,-1.191214 +-1.194339,-1.194339,-1.194339,-1.194339,-1.194339,-1.194339 +-1.197464,-1.197464,-1.197464,-1.197464,-1.197464,-1.197464 +-1.200589,-1.200589,-1.200589,-1.200589,-1.200589,-1.200589 +-1.203714,-1.203714,-1.203714,-1.203714,-1.203714,-1.203714 +-1.206839,-1.206839,-1.206839,-1.206839,-1.206839,-1.206839 +-1.209964,-1.209964,-1.209964,-1.209964,-1.209964,-1.209964 +-1.213089,-1.213089,-1.213089,-1.213089,-1.213089,-1.213089 +-1.216214,-1.216214,-1.216214,-1.216214,-1.216214,-1.216214 +-1.219339,-1.219339,-1.219339,-1.219339,-1.219339,-1.219339 +-1.222464,-1.222464,-1.222464,-1.222464,-1.222464,-1.222464 +-1.225589,-1.225589,-1.225589,-1.225589,-1.225589,-1.225589 +-1.228714,-1.228714,-1.228714,-1.228714,-1.228714,-1.228714 +-1.231839,-1.231839,-1.231839,-1.231839,-1.231839,-1.231839 +-1.234964,-1.234964,-1.234964,-1.234964,-1.234964,-1.234964 +-1.238089,-1.238089,-1.238089,-1.238089,-1.238089,-1.238089 +-1.241214,-1.241214,-1.241214,-1.241214,-1.241214,-1.241214 +-1.244339,-1.244339,-1.244339,-1.244339,-1.244339,-1.244339 +-1.247464,-1.247464,-1.247464,-1.247464,-1.247464,-1.247464 +-1.250589,-1.250589,-1.250589,-1.250589,-1.250589,-1.250589 +-1.253714,-1.253714,-1.253714,-1.253714,-1.253714,-1.253714 +-1.256839,-1.256839,-1.256839,-1.256839,-1.256839,-1.256839 +-1.259964,-1.259964,-1.259964,-1.259964,-1.259964,-1.259964 +-1.263089,-1.263089,-1.263089,-1.263089,-1.263089,-1.263089 +-1.266214,-1.266214,-1.266214,-1.266214,-1.266214,-1.266214 +-1.269339,-1.269339,-1.269339,-1.269339,-1.269339,-1.269339 +-1.272464,-1.272464,-1.272464,-1.272464,-1.272464,-1.272464 +-1.275589,-1.275589,-1.275589,-1.275589,-1.275589,-1.275589 +-1.278714,-1.278714,-1.278714,-1.278714,-1.278714,-1.278714 +-1.281839,-1.281839,-1.281839,-1.281839,-1.281839,-1.281839 +-1.284964,-1.284964,-1.284964,-1.284964,-1.284964,-1.284964 +-1.288089,-1.288089,-1.288089,-1.288089,-1.288089,-1.288089 +-1.291214,-1.291214,-1.291214,-1.291214,-1.291214,-1.291214 +-1.294339,-1.294339,-1.294339,-1.294339,-1.294339,-1.294339 +-1.297464,-1.297464,-1.297464,-1.297464,-1.297464,-1.297464 +-1.300589,-1.300589,-1.300589,-1.300589,-1.300589,-1.300589 +-1.303714,-1.303714,-1.303714,-1.303714,-1.303714,-1.303714 +-1.306839,-1.306839,-1.306839,-1.306839,-1.306839,-1.306839 +-1.309964,-1.309964,-1.309964,-1.309964,-1.309964,-1.309964 +-1.313089,-1.313089,-1.313089,-1.313089,-1.313089,-1.313089 +-1.316214,-1.316214,-1.316214,-1.316214,-1.316214,-1.316214 +-1.319339,-1.319339,-1.319339,-1.319339,-1.319339,-1.319339 +-1.322464,-1.322464,-1.322464,-1.322464,-1.322464,-1.322464 +-1.325589,-1.325589,-1.325589,-1.325589,-1.325589,-1.325589 +-1.328714,-1.328714,-1.328714,-1.328714,-1.328714,-1.328714 +-1.331839,-1.331839,-1.331839,-1.331839,-1.331839,-1.331839 +-1.334964,-1.334964,-1.334964,-1.334964,-1.334964,-1.334964 +-1.338089,-1.338089,-1.338089,-1.338089,-1.338089,-1.338089 +-1.341214,-1.341214,-1.341214,-1.341214,-1.341214,-1.341214 +-1.344339,-1.344339,-1.344339,-1.344339,-1.344339,-1.344339 +-1.347464,-1.347464,-1.347464,-1.347464,-1.347464,-1.347464 +-1.350589,-1.350589,-1.350589,-1.350589,-1.350589,-1.350589 +-1.353714,-1.353714,-1.353714,-1.353714,-1.353714,-1.353714 +-1.356839,-1.356839,-1.356839,-1.356839,-1.356839,-1.356839 +-1.359964,-1.359964,-1.359964,-1.359964,-1.359964,-1.359964 +-1.363089,-1.363089,-1.363089,-1.363089,-1.363089,-1.363089 +-1.366214,-1.366214,-1.366214,-1.366214,-1.366214,-1.366214 +-1.369339,-1.369339,-1.369339,-1.369339,-1.369339,-1.369339 +-1.372464,-1.372464,-1.372464,-1.372464,-1.372464,-1.372464 +-1.375589,-1.375589,-1.375589,-1.375589,-1.375589,-1.375589 +-1.378714,-1.378714,-1.378714,-1.378714,-1.378714,-1.378714 +-1.381839,-1.381839,-1.381839,-1.381839,-1.381839,-1.381839 +-1.384964,-1.384964,-1.384964,-1.384964,-1.384964,-1.384964 +-1.388089,-1.388089,-1.388089,-1.388089,-1.388089,-1.388089 +-1.391214,-1.391214,-1.391214,-1.391214,-1.391214,-1.391214 +-1.394339,-1.394339,-1.394339,-1.394339,-1.394339,-1.394339 +-1.397464,-1.397464,-1.397464,-1.397464,-1.397464,-1.397464 +-1.400589,-1.400589,-1.400589,-1.400589,-1.400589,-1.400589 +-1.403714,-1.403714,-1.403714,-1.403714,-1.403714,-1.403714 +-1.406839,-1.406839,-1.406839,-1.406839,-1.406839,-1.406839 +-1.409964,-1.409964,-1.409964,-1.409964,-1.409964,-1.409964 +-1.413089,-1.413089,-1.413089,-1.413089,-1.413089,-1.413089 +-1.416214,-1.416214,-1.416214,-1.416214,-1.416214,-1.416214 +-1.419339,-1.419339,-1.419339,-1.419339,-1.419339,-1.419339 +-1.422464,-1.422464,-1.422464,-1.422464,-1.422464,-1.422464 +-1.425589,-1.425589,-1.425589,-1.425589,-1.425589,-1.425589 +-1.428714,-1.428714,-1.428714,-1.428714,-1.428714,-1.428714 +-1.431839,-1.431839,-1.431839,-1.431839,-1.431839,-1.431839 +-1.434964,-1.434964,-1.434964,-1.434964,-1.434964,-1.434964 +-1.438089,-1.438089,-1.438089,-1.438089,-1.438089,-1.438089 +-1.441214,-1.441214,-1.441214,-1.441214,-1.441214,-1.441214 +-1.444339,-1.444339,-1.444339,-1.444339,-1.444339,-1.444339 +-1.447464,-1.447464,-1.447464,-1.447464,-1.447464,-1.447464 +-1.450589,-1.450589,-1.450589,-1.450589,-1.450589,-1.450589 +-1.453714,-1.453714,-1.453714,-1.453714,-1.453714,-1.453714 +-1.456839,-1.456839,-1.456839,-1.456839,-1.456839,-1.456839 +-1.459964,-1.459964,-1.459964,-1.459964,-1.459964,-1.459964 +-1.463089,-1.463089,-1.463089,-1.463089,-1.463089,-1.463089 +-1.466214,-1.466214,-1.466214,-1.466214,-1.466214,-1.466214 +-1.469339,-1.469339,-1.469339,-1.469339,-1.469339,-1.469339 +-1.472464,-1.472464,-1.472464,-1.472464,-1.472464,-1.472464 +-1.475589,-1.475589,-1.475589,-1.475589,-1.475589,-1.475589 +-1.478714,-1.478714,-1.478714,-1.478714,-1.478714,-1.478714 +-1.481839,-1.481839,-1.481839,-1.481839,-1.481839,-1.481839 +-1.484964,-1.484964,-1.484964,-1.484964,-1.484964,-1.484964 +-1.488089,-1.488089,-1.488089,-1.488089,-1.488089,-1.488089 +-1.491214,-1.491214,-1.491214,-1.491214,-1.491214,-1.491214 +-1.494339,-1.494339,-1.494339,-1.494339,-1.494339,-1.494339 +-1.497464,-1.497464,-1.497464,-1.497464,-1.497464,-1.497464 +-1.500589,-1.500589,-1.500589,-1.500589,-1.500589,-1.500589 +-1.503714,-1.503714,-1.503714,-1.503714,-1.503714,-1.503714 +-1.506839,-1.506839,-1.506839,-1.506839,-1.506839,-1.506839 +-1.509964,-1.509964,-1.509964,-1.509964,-1.509964,-1.509964 +-1.513089,-1.513089,-1.513089,-1.513089,-1.513089,-1.513089 +-1.516214,-1.516214,-1.516214,-1.516214,-1.516214,-1.516214 +-1.519339,-1.519339,-1.519339,-1.519339,-1.519339,-1.519339 +-1.522464,-1.522464,-1.522464,-1.522464,-1.522464,-1.522464 +-1.525589,-1.525589,-1.525589,-1.525589,-1.525589,-1.525589 +-1.528714,-1.528714,-1.528714,-1.528714,-1.528714,-1.528714 +-1.531839,-1.531839,-1.531839,-1.531839,-1.531839,-1.531839 +-1.534964,-1.534964,-1.534964,-1.534964,-1.534964,-1.534964 +-1.538089,-1.538089,-1.538089,-1.538089,-1.538089,-1.538089 +-1.541214,-1.541214,-1.541214,-1.541214,-1.541214,-1.541214 +-1.544339,-1.544339,-1.544339,-1.544339,-1.544339,-1.544339 +-1.547464,-1.547464,-1.547464,-1.547464,-1.547464,-1.547464 +-1.550589,-1.550589,-1.550589,-1.550589,-1.550589,-1.550589 +-1.553714,-1.553714,-1.553714,-1.553714,-1.553714,-1.553714 +-1.556839,-1.556839,-1.556839,-1.556839,-1.556839,-1.556839 +-1.559964,-1.559964,-1.559964,-1.559964,-1.559964,-1.559964 +-1.563089,-1.563089,-1.563089,-1.563089,-1.563089,-1.563089 +-1.566214,-1.566214,-1.566214,-1.566214,-1.566214,-1.566214 +-1.569339,-1.569339,-1.569339,-1.569339,-1.569339,-1.569339 +-1.572464,-1.572464,-1.572464,-1.572464,-1.572464,-1.572464 +-1.575589,-1.575589,-1.575589,-1.575589,-1.575589,-1.575589 +-1.578714,-1.578714,-1.578714,-1.578714,-1.578714,-1.578714 +-1.581839,-1.581839,-1.581839,-1.581839,-1.581839,-1.581839 +-1.584964,-1.584964,-1.584964,-1.584964,-1.584964,-1.584964 +-1.588089,-1.588089,-1.588089,-1.588089,-1.588089,-1.588089 +-1.591214,-1.591214,-1.591214,-1.591214,-1.591214,-1.591214 +-1.594339,-1.594339,-1.594339,-1.594339,-1.594339,-1.594339 +-1.597464,-1.597464,-1.597464,-1.597464,-1.597464,-1.597464 +-1.600589,-1.600589,-1.600589,-1.600589,-1.600589,-1.600589 +-1.603714,-1.603714,-1.603714,-1.603714,-1.603714,-1.603714 +-1.606839,-1.606839,-1.606839,-1.606839,-1.606839,-1.606839 +-1.609964,-1.609964,-1.609964,-1.609964,-1.609964,-1.609964 +-1.613089,-1.613089,-1.613089,-1.613089,-1.613089,-1.613089 +-1.616214,-1.616214,-1.616214,-1.616214,-1.616214,-1.616214 +-1.619339,-1.619339,-1.619339,-1.619339,-1.619339,-1.619339 +-1.622464,-1.622464,-1.622464,-1.622464,-1.622464,-1.622464 +-1.625589,-1.625589,-1.625589,-1.625589,-1.625589,-1.625589 +-1.628714,-1.628714,-1.628714,-1.628714,-1.628714,-1.628714 +-1.631839,-1.631839,-1.631839,-1.631839,-1.631839,-1.631839 +-1.634964,-1.634964,-1.634964,-1.634964,-1.634964,-1.634964 +-1.638089,-1.638089,-1.638089,-1.638089,-1.638089,-1.638089 +-1.641214,-1.641214,-1.641214,-1.641214,-1.641214,-1.641214 +-1.644339,-1.644339,-1.644339,-1.644339,-1.644339,-1.644339 +-1.647464,-1.647464,-1.647464,-1.647464,-1.647464,-1.647464 +-1.650589,-1.650589,-1.650589,-1.650589,-1.650589,-1.650589 +-1.653714,-1.653714,-1.653714,-1.653714,-1.653714,-1.653714 +-1.656839,-1.656839,-1.656839,-1.656839,-1.656839,-1.656839 +-1.659964,-1.659964,-1.659964,-1.659964,-1.659964,-1.659964 +-1.663089,-1.663089,-1.663089,-1.663089,-1.663089,-1.663089 +-1.666214,-1.666214,-1.666214,-1.666214,-1.666214,-1.666214 +-1.669339,-1.669339,-1.669339,-1.669339,-1.669339,-1.669339 +-1.672464,-1.672464,-1.672464,-1.672464,-1.672464,-1.672464 +-1.675589,-1.675589,-1.675589,-1.675589,-1.675589,-1.675589 +-1.678714,-1.678714,-1.678714,-1.678714,-1.678714,-1.678714 +-1.681839,-1.681839,-1.681839,-1.681839,-1.681839,-1.681839 +-1.684964,-1.684964,-1.684964,-1.684964,-1.684964,-1.684964 +-1.688089,-1.688089,-1.688089,-1.688089,-1.688089,-1.688089 +-1.691214,-1.691214,-1.691214,-1.691214,-1.691214,-1.691214 +-1.694339,-1.694339,-1.694339,-1.694339,-1.694339,-1.694339 +-1.697464,-1.697464,-1.697464,-1.697464,-1.697464,-1.697464 +-1.700582,-1.700582,-1.700582,-1.700582,-1.700582,-1.700582 +-1.703682,-1.703682,-1.703682,-1.703682,-1.703682,-1.703682 +-1.70675,-1.70675,-1.70675,-1.70675,-1.70675,-1.70675 +-1.709774,-1.709774,-1.709774,-1.709774,-1.709774,-1.709774 +-1.712742,-1.712742,-1.712742,-1.712742,-1.712742,-1.712742 +-1.715641,-1.715641,-1.715641,-1.715641,-1.715641,-1.715641 +-1.718459,-1.718459,-1.718459,-1.718459,-1.718459,-1.718459 +-1.721183,-1.721183,-1.721183,-1.721183,-1.721183,-1.721183 +-1.723801,-1.723801,-1.723801,-1.723801,-1.723801,-1.723801 +-1.7263,-1.7263,-1.7263,-1.7263,-1.7263,-1.7263 +-1.728668,-1.728668,-1.728668,-1.728668,-1.728668,-1.728668 +-1.730891,-1.730891,-1.730891,-1.730891,-1.730891,-1.730891 +-1.732959,-1.732959,-1.732959,-1.732959,-1.732959,-1.732959 +-1.734858,-1.734858,-1.734858,-1.734858,-1.734858,-1.734858 +-1.736575,-1.736575,-1.736575,-1.736575,-1.736575,-1.736575 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.739437,-1.739437,-1.739437,-1.739437,-1.739437,-1.739437 +-1.740596,-1.740596,-1.740596,-1.740596,-1.740596,-1.740596 +-1.741592,-1.741592,-1.741592,-1.741592,-1.741592,-1.741592 +-1.742436,-1.742436,-1.742436,-1.742436,-1.742436,-1.742436 +-1.743142,-1.743142,-1.743142,-1.743142,-1.743142,-1.743142 +-1.74372,-1.74372,-1.74372,-1.74372,-1.74372,-1.74372 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.744548,-1.744548,-1.744548,-1.744548,-1.744548,-1.744548 +-1.744823,-1.744823,-1.744823,-1.744823,-1.744823,-1.744823 +-1.745021,-1.745021,-1.745021,-1.745021,-1.745021,-1.745021 +-1.745154,-1.745154,-1.745154,-1.745154,-1.745154,-1.745154 +-1.745237,-1.745237,-1.745237,-1.745237,-1.745237,-1.745237 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.745244,-1.745244,-1.745244,-1.745244,-1.745244,-1.745244 +-1.745167,-1.745167,-1.745167,-1.745167,-1.745167,-1.745167 +-1.74504,-1.74504,-1.74504,-1.74504,-1.74504,-1.74504 +-1.74485,-1.74485,-1.74485,-1.74485,-1.74485,-1.74485 +-1.744585,-1.744585,-1.744585,-1.744585,-1.744585,-1.744585 +-1.744233,-1.744233,-1.744233,-1.744233,-1.744233,-1.744233 +-1.743781,-1.743781,-1.743781,-1.743781,-1.743781,-1.743781 +-1.743217,-1.743217,-1.743217,-1.743217,-1.743217,-1.743217 +-1.742527,-1.742527,-1.742527,-1.742527,-1.742527,-1.742527 +-1.7417,-1.7417,-1.7417,-1.7417,-1.7417,-1.7417 +-1.740723,-1.740723,-1.740723,-1.740723,-1.740723,-1.740723 +-1.739583,-1.739583,-1.739583,-1.739583,-1.739583,-1.739583 +-1.738269,-1.738269,-1.738269,-1.738269,-1.738269,-1.738269 +-1.736767,-1.736767,-1.736767,-1.736767,-1.736767,-1.736767 +-1.735072,-1.735072,-1.735072,-1.735072,-1.735072,-1.735072 +-1.733194,-1.733194,-1.733194,-1.733194,-1.733194,-1.733194 +-1.731145,-1.731145,-1.731145,-1.731145,-1.731145,-1.731145 +-1.72894,-1.72894,-1.72894,-1.72894,-1.72894,-1.72894 +-1.726588,-1.726588,-1.726588,-1.726588,-1.726588,-1.726588 +-1.724104,-1.724104,-1.724104,-1.724104,-1.724104,-1.724104 +-1.7215,-1.7215,-1.7215,-1.7215,-1.7215,-1.7215 +-1.718788,-1.718788,-1.718788,-1.718788,-1.718788,-1.718788 +-1.71598,-1.71598,-1.71598,-1.71598,-1.71598,-1.71598 +-1.71309,-1.71309,-1.71309,-1.71309,-1.71309,-1.71309 +-1.71013,-1.71013,-1.71013,-1.71013,-1.71013,-1.71013 +-1.707112,-1.707112,-1.707112,-1.707112,-1.707112,-1.707112 +-1.704048,-1.704048,-1.704048,-1.704048,-1.704048,-1.704048 +-1.700952,-1.700952,-1.700952,-1.700952,-1.700952,-1.700952 +-1.697835,-1.697835,-1.697835,-1.697835,-1.697835,-1.697835 +-1.694711,-1.694711,-1.694711,-1.694711,-1.694711,-1.694711 +-1.691586,-1.691586,-1.691586,-1.691586,-1.691586,-1.691586 +-1.688461,-1.688461,-1.688461,-1.688461,-1.688461,-1.688461 +-1.685336,-1.685336,-1.685336,-1.685336,-1.685336,-1.685336 +-1.682211,-1.682211,-1.682211,-1.682211,-1.682211,-1.682211 +-1.679086,-1.679086,-1.679086,-1.679086,-1.679086,-1.679086 +-1.675961,-1.675961,-1.675961,-1.675961,-1.675961,-1.675961 +-1.672836,-1.672836,-1.672836,-1.672836,-1.672836,-1.672836 +-1.669711,-1.669711,-1.669711,-1.669711,-1.669711,-1.669711 +-1.666586,-1.666586,-1.666586,-1.666586,-1.666586,-1.666586 +-1.663461,-1.663461,-1.663461,-1.663461,-1.663461,-1.663461 +-1.660336,-1.660336,-1.660336,-1.660336,-1.660336,-1.660336 +-1.657211,-1.657211,-1.657211,-1.657211,-1.657211,-1.657211 +-1.654086,-1.654086,-1.654086,-1.654086,-1.654086,-1.654086 +-1.650961,-1.650961,-1.650961,-1.650961,-1.650961,-1.650961 +-1.647836,-1.647836,-1.647836,-1.647836,-1.647836,-1.647836 +-1.644711,-1.644711,-1.644711,-1.644711,-1.644711,-1.644711 +-1.641586,-1.641586,-1.641586,-1.641586,-1.641586,-1.641586 +-1.638461,-1.638461,-1.638461,-1.638461,-1.638461,-1.638461 +-1.635336,-1.635336,-1.635336,-1.635336,-1.635336,-1.635336 +-1.632211,-1.632211,-1.632211,-1.632211,-1.632211,-1.632211 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.625961,-1.625961,-1.625961,-1.625961,-1.625961,-1.625961 +-1.622836,-1.622836,-1.622836,-1.622836,-1.622836,-1.622836 +-1.619711,-1.619711,-1.619711,-1.619711,-1.619711,-1.619711 +-1.616586,-1.616586,-1.616586,-1.616586,-1.616586,-1.616586 +-1.613461,-1.613461,-1.613461,-1.613461,-1.613461,-1.613461 +-1.610336,-1.610336,-1.610336,-1.610336,-1.610336,-1.610336 +-1.607211,-1.607211,-1.607211,-1.607211,-1.607211,-1.607211 +-1.604086,-1.604086,-1.604086,-1.604086,-1.604086,-1.604086 +-1.600961,-1.600961,-1.600961,-1.600961,-1.600961,-1.600961 +-1.597836,-1.597836,-1.597836,-1.597836,-1.597836,-1.597836 +-1.594711,-1.594711,-1.594711,-1.594711,-1.594711,-1.594711 +-1.591586,-1.591586,-1.591586,-1.591586,-1.591586,-1.591586 +-1.588461,-1.588461,-1.588461,-1.588461,-1.588461,-1.588461 +-1.585336,-1.585336,-1.585336,-1.585336,-1.585336,-1.585336 +-1.582211,-1.582211,-1.582211,-1.582211,-1.582211,-1.582211 +-1.579086,-1.579086,-1.579086,-1.579086,-1.579086,-1.579086 +-1.575961,-1.575961,-1.575961,-1.575961,-1.575961,-1.575961 +-1.572836,-1.572836,-1.572836,-1.572836,-1.572836,-1.572836 +-1.569711,-1.569711,-1.569711,-1.569711,-1.569711,-1.569711 +-1.566586,-1.566586,-1.566586,-1.566586,-1.566586,-1.566586 +-1.563461,-1.563461,-1.563461,-1.563461,-1.563461,-1.563461 +-1.560336,-1.560336,-1.560336,-1.560336,-1.560336,-1.560336 +-1.557211,-1.557211,-1.557211,-1.557211,-1.557211,-1.557211 +-1.554086,-1.554086,-1.554086,-1.554086,-1.554086,-1.554086 +-1.550961,-1.550961,-1.550961,-1.550961,-1.550961,-1.550961 +-1.547836,-1.547836,-1.547836,-1.547836,-1.547836,-1.547836 +-1.544711,-1.544711,-1.544711,-1.544711,-1.544711,-1.544711 +-1.541586,-1.541586,-1.541586,-1.541586,-1.541586,-1.541586 +-1.538461,-1.538461,-1.538461,-1.538461,-1.538461,-1.538461 +-1.535336,-1.535336,-1.535336,-1.535336,-1.535336,-1.535336 +-1.532211,-1.532211,-1.532211,-1.532211,-1.532211,-1.532211 +-1.529086,-1.529086,-1.529086,-1.529086,-1.529086,-1.529086 +-1.525961,-1.525961,-1.525961,-1.525961,-1.525961,-1.525961 +-1.522836,-1.522836,-1.522836,-1.522836,-1.522836,-1.522836 +-1.519711,-1.519711,-1.519711,-1.519711,-1.519711,-1.519711 +-1.516586,-1.516586,-1.516586,-1.516586,-1.516586,-1.516586 +-1.513461,-1.513461,-1.513461,-1.513461,-1.513461,-1.513461 +-1.510336,-1.510336,-1.510336,-1.510336,-1.510336,-1.510336 +-1.507211,-1.507211,-1.507211,-1.507211,-1.507211,-1.507211 +-1.504086,-1.504086,-1.504086,-1.504086,-1.504086,-1.504086 +-1.500961,-1.500961,-1.500961,-1.500961,-1.500961,-1.500961 +-1.497836,-1.497836,-1.497836,-1.497836,-1.497836,-1.497836 +-1.494711,-1.494711,-1.494711,-1.494711,-1.494711,-1.494711 +-1.491586,-1.491586,-1.491586,-1.491586,-1.491586,-1.491586 +-1.488461,-1.488461,-1.488461,-1.488461,-1.488461,-1.488461 +-1.485336,-1.485336,-1.485336,-1.485336,-1.485336,-1.485336 +-1.482211,-1.482211,-1.482211,-1.482211,-1.482211,-1.482211 +-1.479086,-1.479086,-1.479086,-1.479086,-1.479086,-1.479086 +-1.475961,-1.475961,-1.475961,-1.475961,-1.475961,-1.475961 +-1.472836,-1.472836,-1.472836,-1.472836,-1.472836,-1.472836 +-1.469711,-1.469711,-1.469711,-1.469711,-1.469711,-1.469711 +-1.466586,-1.466586,-1.466586,-1.466586,-1.466586,-1.466586 +-1.463461,-1.463461,-1.463461,-1.463461,-1.463461,-1.463461 +-1.460336,-1.460336,-1.460336,-1.460336,-1.460336,-1.460336 +-1.457211,-1.457211,-1.457211,-1.457211,-1.457211,-1.457211 +-1.454086,-1.454086,-1.454086,-1.454086,-1.454086,-1.454086 +-1.450961,-1.450961,-1.450961,-1.450961,-1.450961,-1.450961 +-1.447836,-1.447836,-1.447836,-1.447836,-1.447836,-1.447836 +-1.444711,-1.444711,-1.444711,-1.444711,-1.444711,-1.444711 +-1.441586,-1.441586,-1.441586,-1.441586,-1.441586,-1.441586 +-1.438461,-1.438461,-1.438461,-1.438461,-1.438461,-1.438461 +-1.435336,-1.435336,-1.435336,-1.435336,-1.435336,-1.435336 +-1.432211,-1.432211,-1.432211,-1.432211,-1.432211,-1.432211 +-1.429086,-1.429086,-1.429086,-1.429086,-1.429086,-1.429086 +-1.425961,-1.425961,-1.425961,-1.425961,-1.425961,-1.425961 +-1.422836,-1.422836,-1.422836,-1.422836,-1.422836,-1.422836 +-1.419711,-1.419711,-1.419711,-1.419711,-1.419711,-1.419711 +-1.416586,-1.416586,-1.416586,-1.416586,-1.416586,-1.416586 +-1.413461,-1.413461,-1.413461,-1.413461,-1.413461,-1.413461 +-1.410336,-1.410336,-1.410336,-1.410336,-1.410336,-1.410336 +-1.407211,-1.407211,-1.407211,-1.407211,-1.407211,-1.407211 +-1.404086,-1.404086,-1.404086,-1.404086,-1.404086,-1.404086 +-1.400961,-1.400961,-1.400961,-1.400961,-1.400961,-1.400961 +-1.397836,-1.397836,-1.397836,-1.397836,-1.397836,-1.397836 +-1.394711,-1.394711,-1.394711,-1.394711,-1.394711,-1.394711 +-1.391586,-1.391586,-1.391586,-1.391586,-1.391586,-1.391586 +-1.388461,-1.388461,-1.388461,-1.388461,-1.388461,-1.388461 +-1.385336,-1.385336,-1.385336,-1.385336,-1.385336,-1.385336 +-1.382211,-1.382211,-1.382211,-1.382211,-1.382211,-1.382211 +-1.379086,-1.379086,-1.379086,-1.379086,-1.379086,-1.379086 +-1.375961,-1.375961,-1.375961,-1.375961,-1.375961,-1.375961 +-1.372836,-1.372836,-1.372836,-1.372836,-1.372836,-1.372836 +-1.369711,-1.369711,-1.369711,-1.369711,-1.369711,-1.369711 +-1.366586,-1.366586,-1.366586,-1.366586,-1.366586,-1.366586 +-1.363461,-1.363461,-1.363461,-1.363461,-1.363461,-1.363461 +-1.360336,-1.360336,-1.360336,-1.360336,-1.360336,-1.360336 +-1.357211,-1.357211,-1.357211,-1.357211,-1.357211,-1.357211 +-1.354086,-1.354086,-1.354086,-1.354086,-1.354086,-1.354086 +-1.350961,-1.350961,-1.350961,-1.350961,-1.350961,-1.350961 +-1.347836,-1.347836,-1.347836,-1.347836,-1.347836,-1.347836 +-1.344711,-1.344711,-1.344711,-1.344711,-1.344711,-1.344711 +-1.341586,-1.341586,-1.341586,-1.341586,-1.341586,-1.341586 +-1.338461,-1.338461,-1.338461,-1.338461,-1.338461,-1.338461 +-1.335336,-1.335336,-1.335336,-1.335336,-1.335336,-1.335336 +-1.332211,-1.332211,-1.332211,-1.332211,-1.332211,-1.332211 +-1.329086,-1.329086,-1.329086,-1.329086,-1.329086,-1.329086 +-1.325961,-1.325961,-1.325961,-1.325961,-1.325961,-1.325961 +-1.322836,-1.322836,-1.322836,-1.322836,-1.322836,-1.322836 +-1.319711,-1.319711,-1.319711,-1.319711,-1.319711,-1.319711 +-1.316586,-1.316586,-1.316586,-1.316586,-1.316586,-1.316586 +-1.313461,-1.313461,-1.313461,-1.313461,-1.313461,-1.313461 +-1.310336,-1.310336,-1.310336,-1.310336,-1.310336,-1.310336 +-1.307211,-1.307211,-1.307211,-1.307211,-1.307211,-1.307211 +-1.304086,-1.304086,-1.304086,-1.304086,-1.304086,-1.304086 +-1.300961,-1.300961,-1.300961,-1.300961,-1.300961,-1.300961 +-1.297836,-1.297836,-1.297836,-1.297836,-1.297836,-1.297836 +-1.294711,-1.294711,-1.294711,-1.294711,-1.294711,-1.294711 +-1.291586,-1.291586,-1.291586,-1.291586,-1.291586,-1.291586 +-1.288461,-1.288461,-1.288461,-1.288461,-1.288461,-1.288461 +-1.285336,-1.285336,-1.285336,-1.285336,-1.285336,-1.285336 +-1.282211,-1.282211,-1.282211,-1.282211,-1.282211,-1.282211 +-1.279086,-1.279086,-1.279086,-1.279086,-1.279086,-1.279086 +-1.275961,-1.275961,-1.275961,-1.275961,-1.275961,-1.275961 +-1.272836,-1.272836,-1.272836,-1.272836,-1.272836,-1.272836 +-1.269711,-1.269711,-1.269711,-1.269711,-1.269711,-1.269711 +-1.266586,-1.266586,-1.266586,-1.266586,-1.266586,-1.266586 +-1.263461,-1.263461,-1.263461,-1.263461,-1.263461,-1.263461 +-1.260336,-1.260336,-1.260336,-1.260336,-1.260336,-1.260336 +-1.257211,-1.257211,-1.257211,-1.257211,-1.257211,-1.257211 +-1.254086,-1.254086,-1.254086,-1.254086,-1.254086,-1.254086 +-1.250961,-1.250961,-1.250961,-1.250961,-1.250961,-1.250961 +-1.247836,-1.247836,-1.247836,-1.247836,-1.247836,-1.247836 +-1.244711,-1.244711,-1.244711,-1.244711,-1.244711,-1.244711 +-1.241586,-1.241586,-1.241586,-1.241586,-1.241586,-1.241586 +-1.238461,-1.238461,-1.238461,-1.238461,-1.238461,-1.238461 +-1.235336,-1.235336,-1.235336,-1.235336,-1.235336,-1.235336 +-1.232211,-1.232211,-1.232211,-1.232211,-1.232211,-1.232211 +-1.229086,-1.229086,-1.229086,-1.229086,-1.229086,-1.229086 +-1.225961,-1.225961,-1.225961,-1.225961,-1.225961,-1.225961 +-1.222836,-1.222836,-1.222836,-1.222836,-1.222836,-1.222836 +-1.219711,-1.219711,-1.219711,-1.219711,-1.219711,-1.219711 +-1.216586,-1.216586,-1.216586,-1.216586,-1.216586,-1.216586 +-1.213461,-1.213461,-1.213461,-1.213461,-1.213461,-1.213461 +-1.210336,-1.210336,-1.210336,-1.210336,-1.210336,-1.210336 +-1.207211,-1.207211,-1.207211,-1.207211,-1.207211,-1.207211 +-1.204086,-1.204086,-1.204086,-1.204086,-1.204086,-1.204086 +-1.200961,-1.200961,-1.200961,-1.200961,-1.200961,-1.200961 +-1.197836,-1.197836,-1.197836,-1.197836,-1.197836,-1.197836 +-1.194711,-1.194711,-1.194711,-1.194711,-1.194711,-1.194711 +-1.191586,-1.191586,-1.191586,-1.191586,-1.191586,-1.191586 +-1.188461,-1.188461,-1.188461,-1.188461,-1.188461,-1.188461 +-1.185336,-1.185336,-1.185336,-1.185336,-1.185336,-1.185336 +-1.182211,-1.182211,-1.182211,-1.182211,-1.182211,-1.182211 +-1.179086,-1.179086,-1.179086,-1.179086,-1.179086,-1.179086 +-1.175961,-1.175961,-1.175961,-1.175961,-1.175961,-1.175961 +-1.172836,-1.172836,-1.172836,-1.172836,-1.172836,-1.172836 +-1.169711,-1.169711,-1.169711,-1.169711,-1.169711,-1.169711 +-1.166586,-1.166586,-1.166586,-1.166586,-1.166586,-1.166586 +-1.163461,-1.163461,-1.163461,-1.163461,-1.163461,-1.163461 +-1.160336,-1.160336,-1.160336,-1.160336,-1.160336,-1.160336 +-1.157211,-1.157211,-1.157211,-1.157211,-1.157211,-1.157211 +-1.154086,-1.154086,-1.154086,-1.154086,-1.154086,-1.154086 +-1.150961,-1.150961,-1.150961,-1.150961,-1.150961,-1.150961 +-1.147836,-1.147836,-1.147836,-1.147836,-1.147836,-1.147836 +-1.144711,-1.144711,-1.144711,-1.144711,-1.144711,-1.144711 +-1.141586,-1.141586,-1.141586,-1.141586,-1.141586,-1.141586 +-1.138461,-1.138461,-1.138461,-1.138461,-1.138461,-1.138461 +-1.135336,-1.135336,-1.135336,-1.135336,-1.135336,-1.135336 +-1.132211,-1.132211,-1.132211,-1.132211,-1.132211,-1.132211 +-1.129086,-1.129086,-1.129086,-1.129086,-1.129086,-1.129086 +-1.125961,-1.125961,-1.125961,-1.125961,-1.125961,-1.125961 +-1.122836,-1.122836,-1.122836,-1.122836,-1.122836,-1.122836 +-1.119711,-1.119711,-1.119711,-1.119711,-1.119711,-1.119711 +-1.116586,-1.116586,-1.116586,-1.116586,-1.116586,-1.116586 +-1.113461,-1.113461,-1.113461,-1.113461,-1.113461,-1.113461 +-1.110336,-1.110336,-1.110336,-1.110336,-1.110336,-1.110336 +-1.107211,-1.107211,-1.107211,-1.107211,-1.107211,-1.107211 +-1.104086,-1.104086,-1.104086,-1.104086,-1.104086,-1.104086 +-1.100961,-1.100961,-1.100961,-1.100961,-1.100961,-1.100961 +-1.097836,-1.097836,-1.097836,-1.097836,-1.097836,-1.097836 +-1.094711,-1.094711,-1.094711,-1.094711,-1.094711,-1.094711 +-1.091586,-1.091586,-1.091586,-1.091586,-1.091586,-1.091586 +-1.088461,-1.088461,-1.088461,-1.088461,-1.088461,-1.088461 +-1.085336,-1.085336,-1.085336,-1.085336,-1.085336,-1.085336 +-1.082211,-1.082211,-1.082211,-1.082211,-1.082211,-1.082211 +-1.079086,-1.079086,-1.079086,-1.079086,-1.079086,-1.079086 +-1.075961,-1.075961,-1.075961,-1.075961,-1.075961,-1.075961 +-1.072836,-1.072836,-1.072836,-1.072836,-1.072836,-1.072836 +-1.069711,-1.069711,-1.069711,-1.069711,-1.069711,-1.069711 +-1.066586,-1.066586,-1.066586,-1.066586,-1.066586,-1.066586 +-1.063461,-1.063461,-1.063461,-1.063461,-1.063461,-1.063461 +-1.060336,-1.060336,-1.060336,-1.060336,-1.060336,-1.060336 +-1.057211,-1.057211,-1.057211,-1.057211,-1.057211,-1.057211 +-1.054086,-1.054086,-1.054086,-1.054086,-1.054086,-1.054086 +-1.050961,-1.050961,-1.050961,-1.050961,-1.050961,-1.050961 +-1.047836,-1.047836,-1.047836,-1.047836,-1.047836,-1.047836 +-1.044711,-1.044711,-1.044711,-1.044711,-1.044711,-1.044711 +-1.041586,-1.041586,-1.041586,-1.041586,-1.041586,-1.041586 +-1.038461,-1.038461,-1.038461,-1.038461,-1.038461,-1.038461 +-1.035336,-1.035336,-1.035336,-1.035336,-1.035336,-1.035336 +-1.032211,-1.032211,-1.032211,-1.032211,-1.032211,-1.032211 +-1.029086,-1.029086,-1.029086,-1.029086,-1.029086,-1.029086 +-1.025961,-1.025961,-1.025961,-1.025961,-1.025961,-1.025961 +-1.022836,-1.022836,-1.022836,-1.022836,-1.022836,-1.022836 +-1.019711,-1.019711,-1.019711,-1.019711,-1.019711,-1.019711 +-1.016586,-1.016586,-1.016586,-1.016586,-1.016586,-1.016586 +-1.013461,-1.013461,-1.013461,-1.013461,-1.013461,-1.013461 +-1.010336,-1.010336,-1.010336,-1.010336,-1.010336,-1.010336 +-1.007211,-1.007211,-1.007211,-1.007211,-1.007211,-1.007211 +-1.004086,-1.004086,-1.004086,-1.004086,-1.004086,-1.004086 +-1.000961,-1.000961,-1.000961,-1.000961,-1.000961,-1.000961 +-0.997836,-0.997836,-0.997836,-0.997836,-0.997836,-0.997836 +-0.994711,-0.994711,-0.994711,-0.994711,-0.994711,-0.994711 +-0.991586,-0.991586,-0.991586,-0.991586,-0.991586,-0.991586 +-0.988461,-0.988461,-0.988461,-0.988461,-0.988461,-0.988461 +-0.985336,-0.985336,-0.985336,-0.985336,-0.985336,-0.985336 +-0.982211,-0.982211,-0.982211,-0.982211,-0.982211,-0.982211 +-0.979086,-0.979086,-0.979086,-0.979086,-0.979086,-0.979086 +-0.975961,-0.975961,-0.975961,-0.975961,-0.975961,-0.975961 +-0.972836,-0.972836,-0.972836,-0.972836,-0.972836,-0.972836 +-0.969711,-0.969711,-0.969711,-0.969711,-0.969711,-0.969711 +-0.966586,-0.966586,-0.966586,-0.966586,-0.966586,-0.966586 +-0.963461,-0.963461,-0.963461,-0.963461,-0.963461,-0.963461 +-0.960336,-0.960336,-0.960336,-0.960336,-0.960336,-0.960336 +-0.957211,-0.957211,-0.957211,-0.957211,-0.957211,-0.957211 +-0.954086,-0.954086,-0.954086,-0.954086,-0.954086,-0.954086 +-0.950961,-0.950961,-0.950961,-0.950961,-0.950961,-0.950961 +-0.947836,-0.947836,-0.947836,-0.947836,-0.947836,-0.947836 +-0.944711,-0.944711,-0.944711,-0.944711,-0.944711,-0.944711 +-0.941586,-0.941586,-0.941586,-0.941586,-0.941586,-0.941586 +-0.938461,-0.938461,-0.938461,-0.938461,-0.938461,-0.938461 +-0.935336,-0.935336,-0.935336,-0.935336,-0.935336,-0.935336 +-0.932211,-0.932211,-0.932211,-0.932211,-0.932211,-0.932211 +-0.929086,-0.929086,-0.929086,-0.929086,-0.929086,-0.929086 +-0.925961,-0.925961,-0.925961,-0.925961,-0.925961,-0.925961 +-0.922836,-0.922836,-0.922836,-0.922836,-0.922836,-0.922836 +-0.919711,-0.919711,-0.919711,-0.919711,-0.919711,-0.919711 +-0.916586,-0.916586,-0.916586,-0.916586,-0.916586,-0.916586 +-0.913461,-0.913461,-0.913461,-0.913461,-0.913461,-0.913461 +-0.910336,-0.910336,-0.910336,-0.910336,-0.910336,-0.910336 +-0.907211,-0.907211,-0.907211,-0.907211,-0.907211,-0.907211 +-0.904086,-0.904086,-0.904086,-0.904086,-0.904086,-0.904086 +-0.900961,-0.900961,-0.900961,-0.900961,-0.900961,-0.900961 +-0.897836,-0.897836,-0.897836,-0.897836,-0.897836,-0.897836 +-0.894711,-0.894711,-0.894711,-0.894711,-0.894711,-0.894711 +-0.891586,-0.891586,-0.891586,-0.891586,-0.891586,-0.891586 +-0.888461,-0.888461,-0.888461,-0.888461,-0.888461,-0.888461 +-0.885336,-0.885336,-0.885336,-0.885336,-0.885336,-0.885336 +-0.882211,-0.882211,-0.882211,-0.882211,-0.882211,-0.882211 +-0.879086,-0.879086,-0.879086,-0.879086,-0.879086,-0.879086 +-0.875961,-0.875961,-0.875961,-0.875961,-0.875961,-0.875961 +-0.872836,-0.872836,-0.872836,-0.872836,-0.872836,-0.872836 +-0.869711,-0.869711,-0.869711,-0.869711,-0.869711,-0.869711 +-0.866586,-0.866586,-0.866586,-0.866586,-0.866586,-0.866586 +-0.863461,-0.863461,-0.863461,-0.863461,-0.863461,-0.863461 +-0.860336,-0.860336,-0.860336,-0.860336,-0.860336,-0.860336 +-0.857211,-0.857211,-0.857211,-0.857211,-0.857211,-0.857211 +-0.854086,-0.854086,-0.854086,-0.854086,-0.854086,-0.854086 +-0.850961,-0.850961,-0.850961,-0.850961,-0.850961,-0.850961 +-0.847836,-0.847836,-0.847836,-0.847836,-0.847836,-0.847836 +-0.844711,-0.844711,-0.844711,-0.844711,-0.844711,-0.844711 +-0.841586,-0.841586,-0.841586,-0.841586,-0.841586,-0.841586 +-0.838461,-0.838461,-0.838461,-0.838461,-0.838461,-0.838461 +-0.835336,-0.835336,-0.835336,-0.835336,-0.835336,-0.835336 +-0.832211,-0.832211,-0.832211,-0.832211,-0.832211,-0.832211 +-0.829086,-0.829086,-0.829086,-0.829086,-0.829086,-0.829086 +-0.825961,-0.825961,-0.825961,-0.825961,-0.825961,-0.825961 +-0.822836,-0.822836,-0.822836,-0.822836,-0.822836,-0.822836 +-0.819711,-0.819711,-0.819711,-0.819711,-0.819711,-0.819711 +-0.816586,-0.816586,-0.816586,-0.816586,-0.816586,-0.816586 +-0.813461,-0.813461,-0.813461,-0.813461,-0.813461,-0.813461 +-0.810336,-0.810336,-0.810336,-0.810336,-0.810336,-0.810336 +-0.807211,-0.807211,-0.807211,-0.807211,-0.807211,-0.807211 +-0.804086,-0.804086,-0.804086,-0.804086,-0.804086,-0.804086 +-0.800961,-0.800961,-0.800961,-0.800961,-0.800961,-0.800961 +-0.797836,-0.797836,-0.797836,-0.797836,-0.797836,-0.797836 +-0.794711,-0.794711,-0.794711,-0.794711,-0.794711,-0.794711 +-0.791586,-0.791586,-0.791586,-0.791586,-0.791586,-0.791586 +-0.788461,-0.788461,-0.788461,-0.788461,-0.788461,-0.788461 +-0.785336,-0.785336,-0.785336,-0.785336,-0.785336,-0.785336 +-0.782211,-0.782211,-0.782211,-0.782211,-0.782211,-0.782211 +-0.779086,-0.779086,-0.779086,-0.779086,-0.779086,-0.779086 +-0.775961,-0.775961,-0.775961,-0.775961,-0.775961,-0.775961 +-0.772836,-0.772836,-0.772836,-0.772836,-0.772836,-0.772836 +-0.769711,-0.769711,-0.769711,-0.769711,-0.769711,-0.769711 +-0.766586,-0.766586,-0.766586,-0.766586,-0.766586,-0.766586 +-0.763461,-0.763461,-0.763461,-0.763461,-0.763461,-0.763461 +-0.760336,-0.760336,-0.760336,-0.760336,-0.760336,-0.760336 +-0.757211,-0.757211,-0.757211,-0.757211,-0.757211,-0.757211 +-0.754086,-0.754086,-0.754086,-0.754086,-0.754086,-0.754086 +-0.750961,-0.750961,-0.750961,-0.750961,-0.750961,-0.750961 +-0.747836,-0.747836,-0.747836,-0.747836,-0.747836,-0.747836 +-0.744711,-0.744711,-0.744711,-0.744711,-0.744711,-0.744711 +-0.741586,-0.741586,-0.741586,-0.741586,-0.741586,-0.741586 +-0.738461,-0.738461,-0.738461,-0.738461,-0.738461,-0.738461 +-0.735336,-0.735336,-0.735336,-0.735336,-0.735336,-0.735336 +-0.732211,-0.732211,-0.732211,-0.732211,-0.732211,-0.732211 +-0.729086,-0.729086,-0.729086,-0.729086,-0.729086,-0.729086 +-0.725961,-0.725961,-0.725961,-0.725961,-0.725961,-0.725961 +-0.722836,-0.722836,-0.722836,-0.722836,-0.722836,-0.722836 +-0.719711,-0.719711,-0.719711,-0.719711,-0.719711,-0.719711 +-0.716586,-0.716586,-0.716586,-0.716586,-0.716586,-0.716586 +-0.713461,-0.713461,-0.713461,-0.713461,-0.713461,-0.713461 +-0.710336,-0.710336,-0.710336,-0.710336,-0.710336,-0.710336 +-0.707211,-0.707211,-0.707211,-0.707211,-0.707211,-0.707211 +-0.704086,-0.704086,-0.704086,-0.704086,-0.704086,-0.704086 +-0.700961,-0.700961,-0.700961,-0.700961,-0.700961,-0.700961 +-0.697836,-0.697836,-0.697836,-0.697836,-0.697836,-0.697836 +-0.694711,-0.694711,-0.694711,-0.694711,-0.694711,-0.694711 +-0.691586,-0.691586,-0.691586,-0.691586,-0.691586,-0.691586 +-0.688461,-0.688461,-0.688461,-0.688461,-0.688461,-0.688461 +-0.685336,-0.685336,-0.685336,-0.685336,-0.685336,-0.685336 +-0.682211,-0.682211,-0.682211,-0.682211,-0.682211,-0.682211 +-0.679086,-0.679086,-0.679086,-0.679086,-0.679086,-0.679086 +-0.675961,-0.675961,-0.675961,-0.675961,-0.675961,-0.675961 +-0.672836,-0.672836,-0.672836,-0.672836,-0.672836,-0.672836 +-0.669711,-0.669711,-0.669711,-0.669711,-0.669711,-0.669711 +-0.666586,-0.666586,-0.666586,-0.666586,-0.666586,-0.666586 +-0.663461,-0.663461,-0.663461,-0.663461,-0.663461,-0.663461 +-0.660336,-0.660336,-0.660336,-0.660336,-0.660336,-0.660336 +-0.657211,-0.657211,-0.657211,-0.657211,-0.657211,-0.657211 +-0.654086,-0.654086,-0.654086,-0.654086,-0.654086,-0.654086 +-0.650961,-0.650961,-0.650961,-0.650961,-0.650961,-0.650961 +-0.647836,-0.647836,-0.647836,-0.647836,-0.647836,-0.647836 +-0.644711,-0.644711,-0.644711,-0.644711,-0.644711,-0.644711 +-0.641586,-0.641586,-0.641586,-0.641586,-0.641586,-0.641586 +-0.638461,-0.638461,-0.638461,-0.638461,-0.638461,-0.638461 +-0.635336,-0.635336,-0.635336,-0.635336,-0.635336,-0.635336 +-0.632211,-0.632211,-0.632211,-0.632211,-0.632211,-0.632211 +-0.629086,-0.629086,-0.629086,-0.629086,-0.629086,-0.629086 +-0.625961,-0.625961,-0.625961,-0.625961,-0.625961,-0.625961 +-0.622836,-0.622836,-0.622836,-0.622836,-0.622836,-0.622836 +-0.619711,-0.619711,-0.619711,-0.619711,-0.619711,-0.619711 +-0.616586,-0.616586,-0.616586,-0.616586,-0.616586,-0.616586 +-0.613461,-0.613461,-0.613461,-0.613461,-0.613461,-0.613461 +-0.610336,-0.610336,-0.610336,-0.610336,-0.610336,-0.610336 +-0.607211,-0.607211,-0.607211,-0.607211,-0.607211,-0.607211 +-0.604086,-0.604086,-0.604086,-0.604086,-0.604086,-0.604086 +-0.600961,-0.600961,-0.600961,-0.600961,-0.600961,-0.600961 +-0.597836,-0.597836,-0.597836,-0.597836,-0.597836,-0.597836 +-0.594711,-0.594711,-0.594711,-0.594711,-0.594711,-0.594711 +-0.591586,-0.591586,-0.591586,-0.591586,-0.591586,-0.591586 +-0.588461,-0.588461,-0.588461,-0.588461,-0.588461,-0.588461 +-0.585336,-0.585336,-0.585336,-0.585336,-0.585336,-0.585336 +-0.582211,-0.582211,-0.582211,-0.582211,-0.582211,-0.582211 +-0.579086,-0.579086,-0.579086,-0.579086,-0.579086,-0.579086 +-0.575961,-0.575961,-0.575961,-0.575961,-0.575961,-0.575961 +-0.572836,-0.572836,-0.572836,-0.572836,-0.572836,-0.572836 +-0.569711,-0.569711,-0.569711,-0.569711,-0.569711,-0.569711 +-0.566586,-0.566586,-0.566586,-0.566586,-0.566586,-0.566586 +-0.563461,-0.563461,-0.563461,-0.563461,-0.563461,-0.563461 +-0.560336,-0.560336,-0.560336,-0.560336,-0.560336,-0.560336 +-0.557211,-0.557211,-0.557211,-0.557211,-0.557211,-0.557211 +-0.554086,-0.554086,-0.554086,-0.554086,-0.554086,-0.554086 +-0.550961,-0.550961,-0.550961,-0.550961,-0.550961,-0.550961 +-0.547836,-0.547836,-0.547836,-0.547836,-0.547836,-0.547836 +-0.544711,-0.544711,-0.544711,-0.544711,-0.544711,-0.544711 +-0.541586,-0.541586,-0.541586,-0.541586,-0.541586,-0.541586 +-0.538461,-0.538461,-0.538461,-0.538461,-0.538461,-0.538461 +-0.535336,-0.535336,-0.535336,-0.535336,-0.535336,-0.535336 +-0.532211,-0.532211,-0.532211,-0.532211,-0.532211,-0.532211 +-0.529086,-0.529086,-0.529086,-0.529086,-0.529086,-0.529086 +-0.525961,-0.525961,-0.525961,-0.525961,-0.525961,-0.525961 +-0.522836,-0.522836,-0.522836,-0.522836,-0.522836,-0.522836 +-0.519711,-0.519711,-0.519711,-0.519711,-0.519711,-0.519711 +-0.516586,-0.516586,-0.516586,-0.516586,-0.516586,-0.516586 +-0.513461,-0.513461,-0.513461,-0.513461,-0.513461,-0.513461 +-0.510336,-0.510336,-0.510336,-0.510336,-0.510336,-0.510336 +-0.507211,-0.507211,-0.507211,-0.507211,-0.507211,-0.507211 +-0.504086,-0.504086,-0.504086,-0.504086,-0.504086,-0.504086 +-0.500961,-0.500961,-0.500961,-0.500961,-0.500961,-0.500961 +-0.497836,-0.497836,-0.497836,-0.497836,-0.497836,-0.497836 +-0.494711,-0.494711,-0.494711,-0.494711,-0.494711,-0.494711 +-0.491586,-0.491586,-0.491586,-0.491586,-0.491586,-0.491586 +-0.488461,-0.488461,-0.488461,-0.488461,-0.488461,-0.488461 +-0.485336,-0.485336,-0.485336,-0.485336,-0.485336,-0.485336 +-0.482211,-0.482211,-0.482211,-0.482211,-0.482211,-0.482211 +-0.479086,-0.479086,-0.479086,-0.479086,-0.479086,-0.479086 +-0.475961,-0.475961,-0.475961,-0.475961,-0.475961,-0.475961 +-0.472836,-0.472836,-0.472836,-0.472836,-0.472836,-0.472836 +-0.469711,-0.469711,-0.469711,-0.469711,-0.469711,-0.469711 +-0.466586,-0.466586,-0.466586,-0.466586,-0.466586,-0.466586 +-0.463461,-0.463461,-0.463461,-0.463461,-0.463461,-0.463461 +-0.460336,-0.460336,-0.460336,-0.460336,-0.460336,-0.460336 +-0.457211,-0.457211,-0.457211,-0.457211,-0.457211,-0.457211 +-0.454086,-0.454086,-0.454086,-0.454086,-0.454086,-0.454086 +-0.450961,-0.450961,-0.450961,-0.450961,-0.450961,-0.450961 +-0.447836,-0.447836,-0.447836,-0.447836,-0.447836,-0.447836 +-0.444711,-0.444711,-0.444711,-0.444711,-0.444711,-0.444711 +-0.441586,-0.441586,-0.441586,-0.441586,-0.441586,-0.441586 +-0.438461,-0.438461,-0.438461,-0.438461,-0.438461,-0.438461 +-0.435336,-0.435336,-0.435336,-0.435336,-0.435336,-0.435336 +-0.432211,-0.432211,-0.432211,-0.432211,-0.432211,-0.432211 +-0.429086,-0.429086,-0.429086,-0.429086,-0.429086,-0.429086 +-0.425961,-0.425961,-0.425961,-0.425961,-0.425961,-0.425961 +-0.422836,-0.422836,-0.422836,-0.422836,-0.422836,-0.422836 +-0.419711,-0.419711,-0.419711,-0.419711,-0.419711,-0.419711 +-0.416586,-0.416586,-0.416586,-0.416586,-0.416586,-0.416586 +-0.413461,-0.413461,-0.413461,-0.413461,-0.413461,-0.413461 +-0.410336,-0.410336,-0.410336,-0.410336,-0.410336,-0.410336 +-0.407211,-0.407211,-0.407211,-0.407211,-0.407211,-0.407211 +-0.404086,-0.404086,-0.404086,-0.404086,-0.404086,-0.404086 +-0.400961,-0.400961,-0.400961,-0.400961,-0.400961,-0.400961 +-0.397836,-0.397836,-0.397836,-0.397836,-0.397836,-0.397836 +-0.394711,-0.394711,-0.394711,-0.394711,-0.394711,-0.394711 +-0.391586,-0.391586,-0.391586,-0.391586,-0.391586,-0.391586 +-0.388461,-0.388461,-0.388461,-0.388461,-0.388461,-0.388461 +-0.385336,-0.385336,-0.385336,-0.385336,-0.385336,-0.385336 +-0.382211,-0.382211,-0.382211,-0.382211,-0.382211,-0.382211 +-0.379086,-0.379086,-0.379086,-0.379086,-0.379086,-0.379086 +-0.375961,-0.375961,-0.375961,-0.375961,-0.375961,-0.375961 +-0.372836,-0.372836,-0.372836,-0.372836,-0.372836,-0.372836 +-0.369711,-0.369711,-0.369711,-0.369711,-0.369711,-0.369711 +-0.366586,-0.366586,-0.366586,-0.366586,-0.366586,-0.366586 +-0.363461,-0.363461,-0.363461,-0.363461,-0.363461,-0.363461 +-0.360336,-0.360336,-0.360336,-0.360336,-0.360336,-0.360336 +-0.357211,-0.357211,-0.357211,-0.357211,-0.357211,-0.357211 +-0.354086,-0.354086,-0.354086,-0.354086,-0.354086,-0.354086 +-0.350961,-0.350961,-0.350961,-0.350961,-0.350961,-0.350961 +-0.347836,-0.347836,-0.347836,-0.347836,-0.347836,-0.347836 +-0.344711,-0.344711,-0.344711,-0.344711,-0.344711,-0.344711 +-0.341586,-0.341586,-0.341586,-0.341586,-0.341586,-0.341586 +-0.338461,-0.338461,-0.338461,-0.338461,-0.338461,-0.338461 +-0.335336,-0.335336,-0.335336,-0.335336,-0.335336,-0.335336 +-0.332211,-0.332211,-0.332211,-0.332211,-0.332211,-0.332211 +-0.329086,-0.329086,-0.329086,-0.329086,-0.329086,-0.329086 +-0.325961,-0.325961,-0.325961,-0.325961,-0.325961,-0.325961 +-0.322836,-0.322836,-0.322836,-0.322836,-0.322836,-0.322836 +-0.319711,-0.319711,-0.319711,-0.319711,-0.319711,-0.319711 +-0.316586,-0.316586,-0.316586,-0.316586,-0.316586,-0.316586 +-0.313461,-0.313461,-0.313461,-0.313461,-0.313461,-0.313461 +-0.310336,-0.310336,-0.310336,-0.310336,-0.310336,-0.310336 +-0.307211,-0.307211,-0.307211,-0.307211,-0.307211,-0.307211 +-0.304086,-0.304086,-0.304086,-0.304086,-0.304086,-0.304086 +-0.300961,-0.300961,-0.300961,-0.300961,-0.300961,-0.300961 +-0.297836,-0.297836,-0.297836,-0.297836,-0.297836,-0.297836 +-0.294711,-0.294711,-0.294711,-0.294711,-0.294711,-0.294711 +-0.291586,-0.291586,-0.291586,-0.291586,-0.291586,-0.291586 +-0.288461,-0.288461,-0.288461,-0.288461,-0.288461,-0.288461 +-0.285336,-0.285336,-0.285336,-0.285336,-0.285336,-0.285336 +-0.282211,-0.282211,-0.282211,-0.282211,-0.282211,-0.282211 +-0.279086,-0.279086,-0.279086,-0.279086,-0.279086,-0.279086 +-0.275961,-0.275961,-0.275961,-0.275961,-0.275961,-0.275961 +-0.272836,-0.272836,-0.272836,-0.272836,-0.272836,-0.272836 +-0.269711,-0.269711,-0.269711,-0.269711,-0.269711,-0.269711 +-0.266586,-0.266586,-0.266586,-0.266586,-0.266586,-0.266586 +-0.263461,-0.263461,-0.263461,-0.263461,-0.263461,-0.263461 +-0.260336,-0.260336,-0.260336,-0.260336,-0.260336,-0.260336 +-0.257211,-0.257211,-0.257211,-0.257211,-0.257211,-0.257211 +-0.254086,-0.254086,-0.254086,-0.254086,-0.254086,-0.254086 +-0.250961,-0.250961,-0.250961,-0.250961,-0.250961,-0.250961 +-0.247836,-0.247836,-0.247836,-0.247836,-0.247836,-0.247836 +-0.244711,-0.244711,-0.244711,-0.244711,-0.244711,-0.244711 +-0.241586,-0.241586,-0.241586,-0.241586,-0.241586,-0.241586 +-0.238461,-0.238461,-0.238461,-0.238461,-0.238461,-0.238461 +-0.235336,-0.235336,-0.235336,-0.235336,-0.235336,-0.235336 +-0.232211,-0.232211,-0.232211,-0.232211,-0.232211,-0.232211 +-0.229086,-0.229086,-0.229086,-0.229086,-0.229086,-0.229086 +-0.225961,-0.225961,-0.225961,-0.225961,-0.225961,-0.225961 +-0.222836,-0.222836,-0.222836,-0.222836,-0.222836,-0.222836 +-0.219711,-0.219711,-0.219711,-0.219711,-0.219711,-0.219711 +-0.216586,-0.216586,-0.216586,-0.216586,-0.216586,-0.216586 +-0.213461,-0.213461,-0.213461,-0.213461,-0.213461,-0.213461 +-0.210336,-0.210336,-0.210336,-0.210336,-0.210336,-0.210336 +-0.207211,-0.207211,-0.207211,-0.207211,-0.207211,-0.207211 +-0.204086,-0.204086,-0.204086,-0.204086,-0.204086,-0.204086 +-0.200961,-0.200961,-0.200961,-0.200961,-0.200961,-0.200961 +-0.197836,-0.197836,-0.197836,-0.197836,-0.197836,-0.197836 +-0.194711,-0.194711,-0.194711,-0.194711,-0.194711,-0.194711 +-0.191586,-0.191586,-0.191586,-0.191586,-0.191586,-0.191586 +-0.188461,-0.188461,-0.188461,-0.188461,-0.188461,-0.188461 +-0.185336,-0.185336,-0.185336,-0.185336,-0.185336,-0.185336 +-0.182211,-0.182211,-0.182211,-0.182211,-0.182211,-0.182211 +-0.179086,-0.179086,-0.179086,-0.179086,-0.179086,-0.179086 +-0.175961,-0.175961,-0.175961,-0.175961,-0.175961,-0.175961 +-0.172836,-0.172836,-0.172836,-0.172836,-0.172836,-0.172836 +-0.169711,-0.169711,-0.169711,-0.169711,-0.169711,-0.169711 +-0.166586,-0.166586,-0.166586,-0.166586,-0.166586,-0.166586 +-0.163461,-0.163461,-0.163461,-0.163461,-0.163461,-0.163461 +-0.160336,-0.160336,-0.160336,-0.160336,-0.160336,-0.160336 +-0.157211,-0.157211,-0.157211,-0.157211,-0.157211,-0.157211 +-0.154086,-0.154086,-0.154086,-0.154086,-0.154086,-0.154086 +-0.150961,-0.150961,-0.150961,-0.150961,-0.150961,-0.150961 +-0.147836,-0.147836,-0.147836,-0.147836,-0.147836,-0.147836 +-0.144711,-0.144711,-0.144711,-0.144711,-0.144711,-0.144711 +-0.141586,-0.141586,-0.141586,-0.141586,-0.141586,-0.141586 +-0.138461,-0.138461,-0.138461,-0.138461,-0.138461,-0.138461 +-0.135336,-0.135336,-0.135336,-0.135336,-0.135336,-0.135336 +-0.132211,-0.132211,-0.132211,-0.132211,-0.132211,-0.132211 +-0.129086,-0.129086,-0.129086,-0.129086,-0.129086,-0.129086 +-0.125961,-0.125961,-0.125961,-0.125961,-0.125961,-0.125961 +-0.122836,-0.122836,-0.122836,-0.122836,-0.122836,-0.122836 +-0.119711,-0.119711,-0.119711,-0.119711,-0.119711,-0.119711 +-0.116586,-0.116586,-0.116586,-0.116586,-0.116586,-0.116586 +-0.113461,-0.113461,-0.113461,-0.113461,-0.113461,-0.113461 +-0.110336,-0.110336,-0.110336,-0.110336,-0.110336,-0.110336 +-0.107211,-0.107211,-0.107211,-0.107211,-0.107211,-0.107211 +-0.104086,-0.104086,-0.104086,-0.104086,-0.104086,-0.104086 +-0.100961,-0.100961,-0.100961,-0.100961,-0.100961,-0.100961 +-0.097836,-0.097836,-0.097836,-0.097836,-0.097836,-0.097836 +-0.094711,-0.094711,-0.094711,-0.094711,-0.094711,-0.094711 +-0.091586,-0.091586,-0.091586,-0.091586,-0.091586,-0.091586 +-0.088461,-0.088461,-0.088461,-0.088461,-0.088461,-0.088461 +-0.085336,-0.085336,-0.085336,-0.085336,-0.085336,-0.085336 +-0.082211,-0.082211,-0.082211,-0.082211,-0.082211,-0.082211 +-0.079086,-0.079086,-0.079086,-0.079086,-0.079086,-0.079086 +-0.075961,-0.075961,-0.075961,-0.075961,-0.075961,-0.075961 +-0.072836,-0.072836,-0.072836,-0.072836,-0.072836,-0.072836 +-0.069711,-0.069711,-0.069711,-0.069711,-0.069711,-0.069711 +-0.066586,-0.066586,-0.066586,-0.066586,-0.066586,-0.066586 +-0.063461,-0.063461,-0.063461,-0.063461,-0.063461,-0.063461 +-0.060336,-0.060336,-0.060336,-0.060336,-0.060336,-0.060336 +-0.057211,-0.057211,-0.057211,-0.057211,-0.057211,-0.057211 +-0.054086,-0.054086,-0.054086,-0.054086,-0.054086,-0.054086 +-0.050961,-0.050961,-0.050961,-0.050961,-0.050961,-0.050961 +-0.047836,-0.047836,-0.047836,-0.047836,-0.047836,-0.047836 +-0.044718,-0.044718,-0.044718,-0.044718,-0.044718,-0.044718 +-0.041618,-0.041618,-0.041618,-0.041618,-0.041618,-0.041618 +-0.03855,-0.03855,-0.03855,-0.03855,-0.03855,-0.03855 +-0.035526,-0.035526,-0.035526,-0.035526,-0.035526,-0.035526 +-0.032558,-0.032558,-0.032558,-0.032558,-0.032558,-0.032558 +-0.029659,-0.029659,-0.029659,-0.029659,-0.029659,-0.029659 +-0.026841,-0.026841,-0.026841,-0.026841,-0.026841,-0.026841 +-0.024117,-0.024117,-0.024117,-0.024117,-0.024117,-0.024117 +-0.021499,-0.021499,-0.021499,-0.021499,-0.021499,-0.021499 +-0.019,-0.019,-0.019,-0.019,-0.019,-0.019 +-0.016632,-0.016632,-0.016632,-0.016632,-0.016632,-0.016632 +-0.014409,-0.014409,-0.014409,-0.014409,-0.014409,-0.014409 +-0.012341,-0.012341,-0.012341,-0.012341,-0.012341,-0.012341 +-0.010442,-0.010442,-0.010442,-0.010442,-0.010442,-0.010442 +-0.008725,-0.008725,-0.008725,-0.008725,-0.008725,-0.008725 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.005863,-0.005863,-0.005863,-0.005863,-0.005863,-0.005863 +-0.004704,-0.004704,-0.004704,-0.004704,-0.004704,-0.004704 +-0.003708,-0.003708,-0.003708,-0.003708,-0.003708,-0.003708 +-0.002864,-0.002864,-0.002864,-0.002864,-0.002864,-0.002864 +-0.002158,-0.002158,-0.002158,-0.002158,-0.002158,-0.002158 +-0.00158,-0.00158,-0.00158,-0.00158,-0.00158,-0.00158 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.000752,-0.000752,-0.000752,-0.000752,-0.000752,-0.000752 +-0.000477,-0.000477,-0.000477,-0.000477,-0.000477,-0.000477 +-0.000279,-0.000279,-0.000279,-0.000279,-0.000279,-0.000279 +-0.000146,-0.000146,-0.000146,-0.000146,-0.000146,-0.000146 +-0.000063,-0.000063,-0.000063,-0.000063,-0.000063,-0.000063 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000019,0.000019,0.000019,0.000019,0.000019,0.000019 +0.000065,0.000065,0.000065,0.000065,0.000065,0.000065 +0.000155,0.000155,0.000155,0.000155,0.000155,0.000155 +0.000302,0.000302,0.000302,0.000302,0.000302,0.000302 +0.000522,0.000522,0.000522,0.000522,0.000522,0.000522 +0.000829,0.000829,0.000829,0.000829,0.000829,0.000829 +0.001237,0.001237,0.001237,0.001237,0.001237,0.001237 +0.001762,0.001762,0.001762,0.001762,0.001762,0.001762 +0.002417,0.002417,0.002417,0.002417,0.002417,0.002417 +0.003217,0.003217,0.003217,0.003217,0.003217,0.003217 +0.004176,0.004176,0.004176,0.004176,0.004176,0.004176 +0.005309,0.005309,0.005309,0.005309,0.005309,0.005309 +0.006631,0.006631,0.006631,0.006631,0.006631,0.006631 +0.008156,0.008156,0.008156,0.008156,0.008156,0.008156 +0.009899,0.009899,0.009899,0.009899,0.009899,0.009899 +0.011873,0.011873,0.011873,0.011873,0.011873,0.011873 +0.01409,0.01409,0.01409,0.01409,0.01409,0.01409 +0.016539,0.016539,0.016539,0.016539,0.016539,0.016539 +0.019207,0.019207,0.019207,0.019207,0.019207,0.019207 +0.022078,0.022078,0.022078,0.022078,0.022078,0.022078 +0.025139,0.025139,0.025139,0.025139,0.025139,0.025139 +0.028375,0.028375,0.028375,0.028375,0.028375,0.028375 +0.031771,0.031771,0.031771,0.031771,0.031771,0.031771 +0.035313,0.035313,0.035313,0.035313,0.035313,0.035313 +0.038986,0.038986,0.038986,0.038986,0.038986,0.038986 +0.042776,0.042776,0.042776,0.042776,0.042776,0.042776 +0.046669,0.046669,0.046669,0.046669,0.046669,0.046669 +0.050649,0.050649,0.050649,0.050649,0.050649,0.050649 +0.054703,0.054703,0.054703,0.054703,0.054703,0.054703 +0.058816,0.058816,0.058816,0.058816,0.058816,0.058816 +0.062973,0.062973,0.062973,0.062973,0.062973,0.062973 +0.067159,0.067159,0.067159,0.067159,0.067159,0.067159 +0.071361,0.071361,0.071361,0.071361,0.071361,0.071361 +0.075566,0.075566,0.075566,0.075566,0.075566,0.075566 +0.079771,0.079771,0.079771,0.079771,0.079771,0.079771 +0.083976,0.083976,0.083976,0.083976,0.083976,0.083976 +0.088181,0.088181,0.088181,0.088181,0.088181,0.088181 +0.092386,0.092386,0.092386,0.092386,0.092386,0.092386 +0.096591,0.096591,0.096591,0.096591,0.096591,0.096591 +0.100796,0.100796,0.100796,0.100796,0.100796,0.100796 +0.105001,0.105001,0.105001,0.105001,0.105001,0.105001 +0.109206,0.109206,0.109206,0.109206,0.109206,0.109206 +0.113411,0.113411,0.113411,0.113411,0.113411,0.113411 +0.117616,0.117616,0.117616,0.117616,0.117616,0.117616 +0.121821,0.121821,0.121821,0.121821,0.121821,0.121821 +0.126026,0.126026,0.126026,0.126026,0.126026,0.126026 +0.130231,0.130231,0.130231,0.130231,0.130231,0.130231 +0.134436,0.134436,0.134436,0.134436,0.134436,0.134436 +0.138641,0.138641,0.138641,0.138641,0.138641,0.138641 +0.142846,0.142846,0.142846,0.142846,0.142846,0.142846 +0.147051,0.147051,0.147051,0.147051,0.147051,0.147051 +0.151256,0.151256,0.151256,0.151256,0.151256,0.151256 +0.155461,0.155461,0.155461,0.155461,0.155461,0.155461 +0.159666,0.159666,0.159666,0.159666,0.159666,0.159666 +0.163871,0.163871,0.163871,0.163871,0.163871,0.163871 +0.168076,0.168076,0.168076,0.168076,0.168076,0.168076 +0.172281,0.172281,0.172281,0.172281,0.172281,0.172281 +0.176486,0.176486,0.176486,0.176486,0.176486,0.176486 +0.180691,0.180691,0.180691,0.180691,0.180691,0.180691 +0.184896,0.184896,0.184896,0.184896,0.184896,0.184896 +0.189101,0.189101,0.189101,0.189101,0.189101,0.189101 +0.193306,0.193306,0.193306,0.193306,0.193306,0.193306 +0.197511,0.197511,0.197511,0.197511,0.197511,0.197511 +0.201716,0.201716,0.201716,0.201716,0.201716,0.201716 +0.205921,0.205921,0.205921,0.205921,0.205921,0.205921 +0.210126,0.210126,0.210126,0.210126,0.210126,0.210126 +0.214331,0.214331,0.214331,0.214331,0.214331,0.214331 +0.218536,0.218536,0.218536,0.218536,0.218536,0.218536 +0.222741,0.222741,0.222741,0.222741,0.222741,0.222741 +0.226946,0.226946,0.226946,0.226946,0.226946,0.226946 +0.231151,0.231151,0.231151,0.231151,0.231151,0.231151 +0.235356,0.235356,0.235356,0.235356,0.235356,0.235356 +0.239561,0.239561,0.239561,0.239561,0.239561,0.239561 +0.243766,0.243766,0.243766,0.243766,0.243766,0.243766 +0.247971,0.247971,0.247971,0.247971,0.247971,0.247971 +0.252176,0.252176,0.252176,0.252176,0.252176,0.252176 +0.256381,0.256381,0.256381,0.256381,0.256381,0.256381 +0.260586,0.260586,0.260586,0.260586,0.260586,0.260586 +0.264791,0.264791,0.264791,0.264791,0.264791,0.264791 +0.268996,0.268996,0.268996,0.268996,0.268996,0.268996 +0.273201,0.273201,0.273201,0.273201,0.273201,0.273201 +0.277406,0.277406,0.277406,0.277406,0.277406,0.277406 +0.281611,0.281611,0.281611,0.281611,0.281611,0.281611 +0.285816,0.285816,0.285816,0.285816,0.285816,0.285816 +0.290021,0.290021,0.290021,0.290021,0.290021,0.290021 +0.294226,0.294226,0.294226,0.294226,0.294226,0.294226 +0.298431,0.298431,0.298431,0.298431,0.298431,0.298431 +0.302636,0.302636,0.302636,0.302636,0.302636,0.302636 +0.306841,0.306841,0.306841,0.306841,0.306841,0.306841 +0.311046,0.311046,0.311046,0.311046,0.311046,0.311046 +0.315251,0.315251,0.315251,0.315251,0.315251,0.315251 +0.319456,0.319456,0.319456,0.319456,0.319456,0.319456 +0.323661,0.323661,0.323661,0.323661,0.323661,0.323661 +0.327866,0.327866,0.327866,0.327866,0.327866,0.327866 +0.332071,0.332071,0.332071,0.332071,0.332071,0.332071 +0.336276,0.336276,0.336276,0.336276,0.336276,0.336276 +0.340481,0.340481,0.340481,0.340481,0.340481,0.340481 +0.344686,0.344686,0.344686,0.344686,0.344686,0.344686 +0.348891,0.348891,0.348891,0.348891,0.348891,0.348891 +0.353096,0.353096,0.353096,0.353096,0.353096,0.353096 +0.357301,0.357301,0.357301,0.357301,0.357301,0.357301 +0.361506,0.361506,0.361506,0.361506,0.361506,0.361506 +0.365711,0.365711,0.365711,0.365711,0.365711,0.365711 +0.369916,0.369916,0.369916,0.369916,0.369916,0.369916 +0.374121,0.374121,0.374121,0.374121,0.374121,0.374121 +0.378326,0.378326,0.378326,0.378326,0.378326,0.378326 +0.382531,0.382531,0.382531,0.382531,0.382531,0.382531 +0.386736,0.386736,0.386736,0.386736,0.386736,0.386736 +0.390941,0.390941,0.390941,0.390941,0.390941,0.390941 +0.395146,0.395146,0.395146,0.395146,0.395146,0.395146 +0.399351,0.399351,0.399351,0.399351,0.399351,0.399351 +0.403556,0.403556,0.403556,0.403556,0.403556,0.403556 +0.407761,0.407761,0.407761,0.407761,0.407761,0.407761 +0.411966,0.411966,0.411966,0.411966,0.411966,0.411966 +0.416171,0.416171,0.416171,0.416171,0.416171,0.416171 +0.420376,0.420376,0.420376,0.420376,0.420376,0.420376 +0.424581,0.424581,0.424581,0.424581,0.424581,0.424581 +0.428786,0.428786,0.428786,0.428786,0.428786,0.428786 +0.432991,0.432991,0.432991,0.432991,0.432991,0.432991 +0.437196,0.437196,0.437196,0.437196,0.437196,0.437196 +0.441401,0.441401,0.441401,0.441401,0.441401,0.441401 +0.445606,0.445606,0.445606,0.445606,0.445606,0.445606 +0.449811,0.449811,0.449811,0.449811,0.449811,0.449811 +0.454016,0.454016,0.454016,0.454016,0.454016,0.454016 +0.458221,0.458221,0.458221,0.458221,0.458221,0.458221 +0.462426,0.462426,0.462426,0.462426,0.462426,0.462426 +0.466631,0.466631,0.466631,0.466631,0.466631,0.466631 +0.470836,0.470836,0.470836,0.470836,0.470836,0.470836 +0.475041,0.475041,0.475041,0.475041,0.475041,0.475041 +0.479246,0.479246,0.479246,0.479246,0.479246,0.479246 +0.483451,0.483451,0.483451,0.483451,0.483451,0.483451 +0.487656,0.487656,0.487656,0.487656,0.487656,0.487656 +0.491861,0.491861,0.491861,0.491861,0.491861,0.491861 +0.496066,0.496066,0.496066,0.496066,0.496066,0.496066 +0.500271,0.500271,0.500271,0.500271,0.500271,0.500271 +0.504476,0.504476,0.504476,0.504476,0.504476,0.504476 +0.508681,0.508681,0.508681,0.508681,0.508681,0.508681 +0.512886,0.512886,0.512886,0.512886,0.512886,0.512886 +0.517091,0.517091,0.517091,0.517091,0.517091,0.517091 +0.521296,0.521296,0.521296,0.521296,0.521296,0.521296 +0.525501,0.525501,0.525501,0.525501,0.525501,0.525501 +0.529706,0.529706,0.529706,0.529706,0.529706,0.529706 +0.533911,0.533911,0.533911,0.533911,0.533911,0.533911 +0.538116,0.538116,0.538116,0.538116,0.538116,0.538116 +0.542321,0.542321,0.542321,0.542321,0.542321,0.542321 +0.546526,0.546526,0.546526,0.546526,0.546526,0.546526 +0.550731,0.550731,0.550731,0.550731,0.550731,0.550731 +0.554936,0.554936,0.554936,0.554936,0.554936,0.554936 +0.559141,0.559141,0.559141,0.559141,0.559141,0.559141 +0.563346,0.563346,0.563346,0.563346,0.563346,0.563346 +0.567551,0.567551,0.567551,0.567551,0.567551,0.567551 +0.571756,0.571756,0.571756,0.571756,0.571756,0.571756 +0.575961,0.575961,0.575961,0.575961,0.575961,0.575961 +0.580166,0.580166,0.580166,0.580166,0.580166,0.580166 +0.584371,0.584371,0.584371,0.584371,0.584371,0.584371 +0.588576,0.588576,0.588576,0.588576,0.588576,0.588576 +0.592781,0.592781,0.592781,0.592781,0.592781,0.592781 +0.596986,0.596986,0.596986,0.596986,0.596986,0.596986 +0.601191,0.601191,0.601191,0.601191,0.601191,0.601191 +0.605396,0.605396,0.605396,0.605396,0.605396,0.605396 +0.609601,0.609601,0.609601,0.609601,0.609601,0.609601 +0.613806,0.613806,0.613806,0.613806,0.613806,0.613806 +0.618011,0.618011,0.618011,0.618011,0.618011,0.618011 +0.622216,0.622216,0.622216,0.622216,0.622216,0.622216 +0.626421,0.626421,0.626421,0.626421,0.626421,0.626421 +0.630626,0.630626,0.630626,0.630626,0.630626,0.630626 +0.634831,0.634831,0.634831,0.634831,0.634831,0.634831 +0.639036,0.639036,0.639036,0.639036,0.639036,0.639036 +0.643241,0.643241,0.643241,0.643241,0.643241,0.643241 +0.647446,0.647446,0.647446,0.647446,0.647446,0.647446 +0.651651,0.651651,0.651651,0.651651,0.651651,0.651651 +0.655856,0.655856,0.655856,0.655856,0.655856,0.655856 +0.660061,0.660061,0.660061,0.660061,0.660061,0.660061 +0.664266,0.664266,0.664266,0.664266,0.664266,0.664266 +0.668471,0.668471,0.668471,0.668471,0.668471,0.668471 +0.672676,0.672676,0.672676,0.672676,0.672676,0.672676 +0.676881,0.676881,0.676881,0.676881,0.676881,0.676881 +0.681086,0.681086,0.681086,0.681086,0.681086,0.681086 +0.685291,0.685291,0.685291,0.685291,0.685291,0.685291 +0.689496,0.689496,0.689496,0.689496,0.689496,0.689496 +0.693701,0.693701,0.693701,0.693701,0.693701,0.693701 +0.697906,0.697906,0.697906,0.697906,0.697906,0.697906 +0.702111,0.702111,0.702111,0.702111,0.702111,0.702111 +0.706316,0.706316,0.706316,0.706316,0.706316,0.706316 +0.710521,0.710521,0.710521,0.710521,0.710521,0.710521 +0.714726,0.714726,0.714726,0.714726,0.714726,0.714726 +0.718931,0.718931,0.718931,0.718931,0.718931,0.718931 +0.723136,0.723136,0.723136,0.723136,0.723136,0.723136 +0.727341,0.727341,0.727341,0.727341,0.727341,0.727341 +0.731546,0.731546,0.731546,0.731546,0.731546,0.731546 +0.735751,0.735751,0.735751,0.735751,0.735751,0.735751 +0.739956,0.739956,0.739956,0.739956,0.739956,0.739956 +0.744161,0.744161,0.744161,0.744161,0.744161,0.744161 +0.748366,0.748366,0.748366,0.748366,0.748366,0.748366 +0.752571,0.752571,0.752571,0.752571,0.752571,0.752571 +0.756776,0.756776,0.756776,0.756776,0.756776,0.756776 +0.760981,0.760981,0.760981,0.760981,0.760981,0.760981 +0.765186,0.765186,0.765186,0.765186,0.765186,0.765186 +0.769391,0.769391,0.769391,0.769391,0.769391,0.769391 +0.773596,0.773596,0.773596,0.773596,0.773596,0.773596 +0.777801,0.777801,0.777801,0.777801,0.777801,0.777801 +0.782006,0.782006,0.782006,0.782006,0.782006,0.782006 +0.786211,0.786211,0.786211,0.786211,0.786211,0.786211 +0.790416,0.790416,0.790416,0.790416,0.790416,0.790416 +0.794621,0.794621,0.794621,0.794621,0.794621,0.794621 +0.798826,0.798826,0.798826,0.798826,0.798826,0.798826 +0.803031,0.803031,0.803031,0.803031,0.803031,0.803031 +0.807236,0.807236,0.807236,0.807236,0.807236,0.807236 +0.811441,0.811441,0.811441,0.811441,0.811441,0.811441 +0.815646,0.815646,0.815646,0.815646,0.815646,0.815646 +0.819851,0.819851,0.819851,0.819851,0.819851,0.819851 +0.824056,0.824056,0.824056,0.824056,0.824056,0.824056 +0.828261,0.828261,0.828261,0.828261,0.828261,0.828261 +0.832466,0.832466,0.832466,0.832466,0.832466,0.832466 +0.836671,0.836671,0.836671,0.836671,0.836671,0.836671 +0.840876,0.840876,0.840876,0.840876,0.840876,0.840876 +0.845081,0.845081,0.845081,0.845081,0.845081,0.845081 +0.849286,0.849286,0.849286,0.849286,0.849286,0.849286 +0.853491,0.853491,0.853491,0.853491,0.853491,0.853491 +0.857696,0.857696,0.857696,0.857696,0.857696,0.857696 +0.861901,0.861901,0.861901,0.861901,0.861901,0.861901 +0.866106,0.866106,0.866106,0.866106,0.866106,0.866106 +0.870311,0.870311,0.870311,0.870311,0.870311,0.870311 +0.874516,0.874516,0.874516,0.874516,0.874516,0.874516 +0.878721,0.878721,0.878721,0.878721,0.878721,0.878721 +0.882926,0.882926,0.882926,0.882926,0.882926,0.882926 +0.887131,0.887131,0.887131,0.887131,0.887131,0.887131 +0.891336,0.891336,0.891336,0.891336,0.891336,0.891336 +0.895541,0.895541,0.895541,0.895541,0.895541,0.895541 +0.899746,0.899746,0.899746,0.899746,0.899746,0.899746 +0.903951,0.903951,0.903951,0.903951,0.903951,0.903951 +0.908156,0.908156,0.908156,0.908156,0.908156,0.908156 +0.912361,0.912361,0.912361,0.912361,0.912361,0.912361 +0.916566,0.916566,0.916566,0.916566,0.916566,0.916566 +0.920771,0.920771,0.920771,0.920771,0.920771,0.920771 +0.924976,0.924976,0.924976,0.924976,0.924976,0.924976 +0.929181,0.929181,0.929181,0.929181,0.929181,0.929181 +0.933386,0.933386,0.933386,0.933386,0.933386,0.933386 +0.937591,0.937591,0.937591,0.937591,0.937591,0.937591 +0.941796,0.941796,0.941796,0.941796,0.941796,0.941796 +0.946001,0.946001,0.946001,0.946001,0.946001,0.946001 +0.950206,0.950206,0.950206,0.950206,0.950206,0.950206 +0.954411,0.954411,0.954411,0.954411,0.954411,0.954411 +0.958616,0.958616,0.958616,0.958616,0.958616,0.958616 +0.962821,0.962821,0.962821,0.962821,0.962821,0.962821 +0.967026,0.967026,0.967026,0.967026,0.967026,0.967026 +0.971231,0.971231,0.971231,0.971231,0.971231,0.971231 +0.975436,0.975436,0.975436,0.975436,0.975436,0.975436 +0.979641,0.979641,0.979641,0.979641,0.979641,0.979641 +0.983846,0.983846,0.983846,0.983846,0.983846,0.983846 +0.988051,0.988051,0.988051,0.988051,0.988051,0.988051 +0.992256,0.992256,0.992256,0.992256,0.992256,0.992256 +0.996461,0.996461,0.996461,0.996461,0.996461,0.996461 +1.000666,1.000666,1.000666,1.000666,1.000666,1.000666 +1.004871,1.004871,1.004871,1.004871,1.004871,1.004871 +1.009076,1.009076,1.009076,1.009076,1.009076,1.009076 +1.013281,1.013281,1.013281,1.013281,1.013281,1.013281 +1.017486,1.017486,1.017486,1.017486,1.017486,1.017486 +1.021691,1.021691,1.021691,1.021691,1.021691,1.021691 +1.025896,1.025896,1.025896,1.025896,1.025896,1.025896 +1.030101,1.030101,1.030101,1.030101,1.030101,1.030101 +1.034306,1.034306,1.034306,1.034306,1.034306,1.034306 +1.038511,1.038511,1.038511,1.038511,1.038511,1.038511 +1.042716,1.042716,1.042716,1.042716,1.042716,1.042716 +1.046921,1.046921,1.046921,1.046921,1.046921,1.046921 +1.051126,1.051126,1.051126,1.051126,1.051126,1.051126 +1.055331,1.055331,1.055331,1.055331,1.055331,1.055331 +1.059536,1.059536,1.059536,1.059536,1.059536,1.059536 +1.063741,1.063741,1.063741,1.063741,1.063741,1.063741 +1.067946,1.067946,1.067946,1.067946,1.067946,1.067946 +1.072151,1.072151,1.072151,1.072151,1.072151,1.072151 +1.076356,1.076356,1.076356,1.076356,1.076356,1.076356 +1.080561,1.080561,1.080561,1.080561,1.080561,1.080561 +1.084766,1.084766,1.084766,1.084766,1.084766,1.084766 +1.088971,1.088971,1.088971,1.088971,1.088971,1.088971 +1.093176,1.093176,1.093176,1.093176,1.093176,1.093176 +1.097381,1.097381,1.097381,1.097381,1.097381,1.097381 +1.101586,1.101586,1.101586,1.101586,1.101586,1.101586 +1.105791,1.105791,1.105791,1.105791,1.105791,1.105791 +1.109996,1.109996,1.109996,1.109996,1.109996,1.109996 +1.114201,1.114201,1.114201,1.114201,1.114201,1.114201 +1.118406,1.118406,1.118406,1.118406,1.118406,1.118406 +1.122611,1.122611,1.122611,1.122611,1.122611,1.122611 +1.126816,1.126816,1.126816,1.126816,1.126816,1.126816 +1.131021,1.131021,1.131021,1.131021,1.131021,1.131021 +1.135226,1.135226,1.135226,1.135226,1.135226,1.135226 +1.139431,1.139431,1.139431,1.139431,1.139431,1.139431 +1.143636,1.143636,1.143636,1.143636,1.143636,1.143636 +1.147841,1.147841,1.147841,1.147841,1.147841,1.147841 +1.152046,1.152046,1.152046,1.152046,1.152046,1.152046 +1.156251,1.156251,1.156251,1.156251,1.156251,1.156251 +1.160456,1.160456,1.160456,1.160456,1.160456,1.160456 +1.164661,1.164661,1.164661,1.164661,1.164661,1.164661 +1.168866,1.168866,1.168866,1.168866,1.168866,1.168866 +1.173071,1.173071,1.173071,1.173071,1.173071,1.173071 +1.177276,1.177276,1.177276,1.177276,1.177276,1.177276 +1.181481,1.181481,1.181481,1.181481,1.181481,1.181481 +1.185686,1.185686,1.185686,1.185686,1.185686,1.185686 +1.189891,1.189891,1.189891,1.189891,1.189891,1.189891 +1.194096,1.194096,1.194096,1.194096,1.194096,1.194096 +1.198301,1.198301,1.198301,1.198301,1.198301,1.198301 +1.202506,1.202506,1.202506,1.202506,1.202506,1.202506 +1.206711,1.206711,1.206711,1.206711,1.206711,1.206711 +1.210916,1.210916,1.210916,1.210916,1.210916,1.210916 +1.215121,1.215121,1.215121,1.215121,1.215121,1.215121 +1.219326,1.219326,1.219326,1.219326,1.219326,1.219326 +1.223531,1.223531,1.223531,1.223531,1.223531,1.223531 +1.227736,1.227736,1.227736,1.227736,1.227736,1.227736 +1.231941,1.231941,1.231941,1.231941,1.231941,1.231941 +1.236146,1.236146,1.236146,1.236146,1.236146,1.236146 +1.240351,1.240351,1.240351,1.240351,1.240351,1.240351 +1.244556,1.244556,1.244556,1.244556,1.244556,1.244556 +1.248761,1.248761,1.248761,1.248761,1.248761,1.248761 +1.252966,1.252966,1.252966,1.252966,1.252966,1.252966 +1.257171,1.257171,1.257171,1.257171,1.257171,1.257171 +1.261376,1.261376,1.261376,1.261376,1.261376,1.261376 +1.265581,1.265581,1.265581,1.265581,1.265581,1.265581 +1.269786,1.269786,1.269786,1.269786,1.269786,1.269786 +1.273991,1.273991,1.273991,1.273991,1.273991,1.273991 +1.278196,1.278196,1.278196,1.278196,1.278196,1.278196 +1.282401,1.282401,1.282401,1.282401,1.282401,1.282401 +1.286606,1.286606,1.286606,1.286606,1.286606,1.286606 +1.290811,1.290811,1.290811,1.290811,1.290811,1.290811 +1.295016,1.295016,1.295016,1.295016,1.295016,1.295016 +1.299221,1.299221,1.299221,1.299221,1.299221,1.299221 +1.303426,1.303426,1.303426,1.303426,1.303426,1.303426 +1.307631,1.307631,1.307631,1.307631,1.307631,1.307631 +1.311836,1.311836,1.311836,1.311836,1.311836,1.311836 +1.316041,1.316041,1.316041,1.316041,1.316041,1.316041 +1.320246,1.320246,1.320246,1.320246,1.320246,1.320246 +1.324451,1.324451,1.324451,1.324451,1.324451,1.324451 +1.328656,1.328656,1.328656,1.328656,1.328656,1.328656 +1.332861,1.332861,1.332861,1.332861,1.332861,1.332861 +1.337066,1.337066,1.337066,1.337066,1.337066,1.337066 +1.341271,1.341271,1.341271,1.341271,1.341271,1.341271 +1.345476,1.345476,1.345476,1.345476,1.345476,1.345476 +1.349681,1.349681,1.349681,1.349681,1.349681,1.349681 +1.353886,1.353886,1.353886,1.353886,1.353886,1.353886 +1.358091,1.358091,1.358091,1.358091,1.358091,1.358091 +1.362296,1.362296,1.362296,1.362296,1.362296,1.362296 +1.366501,1.366501,1.366501,1.366501,1.366501,1.366501 +1.370706,1.370706,1.370706,1.370706,1.370706,1.370706 +1.374911,1.374911,1.374911,1.374911,1.374911,1.374911 +1.379116,1.379116,1.379116,1.379116,1.379116,1.379116 +1.383321,1.383321,1.383321,1.383321,1.383321,1.383321 +1.387526,1.387526,1.387526,1.387526,1.387526,1.387526 +1.391731,1.391731,1.391731,1.391731,1.391731,1.391731 +1.395936,1.395936,1.395936,1.395936,1.395936,1.395936 +1.400141,1.400141,1.400141,1.400141,1.400141,1.400141 +1.404346,1.404346,1.404346,1.404346,1.404346,1.404346 +1.408551,1.408551,1.408551,1.408551,1.408551,1.408551 +1.412756,1.412756,1.412756,1.412756,1.412756,1.412756 +1.416961,1.416961,1.416961,1.416961,1.416961,1.416961 +1.421166,1.421166,1.421166,1.421166,1.421166,1.421166 +1.425371,1.425371,1.425371,1.425371,1.425371,1.425371 +1.429576,1.429576,1.429576,1.429576,1.429576,1.429576 +1.433781,1.433781,1.433781,1.433781,1.433781,1.433781 +1.437986,1.437986,1.437986,1.437986,1.437986,1.437986 +1.442191,1.442191,1.442191,1.442191,1.442191,1.442191 +1.446396,1.446396,1.446396,1.446396,1.446396,1.446396 +1.450601,1.450601,1.450601,1.450601,1.450601,1.450601 +1.454806,1.454806,1.454806,1.454806,1.454806,1.454806 +1.459011,1.459011,1.459011,1.459011,1.459011,1.459011 +1.463216,1.463216,1.463216,1.463216,1.463216,1.463216 +1.467421,1.467421,1.467421,1.467421,1.467421,1.467421 +1.471626,1.471626,1.471626,1.471626,1.471626,1.471626 +1.475831,1.475831,1.475831,1.475831,1.475831,1.475831 +1.480036,1.480036,1.480036,1.480036,1.480036,1.480036 +1.484241,1.484241,1.484241,1.484241,1.484241,1.484241 +1.488446,1.488446,1.488446,1.488446,1.488446,1.488446 +1.492651,1.492651,1.492651,1.492651,1.492651,1.492651 +1.496856,1.496856,1.496856,1.496856,1.496856,1.496856 +1.501061,1.501061,1.501061,1.501061,1.501061,1.501061 +1.505266,1.505266,1.505266,1.505266,1.505266,1.505266 +1.509471,1.509471,1.509471,1.509471,1.509471,1.509471 +1.513676,1.513676,1.513676,1.513676,1.513676,1.513676 +1.517881,1.517881,1.517881,1.517881,1.517881,1.517881 +1.522086,1.522086,1.522086,1.522086,1.522086,1.522086 +1.526291,1.526291,1.526291,1.526291,1.526291,1.526291 +1.530496,1.530496,1.530496,1.530496,1.530496,1.530496 +1.534701,1.534701,1.534701,1.534701,1.534701,1.534701 +1.538906,1.538906,1.538906,1.538906,1.538906,1.538906 +1.543111,1.543111,1.543111,1.543111,1.543111,1.543111 +1.547316,1.547316,1.547316,1.547316,1.547316,1.547316 +1.551521,1.551521,1.551521,1.551521,1.551521,1.551521 +1.555726,1.555726,1.555726,1.555726,1.555726,1.555726 +1.559931,1.559931,1.559931,1.559931,1.559931,1.559931 +1.564136,1.564136,1.564136,1.564136,1.564136,1.564136 +1.568341,1.568341,1.568341,1.568341,1.568341,1.568341 +1.572546,1.572546,1.572546,1.572546,1.572546,1.572546 +1.576751,1.576751,1.576751,1.576751,1.576751,1.576751 +1.580956,1.580956,1.580956,1.580956,1.580956,1.580956 +1.585161,1.585161,1.585161,1.585161,1.585161,1.585161 +1.589366,1.589366,1.589366,1.589366,1.589366,1.589366 +1.593571,1.593571,1.593571,1.593571,1.593571,1.593571 +1.597776,1.597776,1.597776,1.597776,1.597776,1.597776 +1.601981,1.601981,1.601981,1.601981,1.601981,1.601981 +1.606186,1.606186,1.606186,1.606186,1.606186,1.606186 +1.610391,1.610391,1.610391,1.610391,1.610391,1.610391 +1.614596,1.614596,1.614596,1.614596,1.614596,1.614596 +1.618801,1.618801,1.618801,1.618801,1.618801,1.618801 +1.623006,1.623006,1.623006,1.623006,1.623006,1.623006 +1.627211,1.627211,1.627211,1.627211,1.627211,1.627211 +1.631416,1.631416,1.631416,1.631416,1.631416,1.631416 +1.635621,1.635621,1.635621,1.635621,1.635621,1.635621 +1.639826,1.639826,1.639826,1.639826,1.639826,1.639826 +1.644031,1.644031,1.644031,1.644031,1.644031,1.644031 +1.648236,1.648236,1.648236,1.648236,1.648236,1.648236 +1.652441,1.652441,1.652441,1.652441,1.652441,1.652441 +1.656646,1.656646,1.656646,1.656646,1.656646,1.656646 +1.660851,1.660851,1.660851,1.660851,1.660851,1.660851 +1.665056,1.665056,1.665056,1.665056,1.665056,1.665056 +1.669261,1.669261,1.669261,1.669261,1.669261,1.669261 +1.673466,1.673466,1.673466,1.673466,1.673466,1.673466 +1.677669,1.677669,1.677669,1.677669,1.677669,1.677669 +1.681859,1.681859,1.681859,1.681859,1.681859,1.681859 +1.68602,1.68602,1.68602,1.68602,1.68602,1.68602 +1.690138,1.690138,1.690138,1.690138,1.690138,1.690138 +1.694199,1.694199,1.694199,1.694199,1.694199,1.694199 +1.698188,1.698188,1.698188,1.698188,1.698188,1.698188 +1.702091,1.702091,1.702091,1.702091,1.702091,1.702091 +1.705894,1.705894,1.705894,1.705894,1.705894,1.705894 +1.709581,1.709581,1.709581,1.709581,1.709581,1.709581 +1.713138,1.713138,1.713138,1.713138,1.713138,1.713138 +1.716552,1.716552,1.716552,1.716552,1.716552,1.716552 +1.719806,1.719806,1.719806,1.719806,1.719806,1.719806 +1.722887,1.722887,1.722887,1.722887,1.722887,1.722887 +1.725781,1.725781,1.725781,1.725781,1.725781,1.725781 +1.728472,1.728472,1.728472,1.728472,1.728472,1.728472 +1.730947,1.730947,1.730947,1.730947,1.730947,1.730947 +1.73319,1.73319,1.73319,1.73319,1.73319,1.73319 +1.735191,1.735191,1.735191,1.735191,1.735191,1.735191 +1.736959,1.736959,1.736959,1.736959,1.736959,1.736959 +1.738508,1.738508,1.738508,1.738508,1.738508,1.738508 +1.739852,1.739852,1.739852,1.739852,1.739852,1.739852 +1.741006,1.741006,1.741006,1.741006,1.741006,1.741006 +1.741984,1.741984,1.741984,1.741984,1.741984,1.741984 +1.742801,1.742801,1.742801,1.742801,1.742801,1.742801 +1.743471,1.743471,1.743471,1.743471,1.743471,1.743471 +1.74401,1.74401,1.74401,1.74401,1.74401,1.74401 +1.744431,1.744431,1.744431,1.744431,1.744431,1.744431 +1.744748,1.744748,1.744748,1.744748,1.744748,1.744748 +1.744977,1.744977,1.744977,1.744977,1.744977,1.744977 +1.745132,1.745132,1.745132,1.745132,1.745132,1.745132 +1.745227,1.745227,1.745227,1.745227,1.745227,1.745227 +1.745277,1.745277,1.745277,1.745277,1.745277,1.745277 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745281,1.745281,1.745281,1.745281,1.745281,1.745281 +1.745235,1.745235,1.745235,1.745235,1.745235,1.745235 +1.745145,1.745145,1.745145,1.745145,1.745145,1.745145 +1.744998,1.744998,1.744998,1.744998,1.744998,1.744998 +1.744778,1.744778,1.744778,1.744778,1.744778,1.744778 +1.744471,1.744471,1.744471,1.744471,1.744471,1.744471 +1.744063,1.744063,1.744063,1.744063,1.744063,1.744063 +1.743538,1.743538,1.743538,1.743538,1.743538,1.743538 +1.742883,1.742883,1.742883,1.742883,1.742883,1.742883 +1.742083,1.742083,1.742083,1.742083,1.742083,1.742083 +1.741124,1.741124,1.741124,1.741124,1.741124,1.741124 +1.739991,1.739991,1.739991,1.739991,1.739991,1.739991 +1.738669,1.738669,1.738669,1.738669,1.738669,1.738669 +1.737144,1.737144,1.737144,1.737144,1.737144,1.737144 +1.735401,1.735401,1.735401,1.735401,1.735401,1.735401 +1.733427,1.733427,1.733427,1.733427,1.733427,1.733427 +1.73121,1.73121,1.73121,1.73121,1.73121,1.73121 +1.728761,1.728761,1.728761,1.728761,1.728761,1.728761 +1.726093,1.726093,1.726093,1.726093,1.726093,1.726093 +1.723222,1.723222,1.723222,1.723222,1.723222,1.723222 +1.720161,1.720161,1.720161,1.720161,1.720161,1.720161 +1.716925,1.716925,1.716925,1.716925,1.716925,1.716925 +1.713529,1.713529,1.713529,1.713529,1.713529,1.713529 +1.709987,1.709987,1.709987,1.709987,1.709987,1.709987 +1.706314,1.706314,1.706314,1.706314,1.706314,1.706314 +1.702524,1.702524,1.702524,1.702524,1.702524,1.702524 +1.698631,1.698631,1.698631,1.698631,1.698631,1.698631 +1.694651,1.694651,1.694651,1.694651,1.694651,1.694651 +1.690597,1.690597,1.690597,1.690597,1.690597,1.690597 +1.686484,1.686484,1.686484,1.686484,1.686484,1.686484 +1.682327,1.682327,1.682327,1.682327,1.682327,1.682327 +1.678141,1.678141,1.678141,1.678141,1.678141,1.678141 +1.673939,1.673939,1.673939,1.673939,1.673939,1.673939 +1.669734,1.669734,1.669734,1.669734,1.669734,1.669734 +1.665529,1.665529,1.665529,1.665529,1.665529,1.665529 +1.661324,1.661324,1.661324,1.661324,1.661324,1.661324 +1.657119,1.657119,1.657119,1.657119,1.657119,1.657119 +1.652914,1.652914,1.652914,1.652914,1.652914,1.652914 +1.648709,1.648709,1.648709,1.648709,1.648709,1.648709 +1.644504,1.644504,1.644504,1.644504,1.644504,1.644504 +1.640299,1.640299,1.640299,1.640299,1.640299,1.640299 +1.636094,1.636094,1.636094,1.636094,1.636094,1.636094 +1.631889,1.631889,1.631889,1.631889,1.631889,1.631889 +1.627684,1.627684,1.627684,1.627684,1.627684,1.627684 +1.623479,1.623479,1.623479,1.623479,1.623479,1.623479 +1.619274,1.619274,1.619274,1.619274,1.619274,1.619274 +1.615069,1.615069,1.615069,1.615069,1.615069,1.615069 +1.610864,1.610864,1.610864,1.610864,1.610864,1.610864 +1.606659,1.606659,1.606659,1.606659,1.606659,1.606659 +1.602454,1.602454,1.602454,1.602454,1.602454,1.602454 +1.598249,1.598249,1.598249,1.598249,1.598249,1.598249 +1.594044,1.594044,1.594044,1.594044,1.594044,1.594044 +1.589839,1.589839,1.589839,1.589839,1.589839,1.589839 +1.585634,1.585634,1.585634,1.585634,1.585634,1.585634 +1.581429,1.581429,1.581429,1.581429,1.581429,1.581429 +1.577224,1.577224,1.577224,1.577224,1.577224,1.577224 +1.573019,1.573019,1.573019,1.573019,1.573019,1.573019 +1.568814,1.568814,1.568814,1.568814,1.568814,1.568814 +1.564609,1.564609,1.564609,1.564609,1.564609,1.564609 +1.560404,1.560404,1.560404,1.560404,1.560404,1.560404 +1.556199,1.556199,1.556199,1.556199,1.556199,1.556199 +1.551994,1.551994,1.551994,1.551994,1.551994,1.551994 +1.547789,1.547789,1.547789,1.547789,1.547789,1.547789 +1.543584,1.543584,1.543584,1.543584,1.543584,1.543584 +1.539379,1.539379,1.539379,1.539379,1.539379,1.539379 +1.535174,1.535174,1.535174,1.535174,1.535174,1.535174 +1.530969,1.530969,1.530969,1.530969,1.530969,1.530969 +1.526764,1.526764,1.526764,1.526764,1.526764,1.526764 +1.522559,1.522559,1.522559,1.522559,1.522559,1.522559 +1.518354,1.518354,1.518354,1.518354,1.518354,1.518354 +1.514149,1.514149,1.514149,1.514149,1.514149,1.514149 +1.509944,1.509944,1.509944,1.509944,1.509944,1.509944 +1.505739,1.505739,1.505739,1.505739,1.505739,1.505739 +1.501534,1.501534,1.501534,1.501534,1.501534,1.501534 +1.497329,1.497329,1.497329,1.497329,1.497329,1.497329 +1.493124,1.493124,1.493124,1.493124,1.493124,1.493124 +1.488919,1.488919,1.488919,1.488919,1.488919,1.488919 +1.484714,1.484714,1.484714,1.484714,1.484714,1.484714 +1.480509,1.480509,1.480509,1.480509,1.480509,1.480509 +1.476304,1.476304,1.476304,1.476304,1.476304,1.476304 +1.472099,1.472099,1.472099,1.472099,1.472099,1.472099 +1.467894,1.467894,1.467894,1.467894,1.467894,1.467894 +1.463689,1.463689,1.463689,1.463689,1.463689,1.463689 +1.459484,1.459484,1.459484,1.459484,1.459484,1.459484 +1.455279,1.455279,1.455279,1.455279,1.455279,1.455279 +1.451074,1.451074,1.451074,1.451074,1.451074,1.451074 +1.446869,1.446869,1.446869,1.446869,1.446869,1.446869 +1.442664,1.442664,1.442664,1.442664,1.442664,1.442664 +1.438459,1.438459,1.438459,1.438459,1.438459,1.438459 +1.434254,1.434254,1.434254,1.434254,1.434254,1.434254 +1.430049,1.430049,1.430049,1.430049,1.430049,1.430049 +1.425844,1.425844,1.425844,1.425844,1.425844,1.425844 +1.421639,1.421639,1.421639,1.421639,1.421639,1.421639 +1.417434,1.417434,1.417434,1.417434,1.417434,1.417434 +1.413229,1.413229,1.413229,1.413229,1.413229,1.413229 +1.409024,1.409024,1.409024,1.409024,1.409024,1.409024 +1.404819,1.404819,1.404819,1.404819,1.404819,1.404819 +1.400614,1.400614,1.400614,1.400614,1.400614,1.400614 +1.396409,1.396409,1.396409,1.396409,1.396409,1.396409 +1.392204,1.392204,1.392204,1.392204,1.392204,1.392204 +1.387999,1.387999,1.387999,1.387999,1.387999,1.387999 +1.383794,1.383794,1.383794,1.383794,1.383794,1.383794 +1.379589,1.379589,1.379589,1.379589,1.379589,1.379589 +1.375384,1.375384,1.375384,1.375384,1.375384,1.375384 +1.371179,1.371179,1.371179,1.371179,1.371179,1.371179 +1.366974,1.366974,1.366974,1.366974,1.366974,1.366974 +1.362769,1.362769,1.362769,1.362769,1.362769,1.362769 +1.358564,1.358564,1.358564,1.358564,1.358564,1.358564 +1.354359,1.354359,1.354359,1.354359,1.354359,1.354359 +1.350154,1.350154,1.350154,1.350154,1.350154,1.350154 +1.345949,1.345949,1.345949,1.345949,1.345949,1.345949 +1.341744,1.341744,1.341744,1.341744,1.341744,1.341744 +1.337539,1.337539,1.337539,1.337539,1.337539,1.337539 +1.333334,1.333334,1.333334,1.333334,1.333334,1.333334 +1.329129,1.329129,1.329129,1.329129,1.329129,1.329129 +1.324924,1.324924,1.324924,1.324924,1.324924,1.324924 +1.320719,1.320719,1.320719,1.320719,1.320719,1.320719 +1.316514,1.316514,1.316514,1.316514,1.316514,1.316514 +1.312309,1.312309,1.312309,1.312309,1.312309,1.312309 +1.308104,1.308104,1.308104,1.308104,1.308104,1.308104 +1.303899,1.303899,1.303899,1.303899,1.303899,1.303899 +1.299694,1.299694,1.299694,1.299694,1.299694,1.299694 +1.295489,1.295489,1.295489,1.295489,1.295489,1.295489 +1.291284,1.291284,1.291284,1.291284,1.291284,1.291284 +1.287079,1.287079,1.287079,1.287079,1.287079,1.287079 +1.282874,1.282874,1.282874,1.282874,1.282874,1.282874 +1.278669,1.278669,1.278669,1.278669,1.278669,1.278669 +1.274464,1.274464,1.274464,1.274464,1.274464,1.274464 +1.270259,1.270259,1.270259,1.270259,1.270259,1.270259 +1.266054,1.266054,1.266054,1.266054,1.266054,1.266054 +1.261849,1.261849,1.261849,1.261849,1.261849,1.261849 +1.257644,1.257644,1.257644,1.257644,1.257644,1.257644 +1.253439,1.253439,1.253439,1.253439,1.253439,1.253439 +1.249234,1.249234,1.249234,1.249234,1.249234,1.249234 +1.245029,1.245029,1.245029,1.245029,1.245029,1.245029 +1.240824,1.240824,1.240824,1.240824,1.240824,1.240824 +1.236619,1.236619,1.236619,1.236619,1.236619,1.236619 +1.232414,1.232414,1.232414,1.232414,1.232414,1.232414 +1.228209,1.228209,1.228209,1.228209,1.228209,1.228209 +1.224004,1.224004,1.224004,1.224004,1.224004,1.224004 +1.219799,1.219799,1.219799,1.219799,1.219799,1.219799 +1.215594,1.215594,1.215594,1.215594,1.215594,1.215594 +1.211389,1.211389,1.211389,1.211389,1.211389,1.211389 +1.207184,1.207184,1.207184,1.207184,1.207184,1.207184 +1.202979,1.202979,1.202979,1.202979,1.202979,1.202979 +1.198774,1.198774,1.198774,1.198774,1.198774,1.198774 +1.194569,1.194569,1.194569,1.194569,1.194569,1.194569 +1.190364,1.190364,1.190364,1.190364,1.190364,1.190364 +1.186159,1.186159,1.186159,1.186159,1.186159,1.186159 +1.181954,1.181954,1.181954,1.181954,1.181954,1.181954 +1.177749,1.177749,1.177749,1.177749,1.177749,1.177749 +1.173544,1.173544,1.173544,1.173544,1.173544,1.173544 +1.169339,1.169339,1.169339,1.169339,1.169339,1.169339 +1.165134,1.165134,1.165134,1.165134,1.165134,1.165134 +1.160929,1.160929,1.160929,1.160929,1.160929,1.160929 +1.156724,1.156724,1.156724,1.156724,1.156724,1.156724 +1.152519,1.152519,1.152519,1.152519,1.152519,1.152519 +1.148314,1.148314,1.148314,1.148314,1.148314,1.148314 +1.144109,1.144109,1.144109,1.144109,1.144109,1.144109 +1.139904,1.139904,1.139904,1.139904,1.139904,1.139904 +1.135699,1.135699,1.135699,1.135699,1.135699,1.135699 +1.131494,1.131494,1.131494,1.131494,1.131494,1.131494 +1.127289,1.127289,1.127289,1.127289,1.127289,1.127289 +1.123084,1.123084,1.123084,1.123084,1.123084,1.123084 +1.118879,1.118879,1.118879,1.118879,1.118879,1.118879 +1.114674,1.114674,1.114674,1.114674,1.114674,1.114674 +1.110469,1.110469,1.110469,1.110469,1.110469,1.110469 +1.106264,1.106264,1.106264,1.106264,1.106264,1.106264 +1.102059,1.102059,1.102059,1.102059,1.102059,1.102059 +1.097854,1.097854,1.097854,1.097854,1.097854,1.097854 +1.093649,1.093649,1.093649,1.093649,1.093649,1.093649 +1.089444,1.089444,1.089444,1.089444,1.089444,1.089444 +1.085239,1.085239,1.085239,1.085239,1.085239,1.085239 +1.081034,1.081034,1.081034,1.081034,1.081034,1.081034 +1.076829,1.076829,1.076829,1.076829,1.076829,1.076829 +1.072624,1.072624,1.072624,1.072624,1.072624,1.072624 +1.068419,1.068419,1.068419,1.068419,1.068419,1.068419 +1.064214,1.064214,1.064214,1.064214,1.064214,1.064214 +1.060009,1.060009,1.060009,1.060009,1.060009,1.060009 +1.055804,1.055804,1.055804,1.055804,1.055804,1.055804 +1.051599,1.051599,1.051599,1.051599,1.051599,1.051599 +1.047394,1.047394,1.047394,1.047394,1.047394,1.047394 +1.043189,1.043189,1.043189,1.043189,1.043189,1.043189 +1.038984,1.038984,1.038984,1.038984,1.038984,1.038984 +1.034779,1.034779,1.034779,1.034779,1.034779,1.034779 +1.030574,1.030574,1.030574,1.030574,1.030574,1.030574 +1.026369,1.026369,1.026369,1.026369,1.026369,1.026369 +1.022164,1.022164,1.022164,1.022164,1.022164,1.022164 +1.017959,1.017959,1.017959,1.017959,1.017959,1.017959 +1.013754,1.013754,1.013754,1.013754,1.013754,1.013754 +1.009549,1.009549,1.009549,1.009549,1.009549,1.009549 +1.005344,1.005344,1.005344,1.005344,1.005344,1.005344 +1.001139,1.001139,1.001139,1.001139,1.001139,1.001139 +0.996934,0.996934,0.996934,0.996934,0.996934,0.996934 +0.992729,0.992729,0.992729,0.992729,0.992729,0.992729 +0.988524,0.988524,0.988524,0.988524,0.988524,0.988524 +0.984319,0.984319,0.984319,0.984319,0.984319,0.984319 +0.980114,0.980114,0.980114,0.980114,0.980114,0.980114 +0.975909,0.975909,0.975909,0.975909,0.975909,0.975909 +0.971704,0.971704,0.971704,0.971704,0.971704,0.971704 +0.967499,0.967499,0.967499,0.967499,0.967499,0.967499 +0.963294,0.963294,0.963294,0.963294,0.963294,0.963294 +0.959089,0.959089,0.959089,0.959089,0.959089,0.959089 +0.954884,0.954884,0.954884,0.954884,0.954884,0.954884 +0.950679,0.950679,0.950679,0.950679,0.950679,0.950679 +0.946474,0.946474,0.946474,0.946474,0.946474,0.946474 +0.942269,0.942269,0.942269,0.942269,0.942269,0.942269 +0.938064,0.938064,0.938064,0.938064,0.938064,0.938064 +0.933859,0.933859,0.933859,0.933859,0.933859,0.933859 +0.929654,0.929654,0.929654,0.929654,0.929654,0.929654 +0.925449,0.925449,0.925449,0.925449,0.925449,0.925449 +0.921244,0.921244,0.921244,0.921244,0.921244,0.921244 +0.917039,0.917039,0.917039,0.917039,0.917039,0.917039 +0.912834,0.912834,0.912834,0.912834,0.912834,0.912834 +0.908629,0.908629,0.908629,0.908629,0.908629,0.908629 +0.904424,0.904424,0.904424,0.904424,0.904424,0.904424 +0.900219,0.900219,0.900219,0.900219,0.900219,0.900219 +0.896014,0.896014,0.896014,0.896014,0.896014,0.896014 +0.891809,0.891809,0.891809,0.891809,0.891809,0.891809 +0.887604,0.887604,0.887604,0.887604,0.887604,0.887604 +0.883399,0.883399,0.883399,0.883399,0.883399,0.883399 +0.879194,0.879194,0.879194,0.879194,0.879194,0.879194 +0.874989,0.874989,0.874989,0.874989,0.874989,0.874989 +0.870784,0.870784,0.870784,0.870784,0.870784,0.870784 +0.866579,0.866579,0.866579,0.866579,0.866579,0.866579 +0.862374,0.862374,0.862374,0.862374,0.862374,0.862374 +0.858169,0.858169,0.858169,0.858169,0.858169,0.858169 +0.853964,0.853964,0.853964,0.853964,0.853964,0.853964 +0.849759,0.849759,0.849759,0.849759,0.849759,0.849759 +0.845554,0.845554,0.845554,0.845554,0.845554,0.845554 +0.841349,0.841349,0.841349,0.841349,0.841349,0.841349 +0.837144,0.837144,0.837144,0.837144,0.837144,0.837144 +0.832939,0.832939,0.832939,0.832939,0.832939,0.832939 +0.828734,0.828734,0.828734,0.828734,0.828734,0.828734 +0.824529,0.824529,0.824529,0.824529,0.824529,0.824529 +0.820324,0.820324,0.820324,0.820324,0.820324,0.820324 +0.816119,0.816119,0.816119,0.816119,0.816119,0.816119 +0.811914,0.811914,0.811914,0.811914,0.811914,0.811914 +0.807709,0.807709,0.807709,0.807709,0.807709,0.807709 +0.803504,0.803504,0.803504,0.803504,0.803504,0.803504 +0.799299,0.799299,0.799299,0.799299,0.799299,0.799299 +0.795094,0.795094,0.795094,0.795094,0.795094,0.795094 +0.790889,0.790889,0.790889,0.790889,0.790889,0.790889 +0.786684,0.786684,0.786684,0.786684,0.786684,0.786684 +0.782479,0.782479,0.782479,0.782479,0.782479,0.782479 +0.778274,0.778274,0.778274,0.778274,0.778274,0.778274 +0.774069,0.774069,0.774069,0.774069,0.774069,0.774069 +0.769864,0.769864,0.769864,0.769864,0.769864,0.769864 +0.765659,0.765659,0.765659,0.765659,0.765659,0.765659 +0.761454,0.761454,0.761454,0.761454,0.761454,0.761454 +0.757249,0.757249,0.757249,0.757249,0.757249,0.757249 +0.753044,0.753044,0.753044,0.753044,0.753044,0.753044 +0.748839,0.748839,0.748839,0.748839,0.748839,0.748839 +0.744634,0.744634,0.744634,0.744634,0.744634,0.744634 +0.740429,0.740429,0.740429,0.740429,0.740429,0.740429 +0.736224,0.736224,0.736224,0.736224,0.736224,0.736224 +0.732019,0.732019,0.732019,0.732019,0.732019,0.732019 +0.727814,0.727814,0.727814,0.727814,0.727814,0.727814 +0.723609,0.723609,0.723609,0.723609,0.723609,0.723609 +0.719404,0.719404,0.719404,0.719404,0.719404,0.719404 +0.715199,0.715199,0.715199,0.715199,0.715199,0.715199 +0.710994,0.710994,0.710994,0.710994,0.710994,0.710994 +0.706789,0.706789,0.706789,0.706789,0.706789,0.706789 +0.702584,0.702584,0.702584,0.702584,0.702584,0.702584 +0.698379,0.698379,0.698379,0.698379,0.698379,0.698379 +0.694174,0.694174,0.694174,0.694174,0.694174,0.694174 +0.689969,0.689969,0.689969,0.689969,0.689969,0.689969 +0.685764,0.685764,0.685764,0.685764,0.685764,0.685764 +0.681559,0.681559,0.681559,0.681559,0.681559,0.681559 +0.677354,0.677354,0.677354,0.677354,0.677354,0.677354 +0.673149,0.673149,0.673149,0.673149,0.673149,0.673149 +0.668944,0.668944,0.668944,0.668944,0.668944,0.668944 +0.664739,0.664739,0.664739,0.664739,0.664739,0.664739 +0.660534,0.660534,0.660534,0.660534,0.660534,0.660534 +0.656329,0.656329,0.656329,0.656329,0.656329,0.656329 +0.652124,0.652124,0.652124,0.652124,0.652124,0.652124 +0.647919,0.647919,0.647919,0.647919,0.647919,0.647919 +0.643714,0.643714,0.643714,0.643714,0.643714,0.643714 +0.639509,0.639509,0.639509,0.639509,0.639509,0.639509 +0.635304,0.635304,0.635304,0.635304,0.635304,0.635304 +0.631099,0.631099,0.631099,0.631099,0.631099,0.631099 +0.626894,0.626894,0.626894,0.626894,0.626894,0.626894 +0.622689,0.622689,0.622689,0.622689,0.622689,0.622689 +0.618484,0.618484,0.618484,0.618484,0.618484,0.618484 +0.614279,0.614279,0.614279,0.614279,0.614279,0.614279 +0.610074,0.610074,0.610074,0.610074,0.610074,0.610074 +0.605869,0.605869,0.605869,0.605869,0.605869,0.605869 +0.601664,0.601664,0.601664,0.601664,0.601664,0.601664 +0.597459,0.597459,0.597459,0.597459,0.597459,0.597459 +0.593254,0.593254,0.593254,0.593254,0.593254,0.593254 +0.589049,0.589049,0.589049,0.589049,0.589049,0.589049 +0.584844,0.584844,0.584844,0.584844,0.584844,0.584844 +0.580639,0.580639,0.580639,0.580639,0.580639,0.580639 +0.576434,0.576434,0.576434,0.576434,0.576434,0.576434 +0.572229,0.572229,0.572229,0.572229,0.572229,0.572229 +0.568024,0.568024,0.568024,0.568024,0.568024,0.568024 +0.563819,0.563819,0.563819,0.563819,0.563819,0.563819 +0.559614,0.559614,0.559614,0.559614,0.559614,0.559614 +0.555409,0.555409,0.555409,0.555409,0.555409,0.555409 +0.551204,0.551204,0.551204,0.551204,0.551204,0.551204 +0.546999,0.546999,0.546999,0.546999,0.546999,0.546999 +0.542794,0.542794,0.542794,0.542794,0.542794,0.542794 +0.538589,0.538589,0.538589,0.538589,0.538589,0.538589 +0.534384,0.534384,0.534384,0.534384,0.534384,0.534384 +0.530179,0.530179,0.530179,0.530179,0.530179,0.530179 +0.525974,0.525974,0.525974,0.525974,0.525974,0.525974 +0.521769,0.521769,0.521769,0.521769,0.521769,0.521769 +0.517564,0.517564,0.517564,0.517564,0.517564,0.517564 +0.513359,0.513359,0.513359,0.513359,0.513359,0.513359 +0.509154,0.509154,0.509154,0.509154,0.509154,0.509154 +0.504949,0.504949,0.504949,0.504949,0.504949,0.504949 +0.500744,0.500744,0.500744,0.500744,0.500744,0.500744 +0.496539,0.496539,0.496539,0.496539,0.496539,0.496539 +0.492334,0.492334,0.492334,0.492334,0.492334,0.492334 +0.488129,0.488129,0.488129,0.488129,0.488129,0.488129 +0.483924,0.483924,0.483924,0.483924,0.483924,0.483924 +0.479719,0.479719,0.479719,0.479719,0.479719,0.479719 +0.475514,0.475514,0.475514,0.475514,0.475514,0.475514 +0.471309,0.471309,0.471309,0.471309,0.471309,0.471309 +0.467104,0.467104,0.467104,0.467104,0.467104,0.467104 +0.462899,0.462899,0.462899,0.462899,0.462899,0.462899 +0.458694,0.458694,0.458694,0.458694,0.458694,0.458694 +0.454489,0.454489,0.454489,0.454489,0.454489,0.454489 +0.450284,0.450284,0.450284,0.450284,0.450284,0.450284 +0.446079,0.446079,0.446079,0.446079,0.446079,0.446079 +0.441874,0.441874,0.441874,0.441874,0.441874,0.441874 +0.437669,0.437669,0.437669,0.437669,0.437669,0.437669 +0.433464,0.433464,0.433464,0.433464,0.433464,0.433464 +0.429259,0.429259,0.429259,0.429259,0.429259,0.429259 +0.425054,0.425054,0.425054,0.425054,0.425054,0.425054 +0.420849,0.420849,0.420849,0.420849,0.420849,0.420849 +0.416644,0.416644,0.416644,0.416644,0.416644,0.416644 +0.412439,0.412439,0.412439,0.412439,0.412439,0.412439 +0.408234,0.408234,0.408234,0.408234,0.408234,0.408234 +0.404029,0.404029,0.404029,0.404029,0.404029,0.404029 +0.399824,0.399824,0.399824,0.399824,0.399824,0.399824 +0.395619,0.395619,0.395619,0.395619,0.395619,0.395619 +0.391414,0.391414,0.391414,0.391414,0.391414,0.391414 +0.387209,0.387209,0.387209,0.387209,0.387209,0.387209 +0.383004,0.383004,0.383004,0.383004,0.383004,0.383004 +0.378799,0.378799,0.378799,0.378799,0.378799,0.378799 +0.374594,0.374594,0.374594,0.374594,0.374594,0.374594 +0.370389,0.370389,0.370389,0.370389,0.370389,0.370389 +0.366184,0.366184,0.366184,0.366184,0.366184,0.366184 +0.361979,0.361979,0.361979,0.361979,0.361979,0.361979 +0.357774,0.357774,0.357774,0.357774,0.357774,0.357774 +0.353569,0.353569,0.353569,0.353569,0.353569,0.353569 +0.349364,0.349364,0.349364,0.349364,0.349364,0.349364 +0.345159,0.345159,0.345159,0.345159,0.345159,0.345159 +0.340954,0.340954,0.340954,0.340954,0.340954,0.340954 +0.336749,0.336749,0.336749,0.336749,0.336749,0.336749 +0.332544,0.332544,0.332544,0.332544,0.332544,0.332544 +0.328339,0.328339,0.328339,0.328339,0.328339,0.328339 +0.324134,0.324134,0.324134,0.324134,0.324134,0.324134 +0.319929,0.319929,0.319929,0.319929,0.319929,0.319929 +0.315724,0.315724,0.315724,0.315724,0.315724,0.315724 +0.311519,0.311519,0.311519,0.311519,0.311519,0.311519 +0.307314,0.307314,0.307314,0.307314,0.307314,0.307314 +0.303109,0.303109,0.303109,0.303109,0.303109,0.303109 +0.298904,0.298904,0.298904,0.298904,0.298904,0.298904 +0.294699,0.294699,0.294699,0.294699,0.294699,0.294699 +0.290494,0.290494,0.290494,0.290494,0.290494,0.290494 +0.286289,0.286289,0.286289,0.286289,0.286289,0.286289 +0.282084,0.282084,0.282084,0.282084,0.282084,0.282084 +0.277879,0.277879,0.277879,0.277879,0.277879,0.277879 +0.273674,0.273674,0.273674,0.273674,0.273674,0.273674 +0.269469,0.269469,0.269469,0.269469,0.269469,0.269469 +0.265264,0.265264,0.265264,0.265264,0.265264,0.265264 +0.261059,0.261059,0.261059,0.261059,0.261059,0.261059 +0.256854,0.256854,0.256854,0.256854,0.256854,0.256854 +0.252649,0.252649,0.252649,0.252649,0.252649,0.252649 +0.248444,0.248444,0.248444,0.248444,0.248444,0.248444 +0.244239,0.244239,0.244239,0.244239,0.244239,0.244239 +0.240034,0.240034,0.240034,0.240034,0.240034,0.240034 +0.235829,0.235829,0.235829,0.235829,0.235829,0.235829 +0.231624,0.231624,0.231624,0.231624,0.231624,0.231624 +0.227419,0.227419,0.227419,0.227419,0.227419,0.227419 +0.223214,0.223214,0.223214,0.223214,0.223214,0.223214 +0.219009,0.219009,0.219009,0.219009,0.219009,0.219009 +0.214804,0.214804,0.214804,0.214804,0.214804,0.214804 +0.210599,0.210599,0.210599,0.210599,0.210599,0.210599 +0.206394,0.206394,0.206394,0.206394,0.206394,0.206394 +0.202189,0.202189,0.202189,0.202189,0.202189,0.202189 +0.197984,0.197984,0.197984,0.197984,0.197984,0.197984 +0.193779,0.193779,0.193779,0.193779,0.193779,0.193779 +0.189574,0.189574,0.189574,0.189574,0.189574,0.189574 +0.185369,0.185369,0.185369,0.185369,0.185369,0.185369 +0.181164,0.181164,0.181164,0.181164,0.181164,0.181164 +0.176959,0.176959,0.176959,0.176959,0.176959,0.176959 +0.172754,0.172754,0.172754,0.172754,0.172754,0.172754 +0.168549,0.168549,0.168549,0.168549,0.168549,0.168549 +0.164344,0.164344,0.164344,0.164344,0.164344,0.164344 +0.160139,0.160139,0.160139,0.160139,0.160139,0.160139 +0.155934,0.155934,0.155934,0.155934,0.155934,0.155934 +0.151729,0.151729,0.151729,0.151729,0.151729,0.151729 +0.147524,0.147524,0.147524,0.147524,0.147524,0.147524 +0.143319,0.143319,0.143319,0.143319,0.143319,0.143319 +0.139114,0.139114,0.139114,0.139114,0.139114,0.139114 +0.134909,0.134909,0.134909,0.134909,0.134909,0.134909 +0.130704,0.130704,0.130704,0.130704,0.130704,0.130704 +0.126499,0.126499,0.126499,0.126499,0.126499,0.126499 +0.122294,0.122294,0.122294,0.122294,0.122294,0.122294 +0.118089,0.118089,0.118089,0.118089,0.118089,0.118089 +0.113884,0.113884,0.113884,0.113884,0.113884,0.113884 +0.109679,0.109679,0.109679,0.109679,0.109679,0.109679 +0.105474,0.105474,0.105474,0.105474,0.105474,0.105474 +0.101269,0.101269,0.101269,0.101269,0.101269,0.101269 +0.097064,0.097064,0.097064,0.097064,0.097064,0.097064 +0.092859,0.092859,0.092859,0.092859,0.092859,0.092859 +0.088654,0.088654,0.088654,0.088654,0.088654,0.088654 +0.084449,0.084449,0.084449,0.084449,0.084449,0.084449 +0.080244,0.080244,0.080244,0.080244,0.080244,0.080244 +0.076039,0.076039,0.076039,0.076039,0.076039,0.076039 +0.071834,0.071834,0.071834,0.071834,0.071834,0.071834 +0.067631,0.067631,0.067631,0.067631,0.067631,0.067631 +0.063441,0.063441,0.063441,0.063441,0.063441,0.063441 +0.05928,0.05928,0.05928,0.05928,0.05928,0.05928 +0.055162,0.055162,0.055162,0.055162,0.055162,0.055162 +0.051101,0.051101,0.051101,0.051101,0.051101,0.051101 +0.047112,0.047112,0.047112,0.047112,0.047112,0.047112 +0.043209,0.043209,0.043209,0.043209,0.043209,0.043209 +0.039406,0.039406,0.039406,0.039406,0.039406,0.039406 +0.035719,0.035719,0.035719,0.035719,0.035719,0.035719 +0.032162,0.032162,0.032162,0.032162,0.032162,0.032162 +0.028748,0.028748,0.028748,0.028748,0.028748,0.028748 +0.025494,0.025494,0.025494,0.025494,0.025494,0.025494 +0.022413,0.022413,0.022413,0.022413,0.022413,0.022413 +0.019519,0.019519,0.019519,0.019519,0.019519,0.019519 +0.016828,0.016828,0.016828,0.016828,0.016828,0.016828 +0.014353,0.014353,0.014353,0.014353,0.014353,0.014353 +0.01211,0.01211,0.01211,0.01211,0.01211,0.01211 +0.010109,0.010109,0.010109,0.010109,0.010109,0.010109 +0.008341,0.008341,0.008341,0.008341,0.008341,0.008341 +0.006792,0.006792,0.006792,0.006792,0.006792,0.006792 +0.005448,0.005448,0.005448,0.005448,0.005448,0.005448 +0.004294,0.004294,0.004294,0.004294,0.004294,0.004294 +0.003316,0.003316,0.003316,0.003316,0.003316,0.003316 +0.002499,0.002499,0.002499,0.002499,0.002499,0.002499 +0.001829,0.001829,0.001829,0.001829,0.001829,0.001829 +0.00129,0.00129,0.00129,0.00129,0.00129,0.00129 +0.000869,0.000869,0.000869,0.000869,0.000869,0.000869 +0.000552,0.000552,0.000552,0.000552,0.000552,0.000552 +0.000323,0.000323,0.000323,0.000323,0.000323,0.000323 +0.000168,0.000168,0.000168,0.000168,0.000168,0.000168 +0.000073,0.000073,0.000073,0.000073,0.000073,0.000073 +0.000023,0.000023,0.000023,0.000023,0.000023,0.000023 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000019,-0.000019,-0.000019,-0.000019,-0.000019,-0.000019 +-0.000065,-0.000065,-0.000065,-0.000065,-0.000065,-0.000065 +-0.000155,-0.000155,-0.000155,-0.000155,-0.000155,-0.000155 +-0.000302,-0.000302,-0.000302,-0.000302,-0.000302,-0.000302 +-0.000522,-0.000522,-0.000522,-0.000522,-0.000522,-0.000522 +-0.000829,-0.000829,-0.000829,-0.000829,-0.000829,-0.000829 +-0.001237,-0.001237,-0.001237,-0.001237,-0.001237,-0.001237 +-0.001762,-0.001762,-0.001762,-0.001762,-0.001762,-0.001762 +-0.002417,-0.002417,-0.002417,-0.002417,-0.002417,-0.002417 +-0.003217,-0.003217,-0.003217,-0.003217,-0.003217,-0.003217 +-0.004176,-0.004176,-0.004176,-0.004176,-0.004176,-0.004176 +-0.005309,-0.005309,-0.005309,-0.005309,-0.005309,-0.005309 +-0.006631,-0.006631,-0.006631,-0.006631,-0.006631,-0.006631 +-0.008156,-0.008156,-0.008156,-0.008156,-0.008156,-0.008156 +-0.009899,-0.009899,-0.009899,-0.009899,-0.009899,-0.009899 +-0.011873,-0.011873,-0.011873,-0.011873,-0.011873,-0.011873 +-0.01409,-0.01409,-0.01409,-0.01409,-0.01409,-0.01409 +-0.016539,-0.016539,-0.016539,-0.016539,-0.016539,-0.016539 +-0.019207,-0.019207,-0.019207,-0.019207,-0.019207,-0.019207 +-0.022078,-0.022078,-0.022078,-0.022078,-0.022078,-0.022078 +-0.025139,-0.025139,-0.025139,-0.025139,-0.025139,-0.025139 +-0.028375,-0.028375,-0.028375,-0.028375,-0.028375,-0.028375 +-0.031771,-0.031771,-0.031771,-0.031771,-0.031771,-0.031771 +-0.035313,-0.035313,-0.035313,-0.035313,-0.035313,-0.035313 +-0.038986,-0.038986,-0.038986,-0.038986,-0.038986,-0.038986 +-0.042776,-0.042776,-0.042776,-0.042776,-0.042776,-0.042776 +-0.046669,-0.046669,-0.046669,-0.046669,-0.046669,-0.046669 +-0.050649,-0.050649,-0.050649,-0.050649,-0.050649,-0.050649 +-0.054703,-0.054703,-0.054703,-0.054703,-0.054703,-0.054703 +-0.058816,-0.058816,-0.058816,-0.058816,-0.058816,-0.058816 +-0.062973,-0.062973,-0.062973,-0.062973,-0.062973,-0.062973 +-0.067159,-0.067159,-0.067159,-0.067159,-0.067159,-0.067159 +-0.071361,-0.071361,-0.071361,-0.071361,-0.071361,-0.071361 +-0.075566,-0.075566,-0.075566,-0.075566,-0.075566,-0.075566 +-0.079771,-0.079771,-0.079771,-0.079771,-0.079771,-0.079771 +-0.083976,-0.083976,-0.083976,-0.083976,-0.083976,-0.083976 +-0.088181,-0.088181,-0.088181,-0.088181,-0.088181,-0.088181 +-0.092386,-0.092386,-0.092386,-0.092386,-0.092386,-0.092386 +-0.096591,-0.096591,-0.096591,-0.096591,-0.096591,-0.096591 +-0.100796,-0.100796,-0.100796,-0.100796,-0.100796,-0.100796 +-0.105001,-0.105001,-0.105001,-0.105001,-0.105001,-0.105001 +-0.109206,-0.109206,-0.109206,-0.109206,-0.109206,-0.109206 +-0.113411,-0.113411,-0.113411,-0.113411,-0.113411,-0.113411 +-0.117616,-0.117616,-0.117616,-0.117616,-0.117616,-0.117616 +-0.121821,-0.121821,-0.121821,-0.121821,-0.121821,-0.121821 +-0.126026,-0.126026,-0.126026,-0.126026,-0.126026,-0.126026 +-0.130231,-0.130231,-0.130231,-0.130231,-0.130231,-0.130231 +-0.134436,-0.134436,-0.134436,-0.134436,-0.134436,-0.134436 +-0.138641,-0.138641,-0.138641,-0.138641,-0.138641,-0.138641 +-0.142846,-0.142846,-0.142846,-0.142846,-0.142846,-0.142846 +-0.147051,-0.147051,-0.147051,-0.147051,-0.147051,-0.147051 +-0.151256,-0.151256,-0.151256,-0.151256,-0.151256,-0.151256 +-0.155461,-0.155461,-0.155461,-0.155461,-0.155461,-0.155461 +-0.159666,-0.159666,-0.159666,-0.159666,-0.159666,-0.159666 +-0.163871,-0.163871,-0.163871,-0.163871,-0.163871,-0.163871 +-0.168076,-0.168076,-0.168076,-0.168076,-0.168076,-0.168076 +-0.172281,-0.172281,-0.172281,-0.172281,-0.172281,-0.172281 +-0.176486,-0.176486,-0.176486,-0.176486,-0.176486,-0.176486 +-0.180691,-0.180691,-0.180691,-0.180691,-0.180691,-0.180691 +-0.184896,-0.184896,-0.184896,-0.184896,-0.184896,-0.184896 +-0.189101,-0.189101,-0.189101,-0.189101,-0.189101,-0.189101 +-0.193306,-0.193306,-0.193306,-0.193306,-0.193306,-0.193306 +-0.197511,-0.197511,-0.197511,-0.197511,-0.197511,-0.197511 +-0.201716,-0.201716,-0.201716,-0.201716,-0.201716,-0.201716 +-0.205921,-0.205921,-0.205921,-0.205921,-0.205921,-0.205921 +-0.210126,-0.210126,-0.210126,-0.210126,-0.210126,-0.210126 +-0.214331,-0.214331,-0.214331,-0.214331,-0.214331,-0.214331 +-0.218536,-0.218536,-0.218536,-0.218536,-0.218536,-0.218536 +-0.222741,-0.222741,-0.222741,-0.222741,-0.222741,-0.222741 +-0.226946,-0.226946,-0.226946,-0.226946,-0.226946,-0.226946 +-0.231151,-0.231151,-0.231151,-0.231151,-0.231151,-0.231151 +-0.235356,-0.235356,-0.235356,-0.235356,-0.235356,-0.235356 +-0.239561,-0.239561,-0.239561,-0.239561,-0.239561,-0.239561 +-0.243766,-0.243766,-0.243766,-0.243766,-0.243766,-0.243766 +-0.247971,-0.247971,-0.247971,-0.247971,-0.247971,-0.247971 +-0.252176,-0.252176,-0.252176,-0.252176,-0.252176,-0.252176 +-0.256381,-0.256381,-0.256381,-0.256381,-0.256381,-0.256381 +-0.260586,-0.260586,-0.260586,-0.260586,-0.260586,-0.260586 +-0.264791,-0.264791,-0.264791,-0.264791,-0.264791,-0.264791 +-0.268996,-0.268996,-0.268996,-0.268996,-0.268996,-0.268996 +-0.273201,-0.273201,-0.273201,-0.273201,-0.273201,-0.273201 +-0.277406,-0.277406,-0.277406,-0.277406,-0.277406,-0.277406 +-0.281611,-0.281611,-0.281611,-0.281611,-0.281611,-0.281611 +-0.285816,-0.285816,-0.285816,-0.285816,-0.285816,-0.285816 +-0.290021,-0.290021,-0.290021,-0.290021,-0.290021,-0.290021 +-0.294226,-0.294226,-0.294226,-0.294226,-0.294226,-0.294226 +-0.298431,-0.298431,-0.298431,-0.298431,-0.298431,-0.298431 +-0.302636,-0.302636,-0.302636,-0.302636,-0.302636,-0.302636 +-0.306841,-0.306841,-0.306841,-0.306841,-0.306841,-0.306841 +-0.311046,-0.311046,-0.311046,-0.311046,-0.311046,-0.311046 +-0.315251,-0.315251,-0.315251,-0.315251,-0.315251,-0.315251 +-0.319456,-0.319456,-0.319456,-0.319456,-0.319456,-0.319456 +-0.323661,-0.323661,-0.323661,-0.323661,-0.323661,-0.323661 +-0.327866,-0.327866,-0.327866,-0.327866,-0.327866,-0.327866 +-0.332071,-0.332071,-0.332071,-0.332071,-0.332071,-0.332071 +-0.336276,-0.336276,-0.336276,-0.336276,-0.336276,-0.336276 +-0.340481,-0.340481,-0.340481,-0.340481,-0.340481,-0.340481 +-0.344686,-0.344686,-0.344686,-0.344686,-0.344686,-0.344686 +-0.348891,-0.348891,-0.348891,-0.348891,-0.348891,-0.348891 +-0.353096,-0.353096,-0.353096,-0.353096,-0.353096,-0.353096 +-0.357301,-0.357301,-0.357301,-0.357301,-0.357301,-0.357301 +-0.361506,-0.361506,-0.361506,-0.361506,-0.361506,-0.361506 +-0.365711,-0.365711,-0.365711,-0.365711,-0.365711,-0.365711 +-0.369916,-0.369916,-0.369916,-0.369916,-0.369916,-0.369916 +-0.374121,-0.374121,-0.374121,-0.374121,-0.374121,-0.374121 +-0.378326,-0.378326,-0.378326,-0.378326,-0.378326,-0.378326 +-0.382531,-0.382531,-0.382531,-0.382531,-0.382531,-0.382531 +-0.386736,-0.386736,-0.386736,-0.386736,-0.386736,-0.386736 +-0.390941,-0.390941,-0.390941,-0.390941,-0.390941,-0.390941 +-0.395146,-0.395146,-0.395146,-0.395146,-0.395146,-0.395146 +-0.399351,-0.399351,-0.399351,-0.399351,-0.399351,-0.399351 +-0.403556,-0.403556,-0.403556,-0.403556,-0.403556,-0.403556 +-0.407761,-0.407761,-0.407761,-0.407761,-0.407761,-0.407761 +-0.411966,-0.411966,-0.411966,-0.411966,-0.411966,-0.411966 +-0.416171,-0.416171,-0.416171,-0.416171,-0.416171,-0.416171 +-0.420376,-0.420376,-0.420376,-0.420376,-0.420376,-0.420376 +-0.424581,-0.424581,-0.424581,-0.424581,-0.424581,-0.424581 +-0.428786,-0.428786,-0.428786,-0.428786,-0.428786,-0.428786 +-0.432991,-0.432991,-0.432991,-0.432991,-0.432991,-0.432991 +-0.437196,-0.437196,-0.437196,-0.437196,-0.437196,-0.437196 +-0.441401,-0.441401,-0.441401,-0.441401,-0.441401,-0.441401 +-0.445606,-0.445606,-0.445606,-0.445606,-0.445606,-0.445606 +-0.449811,-0.449811,-0.449811,-0.449811,-0.449811,-0.449811 +-0.454016,-0.454016,-0.454016,-0.454016,-0.454016,-0.454016 +-0.458221,-0.458221,-0.458221,-0.458221,-0.458221,-0.458221 +-0.462426,-0.462426,-0.462426,-0.462426,-0.462426,-0.462426 +-0.466631,-0.466631,-0.466631,-0.466631,-0.466631,-0.466631 +-0.470836,-0.470836,-0.470836,-0.470836,-0.470836,-0.470836 +-0.475041,-0.475041,-0.475041,-0.475041,-0.475041,-0.475041 +-0.479246,-0.479246,-0.479246,-0.479246,-0.479246,-0.479246 +-0.483451,-0.483451,-0.483451,-0.483451,-0.483451,-0.483451 +-0.487656,-0.487656,-0.487656,-0.487656,-0.487656,-0.487656 +-0.491861,-0.491861,-0.491861,-0.491861,-0.491861,-0.491861 +-0.496066,-0.496066,-0.496066,-0.496066,-0.496066,-0.496066 +-0.500271,-0.500271,-0.500271,-0.500271,-0.500271,-0.500271 +-0.504476,-0.504476,-0.504476,-0.504476,-0.504476,-0.504476 +-0.508681,-0.508681,-0.508681,-0.508681,-0.508681,-0.508681 +-0.512886,-0.512886,-0.512886,-0.512886,-0.512886,-0.512886 +-0.517091,-0.517091,-0.517091,-0.517091,-0.517091,-0.517091 +-0.521296,-0.521296,-0.521296,-0.521296,-0.521296,-0.521296 +-0.525501,-0.525501,-0.525501,-0.525501,-0.525501,-0.525501 +-0.529706,-0.529706,-0.529706,-0.529706,-0.529706,-0.529706 +-0.533911,-0.533911,-0.533911,-0.533911,-0.533911,-0.533911 +-0.538116,-0.538116,-0.538116,-0.538116,-0.538116,-0.538116 +-0.542321,-0.542321,-0.542321,-0.542321,-0.542321,-0.542321 +-0.546526,-0.546526,-0.546526,-0.546526,-0.546526,-0.546526 +-0.550731,-0.550731,-0.550731,-0.550731,-0.550731,-0.550731 +-0.554936,-0.554936,-0.554936,-0.554936,-0.554936,-0.554936 +-0.559141,-0.559141,-0.559141,-0.559141,-0.559141,-0.559141 +-0.563346,-0.563346,-0.563346,-0.563346,-0.563346,-0.563346 +-0.567551,-0.567551,-0.567551,-0.567551,-0.567551,-0.567551 +-0.571756,-0.571756,-0.571756,-0.571756,-0.571756,-0.571756 +-0.575961,-0.575961,-0.575961,-0.575961,-0.575961,-0.575961 +-0.580166,-0.580166,-0.580166,-0.580166,-0.580166,-0.580166 +-0.584371,-0.584371,-0.584371,-0.584371,-0.584371,-0.584371 +-0.588576,-0.588576,-0.588576,-0.588576,-0.588576,-0.588576 +-0.592781,-0.592781,-0.592781,-0.592781,-0.592781,-0.592781 +-0.596986,-0.596986,-0.596986,-0.596986,-0.596986,-0.596986 +-0.601191,-0.601191,-0.601191,-0.601191,-0.601191,-0.601191 +-0.605396,-0.605396,-0.605396,-0.605396,-0.605396,-0.605396 +-0.609601,-0.609601,-0.609601,-0.609601,-0.609601,-0.609601 +-0.613806,-0.613806,-0.613806,-0.613806,-0.613806,-0.613806 +-0.618011,-0.618011,-0.618011,-0.618011,-0.618011,-0.618011 +-0.622216,-0.622216,-0.622216,-0.622216,-0.622216,-0.622216 +-0.626421,-0.626421,-0.626421,-0.626421,-0.626421,-0.626421 +-0.630626,-0.630626,-0.630626,-0.630626,-0.630626,-0.630626 +-0.634831,-0.634831,-0.634831,-0.634831,-0.634831,-0.634831 +-0.639036,-0.639036,-0.639036,-0.639036,-0.639036,-0.639036 +-0.643241,-0.643241,-0.643241,-0.643241,-0.643241,-0.643241 +-0.647446,-0.647446,-0.647446,-0.647446,-0.647446,-0.647446 +-0.651651,-0.651651,-0.651651,-0.651651,-0.651651,-0.651651 +-0.655856,-0.655856,-0.655856,-0.655856,-0.655856,-0.655856 +-0.660061,-0.660061,-0.660061,-0.660061,-0.660061,-0.660061 +-0.664266,-0.664266,-0.664266,-0.664266,-0.664266,-0.664266 +-0.668471,-0.668471,-0.668471,-0.668471,-0.668471,-0.668471 +-0.672676,-0.672676,-0.672676,-0.672676,-0.672676,-0.672676 +-0.676881,-0.676881,-0.676881,-0.676881,-0.676881,-0.676881 +-0.681086,-0.681086,-0.681086,-0.681086,-0.681086,-0.681086 +-0.685291,-0.685291,-0.685291,-0.685291,-0.685291,-0.685291 +-0.689496,-0.689496,-0.689496,-0.689496,-0.689496,-0.689496 +-0.693701,-0.693701,-0.693701,-0.693701,-0.693701,-0.693701 +-0.697906,-0.697906,-0.697906,-0.697906,-0.697906,-0.697906 +-0.702111,-0.702111,-0.702111,-0.702111,-0.702111,-0.702111 +-0.706316,-0.706316,-0.706316,-0.706316,-0.706316,-0.706316 +-0.710521,-0.710521,-0.710521,-0.710521,-0.710521,-0.710521 +-0.714726,-0.714726,-0.714726,-0.714726,-0.714726,-0.714726 +-0.718931,-0.718931,-0.718931,-0.718931,-0.718931,-0.718931 +-0.723136,-0.723136,-0.723136,-0.723136,-0.723136,-0.723136 +-0.727341,-0.727341,-0.727341,-0.727341,-0.727341,-0.727341 +-0.731546,-0.731546,-0.731546,-0.731546,-0.731546,-0.731546 +-0.735751,-0.735751,-0.735751,-0.735751,-0.735751,-0.735751 +-0.739956,-0.739956,-0.739956,-0.739956,-0.739956,-0.739956 +-0.744161,-0.744161,-0.744161,-0.744161,-0.744161,-0.744161 +-0.748366,-0.748366,-0.748366,-0.748366,-0.748366,-0.748366 +-0.752571,-0.752571,-0.752571,-0.752571,-0.752571,-0.752571 +-0.756776,-0.756776,-0.756776,-0.756776,-0.756776,-0.756776 +-0.760981,-0.760981,-0.760981,-0.760981,-0.760981,-0.760981 +-0.765186,-0.765186,-0.765186,-0.765186,-0.765186,-0.765186 +-0.769391,-0.769391,-0.769391,-0.769391,-0.769391,-0.769391 +-0.773596,-0.773596,-0.773596,-0.773596,-0.773596,-0.773596 +-0.777801,-0.777801,-0.777801,-0.777801,-0.777801,-0.777801 +-0.782006,-0.782006,-0.782006,-0.782006,-0.782006,-0.782006 +-0.786211,-0.786211,-0.786211,-0.786211,-0.786211,-0.786211 +-0.790416,-0.790416,-0.790416,-0.790416,-0.790416,-0.790416 +-0.794621,-0.794621,-0.794621,-0.794621,-0.794621,-0.794621 +-0.798826,-0.798826,-0.798826,-0.798826,-0.798826,-0.798826 +-0.803031,-0.803031,-0.803031,-0.803031,-0.803031,-0.803031 +-0.807236,-0.807236,-0.807236,-0.807236,-0.807236,-0.807236 +-0.811441,-0.811441,-0.811441,-0.811441,-0.811441,-0.811441 +-0.815646,-0.815646,-0.815646,-0.815646,-0.815646,-0.815646 +-0.819851,-0.819851,-0.819851,-0.819851,-0.819851,-0.819851 +-0.824056,-0.824056,-0.824056,-0.824056,-0.824056,-0.824056 +-0.828261,-0.828261,-0.828261,-0.828261,-0.828261,-0.828261 +-0.832466,-0.832466,-0.832466,-0.832466,-0.832466,-0.832466 +-0.836671,-0.836671,-0.836671,-0.836671,-0.836671,-0.836671 +-0.840876,-0.840876,-0.840876,-0.840876,-0.840876,-0.840876 +-0.845081,-0.845081,-0.845081,-0.845081,-0.845081,-0.845081 +-0.849286,-0.849286,-0.849286,-0.849286,-0.849286,-0.849286 +-0.853491,-0.853491,-0.853491,-0.853491,-0.853491,-0.853491 +-0.857696,-0.857696,-0.857696,-0.857696,-0.857696,-0.857696 +-0.861901,-0.861901,-0.861901,-0.861901,-0.861901,-0.861901 +-0.866106,-0.866106,-0.866106,-0.866106,-0.866106,-0.866106 +-0.870311,-0.870311,-0.870311,-0.870311,-0.870311,-0.870311 +-0.874516,-0.874516,-0.874516,-0.874516,-0.874516,-0.874516 +-0.878721,-0.878721,-0.878721,-0.878721,-0.878721,-0.878721 +-0.882926,-0.882926,-0.882926,-0.882926,-0.882926,-0.882926 +-0.887131,-0.887131,-0.887131,-0.887131,-0.887131,-0.887131 +-0.891336,-0.891336,-0.891336,-0.891336,-0.891336,-0.891336 +-0.895541,-0.895541,-0.895541,-0.895541,-0.895541,-0.895541 +-0.899746,-0.899746,-0.899746,-0.899746,-0.899746,-0.899746 +-0.903951,-0.903951,-0.903951,-0.903951,-0.903951,-0.903951 +-0.908156,-0.908156,-0.908156,-0.908156,-0.908156,-0.908156 +-0.912361,-0.912361,-0.912361,-0.912361,-0.912361,-0.912361 +-0.916566,-0.916566,-0.916566,-0.916566,-0.916566,-0.916566 +-0.920771,-0.920771,-0.920771,-0.920771,-0.920771,-0.920771 +-0.924976,-0.924976,-0.924976,-0.924976,-0.924976,-0.924976 +-0.929181,-0.929181,-0.929181,-0.929181,-0.929181,-0.929181 +-0.933386,-0.933386,-0.933386,-0.933386,-0.933386,-0.933386 +-0.937591,-0.937591,-0.937591,-0.937591,-0.937591,-0.937591 +-0.941796,-0.941796,-0.941796,-0.941796,-0.941796,-0.941796 +-0.946001,-0.946001,-0.946001,-0.946001,-0.946001,-0.946001 +-0.950206,-0.950206,-0.950206,-0.950206,-0.950206,-0.950206 +-0.954411,-0.954411,-0.954411,-0.954411,-0.954411,-0.954411 +-0.958616,-0.958616,-0.958616,-0.958616,-0.958616,-0.958616 +-0.962821,-0.962821,-0.962821,-0.962821,-0.962821,-0.962821 +-0.967026,-0.967026,-0.967026,-0.967026,-0.967026,-0.967026 +-0.971231,-0.971231,-0.971231,-0.971231,-0.971231,-0.971231 +-0.975436,-0.975436,-0.975436,-0.975436,-0.975436,-0.975436 +-0.979641,-0.979641,-0.979641,-0.979641,-0.979641,-0.979641 +-0.983846,-0.983846,-0.983846,-0.983846,-0.983846,-0.983846 +-0.988051,-0.988051,-0.988051,-0.988051,-0.988051,-0.988051 +-0.992256,-0.992256,-0.992256,-0.992256,-0.992256,-0.992256 +-0.996461,-0.996461,-0.996461,-0.996461,-0.996461,-0.996461 +-1.000666,-1.000666,-1.000666,-1.000666,-1.000666,-1.000666 +-1.004871,-1.004871,-1.004871,-1.004871,-1.004871,-1.004871 +-1.009076,-1.009076,-1.009076,-1.009076,-1.009076,-1.009076 +-1.013281,-1.013281,-1.013281,-1.013281,-1.013281,-1.013281 +-1.017486,-1.017486,-1.017486,-1.017486,-1.017486,-1.017486 +-1.021691,-1.021691,-1.021691,-1.021691,-1.021691,-1.021691 +-1.025896,-1.025896,-1.025896,-1.025896,-1.025896,-1.025896 +-1.030101,-1.030101,-1.030101,-1.030101,-1.030101,-1.030101 +-1.034306,-1.034306,-1.034306,-1.034306,-1.034306,-1.034306 +-1.038511,-1.038511,-1.038511,-1.038511,-1.038511,-1.038511 +-1.042716,-1.042716,-1.042716,-1.042716,-1.042716,-1.042716 +-1.046921,-1.046921,-1.046921,-1.046921,-1.046921,-1.046921 +-1.051126,-1.051126,-1.051126,-1.051126,-1.051126,-1.051126 +-1.055331,-1.055331,-1.055331,-1.055331,-1.055331,-1.055331 +-1.059536,-1.059536,-1.059536,-1.059536,-1.059536,-1.059536 +-1.063741,-1.063741,-1.063741,-1.063741,-1.063741,-1.063741 +-1.067946,-1.067946,-1.067946,-1.067946,-1.067946,-1.067946 +-1.072151,-1.072151,-1.072151,-1.072151,-1.072151,-1.072151 +-1.076356,-1.076356,-1.076356,-1.076356,-1.076356,-1.076356 +-1.080561,-1.080561,-1.080561,-1.080561,-1.080561,-1.080561 +-1.084766,-1.084766,-1.084766,-1.084766,-1.084766,-1.084766 +-1.088971,-1.088971,-1.088971,-1.088971,-1.088971,-1.088971 +-1.093176,-1.093176,-1.093176,-1.093176,-1.093176,-1.093176 +-1.097381,-1.097381,-1.097381,-1.097381,-1.097381,-1.097381 +-1.101586,-1.101586,-1.101586,-1.101586,-1.101586,-1.101586 +-1.105791,-1.105791,-1.105791,-1.105791,-1.105791,-1.105791 +-1.109996,-1.109996,-1.109996,-1.109996,-1.109996,-1.109996 +-1.114201,-1.114201,-1.114201,-1.114201,-1.114201,-1.114201 +-1.118406,-1.118406,-1.118406,-1.118406,-1.118406,-1.118406 +-1.122611,-1.122611,-1.122611,-1.122611,-1.122611,-1.122611 +-1.126816,-1.126816,-1.126816,-1.126816,-1.126816,-1.126816 +-1.131021,-1.131021,-1.131021,-1.131021,-1.131021,-1.131021 +-1.135226,-1.135226,-1.135226,-1.135226,-1.135226,-1.135226 +-1.139431,-1.139431,-1.139431,-1.139431,-1.139431,-1.139431 +-1.143636,-1.143636,-1.143636,-1.143636,-1.143636,-1.143636 +-1.147841,-1.147841,-1.147841,-1.147841,-1.147841,-1.147841 +-1.152046,-1.152046,-1.152046,-1.152046,-1.152046,-1.152046 +-1.156251,-1.156251,-1.156251,-1.156251,-1.156251,-1.156251 +-1.160456,-1.160456,-1.160456,-1.160456,-1.160456,-1.160456 +-1.164661,-1.164661,-1.164661,-1.164661,-1.164661,-1.164661 +-1.168866,-1.168866,-1.168866,-1.168866,-1.168866,-1.168866 +-1.173071,-1.173071,-1.173071,-1.173071,-1.173071,-1.173071 +-1.177276,-1.177276,-1.177276,-1.177276,-1.177276,-1.177276 +-1.181481,-1.181481,-1.181481,-1.181481,-1.181481,-1.181481 +-1.185686,-1.185686,-1.185686,-1.185686,-1.185686,-1.185686 +-1.189891,-1.189891,-1.189891,-1.189891,-1.189891,-1.189891 +-1.194096,-1.194096,-1.194096,-1.194096,-1.194096,-1.194096 +-1.198301,-1.198301,-1.198301,-1.198301,-1.198301,-1.198301 +-1.202506,-1.202506,-1.202506,-1.202506,-1.202506,-1.202506 +-1.206711,-1.206711,-1.206711,-1.206711,-1.206711,-1.206711 +-1.210916,-1.210916,-1.210916,-1.210916,-1.210916,-1.210916 +-1.215121,-1.215121,-1.215121,-1.215121,-1.215121,-1.215121 +-1.219326,-1.219326,-1.219326,-1.219326,-1.219326,-1.219326 +-1.223531,-1.223531,-1.223531,-1.223531,-1.223531,-1.223531 +-1.227736,-1.227736,-1.227736,-1.227736,-1.227736,-1.227736 +-1.231941,-1.231941,-1.231941,-1.231941,-1.231941,-1.231941 +-1.236146,-1.236146,-1.236146,-1.236146,-1.236146,-1.236146 +-1.240351,-1.240351,-1.240351,-1.240351,-1.240351,-1.240351 +-1.244556,-1.244556,-1.244556,-1.244556,-1.244556,-1.244556 +-1.248761,-1.248761,-1.248761,-1.248761,-1.248761,-1.248761 +-1.252966,-1.252966,-1.252966,-1.252966,-1.252966,-1.252966 +-1.257171,-1.257171,-1.257171,-1.257171,-1.257171,-1.257171 +-1.261376,-1.261376,-1.261376,-1.261376,-1.261376,-1.261376 +-1.265581,-1.265581,-1.265581,-1.265581,-1.265581,-1.265581 +-1.269786,-1.269786,-1.269786,-1.269786,-1.269786,-1.269786 +-1.273991,-1.273991,-1.273991,-1.273991,-1.273991,-1.273991 +-1.278196,-1.278196,-1.278196,-1.278196,-1.278196,-1.278196 +-1.282401,-1.282401,-1.282401,-1.282401,-1.282401,-1.282401 +-1.286606,-1.286606,-1.286606,-1.286606,-1.286606,-1.286606 +-1.290811,-1.290811,-1.290811,-1.290811,-1.290811,-1.290811 +-1.295016,-1.295016,-1.295016,-1.295016,-1.295016,-1.295016 +-1.299221,-1.299221,-1.299221,-1.299221,-1.299221,-1.299221 +-1.303426,-1.303426,-1.303426,-1.303426,-1.303426,-1.303426 +-1.307631,-1.307631,-1.307631,-1.307631,-1.307631,-1.307631 +-1.311836,-1.311836,-1.311836,-1.311836,-1.311836,-1.311836 +-1.316041,-1.316041,-1.316041,-1.316041,-1.316041,-1.316041 +-1.320246,-1.320246,-1.320246,-1.320246,-1.320246,-1.320246 +-1.324451,-1.324451,-1.324451,-1.324451,-1.324451,-1.324451 +-1.328656,-1.328656,-1.328656,-1.328656,-1.328656,-1.328656 +-1.332861,-1.332861,-1.332861,-1.332861,-1.332861,-1.332861 +-1.337066,-1.337066,-1.337066,-1.337066,-1.337066,-1.337066 +-1.341271,-1.341271,-1.341271,-1.341271,-1.341271,-1.341271 +-1.345476,-1.345476,-1.345476,-1.345476,-1.345476,-1.345476 +-1.349681,-1.349681,-1.349681,-1.349681,-1.349681,-1.349681 +-1.353886,-1.353886,-1.353886,-1.353886,-1.353886,-1.353886 +-1.358091,-1.358091,-1.358091,-1.358091,-1.358091,-1.358091 +-1.362296,-1.362296,-1.362296,-1.362296,-1.362296,-1.362296 +-1.366501,-1.366501,-1.366501,-1.366501,-1.366501,-1.366501 +-1.370706,-1.370706,-1.370706,-1.370706,-1.370706,-1.370706 +-1.374911,-1.374911,-1.374911,-1.374911,-1.374911,-1.374911 +-1.379116,-1.379116,-1.379116,-1.379116,-1.379116,-1.379116 +-1.383321,-1.383321,-1.383321,-1.383321,-1.383321,-1.383321 +-1.387526,-1.387526,-1.387526,-1.387526,-1.387526,-1.387526 +-1.391731,-1.391731,-1.391731,-1.391731,-1.391731,-1.391731 +-1.395936,-1.395936,-1.395936,-1.395936,-1.395936,-1.395936 +-1.400141,-1.400141,-1.400141,-1.400141,-1.400141,-1.400141 +-1.404346,-1.404346,-1.404346,-1.404346,-1.404346,-1.404346 +-1.408551,-1.408551,-1.408551,-1.408551,-1.408551,-1.408551 +-1.412756,-1.412756,-1.412756,-1.412756,-1.412756,-1.412756 +-1.416961,-1.416961,-1.416961,-1.416961,-1.416961,-1.416961 +-1.421166,-1.421166,-1.421166,-1.421166,-1.421166,-1.421166 +-1.425371,-1.425371,-1.425371,-1.425371,-1.425371,-1.425371 +-1.429576,-1.429576,-1.429576,-1.429576,-1.429576,-1.429576 +-1.433781,-1.433781,-1.433781,-1.433781,-1.433781,-1.433781 +-1.437986,-1.437986,-1.437986,-1.437986,-1.437986,-1.437986 +-1.442191,-1.442191,-1.442191,-1.442191,-1.442191,-1.442191 +-1.446396,-1.446396,-1.446396,-1.446396,-1.446396,-1.446396 +-1.450601,-1.450601,-1.450601,-1.450601,-1.450601,-1.450601 +-1.454806,-1.454806,-1.454806,-1.454806,-1.454806,-1.454806 +-1.459011,-1.459011,-1.459011,-1.459011,-1.459011,-1.459011 +-1.463216,-1.463216,-1.463216,-1.463216,-1.463216,-1.463216 +-1.467421,-1.467421,-1.467421,-1.467421,-1.467421,-1.467421 +-1.471626,-1.471626,-1.471626,-1.471626,-1.471626,-1.471626 +-1.475831,-1.475831,-1.475831,-1.475831,-1.475831,-1.475831 +-1.480036,-1.480036,-1.480036,-1.480036,-1.480036,-1.480036 +-1.484241,-1.484241,-1.484241,-1.484241,-1.484241,-1.484241 +-1.488446,-1.488446,-1.488446,-1.488446,-1.488446,-1.488446 +-1.492651,-1.492651,-1.492651,-1.492651,-1.492651,-1.492651 +-1.496856,-1.496856,-1.496856,-1.496856,-1.496856,-1.496856 +-1.501061,-1.501061,-1.501061,-1.501061,-1.501061,-1.501061 +-1.505266,-1.505266,-1.505266,-1.505266,-1.505266,-1.505266 +-1.509471,-1.509471,-1.509471,-1.509471,-1.509471,-1.509471 +-1.513676,-1.513676,-1.513676,-1.513676,-1.513676,-1.513676 +-1.517881,-1.517881,-1.517881,-1.517881,-1.517881,-1.517881 +-1.522086,-1.522086,-1.522086,-1.522086,-1.522086,-1.522086 +-1.526291,-1.526291,-1.526291,-1.526291,-1.526291,-1.526291 +-1.530496,-1.530496,-1.530496,-1.530496,-1.530496,-1.530496 +-1.534701,-1.534701,-1.534701,-1.534701,-1.534701,-1.534701 +-1.538906,-1.538906,-1.538906,-1.538906,-1.538906,-1.538906 +-1.543111,-1.543111,-1.543111,-1.543111,-1.543111,-1.543111 +-1.547316,-1.547316,-1.547316,-1.547316,-1.547316,-1.547316 +-1.551521,-1.551521,-1.551521,-1.551521,-1.551521,-1.551521 +-1.555726,-1.555726,-1.555726,-1.555726,-1.555726,-1.555726 +-1.559931,-1.559931,-1.559931,-1.559931,-1.559931,-1.559931 +-1.564136,-1.564136,-1.564136,-1.564136,-1.564136,-1.564136 +-1.568341,-1.568341,-1.568341,-1.568341,-1.568341,-1.568341 +-1.572546,-1.572546,-1.572546,-1.572546,-1.572546,-1.572546 +-1.576751,-1.576751,-1.576751,-1.576751,-1.576751,-1.576751 +-1.580956,-1.580956,-1.580956,-1.580956,-1.580956,-1.580956 +-1.585161,-1.585161,-1.585161,-1.585161,-1.585161,-1.585161 +-1.589366,-1.589366,-1.589366,-1.589366,-1.589366,-1.589366 +-1.593571,-1.593571,-1.593571,-1.593571,-1.593571,-1.593571 +-1.597776,-1.597776,-1.597776,-1.597776,-1.597776,-1.597776 +-1.601981,-1.601981,-1.601981,-1.601981,-1.601981,-1.601981 +-1.606186,-1.606186,-1.606186,-1.606186,-1.606186,-1.606186 +-1.610391,-1.610391,-1.610391,-1.610391,-1.610391,-1.610391 +-1.614596,-1.614596,-1.614596,-1.614596,-1.614596,-1.614596 +-1.618801,-1.618801,-1.618801,-1.618801,-1.618801,-1.618801 +-1.623006,-1.623006,-1.623006,-1.623006,-1.623006,-1.623006 +-1.627211,-1.627211,-1.627211,-1.627211,-1.627211,-1.627211 +-1.631416,-1.631416,-1.631416,-1.631416,-1.631416,-1.631416 +-1.635621,-1.635621,-1.635621,-1.635621,-1.635621,-1.635621 +-1.639826,-1.639826,-1.639826,-1.639826,-1.639826,-1.639826 +-1.644031,-1.644031,-1.644031,-1.644031,-1.644031,-1.644031 +-1.648236,-1.648236,-1.648236,-1.648236,-1.648236,-1.648236 +-1.652441,-1.652441,-1.652441,-1.652441,-1.652441,-1.652441 +-1.656646,-1.656646,-1.656646,-1.656646,-1.656646,-1.656646 +-1.660851,-1.660851,-1.660851,-1.660851,-1.660851,-1.660851 +-1.665056,-1.665056,-1.665056,-1.665056,-1.665056,-1.665056 +-1.669261,-1.669261,-1.669261,-1.669261,-1.669261,-1.669261 +-1.673466,-1.673466,-1.673466,-1.673466,-1.673466,-1.673466 +-1.677669,-1.677669,-1.677669,-1.677669,-1.677669,-1.677669 +-1.681859,-1.681859,-1.681859,-1.681859,-1.681859,-1.681859 +-1.68602,-1.68602,-1.68602,-1.68602,-1.68602,-1.68602 +-1.690138,-1.690138,-1.690138,-1.690138,-1.690138,-1.690138 +-1.694199,-1.694199,-1.694199,-1.694199,-1.694199,-1.694199 +-1.698188,-1.698188,-1.698188,-1.698188,-1.698188,-1.698188 +-1.702091,-1.702091,-1.702091,-1.702091,-1.702091,-1.702091 +-1.705894,-1.705894,-1.705894,-1.705894,-1.705894,-1.705894 +-1.709581,-1.709581,-1.709581,-1.709581,-1.709581,-1.709581 +-1.713138,-1.713138,-1.713138,-1.713138,-1.713138,-1.713138 +-1.716552,-1.716552,-1.716552,-1.716552,-1.716552,-1.716552 +-1.719806,-1.719806,-1.719806,-1.719806,-1.719806,-1.719806 +-1.722887,-1.722887,-1.722887,-1.722887,-1.722887,-1.722887 +-1.725781,-1.725781,-1.725781,-1.725781,-1.725781,-1.725781 +-1.728472,-1.728472,-1.728472,-1.728472,-1.728472,-1.728472 +-1.730947,-1.730947,-1.730947,-1.730947,-1.730947,-1.730947 +-1.73319,-1.73319,-1.73319,-1.73319,-1.73319,-1.73319 +-1.735191,-1.735191,-1.735191,-1.735191,-1.735191,-1.735191 +-1.736959,-1.736959,-1.736959,-1.736959,-1.736959,-1.736959 +-1.738508,-1.738508,-1.738508,-1.738508,-1.738508,-1.738508 +-1.739852,-1.739852,-1.739852,-1.739852,-1.739852,-1.739852 +-1.741006,-1.741006,-1.741006,-1.741006,-1.741006,-1.741006 +-1.741984,-1.741984,-1.741984,-1.741984,-1.741984,-1.741984 +-1.742801,-1.742801,-1.742801,-1.742801,-1.742801,-1.742801 +-1.743471,-1.743471,-1.743471,-1.743471,-1.743471,-1.743471 +-1.74401,-1.74401,-1.74401,-1.74401,-1.74401,-1.74401 +-1.744431,-1.744431,-1.744431,-1.744431,-1.744431,-1.744431 +-1.744748,-1.744748,-1.744748,-1.744748,-1.744748,-1.744748 +-1.744977,-1.744977,-1.744977,-1.744977,-1.744977,-1.744977 +-1.745132,-1.745132,-1.745132,-1.745132,-1.745132,-1.745132 +-1.745227,-1.745227,-1.745227,-1.745227,-1.745227,-1.745227 +-1.745277,-1.745277,-1.745277,-1.745277,-1.745277,-1.745277 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745281,-1.745281,-1.745281,-1.745281,-1.745281,-1.745281 +-1.745235,-1.745235,-1.745235,-1.745235,-1.745235,-1.745235 +-1.745145,-1.745145,-1.745145,-1.745145,-1.745145,-1.745145 +-1.744998,-1.744998,-1.744998,-1.744998,-1.744998,-1.744998 +-1.744778,-1.744778,-1.744778,-1.744778,-1.744778,-1.744778 +-1.744471,-1.744471,-1.744471,-1.744471,-1.744471,-1.744471 +-1.744063,-1.744063,-1.744063,-1.744063,-1.744063,-1.744063 +-1.743538,-1.743538,-1.743538,-1.743538,-1.743538,-1.743538 +-1.742883,-1.742883,-1.742883,-1.742883,-1.742883,-1.742883 +-1.742083,-1.742083,-1.742083,-1.742083,-1.742083,-1.742083 +-1.741124,-1.741124,-1.741124,-1.741124,-1.741124,-1.741124 +-1.739991,-1.739991,-1.739991,-1.739991,-1.739991,-1.739991 +-1.738669,-1.738669,-1.738669,-1.738669,-1.738669,-1.738669 +-1.737144,-1.737144,-1.737144,-1.737144,-1.737144,-1.737144 +-1.735401,-1.735401,-1.735401,-1.735401,-1.735401,-1.735401 +-1.733427,-1.733427,-1.733427,-1.733427,-1.733427,-1.733427 +-1.73121,-1.73121,-1.73121,-1.73121,-1.73121,-1.73121 +-1.728761,-1.728761,-1.728761,-1.728761,-1.728761,-1.728761 +-1.726093,-1.726093,-1.726093,-1.726093,-1.726093,-1.726093 +-1.723222,-1.723222,-1.723222,-1.723222,-1.723222,-1.723222 +-1.720161,-1.720161,-1.720161,-1.720161,-1.720161,-1.720161 +-1.716925,-1.716925,-1.716925,-1.716925,-1.716925,-1.716925 +-1.713529,-1.713529,-1.713529,-1.713529,-1.713529,-1.713529 +-1.709987,-1.709987,-1.709987,-1.709987,-1.709987,-1.709987 +-1.706314,-1.706314,-1.706314,-1.706314,-1.706314,-1.706314 +-1.702524,-1.702524,-1.702524,-1.702524,-1.702524,-1.702524 +-1.698631,-1.698631,-1.698631,-1.698631,-1.698631,-1.698631 +-1.694651,-1.694651,-1.694651,-1.694651,-1.694651,-1.694651 +-1.690597,-1.690597,-1.690597,-1.690597,-1.690597,-1.690597 +-1.686484,-1.686484,-1.686484,-1.686484,-1.686484,-1.686484 +-1.682327,-1.682327,-1.682327,-1.682327,-1.682327,-1.682327 +-1.678141,-1.678141,-1.678141,-1.678141,-1.678141,-1.678141 +-1.673939,-1.673939,-1.673939,-1.673939,-1.673939,-1.673939 +-1.669734,-1.669734,-1.669734,-1.669734,-1.669734,-1.669734 +-1.665529,-1.665529,-1.665529,-1.665529,-1.665529,-1.665529 +-1.661324,-1.661324,-1.661324,-1.661324,-1.661324,-1.661324 +-1.657119,-1.657119,-1.657119,-1.657119,-1.657119,-1.657119 +-1.652914,-1.652914,-1.652914,-1.652914,-1.652914,-1.652914 +-1.648709,-1.648709,-1.648709,-1.648709,-1.648709,-1.648709 +-1.644504,-1.644504,-1.644504,-1.644504,-1.644504,-1.644504 +-1.640299,-1.640299,-1.640299,-1.640299,-1.640299,-1.640299 +-1.636094,-1.636094,-1.636094,-1.636094,-1.636094,-1.636094 +-1.631889,-1.631889,-1.631889,-1.631889,-1.631889,-1.631889 +-1.627684,-1.627684,-1.627684,-1.627684,-1.627684,-1.627684 +-1.623479,-1.623479,-1.623479,-1.623479,-1.623479,-1.623479 +-1.619274,-1.619274,-1.619274,-1.619274,-1.619274,-1.619274 +-1.615069,-1.615069,-1.615069,-1.615069,-1.615069,-1.615069 +-1.610864,-1.610864,-1.610864,-1.610864,-1.610864,-1.610864 +-1.606659,-1.606659,-1.606659,-1.606659,-1.606659,-1.606659 +-1.602454,-1.602454,-1.602454,-1.602454,-1.602454,-1.602454 +-1.598249,-1.598249,-1.598249,-1.598249,-1.598249,-1.598249 +-1.594044,-1.594044,-1.594044,-1.594044,-1.594044,-1.594044 +-1.589839,-1.589839,-1.589839,-1.589839,-1.589839,-1.589839 +-1.585634,-1.585634,-1.585634,-1.585634,-1.585634,-1.585634 +-1.581429,-1.581429,-1.581429,-1.581429,-1.581429,-1.581429 +-1.577224,-1.577224,-1.577224,-1.577224,-1.577224,-1.577224 +-1.573019,-1.573019,-1.573019,-1.573019,-1.573019,-1.573019 +-1.568814,-1.568814,-1.568814,-1.568814,-1.568814,-1.568814 +-1.564609,-1.564609,-1.564609,-1.564609,-1.564609,-1.564609 +-1.560404,-1.560404,-1.560404,-1.560404,-1.560404,-1.560404 +-1.556199,-1.556199,-1.556199,-1.556199,-1.556199,-1.556199 +-1.551994,-1.551994,-1.551994,-1.551994,-1.551994,-1.551994 +-1.547789,-1.547789,-1.547789,-1.547789,-1.547789,-1.547789 +-1.543584,-1.543584,-1.543584,-1.543584,-1.543584,-1.543584 +-1.539379,-1.539379,-1.539379,-1.539379,-1.539379,-1.539379 +-1.535174,-1.535174,-1.535174,-1.535174,-1.535174,-1.535174 +-1.530969,-1.530969,-1.530969,-1.530969,-1.530969,-1.530969 +-1.526764,-1.526764,-1.526764,-1.526764,-1.526764,-1.526764 +-1.522559,-1.522559,-1.522559,-1.522559,-1.522559,-1.522559 +-1.518354,-1.518354,-1.518354,-1.518354,-1.518354,-1.518354 +-1.514149,-1.514149,-1.514149,-1.514149,-1.514149,-1.514149 +-1.509944,-1.509944,-1.509944,-1.509944,-1.509944,-1.509944 +-1.505739,-1.505739,-1.505739,-1.505739,-1.505739,-1.505739 +-1.501534,-1.501534,-1.501534,-1.501534,-1.501534,-1.501534 +-1.497329,-1.497329,-1.497329,-1.497329,-1.497329,-1.497329 +-1.493124,-1.493124,-1.493124,-1.493124,-1.493124,-1.493124 +-1.488919,-1.488919,-1.488919,-1.488919,-1.488919,-1.488919 +-1.484714,-1.484714,-1.484714,-1.484714,-1.484714,-1.484714 +-1.480509,-1.480509,-1.480509,-1.480509,-1.480509,-1.480509 +-1.476304,-1.476304,-1.476304,-1.476304,-1.476304,-1.476304 +-1.472099,-1.472099,-1.472099,-1.472099,-1.472099,-1.472099 +-1.467894,-1.467894,-1.467894,-1.467894,-1.467894,-1.467894 +-1.463689,-1.463689,-1.463689,-1.463689,-1.463689,-1.463689 +-1.459484,-1.459484,-1.459484,-1.459484,-1.459484,-1.459484 +-1.455279,-1.455279,-1.455279,-1.455279,-1.455279,-1.455279 +-1.451074,-1.451074,-1.451074,-1.451074,-1.451074,-1.451074 +-1.446869,-1.446869,-1.446869,-1.446869,-1.446869,-1.446869 +-1.442664,-1.442664,-1.442664,-1.442664,-1.442664,-1.442664 +-1.438459,-1.438459,-1.438459,-1.438459,-1.438459,-1.438459 +-1.434254,-1.434254,-1.434254,-1.434254,-1.434254,-1.434254 +-1.430049,-1.430049,-1.430049,-1.430049,-1.430049,-1.430049 +-1.425844,-1.425844,-1.425844,-1.425844,-1.425844,-1.425844 +-1.421639,-1.421639,-1.421639,-1.421639,-1.421639,-1.421639 +-1.417434,-1.417434,-1.417434,-1.417434,-1.417434,-1.417434 +-1.413229,-1.413229,-1.413229,-1.413229,-1.413229,-1.413229 +-1.409024,-1.409024,-1.409024,-1.409024,-1.409024,-1.409024 +-1.404819,-1.404819,-1.404819,-1.404819,-1.404819,-1.404819 +-1.400614,-1.400614,-1.400614,-1.400614,-1.400614,-1.400614 +-1.396409,-1.396409,-1.396409,-1.396409,-1.396409,-1.396409 +-1.392204,-1.392204,-1.392204,-1.392204,-1.392204,-1.392204 +-1.387999,-1.387999,-1.387999,-1.387999,-1.387999,-1.387999 +-1.383794,-1.383794,-1.383794,-1.383794,-1.383794,-1.383794 +-1.379589,-1.379589,-1.379589,-1.379589,-1.379589,-1.379589 +-1.375384,-1.375384,-1.375384,-1.375384,-1.375384,-1.375384 +-1.371179,-1.371179,-1.371179,-1.371179,-1.371179,-1.371179 +-1.366974,-1.366974,-1.366974,-1.366974,-1.366974,-1.366974 +-1.362769,-1.362769,-1.362769,-1.362769,-1.362769,-1.362769 +-1.358564,-1.358564,-1.358564,-1.358564,-1.358564,-1.358564 +-1.354359,-1.354359,-1.354359,-1.354359,-1.354359,-1.354359 +-1.350154,-1.350154,-1.350154,-1.350154,-1.350154,-1.350154 +-1.345949,-1.345949,-1.345949,-1.345949,-1.345949,-1.345949 +-1.341744,-1.341744,-1.341744,-1.341744,-1.341744,-1.341744 +-1.337539,-1.337539,-1.337539,-1.337539,-1.337539,-1.337539 +-1.333334,-1.333334,-1.333334,-1.333334,-1.333334,-1.333334 +-1.329129,-1.329129,-1.329129,-1.329129,-1.329129,-1.329129 +-1.324924,-1.324924,-1.324924,-1.324924,-1.324924,-1.324924 +-1.320719,-1.320719,-1.320719,-1.320719,-1.320719,-1.320719 +-1.316514,-1.316514,-1.316514,-1.316514,-1.316514,-1.316514 +-1.312309,-1.312309,-1.312309,-1.312309,-1.312309,-1.312309 +-1.308104,-1.308104,-1.308104,-1.308104,-1.308104,-1.308104 +-1.303899,-1.303899,-1.303899,-1.303899,-1.303899,-1.303899 +-1.299694,-1.299694,-1.299694,-1.299694,-1.299694,-1.299694 +-1.295489,-1.295489,-1.295489,-1.295489,-1.295489,-1.295489 +-1.291284,-1.291284,-1.291284,-1.291284,-1.291284,-1.291284 +-1.287079,-1.287079,-1.287079,-1.287079,-1.287079,-1.287079 +-1.282874,-1.282874,-1.282874,-1.282874,-1.282874,-1.282874 +-1.278669,-1.278669,-1.278669,-1.278669,-1.278669,-1.278669 +-1.274464,-1.274464,-1.274464,-1.274464,-1.274464,-1.274464 +-1.270259,-1.270259,-1.270259,-1.270259,-1.270259,-1.270259 +-1.266054,-1.266054,-1.266054,-1.266054,-1.266054,-1.266054 +-1.261849,-1.261849,-1.261849,-1.261849,-1.261849,-1.261849 +-1.257644,-1.257644,-1.257644,-1.257644,-1.257644,-1.257644 +-1.253439,-1.253439,-1.253439,-1.253439,-1.253439,-1.253439 +-1.249234,-1.249234,-1.249234,-1.249234,-1.249234,-1.249234 +-1.245029,-1.245029,-1.245029,-1.245029,-1.245029,-1.245029 +-1.240824,-1.240824,-1.240824,-1.240824,-1.240824,-1.240824 +-1.236619,-1.236619,-1.236619,-1.236619,-1.236619,-1.236619 +-1.232414,-1.232414,-1.232414,-1.232414,-1.232414,-1.232414 +-1.228209,-1.228209,-1.228209,-1.228209,-1.228209,-1.228209 +-1.224004,-1.224004,-1.224004,-1.224004,-1.224004,-1.224004 +-1.219799,-1.219799,-1.219799,-1.219799,-1.219799,-1.219799 +-1.215594,-1.215594,-1.215594,-1.215594,-1.215594,-1.215594 +-1.211389,-1.211389,-1.211389,-1.211389,-1.211389,-1.211389 +-1.207184,-1.207184,-1.207184,-1.207184,-1.207184,-1.207184 +-1.202979,-1.202979,-1.202979,-1.202979,-1.202979,-1.202979 +-1.198774,-1.198774,-1.198774,-1.198774,-1.198774,-1.198774 +-1.194569,-1.194569,-1.194569,-1.194569,-1.194569,-1.194569 +-1.190364,-1.190364,-1.190364,-1.190364,-1.190364,-1.190364 +-1.186159,-1.186159,-1.186159,-1.186159,-1.186159,-1.186159 +-1.181954,-1.181954,-1.181954,-1.181954,-1.181954,-1.181954 +-1.177749,-1.177749,-1.177749,-1.177749,-1.177749,-1.177749 +-1.173544,-1.173544,-1.173544,-1.173544,-1.173544,-1.173544 +-1.169339,-1.169339,-1.169339,-1.169339,-1.169339,-1.169339 +-1.165134,-1.165134,-1.165134,-1.165134,-1.165134,-1.165134 +-1.160929,-1.160929,-1.160929,-1.160929,-1.160929,-1.160929 +-1.156724,-1.156724,-1.156724,-1.156724,-1.156724,-1.156724 +-1.152519,-1.152519,-1.152519,-1.152519,-1.152519,-1.152519 +-1.148314,-1.148314,-1.148314,-1.148314,-1.148314,-1.148314 +-1.144109,-1.144109,-1.144109,-1.144109,-1.144109,-1.144109 +-1.139904,-1.139904,-1.139904,-1.139904,-1.139904,-1.139904 +-1.135699,-1.135699,-1.135699,-1.135699,-1.135699,-1.135699 +-1.131494,-1.131494,-1.131494,-1.131494,-1.131494,-1.131494 +-1.127289,-1.127289,-1.127289,-1.127289,-1.127289,-1.127289 +-1.123084,-1.123084,-1.123084,-1.123084,-1.123084,-1.123084 +-1.118879,-1.118879,-1.118879,-1.118879,-1.118879,-1.118879 +-1.114674,-1.114674,-1.114674,-1.114674,-1.114674,-1.114674 +-1.110469,-1.110469,-1.110469,-1.110469,-1.110469,-1.110469 +-1.106264,-1.106264,-1.106264,-1.106264,-1.106264,-1.106264 +-1.102059,-1.102059,-1.102059,-1.102059,-1.102059,-1.102059 +-1.097854,-1.097854,-1.097854,-1.097854,-1.097854,-1.097854 +-1.093649,-1.093649,-1.093649,-1.093649,-1.093649,-1.093649 +-1.089444,-1.089444,-1.089444,-1.089444,-1.089444,-1.089444 +-1.085239,-1.085239,-1.085239,-1.085239,-1.085239,-1.085239 +-1.081034,-1.081034,-1.081034,-1.081034,-1.081034,-1.081034 +-1.076829,-1.076829,-1.076829,-1.076829,-1.076829,-1.076829 +-1.072624,-1.072624,-1.072624,-1.072624,-1.072624,-1.072624 +-1.068419,-1.068419,-1.068419,-1.068419,-1.068419,-1.068419 +-1.064214,-1.064214,-1.064214,-1.064214,-1.064214,-1.064214 +-1.060009,-1.060009,-1.060009,-1.060009,-1.060009,-1.060009 +-1.055804,-1.055804,-1.055804,-1.055804,-1.055804,-1.055804 +-1.051599,-1.051599,-1.051599,-1.051599,-1.051599,-1.051599 +-1.047394,-1.047394,-1.047394,-1.047394,-1.047394,-1.047394 +-1.043189,-1.043189,-1.043189,-1.043189,-1.043189,-1.043189 +-1.038984,-1.038984,-1.038984,-1.038984,-1.038984,-1.038984 +-1.034779,-1.034779,-1.034779,-1.034779,-1.034779,-1.034779 +-1.030574,-1.030574,-1.030574,-1.030574,-1.030574,-1.030574 +-1.026369,-1.026369,-1.026369,-1.026369,-1.026369,-1.026369 +-1.022164,-1.022164,-1.022164,-1.022164,-1.022164,-1.022164 +-1.017959,-1.017959,-1.017959,-1.017959,-1.017959,-1.017959 +-1.013754,-1.013754,-1.013754,-1.013754,-1.013754,-1.013754 +-1.009549,-1.009549,-1.009549,-1.009549,-1.009549,-1.009549 +-1.005344,-1.005344,-1.005344,-1.005344,-1.005344,-1.005344 +-1.001139,-1.001139,-1.001139,-1.001139,-1.001139,-1.001139 +-0.996934,-0.996934,-0.996934,-0.996934,-0.996934,-0.996934 +-0.992729,-0.992729,-0.992729,-0.992729,-0.992729,-0.992729 +-0.988524,-0.988524,-0.988524,-0.988524,-0.988524,-0.988524 +-0.984319,-0.984319,-0.984319,-0.984319,-0.984319,-0.984319 +-0.980114,-0.980114,-0.980114,-0.980114,-0.980114,-0.980114 +-0.975909,-0.975909,-0.975909,-0.975909,-0.975909,-0.975909 +-0.971704,-0.971704,-0.971704,-0.971704,-0.971704,-0.971704 +-0.967499,-0.967499,-0.967499,-0.967499,-0.967499,-0.967499 +-0.963294,-0.963294,-0.963294,-0.963294,-0.963294,-0.963294 +-0.959089,-0.959089,-0.959089,-0.959089,-0.959089,-0.959089 +-0.954884,-0.954884,-0.954884,-0.954884,-0.954884,-0.954884 +-0.950679,-0.950679,-0.950679,-0.950679,-0.950679,-0.950679 +-0.946474,-0.946474,-0.946474,-0.946474,-0.946474,-0.946474 +-0.942269,-0.942269,-0.942269,-0.942269,-0.942269,-0.942269 +-0.938064,-0.938064,-0.938064,-0.938064,-0.938064,-0.938064 +-0.933859,-0.933859,-0.933859,-0.933859,-0.933859,-0.933859 +-0.929654,-0.929654,-0.929654,-0.929654,-0.929654,-0.929654 +-0.925449,-0.925449,-0.925449,-0.925449,-0.925449,-0.925449 +-0.921244,-0.921244,-0.921244,-0.921244,-0.921244,-0.921244 +-0.917039,-0.917039,-0.917039,-0.917039,-0.917039,-0.917039 +-0.912834,-0.912834,-0.912834,-0.912834,-0.912834,-0.912834 +-0.908629,-0.908629,-0.908629,-0.908629,-0.908629,-0.908629 +-0.904424,-0.904424,-0.904424,-0.904424,-0.904424,-0.904424 +-0.900219,-0.900219,-0.900219,-0.900219,-0.900219,-0.900219 +-0.896014,-0.896014,-0.896014,-0.896014,-0.896014,-0.896014 +-0.891809,-0.891809,-0.891809,-0.891809,-0.891809,-0.891809 +-0.887604,-0.887604,-0.887604,-0.887604,-0.887604,-0.887604 +-0.883399,-0.883399,-0.883399,-0.883399,-0.883399,-0.883399 +-0.879194,-0.879194,-0.879194,-0.879194,-0.879194,-0.879194 +-0.874989,-0.874989,-0.874989,-0.874989,-0.874989,-0.874989 +-0.870784,-0.870784,-0.870784,-0.870784,-0.870784,-0.870784 +-0.866579,-0.866579,-0.866579,-0.866579,-0.866579,-0.866579 +-0.862374,-0.862374,-0.862374,-0.862374,-0.862374,-0.862374 +-0.858169,-0.858169,-0.858169,-0.858169,-0.858169,-0.858169 +-0.853964,-0.853964,-0.853964,-0.853964,-0.853964,-0.853964 +-0.849759,-0.849759,-0.849759,-0.849759,-0.849759,-0.849759 +-0.845554,-0.845554,-0.845554,-0.845554,-0.845554,-0.845554 +-0.841349,-0.841349,-0.841349,-0.841349,-0.841349,-0.841349 +-0.837144,-0.837144,-0.837144,-0.837144,-0.837144,-0.837144 +-0.832939,-0.832939,-0.832939,-0.832939,-0.832939,-0.832939 +-0.828734,-0.828734,-0.828734,-0.828734,-0.828734,-0.828734 +-0.824529,-0.824529,-0.824529,-0.824529,-0.824529,-0.824529 +-0.820324,-0.820324,-0.820324,-0.820324,-0.820324,-0.820324 +-0.816119,-0.816119,-0.816119,-0.816119,-0.816119,-0.816119 +-0.811914,-0.811914,-0.811914,-0.811914,-0.811914,-0.811914 +-0.807709,-0.807709,-0.807709,-0.807709,-0.807709,-0.807709 +-0.803504,-0.803504,-0.803504,-0.803504,-0.803504,-0.803504 +-0.799299,-0.799299,-0.799299,-0.799299,-0.799299,-0.799299 +-0.795094,-0.795094,-0.795094,-0.795094,-0.795094,-0.795094 +-0.790889,-0.790889,-0.790889,-0.790889,-0.790889,-0.790889 +-0.786684,-0.786684,-0.786684,-0.786684,-0.786684,-0.786684 +-0.782479,-0.782479,-0.782479,-0.782479,-0.782479,-0.782479 +-0.778274,-0.778274,-0.778274,-0.778274,-0.778274,-0.778274 +-0.774069,-0.774069,-0.774069,-0.774069,-0.774069,-0.774069 +-0.769864,-0.769864,-0.769864,-0.769864,-0.769864,-0.769864 +-0.765659,-0.765659,-0.765659,-0.765659,-0.765659,-0.765659 +-0.761454,-0.761454,-0.761454,-0.761454,-0.761454,-0.761454 +-0.757249,-0.757249,-0.757249,-0.757249,-0.757249,-0.757249 +-0.753044,-0.753044,-0.753044,-0.753044,-0.753044,-0.753044 +-0.748839,-0.748839,-0.748839,-0.748839,-0.748839,-0.748839 +-0.744634,-0.744634,-0.744634,-0.744634,-0.744634,-0.744634 +-0.740429,-0.740429,-0.740429,-0.740429,-0.740429,-0.740429 +-0.736224,-0.736224,-0.736224,-0.736224,-0.736224,-0.736224 +-0.732019,-0.732019,-0.732019,-0.732019,-0.732019,-0.732019 +-0.727814,-0.727814,-0.727814,-0.727814,-0.727814,-0.727814 +-0.723609,-0.723609,-0.723609,-0.723609,-0.723609,-0.723609 +-0.719404,-0.719404,-0.719404,-0.719404,-0.719404,-0.719404 +-0.715199,-0.715199,-0.715199,-0.715199,-0.715199,-0.715199 +-0.710994,-0.710994,-0.710994,-0.710994,-0.710994,-0.710994 +-0.706789,-0.706789,-0.706789,-0.706789,-0.706789,-0.706789 +-0.702584,-0.702584,-0.702584,-0.702584,-0.702584,-0.702584 +-0.698379,-0.698379,-0.698379,-0.698379,-0.698379,-0.698379 +-0.694174,-0.694174,-0.694174,-0.694174,-0.694174,-0.694174 +-0.689969,-0.689969,-0.689969,-0.689969,-0.689969,-0.689969 +-0.685764,-0.685764,-0.685764,-0.685764,-0.685764,-0.685764 +-0.681559,-0.681559,-0.681559,-0.681559,-0.681559,-0.681559 +-0.677354,-0.677354,-0.677354,-0.677354,-0.677354,-0.677354 +-0.673149,-0.673149,-0.673149,-0.673149,-0.673149,-0.673149 +-0.668944,-0.668944,-0.668944,-0.668944,-0.668944,-0.668944 +-0.664739,-0.664739,-0.664739,-0.664739,-0.664739,-0.664739 +-0.660534,-0.660534,-0.660534,-0.660534,-0.660534,-0.660534 +-0.656329,-0.656329,-0.656329,-0.656329,-0.656329,-0.656329 +-0.652124,-0.652124,-0.652124,-0.652124,-0.652124,-0.652124 +-0.647919,-0.647919,-0.647919,-0.647919,-0.647919,-0.647919 +-0.643714,-0.643714,-0.643714,-0.643714,-0.643714,-0.643714 +-0.639509,-0.639509,-0.639509,-0.639509,-0.639509,-0.639509 +-0.635304,-0.635304,-0.635304,-0.635304,-0.635304,-0.635304 +-0.631099,-0.631099,-0.631099,-0.631099,-0.631099,-0.631099 +-0.626894,-0.626894,-0.626894,-0.626894,-0.626894,-0.626894 +-0.622689,-0.622689,-0.622689,-0.622689,-0.622689,-0.622689 +-0.618484,-0.618484,-0.618484,-0.618484,-0.618484,-0.618484 +-0.614279,-0.614279,-0.614279,-0.614279,-0.614279,-0.614279 +-0.610074,-0.610074,-0.610074,-0.610074,-0.610074,-0.610074 +-0.605869,-0.605869,-0.605869,-0.605869,-0.605869,-0.605869 +-0.601664,-0.601664,-0.601664,-0.601664,-0.601664,-0.601664 +-0.597459,-0.597459,-0.597459,-0.597459,-0.597459,-0.597459 +-0.593254,-0.593254,-0.593254,-0.593254,-0.593254,-0.593254 +-0.589049,-0.589049,-0.589049,-0.589049,-0.589049,-0.589049 +-0.584844,-0.584844,-0.584844,-0.584844,-0.584844,-0.584844 +-0.580639,-0.580639,-0.580639,-0.580639,-0.580639,-0.580639 +-0.576434,-0.576434,-0.576434,-0.576434,-0.576434,-0.576434 +-0.572229,-0.572229,-0.572229,-0.572229,-0.572229,-0.572229 +-0.568024,-0.568024,-0.568024,-0.568024,-0.568024,-0.568024 +-0.563819,-0.563819,-0.563819,-0.563819,-0.563819,-0.563819 +-0.559614,-0.559614,-0.559614,-0.559614,-0.559614,-0.559614 +-0.555409,-0.555409,-0.555409,-0.555409,-0.555409,-0.555409 +-0.551204,-0.551204,-0.551204,-0.551204,-0.551204,-0.551204 +-0.546999,-0.546999,-0.546999,-0.546999,-0.546999,-0.546999 +-0.542794,-0.542794,-0.542794,-0.542794,-0.542794,-0.542794 +-0.538589,-0.538589,-0.538589,-0.538589,-0.538589,-0.538589 +-0.534384,-0.534384,-0.534384,-0.534384,-0.534384,-0.534384 +-0.530179,-0.530179,-0.530179,-0.530179,-0.530179,-0.530179 +-0.525974,-0.525974,-0.525974,-0.525974,-0.525974,-0.525974 +-0.521769,-0.521769,-0.521769,-0.521769,-0.521769,-0.521769 +-0.517564,-0.517564,-0.517564,-0.517564,-0.517564,-0.517564 +-0.513359,-0.513359,-0.513359,-0.513359,-0.513359,-0.513359 +-0.509154,-0.509154,-0.509154,-0.509154,-0.509154,-0.509154 +-0.504949,-0.504949,-0.504949,-0.504949,-0.504949,-0.504949 +-0.500744,-0.500744,-0.500744,-0.500744,-0.500744,-0.500744 +-0.496539,-0.496539,-0.496539,-0.496539,-0.496539,-0.496539 +-0.492334,-0.492334,-0.492334,-0.492334,-0.492334,-0.492334 +-0.488129,-0.488129,-0.488129,-0.488129,-0.488129,-0.488129 +-0.483924,-0.483924,-0.483924,-0.483924,-0.483924,-0.483924 +-0.479719,-0.479719,-0.479719,-0.479719,-0.479719,-0.479719 +-0.475514,-0.475514,-0.475514,-0.475514,-0.475514,-0.475514 +-0.471309,-0.471309,-0.471309,-0.471309,-0.471309,-0.471309 +-0.467104,-0.467104,-0.467104,-0.467104,-0.467104,-0.467104 +-0.462899,-0.462899,-0.462899,-0.462899,-0.462899,-0.462899 +-0.458694,-0.458694,-0.458694,-0.458694,-0.458694,-0.458694 +-0.454489,-0.454489,-0.454489,-0.454489,-0.454489,-0.454489 +-0.450284,-0.450284,-0.450284,-0.450284,-0.450284,-0.450284 +-0.446079,-0.446079,-0.446079,-0.446079,-0.446079,-0.446079 +-0.441874,-0.441874,-0.441874,-0.441874,-0.441874,-0.441874 +-0.437669,-0.437669,-0.437669,-0.437669,-0.437669,-0.437669 +-0.433464,-0.433464,-0.433464,-0.433464,-0.433464,-0.433464 +-0.429259,-0.429259,-0.429259,-0.429259,-0.429259,-0.429259 +-0.425054,-0.425054,-0.425054,-0.425054,-0.425054,-0.425054 +-0.420849,-0.420849,-0.420849,-0.420849,-0.420849,-0.420849 +-0.416644,-0.416644,-0.416644,-0.416644,-0.416644,-0.416644 +-0.412439,-0.412439,-0.412439,-0.412439,-0.412439,-0.412439 +-0.408234,-0.408234,-0.408234,-0.408234,-0.408234,-0.408234 +-0.404029,-0.404029,-0.404029,-0.404029,-0.404029,-0.404029 +-0.399824,-0.399824,-0.399824,-0.399824,-0.399824,-0.399824 +-0.395619,-0.395619,-0.395619,-0.395619,-0.395619,-0.395619 +-0.391414,-0.391414,-0.391414,-0.391414,-0.391414,-0.391414 +-0.387209,-0.387209,-0.387209,-0.387209,-0.387209,-0.387209 +-0.383004,-0.383004,-0.383004,-0.383004,-0.383004,-0.383004 +-0.378799,-0.378799,-0.378799,-0.378799,-0.378799,-0.378799 +-0.374594,-0.374594,-0.374594,-0.374594,-0.374594,-0.374594 +-0.370389,-0.370389,-0.370389,-0.370389,-0.370389,-0.370389 +-0.366184,-0.366184,-0.366184,-0.366184,-0.366184,-0.366184 +-0.361979,-0.361979,-0.361979,-0.361979,-0.361979,-0.361979 +-0.357774,-0.357774,-0.357774,-0.357774,-0.357774,-0.357774 +-0.353569,-0.353569,-0.353569,-0.353569,-0.353569,-0.353569 +-0.349364,-0.349364,-0.349364,-0.349364,-0.349364,-0.349364 +-0.345159,-0.345159,-0.345159,-0.345159,-0.345159,-0.345159 +-0.340954,-0.340954,-0.340954,-0.340954,-0.340954,-0.340954 +-0.336749,-0.336749,-0.336749,-0.336749,-0.336749,-0.336749 +-0.332544,-0.332544,-0.332544,-0.332544,-0.332544,-0.332544 +-0.328339,-0.328339,-0.328339,-0.328339,-0.328339,-0.328339 +-0.324134,-0.324134,-0.324134,-0.324134,-0.324134,-0.324134 +-0.319929,-0.319929,-0.319929,-0.319929,-0.319929,-0.319929 +-0.315724,-0.315724,-0.315724,-0.315724,-0.315724,-0.315724 +-0.311519,-0.311519,-0.311519,-0.311519,-0.311519,-0.311519 +-0.307314,-0.307314,-0.307314,-0.307314,-0.307314,-0.307314 +-0.303109,-0.303109,-0.303109,-0.303109,-0.303109,-0.303109 +-0.298904,-0.298904,-0.298904,-0.298904,-0.298904,-0.298904 +-0.294699,-0.294699,-0.294699,-0.294699,-0.294699,-0.294699 +-0.290494,-0.290494,-0.290494,-0.290494,-0.290494,-0.290494 +-0.286289,-0.286289,-0.286289,-0.286289,-0.286289,-0.286289 +-0.282084,-0.282084,-0.282084,-0.282084,-0.282084,-0.282084 +-0.277879,-0.277879,-0.277879,-0.277879,-0.277879,-0.277879 +-0.273674,-0.273674,-0.273674,-0.273674,-0.273674,-0.273674 +-0.269469,-0.269469,-0.269469,-0.269469,-0.269469,-0.269469 +-0.265264,-0.265264,-0.265264,-0.265264,-0.265264,-0.265264 +-0.261059,-0.261059,-0.261059,-0.261059,-0.261059,-0.261059 +-0.256854,-0.256854,-0.256854,-0.256854,-0.256854,-0.256854 +-0.252649,-0.252649,-0.252649,-0.252649,-0.252649,-0.252649 +-0.248444,-0.248444,-0.248444,-0.248444,-0.248444,-0.248444 +-0.244239,-0.244239,-0.244239,-0.244239,-0.244239,-0.244239 +-0.240034,-0.240034,-0.240034,-0.240034,-0.240034,-0.240034 +-0.235829,-0.235829,-0.235829,-0.235829,-0.235829,-0.235829 +-0.231624,-0.231624,-0.231624,-0.231624,-0.231624,-0.231624 +-0.227419,-0.227419,-0.227419,-0.227419,-0.227419,-0.227419 +-0.223214,-0.223214,-0.223214,-0.223214,-0.223214,-0.223214 +-0.219009,-0.219009,-0.219009,-0.219009,-0.219009,-0.219009 +-0.214804,-0.214804,-0.214804,-0.214804,-0.214804,-0.214804 +-0.210599,-0.210599,-0.210599,-0.210599,-0.210599,-0.210599 +-0.206394,-0.206394,-0.206394,-0.206394,-0.206394,-0.206394 +-0.202189,-0.202189,-0.202189,-0.202189,-0.202189,-0.202189 +-0.197984,-0.197984,-0.197984,-0.197984,-0.197984,-0.197984 +-0.193779,-0.193779,-0.193779,-0.193779,-0.193779,-0.193779 +-0.189574,-0.189574,-0.189574,-0.189574,-0.189574,-0.189574 +-0.185369,-0.185369,-0.185369,-0.185369,-0.185369,-0.185369 +-0.181164,-0.181164,-0.181164,-0.181164,-0.181164,-0.181164 +-0.176959,-0.176959,-0.176959,-0.176959,-0.176959,-0.176959 +-0.172754,-0.172754,-0.172754,-0.172754,-0.172754,-0.172754 +-0.168549,-0.168549,-0.168549,-0.168549,-0.168549,-0.168549 +-0.164344,-0.164344,-0.164344,-0.164344,-0.164344,-0.164344 +-0.160139,-0.160139,-0.160139,-0.160139,-0.160139,-0.160139 +-0.155934,-0.155934,-0.155934,-0.155934,-0.155934,-0.155934 +-0.151729,-0.151729,-0.151729,-0.151729,-0.151729,-0.151729 +-0.147524,-0.147524,-0.147524,-0.147524,-0.147524,-0.147524 +-0.143319,-0.143319,-0.143319,-0.143319,-0.143319,-0.143319 +-0.139114,-0.139114,-0.139114,-0.139114,-0.139114,-0.139114 +-0.134909,-0.134909,-0.134909,-0.134909,-0.134909,-0.134909 +-0.130704,-0.130704,-0.130704,-0.130704,-0.130704,-0.130704 +-0.126499,-0.126499,-0.126499,-0.126499,-0.126499,-0.126499 +-0.122294,-0.122294,-0.122294,-0.122294,-0.122294,-0.122294 +-0.118089,-0.118089,-0.118089,-0.118089,-0.118089,-0.118089 +-0.113884,-0.113884,-0.113884,-0.113884,-0.113884,-0.113884 +-0.109679,-0.109679,-0.109679,-0.109679,-0.109679,-0.109679 +-0.105474,-0.105474,-0.105474,-0.105474,-0.105474,-0.105474 +-0.101269,-0.101269,-0.101269,-0.101269,-0.101269,-0.101269 +-0.097064,-0.097064,-0.097064,-0.097064,-0.097064,-0.097064 +-0.092859,-0.092859,-0.092859,-0.092859,-0.092859,-0.092859 +-0.088654,-0.088654,-0.088654,-0.088654,-0.088654,-0.088654 +-0.084449,-0.084449,-0.084449,-0.084449,-0.084449,-0.084449 +-0.080244,-0.080244,-0.080244,-0.080244,-0.080244,-0.080244 +-0.076039,-0.076039,-0.076039,-0.076039,-0.076039,-0.076039 +-0.071834,-0.071834,-0.071834,-0.071834,-0.071834,-0.071834 +-0.067631,-0.067631,-0.067631,-0.067631,-0.067631,-0.067631 +-0.063441,-0.063441,-0.063441,-0.063441,-0.063441,-0.063441 +-0.05928,-0.05928,-0.05928,-0.05928,-0.05928,-0.05928 +-0.055162,-0.055162,-0.055162,-0.055162,-0.055162,-0.055162 +-0.051101,-0.051101,-0.051101,-0.051101,-0.051101,-0.051101 +-0.047112,-0.047112,-0.047112,-0.047112,-0.047112,-0.047112 +-0.043209,-0.043209,-0.043209,-0.043209,-0.043209,-0.043209 +-0.039406,-0.039406,-0.039406,-0.039406,-0.039406,-0.039406 +-0.035719,-0.035719,-0.035719,-0.035719,-0.035719,-0.035719 +-0.032162,-0.032162,-0.032162,-0.032162,-0.032162,-0.032162 +-0.028748,-0.028748,-0.028748,-0.028748,-0.028748,-0.028748 +-0.025494,-0.025494,-0.025494,-0.025494,-0.025494,-0.025494 +-0.022413,-0.022413,-0.022413,-0.022413,-0.022413,-0.022413 +-0.019519,-0.019519,-0.019519,-0.019519,-0.019519,-0.019519 +-0.016828,-0.016828,-0.016828,-0.016828,-0.016828,-0.016828 +-0.014353,-0.014353,-0.014353,-0.014353,-0.014353,-0.014353 +-0.01211,-0.01211,-0.01211,-0.01211,-0.01211,-0.01211 +-0.010109,-0.010109,-0.010109,-0.010109,-0.010109,-0.010109 +-0.008341,-0.008341,-0.008341,-0.008341,-0.008341,-0.008341 +-0.006792,-0.006792,-0.006792,-0.006792,-0.006792,-0.006792 +-0.005448,-0.005448,-0.005448,-0.005448,-0.005448,-0.005448 +-0.004294,-0.004294,-0.004294,-0.004294,-0.004294,-0.004294 +-0.003316,-0.003316,-0.003316,-0.003316,-0.003316,-0.003316 +-0.002499,-0.002499,-0.002499,-0.002499,-0.002499,-0.002499 +-0.001829,-0.001829,-0.001829,-0.001829,-0.001829,-0.001829 +-0.00129,-0.00129,-0.00129,-0.00129,-0.00129,-0.00129 +-0.000869,-0.000869,-0.000869,-0.000869,-0.000869,-0.000869 +-0.000552,-0.000552,-0.000552,-0.000552,-0.000552,-0.000552 +-0.000323,-0.000323,-0.000323,-0.000323,-0.000323,-0.000323 +-0.000168,-0.000168,-0.000168,-0.000168,-0.000168,-0.000168 +-0.000073,-0.000073,-0.000073,-0.000073,-0.000073,-0.000073 +-0.000023,-0.000023,-0.000023,-0.000023,-0.000023,-0.000023 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000021,0.000021,0.000021,0.000021,0.000021,0.000021 +0.000072,0.000072,0.000072,0.000072,0.000072,0.000072 +0.000171,0.000171,0.000171,0.000171,0.000171,0.000171 +0.000333,0.000333,0.000333,0.000333,0.000333,0.000333 +0.000576,0.000576,0.000576,0.000576,0.000576,0.000576 +0.000915,0.000915,0.000915,0.000915,0.000915,0.000915 +0.001365,0.001365,0.001365,0.001365,0.001365,0.001365 +0.001944,0.001944,0.001944,0.001944,0.001944,0.001944 +0.002667,0.002667,0.002667,0.002667,0.002667,0.002667 +0.003549,0.003549,0.003549,0.003549,0.003549,0.003549 +0.004608,0.004608,0.004608,0.004608,0.004608,0.004608 +0.005859,0.005859,0.005859,0.005859,0.005859,0.005859 +0.007317,0.007317,0.007317,0.007317,0.007317,0.007317 +0.009,0.009,0.009,0.009,0.009,0.009 +0.010923,0.010923,0.010923,0.010923,0.010923,0.010923 +0.013101,0.013101,0.013101,0.013101,0.013101,0.013101 +0.015552,0.015552,0.015552,0.015552,0.015552,0.015552 +0.018283,0.018283,0.018283,0.018283,0.018283,0.018283 +0.021283,0.021283,0.021283,0.021283,0.021283,0.021283 +0.024535,0.024535,0.024535,0.024535,0.024535,0.024535 +0.028024,0.028024,0.028024,0.028024,0.028024,0.028024 +0.031733,0.031733,0.031733,0.031733,0.031733,0.031733 +0.035647,0.035647,0.035647,0.035647,0.035647,0.035647 +0.039749,0.039749,0.039749,0.039749,0.039749,0.039749 +0.044023,0.044023,0.044023,0.044023,0.044023,0.044023 +0.048454,0.048454,0.048454,0.048454,0.048454,0.048454 +0.053025,0.053025,0.053025,0.053025,0.053025,0.053025 +0.057721,0.057721,0.057721,0.057721,0.057721,0.057721 +0.062525,0.062525,0.062525,0.062525,0.062525,0.062525 +0.067421,0.067421,0.067421,0.067421,0.067421,0.067421 +0.072394,0.072394,0.072394,0.072394,0.072394,0.072394 +0.077428,0.077428,0.077428,0.077428,0.077428,0.077428 +0.082506,0.082506,0.082506,0.082506,0.082506,0.082506 +0.087612,0.087612,0.087612,0.087612,0.087612,0.087612 +0.092731,0.092731,0.092731,0.092731,0.092731,0.092731 +0.097851,0.097851,0.097851,0.097851,0.097851,0.097851 +0.102971,0.102971,0.102971,0.102971,0.102971,0.102971 +0.108091,0.108091,0.108091,0.108091,0.108091,0.108091 +0.113211,0.113211,0.113211,0.113211,0.113211,0.113211 +0.118331,0.118331,0.118331,0.118331,0.118331,0.118331 +0.123451,0.123451,0.123451,0.123451,0.123451,0.123451 +0.128571,0.128571,0.128571,0.128571,0.128571,0.128571 +0.133691,0.133691,0.133691,0.133691,0.133691,0.133691 +0.138811,0.138811,0.138811,0.138811,0.138811,0.138811 +0.143931,0.143931,0.143931,0.143931,0.143931,0.143931 +0.149051,0.149051,0.149051,0.149051,0.149051,0.149051 +0.154171,0.154171,0.154171,0.154171,0.154171,0.154171 +0.159291,0.159291,0.159291,0.159291,0.159291,0.159291 +0.164411,0.164411,0.164411,0.164411,0.164411,0.164411 +0.169531,0.169531,0.169531,0.169531,0.169531,0.169531 +0.174651,0.174651,0.174651,0.174651,0.174651,0.174651 +0.179771,0.179771,0.179771,0.179771,0.179771,0.179771 +0.184891,0.184891,0.184891,0.184891,0.184891,0.184891 +0.190011,0.190011,0.190011,0.190011,0.190011,0.190011 +0.195131,0.195131,0.195131,0.195131,0.195131,0.195131 +0.200251,0.200251,0.200251,0.200251,0.200251,0.200251 +0.205371,0.205371,0.205371,0.205371,0.205371,0.205371 +0.210491,0.210491,0.210491,0.210491,0.210491,0.210491 +0.215611,0.215611,0.215611,0.215611,0.215611,0.215611 +0.220731,0.220731,0.220731,0.220731,0.220731,0.220731 +0.225851,0.225851,0.225851,0.225851,0.225851,0.225851 +0.230971,0.230971,0.230971,0.230971,0.230971,0.230971 +0.236091,0.236091,0.236091,0.236091,0.236091,0.236091 +0.241211,0.241211,0.241211,0.241211,0.241211,0.241211 +0.246331,0.246331,0.246331,0.246331,0.246331,0.246331 +0.251451,0.251451,0.251451,0.251451,0.251451,0.251451 +0.256571,0.256571,0.256571,0.256571,0.256571,0.256571 +0.261691,0.261691,0.261691,0.261691,0.261691,0.261691 +0.266811,0.266811,0.266811,0.266811,0.266811,0.266811 +0.271931,0.271931,0.271931,0.271931,0.271931,0.271931 +0.277051,0.277051,0.277051,0.277051,0.277051,0.277051 +0.282171,0.282171,0.282171,0.282171,0.282171,0.282171 +0.287291,0.287291,0.287291,0.287291,0.287291,0.287291 +0.292411,0.292411,0.292411,0.292411,0.292411,0.292411 +0.297531,0.297531,0.297531,0.297531,0.297531,0.297531 +0.302651,0.302651,0.302651,0.302651,0.302651,0.302651 +0.307771,0.307771,0.307771,0.307771,0.307771,0.307771 +0.312891,0.312891,0.312891,0.312891,0.312891,0.312891 +0.318011,0.318011,0.318011,0.318011,0.318011,0.318011 +0.323131,0.323131,0.323131,0.323131,0.323131,0.323131 +0.328251,0.328251,0.328251,0.328251,0.328251,0.328251 +0.333371,0.333371,0.333371,0.333371,0.333371,0.333371 +0.338491,0.338491,0.338491,0.338491,0.338491,0.338491 +0.343611,0.343611,0.343611,0.343611,0.343611,0.343611 +0.348731,0.348731,0.348731,0.348731,0.348731,0.348731 +0.353851,0.353851,0.353851,0.353851,0.353851,0.353851 +0.358971,0.358971,0.358971,0.358971,0.358971,0.358971 +0.364091,0.364091,0.364091,0.364091,0.364091,0.364091 +0.369211,0.369211,0.369211,0.369211,0.369211,0.369211 +0.374331,0.374331,0.374331,0.374331,0.374331,0.374331 +0.379451,0.379451,0.379451,0.379451,0.379451,0.379451 +0.384571,0.384571,0.384571,0.384571,0.384571,0.384571 +0.389691,0.389691,0.389691,0.389691,0.389691,0.389691 +0.394811,0.394811,0.394811,0.394811,0.394811,0.394811 +0.399931,0.399931,0.399931,0.399931,0.399931,0.399931 +0.405051,0.405051,0.405051,0.405051,0.405051,0.405051 +0.410171,0.410171,0.410171,0.410171,0.410171,0.410171 +0.415291,0.415291,0.415291,0.415291,0.415291,0.415291 +0.420411,0.420411,0.420411,0.420411,0.420411,0.420411 +0.425531,0.425531,0.425531,0.425531,0.425531,0.425531 +0.430651,0.430651,0.430651,0.430651,0.430651,0.430651 +0.435771,0.435771,0.435771,0.435771,0.435771,0.435771 +0.440891,0.440891,0.440891,0.440891,0.440891,0.440891 +0.446011,0.446011,0.446011,0.446011,0.446011,0.446011 +0.451131,0.451131,0.451131,0.451131,0.451131,0.451131 +0.456251,0.456251,0.456251,0.456251,0.456251,0.456251 +0.461371,0.461371,0.461371,0.461371,0.461371,0.461371 +0.466491,0.466491,0.466491,0.466491,0.466491,0.466491 +0.471611,0.471611,0.471611,0.471611,0.471611,0.471611 +0.476731,0.476731,0.476731,0.476731,0.476731,0.476731 +0.481851,0.481851,0.481851,0.481851,0.481851,0.481851 +0.486971,0.486971,0.486971,0.486971,0.486971,0.486971 +0.492091,0.492091,0.492091,0.492091,0.492091,0.492091 +0.497211,0.497211,0.497211,0.497211,0.497211,0.497211 +0.502331,0.502331,0.502331,0.502331,0.502331,0.502331 +0.507451,0.507451,0.507451,0.507451,0.507451,0.507451 +0.512571,0.512571,0.512571,0.512571,0.512571,0.512571 +0.517691,0.517691,0.517691,0.517691,0.517691,0.517691 +0.522811,0.522811,0.522811,0.522811,0.522811,0.522811 +0.527931,0.527931,0.527931,0.527931,0.527931,0.527931 +0.533051,0.533051,0.533051,0.533051,0.533051,0.533051 +0.538171,0.538171,0.538171,0.538171,0.538171,0.538171 +0.543291,0.543291,0.543291,0.543291,0.543291,0.543291 +0.548411,0.548411,0.548411,0.548411,0.548411,0.548411 +0.553531,0.553531,0.553531,0.553531,0.553531,0.553531 +0.558651,0.558651,0.558651,0.558651,0.558651,0.558651 +0.563771,0.563771,0.563771,0.563771,0.563771,0.563771 +0.568891,0.568891,0.568891,0.568891,0.568891,0.568891 +0.574011,0.574011,0.574011,0.574011,0.574011,0.574011 +0.579131,0.579131,0.579131,0.579131,0.579131,0.579131 +0.584251,0.584251,0.584251,0.584251,0.584251,0.584251 +0.589371,0.589371,0.589371,0.589371,0.589371,0.589371 +0.594491,0.594491,0.594491,0.594491,0.594491,0.594491 +0.599611,0.599611,0.599611,0.599611,0.599611,0.599611 +0.604731,0.604731,0.604731,0.604731,0.604731,0.604731 +0.609851,0.609851,0.609851,0.609851,0.609851,0.609851 +0.614971,0.614971,0.614971,0.614971,0.614971,0.614971 +0.620091,0.620091,0.620091,0.620091,0.620091,0.620091 +0.625211,0.625211,0.625211,0.625211,0.625211,0.625211 +0.630331,0.630331,0.630331,0.630331,0.630331,0.630331 +0.635451,0.635451,0.635451,0.635451,0.635451,0.635451 +0.640571,0.640571,0.640571,0.640571,0.640571,0.640571 +0.645691,0.645691,0.645691,0.645691,0.645691,0.645691 +0.650811,0.650811,0.650811,0.650811,0.650811,0.650811 +0.655931,0.655931,0.655931,0.655931,0.655931,0.655931 +0.661051,0.661051,0.661051,0.661051,0.661051,0.661051 +0.666171,0.666171,0.666171,0.666171,0.666171,0.666171 +0.671291,0.671291,0.671291,0.671291,0.671291,0.671291 +0.676411,0.676411,0.676411,0.676411,0.676411,0.676411 +0.681531,0.681531,0.681531,0.681531,0.681531,0.681531 +0.686651,0.686651,0.686651,0.686651,0.686651,0.686651 +0.691771,0.691771,0.691771,0.691771,0.691771,0.691771 +0.696891,0.696891,0.696891,0.696891,0.696891,0.696891 +0.702011,0.702011,0.702011,0.702011,0.702011,0.702011 +0.707131,0.707131,0.707131,0.707131,0.707131,0.707131 +0.712251,0.712251,0.712251,0.712251,0.712251,0.712251 +0.717371,0.717371,0.717371,0.717371,0.717371,0.717371 +0.722491,0.722491,0.722491,0.722491,0.722491,0.722491 +0.727611,0.727611,0.727611,0.727611,0.727611,0.727611 +0.732731,0.732731,0.732731,0.732731,0.732731,0.732731 +0.737851,0.737851,0.737851,0.737851,0.737851,0.737851 +0.742971,0.742971,0.742971,0.742971,0.742971,0.742971 +0.748091,0.748091,0.748091,0.748091,0.748091,0.748091 +0.753211,0.753211,0.753211,0.753211,0.753211,0.753211 +0.758331,0.758331,0.758331,0.758331,0.758331,0.758331 +0.763451,0.763451,0.763451,0.763451,0.763451,0.763451 +0.768571,0.768571,0.768571,0.768571,0.768571,0.768571 +0.773691,0.773691,0.773691,0.773691,0.773691,0.773691 +0.778811,0.778811,0.778811,0.778811,0.778811,0.778811 +0.783931,0.783931,0.783931,0.783931,0.783931,0.783931 +0.789051,0.789051,0.789051,0.789051,0.789051,0.789051 +0.794171,0.794171,0.794171,0.794171,0.794171,0.794171 +0.799291,0.799291,0.799291,0.799291,0.799291,0.799291 +0.804411,0.804411,0.804411,0.804411,0.804411,0.804411 +0.809531,0.809531,0.809531,0.809531,0.809531,0.809531 +0.814651,0.814651,0.814651,0.814651,0.814651,0.814651 +0.819771,0.819771,0.819771,0.819771,0.819771,0.819771 +0.824891,0.824891,0.824891,0.824891,0.824891,0.824891 +0.830011,0.830011,0.830011,0.830011,0.830011,0.830011 +0.835131,0.835131,0.835131,0.835131,0.835131,0.835131 +0.840251,0.840251,0.840251,0.840251,0.840251,0.840251 +0.845371,0.845371,0.845371,0.845371,0.845371,0.845371 +0.850491,0.850491,0.850491,0.850491,0.850491,0.850491 +0.855611,0.855611,0.855611,0.855611,0.855611,0.855611 +0.860731,0.860731,0.860731,0.860731,0.860731,0.860731 +0.865851,0.865851,0.865851,0.865851,0.865851,0.865851 +0.870971,0.870971,0.870971,0.870971,0.870971,0.870971 +0.876091,0.876091,0.876091,0.876091,0.876091,0.876091 +0.881211,0.881211,0.881211,0.881211,0.881211,0.881211 +0.886331,0.886331,0.886331,0.886331,0.886331,0.886331 +0.891451,0.891451,0.891451,0.891451,0.891451,0.891451 +0.896571,0.896571,0.896571,0.896571,0.896571,0.896571 +0.901691,0.901691,0.901691,0.901691,0.901691,0.901691 +0.906811,0.906811,0.906811,0.906811,0.906811,0.906811 +0.911931,0.911931,0.911931,0.911931,0.911931,0.911931 +0.917051,0.917051,0.917051,0.917051,0.917051,0.917051 +0.922171,0.922171,0.922171,0.922171,0.922171,0.922171 +0.927291,0.927291,0.927291,0.927291,0.927291,0.927291 +0.932411,0.932411,0.932411,0.932411,0.932411,0.932411 +0.937531,0.937531,0.937531,0.937531,0.937531,0.937531 +0.942651,0.942651,0.942651,0.942651,0.942651,0.942651 +0.947771,0.947771,0.947771,0.947771,0.947771,0.947771 +0.952891,0.952891,0.952891,0.952891,0.952891,0.952891 +0.958011,0.958011,0.958011,0.958011,0.958011,0.958011 +0.963131,0.963131,0.963131,0.963131,0.963131,0.963131 +0.968251,0.968251,0.968251,0.968251,0.968251,0.968251 +0.973371,0.973371,0.973371,0.973371,0.973371,0.973371 +0.978491,0.978491,0.978491,0.978491,0.978491,0.978491 +0.983611,0.983611,0.983611,0.983611,0.983611,0.983611 +0.988731,0.988731,0.988731,0.988731,0.988731,0.988731 +0.993851,0.993851,0.993851,0.993851,0.993851,0.993851 +0.998971,0.998971,0.998971,0.998971,0.998971,0.998971 +1.004091,1.004091,1.004091,1.004091,1.004091,1.004091 +1.009211,1.009211,1.009211,1.009211,1.009211,1.009211 +1.014331,1.014331,1.014331,1.014331,1.014331,1.014331 +1.019451,1.019451,1.019451,1.019451,1.019451,1.019451 +1.024571,1.024571,1.024571,1.024571,1.024571,1.024571 +1.029691,1.029691,1.029691,1.029691,1.029691,1.029691 +1.034811,1.034811,1.034811,1.034811,1.034811,1.034811 +1.039931,1.039931,1.039931,1.039931,1.039931,1.039931 +1.045051,1.045051,1.045051,1.045051,1.045051,1.045051 +1.050171,1.050171,1.050171,1.050171,1.050171,1.050171 +1.055291,1.055291,1.055291,1.055291,1.055291,1.055291 +1.060411,1.060411,1.060411,1.060411,1.060411,1.060411 +1.065531,1.065531,1.065531,1.065531,1.065531,1.065531 +1.070651,1.070651,1.070651,1.070651,1.070651,1.070651 +1.075771,1.075771,1.075771,1.075771,1.075771,1.075771 +1.080891,1.080891,1.080891,1.080891,1.080891,1.080891 +1.086011,1.086011,1.086011,1.086011,1.086011,1.086011 +1.091131,1.091131,1.091131,1.091131,1.091131,1.091131 +1.096251,1.096251,1.096251,1.096251,1.096251,1.096251 +1.101371,1.101371,1.101371,1.101371,1.101371,1.101371 +1.106491,1.106491,1.106491,1.106491,1.106491,1.106491 +1.111611,1.111611,1.111611,1.111611,1.111611,1.111611 +1.116731,1.116731,1.116731,1.116731,1.116731,1.116731 +1.121851,1.121851,1.121851,1.121851,1.121851,1.121851 +1.126971,1.126971,1.126971,1.126971,1.126971,1.126971 +1.132091,1.132091,1.132091,1.132091,1.132091,1.132091 +1.137211,1.137211,1.137211,1.137211,1.137211,1.137211 +1.142331,1.142331,1.142331,1.142331,1.142331,1.142331 +1.147451,1.147451,1.147451,1.147451,1.147451,1.147451 +1.152571,1.152571,1.152571,1.152571,1.152571,1.152571 +1.157691,1.157691,1.157691,1.157691,1.157691,1.157691 +1.162811,1.162811,1.162811,1.162811,1.162811,1.162811 +1.167931,1.167931,1.167931,1.167931,1.167931,1.167931 +1.173051,1.173051,1.173051,1.173051,1.173051,1.173051 +1.178171,1.178171,1.178171,1.178171,1.178171,1.178171 +1.183291,1.183291,1.183291,1.183291,1.183291,1.183291 +1.188411,1.188411,1.188411,1.188411,1.188411,1.188411 +1.193531,1.193531,1.193531,1.193531,1.193531,1.193531 +1.198651,1.198651,1.198651,1.198651,1.198651,1.198651 +1.203771,1.203771,1.203771,1.203771,1.203771,1.203771 +1.208891,1.208891,1.208891,1.208891,1.208891,1.208891 +1.214011,1.214011,1.214011,1.214011,1.214011,1.214011 +1.219131,1.219131,1.219131,1.219131,1.219131,1.219131 +1.224251,1.224251,1.224251,1.224251,1.224251,1.224251 +1.229371,1.229371,1.229371,1.229371,1.229371,1.229371 +1.234491,1.234491,1.234491,1.234491,1.234491,1.234491 +1.239611,1.239611,1.239611,1.239611,1.239611,1.239611 +1.244731,1.244731,1.244731,1.244731,1.244731,1.244731 +1.249851,1.249851,1.249851,1.249851,1.249851,1.249851 +1.254971,1.254971,1.254971,1.254971,1.254971,1.254971 +1.260091,1.260091,1.260091,1.260091,1.260091,1.260091 +1.265211,1.265211,1.265211,1.265211,1.265211,1.265211 +1.270331,1.270331,1.270331,1.270331,1.270331,1.270331 +1.275451,1.275451,1.275451,1.275451,1.275451,1.275451 +1.280571,1.280571,1.280571,1.280571,1.280571,1.280571 +1.285691,1.285691,1.285691,1.285691,1.285691,1.285691 +1.290811,1.290811,1.290811,1.290811,1.290811,1.290811 +1.295931,1.295931,1.295931,1.295931,1.295931,1.295931 +1.301051,1.301051,1.301051,1.301051,1.301051,1.301051 +1.306171,1.306171,1.306171,1.306171,1.306171,1.306171 +1.311291,1.311291,1.311291,1.311291,1.311291,1.311291 +1.316411,1.316411,1.316411,1.316411,1.316411,1.316411 +1.321531,1.321531,1.321531,1.321531,1.321531,1.321531 +1.326651,1.326651,1.326651,1.326651,1.326651,1.326651 +1.331771,1.331771,1.331771,1.331771,1.331771,1.331771 +1.336891,1.336891,1.336891,1.336891,1.336891,1.336891 +1.342011,1.342011,1.342011,1.342011,1.342011,1.342011 +1.347131,1.347131,1.347131,1.347131,1.347131,1.347131 +1.352251,1.352251,1.352251,1.352251,1.352251,1.352251 +1.357371,1.357371,1.357371,1.357371,1.357371,1.357371 +1.362491,1.362491,1.362491,1.362491,1.362491,1.362491 +1.367611,1.367611,1.367611,1.367611,1.367611,1.367611 +1.372731,1.372731,1.372731,1.372731,1.372731,1.372731 +1.377851,1.377851,1.377851,1.377851,1.377851,1.377851 +1.382971,1.382971,1.382971,1.382971,1.382971,1.382971 +1.388091,1.388091,1.388091,1.388091,1.388091,1.388091 +1.393211,1.393211,1.393211,1.393211,1.393211,1.393211 +1.398331,1.398331,1.398331,1.398331,1.398331,1.398331 +1.403451,1.403451,1.403451,1.403451,1.403451,1.403451 +1.408571,1.408571,1.408571,1.408571,1.408571,1.408571 +1.413691,1.413691,1.413691,1.413691,1.413691,1.413691 +1.418811,1.418811,1.418811,1.418811,1.418811,1.418811 +1.423931,1.423931,1.423931,1.423931,1.423931,1.423931 +1.429051,1.429051,1.429051,1.429051,1.429051,1.429051 +1.434171,1.434171,1.434171,1.434171,1.434171,1.434171 +1.439291,1.439291,1.439291,1.439291,1.439291,1.439291 +1.444411,1.444411,1.444411,1.444411,1.444411,1.444411 +1.449531,1.449531,1.449531,1.449531,1.449531,1.449531 +1.454651,1.454651,1.454651,1.454651,1.454651,1.454651 +1.459771,1.459771,1.459771,1.459771,1.459771,1.459771 +1.464891,1.464891,1.464891,1.464891,1.464891,1.464891 +1.470011,1.470011,1.470011,1.470011,1.470011,1.470011 +1.475131,1.475131,1.475131,1.475131,1.475131,1.475131 +1.480251,1.480251,1.480251,1.480251,1.480251,1.480251 +1.485371,1.485371,1.485371,1.485371,1.485371,1.485371 +1.490491,1.490491,1.490491,1.490491,1.490491,1.490491 +1.495611,1.495611,1.495611,1.495611,1.495611,1.495611 +1.500731,1.500731,1.500731,1.500731,1.500731,1.500731 +1.505851,1.505851,1.505851,1.505851,1.505851,1.505851 +1.510971,1.510971,1.510971,1.510971,1.510971,1.510971 +1.516091,1.516091,1.516091,1.516091,1.516091,1.516091 +1.521211,1.521211,1.521211,1.521211,1.521211,1.521211 +1.526331,1.526331,1.526331,1.526331,1.526331,1.526331 +1.531451,1.531451,1.531451,1.531451,1.531451,1.531451 +1.536571,1.536571,1.536571,1.536571,1.536571,1.536571 +1.541691,1.541691,1.541691,1.541691,1.541691,1.541691 +1.546811,1.546811,1.546811,1.546811,1.546811,1.546811 +1.551931,1.551931,1.551931,1.551931,1.551931,1.551931 +1.557051,1.557051,1.557051,1.557051,1.557051,1.557051 +1.562171,1.562171,1.562171,1.562171,1.562171,1.562171 +1.567291,1.567291,1.567291,1.567291,1.567291,1.567291 +1.572411,1.572411,1.572411,1.572411,1.572411,1.572411 +1.577531,1.577531,1.577531,1.577531,1.577531,1.577531 +1.582651,1.582651,1.582651,1.582651,1.582651,1.582651 +1.587771,1.587771,1.587771,1.587771,1.587771,1.587771 +1.592891,1.592891,1.592891,1.592891,1.592891,1.592891 +1.598011,1.598011,1.598011,1.598011,1.598011,1.598011 +1.603131,1.603131,1.603131,1.603131,1.603131,1.603131 +1.608251,1.608251,1.608251,1.608251,1.608251,1.608251 +1.613371,1.613371,1.613371,1.613371,1.613371,1.613371 +1.618491,1.618491,1.618491,1.618491,1.618491,1.618491 +1.623611,1.623611,1.623611,1.623611,1.623611,1.623611 +1.628731,1.628731,1.628731,1.628731,1.628731,1.628731 +1.633851,1.633851,1.633851,1.633851,1.633851,1.633851 +1.638971,1.638971,1.638971,1.638971,1.638971,1.638971 +1.644091,1.644091,1.644091,1.644091,1.644091,1.644091 +1.649211,1.649211,1.649211,1.649211,1.649211,1.649211 +1.654331,1.654331,1.654331,1.654331,1.654331,1.654331 +1.659447,1.659447,1.659447,1.659447,1.659447,1.659447 +1.664545,1.664545,1.664545,1.664545,1.664545,1.664545 +1.66961,1.66961,1.66961,1.66961,1.66961,1.66961 +1.674624,1.674624,1.674624,1.674624,1.674624,1.674624 +1.679573,1.679573,1.679573,1.679573,1.679573,1.679573 +1.684439,1.684439,1.684439,1.684439,1.684439,1.684439 +1.689208,1.689208,1.689208,1.689208,1.689208,1.689208 +1.693862,1.693862,1.693862,1.693862,1.693862,1.693862 +1.698387,1.698387,1.698387,1.698387,1.698387,1.698387 +1.702766,1.702766,1.702766,1.702766,1.702766,1.702766 +1.706983,1.706983,1.706983,1.706983,1.706983,1.706983 +1.711022,1.711022,1.711022,1.711022,1.711022,1.711022 +1.714867,1.714867,1.714867,1.714867,1.714867,1.714867 +1.718502,1.718502,1.718502,1.718502,1.718502,1.718502 +1.721911,1.721911,1.721911,1.721911,1.721911,1.721911 +1.725078,1.725078,1.725078,1.725078,1.725078,1.725078 +1.727987,1.727987,1.727987,1.727987,1.727987,1.727987 +1.730623,1.730623,1.730623,1.730623,1.730623,1.730623 +1.732978,1.732978,1.732978,1.732978,1.732978,1.732978 +1.735067,1.735067,1.735067,1.735067,1.735067,1.735067 +1.736905,1.736905,1.736905,1.736905,1.736905,1.736905 +1.738509,1.738509,1.738509,1.738509,1.738509,1.738509 +1.739894,1.739894,1.739894,1.739894,1.739894,1.739894 +1.741077,1.741077,1.741077,1.741077,1.741077,1.741077 +1.742073,1.742073,1.742073,1.742073,1.742073,1.742073 +1.742899,1.742899,1.742899,1.742899,1.742899,1.742899 +1.743571,1.743571,1.743571,1.743571,1.743571,1.743571 +1.744103,1.744103,1.744103,1.744103,1.744103,1.744103 +1.744514,1.744514,1.744514,1.744514,1.744514,1.744514 +1.744818,1.744818,1.744818,1.744818,1.744818,1.744818 +1.745031,1.745031,1.745031,1.745031,1.745031,1.745031 +1.74517,1.74517,1.74517,1.74517,1.74517,1.74517 +1.74525,1.74525,1.74525,1.74525,1.74525,1.74525 +1.745288,1.745288,1.745288,1.745288,1.745288,1.745288 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745279,1.745279,1.745279,1.745279,1.745279,1.745279 +1.745228,1.745228,1.745228,1.745228,1.745228,1.745228 +1.745129,1.745129,1.745129,1.745129,1.745129,1.745129 +1.744967,1.744967,1.744967,1.744967,1.744967,1.744967 +1.744724,1.744724,1.744724,1.744724,1.744724,1.744724 +1.744385,1.744385,1.744385,1.744385,1.744385,1.744385 +1.743935,1.743935,1.743935,1.743935,1.743935,1.743935 +1.743356,1.743356,1.743356,1.743356,1.743356,1.743356 +1.742633,1.742633,1.742633,1.742633,1.742633,1.742633 +1.741751,1.741751,1.741751,1.741751,1.741751,1.741751 +1.740692,1.740692,1.740692,1.740692,1.740692,1.740692 +1.739441,1.739441,1.739441,1.739441,1.739441,1.739441 +1.737983,1.737983,1.737983,1.737983,1.737983,1.737983 +1.7363,1.7363,1.7363,1.7363,1.7363,1.7363 +1.734377,1.734377,1.734377,1.734377,1.734377,1.734377 +1.732199,1.732199,1.732199,1.732199,1.732199,1.732199 +1.729748,1.729748,1.729748,1.729748,1.729748,1.729748 +1.727017,1.727017,1.727017,1.727017,1.727017,1.727017 +1.724017,1.724017,1.724017,1.724017,1.724017,1.724017 +1.720765,1.720765,1.720765,1.720765,1.720765,1.720765 +1.717276,1.717276,1.717276,1.717276,1.717276,1.717276 +1.713567,1.713567,1.713567,1.713567,1.713567,1.713567 +1.709653,1.709653,1.709653,1.709653,1.709653,1.709653 +1.705551,1.705551,1.705551,1.705551,1.705551,1.705551 +1.701277,1.701277,1.701277,1.701277,1.701277,1.701277 +1.696846,1.696846,1.696846,1.696846,1.696846,1.696846 +1.692275,1.692275,1.692275,1.692275,1.692275,1.692275 +1.687579,1.687579,1.687579,1.687579,1.687579,1.687579 +1.682775,1.682775,1.682775,1.682775,1.682775,1.682775 +1.677879,1.677879,1.677879,1.677879,1.677879,1.677879 +1.672906,1.672906,1.672906,1.672906,1.672906,1.672906 +1.667872,1.667872,1.667872,1.667872,1.667872,1.667872 +1.662794,1.662794,1.662794,1.662794,1.662794,1.662794 +1.657688,1.657688,1.657688,1.657688,1.657688,1.657688 +1.652569,1.652569,1.652569,1.652569,1.652569,1.652569 +1.647449,1.647449,1.647449,1.647449,1.647449,1.647449 +1.642329,1.642329,1.642329,1.642329,1.642329,1.642329 +1.637209,1.637209,1.637209,1.637209,1.637209,1.637209 +1.632089,1.632089,1.632089,1.632089,1.632089,1.632089 +1.626969,1.626969,1.626969,1.626969,1.626969,1.626969 +1.621849,1.621849,1.621849,1.621849,1.621849,1.621849 +1.616729,1.616729,1.616729,1.616729,1.616729,1.616729 +1.611609,1.611609,1.611609,1.611609,1.611609,1.611609 +1.606489,1.606489,1.606489,1.606489,1.606489,1.606489 +1.601369,1.601369,1.601369,1.601369,1.601369,1.601369 +1.596249,1.596249,1.596249,1.596249,1.596249,1.596249 +1.591129,1.591129,1.591129,1.591129,1.591129,1.591129 +1.586009,1.586009,1.586009,1.586009,1.586009,1.586009 +1.580889,1.580889,1.580889,1.580889,1.580889,1.580889 +1.575769,1.575769,1.575769,1.575769,1.575769,1.575769 +1.570649,1.570649,1.570649,1.570649,1.570649,1.570649 +1.565529,1.565529,1.565529,1.565529,1.565529,1.565529 +1.560409,1.560409,1.560409,1.560409,1.560409,1.560409 +1.555289,1.555289,1.555289,1.555289,1.555289,1.555289 +1.550169,1.550169,1.550169,1.550169,1.550169,1.550169 +1.545049,1.545049,1.545049,1.545049,1.545049,1.545049 +1.539929,1.539929,1.539929,1.539929,1.539929,1.539929 +1.534809,1.534809,1.534809,1.534809,1.534809,1.534809 +1.529689,1.529689,1.529689,1.529689,1.529689,1.529689 +1.524569,1.524569,1.524569,1.524569,1.524569,1.524569 +1.519449,1.519449,1.519449,1.519449,1.519449,1.519449 +1.514329,1.514329,1.514329,1.514329,1.514329,1.514329 +1.509209,1.509209,1.509209,1.509209,1.509209,1.509209 +1.504089,1.504089,1.504089,1.504089,1.504089,1.504089 +1.498969,1.498969,1.498969,1.498969,1.498969,1.498969 +1.493849,1.493849,1.493849,1.493849,1.493849,1.493849 +1.488729,1.488729,1.488729,1.488729,1.488729,1.488729 +1.483609,1.483609,1.483609,1.483609,1.483609,1.483609 +1.478489,1.478489,1.478489,1.478489,1.478489,1.478489 +1.473369,1.473369,1.473369,1.473369,1.473369,1.473369 +1.468249,1.468249,1.468249,1.468249,1.468249,1.468249 +1.463129,1.463129,1.463129,1.463129,1.463129,1.463129 +1.458009,1.458009,1.458009,1.458009,1.458009,1.458009 +1.452889,1.452889,1.452889,1.452889,1.452889,1.452889 +1.447769,1.447769,1.447769,1.447769,1.447769,1.447769 +1.442649,1.442649,1.442649,1.442649,1.442649,1.442649 +1.437529,1.437529,1.437529,1.437529,1.437529,1.437529 +1.432409,1.432409,1.432409,1.432409,1.432409,1.432409 +1.427289,1.427289,1.427289,1.427289,1.427289,1.427289 +1.422169,1.422169,1.422169,1.422169,1.422169,1.422169 +1.417049,1.417049,1.417049,1.417049,1.417049,1.417049 +1.411929,1.411929,1.411929,1.411929,1.411929,1.411929 +1.406809,1.406809,1.406809,1.406809,1.406809,1.406809 +1.401689,1.401689,1.401689,1.401689,1.401689,1.401689 +1.396569,1.396569,1.396569,1.396569,1.396569,1.396569 +1.391449,1.391449,1.391449,1.391449,1.391449,1.391449 +1.386329,1.386329,1.386329,1.386329,1.386329,1.386329 +1.381209,1.381209,1.381209,1.381209,1.381209,1.381209 +1.376089,1.376089,1.376089,1.376089,1.376089,1.376089 +1.370969,1.370969,1.370969,1.370969,1.370969,1.370969 +1.365849,1.365849,1.365849,1.365849,1.365849,1.365849 +1.360729,1.360729,1.360729,1.360729,1.360729,1.360729 +1.355609,1.355609,1.355609,1.355609,1.355609,1.355609 +1.350489,1.350489,1.350489,1.350489,1.350489,1.350489 +1.345369,1.345369,1.345369,1.345369,1.345369,1.345369 +1.340249,1.340249,1.340249,1.340249,1.340249,1.340249 +1.335129,1.335129,1.335129,1.335129,1.335129,1.335129 +1.330009,1.330009,1.330009,1.330009,1.330009,1.330009 +1.324889,1.324889,1.324889,1.324889,1.324889,1.324889 +1.319769,1.319769,1.319769,1.319769,1.319769,1.319769 +1.314649,1.314649,1.314649,1.314649,1.314649,1.314649 +1.309529,1.309529,1.309529,1.309529,1.309529,1.309529 +1.304409,1.304409,1.304409,1.304409,1.304409,1.304409 +1.299289,1.299289,1.299289,1.299289,1.299289,1.299289 +1.294169,1.294169,1.294169,1.294169,1.294169,1.294169 +1.289049,1.289049,1.289049,1.289049,1.289049,1.289049 +1.283929,1.283929,1.283929,1.283929,1.283929,1.283929 +1.278809,1.278809,1.278809,1.278809,1.278809,1.278809 +1.273689,1.273689,1.273689,1.273689,1.273689,1.273689 +1.268569,1.268569,1.268569,1.268569,1.268569,1.268569 +1.263449,1.263449,1.263449,1.263449,1.263449,1.263449 +1.258329,1.258329,1.258329,1.258329,1.258329,1.258329 +1.253209,1.253209,1.253209,1.253209,1.253209,1.253209 +1.248089,1.248089,1.248089,1.248089,1.248089,1.248089 +1.242969,1.242969,1.242969,1.242969,1.242969,1.242969 +1.237849,1.237849,1.237849,1.237849,1.237849,1.237849 +1.232729,1.232729,1.232729,1.232729,1.232729,1.232729 +1.227609,1.227609,1.227609,1.227609,1.227609,1.227609 +1.222489,1.222489,1.222489,1.222489,1.222489,1.222489 +1.217369,1.217369,1.217369,1.217369,1.217369,1.217369 +1.212249,1.212249,1.212249,1.212249,1.212249,1.212249 +1.207129,1.207129,1.207129,1.207129,1.207129,1.207129 +1.202009,1.202009,1.202009,1.202009,1.202009,1.202009 +1.196889,1.196889,1.196889,1.196889,1.196889,1.196889 +1.191769,1.191769,1.191769,1.191769,1.191769,1.191769 +1.186649,1.186649,1.186649,1.186649,1.186649,1.186649 +1.181529,1.181529,1.181529,1.181529,1.181529,1.181529 +1.176409,1.176409,1.176409,1.176409,1.176409,1.176409 +1.171289,1.171289,1.171289,1.171289,1.171289,1.171289 +1.166169,1.166169,1.166169,1.166169,1.166169,1.166169 +1.161049,1.161049,1.161049,1.161049,1.161049,1.161049 +1.155929,1.155929,1.155929,1.155929,1.155929,1.155929 +1.150809,1.150809,1.150809,1.150809,1.150809,1.150809 +1.145689,1.145689,1.145689,1.145689,1.145689,1.145689 +1.140569,1.140569,1.140569,1.140569,1.140569,1.140569 +1.135449,1.135449,1.135449,1.135449,1.135449,1.135449 +1.130329,1.130329,1.130329,1.130329,1.130329,1.130329 +1.125209,1.125209,1.125209,1.125209,1.125209,1.125209 +1.120089,1.120089,1.120089,1.120089,1.120089,1.120089 +1.114969,1.114969,1.114969,1.114969,1.114969,1.114969 +1.109849,1.109849,1.109849,1.109849,1.109849,1.109849 +1.104729,1.104729,1.104729,1.104729,1.104729,1.104729 +1.099609,1.099609,1.099609,1.099609,1.099609,1.099609 +1.094489,1.094489,1.094489,1.094489,1.094489,1.094489 +1.089369,1.089369,1.089369,1.089369,1.089369,1.089369 +1.084249,1.084249,1.084249,1.084249,1.084249,1.084249 +1.079129,1.079129,1.079129,1.079129,1.079129,1.079129 +1.074009,1.074009,1.074009,1.074009,1.074009,1.074009 +1.068889,1.068889,1.068889,1.068889,1.068889,1.068889 +1.063769,1.063769,1.063769,1.063769,1.063769,1.063769 +1.058649,1.058649,1.058649,1.058649,1.058649,1.058649 +1.053529,1.053529,1.053529,1.053529,1.053529,1.053529 +1.048409,1.048409,1.048409,1.048409,1.048409,1.048409 +1.043289,1.043289,1.043289,1.043289,1.043289,1.043289 +1.038169,1.038169,1.038169,1.038169,1.038169,1.038169 +1.033049,1.033049,1.033049,1.033049,1.033049,1.033049 +1.027929,1.027929,1.027929,1.027929,1.027929,1.027929 +1.022809,1.022809,1.022809,1.022809,1.022809,1.022809 +1.017689,1.017689,1.017689,1.017689,1.017689,1.017689 +1.012569,1.012569,1.012569,1.012569,1.012569,1.012569 +1.007449,1.007449,1.007449,1.007449,1.007449,1.007449 +1.002329,1.002329,1.002329,1.002329,1.002329,1.002329 +0.997209,0.997209,0.997209,0.997209,0.997209,0.997209 +0.992089,0.992089,0.992089,0.992089,0.992089,0.992089 +0.986969,0.986969,0.986969,0.986969,0.986969,0.986969 +0.981849,0.981849,0.981849,0.981849,0.981849,0.981849 +0.976729,0.976729,0.976729,0.976729,0.976729,0.976729 +0.971609,0.971609,0.971609,0.971609,0.971609,0.971609 +0.966489,0.966489,0.966489,0.966489,0.966489,0.966489 +0.961369,0.961369,0.961369,0.961369,0.961369,0.961369 +0.956249,0.956249,0.956249,0.956249,0.956249,0.956249 +0.951129,0.951129,0.951129,0.951129,0.951129,0.951129 +0.946009,0.946009,0.946009,0.946009,0.946009,0.946009 +0.940889,0.940889,0.940889,0.940889,0.940889,0.940889 +0.935769,0.935769,0.935769,0.935769,0.935769,0.935769 +0.930649,0.930649,0.930649,0.930649,0.930649,0.930649 +0.925529,0.925529,0.925529,0.925529,0.925529,0.925529 +0.920409,0.920409,0.920409,0.920409,0.920409,0.920409 +0.915289,0.915289,0.915289,0.915289,0.915289,0.915289 +0.910169,0.910169,0.910169,0.910169,0.910169,0.910169 +0.905049,0.905049,0.905049,0.905049,0.905049,0.905049 +0.899929,0.899929,0.899929,0.899929,0.899929,0.899929 +0.894809,0.894809,0.894809,0.894809,0.894809,0.894809 +0.889689,0.889689,0.889689,0.889689,0.889689,0.889689 +0.884569,0.884569,0.884569,0.884569,0.884569,0.884569 +0.879449,0.879449,0.879449,0.879449,0.879449,0.879449 +0.874329,0.874329,0.874329,0.874329,0.874329,0.874329 +0.869209,0.869209,0.869209,0.869209,0.869209,0.869209 +0.864089,0.864089,0.864089,0.864089,0.864089,0.864089 +0.858969,0.858969,0.858969,0.858969,0.858969,0.858969 +0.853849,0.853849,0.853849,0.853849,0.853849,0.853849 +0.848729,0.848729,0.848729,0.848729,0.848729,0.848729 +0.843609,0.843609,0.843609,0.843609,0.843609,0.843609 +0.838489,0.838489,0.838489,0.838489,0.838489,0.838489 +0.833369,0.833369,0.833369,0.833369,0.833369,0.833369 +0.828249,0.828249,0.828249,0.828249,0.828249,0.828249 +0.823129,0.823129,0.823129,0.823129,0.823129,0.823129 +0.818009,0.818009,0.818009,0.818009,0.818009,0.818009 +0.812889,0.812889,0.812889,0.812889,0.812889,0.812889 +0.807769,0.807769,0.807769,0.807769,0.807769,0.807769 +0.802649,0.802649,0.802649,0.802649,0.802649,0.802649 +0.797529,0.797529,0.797529,0.797529,0.797529,0.797529 +0.792409,0.792409,0.792409,0.792409,0.792409,0.792409 +0.787289,0.787289,0.787289,0.787289,0.787289,0.787289 +0.782169,0.782169,0.782169,0.782169,0.782169,0.782169 +0.777049,0.777049,0.777049,0.777049,0.777049,0.777049 +0.771929,0.771929,0.771929,0.771929,0.771929,0.771929 +0.766809,0.766809,0.766809,0.766809,0.766809,0.766809 +0.761689,0.761689,0.761689,0.761689,0.761689,0.761689 +0.756569,0.756569,0.756569,0.756569,0.756569,0.756569 +0.751449,0.751449,0.751449,0.751449,0.751449,0.751449 +0.746329,0.746329,0.746329,0.746329,0.746329,0.746329 +0.741209,0.741209,0.741209,0.741209,0.741209,0.741209 +0.736089,0.736089,0.736089,0.736089,0.736089,0.736089 +0.730969,0.730969,0.730969,0.730969,0.730969,0.730969 +0.725849,0.725849,0.725849,0.725849,0.725849,0.725849 +0.720729,0.720729,0.720729,0.720729,0.720729,0.720729 +0.715609,0.715609,0.715609,0.715609,0.715609,0.715609 +0.710489,0.710489,0.710489,0.710489,0.710489,0.710489 +0.705369,0.705369,0.705369,0.705369,0.705369,0.705369 +0.700249,0.700249,0.700249,0.700249,0.700249,0.700249 +0.695129,0.695129,0.695129,0.695129,0.695129,0.695129 +0.690009,0.690009,0.690009,0.690009,0.690009,0.690009 +0.684889,0.684889,0.684889,0.684889,0.684889,0.684889 +0.679769,0.679769,0.679769,0.679769,0.679769,0.679769 +0.674649,0.674649,0.674649,0.674649,0.674649,0.674649 +0.669529,0.669529,0.669529,0.669529,0.669529,0.669529 +0.664409,0.664409,0.664409,0.664409,0.664409,0.664409 +0.659289,0.659289,0.659289,0.659289,0.659289,0.659289 +0.654169,0.654169,0.654169,0.654169,0.654169,0.654169 +0.649049,0.649049,0.649049,0.649049,0.649049,0.649049 +0.643929,0.643929,0.643929,0.643929,0.643929,0.643929 +0.638809,0.638809,0.638809,0.638809,0.638809,0.638809 +0.633689,0.633689,0.633689,0.633689,0.633689,0.633689 +0.628569,0.628569,0.628569,0.628569,0.628569,0.628569 +0.623449,0.623449,0.623449,0.623449,0.623449,0.623449 +0.618329,0.618329,0.618329,0.618329,0.618329,0.618329 +0.613209,0.613209,0.613209,0.613209,0.613209,0.613209 +0.608089,0.608089,0.608089,0.608089,0.608089,0.608089 +0.602969,0.602969,0.602969,0.602969,0.602969,0.602969 +0.597849,0.597849,0.597849,0.597849,0.597849,0.597849 +0.592729,0.592729,0.592729,0.592729,0.592729,0.592729 +0.587609,0.587609,0.587609,0.587609,0.587609,0.587609 +0.582489,0.582489,0.582489,0.582489,0.582489,0.582489 +0.577369,0.577369,0.577369,0.577369,0.577369,0.577369 +0.572249,0.572249,0.572249,0.572249,0.572249,0.572249 +0.567129,0.567129,0.567129,0.567129,0.567129,0.567129 +0.562009,0.562009,0.562009,0.562009,0.562009,0.562009 +0.556889,0.556889,0.556889,0.556889,0.556889,0.556889 +0.551769,0.551769,0.551769,0.551769,0.551769,0.551769 +0.546649,0.546649,0.546649,0.546649,0.546649,0.546649 +0.541529,0.541529,0.541529,0.541529,0.541529,0.541529 +0.536409,0.536409,0.536409,0.536409,0.536409,0.536409 +0.531289,0.531289,0.531289,0.531289,0.531289,0.531289 +0.526169,0.526169,0.526169,0.526169,0.526169,0.526169 +0.521049,0.521049,0.521049,0.521049,0.521049,0.521049 +0.515929,0.515929,0.515929,0.515929,0.515929,0.515929 +0.510809,0.510809,0.510809,0.510809,0.510809,0.510809 +0.505689,0.505689,0.505689,0.505689,0.505689,0.505689 +0.500569,0.500569,0.500569,0.500569,0.500569,0.500569 +0.495449,0.495449,0.495449,0.495449,0.495449,0.495449 +0.490329,0.490329,0.490329,0.490329,0.490329,0.490329 +0.485209,0.485209,0.485209,0.485209,0.485209,0.485209 +0.480089,0.480089,0.480089,0.480089,0.480089,0.480089 +0.474969,0.474969,0.474969,0.474969,0.474969,0.474969 +0.469849,0.469849,0.469849,0.469849,0.469849,0.469849 +0.464729,0.464729,0.464729,0.464729,0.464729,0.464729 +0.459609,0.459609,0.459609,0.459609,0.459609,0.459609 +0.454489,0.454489,0.454489,0.454489,0.454489,0.454489 +0.449369,0.449369,0.449369,0.449369,0.449369,0.449369 +0.444249,0.444249,0.444249,0.444249,0.444249,0.444249 +0.439129,0.439129,0.439129,0.439129,0.439129,0.439129 +0.434009,0.434009,0.434009,0.434009,0.434009,0.434009 +0.428889,0.428889,0.428889,0.428889,0.428889,0.428889 +0.423769,0.423769,0.423769,0.423769,0.423769,0.423769 +0.418649,0.418649,0.418649,0.418649,0.418649,0.418649 +0.413529,0.413529,0.413529,0.413529,0.413529,0.413529 +0.408409,0.408409,0.408409,0.408409,0.408409,0.408409 +0.403289,0.403289,0.403289,0.403289,0.403289,0.403289 +0.398169,0.398169,0.398169,0.398169,0.398169,0.398169 +0.393049,0.393049,0.393049,0.393049,0.393049,0.393049 +0.387929,0.387929,0.387929,0.387929,0.387929,0.387929 +0.382809,0.382809,0.382809,0.382809,0.382809,0.382809 +0.377689,0.377689,0.377689,0.377689,0.377689,0.377689 +0.372569,0.372569,0.372569,0.372569,0.372569,0.372569 +0.367449,0.367449,0.367449,0.367449,0.367449,0.367449 +0.362329,0.362329,0.362329,0.362329,0.362329,0.362329 +0.357209,0.357209,0.357209,0.357209,0.357209,0.357209 +0.352089,0.352089,0.352089,0.352089,0.352089,0.352089 +0.346969,0.346969,0.346969,0.346969,0.346969,0.346969 +0.341849,0.341849,0.341849,0.341849,0.341849,0.341849 +0.336729,0.336729,0.336729,0.336729,0.336729,0.336729 +0.331609,0.331609,0.331609,0.331609,0.331609,0.331609 +0.326489,0.326489,0.326489,0.326489,0.326489,0.326489 +0.321369,0.321369,0.321369,0.321369,0.321369,0.321369 +0.316249,0.316249,0.316249,0.316249,0.316249,0.316249 +0.311129,0.311129,0.311129,0.311129,0.311129,0.311129 +0.306009,0.306009,0.306009,0.306009,0.306009,0.306009 +0.300889,0.300889,0.300889,0.300889,0.300889,0.300889 +0.295769,0.295769,0.295769,0.295769,0.295769,0.295769 +0.290649,0.290649,0.290649,0.290649,0.290649,0.290649 +0.285529,0.285529,0.285529,0.285529,0.285529,0.285529 +0.280409,0.280409,0.280409,0.280409,0.280409,0.280409 +0.275289,0.275289,0.275289,0.275289,0.275289,0.275289 +0.270169,0.270169,0.270169,0.270169,0.270169,0.270169 +0.265049,0.265049,0.265049,0.265049,0.265049,0.265049 +0.259929,0.259929,0.259929,0.259929,0.259929,0.259929 +0.254809,0.254809,0.254809,0.254809,0.254809,0.254809 +0.249689,0.249689,0.249689,0.249689,0.249689,0.249689 +0.244569,0.244569,0.244569,0.244569,0.244569,0.244569 +0.239449,0.239449,0.239449,0.239449,0.239449,0.239449 +0.234329,0.234329,0.234329,0.234329,0.234329,0.234329 +0.229209,0.229209,0.229209,0.229209,0.229209,0.229209 +0.224089,0.224089,0.224089,0.224089,0.224089,0.224089 +0.218969,0.218969,0.218969,0.218969,0.218969,0.218969 +0.213849,0.213849,0.213849,0.213849,0.213849,0.213849 +0.208729,0.208729,0.208729,0.208729,0.208729,0.208729 +0.203609,0.203609,0.203609,0.203609,0.203609,0.203609 +0.198489,0.198489,0.198489,0.198489,0.198489,0.198489 +0.193369,0.193369,0.193369,0.193369,0.193369,0.193369 +0.188249,0.188249,0.188249,0.188249,0.188249,0.188249 +0.183129,0.183129,0.183129,0.183129,0.183129,0.183129 +0.178009,0.178009,0.178009,0.178009,0.178009,0.178009 +0.172889,0.172889,0.172889,0.172889,0.172889,0.172889 +0.167769,0.167769,0.167769,0.167769,0.167769,0.167769 +0.162649,0.162649,0.162649,0.162649,0.162649,0.162649 +0.157529,0.157529,0.157529,0.157529,0.157529,0.157529 +0.152409,0.152409,0.152409,0.152409,0.152409,0.152409 +0.147289,0.147289,0.147289,0.147289,0.147289,0.147289 +0.142169,0.142169,0.142169,0.142169,0.142169,0.142169 +0.137049,0.137049,0.137049,0.137049,0.137049,0.137049 +0.131929,0.131929,0.131929,0.131929,0.131929,0.131929 +0.126809,0.126809,0.126809,0.126809,0.126809,0.126809 +0.121689,0.121689,0.121689,0.121689,0.121689,0.121689 +0.116569,0.116569,0.116569,0.116569,0.116569,0.116569 +0.111449,0.111449,0.111449,0.111449,0.111449,0.111449 +0.106329,0.106329,0.106329,0.106329,0.106329,0.106329 +0.101209,0.101209,0.101209,0.101209,0.101209,0.101209 +0.096089,0.096089,0.096089,0.096089,0.096089,0.096089 +0.090969,0.090969,0.090969,0.090969,0.090969,0.090969 +0.085853,0.085853,0.085853,0.085853,0.085853,0.085853 +0.080755,0.080755,0.080755,0.080755,0.080755,0.080755 +0.07569,0.07569,0.07569,0.07569,0.07569,0.07569 +0.070676,0.070676,0.070676,0.070676,0.070676,0.070676 +0.065727,0.065727,0.065727,0.065727,0.065727,0.065727 +0.060861,0.060861,0.060861,0.060861,0.060861,0.060861 +0.056092,0.056092,0.056092,0.056092,0.056092,0.056092 +0.051438,0.051438,0.051438,0.051438,0.051438,0.051438 +0.046913,0.046913,0.046913,0.046913,0.046913,0.046913 +0.042534,0.042534,0.042534,0.042534,0.042534,0.042534 +0.038317,0.038317,0.038317,0.038317,0.038317,0.038317 +0.034278,0.034278,0.034278,0.034278,0.034278,0.034278 +0.030433,0.030433,0.030433,0.030433,0.030433,0.030433 +0.026798,0.026798,0.026798,0.026798,0.026798,0.026798 +0.023389,0.023389,0.023389,0.023389,0.023389,0.023389 +0.020222,0.020222,0.020222,0.020222,0.020222,0.020222 +0.017313,0.017313,0.017313,0.017313,0.017313,0.017313 +0.014677,0.014677,0.014677,0.014677,0.014677,0.014677 +0.012322,0.012322,0.012322,0.012322,0.012322,0.012322 +0.010233,0.010233,0.010233,0.010233,0.010233,0.010233 +0.008395,0.008395,0.008395,0.008395,0.008395,0.008395 +0.006791,0.006791,0.006791,0.006791,0.006791,0.006791 +0.005406,0.005406,0.005406,0.005406,0.005406,0.005406 +0.004223,0.004223,0.004223,0.004223,0.004223,0.004223 +0.003227,0.003227,0.003227,0.003227,0.003227,0.003227 +0.002401,0.002401,0.002401,0.002401,0.002401,0.002401 +0.001729,0.001729,0.001729,0.001729,0.001729,0.001729 +0.001197,0.001197,0.001197,0.001197,0.001197,0.001197 +0.000786,0.000786,0.000786,0.000786,0.000786,0.000786 +0.000482,0.000482,0.000482,0.000482,0.000482,0.000482 +0.000269,0.000269,0.000269,0.000269,0.000269,0.000269 +0.00013,0.00013,0.00013,0.00013,0.00013,0.00013 +0.00005,0.00005,0.00005,0.00005,0.00005,0.00005 +0.000012,0.000012,0.000012,0.000012,0.000012,0.000012 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000021,-0.000021,-0.000021,-0.000021,-0.000021,-0.000021 +-0.000072,-0.000072,-0.000072,-0.000072,-0.000072,-0.000072 +-0.000171,-0.000171,-0.000171,-0.000171,-0.000171,-0.000171 +-0.000333,-0.000333,-0.000333,-0.000333,-0.000333,-0.000333 +-0.000576,-0.000576,-0.000576,-0.000576,-0.000576,-0.000576 +-0.000915,-0.000915,-0.000915,-0.000915,-0.000915,-0.000915 +-0.001365,-0.001365,-0.001365,-0.001365,-0.001365,-0.001365 +-0.001944,-0.001944,-0.001944,-0.001944,-0.001944,-0.001944 +-0.002667,-0.002667,-0.002667,-0.002667,-0.002667,-0.002667 +-0.003549,-0.003549,-0.003549,-0.003549,-0.003549,-0.003549 +-0.004608,-0.004608,-0.004608,-0.004608,-0.004608,-0.004608 +-0.005859,-0.005859,-0.005859,-0.005859,-0.005859,-0.005859 +-0.007317,-0.007317,-0.007317,-0.007317,-0.007317,-0.007317 +-0.009,-0.009,-0.009,-0.009,-0.009,-0.009 +-0.010923,-0.010923,-0.010923,-0.010923,-0.010923,-0.010923 +-0.013101,-0.013101,-0.013101,-0.013101,-0.013101,-0.013101 +-0.015552,-0.015552,-0.015552,-0.015552,-0.015552,-0.015552 +-0.018283,-0.018283,-0.018283,-0.018283,-0.018283,-0.018283 +-0.021283,-0.021283,-0.021283,-0.021283,-0.021283,-0.021283 +-0.024535,-0.024535,-0.024535,-0.024535,-0.024535,-0.024535 +-0.028024,-0.028024,-0.028024,-0.028024,-0.028024,-0.028024 +-0.031733,-0.031733,-0.031733,-0.031733,-0.031733,-0.031733 +-0.035647,-0.035647,-0.035647,-0.035647,-0.035647,-0.035647 +-0.039749,-0.039749,-0.039749,-0.039749,-0.039749,-0.039749 +-0.044023,-0.044023,-0.044023,-0.044023,-0.044023,-0.044023 +-0.048454,-0.048454,-0.048454,-0.048454,-0.048454,-0.048454 +-0.053025,-0.053025,-0.053025,-0.053025,-0.053025,-0.053025 +-0.057721,-0.057721,-0.057721,-0.057721,-0.057721,-0.057721 +-0.062525,-0.062525,-0.062525,-0.062525,-0.062525,-0.062525 +-0.067421,-0.067421,-0.067421,-0.067421,-0.067421,-0.067421 +-0.072394,-0.072394,-0.072394,-0.072394,-0.072394,-0.072394 +-0.077428,-0.077428,-0.077428,-0.077428,-0.077428,-0.077428 +-0.082506,-0.082506,-0.082506,-0.082506,-0.082506,-0.082506 +-0.087612,-0.087612,-0.087612,-0.087612,-0.087612,-0.087612 +-0.092731,-0.092731,-0.092731,-0.092731,-0.092731,-0.092731 +-0.097851,-0.097851,-0.097851,-0.097851,-0.097851,-0.097851 +-0.102971,-0.102971,-0.102971,-0.102971,-0.102971,-0.102971 +-0.108091,-0.108091,-0.108091,-0.108091,-0.108091,-0.108091 +-0.113211,-0.113211,-0.113211,-0.113211,-0.113211,-0.113211 +-0.118331,-0.118331,-0.118331,-0.118331,-0.118331,-0.118331 +-0.123451,-0.123451,-0.123451,-0.123451,-0.123451,-0.123451 +-0.128571,-0.128571,-0.128571,-0.128571,-0.128571,-0.128571 +-0.133691,-0.133691,-0.133691,-0.133691,-0.133691,-0.133691 +-0.138811,-0.138811,-0.138811,-0.138811,-0.138811,-0.138811 +-0.143931,-0.143931,-0.143931,-0.143931,-0.143931,-0.143931 +-0.149051,-0.149051,-0.149051,-0.149051,-0.149051,-0.149051 +-0.154171,-0.154171,-0.154171,-0.154171,-0.154171,-0.154171 +-0.159291,-0.159291,-0.159291,-0.159291,-0.159291,-0.159291 +-0.164411,-0.164411,-0.164411,-0.164411,-0.164411,-0.164411 +-0.169531,-0.169531,-0.169531,-0.169531,-0.169531,-0.169531 +-0.174651,-0.174651,-0.174651,-0.174651,-0.174651,-0.174651 +-0.179771,-0.179771,-0.179771,-0.179771,-0.179771,-0.179771 +-0.184891,-0.184891,-0.184891,-0.184891,-0.184891,-0.184891 +-0.190011,-0.190011,-0.190011,-0.190011,-0.190011,-0.190011 +-0.195131,-0.195131,-0.195131,-0.195131,-0.195131,-0.195131 +-0.200251,-0.200251,-0.200251,-0.200251,-0.200251,-0.200251 +-0.205371,-0.205371,-0.205371,-0.205371,-0.205371,-0.205371 +-0.210491,-0.210491,-0.210491,-0.210491,-0.210491,-0.210491 +-0.215611,-0.215611,-0.215611,-0.215611,-0.215611,-0.215611 +-0.220731,-0.220731,-0.220731,-0.220731,-0.220731,-0.220731 +-0.225851,-0.225851,-0.225851,-0.225851,-0.225851,-0.225851 +-0.230971,-0.230971,-0.230971,-0.230971,-0.230971,-0.230971 +-0.236091,-0.236091,-0.236091,-0.236091,-0.236091,-0.236091 +-0.241211,-0.241211,-0.241211,-0.241211,-0.241211,-0.241211 +-0.246331,-0.246331,-0.246331,-0.246331,-0.246331,-0.246331 +-0.251451,-0.251451,-0.251451,-0.251451,-0.251451,-0.251451 +-0.256571,-0.256571,-0.256571,-0.256571,-0.256571,-0.256571 +-0.261691,-0.261691,-0.261691,-0.261691,-0.261691,-0.261691 +-0.266811,-0.266811,-0.266811,-0.266811,-0.266811,-0.266811 +-0.271931,-0.271931,-0.271931,-0.271931,-0.271931,-0.271931 +-0.277051,-0.277051,-0.277051,-0.277051,-0.277051,-0.277051 +-0.282171,-0.282171,-0.282171,-0.282171,-0.282171,-0.282171 +-0.287291,-0.287291,-0.287291,-0.287291,-0.287291,-0.287291 +-0.292411,-0.292411,-0.292411,-0.292411,-0.292411,-0.292411 +-0.297531,-0.297531,-0.297531,-0.297531,-0.297531,-0.297531 +-0.302651,-0.302651,-0.302651,-0.302651,-0.302651,-0.302651 +-0.307771,-0.307771,-0.307771,-0.307771,-0.307771,-0.307771 +-0.312891,-0.312891,-0.312891,-0.312891,-0.312891,-0.312891 +-0.318011,-0.318011,-0.318011,-0.318011,-0.318011,-0.318011 +-0.323131,-0.323131,-0.323131,-0.323131,-0.323131,-0.323131 +-0.328251,-0.328251,-0.328251,-0.328251,-0.328251,-0.328251 +-0.333371,-0.333371,-0.333371,-0.333371,-0.333371,-0.333371 +-0.338491,-0.338491,-0.338491,-0.338491,-0.338491,-0.338491 +-0.343611,-0.343611,-0.343611,-0.343611,-0.343611,-0.343611 +-0.348731,-0.348731,-0.348731,-0.348731,-0.348731,-0.348731 +-0.353851,-0.353851,-0.353851,-0.353851,-0.353851,-0.353851 +-0.358971,-0.358971,-0.358971,-0.358971,-0.358971,-0.358971 +-0.364091,-0.364091,-0.364091,-0.364091,-0.364091,-0.364091 +-0.369211,-0.369211,-0.369211,-0.369211,-0.369211,-0.369211 +-0.374331,-0.374331,-0.374331,-0.374331,-0.374331,-0.374331 +-0.379451,-0.379451,-0.379451,-0.379451,-0.379451,-0.379451 +-0.384571,-0.384571,-0.384571,-0.384571,-0.384571,-0.384571 +-0.389691,-0.389691,-0.389691,-0.389691,-0.389691,-0.389691 +-0.394811,-0.394811,-0.394811,-0.394811,-0.394811,-0.394811 +-0.399931,-0.399931,-0.399931,-0.399931,-0.399931,-0.399931 +-0.405051,-0.405051,-0.405051,-0.405051,-0.405051,-0.405051 +-0.410171,-0.410171,-0.410171,-0.410171,-0.410171,-0.410171 +-0.415291,-0.415291,-0.415291,-0.415291,-0.415291,-0.415291 +-0.420411,-0.420411,-0.420411,-0.420411,-0.420411,-0.420411 +-0.425531,-0.425531,-0.425531,-0.425531,-0.425531,-0.425531 +-0.430651,-0.430651,-0.430651,-0.430651,-0.430651,-0.430651 +-0.435771,-0.435771,-0.435771,-0.435771,-0.435771,-0.435771 +-0.440891,-0.440891,-0.440891,-0.440891,-0.440891,-0.440891 +-0.446011,-0.446011,-0.446011,-0.446011,-0.446011,-0.446011 +-0.451131,-0.451131,-0.451131,-0.451131,-0.451131,-0.451131 +-0.456251,-0.456251,-0.456251,-0.456251,-0.456251,-0.456251 +-0.461371,-0.461371,-0.461371,-0.461371,-0.461371,-0.461371 +-0.466491,-0.466491,-0.466491,-0.466491,-0.466491,-0.466491 +-0.471611,-0.471611,-0.471611,-0.471611,-0.471611,-0.471611 +-0.476731,-0.476731,-0.476731,-0.476731,-0.476731,-0.476731 +-0.481851,-0.481851,-0.481851,-0.481851,-0.481851,-0.481851 +-0.486971,-0.486971,-0.486971,-0.486971,-0.486971,-0.486971 +-0.492091,-0.492091,-0.492091,-0.492091,-0.492091,-0.492091 +-0.497211,-0.497211,-0.497211,-0.497211,-0.497211,-0.497211 +-0.502331,-0.502331,-0.502331,-0.502331,-0.502331,-0.502331 +-0.507451,-0.507451,-0.507451,-0.507451,-0.507451,-0.507451 +-0.512571,-0.512571,-0.512571,-0.512571,-0.512571,-0.512571 +-0.517691,-0.517691,-0.517691,-0.517691,-0.517691,-0.517691 +-0.522811,-0.522811,-0.522811,-0.522811,-0.522811,-0.522811 +-0.527931,-0.527931,-0.527931,-0.527931,-0.527931,-0.527931 +-0.533051,-0.533051,-0.533051,-0.533051,-0.533051,-0.533051 +-0.538171,-0.538171,-0.538171,-0.538171,-0.538171,-0.538171 +-0.543291,-0.543291,-0.543291,-0.543291,-0.543291,-0.543291 +-0.548411,-0.548411,-0.548411,-0.548411,-0.548411,-0.548411 +-0.553531,-0.553531,-0.553531,-0.553531,-0.553531,-0.553531 +-0.558651,-0.558651,-0.558651,-0.558651,-0.558651,-0.558651 +-0.563771,-0.563771,-0.563771,-0.563771,-0.563771,-0.563771 +-0.568891,-0.568891,-0.568891,-0.568891,-0.568891,-0.568891 +-0.574011,-0.574011,-0.574011,-0.574011,-0.574011,-0.574011 +-0.579131,-0.579131,-0.579131,-0.579131,-0.579131,-0.579131 +-0.584251,-0.584251,-0.584251,-0.584251,-0.584251,-0.584251 +-0.589371,-0.589371,-0.589371,-0.589371,-0.589371,-0.589371 +-0.594491,-0.594491,-0.594491,-0.594491,-0.594491,-0.594491 +-0.599611,-0.599611,-0.599611,-0.599611,-0.599611,-0.599611 +-0.604731,-0.604731,-0.604731,-0.604731,-0.604731,-0.604731 +-0.609851,-0.609851,-0.609851,-0.609851,-0.609851,-0.609851 +-0.614971,-0.614971,-0.614971,-0.614971,-0.614971,-0.614971 +-0.620091,-0.620091,-0.620091,-0.620091,-0.620091,-0.620091 +-0.625211,-0.625211,-0.625211,-0.625211,-0.625211,-0.625211 +-0.630331,-0.630331,-0.630331,-0.630331,-0.630331,-0.630331 +-0.635451,-0.635451,-0.635451,-0.635451,-0.635451,-0.635451 +-0.640571,-0.640571,-0.640571,-0.640571,-0.640571,-0.640571 +-0.645691,-0.645691,-0.645691,-0.645691,-0.645691,-0.645691 +-0.650811,-0.650811,-0.650811,-0.650811,-0.650811,-0.650811 +-0.655931,-0.655931,-0.655931,-0.655931,-0.655931,-0.655931 +-0.661051,-0.661051,-0.661051,-0.661051,-0.661051,-0.661051 +-0.666171,-0.666171,-0.666171,-0.666171,-0.666171,-0.666171 +-0.671291,-0.671291,-0.671291,-0.671291,-0.671291,-0.671291 +-0.676411,-0.676411,-0.676411,-0.676411,-0.676411,-0.676411 +-0.681531,-0.681531,-0.681531,-0.681531,-0.681531,-0.681531 +-0.686651,-0.686651,-0.686651,-0.686651,-0.686651,-0.686651 +-0.691771,-0.691771,-0.691771,-0.691771,-0.691771,-0.691771 +-0.696891,-0.696891,-0.696891,-0.696891,-0.696891,-0.696891 +-0.702011,-0.702011,-0.702011,-0.702011,-0.702011,-0.702011 +-0.707131,-0.707131,-0.707131,-0.707131,-0.707131,-0.707131 +-0.712251,-0.712251,-0.712251,-0.712251,-0.712251,-0.712251 +-0.717371,-0.717371,-0.717371,-0.717371,-0.717371,-0.717371 +-0.722491,-0.722491,-0.722491,-0.722491,-0.722491,-0.722491 +-0.727611,-0.727611,-0.727611,-0.727611,-0.727611,-0.727611 +-0.732731,-0.732731,-0.732731,-0.732731,-0.732731,-0.732731 +-0.737851,-0.737851,-0.737851,-0.737851,-0.737851,-0.737851 +-0.742971,-0.742971,-0.742971,-0.742971,-0.742971,-0.742971 +-0.748091,-0.748091,-0.748091,-0.748091,-0.748091,-0.748091 +-0.753211,-0.753211,-0.753211,-0.753211,-0.753211,-0.753211 +-0.758331,-0.758331,-0.758331,-0.758331,-0.758331,-0.758331 +-0.763451,-0.763451,-0.763451,-0.763451,-0.763451,-0.763451 +-0.768571,-0.768571,-0.768571,-0.768571,-0.768571,-0.768571 +-0.773691,-0.773691,-0.773691,-0.773691,-0.773691,-0.773691 +-0.778811,-0.778811,-0.778811,-0.778811,-0.778811,-0.778811 +-0.783931,-0.783931,-0.783931,-0.783931,-0.783931,-0.783931 +-0.789051,-0.789051,-0.789051,-0.789051,-0.789051,-0.789051 +-0.794171,-0.794171,-0.794171,-0.794171,-0.794171,-0.794171 +-0.799291,-0.799291,-0.799291,-0.799291,-0.799291,-0.799291 +-0.804411,-0.804411,-0.804411,-0.804411,-0.804411,-0.804411 +-0.809531,-0.809531,-0.809531,-0.809531,-0.809531,-0.809531 +-0.814651,-0.814651,-0.814651,-0.814651,-0.814651,-0.814651 +-0.819771,-0.819771,-0.819771,-0.819771,-0.819771,-0.819771 +-0.824891,-0.824891,-0.824891,-0.824891,-0.824891,-0.824891 +-0.830011,-0.830011,-0.830011,-0.830011,-0.830011,-0.830011 +-0.835131,-0.835131,-0.835131,-0.835131,-0.835131,-0.835131 +-0.840251,-0.840251,-0.840251,-0.840251,-0.840251,-0.840251 +-0.845371,-0.845371,-0.845371,-0.845371,-0.845371,-0.845371 +-0.850491,-0.850491,-0.850491,-0.850491,-0.850491,-0.850491 +-0.855611,-0.855611,-0.855611,-0.855611,-0.855611,-0.855611 +-0.860731,-0.860731,-0.860731,-0.860731,-0.860731,-0.860731 +-0.865851,-0.865851,-0.865851,-0.865851,-0.865851,-0.865851 +-0.870971,-0.870971,-0.870971,-0.870971,-0.870971,-0.870971 +-0.876091,-0.876091,-0.876091,-0.876091,-0.876091,-0.876091 +-0.881211,-0.881211,-0.881211,-0.881211,-0.881211,-0.881211 +-0.886331,-0.886331,-0.886331,-0.886331,-0.886331,-0.886331 +-0.891451,-0.891451,-0.891451,-0.891451,-0.891451,-0.891451 +-0.896571,-0.896571,-0.896571,-0.896571,-0.896571,-0.896571 +-0.901691,-0.901691,-0.901691,-0.901691,-0.901691,-0.901691 +-0.906811,-0.906811,-0.906811,-0.906811,-0.906811,-0.906811 +-0.911931,-0.911931,-0.911931,-0.911931,-0.911931,-0.911931 +-0.917051,-0.917051,-0.917051,-0.917051,-0.917051,-0.917051 +-0.922171,-0.922171,-0.922171,-0.922171,-0.922171,-0.922171 +-0.927291,-0.927291,-0.927291,-0.927291,-0.927291,-0.927291 +-0.932411,-0.932411,-0.932411,-0.932411,-0.932411,-0.932411 +-0.937531,-0.937531,-0.937531,-0.937531,-0.937531,-0.937531 +-0.942651,-0.942651,-0.942651,-0.942651,-0.942651,-0.942651 +-0.947771,-0.947771,-0.947771,-0.947771,-0.947771,-0.947771 +-0.952891,-0.952891,-0.952891,-0.952891,-0.952891,-0.952891 +-0.958011,-0.958011,-0.958011,-0.958011,-0.958011,-0.958011 +-0.963131,-0.963131,-0.963131,-0.963131,-0.963131,-0.963131 +-0.968251,-0.968251,-0.968251,-0.968251,-0.968251,-0.968251 +-0.973371,-0.973371,-0.973371,-0.973371,-0.973371,-0.973371 +-0.978491,-0.978491,-0.978491,-0.978491,-0.978491,-0.978491 +-0.983611,-0.983611,-0.983611,-0.983611,-0.983611,-0.983611 +-0.988731,-0.988731,-0.988731,-0.988731,-0.988731,-0.988731 +-0.993851,-0.993851,-0.993851,-0.993851,-0.993851,-0.993851 +-0.998971,-0.998971,-0.998971,-0.998971,-0.998971,-0.998971 +-1.004091,-1.004091,-1.004091,-1.004091,-1.004091,-1.004091 +-1.009211,-1.009211,-1.009211,-1.009211,-1.009211,-1.009211 +-1.014331,-1.014331,-1.014331,-1.014331,-1.014331,-1.014331 +-1.019451,-1.019451,-1.019451,-1.019451,-1.019451,-1.019451 +-1.024571,-1.024571,-1.024571,-1.024571,-1.024571,-1.024571 +-1.029691,-1.029691,-1.029691,-1.029691,-1.029691,-1.029691 +-1.034811,-1.034811,-1.034811,-1.034811,-1.034811,-1.034811 +-1.039931,-1.039931,-1.039931,-1.039931,-1.039931,-1.039931 +-1.045051,-1.045051,-1.045051,-1.045051,-1.045051,-1.045051 +-1.050171,-1.050171,-1.050171,-1.050171,-1.050171,-1.050171 +-1.055291,-1.055291,-1.055291,-1.055291,-1.055291,-1.055291 +-1.060411,-1.060411,-1.060411,-1.060411,-1.060411,-1.060411 +-1.065531,-1.065531,-1.065531,-1.065531,-1.065531,-1.065531 +-1.070651,-1.070651,-1.070651,-1.070651,-1.070651,-1.070651 +-1.075771,-1.075771,-1.075771,-1.075771,-1.075771,-1.075771 +-1.080891,-1.080891,-1.080891,-1.080891,-1.080891,-1.080891 +-1.086011,-1.086011,-1.086011,-1.086011,-1.086011,-1.086011 +-1.091131,-1.091131,-1.091131,-1.091131,-1.091131,-1.091131 +-1.096251,-1.096251,-1.096251,-1.096251,-1.096251,-1.096251 +-1.101371,-1.101371,-1.101371,-1.101371,-1.101371,-1.101371 +-1.106491,-1.106491,-1.106491,-1.106491,-1.106491,-1.106491 +-1.111611,-1.111611,-1.111611,-1.111611,-1.111611,-1.111611 +-1.116731,-1.116731,-1.116731,-1.116731,-1.116731,-1.116731 +-1.121851,-1.121851,-1.121851,-1.121851,-1.121851,-1.121851 +-1.126971,-1.126971,-1.126971,-1.126971,-1.126971,-1.126971 +-1.132091,-1.132091,-1.132091,-1.132091,-1.132091,-1.132091 +-1.137211,-1.137211,-1.137211,-1.137211,-1.137211,-1.137211 +-1.142331,-1.142331,-1.142331,-1.142331,-1.142331,-1.142331 +-1.147451,-1.147451,-1.147451,-1.147451,-1.147451,-1.147451 +-1.152571,-1.152571,-1.152571,-1.152571,-1.152571,-1.152571 +-1.157691,-1.157691,-1.157691,-1.157691,-1.157691,-1.157691 +-1.162811,-1.162811,-1.162811,-1.162811,-1.162811,-1.162811 +-1.167931,-1.167931,-1.167931,-1.167931,-1.167931,-1.167931 +-1.173051,-1.173051,-1.173051,-1.173051,-1.173051,-1.173051 +-1.178171,-1.178171,-1.178171,-1.178171,-1.178171,-1.178171 +-1.183291,-1.183291,-1.183291,-1.183291,-1.183291,-1.183291 +-1.188411,-1.188411,-1.188411,-1.188411,-1.188411,-1.188411 +-1.193531,-1.193531,-1.193531,-1.193531,-1.193531,-1.193531 +-1.198651,-1.198651,-1.198651,-1.198651,-1.198651,-1.198651 +-1.203771,-1.203771,-1.203771,-1.203771,-1.203771,-1.203771 +-1.208891,-1.208891,-1.208891,-1.208891,-1.208891,-1.208891 +-1.214011,-1.214011,-1.214011,-1.214011,-1.214011,-1.214011 +-1.219131,-1.219131,-1.219131,-1.219131,-1.219131,-1.219131 +-1.224251,-1.224251,-1.224251,-1.224251,-1.224251,-1.224251 +-1.229371,-1.229371,-1.229371,-1.229371,-1.229371,-1.229371 +-1.234491,-1.234491,-1.234491,-1.234491,-1.234491,-1.234491 +-1.239611,-1.239611,-1.239611,-1.239611,-1.239611,-1.239611 +-1.244731,-1.244731,-1.244731,-1.244731,-1.244731,-1.244731 +-1.249851,-1.249851,-1.249851,-1.249851,-1.249851,-1.249851 +-1.254971,-1.254971,-1.254971,-1.254971,-1.254971,-1.254971 +-1.260091,-1.260091,-1.260091,-1.260091,-1.260091,-1.260091 +-1.265211,-1.265211,-1.265211,-1.265211,-1.265211,-1.265211 +-1.270331,-1.270331,-1.270331,-1.270331,-1.270331,-1.270331 +-1.275451,-1.275451,-1.275451,-1.275451,-1.275451,-1.275451 +-1.280571,-1.280571,-1.280571,-1.280571,-1.280571,-1.280571 +-1.285691,-1.285691,-1.285691,-1.285691,-1.285691,-1.285691 +-1.290811,-1.290811,-1.290811,-1.290811,-1.290811,-1.290811 +-1.295931,-1.295931,-1.295931,-1.295931,-1.295931,-1.295931 +-1.301051,-1.301051,-1.301051,-1.301051,-1.301051,-1.301051 +-1.306171,-1.306171,-1.306171,-1.306171,-1.306171,-1.306171 +-1.311291,-1.311291,-1.311291,-1.311291,-1.311291,-1.311291 +-1.316411,-1.316411,-1.316411,-1.316411,-1.316411,-1.316411 +-1.321531,-1.321531,-1.321531,-1.321531,-1.321531,-1.321531 +-1.326651,-1.326651,-1.326651,-1.326651,-1.326651,-1.326651 +-1.331771,-1.331771,-1.331771,-1.331771,-1.331771,-1.331771 +-1.336891,-1.336891,-1.336891,-1.336891,-1.336891,-1.336891 +-1.342011,-1.342011,-1.342011,-1.342011,-1.342011,-1.342011 +-1.347131,-1.347131,-1.347131,-1.347131,-1.347131,-1.347131 +-1.352251,-1.352251,-1.352251,-1.352251,-1.352251,-1.352251 +-1.357371,-1.357371,-1.357371,-1.357371,-1.357371,-1.357371 +-1.362491,-1.362491,-1.362491,-1.362491,-1.362491,-1.362491 +-1.367611,-1.367611,-1.367611,-1.367611,-1.367611,-1.367611 +-1.372731,-1.372731,-1.372731,-1.372731,-1.372731,-1.372731 +-1.377851,-1.377851,-1.377851,-1.377851,-1.377851,-1.377851 +-1.382971,-1.382971,-1.382971,-1.382971,-1.382971,-1.382971 +-1.388091,-1.388091,-1.388091,-1.388091,-1.388091,-1.388091 +-1.393211,-1.393211,-1.393211,-1.393211,-1.393211,-1.393211 +-1.398331,-1.398331,-1.398331,-1.398331,-1.398331,-1.398331 +-1.403451,-1.403451,-1.403451,-1.403451,-1.403451,-1.403451 +-1.408571,-1.408571,-1.408571,-1.408571,-1.408571,-1.408571 +-1.413691,-1.413691,-1.413691,-1.413691,-1.413691,-1.413691 +-1.418811,-1.418811,-1.418811,-1.418811,-1.418811,-1.418811 +-1.423931,-1.423931,-1.423931,-1.423931,-1.423931,-1.423931 +-1.429051,-1.429051,-1.429051,-1.429051,-1.429051,-1.429051 +-1.434171,-1.434171,-1.434171,-1.434171,-1.434171,-1.434171 +-1.439291,-1.439291,-1.439291,-1.439291,-1.439291,-1.439291 +-1.444411,-1.444411,-1.444411,-1.444411,-1.444411,-1.444411 +-1.449531,-1.449531,-1.449531,-1.449531,-1.449531,-1.449531 +-1.454651,-1.454651,-1.454651,-1.454651,-1.454651,-1.454651 +-1.459771,-1.459771,-1.459771,-1.459771,-1.459771,-1.459771 +-1.464891,-1.464891,-1.464891,-1.464891,-1.464891,-1.464891 +-1.470011,-1.470011,-1.470011,-1.470011,-1.470011,-1.470011 +-1.475131,-1.475131,-1.475131,-1.475131,-1.475131,-1.475131 +-1.480251,-1.480251,-1.480251,-1.480251,-1.480251,-1.480251 +-1.485371,-1.485371,-1.485371,-1.485371,-1.485371,-1.485371 +-1.490491,-1.490491,-1.490491,-1.490491,-1.490491,-1.490491 +-1.495611,-1.495611,-1.495611,-1.495611,-1.495611,-1.495611 +-1.500731,-1.500731,-1.500731,-1.500731,-1.500731,-1.500731 +-1.505851,-1.505851,-1.505851,-1.505851,-1.505851,-1.505851 +-1.510971,-1.510971,-1.510971,-1.510971,-1.510971,-1.510971 +-1.516091,-1.516091,-1.516091,-1.516091,-1.516091,-1.516091 +-1.521211,-1.521211,-1.521211,-1.521211,-1.521211,-1.521211 +-1.526331,-1.526331,-1.526331,-1.526331,-1.526331,-1.526331 +-1.531451,-1.531451,-1.531451,-1.531451,-1.531451,-1.531451 +-1.536571,-1.536571,-1.536571,-1.536571,-1.536571,-1.536571 +-1.541691,-1.541691,-1.541691,-1.541691,-1.541691,-1.541691 +-1.546811,-1.546811,-1.546811,-1.546811,-1.546811,-1.546811 +-1.551931,-1.551931,-1.551931,-1.551931,-1.551931,-1.551931 +-1.557051,-1.557051,-1.557051,-1.557051,-1.557051,-1.557051 +-1.562171,-1.562171,-1.562171,-1.562171,-1.562171,-1.562171 +-1.567291,-1.567291,-1.567291,-1.567291,-1.567291,-1.567291 +-1.572411,-1.572411,-1.572411,-1.572411,-1.572411,-1.572411 +-1.577531,-1.577531,-1.577531,-1.577531,-1.577531,-1.577531 +-1.582651,-1.582651,-1.582651,-1.582651,-1.582651,-1.582651 +-1.587771,-1.587771,-1.587771,-1.587771,-1.587771,-1.587771 +-1.592891,-1.592891,-1.592891,-1.592891,-1.592891,-1.592891 +-1.598011,-1.598011,-1.598011,-1.598011,-1.598011,-1.598011 +-1.603131,-1.603131,-1.603131,-1.603131,-1.603131,-1.603131 +-1.608251,-1.608251,-1.608251,-1.608251,-1.608251,-1.608251 +-1.613371,-1.613371,-1.613371,-1.613371,-1.613371,-1.613371 +-1.618491,-1.618491,-1.618491,-1.618491,-1.618491,-1.618491 +-1.623611,-1.623611,-1.623611,-1.623611,-1.623611,-1.623611 +-1.628731,-1.628731,-1.628731,-1.628731,-1.628731,-1.628731 +-1.633851,-1.633851,-1.633851,-1.633851,-1.633851,-1.633851 +-1.638971,-1.638971,-1.638971,-1.638971,-1.638971,-1.638971 +-1.644091,-1.644091,-1.644091,-1.644091,-1.644091,-1.644091 +-1.649211,-1.649211,-1.649211,-1.649211,-1.649211,-1.649211 +-1.654331,-1.654331,-1.654331,-1.654331,-1.654331,-1.654331 +-1.659447,-1.659447,-1.659447,-1.659447,-1.659447,-1.659447 +-1.664545,-1.664545,-1.664545,-1.664545,-1.664545,-1.664545 +-1.66961,-1.66961,-1.66961,-1.66961,-1.66961,-1.66961 +-1.674624,-1.674624,-1.674624,-1.674624,-1.674624,-1.674624 +-1.679573,-1.679573,-1.679573,-1.679573,-1.679573,-1.679573 +-1.684439,-1.684439,-1.684439,-1.684439,-1.684439,-1.684439 +-1.689208,-1.689208,-1.689208,-1.689208,-1.689208,-1.689208 +-1.693862,-1.693862,-1.693862,-1.693862,-1.693862,-1.693862 +-1.698387,-1.698387,-1.698387,-1.698387,-1.698387,-1.698387 +-1.702766,-1.702766,-1.702766,-1.702766,-1.702766,-1.702766 +-1.706983,-1.706983,-1.706983,-1.706983,-1.706983,-1.706983 +-1.711022,-1.711022,-1.711022,-1.711022,-1.711022,-1.711022 +-1.714867,-1.714867,-1.714867,-1.714867,-1.714867,-1.714867 +-1.718502,-1.718502,-1.718502,-1.718502,-1.718502,-1.718502 +-1.721911,-1.721911,-1.721911,-1.721911,-1.721911,-1.721911 +-1.725078,-1.725078,-1.725078,-1.725078,-1.725078,-1.725078 +-1.727987,-1.727987,-1.727987,-1.727987,-1.727987,-1.727987 +-1.730623,-1.730623,-1.730623,-1.730623,-1.730623,-1.730623 +-1.732978,-1.732978,-1.732978,-1.732978,-1.732978,-1.732978 +-1.735067,-1.735067,-1.735067,-1.735067,-1.735067,-1.735067 +-1.736905,-1.736905,-1.736905,-1.736905,-1.736905,-1.736905 +-1.738509,-1.738509,-1.738509,-1.738509,-1.738509,-1.738509 +-1.739894,-1.739894,-1.739894,-1.739894,-1.739894,-1.739894 +-1.741077,-1.741077,-1.741077,-1.741077,-1.741077,-1.741077 +-1.742073,-1.742073,-1.742073,-1.742073,-1.742073,-1.742073 +-1.742899,-1.742899,-1.742899,-1.742899,-1.742899,-1.742899 +-1.743571,-1.743571,-1.743571,-1.743571,-1.743571,-1.743571 +-1.744103,-1.744103,-1.744103,-1.744103,-1.744103,-1.744103 +-1.744514,-1.744514,-1.744514,-1.744514,-1.744514,-1.744514 +-1.744818,-1.744818,-1.744818,-1.744818,-1.744818,-1.744818 +-1.745031,-1.745031,-1.745031,-1.745031,-1.745031,-1.745031 +-1.74517,-1.74517,-1.74517,-1.74517,-1.74517,-1.74517 +-1.74525,-1.74525,-1.74525,-1.74525,-1.74525,-1.74525 +-1.745288,-1.745288,-1.745288,-1.745288,-1.745288,-1.745288 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745279,-1.745279,-1.745279,-1.745279,-1.745279,-1.745279 +-1.745228,-1.745228,-1.745228,-1.745228,-1.745228,-1.745228 +-1.745129,-1.745129,-1.745129,-1.745129,-1.745129,-1.745129 +-1.744967,-1.744967,-1.744967,-1.744967,-1.744967,-1.744967 +-1.744724,-1.744724,-1.744724,-1.744724,-1.744724,-1.744724 +-1.744385,-1.744385,-1.744385,-1.744385,-1.744385,-1.744385 +-1.743935,-1.743935,-1.743935,-1.743935,-1.743935,-1.743935 +-1.743356,-1.743356,-1.743356,-1.743356,-1.743356,-1.743356 +-1.742633,-1.742633,-1.742633,-1.742633,-1.742633,-1.742633 +-1.741751,-1.741751,-1.741751,-1.741751,-1.741751,-1.741751 +-1.740692,-1.740692,-1.740692,-1.740692,-1.740692,-1.740692 +-1.739441,-1.739441,-1.739441,-1.739441,-1.739441,-1.739441 +-1.737983,-1.737983,-1.737983,-1.737983,-1.737983,-1.737983 +-1.7363,-1.7363,-1.7363,-1.7363,-1.7363,-1.7363 +-1.734377,-1.734377,-1.734377,-1.734377,-1.734377,-1.734377 +-1.732199,-1.732199,-1.732199,-1.732199,-1.732199,-1.732199 +-1.729748,-1.729748,-1.729748,-1.729748,-1.729748,-1.729748 +-1.727017,-1.727017,-1.727017,-1.727017,-1.727017,-1.727017 +-1.724017,-1.724017,-1.724017,-1.724017,-1.724017,-1.724017 +-1.720765,-1.720765,-1.720765,-1.720765,-1.720765,-1.720765 +-1.717276,-1.717276,-1.717276,-1.717276,-1.717276,-1.717276 +-1.713567,-1.713567,-1.713567,-1.713567,-1.713567,-1.713567 +-1.709653,-1.709653,-1.709653,-1.709653,-1.709653,-1.709653 +-1.705551,-1.705551,-1.705551,-1.705551,-1.705551,-1.705551 +-1.701277,-1.701277,-1.701277,-1.701277,-1.701277,-1.701277 +-1.696846,-1.696846,-1.696846,-1.696846,-1.696846,-1.696846 +-1.692275,-1.692275,-1.692275,-1.692275,-1.692275,-1.692275 +-1.687579,-1.687579,-1.687579,-1.687579,-1.687579,-1.687579 +-1.682775,-1.682775,-1.682775,-1.682775,-1.682775,-1.682775 +-1.677879,-1.677879,-1.677879,-1.677879,-1.677879,-1.677879 +-1.672906,-1.672906,-1.672906,-1.672906,-1.672906,-1.672906 +-1.667872,-1.667872,-1.667872,-1.667872,-1.667872,-1.667872 +-1.662794,-1.662794,-1.662794,-1.662794,-1.662794,-1.662794 +-1.657688,-1.657688,-1.657688,-1.657688,-1.657688,-1.657688 +-1.652569,-1.652569,-1.652569,-1.652569,-1.652569,-1.652569 +-1.647449,-1.647449,-1.647449,-1.647449,-1.647449,-1.647449 +-1.642329,-1.642329,-1.642329,-1.642329,-1.642329,-1.642329 +-1.637209,-1.637209,-1.637209,-1.637209,-1.637209,-1.637209 +-1.632089,-1.632089,-1.632089,-1.632089,-1.632089,-1.632089 +-1.626969,-1.626969,-1.626969,-1.626969,-1.626969,-1.626969 +-1.621849,-1.621849,-1.621849,-1.621849,-1.621849,-1.621849 +-1.616729,-1.616729,-1.616729,-1.616729,-1.616729,-1.616729 +-1.611609,-1.611609,-1.611609,-1.611609,-1.611609,-1.611609 +-1.606489,-1.606489,-1.606489,-1.606489,-1.606489,-1.606489 +-1.601369,-1.601369,-1.601369,-1.601369,-1.601369,-1.601369 +-1.596249,-1.596249,-1.596249,-1.596249,-1.596249,-1.596249 +-1.591129,-1.591129,-1.591129,-1.591129,-1.591129,-1.591129 +-1.586009,-1.586009,-1.586009,-1.586009,-1.586009,-1.586009 +-1.580889,-1.580889,-1.580889,-1.580889,-1.580889,-1.580889 +-1.575769,-1.575769,-1.575769,-1.575769,-1.575769,-1.575769 +-1.570649,-1.570649,-1.570649,-1.570649,-1.570649,-1.570649 +-1.565529,-1.565529,-1.565529,-1.565529,-1.565529,-1.565529 +-1.560409,-1.560409,-1.560409,-1.560409,-1.560409,-1.560409 +-1.555289,-1.555289,-1.555289,-1.555289,-1.555289,-1.555289 +-1.550169,-1.550169,-1.550169,-1.550169,-1.550169,-1.550169 +-1.545049,-1.545049,-1.545049,-1.545049,-1.545049,-1.545049 +-1.539929,-1.539929,-1.539929,-1.539929,-1.539929,-1.539929 +-1.534809,-1.534809,-1.534809,-1.534809,-1.534809,-1.534809 +-1.529689,-1.529689,-1.529689,-1.529689,-1.529689,-1.529689 +-1.524569,-1.524569,-1.524569,-1.524569,-1.524569,-1.524569 +-1.519449,-1.519449,-1.519449,-1.519449,-1.519449,-1.519449 +-1.514329,-1.514329,-1.514329,-1.514329,-1.514329,-1.514329 +-1.509209,-1.509209,-1.509209,-1.509209,-1.509209,-1.509209 +-1.504089,-1.504089,-1.504089,-1.504089,-1.504089,-1.504089 +-1.498969,-1.498969,-1.498969,-1.498969,-1.498969,-1.498969 +-1.493849,-1.493849,-1.493849,-1.493849,-1.493849,-1.493849 +-1.488729,-1.488729,-1.488729,-1.488729,-1.488729,-1.488729 +-1.483609,-1.483609,-1.483609,-1.483609,-1.483609,-1.483609 +-1.478489,-1.478489,-1.478489,-1.478489,-1.478489,-1.478489 +-1.473369,-1.473369,-1.473369,-1.473369,-1.473369,-1.473369 +-1.468249,-1.468249,-1.468249,-1.468249,-1.468249,-1.468249 +-1.463129,-1.463129,-1.463129,-1.463129,-1.463129,-1.463129 +-1.458009,-1.458009,-1.458009,-1.458009,-1.458009,-1.458009 +-1.452889,-1.452889,-1.452889,-1.452889,-1.452889,-1.452889 +-1.447769,-1.447769,-1.447769,-1.447769,-1.447769,-1.447769 +-1.442649,-1.442649,-1.442649,-1.442649,-1.442649,-1.442649 +-1.437529,-1.437529,-1.437529,-1.437529,-1.437529,-1.437529 +-1.432409,-1.432409,-1.432409,-1.432409,-1.432409,-1.432409 +-1.427289,-1.427289,-1.427289,-1.427289,-1.427289,-1.427289 +-1.422169,-1.422169,-1.422169,-1.422169,-1.422169,-1.422169 +-1.417049,-1.417049,-1.417049,-1.417049,-1.417049,-1.417049 +-1.411929,-1.411929,-1.411929,-1.411929,-1.411929,-1.411929 +-1.406809,-1.406809,-1.406809,-1.406809,-1.406809,-1.406809 +-1.401689,-1.401689,-1.401689,-1.401689,-1.401689,-1.401689 +-1.396569,-1.396569,-1.396569,-1.396569,-1.396569,-1.396569 +-1.391449,-1.391449,-1.391449,-1.391449,-1.391449,-1.391449 +-1.386329,-1.386329,-1.386329,-1.386329,-1.386329,-1.386329 +-1.381209,-1.381209,-1.381209,-1.381209,-1.381209,-1.381209 +-1.376089,-1.376089,-1.376089,-1.376089,-1.376089,-1.376089 +-1.370969,-1.370969,-1.370969,-1.370969,-1.370969,-1.370969 +-1.365849,-1.365849,-1.365849,-1.365849,-1.365849,-1.365849 +-1.360729,-1.360729,-1.360729,-1.360729,-1.360729,-1.360729 +-1.355609,-1.355609,-1.355609,-1.355609,-1.355609,-1.355609 +-1.350489,-1.350489,-1.350489,-1.350489,-1.350489,-1.350489 +-1.345369,-1.345369,-1.345369,-1.345369,-1.345369,-1.345369 +-1.340249,-1.340249,-1.340249,-1.340249,-1.340249,-1.340249 +-1.335129,-1.335129,-1.335129,-1.335129,-1.335129,-1.335129 +-1.330009,-1.330009,-1.330009,-1.330009,-1.330009,-1.330009 +-1.324889,-1.324889,-1.324889,-1.324889,-1.324889,-1.324889 +-1.319769,-1.319769,-1.319769,-1.319769,-1.319769,-1.319769 +-1.314649,-1.314649,-1.314649,-1.314649,-1.314649,-1.314649 +-1.309529,-1.309529,-1.309529,-1.309529,-1.309529,-1.309529 +-1.304409,-1.304409,-1.304409,-1.304409,-1.304409,-1.304409 +-1.299289,-1.299289,-1.299289,-1.299289,-1.299289,-1.299289 +-1.294169,-1.294169,-1.294169,-1.294169,-1.294169,-1.294169 +-1.289049,-1.289049,-1.289049,-1.289049,-1.289049,-1.289049 +-1.283929,-1.283929,-1.283929,-1.283929,-1.283929,-1.283929 +-1.278809,-1.278809,-1.278809,-1.278809,-1.278809,-1.278809 +-1.273689,-1.273689,-1.273689,-1.273689,-1.273689,-1.273689 +-1.268569,-1.268569,-1.268569,-1.268569,-1.268569,-1.268569 +-1.263449,-1.263449,-1.263449,-1.263449,-1.263449,-1.263449 +-1.258329,-1.258329,-1.258329,-1.258329,-1.258329,-1.258329 +-1.253209,-1.253209,-1.253209,-1.253209,-1.253209,-1.253209 +-1.248089,-1.248089,-1.248089,-1.248089,-1.248089,-1.248089 +-1.242969,-1.242969,-1.242969,-1.242969,-1.242969,-1.242969 +-1.237849,-1.237849,-1.237849,-1.237849,-1.237849,-1.237849 +-1.232729,-1.232729,-1.232729,-1.232729,-1.232729,-1.232729 +-1.227609,-1.227609,-1.227609,-1.227609,-1.227609,-1.227609 +-1.222489,-1.222489,-1.222489,-1.222489,-1.222489,-1.222489 +-1.217369,-1.217369,-1.217369,-1.217369,-1.217369,-1.217369 +-1.212249,-1.212249,-1.212249,-1.212249,-1.212249,-1.212249 +-1.207129,-1.207129,-1.207129,-1.207129,-1.207129,-1.207129 +-1.202009,-1.202009,-1.202009,-1.202009,-1.202009,-1.202009 +-1.196889,-1.196889,-1.196889,-1.196889,-1.196889,-1.196889 +-1.191769,-1.191769,-1.191769,-1.191769,-1.191769,-1.191769 +-1.186649,-1.186649,-1.186649,-1.186649,-1.186649,-1.186649 +-1.181529,-1.181529,-1.181529,-1.181529,-1.181529,-1.181529 +-1.176409,-1.176409,-1.176409,-1.176409,-1.176409,-1.176409 +-1.171289,-1.171289,-1.171289,-1.171289,-1.171289,-1.171289 +-1.166169,-1.166169,-1.166169,-1.166169,-1.166169,-1.166169 +-1.161049,-1.161049,-1.161049,-1.161049,-1.161049,-1.161049 +-1.155929,-1.155929,-1.155929,-1.155929,-1.155929,-1.155929 +-1.150809,-1.150809,-1.150809,-1.150809,-1.150809,-1.150809 +-1.145689,-1.145689,-1.145689,-1.145689,-1.145689,-1.145689 +-1.140569,-1.140569,-1.140569,-1.140569,-1.140569,-1.140569 +-1.135449,-1.135449,-1.135449,-1.135449,-1.135449,-1.135449 +-1.130329,-1.130329,-1.130329,-1.130329,-1.130329,-1.130329 +-1.125209,-1.125209,-1.125209,-1.125209,-1.125209,-1.125209 +-1.120089,-1.120089,-1.120089,-1.120089,-1.120089,-1.120089 +-1.114969,-1.114969,-1.114969,-1.114969,-1.114969,-1.114969 +-1.109849,-1.109849,-1.109849,-1.109849,-1.109849,-1.109849 +-1.104729,-1.104729,-1.104729,-1.104729,-1.104729,-1.104729 +-1.099609,-1.099609,-1.099609,-1.099609,-1.099609,-1.099609 +-1.094489,-1.094489,-1.094489,-1.094489,-1.094489,-1.094489 +-1.089369,-1.089369,-1.089369,-1.089369,-1.089369,-1.089369 +-1.084249,-1.084249,-1.084249,-1.084249,-1.084249,-1.084249 +-1.079129,-1.079129,-1.079129,-1.079129,-1.079129,-1.079129 +-1.074009,-1.074009,-1.074009,-1.074009,-1.074009,-1.074009 +-1.068889,-1.068889,-1.068889,-1.068889,-1.068889,-1.068889 +-1.063769,-1.063769,-1.063769,-1.063769,-1.063769,-1.063769 +-1.058649,-1.058649,-1.058649,-1.058649,-1.058649,-1.058649 +-1.053529,-1.053529,-1.053529,-1.053529,-1.053529,-1.053529 +-1.048409,-1.048409,-1.048409,-1.048409,-1.048409,-1.048409 +-1.043289,-1.043289,-1.043289,-1.043289,-1.043289,-1.043289 +-1.038169,-1.038169,-1.038169,-1.038169,-1.038169,-1.038169 +-1.033049,-1.033049,-1.033049,-1.033049,-1.033049,-1.033049 +-1.027929,-1.027929,-1.027929,-1.027929,-1.027929,-1.027929 +-1.022809,-1.022809,-1.022809,-1.022809,-1.022809,-1.022809 +-1.017689,-1.017689,-1.017689,-1.017689,-1.017689,-1.017689 +-1.012569,-1.012569,-1.012569,-1.012569,-1.012569,-1.012569 +-1.007449,-1.007449,-1.007449,-1.007449,-1.007449,-1.007449 +-1.002329,-1.002329,-1.002329,-1.002329,-1.002329,-1.002329 +-0.997209,-0.997209,-0.997209,-0.997209,-0.997209,-0.997209 +-0.992089,-0.992089,-0.992089,-0.992089,-0.992089,-0.992089 +-0.986969,-0.986969,-0.986969,-0.986969,-0.986969,-0.986969 +-0.981849,-0.981849,-0.981849,-0.981849,-0.981849,-0.981849 +-0.976729,-0.976729,-0.976729,-0.976729,-0.976729,-0.976729 +-0.971609,-0.971609,-0.971609,-0.971609,-0.971609,-0.971609 +-0.966489,-0.966489,-0.966489,-0.966489,-0.966489,-0.966489 +-0.961369,-0.961369,-0.961369,-0.961369,-0.961369,-0.961369 +-0.956249,-0.956249,-0.956249,-0.956249,-0.956249,-0.956249 +-0.951129,-0.951129,-0.951129,-0.951129,-0.951129,-0.951129 +-0.946009,-0.946009,-0.946009,-0.946009,-0.946009,-0.946009 +-0.940889,-0.940889,-0.940889,-0.940889,-0.940889,-0.940889 +-0.935769,-0.935769,-0.935769,-0.935769,-0.935769,-0.935769 +-0.930649,-0.930649,-0.930649,-0.930649,-0.930649,-0.930649 +-0.925529,-0.925529,-0.925529,-0.925529,-0.925529,-0.925529 +-0.920409,-0.920409,-0.920409,-0.920409,-0.920409,-0.920409 +-0.915289,-0.915289,-0.915289,-0.915289,-0.915289,-0.915289 +-0.910169,-0.910169,-0.910169,-0.910169,-0.910169,-0.910169 +-0.905049,-0.905049,-0.905049,-0.905049,-0.905049,-0.905049 +-0.899929,-0.899929,-0.899929,-0.899929,-0.899929,-0.899929 +-0.894809,-0.894809,-0.894809,-0.894809,-0.894809,-0.894809 +-0.889689,-0.889689,-0.889689,-0.889689,-0.889689,-0.889689 +-0.884569,-0.884569,-0.884569,-0.884569,-0.884569,-0.884569 +-0.879449,-0.879449,-0.879449,-0.879449,-0.879449,-0.879449 +-0.874329,-0.874329,-0.874329,-0.874329,-0.874329,-0.874329 +-0.869209,-0.869209,-0.869209,-0.869209,-0.869209,-0.869209 +-0.864089,-0.864089,-0.864089,-0.864089,-0.864089,-0.864089 +-0.858969,-0.858969,-0.858969,-0.858969,-0.858969,-0.858969 +-0.853849,-0.853849,-0.853849,-0.853849,-0.853849,-0.853849 +-0.848729,-0.848729,-0.848729,-0.848729,-0.848729,-0.848729 +-0.843609,-0.843609,-0.843609,-0.843609,-0.843609,-0.843609 +-0.838489,-0.838489,-0.838489,-0.838489,-0.838489,-0.838489 +-0.833369,-0.833369,-0.833369,-0.833369,-0.833369,-0.833369 +-0.828249,-0.828249,-0.828249,-0.828249,-0.828249,-0.828249 +-0.823129,-0.823129,-0.823129,-0.823129,-0.823129,-0.823129 +-0.818009,-0.818009,-0.818009,-0.818009,-0.818009,-0.818009 +-0.812889,-0.812889,-0.812889,-0.812889,-0.812889,-0.812889 +-0.807769,-0.807769,-0.807769,-0.807769,-0.807769,-0.807769 +-0.802649,-0.802649,-0.802649,-0.802649,-0.802649,-0.802649 +-0.797529,-0.797529,-0.797529,-0.797529,-0.797529,-0.797529 +-0.792409,-0.792409,-0.792409,-0.792409,-0.792409,-0.792409 +-0.787289,-0.787289,-0.787289,-0.787289,-0.787289,-0.787289 +-0.782169,-0.782169,-0.782169,-0.782169,-0.782169,-0.782169 +-0.777049,-0.777049,-0.777049,-0.777049,-0.777049,-0.777049 +-0.771929,-0.771929,-0.771929,-0.771929,-0.771929,-0.771929 +-0.766809,-0.766809,-0.766809,-0.766809,-0.766809,-0.766809 +-0.761689,-0.761689,-0.761689,-0.761689,-0.761689,-0.761689 +-0.756569,-0.756569,-0.756569,-0.756569,-0.756569,-0.756569 +-0.751449,-0.751449,-0.751449,-0.751449,-0.751449,-0.751449 +-0.746329,-0.746329,-0.746329,-0.746329,-0.746329,-0.746329 +-0.741209,-0.741209,-0.741209,-0.741209,-0.741209,-0.741209 +-0.736089,-0.736089,-0.736089,-0.736089,-0.736089,-0.736089 +-0.730969,-0.730969,-0.730969,-0.730969,-0.730969,-0.730969 +-0.725849,-0.725849,-0.725849,-0.725849,-0.725849,-0.725849 +-0.720729,-0.720729,-0.720729,-0.720729,-0.720729,-0.720729 +-0.715609,-0.715609,-0.715609,-0.715609,-0.715609,-0.715609 +-0.710489,-0.710489,-0.710489,-0.710489,-0.710489,-0.710489 +-0.705369,-0.705369,-0.705369,-0.705369,-0.705369,-0.705369 +-0.700249,-0.700249,-0.700249,-0.700249,-0.700249,-0.700249 +-0.695129,-0.695129,-0.695129,-0.695129,-0.695129,-0.695129 +-0.690009,-0.690009,-0.690009,-0.690009,-0.690009,-0.690009 +-0.684889,-0.684889,-0.684889,-0.684889,-0.684889,-0.684889 +-0.679769,-0.679769,-0.679769,-0.679769,-0.679769,-0.679769 +-0.674649,-0.674649,-0.674649,-0.674649,-0.674649,-0.674649 +-0.669529,-0.669529,-0.669529,-0.669529,-0.669529,-0.669529 +-0.664409,-0.664409,-0.664409,-0.664409,-0.664409,-0.664409 +-0.659289,-0.659289,-0.659289,-0.659289,-0.659289,-0.659289 +-0.654169,-0.654169,-0.654169,-0.654169,-0.654169,-0.654169 +-0.649049,-0.649049,-0.649049,-0.649049,-0.649049,-0.649049 +-0.643929,-0.643929,-0.643929,-0.643929,-0.643929,-0.643929 +-0.638809,-0.638809,-0.638809,-0.638809,-0.638809,-0.638809 +-0.633689,-0.633689,-0.633689,-0.633689,-0.633689,-0.633689 +-0.628569,-0.628569,-0.628569,-0.628569,-0.628569,-0.628569 +-0.623449,-0.623449,-0.623449,-0.623449,-0.623449,-0.623449 +-0.618329,-0.618329,-0.618329,-0.618329,-0.618329,-0.618329 +-0.613209,-0.613209,-0.613209,-0.613209,-0.613209,-0.613209 +-0.608089,-0.608089,-0.608089,-0.608089,-0.608089,-0.608089 +-0.602969,-0.602969,-0.602969,-0.602969,-0.602969,-0.602969 +-0.597849,-0.597849,-0.597849,-0.597849,-0.597849,-0.597849 +-0.592729,-0.592729,-0.592729,-0.592729,-0.592729,-0.592729 +-0.587609,-0.587609,-0.587609,-0.587609,-0.587609,-0.587609 +-0.582489,-0.582489,-0.582489,-0.582489,-0.582489,-0.582489 +-0.577369,-0.577369,-0.577369,-0.577369,-0.577369,-0.577369 +-0.572249,-0.572249,-0.572249,-0.572249,-0.572249,-0.572249 +-0.567129,-0.567129,-0.567129,-0.567129,-0.567129,-0.567129 +-0.562009,-0.562009,-0.562009,-0.562009,-0.562009,-0.562009 +-0.556889,-0.556889,-0.556889,-0.556889,-0.556889,-0.556889 +-0.551769,-0.551769,-0.551769,-0.551769,-0.551769,-0.551769 +-0.546649,-0.546649,-0.546649,-0.546649,-0.546649,-0.546649 +-0.541529,-0.541529,-0.541529,-0.541529,-0.541529,-0.541529 +-0.536409,-0.536409,-0.536409,-0.536409,-0.536409,-0.536409 +-0.531289,-0.531289,-0.531289,-0.531289,-0.531289,-0.531289 +-0.526169,-0.526169,-0.526169,-0.526169,-0.526169,-0.526169 +-0.521049,-0.521049,-0.521049,-0.521049,-0.521049,-0.521049 +-0.515929,-0.515929,-0.515929,-0.515929,-0.515929,-0.515929 +-0.510809,-0.510809,-0.510809,-0.510809,-0.510809,-0.510809 +-0.505689,-0.505689,-0.505689,-0.505689,-0.505689,-0.505689 +-0.500569,-0.500569,-0.500569,-0.500569,-0.500569,-0.500569 +-0.495449,-0.495449,-0.495449,-0.495449,-0.495449,-0.495449 +-0.490329,-0.490329,-0.490329,-0.490329,-0.490329,-0.490329 +-0.485209,-0.485209,-0.485209,-0.485209,-0.485209,-0.485209 +-0.480089,-0.480089,-0.480089,-0.480089,-0.480089,-0.480089 +-0.474969,-0.474969,-0.474969,-0.474969,-0.474969,-0.474969 +-0.469849,-0.469849,-0.469849,-0.469849,-0.469849,-0.469849 +-0.464729,-0.464729,-0.464729,-0.464729,-0.464729,-0.464729 +-0.459609,-0.459609,-0.459609,-0.459609,-0.459609,-0.459609 +-0.454489,-0.454489,-0.454489,-0.454489,-0.454489,-0.454489 +-0.449369,-0.449369,-0.449369,-0.449369,-0.449369,-0.449369 +-0.444249,-0.444249,-0.444249,-0.444249,-0.444249,-0.444249 +-0.439129,-0.439129,-0.439129,-0.439129,-0.439129,-0.439129 +-0.434009,-0.434009,-0.434009,-0.434009,-0.434009,-0.434009 +-0.428889,-0.428889,-0.428889,-0.428889,-0.428889,-0.428889 +-0.423769,-0.423769,-0.423769,-0.423769,-0.423769,-0.423769 +-0.418649,-0.418649,-0.418649,-0.418649,-0.418649,-0.418649 +-0.413529,-0.413529,-0.413529,-0.413529,-0.413529,-0.413529 +-0.408409,-0.408409,-0.408409,-0.408409,-0.408409,-0.408409 +-0.403289,-0.403289,-0.403289,-0.403289,-0.403289,-0.403289 +-0.398169,-0.398169,-0.398169,-0.398169,-0.398169,-0.398169 +-0.393049,-0.393049,-0.393049,-0.393049,-0.393049,-0.393049 +-0.387929,-0.387929,-0.387929,-0.387929,-0.387929,-0.387929 +-0.382809,-0.382809,-0.382809,-0.382809,-0.382809,-0.382809 +-0.377689,-0.377689,-0.377689,-0.377689,-0.377689,-0.377689 +-0.372569,-0.372569,-0.372569,-0.372569,-0.372569,-0.372569 +-0.367449,-0.367449,-0.367449,-0.367449,-0.367449,-0.367449 +-0.362329,-0.362329,-0.362329,-0.362329,-0.362329,-0.362329 +-0.357209,-0.357209,-0.357209,-0.357209,-0.357209,-0.357209 +-0.352089,-0.352089,-0.352089,-0.352089,-0.352089,-0.352089 +-0.346969,-0.346969,-0.346969,-0.346969,-0.346969,-0.346969 +-0.341849,-0.341849,-0.341849,-0.341849,-0.341849,-0.341849 +-0.336729,-0.336729,-0.336729,-0.336729,-0.336729,-0.336729 +-0.331609,-0.331609,-0.331609,-0.331609,-0.331609,-0.331609 +-0.326489,-0.326489,-0.326489,-0.326489,-0.326489,-0.326489 +-0.321369,-0.321369,-0.321369,-0.321369,-0.321369,-0.321369 +-0.316249,-0.316249,-0.316249,-0.316249,-0.316249,-0.316249 +-0.311129,-0.311129,-0.311129,-0.311129,-0.311129,-0.311129 +-0.306009,-0.306009,-0.306009,-0.306009,-0.306009,-0.306009 +-0.300889,-0.300889,-0.300889,-0.300889,-0.300889,-0.300889 +-0.295769,-0.295769,-0.295769,-0.295769,-0.295769,-0.295769 +-0.290649,-0.290649,-0.290649,-0.290649,-0.290649,-0.290649 +-0.285529,-0.285529,-0.285529,-0.285529,-0.285529,-0.285529 +-0.280409,-0.280409,-0.280409,-0.280409,-0.280409,-0.280409 +-0.275289,-0.275289,-0.275289,-0.275289,-0.275289,-0.275289 +-0.270169,-0.270169,-0.270169,-0.270169,-0.270169,-0.270169 +-0.265049,-0.265049,-0.265049,-0.265049,-0.265049,-0.265049 +-0.259929,-0.259929,-0.259929,-0.259929,-0.259929,-0.259929 +-0.254809,-0.254809,-0.254809,-0.254809,-0.254809,-0.254809 +-0.249689,-0.249689,-0.249689,-0.249689,-0.249689,-0.249689 +-0.244569,-0.244569,-0.244569,-0.244569,-0.244569,-0.244569 +-0.239449,-0.239449,-0.239449,-0.239449,-0.239449,-0.239449 +-0.234329,-0.234329,-0.234329,-0.234329,-0.234329,-0.234329 +-0.229209,-0.229209,-0.229209,-0.229209,-0.229209,-0.229209 +-0.224089,-0.224089,-0.224089,-0.224089,-0.224089,-0.224089 +-0.218969,-0.218969,-0.218969,-0.218969,-0.218969,-0.218969 +-0.213849,-0.213849,-0.213849,-0.213849,-0.213849,-0.213849 +-0.208729,-0.208729,-0.208729,-0.208729,-0.208729,-0.208729 +-0.203609,-0.203609,-0.203609,-0.203609,-0.203609,-0.203609 +-0.198489,-0.198489,-0.198489,-0.198489,-0.198489,-0.198489 +-0.193369,-0.193369,-0.193369,-0.193369,-0.193369,-0.193369 +-0.188249,-0.188249,-0.188249,-0.188249,-0.188249,-0.188249 +-0.183129,-0.183129,-0.183129,-0.183129,-0.183129,-0.183129 +-0.178009,-0.178009,-0.178009,-0.178009,-0.178009,-0.178009 +-0.172889,-0.172889,-0.172889,-0.172889,-0.172889,-0.172889 +-0.167769,-0.167769,-0.167769,-0.167769,-0.167769,-0.167769 +-0.162649,-0.162649,-0.162649,-0.162649,-0.162649,-0.162649 +-0.157529,-0.157529,-0.157529,-0.157529,-0.157529,-0.157529 +-0.152409,-0.152409,-0.152409,-0.152409,-0.152409,-0.152409 +-0.147289,-0.147289,-0.147289,-0.147289,-0.147289,-0.147289 +-0.142169,-0.142169,-0.142169,-0.142169,-0.142169,-0.142169 +-0.137049,-0.137049,-0.137049,-0.137049,-0.137049,-0.137049 +-0.131929,-0.131929,-0.131929,-0.131929,-0.131929,-0.131929 +-0.126809,-0.126809,-0.126809,-0.126809,-0.126809,-0.126809 +-0.121689,-0.121689,-0.121689,-0.121689,-0.121689,-0.121689 +-0.116569,-0.116569,-0.116569,-0.116569,-0.116569,-0.116569 +-0.111449,-0.111449,-0.111449,-0.111449,-0.111449,-0.111449 +-0.106329,-0.106329,-0.106329,-0.106329,-0.106329,-0.106329 +-0.101209,-0.101209,-0.101209,-0.101209,-0.101209,-0.101209 +-0.096089,-0.096089,-0.096089,-0.096089,-0.096089,-0.096089 +-0.090969,-0.090969,-0.090969,-0.090969,-0.090969,-0.090969 +-0.085853,-0.085853,-0.085853,-0.085853,-0.085853,-0.085853 +-0.080755,-0.080755,-0.080755,-0.080755,-0.080755,-0.080755 +-0.07569,-0.07569,-0.07569,-0.07569,-0.07569,-0.07569 +-0.070676,-0.070676,-0.070676,-0.070676,-0.070676,-0.070676 +-0.065727,-0.065727,-0.065727,-0.065727,-0.065727,-0.065727 +-0.060861,-0.060861,-0.060861,-0.060861,-0.060861,-0.060861 +-0.056092,-0.056092,-0.056092,-0.056092,-0.056092,-0.056092 +-0.051438,-0.051438,-0.051438,-0.051438,-0.051438,-0.051438 +-0.046913,-0.046913,-0.046913,-0.046913,-0.046913,-0.046913 +-0.042534,-0.042534,-0.042534,-0.042534,-0.042534,-0.042534 +-0.038317,-0.038317,-0.038317,-0.038317,-0.038317,-0.038317 +-0.034278,-0.034278,-0.034278,-0.034278,-0.034278,-0.034278 +-0.030433,-0.030433,-0.030433,-0.030433,-0.030433,-0.030433 +-0.026798,-0.026798,-0.026798,-0.026798,-0.026798,-0.026798 +-0.023389,-0.023389,-0.023389,-0.023389,-0.023389,-0.023389 +-0.020222,-0.020222,-0.020222,-0.020222,-0.020222,-0.020222 +-0.017313,-0.017313,-0.017313,-0.017313,-0.017313,-0.017313 +-0.014677,-0.014677,-0.014677,-0.014677,-0.014677,-0.014677 +-0.012322,-0.012322,-0.012322,-0.012322,-0.012322,-0.012322 +-0.010233,-0.010233,-0.010233,-0.010233,-0.010233,-0.010233 +-0.008395,-0.008395,-0.008395,-0.008395,-0.008395,-0.008395 +-0.006791,-0.006791,-0.006791,-0.006791,-0.006791,-0.006791 +-0.005406,-0.005406,-0.005406,-0.005406,-0.005406,-0.005406 +-0.004223,-0.004223,-0.004223,-0.004223,-0.004223,-0.004223 +-0.003227,-0.003227,-0.003227,-0.003227,-0.003227,-0.003227 +-0.002401,-0.002401,-0.002401,-0.002401,-0.002401,-0.002401 +-0.001729,-0.001729,-0.001729,-0.001729,-0.001729,-0.001729 +-0.001197,-0.001197,-0.001197,-0.001197,-0.001197,-0.001197 +-0.000786,-0.000786,-0.000786,-0.000786,-0.000786,-0.000786 +-0.000482,-0.000482,-0.000482,-0.000482,-0.000482,-0.000482 +-0.000269,-0.000269,-0.000269,-0.000269,-0.000269,-0.000269 +-0.00013,-0.00013,-0.00013,-0.00013,-0.00013,-0.00013 +-0.00005,-0.00005,-0.00005,-0.00005,-0.00005,-0.00005 +-0.000012,-0.000012,-0.000012,-0.000012,-0.000012,-0.000012 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/11_trajectory_vel2_acc5.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/11_trajectory_vel2_acc5.txt new file mode 100644 index 00000000..e8852431 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/11_trajectory_vel2_acc5.txt @@ -0,0 +1,20624 @@ +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000013,-0.000013,-0.000013,-0.000013,-0.000013,-0.000013 +-0.000032,-0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000063,-0.000063,-0.000063,-0.000063,-0.000063,-0.000063 +-0.000108,-0.000108,-0.000108,-0.000108,-0.000108,-0.000108 +-0.000172,-0.000172,-0.000172,-0.000172,-0.000172,-0.000172 +-0.000256,-0.000256,-0.000256,-0.000256,-0.000256,-0.000256 +-0.000365,-0.000365,-0.000365,-0.000365,-0.000365,-0.000365 +-0.000500,-0.000500,-0.000500,-0.000500,-0.000500,-0.000500 +-0.000665,-0.000665,-0.000665,-0.000665,-0.000665,-0.000665 +-0.000864,-0.000864,-0.000864,-0.000864,-0.000864,-0.000864 +-0.001098,-0.001098,-0.001098,-0.001098,-0.001098,-0.001098 +-0.001372,-0.001372,-0.001372,-0.001372,-0.001372,-0.001372 +-0.001687,-0.001687,-0.001687,-0.001687,-0.001687,-0.001687 +-0.002048,-0.002048,-0.002048,-0.002048,-0.002048,-0.002048 +-0.002457,-0.002457,-0.002457,-0.002457,-0.002457,-0.002457 +-0.002916,-0.002916,-0.002916,-0.002916,-0.002916,-0.002916 +-0.003430,-0.003430,-0.003430,-0.003430,-0.003430,-0.003430 +-0.004000,-0.004000,-0.004000,-0.004000,-0.004000,-0.004000 +-0.004631,-0.004631,-0.004631,-0.004631,-0.004631,-0.004631 +-0.005324,-0.005324,-0.005324,-0.005324,-0.005324,-0.005324 +-0.006084,-0.006084,-0.006084,-0.006084,-0.006084,-0.006084 +-0.006912,-0.006912,-0.006912,-0.006912,-0.006912,-0.006912 +-0.007813,-0.007813,-0.007813,-0.007813,-0.007813,-0.007813 +-0.008788,-0.008788,-0.008788,-0.008788,-0.008788,-0.008788 +-0.009842,-0.009842,-0.009842,-0.009842,-0.009842,-0.009842 +-0.010976,-0.010976,-0.010976,-0.010976,-0.010976,-0.010976 +-0.012195,-0.012195,-0.012195,-0.012195,-0.012195,-0.012195 +-0.013500,-0.013500,-0.013500,-0.013500,-0.013500,-0.013500 +-0.014896,-0.014896,-0.014896,-0.014896,-0.014896,-0.014896 +-0.016384,-0.016384,-0.016384,-0.016384,-0.016384,-0.016384 +-0.017969,-0.017969,-0.017969,-0.017969,-0.017969,-0.017969 +-0.019652,-0.019652,-0.019652,-0.019652,-0.019652,-0.019652 +-0.021438,-0.021438,-0.021438,-0.021438,-0.021438,-0.021438 +-0.023328,-0.023328,-0.023328,-0.023328,-0.023328,-0.023328 +-0.025326,-0.025322,-0.025327,-0.025327,-0.025327,-0.025327 +-0.027433,-0.027418,-0.027436,-0.027436,-0.027436,-0.027436 +-0.029645,-0.029612,-0.029660,-0.029660,-0.029660,-0.029655 +-0.031960,-0.031902,-0.032000,-0.032000,-0.032000,-0.031981 +-0.034374,-0.034284,-0.034461,-0.034461,-0.034461,-0.034411 +-0.036884,-0.036755,-0.037044,-0.037044,-0.037044,-0.036941 +-0.039488,-0.039312,-0.039754,-0.039754,-0.039754,-0.039570 +-0.042182,-0.041953,-0.042592,-0.042592,-0.042592,-0.042293 +-0.044964,-0.044674,-0.045563,-0.045563,-0.045563,-0.045109 +-0.047830,-0.047473,-0.048668,-0.048668,-0.048668,-0.048013 +-0.050778,-0.050346,-0.051912,-0.051912,-0.051911,-0.051003 +-0.053804,-0.053290,-0.055296,-0.055296,-0.055294,-0.054076 +-0.056905,-0.056302,-0.058825,-0.058825,-0.058812,-0.057229 +-0.060079,-0.059380,-0.062500,-0.062500,-0.062463,-0.060459 +-0.063323,-0.062520,-0.066325,-0.066325,-0.066243,-0.063763 +-0.066632,-0.065720,-0.070300,-0.070300,-0.070151,-0.067138 +-0.070006,-0.068976,-0.074425,-0.074425,-0.074183,-0.070581 +-0.073439,-0.072285,-0.078700,-0.078700,-0.078336,-0.074088 +-0.076930,-0.075644,-0.083125,-0.083124,-0.082606,-0.077657 +-0.080476,-0.079051,-0.087700,-0.087694,-0.086992,-0.081286 +-0.084073,-0.082502,-0.092425,-0.092407,-0.091489,-0.084970 +-0.087718,-0.085994,-0.097300,-0.097260,-0.096096,-0.088707 +-0.091409,-0.089525,-0.102325,-0.102250,-0.100808,-0.092494 +-0.095142,-0.093091,-0.107500,-0.107374,-0.105623,-0.096328 +-0.098915,-0.096690,-0.112825,-0.112629,-0.110539,-0.100206 +-0.102724,-0.100317,-0.118300,-0.118012,-0.115551,-0.104124 +-0.106567,-0.103971,-0.123925,-0.123520,-0.120657,-0.108081 +-0.110440,-0.107649,-0.129700,-0.129150,-0.125854,-0.112072 +-0.114340,-0.111347,-0.135625,-0.134899,-0.131139,-0.116096 +-0.118265,-0.115062,-0.141700,-0.140764,-0.136509,-0.120148 +-0.122212,-0.118791,-0.147925,-0.146742,-0.141960,-0.124226 +-0.126176,-0.122532,-0.154298,-0.152831,-0.147491,-0.128327 +-0.130157,-0.126281,-0.160816,-0.159026,-0.153098,-0.132448 +-0.134149,-0.130035,-0.167476,-0.165325,-0.158777,-0.136586 +-0.138151,-0.133792,-0.174275,-0.171726,-0.164527,-0.140738 +-0.142160,-0.137549,-0.181210,-0.178224,-0.170343,-0.144900 +-0.146172,-0.141306,-0.188278,-0.184817,-0.176224,-0.149071 +-0.150184,-0.145063,-0.195477,-0.191503,-0.182165,-0.153246 +-0.154197,-0.148819,-0.202802,-0.198277,-0.188164,-0.157424 +-0.158210,-0.152576,-0.210252,-0.205138,-0.194218,-0.161601 +-0.162223,-0.156333,-0.217822,-0.212081,-0.200324,-0.165778 +-0.166235,-0.160090,-0.225511,-0.219105,-0.206479,-0.169956 +-0.170248,-0.163847,-0.233315,-0.226205,-0.212680,-0.174133 +-0.174261,-0.167604,-0.241230,-0.233380,-0.218924,-0.178311 +-0.178273,-0.171361,-0.249255,-0.240625,-0.225208,-0.182488 +-0.182286,-0.175118,-0.257386,-0.247939,-0.231529,-0.186666 +-0.186299,-0.178875,-0.265620,-0.255318,-0.237883,-0.190843 +-0.190312,-0.182632,-0.273954,-0.262758,-0.244269,-0.195021 +-0.194324,-0.186389,-0.282385,-0.270258,-0.250682,-0.199198 +-0.198337,-0.190146,-0.290910,-0.277814,-0.257121,-0.203376 +-0.202350,-0.193903,-0.299527,-0.285423,-0.263581,-0.207553 +-0.206362,-0.197660,-0.308231,-0.293082,-0.270061,-0.211731 +-0.210375,-0.201416,-0.317020,-0.300787,-0.276556,-0.215908 +-0.214388,-0.205173,-0.325892,-0.308537,-0.283064,-0.220086 +-0.218400,-0.208930,-0.334842,-0.316328,-0.289582,-0.224263 +-0.222413,-0.212687,-0.343869,-0.324157,-0.296107,-0.228441 +-0.226426,-0.216444,-0.352969,-0.332021,-0.302636,-0.232618 +-0.230439,-0.220201,-0.362138,-0.339917,-0.309166,-0.236796 +-0.234451,-0.223958,-0.371375,-0.347842,-0.315696,-0.240973 +-0.238464,-0.227715,-0.380676,-0.355793,-0.322226,-0.245150 +-0.242477,-0.231472,-0.390038,-0.363767,-0.328756,-0.249328 +-0.246489,-0.235229,-0.399458,-0.371761,-0.335286,-0.253505 +-0.250502,-0.238986,-0.408933,-0.379773,-0.341817,-0.257683 +-0.254515,-0.242743,-0.418461,-0.387798,-0.348347,-0.261860 +-0.258528,-0.246500,-0.428037,-0.395834,-0.354877,-0.266038 +-0.262540,-0.250256,-0.437659,-0.403878,-0.361407,-0.270215 +-0.266553,-0.254013,-0.447324,-0.411927,-0.367937,-0.274393 +-0.270566,-0.257770,-0.457030,-0.419979,-0.374467,-0.278570 +-0.274578,-0.261527,-0.466772,-0.428030,-0.380997,-0.282748 +-0.278591,-0.265284,-0.476549,-0.436082,-0.387527,-0.286925 +-0.282604,-0.269041,-0.486357,-0.444133,-0.394057,-0.291103 +-0.286617,-0.272798,-0.496193,-0.452185,-0.400587,-0.295280 +-0.290629,-0.276555,-0.506053,-0.460236,-0.407117,-0.299458 +-0.294642,-0.280312,-0.515936,-0.468288,-0.413647,-0.303635 +-0.298655,-0.284069,-0.525838,-0.476339,-0.420177,-0.307813 +-0.302667,-0.287826,-0.535756,-0.484390,-0.426707,-0.311990 +-0.306680,-0.291583,-0.545687,-0.492442,-0.433238,-0.316168 +-0.310693,-0.295340,-0.555629,-0.500493,-0.439768,-0.320345 +-0.314705,-0.299097,-0.565577,-0.508545,-0.446298,-0.324523 +-0.318718,-0.302853,-0.575529,-0.516596,-0.452828,-0.328700 +-0.322731,-0.306610,-0.585483,-0.524648,-0.459358,-0.332877 +-0.326744,-0.310367,-0.595436,-0.532699,-0.465888,-0.337055 +-0.330756,-0.314124,-0.605390,-0.540751,-0.472418,-0.341232 +-0.334769,-0.317881,-0.615343,-0.548802,-0.478948,-0.345410 +-0.338782,-0.321638,-0.625297,-0.556854,-0.485478,-0.349587 +-0.342794,-0.325395,-0.635250,-0.564905,-0.492008,-0.353765 +-0.346807,-0.329152,-0.645204,-0.572957,-0.498538,-0.357942 +-0.350820,-0.332909,-0.655157,-0.581008,-0.505068,-0.362120 +-0.354833,-0.336666,-0.665111,-0.589060,-0.511598,-0.366297 +-0.358845,-0.340423,-0.675065,-0.597111,-0.518128,-0.370475 +-0.362858,-0.344180,-0.685018,-0.605162,-0.524659,-0.374652 +-0.366871,-0.347937,-0.694972,-0.613214,-0.531189,-0.378830 +-0.370883,-0.351694,-0.704925,-0.621265,-0.537719,-0.383007 +-0.374896,-0.355450,-0.714879,-0.629317,-0.544249,-0.387185 +-0.378909,-0.359207,-0.724832,-0.637368,-0.550779,-0.391362 +-0.382922,-0.362964,-0.734786,-0.645420,-0.557309,-0.395540 +-0.386934,-0.366721,-0.744739,-0.653471,-0.563839,-0.399717 +-0.390947,-0.370478,-0.754693,-0.661523,-0.570369,-0.403895 +-0.394960,-0.374235,-0.764646,-0.669574,-0.576899,-0.408072 +-0.398972,-0.377992,-0.774600,-0.677626,-0.583429,-0.412249 +-0.402985,-0.381749,-0.784554,-0.685677,-0.589959,-0.416427 +-0.406998,-0.385506,-0.794507,-0.693729,-0.596489,-0.420604 +-0.411010,-0.389263,-0.804461,-0.701780,-0.603019,-0.424782 +-0.415023,-0.393020,-0.814414,-0.709831,-0.609549,-0.428959 +-0.419036,-0.396777,-0.824368,-0.717883,-0.616080,-0.433137 +-0.423049,-0.400534,-0.834321,-0.725934,-0.622610,-0.437314 +-0.427061,-0.404290,-0.844275,-0.733986,-0.629140,-0.441492 +-0.431074,-0.408047,-0.854228,-0.742037,-0.635670,-0.445669 +-0.435087,-0.411804,-0.864182,-0.750089,-0.642200,-0.449847 +-0.439099,-0.415561,-0.874135,-0.758140,-0.648730,-0.454024 +-0.443112,-0.419318,-0.884089,-0.766192,-0.655260,-0.458202 +-0.447125,-0.423075,-0.894042,-0.774243,-0.661790,-0.462379 +-0.451138,-0.426832,-0.903996,-0.782295,-0.668320,-0.466557 +-0.455150,-0.430589,-0.913950,-0.790346,-0.674850,-0.470734 +-0.459163,-0.434346,-0.923903,-0.798398,-0.681380,-0.474912 +-0.463176,-0.438103,-0.933857,-0.806449,-0.687910,-0.479089 +-0.467188,-0.441860,-0.943810,-0.814501,-0.694440,-0.483267 +-0.471201,-0.445617,-0.953764,-0.822552,-0.700970,-0.487444 +-0.475214,-0.449374,-0.963717,-0.830603,-0.707501,-0.491621 +-0.479226,-0.453131,-0.973671,-0.838655,-0.714031,-0.495799 +-0.483239,-0.456887,-0.983624,-0.846706,-0.720561,-0.499976 +-0.487252,-0.460644,-0.993578,-0.854758,-0.727091,-0.504154 +-0.491265,-0.464401,-1.003531,-0.862809,-0.733621,-0.508331 +-0.495277,-0.468158,-1.013485,-0.870861,-0.740151,-0.512509 +-0.499290,-0.471915,-1.023439,-0.878912,-0.746681,-0.516686 +-0.503303,-0.475672,-1.033392,-0.886964,-0.753211,-0.520864 +-0.507315,-0.479429,-1.043346,-0.895015,-0.759741,-0.525041 +-0.511328,-0.483186,-1.053299,-0.903067,-0.766271,-0.529219 +-0.515341,-0.486943,-1.063253,-0.911118,-0.772801,-0.533396 +-0.519354,-0.490700,-1.073206,-0.919170,-0.779331,-0.537574 +-0.523366,-0.494457,-1.083160,-0.927221,-0.785861,-0.541751 +-0.527379,-0.498214,-1.093113,-0.935272,-0.792391,-0.545929 +-0.531392,-0.501971,-1.103067,-0.943324,-0.798922,-0.550106 +-0.535404,-0.505728,-1.113020,-0.951375,-0.805452,-0.554284 +-0.539417,-0.509484,-1.122974,-0.959427,-0.811982,-0.558461 +-0.543430,-0.513241,-1.132928,-0.967478,-0.818512,-0.562639 +-0.547443,-0.516998,-1.142881,-0.975530,-0.825042,-0.566816 +-0.551455,-0.520755,-1.152835,-0.983581,-0.831572,-0.570994 +-0.555468,-0.524510,-1.162788,-0.991633,-0.838102,-0.575171 +-0.559481,-0.528261,-1.172742,-0.999684,-0.844632,-0.579348 +-0.563493,-0.532004,-1.182695,-1.007736,-0.851162,-0.583526 +-0.567506,-0.535737,-1.192649,-1.015787,-0.857692,-0.587703 +-0.571519,-0.539456,-1.202602,-1.023839,-0.864222,-0.591881 +-0.575531,-0.543159,-1.212556,-1.031890,-0.870752,-0.596058 +-0.579544,-0.546842,-1.222509,-1.039942,-0.877282,-0.600236 +-0.583557,-0.550502,-1.232463,-1.047993,-0.883812,-0.604413 +-0.587570,-0.554137,-1.242417,-1.056044,-0.890343,-0.608591 +-0.591582,-0.557743,-1.252370,-1.064096,-0.896873,-0.612768 +-0.595595,-0.561318,-1.262324,-1.072147,-0.903403,-0.616946 +-0.599608,-0.564858,-1.272277,-1.080199,-0.909933,-0.621123 +-0.603620,-0.568361,-1.282231,-1.088250,-0.916463,-0.625301 +-0.607633,-0.571823,-1.292184,-1.096302,-0.922993,-0.629478 +-0.611646,-0.575242,-1.302138,-1.104353,-0.929523,-0.633656 +-0.615659,-0.578614,-1.312091,-1.112405,-0.936053,-0.637833 +-0.619671,-0.581937,-1.322045,-1.120456,-0.942583,-0.642011 +-0.623684,-0.585207,-1.331998,-1.128508,-0.949113,-0.646188 +-0.627697,-0.588421,-1.341952,-1.136559,-0.955643,-0.650366 +-0.631709,-0.591577,-1.351906,-1.144611,-0.962173,-0.654543 +-0.635722,-0.594672,-1.361859,-1.152662,-0.968703,-0.658720 +-0.639735,-0.597701,-1.371813,-1.160713,-0.975233,-0.662898 +-0.643748,-0.600664,-1.381766,-1.168765,-0.981764,-0.667075 +-0.647760,-0.603555,-1.391720,-1.176816,-0.988294,-0.671253 +-0.651773,-0.606374,-1.401673,-1.184868,-0.994824,-0.675430 +-0.655786,-0.609115,-1.411627,-1.192919,-1.001354,-0.679608 +-0.659798,-0.611778,-1.421580,-1.200971,-1.007884,-0.683785 +-0.663811,-0.614357,-1.431534,-1.209022,-1.014414,-0.687963 +-0.667824,-0.616851,-1.441487,-1.217074,-1.020944,-0.692140 +-0.671836,-0.619257,-1.451441,-1.225125,-1.027474,-0.696318 +-0.675849,-0.621571,-1.461395,-1.233177,-1.034004,-0.700495 +-0.679862,-0.623790,-1.471348,-1.241228,-1.040534,-0.704673 +-0.683875,-0.625912,-1.481302,-1.249280,-1.047064,-0.708850 +-0.687887,-0.627933,-1.491255,-1.257331,-1.053594,-0.713028 +-0.691900,-0.629851,-1.501209,-1.265383,-1.060124,-0.717205 +-0.695913,-0.631662,-1.511162,-1.273434,-1.066655,-0.721383 +-0.699925,-0.633364,-1.521116,-1.281485,-1.073185,-0.725560 +-0.703938,-0.634953,-1.531069,-1.289537,-1.079715,-0.729738 +-0.707951,-0.636427,-1.541022,-1.297588,-1.086245,-0.733915 +-0.711964,-0.637782,-1.550972,-1.305640,-1.092775,-0.738092 +-0.715976,-0.639016,-1.560916,-1.313691,-1.099305,-0.742270 +-0.719989,-0.640125,-1.570850,-1.321743,-1.105834,-0.746446 +-0.724002,-0.641106,-1.580773,-1.329794,-1.112359,-0.750619 +-0.728014,-0.641957,-1.590680,-1.337846,-1.118877,-0.754784 +-0.732027,-0.642674,-1.600569,-1.345897,-1.125385,-0.758939 +-0.736040,-0.643255,-1.610437,-1.353949,-1.131881,-0.763081 +-0.740053,-0.643696,-1.620281,-1.362000,-1.138360,-0.767207 +-0.744065,-0.643995,-1.630098,-1.370052,-1.144820,-0.771315 +-0.748078,-0.644148,-1.639885,-1.378103,-1.151259,-0.775400 +-0.752091,-0.644153,-1.649638,-1.386154,-1.157673,-0.779460 +-0.756103,-0.644008,-1.659355,-1.394206,-1.164058,-0.783492 +-0.760117,-0.643713,-1.669034,-1.402257,-1.170413,-0.787493 +-0.764133,-0.643267,-1.678670,-1.410309,-1.176734,-0.791460 +-0.768155,-0.642672,-1.688261,-1.418360,-1.183018,-0.795390 +-0.772187,-0.641927,-1.697803,-1.426412,-1.189262,-0.799280 +-0.776231,-0.641032,-1.707295,-1.434463,-1.195463,-0.803127 +-0.780289,-0.639986,-1.716732,-1.442515,-1.201618,-0.806928 +-0.784366,-0.638791,-1.726113,-1.450566,-1.207725,-0.810680 +-0.788464,-0.637446,-1.735433,-1.458618,-1.213779,-0.814380 +-0.792586,-0.635951,-1.744690,-1.466669,-1.219779,-0.818025 +-0.796735,-0.634306,-1.753881,-1.474721,-1.225720,-0.821612 +-0.800914,-0.632510,-1.763003,-1.482772,-1.231601,-0.825138 +-0.805127,-0.630565,-1.772053,-1.490824,-1.237417,-0.828600 +-0.809375,-0.628470,-1.781027,-1.498875,-1.243167,-0.831994 +-0.813663,-0.626225,-1.789924,-1.506926,-1.248847,-0.835319 +-0.817992,-0.623829,-1.798739,-1.514978,-1.254454,-0.838571 +-0.822367,-0.621284,-1.807470,-1.523029,-1.259985,-0.841747 +-0.826790,-0.618589,-1.816114,-1.531081,-1.265437,-0.844844 +-0.831264,-0.615744,-1.824668,-1.539132,-1.270808,-0.847858 +-0.835792,-0.612749,-1.833129,-1.547184,-1.276093,-0.850788 +-0.840377,-0.609603,-1.841493,-1.555235,-1.281290,-0.853630 +-0.845022,-0.606308,-1.849759,-1.563287,-1.286397,-0.856380 +-0.849730,-0.602863,-1.857922,-1.571338,-1.291409,-0.859037 +-0.854505,-0.599268,-1.865980,-1.579390,-1.296325,-0.861597 +-0.859348,-0.595522,-1.873930,-1.587441,-1.301141,-0.864056 +-0.864264,-0.591627,-1.881769,-1.595493,-1.305853,-0.866413 +-0.869254,-0.587582,-1.889494,-1.603544,-1.310460,-0.868663 +-0.874323,-0.583387,-1.897102,-1.611595,-1.314958,-0.870805 +-0.879473,-0.579042,-1.904589,-1.619647,-1.319344,-0.872834 +-0.884707,-0.574546,-1.911953,-1.627698,-1.323615,-0.874749 +-0.890028,-0.569901,-1.919192,-1.635750,-1.327769,-0.876545 +-0.895439,-0.565106,-1.926301,-1.643801,-1.331801,-0.878221 +-0.900943,-0.560161,-1.933278,-1.651849,-1.335709,-0.879772 +-0.906539,-0.555065,-1.940120,-1.659891,-1.339491,-0.881197 +-0.912223,-0.549820,-1.946823,-1.667925,-1.343142,-0.882491 +-0.917994,-0.544425,-1.953386,-1.675947,-1.346661,-0.883653 +-0.923847,-0.538880,-1.959804,-1.683953,-1.350044,-0.884678 +-0.929780,-0.533185,-1.966075,-1.691942,-1.353288,-0.885564 +-0.935789,-0.527344,-1.972197,-1.699911,-1.356389,-0.886309 +-0.941873,-0.521359,-1.978169,-1.707855,-1.359346,-0.886908 +-0.948027,-0.515234,-1.983991,-1.715772,-1.362155,-0.887359 +-0.954250,-0.508971,-1.989662,-1.723660,-1.364815,-0.887661 +-0.960537,-0.502574,-1.995184,-1.731515,-1.367324,-0.887812 +-0.966885,-0.496045,-2.000556,-1.739333,-1.369683,-0.887813 +-0.973293,-0.489387,-2.005777,-1.747114,-1.371892,-0.887665 +-0.979756,-0.482603,-2.010849,-1.754852,-1.373954,-0.887366 +-0.986273,-0.475697,-2.015771,-1.762545,-1.375869,-0.886918 +-0.992839,-0.468672,-2.020543,-1.770191,-1.377643,-0.886319 +-0.999452,-0.461530,-2.025164,-1.777785,-1.379277,-0.885571 +-1.006108,-0.454274,-2.029636,-1.785326,-1.380774,-0.884672 +-1.012806,-0.446908,-2.033958,-1.792810,-1.382139,-0.883624 +-1.019541,-0.439434,-2.038129,-1.800234,-1.383373,-0.882425 +-1.026311,-0.431855,-2.042151,-1.807596,-1.384479,-0.881079 +-1.033113,-0.424175,-2.046023,-1.814891,-1.385461,-0.879588 +-1.039944,-0.416396,-2.049745,-1.822118,-1.386322,-0.877956 +-1.046801,-0.408522,-2.053316,-1.829272,-1.387065,-0.876185 +-1.053680,-0.400555,-2.056738,-1.836352,-1.387692,-0.874278 +-1.060579,-0.392498,-2.060010,-1.843354,-1.388207,-0.872239 +-1.067495,-0.384355,-2.063131,-1.850276,-1.388613,-0.870069 +-1.074425,-0.376128,-2.066103,-1.857113,-1.388912,-0.867773 +-1.081366,-0.367820,-2.068925,-1.863863,-1.389108,-0.865354 +-1.088315,-0.359435,-2.071596,-1.870524,-1.389204,-0.862813 +-1.095268,-0.350976,-2.074118,-1.877092,-1.389202,-0.860155 +-1.102223,-0.342444,-2.076490,-1.883564,-1.389106,-0.857383 +-1.109177,-0.333844,-2.078712,-1.889937,-1.388918,-0.854498 +-1.116127,-0.325179,-2.080783,-1.896209,-1.388643,-0.851505 +-1.123069,-0.316451,-2.082705,-1.902375,-1.388282,-0.848406 +-1.130002,-0.307663,-2.084477,-1.908434,-1.387838,-0.845205 +-1.136921,-0.298819,-2.086099,-1.914381,-1.387315,-0.841903 +-1.143824,-0.289921,-2.087576,-1.920215,-1.386716,-0.838505 +-1.150708,-0.280972,-2.088909,-1.925932,-1.386044,-0.835014 +-1.157569,-0.271976,-2.090103,-1.931530,-1.385301,-0.831431 +-1.164406,-0.262936,-2.091159,-1.937004,-1.384491,-0.827761 +-1.171214,-0.253853,-2.092081,-1.942353,-1.383616,-0.824007 +-1.177991,-0.244732,-2.092872,-1.947572,-1.382681,-0.820170 +-1.184734,-0.235576,-2.093534,-1.952660,-1.381686,-0.816255 +-1.191440,-0.226387,-2.094072,-1.957613,-1.380637,-0.812264 +-1.198105,-0.217168,-2.094487,-1.962428,-1.379535,-0.808201 +-1.204727,-0.207922,-2.094783,-1.967103,-1.378384,-0.804067 +-1.211304,-0.198653,-2.094963,-1.971633,-1.377186,-0.799867 +-1.217831,-0.189364,-2.095030,-1.976017,-1.375945,-0.795604 +-1.224305,-0.180057,-2.094986,-1.980251,-1.374664,-0.791279 +-1.230725,-0.170735,-2.094836,-1.984337,-1.373346,-0.786897 +-1.237086,-0.161401,-2.094581,-1.988279,-1.371993,-0.782460 +-1.243387,-0.152059,-2.094225,-1.992078,-1.370609,-0.777972 +-1.249623,-0.142712,-2.093771,-1.995738,-1.369196,-0.773435 +-1.255792,-0.133362,-2.093222,-1.999262,-1.367758,-0.768852 +-1.261890,-0.124012,-2.092581,-2.002652,-1.366298,-0.764226 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273865,-0.105325,-2.091033,-2.009046,-1.363321,-0.754859 +-1.279735,-0.095995,-2.090126,-2.012048,-1.361805,-0.750124 +-1.285523,-0.086676,-2.089127,-2.014917,-1.360267,-0.745357 +-1.291226,-0.077373,-2.088033,-2.017651,-1.358703,-0.740563 +-1.296840,-0.068089,-2.086841,-2.020245,-1.357110,-0.735744 +-1.302364,-0.058826,-2.085547,-2.022697,-1.355487,-0.730904 +-1.307793,-0.049587,-2.084150,-2.025004,-1.353829,-0.726045 +-1.313125,-0.040376,-2.082645,-2.027163,-1.352134,-0.721170 +-1.318357,-0.031195,-2.081030,-2.029172,-1.350398,-0.716282 +-1.323485,-0.022047,-2.079302,-2.031031,-1.348619,-0.711385 +-1.328508,-0.012936,-2.077458,-2.032740,-1.346794,-0.706481 +-1.333421,-0.003865,-2.075494,-2.034299,-1.344919,-0.701573 +-1.338222,0.005165,-2.073409,-2.035708,-1.342992,-0.696665 +-1.342908,0.014149,-2.071198,-2.036967,-1.341010,-0.691759 +-1.347476,0.023084,-2.068859,-2.038076,-1.338969,-0.686858 +-1.351922,0.031968,-2.066389,-2.039035,-1.336867,-0.681965 +-1.356245,0.040798,-2.063785,-2.039844,-1.334701,-0.677084 +-1.360440,0.049571,-2.061043,-2.040503,-1.332467,-0.672217 +-1.364505,0.058282,-2.058162,-2.041012,-1.330163,-0.667368 +-1.368436,0.066931,-2.055137,-2.041371,-1.327786,-0.662539 +-1.372232,0.075513,-2.051966,-2.041580,-1.325332,-0.657733 +-1.375888,0.084026,-2.048646,-2.041639,-1.322799,-0.652953 +-1.379403,0.092466,-2.045177,-2.041548,-1.320184,-0.648202 +-1.382772,0.100831,-2.041557,-2.041307,-1.317483,-0.643484 +-1.385993,0.109118,-2.037787,-2.040916,-1.314694,-0.638802 +-1.389064,0.117323,-2.033867,-2.040375,-1.311813,-0.634157 +-1.391985,0.125444,-2.029797,-2.039684,-1.308839,-0.629554 +-1.394756,0.133478,-2.025578,-2.038843,-1.305767,-0.624995 +-1.397377,0.141421,-2.021208,-2.037852,-1.302594,-0.620483 +-1.399848,0.149270,-2.016688,-2.036711,-1.299318,-0.616022 +-1.402169,0.157023,-2.012018,-2.035420,-1.295936,-0.611614 +-1.404340,0.164677,-2.007198,-2.033979,-1.292448,-0.607262 +-1.406361,0.172229,-2.002228,-2.032388,-1.288855,-0.602970 +-1.408232,0.179675,-1.997109,-2.030647,-1.285161,-0.598740 +-1.409953,0.187013,-1.991840,-2.028756,-1.281369,-0.594575 +-1.411524,0.194239,-1.986425,-2.026715,-1.277483,-0.590479 +-1.412945,0.201351,-1.980867,-2.024524,-1.273504,-0.586453 +-1.414216,0.208345,-1.975169,-2.022184,-1.269437,-0.582502 +-1.415337,0.215219,-1.969335,-2.019693,-1.265283,-0.578629 +-1.416308,0.221970,-1.963366,-2.017052,-1.261047,-0.574835 +-1.417129,0.228594,-1.957265,-2.014261,-1.256730,-0.571125 +-1.417800,0.235089,-1.951037,-2.011320,-1.252337,-0.567502 +-1.418321,0.241452,-1.944684,-2.008229,-1.247869,-0.563967 +-1.418692,0.247679,-1.938209,-2.004988,-1.243331,-0.560520 +-1.418913,0.253768,-1.931615,-2.001597,-1.238724,-0.557157 +-1.418983,0.259715,-1.924904,-1.998056,-1.234053,-0.553877 +-1.418904,0.265518,-1.918081,-1.994365,-1.229320,-0.550675 +-1.418675,0.271174,-1.911147,-1.990524,-1.224527,-0.547549 +-1.418296,0.276680,-1.904107,-1.986533,-1.219679,-0.544496 +-1.417767,0.282035,-1.896962,-1.982392,-1.214778,-0.541512 +-1.417088,0.287241,-1.889716,-1.978101,-1.209827,-0.538595 +-1.416259,0.292297,-1.882373,-1.973660,-1.204829,-0.535742 +-1.415280,0.297203,-1.874934,-1.969069,-1.199787,-0.532950 +-1.414151,0.301959,-1.867403,-1.964328,-1.194704,-0.530215 +-1.412872,0.306565,-1.859783,-1.959437,-1.189582,-0.527536 +-1.411443,0.311021,-1.852077,-1.954396,-1.184426,-0.524908 +-1.409864,0.315327,-1.844288,-1.949205,-1.179239,-0.522328 +-1.408135,0.319483,-1.836419,-1.943864,-1.174022,-0.519795 +-1.406256,0.323489,-1.828473,-1.938373,-1.168779,-0.517304 +-1.404227,0.327344,-1.820452,-1.932732,-1.163513,-0.514853 +-1.402048,0.331050,-1.812361,-1.926941,-1.158227,-0.512439 +-1.399719,0.334606,-1.804202,-1.921000,-1.152924,-0.510059 +-1.397240,0.338012,-1.795977,-1.914909,-1.147607,-0.507709 +-1.394611,0.341268,-1.787691,-1.908668,-1.142280,-0.505387 +-1.391832,0.344374,-1.779345,-1.902280,-1.136944,-0.503090 +-1.388903,0.347330,-1.770944,-1.895747,-1.131603,-0.500814 +-1.385824,0.350136,-1.762489,-1.889072,-1.126260,-0.498558 +-1.382595,0.352792,-1.753984,-1.882259,-1.120918,-0.496317 +-1.379216,0.355298,-1.745432,-1.875310,-1.115575,-0.494089 +-1.375689,0.357653,-1.736837,-1.868228,-1.110232,-0.491870 +-1.372017,0.359859,-1.728200,-1.861017,-1.104889,-0.489659 +-1.368202,0.361915,-1.719525,-1.853679,-1.099546,-0.487451 +-1.364249,0.363821,-1.710815,-1.846217,-1.094204,-0.485244 +-1.360159,0.365577,-1.702072,-1.838635,-1.088861,-0.483037 +-1.355935,0.367187,-1.693301,-1.830935,-1.083518,-0.480830 +-1.351582,0.368652,-1.684504,-1.823120,-1.078175,-0.478623 +-1.347101,0.369976,-1.675684,-1.815194,-1.072832,-0.476416 +-1.342496,0.371162,-1.666843,-1.807159,-1.067489,-0.474210 +-1.337770,0.372213,-1.657986,-1.799018,-1.062147,-0.472003 +-1.332925,0.373132,-1.649115,-1.790775,-1.056804,-0.469796 +-1.327965,0.373921,-1.640232,-1.782432,-1.051461,-0.467589 +-1.322893,0.374585,-1.631341,-1.773992,-1.046118,-0.465382 +-1.317712,0.375126,-1.622446,-1.765459,-1.040775,-0.463175 +-1.312425,0.375546,-1.613548,-1.756835,-1.035432,-0.460968 +-1.307034,0.375849,-1.604650,-1.748123,-1.030090,-0.458761 +-1.301543,0.376039,-1.595752,-1.739327,-1.024747,-0.456555 +-1.295955,0.376117,-1.586854,-1.730449,-1.019404,-0.454348 +-1.290272,0.376087,-1.577956,-1.721492,-1.014061,-0.452141 +-1.284499,0.375952,-1.569059,-1.712460,-1.008718,-0.449934 +-1.278637,0.375715,-1.560161,-1.703355,-1.003376,-0.447727 +-1.272690,0.375379,-1.551263,-1.694180,-0.998033,-0.445520 +-1.266660,0.374946,-1.542365,-1.684939,-0.992690,-0.443313 +-1.260552,0.374421,-1.533467,-1.675634,-0.987347,-0.441106 +-1.254367,0.373805,-1.524569,-1.666268,-0.982004,-0.438899 +-1.248109,0.373103,-1.515671,-1.656845,-0.976661,-0.436693 +-1.241780,0.372316,-1.506773,-1.647367,-0.971319,-0.434486 +-1.235385,0.371448,-1.497875,-1.637838,-0.965976,-0.432279 +-1.228925,0.370503,-1.488977,-1.628259,-0.960633,-0.430072 +-1.222404,0.369482,-1.480080,-1.618635,-0.955290,-0.427865 +-1.215825,0.368389,-1.471182,-1.608969,-0.949947,-0.425658 +-1.209190,0.367226,-1.462284,-1.599263,-0.944605,-0.423451 +-1.202503,0.365998,-1.453386,-1.589520,-0.939262,-0.421244 +-1.195767,0.364707,-1.444488,-1.579743,-0.933919,-0.419037 +-1.188985,0.363356,-1.435590,-1.569936,-0.928576,-0.416831 +-1.182160,0.361947,-1.426692,-1.560101,-0.923233,-0.414624 +-1.175294,0.360485,-1.417794,-1.550242,-0.917890,-0.412417 +-1.168391,0.358971,-1.408896,-1.540360,-0.912548,-0.410210 +-1.161454,0.357409,-1.399998,-1.530460,-0.907205,-0.408003 +-1.154485,0.355802,-1.391101,-1.520545,-0.901862,-0.405796 +-1.147489,0.354153,-1.382203,-1.510617,-0.896519,-0.403589 +-1.140467,0.352465,-1.373305,-1.500679,-0.891176,-0.401382 +-1.133422,0.350741,-1.364407,-1.490734,-0.885833,-0.399176 +-1.126359,0.348984,-1.355509,-1.480786,-0.880491,-0.396969 +-1.119279,0.347197,-1.346611,-1.470837,-0.875148,-0.394762 +-1.112186,0.345382,-1.337713,-1.460888,-0.869805,-0.392555 +-1.105083,0.343544,-1.328815,-1.450939,-0.864462,-0.390348 +-1.097973,0.341684,-1.319917,-1.440990,-0.859119,-0.388141 +-1.090858,0.339807,-1.311019,-1.431041,-0.853777,-0.385934 +-1.083742,0.337914,-1.302122,-1.421092,-0.848434,-0.383727 +-1.076626,0.336009,-1.293224,-1.411143,-0.843091,-0.381520 +-1.069510,0.334095,-1.284326,-1.401193,-0.837748,-0.379314 +-1.062394,0.332175,-1.275428,-1.391244,-0.832405,-0.377107 +-1.055278,0.330252,-1.266530,-1.381295,-0.827062,-0.374900 +-1.048162,0.328328,-1.257632,-1.371346,-0.821720,-0.372693 +-1.041046,0.326404,-1.248734,-1.361397,-0.816377,-0.370486 +-1.033930,0.324481,-1.239836,-1.351448,-0.811034,-0.368279 +-1.026815,0.322557,-1.230938,-1.341499,-0.805691,-0.366072 +-1.019699,0.320633,-1.222040,-1.331550,-0.800348,-0.363865 +-1.012583,0.318710,-1.213143,-1.321601,-0.795005,-0.361659 +-1.005467,0.316786,-1.204245,-1.311652,-0.789663,-0.359452 +-0.998351,0.314862,-1.195347,-1.301703,-0.784320,-0.357245 +-0.991235,0.312939,-1.186449,-1.291753,-0.778977,-0.355038 +-0.984119,0.311015,-1.177551,-1.281804,-0.773634,-0.352831 +-0.977003,0.309091,-1.168653,-1.271855,-0.768291,-0.350624 +-0.969887,0.307168,-1.159755,-1.261906,-0.762949,-0.348417 +-0.962771,0.305244,-1.150857,-1.251957,-0.757606,-0.346210 +-0.955655,0.303320,-1.141959,-1.242008,-0.752263,-0.344003 +-0.948539,0.301397,-1.133061,-1.232059,-0.746920,-0.341797 +-0.941423,0.299473,-1.124164,-1.222110,-0.741577,-0.339590 +-0.934307,0.297549,-1.115266,-1.212161,-0.736234,-0.337383 +-0.927191,0.295626,-1.106368,-1.202212,-0.730892,-0.335176 +-0.920075,0.293702,-1.097470,-1.192263,-0.725549,-0.332969 +-0.912959,0.291778,-1.088572,-1.182314,-0.720206,-0.330762 +-0.905843,0.289855,-1.079674,-1.172364,-0.714863,-0.328555 +-0.898727,0.287931,-1.070776,-1.162415,-0.709520,-0.326348 +-0.891611,0.286007,-1.061878,-1.152466,-0.704178,-0.324142 +-0.884495,0.284084,-1.052980,-1.142517,-0.698835,-0.321935 +-0.877379,0.282160,-1.044082,-1.132568,-0.693492,-0.319728 +-0.870263,0.280236,-1.035185,-1.122619,-0.688149,-0.317521 +-0.863147,0.278313,-1.026287,-1.112670,-0.682806,-0.315314 +-0.856031,0.276389,-1.017389,-1.102721,-0.677463,-0.313107 +-0.848915,0.274465,-1.008491,-1.092772,-0.672121,-0.310900 +-0.841799,0.272542,-0.999593,-1.082823,-0.666778,-0.308693 +-0.834683,0.270618,-0.990695,-1.072874,-0.661435,-0.306486 +-0.827567,0.268694,-0.981797,-1.062924,-0.656092,-0.304280 +-0.820451,0.266771,-0.972899,-1.052975,-0.650749,-0.302073 +-0.813335,0.264847,-0.964001,-1.043026,-0.645406,-0.299866 +-0.806219,0.262923,-0.955103,-1.033077,-0.640064,-0.297659 +-0.799103,0.261000,-0.946206,-1.023128,-0.634721,-0.295452 +-0.791987,0.259076,-0.937308,-1.013179,-0.629378,-0.293245 +-0.784871,0.257152,-0.928410,-1.003230,-0.624035,-0.291038 +-0.777755,0.255229,-0.919512,-0.993281,-0.618692,-0.288831 +-0.770639,0.253305,-0.910614,-0.983332,-0.613350,-0.286625 +-0.763523,0.251381,-0.901716,-0.973383,-0.608007,-0.284418 +-0.756407,0.249457,-0.892818,-0.963434,-0.602664,-0.282211 +-0.749291,0.247534,-0.883920,-0.953485,-0.597321,-0.280004 +-0.742175,0.245610,-0.875022,-0.943535,-0.591978,-0.277797 +-0.735059,0.243686,-0.866124,-0.933586,-0.586635,-0.275590 +-0.727943,0.241763,-0.857227,-0.923637,-0.581293,-0.273383 +-0.720827,0.239839,-0.848329,-0.913688,-0.575950,-0.271176 +-0.713711,0.237915,-0.839431,-0.903739,-0.570607,-0.268969 +-0.706595,0.235992,-0.830533,-0.893790,-0.565264,-0.266763 +-0.699479,0.234068,-0.821635,-0.883841,-0.559921,-0.264556 +-0.692363,0.232144,-0.812737,-0.873892,-0.554579,-0.262349 +-0.685247,0.230221,-0.803839,-0.863943,-0.549236,-0.260142 +-0.678131,0.228297,-0.794941,-0.853994,-0.543893,-0.257935 +-0.671015,0.226373,-0.786043,-0.844045,-0.538550,-0.255728 +-0.663899,0.224450,-0.777145,-0.834095,-0.533207,-0.253521 +-0.656783,0.222526,-0.768248,-0.824146,-0.527864,-0.251314 +-0.649667,0.220602,-0.759350,-0.814197,-0.522522,-0.249108 +-0.642551,0.218679,-0.750452,-0.804248,-0.517179,-0.246901 +-0.635435,0.216755,-0.741554,-0.794299,-0.511836,-0.244694 +-0.628319,0.214831,-0.732656,-0.784350,-0.506493,-0.242487 +-0.621203,0.212908,-0.723758,-0.774401,-0.501150,-0.240280 +-0.614087,0.210984,-0.714860,-0.764452,-0.495807,-0.238073 +-0.606971,0.209060,-0.705962,-0.754503,-0.490465,-0.235866 +-0.599855,0.207137,-0.697064,-0.744554,-0.485122,-0.233659 +-0.592739,0.205213,-0.688167,-0.734605,-0.479779,-0.231452 +-0.585623,0.203289,-0.679269,-0.724655,-0.474436,-0.229246 +-0.578507,0.201366,-0.670371,-0.714706,-0.469093,-0.227039 +-0.571391,0.199442,-0.661473,-0.704757,-0.463751,-0.224832 +-0.564275,0.197518,-0.652575,-0.694808,-0.458408,-0.222625 +-0.557159,0.195595,-0.643677,-0.684859,-0.453065,-0.220418 +-0.550043,0.193671,-0.634779,-0.674910,-0.447722,-0.218211 +-0.542927,0.191747,-0.625881,-0.664961,-0.442379,-0.216004 +-0.535811,0.189824,-0.616983,-0.655012,-0.437036,-0.213797 +-0.528695,0.187900,-0.608085,-0.645063,-0.431694,-0.211591 +-0.521579,0.185976,-0.599188,-0.635114,-0.426351,-0.209384 +-0.514463,0.184053,-0.590290,-0.625165,-0.421008,-0.207177 +-0.507348,0.182129,-0.581392,-0.615216,-0.415665,-0.204970 +-0.500232,0.180205,-0.572494,-0.605266,-0.410322,-0.202763 +-0.493116,0.178282,-0.563596,-0.595317,-0.404980,-0.200556 +-0.486000,0.176358,-0.554698,-0.585368,-0.399637,-0.198349 +-0.478884,0.174434,-0.545800,-0.575419,-0.394294,-0.196142 +-0.471768,0.172510,-0.536902,-0.565471,-0.388951,-0.193935 +-0.464652,0.170587,-0.528004,-0.555527,-0.383608,-0.191729 +-0.457536,0.168663,-0.519106,-0.545590,-0.378265,-0.189522 +-0.450420,0.166739,-0.510209,-0.535663,-0.372923,-0.187315 +-0.443304,0.164816,-0.501311,-0.525749,-0.367580,-0.185108 +-0.436188,0.162892,-0.492413,-0.515851,-0.362237,-0.182901 +-0.429072,0.160968,-0.483515,-0.505972,-0.356894,-0.180694 +-0.421956,0.159045,-0.474618,-0.496115,-0.351551,-0.178487 +-0.414840,0.157121,-0.465725,-0.486283,-0.346208,-0.176280 +-0.407724,0.155197,-0.456839,-0.476479,-0.340866,-0.174073 +-0.400608,0.153274,-0.447964,-0.466706,-0.335523,-0.171867 +-0.393492,0.151350,-0.439101,-0.456967,-0.330180,-0.169660 +-0.386376,0.149426,-0.430254,-0.447265,-0.324837,-0.167453 +-0.379260,0.147503,-0.421426,-0.437602,-0.319494,-0.165246 +-0.372144,0.145579,-0.412620,-0.427983,-0.314152,-0.163039 +-0.365028,0.143655,-0.403838,-0.418410,-0.308809,-0.160832 +-0.357912,0.141732,-0.395085,-0.408886,-0.303466,-0.158625 +-0.350796,0.139808,-0.386363,-0.399414,-0.298123,-0.156418 +-0.343680,0.137884,-0.377675,-0.389996,-0.292780,-0.154212 +-0.336565,0.135961,-0.369024,-0.380637,-0.287437,-0.152005 +-0.329455,0.134037,-0.360412,-0.371339,-0.282095,-0.149798 +-0.322352,0.132113,-0.351844,-0.362104,-0.276752,-0.147591 +-0.315259,0.130190,-0.343322,-0.352937,-0.271409,-0.145384 +-0.308179,0.128266,-0.334848,-0.343840,-0.266066,-0.143177 +-0.301115,0.126342,-0.326427,-0.334815,-0.260723,-0.140970 +-0.294071,0.124419,-0.318060,-0.325867,-0.255381,-0.138763 +-0.287049,0.122495,-0.309752,-0.316997,-0.250038,-0.136556 +-0.280052,0.120571,-0.301504,-0.308210,-0.244695,-0.134350 +-0.273083,0.118648,-0.293320,-0.299508,-0.239352,-0.132143 +-0.266146,0.116724,-0.285204,-0.290893,-0.234009,-0.129936 +-0.259243,0.114800,-0.277157,-0.282370,-0.228666,-0.127729 +-0.252377,0.112877,-0.269183,-0.273940,-0.223324,-0.125522 +-0.245551,0.110953,-0.261285,-0.265608,-0.217982,-0.123315 +-0.238768,0.109029,-0.253466,-0.257375,-0.212645,-0.121108 +-0.232032,0.107106,-0.245729,-0.249246,-0.207315,-0.118901 +-0.225345,0.105182,-0.238078,-0.241222,-0.201995,-0.116695 +-0.218710,0.103258,-0.230514,-0.233307,-0.196688,-0.114488 +-0.212130,0.101335,-0.223041,-0.225505,-0.191398,-0.112281 +-0.205609,0.099411,-0.215661,-0.217817,-0.186127,-0.110074 +-0.199149,0.097487,-0.208379,-0.210247,-0.180878,-0.107867 +-0.192753,0.095564,-0.201197,-0.202799,-0.175654,-0.105660 +-0.186424,0.093640,-0.194118,-0.195474,-0.170458,-0.103453 +-0.180165,0.091716,-0.187145,-0.188276,-0.165294,-0.101246 +-0.173980,0.089792,-0.180280,-0.181209,-0.160164,-0.099039 +-0.167871,0.087869,-0.173528,-0.174274,-0.155071,-0.096833 +-0.161841,0.085945,-0.166891,-0.167475,-0.150018,-0.094626 +-0.155893,0.084021,-0.160371,-0.160815,-0.145008,-0.092419 +-0.150030,0.082098,-0.153973,-0.154298,-0.140045,-0.090212 +-0.144256,0.080174,-0.147698,-0.147925,-0.135131,-0.088005 +-0.138573,0.078250,-0.141551,-0.141700,-0.130269,-0.085798 +-0.132984,0.076327,-0.135533,-0.135625,-0.125462,-0.083591 +-0.127493,0.074403,-0.129649,-0.129700,-0.120713,-0.081384 +-0.122101,0.072479,-0.123900,-0.123925,-0.116026,-0.079178 +-0.116813,0.070556,-0.118290,-0.118300,-0.111403,-0.076971 +-0.111631,0.068632,-0.112823,-0.112825,-0.106847,-0.074764 +-0.106558,0.066708,-0.107500,-0.107500,-0.102361,-0.072557 +-0.101598,0.064785,-0.102325,-0.102325,-0.097949,-0.070350 +-0.096752,0.062861,-0.097300,-0.097300,-0.093613,-0.068143 +-0.092025,0.060937,-0.092425,-0.092425,-0.089355,-0.065936 +-0.087419,0.059014,-0.087700,-0.087700,-0.085181,-0.063729 +-0.082938,0.057090,-0.083125,-0.083125,-0.081091,-0.061522 +-0.078583,0.055166,-0.078700,-0.078700,-0.077089,-0.059316 +-0.074359,0.053243,-0.074425,-0.074425,-0.073179,-0.057110 +-0.070268,0.051319,-0.070300,-0.070300,-0.069363,-0.054907 +-0.066313,0.049395,-0.066325,-0.066325,-0.065644,-0.052712 +-0.062498,0.047472,-0.062500,-0.062500,-0.062026,-0.050526 +-0.058824,0.045550,-0.058825,-0.058825,-0.058510,-0.048353 +-0.055296,0.043634,-0.055296,-0.055296,-0.055101,-0.046196 +-0.051912,0.041725,-0.051912,-0.051912,-0.051801,-0.044058 +-0.048668,0.039827,-0.048668,-0.048668,-0.048613,-0.041941 +-0.045563,0.037943,-0.045563,-0.045563,-0.045541,-0.039849 +-0.042592,0.036076,-0.042592,-0.042592,-0.042586,-0.037784 +-0.039754,0.034229,-0.039754,-0.039754,-0.039753,-0.035751 +-0.037044,0.032405,-0.037044,-0.037044,-0.037044,-0.033751 +-0.034461,0.030607,-0.034461,-0.034461,-0.034461,-0.031788 +-0.032000,0.028838,-0.032000,-0.032000,-0.032000,-0.029865 +-0.029660,0.027101,-0.029660,-0.029660,-0.029660,-0.027984 +-0.027436,0.025398,-0.027436,-0.027436,-0.027436,-0.026149 +-0.025327,0.023734,-0.025327,-0.025327,-0.025327,-0.024363 +-0.023328,0.022111,-0.023328,-0.023328,-0.023328,-0.022628 +-0.021438,0.020531,-0.021438,-0.021438,-0.021438,-0.020949 +-0.019652,0.018999,-0.019652,-0.019652,-0.019652,-0.019327 +-0.017969,0.017516,-0.017969,-0.017969,-0.017969,-0.017765 +-0.016384,0.016086,-0.016384,-0.016384,-0.016384,-0.016268 +-0.014896,0.014712,-0.014896,-0.014896,-0.014896,-0.014837 +-0.013500,0.013398,-0.013500,-0.013500,-0.013500,-0.013476 +-0.012195,0.012145,-0.012195,-0.012195,-0.012195,-0.012188 +-0.010976,0.010957,-0.010976,-0.010976,-0.010976,-0.010975 +-0.009842,0.009837,-0.009842,-0.009842,-0.009842,-0.009842 +-0.008788,0.008788,-0.008788,-0.008788,-0.008788,-0.008788 +-0.007813,0.007813,-0.007813,-0.007813,-0.007813,-0.007813 +-0.006912,0.006912,-0.006912,-0.006912,-0.006912,-0.006912 +-0.006084,0.006084,-0.006084,-0.006084,-0.006084,-0.006084 +-0.005324,0.005324,-0.005324,-0.005324,-0.005324,-0.005324 +-0.004631,0.004631,-0.004630,-0.004631,-0.004631,-0.004631 +-0.004000,0.004000,-0.004000,-0.004000,-0.004000,-0.004000 +-0.003430,0.003430,-0.003429,-0.003430,-0.003430,-0.003430 +-0.002916,0.002916,-0.002916,-0.002916,-0.002916,-0.002916 +-0.002457,0.002457,-0.002456,-0.002457,-0.002457,-0.002457 +-0.002048,0.002048,-0.002048,-0.002048,-0.002048,-0.002048 +-0.001688,0.001688,-0.001687,-0.001687,-0.001688,-0.001688 +-0.001372,0.001372,-0.001372,-0.001372,-0.001372,-0.001372 +-0.001099,0.001099,-0.001098,-0.001098,-0.001099,-0.001099 +-0.000864,0.000864,-0.000864,-0.000864,-0.000864,-0.000864 +-0.000666,0.000666,-0.000665,-0.000665,-0.000666,-0.000666 +-0.000500,0.000500,-0.000500,-0.000500,-0.000500,-0.000500 +-0.000365,0.000365,-0.000364,-0.000364,-0.000365,-0.000365 +-0.000256,0.000256,-0.000256,-0.000256,-0.000256,-0.000256 +-0.000171,0.000171,-0.000171,-0.000171,-0.000172,-0.000172 +-0.000108,0.000108,-0.000108,-0.000108,-0.000108,-0.000108 +-0.000062,0.000062,-0.000062,-0.000062,-0.000063,-0.000063 +-0.000032,0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000013,0.000013,-0.000013,-0.000013,-0.000014,-0.000014 +-0.000004,0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000000,0.000000,-0.000000,-0.000000,-0.000001,-0.000001 +0.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000 +0.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/12_trajectory_vel2_acc20.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/12_trajectory_vel2_acc20.txt new file mode 100644 index 00000000..74a0581a --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/12_trajectory_vel2_acc20.txt @@ -0,0 +1,20533 @@ +-0.000002,0.000002,-0.000002,-0.000002,-0.000002,0.000002 +-0.000013,0.000013,-0.000013,-0.000013,-0.000013,0.000013 +-0.000045,0.000045,-0.000045,-0.000045,-0.000045,0.000045 +-0.000107,0.000107,-0.000107,-0.000107,-0.000107,0.000107 +-0.000208,0.000208,-0.000208,-0.000208,-0.000208,0.000208 +-0.000360,0.000360,-0.000360,-0.000360,-0.000360,0.000360 +-0.000572,0.000572,-0.000572,-0.000572,-0.000572,0.000572 +-0.000853,0.000853,-0.000853,-0.000853,-0.000853,0.000853 +-0.001215,0.001215,-0.001215,-0.001215,-0.001215,0.001215 +-0.001667,0.001667,-0.001667,-0.001667,-0.001667,0.001667 +-0.002218,0.002218,-0.002218,-0.002218,-0.002218,0.002218 +-0.002880,0.002880,-0.002880,-0.002880,-0.002880,0.002880 +-0.003662,0.003662,-0.003662,-0.003662,-0.003662,0.003662 +-0.004573,0.004573,-0.004573,-0.004573,-0.004573,0.004573 +-0.005625,0.005625,-0.005625,-0.005625,-0.005625,0.005625 +-0.006827,0.006827,-0.006827,-0.006827,-0.006827,0.006827 +-0.008188,0.008188,-0.008188,-0.008188,-0.008188,0.008188 +-0.009720,0.009720,-0.009720,-0.009720,-0.009720,0.009720 +-0.011432,0.011432,-0.011420,-0.011432,-0.011432,0.011432 +-0.013333,0.013333,-0.013281,-0.013333,-0.013333,0.013333 +-0.015435,0.015435,-0.015292,-0.015435,-0.015435,0.015435 +-0.017747,0.017747,-0.017442,-0.017747,-0.017747,0.017745 +-0.020276,0.020278,-0.019723,-0.020278,-0.020278,0.020259 +-0.023015,0.023040,-0.022123,-0.023040,-0.023040,0.022967 +-0.025956,0.026042,-0.024634,-0.026042,-0.026042,0.025858 +-0.029088,0.029293,-0.027244,-0.029293,-0.029293,0.028924 +-0.032402,0.032805,-0.029944,-0.032801,-0.032805,0.032154 +-0.035886,0.036586,-0.032725,-0.036559,-0.036587,0.035537 +-0.039531,0.040635,-0.035575,-0.040556,-0.040648,0.039065 +-0.043327,0.044943,-0.038485,-0.044782,-0.045000,0.042726 +-0.047265,0.049499,-0.041445,-0.049228,-0.049652,0.046511 +-0.051333,0.054293,-0.044445,-0.053884,-0.054613,0.050410 +-0.055523,0.059316,-0.047475,-0.058738,-0.059886,0.054414 +-0.059823,0.064558,-0.050525,-0.063783,-0.065460,0.058511 +-0.064225,0.070007,-0.053584,-0.069006,-0.071326,0.062692 +-0.068718,0.075656,-0.056646,-0.074400,-0.077474,0.066947 +-0.073291,0.081492,-0.059707,-0.079952,-0.083894,0.071266 +-0.077936,0.087507,-0.062769,-0.085655,-0.090576,0.075639 +-0.082642,0.093691,-0.065830,-0.091496,-0.097510,0.080055 +-0.087399,0.100033,-0.068892,-0.097467,-0.104685,0.084506 +-0.092197,0.106523,-0.071953,-0.103558,-0.112092,0.088981 +-0.097026,0.113152,-0.075015,-0.109758,-0.119721,0.093470 +-0.101876,0.119909,-0.078076,-0.116057,-0.127562,0.097962 +-0.106738,0.126784,-0.081137,-0.122446,-0.135605,0.102455 +-0.111601,0.133768,-0.084199,-0.128914,-0.143840,0.106948 +-0.116465,0.140851,-0.087260,-0.135452,-0.152256,0.111441 +-0.121328,0.148022,-0.090322,-0.142050,-0.160844,0.115935 +-0.126192,0.155271,-0.093383,-0.148696,-0.169595,0.120428 +-0.131055,0.162589,-0.096445,-0.155383,-0.178496,0.124921 +-0.135919,0.169965,-0.099506,-0.162098,-0.187540,0.129414 +-0.140782,0.177390,-0.102568,-0.168833,-0.196716,0.133907 +-0.145646,0.184853,-0.105629,-0.175578,-0.206013,0.138400 +-0.150509,0.192344,-0.108690,-0.182324,-0.215423,0.142893 +-0.155373,0.199854,-0.111752,-0.189070,-0.224934,0.147386 +-0.160236,0.207372,-0.114813,-0.195816,-0.234537,0.151879 +-0.165100,0.214892,-0.117875,-0.202562,-0.244221,0.156372 +-0.169963,0.222411,-0.120936,-0.209308,-0.253978,0.160865 +-0.174827,0.229930,-0.123998,-0.216054,-0.263796,0.165358 +-0.179690,0.237449,-0.127059,-0.222800,-0.273667,0.169851 +-0.184554,0.244969,-0.130121,-0.229546,-0.283579,0.174344 +-0.189417,0.252488,-0.133182,-0.236292,-0.293523,0.178837 +-0.194281,0.260007,-0.136243,-0.243038,-0.303488,0.183330 +-0.199144,0.267527,-0.139305,-0.249784,-0.313466,0.187823 +-0.204008,0.275046,-0.142366,-0.256530,-0.323446,0.192316 +-0.208871,0.282565,-0.145428,-0.263276,-0.333427,0.196809 +-0.213735,0.290085,-0.148489,-0.270022,-0.343407,0.201302 +-0.218598,0.297604,-0.151551,-0.276768,-0.353387,0.205795 +-0.223462,0.305123,-0.154612,-0.283514,-0.363368,0.210288 +-0.228325,0.312643,-0.157673,-0.290260,-0.373348,0.214781 +-0.233189,0.320162,-0.160735,-0.297006,-0.383329,0.219274 +-0.238052,0.327681,-0.163796,-0.303752,-0.393309,0.223767 +-0.242916,0.335200,-0.166858,-0.310498,-0.403289,0.228260 +-0.247779,0.342720,-0.169919,-0.317244,-0.413270,0.232753 +-0.252643,0.350239,-0.172981,-0.323991,-0.423250,0.237246 +-0.257506,0.357758,-0.176042,-0.330737,-0.433230,0.241739 +-0.262370,0.365278,-0.179104,-0.337483,-0.443211,0.246232 +-0.267233,0.372797,-0.182165,-0.344229,-0.453191,0.250725 +-0.272097,0.380316,-0.185226,-0.350975,-0.463171,0.255218 +-0.276960,0.387836,-0.188288,-0.357721,-0.473152,0.259711 +-0.281824,0.395355,-0.191349,-0.364467,-0.483132,0.264204 +-0.286687,0.402874,-0.194411,-0.371213,-0.493112,0.268697 +-0.291551,0.410394,-0.197472,-0.377959,-0.503093,0.273190 +-0.296414,0.417913,-0.200534,-0.384705,-0.513073,0.277683 +-0.301278,0.425432,-0.203595,-0.391451,-0.523054,0.282176 +-0.306141,0.432951,-0.206657,-0.398197,-0.533034,0.286669 +-0.311005,0.440471,-0.209718,-0.404943,-0.543014,0.291162 +-0.315868,0.447990,-0.212779,-0.411689,-0.552995,0.295655 +-0.320732,0.455509,-0.215841,-0.418435,-0.562975,0.300148 +-0.325595,0.463029,-0.218902,-0.425181,-0.572955,0.304641 +-0.330459,0.470548,-0.221964,-0.431927,-0.582936,0.309134 +-0.335322,0.478067,-0.225025,-0.438673,-0.592916,0.313627 +-0.340186,0.485587,-0.228087,-0.445419,-0.602896,0.318120 +-0.345049,0.493106,-0.231148,-0.452165,-0.612877,0.322613 +-0.349913,0.500625,-0.234210,-0.458911,-0.622857,0.327106 +-0.354776,0.508144,-0.237271,-0.465657,-0.632837,0.331599 +-0.359640,0.515664,-0.240332,-0.472403,-0.642818,0.336092 +-0.364503,0.523183,-0.243394,-0.479149,-0.652798,0.340585 +-0.369367,0.530702,-0.246455,-0.485895,-0.662779,0.345078 +-0.374231,0.538222,-0.249517,-0.492641,-0.672759,0.349571 +-0.379094,0.545741,-0.252578,-0.499387,-0.682739,0.354064 +-0.383958,0.553260,-0.255640,-0.506133,-0.692720,0.358557 +-0.388821,0.560780,-0.258701,-0.512879,-0.702700,0.363050 +-0.393685,0.568299,-0.261762,-0.519625,-0.712680,0.367544 +-0.398548,0.575818,-0.264824,-0.526371,-0.722661,0.372037 +-0.403412,0.583338,-0.267885,-0.533117,-0.732641,0.376530 +-0.408275,0.590857,-0.270947,-0.539863,-0.742621,0.381023 +-0.413139,0.598376,-0.274008,-0.546609,-0.752602,0.385516 +-0.418002,0.605895,-0.277070,-0.553355,-0.762582,0.390009 +-0.422866,0.613415,-0.280131,-0.560101,-0.772562,0.394502 +-0.427729,0.620934,-0.283193,-0.566847,-0.782543,0.398995 +-0.432593,0.628453,-0.286254,-0.573593,-0.792523,0.403488 +-0.437456,0.635973,-0.289315,-0.580339,-0.802504,0.407981 +-0.442320,0.643492,-0.292377,-0.587085,-0.812484,0.412474 +-0.447183,0.651011,-0.295438,-0.593831,-0.822464,0.416967 +-0.452047,0.658531,-0.298500,-0.600577,-0.832445,0.421460 +-0.456910,0.666050,-0.301561,-0.607323,-0.842425,0.425953 +-0.461774,0.673569,-0.304623,-0.614070,-0.852405,0.430446 +-0.466637,0.681088,-0.307684,-0.620816,-0.862386,0.434939 +-0.471501,0.688608,-0.310746,-0.627562,-0.872366,0.439432 +-0.476364,0.696127,-0.313807,-0.634308,-0.882346,0.443925 +-0.481228,0.703646,-0.316868,-0.641054,-0.892327,0.448418 +-0.486091,0.711166,-0.319930,-0.647800,-0.902307,0.452911 +-0.490955,0.718685,-0.322991,-0.654546,-0.912287,0.457404 +-0.495818,0.726204,-0.326053,-0.661292,-0.922268,0.461897 +-0.500682,0.733724,-0.329114,-0.668038,-0.932248,0.466390 +-0.505545,0.741243,-0.332176,-0.674784,-0.942229,0.470883 +-0.510409,0.748762,-0.335237,-0.681530,-0.952209,0.475376 +-0.515272,0.756282,-0.338299,-0.688276,-0.962189,0.479869 +-0.520136,0.763801,-0.341360,-0.695022,-0.972170,0.484362 +-0.524999,0.771320,-0.344421,-0.701768,-0.982150,0.488855 +-0.529863,0.778839,-0.347483,-0.708514,-0.992130,0.493348 +-0.534726,0.786359,-0.350544,-0.715260,-1.002111,0.497841 +-0.539590,0.793878,-0.353606,-0.722006,-1.012091,0.502334 +-0.544453,0.801397,-0.356667,-0.728752,-1.022071,0.506827 +-0.549317,0.808917,-0.359729,-0.735498,-1.032052,0.511320 +-0.554180,0.816436,-0.362790,-0.742244,-1.042032,0.515813 +-0.559044,0.823955,-0.365851,-0.748990,-1.052013,0.520306 +-0.563907,0.831475,-0.368913,-0.755736,-1.061993,0.524799 +-0.568771,0.838994,-0.371974,-0.762482,-1.071973,0.529292 +-0.573634,0.846513,-0.375036,-0.769228,-1.081954,0.533785 +-0.578498,0.854032,-0.378097,-0.775974,-1.091934,0.538278 +-0.583361,0.861552,-0.381159,-0.782720,-1.101914,0.542771 +-0.588225,0.869071,-0.384220,-0.789466,-1.111895,0.547264 +-0.593088,0.876590,-0.387282,-0.796212,-1.121875,0.551757 +-0.597952,0.884110,-0.390343,-0.802958,-1.131855,0.556250 +-0.602815,0.891629,-0.393404,-0.809704,-1.141836,0.560743 +-0.607679,0.899148,-0.396466,-0.816450,-1.151816,0.565236 +-0.612542,0.906668,-0.399527,-0.823196,-1.161796,0.569729 +-0.617406,0.914187,-0.402589,-0.829942,-1.171777,0.574222 +-0.622269,0.921706,-0.405650,-0.836688,-1.181757,0.578715 +-0.627133,0.929226,-0.408712,-0.843434,-1.191738,0.583208 +-0.631996,0.936745,-0.411773,-0.850180,-1.201718,0.587701 +-0.636860,0.944264,-0.414835,-0.856926,-1.211698,0.592194 +-0.641723,0.951783,-0.417896,-0.863672,-1.221679,0.596687 +-0.646587,0.959303,-0.420957,-0.870418,-1.231659,0.601180 +-0.651450,0.966822,-0.424019,-0.877164,-1.241639,0.605673 +-0.656314,0.974341,-0.427080,-0.883910,-1.251620,0.610166 +-0.661177,0.981861,-0.430142,-0.890656,-1.261600,0.614659 +-0.666041,0.989380,-0.433203,-0.897402,-1.271580,0.619152 +-0.670904,0.996899,-0.436265,-0.904148,-1.281561,0.623646 +-0.675768,1.004419,-0.439326,-0.910895,-1.291541,0.628139 +-0.680631,1.011938,-0.442388,-0.917641,-1.301521,0.632632 +-0.685495,1.019457,-0.445449,-0.924387,-1.311502,0.637125 +-0.690358,1.026977,-0.448510,-0.931133,-1.321482,0.641618 +-0.695222,1.034496,-0.451572,-0.937879,-1.331463,0.646111 +-0.700085,1.042015,-0.454633,-0.944625,-1.341443,0.650604 +-0.704949,1.049534,-0.457695,-0.951371,-1.351423,0.655097 +-0.709812,1.057054,-0.460756,-0.958117,-1.361404,0.659590 +-0.714676,1.064573,-0.463818,-0.964863,-1.371384,0.664083 +-0.719539,1.072092,-0.466879,-0.971609,-1.381364,0.668576 +-0.724403,1.079612,-0.469940,-0.978355,-1.391345,0.673069 +-0.729267,1.087131,-0.473002,-0.985101,-1.401325,0.677562 +-0.734130,1.094650,-0.476063,-0.991847,-1.411305,0.682055 +-0.738994,1.102170,-0.479125,-0.998593,-1.421286,0.686548 +-0.743857,1.109689,-0.482186,-1.005339,-1.431266,0.691041 +-0.748721,1.117208,-0.485248,-1.012085,-1.441246,0.695534 +-0.753584,1.124727,-0.488309,-1.018831,-1.451227,0.700027 +-0.758448,1.132247,-0.491371,-1.025577,-1.461207,0.704520 +-0.763311,1.139766,-0.494432,-1.032323,-1.471188,0.709013 +-0.768175,1.147285,-0.497493,-1.039069,-1.481168,0.713506 +-0.773038,1.154805,-0.500555,-1.045815,-1.491148,0.717999 +-0.777902,1.162324,-0.503616,-1.052561,-1.501129,0.722492 +-0.782765,1.169843,-0.506678,-1.059307,-1.511109,0.726985 +-0.787629,1.177363,-0.509739,-1.066053,-1.521089,0.731478 +-0.792492,1.184882,-0.512801,-1.072799,-1.531070,0.735971 +-0.797356,1.192401,-0.515862,-1.079545,-1.541050,0.740464 +-0.802219,1.199921,-0.518924,-1.086291,-1.551030,0.744957 +-0.807083,1.207440,-0.521985,-1.093037,-1.561011,0.749450 +-0.811946,1.214959,-0.525046,-1.099783,-1.570991,0.753943 +-0.816810,1.222478,-0.528108,-1.106529,-1.580971,0.758436 +-0.821673,1.229998,-0.531169,-1.113275,-1.590952,0.762929 +-0.826537,1.237517,-0.534231,-1.120021,-1.600932,0.767422 +-0.831400,1.245036,-0.537292,-1.126767,-1.610913,0.771915 +-0.836264,1.252556,-0.540354,-1.133513,-1.620893,0.776408 +-0.841127,1.260075,-0.543415,-1.140259,-1.630873,0.780901 +-0.845991,1.267594,-0.546477,-1.147005,-1.640854,0.785394 +-0.850854,1.275114,-0.549538,-1.153751,-1.650834,0.789887 +-0.855718,1.282633,-0.552599,-1.160497,-1.660814,0.794380 +-0.860581,1.290152,-0.555661,-1.167243,-1.670795,0.798873 +-0.865445,1.297671,-0.558722,-1.173989,-1.680775,0.803366 +-0.870308,1.305191,-0.561784,-1.180735,-1.690755,0.807859 +-0.875172,1.312710,-0.564845,-1.187481,-1.700736,0.812352 +-0.880035,1.320229,-0.567906,-1.194227,-1.710716,0.816845 +-0.884899,1.327749,-0.570962,-1.200974,-1.720696,0.821338 +-0.889762,1.335268,-0.574002,-1.207720,-1.730673,0.825831 +-0.894626,1.342787,-0.577018,-1.214466,-1.740637,0.830324 +-0.899489,1.350307,-0.579997,-1.221212,-1.750578,0.834817 +-0.904353,1.357826,-0.582932,-1.227958,-1.760486,0.839310 +-0.909216,1.365345,-0.585811,-1.234704,-1.770351,0.843803 +-0.914080,1.372865,-0.588625,-1.241450,-1.780164,0.848296 +-0.918943,1.380384,-0.591363,-1.248196,-1.789913,0.852789 +-0.923807,1.387903,-0.594016,-1.254942,-1.799589,0.857282 +-0.928670,1.395422,-0.596574,-1.261688,-1.809183,0.861775 +-0.933534,1.402942,-0.599027,-1.268434,-1.818684,0.866268 +-0.938397,1.410461,-0.601364,-1.275180,-1.828081,0.870761 +-0.943261,1.417980,-0.603576,-1.281926,-1.837366,0.875255 +-0.948124,1.425500,-0.605653,-1.288672,-1.846528,0.879748 +-0.952988,1.433019,-0.607584,-1.295418,-1.855557,0.884241 +-0.957851,1.440538,-0.609360,-1.302164,-1.864443,0.888734 +-0.962715,1.448058,-0.610970,-1.308910,-1.873176,0.893227 +-0.967578,1.455577,-0.612406,-1.315656,-1.881746,0.897720 +-0.972442,1.463096,-0.613656,-1.322402,-1.890144,0.902213 +-0.977305,1.470616,-0.614710,-1.329148,-1.898358,0.906706 +-0.982169,1.478135,-0.615560,-1.335894,-1.906379,0.911199 +-0.987032,1.485654,-0.616194,-1.342640,-1.914198,0.915692 +-0.991896,1.493173,-0.616603,-1.349386,-1.921804,0.920185 +-0.996759,1.500693,-0.616776,-1.356132,-1.929186,0.924680 +-1.001623,1.508212,-0.616704,-1.362878,-1.936336,0.929185 +-1.006486,1.515731,-0.616377,-1.369624,-1.943243,0.933710 +-1.011350,1.523251,-0.615785,-1.376370,-1.949897,0.938266 +-1.016213,1.530770,-0.614917,-1.383116,-1.956288,0.942862 +-1.021077,1.538289,-0.613764,-1.389862,-1.962406,0.947508 +-1.025940,1.545809,-0.612315,-1.396608,-1.968242,0.952215 +-1.030804,1.553328,-0.610561,-1.403354,-1.973784,0.956992 +-1.035667,1.560847,-0.608492,-1.410100,-1.979024,0.961849 +-1.040531,1.568366,-0.606098,-1.416846,-1.983950,0.966797 +-1.045394,1.575886,-0.603368,-1.423592,-1.988554,0.971845 +-1.050258,1.583405,-0.600293,-1.430338,-1.992824,0.977003 +-1.055121,1.590924,-0.596872,-1.437084,-1.996752,0.982281 +-1.059985,1.598444,-0.593113,-1.443830,-2.000328,0.987690 +-1.064848,1.605963,-0.589027,-1.450576,-2.003550,0.993239 +-1.069712,1.613482,-0.584623,-1.457322,-2.006429,0.998939 +-1.074575,1.621002,-0.579912,-1.464068,-2.008974,1.004798 +-1.079439,1.628521,-0.574903,-1.470814,-2.011196,1.010829 +-1.084302,1.636040,-0.569608,-1.477560,-2.013104,1.017039 +-1.089166,1.643560,-0.564034,-1.484306,-2.014709,1.023439 +-1.094030,1.651079,-0.558194,-1.491052,-2.016020,1.030034 +-1.098893,1.658598,-0.552095,-1.497799,-2.017048,1.036813 +-1.103757,1.666117,-0.545750,-1.504545,-2.017803,1.043768 +-1.108620,1.673637,-0.539167,-1.511291,-2.018294,1.050888 +-1.113484,1.681156,-0.532357,-1.518036,-2.018531,1.058164 +-1.118347,1.688675,-0.525329,-1.524778,-2.018525,1.065584 +-1.123211,1.696195,-0.518094,-1.531506,-2.018286,1.073140 +-1.128074,1.703714,-0.510661,-1.538211,-2.017823,1.080821 +-1.132937,1.711233,-0.503041,-1.544881,-2.017147,1.088617 +-1.137797,1.718751,-0.495244,-1.551508,-2.016267,1.096519 +-1.142643,1.726258,-0.487279,-1.558081,-2.015194,1.104515 +-1.147466,1.733744,-0.479157,-1.564590,-2.013937,1.112597 +-1.152256,1.741200,-0.470887,-1.571026,-2.012507,1.120754 +-1.157002,1.748615,-0.462480,-1.577378,-2.010913,1.128977 +-1.161695,1.755980,-0.453946,-1.583636,-2.009166,1.137254 +-1.166324,1.763285,-0.445294,-1.589790,-2.007275,1.145577 +-1.170880,1.770519,-0.436535,-1.595833,-2.005251,1.153935 +-1.175353,1.777672,-0.427678,-1.601769,-2.003103,1.162318 +-1.179732,1.784735,-0.418734,-1.607608,-2.000842,1.170717 +-1.184008,1.791697,-0.409713,-1.613361,-1.998478,1.179120 +-1.188177,1.798549,-0.400624,-1.619037,-1.996020,1.187519 +-1.192248,1.805289,-0.391478,-1.624646,-1.993478,1.195903 +-1.196230,1.811924,-0.382284,-1.630199,-1.990863,1.204262 +-1.200133,1.818465,-0.373053,-1.635706,-1.988185,1.212587 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207745,1.831307,-0.354513,-1.646619,-1.982674,1.229097 +-1.211463,1.837617,-0.345214,-1.652036,-1.979852,1.237272 +-1.215120,1.843852,-0.335898,-1.657425,-1.976986,1.245389 +-1.218717,1.850011,-0.326566,-1.662786,-1.974075,1.253449 +-1.222252,1.856094,-0.317217,-1.668118,-1.971120,1.261449 +-1.225725,1.862100,-0.307854,-1.673421,-1.968121,1.269389 +-1.229135,1.868029,-0.298475,-1.678694,-1.965077,1.277268 +-1.232482,1.873880,-0.289081,-1.683937,-1.961987,1.285084 +-1.235765,1.879652,-0.279672,-1.689149,-1.958853,1.292836 +-1.238983,1.885345,-0.270250,-1.694330,-1.955673,1.300525 +-1.242135,1.890958,-0.260814,-1.699480,-1.952447,1.308147 +-1.245222,1.896492,-0.251364,-1.704597,-1.949176,1.315704 +-1.248242,1.901945,-0.241902,-1.709681,-1.945858,1.323193 +-1.251195,1.907317,-0.232427,-1.714732,-1.942495,1.330613 +-1.254080,1.912607,-0.222940,-1.719750,-1.939085,1.337964 +-1.256897,1.917816,-0.213441,-1.724733,-1.935628,1.345245 +-1.259645,1.922942,-0.203931,-1.729682,-1.932125,1.352455 +-1.262324,1.927985,-0.194410,-1.734596,-1.928574,1.359592 +-1.264933,1.932944,-0.184879,-1.739474,-1.924977,1.366656 +-1.267472,1.937820,-0.175337,-1.744317,-1.921333,1.373647 +-1.269940,1.942612,-0.165786,-1.749123,-1.917641,1.380562 +-1.272337,1.947319,-0.156226,-1.753892,-1.913902,1.387402 +-1.274662,1.951941,-0.146657,-1.758623,-1.910115,1.394165 +-1.276916,1.956478,-0.137080,-1.763317,-1.906280,1.400851 +-1.279097,1.960929,-0.127495,-1.767973,-1.902398,1.407459 +-1.281205,1.965294,-0.117902,-1.772590,-1.898467,1.413987 +-1.283240,1.969572,-0.108303,-1.777168,-1.894488,1.420436 +-1.285201,1.973763,-0.098697,-1.781707,-1.890461,1.426804 +-1.287089,1.977866,-0.089085,-1.786206,-1.886386,1.433091 +-1.288903,1.981882,-0.079467,-1.790664,-1.882262,1.439296 +-1.290642,1.985811,-0.069845,-1.795082,-1.878089,1.445418 +-1.292306,1.989650,-0.060217,-1.799459,-1.873868,1.451456 +-1.293896,1.993402,-0.050586,-1.803794,-1.869598,1.457410 +-1.295410,1.997064,-0.040951,-1.808088,-1.865279,1.463279 +-1.296848,2.000637,-0.031312,-1.812339,-1.860911,1.469063 +-1.298211,2.004120,-0.021671,-1.816547,-1.856494,1.474760 +-1.299499,2.007514,-0.012028,-1.820712,-1.852028,1.480370 +-1.300710,2.010817,-0.002383,-1.824834,-1.847512,1.485893 +-1.301845,2.014031,0.007263,-1.828912,-1.842947,1.491327 +-1.302903,2.017153,0.016910,-1.832946,-1.838333,1.496673 +-1.303885,2.020185,0.026557,-1.836936,-1.833670,1.501929 +-1.304791,2.023126,0.036204,-1.840881,-1.828957,1.507095 +-1.305619,2.025975,0.045850,-1.844780,-1.824194,1.512170 +-1.306371,2.028733,0.055495,-1.848634,-1.819382,1.517155 +-1.307046,2.031400,0.065138,-1.852442,-1.814520,1.522048 +-1.307644,2.033974,0.074778,-1.856204,-1.809609,1.526848 +-1.308166,2.036456,0.084416,-1.859919,-1.804648,1.531557 +-1.308610,2.038847,0.094050,-1.863588,-1.799637,1.536172 +-1.308978,2.041144,0.103680,-1.867209,-1.794577,1.540693 +-1.309268,2.043349,0.113305,-1.870783,-1.789467,1.545120 +-1.309482,2.045462,0.122926,-1.874309,-1.784307,1.549453 +-1.309619,2.047481,0.132541,-1.877787,-1.779097,1.553691 +-1.309679,2.049408,0.142150,-1.881217,-1.773838,1.557834 +-1.309662,2.051241,0.151752,-1.884598,-1.768529,1.561881 +-1.309569,2.052982,0.161346,-1.887930,-1.763170,1.565831 +-1.309400,2.054629,0.170933,-1.891213,-1.757762,1.569686 +-1.309154,2.056182,0.180512,-1.894446,-1.752304,1.573443 +-1.308832,2.057643,0.190081,-1.897630,-1.746796,1.577104 +-1.308435,2.059009,0.199641,-1.900764,-1.741238,1.580667 +-1.307961,2.060283,0.209191,-1.903848,-1.735631,1.584132 +-1.307412,2.061462,0.218730,-1.906881,-1.729975,1.587499 +-1.306788,2.062548,0.228258,-1.909863,-1.724269,1.590768 +-1.306089,2.063540,0.237774,-1.912794,-1.718513,1.593938 +-1.305315,2.064439,0.247278,-1.915675,-1.712709,1.597009 +-1.304466,2.065244,0.256768,-1.918504,-1.706854,1.599982 +-1.303543,2.065955,0.266245,-1.921281,-1.700951,1.602855 +-1.302546,2.066572,0.275707,-1.924006,-1.694998,1.605628 +-1.301475,2.067096,0.285155,-1.926680,-1.688997,1.608302 +-1.300331,2.067526,0.294587,-1.929301,-1.682946,1.610876 +-1.299115,2.067862,0.304003,-1.931870,-1.676846,1.613351 +-1.297825,2.068105,0.313403,-1.934386,-1.670698,1.615725 +-1.296464,2.068255,0.322785,-1.936849,-1.664500,1.617998 +-1.295030,2.068311,0.332149,-1.939260,-1.658254,1.620172 +-1.293526,2.068273,0.341495,-1.941617,-1.651960,1.622244 +-1.291950,2.068143,0.350822,-1.943921,-1.645617,1.624217 +-1.290304,2.067919,0.360129,-1.946172,-1.639226,1.626088 +-1.288587,2.067602,0.369415,-1.948369,-1.632787,1.627859 +-1.286801,2.067192,0.378681,-1.950512,-1.626299,1.629530 +-1.284946,2.066690,0.387925,-1.952601,-1.619764,1.631099 +-1.283023,2.066094,0.397146,-1.954637,-1.613181,1.632568 +-1.281031,2.065406,0.406345,-1.956618,-1.606550,1.633936 +-1.278972,2.064626,0.415520,-1.958545,-1.599872,1.635203 +-1.276846,2.063753,0.424671,-1.960418,-1.593147,1.636370 +-1.274653,2.062788,0.433797,-1.962236,-1.586374,1.637436 +-1.272395,2.061732,0.442897,-1.963999,-1.579554,1.638401 +-1.270071,2.060583,0.451972,-1.965708,-1.572688,1.639266 +-1.267682,2.059343,0.461019,-1.967362,-1.565774,1.640030 +-1.265230,2.058012,0.470040,-1.968962,-1.558815,1.640694 +-1.262714,2.056590,0.479032,-1.970506,-1.551809,1.641257 +-1.260135,2.055076,0.487995,-1.971996,-1.544757,1.641720 +-1.257494,2.053472,0.496929,-1.973430,-1.537659,1.642084 +-1.254792,2.051778,0.505833,-1.974809,-1.530515,1.642347 +-1.252028,2.049993,0.514707,-1.976133,-1.523326,1.642511 +-1.249205,2.048119,0.523549,-1.977402,-1.516091,1.642575 +-1.246322,2.046154,0.532359,-1.978615,-1.508812,1.642540 +-1.243381,2.044101,0.541136,-1.979773,-1.501487,1.642405 +-1.240382,2.041958,0.549880,-1.980876,-1.494118,1.642172 +-1.237325,2.039726,0.558591,-1.981923,-1.486705,1.641840 +-1.234212,2.037406,0.567266,-1.982915,-1.479247,1.641409 +-1.231043,2.034997,0.575906,-1.983852,-1.471746,1.640881 +-1.227820,2.032501,0.584510,-1.984733,-1.464200,1.640254 +-1.224542,2.029917,0.593078,-1.985558,-1.456611,1.639529 +-1.221211,2.027246,0.601608,-1.986329,-1.448979,1.638707 +-1.217827,2.024487,0.610100,-1.987043,-1.441305,1.637788 +-1.214391,2.021642,0.618554,-1.987702,-1.433587,1.636771 +-1.210905,2.018711,0.626968,-1.988306,-1.425827,1.635659 +-1.207369,2.015694,0.635343,-1.988855,-1.418025,1.634450 +-1.203783,2.012591,0.643677,-1.989348,-1.410181,1.633145 +-1.200149,2.009403,0.651969,-1.989785,-1.402295,1.631744 +-1.196468,2.006130,0.660220,-1.990168,-1.394368,1.630249 +-1.192740,2.002773,0.668428,-1.990495,-1.386400,1.628658 +-1.188966,1.999331,0.676592,-1.990767,-1.378392,1.626973 +-1.185147,1.995806,0.684713,-1.990984,-1.370343,1.625194 +-1.181285,1.992198,0.692789,-1.991145,-1.362254,1.623321 +-1.177379,1.988507,0.700820,-1.991252,-1.354125,1.621355 +-1.173432,1.984733,0.708804,-1.991303,-1.345956,1.619296 +-1.169443,1.980878,0.716743,-1.991300,-1.337749,1.617145 +-1.165414,1.976941,0.724634,-1.991242,-1.329502,1.614902 +-1.161346,1.972922,0.732477,-1.991129,-1.321217,1.612567 +-1.157239,1.968823,0.740271,-1.990961,-1.312894,1.610140 +-1.153096,1.964644,0.748016,-1.990739,-1.304533,1.607624 +-1.148915,1.960385,0.755711,-1.990462,-1.296135,1.605017 +-1.144699,1.956047,0.763356,-1.990131,-1.287699,1.602320 +-1.140449,1.951630,0.770950,-1.989745,-1.279226,1.599534 +-1.136166,1.947134,0.778491,-1.989306,-1.270717,1.596659 +-1.131850,1.942560,0.785980,-1.988812,-1.262172,1.593696 +-1.127502,1.937909,0.793416,-1.988264,-1.253591,1.590646 +-1.123124,1.933181,0.800798,-1.987663,-1.244975,1.587508 +-1.118716,1.928377,0.808126,-1.987007,-1.236324,1.584283 +-1.114280,1.923496,0.815399,-1.986299,-1.227638,1.580973 +-1.109817,1.918541,0.822615,-1.985536,-1.218917,1.577576 +-1.105327,1.913510,0.829776,-1.984721,-1.210163,1.574095 +-1.100812,1.908405,0.836879,-1.983852,-1.201375,1.570529 +-1.096272,1.903225,0.843925,-1.982930,-1.192554,1.566879 +-1.091710,1.897973,0.850913,-1.981956,-1.183701,1.563146 +-1.087124,1.892647,0.857841,-1.980928,-1.174815,1.559330 +-1.082518,1.887250,0.864710,-1.979849,-1.165897,1.555431 +-1.077892,1.881780,0.871519,-1.978716,-1.156948,1.551451 +-1.073246,1.876239,0.878267,-1.977532,-1.147967,1.547390 +-1.068582,1.870628,0.884954,-1.976295,-1.138956,1.543249 +-1.063901,1.864946,0.891579,-1.975007,-1.129914,1.539027 +-1.059205,1.859195,0.898141,-1.973666,-1.120843,1.534727 +-1.054493,1.853374,0.904640,-1.972275,-1.111742,1.530347 +-1.049768,1.847486,0.911075,-1.970832,-1.102612,1.525890 +-1.045029,1.841529,0.917446,-1.969337,-1.093453,1.521355 +-1.040279,1.835505,0.923752,-1.967792,-1.084267,1.516744 +-1.035519,1.829414,0.929992,-1.966196,-1.075052,1.512056 +-1.030749,1.823257,0.936166,-1.964549,-1.065810,1.507293 +-1.025970,1.817034,0.942273,-1.962852,-1.056541,1.502455 +-1.021184,1.810746,0.948313,-1.961105,-1.047246,1.497542 +-1.016391,1.804394,0.954285,-1.959308,-1.037925,1.492556 +-1.011593,1.797978,0.960188,-1.957461,-1.028579,1.487498 +-1.006791,1.791498,0.966023,-1.955564,-1.019207,1.482367 +-1.001986,1.784956,0.971787,-1.953618,-1.009811,1.477164 +-0.997178,1.778352,0.977482,-1.951623,-1.000390,1.471890 +-0.992370,1.771686,0.983106,-1.949579,-0.990946,1.466546 +-0.987562,1.764959,0.988659,-1.947486,-0.981479,1.461133 +-0.982754,1.758172,0.994140,-1.945345,-0.971988,1.455650 +-0.977949,1.751325,0.999548,-1.943155,-0.962476,1.450099 +-0.973147,1.744420,1.004884,-1.940918,-0.952942,1.444481 +-0.968349,1.737455,1.010146,-1.938632,-0.943386,1.438795 +-0.963557,1.730433,1.015335,-1.936300,-0.933810,1.433044 +-0.958771,1.723354,1.020449,-1.933919,-0.924213,1.427227 +-0.953992,1.716218,1.025488,-1.931492,-0.914597,1.421345 +-0.949222,1.709025,1.030452,-1.929018,-0.904961,1.415398 +-0.944461,1.701778,1.035340,-1.926497,-0.895306,1.409388 +-0.939711,1.694475,1.040151,-1.923930,-0.885633,1.403316 +-0.934972,1.687119,1.044886,-1.921316,-0.875942,1.397181 +-0.930246,1.679709,1.049543,-1.918657,-0.866233,1.390985 +-0.925534,1.672246,1.054122,-1.915952,-0.856508,1.384728 +-0.920836,1.664730,1.058623,-1.913202,-0.846766,1.378411 +-0.916154,1.657163,1.063045,-1.910406,-0.837008,1.372034 +-0.911489,1.649545,1.067388,-1.907566,-0.827235,1.365599 +-0.906841,1.641876,1.071652,-1.904681,-0.817447,1.359106 +-0.902212,1.634157,1.075835,-1.901751,-0.807645,1.352555 +-0.897603,1.626389,1.079938,-1.898778,-0.797829,1.345948 +-0.893015,1.618573,1.083960,-1.895760,-0.788000,1.339285 +-0.888448,1.610709,1.087901,-1.892699,-0.778158,1.332566 +-0.883904,1.602797,1.091760,-1.889595,-0.768303,1.325793 +-0.879383,1.594838,1.095536,-1.886447,-0.758437,1.318966 +-0.874887,1.586834,1.099230,-1.883257,-0.748560,1.312086 +-0.870417,1.578784,1.102842,-1.880024,-0.738672,1.305154 +-0.865973,1.570689,1.106369,-1.876748,-0.728773,1.298169 +-0.861556,1.562550,1.109814,-1.873431,-0.718865,1.291134 +-0.857168,1.554367,1.113174,-1.870072,-0.708949,1.284048 +-0.852809,1.546141,1.116449,-1.866671,-0.699023,1.276912 +-0.848481,1.537873,1.119640,-1.863229,-0.689090,1.269727 +-0.844183,1.529563,1.122746,-1.859746,-0.679149,1.262494 +-0.839918,1.521211,1.125767,-1.856223,-0.669201,1.255213 +-0.835686,1.512820,1.128701,-1.852658,-0.659246,1.247884 +-0.831487,1.504388,1.131550,-1.849054,-0.649286,1.240510 +-0.827324,1.495917,1.134312,-1.845410,-0.639321,1.233089 +-0.823196,1.487408,1.136988,-1.841726,-0.629350,1.225624 +-0.819104,1.478860,1.139576,-1.838002,-0.619376,1.218114 +-0.815050,1.470275,1.142078,-1.834240,-0.609398,1.210560 +-0.811033,1.461652,1.144492,-1.830438,-0.599416,1.202963 +-0.807056,1.452994,1.146818,-1.826598,-0.589432,1.195324 +-0.803119,1.444300,1.149056,-1.822720,-0.579447,1.187643 +-0.799222,1.435571,1.151205,-1.818804,-0.569459,1.179921 +-0.795367,1.426807,1.153267,-1.814850,-0.559471,1.172158 +-0.791554,1.418010,1.155239,-1.810858,-0.549482,1.164355 +-0.787784,1.409179,1.157123,-1.806829,-0.539494,1.156513 +-0.784058,1.400315,1.158917,-1.802763,-0.529506,1.148632 +-0.780376,1.391420,1.160622,-1.798660,-0.519520,1.140714 +-0.776740,1.382493,1.162237,-1.794521,-0.509536,1.132758 +-0.773150,1.373535,1.163763,-1.790345,-0.499554,1.124765 +-0.769606,1.364546,1.165198,-1.786134,-0.489575,1.116736 +-0.766110,1.355528,1.166544,-1.781887,-0.479599,1.108671 +-0.762663,1.346481,1.167799,-1.777604,-0.469628,1.100572 +-0.759264,1.337404,1.168964,-1.773287,-0.459661,1.092438 +-0.755914,1.328300,1.170039,-1.768934,-0.449699,1.084270 +-0.752615,1.319169,1.171022,-1.764547,-0.439744,1.076070 +-0.749367,1.310010,1.171915,-1.760125,-0.429795,1.067836 +-0.746171,1.300825,1.172717,-1.755669,-0.419852,1.059571 +-0.743026,1.291614,1.173428,-1.751179,-0.409917,1.051275 +-0.739935,1.282378,1.174048,-1.746656,-0.399990,1.042947 +-0.736897,1.273118,1.174577,-1.742099,-0.390072,1.034589 +-0.733913,1.263833,1.175015,-1.737509,-0.380163,1.026202 +-0.730983,1.254524,1.175361,-1.732887,-0.370264,1.017785 +-0.728109,1.245193,1.175616,-1.728231,-0.360375,1.009340 +-0.725290,1.235838,1.175780,-1.723543,-0.350497,1.000867 +-0.722528,1.226462,1.175852,-1.718823,-0.340630,0.992366 +-0.719823,1.217064,1.175833,-1.714072,-0.330776,0.983838 +-0.717174,1.207646,1.175722,-1.709288,-0.320934,0.975284 +-0.714584,1.198206,1.175520,-1.704473,-0.311105,0.966703 +-0.712052,1.188747,1.175227,-1.699627,-0.301289,0.958098 +-0.709579,1.179269,1.174842,-1.694750,-0.291488,0.949467 +-0.707165,1.169771,1.174366,-1.689843,-0.281702,0.940812 +-0.704811,1.160255,1.173799,-1.684904,-0.271931,0.932133 +-0.702516,1.150721,1.173140,-1.679936,-0.262177,0.923431 +-0.700283,1.141170,1.172390,-1.674938,-0.252438,0.914706 +-0.698110,1.131601,1.171549,-1.669910,-0.242717,0.905958 +-0.695999,1.122017,1.170617,-1.664852,-0.233014,0.897189 +-0.693950,1.112416,1.169594,-1.659765,-0.223328,0.888398 +-0.691962,1.102800,1.168480,-1.654649,-0.213662,0.879586 +-0.690037,1.093168,1.167276,-1.649504,-0.204014,0.870753 +-0.688175,1.083522,1.165981,-1.644331,-0.194387,0.861900 +-0.686377,1.073862,1.164595,-1.639129,-0.184780,0.853027 +-0.684641,1.064189,1.163120,-1.633898,-0.175194,0.844136 +-0.682969,1.054502,1.161554,-1.628640,-0.165630,0.835225 +-0.681362,1.044802,1.159898,-1.623354,-0.156087,0.826296 +-0.679818,1.035090,1.158152,-1.618041,-0.146568,0.817349 +-0.678339,1.025366,1.156317,-1.612700,-0.137071,0.808385 +-0.676925,1.015631,1.154392,-1.607332,-0.127598,0.799403 +-0.675576,1.005884,1.152378,-1.601936,-0.118150,0.790405 +-0.674292,0.996127,1.150275,-1.596515,-0.108727,0.781390 +-0.673073,0.986360,1.148083,-1.591066,-0.099328,0.772359 +-0.671920,0.976583,1.145803,-1.585592,-0.089956,0.763313 +-0.670833,0.966797,1.143434,-1.580091,-0.080611,0.754251 +-0.669811,0.957002,1.140978,-1.574564,-0.071292,0.745175 +-0.668856,0.947198,1.138433,-1.569011,-0.062001,0.736084 +-0.667966,0.937386,1.135802,-1.563433,-0.052739,0.726979 +-0.667143,0.927566,1.133083,-1.557829,-0.043504,0.717860 +-0.666386,0.917739,1.130277,-1.552200,-0.034300,0.708727 +-0.665696,0.907904,1.127384,-1.546546,-0.025124,0.699582 +-0.665072,0.898063,1.124406,-1.540867,-0.015980,0.690424 +-0.664514,0.888216,1.121341,-1.535163,-0.006866,0.681253 +-0.664023,0.878363,1.118191,-1.529435,0.002217,0.672070 +-0.663599,0.868504,1.114955,-1.523683,0.011268,0.662875 +-0.663241,0.858640,1.111635,-1.517906,0.020286,0.653669 +-0.662949,0.848771,1.108230,-1.512105,0.029271,0.644451 +-0.662724,0.838898,1.104742,-1.506281,0.038223,0.635222 +-0.662566,0.829020,1.101169,-1.500432,0.047141,0.625983 +-0.662474,0.819138,1.097513,-1.494561,0.056024,0.616734 +-0.662448,0.809253,1.093774,-1.488665,0.064872,0.607474 +-0.662488,0.799365,1.089953,-1.482747,0.073685,0.598204 +-0.662595,0.789473,1.086050,-1.476805,0.082461,0.588925 +-0.662767,0.779579,1.082065,-1.470841,0.091201,0.579636 +-0.663006,0.769683,1.077998,-1.464853,0.099904,0.570338 +-0.663310,0.759785,1.073852,-1.458843,0.108569,0.561031 +-0.663680,0.749885,1.069625,-1.452811,0.117196,0.551716 +-0.664115,0.739983,1.065318,-1.446756,0.125784,0.542392 +-0.664615,0.730080,1.060932,-1.440679,0.134333,0.533060 +-0.665181,0.720177,1.056467,-1.434579,0.142843,0.523720 +-0.665811,0.710273,1.051923,-1.428458,0.151312,0.514372 +-0.666506,0.700368,1.047302,-1.422315,0.159740,0.505017 +-0.667265,0.690463,1.042604,-1.416150,0.168128,0.495654 +-0.668088,0.680559,1.037829,-1.409963,0.176474,0.486284 +-0.668975,0.670655,1.032978,-1.403755,0.184777,0.476907 +-0.669925,0.660751,1.028052,-1.397526,0.193039,0.467523 +-0.670939,0.650849,1.023050,-1.391275,0.201256,0.458132 +-0.672016,0.640947,1.017974,-1.385003,0.209431,0.448735 +-0.673155,0.631047,1.012823,-1.378711,0.217561,0.439332 +-0.674357,0.621148,1.007600,-1.372397,0.225647,0.429922 +-0.675620,0.611252,1.002304,-1.366062,0.233687,0.420507 +-0.676946,0.601357,0.996935,-1.359707,0.241682,0.411085 +-0.678332,0.591464,0.991496,-1.353331,0.249632,0.401658 +-0.679779,0.581574,0.985985,-1.346934,0.257534,0.392225 +-0.681286,0.571687,0.980404,-1.340517,0.265390,0.382787 +-0.682854,0.561802,0.974753,-1.334080,0.273199,0.373343 +-0.684481,0.551920,0.969034,-1.327622,0.280959,0.363894 +-0.686167,0.542042,0.963246,-1.321144,0.288671,0.354441 +-0.687912,0.532167,0.957390,-1.314647,0.296335,0.344982 +-0.689715,0.522295,0.951467,-1.308129,0.303949,0.335518 +-0.691575,0.512427,0.945478,-1.301591,0.311514,0.326049 +-0.693493,0.502563,0.939424,-1.295033,0.319029,0.316576 +-0.695468,0.492704,0.933304,-1.288456,0.326493,0.307098 +-0.697499,0.482848,0.927120,-1.281859,0.333906,0.297615 +-0.699586,0.472996,0.920873,-1.275242,0.341268,0.288129 +-0.701728,0.463150,0.914563,-1.268606,0.348577,0.278637 +-0.703925,0.453307,0.908190,-1.261950,0.355835,0.269142 +-0.706175,0.443470,0.901756,-1.255275,0.363040,0.259642 +-0.708480,0.433637,0.895262,-1.248580,0.370192,0.250138 +-0.710837,0.423810,0.888707,-1.241866,0.377290,0.240631 +-0.713247,0.413988,0.882094,-1.235133,0.384334,0.231119 +-0.715708,0.404171,0.875422,-1.228381,0.391324,0.221603 +-0.718221,0.394359,0.868692,-1.221610,0.398260,0.212083 +-0.720784,0.384553,0.861905,-1.214819,0.405140,0.202560 +-0.723397,0.374753,0.855062,-1.208010,0.411964,0.193032 +-0.726060,0.364958,0.848164,-1.201181,0.418732,0.183501 +-0.728771,0.355169,0.841211,-1.194334,0.425445,0.173967 +-0.731531,0.345387,0.834205,-1.187467,0.432100,0.164428 +-0.734337,0.335610,0.827145,-1.180582,0.438698,0.154886 +-0.737191,0.325839,0.820033,-1.173678,0.445239,0.145341 +-0.740090,0.316075,0.812870,-1.166756,0.451721,0.135791 +-0.743035,0.306317,0.805656,-1.159814,0.458146,0.126239 +-0.746024,0.296565,0.798393,-1.152854,0.464511,0.116682 +-0.749058,0.286820,0.791080,-1.145875,0.470818,0.107123 +-0.752134,0.277081,0.783719,-1.138878,0.477065,0.097559 +-0.755253,0.267349,0.776311,-1.131862,0.483252,0.087993 +-0.758414,0.257624,0.768857,-1.124828,0.489380,0.078422 +-0.761616,0.247905,0.761357,-1.117775,0.495446,0.068849 +-0.764858,0.238193,0.753812,-1.110703,0.501452,0.059272 +-0.768140,0.228488,0.746223,-1.103613,0.507397,0.049691 +-0.771461,0.218790,0.738591,-1.096505,0.513280,0.040108 +-0.774819,0.209099,0.730917,-1.089378,0.519101,0.030521 +-0.778215,0.199415,0.723201,-1.082233,0.524860,0.020930 +-0.781648,0.189738,0.715445,-1.075069,0.530556,0.011336 +-0.785116,0.180068,0.707649,-1.067887,0.536190,0.001739 +-0.788619,0.170406,0.699815,-1.060687,0.541760,-0.007862 +-0.792156,0.160750,0.691942,-1.053468,0.547267,-0.017466 +-0.795727,0.151102,0.684033,-1.046231,0.552709,-0.027074 +-0.799330,0.141461,0.676087,-1.038976,0.558088,-0.036684 +-0.802964,0.131827,0.668106,-1.031702,0.563402,-0.046299 +-0.806630,0.122201,0.660091,-1.024411,0.568651,-0.055916 +-0.810326,0.112582,0.652042,-1.017101,0.573835,-0.065537 +-0.814051,0.102971,0.643961,-1.009772,0.578954,-0.075162 +-0.817804,0.093366,0.635848,-1.002426,0.584007,-0.084789 +-0.821585,0.083770,0.627704,-0.995061,0.588994,-0.094420 +-0.825393,0.074180,0.619530,-0.987678,0.593915,-0.104055 +-0.829227,0.064599,0.611327,-0.980277,0.598769,-0.113693 +-0.833086,0.055024,0.603096,-0.972858,0.603556,-0.123334 +-0.836969,0.045458,0.594838,-0.965420,0.608277,-0.132979 +-0.840875,0.035899,0.586554,-0.957964,0.612929,-0.142627 +-0.844804,0.026347,0.578244,-0.950491,0.617515,-0.152278 +-0.848755,0.016803,0.569909,-0.942998,0.622032,-0.161933 +-0.852727,0.007266,0.561551,-0.935488,0.626481,-0.171591 +-0.856718,-0.002263,0.553171,-0.927960,0.630861,-0.181253 +-0.860729,-0.011784,0.544768,-0.920413,0.635173,-0.190918 +-0.864757,-0.021298,0.536345,-0.912849,0.639416,-0.200587 +-0.868804,-0.030804,0.527901,-0.905266,0.643590,-0.210258 +-0.872866,-0.040302,0.519439,-0.897665,0.647694,-0.219933 +-0.876944,-0.049793,0.510958,-0.890046,0.651729,-0.229612 +-0.881037,-0.059277,0.502460,-0.882409,0.655693,-0.239294 +-0.885144,-0.068752,0.493946,-0.874753,0.659588,-0.248979 +-0.889264,-0.078220,0.485417,-0.867080,0.663412,-0.258668 +-0.893396,-0.087681,0.476872,-0.859388,0.667166,-0.268359 +-0.897540,-0.097133,0.468315,-0.851679,0.670849,-0.278054 +-0.901694,-0.106578,0.459744,-0.843951,0.674461,-0.287753 +-0.905857,-0.116016,0.451162,-0.836205,0.678002,-0.297454 +-0.910029,-0.125446,0.442569,-0.828441,0.681471,-0.307159 +-0.914209,-0.134868,0.433966,-0.820659,0.684869,-0.316867 +-0.918395,-0.144282,0.425354,-0.812858,0.688195,-0.326578 +-0.922588,-0.153689,0.416733,-0.805040,0.691450,-0.336293 +-0.926786,-0.163088,0.408106,-0.797204,0.694632,-0.346010 +-0.930988,-0.172479,0.399471,-0.789349,0.697741,-0.355730 +-0.935194,-0.181863,0.390832,-0.781477,0.700779,-0.365454 +-0.939402,-0.191239,0.382188,-0.773586,0.703743,-0.375180 +-0.943612,-0.200607,0.373540,-0.765678,0.706635,-0.384909 +-0.947823,-0.209968,0.364889,-0.757751,0.709454,-0.394642 +-0.952034,-0.219321,0.356237,-0.749806,0.712199,-0.404377 +-0.956244,-0.228666,0.347583,-0.741844,0.714872,-0.414114 +-0.960453,-0.238003,0.338929,-0.733863,0.717471,-0.423855 +-0.964658,-0.247333,0.330276,-0.725864,0.719996,-0.433598 +-0.968861,-0.256655,0.321625,-0.717847,0.722448,-0.443343 +-0.973059,-0.265969,0.312976,-0.709813,0.724825,-0.453092 +-0.977252,-0.275275,0.304330,-0.701760,0.727129,-0.462842 +-0.981440,-0.284574,0.295689,-0.693690,0.729359,-0.472595 +-0.985620,-0.293864,0.287052,-0.685601,0.731514,-0.482350 +-0.989793,-0.303147,0.278422,-0.677495,0.733595,-0.492107 +-0.993958,-0.312422,0.269798,-0.669371,0.735602,-0.501867 +-0.998113,-0.321689,0.261182,-0.661229,0.737534,-0.511628 +-1.002259,-0.330948,0.252574,-0.653069,0.739392,-0.521391 +-1.006394,-0.340199,0.243976,-0.644891,0.741174,-0.531156 +-1.010517,-0.349442,0.235388,-0.636695,0.742882,-0.540922 +-1.014628,-0.358677,0.226811,-0.628482,0.744515,-0.550690 +-1.018725,-0.367904,0.218245,-0.620251,0.746073,-0.560460 +-1.022809,-0.377123,0.209693,-0.612003,0.747555,-0.570231 +-1.026877,-0.386333,0.201153,-0.603736,0.748963,-0.580002 +-1.030931,-0.395536,0.192628,-0.595452,0.750295,-0.589775 +-1.034968,-0.404730,0.184118,-0.587151,0.751552,-0.599549 +-1.038988,-0.413916,0.175624,-0.578832,0.752733,-0.609324 +-1.042990,-0.423094,0.167147,-0.570495,0.753839,-0.619099 +-1.046974,-0.432263,0.158687,-0.562141,0.754870,-0.628874 +-1.050938,-0.441424,0.150245,-0.553769,0.755825,-0.638650 +-1.054882,-0.450576,0.141823,-0.545380,0.756704,-0.648426 +-1.058806,-0.459720,0.133420,-0.536974,0.757508,-0.658202 +-1.062708,-0.468855,0.125038,-0.528550,0.758236,-0.667978 +-1.066588,-0.477982,0.116677,-0.520109,0.758888,-0.677753 +-1.070445,-0.487100,0.108338,-0.511651,0.759465,-0.687528 +-1.074278,-0.496209,0.100022,-0.503176,0.759965,-0.697302 +-1.078088,-0.505309,0.091730,-0.494683,0.760390,-0.707074 +-1.081872,-0.514400,0.083462,-0.486174,0.760740,-0.716846 +-1.085630,-0.523482,0.075219,-0.477648,0.761013,-0.726616 +-1.089363,-0.532555,0.067002,-0.469104,0.761211,-0.736385 +-1.093068,-0.541618,0.058811,-0.460544,0.761332,-0.746152 +-1.096746,-0.550673,0.050648,-0.451967,0.761378,-0.755916 +-1.100396,-0.559717,0.042512,-0.443373,0.761348,-0.765679 +-1.104017,-0.568753,0.034406,-0.434763,0.761243,-0.775439 +-1.107608,-0.577778,0.026328,-0.426136,0.761061,-0.785196 +-1.111169,-0.586794,0.018280,-0.417493,0.760804,-0.794950 +-1.114700,-0.595800,0.010263,-0.408833,0.760471,-0.804700 +-1.118199,-0.604796,0.002278,-0.400156,0.760063,-0.814448 +-1.121667,-0.613782,-0.005676,-0.391464,0.759579,-0.824191 +-1.125102,-0.622758,-0.013597,-0.382755,0.759019,-0.833930 +-1.128504,-0.631724,-0.021485,-0.374030,0.758383,-0.843665 +-1.131872,-0.640679,-0.029338,-0.365290,0.757672,-0.853396 +-1.135207,-0.649623,-0.037158,-0.356533,0.756886,-0.863121 +-1.138507,-0.658556,-0.044942,-0.347760,0.756024,-0.872841 +-1.141771,-0.667479,-0.052690,-0.338972,0.755087,-0.882556 +-1.145001,-0.676391,-0.060402,-0.330168,0.754074,-0.892264 +-1.148194,-0.685291,-0.068077,-0.321349,0.752987,-0.901967 +-1.151350,-0.694180,-0.075715,-0.312514,0.751824,-0.911663 +-1.154469,-0.703058,-0.083314,-0.303664,0.750586,-0.921352 +-1.157551,-0.711924,-0.090875,-0.294799,0.749273,-0.931034 +-1.160595,-0.720778,-0.098397,-0.285918,0.747885,-0.940709 +-1.163600,-0.729619,-0.105878,-0.277023,0.746423,-0.950375 +-1.166566,-0.738449,-0.113320,-0.268113,0.744885,-0.960034 +-1.169493,-0.747267,-0.120720,-0.259188,0.743273,-0.969684 +-1.172380,-0.756071,-0.128079,-0.250248,0.741587,-0.979325 +-1.175227,-0.764863,-0.135397,-0.241294,0.739826,-0.988956 +-1.178034,-0.773642,-0.142671,-0.232326,0.737991,-0.998579 +-1.180800,-0.782408,-0.149903,-0.223343,0.736082,-1.008191 +-1.183524,-0.791161,-0.157092,-0.214347,0.734098,-1.017792 +-1.186207,-0.799899,-0.164237,-0.205336,0.732041,-1.027383 +-1.188847,-0.808625,-0.171337,-0.196312,0.729910,-1.036962 +-1.191446,-0.817336,-0.178392,-0.187274,0.727705,-1.046530 +-1.194001,-0.826032,-0.185403,-0.178222,0.725427,-1.056086 +-1.196514,-0.834715,-0.192367,-0.169158,0.723075,-1.065630 +-1.198984,-0.843382,-0.199286,-0.160079,0.720651,-1.075160 +-1.201410,-0.852035,-0.206158,-0.150988,0.718153,-1.084677 +-1.203792,-0.860672,-0.212983,-0.141884,0.715582,-1.094181 +-1.206130,-0.869294,-0.219760,-0.132768,0.712938,-1.103670 +-1.208424,-0.877900,-0.226490,-0.123638,0.710222,-1.113144 +-1.210673,-0.886490,-0.233172,-0.114497,0.707434,-1.122604 +-1.212877,-0.895064,-0.239806,-0.105343,0.704573,-1.132048 +-1.215037,-0.903621,-0.246390,-0.096177,0.701640,-1.141475 +-1.217151,-0.912162,-0.252925,-0.086999,0.698635,-1.150887 +-1.219220,-0.920686,-0.259411,-0.077810,0.695559,-1.160281 +-1.221243,-0.929192,-0.265847,-0.068609,0.692411,-1.169658 +-1.223220,-0.937681,-0.272232,-0.059396,0.689191,-1.179017 +-1.225152,-0.946151,-0.278567,-0.050173,0.685901,-1.188358 +-1.227037,-0.954604,-0.284852,-0.040939,0.682539,-1.197679 +-1.228877,-0.963038,-0.291085,-0.031693,0.679107,-1.206982 +-1.230670,-0.971453,-0.297267,-0.022438,0.675604,-1.216264 +-1.232417,-0.979849,-0.303397,-0.013172,0.672031,-1.225526 +-1.234117,-0.988225,-0.309475,-0.003896,0.668388,-1.234767 +-1.235771,-0.996582,-0.315501,0.005391,0.664675,-1.243986 +-1.237378,-1.004918,-0.321474,0.014686,0.660893,-1.253184 +-1.238938,-1.013234,-0.327395,0.023992,0.657040,-1.262358 +-1.240452,-1.021530,-0.333263,0.033306,0.653119,-1.271510 +-1.241919,-1.029804,-0.339078,0.042630,0.649129,-1.280638 +-1.243339,-1.038056,-0.344839,0.051963,0.645070,-1.289742 +-1.244712,-1.046287,-0.350547,0.061304,0.640943,-1.298822 +-1.246038,-1.054496,-0.356202,0.070654,0.636747,-1.307876 +-1.247318,-1.062682,-0.361802,0.080011,0.632483,-1.316904 +-1.248551,-1.070845,-0.367349,0.089377,0.628152,-1.325906 +-1.249737,-1.078985,-0.372841,0.098751,0.623753,-1.334880 +-1.250877,-1.087102,-0.378279,0.108132,0.619287,-1.343828 +-1.251970,-1.095194,-0.383663,0.117520,0.614754,-1.352747 +-1.253017,-1.103262,-0.388992,0.126915,0.610155,-1.361637 +-1.254017,-1.111305,-0.394266,0.136317,0.605489,-1.370499 +-1.254971,-1.119323,-0.399485,0.145726,0.600757,-1.379330 +-1.255878,-1.127315,-0.404650,0.155140,0.595959,-1.388131 +-1.256739,-1.135281,-0.409760,0.164561,0.591096,-1.396901 +-1.257555,-1.143221,-0.414814,0.173987,0.586167,-1.405639 +-1.258325,-1.151134,-0.419814,0.183419,0.581173,-1.414345 +-1.259049,-1.159020,-0.424758,0.192856,0.576115,-1.423018 +-1.259727,-1.166878,-0.429647,0.202299,0.570992,-1.431658 +-1.260360,-1.174709,-0.434481,0.211745,0.565806,-1.440263 +-1.260948,-1.182510,-0.439260,0.221196,0.560555,-1.448834 +-1.261491,-1.190283,-0.443983,0.230652,0.555241,-1.457370 +-1.261990,-1.198027,-0.448652,0.240111,0.549864,-1.465869 +-1.262444,-1.205740,-0.453264,0.249574,0.544424,-1.474333 +-1.262853,-1.213424,-0.457822,0.259040,0.538922,-1.482759 +-1.263219,-1.221077,-0.462324,0.268509,0.533357,-1.491147 +-1.263541,-1.228699,-0.466771,0.277981,0.527731,-1.499496 +-1.263819,-1.236289,-0.471163,0.287455,0.522043,-1.507807 +-1.264054,-1.243847,-0.475500,0.296931,0.516294,-1.516078 +-1.264246,-1.251372,-0.479782,0.306409,0.510484,-1.524309 +-1.264396,-1.258865,-0.484009,0.315889,0.504614,-1.532499 +-1.264503,-1.266325,-0.488180,0.325370,0.498683,-1.540647 +-1.264568,-1.273750,-0.492297,0.334852,0.492693,-1.548752 +-1.264592,-1.281141,-0.496360,0.344335,0.486643,-1.556815 +-1.264574,-1.288497,-0.500367,0.353818,0.480534,-1.564835 +-1.264515,-1.295818,-0.504321,0.363301,0.474366,-1.572810 +-1.264415,-1.303103,-0.508219,0.372784,0.468140,-1.580741 +-1.264275,-1.310352,-0.512064,0.382267,0.461856,-1.588625 +-1.264096,-1.317564,-0.515854,0.391748,0.455514,-1.596464 +-1.263876,-1.324739,-0.519590,0.401229,0.449115,-1.604256 +-1.263618,-1.331876,-0.523273,0.410707,0.442659,-1.612001 +-1.263321,-1.338975,-0.526902,0.420184,0.436146,-1.619697 +-1.262985,-1.346035,-0.530477,0.429659,0.429578,-1.627345 +-1.262612,-1.353056,-0.534000,0.439132,0.422953,-1.634944 +-1.262201,-1.360037,-0.537469,0.448601,0.416273,-1.642492 +-1.261753,-1.366978,-0.540885,0.458068,0.409538,-1.649990 +-1.261268,-1.373878,-0.544248,0.467531,0.402749,-1.657436 +-1.260748,-1.380737,-0.547559,0.476990,0.395905,-1.664831 +-1.260191,-1.387554,-0.550818,0.486446,0.389007,-1.672173 +-1.259600,-1.394329,-0.554024,0.495896,0.382056,-1.679461 +-1.258973,-1.401061,-0.557179,0.505343,0.375052,-1.686696 +-1.258313,-1.407749,-0.560282,0.514784,0.367996,-1.693876 +-1.257618,-1.414394,-0.563334,0.524219,0.360887,-1.701001 +-1.256891,-1.420994,-0.566335,0.533649,0.353726,-1.708070 +-1.256130,-1.427549,-0.569285,0.543073,0.346514,-1.715082 +-1.255338,-1.434059,-0.572185,0.552490,0.339251,-1.722037 +-1.254513,-1.440523,-0.575034,0.561900,0.331937,-1.728935 +-1.253658,-1.446941,-0.577834,0.571304,0.324574,-1.735774 +-1.252772,-1.453311,-0.580584,0.580700,0.317160,-1.742554 +-1.251855,-1.459634,-0.583284,0.590088,0.309698,-1.749274 +-1.250909,-1.465909,-0.585936,0.599468,0.302186,-1.755934 +-1.249934,-1.472135,-0.588538,0.608839,0.294626,-1.762532 +-1.248931,-1.478312,-0.591093,0.618202,0.287018,-1.769070 +-1.247899,-1.484439,-0.593599,0.627555,0.279363,-1.775545 +-1.246841,-1.490516,-0.596057,0.636899,0.271660,-1.781957 +-1.245755,-1.496542,-0.598469,0.646233,0.263911,-1.788305 +-1.244643,-1.502517,-0.600833,0.655557,0.256115,-1.794590 +-1.243506,-1.508440,-0.603150,0.664870,0.248274,-1.800810 +-1.242344,-1.514311,-0.605421,0.674172,0.240387,-1.806964 +-1.241157,-1.520129,-0.607646,0.683463,0.232456,-1.813052 +-1.239947,-1.525893,-0.609826,0.692742,0.224480,-1.819074 +-1.238713,-1.531603,-0.611960,0.702009,0.216460,-1.825029 +-1.237456,-1.537259,-0.614049,0.711263,0.208396,-1.830916 +-1.236178,-1.542860,-0.616094,0.720506,0.200290,-1.836734 +-1.234878,-1.548405,-0.618095,0.729734,0.192141,-1.842484 +-1.233558,-1.553894,-0.620052,0.738950,0.183950,-1.848164 +-1.232217,-1.559326,-0.621966,0.748152,0.175717,-1.853774 +-1.230857,-1.564701,-0.623837,0.757339,0.167443,-1.859313 +-1.229478,-1.570019,-0.625665,0.766512,0.159128,-1.864781 +-1.228080,-1.575278,-0.627452,0.775670,0.150774,-1.870177 +-1.226665,-1.580478,-0.629197,0.784813,0.142379,-1.875500 +-1.225233,-1.585619,-0.630900,0.793940,0.133945,-1.880751 +-1.223785,-1.590700,-0.632563,0.803052,0.125472,-1.885927 +-1.222321,-1.595721,-0.634185,0.812147,0.116961,-1.891030 +-1.220841,-1.600681,-0.635768,0.821225,0.108412,-1.896058 +-1.219348,-1.605579,-0.637311,0.830287,0.099826,-1.901011 +-1.217840,-1.610415,-0.638815,0.839331,0.091203,-1.905889 +-1.216320,-1.615189,-0.640280,0.848357,0.082543,-1.910690 +-1.214787,-1.619900,-0.641707,0.857365,0.073848,-1.915414 +-1.213242,-1.624548,-0.643097,0.866355,0.065117,-1.920061 +-1.211686,-1.629131,-0.644449,0.875326,0.056351,-1.924630 +-1.210119,-1.633650,-0.645764,0.884278,0.047551,-1.929120 +-1.208543,-1.638103,-0.647043,0.893211,0.038717,-1.933532 +-1.206957,-1.642492,-0.648287,0.902123,0.029850,-1.937865 +-1.205363,-1.646814,-0.649494,0.911016,0.020950,-1.942118 +-1.203761,-1.651069,-0.650667,0.919887,0.012017,-1.946290 +-1.202151,-1.655258,-0.651806,0.928738,0.003052,-1.950382 +-1.200535,-1.659378,-0.652910,0.937568,-0.005944,-1.954392 +-1.198913,-1.663431,-0.653981,0.946376,-0.014970,-1.958321 +-1.197286,-1.667415,-0.655019,0.955162,-0.024028,-1.962168 +-1.195653,-1.671331,-0.656024,0.963926,-0.033115,-1.965932 +-1.194017,-1.675176,-0.656997,0.972667,-0.042231,-1.969613 +-1.192378,-1.678952,-0.657938,0.981385,-0.051376,-1.973210 +-1.190736,-1.682657,-0.658849,0.990080,-0.060550,-1.976724 +-1.189091,-1.686291,-0.659728,0.998751,-0.069751,-1.980153 +-1.187445,-1.689854,-0.660578,1.007399,-0.078980,-1.983498 +-1.185799,-1.693345,-0.661398,1.016021,-0.088236,-1.986757 +-1.184152,-1.696764,-0.662189,1.024620,-0.097517,-1.989931 +-1.182506,-1.700109,-0.662951,1.033193,-0.106825,-1.993019 +-1.180861,-1.703382,-0.663684,1.041740,-0.116157,-1.996021 +-1.179217,-1.706581,-0.664390,1.050263,-0.125515,-1.998936 +-1.177576,-1.709705,-0.665069,1.058759,-0.134896,-2.001764 +-1.175938,-1.712755,-0.665721,1.067228,-0.144301,-2.004505 +-1.174303,-1.715731,-0.666347,1.075671,-0.153729,-2.007158 +-1.172673,-1.718630,-0.666947,1.084087,-0.163180,-2.009723 +-1.171047,-1.721454,-0.667522,1.092476,-0.172653,-2.012200 +-1.169427,-1.724201,-0.668072,1.100837,-0.182147,-2.014588 +-1.167813,-1.726872,-0.668598,1.109170,-0.191663,-2.016886 +-1.166205,-1.729466,-0.669099,1.117475,-0.201199,-2.019096 +-1.164605,-1.731982,-0.669578,1.125751,-0.210754,-2.021216 +-1.163013,-1.734420,-0.670034,1.133998,-0.220330,-2.023247 +-1.161429,-1.736780,-0.670467,1.142216,-0.229924,-2.025187 +-1.159854,-1.739062,-0.670878,1.150404,-0.239536,-2.027036 +-1.158288,-1.741264,-0.671268,1.158563,-0.249166,-2.028796 +-1.156733,-1.743387,-0.671638,1.166691,-0.258813,-2.030464 +-1.155188,-1.745430,-0.671986,1.174789,-0.268477,-2.032041 +-1.153655,-1.747393,-0.672315,1.182856,-0.278158,-2.033527 +-1.152133,-1.749275,-0.672624,1.190892,-0.287854,-2.034921 +-1.150624,-1.751076,-0.672915,1.198896,-0.297565,-2.036223 +-1.149128,-1.752797,-0.673186,1.206869,-0.307290,-2.037434 +-1.147645,-1.754435,-0.673440,1.214810,-0.317030,-2.038552 +-1.146176,-1.755992,-0.673676,1.222719,-0.326783,-2.039578 +-1.144721,-1.757467,-0.673895,1.230595,-0.336549,-2.040511 +-1.143282,-1.758859,-0.674098,1.238438,-0.346327,-2.041352 +-1.141858,-1.760168,-0.674284,1.246249,-0.356118,-2.042100 +-1.140451,-1.761394,-0.674454,1.254026,-0.365919,-2.042755 +-1.139059,-1.762537,-0.674609,1.261769,-0.375732,-2.043317 +-1.137685,-1.763596,-0.674750,1.269478,-0.385554,-2.043786 +-1.136328,-1.764571,-0.674876,1.277153,-0.395387,-2.044162 +-1.134990,-1.765462,-0.674988,1.284793,-0.405228,-2.044444 +-1.133669,-1.766268,-0.675086,1.292399,-0.415078,-2.044633 +-1.132368,-1.766990,-0.675172,1.299970,-0.424936,-2.044728 +-1.131086,-1.767626,-0.675245,1.307506,-0.434802,-2.044730 +-1.129824,-1.768177,-0.675306,1.315006,-0.444675,-2.044638 +-1.128582,-1.768643,-0.675355,1.322470,-0.454554,-2.044452 +-1.127360,-1.769023,-0.675393,1.329898,-0.464439,-2.044173 +-1.126160,-1.769317,-0.675420,1.337290,-0.474329,-2.043800 +-1.124981,-1.769525,-0.675436,1.344645,-0.484224,-2.043333 +-1.123824,-1.769646,-0.675443,1.351964,-0.494124,-2.042772 +-1.122690,-1.769681,-0.675439,1.359246,-0.504027,-2.042118 +-1.121578,-1.769629,-0.675427,1.366490,-0.513933,-2.041370 +-1.120489,-1.769491,-0.675406,1.373697,-0.523842,-2.040529 +-1.119423,-1.769265,-0.675376,1.380867,-0.533753,-2.039594 +-1.118382,-1.768952,-0.675339,1.387998,-0.543665,-2.038565 +-1.117364,-1.768551,-0.675293,1.395091,-0.553579,-2.037443 +-1.116371,-1.768063,-0.675241,1.402146,-0.563493,-2.036227 +-1.115403,-1.767487,-0.675182,1.409163,-0.573406,-2.034918 +-1.114460,-1.766824,-0.675116,1.416140,-0.583320,-2.033516 +-1.113542,-1.766073,-0.675044,1.423079,-0.593232,-2.032021 +-1.112650,-1.765233,-0.674966,1.429978,-0.603142,-2.030433 +-1.111784,-1.764305,-0.674883,1.436839,-0.613050,-2.028751 +-1.110944,-1.763290,-0.674795,1.443659,-0.622955,-2.026978 +-1.110131,-1.762186,-0.674703,1.450440,-0.632857,-2.025111 +-1.109344,-1.760993,-0.674606,1.457181,-0.642755,-2.023153 +-1.108585,-1.759712,-0.674505,1.463881,-0.652649,-2.021102 +-1.107853,-1.758343,-0.674400,1.470542,-0.662538,-2.018959 +-1.107148,-1.756885,-0.674292,1.477162,-0.672421,-2.016724 +-1.106471,-1.755338,-0.674181,1.483741,-0.682298,-2.014397 +-1.105823,-1.753703,-0.674068,1.490279,-0.692169,-2.011979 +-1.105202,-1.751980,-0.673952,1.496777,-0.702032,-2.009470 +-1.104610,-1.750167,-0.673834,1.503233,-0.711888,-2.006870 +-1.104046,-1.748267,-0.673714,1.509648,-0.721736,-2.004180 +-1.103511,-1.746277,-0.673593,1.516021,-0.731575,-2.001399 +-1.103004,-1.744199,-0.673470,1.522353,-0.741405,-1.998528 +-1.102527,-1.742032,-0.673347,1.528643,-0.751225,-1.995567 +-1.102079,-1.739777,-0.673224,1.534891,-0.761035,-1.992516 +-1.101660,-1.737434,-0.673099,1.541097,-0.770834,-1.989376 +-1.101270,-1.735002,-0.672975,1.547261,-0.780621,-1.986148 +-1.100910,-1.732482,-0.672851,1.553383,-0.790397,-1.982830 +-1.100580,-1.729873,-0.672728,1.559462,-0.800160,-1.979425 +-1.100279,-1.727177,-0.672605,1.565498,-0.809910,-1.975931 +-1.100007,-1.724392,-0.672484,1.571492,-0.819647,-1.972350 +-1.099766,-1.721520,-0.672363,1.577443,-0.829370,-1.968682 +-1.099554,-1.718559,-0.672244,1.583351,-0.839079,-1.964927 +-1.099372,-1.715511,-0.672127,1.589216,-0.848772,-1.961085 +-1.099220,-1.712376,-0.672011,1.595038,-0.858450,-1.957158 +-1.099098,-1.709153,-0.671897,1.600817,-0.868111,-1.953145 +-1.099005,-1.705843,-0.671786,1.606552,-0.877756,-1.949046 +-1.098943,-1.702446,-0.671677,1.612244,-0.887384,-1.944863 +-1.098910,-1.698962,-0.671571,1.617893,-0.896995,-1.940596 +-1.098907,-1.695391,-0.671468,1.623498,-0.906587,-1.936245 +-1.098934,-1.691734,-0.671368,1.629059,-0.916161,-1.931810 +-1.098990,-1.687990,-0.671271,1.634576,-0.925715,-1.927293 +-1.099076,-1.684161,-0.671177,1.640050,-0.935250,-1.922693 +-1.099191,-1.680246,-0.671087,1.645480,-0.944765,-1.918011 +-1.099336,-1.676245,-0.671001,1.650866,-0.954258,-1.913247 +-1.099511,-1.672159,-0.670919,1.656208,-0.963731,-1.908403 +-1.099714,-1.667987,-0.670840,1.661505,-0.973182,-1.903478 +-1.099947,-1.663731,-0.670765,1.666759,-0.982611,-1.898474 +-1.100208,-1.659391,-0.670695,1.671969,-0.992017,-1.893390 +-1.100498,-1.654966,-0.670629,1.677134,-1.001400,-1.888227 +-1.100817,-1.650458,-0.670568,1.682255,-1.010759,-1.882986 +-1.101165,-1.645865,-0.670511,1.687332,-1.020094,-1.877667 +-1.101540,-1.641190,-0.670459,1.692364,-1.029404,-1.872271 +-1.101944,-1.636432,-0.670411,1.697353,-1.038689,-1.866799 +-1.102376,-1.631591,-0.670369,1.702296,-1.047949,-1.861250 +-1.102835,-1.626667,-0.670331,1.707196,-1.057182,-1.855626 +-1.103322,-1.621662,-0.670298,1.712051,-1.066389,-1.849928 +-1.103836,-1.616576,-0.670271,1.716862,-1.075568,-1.844155 +-1.104377,-1.611408,-0.670248,1.721628,-1.084720,-1.838309 +-1.104945,-1.606159,-0.670231,1.726350,-1.093844,-1.832390 +-1.105539,-1.600831,-0.670218,1.731027,-1.102939,-1.826399 +-1.106159,-1.595422,-0.670211,1.735660,-1.112005,-1.820336 +-1.106805,-1.589934,-0.670210,1.740249,-1.121041,-1.814203 +-1.107477,-1.584366,-0.670213,1.744793,-1.130048,-1.807999 +-1.108174,-1.578720,-0.670222,1.749293,-1.139024,-1.801726 +-1.108895,-1.572996,-0.670237,1.753749,-1.147969,-1.795383 +-1.109642,-1.567194,-0.670256,1.758160,-1.156882,-1.788973 +-1.110413,-1.561315,-0.670281,1.762527,-1.165764,-1.782495 +-1.111207,-1.555360,-0.670312,1.766849,-1.174613,-1.775950 +-1.112025,-1.549327,-0.670347,1.771128,-1.183430,-1.769339 +-1.112866,-1.543220,-0.670388,1.775362,-1.192213,-1.762663 +-1.113731,-1.537036,-0.670434,1.779552,-1.200962,-1.755922 +-1.114617,-1.530778,-0.670486,1.783698,-1.209677,-1.749117 +-1.115525,-1.524446,-0.670543,1.787800,-1.218358,-1.742249 +-1.116455,-1.518040,-0.670605,1.791858,-1.227003,-1.735319 +-1.117406,-1.511561,-0.670672,1.795872,-1.235613,-1.728327 +-1.118378,-1.505010,-0.670744,1.799842,-1.244187,-1.721274 +-1.119370,-1.498386,-0.670821,1.803769,-1.252724,-1.714161 +-1.120382,-1.491691,-0.670903,1.807651,-1.261225,-1.706988 +-1.121413,-1.484925,-0.670990,1.811490,-1.269688,-1.699757 +-1.122463,-1.478089,-0.671081,1.815285,-1.278113,-1.692468 +-1.123531,-1.471182,-0.671178,1.819037,-1.286500,-1.685122 +-1.124617,-1.464207,-0.671279,1.822746,-1.294849,-1.677720 +-1.125721,-1.457164,-0.671384,1.826411,-1.303158,-1.670263 +-1.126841,-1.450052,-0.671494,1.830032,-1.311428,-1.662750 +-1.127978,-1.442874,-0.671608,1.833611,-1.319658,-1.655184 +-1.129131,-1.435628,-0.671727,1.837146,-1.327848,-1.647565 +-1.130299,-1.428317,-0.671849,1.840639,-1.335996,-1.639894 +-1.131481,-1.420941,-0.671975,1.844088,-1.344104,-1.632171 +-1.132678,-1.413500,-0.672106,1.847495,-1.352170,-1.624398 +-1.133889,-1.405995,-0.672240,1.850859,-1.360194,-1.616575 +-1.135113,-1.398426,-0.672377,1.854181,-1.368175,-1.608703 +-1.136349,-1.390796,-0.672518,1.857460,-1.376114,-1.600784 +-1.137597,-1.383103,-0.672662,1.860697,-1.384009,-1.592817 +-1.138856,-1.375349,-0.672809,1.863892,-1.391861,-1.584803 +-1.140127,-1.367535,-0.672959,1.867045,-1.399668,-1.576744 +-1.141407,-1.359661,-0.673112,1.870155,-1.407432,-1.568641 +-1.142697,-1.351728,-0.673268,1.873224,-1.415150,-1.560494 +-1.143996,-1.343736,-0.673426,1.876251,-1.422823,-1.552304 +-1.145303,-1.335687,-0.673586,1.879237,-1.430450,-1.544071 +-1.146617,-1.327582,-0.673748,1.882181,-1.438031,-1.535798 +-1.147939,-1.319420,-0.673912,1.885084,-1.445566,-1.527484 +-1.149267,-1.311203,-0.674078,1.887946,-1.453054,-1.519131 +-1.150601,-1.302932,-0.674245,1.890767,-1.460495,-1.510740 +-1.151940,-1.294607,-0.674414,1.893547,-1.467889,-1.502310 +-1.153283,-1.286229,-0.674584,1.896287,-1.475234,-1.493844 +-1.154630,-1.277799,-0.674754,1.898986,-1.482531,-1.485342 +-1.155980,-1.269317,-0.674926,1.901644,-1.489780,-1.476805 +-1.157332,-1.260785,-0.675098,1.904263,-1.496979,-1.468234 +-1.158686,-1.252203,-0.675270,1.906841,-1.504129,-1.459630 +-1.160041,-1.243573,-0.675442,1.909380,-1.511230,-1.450993 +-1.161397,-1.234894,-0.675614,1.911879,-1.518280,-1.442325 +-1.162751,-1.226168,-0.675785,1.914338,-1.525279,-1.433626 +-1.164105,-1.217395,-0.675956,1.916758,-1.532228,-1.424898 +-1.165457,-1.208577,-0.676126,1.919139,-1.539126,-1.416140 +-1.166806,-1.199714,-0.676295,1.921481,-1.545972,-1.407355 +-1.168153,-1.190808,-0.676463,1.923784,-1.552767,-1.398543 +-1.169495,-1.181858,-0.676629,1.926048,-1.559509,-1.389705 +-1.170832,-1.172866,-0.676793,1.928275,-1.566198,-1.380841 +-1.172164,-1.163833,-0.676955,1.930462,-1.572835,-1.371954 +-1.173490,-1.154759,-0.677114,1.932612,-1.579419,-1.363043 +-1.174808,-1.145645,-0.677272,1.934724,-1.585949,-1.354109 +-1.176120,-1.136493,-0.677426,1.936798,-1.592425,-1.345154 +-1.177422,-1.127303,-0.677577,1.938835,-1.598847,-1.336178 +-1.178716,-1.118077,-0.677725,1.940834,-1.605215,-1.327182 +-1.179999,-1.108814,-0.677869,1.942796,-1.611527,-1.318167 +-1.181272,-1.099516,-0.678010,1.944722,-1.617785,-1.309134 +-1.182534,-1.090184,-0.678146,1.946611,-1.623987,-1.300084 +-1.183783,-1.080818,-0.678278,1.948463,-1.630134,-1.291018 +-1.185020,-1.071420,-0.678405,1.950279,-1.636225,-1.281936 +-1.186243,-1.061990,-0.678527,1.952059,-1.642259,-1.272840 +-1.187451,-1.052530,-0.678644,1.953803,-1.648237,-1.263730 +-1.188644,-1.043040,-0.678756,1.955511,-1.654157,-1.254608 +-1.189821,-1.033521,-0.678861,1.957184,-1.660021,-1.245474 +-1.190981,-1.023975,-0.678961,1.958822,-1.665827,-1.236329 +-1.192124,-1.014402,-0.679055,1.960425,-1.671575,-1.227173 +-1.193248,-1.004802,-0.679142,1.961993,-1.677266,-1.218009 +-1.194354,-0.995178,-0.679222,1.963526,-1.682898,-1.208836 +-1.195439,-0.985529,-0.679295,1.965025,-1.688471,-1.199656 +-1.196504,-0.975857,-0.679361,1.966490,-1.693985,-1.190469 +-1.197548,-0.966163,-0.679419,1.967921,-1.699441,-1.181276 +-1.198569,-0.956448,-0.679469,1.969319,-1.704837,-1.172079 +-1.199568,-0.946712,-0.679511,1.970683,-1.710173,-1.162877 +-1.200543,-0.936957,-0.679545,1.972013,-1.715450,-1.153673 +-1.201493,-0.927183,-0.679570,1.973311,-1.720666,-1.144466 +-1.202418,-0.917392,-0.679586,1.974576,-1.725822,-1.135257 +-1.203317,-0.907584,-0.679592,1.975808,-1.730917,-1.126048 +-1.204190,-0.897760,-0.679589,1.977008,-1.735952,-1.116839 +-1.205035,-0.887922,-0.679576,1.978176,-1.740925,-1.107631 +-1.205851,-0.878070,-0.679553,1.979313,-1.745837,-1.098425 +-1.206639,-0.868206,-0.679520,1.980417,-1.750687,-1.089222 +-1.207397,-0.858329,-0.679476,1.981490,-1.755476,-1.080022 +-1.208124,-0.848442,-0.679422,1.982532,-1.760202,-1.070827 +-1.208820,-0.838544,-0.679356,1.983543,-1.764866,-1.061637 +-1.209484,-0.828638,-0.679279,1.984523,-1.769468,-1.052453 +-1.210115,-0.818724,-0.679190,1.985473,-1.774007,-1.043275 +-1.210713,-0.808802,-0.679089,1.986393,-1.778483,-1.034105 +-1.211276,-0.798875,-0.678976,1.987283,-1.782896,-1.024944 +-1.211804,-0.788942,-0.678851,1.988143,-1.787246,-1.015791 +-1.212297,-0.779005,-0.678713,1.988973,-1.791532,-1.006649 +-1.212753,-0.769065,-0.678562,1.989774,-1.795754,-0.997517 +-1.213172,-0.759123,-0.678397,1.990546,-1.799912,-0.988397 +-1.213552,-0.749179,-0.678220,1.991290,-1.804007,-0.979288 +-1.213895,-0.739235,-0.678029,1.992004,-1.808036,-0.970193 +-1.214197,-0.729291,-0.677823,1.992691,-1.812002,-0.961112 +-1.214460,-0.719349,-0.677604,1.993349,-1.815903,-0.952045 +-1.214682,-0.709410,-0.677371,1.993980,-1.819739,-0.942993 +-1.214862,-0.699473,-0.677122,1.994583,-1.823509,-0.933957 +-1.215001,-0.689541,-0.676859,1.995158,-1.827215,-0.924938 +-1.215096,-0.679615,-0.676581,1.995707,-1.830855,-0.915937 +-1.215148,-0.669694,-0.676288,1.996228,-1.834430,-0.906953 +-1.215155,-0.659781,-0.675979,1.996723,-1.837939,-0.897988 +-1.215117,-0.649875,-0.675655,1.997192,-1.841382,-0.889043 +-1.215034,-0.639979,-0.675314,1.997634,-1.844760,-0.880118 +-1.214905,-0.630092,-0.674958,1.998050,-1.848071,-0.871214 +-1.214729,-0.620217,-0.674585,1.998441,-1.851315,-0.862331 +-1.214505,-0.610353,-0.674195,1.998806,-1.854494,-0.853471 +-1.214233,-0.600502,-0.673789,1.999147,-1.857605,-0.844634 +-1.213912,-0.590664,-0.673367,1.999462,-1.860650,-0.835820 +-1.213541,-0.580841,-0.672927,1.999752,-1.863628,-0.827030 +-1.213121,-0.571033,-0.672469,2.000018,-1.866540,-0.818265 +-1.212649,-0.561242,-0.671995,2.000259,-1.869384,-0.809526 +-1.212127,-0.551467,-0.671503,2.000477,-1.872160,-0.800813 +-1.211552,-0.541711,-0.670993,2.000671,-1.874870,-0.792126 +-1.210925,-0.531974,-0.670465,2.000841,-1.877512,-0.783467 +-1.210245,-0.522257,-0.669919,2.000988,-1.880086,-0.774836 +-1.209511,-0.512560,-0.669355,2.001112,-1.882593,-0.766233 +-1.208722,-0.502885,-0.668772,2.001212,-1.885032,-0.757660 +-1.207879,-0.493233,-0.668171,2.001291,-1.887403,-0.749116 +-1.206981,-0.483604,-0.667551,2.001347,-1.889706,-0.740603 +-1.206026,-0.473999,-0.666913,2.001380,-1.891941,-0.732120 +-1.205015,-0.464419,-0.666256,2.001392,-1.894108,-0.723668 +-1.203947,-0.454866,-0.665579,2.001382,-1.896206,-0.715249 +-1.202821,-0.445339,-0.664884,2.001351,-1.898236,-0.706862 +-1.201637,-0.435839,-0.664169,2.001298,-1.900198,-0.698508 +-1.200395,-0.426368,-0.663435,2.001224,-1.902091,-0.690187 +-1.199094,-0.416927,-0.662682,2.001130,-1.903916,-0.681901 +-1.197733,-0.407515,-0.661909,2.001015,-1.905672,-0.673649 +-1.196312,-0.398135,-0.661116,2.000880,-1.907359,-0.665432 +-1.194831,-0.388786,-0.660304,2.000724,-1.908978,-0.657250 +-1.193288,-0.379470,-0.659472,2.000549,-1.910528,-0.649105 +-1.191684,-0.370187,-0.658621,2.000354,-1.912009,-0.640995 +-1.190019,-0.360938,-0.657749,2.000139,-1.913420,-0.632923 +-1.188291,-0.351724,-0.656858,1.999905,-1.914763,-0.624888 +-1.186500,-0.342546,-0.655946,1.999652,-1.916037,-0.616891 +-1.184646,-0.333404,-0.655015,1.999381,-1.917242,-0.608932 +-1.182729,-0.324300,-0.654064,1.999091,-1.918378,-0.601012 +-1.180748,-0.315234,-0.653092,1.998782,-1.919444,-0.593130 +-1.178703,-0.306206,-0.652101,1.998455,-1.920442,-0.585288 +-1.176593,-0.297218,-0.651090,1.998111,-1.921370,-0.577486 +-1.174418,-0.288270,-0.650058,1.997748,-1.922229,-0.569724 +-1.172177,-0.279363,-0.649006,1.997368,-1.923018,-0.562003 +-1.169871,-0.270498,-0.647935,1.996971,-1.923739,-0.554322 +-1.167499,-0.261675,-0.646843,1.996557,-1.924390,-0.546683 +-1.165061,-0.252895,-0.645732,1.996125,-1.924971,-0.539085 +-1.162556,-0.244159,-0.644600,1.995677,-1.925484,-0.531530 +-1.159984,-0.235467,-0.643448,1.995213,-1.925927,-0.524016 +-1.157345,-0.226821,-0.642277,1.994732,-1.926301,-0.516546 +-1.154639,-0.218221,-0.641086,1.994235,-1.926606,-0.509118 +-1.151865,-0.209667,-0.639875,1.993722,-1.926841,-0.501733 +-1.149023,-0.201160,-0.638644,1.993194,-1.927007,-0.494392 +-1.146113,-0.192701,-0.637394,1.992650,-1.927103,-0.487095 +-1.143134,-0.184290,-0.636124,1.992091,-1.927131,-0.479842 +-1.140087,-0.175929,-0.634835,1.991516,-1.927089,-0.472633 +-1.136970,-0.167617,-0.633526,1.990927,-1.926978,-0.465469 +-1.133785,-0.159355,-0.632199,1.990323,-1.926798,-0.458349 +-1.130531,-0.151145,-0.630852,1.989705,-1.926549,-0.451275 +-1.127207,-0.142986,-0.629486,1.989072,-1.926230,-0.444246 +-1.123814,-0.134879,-0.628101,1.988425,-1.925843,-0.437262 +-1.120351,-0.126824,-0.626698,1.987764,-1.925386,-0.430324 +-1.116819,-0.118823,-0.625276,1.987089,-1.924860,-0.423432 +-1.113216,-0.110876,-0.623835,1.986401,-1.924266,-0.416586 +-1.109544,-0.102983,-0.622377,1.985699,-1.923602,-0.409786 +-1.105801,-0.095145,-0.620900,1.984984,-1.922870,-0.403033 +-1.101989,-0.087362,-0.619406,1.984256,-1.922069,-0.396326 +-1.098106,-0.079635,-0.617893,1.983515,-1.921199,-0.389666 +-1.094152,-0.071965,-0.616363,1.982761,-1.920261,-0.383053 +-1.090129,-0.064352,-0.614816,1.981995,-1.919254,-0.376487 +-1.086035,-0.056796,-0.613252,1.981216,-1.918178,-0.369968 +-1.081871,-0.049297,-0.611671,1.980425,-1.917034,-0.363497 +-1.077636,-0.041858,-0.610073,1.979623,-1.915822,-0.357072 +-1.073331,-0.034477,-0.608458,1.978808,-1.914541,-0.350696 +-1.068955,-0.027155,-0.606828,1.977981,-1.913192,-0.344366 +-1.064510,-0.019893,-0.605181,1.977144,-1.911775,-0.338085 +-1.059993,-0.012691,-0.603519,1.976294,-1.910290,-0.331851 +-1.055407,-0.005550,-0.601842,1.975434,-1.908737,-0.325665 +-1.050751,0.001531,-0.600149,1.974562,-1.907116,-0.319526 +-1.046024,0.008550,-0.598441,1.973680,-1.905428,-0.313436 +-1.041227,0.015507,-0.596719,1.972787,-1.903672,-0.307393 +-1.036361,0.022402,-0.594982,1.971883,-1.901848,-0.301398 +-1.031425,0.029235,-0.593232,1.970969,-1.899957,-0.295452 +-1.026419,0.036005,-0.591468,1.970045,-1.897998,-0.289553 +-1.021343,0.042711,-0.589690,1.969110,-1.895973,-0.283702 +-1.016198,0.049354,-0.587899,1.968166,-1.893880,-0.277899 +-1.010984,0.055934,-0.586096,1.967212,-1.891720,-0.272144 +-1.005701,0.062449,-0.584280,1.966248,-1.889494,-0.266437 +-1.000349,0.068900,-0.582452,1.965275,-1.887201,-0.260778 +-0.994929,0.075286,-0.580613,1.964292,-1.884841,-0.255167 +-0.989439,0.081607,-0.578762,1.963300,-1.882415,-0.249603 +-0.983882,0.087862,-0.576900,1.962299,-1.879923,-0.244087 +-0.978257,0.094053,-0.575028,1.961289,-1.877364,-0.238619 +-0.972564,0.100177,-0.573145,1.960270,-1.874740,-0.233199 +-0.966804,0.106236,-0.571253,1.959243,-1.872049,-0.227826 +-0.960976,0.112228,-0.569351,1.958207,-1.869293,-0.222501 +-0.955082,0.118153,-0.567441,1.957163,-1.866472,-0.217222 +-0.949121,0.124012,-0.565521,1.956110,-1.863585,-0.211992 +-0.943094,0.129805,-0.563594,1.955049,-1.860632,-0.206808 +-0.937000,0.135530,-0.561659,1.953980,-1.857615,-0.201671 +-0.930841,0.141188,-0.559716,1.952904,-1.854533,-0.196582 +-0.924617,0.146778,-0.557767,1.951820,-1.851386,-0.191539 +-0.918328,0.152302,-0.555811,1.950728,-1.848175,-0.186543 +-0.911974,0.157757,-0.553850,1.949628,-1.844899,-0.181593 +-0.905556,0.163145,-0.551882,1.948521,-1.841559,-0.176689 +-0.899075,0.168465,-0.549910,1.947407,-1.838155,-0.171832 +-0.892530,0.173717,-0.547933,1.946286,-1.834688,-0.167021 +-0.885921,0.178900,-0.545952,1.945158,-1.831156,-0.162256 +-0.879251,0.184016,-0.543968,1.944023,-1.827562,-0.157537 +-0.872518,0.189064,-0.541980,1.942881,-1.823904,-0.152863 +-0.865723,0.194043,-0.539990,1.941733,-1.820183,-0.148234 +-0.858868,0.198954,-0.537998,1.940578,-1.816399,-0.143651 +-0.851951,0.203796,-0.536004,1.939417,-1.812552,-0.139112 +-0.844974,0.208570,-0.534009,1.938249,-1.808643,-0.134619 +-0.837937,0.213276,-0.532014,1.937076,-1.804672,-0.130169 +-0.830841,0.217913,-0.530018,1.935896,-1.800639,-0.125765 +-0.823687,0.222482,-0.528023,1.934710,-1.796544,-0.121404 +-0.816474,0.226982,-0.526029,1.933518,-1.792387,-0.117087 +-0.809203,0.231414,-0.524037,1.932321,-1.788170,-0.112814 +-0.801875,0.235778,-0.522046,1.931118,-1.783891,-0.108584 +-0.794490,0.240074,-0.520059,1.929910,-1.779551,-0.104397 +-0.787049,0.244301,-0.518075,1.928696,-1.775150,-0.100253 +-0.779553,0.248460,-0.516094,1.927477,-1.770689,-0.096152 +-0.772001,0.252551,-0.514118,1.926252,-1.766168,-0.092094 +-0.764396,0.256575,-0.512147,1.925023,-1.761587,-0.088077 +-0.756736,0.260530,-0.510181,1.923788,-1.756946,-0.084102 +-0.749023,0.264417,-0.508222,1.922549,-1.752245,-0.080169 +-0.741258,0.268237,-0.506269,1.921305,-1.747486,-0.076277 +-0.733441,0.271990,-0.504324,1.920056,-1.742667,-0.072427 +-0.725572,0.275675,-0.502386,1.918803,-1.737790,-0.068617 +-0.717653,0.279293,-0.500457,1.917545,-1.732854,-0.064847 +-0.709684,0.282844,-0.498537,1.916282,-1.727860,-0.061118 +-0.701666,0.286328,-0.496627,1.915016,-1.722808,-0.057429 +-0.693599,0.289745,-0.494727,1.913745,-1.717699,-0.053779 +-0.685484,0.293096,-0.492838,1.912470,-1.712532,-0.050168 +-0.677321,0.296381,-0.490961,1.911191,-1.707308,-0.046597 +-0.669112,0.299599,-0.489096,1.909909,-1.702027,-0.043064 +-0.660857,0.302752,-0.487243,1.908622,-1.696689,-0.039569 +-0.652557,0.305839,-0.485404,1.907332,-1.691295,-0.036112 +-0.644212,0.308861,-0.483580,1.906038,-1.685845,-0.032694 +-0.635824,0.311818,-0.481770,1.904741,-1.680340,-0.029312 +-0.627393,0.314710,-0.479975,1.903440,-1.674778,-0.025968 +-0.618919,0.317537,-0.478196,1.902136,-1.669162,-0.022660 +-0.610404,0.320301,-0.476434,1.900828,-1.663491,-0.019389 +-0.601848,0.323000,-0.474689,1.899518,-1.657765,-0.016154 +-0.593252,0.325635,-0.472962,1.898204,-1.651985,-0.012954 +-0.584617,0.328208,-0.471254,1.896888,-1.646151,-0.009790 +-0.575943,0.330717,-0.469565,1.895568,-1.640263,-0.006661 +-0.567231,0.333163,-0.467895,1.894246,-1.634322,-0.003567 +-0.558483,0.335548,-0.466247,1.892921,-1.628328,-0.000507 +-0.549699,0.337870,-0.464619,1.891593,-1.622281,0.002519 +-0.540879,0.340130,-0.463013,1.890263,-1.616181,0.005511 +-0.532025,0.342329,-0.461430,1.888931,-1.610030,0.008470 +-0.523137,0.344468,-0.459870,1.887596,-1.603826,0.011396 +-0.514216,0.346546,-0.458334,1.886259,-1.597571,0.014289 +-0.505263,0.348563,-0.456823,1.884920,-1.591265,0.017150 +-0.496279,0.350521,-0.455336,1.883578,-1.584908,0.019979 +-0.487264,0.352420,-0.453875,1.882235,-1.578501,0.022777 +-0.478220,0.354259,-0.452441,1.880890,-1.572043,0.025543 +-0.469148,0.356041,-0.451034,1.879543,-1.565536,0.028279 +-0.460047,0.357764,-0.449655,1.878194,-1.558979,0.030984 +-0.450919,0.359429,-0.448304,1.876844,-1.552373,0.033658 +-0.441765,0.361038,-0.446982,1.875492,-1.545717,0.036303 +-0.432586,0.362590,-0.445691,1.874139,-1.539014,0.038919 +-0.423383,0.364085,-0.444429,1.872784,-1.532262,0.041505 +-0.414156,0.365525,-0.443199,1.871428,-1.525463,0.044063 +-0.404906,0.366909,-0.442000,1.870071,-1.518616,0.046592 +-0.395634,0.368239,-0.440834,1.868713,-1.511722,0.049094 +-0.386342,0.369514,-0.439701,1.867354,-1.504781,0.051567 +-0.377029,0.370736,-0.438602,1.865994,-1.497794,0.054014 +-0.367698,0.371904,-0.437537,1.864633,-1.490760,0.056433 +-0.358348,0.373019,-0.436508,1.863271,-1.483681,0.058826 +-0.348980,0.374083,-0.435514,1.861909,-1.476557,0.061193 +-0.339597,0.375094,-0.434556,1.860546,-1.469388,0.063534 +-0.330197,0.376054,-0.433636,1.859183,-1.462174,0.065849 +-0.320783,0.376964,-0.432753,1.857820,-1.454917,0.068139 +-0.311355,0.377823,-0.431908,1.856456,-1.447615,0.070405 +-0.301914,0.378633,-0.431102,1.855092,-1.440270,0.072645 +-0.292461,0.379394,-0.430336,1.853728,-1.432881,0.074862 +-0.282997,0.380107,-0.429610,1.852364,-1.425451,0.077055 +-0.273523,0.380772,-0.428925,1.851000,-1.417977,0.079225 +-0.264040,0.381389,-0.428282,1.849636,-1.410462,0.081371 +-0.254548,0.381960,-0.427680,1.848273,-1.402906,0.083495 +-0.245049,0.382484,-0.427121,1.846910,-1.395308,0.085596 +-0.235544,0.382963,-0.426606,1.845547,-1.387669,0.087675 +-0.226032,0.383397,-0.426134,1.844185,-1.379990,0.089733 +-0.216516,0.383787,-0.425708,1.842824,-1.372272,0.091769 +-0.206996,0.384133,-0.425326,1.841463,-1.364513,0.093784 +-0.197474,0.384436,-0.424990,1.840104,-1.356716,0.095778 +-0.187949,0.384697,-0.424700,1.838745,-1.348880,0.097752 +-0.178423,0.384915,-0.424458,1.837388,-1.341005,0.099706 +-0.168898,0.385093,-0.424263,1.836032,-1.333092,0.101640 +-0.159372,0.385230,-0.424116,1.834676,-1.325142,0.103554 +-0.149849,0.385327,-0.424018,1.833323,-1.317155,0.105450 +-0.140328,0.385384,-0.423969,1.831971,-1.309131,0.107326 +-0.130811,0.385403,-0.423970,1.830620,-1.301071,0.109185 +-0.121298,0.385384,-0.424021,1.829271,-1.292975,0.111025 +-0.111791,0.385328,-0.424123,1.827924,-1.284844,0.112847 +-0.102289,0.385234,-0.424277,1.826579,-1.276677,0.114651 +-0.092795,0.385105,-0.424483,1.825236,-1.268476,0.116438 +-0.083309,0.384940,-0.424742,1.823895,-1.260241,0.118209 +-0.073832,0.384741,-0.425054,1.822556,-1.251972,0.119962 +-0.064364,0.384507,-0.425419,1.821219,-1.243670,0.121699 +-0.054907,0.384240,-0.425838,1.819885,-1.235335,0.123420 +-0.045462,0.383941,-0.426313,1.818554,-1.226967,0.125125 +-0.036030,0.383609,-0.426842,1.817225,-1.218568,0.126815 +-0.026611,0.383246,-0.427427,1.815899,-1.210136,0.128489 +-0.017206,0.382852,-0.428069,1.814576,-1.201674,0.130149 +-0.007816,0.382428,-0.428767,1.813255,-1.193181,0.131793 +0.001558,0.381975,-0.429522,1.811938,-1.184658,0.133423 +0.010914,0.381494,-0.430335,1.810624,-1.176105,0.135039 +0.020253,0.380984,-0.431206,1.809314,-1.167522,0.136641 +0.029573,0.380447,-0.432135,1.808007,-1.158911,0.138229 +0.038874,0.379883,-0.433124,1.806703,-1.150271,0.139804 +0.048154,0.379294,-0.434172,1.805403,-1.141604,0.141365 +0.057413,0.378679,-0.435280,1.804107,-1.132908,0.142914 +0.066650,0.378040,-0.436448,1.802815,-1.124186,0.144450 +0.075864,0.377377,-0.437677,1.801527,-1.115437,0.145973 +0.085054,0.376691,-0.438966,1.800243,-1.106662,0.147484 +0.094220,0.375983,-0.440318,1.798963,-1.097861,0.148983 +0.103360,0.375253,-0.441731,1.797688,-1.089035,0.150470 +0.112474,0.374501,-0.443207,1.796417,-1.080184,0.151946 +0.121560,0.373730,-0.444745,1.795151,-1.071309,0.153410 +0.130619,0.372939,-0.446346,1.793890,-1.062410,0.154863 +0.139648,0.372129,-0.448011,1.792633,-1.053487,0.156304 +0.148648,0.371301,-0.449739,1.791382,-1.044542,0.157735 +0.157618,0.370455,-0.451531,1.790136,-1.035574,0.159156 +0.166557,0.369593,-0.453388,1.788895,-1.026585,0.160566 +0.175463,0.368714,-0.455310,1.787659,-1.017573,0.161966 +0.184337,0.367820,-0.457296,1.786429,-1.008541,0.163355 +0.193177,0.366912,-0.459347,1.785205,-0.999489,0.164735 +0.201982,0.365989,-0.461465,1.783986,-0.990416,0.166105 +0.210753,0.365053,-0.463648,1.782774,-0.981324,0.167466 +0.219488,0.364104,-0.465897,1.781567,-0.972213,0.168817 +0.228186,0.363143,-0.468212,1.780367,-0.963083,0.170159 +0.236846,0.362172,-0.470594,1.779173,-0.953935,0.171492 +0.245469,0.361189,-0.473043,1.777985,-0.944769,0.172816 +0.254052,0.360197,-0.475559,1.776804,-0.935587,0.174131 +0.262596,0.359195,-0.478142,1.775630,-0.926387,0.175437 +0.271099,0.358185,-0.480792,1.774462,-0.917172,0.176735 +0.279562,0.357168,-0.483510,1.773302,-0.907941,0.178025 +0.287982,0.356143,-0.486296,1.772148,-0.898695,0.179306 +0.296360,0.355111,-0.489150,1.771002,-0.889434,0.180579 +0.304695,0.354074,-0.492072,1.769864,-0.880159,0.181844 +0.312986,0.353032,-0.495063,1.768733,-0.870871,0.183101 +0.321232,0.351985,-0.498122,1.767609,-0.861569,0.184350 +0.329434,0.350935,-0.501249,1.766494,-0.852255,0.185592 +0.337589,0.349881,-0.504445,1.765386,-0.842929,0.186826 +0.345697,0.348825,-0.507710,1.764287,-0.833591,0.188052 +0.353758,0.347767,-0.511043,1.763196,-0.824241,0.189271 +0.361772,0.346708,-0.514446,1.762113,-0.814882,0.190483 +0.369737,0.345649,-0.517917,1.761039,-0.805512,0.191687 +0.377652,0.344590,-0.521458,1.759973,-0.796133,0.192884 +0.385518,0.343531,-0.525067,1.758916,-0.786744,0.194074 +0.393333,0.342474,-0.528746,1.757869,-0.777347,0.195257 +0.401098,0.341419,-0.532494,1.756830,-0.767942,0.196433 +0.408811,0.340367,-0.536311,1.755801,-0.758530,0.197602 +0.416471,0.339319,-0.540197,1.754781,-0.749110,0.198764 +0.424079,0.338274,-0.544152,1.753770,-0.739684,0.199919 +0.431633,0.337234,-0.548176,1.752769,-0.730252,0.201067 +0.439133,0.336199,-0.552270,1.751779,-0.720814,0.202209 +0.446579,0.335170,-0.556432,1.750798,-0.711372,0.203344 +0.453970,0.334147,-0.560663,1.749827,-0.701925,0.204472 +0.461305,0.333131,-0.564963,1.748866,-0.692474,0.205593 +0.468585,0.332123,-0.569332,1.747916,-0.683020,0.206708 +0.475807,0.331124,-0.573769,1.746977,-0.673563,0.207816 +0.482972,0.330133,-0.578275,1.746048,-0.664104,0.208917 +0.490080,0.329152,-0.582849,1.745130,-0.654643,0.210012 +0.497129,0.328180,-0.587492,1.744223,-0.645181,0.211100 +0.504120,0.327219,-0.592202,1.743328,-0.635717,0.212181 +0.511052,0.326270,-0.596980,1.742443,-0.626254,0.213256 +0.517924,0.325332,-0.601827,1.741570,-0.616791,0.214324 +0.524736,0.324406,-0.606740,1.740709,-0.607329,0.215385 +0.531487,0.323493,-0.611721,1.739859,-0.597868,0.216440 +0.538178,0.322593,-0.616770,1.739022,-0.588409,0.217488 +0.544807,0.321708,-0.621885,1.738196,-0.578953,0.218529 +0.551374,0.320837,-0.627066,1.737382,-0.569500,0.219564 +0.557879,0.319980,-0.632315,1.736581,-0.560050,0.220592 +0.564321,0.319140,-0.637629,1.735793,-0.550604,0.221613 +0.570700,0.318315,-0.643009,1.735017,-0.541163,0.222627 +0.577016,0.317507,-0.648455,1.734253,-0.531726,0.223634 +0.583268,0.316716,-0.653966,1.733503,-0.522296,0.224635 +0.589456,0.315942,-0.659542,1.732765,-0.512871,0.225628 +0.595579,0.315187,-0.665182,1.732041,-0.503454,0.226615 +0.601637,0.314450,-0.670887,1.731330,-0.494043,0.227594 +0.607630,0.313731,-0.676656,1.730633,-0.484641,0.228566 +0.613557,0.313033,-0.682488,1.729949,-0.475247,0.229532 +0.619419,0.312354,-0.688383,1.729279,-0.465861,0.230489 +0.625214,0.311696,-0.694342,1.728623,-0.456485,0.231440 +0.630942,0.311058,-0.700362,1.727981,-0.447119,0.232383 +0.636604,0.310442,-0.706445,1.727353,-0.437764,0.233319 +0.642198,0.309847,-0.712589,1.726740,-0.428419,0.234247 +0.647725,0.309275,-0.718794,1.726141,-0.419086,0.235168 +0.653185,0.308725,-0.725060,1.725556,-0.409765,0.236081 +0.658576,0.308198,-0.731386,1.724986,-0.400457,0.236986 +0.663899,0.307695,-0.737772,1.724431,-0.391162,0.237884 +0.669153,0.307215,-0.744217,1.723891,-0.381881,0.238774 +0.674339,0.306760,-0.750720,1.723366,-0.372614,0.239655 +0.679456,0.306329,-0.757282,1.722856,-0.363362,0.240529 +0.684504,0.305923,-0.763902,1.722362,-0.354125,0.241394 +0.689482,0.305543,-0.770579,1.721883,-0.344904,0.242252 +0.694391,0.305188,-0.777312,1.721420,-0.335699,0.243101 +0.699230,0.304859,-0.784101,1.720973,-0.326512,0.243941 +0.703999,0.304557,-0.790946,1.720541,-0.317341,0.244773 +0.708698,0.304281,-0.797846,1.720126,-0.308189,0.245597 +0.713326,0.304033,-0.804800,1.719726,-0.299056,0.246411 +0.717884,0.303812,-0.811808,1.719343,-0.289942,0.247217 +0.722371,0.303618,-0.818869,1.718976,-0.280847,0.248014 +0.726788,0.303453,-0.825982,1.718626,-0.271773,0.248802 +0.731134,0.303316,-0.833147,1.718292,-0.262719,0.249581 +0.735408,0.303208,-0.840363,1.717975,-0.253687,0.250351 +0.739612,0.303128,-0.847630,1.717675,-0.244676,0.251112 +0.743744,0.303078,-0.854947,1.717391,-0.235688,0.251863 +0.747805,0.303057,-0.862312,1.717125,-0.226723,0.252604 +0.751795,0.303066,-0.869727,1.716876,-0.217781,0.253336 +0.755713,0.303105,-0.877189,1.716644,-0.208863,0.254058 +0.759559,0.303175,-0.884698,1.716429,-0.199970,0.254771 +0.763334,0.303275,-0.892253,1.716232,-0.191102,0.255473 +0.767037,0.303405,-0.899854,1.716052,-0.182259,0.256166 +0.770668,0.303567,-0.907500,1.715890,-0.173443,0.256848 +0.774227,0.303759,-0.915190,1.715746,-0.164653,0.257520 +0.777714,0.303983,-0.922923,1.715619,-0.155890,0.258182 +0.781130,0.304239,-0.930699,1.715511,-0.147155,0.258833 +0.784474,0.304527,-0.938516,1.715420,-0.138449,0.259474 +0.787745,0.304846,-0.946375,1.715348,-0.129771,0.260104 +0.790945,0.305197,-0.954273,1.715294,-0.121122,0.260723 +0.794073,0.305581,-0.962212,1.715257,-0.112504,0.261332 +0.797129,0.305997,-0.970188,1.715240,-0.103915,0.261929 +0.800113,0.306446,-0.978202,1.715240,-0.095358,0.262515 +0.803025,0.306928,-0.986254,1.715260,-0.086832,0.263091 +0.805865,0.307442,-0.994341,1.715297,-0.078338,0.263655 +0.808633,0.307990,-1.002463,1.715354,-0.069877,0.264207 +0.811330,0.308570,-1.010620,1.715429,-0.061449,0.264749 +0.813955,0.309184,-1.018810,1.715522,-0.053054,0.265278 +0.816508,0.309831,-1.027033,1.715635,-0.044693,0.265796 +0.818990,0.310512,-1.035287,1.715766,-0.036367,0.266303 +0.821400,0.311226,-1.043572,1.715916,-0.028076,0.266797 +0.823739,0.311974,-1.051887,1.716086,-0.019821,0.267280 +0.826006,0.312755,-1.060231,1.716274,-0.011602,0.267750 +0.828202,0.313570,-1.068603,1.716481,-0.003419,0.268209 +0.830327,0.314419,-1.077002,1.716708,0.004726,0.268655 +0.832381,0.315302,-1.085427,1.716953,0.012833,0.269089 +0.834364,0.316218,-1.093877,1.717218,0.020903,0.269511 +0.836276,0.317169,-1.102352,1.717502,0.028933,0.269920 +0.838117,0.318153,-1.110850,1.717805,0.036925,0.270317 +0.839888,0.319171,-1.119370,1.718128,0.044876,0.270701 +0.841588,0.320223,-1.127912,1.718469,0.052788,0.271073 +0.843218,0.321310,-1.136474,1.718830,0.060658,0.271432 +0.844777,0.322430,-1.145055,1.719211,0.068487,0.271779 +0.846267,0.323583,-1.153655,1.719610,0.076275,0.272112 +0.847687,0.324771,-1.162272,1.720029,0.084020,0.272433 +0.849037,0.325993,-1.170906,1.720468,0.091722,0.272741 +0.850317,0.327248,-1.179555,1.720926,0.099381,0.273036 +0.851529,0.328537,-1.188219,1.721403,0.106996,0.273318 +0.852670,0.329860,-1.196896,1.721899,0.114567,0.273587 +0.853743,0.331216,-1.205585,1.722415,0.122094,0.273842 +0.854747,0.332606,-1.214286,1.722950,0.129575,0.274085 +0.855683,0.334030,-1.222997,1.723505,0.137010,0.274315 +0.856550,0.335486,-1.231717,1.724078,0.144399,0.274531 +0.857349,0.336976,-1.240446,1.724671,0.151741,0.274734 +0.858079,0.338499,-1.249181,1.725284,0.159036,0.274924 +0.858742,0.340056,-1.257923,1.725915,0.166283,0.275101 +0.859337,0.341645,-1.266670,1.726566,0.173482,0.275264 +0.859865,0.343267,-1.275422,1.727236,0.180633,0.275415 +0.860326,0.344921,-1.284176,1.727925,0.187734,0.275552 +0.860719,0.346608,-1.292932,1.728633,0.194786,0.275675 +0.861046,0.348328,-1.301689,1.729360,0.201787,0.275786 +0.861306,0.350080,-1.310445,1.730106,0.208738,0.275883 +0.861500,0.351864,-1.319201,1.730870,0.215638,0.275967 +0.861628,0.353679,-1.327954,1.731654,0.222487,0.276038 +0.861691,0.355527,-1.336704,1.732457,0.229284,0.276095 +0.861687,0.357406,-1.345449,1.733278,0.236028,0.276140 +0.861618,0.359316,-1.354188,1.734118,0.242719,0.276171 +0.861485,0.361258,-1.362921,1.734976,0.249357,0.276189 +0.861286,0.363230,-1.371647,1.735853,0.255942,0.276194 +0.861023,0.365234,-1.380363,1.736748,0.262472,0.276186 +0.860695,0.367267,-1.389070,1.737662,0.268947,0.276165 +0.860304,0.369332,-1.397765,1.738593,0.275367,0.276131 +0.859849,0.371426,-1.406449,1.739543,0.281732,0.276085 +0.859330,0.373550,-1.415119,1.740511,0.288041,0.276025 +0.858748,0.375703,-1.423775,1.741497,0.294293,0.275953 +0.858103,0.377886,-1.432416,1.742500,0.300489,0.275868 +0.857395,0.380098,-1.441040,1.743521,0.306627,0.275771 +0.856625,0.382339,-1.449647,1.744560,0.312708,0.275661 +0.855793,0.384609,-1.458236,1.745616,0.318730,0.275538 +0.854898,0.386906,-1.466804,1.746689,0.324694,0.275404 +0.853943,0.389232,-1.475352,1.747779,0.330599,0.275257 +0.852926,0.391585,-1.483878,1.748887,0.336444,0.275098 +0.851847,0.393966,-1.492382,1.750011,0.342230,0.274928 +0.850709,0.396374,-1.500861,1.751152,0.347955,0.274745 +0.849509,0.398809,-1.509315,1.752310,0.353620,0.274551 +0.848250,0.401271,-1.517743,1.753484,0.359224,0.274345 +0.846930,0.403758,-1.526143,1.754674,0.364766,0.274128 +0.845551,0.406272,-1.534516,1.755880,0.370246,0.273899 +0.844113,0.408811,-1.542859,1.757102,0.375665,0.273659 +0.842615,0.411375,-1.551171,1.758340,0.381020,0.273408 +0.841059,0.413965,-1.559452,1.759593,0.386313,0.273147 +0.839445,0.416578,-1.567701,1.760862,0.391542,0.272875 +0.837772,0.419216,-1.575916,1.762146,0.396708,0.272592 +0.836041,0.421878,-1.584096,1.763445,0.401809,0.272299 +0.834253,0.424564,-1.592240,1.764758,0.406846,0.271996 +0.832408,0.427273,-1.600348,1.766087,0.411818,0.271682 +0.830505,0.430004,-1.608418,1.767429,0.416724,0.271360 +0.828546,0.432758,-1.616449,1.768786,0.421566,0.271027 +0.826530,0.435534,-1.624440,1.770157,0.426341,0.270685 +0.824459,0.438331,-1.632390,1.771541,0.431049,0.270334 +0.822331,0.441150,-1.640298,1.772939,0.435692,0.269975 +0.820148,0.443990,-1.648163,1.774350,0.440267,0.269606 +0.817909,0.446851,-1.655984,1.775774,0.444774,0.269229 +0.815616,0.449731,-1.663760,1.777211,0.449214,0.268844 +0.813268,0.452631,-1.671490,1.778661,0.453586,0.268451 +0.810866,0.455551,-1.679173,1.780122,0.457890,0.268050 +0.808409,0.458490,-1.686808,1.781596,0.462125,0.267642 +0.805899,0.461447,-1.694394,1.783082,0.466290,0.267227 +0.803335,0.464422,-1.701930,1.784579,0.470387,0.266804 +0.800718,0.467415,-1.709415,1.786087,0.474414,0.266375 +0.798048,0.470425,-1.716848,1.787606,0.478370,0.265940 +0.795325,0.473452,-1.724228,1.789136,0.482257,0.265499 +0.792550,0.476495,-1.731554,1.790677,0.486073,0.265051 +0.789723,0.479555,-1.738826,1.792227,0.489818,0.264599 +0.786844,0.482630,-1.746041,1.793787,0.493492,0.264141 +0.783914,0.485720,-1.753200,1.795357,0.497094,0.263678 +0.780932,0.488825,-1.760302,1.796936,0.500625,0.263211 +0.777899,0.491944,-1.767344,1.798525,0.504083,0.262739 +0.774816,0.495077,-1.774328,1.800121,0.507469,0.262264 +0.771682,0.498223,-1.781250,1.801726,0.510783,0.261785 +0.768497,0.501382,-1.788112,1.803339,0.514024,0.261303 +0.765263,0.504554,-1.794912,1.804960,0.517191,0.260817 +0.761979,0.507738,-1.801648,1.806588,0.520286,0.260330 +0.758646,0.510933,-1.808321,1.808223,0.523306,0.259840 +0.755264,0.514139,-1.814928,1.809865,0.526253,0.259348 +0.751833,0.517356,-1.821471,1.811513,0.529125,0.258855 +0.748353,0.520583,-1.827946,1.813167,0.531923,0.258361 +0.744825,0.523820,-1.834355,1.814827,0.534647,0.257866 +0.741249,0.527066,-1.840695,1.816493,0.537295,0.257371 +0.737625,0.530321,-1.846967,1.818163,0.539869,0.256875 +0.733953,0.533584,-1.853168,1.819838,0.542367,0.256381 +0.730234,0.536855,-1.859299,1.821517,0.544790,0.255887 +0.726468,0.540133,-1.865359,1.823199,0.547137,0.255394 +0.722655,0.543419,-1.871347,1.824886,0.549408,0.254903 +0.718795,0.546710,-1.877262,1.826575,0.551602,0.254415 +0.714889,0.550008,-1.883103,1.828268,0.553721,0.253928 +0.710937,0.553311,-1.888870,1.829962,0.555763,0.253445 +0.706939,0.556619,-1.894562,1.831659,0.557728,0.252965 +0.702896,0.559932,-1.900178,1.833357,0.559616,0.252489 +0.698806,0.563248,-1.905717,1.835057,0.561427,0.252017 +0.694672,0.566569,-1.911180,1.836757,0.563161,0.251550 +0.690493,0.569892,-1.916564,1.838458,0.564817,0.251088 +0.686268,0.573218,-1.921870,1.840159,0.566396,0.250631 +0.682000,0.576546,-1.927096,1.841859,0.567897,0.250181 +0.677686,0.579875,-1.932243,1.843559,0.569320,0.249737 +0.673329,0.583206,-1.937309,1.845257,0.570665,0.249300 +0.668928,0.586538,-1.942294,1.846954,0.571932,0.248870 +0.664483,0.589869,-1.947198,1.848648,0.573120,0.248449 +0.659994,0.593200,-1.952019,1.850340,0.574230,0.248036 +0.655463,0.596531,-1.956757,1.852030,0.575261,0.247632 +0.650888,0.599860,-1.961411,1.853716,0.576214,0.247237 +0.646270,0.603188,-1.965981,1.855398,0.577087,0.246852 +0.641609,0.606513,-1.970467,1.857076,0.577882,0.246477 +0.636906,0.609836,-1.974867,1.858749,0.578598,0.246113 +0.632161,0.613155,-1.979182,1.860417,0.579234,0.245761 +0.627373,0.616471,-1.983410,1.862080,0.579791,0.245420 +0.622543,0.619783,-1.987552,1.863736,0.580269,0.245092 +0.617672,0.623090,-1.991606,1.865386,0.580668,0.244777 +0.612759,0.626392,-1.995573,1.867029,0.580987,0.244475 +0.607804,0.629688,-1.999452,1.868665,0.581226,0.244187 +0.602808,0.632979,-2.003242,1.870293,0.581385,0.243913 +0.597771,0.636262,-2.006942,1.871913,0.581465,0.243655 +0.592693,0.639539,-2.010554,1.873524,0.581465,0.243411 +0.587574,0.642809,-2.014075,1.875126,0.581385,0.243184 +0.582415,0.646070,-2.017506,1.876718,0.581226,0.242974 +0.577215,0.649323,-2.020847,1.878300,0.580986,0.242780 +0.571974,0.652567,-2.024096,1.879872,0.580667,0.242604 +0.566694,0.655802,-2.027254,1.881432,0.580267,0.242446 +0.561373,0.659027,-2.030321,1.882981,0.579788,0.242307 +0.556013,0.662242,-2.033295,1.884517,0.579228,0.242187 +0.550613,0.665446,-2.036177,1.886042,0.578588,0.242087 +0.545173,0.668639,-2.038966,1.887553,0.577869,0.242007 +0.539694,0.671821,-2.041663,1.889050,0.577069,0.241948 +0.534175,0.674990,-2.044266,1.890534,0.576189,0.241911 +0.528617,0.678146,-2.046776,1.892003,0.575229,0.241895 +0.523021,0.681290,-2.049192,1.893457,0.574189,0.241902 +0.517385,0.684420,-2.051514,1.894896,0.573069,0.241932 +0.511710,0.687537,-2.053742,1.896318,0.571870,0.241985 +0.505997,0.690639,-2.055875,1.897725,0.570590,0.242063 +0.500245,0.693726,-2.057914,1.899114,0.569230,0.242165 +0.494455,0.696798,-2.059859,1.900486,0.567790,0.242292 +0.488626,0.699855,-2.061709,1.901840,0.566271,0.242446 +0.482759,0.702895,-2.063463,1.903175,0.564672,0.242625 +0.476854,0.705919,-2.065123,1.904492,0.562993,0.242832 +0.470911,0.708926,-2.066687,1.905789,0.561235,0.243065 +0.464931,0.711916,-2.068156,1.907066,0.559397,0.243327 +0.458912,0.714888,-2.069530,1.908323,0.557479,0.243618 +0.452856,0.717841,-2.070809,1.909558,0.555483,0.243937 +0.446762,0.720776,-2.071991,1.910773,0.553406,0.244286 +0.440630,0.723692,-2.073079,1.911965,0.551251,0.244666 +0.434462,0.726589,-2.074071,1.913135,0.549017,0.245076 +0.428256,0.729466,-2.074967,1.914282,0.546703,0.245517 +0.422012,0.732322,-2.075768,1.915405,0.544311,0.245990 +0.415732,0.735158,-2.076473,1.916504,0.541840,0.246495 +0.409415,0.737973,-2.077083,1.917579,0.539290,0.247034 +0.403061,0.740766,-2.077598,1.918629,0.536662,0.247605 +0.396670,0.743538,-2.078017,1.919654,0.533956,0.248211 +0.390242,0.746287,-2.078341,1.920652,0.531171,0.248851 +0.383777,0.749014,-2.078570,1.921624,0.528308,0.249527 +0.377276,0.751718,-2.078704,1.922569,0.525368,0.250238 +0.370739,0.754398,-2.078743,1.923486,0.522349,0.250984 +0.364165,0.757055,-2.078687,1.924376,0.519253,0.251768 +0.357555,0.759688,-2.078537,1.925237,0.516080,0.252589 +0.350909,0.762296,-2.078292,1.926069,0.512830,0.253447 +0.344226,0.764880,-2.077953,1.926871,0.509502,0.254344 +0.337507,0.767438,-2.077520,1.927643,0.506097,0.255279 +0.330753,0.769971,-2.076993,1.928385,0.502616,0.256253 +0.323962,0.772477,-2.076373,1.929096,0.499059,0.257268 +0.317136,0.774958,-2.075659,1.929775,0.495425,0.258322 +0.310274,0.777412,-2.074852,1.930423,0.491715,0.259417 +0.303376,0.779839,-2.073953,1.931037,0.487929,0.260553 +0.296443,0.782239,-2.072961,1.931619,0.484068,0.261731 +0.289474,0.784612,-2.071877,1.932167,0.480132,0.262951 +0.282469,0.786956,-2.070700,1.932682,0.476120,0.264214 +0.275430,0.789273,-2.069433,1.933162,0.472033,0.265520 +0.268354,0.791561,-2.068074,1.933607,0.467872,0.266870 +0.261244,0.793820,-2.066624,1.934016,0.463636,0.268263 +0.254099,0.796049,-2.065084,1.934390,0.459327,0.269701 +0.246918,0.798250,-2.063454,1.934727,0.454943,0.271184 +0.239702,0.800421,-2.061734,1.935027,0.450486,0.272713 +0.232452,0.802561,-2.059925,1.935290,0.445956,0.274287 +0.225167,0.804672,-2.058027,1.935516,0.441352,0.275908 +0.217846,0.806751,-2.056040,1.935702,0.436676,0.277576 +0.210492,0.808800,-2.053966,1.935851,0.431927,0.279290 +0.203102,0.810818,-2.051804,1.935960,0.427106,0.281053 +0.195678,0.812804,-2.049556,1.936029,0.422214,0.282863 +0.188220,0.814759,-2.047220,1.936058,0.417249,0.284722 +0.180727,0.816681,-2.044799,1.936046,0.412214,0.286629 +0.173200,0.818572,-2.042292,1.935994,0.407108,0.288586 +0.165638,0.820430,-2.039701,1.935900,0.401931,0.290593 +0.158043,0.822255,-2.037025,1.935764,0.396684,0.292649 +0.150413,0.824047,-2.034265,1.935586,0.391367,0.294756 +0.142750,0.825806,-2.031422,1.935364,0.385980,0.296914 +0.135053,0.827531,-2.028496,1.935100,0.380524,0.299122 +0.127321,0.829223,-2.025489,1.934792,0.374999,0.301382 +0.119557,0.830881,-2.022399,1.934440,0.369406,0.303694 +0.111758,0.832505,-2.019229,1.934043,0.363745,0.306059 +0.103926,0.834094,-2.015979,1.933601,0.358016,0.308475 +0.096061,0.835649,-2.012649,1.933114,0.352219,0.310944 +0.088163,0.837169,-2.009241,1.932581,0.346356,0.313467 +0.080231,0.838654,-2.005754,1.932002,0.340426,0.316043 +0.072266,0.840104,-2.002189,1.931376,0.334429,0.318672 +0.064268,0.841518,-1.998548,1.930703,0.328367,0.321356 +0.056238,0.842897,-1.994831,1.929982,0.322239,0.324094 +0.048174,0.844241,-1.991038,1.929214,0.316047,0.326886 +0.040078,0.845548,-1.987170,1.928398,0.309789,0.329734 +0.031950,0.846819,-1.983229,1.927533,0.303468,0.332636 +0.023789,0.848054,-1.979214,1.926619,0.297082,0.335594 +0.015595,0.849252,-1.975127,1.925656,0.290633,0.338607 +0.007370,0.850414,-1.970968,1.924643,0.284122,0.341676 +-0.000887,0.851539,-1.966739,1.923580,0.277547,0.344800 +-0.009177,0.852628,-1.962439,1.922466,0.270911,0.347982 +-0.017498,0.853679,-1.958069,1.921302,0.264213,0.351219 +-0.025850,0.854693,-1.953632,1.920086,0.257454,0.354513 +-0.034235,0.855670,-1.949126,1.918819,0.250634,0.357864 +-0.042650,0.856609,-1.944554,1.917500,0.243754,0.361271 +-0.051097,0.857510,-1.939916,1.916129,0.236814,0.364736 +-0.059574,0.858374,-1.935212,1.914706,0.229815,0.368258 +-0.068083,0.859200,-1.930445,1.913229,0.222757,0.371837 +-0.076622,0.859989,-1.925613,1.911700,0.215640,0.375474 +-0.085192,0.860739,-1.920720,1.910117,0.208466,0.379168 +-0.093792,0.861451,-1.915764,1.908480,0.201234,0.382920 +-0.102422,0.862124,-1.910748,1.906790,0.193945,0.386730 +-0.111083,0.862759,-1.905672,1.905044,0.186600,0.390598 +-0.119773,0.863356,-1.900536,1.903245,0.179198,0.394523 +-0.128493,0.863915,-1.895343,1.901390,0.171742,0.398507 +-0.137242,0.864434,-1.890093,1.899480,0.164230,0.402549 +-0.146021,0.864915,-1.884786,1.897515,0.156664,0.406648 +-0.154828,0.865358,-1.879424,1.895493,0.149044,0.410806 +-0.163665,0.865761,-1.874008,1.893416,0.141371,0.415022 +-0.172530,0.866126,-1.868538,1.891283,0.133645,0.419296 +-0.181423,0.866451,-1.863016,1.889093,0.125866,0.423628 +-0.190345,0.866738,-1.857443,1.886846,0.118036,0.428018 +-0.199295,0.866985,-1.851819,1.884543,0.110154,0.432466 +-0.208272,0.867194,-1.846145,1.882182,0.102222,0.436972 +-0.217278,0.867363,-1.840423,1.879764,0.094239,0.441536 +-0.226310,0.867493,-1.834653,1.877288,0.086207,0.446158 +-0.235369,0.867584,-1.828837,1.874754,0.078126,0.450838 +-0.244455,0.867636,-1.822976,1.872162,0.069996,0.455576 +-0.253568,0.867648,-1.817070,1.869512,0.061818,0.460371 +-0.262707,0.867621,-1.811120,1.866804,0.053593,0.465223 +-0.271872,0.867555,-1.805128,1.864037,0.045321,0.470133 +-0.281063,0.867449,-1.799094,1.861211,0.037003,0.475101 +-0.290279,0.867304,-1.793020,1.858327,0.028638,0.480125 +-0.299521,0.867120,-1.786907,1.855383,0.020229,0.485206 +-0.308787,0.866897,-1.780755,1.852380,0.011775,0.490344 +-0.318078,0.866634,-1.774566,1.849318,0.003277,0.495538 +-0.327393,0.866332,-1.768341,1.846196,-0.005264,0.500789 +-0.336732,0.865990,-1.762081,1.843014,-0.013848,0.506096 +-0.346095,0.865610,-1.755786,1.839773,-0.022474,0.511459 +-0.355481,0.865190,-1.749458,1.836472,-0.031142,0.516877 +-0.364890,0.864731,-1.743099,1.833111,-0.039851,0.522351 +-0.374322,0.864232,-1.736708,1.829689,-0.048600,0.527880 +-0.383776,0.863695,-1.730288,1.826208,-0.057390,0.533463 +-0.393253,0.863118,-1.723838,1.822666,-0.066218,0.539102 +-0.402751,0.862503,-1.717361,1.819064,-0.075085,0.544794 +-0.412270,0.861848,-1.710857,1.815402,-0.083990,0.550541 +-0.421810,0.861154,-1.704328,1.811679,-0.092933,0.556341 +-0.431371,0.860422,-1.697774,1.807896,-0.101912,0.562194 +-0.440952,0.859650,-1.691197,1.804052,-0.110928,0.568101 +-0.450553,0.858840,-1.684597,1.800148,-0.119979,0.574059 +-0.460173,0.857991,-1.677976,1.796182,-0.129065,0.580071 +-0.469812,0.857103,-1.671335,1.792157,-0.138185,0.586133 +-0.479470,0.856177,-1.664675,1.788070,-0.147339,0.592248 +-0.489146,0.855212,-1.657997,1.783923,-0.156526,0.598413 +-0.498840,0.854209,-1.651302,1.779715,-0.165745,0.604628 +-0.508552,0.853167,-1.644591,1.775447,-0.174997,0.610894 +-0.518280,0.852087,-1.637865,1.771118,-0.184279,0.617210 +-0.528025,0.850969,-1.631126,1.766728,-0.193592,0.623574 +-0.537786,0.849813,-1.624374,1.762278,-0.202935,0.629987 +-0.547563,0.848619,-1.617611,1.757767,-0.212307,0.636449 +-0.557355,0.847387,-1.610837,1.753196,-0.221708,0.642958 +-0.567161,0.846117,-1.604054,1.748564,-0.231136,0.649514 +-0.576982,0.844809,-1.597263,1.743872,-0.240592,0.656117 +-0.586817,0.843464,-1.590465,1.739120,-0.250075,0.662766 +-0.596665,0.842081,-1.583660,1.734308,-0.259583,0.669461 +-0.606525,0.840661,-1.576851,1.729435,-0.269117,0.676200 +-0.616398,0.839204,-1.570038,1.724502,-0.278676,0.682984 +-0.626283,0.837710,-1.563222,1.719510,-0.288259,0.689812 +-0.636179,0.836179,-1.556404,1.714457,-0.297865,0.696683 +-0.646086,0.834611,-1.549586,1.709345,-0.307494,0.703597 +-0.656004,0.833006,-1.542768,1.704174,-0.317145,0.710552 +-0.665931,0.831364,-1.535952,1.698943,-0.326817,0.717549 +-0.675867,0.829686,-1.529138,1.693652,-0.336510,0.724587 +-0.685812,0.827972,-1.522327,1.688303,-0.346224,0.731664 +-0.695765,0.826222,-1.515522,1.682895,-0.355957,0.738781 +-0.705725,0.824435,-1.508722,1.677427,-0.365708,0.745937 +-0.715693,0.822613,-1.501929,1.671902,-0.375478,0.753130 +-0.725667,0.820755,-1.495144,1.666318,-0.385266,0.760361 +-0.735647,0.818862,-1.488368,1.660675,-0.395070,0.767628 +-0.745632,0.816933,-1.481602,1.654975,-0.404890,0.774931 +-0.755622,0.814969,-1.474846,1.649217,-0.414726,0.782269 +-0.765616,0.812970,-1.468103,1.643401,-0.424577,0.789641 +-0.775613,0.810936,-1.461373,1.637528,-0.434442,0.797047 +-0.785614,0.808867,-1.454657,1.631597,-0.444320,0.804485 +-0.795616,0.806763,-1.447956,1.625610,-0.454211,0.811956 +-0.805621,0.804625,-1.441271,1.619566,-0.464115,0.819458 +-0.815626,0.802453,-1.434603,1.613466,-0.474030,0.826990 +-0.825632,0.800247,-1.427953,1.607310,-0.483956,0.834551 +-0.835637,0.798007,-1.421323,1.601098,-0.493892,0.842141 +-0.845642,0.795734,-1.414712,1.594830,-0.503838,0.849759 +-0.855645,0.793426,-1.408123,1.588507,-0.513792,0.857404 +-0.865646,0.791086,-1.401556,1.582129,-0.523755,0.865076 +-0.875643,0.788712,-1.395012,1.575696,-0.533725,0.872772 +-0.885638,0.786306,-1.388491,1.569209,-0.543703,0.880493 +-0.895628,0.783867,-1.381996,1.562668,-0.553686,0.888237 +-0.905613,0.781395,-1.375527,1.556074,-0.563675,0.896004 +-0.915593,0.778891,-1.369085,1.549425,-0.573669,0.903793 +-0.925567,0.776354,-1.362670,1.542724,-0.583668,0.911602 +-0.935533,0.773786,-1.356285,1.535970,-0.593670,0.919432 +-0.945492,0.771186,-1.349928,1.529164,-0.603674,0.927280 +-0.955442,0.768555,-1.343603,1.522306,-0.613682,0.935146 +-0.965384,0.765892,-1.337309,1.515396,-0.623691,0.943029 +-0.975315,0.763198,-1.331048,1.508435,-0.633700,0.950928 +-0.985236,0.760473,-1.324820,1.501423,-0.643711,0.958842 +-0.995146,0.757718,-1.318626,1.494361,-0.653721,0.966770 +-1.005044,0.754932,-1.312467,1.487248,-0.663730,0.974712 +-1.014929,0.752116,-1.306344,1.480086,-0.673737,0.982665 +-1.024800,0.749269,-1.300258,1.472875,-0.683742,0.990630 +-1.034657,0.746393,-1.294210,1.465615,-0.693745,0.998604 +-1.044499,0.743488,-1.288200,1.458307,-0.703743,1.006588 +-1.054326,0.740553,-1.282230,1.450950,-0.713738,1.014580 +-1.064136,0.737589,-1.276300,1.443546,-0.723728,1.022578 +-1.073928,0.734596,-1.270410,1.436095,-0.733712,1.030583 +-1.083703,0.731574,-1.264563,1.428598,-0.743691,1.038593 +-1.093458,0.728524,-1.258759,1.421054,-0.753662,1.046606 +-1.103194,0.725445,-1.252997,1.413465,-0.763627,1.054622 +-1.112910,0.722339,-1.247280,1.405830,-0.773583,1.062640 +-1.122604,0.719205,-1.241608,1.398151,-0.783531,1.070659 +-1.132276,0.716043,-1.235982,1.390427,-0.793469,1.078677 +-1.141926,0.712854,-1.230402,1.382660,-0.803398,1.086693 +-1.151552,0.709638,-1.224870,1.374849,-0.813316,1.094707 +-1.161153,0.706396,-1.219385,1.366996,-0.823223,1.102717 +-1.170729,0.703126,-1.213949,1.359101,-0.833119,1.110723 +-1.180280,0.699831,-1.208563,1.351163,-0.843002,1.118722 +-1.189803,0.696509,-1.203227,1.343185,-0.852872,1.126715 +-1.199299,0.693162,-1.197941,1.335166,-0.862729,1.134699 +-1.208766,0.689789,-1.192707,1.327107,-0.872572,1.142674 +-1.218204,0.686391,-1.187525,1.319008,-0.882400,1.150639 +-1.227611,0.682967,-1.182396,1.310870,-0.892213,1.158592 +-1.236988,0.679519,-1.177321,1.302694,-0.902009,1.166532 +-1.246333,0.676046,-1.172299,1.294480,-0.911790,1.174459 +-1.255645,0.672549,-1.167333,1.286228,-0.921553,1.182371 +-1.264924,0.669028,-1.162421,1.277940,-0.931299,1.190266 +-1.274168,0.665483,-1.157566,1.269615,-0.941026,1.198145 +-1.283378,0.661915,-1.152767,1.261255,-0.950734,1.206005 +-1.292551,0.658323,-1.148025,1.252859,-0.960423,1.213845 +-1.301688,0.654708,-1.143341,1.244429,-0.970092,1.221665 +-1.310786,0.651071,-1.138715,1.235965,-0.979741,1.229463 +-1.319847,0.647411,-1.134148,1.227468,-0.989368,1.237238 +-1.328867,0.643729,-1.129641,1.218939,-0.998974,1.244988 +-1.337848,0.640024,-1.125193,1.210377,-1.008557,1.252714 +-1.346787,0.636299,-1.120805,1.201783,-1.018118,1.260413 +-1.355685,0.632551,-1.116479,1.193159,-1.027655,1.268084 +-1.364540,0.628783,-1.112214,1.184504,-1.037169,1.275726 +-1.373351,0.624993,-1.108010,1.175820,-1.046658,1.283339 +-1.382118,0.621183,-1.103869,1.167107,-1.056122,1.290920 +-1.390839,0.617353,-1.099791,1.158365,-1.065560,1.298469 +-1.399514,0.613502,-1.095776,1.149596,-1.074973,1.305985 +-1.408142,0.609632,-1.091825,1.140799,-1.084359,1.313465 +-1.416722,0.605742,-1.087937,1.131976,-1.093718,1.320910 +-1.425253,0.601833,-1.084114,1.123127,-1.103049,1.328318 +-1.433735,0.597905,-1.080356,1.114253,-1.112352,1.335688 +-1.442166,0.593958,-1.076663,1.105355,-1.121627,1.343018 +-1.450546,0.589992,-1.073036,1.096432,-1.130872,1.350308 +-1.458874,0.586009,-1.069474,1.087486,-1.140088,1.357557 +-1.467149,0.582007,-1.065979,1.078518,-1.149273,1.364762 +-1.475370,0.577988,-1.062551,1.069528,-1.158428,1.371924 +-1.483536,0.573952,-1.059189,1.060517,-1.167552,1.379040 +-1.491647,0.569898,-1.055895,1.051485,-1.176644,1.386110 +-1.499701,0.565828,-1.052668,1.042433,-1.185704,1.393133 +-1.507698,0.561741,-1.049509,1.033361,-1.194732,1.400107 +-1.515637,0.557638,-1.046418,1.024272,-1.203727,1.407032 +-1.523517,0.553519,-1.043396,1.015164,-1.212688,1.413905 +-1.531338,0.549384,-1.040441,1.006039,-1.221615,1.420727 +-1.539097,0.545234,-1.037556,0.996898,-1.230507,1.427495 +-1.546796,0.541069,-1.034740,0.987741,-1.239365,1.434209 +-1.554432,0.536889,-1.031993,0.978568,-1.248188,1.440868 +-1.562005,0.532694,-1.029315,0.969381,-1.256975,1.447470 +-1.569515,0.528486,-1.026707,0.960181,-1.265725,1.454015 +-1.576959,0.524263,-1.024169,0.950967,-1.274439,1.460501 +-1.584339,0.520027,-1.021701,0.941741,-1.283116,1.466927 +-1.591652,0.515777,-1.019302,0.932503,-1.291756,1.473292 +-1.598898,0.511514,-1.016974,0.923254,-1.300358,1.479595 +-1.606076,0.507239,-1.014716,0.913995,-1.308921,1.485835 +-1.613185,0.502951,-1.012529,0.904726,-1.317446,1.492011 +-1.620225,0.498650,-1.010412,0.895448,-1.325931,1.498122 +-1.627194,0.494338,-1.008366,0.886162,-1.334378,1.504166 +-1.634093,0.490014,-1.006390,0.876868,-1.342784,1.510142 +-1.640920,0.485679,-1.004485,0.867568,-1.351150,1.516051 +-1.647674,0.481333,-1.002651,0.858261,-1.359476,1.521889 +-1.654355,0.476976,-1.000887,0.848949,-1.367760,1.527658 +-1.660962,0.472609,-0.999195,0.839632,-1.376003,1.533354 +-1.667494,0.468231,-0.997573,0.830311,-1.384204,1.538978 +-1.673950,0.463844,-0.996022,0.820986,-1.392364,1.544529 +-1.680330,0.459447,-0.994541,0.811659,-1.400481,1.550004 +-1.686633,0.455040,-0.993132,0.802330,-1.408555,1.555404 +-1.692859,0.450625,-0.991793,0.792999,-1.416586,1.560728 +-1.699005,0.446202,-0.990524,0.783668,-1.424573,1.565974 +-1.705073,0.441769,-0.989327,0.774337,-1.432517,1.571141 +-1.711060,0.437329,-0.988200,0.765007,-1.440417,1.576229 +-1.716967,0.432881,-0.987143,0.755678,-1.448272,1.581236 +-1.722793,0.428426,-0.986156,0.746351,-1.456083,1.586161 +-1.728536,0.423963,-0.985240,0.737028,-1.463848,1.591005 +-1.734197,0.419494,-0.984394,0.727707,-1.471569,1.595765 +-1.739775,0.415018,-0.983617,0.718391,-1.479243,1.600441 +-1.745268,0.410536,-0.982911,0.709080,-1.486872,1.605031 +-1.750677,0.406048,-0.982274,0.699774,-1.494455,1.609536 +-1.756001,0.401554,-0.981706,0.690475,-1.501991,1.613953 +-1.761238,0.397055,-0.981208,0.681183,-1.509480,1.618283 +-1.766389,0.392551,-0.980779,0.671898,-1.516923,1.622525 +-1.771453,0.388042,-0.980419,0.662621,-1.524318,1.626676 +-1.776428,0.383529,-0.980127,0.653353,-1.531666,1.630738 +-1.781316,0.379012,-0.979904,0.644095,-1.538966,1.634708 +-1.786114,0.374491,-0.979749,0.634848,-1.546218,1.638587 +-1.790823,0.369967,-0.979662,0.625611,-1.553422,1.642372 +-1.795441,0.365439,-0.979642,0.616385,-1.560578,1.646064 +-1.799969,0.360909,-0.979690,0.607172,-1.567684,1.649662 +-1.804406,0.356376,-0.979805,0.597972,-1.574742,1.653165 +-1.808750,0.351841,-0.979987,0.588786,-1.581751,1.656572 +-1.813002,0.347305,-0.980235,0.579613,-1.588711,1.659882 +-1.817162,0.342766,-0.980550,0.570456,-1.595621,1.663095 +-1.821227,0.338226,-0.980930,0.561314,-1.602482,1.666210 +-1.825199,0.333686,-0.981376,0.552188,-1.609292,1.669226 +-1.829077,0.329145,-0.981887,0.543079,-1.616053,1.672143 +-1.832859,0.324603,-0.982463,0.533987,-1.622764,1.674960 +-1.836546,0.320062,-0.983103,0.524913,-1.629424,1.677677 +-1.840137,0.315521,-0.983808,0.515858,-1.636034,1.680292 +-1.843632,0.310981,-0.984576,0.506822,-1.642593,1.682805 +-1.847030,0.306441,-0.985407,0.497806,-1.649101,1.685215 +-1.850331,0.301903,-0.986302,0.488811,-1.655558,1.687523 +-1.853534,0.297367,-0.987258,0.479836,-1.661964,1.689727 +-1.856640,0.292833,-0.988277,0.470884,-1.668319,1.691826 +-1.859647,0.288301,-0.989358,0.461953,-1.674623,1.693821 +-1.862555,0.283772,-0.990500,0.453045,-1.680875,1.695710 +-1.865364,0.279245,-0.991702,0.444161,-1.687076,1.697494 +-1.868073,0.274722,-0.992965,0.435301,-1.693225,1.699171 +-1.870682,0.270203,-0.994288,0.426465,-1.699323,1.700741 +-1.873192,0.265687,-0.995670,0.417655,-1.705368,1.702204 +-1.875601,0.261176,-0.997110,0.408870,-1.711362,1.703559 +-1.877909,0.256670,-0.998610,0.400111,-1.717303,1.704806 +-1.880116,0.252168,-1.000167,0.391380,-1.723193,1.705945 +-1.882221,0.247672,-1.001781,0.382676,-1.729030,1.706974 +-1.884225,0.243181,-1.003452,0.373999,-1.734815,1.707895 +-1.886127,0.238697,-1.005180,0.365351,-1.740548,1.708705 +-1.887926,0.234218,-1.006963,0.356733,-1.746229,1.709405 +-1.889624,0.229747,-1.008801,0.348143,-1.751857,1.709995 +-1.891218,0.225282,-1.010695,0.339584,-1.757433,1.710474 +-1.892710,0.220825,-1.012642,0.331055,-1.762957,1.710842 +-1.894099,0.216375,-1.014643,0.322558,-1.768428,1.711099 +-1.895385,0.211934,-1.016696,0.314092,-1.773846,1.711244 +-1.896567,0.207500,-1.018803,0.305657,-1.779212,1.711277 +-1.897646,0.203076,-1.020961,0.297256,-1.784526,1.711198 +-1.898621,0.198660,-1.023170,0.288888,-1.789787,1.711007 +-1.899493,0.194254,-1.025430,0.280553,-1.794996,1.710703 +-1.900260,0.189858,-1.027740,0.272252,-1.800153,1.710287 +-1.900924,0.185472,-1.030099,0.263985,-1.805257,1.709758 +-1.901483,0.181096,-1.032507,0.255753,-1.810308,1.709116 +-1.901939,0.176731,-1.034963,0.247557,-1.815307,1.708361 +-1.902290,0.172377,-1.037467,0.239396,-1.820254,1.707493 +-1.902538,0.168035,-1.040018,0.231272,-1.825149,1.706512 +-1.902681,0.163704,-1.042615,0.223184,-1.829991,1.705417 +-1.902719,0.159386,-1.045257,0.215134,-1.834781,1.704209 +-1.902654,0.155080,-1.047945,0.207120,-1.839519,1.702887 +-1.902484,0.150787,-1.050677,0.199145,-1.844205,1.701452 +-1.902211,0.146508,-1.053452,0.191208,-1.848839,1.699904 +-1.901833,0.142242,-1.056270,0.183310,-1.853421,1.698242 +-1.901351,0.137990,-1.059131,0.175450,-1.857951,1.696467 +-1.900766,0.133753,-1.062033,0.167630,-1.862430,1.694579 +-1.900076,0.129530,-1.064976,0.159850,-1.866856,1.692577 +-1.899283,0.125322,-1.067960,0.152110,-1.871232,1.690463 +-1.898386,0.121130,-1.070982,0.144411,-1.875555,1.688235 +-1.897386,0.116953,-1.074044,0.136752,-1.879828,1.685895 +-1.896282,0.112793,-1.077144,0.129134,-1.884049,1.683442 +-1.895075,0.108649,-1.080281,0.121558,-1.888219,1.680877 +-1.893766,0.104522,-1.083455,0.114024,-1.892338,1.678199 +-1.892353,0.100413,-1.086665,0.106532,-1.896406,1.675409 +-1.890838,0.096321,-1.089910,0.099082,-1.900424,1.672507 +-1.889221,0.092247,-1.093190,0.091675,-1.904391,1.669494 +-1.887502,0.088191,-1.096504,0.084312,-1.908308,1.666370 +-1.885681,0.084154,-1.099851,0.076991,-1.912174,1.663134 +-1.883758,0.080137,-1.103230,0.069714,-1.915990,1.659788 +-1.881735,0.076139,-1.106641,0.062481,-1.919756,1.656331 +-1.879610,0.072160,-1.110082,0.055292,-1.923473,1.652764 +-1.877385,0.068202,-1.113554,0.048147,-1.927139,1.649088 +-1.875060,0.064265,-1.117056,0.041047,-1.930757,1.645302 +-1.872634,0.060348,-1.120586,0.033991,-1.934325,1.641407 +-1.870110,0.056453,-1.124144,0.026981,-1.937844,1.637404 +-1.867486,0.052580,-1.127729,0.020016,-1.941314,1.633293 +-1.864763,0.048729,-1.131340,0.013096,-1.944736,1.629074 +-1.861942,0.044900,-1.134978,0.006222,-1.948109,1.624748 +-1.859024,0.041094,-1.138640,-0.000606,-1.951433,1.620316 +-1.856007,0.037311,-1.142326,-0.007388,-1.954710,1.615777 +-1.852894,0.033553,-1.146036,-0.014124,-1.957939,1.611133 +-1.849684,0.029818,-1.149768,-0.020814,-1.961120,1.606384 +-1.846379,0.026107,-1.153523,-0.027457,-1.964254,1.601530 +-1.842977,0.022422,-1.157298,-0.034054,-1.967341,1.596572 +-1.839481,0.018761,-1.161094,-0.040604,-1.970380,1.591512 +-1.835891,0.015126,-1.164910,-0.047106,-1.973373,1.586348 +-1.832206,0.011517,-1.168744,-0.053562,-1.976320,1.581083 +-1.828428,0.007935,-1.172597,-0.059971,-1.979220,1.575716 +-1.824557,0.004379,-1.176467,-0.066333,-1.982075,1.570248 +-1.820594,0.000850,-1.180353,-0.072647,-1.984883,1.564681 +-1.816540,-0.002651,-1.184255,-0.078914,-1.987647,1.559014 +-1.812394,-0.006124,-1.188173,-0.085133,-1.990365,1.553249 +-1.808159,-0.009570,-1.192104,-0.091305,-1.993038,1.547386 +-1.803833,-0.012986,-1.196049,-0.097429,-1.995666,1.541426 +-1.799419,-0.016373,-1.200007,-0.103506,-1.998250,1.535369 +-1.794916,-0.019731,-1.203977,-0.109535,-2.000791,1.529218 +-1.790326,-0.023059,-1.207958,-0.115516,-2.003287,1.522971 +-1.785649,-0.026357,-1.211950,-0.121450,-2.005739,1.516631 +-1.780885,-0.029624,-1.215951,-0.127335,-2.008149,1.510198 +-1.776036,-0.032860,-1.219961,-0.133173,-2.010516,1.503672 +-1.771102,-0.036065,-1.223980,-0.138964,-2.012839,1.497056 +-1.766085,-0.039238,-1.228005,-0.144706,-2.015121,1.490349 +-1.760984,-0.042379,-1.232038,-0.150401,-2.017361,1.483553 +-1.755801,-0.045487,-1.236076,-0.156048,-2.019558,1.476668 +-1.750536,-0.048562,-1.240120,-0.161648,-2.021715,1.469696 +-1.745190,-0.051604,-1.244168,-0.167200,-2.023830,1.462637 +-1.739764,-0.054612,-1.248220,-0.172704,-2.025904,1.455493 +-1.734260,-0.057586,-1.252274,-0.178161,-2.027938,1.448264 +-1.728677,-0.060525,-1.256331,-0.183571,-2.029932,1.440951 +-1.723016,-0.063429,-1.260389,-0.188933,-2.031886,1.433556 +-1.717279,-0.066298,-1.264448,-0.194248,-2.033801,1.426079 +-1.711467,-0.069131,-1.268507,-0.199516,-2.035676,1.418522 +-1.705580,-0.071929,-1.272565,-0.204737,-2.037513,1.410885 +-1.699618,-0.074689,-1.276622,-0.209911,-2.039311,1.403171 +-1.693585,-0.077413,-1.280676,-0.215038,-2.041071,1.395378 +-1.687479,-0.080099,-1.284728,-0.220119,-2.042793,1.387510 +-1.681302,-0.082748,-1.288776,-0.225153,-2.044477,1.379567 +-1.675055,-0.085359,-1.292819,-0.230141,-2.046125,1.371550 +-1.668739,-0.087931,-1.296857,-0.235082,-2.047736,1.363460 +-1.662355,-0.090464,-1.300889,-0.239978,-2.049310,1.355299 +-1.655903,-0.092958,-1.304915,-0.244827,-2.050848,1.347067 +-1.649386,-0.095412,-1.308934,-0.249631,-2.052351,1.338767 +-1.642804,-0.097826,-1.312944,-0.254390,-2.053818,1.330398 +-1.636158,-0.100200,-1.316946,-0.259103,-2.055250,1.321963 +-1.629449,-0.102533,-1.320939,-0.263771,-2.056648,1.313462 +-1.622677,-0.104825,-1.324921,-0.268395,-2.058011,1.304896 +-1.615845,-0.107075,-1.328893,-0.272973,-2.059340,1.296268 +-1.608954,-0.109283,-1.332853,-0.277508,-2.060636,1.287578 +-1.602003,-0.111449,-1.336801,-0.281998,-2.061899,1.278828 +-1.594995,-0.113572,-1.340736,-0.286444,-2.063129,1.270019 +-1.587930,-0.115652,-1.344658,-0.290847,-2.064326,1.261151 +-1.580810,-0.117688,-1.348566,-0.295206,-2.065492,1.252227 +-1.573636,-0.119680,-1.352459,-0.299522,-2.066626,1.243248 +-1.566408,-0.121628,-1.356336,-0.303795,-2.067728,1.234215 +-1.559129,-0.123532,-1.360197,-0.308025,-2.068800,1.225129 +-1.551799,-0.125390,-1.364042,-0.312214,-2.069841,1.215993 +-1.544419,-0.127203,-1.367869,-0.316360,-2.070852,1.206806 +-1.536990,-0.128970,-1.371678,-0.320464,-2.071833,1.197571 +-1.529514,-0.130691,-1.375468,-0.324527,-2.072785,1.188289 +-1.521992,-0.132365,-1.379239,-0.328550,-2.073708,1.178961 +-1.514425,-0.133993,-1.382990,-0.332531,-2.074602,1.169589 +-1.506813,-0.135573,-1.386720,-0.336472,-2.075468,1.160174 +-1.499160,-0.137105,-1.390429,-0.340373,-2.076307,1.150718 +-1.491465,-0.138589,-1.394116,-0.344234,-2.077117,1.141222 +-1.483730,-0.140025,-1.397781,-0.348056,-2.077901,1.131687 +-1.475955,-0.141412,-1.401423,-0.351838,-2.078658,1.122115 +-1.468143,-0.142750,-1.405041,-0.355583,-2.079389,1.112507 +-1.460295,-0.144038,-1.408635,-0.359288,-2.080094,1.102865 +-1.452411,-0.145277,-1.412204,-0.362956,-2.080773,1.093191 +-1.444494,-0.146465,-1.415747,-0.366587,-2.081427,1.083485 +-1.436543,-0.147602,-1.419265,-0.370180,-2.082057,1.073749 +-1.428561,-0.148689,-1.422756,-0.373737,-2.082662,1.063985 +-1.420549,-0.149724,-1.426220,-0.377257,-2.083243,1.054194 +-1.412508,-0.150708,-1.429657,-0.380742,-2.083801,1.044378 +-1.404439,-0.151640,-1.433065,-0.384191,-2.084335,1.034538 +-1.396344,-0.152519,-1.436444,-0.387604,-2.084847,1.024676 +-1.388223,-0.153346,-1.439794,-0.390984,-2.085336,1.014793 +-1.380079,-0.154119,-1.443115,-0.394329,-2.085804,1.004890 +-1.371912,-0.154839,-1.446404,-0.397640,-2.086249,0.994970 +-1.363724,-0.155505,-1.449663,-0.400918,-2.086674,0.985034 +-1.355516,-0.156118,-1.452891,-0.404162,-2.087078,0.975083 +-1.347290,-0.156676,-1.456087,-0.407375,-2.087461,0.965119 +-1.339046,-0.157179,-1.459250,-0.410556,-2.087824,0.955143 +-1.330786,-0.157627,-1.462380,-0.413705,-2.088168,0.945157 +-1.322511,-0.158020,-1.465477,-0.416822,-2.088492,0.935163 +-1.314223,-0.158357,-1.468540,-0.419910,-2.088797,0.925162 +-1.305923,-0.158638,-1.471568,-0.422967,-2.089084,0.915155 +-1.297612,-0.158862,-1.474562,-0.425995,-2.089353,0.905144 +-1.289291,-0.159030,-1.477520,-0.428993,-2.089604,0.895131 +-1.280963,-0.159141,-1.480443,-0.431963,-2.089838,0.885118 +-1.272627,-0.159195,-1.483329,-0.434905,-2.090055,0.875105 +-1.264286,-0.159191,-1.486179,-0.437819,-2.090255,0.865094 +-1.255941,-0.159129,-1.488991,-0.440706,-2.090439,0.855087 +-1.247593,-0.159009,-1.491766,-0.443566,-2.090607,0.845086 +-1.239244,-0.158831,-1.494503,-0.446400,-2.090759,0.835092 +-1.230894,-0.158593,-1.497202,-0.449208,-2.090897,0.825106 +-1.222545,-0.158297,-1.499861,-0.451992,-2.091019,0.815131 +-1.214199,-0.157941,-1.502481,-0.454751,-2.091128,0.805167 +-1.205857,-0.157526,-1.505062,-0.457485,-2.091222,0.795216 +-1.197519,-0.157051,-1.507603,-0.460196,-2.091303,0.785280 +-1.189188,-0.156515,-1.510103,-0.462885,-2.091371,0.775361 +-1.180865,-0.155920,-1.512562,-0.465550,-2.091425,0.765459 +-1.172551,-0.155263,-1.514980,-0.468194,-2.091467,0.755577 +-1.164247,-0.154545,-1.517356,-0.470816,-2.091497,0.745716 +-1.155955,-0.153767,-1.519691,-0.473418,-2.091515,0.735877 +-1.147676,-0.152926,-1.521983,-0.475999,-2.091522,0.726063 +-1.139411,-0.152024,-1.524232,-0.478560,-2.091518,0.716274 +-1.131161,-0.151060,-1.526439,-0.481103,-2.091502,0.706512 +-1.122929,-0.150034,-1.528602,-0.483626,-2.091477,0.696779 +-1.114715,-0.148945,-1.530721,-0.486131,-2.091441,0.687077 +-1.106520,-0.147794,-1.532796,-0.488619,-2.091396,0.677406 +-1.098346,-0.146579,-1.534827,-0.491090,-2.091341,0.667768 +-1.090194,-0.145302,-1.536813,-0.493545,-2.091277,0.658165 +-1.082065,-0.143961,-1.538754,-0.495983,-2.091205,0.648598 +-1.073961,-0.142556,-1.540650,-0.498406,-2.091124,0.639069 +-1.065883,-0.141088,-1.542501,-0.500815,-2.091035,0.629580 +-1.057832,-0.139556,-1.544305,-0.503209,-2.090938,0.620131 +-1.049809,-0.137959,-1.546063,-0.505589,-2.090834,0.610725 +-1.041816,-0.136298,-1.547775,-0.507957,-2.090723,0.601362 +-1.033854,-0.134572,-1.549440,-0.510312,-2.090605,0.592044 +-1.025924,-0.132782,-1.551058,-0.512655,-2.090481,0.582773 +-1.018028,-0.130927,-1.552629,-0.514987,-2.090351,0.573551 +-1.010166,-0.129006,-1.554153,-0.517308,-2.090215,0.564378 +-1.002340,-0.127020,-1.555629,-0.519619,-2.090073,0.555255 +-0.994551,-0.124969,-1.557056,-0.521920,-2.089926,0.546186 +-0.986800,-0.122852,-1.558436,-0.524212,-2.089775,0.537170 +-0.979089,-0.120669,-1.559767,-0.526495,-2.089619,0.528210 +-0.971418,-0.118420,-1.561049,-0.528771,-2.089458,0.519306 +-0.963790,-0.116106,-1.562283,-0.531039,-2.089294,0.510461 +-0.956204,-0.113725,-1.563467,-0.533300,-2.089125,0.501675 +-0.948663,-0.111277,-1.564602,-0.535556,-2.088954,0.492950 +-0.941167,-0.108763,-1.565688,-0.537805,-2.088779,0.484288 +-0.933718,-0.106183,-1.566724,-0.540050,-2.088601,0.475689 +-0.926316,-0.103535,-1.567710,-0.542290,-2.088421,0.467155 +-0.918963,-0.100821,-1.568646,-0.544525,-2.088238,0.458687 +-0.911661,-0.098040,-1.569532,-0.546758,-2.088054,0.450287 +-0.904409,-0.095192,-1.570367,-0.548988,-2.087867,0.441956 +-0.897209,-0.092276,-1.571152,-0.551215,-2.087679,0.433696 +-0.890063,-0.089294,-1.571886,-0.553441,-2.087490,0.425507 +-0.882971,-0.086244,-1.572569,-0.555666,-2.087300,0.417391 +-0.875935,-0.083127,-1.573201,-0.557890,-2.087109,0.409349 +-0.868955,-0.079942,-1.573782,-0.560114,-2.086917,0.401383 +-0.862032,-0.076690,-1.574312,-0.562339,-2.086725,0.393493 +-0.855169,-0.073370,-1.574790,-0.564564,-2.086533,0.385681 +-0.848365,-0.069982,-1.575217,-0.566792,-2.086341,0.377949 +-0.841621,-0.066527,-1.575592,-0.569021,-2.086150,0.370297 +-0.834940,-0.063004,-1.575915,-0.571253,-2.085959,0.362726 +-0.828321,-0.059413,-1.576186,-0.573489,-2.085769,0.355239 +-0.821765,-0.055755,-1.576406,-0.575728,-2.085580,0.347835 +-0.815275,-0.052029,-1.576573,-0.577972,-2.085393,0.340516 +-0.808849,-0.048235,-1.576688,-0.580221,-2.085207,0.333284 +-0.802491,-0.044373,-1.576751,-0.582475,-2.085022,0.326139 +-0.796200,-0.040443,-1.576761,-0.584735,-2.084840,0.319082 +-0.789977,-0.036446,-1.576719,-0.587002,-2.084660,0.312116 +-0.783824,-0.032381,-1.576624,-0.589275,-2.084481,0.305239 +-0.777741,-0.028248,-1.576477,-0.591557,-2.084306,0.298455 +-0.771730,-0.024047,-1.576277,-0.593846,-2.084133,0.291763 +-0.765790,-0.019779,-1.576025,-0.596144,-2.083962,0.285166 +-0.759923,-0.015443,-1.575719,-0.598451,-2.083795,0.278663 +-0.754129,-0.011040,-1.575361,-0.600767,-2.083631,0.272256 +-0.748411,-0.006568,-1.574950,-0.603094,-2.083470,0.265946 +-0.742767,-0.002030,-1.574486,-0.605431,-2.083313,0.259734 +-0.737200,0.002576,-1.573969,-0.607780,-2.083159,0.253621 +-0.731710,0.007249,-1.573399,-0.610140,-2.083009,0.247608 +-0.726297,0.011990,-1.572777,-0.612512,-2.082863,0.241695 +-0.720963,0.016798,-1.572101,-0.614897,-2.082721,0.235884 +-0.715708,0.021672,-1.571372,-0.617294,-2.082583,0.230176 +-0.710533,0.026614,-1.570590,-0.619706,-2.082450,0.224571 +-0.705439,0.031622,-1.569755,-0.622131,-2.082321,0.219070 +-0.700426,0.036697,-1.568867,-0.624571,-2.082196,0.213674 +-0.695495,0.041839,-1.567925,-0.627025,-2.082076,0.208385 +-0.690646,0.047047,-1.566931,-0.629495,-2.081961,0.203202 +-0.685881,0.052322,-1.565884,-0.631981,-2.081851,0.198127 +-0.681200,0.057662,-1.564783,-0.634484,-2.081746,0.193160 +-0.676604,0.063069,-1.563630,-0.637003,-2.081646,0.188302 +-0.672093,0.068541,-1.562423,-0.639539,-2.081552,0.183554 +-0.667667,0.074079,-1.561164,-0.642092,-2.081462,0.178917 +-0.663328,0.079683,-1.559851,-0.644664,-2.081378,0.174391 +-0.659076,0.085351,-1.558486,-0.647254,-2.081299,0.169977 +-0.654911,0.091085,-1.557068,-0.649864,-2.081226,0.165675 +-0.650834,0.096884,-1.555596,-0.652492,-2.081159,0.161487 +-0.646846,0.102747,-1.554072,-0.655140,-2.081097,0.157413 +-0.642946,0.108674,-1.552495,-0.657808,-2.081041,0.153453 +-0.639136,0.114666,-1.550866,-0.660497,-2.080990,0.149608 +-0.635416,0.120722,-1.549183,-0.663206,-2.080946,0.145879 +-0.631786,0.126842,-1.547448,-0.665937,-2.080907,0.142266 +-0.628247,0.133025,-1.545661,-0.668689,-2.080874,0.138770 +-0.624799,0.139271,-1.543820,-0.671464,-2.080848,0.135391 +-0.621442,0.145580,-1.541928,-0.674260,-2.080827,0.132130 +-0.618178,0.151952,-1.539982,-0.677080,-2.080812,0.128987 +-0.615005,0.158386,-1.537985,-0.679922,-2.080803,0.125963 +-0.611925,0.164882,-1.535935,-0.682788,-2.080800,0.123058 +-0.608938,0.171441,-1.533833,-0.685677,-2.080803,0.120272 +-0.606044,0.178060,-1.531679,-0.688591,-2.080812,0.117607 +-0.603243,0.184741,-1.529473,-0.691529,-2.080828,0.115061 +-0.600536,0.191483,-1.527214,-0.694492,-2.080849,0.112637 +-0.597923,0.198285,-1.524904,-0.697479,-2.080876,0.110333 +-0.595404,0.205147,-1.522542,-0.700492,-2.080910,0.108151 +-0.592980,0.212069,-1.520129,-0.703531,-2.080949,0.106090 +-0.590650,0.219051,-1.517663,-0.706595,-2.080994,0.104151 +-0.588414,0.226092,-1.515146,-0.709686,-2.081045,0.102334 +-0.586274,0.233191,-1.512578,-0.712803,-2.081102,0.100640 +-0.584228,0.240349,-1.509958,-0.715947,-2.081165,0.099068 +-0.582278,0.247565,-1.507288,-0.719118,-2.081234,0.097619 +-0.580423,0.254839,-1.504565,-0.722316,-2.081309,0.096293 +-0.578663,0.262170,-1.501792,-0.725542,-2.081389,0.095090 +-0.576998,0.269558,-1.498968,-0.728795,-2.081475,0.094011 +-0.575429,0.277002,-1.496093,-0.732077,-2.081566,0.093054 +-0.573955,0.284502,-1.493167,-0.735386,-2.081663,0.092221 +-0.572577,0.292058,-1.490191,-0.738724,-2.081766,0.091512 +-0.571294,0.299668,-1.487164,-0.742091,-2.081874,0.090926 +-0.570106,0.307334,-1.484087,-0.745486,-2.081987,0.090464 +-0.569014,0.315054,-1.480959,-0.748910,-2.082105,0.090126 +-0.568017,0.322827,-1.477782,-0.752364,-2.082229,0.089911 +-0.567115,0.330654,-1.474554,-0.755847,-2.082357,0.089819 +-0.566308,0.338533,-1.471276,-0.759359,-2.082491,0.089851 +-0.565596,0.346465,-1.467949,-0.762902,-2.082629,0.090007 +-0.564979,0.354449,-1.464572,-0.766474,-2.082772,0.090286 +-0.564456,0.362484,-1.461145,-0.770076,-2.082920,0.090688 +-0.564028,0.370570,-1.457669,-0.773708,-2.083072,0.091213 +-0.563695,0.378707,-1.454144,-0.777371,-2.083228,0.091862 +-0.563455,0.386893,-1.450569,-0.781064,-2.083388,0.092633 +-0.563309,0.395128,-1.446945,-0.784787,-2.083553,0.093527 +-0.563257,0.403413,-1.443273,-0.788542,-2.083722,0.094543 +-0.563298,0.411745,-1.439552,-0.792327,-2.083894,0.095681 +-0.563432,0.420125,-1.435782,-0.796142,-2.084070,0.096941 +-0.563659,0.428553,-1.431963,-0.799989,-2.084250,0.098323 +-0.563979,0.437027,-1.428096,-0.803867,-2.084433,0.099826 +-0.564390,0.445546,-1.424181,-0.807776,-2.084619,0.101451 +-0.564893,0.454112,-1.420218,-0.811716,-2.084808,0.103196 +-0.565488,0.462722,-1.416207,-0.815687,-2.085000,0.105061 +-0.566174,0.471376,-1.412148,-0.819690,-2.085195,0.107046 +-0.566950,0.480074,-1.408042,-0.823723,-2.085392,0.109151 +-0.567817,0.488815,-1.403887,-0.827788,-2.085591,0.111376 +-0.568773,0.497599,-1.399686,-0.831885,-2.085793,0.113719 +-0.569819,0.506424,-1.395437,-0.836013,-2.085996,0.116180 +-0.570953,0.515291,-1.391141,-0.840172,-2.086202,0.118759 +-0.572176,0.524198,-1.386799,-0.844363,-2.086409,0.121456 +-0.573486,0.533145,-1.382409,-0.848584,-2.086617,0.124269 +-0.574884,0.542131,-1.377973,-0.852838,-2.086827,0.127199 +-0.576369,0.551156,-1.373490,-0.857122,-2.087037,0.130245 +-0.577940,0.560219,-1.368961,-0.861438,-2.087248,0.133406 +-0.579596,0.569320,-1.364385,-0.865785,-2.087460,0.136682 +-0.581338,0.578457,-1.359764,-0.870164,-2.087672,0.140071 +-0.583164,0.587630,-1.355097,-0.874573,-2.087884,0.143575 +-0.585075,0.596838,-1.350383,-0.879014,-2.088096,0.147191 +-0.587068,0.606081,-1.345625,-0.883485,-2.088307,0.150919 +-0.589144,0.615357,-1.340820,-0.887988,-2.088518,0.154759 +-0.591302,0.624667,-1.335971,-0.892521,-2.088728,0.158710 +-0.593541,0.634010,-1.331076,-0.897085,-2.088937,0.162771 +-0.595861,0.643384,-1.326136,-0.901680,-2.089145,0.166941 +-0.598260,0.652790,-1.321152,-0.906305,-2.089350,0.171220 +-0.600739,0.662225,-1.316122,-0.910960,-2.089555,0.175607 +-0.603296,0.671691,-1.311049,-0.915646,-2.089757,0.180101 +-0.605931,0.681185,-1.305930,-0.920362,-2.089956,0.184702 +-0.608643,0.690708,-1.300768,-0.925108,-2.090153,0.189408 +-0.611431,0.700257,-1.295561,-0.929884,-2.090347,0.194219 +-0.614294,0.709834,-1.290311,-0.934690,-2.090538,0.199134 +-0.617232,0.719436,-1.285016,-0.939525,-2.090726,0.204152 +-0.620243,0.729064,-1.279678,-0.944389,-2.090909,0.209272 +-0.623327,0.738716,-1.274297,-0.949283,-2.091089,0.214494 +-0.626484,0.748392,-1.268872,-0.954206,-2.091264,0.219816 +-0.629711,0.758090,-1.263404,-0.959157,-2.091435,0.225238 +-0.633009,0.767811,-1.257893,-0.964137,-2.091601,0.230758 +-0.636377,0.777553,-1.252339,-0.969146,-2.091762,0.236376 +-0.639812,0.787315,-1.246743,-0.974182,-2.091918,0.242090 +-0.643316,0.797097,-1.241104,-0.979247,-2.092067,0.247900 +-0.646886,0.806898,-1.235422,-0.984339,-2.092211,0.253805 +-0.650522,0.816717,-1.229699,-0.989459,-2.092348,0.259804 +-0.654222,0.826554,-1.223933,-0.994606,-2.092479,0.265895 +-0.657987,0.836407,-1.218126,-0.999780,-2.092603,0.272078 +-0.661815,0.846275,-1.212276,-1.004981,-2.092719,0.278352 +-0.665704,0.856159,-1.206385,-1.010208,-2.092828,0.284715 +-0.669654,0.866056,-1.200453,-1.015461,-2.092929,0.291167 +-0.673665,0.875967,-1.194479,-1.020740,-2.093022,0.297707 +-0.677734,0.885890,-1.188465,-1.026045,-2.093106,0.304332 +-0.681861,0.895825,-1.182409,-1.031375,-2.093181,0.311043 +-0.686045,0.905770,-1.176313,-1.036731,-2.093247,0.317838 +-0.690285,0.915725,-1.170175,-1.042111,-2.093304,0.324716 +-0.694579,0.925689,-1.163998,-1.047515,-2.093351,0.331675 +-0.698927,0.935662,-1.157780,-1.052943,-2.093388,0.338716 +-0.703328,0.945641,-1.151522,-1.058395,-2.093414,0.345835 +-0.707781,0.955628,-1.145224,-1.063871,-2.093429,0.353034 +-0.712284,0.965620,-1.138886,-1.069370,-2.093433,0.360309 +-0.716836,0.975616,-1.132509,-1.074891,-2.093426,0.367660 +-0.721437,0.985617,-1.126092,-1.080435,-2.093407,0.375086 +-0.726085,0.995620,-1.119636,-1.086001,-2.093375,0.382585 +-0.730779,1.005626,-1.113140,-1.091588,-2.093332,0.390157 +-0.735518,1.015633,-1.106606,-1.097197,-2.093275,0.397799 +-0.740301,1.025641,-1.100032,-1.102827,-2.093205,0.405512 +-0.745126,1.035648,-1.093420,-1.108477,-2.093121,0.413293 +-0.749993,1.045653,-1.086770,-1.114147,-2.093024,0.421141 +-0.754900,1.055657,-1.080081,-1.119838,-2.092912,0.429054 +-0.759847,1.065658,-1.073354,-1.125547,-2.092786,0.437033 +-0.764831,1.075654,-1.066589,-1.131276,-2.092645,0.445075 +-0.769853,1.085646,-1.059786,-1.137023,-2.092488,0.453179 +-0.774910,1.095632,-1.052946,-1.142788,-2.092316,0.461344 +-0.780002,1.105611,-1.046068,-1.148571,-2.092127,0.469568 +-0.785126,1.115583,-1.039153,-1.154371,-2.091923,0.477850 +-0.790284,1.125547,-1.032200,-1.160188,-2.091701,0.486188 +-0.795472,1.135501,-1.025211,-1.166022,-2.091462,0.494583 +-0.800689,1.145446,-1.018184,-1.171871,-2.091206,0.503031 +-0.805935,1.155379,-1.011122,-1.177736,-2.090932,0.511532 +-0.811209,1.165300,-1.004022,-1.183617,-2.090640,0.520084 +-0.816509,1.175208,-0.996887,-1.189511,-2.090330,0.528686 +-0.821833,1.185103,-0.989715,-1.195420,-2.090000,0.537336 +-0.827181,1.194983,-0.982507,-1.201343,-2.089651,0.546034 +-0.832552,1.204848,-0.975264,-1.207279,-2.089283,0.554778 +-0.837944,1.214696,-0.967985,-1.213228,-2.088894,0.563566 +-0.843356,1.224527,-0.960670,-1.219189,-2.088486,0.572397 +-0.848786,1.234340,-0.953321,-1.225162,-2.088056,0.581269 +-0.854234,1.244134,-0.945936,-1.231146,-2.087605,0.590182 +-0.859699,1.253908,-0.938516,-1.237142,-2.087133,0.599133 +-0.865178,1.263661,-0.931062,-1.243147,-2.086639,0.608122 +-0.870672,1.273392,-0.923573,-1.249163,-2.086123,0.617146 +-0.876177,1.283101,-0.916050,-1.255187,-2.085584,0.626205 +-0.881695,1.292786,-0.908493,-1.261221,-2.085023,0.635298 +-0.887222,1.302447,-0.900902,-1.267263,-2.084438,0.644421 +-0.892758,1.312082,-0.893277,-1.273313,-2.083829,0.653575 +-0.898302,1.321691,-0.885619,-1.279370,-2.083197,0.662758 +-0.903852,1.331274,-0.877927,-1.285434,-2.082540,0.671968 +-0.909407,1.340828,-0.870202,-1.291505,-2.081858,0.681204 +-0.914967,1.350353,-0.862445,-1.297581,-2.081151,0.690465 +-0.920529,1.359849,-0.854654,-1.303663,-2.080419,0.699748 +-0.926092,1.369314,-0.846831,-1.309749,-2.079661,0.709053 +-0.931656,1.378748,-0.838975,-1.315839,-2.078877,0.718379 +-0.937219,1.388150,-0.831088,-1.321934,-2.078066,0.727723 +-0.942779,1.397518,-0.823168,-1.328031,-2.077228,0.737084 +-0.948336,1.406852,-0.815216,-1.334131,-2.076363,0.746461 +-0.953888,1.416151,-0.807233,-1.340233,-2.075471,0.755852 +-0.959435,1.425415,-0.799219,-1.346336,-2.074550,0.765256 +-0.964974,1.434642,-0.791174,-1.352441,-2.073601,0.774672 +-0.970505,1.443831,-0.783097,-1.358546,-2.072624,0.784097 +-0.976026,1.452982,-0.774990,-1.364651,-2.071617,0.793532 +-0.981537,1.462094,-0.766853,-1.370755,-2.070581,0.802973 +-0.987036,1.471165,-0.758685,-1.376858,-2.069515,0.812420 +-0.992522,1.480196,-0.750487,-1.382959,-2.068419,0.821871 +-0.997993,1.489185,-0.742259,-1.389058,-2.067293,0.831326 +-1.003449,1.498131,-0.734002,-1.395154,-2.066136,0.840781 +-1.008888,1.507034,-0.725715,-1.401247,-2.064948,0.850237 +-1.014309,1.515893,-0.717399,-1.407336,-2.063728,0.859691 +-1.019712,1.524706,-0.709054,-1.413420,-2.062477,0.869142 +-1.025094,1.533474,-0.700681,-1.419499,-2.061193,0.878589 +-1.030455,1.542195,-0.692279,-1.425572,-2.059877,0.888030 +-1.035793,1.550868,-0.683849,-1.431639,-2.058528,0.897464 +-1.041108,1.559493,-0.675391,-1.437700,-2.057146,0.906890 +-1.046398,1.568068,-0.666905,-1.443753,-2.055731,0.916305 +-1.051662,1.576594,-0.658392,-1.449798,-2.054281,0.925709 +-1.056899,1.585069,-0.649851,-1.455834,-2.052798,0.935101 +-1.062107,1.593492,-0.641283,-1.461862,-2.051280,0.944478 +-1.067287,1.601863,-0.632689,-1.467880,-2.049727,0.953840 +-1.072436,1.610180,-0.624068,-1.473888,-2.048139,0.963185 +-1.077554,1.618444,-0.615421,-1.479885,-2.046516,0.972511 +-1.082640,1.626653,-0.606748,-1.485871,-2.044857,0.981818 +-1.087691,1.634806,-0.598049,-1.491845,-2.043161,0.991104 +-1.092708,1.642904,-0.589325,-1.497806,-2.041430,1.000368 +-1.097690,1.650944,-0.580576,-1.503755,-2.039662,1.009608 +-1.102634,1.658926,-0.571802,-1.509690,-2.037856,1.018822 +-1.107541,1.666850,-0.563003,-1.515610,-2.036014,1.028011 +-1.112409,1.674714,-0.554180,-1.521517,-2.034133,1.037171 +-1.117237,1.682519,-0.545333,-1.527408,-2.032215,1.046303 +-1.122025,1.690262,-0.536462,-1.533283,-2.030259,1.055404 +-1.126770,1.697945,-0.527567,-1.539142,-2.028264,1.064474 +-1.131473,1.705565,-0.518649,-1.544983,-2.026230,1.073510 +-1.136132,1.713122,-0.509709,-1.550808,-2.024157,1.082512 +-1.140746,1.720615,-0.500746,-1.556614,-2.022045,1.091479 +-1.145315,1.728045,-0.491760,-1.562402,-2.019893,1.100409 +-1.149836,1.735409,-0.482753,-1.568171,-2.017702,1.109301 +-1.154311,1.742707,-0.473723,-1.573920,-2.015470,1.118153 +-1.158736,1.749939,-0.464673,-1.579649,-2.013197,1.126965 +-1.163113,1.757104,-0.455601,-1.585357,-2.010884,1.135735 +-1.167439,1.764202,-0.446508,-1.591043,-2.008530,1.144462 +-1.171714,1.771230,-0.437395,-1.596708,-2.006134,1.153144 +-1.175936,1.778190,-0.428262,-1.602351,-2.003697,1.161781 +-1.180106,1.785080,-0.419109,-1.607970,-2.001218,1.170372 +-1.184222,1.791900,-0.409937,-1.613566,-1.998697,1.178914 +-1.188284,1.798649,-0.400746,-1.619138,-1.996134,1.187407 +-1.192290,1.805326,-0.391535,-1.624686,-1.993528,1.195851 +-1.196240,1.811931,-0.382306,-1.630208,-1.990879,1.204242 +-1.200133,1.818464,-0.373060,-1.635705,-1.988188,1.212581 +-1.203968,1.824922,-0.363795,-1.641175,-1.985453,1.220867 +-1.207742,1.831302,-0.354519,-1.646615,-1.982674,1.229092 +-1.211447,1.837598,-0.345236,-1.652018,-1.979842,1.237252 +-1.215073,1.843801,-0.335955,-1.657374,-1.976946,1.245337 +-1.218611,1.849899,-0.326687,-1.662674,-1.973977,1.253338 +-1.222050,1.855883,-0.317442,-1.667907,-1.970924,1.261244 +-1.225381,1.861743,-0.308229,-1.673064,-1.967778,1.269045 +-1.228594,1.867470,-0.299059,-1.678133,-1.964529,1.276731 +-1.231678,1.873052,-0.289941,-1.683107,-1.961166,1.284293 +-1.234623,1.878480,-0.280886,-1.687973,-1.957679,1.291720 +-1.237420,1.883745,-0.271903,-1.692723,-1.954059,1.299002 +-1.240059,1.888836,-0.263004,-1.697347,-1.950296,1.306129 +-1.242529,1.893742,-0.254196,-1.701833,-1.946379,1.313091 +-1.244821,1.898455,-0.245492,-1.706173,-1.942298,1.319879 +-1.246924,1.902963,-0.236899,-1.710357,-1.938044,1.326482 +-1.248829,1.907258,-0.228430,-1.714374,-1.933607,1.332890 +-1.250525,1.911329,-0.220093,-1.718214,-1.928976,1.339093 +-1.252002,1.915166,-0.211899,-1.721867,-1.924142,1.345082 +-1.253252,1.918759,-0.203857,-1.725324,-1.919094,1.350846 +-1.254263,1.922098,-0.195978,-1.728575,-1.913823,1.356375 +-1.255025,1.925173,-0.188271,-1.731608,-1.908318,1.361659 +-1.255529,1.927974,-0.180748,-1.734415,-1.902571,1.366688 +-1.255764,1.930491,-0.173416,-1.736986,-1.896585,1.371453 +-1.255721,1.932714,-0.166287,-1.739309,-1.890369,1.375943 +-1.255390,1.934634,-0.159371,-1.741377,-1.883934,1.380148 +-1.254760,1.936239,-0.152678,-1.743177,-1.877289,1.384058 +-1.253821,1.937520,-0.146217,-1.744701,-1.870445,1.387664 +-1.252573,1.938468,-0.139999,-1.745938,-1.863412,1.390954 +-1.251025,1.939071,-0.134033,-1.746879,-1.856199,1.393920 +-1.249187,1.939321,-0.128330,-1.747513,-1.848817,1.396552 +-1.247069,1.939206,-0.122899,-1.747830,-1.841275,1.398838 +-1.244680,1.938718,-0.117751,-1.747821,-1.833584,1.400770 +-1.242031,1.937845,-0.112896,-1.747475,-1.825753,1.402337 +-1.239132,1.936579,-0.108336,-1.746782,-1.817793,1.403529 +-1.235992,1.934910,-0.104063,-1.745733,-1.809714,1.404336 +-1.232622,1.932839,-0.100068,-1.744317,-1.801525,1.404752 +-1.229032,1.930376,-0.096339,-1.742526,-1.793237,1.404784 +-1.225232,1.927531,-0.092867,-1.740363,-1.784859,1.404441 +-1.221232,1.924315,-0.089642,-1.737837,-1.776402,1.403734 +-1.217041,1.920737,-0.086654,-1.734958,-1.767876,1.402672 +-1.212670,1.916807,-0.083894,-1.731737,-1.759290,1.401266 +-1.208129,1.912535,-0.081350,-1.728184,-1.750655,1.399526 +-1.203428,1.907931,-0.079013,-1.724308,-1.741980,1.397461 +-1.198576,1.903006,-0.076873,-1.720120,-1.733276,1.395082 +-1.193584,1.897769,-0.074920,-1.715630,-1.724553,1.392398 +-1.188462,1.892230,-0.073145,-1.710847,-1.715820,1.389420 +-1.183220,1.886400,-0.071536,-1.705782,-1.707085,1.386158 +-1.177867,1.880287,-0.070084,-1.700444,-1.698351,1.382621 +-1.172415,1.873903,-0.068779,-1.694844,-1.689617,1.378820 +-1.166872,1.867257,-0.067611,-1.688991,-1.680883,1.374764 +-1.161248,1.860359,-0.066570,-1.682896,-1.672148,1.370464 +-1.155555,1.853220,-0.065646,-1.676569,-1.663414,1.365929 +-1.149801,1.845848,-0.064829,-1.670019,-1.654680,1.361170 +-1.143997,1.838255,-0.064109,-1.663256,-1.645945,1.356197 +-1.138153,1.830450,-0.063476,-1.656292,-1.637211,1.351019 +-1.132279,1.822444,-0.062920,-1.649135,-1.628477,1.345647 +-1.126384,1.814245,-0.062431,-1.641795,-1.619742,1.340091 +-1.120479,1.805865,-0.061999,-1.634283,-1.611008,1.334360 +-1.114572,1.797313,-0.061614,-1.626609,-1.602274,1.328464 +-1.108666,1.788599,-0.061266,-1.618782,-1.593540,1.322414 +-1.102759,1.779734,-0.060945,-1.610813,-1.584805,1.316220 +-1.096852,1.770726,-0.060641,-1.602711,-1.576071,1.309891 +-1.090945,1.761587,-0.060344,-1.594487,-1.567337,1.303438 +-1.085039,1.752326,-0.060048,-1.586151,-1.558602,1.296871 +-1.079132,1.742953,-0.059751,-1.577712,-1.549868,1.290199 +-1.073225,1.733479,-0.059455,-1.569181,-1.541134,1.283433 +-1.067319,1.723913,-0.059158,-1.560567,-1.532399,1.276582 +-1.061412,1.714265,-0.058862,-1.551881,-1.523665,1.269657 +-1.055505,1.704545,-0.058566,-1.543132,-1.514931,1.262668 +-1.049599,1.694763,-0.058269,-1.534331,-1.506197,1.255624 +-1.043692,1.684930,-0.057973,-1.525488,-1.497462,1.248535 +-1.037785,1.675055,-0.057676,-1.516612,-1.488728,1.241413 +-1.031878,1.665148,-0.057380,-1.507714,-1.479994,1.234265 +-1.025972,1.655219,-0.057083,-1.498803,-1.471259,1.227104 +-1.020065,1.645278,-0.056787,-1.489889,-1.462525,1.219938 +-1.014158,1.635335,-0.056490,-1.480976,-1.453791,1.212771 +-1.008252,1.625392,-0.056194,-1.472062,-1.445056,1.205605 +-1.002345,1.615449,-0.055897,-1.463148,-1.436322,1.198438 +-0.996438,1.605505,-0.055601,-1.454234,-1.427588,1.191272 +-0.990532,1.595562,-0.055305,-1.445320,-1.418854,1.184105 +-0.984625,1.585619,-0.055008,-1.436406,-1.410119,1.176939 +-0.978718,1.575676,-0.054712,-1.427493,-1.401385,1.169773 +-0.972811,1.565732,-0.054415,-1.418579,-1.392651,1.162606 +-0.966905,1.555789,-0.054119,-1.409665,-1.383916,1.155440 +-0.960998,1.545846,-0.053822,-1.400751,-1.375182,1.148273 +-0.955091,1.535903,-0.053526,-1.391837,-1.366448,1.141107 +-0.949185,1.525960,-0.053229,-1.382924,-1.357713,1.133941 +-0.943278,1.516016,-0.052933,-1.374010,-1.348979,1.126774 +-0.937371,1.506073,-0.052637,-1.365096,-1.340245,1.119608 +-0.931465,1.496130,-0.052340,-1.356182,-1.331511,1.112441 +-0.925558,1.486187,-0.052044,-1.347268,-1.322776,1.105275 +-0.919651,1.476243,-0.051747,-1.338355,-1.314042,1.098108 +-0.913744,1.466300,-0.051451,-1.329441,-1.305308,1.090942 +-0.907838,1.456357,-0.051154,-1.320527,-1.296573,1.083776 +-0.901931,1.446414,-0.050858,-1.311613,-1.287839,1.076609 +-0.896024,1.436470,-0.050561,-1.302699,-1.279105,1.069443 +-0.890118,1.426527,-0.050265,-1.293786,-1.270370,1.062276 +-0.884211,1.416584,-0.049968,-1.284872,-1.261636,1.055110 +-0.878304,1.406641,-0.049672,-1.275958,-1.252902,1.047944 +-0.872398,1.396697,-0.049376,-1.267044,-1.244168,1.040777 +-0.866491,1.386754,-0.049079,-1.258130,-1.235433,1.033611 +-0.860584,1.376811,-0.048783,-1.249217,-1.226699,1.026444 +-0.854677,1.366868,-0.048486,-1.240303,-1.217965,1.019278 +-0.848771,1.356925,-0.048190,-1.231389,-1.209230,1.012112 +-0.842864,1.346981,-0.047893,-1.222475,-1.200496,1.004945 +-0.836957,1.337038,-0.047597,-1.213561,-1.191762,0.997779 +-0.831051,1.327095,-0.047300,-1.204648,-1.183027,0.990612 +-0.825144,1.317152,-0.047004,-1.195734,-1.174293,0.983446 +-0.819237,1.307208,-0.046707,-1.186820,-1.165559,0.976279 +-0.813331,1.297265,-0.046411,-1.177906,-1.156824,0.969113 +-0.807424,1.287322,-0.046115,-1.168992,-1.148090,0.961947 +-0.801517,1.277379,-0.045818,-1.160078,-1.139356,0.954780 +-0.795611,1.267435,-0.045522,-1.151165,-1.130622,0.947614 +-0.789704,1.257492,-0.045225,-1.142251,-1.121887,0.940447 +-0.783797,1.247549,-0.044929,-1.133337,-1.113153,0.933281 +-0.777890,1.237606,-0.044632,-1.124423,-1.104419,0.926115 +-0.771984,1.227662,-0.044336,-1.115509,-1.095684,0.918948 +-0.766077,1.217719,-0.044039,-1.106596,-1.086950,0.911782 +-0.760170,1.207776,-0.043743,-1.097682,-1.078216,0.904615 +-0.754264,1.197833,-0.043447,-1.088768,-1.069481,0.897449 +-0.748357,1.187890,-0.043150,-1.079854,-1.060747,0.890282 +-0.742450,1.177946,-0.042854,-1.070940,-1.052013,0.883116 +-0.736544,1.168003,-0.042557,-1.062027,-1.043279,0.875950 +-0.730637,1.158060,-0.042261,-1.053113,-1.034544,0.868783 +-0.724730,1.148117,-0.041964,-1.044199,-1.025810,0.861617 +-0.718823,1.138173,-0.041668,-1.035285,-1.017076,0.854450 +-0.712917,1.128230,-0.041371,-1.026371,-1.008341,0.847284 +-0.707010,1.118287,-0.041075,-1.017458,-0.999607,0.840118 +-0.701103,1.108344,-0.040778,-1.008544,-0.990873,0.832951 +-0.695197,1.098400,-0.040482,-0.999630,-0.982138,0.825785 +-0.689290,1.088457,-0.040186,-0.990716,-0.973404,0.818618 +-0.683383,1.078514,-0.039889,-0.981802,-0.964670,0.811452 +-0.677477,1.068571,-0.039593,-0.972889,-0.955936,0.804286 +-0.671570,1.058627,-0.039296,-0.963975,-0.947201,0.797119 +-0.665663,1.048684,-0.039000,-0.955061,-0.938467,0.789953 +-0.659756,1.038741,-0.038703,-0.946147,-0.929733,0.782786 +-0.653850,1.028798,-0.038407,-0.937233,-0.920998,0.775620 +-0.647943,1.018855,-0.038110,-0.928320,-0.912264,0.768453 +-0.642036,1.008911,-0.037814,-0.919406,-0.903530,0.761287 +-0.636130,0.998968,-0.037517,-0.910492,-0.894795,0.754121 +-0.630223,0.989025,-0.037221,-0.901578,-0.886061,0.746954 +-0.624316,0.979082,-0.036925,-0.892664,-0.877327,0.739788 +-0.618410,0.969138,-0.036628,-0.883750,-0.868593,0.732621 +-0.612503,0.959195,-0.036332,-0.874837,-0.859858,0.725455 +-0.606596,0.949252,-0.036035,-0.865923,-0.851124,0.718289 +-0.600689,0.939309,-0.035739,-0.857009,-0.842390,0.711122 +-0.594783,0.929365,-0.035442,-0.848095,-0.833655,0.703956 +-0.588876,0.919422,-0.035146,-0.839181,-0.824921,0.696789 +-0.582969,0.909479,-0.034849,-0.830268,-0.816187,0.689623 +-0.577063,0.899536,-0.034553,-0.821354,-0.807452,0.682456 +-0.571156,0.889592,-0.034257,-0.812440,-0.798718,0.675290 +-0.565249,0.879649,-0.033960,-0.803526,-0.789984,0.668124 +-0.559343,0.869706,-0.033664,-0.794612,-0.781250,0.660957 +-0.553436,0.859763,-0.033367,-0.785699,-0.772515,0.653791 +-0.547529,0.849820,-0.033071,-0.776785,-0.763781,0.646624 +-0.541622,0.839876,-0.032774,-0.767871,-0.755047,0.639458 +-0.535716,0.829933,-0.032478,-0.758957,-0.746312,0.632292 +-0.529809,0.819990,-0.032181,-0.750043,-0.737578,0.625125 +-0.523902,0.810047,-0.031885,-0.741130,-0.728844,0.617959 +-0.517996,0.800103,-0.031588,-0.732216,-0.720109,0.610792 +-0.512089,0.790160,-0.031292,-0.723302,-0.711375,0.603626 +-0.506182,0.780217,-0.030996,-0.714388,-0.702641,0.596460 +-0.500276,0.770274,-0.030699,-0.705474,-0.693907,0.589293 +-0.494369,0.760330,-0.030403,-0.696561,-0.685172,0.582127 +-0.488462,0.750387,-0.030106,-0.687647,-0.676438,0.574960 +-0.482555,0.740444,-0.029810,-0.678733,-0.667704,0.567794 +-0.476649,0.730501,-0.029513,-0.669819,-0.658969,0.560627 +-0.470742,0.720557,-0.029217,-0.660905,-0.650235,0.553461 +-0.464835,0.710614,-0.028920,-0.651991,-0.641501,0.546295 +-0.458929,0.700671,-0.028624,-0.643078,-0.632766,0.539128 +-0.453022,0.690728,-0.028327,-0.634164,-0.624032,0.531962 +-0.447115,0.680785,-0.028031,-0.625250,-0.615298,0.524795 +-0.441209,0.670841,-0.027735,-0.616336,-0.606564,0.517629 +-0.435302,0.660898,-0.027438,-0.607422,-0.597829,0.510463 +-0.429395,0.650955,-0.027142,-0.598509,-0.589095,0.503296 +-0.423488,0.641012,-0.026845,-0.589595,-0.580361,0.496130 +-0.417582,0.631068,-0.026549,-0.580681,-0.571626,0.488963 +-0.411675,0.621125,-0.026252,-0.571767,-0.562892,0.481797 +-0.405768,0.611182,-0.025956,-0.562853,-0.554158,0.474630 +-0.399862,0.601239,-0.025659,-0.553940,-0.545423,0.467464 +-0.393955,0.591295,-0.025363,-0.545026,-0.536689,0.460298 +-0.388048,0.581352,-0.025067,-0.536112,-0.527955,0.453131 +-0.382142,0.571409,-0.024770,-0.527198,-0.519221,0.445965 +-0.376235,0.561466,-0.024474,-0.518284,-0.510486,0.438798 +-0.370328,0.551522,-0.024177,-0.509371,-0.501752,0.431632 +-0.364421,0.541579,-0.023881,-0.500457,-0.493018,0.424466 +-0.358515,0.531636,-0.023584,-0.491543,-0.484283,0.417299 +-0.352608,0.521693,-0.023288,-0.482629,-0.475549,0.410133 +-0.346701,0.511750,-0.022991,-0.473715,-0.466815,0.402966 +-0.340795,0.501806,-0.022695,-0.464802,-0.458080,0.395800 +-0.334888,0.491863,-0.022398,-0.455888,-0.449346,0.388633 +-0.328981,0.481920,-0.022102,-0.446974,-0.440612,0.381467 +-0.323075,0.471977,-0.021806,-0.438060,-0.431878,0.374301 +-0.317168,0.462033,-0.021509,-0.429146,-0.423143,0.367134 +-0.311261,0.452090,-0.021213,-0.420233,-0.414409,0.359968 +-0.305354,0.442147,-0.020916,-0.411319,-0.405675,0.352801 +-0.299448,0.432204,-0.020620,-0.402405,-0.396940,0.345635 +-0.293541,0.422260,-0.020323,-0.393491,-0.388206,0.338469 +-0.287634,0.412317,-0.020027,-0.384577,-0.379472,0.331302 +-0.281728,0.402374,-0.019730,-0.375663,-0.370737,0.324136 +-0.275821,0.392431,-0.019434,-0.366750,-0.362003,0.316969 +-0.269914,0.382487,-0.019137,-0.357836,-0.353269,0.309803 +-0.264008,0.372544,-0.018841,-0.348922,-0.344535,0.302637 +-0.258101,0.362601,-0.018545,-0.340008,-0.335800,0.295470 +-0.252194,0.352658,-0.018248,-0.331094,-0.327066,0.288304 +-0.246287,0.342715,-0.017952,-0.322181,-0.318332,0.281137 +-0.240381,0.332771,-0.017655,-0.313267,-0.309597,0.273971 +-0.234474,0.322828,-0.017359,-0.304353,-0.300863,0.266804 +-0.228567,0.312885,-0.017062,-0.295439,-0.292129,0.259638 +-0.222661,0.302944,-0.016766,-0.286525,-0.283394,0.252472 +-0.216754,0.293013,-0.016469,-0.277612,-0.274660,0.245305 +-0.210847,0.283103,-0.016173,-0.268698,-0.265926,0.238139 +-0.204941,0.273224,-0.015877,-0.259785,-0.257192,0.230972 +-0.199034,0.263385,-0.015580,-0.250879,-0.248459,0.223806 +-0.193127,0.253597,-0.015284,-0.241990,-0.239739,0.216640 +-0.187220,0.243870,-0.014987,-0.233128,-0.231039,0.209473 +-0.181314,0.234213,-0.014691,-0.224303,-0.222370,0.202307 +-0.175407,0.224638,-0.014394,-0.215526,-0.213742,0.195140 +-0.169500,0.215152,-0.014098,-0.206805,-0.205165,0.187974 +-0.163594,0.205768,-0.013801,-0.198152,-0.196650,0.180814 +-0.157687,0.196494,-0.013505,-0.189576,-0.188205,0.173668 +-0.151780,0.187340,-0.013208,-0.181087,-0.179842,0.166549 +-0.145874,0.178318,-0.012912,-0.172695,-0.171570,0.159464 +-0.139967,0.169436,-0.012616,-0.164410,-0.163398,0.152425 +-0.134067,0.160704,-0.012319,-0.156242,-0.155338,0.145442 +-0.128183,0.152134,-0.012023,-0.148201,-0.147399,0.138524 +-0.122325,0.143734,-0.011726,-0.140298,-0.139591,0.131681 +-0.116503,0.135514,-0.011430,-0.132542,-0.131924,0.124923 +-0.110727,0.127485,-0.011133,-0.124942,-0.124408,0.118261 +-0.105007,0.119657,-0.010837,-0.117510,-0.117053,0.111705 +-0.099354,0.112040,-0.010540,-0.110255,-0.109870,0.105264 +-0.093776,0.104643,-0.010244,-0.103187,-0.102867,0.098948 +-0.088285,0.097477,-0.009948,-0.096316,-0.096055,0.092768 +-0.082889,0.090552,-0.009651,-0.089653,-0.089445,0.086733 +-0.077600,0.083877,-0.009355,-0.083206,-0.083045,0.080853 +-0.072426,0.077463,-0.009058,-0.076987,-0.076867,0.075139 +-0.067379,0.071319,-0.008762,-0.071005,-0.070920,0.069600 +-0.062468,0.065457,-0.008465,-0.065269,-0.065214,0.064247 +-0.057703,0.059884,-0.008169,-0.059791,-0.059759,0.059089 +-0.053094,0.054613,-0.007872,-0.054580,-0.054565,0.054137 +-0.048651,0.049652,-0.007576,-0.049647,-0.049642,0.049399 +-0.044384,0.045000,-0.007279,-0.045000,-0.045000,0.044888 +-0.040303,0.040648,-0.006983,-0.040648,-0.040648,0.040611 +-0.036418,0.036587,-0.006687,-0.036587,-0.036587,0.036580 +-0.032740,0.032805,-0.006390,-0.032805,-0.032805,0.032805 +-0.029277,0.029293,-0.006094,-0.029293,-0.029293,0.029293 +-0.026041,0.026042,-0.005797,-0.026042,-0.026042,0.026042 +-0.023040,0.023040,-0.005501,-0.023040,-0.023040,0.023040 +-0.020278,0.020278,-0.005204,-0.020278,-0.020278,0.020278 +-0.017747,0.017747,-0.004908,-0.017747,-0.017747,0.017747 +-0.015435,0.015435,-0.004611,-0.015435,-0.015435,0.015435 +-0.013333,0.013333,-0.004315,-0.013333,-0.013333,0.013333 +-0.011432,0.011432,-0.004018,-0.011432,-0.011432,0.011432 +-0.009720,0.009720,-0.003722,-0.009720,-0.009720,0.009720 +-0.008188,0.008188,-0.003426,-0.008188,-0.008188,0.008188 +-0.006827,0.006827,-0.003129,-0.006827,-0.006827,0.006827 +-0.005625,0.005625,-0.002833,-0.005625,-0.005625,0.005625 +-0.004573,0.004573,-0.002536,-0.004573,-0.004573,0.004573 +-0.003662,0.003662,-0.002240,-0.003662,-0.003662,0.003662 +-0.002880,0.002880,-0.001943,-0.002880,-0.002880,0.002880 +-0.002218,0.002218,-0.001647,-0.002218,-0.002218,0.002218 +-0.001667,0.001667,-0.001352,-0.001667,-0.001667,0.001667 +-0.001215,0.001215,-0.001065,-0.001215,-0.001215,0.001215 +-0.000853,0.000853,-0.000798,-0.000853,-0.000853,0.000853 +-0.000572,0.000572,-0.000559,-0.000572,-0.000572,0.000572 +-0.000360,0.000360,-0.000359,-0.000360,-0.000360,0.000360 +-0.000208,0.000208,-0.000208,-0.000208,-0.000208,0.000208 +-0.000107,0.000107,-0.000107,-0.000107,-0.000107,0.000107 +-0.000045,0.000045,-0.000045,-0.000045,-0.000045,0.000045 +-0.000013,0.000013,-0.000013,-0.000013,-0.000013,0.000013 +-0.000002,0.000002,-0.000002,-0.000002,-0.000002,0.000002 +-0.000000,-0.000000,0.000000,0.000000,-0.000000,0.000000 +-0.000000,-0.000000,0.000000,0.000000,-0.000000,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/13_trajectory_vel2_acc30.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/13_trajectory_vel2_acc30.txt new file mode 100644 index 00000000..59fb70f8 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/13_trajectory_vel2_acc30.txt @@ -0,0 +1,20450 @@ +-0.000003,0.000003,0.000003,0.000003,-0.000003,-0.000003 +-0.000020,0.000020,0.000020,0.000020,-0.000020,-0.000020 +-0.000067,0.000067,0.000067,0.000067,-0.000067,-0.000067 +-0.000157,0.000160,0.000160,0.000160,-0.000160,-0.000160 +-0.000279,0.000313,0.000312,0.000313,-0.000313,-0.000313 +-0.000420,0.000540,0.000535,0.000540,-0.000540,-0.000540 +-0.000565,0.000858,0.000817,0.000858,-0.000858,-0.000858 +-0.000711,0.001280,0.001143,0.001280,-0.001280,-0.001280 +-0.000857,0.001822,0.001499,0.001822,-0.001822,-0.001822 +-0.001002,0.002500,0.001870,0.002500,-0.002500,-0.002500 +-0.001148,0.003327,0.002242,0.003327,-0.003327,-0.003327 +-0.001293,0.004320,0.002615,0.004320,-0.004320,-0.004320 +-0.001439,0.005492,0.002988,0.005492,-0.005492,-0.005492 +-0.001584,0.006860,0.003361,0.006860,-0.006860,-0.006859 +-0.001730,0.008437,0.003734,0.008437,-0.008437,-0.008419 +-0.001875,0.010240,0.004107,0.010240,-0.010240,-0.010159 +-0.002021,0.012283,0.004479,0.012283,-0.012283,-0.012062 +-0.002167,0.014580,0.004852,0.014580,-0.014580,-0.014114 +-0.002312,0.017148,0.005225,0.017148,-0.017148,-0.016300 +-0.002458,0.020000,0.005598,0.020000,-0.020000,-0.018606 +-0.002603,0.023153,0.005971,0.023153,-0.023151,-0.021015 +-0.002749,0.026620,0.006344,0.026620,-0.026597,-0.023513 +-0.002894,0.030418,0.006716,0.030418,-0.030324,-0.026086 +-0.003040,0.034560,0.007089,0.034560,-0.034315,-0.028717 +-0.003185,0.039063,0.007462,0.039063,-0.038558,-0.031392 +-0.003331,0.043936,0.007835,0.043940,-0.043035,-0.034096 +-0.003476,0.049170,0.008208,0.049199,-0.047732,-0.036815 +-0.003622,0.054750,0.008581,0.054828,-0.052635,-0.039535 +-0.003768,0.060661,0.008953,0.060811,-0.057729,-0.042255 +-0.003913,0.066888,0.009326,0.067134,-0.062997,-0.044976 +-0.004059,0.073416,0.009699,0.073781,-0.068426,-0.047696 +-0.004204,0.080230,0.010072,0.080738,-0.074000,-0.050416 +-0.004350,0.087316,0.010445,0.087989,-0.079704,-0.053137 +-0.004495,0.094657,0.010818,0.095520,-0.085524,-0.055857 +-0.004641,0.102240,0.011190,0.103315,-0.091444,-0.058577 +-0.004786,0.110048,0.011563,0.111360,-0.097449,-0.061298 +-0.004932,0.118067,0.011936,0.119639,-0.103525,-0.064018 +-0.005078,0.126283,0.012309,0.128138,-0.109655,-0.066738 +-0.005223,0.134680,0.012682,0.136841,-0.115827,-0.069459 +-0.005369,0.143242,0.013055,0.145734,-0.122023,-0.072179 +-0.005514,0.151956,0.013427,0.154802,-0.128230,-0.074899 +-0.005660,0.160806,0.013800,0.164028,-0.134437,-0.077620 +-0.005805,0.169776,0.014173,0.173400,-0.140645,-0.080340 +-0.005951,0.178853,0.014546,0.182900,-0.146852,-0.083060 +-0.006096,0.188021,0.014919,0.192516,-0.153060,-0.085781 +-0.006242,0.197265,0.015292,0.202231,-0.159267,-0.088501 +-0.006387,0.206570,0.015664,0.212030,-0.165475,-0.091221 +-0.006533,0.215921,0.016037,0.221899,-0.171683,-0.093942 +-0.006679,0.225303,0.016410,0.231822,-0.177890,-0.096662 +-0.006824,0.234701,0.016783,0.241785,-0.184098,-0.099382 +-0.006970,0.244102,0.017156,0.251772,-0.190305,-0.102103 +-0.007115,0.253503,0.017529,0.261769,-0.196513,-0.104823 +-0.007261,0.262904,0.017901,0.271767,-0.202720,-0.107543 +-0.007406,0.272305,0.018274,0.281764,-0.208928,-0.110264 +-0.007552,0.281706,0.018647,0.291762,-0.215136,-0.112984 +-0.007697,0.291107,0.019020,0.301760,-0.221343,-0.115704 +-0.007843,0.300508,0.019393,0.311757,-0.227551,-0.118425 +-0.007989,0.309910,0.019766,0.321755,-0.233758,-0.121145 +-0.008134,0.319311,0.020138,0.331752,-0.239966,-0.123865 +-0.008280,0.328712,0.020511,0.341750,-0.246173,-0.126586 +-0.008425,0.338113,0.020884,0.351748,-0.252381,-0.129306 +-0.008571,0.347514,0.021257,0.361745,-0.258588,-0.132026 +-0.008716,0.356915,0.021630,0.371743,-0.264796,-0.134747 +-0.008862,0.366316,0.022003,0.381740,-0.271004,-0.137467 +-0.009007,0.375717,0.022375,0.391738,-0.277211,-0.140187 +-0.009153,0.385118,0.022748,0.401736,-0.283419,-0.142908 +-0.009298,0.394520,0.023121,0.411733,-0.289626,-0.145628 +-0.009444,0.403921,0.023494,0.421731,-0.295834,-0.148348 +-0.009590,0.413322,0.023867,0.431728,-0.302041,-0.151069 +-0.009735,0.422723,0.024240,0.441726,-0.308249,-0.153789 +-0.009881,0.432124,0.024612,0.451724,-0.314457,-0.156509 +-0.010026,0.441525,0.024985,0.461721,-0.320664,-0.159230 +-0.010172,0.450926,0.025358,0.471719,-0.326872,-0.161950 +-0.010317,0.460327,0.025731,0.481716,-0.333079,-0.164670 +-0.010463,0.469728,0.026104,0.491714,-0.339287,-0.167391 +-0.010608,0.479130,0.026476,0.501712,-0.345494,-0.170111 +-0.010754,0.488531,0.026849,0.511709,-0.351702,-0.172831 +-0.010900,0.497932,0.027222,0.521707,-0.357909,-0.175552 +-0.011045,0.507333,0.027595,0.531704,-0.364117,-0.178272 +-0.011191,0.516734,0.027968,0.541702,-0.370325,-0.180992 +-0.011336,0.526135,0.028341,0.551700,-0.376532,-0.183713 +-0.011482,0.535536,0.028713,0.561697,-0.382740,-0.186433 +-0.011627,0.544937,0.029086,0.571695,-0.388947,-0.189153 +-0.011773,0.554338,0.029459,0.581692,-0.395155,-0.191874 +-0.011918,0.563740,0.029832,0.591690,-0.401362,-0.194594 +-0.012064,0.573141,0.030205,0.601688,-0.407570,-0.197314 +-0.012209,0.582542,0.030578,0.611685,-0.413778,-0.200035 +-0.012355,0.591943,0.030950,0.621683,-0.419985,-0.202755 +-0.012501,0.601344,0.031323,0.631680,-0.426193,-0.205475 +-0.012646,0.610745,0.031696,0.641678,-0.432400,-0.208196 +-0.012792,0.620146,0.032069,0.651676,-0.438608,-0.210916 +-0.012937,0.629547,0.032442,0.661673,-0.444815,-0.213636 +-0.013083,0.638948,0.032815,0.671671,-0.451023,-0.216357 +-0.013228,0.648350,0.033187,0.681668,-0.457230,-0.219077 +-0.013374,0.657751,0.033560,0.691666,-0.463438,-0.221797 +-0.013519,0.667152,0.033933,0.701664,-0.469646,-0.224518 +-0.013665,0.676553,0.034306,0.711661,-0.475853,-0.227238 +-0.013811,0.685954,0.034679,0.721659,-0.482061,-0.229958 +-0.013956,0.695355,0.035052,0.731656,-0.488268,-0.232679 +-0.014102,0.704756,0.035424,0.741654,-0.494476,-0.235399 +-0.014247,0.714157,0.035797,0.751652,-0.500683,-0.238119 +-0.014393,0.723558,0.036170,0.761649,-0.506891,-0.240840 +-0.014538,0.732960,0.036543,0.771647,-0.513099,-0.243560 +-0.014684,0.742361,0.036916,0.781644,-0.519306,-0.246280 +-0.014829,0.751762,0.037289,0.791642,-0.525514,-0.249001 +-0.014975,0.761163,0.037661,0.801640,-0.531721,-0.251721 +-0.015120,0.770564,0.038034,0.811637,-0.537929,-0.254441 +-0.015266,0.779965,0.038407,0.821635,-0.544136,-0.257162 +-0.015412,0.789366,0.038780,0.831632,-0.550344,-0.259882 +-0.015557,0.798767,0.039153,0.841630,-0.556551,-0.262602 +-0.015703,0.808168,0.039526,0.851628,-0.562759,-0.265323 +-0.015848,0.817570,0.039898,0.861625,-0.568967,-0.268043 +-0.015994,0.826971,0.040271,0.871623,-0.575174,-0.270763 +-0.016139,0.836372,0.040644,0.881620,-0.581382,-0.273484 +-0.016285,0.845773,0.041017,0.891618,-0.587589,-0.276204 +-0.016430,0.855174,0.041390,0.901616,-0.593797,-0.278924 +-0.016576,0.864575,0.041763,0.911613,-0.600004,-0.281645 +-0.016722,0.873976,0.042135,0.921611,-0.606212,-0.284365 +-0.016867,0.883377,0.042508,0.931608,-0.612420,-0.287085 +-0.017013,0.892778,0.042881,0.941606,-0.618627,-0.289806 +-0.017158,0.902180,0.043254,0.951604,-0.624835,-0.292526 +-0.017304,0.911581,0.043627,0.961601,-0.631042,-0.295246 +-0.017449,0.920982,0.044000,0.971599,-0.637250,-0.297967 +-0.017595,0.930383,0.044372,0.981596,-0.643457,-0.300687 +-0.017740,0.939784,0.044745,0.991594,-0.649665,-0.303407 +-0.017886,0.949185,0.045118,1.001592,-0.655872,-0.306128 +-0.018031,0.958586,0.045491,1.011589,-0.662080,-0.308848 +-0.018177,0.967987,0.045864,1.021587,-0.668288,-0.311568 +-0.018323,0.977388,0.046237,1.031584,-0.674495,-0.314289 +-0.018468,0.986790,0.046609,1.041582,-0.680703,-0.317009 +-0.018614,0.996191,0.046982,1.051580,-0.686910,-0.319729 +-0.018759,1.005592,0.047355,1.061577,-0.693118,-0.322450 +-0.018905,1.014993,0.047728,1.071575,-0.699325,-0.325170 +-0.019050,1.024394,0.048101,1.081572,-0.705533,-0.327890 +-0.019196,1.033795,0.048474,1.091570,-0.711741,-0.330611 +-0.019341,1.043196,0.048846,1.101567,-0.717948,-0.333331 +-0.019487,1.052597,0.049219,1.111565,-0.724156,-0.336051 +-0.019633,1.061998,0.049592,1.121563,-0.730363,-0.338772 +-0.019778,1.071400,0.049965,1.131560,-0.736571,-0.341492 +-0.019924,1.080801,0.050338,1.141558,-0.742778,-0.344212 +-0.020069,1.090202,0.050711,1.151555,-0.748986,-0.346933 +-0.020215,1.099603,0.051083,1.161553,-0.755193,-0.349653 +-0.020360,1.109004,0.051456,1.171551,-0.761401,-0.352373 +-0.020506,1.118405,0.051829,1.181548,-0.767609,-0.355094 +-0.020651,1.127806,0.052202,1.191546,-0.773816,-0.357814 +-0.020797,1.137207,0.052575,1.201543,-0.780024,-0.360534 +-0.020942,1.146608,0.052948,1.211541,-0.786231,-0.363255 +-0.021088,1.156010,0.053320,1.221539,-0.792439,-0.365975 +-0.021234,1.165411,0.053693,1.231536,-0.798646,-0.368695 +-0.021379,1.174812,0.054066,1.241534,-0.804854,-0.371416 +-0.021525,1.184213,0.054439,1.251531,-0.811062,-0.374136 +-0.021670,1.193614,0.054812,1.261529,-0.817269,-0.376856 +-0.021816,1.203015,0.055185,1.271527,-0.823477,-0.379577 +-0.021961,1.212416,0.055557,1.281524,-0.829684,-0.382297 +-0.022107,1.221817,0.055930,1.291522,-0.835892,-0.385017 +-0.022252,1.231218,0.056303,1.301519,-0.842099,-0.387738 +-0.022398,1.240620,0.056676,1.311517,-0.848307,-0.390458 +-0.022544,1.250021,0.057049,1.321515,-0.854515,-0.393178 +-0.022689,1.259422,0.057422,1.331512,-0.860722,-0.395899 +-0.022835,1.268823,0.057794,1.341510,-0.866930,-0.398619 +-0.022980,1.278224,0.058167,1.351507,-0.873137,-0.401339 +-0.023126,1.287625,0.058540,1.361505,-0.879345,-0.404060 +-0.023271,1.297026,0.058913,1.371503,-0.885552,-0.406780 +-0.023417,1.306427,0.059286,1.381500,-0.891760,-0.409500 +-0.023562,1.315828,0.059659,1.391498,-0.897967,-0.412221 +-0.023708,1.325230,0.060031,1.401495,-0.904175,-0.414941 +-0.023853,1.334631,0.060404,1.411493,-0.910383,-0.417661 +-0.023999,1.344032,0.060777,1.421491,-0.916590,-0.420382 +-0.024145,1.353433,0.061150,1.431488,-0.922798,-0.423102 +-0.024290,1.362834,0.061523,1.441486,-0.929005,-0.425822 +-0.024436,1.372235,0.061896,1.451483,-0.935213,-0.428543 +-0.024581,1.381636,0.062268,1.461481,-0.941420,-0.431263 +-0.024727,1.391037,0.062641,1.471479,-0.947628,-0.433983 +-0.024872,1.400438,0.063014,1.481476,-0.953836,-0.436704 +-0.025018,1.409840,0.063387,1.491474,-0.960043,-0.439424 +-0.025163,1.419241,0.063760,1.501471,-0.966251,-0.442144 +-0.025309,1.428642,0.064133,1.511464,-0.972458,-0.444858 +-0.025455,1.438043,0.064505,1.521437,-0.978666,-0.447550 +-0.025600,1.447444,0.064878,1.531376,-0.984873,-0.450206 +-0.025746,1.456845,0.065251,1.541266,-0.991081,-0.452811 +-0.025891,1.466244,0.065624,1.551091,-0.997288,-0.455350 +-0.026037,1.475630,0.065997,1.560837,-1.003496,-0.457808 +-0.026182,1.484986,0.066370,1.570490,-1.009698,-0.460169 +-0.026328,1.494299,0.066742,1.580032,-1.015880,-0.462419 +-0.026473,1.503553,0.067115,1.589451,-1.022027,-0.464544 +-0.026619,1.512733,0.067488,1.598730,-1.028124,-0.466527 +-0.026764,1.521825,0.067861,1.607856,-1.034157,-0.468353 +-0.026910,1.530812,0.068234,1.616812,-1.040109,-0.470009 +-0.027056,1.539681,0.068607,1.625583,-1.045967,-0.471479 +-0.027201,1.548416,0.068979,1.634156,-1.051715,-0.472747 +-0.027347,1.557003,0.069352,1.642514,-1.057338,-0.473799 +-0.027492,1.565425,0.069725,1.650643,-1.062821,-0.474620 +-0.027638,1.573669,0.070099,1.658528,-1.068149,-0.475195 +-0.027783,1.581719,0.070485,1.666154,-1.073308,-0.475509 +-0.027929,1.589560,0.070898,1.673505,-1.078282,-0.475546 +-0.028074,1.597178,0.071353,1.680568,-1.083055,-0.475292 +-0.028220,1.604556,0.071865,1.687326,-1.087614,-0.474733 +-0.028366,1.611681,0.072449,1.693764,-1.091943,-0.473852 +-0.028511,1.618537,0.073120,1.699869,-1.096028,-0.472634 +-0.028657,1.625109,0.073893,1.705624,-1.099852,-0.471066 +-0.028802,1.631383,0.074782,1.711015,-1.103402,-0.469132 +-0.028948,1.637342,0.075804,1.716027,-1.106661,-0.466816 +-0.029093,1.642973,0.076972,1.720645,-1.109616,-0.464104 +-0.029239,1.648260,0.078303,1.724854,-1.112251,-0.460981 +-0.029384,1.653189,0.079811,1.728655,-1.114551,-0.457432 +-0.029530,1.657749,0.081510,1.732061,-1.116501,-0.453456 +-0.029675,1.661952,0.083416,1.735089,-1.118087,-0.449066 +-0.029821,1.665813,0.085545,1.737752,-1.119292,-0.444278 +-0.029967,1.669347,0.087910,1.740066,-1.120103,-0.439106 +-0.030112,1.672569,0.090527,1.742047,-1.120505,-0.433565 +-0.030257,1.675493,0.093411,1.743708,-1.120496,-0.427672 +-0.030390,1.678135,0.096578,1.745065,-1.120093,-0.421439 +-0.030497,1.680510,0.100041,1.746133,-1.119309,-0.414883 +-0.030562,1.682633,0.103816,1.746927,-1.118160,-0.408019 +-0.030572,1.684519,0.107915,1.747461,-1.116660,-0.400861 +-0.030510,1.686182,0.112333,1.747752,-1.114826,-0.393424 +-0.030362,1.687638,0.117053,1.747813,-1.112671,-0.385724 +-0.030112,1.688902,0.122062,1.747661,-1.110210,-0.377776 +-0.029747,1.689989,0.127344,1.747309,-1.107459,-0.369593 +-0.029250,1.690914,0.132884,1.746774,-1.104433,-0.361193 +-0.028606,1.691691,0.138667,1.746069,-1.101147,-0.352589 +-0.027802,1.692336,0.144679,1.745210,-1.097615,-0.343796 +-0.026821,1.692864,0.150903,1.744212,-1.093853,-0.334830 +-0.025649,1.693290,0.157325,1.743090,-1.089876,-0.325705 +-0.024279,1.693629,0.163931,1.741859,-1.085698,-0.316437 +-0.022721,1.693895,0.170705,1.740533,-1.081335,-0.307040 +-0.020993,1.694105,0.177632,1.739129,-1.076802,-0.297530 +-0.019107,1.694272,0.184697,1.737661,-1.072114,-0.287922 +-0.017080,1.694412,0.191885,1.736143,-1.067285,-0.278229 +-0.014927,1.694539,0.199181,1.734591,-1.062330,-0.268468 +-0.012662,1.694670,0.206570,1.733021,-1.057266,-0.258654 +-0.010300,1.694818,0.214038,1.731446,-1.052106,-0.248801 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005343,1.695226,0.229153,1.728341,-1.041555,-0.229033 +-0.002764,1.695500,0.236786,1.726826,-1.036180,-0.219132 +-0.000121,1.695823,0.244467,1.725337,-1.030739,-0.209224 +0.002587,1.696194,0.252195,1.723874,-1.025235,-0.199308 +0.005356,1.696614,0.259971,1.722437,-1.019667,-0.189386 +0.008188,1.697082,0.267794,1.721027,-1.014035,-0.179456 +0.011079,1.697599,0.275664,1.719643,-1.008341,-0.169520 +0.014030,1.698165,0.283581,1.718286,-1.002583,-0.159578 +0.017039,1.698780,0.291544,1.716955,-0.996764,-0.149630 +0.020106,1.699444,0.299554,1.715651,-0.990883,-0.139677 +0.023228,1.700156,0.307609,1.714374,-0.984941,-0.129719 +0.026405,1.700918,0.315710,1.713124,-0.978939,-0.119756 +0.029636,1.701729,0.323857,1.711900,-0.972876,-0.109789 +0.032920,1.702589,0.332049,1.710703,-0.966753,-0.099819 +0.036256,1.703498,0.340285,1.709533,-0.960571,-0.089844 +0.039642,1.704456,0.348566,1.708389,-0.954329,-0.079867 +0.043077,1.705462,0.356891,1.707273,-0.948030,-0.069887 +0.046561,1.706518,0.365259,1.706183,-0.941673,-0.059904 +0.050092,1.707623,0.373672,1.705121,-0.935258,-0.049919 +0.053668,1.708776,0.382127,1.704085,-0.928786,-0.039933 +0.057290,1.709977,0.390624,1.703076,-0.922258,-0.029946 +0.060955,1.711227,0.399164,1.702095,-0.915675,-0.019957 +0.064662,1.712526,0.407746,1.701140,-0.909035,-0.009968 +0.068411,1.713872,0.416370,1.700212,-0.902341,0.000021 +0.072200,1.715266,0.425034,1.699311,-0.895593,0.010010 +0.076028,1.716708,0.433739,1.698436,-0.888791,0.019998 +0.079894,1.718198,0.442484,1.697589,-0.881936,0.029986 +0.083797,1.719735,0.451269,1.696768,-0.875028,0.039972 +0.087735,1.721318,0.460093,1.695975,-0.868068,0.049956 +0.091707,1.722949,0.468955,1.695207,-0.861057,0.059938 +0.095712,1.724626,0.477856,1.694467,-0.853995,0.069918 +0.099749,1.726349,0.486795,1.693753,-0.846882,0.079895 +0.103817,1.728118,0.495771,1.693066,-0.839719,0.089868 +0.107915,1.729933,0.504784,1.692406,-0.832507,0.099838 +0.112041,1.731793,0.513833,1.691772,-0.825246,0.109804 +0.116194,1.733697,0.522917,1.691164,-0.817937,0.119765 +0.120373,1.735646,0.532037,1.690583,-0.810581,0.129722 +0.124577,1.737640,0.541192,1.690028,-0.803178,0.139674 +0.128805,1.739677,0.550380,1.689499,-0.795728,0.149620 +0.133055,1.741757,0.559602,1.688997,-0.788232,0.159560 +0.137327,1.743880,0.568857,1.688520,-0.780692,0.169493 +0.141619,1.746045,0.578144,1.688069,-0.773106,0.179420 +0.145929,1.748252,0.587463,1.687645,-0.765477,0.189340 +0.150258,1.750501,0.596812,1.687246,-0.757805,0.199253 +0.154603,1.752791,0.606193,1.686873,-0.750089,0.209157 +0.158964,1.755121,0.615603,1.686525,-0.742332,0.219053 +0.163338,1.757491,0.625042,1.686203,-0.734533,0.228941 +0.167726,1.759901,0.634510,1.685906,-0.726693,0.238820 +0.172126,1.762349,0.644006,1.685635,-0.718812,0.248689 +0.176537,1.764836,0.653530,1.685388,-0.710892,0.258548 +0.180958,1.767360,0.663079,1.685167,-0.702933,0.268398 +0.185387,1.769922,0.672655,1.684971,-0.694936,0.278237 +0.189823,1.772520,0.682256,1.684799,-0.686900,0.288064 +0.194266,1.775154,0.691882,1.684653,-0.678828,0.297881 +0.198713,1.777823,0.701531,1.684530,-0.670719,0.307686 +0.203165,1.780527,0.711204,1.684432,-0.662574,0.317479 +0.207620,1.783265,0.720899,1.684359,-0.654394,0.327259 +0.212076,1.786036,0.730615,1.684309,-0.646179,0.337026 +0.216533,1.788840,0.740353,1.684284,-0.637930,0.346781 +0.220990,1.791676,0.750111,1.684282,-0.629647,0.356521 +0.225445,1.794543,0.759889,1.684304,-0.621332,0.366248 +0.229897,1.797441,0.769685,1.684350,-0.612985,0.375960 +0.234346,1.800368,0.779500,1.684419,-0.604606,0.385658 +0.238790,1.803324,0.789332,1.684512,-0.596197,0.395340 +0.243227,1.806309,0.799180,1.684627,-0.587757,0.405007 +0.247659,1.809322,0.809044,1.684765,-0.579288,0.414659 +0.252082,1.812361,0.818923,1.684927,-0.570789,0.424294 +0.256496,1.815426,0.828817,1.685110,-0.562263,0.433912 +0.260900,1.818516,0.838723,1.685317,-0.553708,0.443513 +0.265292,1.821631,0.848643,1.685545,-0.545127,0.453098 +0.269673,1.824769,0.858574,1.685796,-0.536519,0.462664 +0.274041,1.827931,0.868517,1.686068,-0.527886,0.472212 +0.278394,1.831114,0.878469,1.686363,-0.519228,0.481742 +0.282733,1.834318,0.888431,1.686679,-0.510545,0.491253 +0.287055,1.837542,0.898402,1.687016,-0.501838,0.500745 +0.291360,1.840786,0.908380,1.687375,-0.493108,0.510217 +0.295647,1.844048,0.918365,1.687754,-0.484355,0.519670 +0.299915,1.847328,0.928357,1.688155,-0.475580,0.529102 +0.304163,1.850624,0.938354,1.688576,-0.466784,0.538514 +0.308391,1.853936,0.948355,1.689018,-0.457968,0.547905 +0.312596,1.857264,0.958360,1.689480,-0.449131,0.557274 +0.316779,1.860605,0.968368,1.689962,-0.440275,0.566622 +0.320938,1.863959,0.978378,1.690464,-0.431400,0.575947 +0.325072,1.867325,0.988389,1.690985,-0.422507,0.585251 +0.329182,1.870703,0.998400,1.691527,-0.413596,0.594531 +0.333265,1.874091,1.008410,1.692087,-0.404669,0.603789 +0.337320,1.877488,1.018419,1.692667,-0.395725,0.613023 +0.341348,1.880893,1.028426,1.693265,-0.386765,0.622233 +0.345347,1.884306,1.038430,1.693882,-0.377791,0.631419 +0.349317,1.887725,1.048429,1.694518,-0.368801,0.640581 +0.353256,1.891150,1.058424,1.695172,-0.359798,0.649718 +0.357164,1.894579,1.068413,1.695845,-0.350782,0.658830 +0.361040,1.898011,1.078395,1.696535,-0.341753,0.667917 +0.364883,1.901446,1.088370,1.697242,-0.332711,0.676977 +0.368692,1.904883,1.098336,1.697968,-0.323659,0.686012 +0.372468,1.908320,1.108293,1.698710,-0.314595,0.695020 +0.376208,1.911756,1.118240,1.699470,-0.305521,0.704002 +0.379912,1.915190,1.128176,1.700246,-0.296438,0.712956 +0.383580,1.918623,1.138100,1.701039,-0.287345,0.721883 +0.387211,1.922051,1.148012,1.701848,-0.278244,0.730782 +0.390804,1.925475,1.157910,1.702674,-0.269135,0.739653 +0.394359,1.928893,1.167793,1.703515,-0.260018,0.748496 +0.397875,1.932304,1.177661,1.704372,-0.250895,0.757310 +0.401350,1.935708,1.187513,1.705245,-0.241765,0.766095 +0.404786,1.939103,1.197347,1.706133,-0.232630,0.774851 +0.408180,1.942488,1.207164,1.707036,-0.223489,0.783578 +0.411533,1.945863,1.216961,1.707954,-0.214344,0.792274 +0.414844,1.949225,1.226740,1.708887,-0.205195,0.800940 +0.418111,1.952574,1.236497,1.709834,-0.196043,0.809576 +0.421336,1.955910,1.246233,1.710795,-0.186887,0.818181 +0.424517,1.959230,1.255947,1.711771,-0.177729,0.826755 +0.427653,1.962535,1.265637,1.712760,-0.168570,0.835297 +0.430744,1.965822,1.275303,1.713762,-0.159409,0.843808 +0.433791,1.969091,1.284945,1.714778,-0.150247,0.852287 +0.436791,1.972341,1.294560,1.715807,-0.141085,0.860734 +0.439745,1.975571,1.304149,1.716848,-0.131923,0.869148 +0.442652,1.978779,1.313711,1.717903,-0.122762,0.877530 +0.445512,1.981965,1.323244,1.718969,-0.113602,0.885878 +0.448324,1.985128,1.332748,1.720048,-0.104444,0.894193 +0.451088,1.988266,1.342222,1.721139,-0.095288,0.902475 +0.453804,1.991379,1.351665,1.722241,-0.086135,0.910723 +0.456471,1.994465,1.361076,1.723355,-0.076986,0.918936 +0.459089,1.997524,1.370455,1.724480,-0.067840,0.927115 +0.461657,2.000554,1.379801,1.725616,-0.058698,0.935260 +0.464175,2.003554,1.389112,1.726762,-0.049561,0.943370 +0.466643,2.006524,1.398388,1.727920,-0.040429,0.951445 +0.469061,2.009462,1.407628,1.729087,-0.031303,0.959484 +0.471428,2.012368,1.416832,1.730265,-0.022183,0.967487 +0.473744,2.015239,1.425998,1.731453,-0.013069,0.975455 +0.476008,2.018076,1.435126,1.732650,-0.003963,0.983387 +0.478221,2.020878,1.444214,1.733856,0.005136,0.991282 +0.480382,2.023642,1.453263,1.735072,0.014228,0.999141 +0.482491,2.026369,1.462271,1.736296,0.023311,1.006963 +0.484548,2.029057,1.471238,1.737529,0.032385,1.014748 +0.486553,2.031705,1.480162,1.738771,0.041450,1.022496 +0.488505,2.034313,1.489044,1.740021,0.050505,1.030207 +0.490404,2.036879,1.497881,1.741278,0.059550,1.037879 +0.492251,2.039402,1.506674,1.742544,0.068585,1.045514 +0.494044,2.041881,1.515422,1.743817,0.077609,1.053111 +0.495784,2.044316,1.524124,1.745097,0.086622,1.060669 +0.497472,2.046706,1.532778,1.746384,0.095623,1.068189 +0.499106,2.049049,1.541386,1.747678,0.104613,1.075671 +0.500686,2.051344,1.549945,1.748979,0.113590,1.083113 +0.502213,2.053591,1.558455,1.750286,0.122554,1.090516 +0.503687,2.055789,1.566915,1.751599,0.131505,1.097880 +0.505107,2.057937,1.575325,1.752917,0.140443,1.105205 +0.506474,2.060033,1.583683,1.754242,0.149366,1.112490 +0.507787,2.062077,1.591990,1.755572,0.158276,1.119735 +0.509047,2.064069,1.600244,1.756907,0.167171,1.126940 +0.510254,2.066007,1.608445,1.758247,0.176051,1.134105 +0.511407,2.067890,1.616593,1.759591,0.184916,1.141230 +0.512507,2.069717,1.624685,1.760940,0.193766,1.148314 +0.513553,2.071488,1.632723,1.762294,0.202600,1.155357 +0.514547,2.073202,1.640704,1.763651,0.211417,1.162360 +0.515487,2.074858,1.648629,1.765012,0.220218,1.169322 +0.516375,2.076455,1.656497,1.766376,0.229003,1.176242 +0.517209,2.077992,1.664308,1.767744,0.237770,1.183121 +0.517992,2.079468,1.672059,1.769115,0.246520,1.189959 +0.518721,2.080884,1.679752,1.770488,0.255252,1.196756 +0.519398,2.082237,1.687385,1.771865,0.263966,1.203510 +0.520023,2.083527,1.694958,1.773243,0.272662,1.210223 +0.520597,2.084754,1.702471,1.774624,0.281340,1.216894 +0.521118,2.085916,1.709922,1.776006,0.289999,1.223522 +0.521588,2.087013,1.717311,1.777390,0.298639,1.230109 +0.522007,2.088044,1.724638,1.778776,0.307260,1.236653 +0.522374,2.089009,1.731901,1.780163,0.315861,1.243155 +0.522691,2.089906,1.739101,1.781550,0.324442,1.249614 +0.522957,2.090736,1.746237,1.782939,0.333004,1.256030 +0.523173,2.091497,1.753309,1.784327,0.341545,1.262404 +0.523339,2.092188,1.760316,1.785717,0.350066,1.268735 +0.523456,2.092810,1.767256,1.787106,0.358567,1.275023 +0.523523,2.093361,1.774131,1.788494,0.367046,1.281268 +0.523541,2.093841,1.780940,1.789883,0.375505,1.287469 +0.523510,2.094249,1.787681,1.791270,0.383942,1.293628 +0.523431,2.094585,1.794355,1.792657,0.392358,1.299743 +0.523305,2.094847,1.800961,1.794043,0.400752,1.305814 +0.523130,2.095036,1.807499,1.795427,0.409125,1.311842 +0.522909,2.095151,1.813968,1.796809,0.417475,1.317827 +0.522641,2.095192,1.820368,1.798190,0.425803,1.323767 +0.522326,2.095157,1.826698,1.799569,0.434109,1.329665 +0.521965,2.095047,1.832958,1.800945,0.442393,1.335518 +0.521559,2.094860,1.839148,1.802318,0.450654,1.341327 +0.521108,2.094597,1.845268,1.803689,0.458892,1.347093 +0.520612,2.094257,1.851316,1.805057,0.467107,1.352815 +0.520071,2.093839,1.857293,1.806421,0.475300,1.358492 +0.519487,2.093343,1.863198,1.807782,0.483469,1.364126 +0.518860,2.092768,1.869031,1.809140,0.491614,1.369715 +0.518190,2.092115,1.874792,1.810493,0.499737,1.375261 +0.517478,2.091383,1.880480,1.811842,0.507836,1.380762 +0.516723,2.090571,1.886095,1.813187,0.515911,1.386219 +0.515928,2.089679,1.891637,1.814527,0.523962,1.391632 +0.515092,2.088707,1.897105,1.815862,0.531990,1.397000 +0.514215,2.087655,1.902500,1.817192,0.539993,1.402324 +0.513299,2.086521,1.907820,1.818516,0.547973,1.407604 +0.512343,2.085307,1.913066,1.819835,0.555928,1.412840 +0.511349,2.084011,1.918238,1.821148,0.563859,1.418031 +0.510317,2.082633,1.923335,1.822455,0.571766,1.423178 +0.509247,2.081173,1.928357,1.823756,0.579648,1.428281 +0.508140,2.079631,1.933304,1.825050,0.587506,1.433339 +0.506997,2.078007,1.938176,1.826337,0.595340,1.438353 +0.505818,2.076300,1.942973,1.827617,0.603149,1.443322 +0.504604,2.074511,1.947693,1.828890,0.610933,1.448247 +0.503355,2.072639,1.952339,1.830156,0.618693,1.453128 +0.502073,2.070683,1.956908,1.831413,0.626428,1.457964 +0.500756,2.068645,1.961401,1.832663,0.634139,1.462756 +0.499407,2.066523,1.965818,1.833905,0.641824,1.467504 +0.498026,2.064318,1.970159,1.835138,0.649485,1.472208 +0.496613,2.062029,1.974424,1.836362,0.657121,1.476867 +0.495169,2.059657,1.978612,1.837578,0.664732,1.481482 +0.493695,2.057202,1.982724,1.838784,0.672318,1.486053 +0.492191,2.054663,1.986760,1.839981,0.679880,1.490580 +0.490658,2.052041,1.990719,1.841168,0.687416,1.495062 +0.489097,2.049335,1.994602,1.842345,0.694928,1.499501 +0.487508,2.046546,1.998408,1.843512,0.702415,1.503895 +0.485892,2.043673,2.002138,1.844669,0.709877,1.508246 +0.484249,2.040717,2.005791,1.845815,0.717314,1.512552 +0.482581,2.037678,2.009367,1.846951,0.724726,1.516815 +0.480887,2.034556,2.012867,1.848075,0.732113,1.521034 +0.479169,2.031351,2.016291,1.849188,0.739476,1.525209 +0.477427,2.028063,2.019639,1.850289,0.746814,1.529340 +0.475662,2.024692,2.022910,1.851379,0.754127,1.533427 +0.473875,2.021239,2.026105,1.852456,0.761415,1.537471 +0.472066,2.017704,2.029224,1.853522,0.768678,1.541472 +0.470235,2.014086,2.032266,1.854574,0.775917,1.545429 +0.468385,2.010387,2.035233,1.855614,0.783131,1.549342 +0.466514,2.006606,2.038125,1.856641,0.790321,1.553213 +0.464624,2.002744,2.040940,1.857654,0.797486,1.557040 +0.462716,1.998801,2.043680,1.858654,0.804626,1.560824 +0.460791,1.994776,2.046345,1.859641,0.811742,1.564564 +0.458848,1.990672,2.048935,1.860613,0.818834,1.568262 +0.456889,1.986487,2.051449,1.861571,0.825901,1.571917 +0.454914,1.982223,2.053889,1.862514,0.832944,1.575529 +0.452924,1.977880,2.056254,1.863443,0.839963,1.579099 +0.450920,1.973457,2.058545,1.864357,0.846957,1.582625 +0.448902,1.968956,2.060762,1.865255,0.853928,1.586110 +0.446872,1.964377,2.062905,1.866138,0.860874,1.589551 +0.444829,1.959720,2.064974,1.867005,0.867797,1.592951 +0.442774,1.954985,2.066970,1.867856,0.874696,1.596308 +0.440709,1.950174,2.068893,1.868691,0.881570,1.599623 +0.438633,1.945287,2.070743,1.869509,0.888421,1.602896 +0.436548,1.940324,2.072520,1.870311,0.895249,1.606127 +0.434454,1.935286,2.074226,1.871095,0.902053,1.609317 +0.432352,1.930173,2.075859,1.871863,0.908833,1.612465 +0.430242,1.924986,2.077420,1.872612,0.915590,1.615571 +0.428125,1.919725,2.078911,1.873344,0.922324,1.618636 +0.426002,1.914392,2.080330,1.874058,0.929034,1.621659 +0.423874,1.908986,2.081679,1.874754,0.935722,1.624641 +0.421740,1.903508,2.082957,1.875431,0.942386,1.627582 +0.419603,1.897959,2.084166,1.876089,0.949028,1.630483 +0.417462,1.892340,2.085305,1.876729,0.955646,1.633342 +0.415318,1.886651,2.086375,1.877349,0.962242,1.636161 +0.413171,1.880893,2.087377,1.877949,0.968815,1.638939 +0.411023,1.875066,2.088310,1.878530,0.975366,1.641677 +0.408874,1.869172,2.089175,1.879090,0.981894,1.644374 +0.406725,1.863211,2.089973,1.879630,0.988400,1.647031 +0.404575,1.857183,2.090704,1.880150,0.994884,1.649649 +0.402427,1.851091,2.091368,1.880648,1.001345,1.652226 +0.400280,1.844933,2.091966,1.881126,1.007785,1.654764 +0.398136,1.838712,2.092499,1.881582,1.014202,1.657262 +0.395994,1.832428,2.092966,1.882016,1.020598,1.659720 +0.393855,1.826081,2.093369,1.882429,1.026972,1.662140 +0.391720,1.819673,2.093708,1.882819,1.033324,1.664520 +0.389590,1.813205,2.093982,1.883187,1.039655,1.666861 +0.387465,1.806677,2.094194,1.883532,1.045964,1.669163 +0.385346,1.800090,2.094343,1.883854,1.052253,1.671427 +0.383233,1.793445,2.094430,1.884153,1.058520,1.673652 +0.381127,1.786744,2.094455,1.884429,1.064766,1.675838 +0.379028,1.779986,2.094420,1.884681,1.070990,1.677987 +0.376937,1.773173,2.094323,1.884908,1.077195,1.680097 +0.374854,1.766306,2.094167,1.885112,1.083378,1.682169 +0.372781,1.759385,2.093951,1.885290,1.089541,1.684204 +0.370717,1.752413,2.093677,1.885444,1.095683,1.686200 +0.368664,1.745389,2.093344,1.885573,1.101804,1.688160 +0.366621,1.738314,2.092953,1.885677,1.107906,1.690082 +0.364589,1.731191,2.092506,1.885755,1.113987,1.691967 +0.362569,1.724019,2.092002,1.885807,1.120048,1.693815 +0.360561,1.716800,2.091442,1.885832,1.126089,1.695626 +0.358566,1.709535,2.090827,1.885832,1.132110,1.697400 +0.356584,1.702224,2.090157,1.885804,1.138112,1.699138 +0.354615,1.694870,2.089433,1.885750,1.144093,1.700839 +0.352661,1.687472,2.088655,1.885668,1.150055,1.702505 +0.350721,1.680033,2.087825,1.885559,1.155998,1.704134 +0.348797,1.672552,2.086943,1.885422,1.161921,1.705727 +0.346888,1.665032,2.086009,1.885257,1.167825,1.707285 +0.344994,1.657474,2.085025,1.885064,1.173710,1.708807 +0.343117,1.649878,2.083990,1.884842,1.179575,1.710294 +0.341257,1.642245,2.082905,1.884591,1.185422,1.711746 +0.339414,1.634577,2.081772,1.884311,1.191249,1.713162 +0.337589,1.626876,2.080591,1.884002,1.197058,1.714544 +0.335782,1.619141,2.079362,1.883663,1.202848,1.715891 +0.333993,1.611375,2.078086,1.883294,1.208620,1.717204 +0.332222,1.603578,2.076764,1.882895,1.214372,1.718482 +0.330471,1.595752,2.075397,1.882465,1.220107,1.719726 +0.328740,1.587897,2.073985,1.882004,1.225823,1.720936 +0.327028,1.580016,2.072528,1.881513,1.231521,1.722112 +0.325336,1.572108,2.071029,1.880990,1.237200,1.723254 +0.323665,1.564177,2.069487,1.880435,1.242862,1.724363 +0.322015,1.556222,2.067902,1.879849,1.248505,1.725438 +0.320386,1.548244,2.066277,1.879230,1.254130,1.726481 +0.318778,1.540246,2.064611,1.878579,1.259738,1.727490 +0.317192,1.532229,2.062905,1.877896,1.265327,1.728466 +0.315628,1.524193,2.061160,1.877179,1.270899,1.729410 +0.314087,1.516140,2.059377,1.876430,1.276453,1.730321 +0.312568,1.508071,2.057556,1.875646,1.281990,1.731200 +0.311072,1.499987,2.055699,1.874829,1.287508,1.732046 +0.309599,1.491890,2.053805,1.873978,1.293010,1.732861 +0.308149,1.483781,2.051875,1.873093,1.298494,1.733643 +0.306723,1.475661,2.049911,1.872173,1.303960,1.734394 +0.305320,1.467532,2.047913,1.871219,1.309409,1.735114 +0.303942,1.459395,2.045882,1.870229,1.314841,1.735802 +0.302588,1.451250,2.043818,1.869204,1.320256,1.736459 +0.301258,1.443100,2.041723,1.868143,1.325653,1.737084 +0.299952,1.434946,2.039596,1.867047,1.331034,1.737679 +0.298672,1.426788,2.037439,1.865914,1.336397,1.738243 +0.297416,1.418629,2.035253,1.864745,1.341743,1.738777 +0.296185,1.410469,2.033038,1.863539,1.347072,1.739280 +0.294979,1.402311,2.030795,1.862296,1.352384,1.739752 +0.293799,1.394154,2.028525,1.861017,1.357679,1.740195 +0.292644,1.386001,2.026228,1.859699,1.362957,1.740608 +0.291515,1.377853,2.023905,1.858344,1.368218,1.740991 +0.290411,1.369710,2.021557,1.856951,1.373462,1.741344 +0.289333,1.361575,2.019185,1.855520,1.378690,1.741668 +0.288280,1.353449,2.016790,1.854050,1.383900,1.741962 +0.287254,1.345333,2.014371,1.852542,1.389094,1.742227 +0.286253,1.337228,2.011931,1.850994,1.394270,1.742463 +0.285279,1.329136,2.009469,1.849407,1.399430,1.742670 +0.284330,1.321058,2.006987,1.847781,1.404573,1.742849 +0.283408,1.312995,2.004485,1.846115,1.409699,1.742999 +0.282511,1.304949,2.001963,1.844409,1.414809,1.743120 +0.281641,1.296920,1.999424,1.842663,1.419901,1.743213 +0.280796,1.288911,1.996867,1.840876,1.424977,1.743278 +0.279978,1.280922,1.994293,1.839049,1.430035,1.743315 +0.279186,1.272955,1.991703,1.837181,1.435077,1.743324 +0.278420,1.265011,1.989097,1.835271,1.440102,1.743305 +0.277679,1.257091,1.986477,1.833320,1.445110,1.743259 +0.276965,1.249197,1.983842,1.831327,1.450101,1.743185 +0.276277,1.241330,1.981195,1.829293,1.455075,1.743084 +0.275614,1.233492,1.978535,1.827216,1.460032,1.742955 +0.274977,1.225682,1.975863,1.825096,1.464972,1.742800 +0.274366,1.217904,1.973181,1.822935,1.469895,1.742617 +0.273781,1.210157,1.970487,1.820730,1.474800,1.742408 +0.273221,1.202444,1.967785,1.818482,1.479689,1.742172 +0.272686,1.194766,1.965073,1.816191,1.484560,1.741909 +0.272177,1.187123,1.962353,1.813856,1.489414,1.741620 +0.271692,1.179517,1.959625,1.811478,1.494251,1.741305 +0.271233,1.171950,1.956891,1.809055,1.499070,1.740963 +0.270798,1.164422,1.954151,1.806589,1.503871,1.740596 +0.270389,1.156935,1.951405,1.804078,1.508656,1.740202 +0.270004,1.149490,1.948654,1.801522,1.513422,1.739782 +0.269643,1.142089,1.945899,1.798922,1.518171,1.739337 +0.269306,1.134731,1.943141,1.796276,1.522902,1.738866 +0.268993,1.127420,1.940380,1.793586,1.527616,1.738370 +0.268705,1.120155,1.937617,1.790849,1.532311,1.737848 +0.268439,1.112939,1.934852,1.788068,1.536988,1.737301 +0.268198,1.105771,1.932087,1.785240,1.541648,1.736728 +0.267979,1.098654,1.929322,1.782366,1.546289,1.736131 +0.267784,1.091589,1.926557,1.779446,1.550912,1.735508 +0.267611,1.084577,1.923793,1.776480,1.555516,1.734861 +0.267460,1.077618,1.921031,1.773467,1.560102,1.734188 +0.267332,1.070714,1.918272,1.770407,1.564670,1.733491 +0.267226,1.063867,1.915516,1.767300,1.569219,1.732770 +0.267142,1.057076,1.912763,1.764146,1.573749,1.732024 +0.267079,1.050345,1.910014,1.760945,1.578260,1.731253 +0.267038,1.043672,1.907271,1.757696,1.582752,1.730458 +0.267017,1.037061,1.904533,1.754400,1.587224,1.729639 +0.267017,1.030511,1.901801,1.751056,1.591678,1.728795 +0.267038,1.024023,1.899076,1.747663,1.596112,1.727928 +0.267078,1.017600,1.896358,1.744223,1.600527,1.727036 +0.267138,1.011241,1.893647,1.740734,1.604921,1.726121 +0.267218,1.004948,1.890946,1.737197,1.609296,1.725181 +0.267317,0.998722,1.888253,1.733611,1.613651,1.724218 +0.267435,0.992564,1.885570,1.729976,1.617986,1.723231 +0.267571,0.986475,1.882896,1.726293,1.622301,1.722220 +0.267725,0.980456,1.880234,1.722560,1.626595,1.721186 +0.267897,0.974507,1.877582,1.718778,1.630869,1.720128 +0.268087,0.968631,1.874942,1.714947,1.635122,1.719047 +0.268294,0.962827,1.872314,1.711067,1.639354,1.717942 +0.268517,0.957097,1.869699,1.707136,1.643565,1.716814 +0.268757,0.951442,1.867098,1.703157,1.647755,1.715663 +0.269013,0.945862,1.864509,1.699127,1.651924,1.714488 +0.269285,0.940359,1.861935,1.695047,1.656070,1.713290 +0.269572,0.934933,1.859376,1.690918,1.660196,1.712069 +0.269874,0.929586,1.856832,1.686738,1.664299,1.710825 +0.270191,0.924317,1.854303,1.682508,1.668380,1.709558 +0.270522,0.919128,1.851791,1.678227,1.672439,1.708268 +0.270867,0.914020,1.849295,1.673897,1.676475,1.706955 +0.271225,0.908994,1.846816,1.669515,1.680489,1.705619 +0.271596,0.904050,1.844354,1.665083,1.684480,1.704260 +0.271980,0.899189,1.841910,1.660601,1.688448,1.702878 +0.272376,0.894413,1.839484,1.656067,1.692393,1.701474 +0.272784,0.889720,1.837077,1.651483,1.696314,1.700046 +0.273203,0.885114,1.834689,1.646848,1.700211,1.698596 +0.273634,0.880593,1.832320,1.642162,1.704085,1.697123 +0.274075,0.876159,1.829971,1.637425,1.707935,1.695628 +0.274526,0.871813,1.827643,1.632637,1.711760,1.694109 +0.274988,0.867555,1.825334,1.627798,1.715561,1.692568 +0.275458,0.863386,1.823047,1.622907,1.719338,1.691005 +0.275938,0.859306,1.820781,1.617965,1.723089,1.689418 +0.276426,0.855317,1.818536,1.612972,1.726815,1.687809 +0.276922,0.851418,1.816314,1.607928,1.730516,1.686178 +0.277427,0.847610,1.814113,1.602833,1.734192,1.684524 +0.277938,0.843895,1.811935,1.597686,1.737841,1.682847 +0.278457,0.840272,1.809780,1.592488,1.741465,1.681148 +0.278981,0.836742,1.807649,1.587238,1.745062,1.679426 +0.279512,0.833306,1.805540,1.581937,1.748633,1.677682 +0.280049,0.829964,1.803455,1.576585,1.752178,1.675915 +0.280591,0.826716,1.801394,1.571182,1.755695,1.674125 +0.281138,0.823563,1.799358,1.565727,1.759185,1.672313 +0.281689,0.820506,1.797346,1.560221,1.762648,1.670478 +0.282244,0.817545,1.795358,1.554663,1.766083,1.668621 +0.282803,0.814680,1.793396,1.549054,1.769490,1.666741 +0.283365,0.811913,1.791459,1.543394,1.772869,1.664838 +0.283929,0.809242,1.789547,1.537683,1.776219,1.662913 +0.284496,0.806669,1.787660,1.531920,1.779541,1.660965 +0.285065,0.804193,1.785800,1.526107,1.782834,1.658994 +0.285635,0.801816,1.783965,1.520242,1.786098,1.657001 +0.286206,0.799538,1.782157,1.514326,1.789333,1.654985 +0.286779,0.797358,1.780375,1.508360,1.792538,1.652946 +0.287351,0.795278,1.778619,1.502342,1.795713,1.650885 +0.287923,0.793297,1.776890,1.496274,1.798858,1.648801 +0.288495,0.791415,1.775188,1.490155,1.801972,1.646694 +0.289065,0.789634,1.773512,1.483985,1.805056,1.644564 +0.289635,0.787952,1.771864,1.477765,1.808109,1.642411 +0.290202,0.786371,1.770243,1.471494,1.811131,1.640235 +0.290768,0.784891,1.768649,1.465172,1.814122,1.638037 +0.291331,0.783510,1.767082,1.458801,1.817080,1.635815 +0.291891,0.782231,1.765543,1.452379,1.820007,1.633571 +0.292447,0.781053,1.764031,1.445908,1.822902,1.631303 +0.293000,0.779975,1.762547,1.439386,1.825764,1.629012 +0.293550,0.778999,1.761090,1.432815,1.828593,1.626699 +0.294094,0.778124,1.759661,1.426194,1.831390,1.624362 +0.294634,0.777350,1.758260,1.419523,1.834153,1.622001 +0.295169,0.776677,1.756886,1.412803,1.836882,1.619618 +0.295698,0.776105,1.755540,1.406034,1.839578,1.617211 +0.296221,0.775635,1.754222,1.399216,1.842240,1.614781 +0.296738,0.775266,1.752932,1.392349,1.844868,1.612327 +0.297249,0.774997,1.751669,1.385433,1.847461,1.609850 +0.297752,0.774830,1.750434,1.378469,1.850019,1.607350 +0.298249,0.774764,1.749227,1.371456,1.852542,1.604826 +0.298737,0.774799,1.748048,1.364395,1.855029,1.602278 +0.299218,0.774935,1.746896,1.357287,1.857481,1.599706 +0.299691,0.775171,1.745772,1.350130,1.859897,1.597111 +0.300155,0.775507,1.744676,1.342926,1.862277,1.594492 +0.300611,0.775944,1.743607,1.335674,1.864620,1.591849 +0.301057,0.776481,1.742565,1.328375,1.866927,1.589183 +0.301493,0.777118,1.741551,1.321030,1.869197,1.586492 +0.301920,0.777855,1.740564,1.313637,1.871429,1.583777 +0.302337,0.778691,1.739604,1.306199,1.873624,1.581038 +0.302744,0.779626,1.738671,1.298713,1.875782,1.578275 +0.303140,0.780660,1.737766,1.291182,1.877901,1.575487 +0.303525,0.781793,1.736887,1.283606,1.879982,1.572676 +0.303899,0.783024,1.736034,1.275983,1.882024,1.569840 +0.304262,0.784353,1.735209,1.268316,1.884028,1.566979 +0.304613,0.785779,1.734409,1.260603,1.885992,1.564094 +0.304952,0.787303,1.733636,1.252846,1.887918,1.561184 +0.305279,0.788924,1.732889,1.245045,1.889803,1.558250 +0.305594,0.790641,1.732168,1.237199,1.891649,1.555291 +0.305896,0.792454,1.731473,1.229310,1.893455,1.552307 +0.306186,0.794362,1.730803,1.221377,1.895220,1.549298 +0.306463,0.796366,1.730159,1.213401,1.896945,1.546264 +0.306726,0.798464,1.729540,1.205382,1.898629,1.543205 +0.306976,0.800657,1.728946,1.197320,1.900272,1.540122 +0.307213,0.802943,1.728376,1.189217,1.901873,1.537012 +0.307436,0.805322,1.727831,1.181071,1.903433,1.533878 +0.307645,0.807794,1.727311,1.172883,1.904951,1.530718 +0.307840,0.810358,1.726815,1.164655,1.906427,1.527533 +0.308021,0.813013,1.726342,1.156385,1.907860,1.524323 +0.308187,0.815760,1.725893,1.148075,1.909251,1.521087 +0.308339,0.818596,1.725468,1.139725,1.910599,1.517825 +0.308477,0.821523,1.725065,1.131335,1.911905,1.514537 +0.308600,0.824538,1.724686,1.122905,1.913166,1.511224 +0.308707,0.827642,1.724329,1.114437,1.914385,1.507885 +0.308801,0.830833,1.723994,1.105929,1.915559,1.504519 +0.308879,0.834112,1.723681,1.097384,1.916690,1.501128 +0.308942,0.837476,1.723390,1.088800,1.917776,1.497711 +0.308989,0.840927,1.723121,1.080179,1.918818,1.494267 +0.309022,0.844462,1.722872,1.071520,1.919815,1.490798 +0.309039,0.848082,1.722645,1.062825,1.920767,1.487302 +0.309041,0.851785,1.722438,1.054094,1.921674,1.483779 +0.309028,0.855571,1.722251,1.045326,1.922536,1.480230 +0.308999,0.859438,1.722084,1.036524,1.923352,1.476654 +0.308955,0.863387,1.721937,1.027686,1.924123,1.473052 +0.308895,0.867416,1.721809,1.018813,1.924847,1.469423 +0.308820,0.871524,1.721699,1.009907,1.925526,1.465768 +0.308729,0.875711,1.721609,1.000966,1.926157,1.462085 +0.308623,0.879976,1.721536,0.991992,1.926743,1.458375 +0.308501,0.884318,1.721482,0.982986,1.927281,1.454639 +0.308364,0.888736,1.721444,0.973947,1.927773,1.450875 +0.308212,0.893229,1.721424,0.964876,1.928217,1.447084 +0.308044,0.897796,1.721421,0.955774,1.928614,1.443266 +0.307861,0.902436,1.721434,0.946640,1.928963,1.439421 +0.307663,0.907149,1.721464,0.937477,1.929264,1.435548 +0.307450,0.911933,1.721509,0.928283,1.929518,1.431648 +0.307221,0.916788,1.721569,0.919060,1.929723,1.427720 +0.306978,0.921713,1.721644,0.909807,1.929880,1.423765 +0.306720,0.926706,1.721734,0.900526,1.929989,1.419782 +0.306447,0.931766,1.721837,0.891218,1.930048,1.415771 +0.306159,0.936893,1.721955,0.881881,1.930059,1.411733 +0.305857,0.942086,1.722086,0.872518,1.930021,1.407666 +0.305540,0.947343,1.722230,0.863128,1.929934,1.403572 +0.305210,0.952664,1.722386,0.853712,1.929797,1.399450 +0.304865,0.958048,1.722555,0.844271,1.929611,1.395300 +0.304506,0.963492,1.722735,0.834804,1.929375,1.391121 +0.304133,0.968998,1.722927,0.825314,1.929090,1.386915 +0.303747,0.974562,1.723129,0.815799,1.928754,1.382680 +0.303348,0.980185,1.723342,0.806262,1.928369,1.378417 +0.302935,0.985865,1.723566,0.796701,1.927933,1.374126 +0.302509,0.991601,1.723798,0.787118,1.927446,1.369806 +0.302071,0.997392,1.724041,0.777514,1.926910,1.365458 +0.301620,1.003237,1.724292,0.767889,1.926322,1.361082 +0.301156,1.009135,1.724551,0.758243,1.925684,1.356677 +0.300681,1.015084,1.724818,0.748577,1.924995,1.352243 +0.300194,1.021084,1.725094,0.738891,1.924254,1.347781 +0.299695,1.027133,1.725376,0.729187,1.923463,1.343291 +0.299185,1.033230,1.725665,0.719465,1.922620,1.338771 +0.298663,1.039374,1.725960,0.709725,1.921726,1.334223 +0.298131,1.045564,1.726261,0.699968,1.920780,1.329646 +0.297589,1.051799,1.726568,0.690194,1.919783,1.325040 +0.297036,1.058077,1.726879,0.680405,1.918734,1.320406 +0.296473,1.064398,1.727195,0.670600,1.917634,1.315742 +0.295901,1.070760,1.727516,0.660780,1.916481,1.311050 +0.295319,1.077161,1.727840,0.650947,1.915277,1.306329 +0.294729,1.083602,1.728167,0.641100,1.914020,1.301579 +0.294130,1.090079,1.728497,0.631240,1.912711,1.296799 +0.293522,1.096594,1.728830,0.621367,1.911350,1.291991 +0.292907,1.103143,1.729165,0.611483,1.909937,1.287154 +0.292284,1.109726,1.729501,0.601588,1.908471,1.282288 +0.291654,1.116342,1.729839,0.591683,1.906953,1.277393 +0.291017,1.122989,1.730177,0.581767,1.905383,1.272469 +0.290373,1.129666,1.730516,0.571843,1.903760,1.267516 +0.289724,1.136372,1.730854,0.561910,1.902084,1.262533 +0.289068,1.143106,1.731192,0.551968,1.900355,1.257522 +0.288408,1.149867,1.731529,0.542020,1.898574,1.252481 +0.287742,1.156652,1.731865,0.532065,1.896740,1.247412 +0.287072,1.163462,1.732199,0.522104,1.894854,1.242313 +0.286398,1.170294,1.732531,0.512137,1.892914,1.237186 +0.285720,1.177148,1.732860,0.502166,1.890922,1.232029 +0.285039,1.184021,1.733186,0.492190,1.888876,1.226843 +0.284356,1.190914,1.733509,0.482211,1.886778,1.221629 +0.283669,1.197824,1.733828,0.472229,1.884627,1.216385 +0.282981,1.204751,1.734142,0.462245,1.882422,1.211112 +0.282291,1.211693,1.734452,0.452259,1.880165,1.205810 +0.281601,1.218648,1.734757,0.442272,1.877855,1.200480 +0.280909,1.225617,1.735057,0.432285,1.875492,1.195120 +0.280218,1.232596,1.735350,0.422298,1.873076,1.189732 +0.279527,1.239586,1.735638,0.412312,1.870606,1.184314 +0.278837,1.246584,1.735919,0.402328,1.868084,1.178868 +0.278148,1.253590,1.736192,0.392346,1.865509,1.173393 +0.277461,1.260602,1.736459,0.382368,1.862881,1.167890 +0.276776,1.267619,1.736718,0.372392,1.860200,1.162357 +0.276094,1.274640,1.736968,0.362421,1.857466,1.156796 +0.275415,1.281663,1.737210,0.352455,1.854679,1.151207 +0.274739,1.288688,1.737443,0.342495,1.851839,1.145589 +0.274068,1.295712,1.737667,0.332540,1.848946,1.139942 +0.273402,1.302735,1.737882,0.322593,1.846001,1.134267 +0.272741,1.309755,1.738086,0.312653,1.843003,1.128564 +0.272086,1.316772,1.738280,0.302721,1.839952,1.122832 +0.271437,1.323784,1.738463,0.292798,1.836848,1.117072 +0.270795,1.330789,1.738636,0.282885,1.833692,1.111284 +0.270160,1.337786,1.738797,0.272982,1.830483,1.105468 +0.269533,1.344775,1.738946,0.263089,1.827222,1.099624 +0.268914,1.351754,1.739084,0.253208,1.823908,1.093752 +0.268305,1.358721,1.739209,0.243339,1.820542,1.087852 +0.267704,1.365676,1.739321,0.233483,1.817123,1.081925 +0.267114,1.372617,1.739421,0.223640,1.813652,1.075970 +0.266534,1.379543,1.739507,0.213812,1.810129,1.069987 +0.265965,1.386453,1.739579,0.203998,1.806554,1.063977 +0.265407,1.393346,1.739638,0.194199,1.802928,1.057939 +0.264862,1.400220,1.739683,0.184417,1.799249,1.051875 +0.264329,1.407074,1.739713,0.174651,1.795518,1.045783 +0.263809,1.413907,1.739728,0.164902,1.791736,1.039664 +0.263303,1.420717,1.739728,0.155171,1.787902,1.033519 +0.262811,1.427505,1.739713,0.145459,1.784016,1.027346 +0.262334,1.434267,1.739683,0.135767,1.780079,1.021147 +0.261872,1.441004,1.739636,0.126094,1.776091,1.014922 +0.261426,1.447714,1.739574,0.116441,1.772052,1.008670 +0.260997,1.454396,1.739495,0.106810,1.767961,1.002392 +0.260584,1.461049,1.739400,0.097200,1.763820,0.996088 +0.260189,1.467671,1.739287,0.087613,1.759628,0.989758 +0.259811,1.474262,1.739158,0.078049,1.755385,0.983402 +0.259452,1.480820,1.739012,0.068509,1.751091,0.977020 +0.259112,1.487344,1.738848,0.058993,1.746747,0.970613 +0.258792,1.493833,1.738666,0.049502,1.742353,0.964181 +0.258491,1.500286,1.738466,0.040037,1.737909,0.957723 +0.258212,1.506702,1.738249,0.030597,1.733414,0.951241 +0.257953,1.513080,1.738012,0.021185,1.728870,0.944733 +0.257716,1.519418,1.737758,0.011800,1.724276,0.938201 +0.257501,1.525716,1.737485,0.002442,1.719633,0.931645 +0.257309,1.531973,1.737193,-0.006886,1.714940,0.925064 +0.257140,1.538187,1.736882,-0.016185,1.710198,0.918459 +0.256995,1.544357,1.736551,-0.025455,1.705406,0.911831 +0.256873,1.550483,1.736202,-0.034694,1.700566,0.905178 +0.256777,1.556563,1.735833,-0.043902,1.695677,0.898502 +0.256706,1.562596,1.735444,-0.053078,1.690740,0.891803 +0.256660,1.568581,1.735036,-0.062222,1.685754,0.885080 +0.256641,1.574518,1.734608,-0.071333,1.680720,0.878335 +0.256648,1.580405,1.734159,-0.080411,1.675638,0.871567 +0.256683,1.586241,1.733691,-0.089455,1.670508,0.864776 +0.256745,1.592026,1.733203,-0.098464,1.665330,0.857964 +0.256835,1.597758,1.732694,-0.107438,1.660105,0.851129 +0.256954,1.603436,1.732164,-0.116377,1.654832,0.844272 +0.257102,1.609060,1.731615,-0.125279,1.649513,0.837394 +0.257280,1.614629,1.731044,-0.134145,1.644146,0.830494 +0.257487,1.620140,1.730454,-0.142973,1.638733,0.823573 +0.257725,1.625595,1.729842,-0.151763,1.633273,0.816632 +0.257993,1.630991,1.729210,-0.160514,1.627767,0.809670 +0.258293,1.636328,1.728557,-0.169227,1.622215,0.802687 +0.258625,1.641606,1.727883,-0.177900,1.616617,0.795685 +0.258989,1.646822,1.727188,-0.186533,1.610973,0.788662 +0.259385,1.651977,1.726472,-0.195125,1.605284,0.781620 +0.259815,1.657069,1.725736,-0.203677,1.599550,0.774559 +0.260277,1.662097,1.724978,-0.212186,1.593770,0.767478 +0.260774,1.667062,1.724200,-0.220654,1.587946,0.760379 +0.261304,1.671961,1.723401,-0.229078,1.582077,0.753261 +0.261870,1.676795,1.722581,-0.237460,1.576164,0.746125 +0.262470,1.681562,1.721740,-0.245798,1.570206,0.738971 +0.263105,1.686261,1.720878,-0.254091,1.564205,0.731800 +0.263776,1.690893,1.719995,-0.262340,1.558160,0.724611 +0.264483,1.695455,1.719092,-0.270544,1.552071,0.717405 +0.265227,1.699948,1.718167,-0.278702,1.545940,0.710182 +0.266007,1.704371,1.717223,-0.286813,1.539765,0.702943 +0.266824,1.708722,1.716257,-0.294879,1.533547,0.695688 +0.267678,1.713002,1.715271,-0.302897,1.527287,0.688417 +0.268570,1.717209,1.714265,-0.310868,1.520985,0.681130 +0.269500,1.721343,1.713238,-0.318790,1.514641,0.673828 +0.270469,1.725404,1.712191,-0.326664,1.508255,0.666511 +0.271475,1.729390,1.711123,-0.334490,1.501827,0.659180 +0.272521,1.733301,1.710036,-0.342266,1.495358,0.651834 +0.273606,1.737136,1.708928,-0.349992,1.488848,0.644475 +0.274729,1.740895,1.707801,-0.357668,1.482298,0.637102 +0.275893,1.744578,1.706654,-0.365293,1.475706,0.629716 +0.277096,1.748182,1.705488,-0.372868,1.469075,0.622316 +0.278339,1.751709,1.704302,-0.380391,1.462403,0.614905 +0.279623,1.755157,1.703097,-0.387862,1.455692,0.607481 +0.280946,1.758526,1.701872,-0.395281,1.448941,0.600045 +0.282311,1.761816,1.700629,-0.402647,1.442151,0.592598 +0.283716,1.765025,1.699367,-0.409961,1.435322,0.585140 +0.285162,1.768154,1.698086,-0.417221,1.428454,0.577671 +0.286650,1.771202,1.696787,-0.424427,1.421548,0.570191 +0.288178,1.774168,1.695469,-0.431579,1.414603,0.562702 +0.289748,1.777051,1.694134,-0.438677,1.407621,0.555203 +0.291360,1.779853,1.692780,-0.445720,1.400600,0.547694 +0.293013,1.782571,1.691409,-0.452707,1.393543,0.540177 +0.294708,1.785207,1.690021,-0.459639,1.386448,0.532651 +0.296445,1.787758,1.688615,-0.466516,1.379316,0.525117 +0.298224,1.790225,1.687192,-0.473336,1.372148,0.517576 +0.300045,1.792608,1.685753,-0.480099,1.364944,0.510027 +0.301908,1.794906,1.684297,-0.486806,1.357703,0.502471 +0.303813,1.797118,1.682825,-0.493456,1.350427,0.494908 +0.305760,1.799246,1.681337,-0.500048,1.343115,0.487340 +0.307750,1.801287,1.679833,-0.506583,1.335767,0.479765 +0.309781,1.803242,1.678314,-0.513059,1.328385,0.472185 +0.311855,1.805110,1.676779,-0.519478,1.320968,0.464601 +0.313971,1.806892,1.675230,-0.525837,1.313517,0.457012 +0.316129,1.808586,1.673666,-0.532138,1.306031,0.449418 +0.318330,1.810194,1.672087,-0.538380,1.298512,0.441821 +0.320572,1.811713,1.670495,-0.544563,1.290959,0.434221 +0.322857,1.813145,1.668889,-0.550686,1.283373,0.426618 +0.325183,1.814489,1.667269,-0.556749,1.275753,0.419012 +0.327551,1.815745,1.665636,-0.562752,1.268101,0.411405 +0.329962,1.816913,1.663991,-0.568694,1.260416,0.403796 +0.332413,1.817992,1.662333,-0.574577,1.252699,0.396185 +0.334906,1.818982,1.660662,-0.580398,1.244951,0.388574 +0.337441,1.819883,1.658980,-0.586159,1.237170,0.380963 +0.340017,1.820695,1.657287,-0.591858,1.229358,0.373352 +0.342634,1.821418,1.655582,-0.597497,1.221515,0.365742 +0.345292,1.822052,1.653867,-0.603073,1.213641,0.358132 +0.347991,1.822597,1.652141,-0.608588,1.205736,0.350525 +0.350730,1.823052,1.650405,-0.614041,1.197801,0.342919 +0.353509,1.823417,1.648659,-0.619433,1.189836,0.335315 +0.356329,1.823693,1.646904,-0.624761,1.181842,0.327715 +0.359188,1.823880,1.645140,-0.630028,1.173818,0.320117 +0.362087,1.823977,1.643367,-0.635232,1.165764,0.312524 +0.365025,1.823984,1.641587,-0.640374,1.157682,0.304935 +0.368003,1.823901,1.639798,-0.645453,1.149571,0.297350 +0.371019,1.823729,1.638002,-0.650469,1.141432,0.289771 +0.374073,1.823467,1.636198,-0.655422,1.133265,0.282197 +0.377166,1.823116,1.634389,-0.660312,1.125070,0.274629 +0.380296,1.822675,1.632572,-0.665138,1.116847,0.267068 +0.383464,1.822144,1.630750,-0.669902,1.108597,0.259514 +0.386669,1.821524,1.628923,-0.674602,1.100320,0.251967 +0.389911,1.820815,1.627090,-0.679238,1.092016,0.244429 +0.393189,1.820016,1.625253,-0.683811,1.083686,0.236899 +0.396503,1.819128,1.623412,-0.688321,1.075330,0.229377 +0.399853,1.818151,1.621566,-0.692767,1.066947,0.221866 +0.403238,1.817085,1.619718,-0.697149,1.058539,0.214364 +0.406658,1.815930,1.617866,-0.701467,1.050106,0.206872 +0.410111,1.814687,1.616012,-0.705722,1.041648,0.199391 +0.413599,1.813355,1.614156,-0.709912,1.033164,0.191922 +0.417120,1.811935,1.612298,-0.714039,1.024657,0.184464 +0.420674,1.810426,1.610439,-0.718102,1.016125,0.177019 +0.424260,1.808829,1.608579,-0.722101,1.007568,0.169586 +0.427878,1.807145,1.606719,-0.726036,0.998988,0.162167 +0.431527,1.805373,1.604858,-0.729907,0.990385,0.154761 +0.435207,1.803514,1.602999,-0.733714,0.981758,0.147370 +0.438917,1.801567,1.601140,-0.737458,0.973109,0.139994 +0.442658,1.799534,1.599283,-0.741137,0.964436,0.132632 +0.446427,1.797414,1.597427,-0.744753,0.955742,0.125287 +0.450225,1.795208,1.595574,-0.748304,0.947025,0.117957 +0.454050,1.792915,1.593724,-0.751792,0.938286,0.110644 +0.457903,1.790537,1.591876,-0.755216,0.929525,0.103349 +0.461783,1.788073,1.590033,-0.758577,0.920743,0.096071 +0.465689,1.785524,1.588194,-0.761874,0.911940,0.088811 +0.469620,1.782890,1.586359,-0.765107,0.903116,0.081570 +0.473577,1.780171,1.584529,-0.768276,0.894271,0.074348 +0.477557,1.777368,1.582705,-0.771382,0.885406,0.067146 +0.481561,1.774481,1.580886,-0.774425,0.876520,0.059963 +0.485588,1.771511,1.579074,-0.777405,0.867615,0.052802 +0.489637,1.768457,1.577269,-0.780321,0.858690,0.045661 +0.493707,1.765321,1.575471,-0.783174,0.849746,0.038543 +0.497798,1.762102,1.573681,-0.785964,0.840783,0.031446 +0.501909,1.758800,1.571899,-0.788691,0.831801,0.024372 +0.506039,1.755417,1.570126,-0.791356,0.822800,0.017321 +0.510188,1.751953,1.568362,-0.793957,0.813781,0.010293 +0.514354,1.748408,1.566608,-0.796497,0.804743,0.003290 +0.518537,1.744782,1.564863,-0.798973,0.795688,-0.003689 +0.522737,1.741076,1.563129,-0.801388,0.786615,-0.010642 +0.526952,1.737290,1.561406,-0.803740,0.777525,-0.017570 +0.531182,1.733425,1.559695,-0.806030,0.768417,-0.024472 +0.535425,1.729482,1.557995,-0.808259,0.759292,-0.031348 +0.539681,1.725459,1.556307,-0.810426,0.750151,-0.038196 +0.543950,1.721359,1.554633,-0.812531,0.740993,-0.045017 +0.548230,1.717182,1.552971,-0.814575,0.731820,-0.051810 +0.552521,1.712927,1.551323,-0.816558,0.722630,-0.058575 +0.556821,1.708596,1.549690,-0.818479,0.713424,-0.065310 +0.561130,1.704189,1.548070,-0.820340,0.704203,-0.072016 +0.565446,1.699707,1.546466,-0.822140,0.694966,-0.078693 +0.569770,1.695149,1.544877,-0.823880,0.685715,-0.085338 +0.574100,1.690517,1.543304,-0.825559,0.676448,-0.091953 +0.578436,1.685811,1.541747,-0.827179,0.667167,-0.098536 +0.582776,1.681031,1.540207,-0.828738,0.657872,-0.105088 +0.587119,1.676178,1.538684,-0.830238,0.648562,-0.111607 +0.591465,1.671253,1.537179,-0.831678,0.639239,-0.118094 +0.595812,1.666255,1.535691,-0.833059,0.629902,-0.124547 +0.600160,1.661186,1.534222,-0.834382,0.620551,-0.130966 +0.604509,1.656047,1.532772,-0.835645,0.611187,-0.137351 +0.608855,1.650836,1.531341,-0.836850,0.601810,-0.143701 +0.613200,1.645556,1.529929,-0.837996,0.592421,-0.150017 +0.617542,1.640207,1.528538,-0.839085,0.583018,-0.156296 +0.621880,1.634789,1.527167,-0.840115,0.573603,-0.162540 +0.626213,1.629303,1.525817,-0.841088,0.564177,-0.168747 +0.630540,1.623749,1.524488,-0.842004,0.554738,-0.174917 +0.634860,1.618128,1.523180,-0.842862,0.545287,-0.181049 +0.639173,1.612440,1.521895,-0.843664,0.535825,-0.187144 +0.643476,1.606687,1.520632,-0.844409,0.526352,-0.193200 +0.647770,1.600868,1.519392,-0.845098,0.516867,-0.199217 +0.652053,1.594984,1.518175,-0.845731,0.507372,-0.205195 +0.656324,1.589036,1.516981,-0.846308,0.497866,-0.211133 +0.660582,1.583025,1.515812,-0.846829,0.488349,-0.217031 +0.664827,1.576950,1.514666,-0.847295,0.478822,-0.222889 +0.669056,1.570813,1.513545,-0.847706,0.469286,-0.228705 +0.673270,1.564614,1.512449,-0.848063,0.459739,-0.234480 +0.677468,1.558354,1.511379,-0.848365,0.450183,-0.240213 +0.681647,1.552033,1.510334,-0.848613,0.440617,-0.245904 +0.685807,1.545651,1.509315,-0.848807,0.431042,-0.251551 +0.689948,1.539211,1.508322,-0.848948,0.421458,-0.257156 +0.694068,1.532711,1.507356,-0.849035,0.411865,-0.262717 +0.698166,1.526153,1.506417,-0.849069,0.402264,-0.268234 +0.702241,1.519538,1.505505,-0.849051,0.392654,-0.273706 +0.706292,1.512865,1.504621,-0.848980,0.383036,-0.279134 +0.710318,1.506136,1.503765,-0.848858,0.373410,-0.284516 +0.714318,1.499351,1.502936,-0.848683,0.363776,-0.289853 +0.718292,1.492510,1.502137,-0.848457,0.354134,-0.295144 +0.722237,1.485615,1.501366,-0.848180,0.344485,-0.300388 +0.726153,1.478665,1.500624,-0.847852,0.334829,-0.305585 +0.730039,1.471663,1.499911,-0.847474,0.325166,-0.310735 +0.733894,1.464607,1.499228,-0.847045,0.315495,-0.315837 +0.737717,1.457499,1.498575,-0.846567,0.305819,-0.320891 +0.741507,1.450339,1.497952,-0.846039,0.296135,-0.325897 +0.745263,1.443128,1.497359,-0.845461,0.286446,-0.330853 +0.748983,1.435867,1.496797,-0.844835,0.276750,-0.335761 +0.752667,1.428555,1.496265,-0.844160,0.267049,-0.340619 +0.756315,1.421195,1.495765,-0.843436,0.257341,-0.345427 +0.759924,1.413786,1.495296,-0.842665,0.247629,-0.350185 +0.763493,1.406328,1.494858,-0.841846,0.237911,-0.354892 +0.767023,1.398824,1.494452,-0.840979,0.228187,-0.359548 +0.770511,1.391272,1.494079,-0.840066,0.218459,-0.364153 +0.773957,1.383674,1.493737,-0.839106,0.208726,-0.368706 +0.777360,1.376030,1.493427,-0.838099,0.198989,-0.373207 +0.780719,1.368341,1.493150,-0.837046,0.189247,-0.377656 +0.784033,1.360608,1.492905,-0.835948,0.179501,-0.382051 +0.787300,1.352831,1.492694,-0.834804,0.169751,-0.386394 +0.790520,1.345010,1.492515,-0.833615,0.159997,-0.390684 +0.793692,1.337147,1.492369,-0.832381,0.150240,-0.394919 +0.796815,1.329241,1.492257,-0.831102,0.140479,-0.399101 +0.799888,1.321294,1.492178,-0.829780,0.130715,-0.403228 +0.802910,1.313306,1.492133,-0.828413,0.120948,-0.407301 +0.805881,1.305278,1.492121,-0.827004,0.111178,-0.411319 +0.808798,1.297210,1.492143,-0.825551,0.101405,-0.415281 +0.811661,1.289102,1.492199,-0.824055,0.091630,-0.419188 +0.814470,1.280956,1.492289,-0.822516,0.081852,-0.423039 +0.817223,1.272771,1.492413,-0.820935,0.072073,-0.426834 +0.819919,1.264549,1.492571,-0.819313,0.062291,-0.430572 +0.822558,1.256290,1.492763,-0.817648,0.052508,-0.434254 +0.825138,1.247995,1.492989,-0.815943,0.042723,-0.437879 +0.827659,1.239663,1.493250,-0.814196,0.032936,-0.441446 +0.830120,1.231297,1.493545,-0.812409,0.023149,-0.444956 +0.832520,1.222895,1.493875,-0.810581,0.013360,-0.448409 +0.834858,1.214459,1.494239,-0.808714,0.003571,-0.451803 +0.837133,1.205990,1.494638,-0.806806,-0.006219,-0.455139 +0.839344,1.197487,1.495071,-0.804860,-0.016010,-0.458417 +0.841491,1.188952,1.495539,-0.802874,-0.025801,-0.461636 +0.843573,1.180385,1.496041,-0.800849,-0.035592,-0.464795 +0.845588,1.171786,1.496578,-0.798786,-0.045383,-0.467896 +0.847537,1.163156,1.497149,-0.796684,-0.055173,-0.470938 +0.849417,1.154495,1.497755,-0.794545,-0.064963,-0.473919 +0.851230,1.145805,1.498395,-0.792368,-0.074752,-0.476841 +0.852973,1.137085,1.499070,-0.790154,-0.084541,-0.479703 +0.854645,1.128335,1.499779,-0.787903,-0.094328,-0.482505 +0.856247,1.119558,1.500523,-0.785615,-0.104115,-0.485246 +0.857778,1.110752,1.501300,-0.783290,-0.113900,-0.487927 +0.859236,1.101919,1.502112,-0.780930,-0.123683,-0.490547 +0.860621,1.093059,1.502958,-0.778533,-0.133464,-0.493106 +0.861932,1.084173,1.503838,-0.776101,-0.143244,-0.495603 +0.863169,1.075260,1.504752,-0.773634,-0.153021,-0.498040 +0.864331,1.066322,1.505700,-0.771131,-0.162796,-0.500415 +0.865417,1.057358,1.506681,-0.768594,-0.172568,-0.502728 +0.866426,1.048370,1.507697,-0.766022,-0.182337,-0.504980 +0.867359,1.039358,1.508745,-0.763416,-0.192104,-0.507169 +0.868213,1.030322,1.509827,-0.760777,-0.201867,-0.509297 +0.868990,1.021263,1.510942,-0.758103,-0.211627,-0.511362 +0.869687,1.012181,1.512090,-0.755396,-0.221384,-0.513365 +0.870305,1.003077,1.513271,-0.752656,-0.231136,-0.515306 +0.870843,0.993951,1.514485,-0.749883,-0.240885,-0.517184 +0.871299,0.984803,1.515731,-0.747077,-0.250630,-0.519000 +0.871675,0.975635,1.517010,-0.744239,-0.260370,-0.520753 +0.871969,0.966445,1.518321,-0.741369,-0.270106,-0.522442 +0.872181,0.957236,1.519664,-0.738466,-0.279837,-0.524069 +0.872310,0.948006,1.521038,-0.735533,-0.289563,-0.525633 +0.872355,0.938757,1.522444,-0.732567,-0.299284,-0.527134 +0.872317,0.929490,1.523881,-0.729570,-0.308999,-0.528572 +0.872195,0.920203,1.525350,-0.726543,-0.318709,-0.529946 +0.871988,0.910899,1.526849,-0.723484,-0.328413,-0.531257 +0.871696,0.901576,1.528379,-0.720395,-0.338111,-0.532505 +0.871319,0.892237,1.529939,-0.717276,-0.347803,-0.533689 +0.870855,0.882880,1.531529,-0.714127,-0.357489,-0.534810 +0.870306,0.873507,1.533149,-0.710947,-0.367168,-0.535867 +0.869670,0.864117,1.534798,-0.707738,-0.376840,-0.536861 +0.868947,0.854711,1.536477,-0.704500,-0.386505,-0.537791 +0.868136,0.845290,1.538185,-0.701232,-0.396163,-0.538658 +0.867238,0.835854,1.539921,-0.697935,-0.405814,-0.539461 +0.866253,0.826402,1.541685,-0.694609,-0.415456,-0.540201 +0.865179,0.816937,1.543478,-0.691254,-0.425091,-0.540876 +0.864017,0.807457,1.545298,-0.687871,-0.434718,-0.541489 +0.862766,0.797963,1.547145,-0.684460,-0.444336,-0.542037 +0.861426,0.788456,1.549020,-0.681020,-0.453946,-0.542523 +0.859997,0.778935,1.550921,-0.677552,-0.463547,-0.542944 +0.858479,0.769402,1.552848,-0.674057,-0.473139,-0.543302 +0.856872,0.759856,1.554802,-0.670533,-0.482722,-0.543597 +0.855175,0.750298,1.556781,-0.666983,-0.492296,-0.543828 +0.853388,0.740728,1.558785,-0.663404,-0.501859,-0.543996 +0.851512,0.731146,1.560814,-0.659799,-0.511413,-0.544101 +0.849546,0.721554,1.562867,-0.656166,-0.520957,-0.544142 +0.847490,0.711950,1.564944,-0.652507,-0.530490,-0.544120 +0.845343,0.702335,1.567045,-0.648821,-0.540013,-0.544035 +0.843107,0.692710,1.569169,-0.645108,-0.549525,-0.543887 +0.840781,0.683074,1.571316,-0.641368,-0.559026,-0.543676 +0.838365,0.673429,1.573485,-0.637603,-0.568515,-0.543402 +0.835858,0.663774,1.575676,-0.633811,-0.577993,-0.543065 +0.833262,0.654110,1.577889,-0.629992,-0.587460,-0.542666 +0.830575,0.644437,1.580123,-0.626148,-0.596914,-0.542204 +0.827799,0.634755,1.582377,-0.622278,-0.606356,-0.541680 +0.824933,0.625064,1.584652,-0.618382,-0.615786,-0.541093 +0.821977,0.615365,1.586946,-0.614460,-0.625202,-0.540444 +0.818932,0.605657,1.589259,-0.610512,-0.634606,-0.539733 +0.815797,0.595942,1.591591,-0.606539,-0.643997,-0.538961 +0.812574,0.586220,1.593942,-0.602541,-0.653374,-0.538126 +0.809261,0.576489,1.596310,-0.598517,-0.662737,-0.537230 +0.805859,0.566752,1.598695,-0.594468,-0.672087,-0.536272 +0.802369,0.557008,1.601097,-0.590393,-0.681422,-0.535253 +0.798790,0.547257,1.603516,-0.586294,-0.690743,-0.534173 +0.795124,0.537499,1.605950,-0.582169,-0.700049,-0.533033 +0.791369,0.527735,1.608400,-0.578020,-0.709340,-0.531831 +0.787527,0.517965,1.610864,-0.573845,-0.718616,-0.530569 +0.783598,0.508190,1.613343,-0.569646,-0.727876,-0.529246 +0.779583,0.498408,1.615835,-0.565421,-0.737120,-0.527863 +0.775480,0.488621,1.618341,-0.561172,-0.746349,-0.526420 +0.771292,0.478829,1.620859,-0.556898,-0.755561,-0.524918 +0.767018,0.469031,1.623389,-0.552599,-0.764757,-0.523356 +0.762659,0.459229,1.625931,-0.548276,-0.773936,-0.521735 +0.758215,0.449422,1.628484,-0.543928,-0.783098,-0.520054 +0.753687,0.439610,1.631048,-0.539556,-0.792242,-0.518315 +0.749075,0.429794,1.633621,-0.535158,-0.801369,-0.516517 +0.744380,0.419974,1.636203,-0.530736,-0.810478,-0.514661 +0.739602,0.410150,1.638795,-0.526290,-0.819569,-0.512747 +0.734741,0.400322,1.641394,-0.521819,-0.828641,-0.510775 +0.729799,0.390490,1.644002,-0.517323,-0.837695,-0.508745 +0.724776,0.380655,1.646616,-0.512803,-0.846730,-0.506658 +0.719672,0.370816,1.649237,-0.508259,-0.855745,-0.504514 +0.714488,0.360974,1.651863,-0.503689,-0.864741,-0.502314 +0.709225,0.351129,1.654495,-0.499096,-0.873718,-0.500057 +0.703884,0.341281,1.657132,-0.494477,-0.882674,-0.497743 +0.698464,0.331431,1.659772,-0.489834,-0.891609,-0.495374 +0.692967,0.321578,1.662417,-0.485167,-0.900525,-0.492950 +0.687394,0.311722,1.665064,-0.480474,-0.909419,-0.490470 +0.681745,0.301864,1.667713,-0.475757,-0.918292,-0.487935 +0.676020,0.292004,1.670364,-0.471016,-0.927144,-0.485346 +0.670221,0.282142,1.673017,-0.466249,-0.935973,-0.482702 +0.664349,0.272279,1.675669,-0.461458,-0.944781,-0.480005 +0.658404,0.262413,1.678322,-0.456642,-0.953567,-0.477254 +0.652387,0.252546,1.680974,-0.451802,-0.962330,-0.474450 +0.646299,0.242677,1.683624,-0.446936,-0.971070,-0.471592 +0.640141,0.232807,1.686272,-0.442045,-0.979786,-0.468683 +0.633913,0.222936,1.688918,-0.437130,-0.988480,-0.465721 +0.627617,0.213064,1.691561,-0.432189,-0.997149,-0.462707 +0.621253,0.203191,1.694200,-0.427223,-1.005795,-0.459642 +0.614822,0.193317,1.696834,-0.422232,-1.014416,-0.456526 +0.608326,0.183443,1.699463,-0.417216,-1.023012,-0.453359 +0.601765,0.173568,1.702086,-0.412174,-1.031583,-0.450142 +0.595140,0.163693,1.704703,-0.407107,-1.040130,-0.446875 +0.588452,0.153817,1.707313,-0.402015,-1.048650,-0.443558 +0.581702,0.143941,1.709916,-0.396897,-1.057145,-0.440192 +0.574892,0.134066,1.712510,-0.391754,-1.065614,-0.436778 +0.568022,0.124190,1.715095,-0.386585,-1.074056,-0.433315 +0.561093,0.114315,1.717671,-0.381390,-1.082472,-0.429805 +0.554106,0.104440,1.720236,-0.376169,-1.090861,-0.426247 +0.547063,0.094566,1.722790,-0.370922,-1.099222,-0.422642 +0.539964,0.084692,1.725334,-0.365650,-1.107556,-0.418990 +0.532811,0.074820,1.727865,-0.360351,-1.115862,-0.415292 +0.525604,0.064948,1.730383,-0.355026,-1.124139,-0.411549 +0.518346,0.055077,1.732888,-0.349675,-1.132388,-0.407760 +0.511036,0.045207,1.735379,-0.344297,-1.140609,-0.403926 +0.503677,0.035339,1.737855,-0.338893,-1.148800,-0.400048 +0.496269,0.025472,1.740316,-0.333462,-1.156962,-0.396126 +0.488814,0.015606,1.742761,-0.328004,-1.165094,-0.392161 +0.481312,0.005743,1.745190,-0.322520,-1.173196,-0.388153 +0.473765,-0.004119,1.747601,-0.317009,-1.181268,-0.384102 +0.466175,-0.013979,1.749994,-0.311471,-1.189309,-0.380009 +0.458542,-0.023836,1.752369,-0.305906,-1.197319,-0.375874 +0.450868,-0.033692,1.754725,-0.300313,-1.205299,-0.371699 +0.443154,-0.043545,1.757062,-0.294694,-1.213246,-0.367483 +0.435401,-0.053395,1.759378,-0.289046,-1.221162,-0.363226 +0.427611,-0.063243,1.761673,-0.283372,-1.229046,-0.358930 +0.419784,-0.073088,1.763946,-0.277669,-1.236898,-0.354595 +0.411923,-0.082930,1.766197,-0.271939,-1.244716,-0.350222 +0.404029,-0.092768,1.768426,-0.266181,-1.252502,-0.345810 +0.396102,-0.102604,1.770631,-0.260395,-1.260255,-0.341361 +0.388145,-0.112436,1.772811,-0.254581,-1.267974,-0.336874 +0.380158,-0.122264,1.774968,-0.248738,-1.275659,-0.332351 +0.372143,-0.132089,1.777098,-0.242867,-1.283310,-0.327792 +0.364101,-0.141909,1.779203,-0.236968,-1.290927,-0.323198 +0.356034,-0.151726,1.781282,-0.231041,-1.298508,-0.318568 +0.347944,-0.161538,1.783333,-0.225084,-1.306055,-0.313905 +0.339831,-0.171346,1.785357,-0.219099,-1.313567,-0.309207 +0.331697,-0.181149,1.787352,-0.213085,-1.321043,-0.304476 +0.323543,-0.190948,1.789319,-0.207041,-1.328482,-0.299711 +0.315371,-0.200742,1.791255,-0.200969,-1.335886,-0.294915 +0.307182,-0.210530,1.793162,-0.194868,-1.343254,-0.290087 +0.298978,-0.220313,1.795038,-0.188737,-1.350584,-0.285228 +0.290761,-0.230091,1.796883,-0.182576,-1.357878,-0.280338 +0.282531,-0.239863,1.798696,-0.176386,-1.365134,-0.275418 +0.274290,-0.249629,1.800477,-0.170166,-1.372352,-0.270469 +0.266039,-0.259389,1.802224,-0.163917,-1.379533,-0.265490 +0.257781,-0.269142,1.803938,-0.157637,-1.386675,-0.260483 +0.249516,-0.278890,1.805618,-0.151328,-1.393779,-0.255449 +0.241246,-0.288630,1.807263,-0.144988,-1.400845,-0.250387 +0.232973,-0.298364,1.808873,-0.138618,-1.407871,-0.245298 +0.224698,-0.308090,1.810447,-0.132218,-1.414858,-0.240184 +0.216422,-0.317809,1.811985,-0.125788,-1.421806,-0.235044 +0.208147,-0.327521,1.813486,-0.119326,-1.428713,-0.229879 +0.199875,-0.337225,1.814950,-0.112835,-1.435581,-0.224689 +0.191607,-0.346920,1.816375,-0.106312,-1.442408,-0.219476 +0.183345,-0.356608,1.817762,-0.099759,-1.449195,-0.214240 +0.175090,-0.366287,1.819110,-0.093174,-1.455940,-0.208981 +0.166843,-0.375957,1.820418,-0.086559,-1.462645,-0.203701 +0.158607,-0.385619,1.821687,-0.079913,-1.469308,-0.198398 +0.150382,-0.395271,1.822914,-0.073235,-1.475930,-0.193076 +0.142171,-0.404913,1.824101,-0.066526,-1.482509,-0.187732 +0.133975,-0.414546,1.825246,-0.059786,-1.489047,-0.182370 +0.125794,-0.424169,1.826349,-0.053014,-1.495542,-0.176988 +0.117632,-0.433782,1.827409,-0.046211,-1.501994,-0.171588 +0.109489,-0.443384,1.828427,-0.039376,-1.508403,-0.166170 +0.101367,-0.452975,1.829400,-0.032510,-1.514770,-0.160736 +0.093267,-0.462555,1.830330,-0.025612,-1.521092,-0.155284 +0.085192,-0.472124,1.831216,-0.018682,-1.527372,-0.149817 +0.077142,-0.481681,1.832056,-0.011720,-1.533607,-0.144334 +0.069118,-0.491226,1.832851,-0.004727,-1.539798,-0.138837 +0.061124,-0.500759,1.833600,0.002299,-1.545945,-0.133325 +0.053160,-0.510280,1.834303,0.009356,-1.552048,-0.127801 +0.045227,-0.519787,1.834959,0.016446,-1.558105,-0.122263 +0.037328,-0.529281,1.835568,0.023567,-1.564118,-0.116713 +0.029463,-0.538762,1.836129,0.030721,-1.570085,-0.111152 +0.021634,-0.548229,1.836642,0.037907,-1.576007,-0.105579 +0.013843,-0.557681,1.837107,0.045125,-1.581884,-0.099996 +0.006092,-0.567119,1.837523,0.052375,-1.587714,-0.094404 +-0.001619,-0.576543,1.837890,0.059658,-1.593498,-0.088802 +-0.009288,-0.585951,1.838207,0.066972,-1.599237,-0.083192 +-0.016913,-0.595343,1.838474,0.074319,-1.604928,-0.077574 +-0.024492,-0.604720,1.838690,0.081699,-1.610573,-0.071949 +-0.032025,-0.614080,1.838856,0.089110,-1.616172,-0.066317 +-0.039510,-0.623424,1.838971,0.096554,-1.621723,-0.060680 +-0.046945,-0.632751,1.839034,0.104030,-1.627227,-0.055037 +-0.054329,-0.642060,1.839045,0.111538,-1.632683,-0.049389 +-0.061661,-0.651352,1.839004,0.119079,-1.638092,-0.043737 +-0.068938,-0.660625,1.838911,0.126651,-1.643453,-0.038082 +-0.076160,-0.669880,1.838764,0.134256,-1.648767,-0.032424 +-0.083325,-0.679116,1.838564,0.141893,-1.654032,-0.026764 +-0.090432,-0.688333,1.838311,0.149562,-1.659249,-0.021102 +-0.097479,-0.697530,1.838004,0.157263,-1.664417,-0.015440 +-0.104465,-0.706707,1.837642,0.164997,-1.669537,-0.009777 +-0.111388,-0.715863,1.837226,0.172762,-1.674608,-0.004115 +-0.118247,-0.724998,1.836756,0.180559,-1.679631,0.001547 +-0.125041,-0.734112,1.836230,0.188388,-1.684604,0.007207 +-0.131768,-0.743205,1.835649,0.196248,-1.689528,0.012864 +-0.138428,-0.752274,1.835012,0.204141,-1.694403,0.018519 +-0.145017,-0.761322,1.834319,0.212065,-1.699229,0.024170 +-0.151536,-0.770346,1.833570,0.220020,-1.704005,0.029817 +-0.157983,-0.779346,1.832765,0.228007,-1.708731,0.035460 +-0.164357,-0.788323,1.831903,0.236026,-1.713408,0.041097 +-0.170655,-0.797275,1.830984,0.244075,-1.718035,0.046727 +-0.176878,-0.806202,1.830009,0.252156,-1.722612,0.052352 +-0.183024,-0.815104,1.828975,0.260268,-1.727138,0.057969 +-0.189091,-0.823979,1.827884,0.268410,-1.731615,0.063578 +-0.195078,-0.832829,1.826736,0.276584,-1.736041,0.069178 +-0.200984,-0.841651,1.825529,0.284787,-1.740417,0.074770 +-0.206808,-0.850446,1.824265,0.293022,-1.744742,0.080351 +-0.212548,-0.859214,1.822942,0.301286,-1.749017,0.085922 +-0.218204,-0.867953,1.821560,0.309581,-1.753241,0.091482 +-0.223774,-0.876663,1.820120,0.317906,-1.757415,0.097031 +-0.229257,-0.885344,1.818621,0.326261,-1.761538,0.102567 +-0.234651,-0.893995,1.817062,0.334645,-1.765610,0.108091 +-0.239957,-0.902616,1.815445,0.343058,-1.769631,0.113601 +-0.245172,-0.911206,1.813768,0.351501,-1.773601,0.119096 +-0.250295,-0.919764,1.812032,0.359973,-1.777520,0.124577 +-0.255326,-0.928291,1.810237,0.368474,-1.781389,0.130043 +-0.260263,-0.936785,1.808381,0.377003,-1.785206,0.135493 +-0.265105,-0.945246,1.806466,0.385561,-1.788972,0.140926 +-0.269852,-0.953674,1.804491,0.394147,-1.792688,0.146342 +-0.274501,-0.962067,1.802456,0.402761,-1.796352,0.151741 +-0.279053,-0.970426,1.800361,0.411403,-1.799965,0.157121 +-0.283506,-0.978750,1.798206,0.420072,-1.803527,0.162482 +-0.287859,-0.987039,1.795991,0.428768,-1.807038,0.167823 +-0.292112,-0.995290,1.793715,0.437491,-1.810497,0.173145 +-0.296263,-1.003506,1.791378,0.446241,-1.813906,0.178446 +-0.300311,-1.011684,1.788982,0.455017,-1.817264,0.183725 +-0.304256,-1.019823,1.786525,0.463819,-1.820570,0.188982 +-0.308096,-1.027925,1.784007,0.472647,-1.823825,0.194217 +-0.311832,-1.035987,1.781429,0.481501,-1.827030,0.199429 +-0.315461,-1.044010,1.778790,0.490379,-1.830183,0.204617 +-0.318983,-1.051993,1.776091,0.499283,-1.833286,0.209781 +-0.322398,-1.059934,1.773331,0.508211,-1.836337,0.214920 +-0.325704,-1.067835,1.770511,0.517163,-1.839338,0.220033 +-0.328901,-1.075693,1.767630,0.526139,-1.842288,0.225121 +-0.331988,-1.083509,1.764688,0.535138,-1.845188,0.230182 +-0.334965,-1.091282,1.761686,0.544160,-1.848036,0.235216 +-0.337830,-1.099011,1.758623,0.553206,-1.850834,0.240222 +-0.340583,-1.106696,1.755500,0.562273,-1.853582,0.245200 +-0.343224,-1.114335,1.752316,0.571363,-1.856279,0.250149 +-0.345751,-1.121930,1.749072,0.580474,-1.858926,0.255069 +-0.348164,-1.129478,1.745767,0.589607,-1.861523,0.259959 +-0.350463,-1.136980,1.742402,0.598760,-1.864070,0.264818 +-0.352647,-1.144434,1.738977,0.607933,-1.866566,0.269646 +-0.354715,-1.151840,1.735492,0.617127,-1.869013,0.274443 +-0.356667,-1.159198,1.731946,0.626340,-1.871410,0.279208 +-0.358502,-1.166507,1.728341,0.635572,-1.873757,0.283940 +-0.360220,-1.173766,1.724676,0.644823,-1.876055,0.288639 +-0.361821,-1.180974,1.720950,0.654092,-1.878304,0.293304 +-0.363304,-1.188132,1.717166,0.663379,-1.880503,0.297935 +-0.364668,-1.195238,1.713321,0.672683,-1.882653,0.302531 +-0.365914,-1.202292,1.709417,0.682004,-1.884755,0.307092 +-0.367040,-1.209293,1.705454,0.691341,-1.886807,0.311617 +-0.368047,-1.216241,1.701431,0.700694,-1.888811,0.316106 +-0.368934,-1.223135,1.697350,0.710062,-1.890767,0.320558 +-0.369701,-1.229974,1.693209,0.719445,-1.892674,0.324972 +-0.370348,-1.236758,1.689010,0.728842,-1.894534,0.329349 +-0.370874,-1.243486,1.684752,0.738254,-1.896345,0.333687 +-0.371279,-1.250158,1.680435,0.747678,-1.898109,0.337987 +-0.371563,-1.256772,1.676060,0.757115,-1.899826,0.342247 +-0.371726,-1.263329,1.671628,0.766564,-1.901495,0.346467 +-0.371768,-1.269828,1.667137,0.776025,-1.903117,0.350647 +-0.371688,-1.276267,1.662588,0.785497,-1.904693,0.354787 +-0.371486,-1.282648,1.657981,0.794979,-1.906221,0.358885 +-0.371163,-1.288968,1.653318,0.804471,-1.907704,0.362941 +-0.370718,-1.295227,1.648597,0.813972,-1.909140,0.366955 +-0.370152,-1.301425,1.643819,0.823483,-1.910531,0.370926 +-0.369464,-1.307561,1.638984,0.833001,-1.911876,0.374855 +-0.368653,-1.313635,1.634093,0.842527,-1.913175,0.378739 +-0.367722,-1.319645,1.629145,0.852059,-1.914430,0.382580 +-0.366668,-1.325592,1.624141,0.861598,-1.915639,0.386376 +-0.365493,-1.331474,1.619081,0.871143,-1.916804,0.390127 +-0.364197,-1.337292,1.613966,0.880692,-1.917925,0.393833 +-0.362779,-1.343043,1.608795,0.890246,-1.919002,0.397493 +-0.361241,-1.348729,1.603569,0.899804,-1.920035,0.401107 +-0.359581,-1.354348,1.598288,0.909364,-1.921024,0.404674 +-0.357801,-1.359900,1.592953,0.918928,-1.921971,0.408194 +-0.355900,-1.365384,1.587563,0.928492,-1.922874,0.411666 +-0.353879,-1.370800,1.582119,0.938058,-1.923736,0.415091 +-0.351737,-1.376146,1.576621,0.947624,-1.924554,0.418467 +-0.349477,-1.381423,1.571069,0.957190,-1.925331,0.421795 +-0.347097,-1.386630,1.565464,0.966755,-1.926067,0.425073 +-0.344598,-1.391766,1.559806,0.976318,-1.926761,0.428302 +-0.341980,-1.396831,1.554096,0.985879,-1.927414,0.431481 +-0.339245,-1.401824,1.548332,0.995437,-1.928027,0.434609 +-0.336392,-1.406744,1.542517,1.004990,-1.928600,0.437687 +-0.333421,-1.411592,1.536650,1.014540,-1.929132,0.440714 +-0.330334,-1.416366,1.530731,1.024083,-1.929626,0.443689 +-0.327130,-1.421066,1.524761,1.033621,-1.930080,0.446613 +-0.323810,-1.425691,1.518740,1.043152,-1.930495,0.449484 +-0.320376,-1.430242,1.512668,1.052675,-1.930872,0.452303 +-0.316827,-1.434717,1.506546,1.062190,-1.931211,0.455069 +-0.313163,-1.439115,1.500374,1.071696,-1.931512,0.457782 +-0.309386,-1.443437,1.494152,1.081192,-1.931776,0.460441 +-0.305497,-1.447682,1.487880,1.090678,-1.932003,0.463046 +-0.301495,-1.451849,1.481560,1.100152,-1.932193,0.465597 +-0.297382,-1.455938,1.475191,1.109614,-1.932348,0.468093 +-0.293158,-1.459948,1.468774,1.119063,-1.932466,0.470535 +-0.288824,-1.463880,1.462308,1.128498,-1.932550,0.472921 +-0.284381,-1.467731,1.455795,1.137918,-1.932598,0.475252 +-0.279830,-1.471503,1.449234,1.147324,-1.932613,0.477527 +-0.275170,-1.475193,1.442627,1.156713,-1.932593,0.479746 +-0.270404,-1.478803,1.435973,1.166085,-1.932539,0.481908 +-0.265532,-1.482332,1.429272,1.175439,-1.932452,0.484014 +-0.260555,-1.485778,1.422525,1.184774,-1.932333,0.486062 +-0.255474,-1.489142,1.415733,1.194090,-1.932181,0.488054 +-0.250289,-1.492423,1.408896,1.203386,-1.931998,0.489987 +-0.245002,-1.495621,1.402013,1.212661,-1.931783,0.491863 +-0.239613,-1.498735,1.395086,1.221914,-1.931537,0.493681 +-0.234124,-1.501766,1.388115,1.231143,-1.931260,0.495440 +-0.228535,-1.504711,1.381100,1.240350,-1.930954,0.497141 +-0.222848,-1.507572,1.374041,1.249531,-1.930617,0.498783 +-0.217064,-1.510348,1.366940,1.258688,-1.930252,0.500366 +-0.211183,-1.513038,1.359795,1.267818,-1.929858,0.501889 +-0.205207,-1.515641,1.352609,1.276921,-1.929436,0.503353 +-0.199136,-1.518159,1.345380,1.285996,-1.928986,0.504757 +-0.192973,-1.520590,1.338109,1.295043,-1.928509,0.506101 +-0.186717,-1.522933,1.330798,1.304059,-1.928005,0.507384 +-0.180371,-1.525190,1.323445,1.313046,-1.927474,0.508607 +-0.173935,-1.527358,1.316052,1.322000,-1.926918,0.509770 +-0.167410,-1.529439,1.308619,1.330923,-1.926337,0.510871 +-0.160799,-1.531431,1.301146,1.339812,-1.925731,0.511912 +-0.154101,-1.533334,1.293634,1.348668,-1.925100,0.512891 +-0.147319,-1.535148,1.286083,1.357488,-1.924446,0.513808 +-0.140452,-1.536874,1.278493,1.366273,-1.923768,0.514664 +-0.133504,-1.538509,1.270864,1.375020,-1.923067,0.515458 +-0.126475,-1.540055,1.263198,1.383731,-1.922344,0.516191 +-0.119366,-1.541510,1.255495,1.392403,-1.921599,0.516861 +-0.112179,-1.542876,1.247754,1.401035,-1.920833,0.517468 +-0.104915,-1.544151,1.239977,1.409628,-1.920046,0.518013 +-0.097575,-1.545335,1.232163,1.418179,-1.919239,0.518496 +-0.090161,-1.546428,1.224313,1.426688,-1.918412,0.518915 +-0.082675,-1.547430,1.216428,1.435154,-1.917566,0.519272 +-0.075117,-1.548340,1.208508,1.443577,-1.916701,0.519566 +-0.067488,-1.549159,1.200552,1.451955,-1.915817,0.519796 +-0.059792,-1.549886,1.192563,1.460287,-1.914916,0.519964 +-0.052028,-1.550521,1.184539,1.468572,-1.913998,0.520067 +-0.044198,-1.551065,1.176481,1.476811,-1.913063,0.520108 +-0.036305,-1.551516,1.168390,1.485001,-1.912112,0.520084 +-0.028349,-1.551874,1.160267,1.493142,-1.911146,0.519997 +-0.020331,-1.552140,1.152110,1.501233,-1.910164,0.519846 +-0.012254,-1.552314,1.143922,1.509273,-1.909168,0.519631 +-0.004119,-1.552395,1.135701,1.517261,-1.908158,0.519353 +0.004073,-1.552383,1.127450,1.525196,-1.907134,0.519010 +0.012320,-1.552279,1.119167,1.533078,-1.906097,0.518603 +0.020620,-1.552081,1.110853,1.540906,-1.905048,0.518131 +0.028972,-1.551791,1.102510,1.548678,-1.903987,0.517596 +0.037374,-1.551408,1.094136,1.556394,-1.902915,0.516996 +0.045825,-1.550931,1.085732,1.564052,-1.901832,0.516331 +0.054323,-1.550362,1.077300,1.571653,-1.900738,0.515603 +0.062867,-1.549700,1.068838,1.579195,-1.899635,0.514809 +0.071454,-1.548945,1.060348,1.586677,-1.898523,0.513952 +0.080083,-1.548096,1.051830,1.594098,-1.897401,0.513029 +0.088753,-1.547155,1.043285,1.601458,-1.896272,0.512042 +0.097462,-1.546121,1.034712,1.608756,-1.895135,0.510991 +0.106208,-1.544994,1.026111,1.615990,-1.893991,0.509875 +0.114990,-1.543774,1.017484,1.623160,-1.892841,0.508694 +0.123805,-1.542461,1.008831,1.630266,-1.891684,0.507449 +0.132653,-1.541056,1.000152,1.637305,-1.890522,0.506139 +0.141531,-1.539559,0.991447,1.644278,-1.889355,0.504764 +0.150438,-1.537969,0.982717,1.651184,-1.888184,0.503325 +0.159372,-1.536286,0.973962,1.658021,-1.887008,0.501822 +0.168331,-1.534512,0.965182,1.664789,-1.885829,0.500253 +0.177314,-1.532646,0.956379,1.671487,-1.884648,0.498621 +0.186319,-1.530688,0.947551,1.678114,-1.883464,0.496923 +0.195344,-1.528638,0.938700,1.684670,-1.882278,0.495162 +0.204388,-1.526497,0.929825,1.691153,-1.881091,0.493335 +0.213448,-1.524264,0.920928,1.697563,-1.879904,0.491445 +0.222524,-1.521941,0.912008,1.703899,-1.878716,0.489490 +0.231612,-1.519527,0.903066,1.710160,-1.877528,0.487471 +0.240712,-1.517022,0.894101,1.716345,-1.876341,0.485388 +0.249822,-1.514427,0.885116,1.722454,-1.875156,0.483241 +0.258940,-1.511742,0.876109,1.728486,-1.873972,0.481029 +0.268064,-1.508967,0.867081,1.734439,-1.872791,0.478754 +0.277193,-1.506103,0.858033,1.740314,-1.871612,0.476415 +0.286324,-1.503150,0.848964,1.746109,-1.870437,0.474012 +0.295457,-1.500108,0.839875,1.751824,-1.869265,0.471545 +0.304589,-1.496977,0.830767,1.757458,-1.868098,0.469015 +0.313718,-1.493758,0.821639,1.763010,-1.866936,0.466422 +0.322843,-1.490452,0.812492,1.768480,-1.865780,0.463765 +0.331962,-1.487058,0.803327,1.773866,-1.864628,0.461044 +0.341073,-1.483577,0.794143,1.779168,-1.863484,0.458261 +0.350175,-1.480010,0.784941,1.784386,-1.862346,0.455415 +0.359266,-1.476356,0.775721,1.789518,-1.861215,0.452505 +0.368344,-1.472616,0.766483,1.794564,-1.860092,0.449533 +0.377407,-1.468792,0.757228,1.799523,-1.858978,0.446499 +0.386454,-1.464882,0.747956,1.804394,-1.857872,0.443402 +0.395482,-1.460887,0.738667,1.809178,-1.856775,0.440242 +0.404491,-1.456809,0.729362,1.813872,-1.855688,0.437021 +0.413478,-1.452647,0.720041,1.818477,-1.854611,0.433738 +0.422442,-1.448402,0.710704,1.822992,-1.853545,0.430392 +0.431380,-1.444075,0.701351,1.827416,-1.852489,0.426985 +0.440292,-1.439666,0.691983,1.831749,-1.851445,0.423517 +0.449176,-1.435175,0.682600,1.835989,-1.850413,0.419987 +0.458029,-1.430603,0.673202,1.840137,-1.849393,0.416396 +0.466851,-1.425951,0.663789,1.844191,-1.848386,0.412744 +0.475639,-1.421219,0.654362,1.848152,-1.847392,0.409032 +0.484392,-1.416408,0.644921,1.852018,-1.846412,0.405259 +0.493108,-1.411518,0.635466,1.855789,-1.845446,0.401425 +0.501786,-1.406550,0.625998,1.859464,-1.844494,0.397532 +0.510423,-1.401505,0.616516,1.863043,-1.843557,0.393578 +0.519019,-1.396383,0.607021,1.866525,-1.842635,0.389565 +0.527571,-1.391184,0.597513,1.869910,-1.841729,0.385492 +0.536078,-1.385911,0.587993,1.873198,-1.840840,0.381360 +0.544539,-1.380562,0.578460,1.876387,-1.839966,0.377169 +0.552952,-1.375139,0.568915,1.879477,-1.839110,0.372919 +0.561314,-1.369643,0.559359,1.882468,-1.838270,0.368611 +0.569625,-1.364074,0.549790,1.885359,-1.837448,0.364244 +0.577884,-1.358433,0.540210,1.888149,-1.836645,0.359819 +0.586087,-1.352721,0.530619,1.890839,-1.835859,0.355336 +0.594235,-1.346937,0.521016,1.893428,-1.835092,0.350796 +0.602325,-1.341084,0.511403,1.895915,-1.834345,0.346198 +0.610356,-1.335162,0.501779,1.898300,-1.833616,0.341543 +0.618326,-1.329172,0.492145,1.900583,-1.832907,0.336832 +0.626235,-1.323113,0.482501,1.902763,-1.832219,0.332064 +0.634079,-1.316988,0.472846,1.904839,-1.831551,0.327239 +0.641859,-1.310797,0.463182,1.906812,-1.830903,0.322359 +0.649572,-1.304541,0.453508,1.908681,-1.830276,0.317423 +0.657217,-1.298220,0.443824,1.910445,-1.829671,0.312431 +0.664793,-1.291836,0.434131,1.912105,-1.829088,0.307385 +0.672298,-1.285389,0.424429,1.913660,-1.828526,0.302283 +0.679731,-1.278879,0.414719,1.915109,-1.827986,0.297127 +0.687090,-1.272309,0.404999,1.916453,-1.827469,0.291916 +0.694375,-1.265679,0.395271,1.917691,-1.826975,0.286652 +0.701583,-1.258989,0.385535,1.918822,-1.826504,0.281334 +0.708714,-1.252240,0.375790,1.919847,-1.826056,0.275963 +0.715766,-1.245434,0.366037,1.920766,-1.825631,0.270538 +0.722738,-1.238572,0.356277,1.921577,-1.825231,0.265061 +0.729628,-1.231653,0.346508,1.922281,-1.824854,0.259532 +0.736436,-1.224680,0.336733,1.922878,-1.824502,0.253951 +0.743160,-1.217652,0.326949,1.923367,-1.824174,0.248317 +0.749799,-1.210572,0.317159,1.923748,-1.823871,0.242633 +0.756352,-1.203439,0.307361,1.924022,-1.823592,0.236897 +0.762817,-1.196256,0.297557,1.924187,-1.823339,0.231111 +0.769193,-1.189022,0.287746,1.924244,-1.823111,0.225274 +0.775480,-1.181739,0.277928,1.924192,-1.822909,0.219387 +0.781675,-1.174407,0.268103,1.924032,-1.822732,0.213451 +0.787779,-1.167028,0.258273,1.923764,-1.822582,0.207465 +0.793790,-1.159603,0.248436,1.923386,-1.822457,0.201430 +0.799707,-1.152133,0.238593,1.922900,-1.822358,0.195347 +0.805528,-1.144618,0.228744,1.922305,-1.822286,0.189215 +0.811253,-1.137060,0.218889,1.921601,-1.822240,0.183035 +0.816882,-1.129459,0.209028,1.920789,-1.822221,0.176808 +0.822411,-1.121818,0.199162,1.919867,-1.822228,0.170534 +0.827842,-1.114136,0.189291,1.918836,-1.822263,0.164213 +0.833173,-1.106414,0.179414,1.917697,-1.822324,0.157845 +0.838403,-1.098655,0.169532,1.916448,-1.822412,0.151432 +0.843531,-1.090858,0.159645,1.915091,-1.822528,0.144973 +0.848557,-1.083025,0.149754,1.913625,-1.822671,0.138468 +0.853479,-1.075157,0.139857,1.912050,-1.822841,0.131919 +0.858296,-1.067255,0.129956,1.910366,-1.823038,0.125325 +0.863009,-1.059320,0.120050,1.908574,-1.823263,0.118687 +0.867616,-1.051353,0.110139,1.906674,-1.823516,0.112005 +0.872116,-1.043355,0.100224,1.904665,-1.823796,0.105280 +0.876508,-1.035328,0.090306,1.902548,-1.824103,0.098513 +0.880793,-1.027271,0.080382,1.900323,-1.824438,0.091702 +0.884969,-1.019187,0.070455,1.897990,-1.824801,0.084850 +0.889035,-1.011077,0.060524,1.895550,-1.825192,0.077955 +0.892992,-1.002941,0.050589,1.893002,-1.825610,0.071020 +0.896838,-0.994781,0.040651,1.890347,-1.826056,0.064044 +0.900572,-0.986597,0.030709,1.887585,-1.826529,0.057027 +0.904195,-0.978391,0.020763,1.884716,-1.827030,0.049970 +0.907706,-0.970164,0.010814,1.881741,-1.827559,0.042874 +0.911104,-0.961918,0.000862,1.878660,-1.828115,0.035738 +0.914389,-0.953652,-0.009093,1.875472,-1.828699,0.028563 +0.917560,-0.945368,-0.019052,1.872179,-1.829310,0.021351 +0.920617,-0.937068,-0.029014,1.868781,-1.829949,0.014100 +0.923559,-0.928753,-0.038978,1.865278,-1.830615,0.006811 +0.926386,-0.920422,-0.048945,1.861671,-1.831308,-0.000514 +0.929099,-0.912079,-0.058915,1.857959,-1.832028,-0.007876 +0.931695,-0.903723,-0.068888,1.854143,-1.832775,-0.015274 +0.934176,-0.895356,-0.078862,1.850224,-1.833550,-0.022708 +0.936541,-0.886979,-0.088840,1.846202,-1.834351,-0.030177 +0.938789,-0.878594,-0.098820,1.842077,-1.835179,-0.037682 +0.940921,-0.870200,-0.108801,1.837850,-1.836033,-0.045220 +0.942935,-0.861800,-0.118785,1.833522,-1.836914,-0.052793 +0.944833,-0.853394,-0.128771,1.829092,-1.837822,-0.060399 +0.946614,-0.844984,-0.138759,1.824562,-1.838755,-0.068038 +0.948278,-0.836570,-0.148749,1.819931,-1.839715,-0.075711 +0.949824,-0.828155,-0.158740,1.815201,-1.840700,-0.083415 +0.951252,-0.819738,-0.168733,1.810371,-1.841711,-0.091151 +0.952564,-0.811321,-0.178728,1.805443,-1.842747,-0.098918 +0.953758,-0.802905,-0.188724,1.800417,-1.843809,-0.106716 +0.954834,-0.794492,-0.198721,1.795293,-1.844895,-0.114545 +0.955793,-0.786082,-0.208720,1.790073,-1.846007,-0.122404 +0.956635,-0.777676,-0.218720,1.784756,-1.847143,-0.130292 +0.957360,-0.769275,-0.228720,1.779343,-1.848304,-0.138209 +0.957967,-0.760882,-0.238722,1.773836,-1.849488,-0.146155 +0.958457,-0.752496,-0.248724,1.768234,-1.850697,-0.154129 +0.958831,-0.744118,-0.258728,1.762538,-1.851929,-0.162130 +0.959088,-0.735751,-0.268731,1.756749,-1.853185,-0.170159 +0.959229,-0.727395,-0.278736,1.750868,-1.854464,-0.178214 +0.959253,-0.719050,-0.288740,1.744895,-1.855766,-0.186296 +0.959162,-0.710719,-0.298745,1.738831,-1.857090,-0.194404 +0.958955,-0.702402,-0.308751,1.732677,-1.858437,-0.202537 +0.958633,-0.694100,-0.318756,1.726434,-1.859805,-0.210694 +0.958196,-0.685814,-0.328761,1.720101,-1.861196,-0.218877 +0.957645,-0.677546,-0.338766,1.713681,-1.862607,-0.227083 +0.956979,-0.669296,-0.348771,1.707174,-1.864040,-0.235313 +0.956200,-0.661065,-0.358776,1.700580,-1.865494,-0.243565 +0.955308,-0.652855,-0.368780,1.693901,-1.866967,-0.251840 +0.954303,-0.644667,-0.378783,1.687137,-1.868461,-0.260138 +0.953186,-0.636501,-0.388786,1.680289,-1.869975,-0.268456 +0.951957,-0.628358,-0.398788,1.673358,-1.871508,-0.276796 +0.950617,-0.620240,-0.408789,1.666344,-1.873060,-0.285157 +0.949166,-0.612148,-0.418789,1.659250,-1.874630,-0.293538 +0.947605,-0.604082,-0.428787,1.652075,-1.876219,-0.301938 +0.945935,-0.596044,-0.438785,1.644820,-1.877825,-0.310358 +0.944157,-0.588035,-0.448780,1.637487,-1.879449,-0.318797 +0.942270,-0.580055,-0.458774,1.630077,-1.881090,-0.327254 +0.940276,-0.572105,-0.468767,1.622589,-1.882748,-0.335728 +0.938176,-0.564187,-0.478757,1.615026,-1.884422,-0.344220 +0.935970,-0.556301,-0.488746,1.607388,-1.886111,-0.352729 +0.933659,-0.548449,-0.498732,1.599676,-1.887816,-0.361254 +0.931243,-0.540631,-0.508716,1.591891,-1.889536,-0.369796 +0.928724,-0.532848,-0.518698,1.584034,-1.891271,-0.378352 +0.926103,-0.525102,-0.528677,1.576106,-1.893019,-0.386924 +0.923380,-0.517392,-0.538653,1.568109,-1.894781,-0.395510 +0.920556,-0.509721,-0.548626,1.560042,-1.896557,-0.404110 +0.917632,-0.502088,-0.558596,1.551908,-1.898345,-0.412724 +0.914610,-0.494495,-0.568563,1.543708,-1.900145,-0.421351 +0.911489,-0.486943,-0.578527,1.535441,-1.901956,-0.429990 +0.908272,-0.479432,-0.588486,1.527110,-1.903780,-0.438642 +0.904958,-0.471964,-0.598443,1.518715,-1.905613,-0.447305 +0.901549,-0.464538,-0.608395,1.510258,-1.907457,-0.455979 +0.898047,-0.457157,-0.618343,1.501740,-1.909311,-0.464665 +0.894451,-0.449821,-0.628287,1.493162,-1.911174,-0.473360 +0.890764,-0.442530,-0.638226,1.484524,-1.913046,-0.482065 +0.886986,-0.435286,-0.648161,1.475828,-1.914926,-0.490780 +0.883119,-0.428089,-0.658091,1.467076,-1.916814,-0.499503 +0.879163,-0.420940,-0.668016,1.458268,-1.918709,-0.508235 +0.875120,-0.413840,-0.677936,1.449406,-1.920611,-0.516975 +0.870991,-0.406789,-0.687850,1.440490,-1.922519,-0.525722 +0.866777,-0.399789,-0.697759,1.431522,-1.924432,-0.534476 +0.862480,-0.392839,-0.707662,1.422504,-1.926350,-0.543237 +0.858100,-0.385942,-0.717559,1.413435,-1.928273,-0.552004 +0.853639,-0.379097,-0.727450,1.404318,-1.930200,-0.560776 +0.849098,-0.372305,-0.737334,1.395154,-1.932130,-0.569553 +0.844479,-0.365567,-0.747212,1.385943,-1.934063,-0.578335 +0.839783,-0.358883,-0.757082,1.376688,-1.935999,-0.587122 +0.835010,-0.352255,-0.766946,1.367389,-1.937936,-0.595912 +0.830164,-0.345682,-0.776802,1.358048,-1.939874,-0.604705 +0.825244,-0.339166,-0.786651,1.348665,-1.941812,-0.613501 +0.820252,-0.332706,-0.796492,1.339243,-1.943751,-0.622300 +0.815190,-0.326305,-0.806325,1.329782,-1.945689,-0.631101 +0.810059,-0.319962,-0.816149,1.320284,-1.947626,-0.639903 +0.804861,-0.313677,-0.825965,1.310749,-1.949561,-0.648705 +0.799597,-0.307452,-0.835772,1.301180,-1.951493,-0.657509 +0.794268,-0.301287,-0.845570,1.291578,-1.953423,-0.666313 +0.788876,-0.295182,-0.855359,1.281943,-1.955349,-0.675116 +0.783422,-0.289138,-0.865138,1.272278,-1.957271,-0.683919 +0.777909,-0.283156,-0.874908,1.262582,-1.959188,-0.692720 +0.772337,-0.277236,-0.884667,1.252859,-1.961100,-0.701520 +0.766708,-0.271378,-0.894416,1.243109,-1.963005,-0.710317 +0.761023,-0.265583,-0.904154,1.233333,-1.964904,-0.719112 +0.755284,-0.259852,-0.913882,1.223533,-1.966796,-0.727904 +0.749494,-0.254184,-0.923598,1.213709,-1.968680,-0.736693 +0.743652,-0.248580,-0.933302,1.203865,-1.970555,-0.745477 +0.737761,-0.243041,-0.942995,1.194000,-1.972422,-0.754257 +0.731823,-0.237568,-0.952676,1.184116,-1.974278,-0.763033 +0.725839,-0.232159,-0.962344,1.174214,-1.976125,-0.771803 +0.719810,-0.226816,-0.971999,1.164297,-1.977960,-0.780568 +0.713739,-0.221539,-0.981642,1.154364,-1.979784,-0.789327 +0.707627,-0.216329,-0.991271,1.144418,-1.981596,-0.798079 +0.701475,-0.211186,-1.000886,1.134460,-1.983394,-0.806825 +0.695286,-0.206109,-1.010488,1.124491,-1.985180,-0.815563 +0.689061,-0.201100,-1.020075,1.114513,-1.986951,-0.824293 +0.682801,-0.196158,-1.029647,1.104527,-1.988708,-0.833015 +0.676509,-0.191284,-1.039205,1.094534,-1.990449,-0.841729 +0.670186,-0.186478,-1.048747,1.084536,-1.992174,-0.850433 +0.663834,-0.181740,-1.058273,1.074534,-1.993883,-0.859129 +0.657454,-0.177071,-1.067784,1.064529,-1.995574,-0.867814 +0.651049,-0.172470,-1.077278,1.054524,-1.997248,-0.876489 +0.644619,-0.167938,-1.086755,1.044518,-1.998903,-0.885154 +0.638168,-0.163476,-1.096215,1.034515,-2.000539,-0.893807 +0.631695,-0.159082,-1.105658,1.024514,-2.002156,-0.902449 +0.625204,-0.154757,-1.115083,1.014518,-2.003752,-0.911079 +0.618696,-0.150502,-1.124490,1.004527,-2.005327,-0.919697 +0.612172,-0.146316,-1.133879,0.994544,-2.006880,-0.928303 +0.605635,-0.142200,-1.143248,0.984569,-2.008411,-0.936895 +0.599086,-0.138153,-1.152598,0.974604,-2.009920,-0.945474 +0.592527,-0.134175,-1.161928,0.964651,-2.011404,-0.954039 +0.585960,-0.130268,-1.171239,0.954710,-2.012865,-0.962589 +0.579386,-0.126429,-1.180529,0.944783,-2.014301,-0.971126 +0.572807,-0.122661,-1.189797,0.934872,-2.015712,-0.979647 +0.566226,-0.118962,-1.199045,0.924978,-2.017097,-0.988153 +0.559643,-0.115332,-1.208271,0.915101,-2.018455,-0.996643 +0.553061,-0.111772,-1.217475,0.905245,-2.019786,-1.005117 +0.546481,-0.108282,-1.226656,0.895409,-2.021090,-1.013574 +0.539905,-0.104860,-1.235815,0.885596,-2.022365,-1.022015 +0.533335,-0.101508,-1.244950,0.875806,-2.023611,-1.030438 +0.526773,-0.098225,-1.254062,0.866042,-2.024827,-1.038844 +0.520220,-0.095010,-1.263149,0.856304,-2.026014,-1.047231 +0.513679,-0.091865,-1.272211,0.846594,-2.027169,-1.055601 +0.507150,-0.088788,-1.281249,0.836913,-2.028293,-1.063952 +0.500636,-0.085780,-1.290261,0.827262,-2.029386,-1.072283 +0.494139,-0.082839,-1.299247,0.817643,-2.030445,-1.080596 +0.487660,-0.079967,-1.308207,0.808058,-2.031472,-1.088888 +0.481200,-0.077162,-1.317140,0.798507,-2.032465,-1.097161 +0.474763,-0.074425,-1.326046,0.788992,-2.033424,-1.105413 +0.468349,-0.071755,-1.334924,0.779514,-2.034348,-1.113644 +0.461960,-0.069152,-1.343774,0.770074,-2.035237,-1.121854 +0.455598,-0.066616,-1.352595,0.760675,-2.036089,-1.130043 +0.449265,-0.064146,-1.361387,0.751316,-2.036905,-1.138209 +0.442962,-0.061742,-1.370150,0.742000,-2.037685,-1.146354 +0.436692,-0.059404,-1.378883,0.732728,-2.038426,-1.154476 +0.430455,-0.057131,-1.387585,0.723501,-2.039130,-1.162576 +0.424254,-0.054922,-1.396256,0.714320,-2.039795,-1.170652 +0.418090,-0.052779,-1.404896,0.705187,-2.040420,-1.178705 +0.411964,-0.050699,-1.413504,0.696103,-2.041006,-1.186734 +0.405880,-0.048683,-1.422079,0.687069,-2.041552,-1.194739 +0.399837,-0.046731,-1.430622,0.678087,-2.042057,-1.202719 +0.393839,-0.044841,-1.439131,0.669157,-2.042521,-1.210675 +0.387886,-0.043013,-1.447607,0.660281,-2.042943,-1.218606 +0.381980,-0.041247,-1.456048,0.651461,-2.043322,-1.226512 +0.376123,-0.039543,-1.464454,0.642697,-2.043659,-1.234392 +0.370317,-0.037899,-1.472825,0.633990,-2.043953,-1.242246 +0.364563,-0.036316,-1.481160,0.625343,-2.044203,-1.250073 +0.358862,-0.034793,-1.489459,0.616755,-2.044409,-1.257875 +0.353216,-0.033328,-1.497722,0.608229,-2.044570,-1.265649 +0.347628,-0.031923,-1.505946,0.599766,-2.044686,-1.273397 +0.342097,-0.030575,-1.514133,0.591366,-2.044756,-1.281117 +0.336627,-0.029285,-1.522282,0.583031,-2.044781,-1.288809 +0.331218,-0.028051,-1.530392,0.574762,-2.044759,-1.296474 +0.325872,-0.026874,-1.538463,0.566561,-2.044690,-1.304110 +0.320590,-0.025753,-1.546493,0.558427,-2.044574,-1.311718 +0.315374,-0.024686,-1.554484,0.550364,-2.044410,-1.319297 +0.310226,-0.023674,-1.562433,0.542370,-2.044198,-1.326847 +0.305147,-0.022715,-1.570341,0.534449,-2.043937,-1.334368 +0.300138,-0.021809,-1.578208,0.526600,-2.043627,-1.341859 +0.295200,-0.020955,-1.586032,0.518826,-2.043268,-1.349321 +0.290336,-0.020153,-1.593813,0.511126,-2.042859,-1.356752 +0.285547,-0.019401,-1.601550,0.503503,-2.042401,-1.364153 +0.280834,-0.018700,-1.609244,0.495957,-2.041891,-1.371524 +0.276198,-0.018048,-1.616893,0.488489,-2.041331,-1.378864 +0.271640,-0.017444,-1.624497,0.481100,-2.040720,-1.386173 +0.267163,-0.016888,-1.632056,0.473792,-2.040057,-1.393450 +0.262767,-0.016379,-1.639569,0.466565,-2.039342,-1.400696 +0.258453,-0.015916,-1.647035,0.459420,-2.038575,-1.407911 +0.254224,-0.015498,-1.654454,0.452359,-2.037756,-1.415093 +0.250080,-0.015125,-1.661825,0.445382,-2.036884,-1.422243 +0.246022,-0.014795,-1.669149,0.438490,-2.035958,-1.429361 +0.242052,-0.014508,-1.676424,0.431685,-2.034980,-1.436446 +0.238170,-0.014264,-1.683649,0.424966,-2.033947,-1.443499 +0.234379,-0.014060,-1.690825,0.418336,-2.032861,-1.450518 +0.230679,-0.013897,-1.697951,0.411796,-2.031720,-1.457504 +0.227071,-0.013772,-1.705026,0.405345,-2.030525,-1.464456 +0.223557,-0.013687,-1.712050,0.398984,-2.029275,-1.471375 +0.220137,-0.013639,-1.719022,0.392716,-2.027971,-1.478260 +0.216813,-0.013627,-1.725942,0.386541,-2.026611,-1.485111 +0.213586,-0.013651,-1.732809,0.380458,-2.025195,-1.491928 +0.210456,-0.013710,-1.739623,0.374471,-2.023724,-1.498710 +0.207425,-0.013803,-1.746384,0.368578,-2.022197,-1.505458 +0.204494,-0.013929,-1.753089,0.362781,-2.020615,-1.512170 +0.201664,-0.014086,-1.759740,0.357081,-2.018976,-1.518848 +0.198935,-0.014275,-1.766336,0.351479,-2.017280,-1.525490 +0.196309,-0.014493,-1.772876,0.345975,-2.015528,-1.532098 +0.193787,-0.014741,-1.779359,0.340570,-2.013719,-1.538669 +0.191369,-0.015017,-1.785786,0.335265,-2.011854,-1.545205 +0.189056,-0.015319,-1.792155,0.330061,-2.009932,-1.551705 +0.186849,-0.015648,-1.798467,0.324958,-2.007952,-1.558169 +0.184749,-0.016001,-1.804720,0.319957,-2.005915,-1.564597 +0.182757,-0.016379,-1.810914,0.315058,-2.003821,-1.570988 +0.180873,-0.016780,-1.817049,0.310263,-2.001670,-1.577343 +0.179098,-0.017202,-1.823125,0.305572,-1.999461,-1.583661 +0.177434,-0.017646,-1.829139,0.300986,-1.997194,-1.589943 +0.175880,-0.018109,-1.835094,0.296505,-1.994870,-1.596187 +0.174437,-0.018591,-1.840986,0.292130,-1.992489,-1.602394 +0.173106,-0.019091,-1.846817,0.287861,-1.990049,-1.608565 +0.171888,-0.019608,-1.852586,0.283699,-1.987552,-1.614697 +0.170782,-0.020141,-1.858292,0.279645,-1.984997,-1.620793 +0.169791,-0.020688,-1.863935,0.275700,-1.982384,-1.626850 +0.168913,-0.021248,-1.869514,0.271863,-1.979714,-1.632870 +0.168151,-0.021821,-1.875029,0.268135,-1.976986,-1.638852 +0.167503,-0.022405,-1.880480,0.264516,-1.974200,-1.644796 +0.166972,-0.023000,-1.885865,0.261009,-1.971356,-1.650702 +0.166556,-0.023604,-1.891185,0.257611,-1.968455,-1.656570 +0.166257,-0.024216,-1.896439,0.254325,-1.965496,-1.662399 +0.166075,-0.024835,-1.901626,0.251151,-1.962479,-1.668190 +0.166010,-0.025460,-1.906747,0.248088,-1.959405,-1.673942 +0.166063,-0.026090,-1.911800,0.245138,-1.956274,-1.679656 +0.166234,-0.026724,-1.916786,0.242301,-1.953085,-1.685331 +0.166523,-0.027360,-1.921704,0.239576,-1.949839,-1.690967 +0.166931,-0.027998,-1.926552,0.236966,-1.946536,-1.696564 +0.167457,-0.028637,-1.931332,0.234469,-1.943176,-1.702122 +0.168102,-0.029274,-1.936043,0.232086,-1.939759,-1.707641 +0.168866,-0.029910,-1.940684,0.229818,-1.936286,-1.713121 +0.169749,-0.030544,-1.945254,0.227664,-1.932756,-1.718561 +0.170752,-0.031173,-1.949754,0.225626,-1.929170,-1.723963 +0.171874,-0.031797,-1.954182,0.223703,-1.925527,-1.729324 +0.173116,-0.032415,-1.958540,0.221895,-1.921829,-1.734647 +0.174477,-0.033026,-1.962825,0.220203,-1.918074,-1.739929 +0.175958,-0.033628,-1.967038,0.218627,-1.914265,-1.745172 +0.177558,-0.034222,-1.971179,0.217168,-1.910400,-1.750375 +0.179278,-0.034804,-1.975247,0.215824,-1.906479,-1.755539 +0.181118,-0.035375,-1.979241,0.214597,-1.902504,-1.760663 +0.183076,-0.035933,-1.983161,0.213487,-1.898474,-1.765747 +0.185154,-0.036477,-1.987008,0.212493,-1.894390,-1.770790 +0.187351,-0.037007,-1.990780,0.211617,-1.890252,-1.775794 +0.189667,-0.037520,-1.994478,0.210857,-1.886060,-1.780758 +0.192102,-0.038016,-1.998100,0.210214,-1.881815,-1.785682 +0.194655,-0.038494,-2.001647,0.209688,-1.877516,-1.790566 +0.197326,-0.038953,-2.005118,0.209280,-1.873164,-1.795409 +0.200116,-0.039391,-2.008513,0.208988,-1.868760,-1.800213 +0.203023,-0.039808,-2.011832,0.208814,-1.864304,-1.804976 +0.206047,-0.040203,-2.015074,0.208756,-1.859795,-1.809698 +0.209189,-0.040574,-2.018239,0.208816,-1.855235,-1.814381 +0.212447,-0.040920,-2.021327,0.208993,-1.850624,-1.819023 +0.215821,-0.041241,-2.024337,0.209287,-1.845963,-1.823625 +0.219311,-0.041535,-2.027270,0.209697,-1.841250,-1.828187 +0.222916,-0.041801,-2.030124,0.210225,-1.836488,-1.832708 +0.226636,-0.042039,-2.032900,0.210869,-1.831676,-1.837189 +0.230470,-0.042246,-2.035598,0.211630,-1.826815,-1.841629 +0.234418,-0.042423,-2.038216,0.212507,-1.821906,-1.846029 +0.238479,-0.042568,-2.040755,0.213500,-1.816948,-1.850389 +0.242653,-0.042679,-2.043215,0.214610,-1.811942,-1.854708 +0.246938,-0.042757,-2.045596,0.215835,-1.806888,-1.858987 +0.251335,-0.042800,-2.047897,0.217176,-1.801788,-1.863225 +0.255843,-0.042807,-2.050117,0.218633,-1.796641,-1.867423 +0.260460,-0.042778,-2.052257,0.220205,-1.791448,-1.871580 +0.265187,-0.042710,-2.054317,0.221891,-1.786210,-1.875697 +0.270022,-0.042603,-2.056297,0.223693,-1.780926,-1.879774 +0.274965,-0.042457,-2.058195,0.225608,-1.775598,-1.883810 +0.280015,-0.042270,-2.060013,0.227638,-1.770226,-1.887806 +0.285171,-0.042041,-2.061749,0.229782,-1.764811,-1.891761 +0.290433,-0.041769,-2.063404,0.232039,-1.759352,-1.895676 +0.295798,-0.041454,-2.064978,0.234409,-1.753852,-1.899551 +0.301268,-0.041094,-2.066470,0.236892,-1.748309,-1.903386 +0.306839,-0.040689,-2.067881,0.239487,-1.742725,-1.907180 +0.312513,-0.040237,-2.069209,0.242194,-1.737101,-1.910934 +0.318287,-0.039738,-2.070456,0.245012,-1.731436,-1.914648 +0.324161,-0.039191,-2.071620,0.247942,-1.725732,-1.918321 +0.330134,-0.038595,-2.072702,0.250982,-1.719988,-1.921954 +0.336205,-0.037950,-2.073702,0.254132,-1.714207,-1.925548 +0.342372,-0.037253,-2.074620,0.257392,-1.708388,-1.929101 +0.348635,-0.036505,-2.075455,0.260761,-1.702531,-1.932614 +0.354992,-0.035704,-2.076208,0.264239,-1.696639,-1.936087 +0.361443,-0.034851,-2.076878,0.267825,-1.690710,-1.939520 +0.367986,-0.033943,-2.077466,0.271519,-1.684746,-1.942913 +0.374620,-0.032980,-2.077971,0.275320,-1.678748,-1.946266 +0.381344,-0.031962,-2.078393,0.279227,-1.672715,-1.949579 +0.388156,-0.030887,-2.078733,0.283240,-1.666650,-1.952853 +0.395057,-0.029756,-2.078990,0.287359,-1.660552,-1.956087 +0.402043,-0.028566,-2.079164,0.291582,-1.654422,-1.959281 +0.409115,-0.027318,-2.079255,0.295910,-1.648261,-1.962436 +0.416270,-0.026010,-2.079264,0.300340,-1.642069,-1.965551 +0.423508,-0.024642,-2.079190,0.304874,-1.635848,-1.968626 +0.430827,-0.023214,-2.079034,0.309510,-1.629597,-1.971662 +0.438226,-0.021724,-2.078795,0.314247,-1.623319,-1.974659 +0.445703,-0.020172,-2.078473,0.319086,-1.617012,-1.977616 +0.453257,-0.018557,-2.078069,0.324024,-1.610679,-1.980534 +0.460887,-0.016879,-2.077582,0.329062,-1.604319,-1.983413 +0.468591,-0.015137,-2.077013,0.334198,-1.597934,-1.986253 +0.476368,-0.013329,-2.076362,0.339432,-1.591524,-1.989053 +0.484217,-0.011457,-2.075629,0.344764,-1.585091,-1.991815 +0.492136,-0.009519,-2.074814,0.350191,-1.578634,-1.994538 +0.500123,-0.007514,-2.073916,0.355715,-1.572154,-1.997222 +0.508177,-0.005443,-2.072937,0.361333,-1.565653,-1.999867 +0.516296,-0.003303,-2.071877,0.367046,-1.559132,-2.002474 +0.524480,-0.001096,-2.070734,0.372851,-1.552589,-2.005042 +0.532726,0.001180,-2.069511,0.378749,-1.546028,-2.007571 +0.541033,0.003525,-2.068206,0.384739,-1.539448,-2.010062 +0.549399,0.005940,-2.066820,0.390819,-1.532851,-2.012515 +0.557823,0.008425,-2.065353,0.396989,-1.526236,-2.014929 +0.566303,0.010980,-2.063806,0.403248,-1.519605,-2.017305 +0.574838,0.013606,-2.062178,0.409595,-1.512959,-2.019643 +0.583426,0.016304,-2.060470,0.416029,-1.506298,-2.021943 +0.592065,0.019073,-2.058682,0.422550,-1.499624,-2.024205 +0.600753,0.021915,-2.056814,0.429156,-1.492936,-2.026429 +0.609490,0.024829,-2.054866,0.435846,-1.486237,-2.028616 +0.618273,0.027817,-2.052839,0.442620,-1.479526,-2.030765 +0.627101,0.030877,-2.050733,0.449477,-1.472804,-2.032876 +0.635972,0.034011,-2.048548,0.456415,-1.466074,-2.034950 +0.644884,0.037220,-2.046285,0.463434,-1.459334,-2.036986 +0.653835,0.040502,-2.043943,0.470532,-1.452586,-2.038985 +0.662825,0.043859,-2.041524,0.477710,-1.445831,-2.040947 +0.671851,0.047290,-2.039027,0.484965,-1.439070,-2.042872 +0.680911,0.050797,-2.036452,0.492296,-1.432304,-2.044759 +0.690003,0.054379,-2.033800,0.499704,-1.425533,-2.046610 +0.699127,0.058036,-2.031072,0.507186,-1.418758,-2.048425 +0.708280,0.061770,-2.028267,0.514741,-1.411980,-2.050202 +0.717460,0.065579,-2.025386,0.522369,-1.405200,-2.051943 +0.726666,0.069464,-2.022430,0.530069,-1.398419,-2.053647 +0.735895,0.073425,-2.019398,0.537840,-1.391638,-2.055315 +0.745147,0.077462,-2.016292,0.545679,-1.384857,-2.056947 +0.754419,0.081576,-2.013111,0.553588,-1.378077,-2.058542 +0.763709,0.085767,-2.009855,0.561563,-1.371300,-2.060101 +0.773016,0.090034,-2.006526,0.569605,-1.364526,-2.061625 +0.782337,0.094377,-2.003124,0.577712,-1.357756,-2.063112 +0.791672,0.098798,-1.999648,0.585883,-1.350991,-2.064564 +0.801018,0.103295,-1.996100,0.594117,-1.344231,-2.065980 +0.810373,0.107869,-1.992480,0.602412,-1.337478,-2.067360 +0.819735,0.112519,-1.988789,0.610769,-1.330732,-2.068705 +0.829104,0.117247,-1.985026,0.619185,-1.323994,-2.070015 +0.838476,0.122051,-1.981193,0.627660,-1.317266,-2.071290 +0.847850,0.126932,-1.977289,0.636192,-1.310547,-2.072529 +0.857224,0.131889,-1.973315,0.644780,-1.303840,-2.073733 +0.866597,0.136923,-1.969273,0.653423,-1.297144,-2.074903 +0.875966,0.142033,-1.965161,0.662120,-1.290461,-2.076037 +0.885330,0.147219,-1.960981,0.670870,-1.283791,-2.077137 +0.894687,0.152481,-1.956734,0.679672,-1.277135,-2.078202 +0.904035,0.157820,-1.952419,0.688524,-1.270494,-2.079233 +0.913372,0.163234,-1.948037,0.697425,-1.263870,-2.080229 +0.922696,0.168724,-1.943589,0.706374,-1.257262,-2.081192 +0.932005,0.174289,-1.939076,0.715371,-1.250672,-2.082120 +0.941299,0.179929,-1.934497,0.724413,-1.244100,-2.083014 +0.950574,0.185644,-1.929854,0.733500,-1.237548,-2.083874 +0.959829,0.191434,-1.925147,0.742630,-1.231016,-2.084700 +0.969062,0.197298,-1.920376,0.751802,-1.224505,-2.085492 +0.978272,0.203237,-1.915542,0.761016,-1.218016,-2.086251 +0.987456,0.209249,-1.910646,0.770269,-1.211549,-2.086976 +0.996613,0.215334,-1.905689,0.779561,-1.205106,-2.087668 +1.005740,0.221492,-1.900670,0.788890,-1.198688,-2.088327 +1.014837,0.227724,-1.895591,0.798256,-1.192295,-2.088952 +1.023901,0.234027,-1.890452,0.807656,-1.185927,-2.089545 +1.032930,0.240403,-1.885254,0.817091,-1.179587,-2.090104 +1.041924,0.246850,-1.879997,0.826558,-1.173274,-2.090631 +1.050879,0.253368,-1.874682,0.836057,-1.166990,-2.091125 +1.059794,0.259957,-1.869310,0.845585,-1.160735,-2.091586 +1.068667,0.266617,-1.863881,0.855143,-1.154510,-2.092014 +1.077497,0.273346,-1.858396,0.864729,-1.148316,-2.092411 +1.086282,0.280144,-1.852856,0.874341,-1.142153,-2.092774 +1.095021,0.287011,-1.847260,0.883979,-1.136023,-2.093106 +1.103710,0.293946,-1.841611,0.893641,-1.129926,-2.093406 +1.112349,0.300950,-1.835909,0.903326,-1.123863,-2.093673 +1.120936,0.308020,-1.830153,0.913032,-1.117835,-2.093909 +1.129469,0.315157,-1.824346,0.922759,-1.111843,-2.094113 +1.137947,0.322360,-1.818487,0.932506,-1.105887,-2.094285 +1.146368,0.329628,-1.812577,0.942271,-1.099968,-2.094425 +1.154729,0.336961,-1.806618,0.952052,-1.094087,-2.094534 +1.163031,0.344359,-1.800609,0.961850,-1.088244,-2.094612 +1.171270,0.351819,-1.794552,0.971661,-1.082441,-2.094658 +1.179445,0.359343,-1.788447,0.981487,-1.076677,-2.094673 +1.187555,0.366929,-1.782295,0.991324,-1.070955,-2.094657 +1.195597,0.374577,-1.776096,1.001172,-1.065274,-2.094610 +1.203571,0.382286,-1.769852,1.011030,-1.059635,-2.094533 +1.211475,0.390054,-1.763563,1.020897,-1.054039,-2.094424 +1.219307,0.397883,-1.757230,1.030771,-1.048487,-2.094284 +1.227066,0.405769,-1.750853,1.040651,-1.042979,-2.094114 +1.234749,0.413714,-1.744434,1.050536,-1.037516,-2.093914 +1.242356,0.421716,-1.737972,1.060425,-1.032098,-2.093683 +1.249885,0.429775,-1.731470,1.070316,-1.026727,-2.093422 +1.257335,0.437889,-1.724927,1.080209,-1.021403,-2.093130 +1.264703,0.446058,-1.718344,1.090103,-1.016127,-2.092808 +1.271989,0.454281,-1.711722,1.099995,-1.010899,-2.092457 +1.279191,0.462557,-1.705063,1.109885,-1.005719,-2.092075 +1.286308,0.470885,-1.698366,1.119772,-1.000590,-2.091663 +1.293338,0.479265,-1.691632,1.129655,-0.995511,-2.091222 +1.300280,0.487695,-1.684862,1.139532,-0.990482,-2.090751 +1.307132,0.496176,-1.678058,1.149403,-0.985505,-2.090250 +1.313893,0.504705,-1.671219,1.159265,-0.980580,-2.089720 +1.320562,0.513282,-1.664346,1.169119,-0.975707,-2.089160 +1.327137,0.521906,-1.657441,1.178963,-0.970888,-2.088571 +1.333617,0.530577,-1.650504,1.188795,-0.966123,-2.087952 +1.340001,0.539292,-1.643536,1.198615,-0.961412,-2.087305 +1.346287,0.548052,-1.636537,1.208422,-0.956755,-2.086628 +1.352474,0.556855,-1.629509,1.218214,-0.952154,-2.085922 +1.358562,0.565701,-1.622452,1.227991,-0.947610,-2.085187 +1.364548,0.574587,-1.615367,1.237751,-0.943121,-2.084423 +1.370431,0.583515,-1.608255,1.247493,-0.938690,-2.083631 +1.376211,0.592482,-1.601117,1.257216,-0.934316,-2.082809 +1.381886,0.601487,-1.593953,1.266919,-0.930000,-2.081959 +1.387455,0.610529,-1.586764,1.276601,-0.925743,-2.081081 +1.392917,0.619608,-1.579551,1.286261,-0.921545,-2.080173 +1.398271,0.628723,-1.572315,1.295897,-0.917406,-2.079238 +1.403515,0.637871,-1.565056,1.305510,-0.913327,-2.078273 +1.408649,0.647053,-1.557776,1.315097,-0.909308,-2.077281 +1.413672,0.656267,-1.550476,1.324658,-0.905351,-2.076260 +1.418582,0.665513,-1.543155,1.334191,-0.901454,-2.075211 +1.423379,0.674788,-1.535815,1.343696,-0.897619,-2.074134 +1.428061,0.684093,-1.528456,1.353172,-0.893846,-2.073029 +1.432628,0.693426,-1.521080,1.362618,-0.890136,-2.071895 +1.437079,0.702785,-1.513687,1.372032,-0.886488,-2.070734 +1.441413,0.712171,-1.506278,1.381413,-0.882904,-2.069545 +1.445629,0.721581,-1.498854,1.390762,-0.879383,-2.068328 +1.449726,0.731014,-1.491415,1.400076,-0.875926,-2.067083 +1.453703,0.740470,-1.483963,1.409355,-0.872533,-2.065810 +1.457560,0.749948,-1.476498,1.418598,-0.869205,-2.064509 +1.461295,0.759446,-1.469020,1.427803,-0.865942,-2.063181 +1.464909,0.768962,-1.461532,1.436971,-0.862744,-2.061826 +1.468399,0.778497,-1.454033,1.446099,-0.859612,-2.060442 +1.471766,0.788049,-1.446524,1.455188,-0.856545,-2.059031 +1.475009,0.797617,-1.439006,1.464235,-0.853544,-2.057593 +1.478127,0.807199,-1.431480,1.473241,-0.850610,-2.056127 +1.481120,0.816794,-1.423947,1.482205,-0.847742,-2.054634 +1.483987,0.826402,-1.416407,1.491125,-0.844941,-2.053113 +1.486726,0.836021,-1.408861,1.500000,-0.842208,-2.051565 +1.489339,0.845650,-1.401310,1.508831,-0.839541,-2.049990 +1.491824,0.855288,-1.393755,1.517615,-0.836942,-2.048388 +1.494180,0.864933,-1.386196,1.526352,-0.834410,-2.046758 +1.496408,0.874585,-1.378635,1.535042,-0.831947,-2.045101 +1.498507,0.884242,-1.371071,1.543683,-0.829551,-2.043417 +1.500476,0.893904,-1.363506,1.552275,-0.827224,-2.041706 +1.502314,0.903568,-1.355940,1.560817,-0.824965,-2.039968 +1.504023,0.913235,-1.348375,1.569308,-0.822774,-2.038202 +1.505600,0.922902,-1.340810,1.577747,-0.820652,-2.036410 +1.507046,0.932568,-1.333247,1.586134,-0.818598,-2.034591 +1.508361,0.942233,-1.325687,1.594467,-0.816613,-2.032744 +1.509544,0.951895,-1.318129,1.602747,-0.814698,-2.030871 +1.510595,0.961553,-1.310575,1.610972,-0.812851,-2.028970 +1.511514,0.971205,-1.303026,1.619142,-0.811073,-2.027043 +1.512300,0.980852,-1.295482,1.627255,-0.809364,-2.025089 +1.512953,0.990490,-1.287944,1.635312,-0.807724,-2.023107 +1.513474,1.000120,-1.280412,1.643311,-0.806153,-2.021099 +1.513862,1.009741,-1.272888,1.651253,-0.804651,-2.019064 +1.514117,1.019350,-1.265372,1.659135,-0.803218,-2.017002 +1.514238,1.028947,-1.257864,1.666958,-0.801855,-2.014914 +1.514227,1.038530,-1.250366,1.674721,-0.800560,-2.012798 +1.514082,1.048100,-1.242878,1.682423,-0.799335,-2.010655 +1.513804,1.057653,-1.235400,1.690064,-0.798179,-2.008486 +1.513393,1.067190,-1.227934,1.697643,-0.797091,-2.006290 +1.512849,1.076708,-1.220480,1.705160,-0.796072,-2.004067 +1.512172,1.086208,-1.213038,1.712613,-0.795122,-2.001817 +1.511361,1.095687,-1.205610,1.720003,-0.794241,-1.999540 +1.510418,1.105145,-1.198195,1.727328,-0.793428,-1.997236 +1.509343,1.114580,-1.190795,1.734589,-0.792684,-1.994906 +1.508135,1.123992,-1.183410,1.741785,-0.792008,-1.992548 +1.506794,1.133378,-1.176041,1.748915,-0.791400,-1.990164 +1.505322,1.142739,-1.168688,1.755978,-0.790860,-1.987753 +1.503718,1.152073,-1.161353,1.762975,-0.790388,-1.985315 +1.501982,1.161379,-1.154034,1.769904,-0.789983,-1.982850 +1.500115,1.170655,-1.146734,1.776766,-0.789646,-1.980358 +1.498117,1.179901,-1.139452,1.783559,-0.789376,-1.977839 +1.495989,1.189116,-1.132190,1.790284,-0.789174,-1.975293 +1.493731,1.198298,-1.124947,1.796940,-0.789038,-1.972720 +1.491343,1.207446,-1.117725,1.803527,-0.788968,-1.970121 +1.488825,1.216560,-1.110523,1.810043,-0.788965,-1.967494 +1.486179,1.225638,-1.103343,1.816489,-0.789028,-1.964840 +1.483405,1.234680,-1.096185,1.822865,-0.789156,-1.962159 +1.480502,1.243683,-1.089049,1.829169,-0.789350,-1.959451 +1.477473,1.252647,-1.081936,1.835402,-0.789609,-1.956716 +1.474316,1.261572,-1.074847,1.841564,-0.789933,-1.953954 +1.471034,1.270456,-1.067782,1.847653,-0.790322,-1.951165 +1.467625,1.279297,-1.060741,1.853670,-0.790775,-1.948348 +1.464092,1.288096,-1.053725,1.859614,-0.791291,-1.945505 +1.460435,1.296850,-1.046734,1.865485,-0.791871,-1.942634 +1.456654,1.305560,-1.039769,1.871283,-0.792514,-1.939736 +1.452750,1.314224,-1.032830,1.877008,-0.793220,-1.936810 +1.448724,1.322841,-1.025918,1.882658,-0.793988,-1.933857 +1.444576,1.331409,-1.019033,1.888235,-0.794819,-1.930877 +1.440307,1.339929,-1.012175,1.893737,-0.795710,-1.927870 +1.435919,1.348400,-1.005346,1.899165,-0.796663,-1.924835 +1.431412,1.356819,-0.998545,1.904518,-0.797676,-1.921772 +1.426786,1.365187,-0.991772,1.909796,-0.798750,-1.918682 +1.422043,1.373502,-0.985029,1.914999,-0.799883,-1.915564 +1.417183,1.381764,-0.978314,1.920127,-0.801076,-1.912419 +1.412208,1.389971,-0.971630,1.925179,-0.802328,-1.909246 +1.407117,1.398124,-0.964976,1.930156,-0.803637,-1.906046 +1.401913,1.406220,-0.958353,1.935057,-0.805005,-1.902817 +1.396597,1.414259,-0.951760,1.939882,-0.806430,-1.899561 +1.391168,1.422240,-0.945198,1.944632,-0.807912,-1.896277 +1.385628,1.430163,-0.938668,1.949305,-0.809450,-1.892966 +1.379979,1.438026,-0.932170,1.953902,-0.811043,-1.889626 +1.374221,1.445829,-0.925703,1.958423,-0.812692,-1.886258 +1.368355,1.453571,-0.919269,1.962868,-0.814396,-1.882862 +1.362382,1.461252,-0.912868,1.967236,-0.816153,-1.879438 +1.356304,1.468869,-0.906499,1.971528,-0.817964,-1.875987 +1.350121,1.476424,-0.900164,1.975744,-0.819828,-1.872506 +1.343835,1.483914,-0.893861,1.979883,-0.821744,-1.868998 +1.337446,1.491339,-0.887593,1.983946,-0.823712,-1.865461 +1.330957,1.498699,-0.881358,1.987933,-0.825731,-1.861896 +1.324368,1.505993,-0.875157,1.991843,-0.827800,-1.858303 +1.317681,1.513220,-0.868990,1.995677,-0.829919,-1.854681 +1.310895,1.520379,-0.862857,1.999434,-0.832087,-1.851030 +1.304014,1.527470,-0.856759,2.003115,-0.834304,-1.847351 +1.297038,1.534492,-0.850696,2.006721,-0.836568,-1.843644 +1.289969,1.541445,-0.844667,2.010250,-0.838880,-1.839907 +1.282807,1.548327,-0.838674,2.013703,-0.841238,-1.836142 +1.275554,1.555139,-0.832715,2.017080,-0.843642,-1.832348 +1.268211,1.561880,-0.826792,2.020381,-0.846091,-1.828526 +1.260780,1.568548,-0.820904,2.023607,-0.848585,-1.824674 +1.253262,1.575144,-0.815052,2.026757,-0.851122,-1.820793 +1.245659,1.581668,-0.809235,2.029831,-0.853702,-1.816883 +1.237971,1.588117,-0.803453,2.032831,-0.856325,-1.812944 +1.230200,1.594493,-0.797707,2.035755,-0.858989,-1.808976 +1.222348,1.600794,-0.791997,2.038605,-0.861693,-1.804979 +1.214416,1.607021,-0.786323,2.041379,-0.864438,-1.800952 +1.206405,1.613171,-0.780684,2.044079,-0.867222,-1.796896 +1.198318,1.619246,-0.775081,2.046705,-0.870045,-1.792811 +1.190154,1.625245,-0.769514,2.049257,-0.872905,-1.788696 +1.181917,1.631167,-0.763983,2.051735,-0.875802,-1.784551 +1.173606,1.637012,-0.758487,2.054139,-0.878736,-1.780377 +1.165225,1.642779,-0.753028,2.056470,-0.881704,-1.776173 +1.156774,1.648469,-0.747604,2.058727,-0.884708,-1.771939 +1.148254,1.654080,-0.742215,2.060912,-0.887745,-1.767676 +1.139668,1.659612,-0.736863,2.063024,-0.890815,-1.763382 +1.131017,1.665066,-0.731546,2.065064,-0.893917,-1.759059 +1.122303,1.670441,-0.726264,2.067032,-0.897051,-1.754706 +1.113526,1.675736,-0.721018,2.068928,-0.900215,-1.750322 +1.104689,1.680951,-0.715807,2.070753,-0.903409,-1.745908 +1.095793,1.686087,-0.710631,2.072506,-0.906632,-1.741464 +1.086840,1.691142,-0.705490,2.074189,-0.909883,-1.736990 +1.077832,1.696117,-0.700384,2.075801,-0.913161,-1.732486 +1.068769,1.701011,-0.695314,2.077344,-0.916465,-1.727951 +1.059654,1.705825,-0.690277,2.078816,-0.919795,-1.723385 +1.050488,1.710557,-0.685275,2.080220,-0.923149,-1.718789 +1.041273,1.715208,-0.680308,2.081554,-0.926527,-1.714162 +1.032010,1.719778,-0.675375,2.082820,-0.929928,-1.709505 +1.022702,1.724267,-0.670475,2.084017,-0.933351,-1.704817 +1.013349,1.728674,-0.665610,2.085147,-0.936795,-1.700098 +1.003953,1.733000,-0.660778,2.086210,-0.940259,-1.695348 +0.994517,1.737244,-0.655979,2.087205,-0.943743,-1.690567 +0.985041,1.741406,-0.651213,2.088134,-0.947245,-1.685756 +0.975527,1.745487,-0.646480,2.088997,-0.950765,-1.680913 +0.965978,1.749485,-0.641780,2.089794,-0.954301,-1.676039 +0.956394,1.753403,-0.637112,2.090526,-0.957853,-1.671134 +0.946778,1.757238,-0.632476,2.091193,-0.961420,-1.666197 +0.937130,1.760992,-0.627872,2.091796,-0.965001,-1.661230 +0.927454,1.764664,-0.623300,2.092335,-0.968595,-1.656231 +0.917750,1.768254,-0.618758,2.092810,-0.972202,-1.651200 +0.908019,1.771764,-0.614248,2.093223,-0.975819,-1.646138 +0.898265,1.775191,-0.609768,2.093573,-0.979447,-1.641045 +0.888488,1.778538,-0.605318,2.093862,-0.983084,-1.635920 +0.878690,1.781803,-0.600898,2.094089,-0.986730,-1.630763 +0.868873,1.784987,-0.596508,2.094255,-0.990384,-1.625574 +0.859039,1.788091,-0.592147,2.094361,-0.994044,-1.620354 +0.849189,1.791114,-0.587814,2.094407,-0.997709,-1.615102 +0.839324,1.794057,-0.583511,2.094393,-1.001380,-1.609818 +0.829448,1.796919,-0.579235,2.094321,-1.005055,-1.604502 +0.819560,1.799701,-0.574987,2.094191,-1.008732,-1.599154 +0.809663,1.802404,-0.570766,2.094003,-1.012412,-1.593774 +0.799759,1.805027,-0.566572,2.093758,-1.016092,-1.588362 +0.789850,1.807571,-0.562404,2.093456,-1.019773,-1.582918 +0.779936,1.810036,-0.558263,2.093098,-1.023454,-1.577442 +0.770020,1.812423,-0.554147,2.092684,-1.027132,-1.571933 +0.760103,1.814731,-0.550056,2.092216,-1.030808,-1.566393 +0.750187,1.816962,-0.545990,2.091694,-1.034481,-1.560820 +0.740274,1.819114,-0.541949,2.091117,-1.038149,-1.555214 +0.730366,1.821190,-0.537931,2.090488,-1.041811,-1.549576 +0.720463,1.823189,-0.533936,2.089806,-1.045468,-1.543906 +0.710567,1.825112,-0.529964,2.089072,-1.049117,-1.538203 +0.700681,1.826958,-0.526015,2.088287,-1.052758,-1.532468 +0.690806,1.828730,-0.522087,2.087451,-1.056391,-1.526700 +0.680944,1.830426,-0.518181,2.086564,-1.060013,-1.520900 +0.671095,1.832047,-0.514295,2.085628,-1.063624,-1.515067 +0.661262,1.833595,-0.510430,2.084644,-1.067224,-1.509202 +0.651447,1.835068,-0.506585,2.083611,-1.070811,-1.503303 +0.641650,1.836469,-0.502759,2.082530,-1.074384,-1.497372 +0.631875,1.837797,-0.498952,2.081402,-1.077943,-1.491409 +0.622121,1.839053,-0.495163,2.080228,-1.081486,-1.485412 +0.612391,1.840238,-0.491391,2.079008,-1.085013,-1.479383 +0.602686,1.841351,-0.487637,2.077742,-1.088523,-1.473321 +0.593008,1.842395,-0.483899,2.076432,-1.092014,-1.467226 +0.583358,1.843368,-0.480177,2.075079,-1.095487,-1.461098 +0.573739,1.844272,-0.476471,2.073682,-1.098940,-1.454938 +0.564151,1.845108,-0.472779,2.072242,-1.102372,-1.448744 +0.554596,1.845876,-0.469102,2.070760,-1.105782,-1.442518 +0.545075,1.846577,-0.465438,2.069237,-1.109170,-1.436258 +0.535590,1.847211,-0.461788,2.067674,-1.112534,-1.429966 +0.526143,1.847779,-0.458150,2.066070,-1.115874,-1.423641 +0.516735,1.848282,-0.454523,2.064427,-1.119188,-1.417283 +0.507367,1.848720,-0.450908,2.062746,-1.122477,-1.410892 +0.498042,1.849094,-0.447304,2.061026,-1.125739,-1.404468 +0.488759,1.849406,-0.443710,2.059269,-1.128973,-1.398011 +0.479521,1.849654,-0.440125,2.057475,-1.132178,-1.391521 +0.470330,1.849842,-0.436549,2.055645,-1.135354,-1.384999 +0.461186,1.849968,-0.432981,2.053779,-1.138499,-1.378443 +0.452091,1.850034,-0.429421,2.051879,-1.141613,-1.371854 +0.443046,1.850041,-0.425867,2.049945,-1.144696,-1.365233 +0.434053,1.849989,-0.422320,2.047978,-1.147745,-1.358578 +0.425114,1.849880,-0.418779,2.045977,-1.150761,-1.351891 +0.416228,1.849713,-0.415242,2.043945,-1.153742,-1.345171 +0.407398,1.849490,-0.411710,2.041881,-1.156688,-1.338418 +0.398626,1.849212,-0.408181,2.039786,-1.159598,-1.331632 +0.389911,1.848880,-0.404656,2.037662,-1.162471,-1.324813 +0.381257,1.848493,-0.401132,2.035508,-1.165306,-1.317961 +0.372663,1.848054,-0.397611,2.033325,-1.168103,-1.311077 +0.364131,1.847563,-0.394090,2.031114,-1.170860,-1.304160 +0.355662,1.847021,-0.390570,2.028875,-1.173578,-1.297210 +0.347258,1.846429,-0.387050,2.026610,-1.176254,-1.290227 +0.338920,1.845788,-0.383529,2.024319,-1.178889,-1.283212 +0.330649,1.845098,-0.380006,2.022002,-1.181482,-1.276164 +0.322446,1.844360,-0.376481,2.019661,-1.184032,-1.269084 +0.314312,1.843576,-0.372953,2.017296,-1.186537,-1.261971 +0.306248,1.842746,-0.369421,2.014907,-1.188999,-1.254826 +0.298256,1.841872,-0.365885,2.012495,-1.191414,-1.247648 +0.290336,1.840954,-0.362344,2.010061,-1.193784,-1.240438 +0.282490,1.839993,-0.358798,2.007606,-1.196107,-1.233195 +0.274719,1.838990,-0.355245,2.005130,-1.198383,-1.225920 +0.267023,1.837946,-0.351685,2.002633,-1.200611,-1.218613 +0.259404,1.836862,-0.348117,2.000118,-1.202789,-1.211274 +0.251863,1.835739,-0.344542,1.997583,-1.204919,-1.203903 +0.244400,1.834578,-0.340957,1.995030,-1.206998,-1.196499 +0.237018,1.833380,-0.337362,1.992460,-1.209026,-1.189064 +0.229716,1.832145,-0.333757,1.989872,-1.211003,-1.181597 +0.222495,1.830876,-0.330141,1.987269,-1.212927,-1.174098 +0.215357,1.829573,-0.326514,1.984649,-1.214799,-1.166567 +0.208302,1.828236,-0.322874,1.982015,-1.216617,-1.159004 +0.201332,1.826867,-0.319221,1.979367,-1.218381,-1.151410 +0.194446,1.825467,-0.315554,1.976704,-1.220091,-1.143784 +0.187647,1.824037,-0.311874,1.974029,-1.221745,-1.136127 +0.180934,1.822578,-0.308178,1.971341,-1.223343,-1.128439 +0.174309,1.821091,-0.304466,1.968641,-1.224885,-1.120719 +0.167772,1.819577,-0.300738,1.965930,-1.226370,-1.112969 +0.161324,1.818037,-0.296993,1.963209,-1.227797,-1.105187 +0.154966,1.816471,-0.293230,1.960477,-1.229166,-1.097374 +0.148698,1.814882,-0.289449,1.957736,-1.230476,-1.089530 +0.142521,1.813270,-0.285650,1.954986,-1.231727,-1.081656 +0.136436,1.811635,-0.281830,1.952228,-1.232918,-1.073751 +0.130444,1.809980,-0.277990,1.949463,-1.234048,-1.065815 +0.124545,1.808305,-0.274130,1.946690,-1.235118,-1.057849 +0.118739,1.806611,-0.270248,1.943912,-1.236127,-1.049853 +0.113028,1.804899,-0.266344,1.941127,-1.237073,-1.041826 +0.107411,1.803171,-0.262417,1.938337,-1.237957,-1.033770 +0.101890,1.801426,-0.258466,1.935543,-1.238778,-1.025683 +0.096465,1.799667,-0.254492,1.932744,-1.239536,-1.017567 +0.091136,1.797894,-0.250493,1.929942,-1.240230,-1.009421 +0.085904,1.796109,-0.246469,1.927137,-1.240860,-1.001245 +0.080769,1.794312,-0.242419,1.924330,-1.241426,-0.993040 +0.075732,1.792504,-0.238342,1.921521,-1.241926,-0.984806 +0.070793,1.790687,-0.234239,1.918711,-1.242360,-0.976543 +0.065953,1.788861,-0.230108,1.915900,-1.242729,-0.968251 +0.061212,1.787027,-0.225948,1.913089,-1.243032,-0.959929 +0.056570,1.785187,-0.221760,1.910278,-1.243267,-0.951580 +0.052027,1.783342,-0.217542,1.907469,-1.243436,-0.943201 +0.047585,1.781491,-0.213295,1.904661,-1.243537,-0.934794 +0.043242,1.779638,-0.209017,1.901855,-1.243570,-0.926359 +0.039001,1.777782,-0.204707,1.899051,-1.243535,-0.917896 +0.034859,1.775924,-0.200367,1.896251,-1.243432,-0.909406 +0.030819,1.774066,-0.195994,1.893454,-1.243260,-0.900887 +0.026880,1.772209,-0.191588,1.890661,-1.243018,-0.892341 +0.023042,1.770353,-0.187149,1.887873,-1.242708,-0.883767 +0.019306,1.768500,-0.182676,1.885090,-1.242327,-0.875166 +0.015671,1.766650,-0.178169,1.882313,-1.241876,-0.866539 +0.012138,1.764804,-0.173627,1.879542,-1.241356,-0.857884 +0.008706,1.762964,-0.169050,1.876777,-1.240764,-0.849203 +0.005377,1.761131,-0.164437,1.874020,-1.240102,-0.840495 +0.002149,1.759305,-0.159788,1.871270,-1.239369,-0.831761 +-0.000977,1.757487,-0.155102,1.868528,-1.238564,-0.823001 +-0.004000,1.755678,-0.150378,1.865794,-1.237688,-0.814215 +-0.006922,1.753880,-0.145617,1.863070,-1.236740,-0.805404 +-0.009742,1.752093,-0.140817,1.860354,-1.235720,-0.796567 +-0.012460,1.750318,-0.135979,1.857649,-1.234628,-0.787704 +-0.015076,1.748556,-0.131102,1.854954,-1.233464,-0.778817 +-0.017591,1.746808,-0.126185,1.852270,-1.232227,-0.769905 +-0.020004,1.745074,-0.121229,1.849596,-1.230918,-0.760968 +-0.022316,1.743357,-0.116231,1.846935,-1.229536,-0.752006 +-0.024526,1.741656,-0.111193,1.844285,-1.228081,-0.743021 +-0.026635,1.739973,-0.106114,1.841648,-1.226553,-0.734012 +-0.028644,1.738308,-0.100993,1.839023,-1.224952,-0.724978 +-0.030552,1.736662,-0.095830,1.836412,-1.223277,-0.715922 +-0.032359,1.735037,-0.090625,1.833815,-1.221530,-0.706842 +-0.034066,1.733432,-0.085377,1.831231,-1.219708,-0.697738 +-0.035674,1.731849,-0.080086,1.828662,-1.217814,-0.688613 +-0.037181,1.730289,-0.074751,1.826107,-1.215845,-0.679464 +-0.038590,1.728753,-0.069373,1.823568,-1.213804,-0.670293 +-0.039899,1.727240,-0.063950,1.821044,-1.211688,-0.661100 +-0.041110,1.725753,-0.058483,1.818537,-1.209499,-0.651886 +-0.042223,1.724292,-0.052971,1.816045,-1.207236,-0.642649 +-0.043238,1.722857,-0.047415,1.813570,-1.204899,-0.633392 +-0.044156,1.721450,-0.041812,1.811112,-1.202489,-0.624113 +-0.044976,1.720071,-0.036164,1.808671,-1.200005,-0.614813 +-0.045700,1.718721,-0.030470,1.806247,-1.197447,-0.605493 +-0.046328,1.717401,-0.024730,1.803842,-1.194816,-0.596153 +-0.046861,1.716111,-0.018944,1.801455,-1.192111,-0.586792 +-0.047298,1.714852,-0.013111,1.799086,-1.189332,-0.577412 +-0.047641,1.713625,-0.007230,1.796737,-1.186480,-0.568012 +-0.047890,1.712430,-0.001303,1.794406,-1.183555,-0.558593 +-0.048046,1.711269,0.004672,1.792095,-1.180556,-0.549156 +-0.048108,1.710142,0.010694,1.789804,-1.177484,-0.539699 +-0.048079,1.709049,0.016764,1.787533,-1.174339,-0.530224 +-0.047957,1.707991,0.022882,1.785282,-1.171120,-0.520731 +-0.047745,1.706969,0.029048,1.783051,-1.167829,-0.511220 +-0.047442,1.705983,0.035262,1.780842,-1.164465,-0.501692 +-0.047050,1.705034,0.041525,1.778654,-1.161029,-0.492146 +-0.046568,1.704123,0.047836,1.776487,-1.157520,-0.482584 +-0.045998,1.703251,0.054196,1.774341,-1.153938,-0.473005 +-0.045341,1.702416,0.060605,1.772218,-1.150285,-0.463409 +-0.044596,1.701622,0.067062,1.770116,-1.146559,-0.453798 +-0.043766,1.700866,0.073569,1.768037,-1.142762,-0.444171 +-0.042849,1.700152,0.080125,1.765981,-1.138893,-0.434528 +-0.041848,1.699478,0.086729,1.763947,-1.134952,-0.424870 +-0.040764,1.698845,0.093383,1.761936,-1.130941,-0.415198 +-0.039596,1.698254,0.100087,1.759949,-1.126858,-0.405511 +-0.038345,1.697706,0.106839,1.757985,-1.122705,-0.395809 +-0.037014,1.697200,0.113641,1.756044,-1.118482,-0.386094 +-0.035601,1.696737,0.120492,1.754127,-1.114188,-0.376365 +-0.034109,1.696318,0.127393,1.752235,-1.109824,-0.366624 +-0.032538,1.695943,0.134342,1.750366,-1.105391,-0.356869 +-0.030889,1.695612,0.141342,1.748522,-1.100888,-0.347101 +-0.029162,1.695326,0.148390,1.746702,-1.096316,-0.337322 +-0.027359,1.695086,0.155488,1.744906,-1.091675,-0.327530 +-0.025481,1.694890,0.162634,1.743136,-1.086966,-0.317727 +-0.023529,1.694741,0.169830,1.741391,-1.082189,-0.307913 +-0.021503,1.694637,0.177075,1.739670,-1.077343,-0.298087 +-0.019404,1.694580,0.184369,1.737975,-1.072431,-0.288251 +-0.017234,1.694569,0.191712,1.736305,-1.067451,-0.278405 +-0.014993,1.694606,0.199103,1.734661,-1.062404,-0.268549 +-0.012683,1.694689,0.206543,1.733042,-1.057290,-0.258684 +-0.010304,1.694820,0.214031,1.731449,-1.052111,-0.248809 +-0.007857,1.694999,0.221568,1.729882,-1.046866,-0.238925 +-0.005347,1.695223,0.229147,1.728339,-1.041560,-0.229040 +-0.002786,1.695480,0.236759,1.726807,-1.036204,-0.219162 +-0.000188,1.695754,0.244389,1.725271,-1.030813,-0.209305 +0.002432,1.696031,0.252022,1.723716,-1.025402,-0.199485 +0.005058,1.696297,0.259643,1.722126,-1.019985,-0.189716 +0.007676,1.696534,0.267237,1.720488,-1.014578,-0.180013 +0.010270,1.696730,0.274790,1.718785,-1.009196,-0.170392 +0.012826,1.696869,0.282285,1.717004,-1.003853,-0.160868 +0.015329,1.696935,0.289709,1.715128,-0.998565,-0.151455 +0.017763,1.696914,0.297046,1.713143,-0.993346,-0.142168 +0.020114,1.696791,0.304280,1.711034,-0.988195,-0.133023 +0.022366,1.696551,0.311398,1.708786,-0.983099,-0.124035 +0.024505,1.696178,0.318385,1.706384,-0.978042,-0.115218 +0.026515,1.695659,0.325224,1.703813,-0.973009,-0.106587 +0.028382,1.694977,0.331901,1.701058,-0.967985,-0.098158 +0.030091,1.694118,0.338402,1.698104,-0.962961,-0.089945 +0.031626,1.693067,0.344710,1.694935,-0.957938,-0.081964 +0.032973,1.691808,0.350812,1.691538,-0.952915,-0.074229 +0.034119,1.690328,0.356692,1.687896,-0.947892,-0.066756 +0.035072,1.688610,0.362335,1.683995,-0.942868,-0.059560 +0.035848,1.686640,0.367726,1.679821,-0.937845,-0.052654 +0.036460,1.684402,0.372850,1.675357,-0.932822,-0.046056 +0.036925,1.681883,0.377692,1.670589,-0.927799,-0.039778 +0.037256,1.679066,0.382238,1.665502,-0.922775,-0.033838 +0.037470,1.675938,0.386471,1.660081,-0.917752,-0.028248 +0.037581,1.672482,0.390378,1.654316,-0.912729,-0.023025 +0.037603,1.668683,0.393943,1.648218,-0.907705,-0.018183 +0.037553,1.664528,0.397151,1.641803,-0.902682,-0.013718 +0.037444,1.660000,0.399987,1.635085,-0.897659,-0.009616 +0.037293,1.655087,0.402440,1.628078,-0.892636,-0.005863 +0.037114,1.649792,0.404518,1.620799,-0.887612,-0.002442 +0.036921,1.644131,0.406238,1.613262,-0.882589,0.000661 +0.036728,1.638117,0.407613,1.605482,-0.877566,0.003461 +0.036534,1.631767,0.408659,1.597474,-0.872543,0.005973 +0.036340,1.625095,0.409390,1.589253,-0.867519,0.008212 +0.036146,1.618116,0.409822,1.580835,-0.862496,0.010193 +0.035952,1.610846,0.409970,1.572233,-0.857473,0.011931 +0.035758,1.603299,0.409849,1.563464,-0.852450,0.013441 +0.035564,1.595490,0.409473,1.554541,-0.847426,0.014737 +0.035370,1.587434,0.408858,1.545481,-0.842403,0.015836 +0.035176,1.579146,0.408018,1.536298,-0.837380,0.016752 +0.034982,1.570642,0.406969,1.527006,-0.832356,0.017500 +0.034788,1.561935,0.405726,1.517622,-0.827333,0.018095 +0.034595,1.553042,0.404304,1.508160,-0.822310,0.018552 +0.034401,1.543977,0.402717,1.498636,-0.817287,0.018886 +0.034207,1.534756,0.400981,1.489063,-0.812263,0.019112 +0.034013,1.525392,0.399111,1.479457,-0.807240,0.019246 +0.033819,1.515902,0.397121,1.469834,-0.802217,0.019301 +0.033625,1.506300,0.395027,1.460206,-0.797194,0.019293 +0.033431,1.496602,0.392844,1.450578,-0.792170,0.019237 +0.033237,1.486821,0.390586,1.440950,-0.787147,0.019148 +0.033043,1.476974,0.388269,1.431322,-0.782124,0.019041 +0.032849,1.467075,0.385908,1.421694,-0.777100,0.018930 +0.032655,1.457139,0.383518,1.412067,-0.772077,0.018819 +0.032462,1.447181,0.381113,1.402439,-0.767054,0.018708 +0.032268,1.437216,0.378706,1.392811,-0.762031,0.018596 +0.032074,1.427251,0.376299,1.383183,-0.757007,0.018485 +0.031880,1.417286,0.373892,1.373555,-0.751984,0.018374 +0.031686,1.407321,0.371485,1.363927,-0.746961,0.018263 +0.031492,1.397356,0.369078,1.354300,-0.741938,0.018152 +0.031298,1.387391,0.366670,1.344672,-0.736914,0.018040 +0.031104,1.377426,0.364263,1.335044,-0.731891,0.017929 +0.030910,1.367461,0.361856,1.325416,-0.726868,0.017818 +0.030716,1.357496,0.359449,1.315788,-0.721845,0.017707 +0.030522,1.347531,0.357042,1.306161,-0.716821,0.017596 +0.030329,1.337565,0.354635,1.296533,-0.711798,0.017485 +0.030135,1.327600,0.352228,1.286905,-0.706775,0.017373 +0.029941,1.317635,0.349821,1.277277,-0.701751,0.017262 +0.029747,1.307670,0.347414,1.267649,-0.696728,0.017151 +0.029553,1.297705,0.345007,1.258021,-0.691705,0.017040 +0.029359,1.287740,0.342600,1.248394,-0.686682,0.016929 +0.029165,1.277775,0.340193,1.238766,-0.681658,0.016818 +0.028971,1.267810,0.337786,1.229138,-0.676635,0.016706 +0.028777,1.257845,0.335379,1.219510,-0.671612,0.016595 +0.028583,1.247880,0.332972,1.209882,-0.666589,0.016484 +0.028389,1.237915,0.330565,1.200254,-0.661565,0.016373 +0.028196,1.227950,0.328158,1.190627,-0.656542,0.016262 +0.028002,1.217984,0.325751,1.180999,-0.651519,0.016151 +0.027808,1.208019,0.323344,1.171371,-0.646495,0.016039 +0.027614,1.198054,0.320937,1.161743,-0.641472,0.015928 +0.027420,1.188089,0.318530,1.152115,-0.636449,0.015817 +0.027226,1.178124,0.316123,1.142487,-0.631426,0.015706 +0.027032,1.168159,0.313716,1.132860,-0.626402,0.015595 +0.026838,1.158194,0.311309,1.123232,-0.621379,0.015484 +0.026644,1.148229,0.308901,1.113604,-0.616356,0.015372 +0.026450,1.138264,0.306494,1.103976,-0.611333,0.015261 +0.026256,1.128299,0.304087,1.094348,-0.606309,0.015150 +0.026062,1.118334,0.301680,1.084720,-0.601286,0.015039 +0.025869,1.108369,0.299273,1.075093,-0.596263,0.014928 +0.025675,1.098403,0.296866,1.065465,-0.591240,0.014817 +0.025481,1.088438,0.294459,1.055837,-0.586216,0.014705 +0.025287,1.078473,0.292052,1.046209,-0.581193,0.014594 +0.025093,1.068508,0.289645,1.036581,-0.576170,0.014483 +0.024899,1.058543,0.287238,1.026954,-0.571146,0.014372 +0.024705,1.048578,0.284831,1.017326,-0.566123,0.014261 +0.024511,1.038613,0.282424,1.007698,-0.561100,0.014150 +0.024317,1.028648,0.280017,0.998070,-0.556077,0.014038 +0.024123,1.018683,0.277610,0.988442,-0.551053,0.013927 +0.023929,1.008718,0.275203,0.978814,-0.546030,0.013816 +0.023736,0.998753,0.272796,0.969187,-0.541007,0.013705 +0.023542,0.988788,0.270389,0.959559,-0.535984,0.013594 +0.023348,0.978823,0.267982,0.949931,-0.530960,0.013482 +0.023154,0.968857,0.265575,0.940303,-0.525937,0.013371 +0.022960,0.958892,0.263168,0.930675,-0.520914,0.013260 +0.022766,0.948927,0.260761,0.921047,-0.515890,0.013149 +0.022572,0.938962,0.258354,0.911420,-0.510867,0.013038 +0.022378,0.928997,0.255947,0.901792,-0.505844,0.012927 +0.022184,0.919032,0.253539,0.892164,-0.500821,0.012815 +0.021990,0.909067,0.251132,0.882536,-0.495797,0.012704 +0.021796,0.899102,0.248725,0.872908,-0.490774,0.012593 +0.021603,0.889137,0.246318,0.863280,-0.485751,0.012482 +0.021409,0.879172,0.243911,0.853653,-0.480728,0.012371 +0.021215,0.869207,0.241504,0.844025,-0.475704,0.012260 +0.021021,0.859242,0.239097,0.834397,-0.470681,0.012148 +0.020827,0.849276,0.236690,0.824769,-0.465658,0.012037 +0.020633,0.839311,0.234283,0.815141,-0.460635,0.011926 +0.020439,0.829346,0.231876,0.805514,-0.455611,0.011815 +0.020245,0.819381,0.229469,0.795886,-0.450588,0.011704 +0.020051,0.809416,0.227062,0.786258,-0.445565,0.011593 +0.019857,0.799451,0.224655,0.776630,-0.440541,0.011481 +0.019663,0.789486,0.222248,0.767002,-0.435518,0.011370 +0.019470,0.779521,0.219841,0.757374,-0.430495,0.011259 +0.019276,0.769556,0.217434,0.747747,-0.425472,0.011148 +0.019082,0.759591,0.215027,0.738119,-0.420448,0.011037 +0.018888,0.749626,0.212620,0.728491,-0.415425,0.010926 +0.018694,0.739661,0.210213,0.718863,-0.410402,0.010814 +0.018500,0.729695,0.207806,0.709235,-0.405379,0.010703 +0.018306,0.719730,0.205399,0.699607,-0.400355,0.010592 +0.018112,0.709765,0.202992,0.689980,-0.395332,0.010481 +0.017918,0.699800,0.200585,0.680352,-0.390309,0.010370 +0.017724,0.689835,0.198177,0.670724,-0.385285,0.010259 +0.017530,0.679870,0.195770,0.661096,-0.380262,0.010147 +0.017336,0.669905,0.193363,0.651468,-0.375239,0.010036 +0.017143,0.659940,0.190956,0.641840,-0.370216,0.009925 +0.016949,0.649975,0.188549,0.632213,-0.365192,0.009814 +0.016755,0.640010,0.186142,0.622585,-0.360169,0.009703 +0.016561,0.630045,0.183735,0.612957,-0.355146,0.009592 +0.016367,0.620080,0.181328,0.603329,-0.350123,0.009480 +0.016173,0.610114,0.178921,0.593701,-0.345099,0.009369 +0.015979,0.600149,0.176514,0.584073,-0.340076,0.009258 +0.015785,0.590184,0.174107,0.574446,-0.335053,0.009147 +0.015591,0.580219,0.171700,0.564818,-0.330030,0.009036 +0.015397,0.570254,0.169293,0.555190,-0.325006,0.008925 +0.015203,0.560289,0.166886,0.545562,-0.319983,0.008813 +0.015010,0.550324,0.164479,0.535934,-0.314960,0.008702 +0.014816,0.540359,0.162072,0.526307,-0.309936,0.008591 +0.014622,0.530394,0.159665,0.516679,-0.304913,0.008480 +0.014428,0.520429,0.157258,0.507051,-0.299890,0.008369 +0.014234,0.510464,0.154851,0.497423,-0.294867,0.008257 +0.014040,0.500499,0.152444,0.487795,-0.289843,0.008146 +0.013846,0.490533,0.150037,0.478167,-0.284820,0.008035 +0.013652,0.480568,0.147630,0.468540,-0.279797,0.007924 +0.013458,0.470603,0.145223,0.458912,-0.274774,0.007813 +0.013264,0.460638,0.142816,0.449284,-0.269750,0.007702 +0.013070,0.450673,0.140408,0.439656,-0.264727,0.007590 +0.012877,0.440708,0.138001,0.430028,-0.259704,0.007479 +0.012683,0.430743,0.135594,0.420400,-0.254680,0.007368 +0.012489,0.420778,0.133187,0.410773,-0.249657,0.007257 +0.012295,0.410813,0.130780,0.401145,-0.244634,0.007146 +0.012101,0.400848,0.128373,0.391517,-0.239611,0.007035 +0.011907,0.390883,0.125966,0.381889,-0.234587,0.006923 +0.011713,0.380918,0.123559,0.372261,-0.229564,0.006812 +0.011519,0.370952,0.121152,0.362633,-0.224541,0.006701 +0.011325,0.360987,0.118745,0.353006,-0.219518,0.006590 +0.011131,0.351022,0.116338,0.343378,-0.214494,0.006479 +0.010937,0.341057,0.113931,0.333750,-0.209471,0.006368 +0.010744,0.331092,0.111524,0.324122,-0.204448,0.006256 +0.010550,0.321127,0.109117,0.314494,-0.199425,0.006145 +0.010356,0.311162,0.106710,0.304866,-0.194401,0.006034 +0.010162,0.301197,0.104303,0.295239,-0.189378,0.005923 +0.009968,0.291232,0.101896,0.285611,-0.184355,0.005812 +0.009774,0.281267,0.099489,0.275983,-0.179331,0.005701 +0.009580,0.271302,0.097082,0.266355,-0.174308,0.005589 +0.009386,0.261337,0.094675,0.256727,-0.169285,0.005478 +0.009192,0.251372,0.092268,0.247100,-0.164262,0.005367 +0.008998,0.241416,0.089861,0.237472,-0.159238,0.005256 +0.008804,0.231483,0.087454,0.227856,-0.154215,0.005145 +0.008611,0.221588,0.085046,0.218264,-0.149192,0.005034 +0.008417,0.211747,0.082639,0.208712,-0.144169,0.004922 +0.008223,0.201973,0.080232,0.199215,-0.139145,0.004811 +0.008029,0.192283,0.077825,0.189788,-0.134122,0.004700 +0.007835,0.182692,0.075418,0.180446,-0.129099,0.004589 +0.007641,0.173213,0.073011,0.171205,-0.124075,0.004478 +0.007447,0.163863,0.070604,0.162078,-0.119052,0.004367 +0.007253,0.154656,0.068197,0.153082,-0.114029,0.004255 +0.007059,0.145607,0.065790,0.144230,-0.109006,0.004144 +0.006865,0.136732,0.063383,0.135539,-0.103982,0.004033 +0.006671,0.128044,0.060976,0.127022,-0.098959,0.003922 +0.006477,0.119560,0.058569,0.118696,-0.093936,0.003811 +0.006284,0.111294,0.056162,0.110574,-0.088913,0.003699 +0.006090,0.103262,0.053755,0.102673,-0.083900,0.003588 +0.005896,0.095478,0.051348,0.095007,-0.078910,0.003477 +0.005702,0.087957,0.048941,0.087591,-0.073959,0.003366 +0.005508,0.080714,0.046534,0.080440,-0.069063,0.003255 +0.005314,0.073764,0.044127,0.073568,-0.064235,0.003144 +0.005120,0.067123,0.041720,0.066992,-0.059492,0.003032 +0.004926,0.060805,0.039313,0.060726,-0.054847,0.002921 +0.004732,0.054825,0.036906,0.054785,-0.050316,0.002810 +0.004538,0.049198,0.034499,0.049184,-0.045915,0.002699 +0.004344,0.043940,0.032092,0.043939,-0.041657,0.002588 +0.004151,0.039062,0.029685,0.039062,-0.037559,0.002477 +0.003957,0.034560,0.027283,0.034560,-0.033634,0.002365 +0.003763,0.030417,0.024902,0.030417,-0.029898,0.002254 +0.003569,0.026620,0.022556,0.026620,-0.026367,0.002143 +0.003375,0.023153,0.020260,0.023153,-0.023054,0.002032 +0.003181,0.020000,0.018029,0.020000,-0.019975,0.001921 +0.002987,0.017148,0.015878,0.017148,-0.017146,0.001810 +0.002793,0.014580,0.013822,0.014580,-0.014580,0.001698 +0.002599,0.012283,0.011876,0.012283,-0.012283,0.001587 +0.002405,0.010240,0.010055,0.010240,-0.010240,0.001476 +0.002211,0.008438,0.008374,0.008438,-0.008438,0.001365 +0.002018,0.006860,0.006848,0.006860,-0.006860,0.001254 +0.001824,0.005493,0.005492,0.005493,-0.005493,0.001143 +0.001630,0.004320,0.004320,0.004320,-0.004320,0.001031 +0.001436,0.003328,0.003327,0.003328,-0.003328,0.000920 +0.001242,0.002500,0.002500,0.002500,-0.002500,0.000809 +0.001048,0.001823,0.001822,0.001823,-0.001823,0.000698 +0.000854,0.001280,0.001280,0.001280,-0.001280,0.000587 +0.000660,0.000858,0.000857,0.000858,-0.000858,0.000476 +0.000470,0.000540,0.000540,0.000540,-0.000540,0.000364 +0.000299,0.000313,0.000312,0.000313,-0.000313,0.000253 +0.000160,0.000160,0.000160,0.000160,-0.000160,0.000150 +0.000068,0.000068,0.000067,0.000068,-0.000067,0.000067 +0.000020,0.000020,0.000020,0.000020,-0.000020,0.000020 +0.000003,0.000003,0.000002,0.000003,-0.000002,0.000003 +0.000000,0.000000,-0.000000,0.000000,0.000000,0.000000 +0.000000,0.000000,-0.000000,0.000000,0.000000,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/14_trajectory_vel2.2_acc10.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/14_trajectory_vel2.2_acc10.txt new file mode 100644 index 00000000..e8852431 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/14_trajectory_vel2.2_acc10.txt @@ -0,0 +1,20624 @@ +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000013,-0.000013,-0.000013,-0.000013,-0.000013,-0.000013 +-0.000032,-0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000063,-0.000063,-0.000063,-0.000063,-0.000063,-0.000063 +-0.000108,-0.000108,-0.000108,-0.000108,-0.000108,-0.000108 +-0.000172,-0.000172,-0.000172,-0.000172,-0.000172,-0.000172 +-0.000256,-0.000256,-0.000256,-0.000256,-0.000256,-0.000256 +-0.000365,-0.000365,-0.000365,-0.000365,-0.000365,-0.000365 +-0.000500,-0.000500,-0.000500,-0.000500,-0.000500,-0.000500 +-0.000665,-0.000665,-0.000665,-0.000665,-0.000665,-0.000665 +-0.000864,-0.000864,-0.000864,-0.000864,-0.000864,-0.000864 +-0.001098,-0.001098,-0.001098,-0.001098,-0.001098,-0.001098 +-0.001372,-0.001372,-0.001372,-0.001372,-0.001372,-0.001372 +-0.001687,-0.001687,-0.001687,-0.001687,-0.001687,-0.001687 +-0.002048,-0.002048,-0.002048,-0.002048,-0.002048,-0.002048 +-0.002457,-0.002457,-0.002457,-0.002457,-0.002457,-0.002457 +-0.002916,-0.002916,-0.002916,-0.002916,-0.002916,-0.002916 +-0.003430,-0.003430,-0.003430,-0.003430,-0.003430,-0.003430 +-0.004000,-0.004000,-0.004000,-0.004000,-0.004000,-0.004000 +-0.004631,-0.004631,-0.004631,-0.004631,-0.004631,-0.004631 +-0.005324,-0.005324,-0.005324,-0.005324,-0.005324,-0.005324 +-0.006084,-0.006084,-0.006084,-0.006084,-0.006084,-0.006084 +-0.006912,-0.006912,-0.006912,-0.006912,-0.006912,-0.006912 +-0.007813,-0.007813,-0.007813,-0.007813,-0.007813,-0.007813 +-0.008788,-0.008788,-0.008788,-0.008788,-0.008788,-0.008788 +-0.009842,-0.009842,-0.009842,-0.009842,-0.009842,-0.009842 +-0.010976,-0.010976,-0.010976,-0.010976,-0.010976,-0.010976 +-0.012195,-0.012195,-0.012195,-0.012195,-0.012195,-0.012195 +-0.013500,-0.013500,-0.013500,-0.013500,-0.013500,-0.013500 +-0.014896,-0.014896,-0.014896,-0.014896,-0.014896,-0.014896 +-0.016384,-0.016384,-0.016384,-0.016384,-0.016384,-0.016384 +-0.017969,-0.017969,-0.017969,-0.017969,-0.017969,-0.017969 +-0.019652,-0.019652,-0.019652,-0.019652,-0.019652,-0.019652 +-0.021438,-0.021438,-0.021438,-0.021438,-0.021438,-0.021438 +-0.023328,-0.023328,-0.023328,-0.023328,-0.023328,-0.023328 +-0.025326,-0.025322,-0.025327,-0.025327,-0.025327,-0.025327 +-0.027433,-0.027418,-0.027436,-0.027436,-0.027436,-0.027436 +-0.029645,-0.029612,-0.029660,-0.029660,-0.029660,-0.029655 +-0.031960,-0.031902,-0.032000,-0.032000,-0.032000,-0.031981 +-0.034374,-0.034284,-0.034461,-0.034461,-0.034461,-0.034411 +-0.036884,-0.036755,-0.037044,-0.037044,-0.037044,-0.036941 +-0.039488,-0.039312,-0.039754,-0.039754,-0.039754,-0.039570 +-0.042182,-0.041953,-0.042592,-0.042592,-0.042592,-0.042293 +-0.044964,-0.044674,-0.045563,-0.045563,-0.045563,-0.045109 +-0.047830,-0.047473,-0.048668,-0.048668,-0.048668,-0.048013 +-0.050778,-0.050346,-0.051912,-0.051912,-0.051911,-0.051003 +-0.053804,-0.053290,-0.055296,-0.055296,-0.055294,-0.054076 +-0.056905,-0.056302,-0.058825,-0.058825,-0.058812,-0.057229 +-0.060079,-0.059380,-0.062500,-0.062500,-0.062463,-0.060459 +-0.063323,-0.062520,-0.066325,-0.066325,-0.066243,-0.063763 +-0.066632,-0.065720,-0.070300,-0.070300,-0.070151,-0.067138 +-0.070006,-0.068976,-0.074425,-0.074425,-0.074183,-0.070581 +-0.073439,-0.072285,-0.078700,-0.078700,-0.078336,-0.074088 +-0.076930,-0.075644,-0.083125,-0.083124,-0.082606,-0.077657 +-0.080476,-0.079051,-0.087700,-0.087694,-0.086992,-0.081286 +-0.084073,-0.082502,-0.092425,-0.092407,-0.091489,-0.084970 +-0.087718,-0.085994,-0.097300,-0.097260,-0.096096,-0.088707 +-0.091409,-0.089525,-0.102325,-0.102250,-0.100808,-0.092494 +-0.095142,-0.093091,-0.107500,-0.107374,-0.105623,-0.096328 +-0.098915,-0.096690,-0.112825,-0.112629,-0.110539,-0.100206 +-0.102724,-0.100317,-0.118300,-0.118012,-0.115551,-0.104124 +-0.106567,-0.103971,-0.123925,-0.123520,-0.120657,-0.108081 +-0.110440,-0.107649,-0.129700,-0.129150,-0.125854,-0.112072 +-0.114340,-0.111347,-0.135625,-0.134899,-0.131139,-0.116096 +-0.118265,-0.115062,-0.141700,-0.140764,-0.136509,-0.120148 +-0.122212,-0.118791,-0.147925,-0.146742,-0.141960,-0.124226 +-0.126176,-0.122532,-0.154298,-0.152831,-0.147491,-0.128327 +-0.130157,-0.126281,-0.160816,-0.159026,-0.153098,-0.132448 +-0.134149,-0.130035,-0.167476,-0.165325,-0.158777,-0.136586 +-0.138151,-0.133792,-0.174275,-0.171726,-0.164527,-0.140738 +-0.142160,-0.137549,-0.181210,-0.178224,-0.170343,-0.144900 +-0.146172,-0.141306,-0.188278,-0.184817,-0.176224,-0.149071 +-0.150184,-0.145063,-0.195477,-0.191503,-0.182165,-0.153246 +-0.154197,-0.148819,-0.202802,-0.198277,-0.188164,-0.157424 +-0.158210,-0.152576,-0.210252,-0.205138,-0.194218,-0.161601 +-0.162223,-0.156333,-0.217822,-0.212081,-0.200324,-0.165778 +-0.166235,-0.160090,-0.225511,-0.219105,-0.206479,-0.169956 +-0.170248,-0.163847,-0.233315,-0.226205,-0.212680,-0.174133 +-0.174261,-0.167604,-0.241230,-0.233380,-0.218924,-0.178311 +-0.178273,-0.171361,-0.249255,-0.240625,-0.225208,-0.182488 +-0.182286,-0.175118,-0.257386,-0.247939,-0.231529,-0.186666 +-0.186299,-0.178875,-0.265620,-0.255318,-0.237883,-0.190843 +-0.190312,-0.182632,-0.273954,-0.262758,-0.244269,-0.195021 +-0.194324,-0.186389,-0.282385,-0.270258,-0.250682,-0.199198 +-0.198337,-0.190146,-0.290910,-0.277814,-0.257121,-0.203376 +-0.202350,-0.193903,-0.299527,-0.285423,-0.263581,-0.207553 +-0.206362,-0.197660,-0.308231,-0.293082,-0.270061,-0.211731 +-0.210375,-0.201416,-0.317020,-0.300787,-0.276556,-0.215908 +-0.214388,-0.205173,-0.325892,-0.308537,-0.283064,-0.220086 +-0.218400,-0.208930,-0.334842,-0.316328,-0.289582,-0.224263 +-0.222413,-0.212687,-0.343869,-0.324157,-0.296107,-0.228441 +-0.226426,-0.216444,-0.352969,-0.332021,-0.302636,-0.232618 +-0.230439,-0.220201,-0.362138,-0.339917,-0.309166,-0.236796 +-0.234451,-0.223958,-0.371375,-0.347842,-0.315696,-0.240973 +-0.238464,-0.227715,-0.380676,-0.355793,-0.322226,-0.245150 +-0.242477,-0.231472,-0.390038,-0.363767,-0.328756,-0.249328 +-0.246489,-0.235229,-0.399458,-0.371761,-0.335286,-0.253505 +-0.250502,-0.238986,-0.408933,-0.379773,-0.341817,-0.257683 +-0.254515,-0.242743,-0.418461,-0.387798,-0.348347,-0.261860 +-0.258528,-0.246500,-0.428037,-0.395834,-0.354877,-0.266038 +-0.262540,-0.250256,-0.437659,-0.403878,-0.361407,-0.270215 +-0.266553,-0.254013,-0.447324,-0.411927,-0.367937,-0.274393 +-0.270566,-0.257770,-0.457030,-0.419979,-0.374467,-0.278570 +-0.274578,-0.261527,-0.466772,-0.428030,-0.380997,-0.282748 +-0.278591,-0.265284,-0.476549,-0.436082,-0.387527,-0.286925 +-0.282604,-0.269041,-0.486357,-0.444133,-0.394057,-0.291103 +-0.286617,-0.272798,-0.496193,-0.452185,-0.400587,-0.295280 +-0.290629,-0.276555,-0.506053,-0.460236,-0.407117,-0.299458 +-0.294642,-0.280312,-0.515936,-0.468288,-0.413647,-0.303635 +-0.298655,-0.284069,-0.525838,-0.476339,-0.420177,-0.307813 +-0.302667,-0.287826,-0.535756,-0.484390,-0.426707,-0.311990 +-0.306680,-0.291583,-0.545687,-0.492442,-0.433238,-0.316168 +-0.310693,-0.295340,-0.555629,-0.500493,-0.439768,-0.320345 +-0.314705,-0.299097,-0.565577,-0.508545,-0.446298,-0.324523 +-0.318718,-0.302853,-0.575529,-0.516596,-0.452828,-0.328700 +-0.322731,-0.306610,-0.585483,-0.524648,-0.459358,-0.332877 +-0.326744,-0.310367,-0.595436,-0.532699,-0.465888,-0.337055 +-0.330756,-0.314124,-0.605390,-0.540751,-0.472418,-0.341232 +-0.334769,-0.317881,-0.615343,-0.548802,-0.478948,-0.345410 +-0.338782,-0.321638,-0.625297,-0.556854,-0.485478,-0.349587 +-0.342794,-0.325395,-0.635250,-0.564905,-0.492008,-0.353765 +-0.346807,-0.329152,-0.645204,-0.572957,-0.498538,-0.357942 +-0.350820,-0.332909,-0.655157,-0.581008,-0.505068,-0.362120 +-0.354833,-0.336666,-0.665111,-0.589060,-0.511598,-0.366297 +-0.358845,-0.340423,-0.675065,-0.597111,-0.518128,-0.370475 +-0.362858,-0.344180,-0.685018,-0.605162,-0.524659,-0.374652 +-0.366871,-0.347937,-0.694972,-0.613214,-0.531189,-0.378830 +-0.370883,-0.351694,-0.704925,-0.621265,-0.537719,-0.383007 +-0.374896,-0.355450,-0.714879,-0.629317,-0.544249,-0.387185 +-0.378909,-0.359207,-0.724832,-0.637368,-0.550779,-0.391362 +-0.382922,-0.362964,-0.734786,-0.645420,-0.557309,-0.395540 +-0.386934,-0.366721,-0.744739,-0.653471,-0.563839,-0.399717 +-0.390947,-0.370478,-0.754693,-0.661523,-0.570369,-0.403895 +-0.394960,-0.374235,-0.764646,-0.669574,-0.576899,-0.408072 +-0.398972,-0.377992,-0.774600,-0.677626,-0.583429,-0.412249 +-0.402985,-0.381749,-0.784554,-0.685677,-0.589959,-0.416427 +-0.406998,-0.385506,-0.794507,-0.693729,-0.596489,-0.420604 +-0.411010,-0.389263,-0.804461,-0.701780,-0.603019,-0.424782 +-0.415023,-0.393020,-0.814414,-0.709831,-0.609549,-0.428959 +-0.419036,-0.396777,-0.824368,-0.717883,-0.616080,-0.433137 +-0.423049,-0.400534,-0.834321,-0.725934,-0.622610,-0.437314 +-0.427061,-0.404290,-0.844275,-0.733986,-0.629140,-0.441492 +-0.431074,-0.408047,-0.854228,-0.742037,-0.635670,-0.445669 +-0.435087,-0.411804,-0.864182,-0.750089,-0.642200,-0.449847 +-0.439099,-0.415561,-0.874135,-0.758140,-0.648730,-0.454024 +-0.443112,-0.419318,-0.884089,-0.766192,-0.655260,-0.458202 +-0.447125,-0.423075,-0.894042,-0.774243,-0.661790,-0.462379 +-0.451138,-0.426832,-0.903996,-0.782295,-0.668320,-0.466557 +-0.455150,-0.430589,-0.913950,-0.790346,-0.674850,-0.470734 +-0.459163,-0.434346,-0.923903,-0.798398,-0.681380,-0.474912 +-0.463176,-0.438103,-0.933857,-0.806449,-0.687910,-0.479089 +-0.467188,-0.441860,-0.943810,-0.814501,-0.694440,-0.483267 +-0.471201,-0.445617,-0.953764,-0.822552,-0.700970,-0.487444 +-0.475214,-0.449374,-0.963717,-0.830603,-0.707501,-0.491621 +-0.479226,-0.453131,-0.973671,-0.838655,-0.714031,-0.495799 +-0.483239,-0.456887,-0.983624,-0.846706,-0.720561,-0.499976 +-0.487252,-0.460644,-0.993578,-0.854758,-0.727091,-0.504154 +-0.491265,-0.464401,-1.003531,-0.862809,-0.733621,-0.508331 +-0.495277,-0.468158,-1.013485,-0.870861,-0.740151,-0.512509 +-0.499290,-0.471915,-1.023439,-0.878912,-0.746681,-0.516686 +-0.503303,-0.475672,-1.033392,-0.886964,-0.753211,-0.520864 +-0.507315,-0.479429,-1.043346,-0.895015,-0.759741,-0.525041 +-0.511328,-0.483186,-1.053299,-0.903067,-0.766271,-0.529219 +-0.515341,-0.486943,-1.063253,-0.911118,-0.772801,-0.533396 +-0.519354,-0.490700,-1.073206,-0.919170,-0.779331,-0.537574 +-0.523366,-0.494457,-1.083160,-0.927221,-0.785861,-0.541751 +-0.527379,-0.498214,-1.093113,-0.935272,-0.792391,-0.545929 +-0.531392,-0.501971,-1.103067,-0.943324,-0.798922,-0.550106 +-0.535404,-0.505728,-1.113020,-0.951375,-0.805452,-0.554284 +-0.539417,-0.509484,-1.122974,-0.959427,-0.811982,-0.558461 +-0.543430,-0.513241,-1.132928,-0.967478,-0.818512,-0.562639 +-0.547443,-0.516998,-1.142881,-0.975530,-0.825042,-0.566816 +-0.551455,-0.520755,-1.152835,-0.983581,-0.831572,-0.570994 +-0.555468,-0.524510,-1.162788,-0.991633,-0.838102,-0.575171 +-0.559481,-0.528261,-1.172742,-0.999684,-0.844632,-0.579348 +-0.563493,-0.532004,-1.182695,-1.007736,-0.851162,-0.583526 +-0.567506,-0.535737,-1.192649,-1.015787,-0.857692,-0.587703 +-0.571519,-0.539456,-1.202602,-1.023839,-0.864222,-0.591881 +-0.575531,-0.543159,-1.212556,-1.031890,-0.870752,-0.596058 +-0.579544,-0.546842,-1.222509,-1.039942,-0.877282,-0.600236 +-0.583557,-0.550502,-1.232463,-1.047993,-0.883812,-0.604413 +-0.587570,-0.554137,-1.242417,-1.056044,-0.890343,-0.608591 +-0.591582,-0.557743,-1.252370,-1.064096,-0.896873,-0.612768 +-0.595595,-0.561318,-1.262324,-1.072147,-0.903403,-0.616946 +-0.599608,-0.564858,-1.272277,-1.080199,-0.909933,-0.621123 +-0.603620,-0.568361,-1.282231,-1.088250,-0.916463,-0.625301 +-0.607633,-0.571823,-1.292184,-1.096302,-0.922993,-0.629478 +-0.611646,-0.575242,-1.302138,-1.104353,-0.929523,-0.633656 +-0.615659,-0.578614,-1.312091,-1.112405,-0.936053,-0.637833 +-0.619671,-0.581937,-1.322045,-1.120456,-0.942583,-0.642011 +-0.623684,-0.585207,-1.331998,-1.128508,-0.949113,-0.646188 +-0.627697,-0.588421,-1.341952,-1.136559,-0.955643,-0.650366 +-0.631709,-0.591577,-1.351906,-1.144611,-0.962173,-0.654543 +-0.635722,-0.594672,-1.361859,-1.152662,-0.968703,-0.658720 +-0.639735,-0.597701,-1.371813,-1.160713,-0.975233,-0.662898 +-0.643748,-0.600664,-1.381766,-1.168765,-0.981764,-0.667075 +-0.647760,-0.603555,-1.391720,-1.176816,-0.988294,-0.671253 +-0.651773,-0.606374,-1.401673,-1.184868,-0.994824,-0.675430 +-0.655786,-0.609115,-1.411627,-1.192919,-1.001354,-0.679608 +-0.659798,-0.611778,-1.421580,-1.200971,-1.007884,-0.683785 +-0.663811,-0.614357,-1.431534,-1.209022,-1.014414,-0.687963 +-0.667824,-0.616851,-1.441487,-1.217074,-1.020944,-0.692140 +-0.671836,-0.619257,-1.451441,-1.225125,-1.027474,-0.696318 +-0.675849,-0.621571,-1.461395,-1.233177,-1.034004,-0.700495 +-0.679862,-0.623790,-1.471348,-1.241228,-1.040534,-0.704673 +-0.683875,-0.625912,-1.481302,-1.249280,-1.047064,-0.708850 +-0.687887,-0.627933,-1.491255,-1.257331,-1.053594,-0.713028 +-0.691900,-0.629851,-1.501209,-1.265383,-1.060124,-0.717205 +-0.695913,-0.631662,-1.511162,-1.273434,-1.066655,-0.721383 +-0.699925,-0.633364,-1.521116,-1.281485,-1.073185,-0.725560 +-0.703938,-0.634953,-1.531069,-1.289537,-1.079715,-0.729738 +-0.707951,-0.636427,-1.541022,-1.297588,-1.086245,-0.733915 +-0.711964,-0.637782,-1.550972,-1.305640,-1.092775,-0.738092 +-0.715976,-0.639016,-1.560916,-1.313691,-1.099305,-0.742270 +-0.719989,-0.640125,-1.570850,-1.321743,-1.105834,-0.746446 +-0.724002,-0.641106,-1.580773,-1.329794,-1.112359,-0.750619 +-0.728014,-0.641957,-1.590680,-1.337846,-1.118877,-0.754784 +-0.732027,-0.642674,-1.600569,-1.345897,-1.125385,-0.758939 +-0.736040,-0.643255,-1.610437,-1.353949,-1.131881,-0.763081 +-0.740053,-0.643696,-1.620281,-1.362000,-1.138360,-0.767207 +-0.744065,-0.643995,-1.630098,-1.370052,-1.144820,-0.771315 +-0.748078,-0.644148,-1.639885,-1.378103,-1.151259,-0.775400 +-0.752091,-0.644153,-1.649638,-1.386154,-1.157673,-0.779460 +-0.756103,-0.644008,-1.659355,-1.394206,-1.164058,-0.783492 +-0.760117,-0.643713,-1.669034,-1.402257,-1.170413,-0.787493 +-0.764133,-0.643267,-1.678670,-1.410309,-1.176734,-0.791460 +-0.768155,-0.642672,-1.688261,-1.418360,-1.183018,-0.795390 +-0.772187,-0.641927,-1.697803,-1.426412,-1.189262,-0.799280 +-0.776231,-0.641032,-1.707295,-1.434463,-1.195463,-0.803127 +-0.780289,-0.639986,-1.716732,-1.442515,-1.201618,-0.806928 +-0.784366,-0.638791,-1.726113,-1.450566,-1.207725,-0.810680 +-0.788464,-0.637446,-1.735433,-1.458618,-1.213779,-0.814380 +-0.792586,-0.635951,-1.744690,-1.466669,-1.219779,-0.818025 +-0.796735,-0.634306,-1.753881,-1.474721,-1.225720,-0.821612 +-0.800914,-0.632510,-1.763003,-1.482772,-1.231601,-0.825138 +-0.805127,-0.630565,-1.772053,-1.490824,-1.237417,-0.828600 +-0.809375,-0.628470,-1.781027,-1.498875,-1.243167,-0.831994 +-0.813663,-0.626225,-1.789924,-1.506926,-1.248847,-0.835319 +-0.817992,-0.623829,-1.798739,-1.514978,-1.254454,-0.838571 +-0.822367,-0.621284,-1.807470,-1.523029,-1.259985,-0.841747 +-0.826790,-0.618589,-1.816114,-1.531081,-1.265437,-0.844844 +-0.831264,-0.615744,-1.824668,-1.539132,-1.270808,-0.847858 +-0.835792,-0.612749,-1.833129,-1.547184,-1.276093,-0.850788 +-0.840377,-0.609603,-1.841493,-1.555235,-1.281290,-0.853630 +-0.845022,-0.606308,-1.849759,-1.563287,-1.286397,-0.856380 +-0.849730,-0.602863,-1.857922,-1.571338,-1.291409,-0.859037 +-0.854505,-0.599268,-1.865980,-1.579390,-1.296325,-0.861597 +-0.859348,-0.595522,-1.873930,-1.587441,-1.301141,-0.864056 +-0.864264,-0.591627,-1.881769,-1.595493,-1.305853,-0.866413 +-0.869254,-0.587582,-1.889494,-1.603544,-1.310460,-0.868663 +-0.874323,-0.583387,-1.897102,-1.611595,-1.314958,-0.870805 +-0.879473,-0.579042,-1.904589,-1.619647,-1.319344,-0.872834 +-0.884707,-0.574546,-1.911953,-1.627698,-1.323615,-0.874749 +-0.890028,-0.569901,-1.919192,-1.635750,-1.327769,-0.876545 +-0.895439,-0.565106,-1.926301,-1.643801,-1.331801,-0.878221 +-0.900943,-0.560161,-1.933278,-1.651849,-1.335709,-0.879772 +-0.906539,-0.555065,-1.940120,-1.659891,-1.339491,-0.881197 +-0.912223,-0.549820,-1.946823,-1.667925,-1.343142,-0.882491 +-0.917994,-0.544425,-1.953386,-1.675947,-1.346661,-0.883653 +-0.923847,-0.538880,-1.959804,-1.683953,-1.350044,-0.884678 +-0.929780,-0.533185,-1.966075,-1.691942,-1.353288,-0.885564 +-0.935789,-0.527344,-1.972197,-1.699911,-1.356389,-0.886309 +-0.941873,-0.521359,-1.978169,-1.707855,-1.359346,-0.886908 +-0.948027,-0.515234,-1.983991,-1.715772,-1.362155,-0.887359 +-0.954250,-0.508971,-1.989662,-1.723660,-1.364815,-0.887661 +-0.960537,-0.502574,-1.995184,-1.731515,-1.367324,-0.887812 +-0.966885,-0.496045,-2.000556,-1.739333,-1.369683,-0.887813 +-0.973293,-0.489387,-2.005777,-1.747114,-1.371892,-0.887665 +-0.979756,-0.482603,-2.010849,-1.754852,-1.373954,-0.887366 +-0.986273,-0.475697,-2.015771,-1.762545,-1.375869,-0.886918 +-0.992839,-0.468672,-2.020543,-1.770191,-1.377643,-0.886319 +-0.999452,-0.461530,-2.025164,-1.777785,-1.379277,-0.885571 +-1.006108,-0.454274,-2.029636,-1.785326,-1.380774,-0.884672 +-1.012806,-0.446908,-2.033958,-1.792810,-1.382139,-0.883624 +-1.019541,-0.439434,-2.038129,-1.800234,-1.383373,-0.882425 +-1.026311,-0.431855,-2.042151,-1.807596,-1.384479,-0.881079 +-1.033113,-0.424175,-2.046023,-1.814891,-1.385461,-0.879588 +-1.039944,-0.416396,-2.049745,-1.822118,-1.386322,-0.877956 +-1.046801,-0.408522,-2.053316,-1.829272,-1.387065,-0.876185 +-1.053680,-0.400555,-2.056738,-1.836352,-1.387692,-0.874278 +-1.060579,-0.392498,-2.060010,-1.843354,-1.388207,-0.872239 +-1.067495,-0.384355,-2.063131,-1.850276,-1.388613,-0.870069 +-1.074425,-0.376128,-2.066103,-1.857113,-1.388912,-0.867773 +-1.081366,-0.367820,-2.068925,-1.863863,-1.389108,-0.865354 +-1.088315,-0.359435,-2.071596,-1.870524,-1.389204,-0.862813 +-1.095268,-0.350976,-2.074118,-1.877092,-1.389202,-0.860155 +-1.102223,-0.342444,-2.076490,-1.883564,-1.389106,-0.857383 +-1.109177,-0.333844,-2.078712,-1.889937,-1.388918,-0.854498 +-1.116127,-0.325179,-2.080783,-1.896209,-1.388643,-0.851505 +-1.123069,-0.316451,-2.082705,-1.902375,-1.388282,-0.848406 +-1.130002,-0.307663,-2.084477,-1.908434,-1.387838,-0.845205 +-1.136921,-0.298819,-2.086099,-1.914381,-1.387315,-0.841903 +-1.143824,-0.289921,-2.087576,-1.920215,-1.386716,-0.838505 +-1.150708,-0.280972,-2.088909,-1.925932,-1.386044,-0.835014 +-1.157569,-0.271976,-2.090103,-1.931530,-1.385301,-0.831431 +-1.164406,-0.262936,-2.091159,-1.937004,-1.384491,-0.827761 +-1.171214,-0.253853,-2.092081,-1.942353,-1.383616,-0.824007 +-1.177991,-0.244732,-2.092872,-1.947572,-1.382681,-0.820170 +-1.184734,-0.235576,-2.093534,-1.952660,-1.381686,-0.816255 +-1.191440,-0.226387,-2.094072,-1.957613,-1.380637,-0.812264 +-1.198105,-0.217168,-2.094487,-1.962428,-1.379535,-0.808201 +-1.204727,-0.207922,-2.094783,-1.967103,-1.378384,-0.804067 +-1.211304,-0.198653,-2.094963,-1.971633,-1.377186,-0.799867 +-1.217831,-0.189364,-2.095030,-1.976017,-1.375945,-0.795604 +-1.224305,-0.180057,-2.094986,-1.980251,-1.374664,-0.791279 +-1.230725,-0.170735,-2.094836,-1.984337,-1.373346,-0.786897 +-1.237086,-0.161401,-2.094581,-1.988279,-1.371993,-0.782460 +-1.243387,-0.152059,-2.094225,-1.992078,-1.370609,-0.777972 +-1.249623,-0.142712,-2.093771,-1.995738,-1.369196,-0.773435 +-1.255792,-0.133362,-2.093222,-1.999262,-1.367758,-0.768852 +-1.261890,-0.124012,-2.092581,-2.002652,-1.366298,-0.764226 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273868,-0.105320,-2.091033,-2.009047,-1.363321,-0.754856 +-1.279744,-0.095982,-2.090129,-2.012054,-1.361808,-0.750114 +-1.285542,-0.086650,-2.089140,-2.014932,-1.360279,-0.745335 +-1.291262,-0.077326,-2.088066,-2.017681,-1.358734,-0.740519 +-1.296902,-0.068009,-2.086906,-2.020300,-1.357173,-0.735664 +-1.302463,-0.058700,-2.085661,-2.022789,-1.355596,-0.730772 +-1.307944,-0.049398,-2.084332,-2.025147,-1.354005,-0.725841 +-1.313343,-0.040105,-2.082919,-2.027373,-1.352398,-0.720872 +-1.318661,-0.030821,-2.081422,-2.029467,-1.350776,-0.715864 +-1.323897,-0.021545,-2.079841,-2.031430,-1.349139,-0.710817 +-1.329049,-0.012279,-2.078178,-2.033259,-1.347488,-0.705730 +-1.334118,-0.003022,-2.076432,-2.034955,-1.345822,-0.700605 +-1.339103,0.006226,-2.074603,-2.036517,-1.344141,-0.695439 +-1.344002,0.015463,-2.072693,-2.037946,-1.342446,-0.690234 +-1.348816,0.024691,-2.070701,-2.039240,-1.340737,-0.684989 +-1.353544,0.033908,-2.068629,-2.040399,-1.339013,-0.679703 +-1.358186,0.043115,-2.066476,-2.041424,-1.337276,-0.674377 +-1.362740,0.052310,-2.064242,-2.042314,-1.335524,-0.669010 +-1.367205,0.061494,-2.061930,-2.043068,-1.333759,-0.663602 +-1.371583,0.070667,-2.059538,-2.043686,-1.331980,-0.658153 +-1.375871,0.079828,-2.057067,-2.044169,-1.330187,-0.652663 +-1.380070,0.088977,-2.054519,-2.044516,-1.328381,-0.647132 +-1.384178,0.098114,-2.051893,-2.044727,-1.326561,-0.641558 +-1.388195,0.107239,-2.049190,-2.044802,-1.324728,-0.635943 +-1.392121,0.116350,-2.046410,-2.044740,-1.322881,-0.630286 +-1.395956,0.125448,-2.043555,-2.044543,-1.321021,-0.624587 +-1.399697,0.134533,-2.040624,-2.044209,-1.319148,-0.618845 +-1.403346,0.143605,-2.037619,-2.043739,-1.317261,-0.613062 +-1.406902,0.152662,-2.034540,-2.043134,-1.315362,-0.607235 +-1.410363,0.161705,-2.031387,-2.042392,-1.313449,-0.601366 +-1.413730,0.170734,-2.028161,-2.041514,-1.311523,-0.595454 +-1.417002,0.179748,-2.024863,-2.040500,-1.309584,-0.589499 +-1.420178,0.188747,-2.021493,-2.039351,-1.307632,-0.583501 +-1.423259,0.197731,-2.018053,-2.038066,-1.305667,-0.577459 +-1.426243,0.206700,-2.014542,-2.036646,-1.303689,-0.571375 +-1.429131,0.215652,-2.010962,-2.035091,-1.301699,-0.565247 +-1.431921,0.224589,-2.007312,-2.033402,-1.299695,-0.559075 +-1.434614,0.233509,-2.003595,-2.031578,-1.297678,-0.552860 +-1.437208,0.242413,-1.999809,-2.029619,-1.295648,-0.546601 +-1.439704,0.251300,-1.995957,-2.027527,-1.293606,-0.540299 +-1.442102,0.260169,-1.992040,-2.025302,-1.291550,-0.533952 +-1.444399,0.269022,-1.988056,-2.022944,-1.289481,-0.527562 +-1.446598,0.277856,-1.984008,-2.020453,-1.287400,-0.521128 +-1.448696,0.286673,-1.979897,-2.017830,-1.285305,-0.514650 +-1.450694,0.295471,-1.975722,-2.015076,-1.283197,-0.508127 +-1.452591,0.304252,-1.971485,-2.012190,-1.281077,-0.501561 +-1.454387,0.313013,-1.967186,-2.009174,-1.278943,-0.494951 +-1.456081,0.321755,-1.962827,-2.006028,-1.276796,-0.488296 +-1.457674,0.330478,-1.958408,-2.002753,-1.274636,-0.481598 +-1.459165,0.339182,-1.953929,-1.999348,-1.272463,-0.474855 +-1.460554,0.347865,-1.949393,-1.995816,-1.270276,-0.468068 +-1.461840,0.356529,-1.944799,-1.992156,-1.268076,-0.461237 +-1.463024,0.365172,-1.940148,-1.988369,-1.265863,-0.454361 +-1.464104,0.373795,-1.935442,-1.984457,-1.263636,-0.447442 +-1.465081,0.382396,-1.930681,-1.980418,-1.261396,-0.440478 +-1.465954,0.390977,-1.925866,-1.976256,-1.259142,-0.433471 +-1.466724,0.399536,-1.920997,-1.971969,-1.256875,-0.426419 +-1.467390,0.408073,-1.916077,-1.967560,-1.254594,-0.419323 +-1.467951,0.416589,-1.911105,-1.963028,-1.252299,-0.412184 +-1.468408,0.425082,-1.906082,-1.958375,-1.249990,-0.405001 +-1.468761,0.433553,-1.901010,-1.953602,-1.247668,-0.397773 +-1.469009,0.442001,-1.895889,-1.948709,-1.245331,-0.390502 +-1.469152,0.450426,-1.890721,-1.943698,-1.242980,-0.383188 +-1.469190,0.458828,-1.885505,-1.938569,-1.240615,-0.375830 +-1.469124,0.467206,-1.880244,-1.933324,-1.238236,-0.368428 +-1.468952,0.475560,-1.874938,-1.927963,-1.235842,-0.360983 +-1.468675,0.483891,-1.869587,-1.922487,-1.233434,-0.353495 +-1.468292,0.492197,-1.864194,-1.916898,-1.231011,-0.345964 +-1.467804,0.500478,-1.858758,-1.911197,-1.228574,-0.338389 +-1.467211,0.508734,-1.853281,-1.905384,-1.226122,-0.330772 +-1.466512,0.516966,-1.847764,-1.899461,-1.223654,-0.323113 +-1.465707,0.525172,-1.842208,-1.893429,-1.221172,-0.315410 +-1.464797,0.533352,-1.836613,-1.887289,-1.218675,-0.307665 +-1.463782,0.541506,-1.830981,-1.881042,-1.216162,-0.299878 +-1.462661,0.549635,-1.825313,-1.874690,-1.213634,-0.292049 +-1.461434,0.557736,-1.819610,-1.868233,-1.211090,-0.284178 +-1.460102,0.565811,-1.813872,-1.861673,-1.208531,-0.276265 +-1.458665,0.573860,-1.808101,-1.855012,-1.205956,-0.268311 +-1.457122,0.581880,-1.802297,-1.848249,-1.203365,-0.260316 +-1.455474,0.589874,-1.796463,-1.841388,-1.200758,-0.252279 +-1.453721,0.597840,-1.790597,-1.834429,-1.198135,-0.244202 +-1.451863,0.605777,-1.784703,-1.827373,-1.195496,-0.236084 +-1.449900,0.613687,-1.778780,-1.820222,-1.192840,-0.227925 +-1.447832,0.621568,-1.772831,-1.812977,-1.190168,-0.219726 +-1.445659,0.629420,-1.766854,-1.805640,-1.187479,-0.211488 +-1.443382,0.637243,-1.760853,-1.798211,-1.184773,-0.203209 +-1.441001,0.645037,-1.754828,-1.790693,-1.182050,-0.194892 +-1.438515,0.652802,-1.748779,-1.783087,-1.179310,-0.186535 +-1.435926,0.660536,-1.742708,-1.775394,-1.176553,-0.178139 +-1.433232,0.668241,-1.736617,-1.767616,-1.173778,-0.169705 +-1.430436,0.675915,-1.730505,-1.759754,-1.170986,-0.161233 +-1.427536,0.683559,-1.724374,-1.751810,-1.168176,-0.152722 +-1.424533,0.691172,-1.718225,-1.743786,-1.165348,-0.144174 +-1.421427,0.698754,-1.712060,-1.735682,-1.162502,-0.135589 +-1.418219,0.706305,-1.705878,-1.727501,-1.159638,-0.126966 +-1.414909,0.713825,-1.699682,-1.719244,-1.156756,-0.118307 +-1.411497,0.721313,-1.693472,-1.710912,-1.153855,-0.109612 +-1.407984,0.728768,-1.687250,-1.702507,-1.150936,-0.100881 +-1.404369,0.736192,-1.681015,-1.694032,-1.147998,-0.092113 +-1.400654,0.743583,-1.674770,-1.685486,-1.145041,-0.083311 +-1.396838,0.750941,-1.668516,-1.676873,-1.142065,-0.074474 +-1.392922,0.758267,-1.662253,-1.668194,-1.139070,-0.065602 +-1.388907,0.765559,-1.655983,-1.659450,-1.136055,-0.056696 +-1.384792,0.772818,-1.649706,-1.650643,-1.133021,-0.047757 +-1.380579,0.780043,-1.643424,-1.641775,-1.129967,-0.038784 +-1.376267,0.787234,-1.637137,-1.632847,-1.126894,-0.029778 +-1.371857,0.794392,-1.630848,-1.623862,-1.123800,-0.020739 +-1.367350,0.801515,-1.624556,-1.614820,-1.120686,-0.011669 +-1.362746,0.808603,-1.618263,-1.605724,-1.117553,-0.002566 +-1.358045,0.815657,-1.611970,-1.596576,-1.114398,0.006567 +-1.353248,0.822675,-1.605677,-1.587376,-1.111223,0.015731 +-1.348356,0.829659,-1.599387,-1.578128,-1.108028,0.024926 +-1.343369,0.836607,-1.593100,-1.568832,-1.104811,0.034151 +-1.338288,0.843519,-1.586817,-1.559490,-1.101574,0.043405 +-1.333112,0.850395,-1.580539,-1.550105,-1.098315,0.052688 +-1.327844,0.857236,-1.574267,-1.540678,-1.095035,0.061999 +-1.322483,0.864040,-1.568002,-1.531211,-1.091734,0.071339 +-1.317029,0.870807,-1.561745,-1.521705,-1.088411,0.080706 +-1.311484,0.877538,-1.555497,-1.512162,-1.085066,0.090100 +-1.305849,0.884232,-1.549260,-1.502585,-1.081700,0.099520 +-1.300123,0.890888,-1.543034,-1.492975,-1.078311,0.108967 +-1.294308,0.897508,-1.536820,-1.483334,-1.074900,0.118439 +-1.288403,0.904089,-1.530619,-1.473664,-1.071467,0.127936 +-1.282411,0.910633,-1.524433,-1.463966,-1.068012,0.137458 +-1.276331,0.917140,-1.518261,-1.454243,-1.064534,0.147003 +-1.270164,0.923607,-1.512106,-1.444496,-1.061033,0.156572 +-1.263911,0.930037,-1.505968,-1.434727,-1.057510,0.166164 +-1.257573,0.936428,-1.499849,-1.424938,-1.053963,0.175778 +-1.251149,0.942780,-1.493748,-1.415130,-1.050393,0.185414 +-1.244642,0.949094,-1.487668,-1.405307,-1.046800,0.195071 +-1.238052,0.955368,-1.481609,-1.395469,-1.043184,0.204748 +-1.231380,0.961603,-1.475572,-1.385618,-1.039545,0.214446 +-1.224625,0.967798,-1.469557,-1.375757,-1.035881,0.224163 +-1.217790,0.973954,-1.463567,-1.365887,-1.032194,0.233898 +-1.210875,0.980070,-1.457602,-1.356010,-1.028484,0.243652 +-1.203881,0.986146,-1.451663,-1.346127,-1.024749,0.253424 +-1.196808,0.992182,-1.445750,-1.336242,-1.020990,0.263213 +-1.189658,0.998177,-1.439866,-1.326354,-1.017207,0.273018 +-1.182431,1.004132,-1.434010,-1.316468,-1.013400,0.282839 +-1.175129,1.010047,-1.428183,-1.306583,-1.009569,0.292675 +-1.167751,1.015920,-1.422387,-1.296703,-1.005712,0.302526 +-1.160299,1.021753,-1.416622,-1.286829,-1.001832,0.312391 +-1.152775,1.027544,-1.410890,-1.276962,-0.997927,0.322269 +-1.145178,1.033294,-1.405191,-1.267106,-0.993996,0.332160 +-1.137509,1.039003,-1.399526,-1.257260,-0.990042,0.342063 +-1.129770,1.044669,-1.393895,-1.247429,-0.986062,0.351977 +-1.121962,1.050295,-1.388301,-1.237612,-0.982057,0.361902 +-1.114085,1.055878,-1.382743,-1.227812,-0.978027,0.371837 +-1.106140,1.061419,-1.377222,-1.218032,-0.973971,0.381782 +-1.098129,1.066918,-1.371740,-1.208272,-0.969891,0.391735 +-1.090052,1.072375,-1.366297,-1.198534,-0.965785,0.401696 +-1.081911,1.077790,-1.360894,-1.188821,-0.961654,0.411665 +-1.073705,1.083161,-1.355531,-1.179134,-0.957497,0.421641 +-1.065438,1.088491,-1.350211,-1.169474,-0.953314,0.431622 +-1.057108,1.093777,-1.344932,-1.159845,-0.949106,0.441609 +-1.048718,1.099020,-1.339697,-1.150247,-0.944873,0.451601 +-1.040268,1.104221,-1.334505,-1.140682,-0.940613,0.461597 +-1.031759,1.109378,-1.329358,-1.131152,-0.936328,0.471596 +-1.023193,1.114492,-1.324257,-1.121659,-0.932017,0.481597 +-1.014571,1.119563,-1.319202,-1.112205,-0.927679,0.491601 +-1.005893,1.124590,-1.314193,-1.102790,-0.923316,0.501605 +-0.997160,1.129574,-1.309232,-1.093418,-0.918927,0.511610 +-0.988374,1.134514,-1.304320,-1.084089,-0.914512,0.521615 +-0.979536,1.139410,-1.299456,-1.074806,-0.910071,0.531619 +-0.970647,1.144262,-1.294643,-1.065570,-0.905604,0.541621 +-0.961708,1.149071,-1.289879,-1.056382,-0.901111,0.551621 +-0.952720,1.153835,-1.285167,-1.047245,-0.896591,0.561618 +-0.943684,1.158556,-1.280507,-1.038161,-0.892045,0.571611 +-0.934601,1.163232,-1.275898,-1.029129,-0.887473,0.581600 +-0.925473,1.167864,-1.271343,-1.020154,-0.882875,0.591583 +-0.916300,1.172452,-1.266842,-1.011235,-0.878251,0.601560 +-0.907084,1.176995,-1.262394,-1.002375,-0.873601,0.611530 +-0.897825,1.181494,-1.258002,-0.993575,-0.868924,0.621493 +-0.888526,1.185949,-1.253665,-0.984837,-0.864221,0.631448 +-0.879186,1.190359,-1.249384,-0.976163,-0.859492,0.641394 +-0.869808,1.194724,-1.245160,-0.967553,-0.854736,0.651330 +-0.860392,1.199045,-1.240993,-0.959010,-0.849955,0.661255 +-0.850940,1.203321,-1.236883,-0.950535,-0.845147,0.671170 +-0.841453,1.207553,-1.232832,-0.942129,-0.840313,0.681072 +-0.831931,1.211740,-1.228840,-0.933795,-0.835453,0.690962 +-0.822376,1.215882,-1.224906,-0.925533,-0.830567,0.700838 +-0.812790,1.219979,-1.221033,-0.917345,-0.825654,0.710700 +-0.803173,1.224032,-1.217220,-0.909232,-0.820716,0.720548 +-0.793527,1.228040,-1.213467,-0.901196,-0.815751,0.730379 +-0.783852,1.232003,-1.209776,-0.893239,-0.810761,0.740195 +-0.774151,1.235921,-1.206146,-0.885361,-0.805745,0.749993 +-0.764424,1.239794,-1.202578,-0.877564,-0.800703,0.759773 +-0.754672,1.243623,-1.199073,-0.869850,-0.795635,0.769534 +-0.744896,1.247406,-1.195631,-0.862220,-0.790541,0.779276 +-0.735099,1.251145,-1.192251,-0.854674,-0.785421,0.788998 +-0.725280,1.254839,-1.188936,-0.847215,-0.780276,0.798699 +-0.715442,1.258489,-1.185684,-0.839844,-0.775105,0.808379 +-0.705585,1.262093,-1.182497,-0.832561,-0.769909,0.818036 +-0.695711,1.265653,-1.179375,-0.825369,-0.764687,0.827670 +-0.685820,1.269168,-1.176318,-0.818269,-0.759440,0.837279 +-0.675915,1.272639,-1.173326,-0.811261,-0.754167,0.846865 +-0.665996,1.276065,-1.170399,-0.804347,-0.748870,0.856425 +-0.656064,1.279446,-1.167539,-0.797528,-0.743547,0.865958 +-0.646121,1.282783,-1.164744,-0.790805,-0.738199,0.875465 +-0.636168,1.286075,-1.162017,-0.784180,-0.732826,0.884944 +-0.626206,1.289323,-1.159355,-0.777653,-0.727429,0.894395 +-0.616237,1.292526,-1.156761,-0.771225,-0.722007,0.903817 +-0.606261,1.295686,-1.154234,-0.764898,-0.716560,0.913209 +-0.596280,1.298801,-1.151775,-0.758673,-0.711088,0.922570 +-0.586294,1.301871,-1.149383,-0.752551,-0.705593,0.931900 +-0.576306,1.304898,-1.147058,-0.746533,-0.700072,0.941198 +-0.566317,1.307881,-1.144802,-0.740619,-0.694528,0.950463 +-0.556327,1.310820,-1.142613,-0.734811,-0.688960,0.959695 +-0.546337,1.313715,-1.140493,-0.729109,-0.683368,0.968893 +-0.536350,1.316566,-1.138441,-0.723515,-0.677752,0.978055 +-0.526366,1.319374,-1.136458,-0.718030,-0.672112,0.987182 +-0.516387,1.322138,-1.134543,-0.712654,-0.666449,0.996272 +-0.506413,1.324859,-1.132696,-0.707388,-0.660762,1.005326 +-0.496445,1.327537,-1.130919,-0.702233,-0.655053,1.014341 +-0.486486,1.330171,-1.129209,-0.697190,-0.649320,1.023318 +-0.476536,1.332762,-1.127569,-0.692260,-0.643564,1.032256 +-0.466597,1.335311,-1.125997,-0.687443,-0.637786,1.041154 +-0.456669,1.337817,-1.124495,-0.682740,-0.631985,1.050011 +-0.446753,1.340280,-1.123061,-0.678152,-0.626161,1.058827 +-0.436852,1.342700,-1.121695,-0.673680,-0.620315,1.067600 +-0.426966,1.345078,-1.120399,-0.669324,-0.614447,1.076331 +-0.417096,1.347414,-1.119171,-0.665085,-0.608557,1.085019 +-0.407243,1.349708,-1.118011,-0.660964,-0.602646,1.093662 +-0.397409,1.351961,-1.116920,-0.656960,-0.596712,1.102261 +-0.387594,1.354171,-1.115898,-0.653075,-0.590758,1.110815 +-0.377801,1.356340,-1.114944,-0.649310,-0.584782,1.119322 +-0.368029,1.358467,-1.114058,-0.645665,-0.578785,1.127782 +-0.358281,1.360554,-1.113240,-0.642139,-0.572767,1.136195 +-0.348557,1.362599,-1.112490,-0.638735,-0.566728,1.144560 +-0.338858,1.364604,-1.111808,-0.635452,-0.560669,1.152876 +-0.329185,1.366567,-1.111194,-0.632290,-0.554589,1.161143 +-0.319541,1.368491,-1.110647,-0.629251,-0.548490,1.169360 +-0.309925,1.370374,-1.110167,-0.626334,-0.542371,1.177526 +-0.300338,1.372218,-1.109754,-0.623540,-0.536231,1.185640 +-0.290783,1.374021,-1.109408,-0.620869,-0.530073,1.193703 +-0.281259,1.375785,-1.109128,-0.618322,-0.523895,1.201713 +-0.271769,1.377510,-1.108915,-0.615899,-0.517698,1.209670 +-0.262313,1.379195,-1.108768,-0.613599,-0.511482,1.217573 +-0.252891,1.380841,-1.108686,-0.611425,-0.505248,1.225422 +-0.243506,1.382449,-1.108670,-0.609374,-0.498995,1.233216 +-0.234158,1.384019,-1.108719,-0.607449,-0.492723,1.240954 +-0.224849,1.385550,-1.108833,-0.605648,-0.486434,1.248636 +-0.215579,1.387043,-1.109011,-0.603972,-0.480127,1.256262 +-0.206349,1.388499,-1.109253,-0.602422,-0.473803,1.263830 +-0.197160,1.389917,-1.109559,-0.600997,-0.467461,1.271340 +-0.188014,1.391298,-1.109929,-0.599697,-0.461102,1.278791 +-0.178911,1.392642,-1.110361,-0.598523,-0.454727,1.286184 +-0.169852,1.393950,-1.110856,-0.597474,-0.448334,1.293517 +-0.160838,1.395221,-1.111413,-0.596551,-0.441926,1.300790 +-0.151871,1.396456,-1.112032,-0.595753,-0.435501,1.308002 +-0.142951,1.397655,-1.112712,-0.595081,-0.429060,1.315153 +-0.134079,1.398819,-1.113453,-0.594534,-0.422603,1.322242 +-0.125255,1.399948,-1.114255,-0.594112,-0.416131,1.329269 +-0.116482,1.401041,-1.115116,-0.593815,-0.409644,1.336233 +-0.107760,1.402100,-1.116037,-0.593644,-0.403142,1.343134 +-0.099089,1.403125,-1.117016,-0.593597,-0.396625,1.349971 +-0.090471,1.404116,-1.118054,-0.593675,-0.390094,1.356744 +-0.081906,1.405073,-1.119150,-0.593877,-0.383549,1.363453 +-0.073396,1.405996,-1.120303,-0.594204,-0.376989,1.370096 +-0.064941,1.406887,-1.121513,-0.594655,-0.370416,1.376673 +-0.056542,1.407744,-1.122779,-0.595229,-0.363830,1.383184 +-0.048200,1.408570,-1.124101,-0.595927,-0.357230,1.389629 +-0.039915,1.409363,-1.125478,-0.596748,-0.350617,1.396006 +-0.031689,1.410125,-1.126909,-0.597691,-0.343992,1.402316 +-0.023522,1.410855,-1.128394,-0.598757,-0.337354,1.408558 +-0.015415,1.411554,-1.129933,-0.599945,-0.330704,1.414732 +-0.007369,1.412222,-1.131524,-0.601255,-0.324042,1.420837 +0.000615,1.412861,-1.133167,-0.602686,-0.317368,1.426873 +0.008537,1.413469,-1.134861,-0.604237,-0.310683,1.432839 +0.016396,1.414047,-1.136606,-0.605909,-0.303987,1.438736 +0.024192,1.414596,-1.138400,-0.607701,-0.297280,1.444562 +0.031923,1.415116,-1.140244,-0.609611,-0.290562,1.450317 +0.039589,1.415608,-1.142137,-0.611641,-0.283834,1.456001 +0.047189,1.416071,-1.144077,-0.613788,-0.277096,1.461614 +0.054722,1.416507,-1.146065,-0.616054,-0.270348,1.467155 +0.062189,1.416915,-1.148099,-0.618436,-0.263590,1.472624 +0.069588,1.417297,-1.150179,-0.620934,-0.256823,1.478020 +0.076918,1.417651,-1.152303,-0.623548,-0.250047,1.483344 +0.084180,1.417980,-1.154472,-0.626278,-0.243262,1.488594 +0.091372,1.418282,-1.156684,-0.629121,-0.236469,1.493771 +0.098493,1.418559,-1.158939,-0.632079,-0.229667,1.498874 +0.105545,1.418811,-1.161236,-0.635149,-0.222857,1.503904 +0.112524,1.419038,-1.163574,-0.638331,-0.216039,1.508859 +0.119433,1.419241,-1.165952,-0.641625,-0.209214,1.513739 +0.126268,1.419420,-1.168369,-0.645030,-0.202382,1.518545 +0.133031,1.419576,-1.170825,-0.648544,-0.195543,1.523275 +0.139721,1.419709,-1.173319,-0.652168,-0.188696,1.527930 +0.146337,1.419819,-1.175850,-0.655900,-0.181844,1.532510 +0.152879,1.419907,-1.178417,-0.659739,-0.174985,1.537014 +0.159346,1.419973,-1.181020,-0.663685,-0.168120,1.541441 +0.165738,1.420018,-1.183656,-0.667736,-0.161250,1.545793 +0.172054,1.420042,-1.186327,-0.671892,-0.154374,1.550068 +0.178295,1.420045,-1.189029,-0.676152,-0.147493,1.554266 +0.184459,1.420028,-1.191764,-0.680515,-0.140607,1.558388 +0.190546,1.419992,-1.194530,-0.684980,-0.133716,1.562433 +0.196557,1.419937,-1.197325,-0.689546,-0.126821,1.566400 +0.202490,1.419862,-1.200150,-0.694212,-0.119921,1.570290 +0.208345,1.419770,-1.203003,-0.698976,-0.113018,1.574103 +0.214123,1.419659,-1.205883,-0.703839,-0.106111,1.577838 +0.219822,1.419532,-1.208789,-0.708799,-0.099201,1.581495 +0.225442,1.419387,-1.211721,-0.713855,-0.092287,1.585075 +0.230984,1.419226,-1.214678,-0.719006,-0.085370,1.588576 +0.236446,1.419048,-1.217657,-0.724250,-0.078451,1.592000 +0.241830,1.418856,-1.220660,-0.729587,-0.071529,1.595345 +0.247133,1.418647,-1.223684,-0.735016,-0.064605,1.598612 +0.252357,1.418425,-1.226729,-0.740535,-0.057679,1.601801 +0.257501,1.418188,-1.229793,-0.746144,-0.050751,1.604912 +0.262565,1.417937,-1.232876,-0.751841,-0.043822,1.607944 +0.267548,1.417673,-1.235977,-0.757625,-0.036892,1.610897 +0.272451,1.417396,-1.239095,-0.763495,-0.029960,1.613772 +0.277274,1.417107,-1.242228,-0.769450,-0.023028,1.616569 +0.282016,1.416805,-1.245377,-0.775488,-0.016095,1.619287 +0.286677,1.416493,-1.248539,-0.781609,-0.009161,1.621926 +0.291258,1.416169,-1.251714,-0.787811,-0.002228,1.624487 +0.295757,1.415835,-1.254901,-0.794093,0.004705,1.626969 +0.300176,1.415491,-1.258099,-0.800453,0.011639,1.629373 +0.304514,1.415137,-1.261306,-0.806891,0.018571,1.631698 +0.308770,1.414774,-1.264522,-0.813405,0.025503,1.633945 +0.312946,1.414402,-1.267747,-0.819994,0.032434,1.636114 +0.317041,1.414023,-1.270978,-0.826657,0.039363,1.638204 +0.321055,1.413635,-1.274214,-0.833393,0.046291,1.640216 +0.324988,1.413241,-1.277456,-0.840199,0.053218,1.642149 +0.328840,1.412839,-1.280701,-0.847075,0.060143,1.644005 +0.332612,1.412432,-1.283949,-0.854020,0.067065,1.645782 +0.336303,1.412018,-1.287198,-0.861032,0.073986,1.647482 +0.339913,1.411600,-1.290449,-0.868110,0.080904,1.649104 +0.343443,1.411176,-1.293698,-0.875252,0.087820,1.650648 +0.346893,1.410748,-1.296947,-0.882458,0.094732,1.652114 +0.350263,1.410316,-1.300193,-0.889726,0.101642,1.653503 +0.353552,1.409881,-1.303436,-0.897054,0.108548,1.654815 +0.356762,1.409443,-1.306674,-0.904441,0.115451,1.656050 +0.359893,1.409003,-1.309906,-0.911886,0.122351,1.657208 +0.362944,1.408560,-1.313132,-0.919388,0.129247,1.658289 +0.365916,1.408116,-1.316350,-0.926945,0.136138,1.659294 +0.368809,1.407671,-1.319560,-0.934555,0.143026,1.660222 +0.371623,1.407225,-1.322760,-0.942218,0.149909,1.661074 +0.374360,1.406779,-1.325950,-0.949932,0.156788,1.661850 +0.377018,1.406334,-1.329127,-0.957695,0.163662,1.662550 +0.379598,1.405889,-1.332292,-0.965507,0.170532,1.663175 +0.382101,1.405446,-1.335443,-0.973365,0.177396,1.663724 +0.384527,1.405005,-1.338579,-0.981269,0.184255,1.664199 +0.386877,1.404565,-1.341700,-0.989217,0.191109,1.664599 +0.389149,1.404129,-1.344803,-0.997208,0.197958,1.664924 +0.391346,1.403695,-1.347889,-1.005240,0.204801,1.665175 +0.393467,1.403266,-1.350955,-1.013312,0.211638,1.665352 +0.395513,1.402840,-1.354002,-1.021422,0.218469,1.665456 +0.397485,1.402419,-1.357028,-1.029569,0.225294,1.665486 +0.399382,1.402003,-1.360032,-1.037752,0.232113,1.665443 +0.401204,1.401593,-1.363012,-1.045969,0.238925,1.665328 +0.402954,1.401188,-1.365969,-1.054218,0.245731,1.665140 +0.404630,1.400790,-1.368901,-1.062500,0.252531,1.664880 +0.406234,1.400399,-1.371806,-1.070811,0.259323,1.664548 +0.407766,1.400015,-1.374685,-1.079151,0.266109,1.664145 +0.409227,1.399639,-1.377536,-1.087518,0.272888,1.663671 +0.410616,1.399271,-1.380357,-1.095911,0.279659,1.663126 +0.411935,1.398911,-1.383149,-1.104328,0.286424,1.662511 +0.413184,1.398561,-1.385909,-1.112768,0.293181,1.661826 +0.414364,1.398220,-1.388638,-1.121230,0.299930,1.661072 +0.415475,1.397889,-1.391334,-1.129713,0.306672,1.660248 +0.416517,1.397569,-1.393995,-1.138214,0.313406,1.659356 +0.417492,1.397259,-1.396622,-1.146732,0.320132,1.658396 +0.418400,1.396961,-1.399213,-1.155267,0.326850,1.657367 +0.419242,1.396674,-1.401767,-1.163816,0.333560,1.656272 +0.420018,1.396399,-1.404284,-1.172379,0.340262,1.655109 +0.420729,1.396137,-1.406761,-1.180954,0.346956,1.653880 +0.421375,1.395888,-1.409199,-1.189539,0.353641,1.652584 +0.421958,1.395652,-1.411597,-1.198133,0.360318,1.651223 +0.422477,1.395430,-1.413952,-1.206736,0.366987,1.649797 +0.422934,1.395222,-1.416266,-1.215345,0.373647,1.648306 +0.423329,1.395029,-1.418536,-1.223959,0.380298,1.646751 +0.423664,1.394851,-1.420762,-1.232577,0.386940,1.645133 +0.423938,1.394687,-1.422942,-1.241198,0.393574,1.643450 +0.424152,1.394540,-1.425077,-1.249820,0.400198,1.641706 +0.424307,1.394409,-1.427165,-1.258442,0.406814,1.639899 +0.424405,1.394294,-1.429204,-1.267063,0.413421,1.638030 +0.424445,1.394197,-1.431195,-1.275681,0.420018,1.636100 +0.424428,1.394116,-1.433137,-1.284295,0.426606,1.634109 +0.424356,1.394054,-1.435028,-1.292903,0.433185,1.632058 +0.424228,1.394009,-1.436868,-1.301506,0.439755,1.629948 +0.424046,1.393983,-1.438655,-1.310100,0.446315,1.627778 +0.423811,1.393975,-1.440390,-1.318686,0.452866,1.625550 +0.423523,1.393987,-1.442071,-1.327261,0.459407,1.623264 +0.423184,1.394018,-1.443697,-1.335824,0.465939,1.620921 +0.422793,1.394069,-1.445268,-1.344375,0.472461,1.618521 +0.422353,1.394140,-1.446782,-1.352912,0.478973,1.616064 +0.421862,1.394231,-1.448240,-1.361434,0.485476,1.613552 +0.421324,1.394343,-1.449640,-1.369940,0.491969,1.610985 +0.420738,1.394477,-1.450981,-1.378427,0.498452,1.608363 +0.420105,1.394632,-1.452263,-1.386897,0.504926,1.605688 +0.419426,1.394809,-1.453485,-1.395346,0.511389,1.602959 +0.418702,1.395008,-1.454645,-1.403774,0.517843,1.600177 +0.417934,1.395229,-1.455745,-1.412180,0.524287,1.597343 +0.417123,1.395473,-1.456782,-1.420563,0.530721,1.594458 +0.416269,1.395741,-1.457756,-1.428921,0.537145,1.591522 +0.415375,1.396031,-1.458666,-1.437254,0.543559,1.588536 +0.414439,1.396345,-1.459512,-1.445560,0.549963,1.585500 +0.413464,1.396683,-1.460293,-1.453839,0.556357,1.582416 +0.412450,1.397046,-1.461008,-1.462088,0.562740,1.579283 +0.411398,1.397432,-1.461657,-1.470308,0.569114,1.576102 +0.410310,1.397844,-1.462238,-1.478497,0.575478,1.572874 +0.409185,1.398280,-1.462752,-1.486654,0.581832,1.569600 +0.408026,1.398742,-1.463197,-1.494778,0.588175,1.566281 +0.406833,1.399229,-1.463574,-1.502868,0.594509,1.562916 +0.405606,1.399742,-1.463881,-1.510923,0.600832,1.559507 +0.404347,1.400281,-1.464117,-1.518942,0.607145,1.556054 +0.403057,1.400846,-1.464283,-1.526924,0.613448,1.552558 +0.401737,1.401438,-1.464378,-1.534869,0.619741,1.549020 +0.400388,1.402057,-1.464401,-1.542774,0.626024,1.545441 +0.399010,1.402702,-1.464351,-1.550640,0.632297,1.541820 +0.397605,1.403374,-1.464228,-1.558466,0.638559,1.538159 +0.396173,1.404074,-1.464032,-1.566250,0.644812,1.534458 +0.394716,1.404801,-1.463762,-1.573991,0.651054,1.530719 +0.393234,1.405556,-1.463417,-1.581690,0.657286,1.526941 +0.391729,1.406339,-1.462997,-1.589344,0.663508,1.523126 +0.390202,1.407150,-1.462502,-1.596953,0.669720,1.519274 +0.388653,1.407989,-1.461930,-1.604517,0.675922,1.515386 +0.387083,1.408856,-1.461283,-1.612034,0.682113,1.511463 +0.385494,1.409752,-1.460558,-1.619504,0.688295,1.507505 +0.383886,1.410677,-1.459756,-1.626926,0.694466,1.503513 +0.382260,1.411631,-1.458877,-1.634299,0.700628,1.499488 +0.380618,1.412613,-1.457919,-1.641622,0.706779,1.495430 +0.378960,1.413625,-1.456883,-1.648895,0.712920,1.491341 +0.377288,1.414666,-1.455768,-1.656117,0.719051,1.487220 +0.375602,1.415737,-1.454574,-1.663287,0.725173,1.483069 +0.373903,1.416837,-1.453300,-1.670405,0.731284,1.478889 +0.372192,1.417967,-1.451946,-1.677470,0.737385,1.474679 +0.370470,1.419126,-1.450512,-1.684482,0.743476,1.470442 +0.368739,1.420315,-1.448998,-1.691439,0.749557,1.466177 +0.366999,1.421534,-1.447403,-1.698341,0.755628,1.461885 +0.365251,1.422783,-1.445727,-1.705188,0.761689,1.457568 +0.363496,1.424062,-1.443969,-1.711978,0.767741,1.453225 +0.361735,1.425372,-1.442130,-1.718712,0.773782,1.448858 +0.359969,1.426711,-1.440208,-1.725389,0.779814,1.444467 +0.358199,1.428081,-1.438205,-1.732008,0.785835,1.440053 +0.356426,1.429481,-1.436120,-1.738569,0.791847,1.435617 +0.354651,1.430911,-1.433951,-1.745072,0.797848,1.431159 +0.352875,1.432372,-1.431701,-1.751515,0.803840,1.426681 +0.351099,1.433863,-1.429367,-1.757898,0.809822,1.422183 +0.349323,1.435384,-1.426950,-1.764222,0.815795,1.417665 +0.347549,1.436936,-1.424450,-1.770485,0.821757,1.413129 +0.345778,1.438518,-1.421867,-1.776687,0.827710,1.408575 +0.344010,1.440131,-1.419201,-1.782827,0.833653,1.404004 +0.342247,1.441774,-1.416451,-1.788906,0.839586,1.399416 +0.340490,1.443448,-1.413617,-1.794924,0.845509,1.394813 +0.338739,1.445152,-1.410700,-1.800878,0.851422,1.390195 +0.336995,1.446886,-1.407699,-1.806770,0.857326,1.385564 +0.335259,1.448650,-1.404614,-1.812599,0.863220,1.380918 +0.333532,1.450445,-1.401445,-1.818365,0.869104,1.376261 +0.331815,1.452270,-1.398193,-1.824067,0.874979,1.371591 +0.330110,1.454125,-1.394857,-1.829706,0.880843,1.366910 +0.328416,1.456010,-1.391437,-1.835280,0.886698,1.362219 +0.326734,1.457926,-1.387933,-1.840790,0.892544,1.357518 +0.325067,1.459871,-1.384345,-1.846236,0.898379,1.352809 +0.323413,1.461846,-1.380674,-1.851617,0.904205,1.348091 +0.321775,1.463850,-1.376919,-1.856933,0.910021,1.343366 +0.320153,1.465885,-1.373080,-1.862184,0.915827,1.338634 +0.318549,1.467949,-1.369158,-1.867370,0.921624,1.333896 +0.316962,1.470042,-1.365153,-1.872490,0.927410,1.329153 +0.315393,1.472164,-1.361065,-1.877546,0.933187,1.324406 +0.313844,1.474316,-1.356893,-1.882535,0.938955,1.319654 +0.312316,1.476497,-1.352638,-1.887460,0.944712,1.314900 +0.310808,1.478707,-1.348301,-1.892318,0.950459,1.310144 +0.309323,1.480945,-1.343881,-1.897111,0.956197,1.305385 +0.307860,1.483212,-1.339379,-1.901838,0.961925,1.300626 +0.306421,1.485507,-1.334795,-1.906500,0.967643,1.295867 +0.305006,1.487831,-1.330128,-1.911096,0.973351,1.291109 +0.303616,1.490182,-1.325380,-1.915626,0.979049,1.286351 +0.302252,1.492562,-1.320551,-1.920091,0.984738,1.281596 +0.300914,1.494969,-1.315640,-1.924490,0.990416,1.276844 +0.299604,1.497404,-1.310649,-1.928823,0.996084,1.272095 +0.298322,1.499866,-1.305576,-1.933091,1.001742,1.267350 +0.297069,1.502354,-1.300424,-1.937294,1.007391,1.262609 +0.295845,1.504870,-1.295191,-1.941431,1.013029,1.257875 +0.294651,1.507413,-1.289879,-1.945503,1.018656,1.253147 +0.293489,1.509981,-1.284487,-1.949510,1.024274,1.248425 +0.292358,1.512576,-1.279017,-1.953453,1.029881,1.243711 +0.291259,1.515197,-1.273468,-1.957330,1.035479,1.239006 +0.290193,1.517843,-1.267840,-1.961144,1.041065,1.234309 +0.289160,1.520515,-1.262135,-1.964893,1.046642,1.229623 +0.288162,1.523212,-1.256353,-1.968578,1.052207,1.224946 +0.287199,1.525934,-1.250493,-1.972199,1.057763,1.220281 +0.286271,1.528680,-1.244557,-1.975756,1.063307,1.215627 +0.285379,1.531450,-1.238545,-1.979250,1.068841,1.210986 +0.284524,1.534245,-1.232458,-1.982681,1.074364,1.206357 +0.283706,1.537063,-1.226295,-1.986049,1.079877,1.201743 +0.282926,1.539905,-1.220058,-1.989354,1.085378,1.197142 +0.282184,1.542769,-1.213746,-1.992598,1.090869,1.192557 +0.281482,1.545656,-1.207361,-1.995779,1.096348,1.187987 +0.280818,1.548566,-1.200903,-1.998899,1.101817,1.183434 +0.280195,1.551498,-1.194372,-2.001957,1.107274,1.178898 +0.279612,1.554451,-1.187769,-2.004955,1.112719,1.174379 +0.279071,1.557426,-1.181095,-2.007892,1.118154,1.169878 +0.278571,1.560422,-1.174350,-2.010769,1.123576,1.165396 +0.278113,1.563439,-1.167535,-2.013586,1.128987,1.160934 +0.277697,1.566476,-1.160650,-2.016343,1.134387,1.156492 +0.277324,1.569533,-1.153697,-2.019042,1.139774,1.152070 +0.276995,1.572610,-1.146675,-2.021682,1.145150,1.147670 +0.276710,1.575705,-1.139585,-2.024264,1.150513,1.143292 +0.276468,1.578820,-1.132428,-2.026788,1.155864,1.138936 +0.276272,1.581953,-1.125204,-2.029255,1.161203,1.134603 +0.276120,1.585104,-1.117915,-2.031666,1.166529,1.130294 +0.276014,1.588273,-1.110561,-2.034020,1.171843,1.126009 +0.275954,1.591459,-1.103142,-2.036318,1.177144,1.121749 +0.275940,1.594662,-1.095660,-2.038561,1.182432,1.117515 +0.275972,1.597882,-1.088115,-2.040749,1.187707,1.113307 +0.276051,1.601117,-1.080507,-2.042882,1.192969,1.109125 +0.276177,1.604368,-1.072838,-2.044962,1.198217,1.104970 +0.276350,1.607634,-1.065109,-2.046989,1.203452,1.100843 +0.276572,1.610915,-1.057319,-2.048963,1.208673,1.096744 +0.276841,1.614211,-1.049471,-2.050884,1.213881,1.092674 +0.277158,1.617520,-1.041564,-2.052754,1.219074,1.088634 +0.277524,1.620842,-1.033599,-2.054573,1.224253,1.084623 +0.277939,1.624177,-1.025577,-2.056342,1.229418,1.080643 +0.278403,1.627525,-1.017500,-2.058060,1.234568,1.076693 +0.278915,1.630885,-1.009367,-2.059729,1.239704,1.072775 +0.279478,1.634257,-1.001180,-2.061350,1.244824,1.068889 +0.280089,1.637639,-0.992940,-2.062922,1.249930,1.065035 +0.280751,1.641033,-0.984647,-2.064446,1.255020,1.061215 +0.281462,1.644436,-0.976302,-2.065924,1.260094,1.057428 +0.282223,1.647849,-0.967907,-2.067355,1.265153,1.053674 +0.283034,1.651271,-0.959461,-2.068741,1.270196,1.049956 +0.283896,1.654702,-0.950966,-2.070081,1.275223,1.046272 +0.284807,1.658141,-0.942423,-2.071377,1.280233,1.042623 +0.285770,1.661588,-0.933833,-2.072629,1.285227,1.039011 +0.286782,1.665042,-0.925196,-2.073838,1.290203,1.035434 +0.287846,1.668502,-0.916514,-2.075005,1.295163,1.031895 +0.288960,1.671969,-0.907787,-2.076129,1.300106,1.028392 +0.290124,1.675442,-0.899017,-2.077212,1.305030,1.024928 +0.291339,1.678919,-0.890204,-2.078255,1.309937,1.021501 +0.292605,1.682401,-0.881349,-2.079257,1.314826,1.018113 +0.293921,1.685888,-0.872454,-2.080221,1.319697,1.014764 +0.295288,1.689378,-0.863519,-2.081146,1.324549,1.011454 +0.296706,1.692871,-0.854545,-2.082032,1.329382,1.008184 +0.298174,1.696366,-0.845533,-2.082882,1.334197,1.004954 +0.299692,1.699864,-0.836485,-2.083695,1.338991,1.001765 +0.301261,1.703363,-0.827401,-2.084472,1.343767,0.998617 +0.302880,1.706863,-0.818281,-2.085214,1.348522,0.995510 +0.304550,1.710363,-0.809129,-2.085921,1.353257,0.992445 +0.306269,1.713863,-0.799943,-2.086594,1.357971,0.989421 +0.308038,1.717363,-0.790726,-2.087235,1.362665,0.986441 +0.309858,1.720861,-0.781478,-2.087842,1.367337,0.983503 +0.311727,1.724358,-0.772200,-2.088418,1.371989,0.980609 +0.313645,1.727852,-0.762893,-2.088963,1.376618,0.977757 +0.315612,1.731343,-0.753560,-2.089477,1.381226,0.974950 +0.317629,1.734831,-0.744199,-2.089962,1.385811,0.972187 +0.319695,1.738315,-0.734813,-2.090417,1.390373,0.969469 +0.321809,1.741794,-0.725403,-2.090844,1.394913,0.966795 +0.323972,1.745269,-0.715969,-2.091244,1.399429,0.964167 +0.326183,1.748737,-0.706513,-2.091616,1.403922,0.961584 +0.328441,1.752200,-0.697036,-2.091962,1.408390,0.959047 +0.330748,1.755655,-0.687539,-2.092282,1.412835,0.956556 +0.333102,1.759104,-0.678023,-2.092578,1.417254,0.954111 +0.335503,1.762544,-0.668489,-2.092849,1.421649,0.951714 +0.337950,1.765976,-0.658938,-2.093096,1.426019,0.949363 +0.340445,1.769399,-0.649371,-2.093321,1.430363,0.947059 +0.342985,1.772813,-0.639790,-2.093523,1.434680,0.944802 +0.345571,1.776216,-0.630195,-2.093704,1.438972,0.942594 +0.348203,1.779609,-0.620588,-2.093863,1.443237,0.940433 +0.350879,1.782990,-0.610969,-2.094003,1.447474,0.938321 +0.353601,1.786360,-0.601341,-2.094122,1.451684,0.936257 +0.356366,1.789717,-0.591703,-2.094223,1.455867,0.934241 +0.359176,1.793062,-0.582057,-2.094305,1.460021,0.932275 +0.362029,1.796392,-0.572405,-2.094370,1.464146,0.930357 +0.364925,1.799709,-0.562746,-2.094418,1.468242,0.928489 +0.367864,1.803011,-0.553084,-2.094449,1.472310,0.926671 +0.370845,1.806298,-0.543418,-2.094465,1.476347,0.924902 +0.373867,1.809569,-0.533749,-2.094465,1.480354,0.923183 +0.376931,1.812824,-0.524079,-2.094451,1.484331,0.921515 +0.380036,1.816062,-0.514410,-2.094424,1.488277,0.919896 +0.383181,1.819283,-0.504741,-2.094382,1.492191,0.918328 +0.386366,1.822486,-0.495075,-2.094329,1.496074,0.916811 +0.389590,1.825670,-0.485412,-2.094263,1.499924,0.915344 +0.392853,1.828835,-0.475753,-2.094185,1.503742,0.913928 +0.396154,1.831981,-0.466100,-2.094097,1.507527,0.912564 +0.399493,1.835106,-0.456454,-2.093999,1.511279,0.911250 +0.402869,1.838211,-0.446816,-2.093890,1.514996,0.909988 +0.406282,1.841294,-0.437187,-2.093773,1.518680,0.908777 +0.409731,1.844356,-0.427568,-2.093647,1.522329,0.907618 +0.413215,1.847395,-0.417960,-2.093513,1.525943,0.906511 +0.416734,1.850411,-0.408365,-2.093372,1.529521,0.905455 +0.420288,1.853404,-0.398783,-2.093223,1.533064,0.904451 +0.423875,1.856373,-0.389217,-2.093068,1.536570,0.903499 +0.427495,1.859318,-0.379666,-2.092908,1.540039,0.902599 +0.431148,1.862237,-0.370132,-2.092742,1.543472,0.901752 +0.434833,1.865131,-0.360616,-2.092571,1.546866,0.900956 +0.438549,1.867999,-0.351119,-2.092396,1.550223,0.900213 +0.442295,1.870840,-0.341643,-2.092217,1.553541,0.899522 +0.446072,1.873654,-0.332188,-2.092034,1.556820,0.898884 +0.449877,1.876441,-0.322756,-2.091849,1.560059,0.898297 +0.453712,1.879200,-0.313348,-2.091662,1.563259,0.897764 +0.457574,1.881929,-0.303965,-2.091472,1.566418,0.897283 +0.461464,1.884630,-0.294607,-2.091281,1.569537,0.896854 +0.465380,1.887301,-0.285277,-2.091089,1.572615,0.896478 +0.469322,1.889942,-0.275975,-2.090896,1.575651,0.896154 +0.473290,1.892553,-0.266702,-2.090703,1.578644,0.895883 +0.477281,1.895132,-0.257460,-2.090510,1.581596,0.895665 +0.481297,1.897680,-0.248250,-2.090317,1.584504,0.895499 +0.485336,1.900195,-0.239072,-2.090126,1.587369,0.895386 +0.489397,1.902678,-0.229927,-2.089936,1.590190,0.895325 +0.493480,1.905128,-0.220818,-2.089748,1.592967,0.895317 +0.497584,1.907545,-0.211744,-2.089562,1.595698,0.895361 +0.501708,1.909927,-0.202708,-2.089378,1.598385,0.895458 +0.505851,1.912275,-0.193709,-2.089197,1.601026,0.895607 +0.510013,1.914589,-0.184750,-2.089020,1.603621,0.895808 +0.514193,1.916867,-0.175831,-2.088845,1.606169,0.896062 +0.518391,1.919109,-0.166953,-2.088675,1.608670,0.896368 +0.522604,1.921315,-0.158117,-2.088508,1.611124,0.896726 +0.526834,1.923484,-0.149325,-2.088346,1.613529,0.897136 +0.531078,1.925617,-0.140577,-2.088189,1.615886,0.897599 +0.535337,1.927711,-0.131875,-2.088036,1.618195,0.898113 +0.539609,1.929768,-0.123220,-2.087888,1.620454,0.898679 +0.543893,1.931787,-0.114612,-2.087746,1.622663,0.899297 +0.548190,1.933767,-0.106052,-2.087610,1.624822,0.899967 +0.552497,1.935707,-0.097542,-2.087479,1.626930,0.900688 +0.556815,1.937609,-0.089083,-2.087354,1.628988,0.901461 +0.561142,1.939470,-0.080675,-2.087236,1.630993,0.902285 +0.565478,1.941291,-0.072320,-2.087124,1.632947,0.903160 +0.569822,1.943071,-0.064019,-2.087018,1.634848,0.904087 +0.574173,1.944810,-0.055772,-2.086919,1.636696,0.905064 +0.578530,1.946508,-0.047581,-2.086827,1.638491,0.906092 +0.582893,1.948164,-0.039447,-2.086743,1.640232,0.907171 +0.587261,1.949778,-0.031370,-2.086665,1.641919,0.908301 +0.591632,1.951349,-0.023351,-2.086595,1.643551,0.909481 +0.596007,1.952878,-0.015392,-2.086532,1.645128,0.910711 +0.600384,1.954363,-0.007494,-2.086476,1.646650,0.911991 +0.604763,1.955805,0.000344,-2.086428,1.648115,0.913321 +0.609142,1.957203,0.008119,-2.086388,1.649524,0.914701 +0.613522,1.958557,0.015830,-2.086356,1.650877,0.916130 +0.617901,1.959866,0.023478,-2.086331,1.652172,0.917609 +0.622278,1.961131,0.031061,-2.086314,1.653409,0.919136 +0.626652,1.962350,0.038577,-2.086304,1.654588,0.920713 +0.631024,1.963524,0.046027,-2.086303,1.655709,0.922339 +0.635391,1.964653,0.053409,-2.086309,1.656771,0.924013 +0.639754,1.965736,0.060723,-2.086323,1.657773,0.925735 +0.644111,1.966772,0.067967,-2.086345,1.658716,0.927506 +0.648461,1.967762,0.075141,-2.086375,1.659599,0.929325 +0.652805,1.968706,0.082244,-2.086412,1.660421,0.931191 +0.657140,1.969602,0.089275,-2.086457,1.661182,0.933105 +0.661467,1.970452,0.096233,-2.086509,1.661881,0.935066 +0.665785,1.971254,0.103117,-2.086569,1.662519,0.937074 +0.670092,1.972008,0.109927,-2.086637,1.663095,0.939128 +0.674388,1.972714,0.116662,-2.086711,1.663609,0.941230 +0.678672,1.973373,0.123320,-2.086793,1.664059,0.943377 +0.682944,1.973983,0.129902,-2.086881,1.664446,0.945571 +0.687202,1.974544,0.136407,-2.086977,1.664770,0.947810 +0.691447,1.975057,0.142832,-2.087079,1.665029,0.950094 +0.695676,1.975522,0.149179,-2.087188,1.665225,0.952424 +0.699890,1.975937,0.155446,-2.087303,1.665355,0.954799 +0.704088,1.976303,0.161633,-2.087425,1.665421,0.957219 +0.708268,1.976620,0.167738,-2.087552,1.665421,0.959683 +0.712430,1.976887,0.173761,-2.087685,1.665355,0.962191 +0.716574,1.977105,0.179701,-2.087824,1.665223,0.964742 +0.720699,1.977273,0.185558,-2.087968,1.665025,0.967337 +0.724804,1.977391,0.191331,-2.088117,1.664760,0.969976 +0.728888,1.977459,0.197019,-2.088272,1.664427,0.972657 +0.732950,1.977477,0.202622,-2.088430,1.664028,0.975381 +0.736991,1.977445,0.208139,-2.088593,1.663561,0.978147 +0.741008,1.977363,0.213569,-2.088760,1.663025,0.980956 +0.745002,1.977230,0.218912,-2.088931,1.662422,0.983805 +0.748972,1.977047,0.224166,-2.089105,1.661749,0.986696 +0.752916,1.976813,0.229333,-2.089283,1.661008,0.989629 +0.756836,1.976529,0.234410,-2.089463,1.660198,0.992601 +0.760729,1.976194,0.239397,-2.089646,1.659318,0.995615 +0.764595,1.975809,0.244294,-2.089831,1.658368,0.998668 +0.768433,1.975373,0.249100,-2.090017,1.657348,1.001760 +0.772243,1.974886,0.253815,-2.090205,1.656258,1.004893 +0.776025,1.974348,0.258438,-2.090395,1.655098,1.008064 +0.779776,1.973760,0.262969,-2.090584,1.653867,1.011273 +0.783498,1.973121,0.267406,-2.090775,1.652564,1.014521 +0.787189,1.972431,0.271750,-2.090965,1.651191,1.017807 +0.790849,1.971690,0.276000,-2.091154,1.649746,1.021130 +0.794476,1.970899,0.280156,-2.091343,1.648229,1.024491 +0.798072,1.970057,0.284217,-2.091530,1.646641,1.027888 +0.801634,1.969165,0.288182,-2.091716,1.644980,1.031322 +0.805162,1.968222,0.292051,-2.091899,1.643247,1.034792 +0.808656,1.967228,0.295825,-2.092080,1.641441,1.038298 +0.812115,1.966184,0.299501,-2.092257,1.639563,1.041839 +0.815539,1.965090,0.303081,-2.092431,1.637612,1.045414 +0.818927,1.963945,0.306563,-2.092601,1.635587,1.049025 +0.822279,1.962750,0.309947,-2.092767,1.633490,1.052669 +0.825593,1.961505,0.313234,-2.092927,1.631319,1.056348 +0.828871,1.960210,0.316421,-2.093082,1.629075,1.060059 +0.832110,1.958865,0.319510,-2.093231,1.626757,1.063804 +0.835310,1.957470,0.322499,-2.093374,1.624365,1.067581 +0.838472,1.956026,0.325389,-2.093509,1.621899,1.071390 +0.841595,1.954532,0.328178,-2.093637,1.619360,1.075231 +0.844677,1.952989,0.330868,-2.093757,1.616746,1.079104 +0.847719,1.951396,0.333457,-2.093869,1.614058,1.083007 +0.850721,1.949755,0.335946,-2.093971,1.611295,1.086941 +0.853681,1.948064,0.338333,-2.094064,1.608459,1.090905 +0.856600,1.946325,0.340619,-2.094146,1.605547,1.094899 +0.859477,1.944538,0.342804,-2.094218,1.602562,1.098922 +0.862311,1.942702,0.344887,-2.094279,1.599501,1.102974 +0.865102,1.940818,0.346868,-2.094327,1.596366,1.107054 +0.867851,1.938886,0.348747,-2.094363,1.593156,1.111163 +0.870555,1.936907,0.350523,-2.094387,1.589872,1.115299 +0.873216,1.934880,0.352197,-2.094396,1.586512,1.119462 +0.875833,1.932806,0.353769,-2.094392,1.583078,1.123652 +0.878405,1.930684,0.355237,-2.094373,1.579569,1.127868 +0.880932,1.928517,0.356603,-2.094338,1.575986,1.132110 +0.883415,1.926302,0.357866,-2.094288,1.572327,1.136377 +0.885851,1.924042,0.359025,-2.094221,1.568594,1.140669 +0.888242,1.921735,0.360081,-2.094137,1.564786,1.144986 +0.890587,1.919383,0.361034,-2.094035,1.560904,1.149327 +0.892886,1.916986,0.361883,-2.093916,1.556946,1.153691 +0.895138,1.914543,0.362628,-2.093777,1.552915,1.158079 +0.897343,1.912056,0.363271,-2.093619,1.548808,1.162489 +0.899501,1.909524,0.363809,-2.093440,1.544628,1.166922 +0.901612,1.906948,0.364244,-2.093241,1.540372,1.171376 +0.903676,1.904329,0.364575,-2.093021,1.536043,1.175852 +0.905692,1.901666,0.364802,-2.092779,1.531639,1.180349 +0.907661,1.898959,0.364926,-2.092514,1.527162,1.184866 +0.909581,1.896210,0.364946,-2.092226,1.522610,1.189403 +0.911454,1.893419,0.364863,-2.091915,1.517985,1.193959 +0.913278,1.890585,0.364676,-2.091579,1.513285,1.198535 +0.915054,1.887710,0.364385,-2.091218,1.508513,1.203129 +0.916781,1.884793,0.363991,-2.090831,1.503667,1.207741 +0.918460,1.881836,0.363494,-2.090418,1.498748,1.212371 +0.920091,1.878838,0.362893,-2.089979,1.493755,1.217019 +0.921672,1.875799,0.362189,-2.089512,1.488690,1.221682 +0.923205,1.872721,0.361383,-2.089017,1.483552,1.226363 +0.924689,1.869604,0.360473,-2.088493,1.478342,1.231058 +0.926124,1.866448,0.359460,-2.087940,1.473060,1.235770 +0.927511,1.863253,0.358345,-2.087358,1.467705,1.240496 +0.928848,1.860020,0.357127,-2.086745,1.462279,1.245236 +0.930137,1.856749,0.355807,-2.086100,1.456781,1.249990 +0.931377,1.853441,0.354385,-2.085424,1.451212,1.254757 +0.932568,1.850096,0.352861,-2.084716,1.445572,1.259538 +0.933710,1.846715,0.351235,-2.083975,1.439861,1.264331 +0.934803,1.843298,0.349507,-2.083201,1.434080,1.269135 +0.935848,1.839845,0.347679,-2.082392,1.428229,1.273952 +0.936844,1.836358,0.345749,-2.081549,1.422307,1.278779 +0.937791,1.832836,0.343719,-2.080670,1.416316,1.283616 +0.938691,1.829280,0.341587,-2.079756,1.410256,1.288464 +0.939542,1.825690,0.339356,-2.078806,1.404127,1.293321 +0.940344,1.822068,0.337025,-2.077818,1.397929,1.298187 +0.941099,1.818412,0.334594,-2.076793,1.391663,1.303062 +0.941806,1.814725,0.332064,-2.075730,1.385329,1.307945 +0.942465,1.811006,0.329434,-2.074628,1.378928,1.312835 +0.943077,1.807257,0.326706,-2.073488,1.372459,1.317732 +0.943641,1.803476,0.323880,-2.072307,1.365923,1.322636 +0.944158,1.799666,0.320956,-2.071086,1.359322,1.327546 +0.944628,1.795826,0.317933,-2.069825,1.352654,1.332462 +0.945052,1.791957,0.314814,-2.068522,1.345920,1.337382 +0.945429,1.788059,0.311598,-2.067177,1.339122,1.342308 +0.945760,1.784134,0.308285,-2.065790,1.332259,1.347237 +0.946045,1.780181,0.304876,-2.064360,1.325331,1.352170 +0.946284,1.776202,0.301371,-2.062886,1.318340,1.357106 +0.946478,1.772196,0.297771,-2.061369,1.311285,1.362045 +0.946627,1.768164,0.294076,-2.059807,1.304167,1.366986 +0.946731,1.764108,0.290287,-2.058201,1.296987,1.371928 +0.946790,1.760026,0.286403,-2.056549,1.289745,1.376872 +0.946806,1.755921,0.282426,-2.054851,1.282441,1.381816 +0.946778,1.751792,0.278356,-2.053107,1.275076,1.386761 +0.946706,1.747640,0.274194,-2.051317,1.267651,1.391705 +0.946592,1.743466,0.269939,-2.049479,1.260166,1.396648 +0.946434,1.739270,0.265593,-2.047593,1.252622,1.401590 +0.946235,1.735052,0.261156,-2.045660,1.245018,1.406530 +0.945993,1.730814,0.256628,-2.043678,1.237357,1.411468 +0.945710,1.726557,0.252010,-2.041648,1.229637,1.416403 +0.945387,1.722279,0.247303,-2.039568,1.221860,1.421335 +0.945022,1.717983,0.242506,-2.037438,1.214027,1.426263 +0.944617,1.713668,0.237621,-2.035259,1.206137,1.431186 +0.944173,1.709336,0.232649,-2.033029,1.198192,1.436105 +0.943690,1.704986,0.227589,-2.030748,1.190192,1.441018 +0.943168,1.700620,0.222442,-2.028417,1.182138,1.445926 +0.942607,1.696239,0.217209,-2.026033,1.174030,1.450827 +0.942009,1.691841,0.211891,-2.023598,1.165869,1.455722 +0.941373,1.687429,0.206487,-2.021111,1.157655,1.460609 +0.940701,1.683003,0.201000,-2.018572,1.149389,1.465489 +0.939993,1.678564,0.195428,-2.015980,1.141073,1.470360 +0.939249,1.674112,0.189774,-2.013335,1.132705,1.475222 +0.938470,1.669647,0.184037,-2.010636,1.124288,1.480075 +0.937656,1.665170,0.178218,-2.007885,1.115822,1.484919 +0.936809,1.660683,0.172318,-2.005079,1.107307,1.489752 +0.935928,1.656185,0.166337,-2.002219,1.098744,1.494575 +0.935014,1.651677,0.160277,-1.999305,1.090133,1.499386 +0.934068,1.647160,0.154137,-1.996337,1.081477,1.504185 +0.933090,1.642635,0.147919,-1.993314,1.072774,1.508973 +0.932082,1.638101,0.141623,-1.990236,1.064026,1.513747 +0.931043,1.633560,0.135249,-1.987103,1.055234,1.518509 +0.929974,1.629012,0.128800,-1.983914,1.046398,1.523256 +0.928876,1.624458,0.122274,-1.980671,1.037519,1.527990 +0.927750,1.619898,0.115673,-1.977371,1.028598,1.532709 +0.926596,1.615334,0.108999,-1.974016,1.019635,1.537413 +0.925415,1.610765,0.102250,-1.970606,1.010631,1.542101 +0.924207,1.606192,0.095429,-1.967139,1.001588,1.546773 +0.922973,1.601617,0.088535,-1.963616,0.992505,1.551428 +0.921715,1.597038,0.081570,-1.960037,0.983383,1.556066 +0.920431,1.592458,0.074534,-1.956402,0.974224,1.560687 +0.919125,1.587877,0.067428,-1.952711,0.965027,1.565290 +0.917795,1.583294,0.060254,-1.948964,0.955795,1.569874 +0.916443,1.578712,0.053010,-1.945160,0.946527,1.574439 +0.915069,1.574130,0.045699,-1.941300,0.937224,1.578985 +0.913674,1.569550,0.038321,-1.937384,0.927887,1.583511 +0.912259,1.564971,0.030877,-1.933411,0.918517,1.588016 +0.910825,1.560394,0.023368,-1.929382,0.909115,1.592500 +0.909372,1.555820,0.015794,-1.925297,0.899682,1.596963 +0.907901,1.551250,0.008156,-1.921155,0.890217,1.601404 +0.906413,1.546684,0.000456,-1.916958,0.880723,1.605823 +0.904909,1.542123,-0.007307,-1.912704,0.871199,1.610219 +0.903389,1.537567,-0.015131,-1.908395,0.861648,1.614592 +0.901854,1.533016,-0.023016,-1.904029,0.852069,1.618941 +0.900305,1.528473,-0.030961,-1.899608,0.842463,1.623265 +0.898743,1.523936,-0.038964,-1.895131,0.832832,1.627565 +0.897168,1.519407,-0.047026,-1.890599,0.823175,1.631840 +0.895581,1.514886,-0.055145,-1.886012,0.813495,1.636089 +0.893983,1.510374,-0.063320,-1.881369,0.803791,1.640312 +0.892376,1.505871,-0.071551,-1.876671,0.794065,1.644509 +0.890758,1.501378,-0.079837,-1.871919,0.784317,1.648678 +0.889133,1.496896,-0.088177,-1.867112,0.774548,1.652820 +0.887499,1.492424,-0.096570,-1.862251,0.764760,1.656935 +0.885859,1.487964,-0.105015,-1.857336,0.754952,1.661020 +0.884212,1.483517,-0.113512,-1.852367,0.745127,1.665077 +0.882560,1.479082,-0.122060,-1.847345,0.735284,1.669105 +0.880904,1.474660,-0.130657,-1.842269,0.725424,1.673103 +0.879244,1.470252,-0.139303,-1.837140,0.715549,1.677070 +0.877581,1.465858,-0.147997,-1.831959,0.705659,1.681007 +0.875916,1.461479,-0.156738,-1.826726,0.695756,1.684913 +0.874249,1.457116,-0.165526,-1.821441,0.685839,1.688787 +0.872582,1.452768,-0.174359,-1.816104,0.675911,1.692630 +0.870916,1.448437,-0.183237,-1.810716,0.665971,1.696440 +0.869251,1.444122,-0.192159,-1.805277,0.656020,1.700217 +0.867588,1.439825,-0.201123,-1.799788,0.646061,1.703961 +0.865928,1.435546,-0.210130,-1.794249,0.636092,1.707671 +0.864272,1.431286,-0.219177,-1.788660,0.626116,1.711347 +0.862620,1.427044,-0.228265,-1.783022,0.616133,1.714988 +0.860973,1.422822,-0.237393,-1.777336,0.606144,1.718594 +0.859333,1.418620,-0.246559,-1.771601,0.596149,1.722165 +0.857700,1.414438,-0.255762,-1.765819,0.586151,1.725700 +0.856075,1.410277,-0.265003,-1.759989,0.576149,1.729198 +0.854458,1.406137,-0.274279,-1.754113,0.566145,1.732660 +0.852851,1.402019,-0.283591,-1.748191,0.556139,1.736085 +0.851255,1.397923,-0.292936,-1.742223,0.546132,1.739472 +0.849669,1.393850,-0.302315,-1.736210,0.536125,1.742821 +0.848096,1.389800,-0.311727,-1.730152,0.526119,1.746132 +0.846535,1.385773,-0.321170,-1.724051,0.516116,1.749403 +0.844989,1.381771,-0.330643,-1.717906,0.506115,1.752636 +0.843456,1.377793,-0.340147,-1.711719,0.496117,1.755829 +0.841939,1.373840,-0.349679,-1.705489,0.486124,1.758982 +0.840438,1.369912,-0.359240,-1.699218,0.476136,1.762094 +0.838954,1.366009,-0.368828,-1.692906,0.466155,1.765166 +0.837488,1.362133,-0.378442,-1.686554,0.456180,1.768196 +0.836040,1.358283,-0.388081,-1.680162,0.446213,1.771185 +0.834612,1.354461,-0.397745,-1.673732,0.436255,1.774131 +0.833204,1.350665,-0.407433,-1.667263,0.426307,1.777036 +0.831816,1.346897,-0.417143,-1.660757,0.416369,1.779897 +0.830451,1.343157,-0.426876,-1.654214,0.406443,1.782715 +0.829108,1.339445,-0.436630,-1.647636,0.396528,1.785489 +0.827788,1.335761,-0.446404,-1.641022,0.386627,1.788220 +0.826493,1.332107,-0.456197,-1.634373,0.376740,1.790906 +0.825222,1.328482,-0.466009,-1.627691,0.366867,1.793547 +0.823977,1.324887,-0.475838,-1.620976,0.357009,1.796144 +0.822758,1.321322,-0.485684,-1.614229,0.347168,1.798695 +0.821567,1.317787,-0.495546,-1.607450,0.337344,1.801200 +0.820404,1.314283,-0.505424,-1.600640,0.327538,1.803658 +0.819269,1.310810,-0.515315,-1.593801,0.317751,1.806070 +0.818163,1.307368,-0.525220,-1.586933,0.307984,1.808436 +0.817088,1.303957,-0.535137,-1.580037,0.298237,1.810753 +0.816044,1.300578,-0.545067,-1.573114,0.288511,1.813024 +0.815031,1.297232,-0.555006,-1.566164,0.278807,1.815246 +0.814051,1.293917,-0.564956,-1.559189,0.269126,1.817420 +0.813104,1.290635,-0.574916,-1.552189,0.259468,1.819545 +0.812191,1.287386,-0.584883,-1.545166,0.249835,1.821621 +0.811312,1.284170,-0.594858,-1.538119,0.240227,1.823648 +0.810468,1.280987,-0.604839,-1.531051,0.230645,1.825625 +0.809660,1.277838,-0.614827,-1.523962,0.221090,1.827552 +0.808889,1.274723,-0.624819,-1.516852,0.211562,1.829428 +0.808155,1.271641,-0.634816,-1.509724,0.202062,1.831254 +0.807459,1.268593,-0.644816,-1.502577,0.192591,1.833029 +0.806801,1.265580,-0.654819,-1.495413,0.183150,1.834752 +0.806183,1.262601,-0.664823,-1.488232,0.173739,1.836424 +0.805604,1.259657,-0.674828,-1.481037,0.164360,1.838044 +0.805066,1.256748,-0.684834,-1.473827,0.155012,1.839611 +0.804569,1.253874,-0.694838,-1.466603,0.145697,1.841126 +0.804114,1.251034,-0.704842,-1.459367,0.136416,1.842588 +0.803701,1.248230,-0.714843,-1.452120,0.127168,1.843997 +0.803332,1.245462,-0.724841,-1.444862,0.117955,1.845352 +0.803005,1.242729,-0.734835,-1.437595,0.108777,1.846653 +0.802723,1.240031,-0.744825,-1.430320,0.099636,1.847901 +0.802486,1.237369,-0.754810,-1.423037,0.090531,1.849094 +0.802293,1.234743,-0.764788,-1.415748,0.081464,1.850232 +0.802147,1.232153,-0.774759,-1.408454,0.072435,1.851315 +0.802047,1.229599,-0.784723,-1.401155,0.063444,1.852343 +0.801994,1.227081,-0.794678,-1.393853,0.054493,1.853316 +0.801988,1.224599,-0.804625,-1.386550,0.045582,1.854232 +0.802030,1.222153,-0.814561,-1.379245,0.036711,1.855093 +0.802121,1.219743,-0.824487,-1.371939,0.027882,1.855898 +0.802260,1.217370,-0.834401,-1.364635,0.019095,1.856646 +0.802449,1.215033,-0.844303,-1.357334,0.010350,1.857337 +0.802688,1.212732,-0.854192,-1.350035,0.001648,1.857971 +0.802977,1.210467,-0.864068,-1.342740,-0.007010,1.858548 +0.803318,1.208239,-0.873930,-1.335451,-0.015624,1.859067 +0.803709,1.206047,-0.883776,-1.328168,-0.024193,1.859528 +0.804152,1.203891,-0.893607,-1.320893,-0.032717,1.859932 +0.804647,1.201771,-0.903422,-1.313626,-0.041195,1.860277 +0.805195,1.199687,-0.913219,-1.306369,-0.049626,1.860564 +0.805796,1.197640,-0.922999,-1.299123,-0.058011,1.860792 +0.806450,1.195628,-0.932760,-1.291889,-0.066348,1.860961 +0.807157,1.193653,-0.942502,-1.284667,-0.074637,1.861071 +0.807919,1.191714,-0.952224,-1.277460,-0.082877,1.861121 +0.808735,1.189810,-0.961926,-1.270267,-0.091069,1.861113 +0.809606,1.187942,-0.971607,-1.263091,-0.099211,1.861044 +0.810532,1.186110,-0.981266,-1.255933,-0.107303,1.860916 +0.811514,1.184314,-0.990902,-1.248793,-0.115345,1.860727 +0.812551,1.182552,-1.000516,-1.241672,-0.123335,1.860478 +0.813644,1.180827,-1.010106,-1.234572,-0.131275,1.860169 +0.814794,1.179136,-1.019671,-1.227494,-0.139163,1.859799 +0.816000,1.177480,-1.029212,-1.220438,-0.146998,1.859368 +0.817263,1.175860,-1.038726,-1.213407,-0.154781,1.858876 +0.818583,1.174274,-1.048215,-1.206401,-0.162511,1.858323 +0.819960,1.172722,-1.057677,-1.199421,-0.170188,1.857708 +0.821395,1.171205,-1.067111,-1.192468,-0.177811,1.857032 +0.822887,1.169722,-1.076518,-1.185543,-0.185380,1.856295 +0.824438,1.168273,-1.085896,-1.178648,-0.192894,1.855495 +0.826047,1.166858,-1.095245,-1.171783,-0.200354,1.854634 +0.827714,1.165477,-1.104564,-1.164950,-0.207758,1.853711 +0.829439,1.164129,-1.113852,-1.158150,-0.215107,1.852725 +0.831223,1.162814,-1.123110,-1.151384,-0.222400,1.851677 +0.833066,1.161532,-1.132337,-1.144652,-0.229637,1.850567 +0.834967,1.160283,-1.141531,-1.137956,-0.236818,1.849394 +0.836928,1.159066,-1.150693,-1.131298,-0.243942,1.848159 +0.838948,1.157881,-1.159822,-1.124677,-0.251009,1.846860 +0.841027,1.156728,-1.168918,-1.118096,-0.258018,1.845499 +0.843165,1.155607,-1.177979,-1.111554,-0.264971,1.844075 +0.845362,1.154517,-1.187006,-1.105054,-0.271865,1.842588 +0.847619,1.153458,-1.195998,-1.098597,-0.278702,1.841037 +0.849935,1.152430,-1.204954,-1.092182,-0.285480,1.839424 +0.852310,1.151433,-1.213874,-1.085812,-0.292200,1.837746 +0.854745,1.150465,-1.222757,-1.079488,-0.298862,1.836006 +0.857240,1.149528,-1.231604,-1.073210,-0.305464,1.834202 +0.859793,1.148619,-1.240413,-1.066979,-0.312008,1.832335 +0.862406,1.147740,-1.249184,-1.060797,-0.318493,1.830404 +0.865079,1.146890,-1.257916,-1.054665,-0.324919,1.828409 +0.867810,1.146068,-1.266610,-1.048582,-0.331285,1.826351 +0.870601,1.145274,-1.275264,-1.042552,-0.337591,1.824229 +0.873451,1.144508,-1.283878,-1.036573,-0.343839,1.822043 +0.876360,1.143770,-1.292453,-1.030649,-0.350026,1.819793 +0.879327,1.143058,-1.300986,-1.024778,-0.356153,1.817480 +0.882354,1.142373,-1.309479,-1.018963,-0.362221,1.815102 +0.885439,1.141714,-1.317930,-1.013205,-0.368229,1.812661 +0.888583,1.141081,-1.326339,-1.007503,-0.374177,1.810156 +0.891785,1.140473,-1.334706,-1.001860,-0.380064,1.807587 +0.895045,1.139890,-1.343030,-0.996276,-0.385892,1.804954 +0.898363,1.139331,-1.351312,-0.990752,-0.391659,1.802258 +0.901739,1.138797,-1.359550,-0.985289,-0.397367,1.799497 +0.905173,1.138287,-1.367744,-0.979888,-0.403014,1.796673 +0.908664,1.137799,-1.375894,-0.974549,-0.408601,1.793785 +0.912212,1.137335,-1.384000,-0.969275,-0.414128,1.790833 +0.915817,1.136892,-1.392061,-0.964064,-0.419595,1.787817 +0.919479,1.136472,-1.400076,-0.958919,-0.425002,1.784738 +0.923197,1.136073,-1.408047,-0.953840,-0.430349,1.781595 +0.926971,1.135695,-1.415971,-0.948828,-0.435636,1.778388 +0.930801,1.135337,-1.423850,-0.943885,-0.440863,1.775118 +0.934686,1.134999,-1.431682,-0.939009,-0.446031,1.771784 +0.938627,1.134681,-1.439467,-0.934203,-0.451138,1.768387 +0.942622,1.134382,-1.447205,-0.929468,-0.456187,1.764926 +0.946672,1.134101,-1.454896,-0.924803,-0.461176,1.761403 +0.950776,1.133838,-1.462540,-0.920210,-0.466105,1.757816 +0.954934,1.133592,-1.470135,-0.915690,-0.470976,1.754166 +0.959145,1.133364,-1.477683,-0.911243,-0.475787,1.750453 +0.963409,1.133152,-1.485182,-0.906870,-0.480540,1.746677 +0.967726,1.132955,-1.492632,-0.902572,-0.485234,1.742838 +0.972095,1.132775,-1.500034,-0.898349,-0.489869,1.738936 +0.976516,1.132608,-1.507387,-0.894202,-0.494447,1.734972 +0.980988,1.132457,-1.514690,-0.890132,-0.498966,1.730946 +0.985511,1.132319,-1.521944,-0.886140,-0.503427,1.726857 +0.990085,1.132194,-1.529148,-0.882226,-0.507831,1.722706 +0.994708,1.132081,-1.536302,-0.878390,-0.512177,1.718493 +0.999381,1.131981,-1.543406,-0.874634,-0.516467,1.714218 +1.004104,1.131892,-1.550460,-0.870957,-0.520699,1.709882 +1.008874,1.131814,-1.557463,-0.867361,-0.524875,1.705484 +1.013693,1.131747,-1.564415,-0.863846,-0.528994,1.701024 +1.018559,1.131689,-1.571316,-0.860413,-0.533058,1.696503 +1.023472,1.131641,-1.578167,-0.857062,-0.537066,1.691922 +1.028431,1.131601,-1.584966,-0.853794,-0.541018,1.687279 +1.033437,1.131569,-1.591714,-0.850609,-0.544915,1.682576 +1.038488,1.131544,-1.598411,-0.847508,-0.548758,1.677812 +1.043583,1.131527,-1.605055,-0.844491,-0.552546,1.672988 +1.048723,1.131515,-1.611648,-0.841559,-0.556279,1.668103 +1.053906,1.131510,-1.618190,-0.838712,-0.559960,1.663159 +1.059132,1.131509,-1.624679,-0.835950,-0.563586,1.658156 +1.064401,1.131513,-1.631116,-0.833275,-0.567160,1.653093 +1.069711,1.131520,-1.637501,-0.830686,-0.570681,1.647970 +1.075063,1.131531,-1.643833,-0.828184,-0.574150,1.642789 +1.080455,1.131544,-1.650113,-0.825769,-0.577567,1.637549 +1.085887,1.131560,-1.656341,-0.823441,-0.580933,1.632251 +1.091358,1.131576,-1.662516,-0.821201,-0.584247,1.626894 +1.096868,1.131594,-1.668639,-0.819050,-0.587512,1.621479 +1.102416,1.131611,-1.674709,-0.816987,-0.590725,1.616007 +1.108001,1.131628,-1.680726,-0.815013,-0.593890,1.610477 +1.113622,1.131644,-1.686690,-0.813128,-0.597005,1.604890 +1.119280,1.131659,-1.692602,-0.811332,-0.600071,1.599247 +1.124972,1.131670,-1.698461,-0.809626,-0.603089,1.593546 +1.130699,1.131679,-1.704266,-0.808010,-0.606059,1.587790 +1.136460,1.131684,-1.710019,-0.806483,-0.608982,1.581977 +1.142254,1.131685,-1.715719,-0.805047,-0.611857,1.576109 +1.148080,1.131681,-1.721366,-0.803701,-0.614687,1.570186 +1.153937,1.131672,-1.726961,-0.802446,-0.617470,1.564207 +1.159826,1.131656,-1.732502,-0.801281,-0.620208,1.558174 +1.165744,1.131633,-1.737990,-0.800207,-0.622902,1.552086 +1.171692,1.131603,-1.743425,-0.799224,-0.625551,1.545944 +1.177669,1.131565,-1.748808,-0.798332,-0.628156,1.539749 +1.183673,1.131518,-1.754137,-0.797531,-0.630718,1.533500 +1.189705,1.131462,-1.759414,-0.796821,-0.633237,1.527198 +1.195762,1.131396,-1.764638,-0.796202,-0.635715,1.520843 +1.201845,1.131319,-1.769809,-0.795674,-0.638150,1.514436 +1.207953,1.131230,-1.774928,-0.795237,-0.640545,1.507977 +1.214085,1.131130,-1.779994,-0.794891,-0.642899,1.501467 +1.220240,1.131018,-1.785007,-0.794637,-0.645213,1.494905 +1.226417,1.130892,-1.789968,-0.794473,-0.647488,1.488293 +1.232616,1.130752,-1.794876,-0.794400,-0.649724,1.481630 +1.238835,1.130598,-1.799732,-0.794419,-0.651922,1.474918 +1.245074,1.130429,-1.804536,-0.794527,-0.654082,1.468155 +1.251332,1.130244,-1.809288,-0.794727,-0.656206,1.461343 +1.257609,1.130042,-1.813987,-0.795017,-0.658293,1.454483 +1.263903,1.129824,-1.818635,-0.795397,-0.660344,1.447574 +1.270214,1.129588,-1.823231,-0.795867,-0.662361,1.440617 +1.276540,1.129334,-1.827775,-0.796427,-0.664343,1.433613 +1.282881,1.129060,-1.832267,-0.797077,-0.666291,1.426562 +1.289236,1.128768,-1.836708,-0.797816,-0.668206,1.419464 +1.295605,1.128455,-1.841097,-0.798645,-0.670088,1.412319 +1.301986,1.128121,-1.845435,-0.799562,-0.671938,1.405129 +1.308378,1.127767,-1.849722,-0.800569,-0.673757,1.397894 +1.314782,1.127390,-1.853958,-0.801663,-0.675545,1.390613 +1.321195,1.126990,-1.858144,-0.802846,-0.677303,1.383289 +1.327617,1.126567,-1.862278,-0.804116,-0.679032,1.375920 +1.334047,1.126121,-1.866363,-0.805474,-0.680732,1.368508 +1.340484,1.125650,-1.870396,-0.806918,-0.682404,1.361053 +1.346928,1.125154,-1.874380,-0.808450,-0.684048,1.353556 +1.353378,1.124632,-1.878314,-0.810067,-0.685666,1.346016 +1.359832,1.124085,-1.882197,-0.811770,-0.687258,1.338435 +1.366290,1.123510,-1.886032,-0.813559,-0.688824,1.330813 +1.372751,1.122908,-1.889816,-0.815433,-0.690365,1.323150 +1.379215,1.122278,-1.893552,-0.817391,-0.691882,1.315447 +1.385679,1.121619,-1.897238,-0.819432,-0.693376,1.307705 +1.392144,1.120931,-1.900876,-0.821558,-0.694847,1.299924 +1.398608,1.120214,-1.904465,-0.823766,-0.696296,1.292105 +1.405072,1.119466,-1.908006,-0.826057,-0.697723,1.284247 +1.411533,1.118687,-1.911498,-0.828430,-0.699130,1.276352 +1.417991,1.117877,-1.914942,-0.830883,-0.700516,1.268420 +1.424445,1.117035,-1.918339,-0.833418,-0.701883,1.260452 +1.430894,1.116160,-1.921688,-0.836033,-0.703231,1.252448 +1.437338,1.115252,-1.924990,-0.838727,-0.704561,1.244409 +1.443775,1.114310,-1.928244,-0.841500,-0.705874,1.236335 +1.450205,1.113335,-1.931452,-0.844351,-0.707170,1.228227 +1.456627,1.112324,-1.934613,-0.847280,-0.708450,1.220085 +1.463040,1.111278,-1.937728,-0.850286,-0.709714,1.211910 +1.469444,1.110196,-1.940797,-0.853368,-0.710964,1.203703 +1.475836,1.109078,-1.943820,-0.856526,-0.712200,1.195464 +1.482217,1.107923,-1.946797,-0.859758,-0.713422,1.187193 +1.488585,1.106731,-1.949729,-0.863065,-0.714631,1.178892 +1.494941,1.105501,-1.952616,-0.866445,-0.715829,1.170561 +1.501282,1.104232,-1.955458,-0.869897,-0.717015,1.162200 +1.507609,1.102925,-1.958255,-0.873422,-0.718190,1.153810 +1.513920,1.101578,-1.961009,-0.877017,-0.719355,1.145391 +1.520214,1.100191,-1.963718,-0.880683,-0.720511,1.136945 +1.526491,1.098764,-1.966384,-0.884418,-0.721658,1.128472 +1.532750,1.097296,-1.969006,-0.888221,-0.722797,1.119972 +1.538990,1.095787,-1.971585,-0.892093,-0.723928,1.111446 +1.545211,1.094236,-1.974122,-0.896031,-0.725052,1.102895 +1.551410,1.092643,-1.976615,-0.900035,-0.726171,1.094319 +1.557589,1.091007,-1.979067,-0.904105,-0.727283,1.085718 +1.563745,1.089327,-1.981477,-0.908239,-0.728391,1.077094 +1.569879,1.087605,-1.983845,-0.912436,-0.729495,1.068448 +1.575989,1.085838,-1.986171,-0.916696,-0.730595,1.059779 +1.582074,1.084027,-1.988457,-0.921017,-0.731692,1.051088 +1.588134,1.082171,-1.990702,-0.925399,-0.732786,1.042376 +1.594169,1.080270,-1.992907,-0.929841,-0.733879,1.033644 +1.600176,1.078323,-1.995071,-0.934342,-0.734970,1.024892 +1.606156,1.076330,-1.997196,-0.938900,-0.736061,1.016121 +1.612108,1.074291,-1.999281,-0.943515,-0.737152,1.007331 +1.618031,1.072204,-2.001327,-0.948186,-0.738244,0.998524 +1.623924,1.070071,-2.003334,-0.952912,-0.739337,0.989699 +1.629787,1.067890,-2.005303,-0.957692,-0.740432,0.980858 +1.635618,1.065661,-2.007234,-0.962524,-0.741529,0.972000 +1.641418,1.063383,-2.009127,-0.967408,-0.742629,0.963128 +1.647185,1.061057,-2.010982,-0.972344,-0.743733,0.954241 +1.652919,1.058682,-2.012801,-0.977328,-0.744841,0.945340 +1.658619,1.056257,-2.014582,-0.982362,-0.745953,0.936425 +1.664285,1.053783,-2.016327,-0.987443,-0.747071,0.927498 +1.669915,1.051259,-2.018036,-0.992571,-0.748195,0.918559 +1.675509,1.048684,-2.019709,-0.997744,-0.749325,0.909609 +1.681067,1.046059,-2.021347,-1.002962,-0.750461,0.900648 +1.686587,1.043383,-2.022949,-1.008223,-0.751606,0.891676 +1.692070,1.040655,-2.024517,-1.013527,-0.752758,0.882696 +1.697514,1.037876,-2.026050,-1.018871,-0.753918,0.873707 +1.702918,1.035045,-2.027550,-1.024256,-0.755088,0.864710 +1.708283,1.032162,-2.029015,-1.029679,-0.756267,0.855705 +1.713608,1.029227,-2.030448,-1.035140,-0.757456,0.846694 +1.718892,1.026239,-2.031847,-1.040638,-0.758655,0.837677 +1.724134,1.023199,-2.033213,-1.046172,-0.759865,0.828654 +1.729334,1.020105,-2.034548,-1.051740,-0.761087,0.819627 +1.734491,1.016958,-2.035850,-1.057341,-0.762320,0.810596 +1.739606,1.013757,-2.037121,-1.062974,-0.763566,0.801561 +1.744676,1.010503,-2.038360,-1.068639,-0.764824,0.792524 +1.749702,1.007195,-2.039569,-1.074333,-0.766096,0.783485 +1.754683,1.003832,-2.040747,-1.080056,-0.767381,0.774444 +1.759618,1.000415,-2.041895,-1.085806,-0.768681,0.765403 +1.764508,0.996944,-2.043013,-1.091583,-0.769994,0.756362 +1.769351,0.993418,-2.044102,-1.097385,-0.771323,0.747322 +1.774148,0.989837,-2.045162,-1.103211,-0.772667,0.738283 +1.778897,0.986202,-2.046193,-1.109060,-0.774026,0.729246 +1.783598,0.982511,-2.047195,-1.114931,-0.775401,0.720212 +1.788250,0.978764,-2.048170,-1.120822,-0.776793,0.711181 +1.792854,0.974962,-2.049117,-1.126732,-0.778202,0.702154 +1.797409,0.971105,-2.050037,-1.132661,-0.779627,0.693132 +1.801914,0.967192,-2.050930,-1.138606,-0.781070,0.684116 +1.806369,0.963223,-2.051796,-1.144568,-0.782531,0.675105 +1.810774,0.959199,-2.052636,-1.150544,-0.784010,0.666101 +1.815128,0.955118,-2.053450,-1.156533,-0.785507,0.657105 +1.819430,0.950981,-2.054239,-1.162535,-0.787023,0.648117 +1.823681,0.946789,-2.055003,-1.168547,-0.788557,0.639138 +1.827880,0.942540,-2.055742,-1.174570,-0.790111,0.630168 +1.832026,0.938234,-2.056457,-1.180601,-0.791685,0.621208 +1.836120,0.933873,-2.057148,-1.186640,-0.793278,0.612259 +1.840161,0.929455,-2.057815,-1.192685,-0.794891,0.603321 +1.844148,0.924981,-2.058459,-1.198736,-0.796525,0.594396 +1.848082,0.920450,-2.059080,-1.204790,-0.798179,0.585483 +1.851962,0.915863,-2.059679,-1.210847,-0.799854,0.576584 +1.855787,0.911220,-2.060255,-1.216906,-0.801549,0.567698 +1.859558,0.906520,-2.060809,-1.222966,-0.803266,0.558828 +1.863275,0.901764,-2.061342,-1.229024,-0.805004,0.549972 +1.866936,0.896951,-2.061854,-1.235081,-0.806764,0.541133 +1.870542,0.892082,-2.062345,-1.241135,-0.808545,0.532311 +1.874093,0.887157,-2.062816,-1.247185,-0.810348,0.523505 +1.877587,0.882175,-2.063267,-1.253229,-0.812172,0.514718 +1.881026,0.877137,-2.063698,-1.259267,-0.814019,0.505949 +1.884409,0.872043,-2.064109,-1.265298,-0.815888,0.497200 +1.887736,0.866893,-2.064502,-1.271319,-0.817779,0.488470 +1.891006,0.861687,-2.064876,-1.277331,-0.819693,0.479761 +1.894220,0.856425,-2.065232,-1.283332,-0.821629,0.471073 +1.897376,0.851107,-2.065570,-1.289321,-0.823588,0.462406 +1.900476,0.845734,-2.065890,-1.295297,-0.825569,0.453762 +1.903519,0.840305,-2.066193,-1.301258,-0.827573,0.445141 +1.906505,0.834820,-2.066479,-1.307204,-0.829599,0.436544 +1.909434,0.829280,-2.066749,-1.313134,-0.831648,0.427971 +1.912305,0.823685,-2.067002,-1.319046,-0.833720,0.419423 +1.915119,0.818034,-2.067240,-1.324939,-0.835815,0.410900 +1.917876,0.812329,-2.067462,-1.330813,-0.837932,0.402403 +1.920575,0.806569,-2.067669,-1.336665,-0.840072,0.393933 +1.923217,0.800754,-2.067861,-1.342496,-0.842235,0.385490 +1.925801,0.794885,-2.068038,-1.348304,-0.844420,0.377075 +1.928327,0.788961,-2.068201,-1.354088,-0.846628,0.368688 +1.930796,0.782984,-2.068351,-1.359847,-0.848859,0.360330 +1.933208,0.776952,-2.068487,-1.365581,-0.851112,0.352002 +1.935562,0.770867,-2.068609,-1.371287,-0.853387,0.343704 +1.937858,0.764728,-2.068719,-1.376965,-0.855684,0.335437 +1.940097,0.758537,-2.068817,-1.382614,-0.858004,0.327201 +1.942279,0.752292,-2.068902,-1.388233,-0.860345,0.318997 +1.944403,0.745994,-2.068975,-1.393821,-0.862709,0.310825 +1.946470,0.739644,-2.069036,-1.399378,-0.865094,0.302687 +1.948480,0.733241,-2.069087,-1.404901,-0.867501,0.294582 +1.950433,0.726787,-2.069126,-1.410391,-0.869929,0.286511 +1.952329,0.720281,-2.069155,-1.415846,-0.872378,0.278474 +1.954169,0.713723,-2.069173,-1.421265,-0.874849,0.270473 +1.955951,0.707114,-2.069181,-1.426647,-0.877340,0.262507 +1.957677,0.700454,-2.069180,-1.431993,-0.879852,0.254578 +1.959347,0.693744,-2.069169,-1.437299,-0.882384,0.246685 +1.960960,0.686983,-2.069149,-1.442567,-0.884936,0.238830 +1.962518,0.680172,-2.069120,-1.447794,-0.887508,0.231012 +1.964020,0.673311,-2.069083,-1.452981,-0.890100,0.223233 +1.965466,0.666401,-2.069037,-1.458126,-0.892711,0.215492 +1.966857,0.659442,-2.068983,-1.463228,-0.895342,0.207791 +1.968192,0.652435,-2.068922,-1.468287,-0.897991,0.200129 +1.969473,0.645379,-2.068853,-1.473301,-0.900658,0.192508 +1.970699,0.638275,-2.068778,-1.478271,-0.903344,0.184927 +1.971870,0.631123,-2.068695,-1.483195,-0.906047,0.177388 +1.972988,0.623924,-2.068606,-1.488072,-0.908768,0.169890 +1.974052,0.616678,-2.068510,-1.492902,-0.911506,0.162434 +1.975062,0.609385,-2.068409,-1.497684,-0.914261,0.155020 +1.976018,0.602046,-2.068301,-1.502417,-0.917032,0.147650 +1.976922,0.594661,-2.068188,-1.507101,-0.919820,0.140323 +1.977773,0.587231,-2.068070,-1.511735,-0.922623,0.133040 +1.978572,0.579756,-2.067947,-1.516318,-0.925441,0.125801 +1.979319,0.572237,-2.067820,-1.520850,-0.928273,0.118607 +1.980014,0.564673,-2.067688,-1.525329,-0.931121,0.111459 +1.980658,0.557065,-2.067551,-1.529756,-0.933982,0.104355 +1.981251,0.549414,-2.067411,-1.534130,-0.936857,0.097298 +1.981794,0.541720,-2.067267,-1.538450,-0.939744,0.090287 +1.982286,0.533984,-2.067119,-1.542715,-0.942645,0.083322 +1.982729,0.526205,-2.066968,-1.546925,-0.945557,0.076405 +1.983123,0.518385,-2.066814,-1.551080,-0.948481,0.069535 +1.983467,0.510523,-2.066658,-1.555178,-0.951416,0.062713 +1.983764,0.502621,-2.066498,-1.559220,-0.954362,0.055939 +1.984012,0.494679,-2.066337,-1.563205,-0.957318,0.049214 +1.984212,0.486697,-2.066173,-1.567132,-0.960283,0.042538 +1.984366,0.478675,-2.066007,-1.571001,-0.963257,0.035911 +1.984472,0.470615,-2.065840,-1.574811,-0.966240,0.029333 +1.984533,0.462516,-2.065671,-1.578563,-0.969231,0.022806 +1.984548,0.454379,-2.065501,-1.582255,-0.972229,0.016328 +1.984517,0.446205,-2.065330,-1.585887,-0.975234,0.009901 +1.984442,0.437994,-2.065158,-1.589459,-0.978246,0.003525 +1.984323,0.429747,-2.064985,-1.592971,-0.981262,-0.002799 +1.984160,0.421463,-2.064811,-1.596421,-0.984284,-0.009073 +1.983954,0.413144,-2.064638,-1.599811,-0.987311,-0.015295 +1.983705,0.404791,-2.064464,-1.603138,-0.990341,-0.021464 +1.983414,0.396402,-2.064290,-1.606404,-0.993374,-0.027582 +1.983081,0.387980,-2.064117,-1.609608,-0.996410,-0.033647 +1.982707,0.379525,-2.063944,-1.612749,-0.999448,-0.039659 +1.982293,0.371036,-2.063771,-1.615828,-1.002487,-0.045619 +1.981839,0.362516,-2.063600,-1.618844,-1.005527,-0.051525 +1.981345,0.353963,-2.063429,-1.621796,-1.008566,-0.057378 +1.980813,0.345379,-2.063259,-1.624685,-1.011605,-0.063177 +1.980243,0.336765,-2.063090,-1.627511,-1.014643,-0.068922 +1.979635,0.328120,-2.062923,-1.630273,-1.017679,-0.074613 +1.978989,0.319446,-2.062757,-1.632971,-1.020711,-0.080249 +1.978308,0.310742,-2.062593,-1.635606,-1.023741,-0.085832 +1.977590,0.302010,-2.062431,-1.638176,-1.026766,-0.091359 +1.976838,0.293250,-2.062271,-1.640682,-1.029786,-0.096832 +1.976050,0.284462,-2.062112,-1.643124,-1.032801,-0.102250 +1.975229,0.275648,-2.061956,-1.645501,-1.035810,-0.107613 +1.974375,0.266807,-2.061803,-1.647814,-1.038811,-0.112920 +1.973487,0.257940,-2.061651,-1.650063,-1.041805,-0.118172 +1.972568,0.249048,-2.061502,-1.652248,-1.044790,-0.123369 +1.971617,0.240132,-2.061356,-1.654368,-1.047766,-0.128510 +1.970636,0.231191,-2.061213,-1.656424,-1.050732,-0.133595 +1.969624,0.222227,-2.061072,-1.658415,-1.053687,-0.138624 +1.968583,0.213240,-2.060935,-1.660343,-1.056631,-0.143597 +1.967513,0.204230,-2.060800,-1.662206,-1.059563,-0.148514 +1.966414,0.195199,-2.060669,-1.664005,-1.062481,-0.153375 +1.965289,0.186146,-2.060541,-1.665740,-1.065386,-0.158180 +1.964136,0.177073,-2.060416,-1.667411,-1.068276,-0.162929 +1.962957,0.167979,-2.060295,-1.669019,-1.071151,-0.167621 +1.961753,0.158867,-2.060177,-1.670563,-1.074009,-0.172256 +1.960524,0.149735,-2.060063,-1.672044,-1.076851,-0.176836 +1.959271,0.140584,-2.059952,-1.673462,-1.079674,-0.181359 +1.957995,0.131416,-2.059845,-1.674817,-1.082480,-0.185825 +1.956696,0.122231,-2.059742,-1.676109,-1.085266,-0.190235 +1.955374,0.113029,-2.059643,-1.677339,-1.088031,-0.194588 +1.954032,0.103812,-2.059547,-1.678506,-1.090776,-0.198885 +1.952668,0.094578,-2.059455,-1.679612,-1.093499,-0.203125 +1.951285,0.085330,-2.059368,-1.680656,-1.096200,-0.207309 +1.949883,0.076068,-2.059284,-1.681639,-1.098877,-0.211437 +1.948461,0.066792,-2.059204,-1.682561,-1.101529,-0.215508 +1.947023,0.057502,-2.059129,-1.683422,-1.104157,-0.219522 +1.945566,0.048201,-2.059057,-1.684223,-1.106759,-0.223481 +1.944094,0.038887,-2.058990,-1.684965,-1.109335,-0.227383 +1.942606,0.029562,-2.058926,-1.685647,-1.111882,-0.231229 +1.941102,0.020226,-2.058867,-1.686269,-1.114402,-0.235019 +1.939585,0.010880,-2.058812,-1.686833,-1.116892,-0.238753 +1.938053,0.001525,-2.058761,-1.687339,-1.119353,-0.242431 +1.936509,-0.007840,-2.058714,-1.687788,-1.121782,-0.246053 +1.934953,-0.017213,-2.058672,-1.688179,-1.124180,-0.249619 +1.933385,-0.026594,-2.058633,-1.688513,-1.126546,-0.253130 +1.931806,-0.035982,-2.058599,-1.688791,-1.128878,-0.256586 +1.930217,-0.045377,-2.058569,-1.689013,-1.131176,-0.259986 +1.928619,-0.054778,-2.058543,-1.689180,-1.133440,-0.263331 +1.927012,-0.064185,-2.058521,-1.689292,-1.135667,-0.266620 +1.925397,-0.073597,-2.058503,-1.689350,-1.137858,-0.269856 +1.923775,-0.083013,-2.058489,-1.689355,-1.140012,-0.273036 +1.922146,-0.092433,-2.058479,-1.689306,-1.142127,-0.276162 +1.920511,-0.101856,-2.058473,-1.689205,-1.144203,-0.279233 +1.918872,-0.111282,-2.058471,-1.689053,-1.146240,-0.282251 +1.917227,-0.120709,-2.058473,-1.688849,-1.148235,-0.285214 +1.915579,-0.130139,-2.058479,-1.688594,-1.150190,-0.288124 +1.913928,-0.139569,-2.058488,-1.688290,-1.152102,-0.290980 +1.912274,-0.149000,-2.058502,-1.687937,-1.153970,-0.293783 +1.910619,-0.158431,-2.058518,-1.687535,-1.155795,-0.296533 +1.908963,-0.167861,-2.058539,-1.687085,-1.157575,-0.299230 +1.907306,-0.177290,-2.058563,-1.686588,-1.159310,-0.301874 +1.905650,-0.186718,-2.058590,-1.686045,-1.160998,-0.304467 +1.903994,-0.196142,-2.058621,-1.685456,-1.162640,-0.307007 +1.902341,-0.205564,-2.058655,-1.684822,-1.164233,-0.309495 +1.900689,-0.214983,-2.058692,-1.684144,-1.165777,-0.311932 +1.899041,-0.224397,-2.058732,-1.683422,-1.167272,-0.314318 +1.897397,-0.233808,-2.058775,-1.682658,-1.168717,-0.316652 +1.895756,-0.243213,-2.058821,-1.681852,-1.170111,-0.318937 +1.894121,-0.252612,-2.058870,-1.681004,-1.171453,-0.321170 +1.892492,-0.262005,-2.058922,-1.680117,-1.172742,-0.323354 +1.890868,-0.271392,-2.058976,-1.679189,-1.173978,-0.325488 +1.889252,-0.280772,-2.059033,-1.678224,-1.175160,-0.327573 +1.887643,-0.290144,-2.059092,-1.677220,-1.176287,-0.329609 +1.886042,-0.299508,-2.059154,-1.676179,-1.177358,-0.331596 +1.884451,-0.308863,-2.059217,-1.675102,-1.178373,-0.333535 +1.882868,-0.318209,-2.059283,-1.673990,-1.179331,-0.335426 +1.881296,-0.327545,-2.059350,-1.672843,-1.180231,-0.337269 +1.879735,-0.336871,-2.059419,-1.671663,-1.181073,-0.339065 +1.878185,-0.346186,-2.059490,-1.670450,-1.181855,-0.340815 +1.876646,-0.355490,-2.059562,-1.669205,-1.182577,-0.342517 +1.875120,-0.364782,-2.059635,-1.667929,-1.183239,-0.344174 +1.873608,-0.374063,-2.059710,-1.666623,-1.183840,-0.345785 +1.872109,-0.383330,-2.059785,-1.665288,-1.184378,-0.347351 +1.870624,-0.392584,-2.059862,-1.663925,-1.184854,-0.348872 +1.869154,-0.401825,-2.059939,-1.662535,-1.185266,-0.350349 +1.867699,-0.411052,-2.060017,-1.661118,-1.185614,-0.351781 +1.866261,-0.420264,-2.060095,-1.659676,-1.185897,-0.353170 +1.864839,-0.429461,-2.060173,-1.658209,-1.186116,-0.354516 +1.863434,-0.438643,-2.060251,-1.656719,-1.186268,-0.355819 +1.862046,-0.447809,-2.060329,-1.655206,-1.186353,-0.357080 +1.860677,-0.456958,-2.060407,-1.653672,-1.186371,-0.358299 +1.859326,-0.466091,-2.060484,-1.652117,-1.186322,-0.359477 +1.857994,-0.475206,-2.060560,-1.650543,-1.186203,-0.360614 +1.856683,-0.484303,-2.060636,-1.648949,-1.186016,-0.361711 +1.855391,-0.493383,-2.060710,-1.647338,-1.185759,-0.362767 +1.854120,-0.502444,-2.060784,-1.645710,-1.185432,-0.363785 +1.852870,-0.511486,-2.060855,-1.644067,-1.185034,-0.364763 +1.851642,-0.520509,-2.060925,-1.642409,-1.184565,-0.365703 +1.850436,-0.529511,-2.060993,-1.640736,-1.184024,-0.366605 +1.849252,-0.538494,-2.061059,-1.639051,-1.183410,-0.367469 +1.848092,-0.547456,-2.061123,-1.637355,-1.182723,-0.368297 +1.846955,-0.556397,-2.061184,-1.635647,-1.181963,-0.369088 +1.845842,-0.565317,-2.061243,-1.633929,-1.181129,-0.369843 +1.844753,-0.574215,-2.061298,-1.632203,-1.180220,-0.370563 +1.843689,-0.583091,-2.061350,-1.630469,-1.179236,-0.371248 +1.842650,-0.591944,-2.061399,-1.628728,-1.178177,-0.371898 +1.841637,-0.600774,-2.061444,-1.626981,-1.177042,-0.372515 +1.840650,-0.609582,-2.061486,-1.625229,-1.175831,-0.373099 +1.839689,-0.618365,-2.061523,-1.623474,-1.174543,-0.373650 +1.838755,-0.627125,-2.061556,-1.621715,-1.173177,-0.374169 +1.837849,-0.635860,-2.061584,-1.619955,-1.171734,-0.374656 +1.836969,-0.644571,-2.061607,-1.618194,-1.170213,-0.375112 +1.836118,-0.653256,-2.061626,-1.616433,-1.168613,-0.375538 +1.835295,-0.661917,-2.061639,-1.614673,-1.166934,-0.375933 +1.834500,-0.670551,-2.061646,-1.612915,-1.165177,-0.376300 +1.833734,-0.679160,-2.061648,-1.611160,-1.163339,-0.376638 +1.832998,-0.687743,-2.061644,-1.609410,-1.161422,-0.376947 +1.832291,-0.696299,-2.061633,-1.607664,-1.159424,-0.377229 +1.831613,-0.704828,-2.061616,-1.605925,-1.157346,-0.377484 +1.830966,-0.713329,-2.061592,-1.604193,-1.155187,-0.377712 +1.830349,-0.721804,-2.061560,-1.602468,-1.152947,-0.377915 +1.829763,-0.730250,-2.061522,-1.600753,-1.150626,-0.378092 +1.829207,-0.738669,-2.061476,-1.599047,-1.148222,-0.378245 +1.828683,-0.747059,-2.061422,-1.597353,-1.145737,-0.378373 +1.828190,-0.755421,-2.061359,-1.595670,-1.143169,-0.378478 +1.827729,-0.763754,-2.061289,-1.594000,-1.140519,-0.378561 +1.827300,-0.772058,-2.061209,-1.592344,-1.137787,-0.378621 +1.826902,-0.780332,-2.061121,-1.590703,-1.134971,-0.378659 +1.826537,-0.788577,-2.061023,-1.589077,-1.132073,-0.378677 +1.826205,-0.796792,-2.060916,-1.587468,-1.129091,-0.378673 +1.825904,-0.804977,-2.060799,-1.585877,-1.126026,-0.378651 +1.825637,-0.813131,-2.060671,-1.584304,-1.122878,-0.378609 +1.825403,-0.821255,-2.060534,-1.582750,-1.119645,-0.378548 +1.825202,-0.829348,-2.060385,-1.581216,-1.116329,-0.378469 +1.825034,-0.837411,-2.060226,-1.579704,-1.112930,-0.378373 +1.824899,-0.845442,-2.060055,-1.578214,-1.109446,-0.378261 +1.824798,-0.853442,-2.059873,-1.576746,-1.105878,-0.378132 +1.824730,-0.861410,-2.059679,-1.575302,-1.102226,-0.377988 +1.824696,-0.869347,-2.059473,-1.573884,-1.098490,-0.377829 +1.824696,-0.877251,-2.059255,-1.572490,-1.094670,-0.377656 +1.824730,-0.885124,-2.059023,-1.571123,-1.090765,-0.377469 +1.824798,-0.892964,-2.058779,-1.569783,-1.086777,-0.377269 +1.824899,-0.900772,-2.058521,-1.568471,-1.082704,-0.377057 +1.825035,-0.908547,-2.058250,-1.567188,-1.078547,-0.376834 +1.825205,-0.916290,-2.057965,-1.565935,-1.074306,-0.376599 +1.825409,-0.923999,-2.057666,-1.564712,-1.069981,-0.376354 +1.825647,-0.931676,-2.057352,-1.563520,-1.065572,-0.376099 +1.825919,-0.939319,-2.057023,-1.562361,-1.061080,-0.375835 +1.826226,-0.946929,-2.056679,-1.561234,-1.056503,-0.375562 +1.826566,-0.954506,-2.056320,-1.560141,-1.051843,-0.375281 +1.826941,-0.962049,-2.055945,-1.559082,-1.047099,-0.374994 +1.827350,-0.969559,-2.055554,-1.558058,-1.042272,-0.374699 +1.827792,-0.977035,-2.055146,-1.557070,-1.037362,-0.374399 +1.828269,-0.984477,-2.054722,-1.556119,-1.032368,-0.374093 +1.828780,-0.991885,-2.054281,-1.555204,-1.027292,-0.373782 +1.829324,-0.999259,-2.053823,-1.554328,-1.022133,-0.373468 +1.829903,-1.006598,-2.053347,-1.553490,-1.016892,-0.373149 +1.830515,-1.013904,-2.052853,-1.552691,-1.011568,-0.372828 +1.831160,-1.021175,-2.052341,-1.551932,-1.006163,-0.372505 +1.831839,-1.028412,-2.051811,-1.551214,-1.000676,-0.372180 +1.832552,-1.035615,-2.051261,-1.550537,-0.995108,-0.371854 +1.833297,-1.042783,-2.050693,-1.549901,-0.989458,-0.371528 +1.834076,-1.049917,-2.050105,-1.549308,-0.983728,-0.371202 +1.834888,-1.057016,-2.049498,-1.548758,-0.977917,-0.370877 +1.835732,-1.064080,-2.048871,-1.548251,-0.972027,-0.370553 +1.836609,-1.071110,-2.048223,-1.547788,-0.966056,-0.370231 +1.837518,-1.078105,-2.047554,-1.547370,-0.960007,-0.369912 +1.838460,-1.085066,-2.046865,-1.546997,-0.953878,-0.369597 +1.839434,-1.091991,-2.046155,-1.546670,-0.947671,-0.369285 +1.840439,-1.098882,-2.045422,-1.546389,-0.941385,-0.368978 +1.841476,-1.105738,-2.044668,-1.546154,-0.935022,-0.368676 +1.842545,-1.112560,-2.043892,-1.545966,-0.928582,-0.368380 +1.843644,-1.119347,-2.043094,-1.545826,-0.922064,-0.368090 +1.844775,-1.126099,-2.042273,-1.545734,-0.915471,-0.367807 +1.845936,-1.132816,-2.041428,-1.545691,-0.908802,-0.367531 +1.847128,-1.139498,-2.040561,-1.545696,-0.902057,-0.367264 +1.848350,-1.146146,-2.039669,-1.545750,-0.895238,-0.367005 +1.849601,-1.152759,-2.038754,-1.545853,-0.888344,-0.366755 +1.850882,-1.159338,-2.037814,-1.546007,-0.881376,-0.366516 +1.852193,-1.165882,-2.036850,-1.546211,-0.874336,-0.366286 +1.853532,-1.172391,-2.035861,-1.546465,-0.867223,-0.366068 +1.854900,-1.178866,-2.034848,-1.546771,-0.860038,-0.365862 +1.856296,-1.185306,-2.033808,-1.547127,-0.852781,-0.365667 +1.857720,-1.191712,-2.032743,-1.547535,-0.845454,-0.365485 +1.859172,-1.198084,-2.031652,-1.547995,-0.838057,-0.365317 +1.860651,-1.204421,-2.030535,-1.548506,-0.830590,-0.365162 +1.862158,-1.210724,-2.029391,-1.549070,-0.823055,-0.365021 +1.863690,-1.216993,-2.028220,-1.549686,-0.815451,-0.364896 +1.865249,-1.223227,-2.027022,-1.550354,-0.807780,-0.364785 +1.866834,-1.229428,-2.025797,-1.551075,-0.800042,-0.364691 +1.868444,-1.235595,-2.024544,-1.551849,-0.792239,-0.364614 +1.870079,-1.241728,-2.023263,-1.552677,-0.784370,-0.364553 +1.871739,-1.247827,-2.021954,-1.553557,-0.776436,-0.364510 +1.873423,-1.253892,-2.020616,-1.554490,-0.768439,-0.364485 +1.875131,-1.259924,-2.019250,-1.555477,-0.760379,-0.364478 +1.876863,-1.265922,-2.017855,-1.556517,-0.752256,-0.364491 +1.878617,-1.271887,-2.016430,-1.557611,-0.744072,-0.364523 +1.880394,-1.277819,-2.014976,-1.558758,-0.735828,-0.364575 +1.882193,-1.283718,-2.013492,-1.559958,-0.727524,-0.364648 +1.884014,-1.289583,-2.011978,-1.561212,-0.719161,-0.364741 +1.885855,-1.295416,-2.010433,-1.562520,-0.710739,-0.364857 +1.887718,-1.301215,-2.008859,-1.563881,-0.702261,-0.364994 +1.889600,-1.306983,-2.007253,-1.565295,-0.693726,-0.365154 +1.891503,-1.312717,-2.005616,-1.566762,-0.685136,-0.365337 +1.893425,-1.318419,-2.003948,-1.568283,-0.676491,-0.365543 +1.895365,-1.324089,-2.002248,-1.569857,-0.667793,-0.365773 +1.897324,-1.329727,-2.000516,-1.571483,-0.659042,-0.366027 +1.899301,-1.335333,-1.998753,-1.573163,-0.650239,-0.366306 +1.901295,-1.340907,-1.996957,-1.574895,-0.641385,-0.366611 +1.903306,-1.346449,-1.995129,-1.576679,-0.632481,-0.366941 +1.905333,-1.351960,-1.993268,-1.578516,-0.623529,-0.367296 +1.907375,-1.357440,-1.991374,-1.580405,-0.614528,-0.367679 +1.909433,-1.362888,-1.989447,-1.582345,-0.605481,-0.368088 +1.911506,-1.368305,-1.987487,-1.584337,-0.596387,-0.368524 +1.913593,-1.373691,-1.985493,-1.586380,-0.587249,-0.368988 +1.915693,-1.379046,-1.983465,-1.588475,-0.578066,-0.369480 +1.917806,-1.384371,-1.981403,-1.590619,-0.568841,-0.370001 +1.919932,-1.389666,-1.979307,-1.592815,-0.559574,-0.370550 +1.922070,-1.394930,-1.977177,-1.595060,-0.550266,-0.371129 +1.924220,-1.400164,-1.975012,-1.597355,-0.540918,-0.371737 +1.926380,-1.405368,-1.972812,-1.599699,-0.531532,-0.372375 +1.928550,-1.410543,-1.970577,-1.602092,-0.522108,-0.373043 +1.930730,-1.415688,-1.968308,-1.604533,-0.512647,-0.373742 +1.932919,-1.420804,-1.966003,-1.607022,-0.503151,-0.374471 +1.935117,-1.425890,-1.963662,-1.609559,-0.493621,-0.375232 +1.937322,-1.430948,-1.961286,-1.612143,-0.484058,-0.376024 +1.939535,-1.435976,-1.958874,-1.614774,-0.474462,-0.376849 +1.941755,-1.440976,-1.956426,-1.617451,-0.464835,-0.377705 +1.943981,-1.445948,-1.953942,-1.620173,-0.455179,-0.378594 +1.946212,-1.450891,-1.951421,-1.622941,-0.445494,-0.379516 +1.948448,-1.455807,-1.948864,-1.625753,-0.435781,-0.380471 +1.950689,-1.460694,-1.946271,-1.628609,-0.426043,-0.381459 +1.952934,-1.465554,-1.943641,-1.631508,-0.416278,-0.382481 +1.955181,-1.470387,-1.940973,-1.634450,-0.406490,-0.383536 +1.957431,-1.475192,-1.938269,-1.637434,-0.396679,-0.384626 +1.959684,-1.479970,-1.935528,-1.640460,-0.386847,-0.385750 +1.961937,-1.484721,-1.932750,-1.643527,-0.376994,-0.386909 +1.964191,-1.489446,-1.929934,-1.646634,-0.367122,-0.388102 +1.966445,-1.494144,-1.927081,-1.649780,-0.357231,-0.389331 +1.968699,-1.498816,-1.924190,-1.652966,-0.347324,-0.390595 +1.970952,-1.503462,-1.921262,-1.656189,-0.337401,-0.391894 +1.973203,-1.508082,-1.918296,-1.659450,-0.327464,-0.393229 +1.975451,-1.512676,-1.915291,-1.662748,-0.317514,-0.394600 +1.977696,-1.517245,-1.912249,-1.666082,-0.307552,-0.396007 +1.979938,-1.521789,-1.909169,-1.669450,-0.297579,-0.397450 +1.982176,-1.526308,-1.906051,-1.672854,-0.287597,-0.398930 +1.984408,-1.530802,-1.902895,-1.676291,-0.277607,-0.400446 +1.986635,-1.535271,-1.899701,-1.679760,-0.267610,-0.401999 +1.988856,-1.539716,-1.896468,-1.683262,-0.257607,-0.403588 +1.991071,-1.544137,-1.893197,-1.686795,-0.247600,-0.405215 +1.993277,-1.548533,-1.889887,-1.690358,-0.237589,-0.406879 +1.995476,-1.552906,-1.886539,-1.693950,-0.227577,-0.408580 +1.997666,-1.557255,-1.883153,-1.697572,-0.217564,-0.410318 +1.999847,-1.561581,-1.879728,-1.701220,-0.207552,-0.412094 +2.002018,-1.565884,-1.876264,-1.704896,-0.197542,-0.413908 +2.004179,-1.570164,-1.872762,-1.708597,-0.187535,-0.415759 +2.006328,-1.574421,-1.869221,-1.712324,-0.177533,-0.417648 +2.008466,-1.578655,-1.865642,-1.716074,-0.167536,-0.419574 +2.010591,-1.582867,-1.862024,-1.719848,-0.157547,-0.421539 +2.012703,-1.587057,-1.858368,-1.723643,-0.147566,-0.423541 +2.014801,-1.591225,-1.854673,-1.727460,-0.137595,-0.425581 +2.016886,-1.595371,-1.850939,-1.731297,-0.127635,-0.427660 +2.018955,-1.599496,-1.847167,-1.735153,-0.117687,-0.429776 +2.021009,-1.603599,-1.843357,-1.739027,-0.107753,-0.431931 +2.023047,-1.607681,-1.839507,-1.742918,-0.097833,-0.434123 +2.025068,-1.611742,-1.835620,-1.746826,-0.087930,-0.436354 +2.027072,-1.615783,-1.831694,-1.750748,-0.078044,-0.438622 +2.029057,-1.619803,-1.827730,-1.754684,-0.068177,-0.440929 +2.031025,-1.623802,-1.823727,-1.758634,-0.058330,-0.443274 +2.032973,-1.627781,-1.819686,-1.762595,-0.048504,-0.445656 +2.034901,-1.631740,-1.815607,-1.766567,-0.038701,-0.448077 +2.036809,-1.635680,-1.811490,-1.770549,-0.028922,-0.450536 +2.038697,-1.639600,-1.807335,-1.774540,-0.019169,-0.453032 +2.040562,-1.643500,-1.803141,-1.778538,-0.009441,-0.455567 +2.042406,-1.647381,-1.798910,-1.782543,0.000258,-0.458139 +2.044227,-1.651243,-1.794642,-1.786553,0.009928,-0.460749 +2.046024,-1.655087,-1.790335,-1.790567,0.019568,-0.463396 +2.047798,-1.658911,-1.785992,-1.794585,0.029177,-0.466081 +2.049547,-1.662717,-1.781610,-1.798604,0.038752,-0.468804 +2.051271,-1.666505,-1.777192,-1.802625,0.048293,-0.471564 +2.052970,-1.670274,-1.772736,-1.806645,0.057799,-0.474361 +2.054643,-1.674026,-1.768243,-1.810663,0.067268,-0.477195 +2.056289,-1.677760,-1.763714,-1.814679,0.076699,-0.480066 +2.057907,-1.681476,-1.759147,-1.818691,0.086090,-0.482973 +2.059498,-1.685174,-1.754544,-1.822699,0.095441,-0.485918 +2.061060,-1.688856,-1.749905,-1.826700,0.104750,-0.488899 +2.062594,-1.692520,-1.745229,-1.830694,0.114016,-0.491916 +2.064098,-1.696167,-1.740518,-1.834679,0.123238,-0.494970 +2.065572,-1.699797,-1.735770,-1.838655,0.132414,-0.498060 +2.067016,-1.703410,-1.730987,-1.842620,0.141544,-0.501185 +2.068428,-1.707007,-1.726169,-1.846574,0.150625,-0.504346 +2.069809,-1.710588,-1.721315,-1.850513,0.159657,-0.507543 +2.071158,-1.714152,-1.716426,-1.854439,0.168639,-0.510775 +2.072474,-1.717701,-1.711502,-1.858349,0.177569,-0.514042 +2.073758,-1.721233,-1.706543,-1.862242,0.186446,-0.517343 +2.075007,-1.724750,-1.701550,-1.866117,0.195269,-0.520680 +2.076223,-1.728250,-1.696523,-1.869973,0.204037,-0.524050 +2.077404,-1.731736,-1.691462,-1.873809,0.212748,-0.527455 +2.078550,-1.735206,-1.686367,-1.877623,0.221401,-0.530894 +2.079660,-1.738660,-1.681239,-1.881414,0.229996,-0.534366 +2.080734,-1.742100,-1.676078,-1.885182,0.238530,-0.537872 +2.081772,-1.745524,-1.670884,-1.888924,0.247004,-0.541410 +2.082773,-1.748934,-1.665657,-1.892640,0.255415,-0.544982 +2.083736,-1.752328,-1.660398,-1.896328,0.263763,-0.548586 +2.084662,-1.755708,-1.655107,-1.899987,0.272046,-0.552222 +2.085549,-1.759074,-1.649784,-1.903617,0.280263,-0.555891 +2.086398,-1.762425,-1.644429,-1.907215,0.288413,-0.559590 +2.087207,-1.765762,-1.639044,-1.910781,0.296495,-0.563322 +2.087977,-1.769084,-1.633627,-1.914313,0.304509,-0.567084 +2.088707,-1.772392,-1.628180,-1.917811,0.312452,-0.570877 +2.089396,-1.775687,-1.622703,-1.921272,0.320324,-0.574701 +2.090044,-1.778967,-1.617196,-1.924697,0.328123,-0.578554 +2.090651,-1.782233,-1.611660,-1.928083,0.335849,-0.582437 +2.091217,-1.785486,-1.606094,-1.931430,0.343500,-0.586350 +2.091740,-1.788725,-1.600500,-1.934736,0.351076,-0.590291 +2.092222,-1.791950,-1.594877,-1.938000,0.358576,-0.594262 +2.092660,-1.795162,-1.589226,-1.941222,0.365998,-0.598260 +2.093055,-1.798360,-1.583547,-1.944399,0.373341,-0.602287 +2.093407,-1.801545,-1.577841,-1.947531,0.380605,-0.606341 +2.093714,-1.804717,-1.572109,-1.950616,0.387788,-0.610422 +2.093978,-1.807875,-1.566349,-1.953654,0.394889,-0.614530 +2.094197,-1.811020,-1.560563,-1.956644,0.401908,-0.618664 +2.094371,-1.814152,-1.554752,-1.959583,0.408843,-0.622824 +2.094500,-1.817271,-1.548915,-1.962472,0.415694,-0.627010 +2.094583,-1.820377,-1.543054,-1.965308,0.422459,-0.631222 +2.094620,-1.823469,-1.537168,-1.968092,0.429138,-0.635458 +2.094612,-1.826549,-1.531258,-1.970821,0.435730,-0.639718 +2.094556,-1.829616,-1.525324,-1.973495,0.442234,-0.644002 +2.094454,-1.832670,-1.519367,-1.976113,0.448648,-0.648310 +2.094305,-1.835711,-1.513387,-1.978673,0.454973,-0.652641 +2.094109,-1.838739,-1.507385,-1.981174,0.461207,-0.656995 +2.093865,-1.841755,-1.501362,-1.983616,0.467349,-0.661370 +2.093573,-1.844757,-1.495317,-1.985998,0.473398,-0.665768 +2.093233,-1.847747,-1.489251,-1.988318,0.479355,-0.670187 +2.092845,-1.850724,-1.483164,-1.990575,0.485217,-0.674627 +2.092408,-1.853689,-1.477058,-1.992769,0.490984,-0.679087 +2.091922,-1.856640,-1.470932,-1.994898,0.496655,-0.683567 +2.091388,-1.859579,-1.464788,-1.996961,0.502230,-0.688066 +2.090803,-1.862505,-1.458625,-1.998958,0.507708,-0.692585 +2.090170,-1.865419,-1.452444,-2.000887,0.513088,-0.697122 +2.089487,-1.868319,-1.446245,-2.002747,0.518369,-0.701677 +2.088753,-1.871207,-1.440030,-2.004539,0.523550,-0.706250 +2.087970,-1.874082,-1.433799,-2.006259,0.528631,-0.710840 +2.087137,-1.876945,-1.427551,-2.007909,0.533612,-0.715447 +2.086253,-1.879794,-1.421288,-2.009486,0.538490,-0.720070 +2.085318,-1.882631,-1.415011,-2.010991,0.543267,-0.724708 +2.084333,-1.885454,-1.408719,-2.012421,0.547941,-0.729361 +2.083296,-1.888265,-1.402414,-2.013777,0.552511,-0.734030 +2.082209,-1.891063,-1.396096,-2.015057,0.556977,-0.738712 +2.081070,-1.893848,-1.389765,-2.016260,0.561338,-0.743408 +2.079880,-1.896620,-1.383422,-2.017387,0.565594,-0.748117 +2.078639,-1.899379,-1.377068,-2.018435,0.569745,-0.752839 +2.077346,-1.902124,-1.370702,-2.019404,0.573788,-0.757572 +2.076001,-1.904857,-1.364327,-2.020294,0.577725,-0.762318 +2.074605,-1.907576,-1.357942,-2.021104,0.581554,-0.767074 +2.073156,-1.910282,-1.351548,-2.021832,0.585275,-0.771841 +2.071656,-1.912974,-1.345146,-2.022478,0.588888,-0.776618 +2.070103,-1.915653,-1.338735,-2.023042,0.592392,-0.781405 +2.068499,-1.918319,-1.332318,-2.023523,0.595786,-0.786200 +2.066842,-1.920971,-1.325893,-2.023920,0.599070,-0.791004 +2.065133,-1.923609,-1.319463,-2.024232,0.602244,-0.795816 +2.063372,-1.926233,-1.313027,-2.024459,0.605307,-0.800636 +2.061558,-1.928844,-1.306587,-2.024601,0.608259,-0.805462 +2.059692,-1.931441,-1.300142,-2.024655,0.611099,-0.810295 +2.057773,-1.934023,-1.293694,-2.024623,0.613828,-0.815133 +2.055802,-1.936592,-1.287243,-2.024504,0.616444,-0.819977 +2.053778,-1.939146,-1.280790,-2.024296,0.618947,-0.824825 +2.051702,-1.941686,-1.274335,-2.024000,0.621338,-0.829678 +2.049574,-1.944212,-1.267879,-2.023615,0.623615,-0.834534 +2.047393,-1.946723,-1.261423,-2.023140,0.625778,-0.839393 +2.045159,-1.949220,-1.254968,-2.022575,0.627828,-0.844255 +2.042873,-1.951701,-1.248513,-2.021919,0.629764,-0.849119 +2.040535,-1.954168,-1.242060,-2.021172,0.631585,-0.853985 +2.038144,-1.956620,-1.235609,-2.020334,0.633292,-0.858851 +2.035701,-1.959057,-1.229161,-2.019405,0.634884,-0.863718 +2.033205,-1.961478,-1.222717,-2.018383,0.636361,-0.868585 +2.030657,-1.963884,-1.216278,-2.017268,0.637722,-0.873451 +2.028057,-1.966274,-1.209843,-2.016061,0.638969,-0.878316 +2.025405,-1.968649,-1.203414,-2.014761,0.640100,-0.883180 +2.022701,-1.971008,-1.196992,-2.013367,0.641115,-0.888041 +2.019944,-1.973351,-1.190576,-2.011879,0.642015,-0.892899 +2.017136,-1.975678,-1.184169,-2.010298,0.642799,-0.897754 +2.014275,-1.977989,-1.177770,-2.008622,0.643467,-0.902605 +2.011363,-1.980284,-1.171380,-2.006852,0.644019,-0.907451 +2.008400,-1.982561,-1.165000,-2.004987,0.644455,-0.912293 +2.005384,-1.984822,-1.158630,-2.003027,0.644775,-0.917129 +2.002318,-1.987067,-1.152272,-2.000973,0.644978,-0.921959 +1.999199,-1.989294,-1.145926,-1.998823,0.645066,-0.926783 +1.996030,-1.991504,-1.139593,-1.996579,0.645038,-0.931599 +1.992810,-1.993697,-1.133273,-1.994239,0.644894,-0.936408 +1.989538,-1.995872,-1.126967,-1.991803,0.644634,-0.941209 +1.986216,-1.998029,-1.120676,-1.989273,0.644258,-0.946001 +1.982843,-2.000169,-1.114400,-1.986647,0.643766,-0.950784 +1.979419,-2.002290,-1.108141,-1.983925,0.643159,-0.955557 +1.975945,-2.004394,-1.101898,-1.981108,0.642436,-0.960320 +1.972421,-2.006479,-1.095674,-1.978196,0.641598,-0.965072 +1.968847,-2.008545,-1.089468,-1.975189,0.640644,-0.969813 +1.965222,-2.010592,-1.083281,-1.972087,0.639575,-0.974542 +1.961548,-2.012621,-1.077113,-1.968889,0.638391,-0.979259 +1.957825,-2.014630,-1.070967,-1.965597,0.637093,-0.983963 +1.954052,-2.016620,-1.064842,-1.962209,0.635680,-0.988654 +1.950230,-2.018591,-1.058738,-1.958728,0.634152,-0.993331 +1.946359,-2.020541,-1.052658,-1.955152,0.632511,-0.997993 +1.942439,-2.022472,-1.046601,-1.951481,0.630756,-1.002641 +1.938470,-2.024382,-1.040568,-1.947717,0.628887,-1.007274 +1.934453,-2.026273,-1.034561,-1.943859,0.626905,-1.011890 +1.930388,-2.028142,-1.028579,-1.939908,0.624810,-1.016491 +1.926275,-2.029991,-1.022623,-1.935864,0.622602,-1.021074 +1.922114,-2.031819,-1.016694,-1.931727,0.620282,-1.025641 +1.917905,-2.033625,-1.010794,-1.927497,0.617850,-1.030189 +1.913649,-2.035411,-1.004922,-1.923176,0.615307,-1.034720 +1.909346,-2.037174,-0.999079,-1.918763,0.612652,-1.039232 +1.904996,-2.038916,-0.993266,-1.914259,0.609887,-1.043724 +1.900600,-2.040636,-0.987484,-1.909664,0.607011,-1.048197 +1.896157,-2.042333,-0.981734,-1.904979,0.604026,-1.052650 +1.891668,-2.044008,-0.976016,-1.900204,0.600930,-1.057082 +1.887133,-2.045660,-0.970331,-1.895339,0.597726,-1.061494 +1.882552,-2.047290,-0.964679,-1.890386,0.594413,-1.065883 +1.877926,-2.048896,-0.959062,-1.885345,0.590992,-1.070251 +1.873254,-2.050478,-0.953480,-1.880216,0.587464,-1.074597 +1.868538,-2.052038,-0.947934,-1.875000,0.583828,-1.078920 +1.863777,-2.053573,-0.942425,-1.869698,0.580086,-1.083219 +1.858972,-2.055084,-0.936952,-1.864310,0.576238,-1.087495 +1.854123,-2.056571,-0.931518,-1.858836,0.572284,-1.091747 +1.849230,-2.058033,-0.926123,-1.853278,0.568226,-1.095974 +1.844293,-2.059471,-0.920767,-1.847637,0.564063,-1.100177 +1.839313,-2.060883,-0.915451,-1.841912,0.559796,-1.104354 +1.834290,-2.062271,-0.910175,-1.836105,0.555426,-1.108505 +1.829224,-2.063632,-0.904942,-1.830217,0.550954,-1.112631 +1.824115,-2.064969,-0.899750,-1.824247,0.546380,-1.116729 +1.818965,-2.066279,-0.894602,-1.818198,0.541705,-1.120801 +1.813772,-2.067563,-0.889497,-1.812070,0.536929,-1.124845 +1.808538,-2.068821,-0.884437,-1.805863,0.532054,-1.128862 +1.803262,-2.070052,-0.879421,-1.799579,0.527079,-1.132851 +1.797946,-2.071256,-0.874452,-1.793218,0.522006,-1.136811 +1.792589,-2.072433,-0.869529,-1.786781,0.516835,-1.140743 +1.787191,-2.073582,-0.864652,-1.780270,0.511567,-1.144645 +1.781753,-2.074704,-0.859824,-1.773685,0.506202,-1.148518 +1.776275,-2.075798,-0.855044,-1.767027,0.500743,-1.152360 +1.770757,-2.076864,-0.850313,-1.760298,0.495188,-1.156173 +1.765200,-2.077902,-0.845632,-1.753497,0.489539,-1.159955 +1.759604,-2.078911,-0.841002,-1.746626,0.483797,-1.163706 +1.753970,-2.079892,-0.836422,-1.739687,0.477963,-1.167426 +1.748297,-2.080843,-0.831894,-1.732680,0.472037,-1.171114 +1.742586,-2.081765,-0.827419,-1.725606,0.466020,-1.174771 +1.736837,-2.082657,-0.822997,-1.718467,0.459913,-1.178395 +1.731050,-2.083520,-0.818629,-1.711263,0.453717,-1.181987 +1.725226,-2.084353,-0.814314,-1.703996,0.447433,-1.185546 +1.719366,-2.085156,-0.810055,-1.696666,0.441061,-1.189072 +1.713469,-2.085928,-0.805852,-1.689276,0.434603,-1.192564 +1.707535,-2.086669,-0.801705,-1.681825,0.428059,-1.196023 +1.701565,-2.087379,-0.797614,-1.674316,0.421430,-1.199448 +1.695560,-2.088058,-0.793582,-1.666749,0.414718,-1.202838 +1.689519,-2.088706,-0.789607,-1.659126,0.407922,-1.206195 +1.683443,-2.089322,-0.785691,-1.651448,0.401044,-1.209516 +1.677332,-2.089906,-0.781834,-1.643716,0.394085,-1.212802 +1.671187,-2.090458,-0.778037,-1.635932,0.387046,-1.216054 +1.665008,-2.090978,-0.774301,-1.628096,0.379927,-1.219269 +1.658794,-2.091465,-0.770626,-1.620211,0.372731,-1.222449 +1.652547,-2.091919,-0.767012,-1.612277,0.365456,-1.225593 +1.646267,-2.092341,-0.763461,-1.604295,0.358106,-1.228701 +1.639953,-2.092729,-0.759972,-1.596268,0.350680,-1.231772 +1.633607,-2.093083,-0.756547,-1.588196,0.343179,-1.234807 +1.627228,-2.093403,-0.753186,-1.580081,0.335605,-1.237805 +1.620817,-2.093690,-0.749889,-1.571924,0.327959,-1.240766 +1.614374,-2.093942,-0.746657,-1.563726,0.320241,-1.243690 +1.607900,-2.094160,-0.743490,-1.555490,0.312453,-1.246577 +1.601394,-2.094344,-0.740390,-1.547216,0.304596,-1.249426 +1.594858,-2.094492,-0.737356,-1.538906,0.296670,-1.252237 +1.588290,-2.094605,-0.734390,-1.530561,0.288676,-1.255010 +1.581693,-2.094683,-0.731491,-1.522183,0.280617,-1.257745 +1.575065,-2.094726,-0.728660,-1.513773,0.272492,-1.260442 +1.568407,-2.094732,-0.725897,-1.505333,0.264303,-1.263101 +1.561719,-2.094703,-0.723204,-1.496864,0.256051,-1.265721 +1.555003,-2.094638,-0.720580,-1.488367,0.247737,-1.268303 +1.548257,-2.094536,-0.718027,-1.479845,0.239361,-1.270846 +1.541482,-2.094397,-0.715543,-1.471299,0.230926,-1.273349 +1.534679,-2.094222,-0.713131,-1.462729,0.222432,-1.275814 +1.527848,-2.094009,-0.710790,-1.454139,0.213881,-1.278240 +1.520989,-2.093760,-0.708521,-1.445529,0.205272,-1.280627 +1.514102,-2.093473,-0.706324,-1.436901,0.196608,-1.282974 +1.507187,-2.093148,-0.704200,-1.428256,0.187890,-1.285282 +1.500246,-2.092785,-0.702149,-1.419597,0.179118,-1.287550 +1.493278,-2.092385,-0.700171,-1.410924,0.170294,-1.289779 +1.486282,-2.091946,-0.698268,-1.402239,0.161419,-1.291969 +1.479261,-2.091468,-0.696438,-1.393544,0.152493,-1.294118 +1.472213,-2.090953,-0.694683,-1.384840,0.143519,-1.296228 +1.465140,-2.090398,-0.693004,-1.376130,0.134497,-1.298298 +1.458041,-2.089804,-0.691399,-1.367414,0.125429,-1.300328 +1.450916,-2.089171,-0.689871,-1.358694,0.116315,-1.302318 +1.443767,-2.088498,-0.688418,-1.349972,0.107156,-1.304269 +1.436592,-2.087786,-0.687042,-1.341250,0.097954,-1.306179 +1.429393,-2.087035,-0.685743,-1.332528,0.088710,-1.308050 +1.422169,-2.086243,-0.684521,-1.323810,0.079425,-1.309880 +1.414921,-2.085411,-0.683376,-1.315096,0.070100,-1.311671 +1.407649,-2.084539,-0.682309,-1.306388,0.060736,-1.313421 +1.400353,-2.083627,-0.681320,-1.297687,0.051335,-1.315132 +1.393034,-2.082674,-0.680409,-1.288996,0.041897,-1.316802 +1.385691,-2.081680,-0.679577,-1.280316,0.032424,-1.318433 +1.378326,-2.080645,-0.678823,-1.271649,0.022917,-1.320023 +1.370937,-2.079569,-0.678149,-1.262995,0.013376,-1.321574 +1.363526,-2.078452,-0.677553,-1.254358,0.003804,-1.323085 +1.356092,-2.077293,-0.677038,-1.245738,-0.005799,-1.324556 +1.348636,-2.076093,-0.676602,-1.237138,-0.015431,-1.325987 +1.341157,-2.074851,-0.676246,-1.228559,-0.025092,-1.327379 +1.333657,-2.073567,-0.675970,-1.220002,-0.034781,-1.328730 +1.326136,-2.072241,-0.675775,-1.211469,-0.044495,-1.330042 +1.318592,-2.070873,-0.675660,-1.202962,-0.054235,-1.331315 +1.311028,-2.069463,-0.675626,-1.194483,-0.063998,-1.332548 +1.303442,-2.068010,-0.675673,-1.186033,-0.073785,-1.333742 +1.295836,-2.066515,-0.675800,-1.177613,-0.083593,-1.334896 +1.288208,-2.064977,-0.676009,-1.169226,-0.093421,-1.336011 +1.280560,-2.063396,-0.676300,-1.160874,-0.103269,-1.337087 +1.272892,-2.061772,-0.676671,-1.152557,-0.113135,-1.338124 +1.265203,-2.060105,-0.677124,-1.144277,-0.123018,-1.339122 +1.257494,-2.058395,-0.677659,-1.136036,-0.132917,-1.340081 +1.249766,-2.056642,-0.678276,-1.127836,-0.142830,-1.341002 +1.242017,-2.054845,-0.678974,-1.119679,-0.152758,-1.341884 +1.234249,-2.053004,-0.679755,-1.111565,-0.162698,-1.342727 +1.226462,-2.051120,-0.680617,-1.103496,-0.172650,-1.343532 +1.218655,-2.049192,-0.681561,-1.095475,-0.182612,-1.344299 +1.210829,-2.047220,-0.682587,-1.087502,-0.192583,-1.345028 +1.202984,-2.045205,-0.683696,-1.079580,-0.202562,-1.345719 +1.195120,-2.043145,-0.684886,-1.071710,-0.212549,-1.346372 +1.187237,-2.041041,-0.686158,-1.063893,-0.222541,-1.346988 +1.179336,-2.038893,-0.687513,-1.056131,-0.232538,-1.347566 +1.171416,-2.036700,-0.688949,-1.048425,-0.242539,-1.348107 +1.163478,-2.034463,-0.690467,-1.040778,-0.252543,-1.348611 +1.155522,-2.032182,-0.692068,-1.033190,-0.262548,-1.349078 +1.147547,-2.029856,-0.693750,-1.025664,-0.272554,-1.349508 +1.139555,-2.027485,-0.695514,-1.018200,-0.282559,-1.349902 +1.131545,-2.025069,-0.697360,-1.010801,-0.292563,-1.350259 +1.123516,-2.022609,-0.699288,-1.003467,-0.302564,-1.350580 +1.115470,-2.020104,-0.701297,-0.996201,-0.312561,-1.350865 +1.107407,-2.017554,-0.703388,-0.989003,-0.322553,-1.351114 +1.099326,-2.014959,-0.705560,-0.981876,-0.332539,-1.351328 +1.091228,-2.012319,-0.707813,-0.974820,-0.342519,-1.351506 +1.083112,-2.009634,-0.710147,-0.967838,-0.352491,-1.351649 +1.074979,-2.006903,-0.712562,-0.960930,-0.362453,-1.351757 +1.066829,-2.004128,-0.715058,-0.954098,-0.372406,-1.351831 +1.058663,-2.001307,-0.717635,-0.947343,-0.382348,-1.351870 +1.050479,-1.998441,-0.720292,-0.940667,-0.392277,-1.351874 +1.042278,-1.995530,-0.723029,-0.934072,-0.402194,-1.351845 +1.034060,-1.992573,-0.725846,-0.927558,-0.412097,-1.351782 +1.025826,-1.989571,-0.728743,-0.921127,-0.421984,-1.351685 +1.017575,-1.986523,-0.731720,-0.914780,-0.431856,-1.351554 +1.009308,-1.983430,-0.734775,-0.908519,-0.441711,-1.351391 +1.001024,-1.980292,-0.737910,-0.902345,-0.451548,-1.351195 +0.992724,-1.977108,-0.741124,-0.896259,-0.461366,-1.350966 +0.984407,-1.973879,-0.744416,-0.890262,-0.471164,-1.350705 +0.976074,-1.970604,-0.747786,-0.884357,-0.480941,-1.350411 +0.967725,-1.967284,-0.751234,-0.878543,-0.490697,-1.350086 +0.959359,-1.963918,-0.754760,-0.872822,-0.500430,-1.349729 +0.950977,-1.960507,-0.758363,-0.867196,-0.510139,-1.349341 +0.942580,-1.957050,-0.762043,-0.861666,-0.519824,-1.348922 +0.934166,-1.953547,-0.765800,-0.856233,-0.529484,-1.348472 +0.925736,-1.949999,-0.769633,-0.850897,-0.539117,-1.347991 +0.917290,-1.946406,-0.773542,-0.845661,-0.548723,-1.347480 +0.908828,-1.942767,-0.777526,-0.840525,-0.558302,-1.346939 +0.900350,-1.939083,-0.781585,-0.835491,-0.567851,-1.346368 +0.891857,-1.935353,-0.785719,-0.830559,-0.577370,-1.345768 +0.883347,-1.931578,-0.789928,-0.825730,-0.586859,-1.345139 +0.874822,-1.927758,-0.794210,-0.821006,-0.596317,-1.344481 +0.866281,-1.923892,-0.798565,-0.816388,-0.605742,-1.343794 +0.857725,-1.919981,-0.802994,-0.811876,-0.615134,-1.343079 +0.849152,-1.916024,-0.807495,-0.807472,-0.624492,-1.342336 +0.840564,-1.912023,-0.812069,-0.803177,-0.633815,-1.341565 +0.831960,-1.907976,-0.816713,-0.798992,-0.643103,-1.340766 +0.823341,-1.903884,-0.821429,-0.794916,-0.652355,-1.339940 +0.814706,-1.899747,-0.826216,-0.790953,-0.661569,-1.339088 +0.806056,-1.895564,-0.831073,-0.787101,-0.670746,-1.338208 +0.797390,-1.891337,-0.835999,-0.783363,-0.679884,-1.337303 +0.788708,-1.887065,-0.840994,-0.779739,-0.688982,-1.336371 +0.780011,-1.882748,-0.846058,-0.776229,-0.698041,-1.335414 +0.771298,-1.878386,-0.851190,-0.772835,-0.707059,-1.334431 +0.762570,-1.873980,-0.856389,-0.769558,-0.716035,-1.333423 +0.753826,-1.869529,-0.861655,-0.766398,-0.724969,-1.332390 +0.745067,-1.865033,-0.866987,-0.763356,-0.733860,-1.331333 +0.736292,-1.860493,-0.872385,-0.760432,-0.742707,-1.330251 +0.727502,-1.855908,-0.877848,-0.757628,-0.751510,-1.329145 +0.718697,-1.851279,-0.883376,-0.754943,-0.760268,-1.328016 +0.709876,-1.846605,-0.888967,-0.752379,-0.768981,-1.326863 +0.701039,-1.841888,-0.894622,-0.749937,-0.777647,-1.325687 +0.692188,-1.837126,-0.900339,-0.747616,-0.786266,-1.324489 +0.683320,-1.832321,-0.906118,-0.745418,-0.794838,-1.323268 +0.674438,-1.827471,-0.911958,-0.743342,-0.803362,-1.322024 +0.665540,-1.822578,-0.917858,-0.741390,-0.811837,-1.320759 +0.656627,-1.817640,-0.923819,-0.739562,-0.820263,-1.319472 +0.647698,-1.812660,-0.929839,-0.737858,-0.828638,-1.318163 +0.638754,-1.807636,-0.935917,-0.736279,-0.836964,-1.316834 +0.629795,-1.802568,-0.942053,-0.734826,-0.845238,-1.315484 +0.620821,-1.797457,-0.948246,-0.733498,-0.853461,-1.314113 +0.611831,-1.792303,-0.954496,-0.732296,-0.861632,-1.312722 +0.602826,-1.787106,-0.960801,-0.731221,-0.869750,-1.311312 +0.593805,-1.781867,-0.967161,-0.730272,-0.877815,-1.309881 +0.584770,-1.776584,-0.973575,-0.729450,-0.885826,-1.308432 +0.575719,-1.771259,-0.980043,-0.728755,-0.893783,-1.306963 +0.566653,-1.765891,-0.986563,-0.728188,-0.901686,-1.305476 +0.557572,-1.760480,-0.993135,-0.727749,-0.909533,-1.303970 +0.548475,-1.755028,-0.999757,-0.727438,-0.917325,-1.302445 +0.539364,-1.749533,-1.006431,-0.727254,-0.925061,-1.300903 +0.530237,-1.743997,-1.013153,-0.727199,-0.932741,-1.299344 +0.521095,-1.738418,-1.019924,-0.727272,-0.940364,-1.297766 +0.511938,-1.732798,-1.026743,-0.727474,-0.947930,-1.296172 +0.502766,-1.727137,-1.033609,-0.727804,-0.955438,-1.294561 +0.493579,-1.721434,-1.040521,-0.728263,-0.962888,-1.292933 +0.484377,-1.715689,-1.047478,-0.728850,-0.970279,-1.291289 +0.475160,-1.709904,-1.054480,-0.729565,-0.977612,-1.289629 +0.465928,-1.704077,-1.061525,-0.730409,-0.984886,-1.287954 +0.456682,-1.698210,-1.068613,-0.731382,-0.992100,-1.286262 +0.447420,-1.692303,-1.075743,-0.732483,-0.999254,-1.284556 +0.438144,-1.686355,-1.082914,-0.733711,-1.006349,-1.282834 +0.428852,-1.680366,-1.090125,-0.735068,-1.013383,-1.281098 +0.419546,-1.674338,-1.097375,-0.736553,-1.020356,-1.279347 +0.410226,-1.668269,-1.104663,-0.738166,-1.027268,-1.277582 +0.400890,-1.662161,-1.111989,-0.739905,-1.034119,-1.275803 +0.391541,-1.656013,-1.119351,-0.741772,-1.040908,-1.274010 +0.382176,-1.649826,-1.126748,-0.743766,-1.047635,-1.272203 +0.372798,-1.643599,-1.134181,-0.745887,-1.054301,-1.270383 +0.363404,-1.637334,-1.141647,-0.748134,-1.060904,-1.268550 +0.353997,-1.631029,-1.149145,-0.750506,-1.067445,-1.266704 +0.344575,-1.624686,-1.156676,-0.753004,-1.073922,-1.264846 +0.335139,-1.618304,-1.164237,-0.755627,-1.080337,-1.262975 +0.325689,-1.611884,-1.171828,-0.758375,-1.086689,-1.261092 +0.316225,-1.605426,-1.179449,-0.761247,-1.092978,-1.259197 +0.306747,-1.598930,-1.187097,-0.764243,-1.099203,-1.257290 +0.297255,-1.592397,-1.194772,-0.767362,-1.105364,-1.255372 +0.287749,-1.585825,-1.202473,-0.770603,-1.111462,-1.253442 +0.278230,-1.579217,-1.210199,-0.773967,-1.117495,-1.251501 +0.268697,-1.572571,-1.217950,-0.777452,-1.123465,-1.249549 +0.259150,-1.565888,-1.225723,-0.781058,-1.129371,-1.247586 +0.249590,-1.559169,-1.233518,-0.784784,-1.135212,-1.245612 +0.240017,-1.552413,-1.241335,-0.788629,-1.140989,-1.243629 +0.230431,-1.545621,-1.249171,-0.792594,-1.146701,-1.241635 +0.220831,-1.538792,-1.257027,-0.796676,-1.152349,-1.239631 +0.211219,-1.531928,-1.264901,-0.800876,-1.157933,-1.237616 +0.201594,-1.525028,-1.272791,-0.805193,-1.163451,-1.235593 +0.191956,-1.518093,-1.280698,-0.809626,-1.168905,-1.233559 +0.182306,-1.511122,-1.288620,-0.814173,-1.174295,-1.231517 +0.172643,-1.504116,-1.296556,-0.818835,-1.179619,-1.229465 +0.162968,-1.497076,-1.304505,-0.823610,-1.184879,-1.227404 +0.153281,-1.490000,-1.312465,-0.828497,-1.190074,-1.225333 +0.143582,-1.482891,-1.320437,-0.833496,-1.195204,-1.223255 +0.133871,-1.475747,-1.328418,-0.838606,-1.200270,-1.221167 +0.124149,-1.468569,-1.336408,-0.843825,-1.205271,-1.219071 +0.114415,-1.461358,-1.344407,-0.849153,-1.210207,-1.216966 +0.104670,-1.454113,-1.352411,-0.854588,-1.215078,-1.214853 +0.094914,-1.446835,-1.360422,-0.860130,-1.219885,-1.212732 +0.085146,-1.439524,-1.368437,-0.865778,-1.224628,-1.210603 +0.075369,-1.432180,-1.376456,-0.871530,-1.229306,-1.208466 +0.065580,-1.424803,-1.384477,-0.877385,-1.233919,-1.206321 +0.055781,-1.417395,-1.392500,-0.883343,-1.238468,-1.204168 +0.045972,-1.409954,-1.400523,-0.889402,-1.242953,-1.202008 +0.036154,-1.402481,-1.408546,-0.895561,-1.247374,-1.199840 +0.026325,-1.394976,-1.416567,-0.901818,-1.251731,-1.197664 +0.016487,-1.387441,-1.424585,-0.908173,-1.256024,-1.195481 +0.006640,-1.379874,-1.432600,-0.914624,-1.260253,-1.193291 +-0.003216,-1.372276,-1.440610,-0.921171,-1.264419,-1.191094 +-0.013081,-1.364647,-1.448614,-0.927811,-1.268521,-1.188889 +-0.022955,-1.356988,-1.456611,-0.934544,-1.272560,-1.186677 +-0.032837,-1.349299,-1.464600,-0.941368,-1.276536,-1.184458 +-0.042727,-1.341580,-1.472580,-0.948282,-1.280449,-1.182232 +-0.052624,-1.333831,-1.480550,-0.955285,-1.284299,-1.179998 +-0.062529,-1.326053,-1.488509,-0.962375,-1.288086,-1.177758 +-0.072441,-1.318245,-1.496456,-0.969550,-1.291811,-1.175511 +-0.082361,-1.310409,-1.504389,-0.976810,-1.295474,-1.173257 +-0.092287,-1.302543,-1.512309,-0.984153,-1.299075,-1.170996 +-0.102219,-1.294650,-1.520212,-0.991577,-1.302614,-1.168729 +-0.112157,-1.286728,-1.528100,-0.999082,-1.306091,-1.166454 +-0.122101,-1.278778,-1.535970,-1.006665,-1.309507,-1.164172 +-0.132050,-1.270801,-1.543822,-1.014326,-1.312862,-1.161884 +-0.142005,-1.262796,-1.551654,-1.022061,-1.316156,-1.159589 +-0.151964,-1.254763,-1.559465,-1.029871,-1.319390,-1.157287 +-0.161928,-1.246704,-1.567255,-1.037754,-1.322563,-1.154978 +-0.171896,-1.238618,-1.575023,-1.045707,-1.325676,-1.152662 +-0.181867,-1.230506,-1.582766,-1.053730,-1.328729,-1.150339 +-0.191842,-1.222368,-1.590486,-1.061821,-1.331723,-1.148010 +-0.201820,-1.214203,-1.598179,-1.069978,-1.334657,-1.145673 +-0.211801,-1.206013,-1.605846,-1.078200,-1.337533,-1.143329 +-0.221784,-1.197797,-1.613484,-1.086484,-1.340349,-1.140978 +-0.231769,-1.189557,-1.621095,-1.094830,-1.343108,-1.138620 +-0.241755,-1.181291,-1.628675,-1.103236,-1.345808,-1.136255 +-0.251743,-1.173001,-1.636225,-1.111699,-1.348450,-1.133883 +-0.261732,-1.164686,-1.643742,-1.120219,-1.351035,-1.131503 +-0.271721,-1.156347,-1.651227,-1.128793,-1.353563,-1.129116 +-0.281709,-1.147985,-1.658679,-1.137421,-1.356034,-1.126722 +-0.291698,-1.139598,-1.666095,-1.146099,-1.358448,-1.124320 +-0.301685,-1.131189,-1.673476,-1.154827,-1.360807,-1.121910 +-0.311671,-1.122756,-1.680820,-1.163603,-1.363109,-1.119493 +-0.321656,-1.114300,-1.688126,-1.172424,-1.365356,-1.117067 +-0.331638,-1.105822,-1.695393,-1.181290,-1.367548,-1.114634 +-0.341617,-1.097322,-1.702621,-1.190198,-1.369685,-1.112193 +-0.351594,-1.088799,-1.709809,-1.199147,-1.371768,-1.109744 +-0.361567,-1.080255,-1.716954,-1.208134,-1.373796,-1.107287 +-0.371535,-1.071689,-1.724057,-1.217159,-1.375771,-1.104821 +-0.381500,-1.063102,-1.731117,-1.226219,-1.377693,-1.102346 +-0.391459,-1.054494,-1.738132,-1.235312,-1.379561,-1.099864 +-0.401413,-1.045866,-1.745102,-1.244436,-1.381377,-1.097372 +-0.411361,-1.037217,-1.752026,-1.253590,-1.383141,-1.094871 +-0.421302,-1.028547,-1.758902,-1.262772,-1.384853,-1.092362 +-0.431237,-1.019858,-1.765731,-1.271980,-1.386513,-1.089843 +-0.441164,-1.011149,-1.772510,-1.281213,-1.388123,-1.087315 +-0.451083,-1.002421,-1.779239,-1.290467,-1.389681,-1.084777 +-0.460993,-0.993673,-1.785918,-1.299742,-1.391190,-1.082230 +-0.470894,-0.984907,-1.792545,-1.309035,-1.392648,-1.079673 +-0.480786,-0.976122,-1.799119,-1.318346,-1.394057,-1.077106 +-0.490668,-0.967318,-1.805640,-1.327670,-1.395417,-1.074528 +-0.500538,-0.958497,-1.812106,-1.337008,-1.396729,-1.071941 +-0.510398,-0.949658,-1.818518,-1.346357,-1.397992,-1.069342 +-0.520246,-0.940801,-1.824873,-1.355714,-1.399207,-1.066733 +-0.530081,-0.931927,-1.831172,-1.365079,-1.400375,-1.064113 +-0.539904,-0.923036,-1.837413,-1.374450,-1.401495,-1.061482 +-0.549712,-0.914128,-1.843595,-1.383823,-1.402569,-1.058840 +-0.559507,-0.905204,-1.849718,-1.393198,-1.403597,-1.056186 +-0.569287,-0.896264,-1.855781,-1.402573,-1.404579,-1.053520 +-0.579052,-0.887307,-1.861783,-1.411945,-1.405516,-1.050842 +-0.588800,-0.878335,-1.867724,-1.421313,-1.406407,-1.048152 +-0.598532,-0.869348,-1.873602,-1.430675,-1.407255,-1.045450 +-0.608247,-0.860345,-1.879417,-1.440029,-1.408058,-1.042735 +-0.617945,-0.851328,-1.885167,-1.449373,-1.408817,-1.040007 +-0.627623,-0.842295,-1.890853,-1.458705,-1.409533,-1.037266 +-0.637283,-0.833249,-1.896474,-1.468023,-1.410206,-1.034512 +-0.646923,-0.824188,-1.902028,-1.477326,-1.410837,-1.031744 +-0.656543,-0.815114,-1.907515,-1.486611,-1.411425,-1.028962 +-0.666142,-0.806026,-1.912935,-1.495876,-1.411973,-1.026166 +-0.675719,-0.796925,-1.918286,-1.505120,-1.412478,-1.023356 +-0.685274,-0.787811,-1.923568,-1.514341,-1.412944,-1.020531 +-0.694806,-0.778684,-1.928781,-1.523537,-1.413368,-1.017692 +-0.704314,-0.769545,-1.933923,-1.532706,-1.413753,-1.014837 +-0.713798,-0.760393,-1.938994,-1.541846,-1.414099,-1.011967 +-0.723257,-0.751230,-1.943993,-1.550955,-1.414405,-1.009081 +-0.732691,-0.742054,-1.948920,-1.560031,-1.414673,-1.006179 +-0.742098,-0.732868,-1.953774,-1.569073,-1.414902,-1.003261 +-0.751478,-0.723670,-1.958555,-1.578079,-1.415094,-1.000326 +-0.760831,-0.714462,-1.963261,-1.587046,-1.415248,-0.997375 +-0.770155,-0.705242,-1.967893,-1.595974,-1.415366,-0.994407 +-0.779450,-0.696013,-1.972449,-1.604859,-1.415447,-0.991421 +-0.788715,-0.686773,-1.976929,-1.613701,-1.415491,-0.988418 +-0.797950,-0.677524,-1.981333,-1.622497,-1.415500,-0.985397 +-0.807153,-0.668265,-1.985659,-1.631246,-1.415474,-0.982358 +-0.816325,-0.658997,-1.989908,-1.639946,-1.415413,-0.979300 +-0.825464,-0.649719,-1.994079,-1.648595,-1.415317,-0.976223 +-0.834569,-0.640433,-1.998172,-1.657192,-1.415187,-0.973127 +-0.843640,-0.631139,-2.002185,-1.665733,-1.415024,-0.970012 +-0.852677,-0.621836,-2.006119,-1.674219,-1.414827,-0.966877 +-0.861678,-0.612526,-2.009972,-1.682647,-1.414597,-0.963723 +-0.870642,-0.603207,-2.013745,-1.691015,-1.414335,-0.960547 +-0.879570,-0.593882,-2.017437,-1.699321,-1.414041,-0.957352 +-0.888459,-0.584549,-2.021048,-1.707565,-1.413715,-0.954135 +-0.897311,-0.575209,-2.024576,-1.715743,-1.413358,-0.950897 +-0.906122,-0.565863,-2.028023,-1.723855,-1.412970,-0.947638 +-0.914894,-0.556510,-2.031387,-1.731899,-1.412551,-0.944356 +-0.923625,-0.547151,-2.034667,-1.739873,-1.412103,-0.941053 +-0.932315,-0.537787,-2.037865,-1.747775,-1.411624,-0.937727 +-0.940962,-0.528417,-2.040978,-1.755605,-1.411117,-0.934378 +-0.949566,-0.519041,-2.044007,-1.763359,-1.410580,-0.931006 +-0.958126,-0.509661,-2.046952,-1.771037,-1.410014,-0.927610 +-0.966642,-0.500276,-2.049812,-1.778637,-1.409421,-0.924191 +-0.975112,-0.490886,-2.052587,-1.786158,-1.408799,-0.920747 +-0.983536,-0.481492,-2.055276,-1.793598,-1.408150,-0.917279 +-0.991913,-0.472094,-2.057880,-1.800954,-1.407474,-0.913787 +-1.000243,-0.462693,-2.060398,-1.808227,-1.406771,-0.910269 +-1.008524,-0.453288,-2.062829,-1.815414,-1.406042,-0.906726 +-1.016756,-0.443880,-2.065174,-1.822514,-1.405286,-0.903157 +-1.024938,-0.434469,-2.067432,-1.829525,-1.404505,-0.899562 +-1.033069,-0.425055,-2.069603,-1.836446,-1.403698,-0.895941 +-1.041149,-0.415639,-2.071688,-1.843276,-1.402866,-0.892293 +-1.049176,-0.406221,-2.073684,-1.850012,-1.402010,-0.888618 +-1.057151,-0.396801,-2.075594,-1.856654,-1.401129,-0.884916 +-1.065071,-0.387379,-2.077415,-1.863201,-1.400224,-0.881186 +-1.072937,-0.377956,-2.079149,-1.869650,-1.399295,-0.877428 +-1.080748,-0.368533,-2.080795,-1.876001,-1.398343,-0.873642 +-1.088502,-0.359108,-2.082352,-1.882252,-1.397368,-0.869827 +-1.096200,-0.349683,-2.083822,-1.888402,-1.396369,-0.865983 +-1.103840,-0.340257,-2.085203,-1.894449,-1.395349,-0.862110 +-1.111421,-0.330832,-2.086496,-1.900393,-1.394306,-0.858207 +-1.118943,-0.321407,-2.087700,-1.906232,-1.393241,-0.854274 +-1.126405,-0.311982,-2.088816,-1.911965,-1.392155,-0.850312 +-1.133807,-0.302559,-2.089843,-1.917591,-1.391047,-0.846318 +-1.141147,-0.293136,-2.090782,-1.923108,-1.389918,-0.842294 +-1.148424,-0.283715,-2.091632,-1.928515,-1.388769,-0.838238 +-1.155639,-0.274295,-2.092393,-1.933812,-1.387599,-0.834151 +-1.162790,-0.264877,-2.093066,-1.938996,-1.386409,-0.830032 +-1.169876,-0.255462,-2.093651,-1.944068,-1.385199,-0.825882 +-1.176897,-0.246049,-2.094146,-1.949026,-1.383969,-0.821698 +-1.183852,-0.236638,-2.094554,-1.953868,-1.382719,-0.817482 +-1.190740,-0.227230,-2.094873,-1.958595,-1.381451,-0.813233 +-1.197560,-0.217826,-2.095104,-1.963204,-1.380164,-0.808951 +-1.204312,-0.208425,-2.095246,-1.967695,-1.378858,-0.804635 +-1.210995,-0.199028,-2.095300,-1.972067,-1.377533,-0.800285 +-1.217609,-0.189635,-2.095267,-1.976319,-1.376190,-0.795901 +-1.224152,-0.180246,-2.095145,-1.980450,-1.374830,-0.791482 +-1.230623,-0.170861,-2.094936,-1.984460,-1.373451,-0.787028 +-1.237023,-0.161482,-2.094640,-1.988347,-1.372055,-0.782540 +-1.243350,-0.152107,-2.094256,-1.992110,-1.370641,-0.778016 +-1.249603,-0.142738,-2.093785,-1.995749,-1.369211,-0.773456 +-1.255782,-0.133375,-2.093227,-1.999263,-1.367763,-0.768861 +-1.261887,-0.124017,-2.092582,-2.002651,-1.366299,-0.764229 +-1.267916,-0.114665,-2.091851,-2.005913,-1.364818,-0.759561 +-1.273865,-0.105325,-2.091033,-2.009046,-1.363321,-0.754859 +-1.279735,-0.095995,-2.090126,-2.012048,-1.361805,-0.750124 +-1.285523,-0.086676,-2.089127,-2.014917,-1.360267,-0.745357 +-1.291226,-0.077373,-2.088033,-2.017651,-1.358703,-0.740563 +-1.296840,-0.068089,-2.086841,-2.020245,-1.357110,-0.735744 +-1.302364,-0.058826,-2.085547,-2.022697,-1.355487,-0.730904 +-1.307793,-0.049587,-2.084150,-2.025004,-1.353829,-0.726045 +-1.313125,-0.040376,-2.082645,-2.027163,-1.352134,-0.721170 +-1.318357,-0.031195,-2.081030,-2.029172,-1.350398,-0.716282 +-1.323485,-0.022047,-2.079302,-2.031031,-1.348619,-0.711385 +-1.328508,-0.012936,-2.077458,-2.032740,-1.346794,-0.706481 +-1.333421,-0.003865,-2.075494,-2.034299,-1.344919,-0.701573 +-1.338222,0.005165,-2.073409,-2.035708,-1.342992,-0.696665 +-1.342908,0.014149,-2.071198,-2.036967,-1.341010,-0.691759 +-1.347476,0.023084,-2.068859,-2.038076,-1.338969,-0.686858 +-1.351922,0.031968,-2.066389,-2.039035,-1.336867,-0.681965 +-1.356245,0.040798,-2.063785,-2.039844,-1.334701,-0.677084 +-1.360440,0.049571,-2.061043,-2.040503,-1.332467,-0.672217 +-1.364505,0.058282,-2.058162,-2.041012,-1.330163,-0.667368 +-1.368436,0.066931,-2.055137,-2.041371,-1.327786,-0.662539 +-1.372232,0.075513,-2.051966,-2.041580,-1.325332,-0.657733 +-1.375888,0.084026,-2.048646,-2.041639,-1.322799,-0.652953 +-1.379403,0.092466,-2.045177,-2.041548,-1.320184,-0.648202 +-1.382772,0.100831,-2.041557,-2.041307,-1.317483,-0.643484 +-1.385993,0.109118,-2.037787,-2.040916,-1.314694,-0.638802 +-1.389064,0.117323,-2.033867,-2.040375,-1.311813,-0.634157 +-1.391985,0.125444,-2.029797,-2.039684,-1.308839,-0.629554 +-1.394756,0.133478,-2.025578,-2.038843,-1.305767,-0.624995 +-1.397377,0.141421,-2.021208,-2.037852,-1.302594,-0.620483 +-1.399848,0.149270,-2.016688,-2.036711,-1.299318,-0.616022 +-1.402169,0.157023,-2.012018,-2.035420,-1.295936,-0.611614 +-1.404340,0.164677,-2.007198,-2.033979,-1.292448,-0.607262 +-1.406361,0.172229,-2.002228,-2.032388,-1.288855,-0.602970 +-1.408232,0.179675,-1.997109,-2.030647,-1.285161,-0.598740 +-1.409953,0.187013,-1.991840,-2.028756,-1.281369,-0.594575 +-1.411524,0.194239,-1.986425,-2.026715,-1.277483,-0.590479 +-1.412945,0.201351,-1.980867,-2.024524,-1.273504,-0.586453 +-1.414216,0.208345,-1.975169,-2.022184,-1.269437,-0.582502 +-1.415337,0.215219,-1.969335,-2.019693,-1.265283,-0.578629 +-1.416308,0.221970,-1.963366,-2.017052,-1.261047,-0.574835 +-1.417129,0.228594,-1.957265,-2.014261,-1.256730,-0.571125 +-1.417800,0.235089,-1.951037,-2.011320,-1.252337,-0.567502 +-1.418321,0.241452,-1.944684,-2.008229,-1.247869,-0.563967 +-1.418692,0.247679,-1.938209,-2.004988,-1.243331,-0.560520 +-1.418913,0.253768,-1.931615,-2.001597,-1.238724,-0.557157 +-1.418983,0.259715,-1.924904,-1.998056,-1.234053,-0.553877 +-1.418904,0.265518,-1.918081,-1.994365,-1.229320,-0.550675 +-1.418675,0.271174,-1.911147,-1.990524,-1.224527,-0.547549 +-1.418296,0.276680,-1.904107,-1.986533,-1.219679,-0.544496 +-1.417767,0.282035,-1.896962,-1.982392,-1.214778,-0.541512 +-1.417088,0.287241,-1.889716,-1.978101,-1.209827,-0.538595 +-1.416259,0.292297,-1.882373,-1.973660,-1.204829,-0.535742 +-1.415280,0.297203,-1.874934,-1.969069,-1.199787,-0.532950 +-1.414151,0.301959,-1.867403,-1.964328,-1.194704,-0.530215 +-1.412872,0.306565,-1.859783,-1.959437,-1.189582,-0.527536 +-1.411443,0.311021,-1.852077,-1.954396,-1.184426,-0.524908 +-1.409864,0.315327,-1.844288,-1.949205,-1.179239,-0.522328 +-1.408135,0.319483,-1.836419,-1.943864,-1.174022,-0.519795 +-1.406256,0.323489,-1.828473,-1.938373,-1.168779,-0.517304 +-1.404227,0.327344,-1.820452,-1.932732,-1.163513,-0.514853 +-1.402048,0.331050,-1.812361,-1.926941,-1.158227,-0.512439 +-1.399719,0.334606,-1.804202,-1.921000,-1.152924,-0.510059 +-1.397240,0.338012,-1.795977,-1.914909,-1.147607,-0.507709 +-1.394611,0.341268,-1.787691,-1.908668,-1.142280,-0.505387 +-1.391832,0.344374,-1.779345,-1.902280,-1.136944,-0.503090 +-1.388903,0.347330,-1.770944,-1.895747,-1.131603,-0.500814 +-1.385824,0.350136,-1.762489,-1.889072,-1.126260,-0.498558 +-1.382595,0.352792,-1.753984,-1.882259,-1.120918,-0.496317 +-1.379216,0.355298,-1.745432,-1.875310,-1.115575,-0.494089 +-1.375689,0.357653,-1.736837,-1.868228,-1.110232,-0.491870 +-1.372017,0.359859,-1.728200,-1.861017,-1.104889,-0.489659 +-1.368202,0.361915,-1.719525,-1.853679,-1.099546,-0.487451 +-1.364249,0.363821,-1.710815,-1.846217,-1.094204,-0.485244 +-1.360159,0.365577,-1.702072,-1.838635,-1.088861,-0.483037 +-1.355935,0.367187,-1.693301,-1.830935,-1.083518,-0.480830 +-1.351582,0.368652,-1.684504,-1.823120,-1.078175,-0.478623 +-1.347101,0.369976,-1.675684,-1.815194,-1.072832,-0.476416 +-1.342496,0.371162,-1.666843,-1.807159,-1.067489,-0.474210 +-1.337770,0.372213,-1.657986,-1.799018,-1.062147,-0.472003 +-1.332925,0.373132,-1.649115,-1.790775,-1.056804,-0.469796 +-1.327965,0.373921,-1.640232,-1.782432,-1.051461,-0.467589 +-1.322893,0.374585,-1.631341,-1.773992,-1.046118,-0.465382 +-1.317712,0.375126,-1.622446,-1.765459,-1.040775,-0.463175 +-1.312425,0.375546,-1.613548,-1.756835,-1.035432,-0.460968 +-1.307034,0.375849,-1.604650,-1.748123,-1.030090,-0.458761 +-1.301543,0.376039,-1.595752,-1.739327,-1.024747,-0.456555 +-1.295955,0.376117,-1.586854,-1.730449,-1.019404,-0.454348 +-1.290272,0.376087,-1.577956,-1.721492,-1.014061,-0.452141 +-1.284499,0.375952,-1.569059,-1.712460,-1.008718,-0.449934 +-1.278637,0.375715,-1.560161,-1.703355,-1.003376,-0.447727 +-1.272690,0.375379,-1.551263,-1.694180,-0.998033,-0.445520 +-1.266660,0.374946,-1.542365,-1.684939,-0.992690,-0.443313 +-1.260552,0.374421,-1.533467,-1.675634,-0.987347,-0.441106 +-1.254367,0.373805,-1.524569,-1.666268,-0.982004,-0.438899 +-1.248109,0.373103,-1.515671,-1.656845,-0.976661,-0.436693 +-1.241780,0.372316,-1.506773,-1.647367,-0.971319,-0.434486 +-1.235385,0.371448,-1.497875,-1.637838,-0.965976,-0.432279 +-1.228925,0.370503,-1.488977,-1.628259,-0.960633,-0.430072 +-1.222404,0.369482,-1.480080,-1.618635,-0.955290,-0.427865 +-1.215825,0.368389,-1.471182,-1.608969,-0.949947,-0.425658 +-1.209190,0.367226,-1.462284,-1.599263,-0.944605,-0.423451 +-1.202503,0.365998,-1.453386,-1.589520,-0.939262,-0.421244 +-1.195767,0.364707,-1.444488,-1.579743,-0.933919,-0.419037 +-1.188985,0.363356,-1.435590,-1.569936,-0.928576,-0.416831 +-1.182160,0.361947,-1.426692,-1.560101,-0.923233,-0.414624 +-1.175294,0.360485,-1.417794,-1.550242,-0.917890,-0.412417 +-1.168391,0.358971,-1.408896,-1.540360,-0.912548,-0.410210 +-1.161454,0.357409,-1.399998,-1.530460,-0.907205,-0.408003 +-1.154485,0.355802,-1.391101,-1.520545,-0.901862,-0.405796 +-1.147489,0.354153,-1.382203,-1.510617,-0.896519,-0.403589 +-1.140467,0.352465,-1.373305,-1.500679,-0.891176,-0.401382 +-1.133422,0.350741,-1.364407,-1.490734,-0.885833,-0.399176 +-1.126359,0.348984,-1.355509,-1.480786,-0.880491,-0.396969 +-1.119279,0.347197,-1.346611,-1.470837,-0.875148,-0.394762 +-1.112186,0.345382,-1.337713,-1.460888,-0.869805,-0.392555 +-1.105083,0.343544,-1.328815,-1.450939,-0.864462,-0.390348 +-1.097973,0.341684,-1.319917,-1.440990,-0.859119,-0.388141 +-1.090858,0.339807,-1.311019,-1.431041,-0.853777,-0.385934 +-1.083742,0.337914,-1.302122,-1.421092,-0.848434,-0.383727 +-1.076626,0.336009,-1.293224,-1.411143,-0.843091,-0.381520 +-1.069510,0.334095,-1.284326,-1.401193,-0.837748,-0.379314 +-1.062394,0.332175,-1.275428,-1.391244,-0.832405,-0.377107 +-1.055278,0.330252,-1.266530,-1.381295,-0.827062,-0.374900 +-1.048162,0.328328,-1.257632,-1.371346,-0.821720,-0.372693 +-1.041046,0.326404,-1.248734,-1.361397,-0.816377,-0.370486 +-1.033930,0.324481,-1.239836,-1.351448,-0.811034,-0.368279 +-1.026815,0.322557,-1.230938,-1.341499,-0.805691,-0.366072 +-1.019699,0.320633,-1.222040,-1.331550,-0.800348,-0.363865 +-1.012583,0.318710,-1.213143,-1.321601,-0.795005,-0.361659 +-1.005467,0.316786,-1.204245,-1.311652,-0.789663,-0.359452 +-0.998351,0.314862,-1.195347,-1.301703,-0.784320,-0.357245 +-0.991235,0.312939,-1.186449,-1.291753,-0.778977,-0.355038 +-0.984119,0.311015,-1.177551,-1.281804,-0.773634,-0.352831 +-0.977003,0.309091,-1.168653,-1.271855,-0.768291,-0.350624 +-0.969887,0.307168,-1.159755,-1.261906,-0.762949,-0.348417 +-0.962771,0.305244,-1.150857,-1.251957,-0.757606,-0.346210 +-0.955655,0.303320,-1.141959,-1.242008,-0.752263,-0.344003 +-0.948539,0.301397,-1.133061,-1.232059,-0.746920,-0.341797 +-0.941423,0.299473,-1.124164,-1.222110,-0.741577,-0.339590 +-0.934307,0.297549,-1.115266,-1.212161,-0.736234,-0.337383 +-0.927191,0.295626,-1.106368,-1.202212,-0.730892,-0.335176 +-0.920075,0.293702,-1.097470,-1.192263,-0.725549,-0.332969 +-0.912959,0.291778,-1.088572,-1.182314,-0.720206,-0.330762 +-0.905843,0.289855,-1.079674,-1.172364,-0.714863,-0.328555 +-0.898727,0.287931,-1.070776,-1.162415,-0.709520,-0.326348 +-0.891611,0.286007,-1.061878,-1.152466,-0.704178,-0.324142 +-0.884495,0.284084,-1.052980,-1.142517,-0.698835,-0.321935 +-0.877379,0.282160,-1.044082,-1.132568,-0.693492,-0.319728 +-0.870263,0.280236,-1.035185,-1.122619,-0.688149,-0.317521 +-0.863147,0.278313,-1.026287,-1.112670,-0.682806,-0.315314 +-0.856031,0.276389,-1.017389,-1.102721,-0.677463,-0.313107 +-0.848915,0.274465,-1.008491,-1.092772,-0.672121,-0.310900 +-0.841799,0.272542,-0.999593,-1.082823,-0.666778,-0.308693 +-0.834683,0.270618,-0.990695,-1.072874,-0.661435,-0.306486 +-0.827567,0.268694,-0.981797,-1.062924,-0.656092,-0.304280 +-0.820451,0.266771,-0.972899,-1.052975,-0.650749,-0.302073 +-0.813335,0.264847,-0.964001,-1.043026,-0.645406,-0.299866 +-0.806219,0.262923,-0.955103,-1.033077,-0.640064,-0.297659 +-0.799103,0.261000,-0.946206,-1.023128,-0.634721,-0.295452 +-0.791987,0.259076,-0.937308,-1.013179,-0.629378,-0.293245 +-0.784871,0.257152,-0.928410,-1.003230,-0.624035,-0.291038 +-0.777755,0.255229,-0.919512,-0.993281,-0.618692,-0.288831 +-0.770639,0.253305,-0.910614,-0.983332,-0.613350,-0.286625 +-0.763523,0.251381,-0.901716,-0.973383,-0.608007,-0.284418 +-0.756407,0.249457,-0.892818,-0.963434,-0.602664,-0.282211 +-0.749291,0.247534,-0.883920,-0.953485,-0.597321,-0.280004 +-0.742175,0.245610,-0.875022,-0.943535,-0.591978,-0.277797 +-0.735059,0.243686,-0.866124,-0.933586,-0.586635,-0.275590 +-0.727943,0.241763,-0.857227,-0.923637,-0.581293,-0.273383 +-0.720827,0.239839,-0.848329,-0.913688,-0.575950,-0.271176 +-0.713711,0.237915,-0.839431,-0.903739,-0.570607,-0.268969 +-0.706595,0.235992,-0.830533,-0.893790,-0.565264,-0.266763 +-0.699479,0.234068,-0.821635,-0.883841,-0.559921,-0.264556 +-0.692363,0.232144,-0.812737,-0.873892,-0.554579,-0.262349 +-0.685247,0.230221,-0.803839,-0.863943,-0.549236,-0.260142 +-0.678131,0.228297,-0.794941,-0.853994,-0.543893,-0.257935 +-0.671015,0.226373,-0.786043,-0.844045,-0.538550,-0.255728 +-0.663899,0.224450,-0.777145,-0.834095,-0.533207,-0.253521 +-0.656783,0.222526,-0.768248,-0.824146,-0.527864,-0.251314 +-0.649667,0.220602,-0.759350,-0.814197,-0.522522,-0.249108 +-0.642551,0.218679,-0.750452,-0.804248,-0.517179,-0.246901 +-0.635435,0.216755,-0.741554,-0.794299,-0.511836,-0.244694 +-0.628319,0.214831,-0.732656,-0.784350,-0.506493,-0.242487 +-0.621203,0.212908,-0.723758,-0.774401,-0.501150,-0.240280 +-0.614087,0.210984,-0.714860,-0.764452,-0.495807,-0.238073 +-0.606971,0.209060,-0.705962,-0.754503,-0.490465,-0.235866 +-0.599855,0.207137,-0.697064,-0.744554,-0.485122,-0.233659 +-0.592739,0.205213,-0.688167,-0.734605,-0.479779,-0.231452 +-0.585623,0.203289,-0.679269,-0.724655,-0.474436,-0.229246 +-0.578507,0.201366,-0.670371,-0.714706,-0.469093,-0.227039 +-0.571391,0.199442,-0.661473,-0.704757,-0.463751,-0.224832 +-0.564275,0.197518,-0.652575,-0.694808,-0.458408,-0.222625 +-0.557159,0.195595,-0.643677,-0.684859,-0.453065,-0.220418 +-0.550043,0.193671,-0.634779,-0.674910,-0.447722,-0.218211 +-0.542927,0.191747,-0.625881,-0.664961,-0.442379,-0.216004 +-0.535811,0.189824,-0.616983,-0.655012,-0.437036,-0.213797 +-0.528695,0.187900,-0.608085,-0.645063,-0.431694,-0.211591 +-0.521579,0.185976,-0.599188,-0.635114,-0.426351,-0.209384 +-0.514463,0.184053,-0.590290,-0.625165,-0.421008,-0.207177 +-0.507348,0.182129,-0.581392,-0.615216,-0.415665,-0.204970 +-0.500232,0.180205,-0.572494,-0.605266,-0.410322,-0.202763 +-0.493116,0.178282,-0.563596,-0.595317,-0.404980,-0.200556 +-0.486000,0.176358,-0.554698,-0.585368,-0.399637,-0.198349 +-0.478884,0.174434,-0.545800,-0.575419,-0.394294,-0.196142 +-0.471768,0.172510,-0.536902,-0.565471,-0.388951,-0.193935 +-0.464652,0.170587,-0.528004,-0.555527,-0.383608,-0.191729 +-0.457536,0.168663,-0.519106,-0.545590,-0.378265,-0.189522 +-0.450420,0.166739,-0.510209,-0.535663,-0.372923,-0.187315 +-0.443304,0.164816,-0.501311,-0.525749,-0.367580,-0.185108 +-0.436188,0.162892,-0.492413,-0.515851,-0.362237,-0.182901 +-0.429072,0.160968,-0.483515,-0.505972,-0.356894,-0.180694 +-0.421956,0.159045,-0.474618,-0.496115,-0.351551,-0.178487 +-0.414840,0.157121,-0.465725,-0.486283,-0.346208,-0.176280 +-0.407724,0.155197,-0.456839,-0.476479,-0.340866,-0.174073 +-0.400608,0.153274,-0.447964,-0.466706,-0.335523,-0.171867 +-0.393492,0.151350,-0.439101,-0.456967,-0.330180,-0.169660 +-0.386376,0.149426,-0.430254,-0.447265,-0.324837,-0.167453 +-0.379260,0.147503,-0.421426,-0.437602,-0.319494,-0.165246 +-0.372144,0.145579,-0.412620,-0.427983,-0.314152,-0.163039 +-0.365028,0.143655,-0.403838,-0.418410,-0.308809,-0.160832 +-0.357912,0.141732,-0.395085,-0.408886,-0.303466,-0.158625 +-0.350796,0.139808,-0.386363,-0.399414,-0.298123,-0.156418 +-0.343680,0.137884,-0.377675,-0.389996,-0.292780,-0.154212 +-0.336565,0.135961,-0.369024,-0.380637,-0.287437,-0.152005 +-0.329455,0.134037,-0.360412,-0.371339,-0.282095,-0.149798 +-0.322352,0.132113,-0.351844,-0.362104,-0.276752,-0.147591 +-0.315259,0.130190,-0.343322,-0.352937,-0.271409,-0.145384 +-0.308179,0.128266,-0.334848,-0.343840,-0.266066,-0.143177 +-0.301115,0.126342,-0.326427,-0.334815,-0.260723,-0.140970 +-0.294071,0.124419,-0.318060,-0.325867,-0.255381,-0.138763 +-0.287049,0.122495,-0.309752,-0.316997,-0.250038,-0.136556 +-0.280052,0.120571,-0.301504,-0.308210,-0.244695,-0.134350 +-0.273083,0.118648,-0.293320,-0.299508,-0.239352,-0.132143 +-0.266146,0.116724,-0.285204,-0.290893,-0.234009,-0.129936 +-0.259243,0.114800,-0.277157,-0.282370,-0.228666,-0.127729 +-0.252377,0.112877,-0.269183,-0.273940,-0.223324,-0.125522 +-0.245551,0.110953,-0.261285,-0.265608,-0.217982,-0.123315 +-0.238768,0.109029,-0.253466,-0.257375,-0.212645,-0.121108 +-0.232032,0.107106,-0.245729,-0.249246,-0.207315,-0.118901 +-0.225345,0.105182,-0.238078,-0.241222,-0.201995,-0.116695 +-0.218710,0.103258,-0.230514,-0.233307,-0.196688,-0.114488 +-0.212130,0.101335,-0.223041,-0.225505,-0.191398,-0.112281 +-0.205609,0.099411,-0.215661,-0.217817,-0.186127,-0.110074 +-0.199149,0.097487,-0.208379,-0.210247,-0.180878,-0.107867 +-0.192753,0.095564,-0.201197,-0.202799,-0.175654,-0.105660 +-0.186424,0.093640,-0.194118,-0.195474,-0.170458,-0.103453 +-0.180165,0.091716,-0.187145,-0.188276,-0.165294,-0.101246 +-0.173980,0.089792,-0.180280,-0.181209,-0.160164,-0.099039 +-0.167871,0.087869,-0.173528,-0.174274,-0.155071,-0.096833 +-0.161841,0.085945,-0.166891,-0.167475,-0.150018,-0.094626 +-0.155893,0.084021,-0.160371,-0.160815,-0.145008,-0.092419 +-0.150030,0.082098,-0.153973,-0.154298,-0.140045,-0.090212 +-0.144256,0.080174,-0.147698,-0.147925,-0.135131,-0.088005 +-0.138573,0.078250,-0.141551,-0.141700,-0.130269,-0.085798 +-0.132984,0.076327,-0.135533,-0.135625,-0.125462,-0.083591 +-0.127493,0.074403,-0.129649,-0.129700,-0.120713,-0.081384 +-0.122101,0.072479,-0.123900,-0.123925,-0.116026,-0.079178 +-0.116813,0.070556,-0.118290,-0.118300,-0.111403,-0.076971 +-0.111631,0.068632,-0.112823,-0.112825,-0.106847,-0.074764 +-0.106558,0.066708,-0.107500,-0.107500,-0.102361,-0.072557 +-0.101598,0.064785,-0.102325,-0.102325,-0.097949,-0.070350 +-0.096752,0.062861,-0.097300,-0.097300,-0.093613,-0.068143 +-0.092025,0.060937,-0.092425,-0.092425,-0.089355,-0.065936 +-0.087419,0.059014,-0.087700,-0.087700,-0.085181,-0.063729 +-0.082938,0.057090,-0.083125,-0.083125,-0.081091,-0.061522 +-0.078583,0.055166,-0.078700,-0.078700,-0.077089,-0.059316 +-0.074359,0.053243,-0.074425,-0.074425,-0.073179,-0.057110 +-0.070268,0.051319,-0.070300,-0.070300,-0.069363,-0.054907 +-0.066313,0.049395,-0.066325,-0.066325,-0.065644,-0.052712 +-0.062498,0.047472,-0.062500,-0.062500,-0.062026,-0.050526 +-0.058824,0.045550,-0.058825,-0.058825,-0.058510,-0.048353 +-0.055296,0.043634,-0.055296,-0.055296,-0.055101,-0.046196 +-0.051912,0.041725,-0.051912,-0.051912,-0.051801,-0.044058 +-0.048668,0.039827,-0.048668,-0.048668,-0.048613,-0.041941 +-0.045563,0.037943,-0.045563,-0.045563,-0.045541,-0.039849 +-0.042592,0.036076,-0.042592,-0.042592,-0.042586,-0.037784 +-0.039754,0.034229,-0.039754,-0.039754,-0.039753,-0.035751 +-0.037044,0.032405,-0.037044,-0.037044,-0.037044,-0.033751 +-0.034461,0.030607,-0.034461,-0.034461,-0.034461,-0.031788 +-0.032000,0.028838,-0.032000,-0.032000,-0.032000,-0.029865 +-0.029660,0.027101,-0.029660,-0.029660,-0.029660,-0.027984 +-0.027436,0.025398,-0.027436,-0.027436,-0.027436,-0.026149 +-0.025327,0.023734,-0.025327,-0.025327,-0.025327,-0.024363 +-0.023328,0.022111,-0.023328,-0.023328,-0.023328,-0.022628 +-0.021438,0.020531,-0.021438,-0.021438,-0.021438,-0.020949 +-0.019652,0.018999,-0.019652,-0.019652,-0.019652,-0.019327 +-0.017969,0.017516,-0.017969,-0.017969,-0.017969,-0.017765 +-0.016384,0.016086,-0.016384,-0.016384,-0.016384,-0.016268 +-0.014896,0.014712,-0.014896,-0.014896,-0.014896,-0.014837 +-0.013500,0.013398,-0.013500,-0.013500,-0.013500,-0.013476 +-0.012195,0.012145,-0.012195,-0.012195,-0.012195,-0.012188 +-0.010976,0.010957,-0.010976,-0.010976,-0.010976,-0.010975 +-0.009842,0.009837,-0.009842,-0.009842,-0.009842,-0.009842 +-0.008788,0.008788,-0.008788,-0.008788,-0.008788,-0.008788 +-0.007813,0.007813,-0.007813,-0.007813,-0.007813,-0.007813 +-0.006912,0.006912,-0.006912,-0.006912,-0.006912,-0.006912 +-0.006084,0.006084,-0.006084,-0.006084,-0.006084,-0.006084 +-0.005324,0.005324,-0.005324,-0.005324,-0.005324,-0.005324 +-0.004631,0.004631,-0.004630,-0.004631,-0.004631,-0.004631 +-0.004000,0.004000,-0.004000,-0.004000,-0.004000,-0.004000 +-0.003430,0.003430,-0.003429,-0.003430,-0.003430,-0.003430 +-0.002916,0.002916,-0.002916,-0.002916,-0.002916,-0.002916 +-0.002457,0.002457,-0.002456,-0.002457,-0.002457,-0.002457 +-0.002048,0.002048,-0.002048,-0.002048,-0.002048,-0.002048 +-0.001688,0.001688,-0.001687,-0.001687,-0.001688,-0.001688 +-0.001372,0.001372,-0.001372,-0.001372,-0.001372,-0.001372 +-0.001099,0.001099,-0.001098,-0.001098,-0.001099,-0.001099 +-0.000864,0.000864,-0.000864,-0.000864,-0.000864,-0.000864 +-0.000666,0.000666,-0.000665,-0.000665,-0.000666,-0.000666 +-0.000500,0.000500,-0.000500,-0.000500,-0.000500,-0.000500 +-0.000365,0.000365,-0.000364,-0.000364,-0.000365,-0.000365 +-0.000256,0.000256,-0.000256,-0.000256,-0.000256,-0.000256 +-0.000171,0.000171,-0.000171,-0.000171,-0.000172,-0.000172 +-0.000108,0.000108,-0.000108,-0.000108,-0.000108,-0.000108 +-0.000062,0.000062,-0.000062,-0.000062,-0.000063,-0.000063 +-0.000032,0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000013,0.000013,-0.000013,-0.000013,-0.000014,-0.000014 +-0.000004,0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000000,0.000000,-0.000000,-0.000000,-0.000001,-0.000001 +0.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000 +0.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/2.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/2.csv new file mode 100644 index 00000000..1caef6d5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/2.csv @@ -0,0 +1,7314 @@ +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000022,0.000022,0.000022,0.000022,0.000022,0.000022 +0.000074,0.000074,0.000074,0.000074,0.000074,0.000074 +0.000176,0.000176,0.000176,0.000176,0.000176,0.000176 +0.000344,0.000344,0.000344,0.000344,0.000344,0.000344 +0.000594,0.000594,0.000594,0.000594,0.000594,0.000594 +0.000943,0.000943,0.000943,0.000943,0.000943,0.000943 +0.001408,0.001408,0.001408,0.001408,0.001408,0.001408 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00275,0.00275,0.00275,0.00275,0.00275,0.00275 +0.00366,0.00366,0.00366,0.00366,0.00366,0.00366 +0.004752,0.004752,0.004752,0.004752,0.004752,0.004752 +0.006042,0.006042,0.006042,0.006042,0.006042,0.006042 +0.007546,0.007546,0.007546,0.007546,0.007546,0.007546 +0.009281,0.009281,0.009281,0.009281,0.009281,0.009281 +0.011264,0.011264,0.011264,0.011264,0.011264,0.011264 +0.013511,0.013511,0.013511,0.013511,0.013511,0.013511 +0.016038,0.016038,0.016038,0.016038,0.016038,0.016038 +0.018859,0.018859,0.018859,0.018859,0.018859,0.018859 +0.021966,0.021966,0.021966,0.021966,0.021966,0.021966 +0.025343,0.025343,0.025343,0.025343,0.025343,0.025343 +0.028972,0.028972,0.028972,0.028972,0.028972,0.028972 +0.032838,0.032838,0.032838,0.032838,0.032838,0.032838 +0.036924,0.036924,0.036924,0.036924,0.036924,0.036924 +0.041213,0.041213,0.041213,0.041213,0.041213,0.041213 +0.04569,0.04569,0.04569,0.04569,0.04569,0.04569 +0.050336,0.050336,0.050336,0.050336,0.050336,0.050336 +0.055137,0.055137,0.055137,0.055137,0.055137,0.055137 +0.060076,0.060076,0.060076,0.060076,0.060076,0.060076 +0.065135,0.065135,0.065135,0.065135,0.065135,0.065135 +0.070298,0.070298,0.070298,0.070298,0.070298,0.070298 +0.07555,0.07555,0.07555,0.07555,0.07555,0.07555 +0.080873,0.080873,0.080873,0.080873,0.080873,0.080873 +0.086252,0.086252,0.086252,0.086252,0.086252,0.086252 +0.091668,0.091668,0.091668,0.091668,0.091668,0.091668 +0.097107,0.097107,0.097107,0.097107,0.097107,0.097107 +0.102552,0.102552,0.102552,0.102552,0.102552,0.102552 +0.107997,0.107997,0.107997,0.107997,0.107997,0.107997 +0.113442,0.113442,0.113442,0.113442,0.113442,0.113442 +0.118887,0.118887,0.118887,0.118887,0.118887,0.118887 +0.124332,0.124332,0.124332,0.124332,0.124332,0.124332 +0.129777,0.129777,0.129777,0.129777,0.129777,0.129777 +0.135222,0.135222,0.135222,0.135222,0.135222,0.135222 +0.140667,0.140667,0.140667,0.140667,0.140667,0.140667 +0.146112,0.146112,0.146112,0.146112,0.146112,0.146112 +0.151557,0.151557,0.151557,0.151557,0.151557,0.151557 +0.157002,0.157002,0.157002,0.157002,0.157002,0.157002 +0.162447,0.162447,0.162447,0.162447,0.162447,0.162447 +0.167892,0.167892,0.167892,0.167892,0.167892,0.167892 +0.173337,0.173337,0.173337,0.173337,0.173337,0.173337 +0.178782,0.178782,0.178782,0.178782,0.178782,0.178782 +0.184227,0.184227,0.184227,0.184227,0.184227,0.184227 +0.189672,0.189672,0.189672,0.189672,0.189672,0.189672 +0.195117,0.195117,0.195117,0.195117,0.195117,0.195117 +0.200562,0.200562,0.200562,0.200562,0.200562,0.200562 +0.206007,0.206007,0.206007,0.206007,0.206007,0.206007 +0.211452,0.211452,0.211452,0.211452,0.211452,0.211452 +0.216897,0.216897,0.216897,0.216897,0.216897,0.216897 +0.222342,0.222342,0.222342,0.222342,0.222342,0.222342 +0.227787,0.227787,0.227787,0.227787,0.227787,0.227787 +0.233232,0.233232,0.233232,0.233232,0.233232,0.233232 +0.238677,0.238677,0.238677,0.238677,0.238677,0.238677 +0.244122,0.244122,0.244122,0.244122,0.244122,0.244122 +0.249567,0.249567,0.249567,0.249567,0.249567,0.249567 +0.255012,0.255012,0.255012,0.255012,0.255012,0.255012 +0.260457,0.260457,0.260457,0.260457,0.260457,0.260457 +0.265902,0.265902,0.265902,0.265902,0.265902,0.265902 +0.271347,0.271347,0.271347,0.271347,0.271347,0.271347 +0.276792,0.276792,0.276792,0.276792,0.276792,0.276792 +0.282237,0.282237,0.282237,0.282237,0.282237,0.282237 +0.287682,0.287682,0.287682,0.287682,0.287682,0.287682 +0.293127,0.293127,0.293127,0.293127,0.293127,0.293127 +0.298572,0.298572,0.298572,0.298572,0.298572,0.298572 +0.304017,0.304017,0.304017,0.304017,0.304017,0.304017 +0.309462,0.309462,0.309462,0.309462,0.309462,0.309462 +0.314907,0.314907,0.314907,0.314907,0.314907,0.314907 +0.320352,0.320352,0.320352,0.320352,0.320352,0.320352 +0.325797,0.325797,0.325797,0.325797,0.325797,0.325797 +0.331242,0.331242,0.331242,0.331242,0.331242,0.331242 +0.336687,0.336687,0.336687,0.336687,0.336687,0.336687 +0.342132,0.342132,0.342132,0.342132,0.342132,0.342132 +0.347577,0.347577,0.347577,0.347577,0.347577,0.347577 +0.353022,0.353022,0.353022,0.353022,0.353022,0.353022 +0.358467,0.358467,0.358467,0.358467,0.358467,0.358467 +0.363912,0.363912,0.363912,0.363912,0.363912,0.363912 +0.369357,0.369357,0.369357,0.369357,0.369357,0.369357 +0.374802,0.374802,0.374802,0.374802,0.374802,0.374802 +0.380247,0.380247,0.380247,0.380247,0.380247,0.380247 +0.385692,0.385692,0.385692,0.385692,0.385692,0.385692 +0.391137,0.391137,0.391137,0.391137,0.391137,0.391137 +0.396582,0.396582,0.396582,0.396582,0.396582,0.396582 +0.402027,0.402027,0.402027,0.402027,0.402027,0.402027 +0.407472,0.407472,0.407472,0.407472,0.407472,0.407472 +0.412917,0.412917,0.412917,0.412917,0.412917,0.412917 +0.418362,0.418362,0.418362,0.418362,0.418362,0.418362 +0.423807,0.423807,0.423807,0.423807,0.423807,0.423807 +0.429252,0.429252,0.429252,0.429252,0.429252,0.429252 +0.434697,0.434697,0.434697,0.434697,0.434697,0.434697 +0.440142,0.440142,0.440142,0.440142,0.440142,0.440142 +0.445587,0.445587,0.445587,0.445587,0.445587,0.445587 +0.451032,0.451032,0.451032,0.451032,0.451032,0.451032 +0.456477,0.456477,0.456477,0.456477,0.456477,0.456477 +0.461922,0.461922,0.461922,0.461922,0.461922,0.461922 +0.467367,0.467367,0.467367,0.467367,0.467367,0.467367 +0.472812,0.472812,0.472812,0.472812,0.472812,0.472812 +0.478257,0.478257,0.478257,0.478257,0.478257,0.478257 +0.483702,0.483702,0.483702,0.483702,0.483702,0.483702 +0.489147,0.489147,0.489147,0.489147,0.489147,0.489147 +0.494592,0.494592,0.494592,0.494592,0.494592,0.494592 +0.500037,0.500037,0.500037,0.500037,0.500037,0.500037 +0.505482,0.505482,0.505482,0.505482,0.505482,0.505482 +0.510927,0.510927,0.510927,0.510927,0.510927,0.510927 +0.516372,0.516372,0.516372,0.516372,0.516372,0.516372 +0.521817,0.521817,0.521817,0.521817,0.521817,0.521817 +0.527262,0.527262,0.527262,0.527262,0.527262,0.527262 +0.532707,0.532707,0.532707,0.532707,0.532707,0.532707 +0.538152,0.538152,0.538152,0.538152,0.538152,0.538152 +0.543597,0.543597,0.543597,0.543597,0.543597,0.543597 +0.549042,0.549042,0.549042,0.549042,0.549042,0.549042 +0.554487,0.554487,0.554487,0.554487,0.554487,0.554487 +0.559932,0.559932,0.559932,0.559932,0.559932,0.559932 +0.565377,0.565377,0.565377,0.565377,0.565377,0.565377 +0.570822,0.570822,0.570822,0.570822,0.570822,0.570822 +0.576267,0.576267,0.576267,0.576267,0.576267,0.576267 +0.581712,0.581712,0.581712,0.581712,0.581712,0.581712 +0.587157,0.587157,0.587157,0.587157,0.587157,0.587157 +0.592602,0.592602,0.592602,0.592602,0.592602,0.592602 +0.598047,0.598047,0.598047,0.598047,0.598047,0.598047 +0.603492,0.603492,0.603492,0.603492,0.603492,0.603492 +0.608937,0.608937,0.608937,0.608937,0.608937,0.608937 +0.614382,0.614382,0.614382,0.614382,0.614382,0.614382 +0.619827,0.619827,0.619827,0.619827,0.619827,0.619827 +0.625272,0.625272,0.625272,0.625272,0.625272,0.625272 +0.630717,0.630717,0.630717,0.630717,0.630717,0.630717 +0.636162,0.636162,0.636162,0.636162,0.636162,0.636162 +0.641607,0.641607,0.641607,0.641607,0.641607,0.641607 +0.647052,0.647052,0.647052,0.647052,0.647052,0.647052 +0.652497,0.652497,0.652497,0.652497,0.652497,0.652497 +0.657942,0.657942,0.657942,0.657942,0.657942,0.657942 +0.663387,0.663387,0.663387,0.663387,0.663387,0.663387 +0.668832,0.668832,0.668832,0.668832,0.668832,0.668832 +0.674277,0.674277,0.674277,0.674277,0.674277,0.674277 +0.679722,0.679722,0.679722,0.679722,0.679722,0.679722 +0.685167,0.685167,0.685167,0.685167,0.685167,0.685167 +0.690612,0.690612,0.690612,0.690612,0.690612,0.690612 +0.696057,0.696057,0.696057,0.696057,0.696057,0.696057 +0.701502,0.701502,0.701502,0.701502,0.701502,0.701502 +0.706947,0.706947,0.706947,0.706947,0.706947,0.706947 +0.712392,0.712392,0.712392,0.712392,0.712392,0.712392 +0.717837,0.717837,0.717837,0.717837,0.717837,0.717837 +0.723282,0.723282,0.723282,0.723282,0.723282,0.723282 +0.728727,0.728727,0.728727,0.728727,0.728727,0.728727 +0.734172,0.734172,0.734172,0.734172,0.734172,0.734172 +0.739617,0.739617,0.739617,0.739617,0.739617,0.739617 +0.745062,0.745062,0.745062,0.745062,0.745062,0.745062 +0.750507,0.750507,0.750507,0.750507,0.750507,0.750507 +0.755952,0.755952,0.755952,0.755952,0.755952,0.755952 +0.761397,0.761397,0.761397,0.761397,0.761397,0.761397 +0.766842,0.766842,0.766842,0.766842,0.766842,0.766842 +0.772287,0.772287,0.772287,0.772287,0.772287,0.772287 +0.777732,0.777732,0.777732,0.777732,0.777732,0.777732 +0.783177,0.783177,0.783177,0.783177,0.783177,0.783177 +0.788622,0.788622,0.788622,0.788622,0.788622,0.788622 +0.794067,0.794067,0.794067,0.794067,0.794067,0.794067 +0.799512,0.799512,0.799512,0.799512,0.799512,0.799512 +0.804957,0.804957,0.804957,0.804957,0.804957,0.804957 +0.810402,0.810402,0.810402,0.810402,0.810402,0.810402 +0.815847,0.815847,0.815847,0.815847,0.815847,0.815847 +0.821292,0.821292,0.821292,0.821292,0.821292,0.821292 +0.826737,0.826737,0.826737,0.826737,0.826737,0.826737 +0.832182,0.832182,0.832182,0.832182,0.832182,0.832182 +0.837627,0.837627,0.837627,0.837627,0.837627,0.837627 +0.843072,0.843072,0.843072,0.843072,0.843072,0.843072 +0.848517,0.848517,0.848517,0.848517,0.848517,0.848517 +0.853962,0.853962,0.853962,0.853962,0.853962,0.853962 +0.859407,0.859407,0.859407,0.859407,0.859407,0.859407 +0.864852,0.864852,0.864852,0.864852,0.864852,0.864852 +0.870297,0.870297,0.870297,0.870297,0.870297,0.870297 +0.875742,0.875742,0.875742,0.875742,0.875742,0.875742 +0.881187,0.881187,0.881187,0.881187,0.881187,0.881187 +0.886632,0.886632,0.886632,0.886632,0.886632,0.886632 +0.892077,0.892077,0.892077,0.892077,0.892077,0.892077 +0.897522,0.897522,0.897522,0.897522,0.897522,0.897522 +0.902967,0.902967,0.902967,0.902967,0.902967,0.902967 +0.908412,0.908412,0.908412,0.908412,0.908412,0.908412 +0.913857,0.913857,0.913857,0.913857,0.913857,0.913857 +0.919302,0.919302,0.919302,0.919302,0.919302,0.919302 +0.924747,0.924747,0.924747,0.924747,0.924747,0.924747 +0.930192,0.930192,0.930192,0.930192,0.930192,0.930192 +0.935637,0.935637,0.935637,0.935637,0.935637,0.935637 +0.941082,0.941082,0.941082,0.941082,0.941082,0.941082 +0.946527,0.946527,0.946527,0.946527,0.946527,0.946527 +0.951972,0.951972,0.951972,0.951972,0.951972,0.951972 +0.957417,0.957417,0.957417,0.957417,0.957417,0.957417 +0.962862,0.962862,0.962862,0.962862,0.962862,0.962862 +0.968307,0.968307,0.968307,0.968307,0.968307,0.968307 +0.973752,0.973752,0.973752,0.973752,0.973752,0.973752 +0.979197,0.979197,0.979197,0.979197,0.979197,0.979197 +0.984642,0.984642,0.984642,0.984642,0.984642,0.984642 +0.990087,0.990087,0.990087,0.990087,0.990087,0.990087 +0.995532,0.995532,0.995532,0.995532,0.995532,0.995532 +1.000977,1.000977,1.000977,1.000977,1.000977,1.000977 +1.006422,1.006422,1.006422,1.006422,1.006422,1.006422 +1.011867,1.011867,1.011867,1.011867,1.011867,1.011867 +1.017312,1.017312,1.017312,1.017312,1.017312,1.017312 +1.022757,1.022757,1.022757,1.022757,1.022757,1.022757 +1.028202,1.028202,1.028202,1.028202,1.028202,1.028202 +1.033647,1.033647,1.033647,1.033647,1.033647,1.033647 +1.039092,1.039092,1.039092,1.039092,1.039092,1.039092 +1.044537,1.044537,1.044537,1.044537,1.044537,1.044537 +1.049982,1.049982,1.049982,1.049982,1.049982,1.049982 +1.055427,1.055427,1.055427,1.055427,1.055427,1.055427 +1.060872,1.060872,1.060872,1.060872,1.060872,1.060872 +1.066317,1.066317,1.066317,1.066317,1.066317,1.066317 +1.071762,1.071762,1.071762,1.071762,1.071762,1.071762 +1.077207,1.077207,1.077207,1.077207,1.077207,1.077207 +1.082652,1.082652,1.082652,1.082652,1.082652,1.082652 +1.088097,1.088097,1.088097,1.088097,1.088097,1.088097 +1.093542,1.093542,1.093542,1.093542,1.093542,1.093542 +1.098987,1.098987,1.098987,1.098987,1.098987,1.098987 +1.104432,1.104432,1.104432,1.104432,1.104432,1.104432 +1.109877,1.109877,1.109877,1.109877,1.109877,1.109877 +1.115322,1.115322,1.115322,1.115322,1.115322,1.115322 +1.120767,1.120767,1.120767,1.120767,1.120767,1.120767 +1.126212,1.126212,1.126212,1.126212,1.126212,1.126212 +1.131657,1.131657,1.131657,1.131657,1.131657,1.131657 +1.137102,1.137102,1.137102,1.137102,1.137102,1.137102 +1.142547,1.142547,1.142547,1.142547,1.142547,1.142547 +1.147992,1.147992,1.147992,1.147992,1.147992,1.147992 +1.153437,1.153437,1.153437,1.153437,1.153437,1.153437 +1.158882,1.158882,1.158882,1.158882,1.158882,1.158882 +1.164327,1.164327,1.164327,1.164327,1.164327,1.164327 +1.169772,1.169772,1.169772,1.169772,1.169772,1.169772 +1.175217,1.175217,1.175217,1.175217,1.175217,1.175217 +1.180662,1.180662,1.180662,1.180662,1.180662,1.180662 +1.186107,1.186107,1.186107,1.186107,1.186107,1.186107 +1.191552,1.191552,1.191552,1.191552,1.191552,1.191552 +1.196997,1.196997,1.196997,1.196997,1.196997,1.196997 +1.202442,1.202442,1.202442,1.202442,1.202442,1.202442 +1.207887,1.207887,1.207887,1.207887,1.207887,1.207887 +1.213332,1.213332,1.213332,1.213332,1.213332,1.213332 +1.218777,1.218777,1.218777,1.218777,1.218777,1.218777 +1.224222,1.224222,1.224222,1.224222,1.224222,1.224222 +1.229667,1.229667,1.229667,1.229667,1.229667,1.229667 +1.235112,1.235112,1.235112,1.235112,1.235112,1.235112 +1.240557,1.240557,1.240557,1.240557,1.240557,1.240557 +1.246002,1.246002,1.246002,1.246002,1.246002,1.246002 +1.251447,1.251447,1.251447,1.251447,1.251447,1.251447 +1.256892,1.256892,1.256892,1.256892,1.256892,1.256892 +1.262337,1.262337,1.262337,1.262337,1.262337,1.262337 +1.267782,1.267782,1.267782,1.267782,1.267782,1.267782 +1.273227,1.273227,1.273227,1.273227,1.273227,1.273227 +1.278672,1.278672,1.278672,1.278672,1.278672,1.278672 +1.284117,1.284117,1.284117,1.284117,1.284117,1.284117 +1.289562,1.289562,1.289562,1.289562,1.289562,1.289562 +1.295007,1.295007,1.295007,1.295007,1.295007,1.295007 +1.300452,1.300452,1.300452,1.300452,1.300452,1.300452 +1.305897,1.305897,1.305897,1.305897,1.305897,1.305897 +1.311342,1.311342,1.311342,1.311342,1.311342,1.311342 +1.316787,1.316787,1.316787,1.316787,1.316787,1.316787 +1.322232,1.322232,1.322232,1.322232,1.322232,1.322232 +1.327677,1.327677,1.327677,1.327677,1.327677,1.327677 +1.333122,1.333122,1.333122,1.333122,1.333122,1.333122 +1.338567,1.338567,1.338567,1.338567,1.338567,1.338567 +1.344012,1.344012,1.344012,1.344012,1.344012,1.344012 +1.349457,1.349457,1.349457,1.349457,1.349457,1.349457 +1.354902,1.354902,1.354902,1.354902,1.354902,1.354902 +1.360347,1.360347,1.360347,1.360347,1.360347,1.360347 +1.365792,1.365792,1.365792,1.365792,1.365792,1.365792 +1.371237,1.371237,1.371237,1.371237,1.371237,1.371237 +1.376682,1.376682,1.376682,1.376682,1.376682,1.376682 +1.382127,1.382127,1.382127,1.382127,1.382127,1.382127 +1.387572,1.387572,1.387572,1.387572,1.387572,1.387572 +1.393017,1.393017,1.393017,1.393017,1.393017,1.393017 +1.398462,1.398462,1.398462,1.398462,1.398462,1.398462 +1.403907,1.403907,1.403907,1.403907,1.403907,1.403907 +1.409352,1.409352,1.409352,1.409352,1.409352,1.409352 +1.414797,1.414797,1.414797,1.414797,1.414797,1.414797 +1.420242,1.420242,1.420242,1.420242,1.420242,1.420242 +1.425687,1.425687,1.425687,1.425687,1.425687,1.425687 +1.431132,1.431132,1.431132,1.431132,1.431132,1.431132 +1.436577,1.436577,1.436577,1.436577,1.436577,1.436577 +1.442022,1.442022,1.442022,1.442022,1.442022,1.442022 +1.447467,1.447467,1.447467,1.447467,1.447467,1.447467 +1.452912,1.452912,1.452912,1.452912,1.452912,1.452912 +1.458357,1.458357,1.458357,1.458357,1.458357,1.458357 +1.463802,1.463802,1.463802,1.463802,1.463802,1.463802 +1.469247,1.469247,1.469247,1.469247,1.469247,1.469247 +1.474692,1.474692,1.474692,1.474692,1.474692,1.474692 +1.480137,1.480137,1.480137,1.480137,1.480137,1.480137 +1.485582,1.485582,1.485582,1.485582,1.485582,1.485582 +1.491027,1.491027,1.491027,1.491027,1.491027,1.491027 +1.496472,1.496472,1.496472,1.496472,1.496472,1.496472 +1.501917,1.501917,1.501917,1.501917,1.501917,1.501917 +1.507362,1.507362,1.507362,1.507362,1.507362,1.507362 +1.512807,1.512807,1.512807,1.512807,1.512807,1.512807 +1.518252,1.518252,1.518252,1.518252,1.518252,1.518252 +1.523697,1.523697,1.523697,1.523697,1.523697,1.523697 +1.529142,1.529142,1.529142,1.529142,1.529142,1.529142 +1.534587,1.534587,1.534587,1.534587,1.534587,1.534587 +1.540032,1.540032,1.540032,1.540032,1.540032,1.540032 +1.545477,1.545477,1.545477,1.545477,1.545477,1.545477 +1.550922,1.550922,1.550922,1.550922,1.550922,1.550922 +1.556367,1.556367,1.556367,1.556367,1.556367,1.556367 +1.561812,1.561812,1.561812,1.561812,1.561812,1.561812 +1.567257,1.567257,1.567257,1.567257,1.567257,1.567257 +1.572702,1.572702,1.572702,1.572702,1.572702,1.572702 +1.578147,1.578147,1.578147,1.578147,1.578147,1.578147 +1.583592,1.583592,1.583592,1.583592,1.583592,1.583592 +1.589037,1.589037,1.589037,1.589037,1.589037,1.589037 +1.594482,1.594482,1.594482,1.594482,1.594482,1.594482 +1.599927,1.599927,1.599927,1.599927,1.599927,1.599927 +1.605372,1.605372,1.605372,1.605372,1.605372,1.605372 +1.610817,1.610817,1.610817,1.610817,1.610817,1.610817 +1.616262,1.616262,1.616262,1.616262,1.616262,1.616262 +1.621707,1.621707,1.621707,1.621707,1.621707,1.621707 +1.627152,1.627152,1.627152,1.627152,1.627152,1.627152 +1.632597,1.632597,1.632597,1.632597,1.632597,1.632597 +1.638042,1.638042,1.638042,1.638042,1.638042,1.638042 +1.643487,1.643487,1.643487,1.643487,1.643487,1.643487 +1.648931,1.648931,1.648931,1.648931,1.648931,1.648931 +1.654368,1.654368,1.654368,1.654368,1.654368,1.654368 +1.65978,1.65978,1.65978,1.65978,1.65978,1.65978 +1.665152,1.665152,1.665152,1.665152,1.665152,1.665152 +1.670466,1.670466,1.670466,1.670466,1.670466,1.670466 +1.675707,1.675707,1.675707,1.675707,1.675707,1.675707 +1.680858,1.680858,1.680858,1.680858,1.680858,1.680858 +1.685902,1.685902,1.685902,1.685902,1.685902,1.685902 +1.690822,1.690822,1.690822,1.690822,1.690822,1.690822 +1.695603,1.695603,1.695603,1.695603,1.695603,1.695603 +1.700228,1.700228,1.700228,1.700228,1.700228,1.700228 +1.70468,1.70468,1.70468,1.70468,1.70468,1.70468 +1.708942,1.708942,1.708942,1.708942,1.708942,1.708942 +1.713,1.713,1.713,1.713,1.713,1.713 +1.716834,1.716834,1.716834,1.716834,1.716834,1.716834 +1.72043,1.72043,1.72043,1.72043,1.72043,1.72043 +1.723771,1.723771,1.723771,1.723771,1.723771,1.723771 +1.726841,1.726841,1.726841,1.726841,1.726841,1.726841 +1.729622,1.729622,1.729622,1.729622,1.729622,1.729622 +1.73211,1.73211,1.73211,1.73211,1.73211,1.73211 +1.73432,1.73432,1.73432,1.73432,1.73432,1.73432 +1.736268,1.736268,1.736268,1.736268,1.736268,1.736268 +1.737971,1.737971,1.737971,1.737971,1.737971,1.737971 +1.739445,1.739445,1.739445,1.739445,1.739445,1.739445 +1.740707,1.740707,1.740707,1.740707,1.740707,1.740707 +1.741773,1.741773,1.741773,1.741773,1.741773,1.741773 +1.74266,1.74266,1.74266,1.74266,1.74266,1.74266 +1.743385,1.743385,1.743385,1.743385,1.743385,1.743385 +1.743962,1.743962,1.743962,1.743962,1.743962,1.743962 +1.744411,1.744411,1.744411,1.744411,1.744411,1.744411 +1.744745,1.744745,1.744745,1.744745,1.744745,1.744745 +1.744983,1.744983,1.744983,1.744983,1.744983,1.744983 +1.745141,1.745141,1.745141,1.745141,1.745141,1.745141 +1.745235,1.745235,1.745235,1.745235,1.745235,1.745235 +1.745282,1.745282,1.745282,1.745282,1.745282,1.745282 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745278,1.745278,1.745278,1.745278,1.745278,1.745278 +1.745226,1.745226,1.745226,1.745226,1.745226,1.745226 +1.745124,1.745124,1.745124,1.745124,1.745124,1.745124 +1.744956,1.744956,1.744956,1.744956,1.744956,1.744956 +1.744706,1.744706,1.744706,1.744706,1.744706,1.744706 +1.744357,1.744357,1.744357,1.744357,1.744357,1.744357 +1.743892,1.743892,1.743892,1.743892,1.743892,1.743892 +1.743295,1.743295,1.743295,1.743295,1.743295,1.743295 +1.74255,1.74255,1.74255,1.74255,1.74255,1.74255 +1.74164,1.74164,1.74164,1.74164,1.74164,1.74164 +1.740548,1.740548,1.740548,1.740548,1.740548,1.740548 +1.739258,1.739258,1.739258,1.739258,1.739258,1.739258 +1.737754,1.737754,1.737754,1.737754,1.737754,1.737754 +1.736019,1.736019,1.736019,1.736019,1.736019,1.736019 +1.734036,1.734036,1.734036,1.734036,1.734036,1.734036 +1.731789,1.731789,1.731789,1.731789,1.731789,1.731789 +1.729262,1.729262,1.729262,1.729262,1.729262,1.729262 +1.726441,1.726441,1.726441,1.726441,1.726441,1.726441 +1.723334,1.723334,1.723334,1.723334,1.723334,1.723334 +1.719957,1.719957,1.719957,1.719957,1.719957,1.719957 +1.716328,1.716328,1.716328,1.716328,1.716328,1.716328 +1.712462,1.712462,1.712462,1.712462,1.712462,1.712462 +1.708376,1.708376,1.708376,1.708376,1.708376,1.708376 +1.704087,1.704087,1.704087,1.704087,1.704087,1.704087 +1.69961,1.69961,1.69961,1.69961,1.69961,1.69961 +1.694964,1.694964,1.694964,1.694964,1.694964,1.694964 +1.690163,1.690163,1.690163,1.690163,1.690163,1.690163 +1.685224,1.685224,1.685224,1.685224,1.685224,1.685224 +1.680165,1.680165,1.680165,1.680165,1.680165,1.680165 +1.675002,1.675002,1.675002,1.675002,1.675002,1.675002 +1.66975,1.66975,1.66975,1.66975,1.66975,1.66975 +1.664427,1.664427,1.664427,1.664427,1.664427,1.664427 +1.659048,1.659048,1.659048,1.659048,1.659048,1.659048 +1.653632,1.653632,1.653632,1.653632,1.653632,1.653632 +1.648193,1.648193,1.648193,1.648193,1.648193,1.648193 +1.642748,1.642748,1.642748,1.642748,1.642748,1.642748 +1.637303,1.637303,1.637303,1.637303,1.637303,1.637303 +1.631858,1.631858,1.631858,1.631858,1.631858,1.631858 +1.626413,1.626413,1.626413,1.626413,1.626413,1.626413 +1.620968,1.620968,1.620968,1.620968,1.620968,1.620968 +1.615523,1.615523,1.615523,1.615523,1.615523,1.615523 +1.610078,1.610078,1.610078,1.610078,1.610078,1.610078 +1.604633,1.604633,1.604633,1.604633,1.604633,1.604633 +1.599188,1.599188,1.599188,1.599188,1.599188,1.599188 +1.593743,1.593743,1.593743,1.593743,1.593743,1.593743 +1.588298,1.588298,1.588298,1.588298,1.588298,1.588298 +1.582853,1.582853,1.582853,1.582853,1.582853,1.582853 +1.577408,1.577408,1.577408,1.577408,1.577408,1.577408 +1.571963,1.571963,1.571963,1.571963,1.571963,1.571963 +1.566518,1.566518,1.566518,1.566518,1.566518,1.566518 +1.561073,1.561073,1.561073,1.561073,1.561073,1.561073 +1.555628,1.555628,1.555628,1.555628,1.555628,1.555628 +1.550183,1.550183,1.550183,1.550183,1.550183,1.550183 +1.544738,1.544738,1.544738,1.544738,1.544738,1.544738 +1.539293,1.539293,1.539293,1.539293,1.539293,1.539293 +1.533848,1.533848,1.533848,1.533848,1.533848,1.533848 +1.528403,1.528403,1.528403,1.528403,1.528403,1.528403 +1.522958,1.522958,1.522958,1.522958,1.522958,1.522958 +1.517513,1.517513,1.517513,1.517513,1.517513,1.517513 +1.512068,1.512068,1.512068,1.512068,1.512068,1.512068 +1.506623,1.506623,1.506623,1.506623,1.506623,1.506623 +1.501178,1.501178,1.501178,1.501178,1.501178,1.501178 +1.495733,1.495733,1.495733,1.495733,1.495733,1.495733 +1.490288,1.490288,1.490288,1.490288,1.490288,1.490288 +1.484843,1.484843,1.484843,1.484843,1.484843,1.484843 +1.479398,1.479398,1.479398,1.479398,1.479398,1.479398 +1.473953,1.473953,1.473953,1.473953,1.473953,1.473953 +1.468508,1.468508,1.468508,1.468508,1.468508,1.468508 +1.463063,1.463063,1.463063,1.463063,1.463063,1.463063 +1.457618,1.457618,1.457618,1.457618,1.457618,1.457618 +1.452173,1.452173,1.452173,1.452173,1.452173,1.452173 +1.446728,1.446728,1.446728,1.446728,1.446728,1.446728 +1.441283,1.441283,1.441283,1.441283,1.441283,1.441283 +1.435838,1.435838,1.435838,1.435838,1.435838,1.435838 +1.430393,1.430393,1.430393,1.430393,1.430393,1.430393 +1.424948,1.424948,1.424948,1.424948,1.424948,1.424948 +1.419503,1.419503,1.419503,1.419503,1.419503,1.419503 +1.414058,1.414058,1.414058,1.414058,1.414058,1.414058 +1.408613,1.408613,1.408613,1.408613,1.408613,1.408613 +1.403168,1.403168,1.403168,1.403168,1.403168,1.403168 +1.397723,1.397723,1.397723,1.397723,1.397723,1.397723 +1.392278,1.392278,1.392278,1.392278,1.392278,1.392278 +1.386833,1.386833,1.386833,1.386833,1.386833,1.386833 +1.381388,1.381388,1.381388,1.381388,1.381388,1.381388 +1.375943,1.375943,1.375943,1.375943,1.375943,1.375943 +1.370498,1.370498,1.370498,1.370498,1.370498,1.370498 +1.365053,1.365053,1.365053,1.365053,1.365053,1.365053 +1.359608,1.359608,1.359608,1.359608,1.359608,1.359608 +1.354163,1.354163,1.354163,1.354163,1.354163,1.354163 +1.348718,1.348718,1.348718,1.348718,1.348718,1.348718 +1.343273,1.343273,1.343273,1.343273,1.343273,1.343273 +1.337828,1.337828,1.337828,1.337828,1.337828,1.337828 +1.332383,1.332383,1.332383,1.332383,1.332383,1.332383 +1.326938,1.326938,1.326938,1.326938,1.326938,1.326938 +1.321493,1.321493,1.321493,1.321493,1.321493,1.321493 +1.316048,1.316048,1.316048,1.316048,1.316048,1.316048 +1.310603,1.310603,1.310603,1.310603,1.310603,1.310603 +1.305158,1.305158,1.305158,1.305158,1.305158,1.305158 +1.299713,1.299713,1.299713,1.299713,1.299713,1.299713 +1.294268,1.294268,1.294268,1.294268,1.294268,1.294268 +1.288823,1.288823,1.288823,1.288823,1.288823,1.288823 +1.283378,1.283378,1.283378,1.283378,1.283378,1.283378 +1.277933,1.277933,1.277933,1.277933,1.277933,1.277933 +1.272488,1.272488,1.272488,1.272488,1.272488,1.272488 +1.267043,1.267043,1.267043,1.267043,1.267043,1.267043 +1.261598,1.261598,1.261598,1.261598,1.261598,1.261598 +1.256153,1.256153,1.256153,1.256153,1.256153,1.256153 +1.250708,1.250708,1.250708,1.250708,1.250708,1.250708 +1.245263,1.245263,1.245263,1.245263,1.245263,1.245263 +1.239818,1.239818,1.239818,1.239818,1.239818,1.239818 +1.234373,1.234373,1.234373,1.234373,1.234373,1.234373 +1.228928,1.228928,1.228928,1.228928,1.228928,1.228928 +1.223483,1.223483,1.223483,1.223483,1.223483,1.223483 +1.218038,1.218038,1.218038,1.218038,1.218038,1.218038 +1.212593,1.212593,1.212593,1.212593,1.212593,1.212593 +1.207148,1.207148,1.207148,1.207148,1.207148,1.207148 +1.201703,1.201703,1.201703,1.201703,1.201703,1.201703 +1.196258,1.196258,1.196258,1.196258,1.196258,1.196258 +1.190813,1.190813,1.190813,1.190813,1.190813,1.190813 +1.185368,1.185368,1.185368,1.185368,1.185368,1.185368 +1.179923,1.179923,1.179923,1.179923,1.179923,1.179923 +1.174478,1.174478,1.174478,1.174478,1.174478,1.174478 +1.169033,1.169033,1.169033,1.169033,1.169033,1.169033 +1.163588,1.163588,1.163588,1.163588,1.163588,1.163588 +1.158143,1.158143,1.158143,1.158143,1.158143,1.158143 +1.152698,1.152698,1.152698,1.152698,1.152698,1.152698 +1.147253,1.147253,1.147253,1.147253,1.147253,1.147253 +1.141808,1.141808,1.141808,1.141808,1.141808,1.141808 +1.136363,1.136363,1.136363,1.136363,1.136363,1.136363 +1.130918,1.130918,1.130918,1.130918,1.130918,1.130918 +1.125473,1.125473,1.125473,1.125473,1.125473,1.125473 +1.120028,1.120028,1.120028,1.120028,1.120028,1.120028 +1.114583,1.114583,1.114583,1.114583,1.114583,1.114583 +1.109138,1.109138,1.109138,1.109138,1.109138,1.109138 +1.103693,1.103693,1.103693,1.103693,1.103693,1.103693 +1.098248,1.098248,1.098248,1.098248,1.098248,1.098248 +1.092803,1.092803,1.092803,1.092803,1.092803,1.092803 +1.087358,1.087358,1.087358,1.087358,1.087358,1.087358 +1.081913,1.081913,1.081913,1.081913,1.081913,1.081913 +1.076468,1.076468,1.076468,1.076468,1.076468,1.076468 +1.071023,1.071023,1.071023,1.071023,1.071023,1.071023 +1.065578,1.065578,1.065578,1.065578,1.065578,1.065578 +1.060133,1.060133,1.060133,1.060133,1.060133,1.060133 +1.054688,1.054688,1.054688,1.054688,1.054688,1.054688 +1.049243,1.049243,1.049243,1.049243,1.049243,1.049243 +1.043798,1.043798,1.043798,1.043798,1.043798,1.043798 +1.038353,1.038353,1.038353,1.038353,1.038353,1.038353 +1.032908,1.032908,1.032908,1.032908,1.032908,1.032908 +1.027463,1.027463,1.027463,1.027463,1.027463,1.027463 +1.022018,1.022018,1.022018,1.022018,1.022018,1.022018 +1.016573,1.016573,1.016573,1.016573,1.016573,1.016573 +1.011128,1.011128,1.011128,1.011128,1.011128,1.011128 +1.005683,1.005683,1.005683,1.005683,1.005683,1.005683 +1.000238,1.000238,1.000238,1.000238,1.000238,1.000238 +0.994793,0.994793,0.994793,0.994793,0.994793,0.994793 +0.989348,0.989348,0.989348,0.989348,0.989348,0.989348 +0.983903,0.983903,0.983903,0.983903,0.983903,0.983903 +0.978458,0.978458,0.978458,0.978458,0.978458,0.978458 +0.973013,0.973013,0.973013,0.973013,0.973013,0.973013 +0.967568,0.967568,0.967568,0.967568,0.967568,0.967568 +0.962123,0.962123,0.962123,0.962123,0.962123,0.962123 +0.956678,0.956678,0.956678,0.956678,0.956678,0.956678 +0.951233,0.951233,0.951233,0.951233,0.951233,0.951233 +0.945788,0.945788,0.945788,0.945788,0.945788,0.945788 +0.940343,0.940343,0.940343,0.940343,0.940343,0.940343 +0.934898,0.934898,0.934898,0.934898,0.934898,0.934898 +0.929453,0.929453,0.929453,0.929453,0.929453,0.929453 +0.924008,0.924008,0.924008,0.924008,0.924008,0.924008 +0.918563,0.918563,0.918563,0.918563,0.918563,0.918563 +0.913118,0.913118,0.913118,0.913118,0.913118,0.913118 +0.907673,0.907673,0.907673,0.907673,0.907673,0.907673 +0.902228,0.902228,0.902228,0.902228,0.902228,0.902228 +0.896783,0.896783,0.896783,0.896783,0.896783,0.896783 +0.891338,0.891338,0.891338,0.891338,0.891338,0.891338 +0.885893,0.885893,0.885893,0.885893,0.885893,0.885893 +0.880448,0.880448,0.880448,0.880448,0.880448,0.880448 +0.875003,0.875003,0.875003,0.875003,0.875003,0.875003 +0.869558,0.869558,0.869558,0.869558,0.869558,0.869558 +0.864113,0.864113,0.864113,0.864113,0.864113,0.864113 +0.858668,0.858668,0.858668,0.858668,0.858668,0.858668 +0.853223,0.853223,0.853223,0.853223,0.853223,0.853223 +0.847778,0.847778,0.847778,0.847778,0.847778,0.847778 +0.842333,0.842333,0.842333,0.842333,0.842333,0.842333 +0.836888,0.836888,0.836888,0.836888,0.836888,0.836888 +0.831443,0.831443,0.831443,0.831443,0.831443,0.831443 +0.825998,0.825998,0.825998,0.825998,0.825998,0.825998 +0.820553,0.820553,0.820553,0.820553,0.820553,0.820553 +0.815108,0.815108,0.815108,0.815108,0.815108,0.815108 +0.809663,0.809663,0.809663,0.809663,0.809663,0.809663 +0.804218,0.804218,0.804218,0.804218,0.804218,0.804218 +0.798773,0.798773,0.798773,0.798773,0.798773,0.798773 +0.793328,0.793328,0.793328,0.793328,0.793328,0.793328 +0.787883,0.787883,0.787883,0.787883,0.787883,0.787883 +0.782438,0.782438,0.782438,0.782438,0.782438,0.782438 +0.776993,0.776993,0.776993,0.776993,0.776993,0.776993 +0.771548,0.771548,0.771548,0.771548,0.771548,0.771548 +0.766103,0.766103,0.766103,0.766103,0.766103,0.766103 +0.760658,0.760658,0.760658,0.760658,0.760658,0.760658 +0.755213,0.755213,0.755213,0.755213,0.755213,0.755213 +0.749768,0.749768,0.749768,0.749768,0.749768,0.749768 +0.744323,0.744323,0.744323,0.744323,0.744323,0.744323 +0.738878,0.738878,0.738878,0.738878,0.738878,0.738878 +0.733433,0.733433,0.733433,0.733433,0.733433,0.733433 +0.727988,0.727988,0.727988,0.727988,0.727988,0.727988 +0.722543,0.722543,0.722543,0.722543,0.722543,0.722543 +0.717098,0.717098,0.717098,0.717098,0.717098,0.717098 +0.711653,0.711653,0.711653,0.711653,0.711653,0.711653 +0.706208,0.706208,0.706208,0.706208,0.706208,0.706208 +0.700763,0.700763,0.700763,0.700763,0.700763,0.700763 +0.695318,0.695318,0.695318,0.695318,0.695318,0.695318 +0.689873,0.689873,0.689873,0.689873,0.689873,0.689873 +0.684428,0.684428,0.684428,0.684428,0.684428,0.684428 +0.678983,0.678983,0.678983,0.678983,0.678983,0.678983 +0.673538,0.673538,0.673538,0.673538,0.673538,0.673538 +0.668093,0.668093,0.668093,0.668093,0.668093,0.668093 +0.662648,0.662648,0.662648,0.662648,0.662648,0.662648 +0.657203,0.657203,0.657203,0.657203,0.657203,0.657203 +0.651758,0.651758,0.651758,0.651758,0.651758,0.651758 +0.646313,0.646313,0.646313,0.646313,0.646313,0.646313 +0.640868,0.640868,0.640868,0.640868,0.640868,0.640868 +0.635423,0.635423,0.635423,0.635423,0.635423,0.635423 +0.629978,0.629978,0.629978,0.629978,0.629978,0.629978 +0.624533,0.624533,0.624533,0.624533,0.624533,0.624533 +0.619088,0.619088,0.619088,0.619088,0.619088,0.619088 +0.613643,0.613643,0.613643,0.613643,0.613643,0.613643 +0.608198,0.608198,0.608198,0.608198,0.608198,0.608198 +0.602753,0.602753,0.602753,0.602753,0.602753,0.602753 +0.597308,0.597308,0.597308,0.597308,0.597308,0.597308 +0.591863,0.591863,0.591863,0.591863,0.591863,0.591863 +0.586418,0.586418,0.586418,0.586418,0.586418,0.586418 +0.580973,0.580973,0.580973,0.580973,0.580973,0.580973 +0.575528,0.575528,0.575528,0.575528,0.575528,0.575528 +0.570083,0.570083,0.570083,0.570083,0.570083,0.570083 +0.564638,0.564638,0.564638,0.564638,0.564638,0.564638 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.553748,0.553748,0.553748,0.553748,0.553748,0.553748 +0.548303,0.548303,0.548303,0.548303,0.548303,0.548303 +0.542858,0.542858,0.542858,0.542858,0.542858,0.542858 +0.537413,0.537413,0.537413,0.537413,0.537413,0.537413 +0.531968,0.531968,0.531968,0.531968,0.531968,0.531968 +0.526523,0.526523,0.526523,0.526523,0.526523,0.526523 +0.521078,0.521078,0.521078,0.521078,0.521078,0.521078 +0.515633,0.515633,0.515633,0.515633,0.515633,0.515633 +0.510188,0.510188,0.510188,0.510188,0.510188,0.510188 +0.504743,0.504743,0.504743,0.504743,0.504743,0.504743 +0.499298,0.499298,0.499298,0.499298,0.499298,0.499298 +0.493853,0.493853,0.493853,0.493853,0.493853,0.493853 +0.488408,0.488408,0.488408,0.488408,0.488408,0.488408 +0.482963,0.482963,0.482963,0.482963,0.482963,0.482963 +0.477518,0.477518,0.477518,0.477518,0.477518,0.477518 +0.472073,0.472073,0.472073,0.472073,0.472073,0.472073 +0.466628,0.466628,0.466628,0.466628,0.466628,0.466628 +0.461183,0.461183,0.461183,0.461183,0.461183,0.461183 +0.455738,0.455738,0.455738,0.455738,0.455738,0.455738 +0.450293,0.450293,0.450293,0.450293,0.450293,0.450293 +0.444848,0.444848,0.444848,0.444848,0.444848,0.444848 +0.439403,0.439403,0.439403,0.439403,0.439403,0.439403 +0.433958,0.433958,0.433958,0.433958,0.433958,0.433958 +0.428513,0.428513,0.428513,0.428513,0.428513,0.428513 +0.423068,0.423068,0.423068,0.423068,0.423068,0.423068 +0.417623,0.417623,0.417623,0.417623,0.417623,0.417623 +0.412178,0.412178,0.412178,0.412178,0.412178,0.412178 +0.406733,0.406733,0.406733,0.406733,0.406733,0.406733 +0.401288,0.401288,0.401288,0.401288,0.401288,0.401288 +0.395843,0.395843,0.395843,0.395843,0.395843,0.395843 +0.390398,0.390398,0.390398,0.390398,0.390398,0.390398 +0.384953,0.384953,0.384953,0.384953,0.384953,0.384953 +0.379508,0.379508,0.379508,0.379508,0.379508,0.379508 +0.374063,0.374063,0.374063,0.374063,0.374063,0.374063 +0.368618,0.368618,0.368618,0.368618,0.368618,0.368618 +0.363173,0.363173,0.363173,0.363173,0.363173,0.363173 +0.357728,0.357728,0.357728,0.357728,0.357728,0.357728 +0.352283,0.352283,0.352283,0.352283,0.352283,0.352283 +0.346838,0.346838,0.346838,0.346838,0.346838,0.346838 +0.341393,0.341393,0.341393,0.341393,0.341393,0.341393 +0.335948,0.335948,0.335948,0.335948,0.335948,0.335948 +0.330503,0.330503,0.330503,0.330503,0.330503,0.330503 +0.325058,0.325058,0.325058,0.325058,0.325058,0.325058 +0.319613,0.319613,0.319613,0.319613,0.319613,0.319613 +0.314168,0.314168,0.314168,0.314168,0.314168,0.314168 +0.308723,0.308723,0.308723,0.308723,0.308723,0.308723 +0.303278,0.303278,0.303278,0.303278,0.303278,0.303278 +0.297833,0.297833,0.297833,0.297833,0.297833,0.297833 +0.292388,0.292388,0.292388,0.292388,0.292388,0.292388 +0.286943,0.286943,0.286943,0.286943,0.286943,0.286943 +0.281498,0.281498,0.281498,0.281498,0.281498,0.281498 +0.276053,0.276053,0.276053,0.276053,0.276053,0.276053 +0.270608,0.270608,0.270608,0.270608,0.270608,0.270608 +0.265163,0.265163,0.265163,0.265163,0.265163,0.265163 +0.259718,0.259718,0.259718,0.259718,0.259718,0.259718 +0.254273,0.254273,0.254273,0.254273,0.254273,0.254273 +0.248828,0.248828,0.248828,0.248828,0.248828,0.248828 +0.243383,0.243383,0.243383,0.243383,0.243383,0.243383 +0.237938,0.237938,0.237938,0.237938,0.237938,0.237938 +0.232493,0.232493,0.232493,0.232493,0.232493,0.232493 +0.227048,0.227048,0.227048,0.227048,0.227048,0.227048 +0.221603,0.221603,0.221603,0.221603,0.221603,0.221603 +0.216158,0.216158,0.216158,0.216158,0.216158,0.216158 +0.210713,0.210713,0.210713,0.210713,0.210713,0.210713 +0.205268,0.205268,0.205268,0.205268,0.205268,0.205268 +0.199823,0.199823,0.199823,0.199823,0.199823,0.199823 +0.194378,0.194378,0.194378,0.194378,0.194378,0.194378 +0.188933,0.188933,0.188933,0.188933,0.188933,0.188933 +0.183488,0.183488,0.183488,0.183488,0.183488,0.183488 +0.178043,0.178043,0.178043,0.178043,0.178043,0.178043 +0.172598,0.172598,0.172598,0.172598,0.172598,0.172598 +0.167153,0.167153,0.167153,0.167153,0.167153,0.167153 +0.161708,0.161708,0.161708,0.161708,0.161708,0.161708 +0.156263,0.156263,0.156263,0.156263,0.156263,0.156263 +0.150818,0.150818,0.150818,0.150818,0.150818,0.150818 +0.145373,0.145373,0.145373,0.145373,0.145373,0.145373 +0.139928,0.139928,0.139928,0.139928,0.139928,0.139928 +0.134483,0.134483,0.134483,0.134483,0.134483,0.134483 +0.129038,0.129038,0.129038,0.129038,0.129038,0.129038 +0.123593,0.123593,0.123593,0.123593,0.123593,0.123593 +0.118148,0.118148,0.118148,0.118148,0.118148,0.118148 +0.112703,0.112703,0.112703,0.112703,0.112703,0.112703 +0.107258,0.107258,0.107258,0.107258,0.107258,0.107258 +0.101813,0.101813,0.101813,0.101813,0.101813,0.101813 +0.096369,0.096369,0.096369,0.096369,0.096369,0.096369 +0.090932,0.090932,0.090932,0.090932,0.090932,0.090932 +0.08552,0.08552,0.08552,0.08552,0.08552,0.08552 +0.080148,0.080148,0.080148,0.080148,0.080148,0.080148 +0.074834,0.074834,0.074834,0.074834,0.074834,0.074834 +0.069593,0.069593,0.069593,0.069593,0.069593,0.069593 +0.064442,0.064442,0.064442,0.064442,0.064442,0.064442 +0.059398,0.059398,0.059398,0.059398,0.059398,0.059398 +0.054478,0.054478,0.054478,0.054478,0.054478,0.054478 +0.049697,0.049697,0.049697,0.049697,0.049697,0.049697 +0.045072,0.045072,0.045072,0.045072,0.045072,0.045072 +0.04062,0.04062,0.04062,0.04062,0.04062,0.04062 +0.036358,0.036358,0.036358,0.036358,0.036358,0.036358 +0.0323,0.0323,0.0323,0.0323,0.0323,0.0323 +0.028466,0.028466,0.028466,0.028466,0.028466,0.028466 +0.02487,0.02487,0.02487,0.02487,0.02487,0.02487 +0.021529,0.021529,0.021529,0.021529,0.021529,0.021529 +0.018459,0.018459,0.018459,0.018459,0.018459,0.018459 +0.015678,0.015678,0.015678,0.015678,0.015678,0.015678 +0.01319,0.01319,0.01319,0.01319,0.01319,0.01319 +0.01098,0.01098,0.01098,0.01098,0.01098,0.01098 +0.009032,0.009032,0.009032,0.009032,0.009032,0.009032 +0.007329,0.007329,0.007329,0.007329,0.007329,0.007329 +0.005855,0.005855,0.005855,0.005855,0.005855,0.005855 +0.004593,0.004593,0.004593,0.004593,0.004593,0.004593 +0.003527,0.003527,0.003527,0.003527,0.003527,0.003527 +0.00264,0.00264,0.00264,0.00264,0.00264,0.00264 +0.001915,0.001915,0.001915,0.001915,0.001915,0.001915 +0.001338,0.001338,0.001338,0.001338,0.001338,0.001338 +0.000889,0.000889,0.000889,0.000889,0.000889,0.000889 +0.000555,0.000555,0.000555,0.000555,0.000555,0.000555 +0.000317,0.000317,0.000317,0.000317,0.000317,0.000317 +0.000159,0.000159,0.000159,0.000159,0.000159,0.000159 +0.000065,0.000065,0.000065,0.000065,0.000065,0.000065 +0.000018,0.000018,0.000018,0.000018,0.000018,0.000018 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000022,-0.000022,-0.000022,-0.000022,-0.000022,-0.000022 +-0.000074,-0.000074,-0.000074,-0.000074,-0.000074,-0.000074 +-0.000176,-0.000176,-0.000176,-0.000176,-0.000176,-0.000176 +-0.000344,-0.000344,-0.000344,-0.000344,-0.000344,-0.000344 +-0.000594,-0.000594,-0.000594,-0.000594,-0.000594,-0.000594 +-0.000943,-0.000943,-0.000943,-0.000943,-0.000943,-0.000943 +-0.001408,-0.001408,-0.001408,-0.001408,-0.001408,-0.001408 +-0.002005,-0.002005,-0.002005,-0.002005,-0.002005,-0.002005 +-0.00275,-0.00275,-0.00275,-0.00275,-0.00275,-0.00275 +-0.00366,-0.00366,-0.00366,-0.00366,-0.00366,-0.00366 +-0.004752,-0.004752,-0.004752,-0.004752,-0.004752,-0.004752 +-0.006042,-0.006042,-0.006042,-0.006042,-0.006042,-0.006042 +-0.007546,-0.007546,-0.007546,-0.007546,-0.007546,-0.007546 +-0.009281,-0.009281,-0.009281,-0.009281,-0.009281,-0.009281 +-0.011264,-0.011264,-0.011264,-0.011264,-0.011264,-0.011264 +-0.013511,-0.013511,-0.013511,-0.013511,-0.013511,-0.013511 +-0.016038,-0.016038,-0.016038,-0.016038,-0.016038,-0.016038 +-0.018859,-0.018859,-0.018859,-0.018859,-0.018859,-0.018859 +-0.021966,-0.021966,-0.021966,-0.021966,-0.021966,-0.021966 +-0.025343,-0.025343,-0.025343,-0.025343,-0.025343,-0.025343 +-0.028972,-0.028972,-0.028972,-0.028972,-0.028972,-0.028972 +-0.032838,-0.032838,-0.032838,-0.032838,-0.032838,-0.032838 +-0.036924,-0.036924,-0.036924,-0.036924,-0.036924,-0.036924 +-0.041213,-0.041213,-0.041213,-0.041213,-0.041213,-0.041213 +-0.04569,-0.04569,-0.04569,-0.04569,-0.04569,-0.04569 +-0.050336,-0.050336,-0.050336,-0.050336,-0.050336,-0.050336 +-0.055137,-0.055137,-0.055137,-0.055137,-0.055137,-0.055137 +-0.060076,-0.060076,-0.060076,-0.060076,-0.060076,-0.060076 +-0.065135,-0.065135,-0.065135,-0.065135,-0.065135,-0.065135 +-0.070298,-0.070298,-0.070298,-0.070298,-0.070298,-0.070298 +-0.07555,-0.07555,-0.07555,-0.07555,-0.07555,-0.07555 +-0.080873,-0.080873,-0.080873,-0.080873,-0.080873,-0.080873 +-0.086252,-0.086252,-0.086252,-0.086252,-0.086252,-0.086252 +-0.091668,-0.091668,-0.091668,-0.091668,-0.091668,-0.091668 +-0.097107,-0.097107,-0.097107,-0.097107,-0.097107,-0.097107 +-0.102552,-0.102552,-0.102552,-0.102552,-0.102552,-0.102552 +-0.107997,-0.107997,-0.107997,-0.107997,-0.107997,-0.107997 +-0.113442,-0.113442,-0.113442,-0.113442,-0.113442,-0.113442 +-0.118887,-0.118887,-0.118887,-0.118887,-0.118887,-0.118887 +-0.124332,-0.124332,-0.124332,-0.124332,-0.124332,-0.124332 +-0.129777,-0.129777,-0.129777,-0.129777,-0.129777,-0.129777 +-0.135222,-0.135222,-0.135222,-0.135222,-0.135222,-0.135222 +-0.140667,-0.140667,-0.140667,-0.140667,-0.140667,-0.140667 +-0.146112,-0.146112,-0.146112,-0.146112,-0.146112,-0.146112 +-0.151557,-0.151557,-0.151557,-0.151557,-0.151557,-0.151557 +-0.157002,-0.157002,-0.157002,-0.157002,-0.157002,-0.157002 +-0.162447,-0.162447,-0.162447,-0.162447,-0.162447,-0.162447 +-0.167892,-0.167892,-0.167892,-0.167892,-0.167892,-0.167892 +-0.173337,-0.173337,-0.173337,-0.173337,-0.173337,-0.173337 +-0.178782,-0.178782,-0.178782,-0.178782,-0.178782,-0.178782 +-0.184227,-0.184227,-0.184227,-0.184227,-0.184227,-0.184227 +-0.189672,-0.189672,-0.189672,-0.189672,-0.189672,-0.189672 +-0.195117,-0.195117,-0.195117,-0.195117,-0.195117,-0.195117 +-0.200562,-0.200562,-0.200562,-0.200562,-0.200562,-0.200562 +-0.206007,-0.206007,-0.206007,-0.206007,-0.206007,-0.206007 +-0.211452,-0.211452,-0.211452,-0.211452,-0.211452,-0.211452 +-0.216897,-0.216897,-0.216897,-0.216897,-0.216897,-0.216897 +-0.222342,-0.222342,-0.222342,-0.222342,-0.222342,-0.222342 +-0.227787,-0.227787,-0.227787,-0.227787,-0.227787,-0.227787 +-0.233232,-0.233232,-0.233232,-0.233232,-0.233232,-0.233232 +-0.238677,-0.238677,-0.238677,-0.238677,-0.238677,-0.238677 +-0.244122,-0.244122,-0.244122,-0.244122,-0.244122,-0.244122 +-0.249567,-0.249567,-0.249567,-0.249567,-0.249567,-0.249567 +-0.255012,-0.255012,-0.255012,-0.255012,-0.255012,-0.255012 +-0.260457,-0.260457,-0.260457,-0.260457,-0.260457,-0.260457 +-0.265902,-0.265902,-0.265902,-0.265902,-0.265902,-0.265902 +-0.271347,-0.271347,-0.271347,-0.271347,-0.271347,-0.271347 +-0.276792,-0.276792,-0.276792,-0.276792,-0.276792,-0.276792 +-0.282237,-0.282237,-0.282237,-0.282237,-0.282237,-0.282237 +-0.287682,-0.287682,-0.287682,-0.287682,-0.287682,-0.287682 +-0.293127,-0.293127,-0.293127,-0.293127,-0.293127,-0.293127 +-0.298572,-0.298572,-0.298572,-0.298572,-0.298572,-0.298572 +-0.304017,-0.304017,-0.304017,-0.304017,-0.304017,-0.304017 +-0.309462,-0.309462,-0.309462,-0.309462,-0.309462,-0.309462 +-0.314907,-0.314907,-0.314907,-0.314907,-0.314907,-0.314907 +-0.320352,-0.320352,-0.320352,-0.320352,-0.320352,-0.320352 +-0.325797,-0.325797,-0.325797,-0.325797,-0.325797,-0.325797 +-0.331242,-0.331242,-0.331242,-0.331242,-0.331242,-0.331242 +-0.336687,-0.336687,-0.336687,-0.336687,-0.336687,-0.336687 +-0.342132,-0.342132,-0.342132,-0.342132,-0.342132,-0.342132 +-0.347577,-0.347577,-0.347577,-0.347577,-0.347577,-0.347577 +-0.353022,-0.353022,-0.353022,-0.353022,-0.353022,-0.353022 +-0.358467,-0.358467,-0.358467,-0.358467,-0.358467,-0.358467 +-0.363912,-0.363912,-0.363912,-0.363912,-0.363912,-0.363912 +-0.369357,-0.369357,-0.369357,-0.369357,-0.369357,-0.369357 +-0.374802,-0.374802,-0.374802,-0.374802,-0.374802,-0.374802 +-0.380247,-0.380247,-0.380247,-0.380247,-0.380247,-0.380247 +-0.385692,-0.385692,-0.385692,-0.385692,-0.385692,-0.385692 +-0.391137,-0.391137,-0.391137,-0.391137,-0.391137,-0.391137 +-0.396582,-0.396582,-0.396582,-0.396582,-0.396582,-0.396582 +-0.402027,-0.402027,-0.402027,-0.402027,-0.402027,-0.402027 +-0.407472,-0.407472,-0.407472,-0.407472,-0.407472,-0.407472 +-0.412917,-0.412917,-0.412917,-0.412917,-0.412917,-0.412917 +-0.418362,-0.418362,-0.418362,-0.418362,-0.418362,-0.418362 +-0.423807,-0.423807,-0.423807,-0.423807,-0.423807,-0.423807 +-0.429252,-0.429252,-0.429252,-0.429252,-0.429252,-0.429252 +-0.434697,-0.434697,-0.434697,-0.434697,-0.434697,-0.434697 +-0.440142,-0.440142,-0.440142,-0.440142,-0.440142,-0.440142 +-0.445587,-0.445587,-0.445587,-0.445587,-0.445587,-0.445587 +-0.451032,-0.451032,-0.451032,-0.451032,-0.451032,-0.451032 +-0.456477,-0.456477,-0.456477,-0.456477,-0.456477,-0.456477 +-0.461922,-0.461922,-0.461922,-0.461922,-0.461922,-0.461922 +-0.467367,-0.467367,-0.467367,-0.467367,-0.467367,-0.467367 +-0.472812,-0.472812,-0.472812,-0.472812,-0.472812,-0.472812 +-0.478257,-0.478257,-0.478257,-0.478257,-0.478257,-0.478257 +-0.483702,-0.483702,-0.483702,-0.483702,-0.483702,-0.483702 +-0.489147,-0.489147,-0.489147,-0.489147,-0.489147,-0.489147 +-0.494592,-0.494592,-0.494592,-0.494592,-0.494592,-0.494592 +-0.500037,-0.500037,-0.500037,-0.500037,-0.500037,-0.500037 +-0.505482,-0.505482,-0.505482,-0.505482,-0.505482,-0.505482 +-0.510927,-0.510927,-0.510927,-0.510927,-0.510927,-0.510927 +-0.516372,-0.516372,-0.516372,-0.516372,-0.516372,-0.516372 +-0.521817,-0.521817,-0.521817,-0.521817,-0.521817,-0.521817 +-0.527262,-0.527262,-0.527262,-0.527262,-0.527262,-0.527262 +-0.532707,-0.532707,-0.532707,-0.532707,-0.532707,-0.532707 +-0.538152,-0.538152,-0.538152,-0.538152,-0.538152,-0.538152 +-0.543597,-0.543597,-0.543597,-0.543597,-0.543597,-0.543597 +-0.549042,-0.549042,-0.549042,-0.549042,-0.549042,-0.549042 +-0.554487,-0.554487,-0.554487,-0.554487,-0.554487,-0.554487 +-0.559932,-0.559932,-0.559932,-0.559932,-0.559932,-0.559932 +-0.565377,-0.565377,-0.565377,-0.565377,-0.565377,-0.565377 +-0.570822,-0.570822,-0.570822,-0.570822,-0.570822,-0.570822 +-0.576267,-0.576267,-0.576267,-0.576267,-0.576267,-0.576267 +-0.581712,-0.581712,-0.581712,-0.581712,-0.581712,-0.581712 +-0.587157,-0.587157,-0.587157,-0.587157,-0.587157,-0.587157 +-0.592602,-0.592602,-0.592602,-0.592602,-0.592602,-0.592602 +-0.598047,-0.598047,-0.598047,-0.598047,-0.598047,-0.598047 +-0.603492,-0.603492,-0.603492,-0.603492,-0.603492,-0.603492 +-0.608937,-0.608937,-0.608937,-0.608937,-0.608937,-0.608937 +-0.614382,-0.614382,-0.614382,-0.614382,-0.614382,-0.614382 +-0.619827,-0.619827,-0.619827,-0.619827,-0.619827,-0.619827 +-0.625272,-0.625272,-0.625272,-0.625272,-0.625272,-0.625272 +-0.630717,-0.630717,-0.630717,-0.630717,-0.630717,-0.630717 +-0.636162,-0.636162,-0.636162,-0.636162,-0.636162,-0.636162 +-0.641607,-0.641607,-0.641607,-0.641607,-0.641607,-0.641607 +-0.647052,-0.647052,-0.647052,-0.647052,-0.647052,-0.647052 +-0.652497,-0.652497,-0.652497,-0.652497,-0.652497,-0.652497 +-0.657942,-0.657942,-0.657942,-0.657942,-0.657942,-0.657942 +-0.663387,-0.663387,-0.663387,-0.663387,-0.663387,-0.663387 +-0.668832,-0.668832,-0.668832,-0.668832,-0.668832,-0.668832 +-0.674277,-0.674277,-0.674277,-0.674277,-0.674277,-0.674277 +-0.679722,-0.679722,-0.679722,-0.679722,-0.679722,-0.679722 +-0.685167,-0.685167,-0.685167,-0.685167,-0.685167,-0.685167 +-0.690612,-0.690612,-0.690612,-0.690612,-0.690612,-0.690612 +-0.696057,-0.696057,-0.696057,-0.696057,-0.696057,-0.696057 +-0.701502,-0.701502,-0.701502,-0.701502,-0.701502,-0.701502 +-0.706947,-0.706947,-0.706947,-0.706947,-0.706947,-0.706947 +-0.712392,-0.712392,-0.712392,-0.712392,-0.712392,-0.712392 +-0.717837,-0.717837,-0.717837,-0.717837,-0.717837,-0.717837 +-0.723282,-0.723282,-0.723282,-0.723282,-0.723282,-0.723282 +-0.728727,-0.728727,-0.728727,-0.728727,-0.728727,-0.728727 +-0.734172,-0.734172,-0.734172,-0.734172,-0.734172,-0.734172 +-0.739617,-0.739617,-0.739617,-0.739617,-0.739617,-0.739617 +-0.745062,-0.745062,-0.745062,-0.745062,-0.745062,-0.745062 +-0.750507,-0.750507,-0.750507,-0.750507,-0.750507,-0.750507 +-0.755952,-0.755952,-0.755952,-0.755952,-0.755952,-0.755952 +-0.761397,-0.761397,-0.761397,-0.761397,-0.761397,-0.761397 +-0.766842,-0.766842,-0.766842,-0.766842,-0.766842,-0.766842 +-0.772287,-0.772287,-0.772287,-0.772287,-0.772287,-0.772287 +-0.777732,-0.777732,-0.777732,-0.777732,-0.777732,-0.777732 +-0.783177,-0.783177,-0.783177,-0.783177,-0.783177,-0.783177 +-0.788622,-0.788622,-0.788622,-0.788622,-0.788622,-0.788622 +-0.794067,-0.794067,-0.794067,-0.794067,-0.794067,-0.794067 +-0.799512,-0.799512,-0.799512,-0.799512,-0.799512,-0.799512 +-0.804957,-0.804957,-0.804957,-0.804957,-0.804957,-0.804957 +-0.810402,-0.810402,-0.810402,-0.810402,-0.810402,-0.810402 +-0.815847,-0.815847,-0.815847,-0.815847,-0.815847,-0.815847 +-0.821292,-0.821292,-0.821292,-0.821292,-0.821292,-0.821292 +-0.826737,-0.826737,-0.826737,-0.826737,-0.826737,-0.826737 +-0.832182,-0.832182,-0.832182,-0.832182,-0.832182,-0.832182 +-0.837627,-0.837627,-0.837627,-0.837627,-0.837627,-0.837627 +-0.843072,-0.843072,-0.843072,-0.843072,-0.843072,-0.843072 +-0.848517,-0.848517,-0.848517,-0.848517,-0.848517,-0.848517 +-0.853962,-0.853962,-0.853962,-0.853962,-0.853962,-0.853962 +-0.859407,-0.859407,-0.859407,-0.859407,-0.859407,-0.859407 +-0.864852,-0.864852,-0.864852,-0.864852,-0.864852,-0.864852 +-0.870297,-0.870297,-0.870297,-0.870297,-0.870297,-0.870297 +-0.875742,-0.875742,-0.875742,-0.875742,-0.875742,-0.875742 +-0.881187,-0.881187,-0.881187,-0.881187,-0.881187,-0.881187 +-0.886632,-0.886632,-0.886632,-0.886632,-0.886632,-0.886632 +-0.892077,-0.892077,-0.892077,-0.892077,-0.892077,-0.892077 +-0.897522,-0.897522,-0.897522,-0.897522,-0.897522,-0.897522 +-0.902967,-0.902967,-0.902967,-0.902967,-0.902967,-0.902967 +-0.908412,-0.908412,-0.908412,-0.908412,-0.908412,-0.908412 +-0.913857,-0.913857,-0.913857,-0.913857,-0.913857,-0.913857 +-0.919302,-0.919302,-0.919302,-0.919302,-0.919302,-0.919302 +-0.924747,-0.924747,-0.924747,-0.924747,-0.924747,-0.924747 +-0.930192,-0.930192,-0.930192,-0.930192,-0.930192,-0.930192 +-0.935637,-0.935637,-0.935637,-0.935637,-0.935637,-0.935637 +-0.941082,-0.941082,-0.941082,-0.941082,-0.941082,-0.941082 +-0.946527,-0.946527,-0.946527,-0.946527,-0.946527,-0.946527 +-0.951972,-0.951972,-0.951972,-0.951972,-0.951972,-0.951972 +-0.957417,-0.957417,-0.957417,-0.957417,-0.957417,-0.957417 +-0.962862,-0.962862,-0.962862,-0.962862,-0.962862,-0.962862 +-0.968307,-0.968307,-0.968307,-0.968307,-0.968307,-0.968307 +-0.973752,-0.973752,-0.973752,-0.973752,-0.973752,-0.973752 +-0.979197,-0.979197,-0.979197,-0.979197,-0.979197,-0.979197 +-0.984642,-0.984642,-0.984642,-0.984642,-0.984642,-0.984642 +-0.990087,-0.990087,-0.990087,-0.990087,-0.990087,-0.990087 +-0.995532,-0.995532,-0.995532,-0.995532,-0.995532,-0.995532 +-1.000977,-1.000977,-1.000977,-1.000977,-1.000977,-1.000977 +-1.006422,-1.006422,-1.006422,-1.006422,-1.006422,-1.006422 +-1.011867,-1.011867,-1.011867,-1.011867,-1.011867,-1.011867 +-1.017312,-1.017312,-1.017312,-1.017312,-1.017312,-1.017312 +-1.022757,-1.022757,-1.022757,-1.022757,-1.022757,-1.022757 +-1.028202,-1.028202,-1.028202,-1.028202,-1.028202,-1.028202 +-1.033647,-1.033647,-1.033647,-1.033647,-1.033647,-1.033647 +-1.039092,-1.039092,-1.039092,-1.039092,-1.039092,-1.039092 +-1.044537,-1.044537,-1.044537,-1.044537,-1.044537,-1.044537 +-1.049982,-1.049982,-1.049982,-1.049982,-1.049982,-1.049982 +-1.055427,-1.055427,-1.055427,-1.055427,-1.055427,-1.055427 +-1.060872,-1.060872,-1.060872,-1.060872,-1.060872,-1.060872 +-1.066317,-1.066317,-1.066317,-1.066317,-1.066317,-1.066317 +-1.071762,-1.071762,-1.071762,-1.071762,-1.071762,-1.071762 +-1.077207,-1.077207,-1.077207,-1.077207,-1.077207,-1.077207 +-1.082652,-1.082652,-1.082652,-1.082652,-1.082652,-1.082652 +-1.088097,-1.088097,-1.088097,-1.088097,-1.088097,-1.088097 +-1.093542,-1.093542,-1.093542,-1.093542,-1.093542,-1.093542 +-1.098987,-1.098987,-1.098987,-1.098987,-1.098987,-1.098987 +-1.104432,-1.104432,-1.104432,-1.104432,-1.104432,-1.104432 +-1.109877,-1.109877,-1.109877,-1.109877,-1.109877,-1.109877 +-1.115322,-1.115322,-1.115322,-1.115322,-1.115322,-1.115322 +-1.120767,-1.120767,-1.120767,-1.120767,-1.120767,-1.120767 +-1.126212,-1.126212,-1.126212,-1.126212,-1.126212,-1.126212 +-1.131657,-1.131657,-1.131657,-1.131657,-1.131657,-1.131657 +-1.137102,-1.137102,-1.137102,-1.137102,-1.137102,-1.137102 +-1.142547,-1.142547,-1.142547,-1.142547,-1.142547,-1.142547 +-1.147992,-1.147992,-1.147992,-1.147992,-1.147992,-1.147992 +-1.153437,-1.153437,-1.153437,-1.153437,-1.153437,-1.153437 +-1.158882,-1.158882,-1.158882,-1.158882,-1.158882,-1.158882 +-1.164327,-1.164327,-1.164327,-1.164327,-1.164327,-1.164327 +-1.169772,-1.169772,-1.169772,-1.169772,-1.169772,-1.169772 +-1.175217,-1.175217,-1.175217,-1.175217,-1.175217,-1.175217 +-1.180662,-1.180662,-1.180662,-1.180662,-1.180662,-1.180662 +-1.186107,-1.186107,-1.186107,-1.186107,-1.186107,-1.186107 +-1.191552,-1.191552,-1.191552,-1.191552,-1.191552,-1.191552 +-1.196997,-1.196997,-1.196997,-1.196997,-1.196997,-1.196997 +-1.202442,-1.202442,-1.202442,-1.202442,-1.202442,-1.202442 +-1.207887,-1.207887,-1.207887,-1.207887,-1.207887,-1.207887 +-1.213332,-1.213332,-1.213332,-1.213332,-1.213332,-1.213332 +-1.218777,-1.218777,-1.218777,-1.218777,-1.218777,-1.218777 +-1.224222,-1.224222,-1.224222,-1.224222,-1.224222,-1.224222 +-1.229667,-1.229667,-1.229667,-1.229667,-1.229667,-1.229667 +-1.235112,-1.235112,-1.235112,-1.235112,-1.235112,-1.235112 +-1.240557,-1.240557,-1.240557,-1.240557,-1.240557,-1.240557 +-1.246002,-1.246002,-1.246002,-1.246002,-1.246002,-1.246002 +-1.251447,-1.251447,-1.251447,-1.251447,-1.251447,-1.251447 +-1.256892,-1.256892,-1.256892,-1.256892,-1.256892,-1.256892 +-1.262337,-1.262337,-1.262337,-1.262337,-1.262337,-1.262337 +-1.267782,-1.267782,-1.267782,-1.267782,-1.267782,-1.267782 +-1.273227,-1.273227,-1.273227,-1.273227,-1.273227,-1.273227 +-1.278672,-1.278672,-1.278672,-1.278672,-1.278672,-1.278672 +-1.284117,-1.284117,-1.284117,-1.284117,-1.284117,-1.284117 +-1.289562,-1.289562,-1.289562,-1.289562,-1.289562,-1.289562 +-1.295007,-1.295007,-1.295007,-1.295007,-1.295007,-1.295007 +-1.300452,-1.300452,-1.300452,-1.300452,-1.300452,-1.300452 +-1.305897,-1.305897,-1.305897,-1.305897,-1.305897,-1.305897 +-1.311342,-1.311342,-1.311342,-1.311342,-1.311342,-1.311342 +-1.316787,-1.316787,-1.316787,-1.316787,-1.316787,-1.316787 +-1.322232,-1.322232,-1.322232,-1.322232,-1.322232,-1.322232 +-1.327677,-1.327677,-1.327677,-1.327677,-1.327677,-1.327677 +-1.333122,-1.333122,-1.333122,-1.333122,-1.333122,-1.333122 +-1.338567,-1.338567,-1.338567,-1.338567,-1.338567,-1.338567 +-1.344012,-1.344012,-1.344012,-1.344012,-1.344012,-1.344012 +-1.349457,-1.349457,-1.349457,-1.349457,-1.349457,-1.349457 +-1.354902,-1.354902,-1.354902,-1.354902,-1.354902,-1.354902 +-1.360347,-1.360347,-1.360347,-1.360347,-1.360347,-1.360347 +-1.365792,-1.365792,-1.365792,-1.365792,-1.365792,-1.365792 +-1.371237,-1.371237,-1.371237,-1.371237,-1.371237,-1.371237 +-1.376682,-1.376682,-1.376682,-1.376682,-1.376682,-1.376682 +-1.382127,-1.382127,-1.382127,-1.382127,-1.382127,-1.382127 +-1.387572,-1.387572,-1.387572,-1.387572,-1.387572,-1.387572 +-1.393017,-1.393017,-1.393017,-1.393017,-1.393017,-1.393017 +-1.398462,-1.398462,-1.398462,-1.398462,-1.398462,-1.398462 +-1.403907,-1.403907,-1.403907,-1.403907,-1.403907,-1.403907 +-1.409352,-1.409352,-1.409352,-1.409352,-1.409352,-1.409352 +-1.414797,-1.414797,-1.414797,-1.414797,-1.414797,-1.414797 +-1.420242,-1.420242,-1.420242,-1.420242,-1.420242,-1.420242 +-1.425687,-1.425687,-1.425687,-1.425687,-1.425687,-1.425687 +-1.431132,-1.431132,-1.431132,-1.431132,-1.431132,-1.431132 +-1.436577,-1.436577,-1.436577,-1.436577,-1.436577,-1.436577 +-1.442022,-1.442022,-1.442022,-1.442022,-1.442022,-1.442022 +-1.447467,-1.447467,-1.447467,-1.447467,-1.447467,-1.447467 +-1.452912,-1.452912,-1.452912,-1.452912,-1.452912,-1.452912 +-1.458357,-1.458357,-1.458357,-1.458357,-1.458357,-1.458357 +-1.463802,-1.463802,-1.463802,-1.463802,-1.463802,-1.463802 +-1.469247,-1.469247,-1.469247,-1.469247,-1.469247,-1.469247 +-1.474692,-1.474692,-1.474692,-1.474692,-1.474692,-1.474692 +-1.480137,-1.480137,-1.480137,-1.480137,-1.480137,-1.480137 +-1.485582,-1.485582,-1.485582,-1.485582,-1.485582,-1.485582 +-1.491027,-1.491027,-1.491027,-1.491027,-1.491027,-1.491027 +-1.496472,-1.496472,-1.496472,-1.496472,-1.496472,-1.496472 +-1.501917,-1.501917,-1.501917,-1.501917,-1.501917,-1.501917 +-1.507362,-1.507362,-1.507362,-1.507362,-1.507362,-1.507362 +-1.512807,-1.512807,-1.512807,-1.512807,-1.512807,-1.512807 +-1.518252,-1.518252,-1.518252,-1.518252,-1.518252,-1.518252 +-1.523697,-1.523697,-1.523697,-1.523697,-1.523697,-1.523697 +-1.529142,-1.529142,-1.529142,-1.529142,-1.529142,-1.529142 +-1.534587,-1.534587,-1.534587,-1.534587,-1.534587,-1.534587 +-1.540032,-1.540032,-1.540032,-1.540032,-1.540032,-1.540032 +-1.545477,-1.545477,-1.545477,-1.545477,-1.545477,-1.545477 +-1.550922,-1.550922,-1.550922,-1.550922,-1.550922,-1.550922 +-1.556367,-1.556367,-1.556367,-1.556367,-1.556367,-1.556367 +-1.561812,-1.561812,-1.561812,-1.561812,-1.561812,-1.561812 +-1.567257,-1.567257,-1.567257,-1.567257,-1.567257,-1.567257 +-1.572702,-1.572702,-1.572702,-1.572702,-1.572702,-1.572702 +-1.578147,-1.578147,-1.578147,-1.578147,-1.578147,-1.578147 +-1.583592,-1.583592,-1.583592,-1.583592,-1.583592,-1.583592 +-1.589037,-1.589037,-1.589037,-1.589037,-1.589037,-1.589037 +-1.594482,-1.594482,-1.594482,-1.594482,-1.594482,-1.594482 +-1.599927,-1.599927,-1.599927,-1.599927,-1.599927,-1.599927 +-1.605372,-1.605372,-1.605372,-1.605372,-1.605372,-1.605372 +-1.610817,-1.610817,-1.610817,-1.610817,-1.610817,-1.610817 +-1.616262,-1.616262,-1.616262,-1.616262,-1.616262,-1.616262 +-1.621707,-1.621707,-1.621707,-1.621707,-1.621707,-1.621707 +-1.627152,-1.627152,-1.627152,-1.627152,-1.627152,-1.627152 +-1.632597,-1.632597,-1.632597,-1.632597,-1.632597,-1.632597 +-1.638042,-1.638042,-1.638042,-1.638042,-1.638042,-1.638042 +-1.643487,-1.643487,-1.643487,-1.643487,-1.643487,-1.643487 +-1.648931,-1.648931,-1.648931,-1.648931,-1.648931,-1.648931 +-1.654368,-1.654368,-1.654368,-1.654368,-1.654368,-1.654368 +-1.65978,-1.65978,-1.65978,-1.65978,-1.65978,-1.65978 +-1.665152,-1.665152,-1.665152,-1.665152,-1.665152,-1.665152 +-1.670466,-1.670466,-1.670466,-1.670466,-1.670466,-1.670466 +-1.675707,-1.675707,-1.675707,-1.675707,-1.675707,-1.675707 +-1.680858,-1.680858,-1.680858,-1.680858,-1.680858,-1.680858 +-1.685902,-1.685902,-1.685902,-1.685902,-1.685902,-1.685902 +-1.690822,-1.690822,-1.690822,-1.690822,-1.690822,-1.690822 +-1.695603,-1.695603,-1.695603,-1.695603,-1.695603,-1.695603 +-1.700228,-1.700228,-1.700228,-1.700228,-1.700228,-1.700228 +-1.70468,-1.70468,-1.70468,-1.70468,-1.70468,-1.70468 +-1.708942,-1.708942,-1.708942,-1.708942,-1.708942,-1.708942 +-1.713,-1.713,-1.713,-1.713,-1.713,-1.713 +-1.716834,-1.716834,-1.716834,-1.716834,-1.716834,-1.716834 +-1.72043,-1.72043,-1.72043,-1.72043,-1.72043,-1.72043 +-1.723771,-1.723771,-1.723771,-1.723771,-1.723771,-1.723771 +-1.726841,-1.726841,-1.726841,-1.726841,-1.726841,-1.726841 +-1.729622,-1.729622,-1.729622,-1.729622,-1.729622,-1.729622 +-1.73211,-1.73211,-1.73211,-1.73211,-1.73211,-1.73211 +-1.73432,-1.73432,-1.73432,-1.73432,-1.73432,-1.73432 +-1.736268,-1.736268,-1.736268,-1.736268,-1.736268,-1.736268 +-1.737971,-1.737971,-1.737971,-1.737971,-1.737971,-1.737971 +-1.739445,-1.739445,-1.739445,-1.739445,-1.739445,-1.739445 +-1.740707,-1.740707,-1.740707,-1.740707,-1.740707,-1.740707 +-1.741773,-1.741773,-1.741773,-1.741773,-1.741773,-1.741773 +-1.74266,-1.74266,-1.74266,-1.74266,-1.74266,-1.74266 +-1.743385,-1.743385,-1.743385,-1.743385,-1.743385,-1.743385 +-1.743962,-1.743962,-1.743962,-1.743962,-1.743962,-1.743962 +-1.744411,-1.744411,-1.744411,-1.744411,-1.744411,-1.744411 +-1.744745,-1.744745,-1.744745,-1.744745,-1.744745,-1.744745 +-1.744983,-1.744983,-1.744983,-1.744983,-1.744983,-1.744983 +-1.745141,-1.745141,-1.745141,-1.745141,-1.745141,-1.745141 +-1.745235,-1.745235,-1.745235,-1.745235,-1.745235,-1.745235 +-1.745282,-1.745282,-1.745282,-1.745282,-1.745282,-1.745282 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745278,-1.745278,-1.745278,-1.745278,-1.745278,-1.745278 +-1.745226,-1.745226,-1.745226,-1.745226,-1.745226,-1.745226 +-1.745124,-1.745124,-1.745124,-1.745124,-1.745124,-1.745124 +-1.744956,-1.744956,-1.744956,-1.744956,-1.744956,-1.744956 +-1.744706,-1.744706,-1.744706,-1.744706,-1.744706,-1.744706 +-1.744357,-1.744357,-1.744357,-1.744357,-1.744357,-1.744357 +-1.743892,-1.743892,-1.743892,-1.743892,-1.743892,-1.743892 +-1.743295,-1.743295,-1.743295,-1.743295,-1.743295,-1.743295 +-1.74255,-1.74255,-1.74255,-1.74255,-1.74255,-1.74255 +-1.74164,-1.74164,-1.74164,-1.74164,-1.74164,-1.74164 +-1.740548,-1.740548,-1.740548,-1.740548,-1.740548,-1.740548 +-1.739258,-1.739258,-1.739258,-1.739258,-1.739258,-1.739258 +-1.737754,-1.737754,-1.737754,-1.737754,-1.737754,-1.737754 +-1.736019,-1.736019,-1.736019,-1.736019,-1.736019,-1.736019 +-1.734036,-1.734036,-1.734036,-1.734036,-1.734036,-1.734036 +-1.731789,-1.731789,-1.731789,-1.731789,-1.731789,-1.731789 +-1.729262,-1.729262,-1.729262,-1.729262,-1.729262,-1.729262 +-1.726441,-1.726441,-1.726441,-1.726441,-1.726441,-1.726441 +-1.723334,-1.723334,-1.723334,-1.723334,-1.723334,-1.723334 +-1.719957,-1.719957,-1.719957,-1.719957,-1.719957,-1.719957 +-1.716328,-1.716328,-1.716328,-1.716328,-1.716328,-1.716328 +-1.712462,-1.712462,-1.712462,-1.712462,-1.712462,-1.712462 +-1.708376,-1.708376,-1.708376,-1.708376,-1.708376,-1.708376 +-1.704087,-1.704087,-1.704087,-1.704087,-1.704087,-1.704087 +-1.69961,-1.69961,-1.69961,-1.69961,-1.69961,-1.69961 +-1.694964,-1.694964,-1.694964,-1.694964,-1.694964,-1.694964 +-1.690163,-1.690163,-1.690163,-1.690163,-1.690163,-1.690163 +-1.685224,-1.685224,-1.685224,-1.685224,-1.685224,-1.685224 +-1.680165,-1.680165,-1.680165,-1.680165,-1.680165,-1.680165 +-1.675002,-1.675002,-1.675002,-1.675002,-1.675002,-1.675002 +-1.66975,-1.66975,-1.66975,-1.66975,-1.66975,-1.66975 +-1.664427,-1.664427,-1.664427,-1.664427,-1.664427,-1.664427 +-1.659048,-1.659048,-1.659048,-1.659048,-1.659048,-1.659048 +-1.653632,-1.653632,-1.653632,-1.653632,-1.653632,-1.653632 +-1.648193,-1.648193,-1.648193,-1.648193,-1.648193,-1.648193 +-1.642748,-1.642748,-1.642748,-1.642748,-1.642748,-1.642748 +-1.637303,-1.637303,-1.637303,-1.637303,-1.637303,-1.637303 +-1.631858,-1.631858,-1.631858,-1.631858,-1.631858,-1.631858 +-1.626413,-1.626413,-1.626413,-1.626413,-1.626413,-1.626413 +-1.620968,-1.620968,-1.620968,-1.620968,-1.620968,-1.620968 +-1.615523,-1.615523,-1.615523,-1.615523,-1.615523,-1.615523 +-1.610078,-1.610078,-1.610078,-1.610078,-1.610078,-1.610078 +-1.604633,-1.604633,-1.604633,-1.604633,-1.604633,-1.604633 +-1.599188,-1.599188,-1.599188,-1.599188,-1.599188,-1.599188 +-1.593743,-1.593743,-1.593743,-1.593743,-1.593743,-1.593743 +-1.588298,-1.588298,-1.588298,-1.588298,-1.588298,-1.588298 +-1.582853,-1.582853,-1.582853,-1.582853,-1.582853,-1.582853 +-1.577408,-1.577408,-1.577408,-1.577408,-1.577408,-1.577408 +-1.571963,-1.571963,-1.571963,-1.571963,-1.571963,-1.571963 +-1.566518,-1.566518,-1.566518,-1.566518,-1.566518,-1.566518 +-1.561073,-1.561073,-1.561073,-1.561073,-1.561073,-1.561073 +-1.555628,-1.555628,-1.555628,-1.555628,-1.555628,-1.555628 +-1.550183,-1.550183,-1.550183,-1.550183,-1.550183,-1.550183 +-1.544738,-1.544738,-1.544738,-1.544738,-1.544738,-1.544738 +-1.539293,-1.539293,-1.539293,-1.539293,-1.539293,-1.539293 +-1.533848,-1.533848,-1.533848,-1.533848,-1.533848,-1.533848 +-1.528403,-1.528403,-1.528403,-1.528403,-1.528403,-1.528403 +-1.522958,-1.522958,-1.522958,-1.522958,-1.522958,-1.522958 +-1.517513,-1.517513,-1.517513,-1.517513,-1.517513,-1.517513 +-1.512068,-1.512068,-1.512068,-1.512068,-1.512068,-1.512068 +-1.506623,-1.506623,-1.506623,-1.506623,-1.506623,-1.506623 +-1.501178,-1.501178,-1.501178,-1.501178,-1.501178,-1.501178 +-1.495733,-1.495733,-1.495733,-1.495733,-1.495733,-1.495733 +-1.490288,-1.490288,-1.490288,-1.490288,-1.490288,-1.490288 +-1.484843,-1.484843,-1.484843,-1.484843,-1.484843,-1.484843 +-1.479398,-1.479398,-1.479398,-1.479398,-1.479398,-1.479398 +-1.473953,-1.473953,-1.473953,-1.473953,-1.473953,-1.473953 +-1.468508,-1.468508,-1.468508,-1.468508,-1.468508,-1.468508 +-1.463063,-1.463063,-1.463063,-1.463063,-1.463063,-1.463063 +-1.457618,-1.457618,-1.457618,-1.457618,-1.457618,-1.457618 +-1.452173,-1.452173,-1.452173,-1.452173,-1.452173,-1.452173 +-1.446728,-1.446728,-1.446728,-1.446728,-1.446728,-1.446728 +-1.441283,-1.441283,-1.441283,-1.441283,-1.441283,-1.441283 +-1.435838,-1.435838,-1.435838,-1.435838,-1.435838,-1.435838 +-1.430393,-1.430393,-1.430393,-1.430393,-1.430393,-1.430393 +-1.424948,-1.424948,-1.424948,-1.424948,-1.424948,-1.424948 +-1.419503,-1.419503,-1.419503,-1.419503,-1.419503,-1.419503 +-1.414058,-1.414058,-1.414058,-1.414058,-1.414058,-1.414058 +-1.408613,-1.408613,-1.408613,-1.408613,-1.408613,-1.408613 +-1.403168,-1.403168,-1.403168,-1.403168,-1.403168,-1.403168 +-1.397723,-1.397723,-1.397723,-1.397723,-1.397723,-1.397723 +-1.392278,-1.392278,-1.392278,-1.392278,-1.392278,-1.392278 +-1.386833,-1.386833,-1.386833,-1.386833,-1.386833,-1.386833 +-1.381388,-1.381388,-1.381388,-1.381388,-1.381388,-1.381388 +-1.375943,-1.375943,-1.375943,-1.375943,-1.375943,-1.375943 +-1.370498,-1.370498,-1.370498,-1.370498,-1.370498,-1.370498 +-1.365053,-1.365053,-1.365053,-1.365053,-1.365053,-1.365053 +-1.359608,-1.359608,-1.359608,-1.359608,-1.359608,-1.359608 +-1.354163,-1.354163,-1.354163,-1.354163,-1.354163,-1.354163 +-1.348718,-1.348718,-1.348718,-1.348718,-1.348718,-1.348718 +-1.343273,-1.343273,-1.343273,-1.343273,-1.343273,-1.343273 +-1.337828,-1.337828,-1.337828,-1.337828,-1.337828,-1.337828 +-1.332383,-1.332383,-1.332383,-1.332383,-1.332383,-1.332383 +-1.326938,-1.326938,-1.326938,-1.326938,-1.326938,-1.326938 +-1.321493,-1.321493,-1.321493,-1.321493,-1.321493,-1.321493 +-1.316048,-1.316048,-1.316048,-1.316048,-1.316048,-1.316048 +-1.310603,-1.310603,-1.310603,-1.310603,-1.310603,-1.310603 +-1.305158,-1.305158,-1.305158,-1.305158,-1.305158,-1.305158 +-1.299713,-1.299713,-1.299713,-1.299713,-1.299713,-1.299713 +-1.294268,-1.294268,-1.294268,-1.294268,-1.294268,-1.294268 +-1.288823,-1.288823,-1.288823,-1.288823,-1.288823,-1.288823 +-1.283378,-1.283378,-1.283378,-1.283378,-1.283378,-1.283378 +-1.277933,-1.277933,-1.277933,-1.277933,-1.277933,-1.277933 +-1.272488,-1.272488,-1.272488,-1.272488,-1.272488,-1.272488 +-1.267043,-1.267043,-1.267043,-1.267043,-1.267043,-1.267043 +-1.261598,-1.261598,-1.261598,-1.261598,-1.261598,-1.261598 +-1.256153,-1.256153,-1.256153,-1.256153,-1.256153,-1.256153 +-1.250708,-1.250708,-1.250708,-1.250708,-1.250708,-1.250708 +-1.245263,-1.245263,-1.245263,-1.245263,-1.245263,-1.245263 +-1.239818,-1.239818,-1.239818,-1.239818,-1.239818,-1.239818 +-1.234373,-1.234373,-1.234373,-1.234373,-1.234373,-1.234373 +-1.228928,-1.228928,-1.228928,-1.228928,-1.228928,-1.228928 +-1.223483,-1.223483,-1.223483,-1.223483,-1.223483,-1.223483 +-1.218038,-1.218038,-1.218038,-1.218038,-1.218038,-1.218038 +-1.212593,-1.212593,-1.212593,-1.212593,-1.212593,-1.212593 +-1.207148,-1.207148,-1.207148,-1.207148,-1.207148,-1.207148 +-1.201703,-1.201703,-1.201703,-1.201703,-1.201703,-1.201703 +-1.196258,-1.196258,-1.196258,-1.196258,-1.196258,-1.196258 +-1.190813,-1.190813,-1.190813,-1.190813,-1.190813,-1.190813 +-1.185368,-1.185368,-1.185368,-1.185368,-1.185368,-1.185368 +-1.179923,-1.179923,-1.179923,-1.179923,-1.179923,-1.179923 +-1.174478,-1.174478,-1.174478,-1.174478,-1.174478,-1.174478 +-1.169033,-1.169033,-1.169033,-1.169033,-1.169033,-1.169033 +-1.163588,-1.163588,-1.163588,-1.163588,-1.163588,-1.163588 +-1.158143,-1.158143,-1.158143,-1.158143,-1.158143,-1.158143 +-1.152698,-1.152698,-1.152698,-1.152698,-1.152698,-1.152698 +-1.147253,-1.147253,-1.147253,-1.147253,-1.147253,-1.147253 +-1.141808,-1.141808,-1.141808,-1.141808,-1.141808,-1.141808 +-1.136363,-1.136363,-1.136363,-1.136363,-1.136363,-1.136363 +-1.130918,-1.130918,-1.130918,-1.130918,-1.130918,-1.130918 +-1.125473,-1.125473,-1.125473,-1.125473,-1.125473,-1.125473 +-1.120028,-1.120028,-1.120028,-1.120028,-1.120028,-1.120028 +-1.114583,-1.114583,-1.114583,-1.114583,-1.114583,-1.114583 +-1.109138,-1.109138,-1.109138,-1.109138,-1.109138,-1.109138 +-1.103693,-1.103693,-1.103693,-1.103693,-1.103693,-1.103693 +-1.098248,-1.098248,-1.098248,-1.098248,-1.098248,-1.098248 +-1.092803,-1.092803,-1.092803,-1.092803,-1.092803,-1.092803 +-1.087358,-1.087358,-1.087358,-1.087358,-1.087358,-1.087358 +-1.081913,-1.081913,-1.081913,-1.081913,-1.081913,-1.081913 +-1.076468,-1.076468,-1.076468,-1.076468,-1.076468,-1.076468 +-1.071023,-1.071023,-1.071023,-1.071023,-1.071023,-1.071023 +-1.065578,-1.065578,-1.065578,-1.065578,-1.065578,-1.065578 +-1.060133,-1.060133,-1.060133,-1.060133,-1.060133,-1.060133 +-1.054688,-1.054688,-1.054688,-1.054688,-1.054688,-1.054688 +-1.049243,-1.049243,-1.049243,-1.049243,-1.049243,-1.049243 +-1.043798,-1.043798,-1.043798,-1.043798,-1.043798,-1.043798 +-1.038353,-1.038353,-1.038353,-1.038353,-1.038353,-1.038353 +-1.032908,-1.032908,-1.032908,-1.032908,-1.032908,-1.032908 +-1.027463,-1.027463,-1.027463,-1.027463,-1.027463,-1.027463 +-1.022018,-1.022018,-1.022018,-1.022018,-1.022018,-1.022018 +-1.016573,-1.016573,-1.016573,-1.016573,-1.016573,-1.016573 +-1.011128,-1.011128,-1.011128,-1.011128,-1.011128,-1.011128 +-1.005683,-1.005683,-1.005683,-1.005683,-1.005683,-1.005683 +-1.000238,-1.000238,-1.000238,-1.000238,-1.000238,-1.000238 +-0.994793,-0.994793,-0.994793,-0.994793,-0.994793,-0.994793 +-0.989348,-0.989348,-0.989348,-0.989348,-0.989348,-0.989348 +-0.983903,-0.983903,-0.983903,-0.983903,-0.983903,-0.983903 +-0.978458,-0.978458,-0.978458,-0.978458,-0.978458,-0.978458 +-0.973013,-0.973013,-0.973013,-0.973013,-0.973013,-0.973013 +-0.967568,-0.967568,-0.967568,-0.967568,-0.967568,-0.967568 +-0.962123,-0.962123,-0.962123,-0.962123,-0.962123,-0.962123 +-0.956678,-0.956678,-0.956678,-0.956678,-0.956678,-0.956678 +-0.951233,-0.951233,-0.951233,-0.951233,-0.951233,-0.951233 +-0.945788,-0.945788,-0.945788,-0.945788,-0.945788,-0.945788 +-0.940343,-0.940343,-0.940343,-0.940343,-0.940343,-0.940343 +-0.934898,-0.934898,-0.934898,-0.934898,-0.934898,-0.934898 +-0.929453,-0.929453,-0.929453,-0.929453,-0.929453,-0.929453 +-0.924008,-0.924008,-0.924008,-0.924008,-0.924008,-0.924008 +-0.918563,-0.918563,-0.918563,-0.918563,-0.918563,-0.918563 +-0.913118,-0.913118,-0.913118,-0.913118,-0.913118,-0.913118 +-0.907673,-0.907673,-0.907673,-0.907673,-0.907673,-0.907673 +-0.902228,-0.902228,-0.902228,-0.902228,-0.902228,-0.902228 +-0.896783,-0.896783,-0.896783,-0.896783,-0.896783,-0.896783 +-0.891338,-0.891338,-0.891338,-0.891338,-0.891338,-0.891338 +-0.885893,-0.885893,-0.885893,-0.885893,-0.885893,-0.885893 +-0.880448,-0.880448,-0.880448,-0.880448,-0.880448,-0.880448 +-0.875003,-0.875003,-0.875003,-0.875003,-0.875003,-0.875003 +-0.869558,-0.869558,-0.869558,-0.869558,-0.869558,-0.869558 +-0.864113,-0.864113,-0.864113,-0.864113,-0.864113,-0.864113 +-0.858668,-0.858668,-0.858668,-0.858668,-0.858668,-0.858668 +-0.853223,-0.853223,-0.853223,-0.853223,-0.853223,-0.853223 +-0.847778,-0.847778,-0.847778,-0.847778,-0.847778,-0.847778 +-0.842333,-0.842333,-0.842333,-0.842333,-0.842333,-0.842333 +-0.836888,-0.836888,-0.836888,-0.836888,-0.836888,-0.836888 +-0.831443,-0.831443,-0.831443,-0.831443,-0.831443,-0.831443 +-0.825998,-0.825998,-0.825998,-0.825998,-0.825998,-0.825998 +-0.820553,-0.820553,-0.820553,-0.820553,-0.820553,-0.820553 +-0.815108,-0.815108,-0.815108,-0.815108,-0.815108,-0.815108 +-0.809663,-0.809663,-0.809663,-0.809663,-0.809663,-0.809663 +-0.804218,-0.804218,-0.804218,-0.804218,-0.804218,-0.804218 +-0.798773,-0.798773,-0.798773,-0.798773,-0.798773,-0.798773 +-0.793328,-0.793328,-0.793328,-0.793328,-0.793328,-0.793328 +-0.787883,-0.787883,-0.787883,-0.787883,-0.787883,-0.787883 +-0.782438,-0.782438,-0.782438,-0.782438,-0.782438,-0.782438 +-0.776993,-0.776993,-0.776993,-0.776993,-0.776993,-0.776993 +-0.771548,-0.771548,-0.771548,-0.771548,-0.771548,-0.771548 +-0.766103,-0.766103,-0.766103,-0.766103,-0.766103,-0.766103 +-0.760658,-0.760658,-0.760658,-0.760658,-0.760658,-0.760658 +-0.755213,-0.755213,-0.755213,-0.755213,-0.755213,-0.755213 +-0.749768,-0.749768,-0.749768,-0.749768,-0.749768,-0.749768 +-0.744323,-0.744323,-0.744323,-0.744323,-0.744323,-0.744323 +-0.738878,-0.738878,-0.738878,-0.738878,-0.738878,-0.738878 +-0.733433,-0.733433,-0.733433,-0.733433,-0.733433,-0.733433 +-0.727988,-0.727988,-0.727988,-0.727988,-0.727988,-0.727988 +-0.722543,-0.722543,-0.722543,-0.722543,-0.722543,-0.722543 +-0.717098,-0.717098,-0.717098,-0.717098,-0.717098,-0.717098 +-0.711653,-0.711653,-0.711653,-0.711653,-0.711653,-0.711653 +-0.706208,-0.706208,-0.706208,-0.706208,-0.706208,-0.706208 +-0.700763,-0.700763,-0.700763,-0.700763,-0.700763,-0.700763 +-0.695318,-0.695318,-0.695318,-0.695318,-0.695318,-0.695318 +-0.689873,-0.689873,-0.689873,-0.689873,-0.689873,-0.689873 +-0.684428,-0.684428,-0.684428,-0.684428,-0.684428,-0.684428 +-0.678983,-0.678983,-0.678983,-0.678983,-0.678983,-0.678983 +-0.673538,-0.673538,-0.673538,-0.673538,-0.673538,-0.673538 +-0.668093,-0.668093,-0.668093,-0.668093,-0.668093,-0.668093 +-0.662648,-0.662648,-0.662648,-0.662648,-0.662648,-0.662648 +-0.657203,-0.657203,-0.657203,-0.657203,-0.657203,-0.657203 +-0.651758,-0.651758,-0.651758,-0.651758,-0.651758,-0.651758 +-0.646313,-0.646313,-0.646313,-0.646313,-0.646313,-0.646313 +-0.640868,-0.640868,-0.640868,-0.640868,-0.640868,-0.640868 +-0.635423,-0.635423,-0.635423,-0.635423,-0.635423,-0.635423 +-0.629978,-0.629978,-0.629978,-0.629978,-0.629978,-0.629978 +-0.624533,-0.624533,-0.624533,-0.624533,-0.624533,-0.624533 +-0.619088,-0.619088,-0.619088,-0.619088,-0.619088,-0.619088 +-0.613643,-0.613643,-0.613643,-0.613643,-0.613643,-0.613643 +-0.608198,-0.608198,-0.608198,-0.608198,-0.608198,-0.608198 +-0.602753,-0.602753,-0.602753,-0.602753,-0.602753,-0.602753 +-0.597308,-0.597308,-0.597308,-0.597308,-0.597308,-0.597308 +-0.591863,-0.591863,-0.591863,-0.591863,-0.591863,-0.591863 +-0.586418,-0.586418,-0.586418,-0.586418,-0.586418,-0.586418 +-0.580973,-0.580973,-0.580973,-0.580973,-0.580973,-0.580973 +-0.575528,-0.575528,-0.575528,-0.575528,-0.575528,-0.575528 +-0.570083,-0.570083,-0.570083,-0.570083,-0.570083,-0.570083 +-0.564638,-0.564638,-0.564638,-0.564638,-0.564638,-0.564638 +-0.559193,-0.559193,-0.559193,-0.559193,-0.559193,-0.559193 +-0.553748,-0.553748,-0.553748,-0.553748,-0.553748,-0.553748 +-0.548303,-0.548303,-0.548303,-0.548303,-0.548303,-0.548303 +-0.542858,-0.542858,-0.542858,-0.542858,-0.542858,-0.542858 +-0.537413,-0.537413,-0.537413,-0.537413,-0.537413,-0.537413 +-0.531968,-0.531968,-0.531968,-0.531968,-0.531968,-0.531968 +-0.526523,-0.526523,-0.526523,-0.526523,-0.526523,-0.526523 +-0.521078,-0.521078,-0.521078,-0.521078,-0.521078,-0.521078 +-0.515633,-0.515633,-0.515633,-0.515633,-0.515633,-0.515633 +-0.510188,-0.510188,-0.510188,-0.510188,-0.510188,-0.510188 +-0.504743,-0.504743,-0.504743,-0.504743,-0.504743,-0.504743 +-0.499298,-0.499298,-0.499298,-0.499298,-0.499298,-0.499298 +-0.493853,-0.493853,-0.493853,-0.493853,-0.493853,-0.493853 +-0.488408,-0.488408,-0.488408,-0.488408,-0.488408,-0.488408 +-0.482963,-0.482963,-0.482963,-0.482963,-0.482963,-0.482963 +-0.477518,-0.477518,-0.477518,-0.477518,-0.477518,-0.477518 +-0.472073,-0.472073,-0.472073,-0.472073,-0.472073,-0.472073 +-0.466628,-0.466628,-0.466628,-0.466628,-0.466628,-0.466628 +-0.461183,-0.461183,-0.461183,-0.461183,-0.461183,-0.461183 +-0.455738,-0.455738,-0.455738,-0.455738,-0.455738,-0.455738 +-0.450293,-0.450293,-0.450293,-0.450293,-0.450293,-0.450293 +-0.444848,-0.444848,-0.444848,-0.444848,-0.444848,-0.444848 +-0.439403,-0.439403,-0.439403,-0.439403,-0.439403,-0.439403 +-0.433958,-0.433958,-0.433958,-0.433958,-0.433958,-0.433958 +-0.428513,-0.428513,-0.428513,-0.428513,-0.428513,-0.428513 +-0.423068,-0.423068,-0.423068,-0.423068,-0.423068,-0.423068 +-0.417623,-0.417623,-0.417623,-0.417623,-0.417623,-0.417623 +-0.412178,-0.412178,-0.412178,-0.412178,-0.412178,-0.412178 +-0.406733,-0.406733,-0.406733,-0.406733,-0.406733,-0.406733 +-0.401288,-0.401288,-0.401288,-0.401288,-0.401288,-0.401288 +-0.395843,-0.395843,-0.395843,-0.395843,-0.395843,-0.395843 +-0.390398,-0.390398,-0.390398,-0.390398,-0.390398,-0.390398 +-0.384953,-0.384953,-0.384953,-0.384953,-0.384953,-0.384953 +-0.379508,-0.379508,-0.379508,-0.379508,-0.379508,-0.379508 +-0.374063,-0.374063,-0.374063,-0.374063,-0.374063,-0.374063 +-0.368618,-0.368618,-0.368618,-0.368618,-0.368618,-0.368618 +-0.363173,-0.363173,-0.363173,-0.363173,-0.363173,-0.363173 +-0.357728,-0.357728,-0.357728,-0.357728,-0.357728,-0.357728 +-0.352283,-0.352283,-0.352283,-0.352283,-0.352283,-0.352283 +-0.346838,-0.346838,-0.346838,-0.346838,-0.346838,-0.346838 +-0.341393,-0.341393,-0.341393,-0.341393,-0.341393,-0.341393 +-0.335948,-0.335948,-0.335948,-0.335948,-0.335948,-0.335948 +-0.330503,-0.330503,-0.330503,-0.330503,-0.330503,-0.330503 +-0.325058,-0.325058,-0.325058,-0.325058,-0.325058,-0.325058 +-0.319613,-0.319613,-0.319613,-0.319613,-0.319613,-0.319613 +-0.314168,-0.314168,-0.314168,-0.314168,-0.314168,-0.314168 +-0.308723,-0.308723,-0.308723,-0.308723,-0.308723,-0.308723 +-0.303278,-0.303278,-0.303278,-0.303278,-0.303278,-0.303278 +-0.297833,-0.297833,-0.297833,-0.297833,-0.297833,-0.297833 +-0.292388,-0.292388,-0.292388,-0.292388,-0.292388,-0.292388 +-0.286943,-0.286943,-0.286943,-0.286943,-0.286943,-0.286943 +-0.281498,-0.281498,-0.281498,-0.281498,-0.281498,-0.281498 +-0.276053,-0.276053,-0.276053,-0.276053,-0.276053,-0.276053 +-0.270608,-0.270608,-0.270608,-0.270608,-0.270608,-0.270608 +-0.265163,-0.265163,-0.265163,-0.265163,-0.265163,-0.265163 +-0.259718,-0.259718,-0.259718,-0.259718,-0.259718,-0.259718 +-0.254273,-0.254273,-0.254273,-0.254273,-0.254273,-0.254273 +-0.248828,-0.248828,-0.248828,-0.248828,-0.248828,-0.248828 +-0.243383,-0.243383,-0.243383,-0.243383,-0.243383,-0.243383 +-0.237938,-0.237938,-0.237938,-0.237938,-0.237938,-0.237938 +-0.232493,-0.232493,-0.232493,-0.232493,-0.232493,-0.232493 +-0.227048,-0.227048,-0.227048,-0.227048,-0.227048,-0.227048 +-0.221603,-0.221603,-0.221603,-0.221603,-0.221603,-0.221603 +-0.216158,-0.216158,-0.216158,-0.216158,-0.216158,-0.216158 +-0.210713,-0.210713,-0.210713,-0.210713,-0.210713,-0.210713 +-0.205268,-0.205268,-0.205268,-0.205268,-0.205268,-0.205268 +-0.199823,-0.199823,-0.199823,-0.199823,-0.199823,-0.199823 +-0.194378,-0.194378,-0.194378,-0.194378,-0.194378,-0.194378 +-0.188933,-0.188933,-0.188933,-0.188933,-0.188933,-0.188933 +-0.183488,-0.183488,-0.183488,-0.183488,-0.183488,-0.183488 +-0.178043,-0.178043,-0.178043,-0.178043,-0.178043,-0.178043 +-0.172598,-0.172598,-0.172598,-0.172598,-0.172598,-0.172598 +-0.167153,-0.167153,-0.167153,-0.167153,-0.167153,-0.167153 +-0.161708,-0.161708,-0.161708,-0.161708,-0.161708,-0.161708 +-0.156263,-0.156263,-0.156263,-0.156263,-0.156263,-0.156263 +-0.150818,-0.150818,-0.150818,-0.150818,-0.150818,-0.150818 +-0.145373,-0.145373,-0.145373,-0.145373,-0.145373,-0.145373 +-0.139928,-0.139928,-0.139928,-0.139928,-0.139928,-0.139928 +-0.134483,-0.134483,-0.134483,-0.134483,-0.134483,-0.134483 +-0.129038,-0.129038,-0.129038,-0.129038,-0.129038,-0.129038 +-0.123593,-0.123593,-0.123593,-0.123593,-0.123593,-0.123593 +-0.118148,-0.118148,-0.118148,-0.118148,-0.118148,-0.118148 +-0.112703,-0.112703,-0.112703,-0.112703,-0.112703,-0.112703 +-0.107258,-0.107258,-0.107258,-0.107258,-0.107258,-0.107258 +-0.101813,-0.101813,-0.101813,-0.101813,-0.101813,-0.101813 +-0.096369,-0.096369,-0.096369,-0.096369,-0.096369,-0.096369 +-0.090932,-0.090932,-0.090932,-0.090932,-0.090932,-0.090932 +-0.08552,-0.08552,-0.08552,-0.08552,-0.08552,-0.08552 +-0.080148,-0.080148,-0.080148,-0.080148,-0.080148,-0.080148 +-0.074834,-0.074834,-0.074834,-0.074834,-0.074834,-0.074834 +-0.069593,-0.069593,-0.069593,-0.069593,-0.069593,-0.069593 +-0.064442,-0.064442,-0.064442,-0.064442,-0.064442,-0.064442 +-0.059398,-0.059398,-0.059398,-0.059398,-0.059398,-0.059398 +-0.054478,-0.054478,-0.054478,-0.054478,-0.054478,-0.054478 +-0.049697,-0.049697,-0.049697,-0.049697,-0.049697,-0.049697 +-0.045072,-0.045072,-0.045072,-0.045072,-0.045072,-0.045072 +-0.04062,-0.04062,-0.04062,-0.04062,-0.04062,-0.04062 +-0.036358,-0.036358,-0.036358,-0.036358,-0.036358,-0.036358 +-0.0323,-0.0323,-0.0323,-0.0323,-0.0323,-0.0323 +-0.028466,-0.028466,-0.028466,-0.028466,-0.028466,-0.028466 +-0.02487,-0.02487,-0.02487,-0.02487,-0.02487,-0.02487 +-0.021529,-0.021529,-0.021529,-0.021529,-0.021529,-0.021529 +-0.018459,-0.018459,-0.018459,-0.018459,-0.018459,-0.018459 +-0.015678,-0.015678,-0.015678,-0.015678,-0.015678,-0.015678 +-0.01319,-0.01319,-0.01319,-0.01319,-0.01319,-0.01319 +-0.01098,-0.01098,-0.01098,-0.01098,-0.01098,-0.01098 +-0.009032,-0.009032,-0.009032,-0.009032,-0.009032,-0.009032 +-0.007329,-0.007329,-0.007329,-0.007329,-0.007329,-0.007329 +-0.005855,-0.005855,-0.005855,-0.005855,-0.005855,-0.005855 +-0.004593,-0.004593,-0.004593,-0.004593,-0.004593,-0.004593 +-0.003527,-0.003527,-0.003527,-0.003527,-0.003527,-0.003527 +-0.00264,-0.00264,-0.00264,-0.00264,-0.00264,-0.00264 +-0.001915,-0.001915,-0.001915,-0.001915,-0.001915,-0.001915 +-0.001338,-0.001338,-0.001338,-0.001338,-0.001338,-0.001338 +-0.000889,-0.000889,-0.000889,-0.000889,-0.000889,-0.000889 +-0.000555,-0.000555,-0.000555,-0.000555,-0.000555,-0.000555 +-0.000317,-0.000317,-0.000317,-0.000317,-0.000317,-0.000317 +-0.000159,-0.000159,-0.000159,-0.000159,-0.000159,-0.000159 +-0.000065,-0.000065,-0.000065,-0.000065,-0.000065,-0.000065 +-0.000018,-0.000018,-0.000018,-0.000018,-0.000018,-0.000018 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000023,0.000023,0.000023,0.000023,0.000023,0.000023 +0.000079,0.000079,0.000079,0.000079,0.000079,0.000079 +0.000187,0.000187,0.000187,0.000187,0.000187,0.000187 +0.000365,0.000365,0.000365,0.000365,0.000365,0.000365 +0.00063,0.00063,0.00063,0.00063,0.00063,0.00063 +0.001,0.001,0.001,0.001,0.001,0.001 +0.001493,0.001493,0.001493,0.001493,0.001493,0.001493 +0.002126,0.002126,0.002126,0.002126,0.002126,0.002126 +0.002917,0.002917,0.002917,0.002917,0.002917,0.002917 +0.003882,0.003882,0.003882,0.003882,0.003882,0.003882 +0.00504,0.00504,0.00504,0.00504,0.00504,0.00504 +0.006408,0.006408,0.006408,0.006408,0.006408,0.006408 +0.008003,0.008003,0.008003,0.008003,0.008003,0.008003 +0.009844,0.009844,0.009844,0.009844,0.009844,0.009844 +0.011947,0.011947,0.011947,0.011947,0.011947,0.011947 +0.01433,0.01433,0.01433,0.01433,0.01433,0.01433 +0.01701,0.01701,0.01701,0.01701,0.01701,0.01701 +0.020005,0.020005,0.020005,0.020005,0.020005,0.020005 +0.023321,0.023321,0.023321,0.023321,0.023321,0.023321 +0.026941,0.026941,0.026941,0.026941,0.026941,0.026941 +0.030849,0.030849,0.030849,0.030849,0.030849,0.030849 +0.035026,0.035026,0.035026,0.035026,0.035026,0.035026 +0.039456,0.039456,0.039456,0.039456,0.039456,0.039456 +0.04412,0.04412,0.04412,0.04412,0.04412,0.04412 +0.049002,0.049002,0.049002,0.049002,0.049002,0.049002 +0.054083,0.054083,0.054083,0.054083,0.054083,0.054083 +0.059347,0.059347,0.059347,0.059347,0.059347,0.059347 +0.064776,0.064776,0.064776,0.064776,0.064776,0.064776 +0.070352,0.070352,0.070352,0.070352,0.070352,0.070352 +0.076057,0.076057,0.076057,0.076057,0.076057,0.076057 +0.081875,0.081875,0.081875,0.081875,0.081875,0.081875 +0.087788,0.087788,0.087788,0.087788,0.087788,0.087788 +0.093778,0.093778,0.093778,0.093778,0.093778,0.093778 +0.099828,0.099828,0.099828,0.099828,0.099828,0.099828 +0.10592,0.10592,0.10592,0.10592,0.10592,0.10592 +0.112037,0.112037,0.112037,0.112037,0.112037,0.112037 +0.118162,0.118162,0.118162,0.118162,0.118162,0.118162 +0.124287,0.124287,0.124287,0.124287,0.124287,0.124287 +0.130412,0.130412,0.130412,0.130412,0.130412,0.130412 +0.136537,0.136537,0.136537,0.136537,0.136537,0.136537 +0.142662,0.142662,0.142662,0.142662,0.142662,0.142662 +0.148787,0.148787,0.148787,0.148787,0.148787,0.148787 +0.154912,0.154912,0.154912,0.154912,0.154912,0.154912 +0.161037,0.161037,0.161037,0.161037,0.161037,0.161037 +0.167162,0.167162,0.167162,0.167162,0.167162,0.167162 +0.173287,0.173287,0.173287,0.173287,0.173287,0.173287 +0.179412,0.179412,0.179412,0.179412,0.179412,0.179412 +0.185537,0.185537,0.185537,0.185537,0.185537,0.185537 +0.191662,0.191662,0.191662,0.191662,0.191662,0.191662 +0.197787,0.197787,0.197787,0.197787,0.197787,0.197787 +0.203912,0.203912,0.203912,0.203912,0.203912,0.203912 +0.210037,0.210037,0.210037,0.210037,0.210037,0.210037 +0.216162,0.216162,0.216162,0.216162,0.216162,0.216162 +0.222287,0.222287,0.222287,0.222287,0.222287,0.222287 +0.228412,0.228412,0.228412,0.228412,0.228412,0.228412 +0.234537,0.234537,0.234537,0.234537,0.234537,0.234537 +0.240662,0.240662,0.240662,0.240662,0.240662,0.240662 +0.246787,0.246787,0.246787,0.246787,0.246787,0.246787 +0.252912,0.252912,0.252912,0.252912,0.252912,0.252912 +0.259037,0.259037,0.259037,0.259037,0.259037,0.259037 +0.265162,0.265162,0.265162,0.265162,0.265162,0.265162 +0.271287,0.271287,0.271287,0.271287,0.271287,0.271287 +0.277412,0.277412,0.277412,0.277412,0.277412,0.277412 +0.283537,0.283537,0.283537,0.283537,0.283537,0.283537 +0.289662,0.289662,0.289662,0.289662,0.289662,0.289662 +0.295787,0.295787,0.295787,0.295787,0.295787,0.295787 +0.301912,0.301912,0.301912,0.301912,0.301912,0.301912 +0.308037,0.308037,0.308037,0.308037,0.308037,0.308037 +0.314162,0.314162,0.314162,0.314162,0.314162,0.314162 +0.320287,0.320287,0.320287,0.320287,0.320287,0.320287 +0.326412,0.326412,0.326412,0.326412,0.326412,0.326412 +0.332537,0.332537,0.332537,0.332537,0.332537,0.332537 +0.338662,0.338662,0.338662,0.338662,0.338662,0.338662 +0.344787,0.344787,0.344787,0.344787,0.344787,0.344787 +0.350912,0.350912,0.350912,0.350912,0.350912,0.350912 +0.357037,0.357037,0.357037,0.357037,0.357037,0.357037 +0.363162,0.363162,0.363162,0.363162,0.363162,0.363162 +0.369287,0.369287,0.369287,0.369287,0.369287,0.369287 +0.375412,0.375412,0.375412,0.375412,0.375412,0.375412 +0.381537,0.381537,0.381537,0.381537,0.381537,0.381537 +0.387662,0.387662,0.387662,0.387662,0.387662,0.387662 +0.393787,0.393787,0.393787,0.393787,0.393787,0.393787 +0.399912,0.399912,0.399912,0.399912,0.399912,0.399912 +0.406037,0.406037,0.406037,0.406037,0.406037,0.406037 +0.412162,0.412162,0.412162,0.412162,0.412162,0.412162 +0.418287,0.418287,0.418287,0.418287,0.418287,0.418287 +0.424412,0.424412,0.424412,0.424412,0.424412,0.424412 +0.430537,0.430537,0.430537,0.430537,0.430537,0.430537 +0.436662,0.436662,0.436662,0.436662,0.436662,0.436662 +0.442787,0.442787,0.442787,0.442787,0.442787,0.442787 +0.448912,0.448912,0.448912,0.448912,0.448912,0.448912 +0.455037,0.455037,0.455037,0.455037,0.455037,0.455037 +0.461162,0.461162,0.461162,0.461162,0.461162,0.461162 +0.467287,0.467287,0.467287,0.467287,0.467287,0.467287 +0.473412,0.473412,0.473412,0.473412,0.473412,0.473412 +0.479537,0.479537,0.479537,0.479537,0.479537,0.479537 +0.485662,0.485662,0.485662,0.485662,0.485662,0.485662 +0.491787,0.491787,0.491787,0.491787,0.491787,0.491787 +0.497912,0.497912,0.497912,0.497912,0.497912,0.497912 +0.504037,0.504037,0.504037,0.504037,0.504037,0.504037 +0.510162,0.510162,0.510162,0.510162,0.510162,0.510162 +0.516287,0.516287,0.516287,0.516287,0.516287,0.516287 +0.522412,0.522412,0.522412,0.522412,0.522412,0.522412 +0.528537,0.528537,0.528537,0.528537,0.528537,0.528537 +0.534662,0.534662,0.534662,0.534662,0.534662,0.534662 +0.540787,0.540787,0.540787,0.540787,0.540787,0.540787 +0.546912,0.546912,0.546912,0.546912,0.546912,0.546912 +0.553037,0.553037,0.553037,0.553037,0.553037,0.553037 +0.559162,0.559162,0.559162,0.559162,0.559162,0.559162 +0.565287,0.565287,0.565287,0.565287,0.565287,0.565287 +0.571412,0.571412,0.571412,0.571412,0.571412,0.571412 +0.577537,0.577537,0.577537,0.577537,0.577537,0.577537 +0.583662,0.583662,0.583662,0.583662,0.583662,0.583662 +0.589787,0.589787,0.589787,0.589787,0.589787,0.589787 +0.595912,0.595912,0.595912,0.595912,0.595912,0.595912 +0.602037,0.602037,0.602037,0.602037,0.602037,0.602037 +0.608162,0.608162,0.608162,0.608162,0.608162,0.608162 +0.614287,0.614287,0.614287,0.614287,0.614287,0.614287 +0.620412,0.620412,0.620412,0.620412,0.620412,0.620412 +0.626537,0.626537,0.626537,0.626537,0.626537,0.626537 +0.632662,0.632662,0.632662,0.632662,0.632662,0.632662 +0.638787,0.638787,0.638787,0.638787,0.638787,0.638787 +0.644912,0.644912,0.644912,0.644912,0.644912,0.644912 +0.651037,0.651037,0.651037,0.651037,0.651037,0.651037 +0.657162,0.657162,0.657162,0.657162,0.657162,0.657162 +0.663287,0.663287,0.663287,0.663287,0.663287,0.663287 +0.669412,0.669412,0.669412,0.669412,0.669412,0.669412 +0.675537,0.675537,0.675537,0.675537,0.675537,0.675537 +0.681662,0.681662,0.681662,0.681662,0.681662,0.681662 +0.687787,0.687787,0.687787,0.687787,0.687787,0.687787 +0.693912,0.693912,0.693912,0.693912,0.693912,0.693912 +0.700037,0.700037,0.700037,0.700037,0.700037,0.700037 +0.706162,0.706162,0.706162,0.706162,0.706162,0.706162 +0.712287,0.712287,0.712287,0.712287,0.712287,0.712287 +0.718412,0.718412,0.718412,0.718412,0.718412,0.718412 +0.724537,0.724537,0.724537,0.724537,0.724537,0.724537 +0.730662,0.730662,0.730662,0.730662,0.730662,0.730662 +0.736787,0.736787,0.736787,0.736787,0.736787,0.736787 +0.742912,0.742912,0.742912,0.742912,0.742912,0.742912 +0.749037,0.749037,0.749037,0.749037,0.749037,0.749037 +0.755162,0.755162,0.755162,0.755162,0.755162,0.755162 +0.761287,0.761287,0.761287,0.761287,0.761287,0.761287 +0.767412,0.767412,0.767412,0.767412,0.767412,0.767412 +0.773537,0.773537,0.773537,0.773537,0.773537,0.773537 +0.779662,0.779662,0.779662,0.779662,0.779662,0.779662 +0.785787,0.785787,0.785787,0.785787,0.785787,0.785787 +0.791912,0.791912,0.791912,0.791912,0.791912,0.791912 +0.798037,0.798037,0.798037,0.798037,0.798037,0.798037 +0.804162,0.804162,0.804162,0.804162,0.804162,0.804162 +0.810287,0.810287,0.810287,0.810287,0.810287,0.810287 +0.816412,0.816412,0.816412,0.816412,0.816412,0.816412 +0.822537,0.822537,0.822537,0.822537,0.822537,0.822537 +0.828662,0.828662,0.828662,0.828662,0.828662,0.828662 +0.834787,0.834787,0.834787,0.834787,0.834787,0.834787 +0.840912,0.840912,0.840912,0.840912,0.840912,0.840912 +0.847037,0.847037,0.847037,0.847037,0.847037,0.847037 +0.853162,0.853162,0.853162,0.853162,0.853162,0.853162 +0.859287,0.859287,0.859287,0.859287,0.859287,0.859287 +0.865412,0.865412,0.865412,0.865412,0.865412,0.865412 +0.871537,0.871537,0.871537,0.871537,0.871537,0.871537 +0.877662,0.877662,0.877662,0.877662,0.877662,0.877662 +0.883787,0.883787,0.883787,0.883787,0.883787,0.883787 +0.889912,0.889912,0.889912,0.889912,0.889912,0.889912 +0.896037,0.896037,0.896037,0.896037,0.896037,0.896037 +0.902162,0.902162,0.902162,0.902162,0.902162,0.902162 +0.908287,0.908287,0.908287,0.908287,0.908287,0.908287 +0.914412,0.914412,0.914412,0.914412,0.914412,0.914412 +0.920537,0.920537,0.920537,0.920537,0.920537,0.920537 +0.926662,0.926662,0.926662,0.926662,0.926662,0.926662 +0.932787,0.932787,0.932787,0.932787,0.932787,0.932787 +0.938912,0.938912,0.938912,0.938912,0.938912,0.938912 +0.945037,0.945037,0.945037,0.945037,0.945037,0.945037 +0.951162,0.951162,0.951162,0.951162,0.951162,0.951162 +0.957287,0.957287,0.957287,0.957287,0.957287,0.957287 +0.963412,0.963412,0.963412,0.963412,0.963412,0.963412 +0.969537,0.969537,0.969537,0.969537,0.969537,0.969537 +0.975662,0.975662,0.975662,0.975662,0.975662,0.975662 +0.981787,0.981787,0.981787,0.981787,0.981787,0.981787 +0.987912,0.987912,0.987912,0.987912,0.987912,0.987912 +0.994037,0.994037,0.994037,0.994037,0.994037,0.994037 +1.000162,1.000162,1.000162,1.000162,1.000162,1.000162 +1.006287,1.006287,1.006287,1.006287,1.006287,1.006287 +1.012412,1.012412,1.012412,1.012412,1.012412,1.012412 +1.018537,1.018537,1.018537,1.018537,1.018537,1.018537 +1.024662,1.024662,1.024662,1.024662,1.024662,1.024662 +1.030787,1.030787,1.030787,1.030787,1.030787,1.030787 +1.036912,1.036912,1.036912,1.036912,1.036912,1.036912 +1.043037,1.043037,1.043037,1.043037,1.043037,1.043037 +1.049162,1.049162,1.049162,1.049162,1.049162,1.049162 +1.055287,1.055287,1.055287,1.055287,1.055287,1.055287 +1.061412,1.061412,1.061412,1.061412,1.061412,1.061412 +1.067537,1.067537,1.067537,1.067537,1.067537,1.067537 +1.073662,1.073662,1.073662,1.073662,1.073662,1.073662 +1.079787,1.079787,1.079787,1.079787,1.079787,1.079787 +1.085912,1.085912,1.085912,1.085912,1.085912,1.085912 +1.092037,1.092037,1.092037,1.092037,1.092037,1.092037 +1.098162,1.098162,1.098162,1.098162,1.098162,1.098162 +1.104287,1.104287,1.104287,1.104287,1.104287,1.104287 +1.110412,1.110412,1.110412,1.110412,1.110412,1.110412 +1.116537,1.116537,1.116537,1.116537,1.116537,1.116537 +1.122662,1.122662,1.122662,1.122662,1.122662,1.122662 +1.128787,1.128787,1.128787,1.128787,1.128787,1.128787 +1.134912,1.134912,1.134912,1.134912,1.134912,1.134912 +1.141037,1.141037,1.141037,1.141037,1.141037,1.141037 +1.147162,1.147162,1.147162,1.147162,1.147162,1.147162 +1.153287,1.153287,1.153287,1.153287,1.153287,1.153287 +1.159412,1.159412,1.159412,1.159412,1.159412,1.159412 +1.165537,1.165537,1.165537,1.165537,1.165537,1.165537 +1.171662,1.171662,1.171662,1.171662,1.171662,1.171662 +1.177787,1.177787,1.177787,1.177787,1.177787,1.177787 +1.183912,1.183912,1.183912,1.183912,1.183912,1.183912 +1.190037,1.190037,1.190037,1.190037,1.190037,1.190037 +1.196162,1.196162,1.196162,1.196162,1.196162,1.196162 +1.202287,1.202287,1.202287,1.202287,1.202287,1.202287 +1.208412,1.208412,1.208412,1.208412,1.208412,1.208412 +1.214537,1.214537,1.214537,1.214537,1.214537,1.214537 +1.220662,1.220662,1.220662,1.220662,1.220662,1.220662 +1.226787,1.226787,1.226787,1.226787,1.226787,1.226787 +1.232912,1.232912,1.232912,1.232912,1.232912,1.232912 +1.239037,1.239037,1.239037,1.239037,1.239037,1.239037 +1.245162,1.245162,1.245162,1.245162,1.245162,1.245162 +1.251287,1.251287,1.251287,1.251287,1.251287,1.251287 +1.257412,1.257412,1.257412,1.257412,1.257412,1.257412 +1.263537,1.263537,1.263537,1.263537,1.263537,1.263537 +1.269662,1.269662,1.269662,1.269662,1.269662,1.269662 +1.275787,1.275787,1.275787,1.275787,1.275787,1.275787 +1.281912,1.281912,1.281912,1.281912,1.281912,1.281912 +1.288037,1.288037,1.288037,1.288037,1.288037,1.288037 +1.294162,1.294162,1.294162,1.294162,1.294162,1.294162 +1.300287,1.300287,1.300287,1.300287,1.300287,1.300287 +1.306412,1.306412,1.306412,1.306412,1.306412,1.306412 +1.312537,1.312537,1.312537,1.312537,1.312537,1.312537 +1.318662,1.318662,1.318662,1.318662,1.318662,1.318662 +1.324787,1.324787,1.324787,1.324787,1.324787,1.324787 +1.330912,1.330912,1.330912,1.330912,1.330912,1.330912 +1.337037,1.337037,1.337037,1.337037,1.337037,1.337037 +1.343162,1.343162,1.343162,1.343162,1.343162,1.343162 +1.349287,1.349287,1.349287,1.349287,1.349287,1.349287 +1.355412,1.355412,1.355412,1.355412,1.355412,1.355412 +1.361537,1.361537,1.361537,1.361537,1.361537,1.361537 +1.367662,1.367662,1.367662,1.367662,1.367662,1.367662 +1.373787,1.373787,1.373787,1.373787,1.373787,1.373787 +1.379912,1.379912,1.379912,1.379912,1.379912,1.379912 +1.386037,1.386037,1.386037,1.386037,1.386037,1.386037 +1.392162,1.392162,1.392162,1.392162,1.392162,1.392162 +1.398287,1.398287,1.398287,1.398287,1.398287,1.398287 +1.404412,1.404412,1.404412,1.404412,1.404412,1.404412 +1.410537,1.410537,1.410537,1.410537,1.410537,1.410537 +1.416662,1.416662,1.416662,1.416662,1.416662,1.416662 +1.422787,1.422787,1.422787,1.422787,1.422787,1.422787 +1.428912,1.428912,1.428912,1.428912,1.428912,1.428912 +1.435037,1.435037,1.435037,1.435037,1.435037,1.435037 +1.441162,1.441162,1.441162,1.441162,1.441162,1.441162 +1.447287,1.447287,1.447287,1.447287,1.447287,1.447287 +1.453412,1.453412,1.453412,1.453412,1.453412,1.453412 +1.459537,1.459537,1.459537,1.459537,1.459537,1.459537 +1.465662,1.465662,1.465662,1.465662,1.465662,1.465662 +1.471787,1.471787,1.471787,1.471787,1.471787,1.471787 +1.477912,1.477912,1.477912,1.477912,1.477912,1.477912 +1.484037,1.484037,1.484037,1.484037,1.484037,1.484037 +1.490162,1.490162,1.490162,1.490162,1.490162,1.490162 +1.496287,1.496287,1.496287,1.496287,1.496287,1.496287 +1.502412,1.502412,1.502412,1.502412,1.502412,1.502412 +1.508537,1.508537,1.508537,1.508537,1.508537,1.508537 +1.514662,1.514662,1.514662,1.514662,1.514662,1.514662 +1.520787,1.520787,1.520787,1.520787,1.520787,1.520787 +1.526912,1.526912,1.526912,1.526912,1.526912,1.526912 +1.533037,1.533037,1.533037,1.533037,1.533037,1.533037 +1.539162,1.539162,1.539162,1.539162,1.539162,1.539162 +1.545287,1.545287,1.545287,1.545287,1.545287,1.545287 +1.551412,1.551412,1.551412,1.551412,1.551412,1.551412 +1.557537,1.557537,1.557537,1.557537,1.557537,1.557537 +1.563662,1.563662,1.563662,1.563662,1.563662,1.563662 +1.569787,1.569787,1.569787,1.569787,1.569787,1.569787 +1.575912,1.575912,1.575912,1.575912,1.575912,1.575912 +1.582037,1.582037,1.582037,1.582037,1.582037,1.582037 +1.588162,1.588162,1.588162,1.588162,1.588162,1.588162 +1.594287,1.594287,1.594287,1.594287,1.594287,1.594287 +1.600412,1.600412,1.600412,1.600412,1.600412,1.600412 +1.606537,1.606537,1.606537,1.606537,1.606537,1.606537 +1.612662,1.612662,1.612662,1.612662,1.612662,1.612662 +1.618787,1.618787,1.618787,1.618787,1.618787,1.618787 +1.624912,1.624912,1.624912,1.624912,1.624912,1.624912 +1.631037,1.631037,1.631037,1.631037,1.631037,1.631037 +1.637158,1.637158,1.637158,1.637158,1.637158,1.637158 +1.643262,1.643262,1.643262,1.643262,1.643262,1.643262 +1.649329,1.649329,1.649329,1.649329,1.649329,1.649329 +1.655343,1.655343,1.655343,1.655343,1.655343,1.655343 +1.661285,1.661285,1.661285,1.661285,1.661285,1.661285 +1.66714,1.66714,1.66714,1.66714,1.66714,1.66714 +1.672888,1.672888,1.672888,1.672888,1.672888,1.672888 +1.678513,1.678513,1.678513,1.678513,1.678513,1.678513 +1.683998,1.683998,1.683998,1.683998,1.683998,1.683998 +1.689323,1.689323,1.689323,1.689323,1.689323,1.689323 +1.694473,1.694473,1.694473,1.694473,1.694473,1.694473 +1.69943,1.69943,1.69943,1.69943,1.69943,1.69943 +1.704175,1.704175,1.704175,1.704175,1.704175,1.704175 +1.708692,1.708692,1.708692,1.708692,1.708692,1.708692 +1.712963,1.712963,1.712963,1.712963,1.712963,1.712963 +1.716971,1.716971,1.716971,1.716971,1.716971,1.716971 +1.720698,1.720698,1.720698,1.720698,1.720698,1.720698 +1.724126,1.724126,1.724126,1.724126,1.724126,1.724126 +1.727238,1.727238,1.727238,1.727238,1.727238,1.727238 +1.730031,1.730031,1.730031,1.730031,1.730031,1.730031 +1.73252,1.73252,1.73252,1.73252,1.73252,1.73252 +1.734723,1.734723,1.734723,1.734723,1.734723,1.734723 +1.736657,1.736657,1.736657,1.736657,1.736657,1.736657 +1.738339,1.738339,1.738339,1.738339,1.738339,1.738339 +1.739788,1.739788,1.739788,1.739788,1.739788,1.739788 +1.74102,1.74102,1.74102,1.74102,1.74102,1.74102 +1.742054,1.742054,1.742054,1.742054,1.742054,1.742054 +1.742906,1.742906,1.742906,1.742906,1.742906,1.742906 +1.743594,1.743594,1.743594,1.743594,1.743594,1.743594 +1.744135,1.744135,1.744135,1.744135,1.744135,1.744135 +1.744548,1.744548,1.744548,1.744548,1.744548,1.744548 +1.74485,1.74485,1.74485,1.74485,1.74485,1.74485 +1.745058,1.745058,1.745058,1.745058,1.745058,1.745058 +1.745189,1.745189,1.745189,1.745189,1.745189,1.745189 +1.745261,1.745261,1.745261,1.745261,1.745261,1.745261 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745277,1.745277,1.745277,1.745277,1.745277,1.745277 +1.745221,1.745221,1.745221,1.745221,1.745221,1.745221 +1.745113,1.745113,1.745113,1.745113,1.745113,1.745113 +1.744935,1.744935,1.744935,1.744935,1.744935,1.744935 +1.74467,1.74467,1.74467,1.74467,1.74467,1.74467 +1.7443,1.7443,1.7443,1.7443,1.7443,1.7443 +1.743807,1.743807,1.743807,1.743807,1.743807,1.743807 +1.743174,1.743174,1.743174,1.743174,1.743174,1.743174 +1.742383,1.742383,1.742383,1.742383,1.742383,1.742383 +1.741418,1.741418,1.741418,1.741418,1.741418,1.741418 +1.74026,1.74026,1.74026,1.74026,1.74026,1.74026 +1.738892,1.738892,1.738892,1.738892,1.738892,1.738892 +1.737297,1.737297,1.737297,1.737297,1.737297,1.737297 +1.735456,1.735456,1.735456,1.735456,1.735456,1.735456 +1.733353,1.733353,1.733353,1.733353,1.733353,1.733353 +1.73097,1.73097,1.73097,1.73097,1.73097,1.73097 +1.72829,1.72829,1.72829,1.72829,1.72829,1.72829 +1.725295,1.725295,1.725295,1.725295,1.725295,1.725295 +1.721979,1.721979,1.721979,1.721979,1.721979,1.721979 +1.718359,1.718359,1.718359,1.718359,1.718359,1.718359 +1.714451,1.714451,1.714451,1.714451,1.714451,1.714451 +1.710274,1.710274,1.710274,1.710274,1.710274,1.710274 +1.705844,1.705844,1.705844,1.705844,1.705844,1.705844 +1.70118,1.70118,1.70118,1.70118,1.70118,1.70118 +1.696298,1.696298,1.696298,1.696298,1.696298,1.696298 +1.691217,1.691217,1.691217,1.691217,1.691217,1.691217 +1.685953,1.685953,1.685953,1.685953,1.685953,1.685953 +1.680524,1.680524,1.680524,1.680524,1.680524,1.680524 +1.674948,1.674948,1.674948,1.674948,1.674948,1.674948 +1.669243,1.669243,1.669243,1.669243,1.669243,1.669243 +1.663425,1.663425,1.663425,1.663425,1.663425,1.663425 +1.657512,1.657512,1.657512,1.657512,1.657512,1.657512 +1.651522,1.651522,1.651522,1.651522,1.651522,1.651522 +1.645472,1.645472,1.645472,1.645472,1.645472,1.645472 +1.63938,1.63938,1.63938,1.63938,1.63938,1.63938 +1.633263,1.633263,1.633263,1.633263,1.633263,1.633263 +1.627138,1.627138,1.627138,1.627138,1.627138,1.627138 +1.621013,1.621013,1.621013,1.621013,1.621013,1.621013 +1.614888,1.614888,1.614888,1.614888,1.614888,1.614888 +1.608763,1.608763,1.608763,1.608763,1.608763,1.608763 +1.602638,1.602638,1.602638,1.602638,1.602638,1.602638 +1.596513,1.596513,1.596513,1.596513,1.596513,1.596513 +1.590388,1.590388,1.590388,1.590388,1.590388,1.590388 +1.584263,1.584263,1.584263,1.584263,1.584263,1.584263 +1.578138,1.578138,1.578138,1.578138,1.578138,1.578138 +1.572013,1.572013,1.572013,1.572013,1.572013,1.572013 +1.565888,1.565888,1.565888,1.565888,1.565888,1.565888 +1.559763,1.559763,1.559763,1.559763,1.559763,1.559763 +1.553638,1.553638,1.553638,1.553638,1.553638,1.553638 +1.547513,1.547513,1.547513,1.547513,1.547513,1.547513 +1.541388,1.541388,1.541388,1.541388,1.541388,1.541388 +1.535263,1.535263,1.535263,1.535263,1.535263,1.535263 +1.529138,1.529138,1.529138,1.529138,1.529138,1.529138 +1.523013,1.523013,1.523013,1.523013,1.523013,1.523013 +1.516888,1.516888,1.516888,1.516888,1.516888,1.516888 +1.510763,1.510763,1.510763,1.510763,1.510763,1.510763 +1.504638,1.504638,1.504638,1.504638,1.504638,1.504638 +1.498513,1.498513,1.498513,1.498513,1.498513,1.498513 +1.492388,1.492388,1.492388,1.492388,1.492388,1.492388 +1.486263,1.486263,1.486263,1.486263,1.486263,1.486263 +1.480138,1.480138,1.480138,1.480138,1.480138,1.480138 +1.474013,1.474013,1.474013,1.474013,1.474013,1.474013 +1.467888,1.467888,1.467888,1.467888,1.467888,1.467888 +1.461763,1.461763,1.461763,1.461763,1.461763,1.461763 +1.455638,1.455638,1.455638,1.455638,1.455638,1.455638 +1.449513,1.449513,1.449513,1.449513,1.449513,1.449513 +1.443388,1.443388,1.443388,1.443388,1.443388,1.443388 +1.437263,1.437263,1.437263,1.437263,1.437263,1.437263 +1.431138,1.431138,1.431138,1.431138,1.431138,1.431138 +1.425013,1.425013,1.425013,1.425013,1.425013,1.425013 +1.418888,1.418888,1.418888,1.418888,1.418888,1.418888 +1.412763,1.412763,1.412763,1.412763,1.412763,1.412763 +1.406638,1.406638,1.406638,1.406638,1.406638,1.406638 +1.400513,1.400513,1.400513,1.400513,1.400513,1.400513 +1.394388,1.394388,1.394388,1.394388,1.394388,1.394388 +1.388263,1.388263,1.388263,1.388263,1.388263,1.388263 +1.382138,1.382138,1.382138,1.382138,1.382138,1.382138 +1.376013,1.376013,1.376013,1.376013,1.376013,1.376013 +1.369888,1.369888,1.369888,1.369888,1.369888,1.369888 +1.363763,1.363763,1.363763,1.363763,1.363763,1.363763 +1.357638,1.357638,1.357638,1.357638,1.357638,1.357638 +1.351513,1.351513,1.351513,1.351513,1.351513,1.351513 +1.345388,1.345388,1.345388,1.345388,1.345388,1.345388 +1.339263,1.339263,1.339263,1.339263,1.339263,1.339263 +1.333138,1.333138,1.333138,1.333138,1.333138,1.333138 +1.327013,1.327013,1.327013,1.327013,1.327013,1.327013 +1.320888,1.320888,1.320888,1.320888,1.320888,1.320888 +1.314763,1.314763,1.314763,1.314763,1.314763,1.314763 +1.308638,1.308638,1.308638,1.308638,1.308638,1.308638 +1.302513,1.302513,1.302513,1.302513,1.302513,1.302513 +1.296388,1.296388,1.296388,1.296388,1.296388,1.296388 +1.290263,1.290263,1.290263,1.290263,1.290263,1.290263 +1.284138,1.284138,1.284138,1.284138,1.284138,1.284138 +1.278013,1.278013,1.278013,1.278013,1.278013,1.278013 +1.271888,1.271888,1.271888,1.271888,1.271888,1.271888 +1.265763,1.265763,1.265763,1.265763,1.265763,1.265763 +1.259638,1.259638,1.259638,1.259638,1.259638,1.259638 +1.253513,1.253513,1.253513,1.253513,1.253513,1.253513 +1.247388,1.247388,1.247388,1.247388,1.247388,1.247388 +1.241263,1.241263,1.241263,1.241263,1.241263,1.241263 +1.235138,1.235138,1.235138,1.235138,1.235138,1.235138 +1.229013,1.229013,1.229013,1.229013,1.229013,1.229013 +1.222888,1.222888,1.222888,1.222888,1.222888,1.222888 +1.216763,1.216763,1.216763,1.216763,1.216763,1.216763 +1.210638,1.210638,1.210638,1.210638,1.210638,1.210638 +1.204513,1.204513,1.204513,1.204513,1.204513,1.204513 +1.198388,1.198388,1.198388,1.198388,1.198388,1.198388 +1.192263,1.192263,1.192263,1.192263,1.192263,1.192263 +1.186138,1.186138,1.186138,1.186138,1.186138,1.186138 +1.180013,1.180013,1.180013,1.180013,1.180013,1.180013 +1.173888,1.173888,1.173888,1.173888,1.173888,1.173888 +1.167763,1.167763,1.167763,1.167763,1.167763,1.167763 +1.161638,1.161638,1.161638,1.161638,1.161638,1.161638 +1.155513,1.155513,1.155513,1.155513,1.155513,1.155513 +1.149388,1.149388,1.149388,1.149388,1.149388,1.149388 +1.143263,1.143263,1.143263,1.143263,1.143263,1.143263 +1.137138,1.137138,1.137138,1.137138,1.137138,1.137138 +1.131013,1.131013,1.131013,1.131013,1.131013,1.131013 +1.124888,1.124888,1.124888,1.124888,1.124888,1.124888 +1.118763,1.118763,1.118763,1.118763,1.118763,1.118763 +1.112638,1.112638,1.112638,1.112638,1.112638,1.112638 +1.106513,1.106513,1.106513,1.106513,1.106513,1.106513 +1.100388,1.100388,1.100388,1.100388,1.100388,1.100388 +1.094263,1.094263,1.094263,1.094263,1.094263,1.094263 +1.088138,1.088138,1.088138,1.088138,1.088138,1.088138 +1.082013,1.082013,1.082013,1.082013,1.082013,1.082013 +1.075888,1.075888,1.075888,1.075888,1.075888,1.075888 +1.069763,1.069763,1.069763,1.069763,1.069763,1.069763 +1.063638,1.063638,1.063638,1.063638,1.063638,1.063638 +1.057513,1.057513,1.057513,1.057513,1.057513,1.057513 +1.051388,1.051388,1.051388,1.051388,1.051388,1.051388 +1.045263,1.045263,1.045263,1.045263,1.045263,1.045263 +1.039138,1.039138,1.039138,1.039138,1.039138,1.039138 +1.033013,1.033013,1.033013,1.033013,1.033013,1.033013 +1.026888,1.026888,1.026888,1.026888,1.026888,1.026888 +1.020763,1.020763,1.020763,1.020763,1.020763,1.020763 +1.014638,1.014638,1.014638,1.014638,1.014638,1.014638 +1.008513,1.008513,1.008513,1.008513,1.008513,1.008513 +1.002388,1.002388,1.002388,1.002388,1.002388,1.002388 +0.996263,0.996263,0.996263,0.996263,0.996263,0.996263 +0.990138,0.990138,0.990138,0.990138,0.990138,0.990138 +0.984013,0.984013,0.984013,0.984013,0.984013,0.984013 +0.977888,0.977888,0.977888,0.977888,0.977888,0.977888 +0.971763,0.971763,0.971763,0.971763,0.971763,0.971763 +0.965638,0.965638,0.965638,0.965638,0.965638,0.965638 +0.959513,0.959513,0.959513,0.959513,0.959513,0.959513 +0.953388,0.953388,0.953388,0.953388,0.953388,0.953388 +0.947263,0.947263,0.947263,0.947263,0.947263,0.947263 +0.941138,0.941138,0.941138,0.941138,0.941138,0.941138 +0.935013,0.935013,0.935013,0.935013,0.935013,0.935013 +0.928888,0.928888,0.928888,0.928888,0.928888,0.928888 +0.922763,0.922763,0.922763,0.922763,0.922763,0.922763 +0.916638,0.916638,0.916638,0.916638,0.916638,0.916638 +0.910513,0.910513,0.910513,0.910513,0.910513,0.910513 +0.904388,0.904388,0.904388,0.904388,0.904388,0.904388 +0.898263,0.898263,0.898263,0.898263,0.898263,0.898263 +0.892138,0.892138,0.892138,0.892138,0.892138,0.892138 +0.886013,0.886013,0.886013,0.886013,0.886013,0.886013 +0.879888,0.879888,0.879888,0.879888,0.879888,0.879888 +0.873763,0.873763,0.873763,0.873763,0.873763,0.873763 +0.867638,0.867638,0.867638,0.867638,0.867638,0.867638 +0.861513,0.861513,0.861513,0.861513,0.861513,0.861513 +0.855388,0.855388,0.855388,0.855388,0.855388,0.855388 +0.849263,0.849263,0.849263,0.849263,0.849263,0.849263 +0.843138,0.843138,0.843138,0.843138,0.843138,0.843138 +0.837013,0.837013,0.837013,0.837013,0.837013,0.837013 +0.830888,0.830888,0.830888,0.830888,0.830888,0.830888 +0.824763,0.824763,0.824763,0.824763,0.824763,0.824763 +0.818638,0.818638,0.818638,0.818638,0.818638,0.818638 +0.812513,0.812513,0.812513,0.812513,0.812513,0.812513 +0.806388,0.806388,0.806388,0.806388,0.806388,0.806388 +0.800263,0.800263,0.800263,0.800263,0.800263,0.800263 +0.794138,0.794138,0.794138,0.794138,0.794138,0.794138 +0.788013,0.788013,0.788013,0.788013,0.788013,0.788013 +0.781888,0.781888,0.781888,0.781888,0.781888,0.781888 +0.775763,0.775763,0.775763,0.775763,0.775763,0.775763 +0.769638,0.769638,0.769638,0.769638,0.769638,0.769638 +0.763513,0.763513,0.763513,0.763513,0.763513,0.763513 +0.757388,0.757388,0.757388,0.757388,0.757388,0.757388 +0.751263,0.751263,0.751263,0.751263,0.751263,0.751263 +0.745138,0.745138,0.745138,0.745138,0.745138,0.745138 +0.739013,0.739013,0.739013,0.739013,0.739013,0.739013 +0.732888,0.732888,0.732888,0.732888,0.732888,0.732888 +0.726763,0.726763,0.726763,0.726763,0.726763,0.726763 +0.720638,0.720638,0.720638,0.720638,0.720638,0.720638 +0.714513,0.714513,0.714513,0.714513,0.714513,0.714513 +0.708388,0.708388,0.708388,0.708388,0.708388,0.708388 +0.702263,0.702263,0.702263,0.702263,0.702263,0.702263 +0.696138,0.696138,0.696138,0.696138,0.696138,0.696138 +0.690013,0.690013,0.690013,0.690013,0.690013,0.690013 +0.683888,0.683888,0.683888,0.683888,0.683888,0.683888 +0.677763,0.677763,0.677763,0.677763,0.677763,0.677763 +0.671638,0.671638,0.671638,0.671638,0.671638,0.671638 +0.665513,0.665513,0.665513,0.665513,0.665513,0.665513 +0.659388,0.659388,0.659388,0.659388,0.659388,0.659388 +0.653263,0.653263,0.653263,0.653263,0.653263,0.653263 +0.647138,0.647138,0.647138,0.647138,0.647138,0.647138 +0.641013,0.641013,0.641013,0.641013,0.641013,0.641013 +0.634888,0.634888,0.634888,0.634888,0.634888,0.634888 +0.628763,0.628763,0.628763,0.628763,0.628763,0.628763 +0.622638,0.622638,0.622638,0.622638,0.622638,0.622638 +0.616513,0.616513,0.616513,0.616513,0.616513,0.616513 +0.610388,0.610388,0.610388,0.610388,0.610388,0.610388 +0.604263,0.604263,0.604263,0.604263,0.604263,0.604263 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.592013,0.592013,0.592013,0.592013,0.592013,0.592013 +0.585888,0.585888,0.585888,0.585888,0.585888,0.585888 +0.579763,0.579763,0.579763,0.579763,0.579763,0.579763 +0.573638,0.573638,0.573638,0.573638,0.573638,0.573638 +0.567513,0.567513,0.567513,0.567513,0.567513,0.567513 +0.561388,0.561388,0.561388,0.561388,0.561388,0.561388 +0.555263,0.555263,0.555263,0.555263,0.555263,0.555263 +0.549138,0.549138,0.549138,0.549138,0.549138,0.549138 +0.543013,0.543013,0.543013,0.543013,0.543013,0.543013 +0.536888,0.536888,0.536888,0.536888,0.536888,0.536888 +0.530763,0.530763,0.530763,0.530763,0.530763,0.530763 +0.524638,0.524638,0.524638,0.524638,0.524638,0.524638 +0.518513,0.518513,0.518513,0.518513,0.518513,0.518513 +0.512388,0.512388,0.512388,0.512388,0.512388,0.512388 +0.506263,0.506263,0.506263,0.506263,0.506263,0.506263 +0.500138,0.500138,0.500138,0.500138,0.500138,0.500138 +0.494013,0.494013,0.494013,0.494013,0.494013,0.494013 +0.487888,0.487888,0.487888,0.487888,0.487888,0.487888 +0.481763,0.481763,0.481763,0.481763,0.481763,0.481763 +0.475638,0.475638,0.475638,0.475638,0.475638,0.475638 +0.469513,0.469513,0.469513,0.469513,0.469513,0.469513 +0.463388,0.463388,0.463388,0.463388,0.463388,0.463388 +0.457263,0.457263,0.457263,0.457263,0.457263,0.457263 +0.451138,0.451138,0.451138,0.451138,0.451138,0.451138 +0.445013,0.445013,0.445013,0.445013,0.445013,0.445013 +0.438888,0.438888,0.438888,0.438888,0.438888,0.438888 +0.432763,0.432763,0.432763,0.432763,0.432763,0.432763 +0.426638,0.426638,0.426638,0.426638,0.426638,0.426638 +0.420513,0.420513,0.420513,0.420513,0.420513,0.420513 +0.414388,0.414388,0.414388,0.414388,0.414388,0.414388 +0.408263,0.408263,0.408263,0.408263,0.408263,0.408263 +0.402138,0.402138,0.402138,0.402138,0.402138,0.402138 +0.396013,0.396013,0.396013,0.396013,0.396013,0.396013 +0.389888,0.389888,0.389888,0.389888,0.389888,0.389888 +0.383763,0.383763,0.383763,0.383763,0.383763,0.383763 +0.377638,0.377638,0.377638,0.377638,0.377638,0.377638 +0.371513,0.371513,0.371513,0.371513,0.371513,0.371513 +0.365388,0.365388,0.365388,0.365388,0.365388,0.365388 +0.359263,0.359263,0.359263,0.359263,0.359263,0.359263 +0.353138,0.353138,0.353138,0.353138,0.353138,0.353138 +0.347013,0.347013,0.347013,0.347013,0.347013,0.347013 +0.340888,0.340888,0.340888,0.340888,0.340888,0.340888 +0.334763,0.334763,0.334763,0.334763,0.334763,0.334763 +0.328638,0.328638,0.328638,0.328638,0.328638,0.328638 +0.322513,0.322513,0.322513,0.322513,0.322513,0.322513 +0.316388,0.316388,0.316388,0.316388,0.316388,0.316388 +0.310263,0.310263,0.310263,0.310263,0.310263,0.310263 +0.304138,0.304138,0.304138,0.304138,0.304138,0.304138 +0.298013,0.298013,0.298013,0.298013,0.298013,0.298013 +0.291888,0.291888,0.291888,0.291888,0.291888,0.291888 +0.285763,0.285763,0.285763,0.285763,0.285763,0.285763 +0.279638,0.279638,0.279638,0.279638,0.279638,0.279638 +0.273513,0.273513,0.273513,0.273513,0.273513,0.273513 +0.267388,0.267388,0.267388,0.267388,0.267388,0.267388 +0.261263,0.261263,0.261263,0.261263,0.261263,0.261263 +0.255138,0.255138,0.255138,0.255138,0.255138,0.255138 +0.249013,0.249013,0.249013,0.249013,0.249013,0.249013 +0.242888,0.242888,0.242888,0.242888,0.242888,0.242888 +0.236763,0.236763,0.236763,0.236763,0.236763,0.236763 +0.230638,0.230638,0.230638,0.230638,0.230638,0.230638 +0.224513,0.224513,0.224513,0.224513,0.224513,0.224513 +0.218388,0.218388,0.218388,0.218388,0.218388,0.218388 +0.212263,0.212263,0.212263,0.212263,0.212263,0.212263 +0.206138,0.206138,0.206138,0.206138,0.206138,0.206138 +0.200013,0.200013,0.200013,0.200013,0.200013,0.200013 +0.193888,0.193888,0.193888,0.193888,0.193888,0.193888 +0.187763,0.187763,0.187763,0.187763,0.187763,0.187763 +0.181638,0.181638,0.181638,0.181638,0.181638,0.181638 +0.175513,0.175513,0.175513,0.175513,0.175513,0.175513 +0.169388,0.169388,0.169388,0.169388,0.169388,0.169388 +0.163263,0.163263,0.163263,0.163263,0.163263,0.163263 +0.157138,0.157138,0.157138,0.157138,0.157138,0.157138 +0.151013,0.151013,0.151013,0.151013,0.151013,0.151013 +0.144888,0.144888,0.144888,0.144888,0.144888,0.144888 +0.138763,0.138763,0.138763,0.138763,0.138763,0.138763 +0.132638,0.132638,0.132638,0.132638,0.132638,0.132638 +0.126513,0.126513,0.126513,0.126513,0.126513,0.126513 +0.120388,0.120388,0.120388,0.120388,0.120388,0.120388 +0.114263,0.114263,0.114263,0.114263,0.114263,0.114263 +0.108142,0.108142,0.108142,0.108142,0.108142,0.108142 +0.102038,0.102038,0.102038,0.102038,0.102038,0.102038 +0.095971,0.095971,0.095971,0.095971,0.095971,0.095971 +0.089957,0.089957,0.089957,0.089957,0.089957,0.089957 +0.084015,0.084015,0.084015,0.084015,0.084015,0.084015 +0.07816,0.07816,0.07816,0.07816,0.07816,0.07816 +0.072412,0.072412,0.072412,0.072412,0.072412,0.072412 +0.066787,0.066787,0.066787,0.066787,0.066787,0.066787 +0.061302,0.061302,0.061302,0.061302,0.061302,0.061302 +0.055977,0.055977,0.055977,0.055977,0.055977,0.055977 +0.050827,0.050827,0.050827,0.050827,0.050827,0.050827 +0.04587,0.04587,0.04587,0.04587,0.04587,0.04587 +0.041125,0.041125,0.041125,0.041125,0.041125,0.041125 +0.036608,0.036608,0.036608,0.036608,0.036608,0.036608 +0.032337,0.032337,0.032337,0.032337,0.032337,0.032337 +0.028329,0.028329,0.028329,0.028329,0.028329,0.028329 +0.024602,0.024602,0.024602,0.024602,0.024602,0.024602 +0.021174,0.021174,0.021174,0.021174,0.021174,0.021174 +0.018062,0.018062,0.018062,0.018062,0.018062,0.018062 +0.015269,0.015269,0.015269,0.015269,0.015269,0.015269 +0.01278,0.01278,0.01278,0.01278,0.01278,0.01278 +0.010577,0.010577,0.010577,0.010577,0.010577,0.010577 +0.008643,0.008643,0.008643,0.008643,0.008643,0.008643 +0.006961,0.006961,0.006961,0.006961,0.006961,0.006961 +0.005512,0.005512,0.005512,0.005512,0.005512,0.005512 +0.00428,0.00428,0.00428,0.00428,0.00428,0.00428 +0.003246,0.003246,0.003246,0.003246,0.003246,0.003246 +0.002394,0.002394,0.002394,0.002394,0.002394,0.002394 +0.001706,0.001706,0.001706,0.001706,0.001706,0.001706 +0.001165,0.001165,0.001165,0.001165,0.001165,0.001165 +0.000752,0.000752,0.000752,0.000752,0.000752,0.000752 +0.00045,0.00045,0.00045,0.00045,0.00045,0.00045 +0.000242,0.000242,0.000242,0.000242,0.000242,0.000242 +0.000111,0.000111,0.000111,0.000111,0.000111,0.000111 +0.000039,0.000039,0.000039,0.000039,0.000039,0.000039 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000023,-0.000023,-0.000023,-0.000023,-0.000023,-0.000023 +-0.000079,-0.000079,-0.000079,-0.000079,-0.000079,-0.000079 +-0.000187,-0.000187,-0.000187,-0.000187,-0.000187,-0.000187 +-0.000365,-0.000365,-0.000365,-0.000365,-0.000365,-0.000365 +-0.00063,-0.00063,-0.00063,-0.00063,-0.00063,-0.00063 +-0.001,-0.001,-0.001,-0.001,-0.001,-0.001 +-0.001493,-0.001493,-0.001493,-0.001493,-0.001493,-0.001493 +-0.002126,-0.002126,-0.002126,-0.002126,-0.002126,-0.002126 +-0.002917,-0.002917,-0.002917,-0.002917,-0.002917,-0.002917 +-0.003882,-0.003882,-0.003882,-0.003882,-0.003882,-0.003882 +-0.00504,-0.00504,-0.00504,-0.00504,-0.00504,-0.00504 +-0.006408,-0.006408,-0.006408,-0.006408,-0.006408,-0.006408 +-0.008003,-0.008003,-0.008003,-0.008003,-0.008003,-0.008003 +-0.009844,-0.009844,-0.009844,-0.009844,-0.009844,-0.009844 +-0.011947,-0.011947,-0.011947,-0.011947,-0.011947,-0.011947 +-0.01433,-0.01433,-0.01433,-0.01433,-0.01433,-0.01433 +-0.01701,-0.01701,-0.01701,-0.01701,-0.01701,-0.01701 +-0.020005,-0.020005,-0.020005,-0.020005,-0.020005,-0.020005 +-0.023321,-0.023321,-0.023321,-0.023321,-0.023321,-0.023321 +-0.026941,-0.026941,-0.026941,-0.026941,-0.026941,-0.026941 +-0.030849,-0.030849,-0.030849,-0.030849,-0.030849,-0.030849 +-0.035026,-0.035026,-0.035026,-0.035026,-0.035026,-0.035026 +-0.039456,-0.039456,-0.039456,-0.039456,-0.039456,-0.039456 +-0.04412,-0.04412,-0.04412,-0.04412,-0.04412,-0.04412 +-0.049002,-0.049002,-0.049002,-0.049002,-0.049002,-0.049002 +-0.054083,-0.054083,-0.054083,-0.054083,-0.054083,-0.054083 +-0.059347,-0.059347,-0.059347,-0.059347,-0.059347,-0.059347 +-0.064776,-0.064776,-0.064776,-0.064776,-0.064776,-0.064776 +-0.070352,-0.070352,-0.070352,-0.070352,-0.070352,-0.070352 +-0.076057,-0.076057,-0.076057,-0.076057,-0.076057,-0.076057 +-0.081875,-0.081875,-0.081875,-0.081875,-0.081875,-0.081875 +-0.087788,-0.087788,-0.087788,-0.087788,-0.087788,-0.087788 +-0.093778,-0.093778,-0.093778,-0.093778,-0.093778,-0.093778 +-0.099828,-0.099828,-0.099828,-0.099828,-0.099828,-0.099828 +-0.10592,-0.10592,-0.10592,-0.10592,-0.10592,-0.10592 +-0.112037,-0.112037,-0.112037,-0.112037,-0.112037,-0.112037 +-0.118162,-0.118162,-0.118162,-0.118162,-0.118162,-0.118162 +-0.124287,-0.124287,-0.124287,-0.124287,-0.124287,-0.124287 +-0.130412,-0.130412,-0.130412,-0.130412,-0.130412,-0.130412 +-0.136537,-0.136537,-0.136537,-0.136537,-0.136537,-0.136537 +-0.142662,-0.142662,-0.142662,-0.142662,-0.142662,-0.142662 +-0.148787,-0.148787,-0.148787,-0.148787,-0.148787,-0.148787 +-0.154912,-0.154912,-0.154912,-0.154912,-0.154912,-0.154912 +-0.161037,-0.161037,-0.161037,-0.161037,-0.161037,-0.161037 +-0.167162,-0.167162,-0.167162,-0.167162,-0.167162,-0.167162 +-0.173287,-0.173287,-0.173287,-0.173287,-0.173287,-0.173287 +-0.179412,-0.179412,-0.179412,-0.179412,-0.179412,-0.179412 +-0.185537,-0.185537,-0.185537,-0.185537,-0.185537,-0.185537 +-0.191662,-0.191662,-0.191662,-0.191662,-0.191662,-0.191662 +-0.197787,-0.197787,-0.197787,-0.197787,-0.197787,-0.197787 +-0.203912,-0.203912,-0.203912,-0.203912,-0.203912,-0.203912 +-0.210037,-0.210037,-0.210037,-0.210037,-0.210037,-0.210037 +-0.216162,-0.216162,-0.216162,-0.216162,-0.216162,-0.216162 +-0.222287,-0.222287,-0.222287,-0.222287,-0.222287,-0.222287 +-0.228412,-0.228412,-0.228412,-0.228412,-0.228412,-0.228412 +-0.234537,-0.234537,-0.234537,-0.234537,-0.234537,-0.234537 +-0.240662,-0.240662,-0.240662,-0.240662,-0.240662,-0.240662 +-0.246787,-0.246787,-0.246787,-0.246787,-0.246787,-0.246787 +-0.252912,-0.252912,-0.252912,-0.252912,-0.252912,-0.252912 +-0.259037,-0.259037,-0.259037,-0.259037,-0.259037,-0.259037 +-0.265162,-0.265162,-0.265162,-0.265162,-0.265162,-0.265162 +-0.271287,-0.271287,-0.271287,-0.271287,-0.271287,-0.271287 +-0.277412,-0.277412,-0.277412,-0.277412,-0.277412,-0.277412 +-0.283537,-0.283537,-0.283537,-0.283537,-0.283537,-0.283537 +-0.289662,-0.289662,-0.289662,-0.289662,-0.289662,-0.289662 +-0.295787,-0.295787,-0.295787,-0.295787,-0.295787,-0.295787 +-0.301912,-0.301912,-0.301912,-0.301912,-0.301912,-0.301912 +-0.308037,-0.308037,-0.308037,-0.308037,-0.308037,-0.308037 +-0.314162,-0.314162,-0.314162,-0.314162,-0.314162,-0.314162 +-0.320287,-0.320287,-0.320287,-0.320287,-0.320287,-0.320287 +-0.326412,-0.326412,-0.326412,-0.326412,-0.326412,-0.326412 +-0.332537,-0.332537,-0.332537,-0.332537,-0.332537,-0.332537 +-0.338662,-0.338662,-0.338662,-0.338662,-0.338662,-0.338662 +-0.344787,-0.344787,-0.344787,-0.344787,-0.344787,-0.344787 +-0.350912,-0.350912,-0.350912,-0.350912,-0.350912,-0.350912 +-0.357037,-0.357037,-0.357037,-0.357037,-0.357037,-0.357037 +-0.363162,-0.363162,-0.363162,-0.363162,-0.363162,-0.363162 +-0.369287,-0.369287,-0.369287,-0.369287,-0.369287,-0.369287 +-0.375412,-0.375412,-0.375412,-0.375412,-0.375412,-0.375412 +-0.381537,-0.381537,-0.381537,-0.381537,-0.381537,-0.381537 +-0.387662,-0.387662,-0.387662,-0.387662,-0.387662,-0.387662 +-0.393787,-0.393787,-0.393787,-0.393787,-0.393787,-0.393787 +-0.399912,-0.399912,-0.399912,-0.399912,-0.399912,-0.399912 +-0.406037,-0.406037,-0.406037,-0.406037,-0.406037,-0.406037 +-0.412162,-0.412162,-0.412162,-0.412162,-0.412162,-0.412162 +-0.418287,-0.418287,-0.418287,-0.418287,-0.418287,-0.418287 +-0.424412,-0.424412,-0.424412,-0.424412,-0.424412,-0.424412 +-0.430537,-0.430537,-0.430537,-0.430537,-0.430537,-0.430537 +-0.436662,-0.436662,-0.436662,-0.436662,-0.436662,-0.436662 +-0.442787,-0.442787,-0.442787,-0.442787,-0.442787,-0.442787 +-0.448912,-0.448912,-0.448912,-0.448912,-0.448912,-0.448912 +-0.455037,-0.455037,-0.455037,-0.455037,-0.455037,-0.455037 +-0.461162,-0.461162,-0.461162,-0.461162,-0.461162,-0.461162 +-0.467287,-0.467287,-0.467287,-0.467287,-0.467287,-0.467287 +-0.473412,-0.473412,-0.473412,-0.473412,-0.473412,-0.473412 +-0.479537,-0.479537,-0.479537,-0.479537,-0.479537,-0.479537 +-0.485662,-0.485662,-0.485662,-0.485662,-0.485662,-0.485662 +-0.491787,-0.491787,-0.491787,-0.491787,-0.491787,-0.491787 +-0.497912,-0.497912,-0.497912,-0.497912,-0.497912,-0.497912 +-0.504037,-0.504037,-0.504037,-0.504037,-0.504037,-0.504037 +-0.510162,-0.510162,-0.510162,-0.510162,-0.510162,-0.510162 +-0.516287,-0.516287,-0.516287,-0.516287,-0.516287,-0.516287 +-0.522412,-0.522412,-0.522412,-0.522412,-0.522412,-0.522412 +-0.528537,-0.528537,-0.528537,-0.528537,-0.528537,-0.528537 +-0.534662,-0.534662,-0.534662,-0.534662,-0.534662,-0.534662 +-0.540787,-0.540787,-0.540787,-0.540787,-0.540787,-0.540787 +-0.546912,-0.546912,-0.546912,-0.546912,-0.546912,-0.546912 +-0.553037,-0.553037,-0.553037,-0.553037,-0.553037,-0.553037 +-0.559162,-0.559162,-0.559162,-0.559162,-0.559162,-0.559162 +-0.565287,-0.565287,-0.565287,-0.565287,-0.565287,-0.565287 +-0.571412,-0.571412,-0.571412,-0.571412,-0.571412,-0.571412 +-0.577537,-0.577537,-0.577537,-0.577537,-0.577537,-0.577537 +-0.583662,-0.583662,-0.583662,-0.583662,-0.583662,-0.583662 +-0.589787,-0.589787,-0.589787,-0.589787,-0.589787,-0.589787 +-0.595912,-0.595912,-0.595912,-0.595912,-0.595912,-0.595912 +-0.602037,-0.602037,-0.602037,-0.602037,-0.602037,-0.602037 +-0.608162,-0.608162,-0.608162,-0.608162,-0.608162,-0.608162 +-0.614287,-0.614287,-0.614287,-0.614287,-0.614287,-0.614287 +-0.620412,-0.620412,-0.620412,-0.620412,-0.620412,-0.620412 +-0.626537,-0.626537,-0.626537,-0.626537,-0.626537,-0.626537 +-0.632662,-0.632662,-0.632662,-0.632662,-0.632662,-0.632662 +-0.638787,-0.638787,-0.638787,-0.638787,-0.638787,-0.638787 +-0.644912,-0.644912,-0.644912,-0.644912,-0.644912,-0.644912 +-0.651037,-0.651037,-0.651037,-0.651037,-0.651037,-0.651037 +-0.657162,-0.657162,-0.657162,-0.657162,-0.657162,-0.657162 +-0.663287,-0.663287,-0.663287,-0.663287,-0.663287,-0.663287 +-0.669412,-0.669412,-0.669412,-0.669412,-0.669412,-0.669412 +-0.675537,-0.675537,-0.675537,-0.675537,-0.675537,-0.675537 +-0.681662,-0.681662,-0.681662,-0.681662,-0.681662,-0.681662 +-0.687787,-0.687787,-0.687787,-0.687787,-0.687787,-0.687787 +-0.693912,-0.693912,-0.693912,-0.693912,-0.693912,-0.693912 +-0.700037,-0.700037,-0.700037,-0.700037,-0.700037,-0.700037 +-0.706162,-0.706162,-0.706162,-0.706162,-0.706162,-0.706162 +-0.712287,-0.712287,-0.712287,-0.712287,-0.712287,-0.712287 +-0.718412,-0.718412,-0.718412,-0.718412,-0.718412,-0.718412 +-0.724537,-0.724537,-0.724537,-0.724537,-0.724537,-0.724537 +-0.730662,-0.730662,-0.730662,-0.730662,-0.730662,-0.730662 +-0.736787,-0.736787,-0.736787,-0.736787,-0.736787,-0.736787 +-0.742912,-0.742912,-0.742912,-0.742912,-0.742912,-0.742912 +-0.749037,-0.749037,-0.749037,-0.749037,-0.749037,-0.749037 +-0.755162,-0.755162,-0.755162,-0.755162,-0.755162,-0.755162 +-0.761287,-0.761287,-0.761287,-0.761287,-0.761287,-0.761287 +-0.767412,-0.767412,-0.767412,-0.767412,-0.767412,-0.767412 +-0.773537,-0.773537,-0.773537,-0.773537,-0.773537,-0.773537 +-0.779662,-0.779662,-0.779662,-0.779662,-0.779662,-0.779662 +-0.785787,-0.785787,-0.785787,-0.785787,-0.785787,-0.785787 +-0.791912,-0.791912,-0.791912,-0.791912,-0.791912,-0.791912 +-0.798037,-0.798037,-0.798037,-0.798037,-0.798037,-0.798037 +-0.804162,-0.804162,-0.804162,-0.804162,-0.804162,-0.804162 +-0.810287,-0.810287,-0.810287,-0.810287,-0.810287,-0.810287 +-0.816412,-0.816412,-0.816412,-0.816412,-0.816412,-0.816412 +-0.822537,-0.822537,-0.822537,-0.822537,-0.822537,-0.822537 +-0.828662,-0.828662,-0.828662,-0.828662,-0.828662,-0.828662 +-0.834787,-0.834787,-0.834787,-0.834787,-0.834787,-0.834787 +-0.840912,-0.840912,-0.840912,-0.840912,-0.840912,-0.840912 +-0.847037,-0.847037,-0.847037,-0.847037,-0.847037,-0.847037 +-0.853162,-0.853162,-0.853162,-0.853162,-0.853162,-0.853162 +-0.859287,-0.859287,-0.859287,-0.859287,-0.859287,-0.859287 +-0.865412,-0.865412,-0.865412,-0.865412,-0.865412,-0.865412 +-0.871537,-0.871537,-0.871537,-0.871537,-0.871537,-0.871537 +-0.877662,-0.877662,-0.877662,-0.877662,-0.877662,-0.877662 +-0.883787,-0.883787,-0.883787,-0.883787,-0.883787,-0.883787 +-0.889912,-0.889912,-0.889912,-0.889912,-0.889912,-0.889912 +-0.896037,-0.896037,-0.896037,-0.896037,-0.896037,-0.896037 +-0.902162,-0.902162,-0.902162,-0.902162,-0.902162,-0.902162 +-0.908287,-0.908287,-0.908287,-0.908287,-0.908287,-0.908287 +-0.914412,-0.914412,-0.914412,-0.914412,-0.914412,-0.914412 +-0.920537,-0.920537,-0.920537,-0.920537,-0.920537,-0.920537 +-0.926662,-0.926662,-0.926662,-0.926662,-0.926662,-0.926662 +-0.932787,-0.932787,-0.932787,-0.932787,-0.932787,-0.932787 +-0.938912,-0.938912,-0.938912,-0.938912,-0.938912,-0.938912 +-0.945037,-0.945037,-0.945037,-0.945037,-0.945037,-0.945037 +-0.951162,-0.951162,-0.951162,-0.951162,-0.951162,-0.951162 +-0.957287,-0.957287,-0.957287,-0.957287,-0.957287,-0.957287 +-0.963412,-0.963412,-0.963412,-0.963412,-0.963412,-0.963412 +-0.969537,-0.969537,-0.969537,-0.969537,-0.969537,-0.969537 +-0.975662,-0.975662,-0.975662,-0.975662,-0.975662,-0.975662 +-0.981787,-0.981787,-0.981787,-0.981787,-0.981787,-0.981787 +-0.987912,-0.987912,-0.987912,-0.987912,-0.987912,-0.987912 +-0.994037,-0.994037,-0.994037,-0.994037,-0.994037,-0.994037 +-1.000162,-1.000162,-1.000162,-1.000162,-1.000162,-1.000162 +-1.006287,-1.006287,-1.006287,-1.006287,-1.006287,-1.006287 +-1.012412,-1.012412,-1.012412,-1.012412,-1.012412,-1.012412 +-1.018537,-1.018537,-1.018537,-1.018537,-1.018537,-1.018537 +-1.024662,-1.024662,-1.024662,-1.024662,-1.024662,-1.024662 +-1.030787,-1.030787,-1.030787,-1.030787,-1.030787,-1.030787 +-1.036912,-1.036912,-1.036912,-1.036912,-1.036912,-1.036912 +-1.043037,-1.043037,-1.043037,-1.043037,-1.043037,-1.043037 +-1.049162,-1.049162,-1.049162,-1.049162,-1.049162,-1.049162 +-1.055287,-1.055287,-1.055287,-1.055287,-1.055287,-1.055287 +-1.061412,-1.061412,-1.061412,-1.061412,-1.061412,-1.061412 +-1.067537,-1.067537,-1.067537,-1.067537,-1.067537,-1.067537 +-1.073662,-1.073662,-1.073662,-1.073662,-1.073662,-1.073662 +-1.079787,-1.079787,-1.079787,-1.079787,-1.079787,-1.079787 +-1.085912,-1.085912,-1.085912,-1.085912,-1.085912,-1.085912 +-1.092037,-1.092037,-1.092037,-1.092037,-1.092037,-1.092037 +-1.098162,-1.098162,-1.098162,-1.098162,-1.098162,-1.098162 +-1.104287,-1.104287,-1.104287,-1.104287,-1.104287,-1.104287 +-1.110412,-1.110412,-1.110412,-1.110412,-1.110412,-1.110412 +-1.116537,-1.116537,-1.116537,-1.116537,-1.116537,-1.116537 +-1.122662,-1.122662,-1.122662,-1.122662,-1.122662,-1.122662 +-1.128787,-1.128787,-1.128787,-1.128787,-1.128787,-1.128787 +-1.134912,-1.134912,-1.134912,-1.134912,-1.134912,-1.134912 +-1.141037,-1.141037,-1.141037,-1.141037,-1.141037,-1.141037 +-1.147162,-1.147162,-1.147162,-1.147162,-1.147162,-1.147162 +-1.153287,-1.153287,-1.153287,-1.153287,-1.153287,-1.153287 +-1.159412,-1.159412,-1.159412,-1.159412,-1.159412,-1.159412 +-1.165537,-1.165537,-1.165537,-1.165537,-1.165537,-1.165537 +-1.171662,-1.171662,-1.171662,-1.171662,-1.171662,-1.171662 +-1.177787,-1.177787,-1.177787,-1.177787,-1.177787,-1.177787 +-1.183912,-1.183912,-1.183912,-1.183912,-1.183912,-1.183912 +-1.190037,-1.190037,-1.190037,-1.190037,-1.190037,-1.190037 +-1.196162,-1.196162,-1.196162,-1.196162,-1.196162,-1.196162 +-1.202287,-1.202287,-1.202287,-1.202287,-1.202287,-1.202287 +-1.208412,-1.208412,-1.208412,-1.208412,-1.208412,-1.208412 +-1.214537,-1.214537,-1.214537,-1.214537,-1.214537,-1.214537 +-1.220662,-1.220662,-1.220662,-1.220662,-1.220662,-1.220662 +-1.226787,-1.226787,-1.226787,-1.226787,-1.226787,-1.226787 +-1.232912,-1.232912,-1.232912,-1.232912,-1.232912,-1.232912 +-1.239037,-1.239037,-1.239037,-1.239037,-1.239037,-1.239037 +-1.245162,-1.245162,-1.245162,-1.245162,-1.245162,-1.245162 +-1.251287,-1.251287,-1.251287,-1.251287,-1.251287,-1.251287 +-1.257412,-1.257412,-1.257412,-1.257412,-1.257412,-1.257412 +-1.263537,-1.263537,-1.263537,-1.263537,-1.263537,-1.263537 +-1.269662,-1.269662,-1.269662,-1.269662,-1.269662,-1.269662 +-1.275787,-1.275787,-1.275787,-1.275787,-1.275787,-1.275787 +-1.281912,-1.281912,-1.281912,-1.281912,-1.281912,-1.281912 +-1.288037,-1.288037,-1.288037,-1.288037,-1.288037,-1.288037 +-1.294162,-1.294162,-1.294162,-1.294162,-1.294162,-1.294162 +-1.300287,-1.300287,-1.300287,-1.300287,-1.300287,-1.300287 +-1.306412,-1.306412,-1.306412,-1.306412,-1.306412,-1.306412 +-1.312537,-1.312537,-1.312537,-1.312537,-1.312537,-1.312537 +-1.318662,-1.318662,-1.318662,-1.318662,-1.318662,-1.318662 +-1.324787,-1.324787,-1.324787,-1.324787,-1.324787,-1.324787 +-1.330912,-1.330912,-1.330912,-1.330912,-1.330912,-1.330912 +-1.337037,-1.337037,-1.337037,-1.337037,-1.337037,-1.337037 +-1.343162,-1.343162,-1.343162,-1.343162,-1.343162,-1.343162 +-1.349287,-1.349287,-1.349287,-1.349287,-1.349287,-1.349287 +-1.355412,-1.355412,-1.355412,-1.355412,-1.355412,-1.355412 +-1.361537,-1.361537,-1.361537,-1.361537,-1.361537,-1.361537 +-1.367662,-1.367662,-1.367662,-1.367662,-1.367662,-1.367662 +-1.373787,-1.373787,-1.373787,-1.373787,-1.373787,-1.373787 +-1.379912,-1.379912,-1.379912,-1.379912,-1.379912,-1.379912 +-1.386037,-1.386037,-1.386037,-1.386037,-1.386037,-1.386037 +-1.392162,-1.392162,-1.392162,-1.392162,-1.392162,-1.392162 +-1.398287,-1.398287,-1.398287,-1.398287,-1.398287,-1.398287 +-1.404412,-1.404412,-1.404412,-1.404412,-1.404412,-1.404412 +-1.410537,-1.410537,-1.410537,-1.410537,-1.410537,-1.410537 +-1.416662,-1.416662,-1.416662,-1.416662,-1.416662,-1.416662 +-1.422787,-1.422787,-1.422787,-1.422787,-1.422787,-1.422787 +-1.428912,-1.428912,-1.428912,-1.428912,-1.428912,-1.428912 +-1.435037,-1.435037,-1.435037,-1.435037,-1.435037,-1.435037 +-1.441162,-1.441162,-1.441162,-1.441162,-1.441162,-1.441162 +-1.447287,-1.447287,-1.447287,-1.447287,-1.447287,-1.447287 +-1.453412,-1.453412,-1.453412,-1.453412,-1.453412,-1.453412 +-1.459537,-1.459537,-1.459537,-1.459537,-1.459537,-1.459537 +-1.465662,-1.465662,-1.465662,-1.465662,-1.465662,-1.465662 +-1.471787,-1.471787,-1.471787,-1.471787,-1.471787,-1.471787 +-1.477912,-1.477912,-1.477912,-1.477912,-1.477912,-1.477912 +-1.484037,-1.484037,-1.484037,-1.484037,-1.484037,-1.484037 +-1.490162,-1.490162,-1.490162,-1.490162,-1.490162,-1.490162 +-1.496287,-1.496287,-1.496287,-1.496287,-1.496287,-1.496287 +-1.502412,-1.502412,-1.502412,-1.502412,-1.502412,-1.502412 +-1.508537,-1.508537,-1.508537,-1.508537,-1.508537,-1.508537 +-1.514662,-1.514662,-1.514662,-1.514662,-1.514662,-1.514662 +-1.520787,-1.520787,-1.520787,-1.520787,-1.520787,-1.520787 +-1.526912,-1.526912,-1.526912,-1.526912,-1.526912,-1.526912 +-1.533037,-1.533037,-1.533037,-1.533037,-1.533037,-1.533037 +-1.539162,-1.539162,-1.539162,-1.539162,-1.539162,-1.539162 +-1.545287,-1.545287,-1.545287,-1.545287,-1.545287,-1.545287 +-1.551412,-1.551412,-1.551412,-1.551412,-1.551412,-1.551412 +-1.557537,-1.557537,-1.557537,-1.557537,-1.557537,-1.557537 +-1.563662,-1.563662,-1.563662,-1.563662,-1.563662,-1.563662 +-1.569787,-1.569787,-1.569787,-1.569787,-1.569787,-1.569787 +-1.575912,-1.575912,-1.575912,-1.575912,-1.575912,-1.575912 +-1.582037,-1.582037,-1.582037,-1.582037,-1.582037,-1.582037 +-1.588162,-1.588162,-1.588162,-1.588162,-1.588162,-1.588162 +-1.594287,-1.594287,-1.594287,-1.594287,-1.594287,-1.594287 +-1.600412,-1.600412,-1.600412,-1.600412,-1.600412,-1.600412 +-1.606537,-1.606537,-1.606537,-1.606537,-1.606537,-1.606537 +-1.612662,-1.612662,-1.612662,-1.612662,-1.612662,-1.612662 +-1.618787,-1.618787,-1.618787,-1.618787,-1.618787,-1.618787 +-1.624912,-1.624912,-1.624912,-1.624912,-1.624912,-1.624912 +-1.631037,-1.631037,-1.631037,-1.631037,-1.631037,-1.631037 +-1.637158,-1.637158,-1.637158,-1.637158,-1.637158,-1.637158 +-1.643262,-1.643262,-1.643262,-1.643262,-1.643262,-1.643262 +-1.649329,-1.649329,-1.649329,-1.649329,-1.649329,-1.649329 +-1.655343,-1.655343,-1.655343,-1.655343,-1.655343,-1.655343 +-1.661285,-1.661285,-1.661285,-1.661285,-1.661285,-1.661285 +-1.66714,-1.66714,-1.66714,-1.66714,-1.66714,-1.66714 +-1.672888,-1.672888,-1.672888,-1.672888,-1.672888,-1.672888 +-1.678513,-1.678513,-1.678513,-1.678513,-1.678513,-1.678513 +-1.683998,-1.683998,-1.683998,-1.683998,-1.683998,-1.683998 +-1.689323,-1.689323,-1.689323,-1.689323,-1.689323,-1.689323 +-1.694473,-1.694473,-1.694473,-1.694473,-1.694473,-1.694473 +-1.69943,-1.69943,-1.69943,-1.69943,-1.69943,-1.69943 +-1.704175,-1.704175,-1.704175,-1.704175,-1.704175,-1.704175 +-1.708692,-1.708692,-1.708692,-1.708692,-1.708692,-1.708692 +-1.712963,-1.712963,-1.712963,-1.712963,-1.712963,-1.712963 +-1.716971,-1.716971,-1.716971,-1.716971,-1.716971,-1.716971 +-1.720698,-1.720698,-1.720698,-1.720698,-1.720698,-1.720698 +-1.724126,-1.724126,-1.724126,-1.724126,-1.724126,-1.724126 +-1.727238,-1.727238,-1.727238,-1.727238,-1.727238,-1.727238 +-1.730031,-1.730031,-1.730031,-1.730031,-1.730031,-1.730031 +-1.73252,-1.73252,-1.73252,-1.73252,-1.73252,-1.73252 +-1.734723,-1.734723,-1.734723,-1.734723,-1.734723,-1.734723 +-1.736657,-1.736657,-1.736657,-1.736657,-1.736657,-1.736657 +-1.738339,-1.738339,-1.738339,-1.738339,-1.738339,-1.738339 +-1.739788,-1.739788,-1.739788,-1.739788,-1.739788,-1.739788 +-1.74102,-1.74102,-1.74102,-1.74102,-1.74102,-1.74102 +-1.742054,-1.742054,-1.742054,-1.742054,-1.742054,-1.742054 +-1.742906,-1.742906,-1.742906,-1.742906,-1.742906,-1.742906 +-1.743594,-1.743594,-1.743594,-1.743594,-1.743594,-1.743594 +-1.744135,-1.744135,-1.744135,-1.744135,-1.744135,-1.744135 +-1.744548,-1.744548,-1.744548,-1.744548,-1.744548,-1.744548 +-1.74485,-1.74485,-1.74485,-1.74485,-1.74485,-1.74485 +-1.745058,-1.745058,-1.745058,-1.745058,-1.745058,-1.745058 +-1.745189,-1.745189,-1.745189,-1.745189,-1.745189,-1.745189 +-1.745261,-1.745261,-1.745261,-1.745261,-1.745261,-1.745261 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745277,-1.745277,-1.745277,-1.745277,-1.745277,-1.745277 +-1.745221,-1.745221,-1.745221,-1.745221,-1.745221,-1.745221 +-1.745113,-1.745113,-1.745113,-1.745113,-1.745113,-1.745113 +-1.744935,-1.744935,-1.744935,-1.744935,-1.744935,-1.744935 +-1.74467,-1.74467,-1.74467,-1.74467,-1.74467,-1.74467 +-1.7443,-1.7443,-1.7443,-1.7443,-1.7443,-1.7443 +-1.743807,-1.743807,-1.743807,-1.743807,-1.743807,-1.743807 +-1.743174,-1.743174,-1.743174,-1.743174,-1.743174,-1.743174 +-1.742383,-1.742383,-1.742383,-1.742383,-1.742383,-1.742383 +-1.741418,-1.741418,-1.741418,-1.741418,-1.741418,-1.741418 +-1.74026,-1.74026,-1.74026,-1.74026,-1.74026,-1.74026 +-1.738892,-1.738892,-1.738892,-1.738892,-1.738892,-1.738892 +-1.737297,-1.737297,-1.737297,-1.737297,-1.737297,-1.737297 +-1.735456,-1.735456,-1.735456,-1.735456,-1.735456,-1.735456 +-1.733353,-1.733353,-1.733353,-1.733353,-1.733353,-1.733353 +-1.73097,-1.73097,-1.73097,-1.73097,-1.73097,-1.73097 +-1.72829,-1.72829,-1.72829,-1.72829,-1.72829,-1.72829 +-1.725295,-1.725295,-1.725295,-1.725295,-1.725295,-1.725295 +-1.721979,-1.721979,-1.721979,-1.721979,-1.721979,-1.721979 +-1.718359,-1.718359,-1.718359,-1.718359,-1.718359,-1.718359 +-1.714451,-1.714451,-1.714451,-1.714451,-1.714451,-1.714451 +-1.710274,-1.710274,-1.710274,-1.710274,-1.710274,-1.710274 +-1.705844,-1.705844,-1.705844,-1.705844,-1.705844,-1.705844 +-1.70118,-1.70118,-1.70118,-1.70118,-1.70118,-1.70118 +-1.696298,-1.696298,-1.696298,-1.696298,-1.696298,-1.696298 +-1.691217,-1.691217,-1.691217,-1.691217,-1.691217,-1.691217 +-1.685953,-1.685953,-1.685953,-1.685953,-1.685953,-1.685953 +-1.680524,-1.680524,-1.680524,-1.680524,-1.680524,-1.680524 +-1.674948,-1.674948,-1.674948,-1.674948,-1.674948,-1.674948 +-1.669243,-1.669243,-1.669243,-1.669243,-1.669243,-1.669243 +-1.663425,-1.663425,-1.663425,-1.663425,-1.663425,-1.663425 +-1.657512,-1.657512,-1.657512,-1.657512,-1.657512,-1.657512 +-1.651522,-1.651522,-1.651522,-1.651522,-1.651522,-1.651522 +-1.645472,-1.645472,-1.645472,-1.645472,-1.645472,-1.645472 +-1.63938,-1.63938,-1.63938,-1.63938,-1.63938,-1.63938 +-1.633263,-1.633263,-1.633263,-1.633263,-1.633263,-1.633263 +-1.627138,-1.627138,-1.627138,-1.627138,-1.627138,-1.627138 +-1.621013,-1.621013,-1.621013,-1.621013,-1.621013,-1.621013 +-1.614888,-1.614888,-1.614888,-1.614888,-1.614888,-1.614888 +-1.608763,-1.608763,-1.608763,-1.608763,-1.608763,-1.608763 +-1.602638,-1.602638,-1.602638,-1.602638,-1.602638,-1.602638 +-1.596513,-1.596513,-1.596513,-1.596513,-1.596513,-1.596513 +-1.590388,-1.590388,-1.590388,-1.590388,-1.590388,-1.590388 +-1.584263,-1.584263,-1.584263,-1.584263,-1.584263,-1.584263 +-1.578138,-1.578138,-1.578138,-1.578138,-1.578138,-1.578138 +-1.572013,-1.572013,-1.572013,-1.572013,-1.572013,-1.572013 +-1.565888,-1.565888,-1.565888,-1.565888,-1.565888,-1.565888 +-1.559763,-1.559763,-1.559763,-1.559763,-1.559763,-1.559763 +-1.553638,-1.553638,-1.553638,-1.553638,-1.553638,-1.553638 +-1.547513,-1.547513,-1.547513,-1.547513,-1.547513,-1.547513 +-1.541388,-1.541388,-1.541388,-1.541388,-1.541388,-1.541388 +-1.535263,-1.535263,-1.535263,-1.535263,-1.535263,-1.535263 +-1.529138,-1.529138,-1.529138,-1.529138,-1.529138,-1.529138 +-1.523013,-1.523013,-1.523013,-1.523013,-1.523013,-1.523013 +-1.516888,-1.516888,-1.516888,-1.516888,-1.516888,-1.516888 +-1.510763,-1.510763,-1.510763,-1.510763,-1.510763,-1.510763 +-1.504638,-1.504638,-1.504638,-1.504638,-1.504638,-1.504638 +-1.498513,-1.498513,-1.498513,-1.498513,-1.498513,-1.498513 +-1.492388,-1.492388,-1.492388,-1.492388,-1.492388,-1.492388 +-1.486263,-1.486263,-1.486263,-1.486263,-1.486263,-1.486263 +-1.480138,-1.480138,-1.480138,-1.480138,-1.480138,-1.480138 +-1.474013,-1.474013,-1.474013,-1.474013,-1.474013,-1.474013 +-1.467888,-1.467888,-1.467888,-1.467888,-1.467888,-1.467888 +-1.461763,-1.461763,-1.461763,-1.461763,-1.461763,-1.461763 +-1.455638,-1.455638,-1.455638,-1.455638,-1.455638,-1.455638 +-1.449513,-1.449513,-1.449513,-1.449513,-1.449513,-1.449513 +-1.443388,-1.443388,-1.443388,-1.443388,-1.443388,-1.443388 +-1.437263,-1.437263,-1.437263,-1.437263,-1.437263,-1.437263 +-1.431138,-1.431138,-1.431138,-1.431138,-1.431138,-1.431138 +-1.425013,-1.425013,-1.425013,-1.425013,-1.425013,-1.425013 +-1.418888,-1.418888,-1.418888,-1.418888,-1.418888,-1.418888 +-1.412763,-1.412763,-1.412763,-1.412763,-1.412763,-1.412763 +-1.406638,-1.406638,-1.406638,-1.406638,-1.406638,-1.406638 +-1.400513,-1.400513,-1.400513,-1.400513,-1.400513,-1.400513 +-1.394388,-1.394388,-1.394388,-1.394388,-1.394388,-1.394388 +-1.388263,-1.388263,-1.388263,-1.388263,-1.388263,-1.388263 +-1.382138,-1.382138,-1.382138,-1.382138,-1.382138,-1.382138 +-1.376013,-1.376013,-1.376013,-1.376013,-1.376013,-1.376013 +-1.369888,-1.369888,-1.369888,-1.369888,-1.369888,-1.369888 +-1.363763,-1.363763,-1.363763,-1.363763,-1.363763,-1.363763 +-1.357638,-1.357638,-1.357638,-1.357638,-1.357638,-1.357638 +-1.351513,-1.351513,-1.351513,-1.351513,-1.351513,-1.351513 +-1.345388,-1.345388,-1.345388,-1.345388,-1.345388,-1.345388 +-1.339263,-1.339263,-1.339263,-1.339263,-1.339263,-1.339263 +-1.333138,-1.333138,-1.333138,-1.333138,-1.333138,-1.333138 +-1.327013,-1.327013,-1.327013,-1.327013,-1.327013,-1.327013 +-1.320888,-1.320888,-1.320888,-1.320888,-1.320888,-1.320888 +-1.314763,-1.314763,-1.314763,-1.314763,-1.314763,-1.314763 +-1.308638,-1.308638,-1.308638,-1.308638,-1.308638,-1.308638 +-1.302513,-1.302513,-1.302513,-1.302513,-1.302513,-1.302513 +-1.296388,-1.296388,-1.296388,-1.296388,-1.296388,-1.296388 +-1.290263,-1.290263,-1.290263,-1.290263,-1.290263,-1.290263 +-1.284138,-1.284138,-1.284138,-1.284138,-1.284138,-1.284138 +-1.278013,-1.278013,-1.278013,-1.278013,-1.278013,-1.278013 +-1.271888,-1.271888,-1.271888,-1.271888,-1.271888,-1.271888 +-1.265763,-1.265763,-1.265763,-1.265763,-1.265763,-1.265763 +-1.259638,-1.259638,-1.259638,-1.259638,-1.259638,-1.259638 +-1.253513,-1.253513,-1.253513,-1.253513,-1.253513,-1.253513 +-1.247388,-1.247388,-1.247388,-1.247388,-1.247388,-1.247388 +-1.241263,-1.241263,-1.241263,-1.241263,-1.241263,-1.241263 +-1.235138,-1.235138,-1.235138,-1.235138,-1.235138,-1.235138 +-1.229013,-1.229013,-1.229013,-1.229013,-1.229013,-1.229013 +-1.222888,-1.222888,-1.222888,-1.222888,-1.222888,-1.222888 +-1.216763,-1.216763,-1.216763,-1.216763,-1.216763,-1.216763 +-1.210638,-1.210638,-1.210638,-1.210638,-1.210638,-1.210638 +-1.204513,-1.204513,-1.204513,-1.204513,-1.204513,-1.204513 +-1.198388,-1.198388,-1.198388,-1.198388,-1.198388,-1.198388 +-1.192263,-1.192263,-1.192263,-1.192263,-1.192263,-1.192263 +-1.186138,-1.186138,-1.186138,-1.186138,-1.186138,-1.186138 +-1.180013,-1.180013,-1.180013,-1.180013,-1.180013,-1.180013 +-1.173888,-1.173888,-1.173888,-1.173888,-1.173888,-1.173888 +-1.167763,-1.167763,-1.167763,-1.167763,-1.167763,-1.167763 +-1.161638,-1.161638,-1.161638,-1.161638,-1.161638,-1.161638 +-1.155513,-1.155513,-1.155513,-1.155513,-1.155513,-1.155513 +-1.149388,-1.149388,-1.149388,-1.149388,-1.149388,-1.149388 +-1.143263,-1.143263,-1.143263,-1.143263,-1.143263,-1.143263 +-1.137138,-1.137138,-1.137138,-1.137138,-1.137138,-1.137138 +-1.131013,-1.131013,-1.131013,-1.131013,-1.131013,-1.131013 +-1.124888,-1.124888,-1.124888,-1.124888,-1.124888,-1.124888 +-1.118763,-1.118763,-1.118763,-1.118763,-1.118763,-1.118763 +-1.112638,-1.112638,-1.112638,-1.112638,-1.112638,-1.112638 +-1.106513,-1.106513,-1.106513,-1.106513,-1.106513,-1.106513 +-1.100388,-1.100388,-1.100388,-1.100388,-1.100388,-1.100388 +-1.094263,-1.094263,-1.094263,-1.094263,-1.094263,-1.094263 +-1.088138,-1.088138,-1.088138,-1.088138,-1.088138,-1.088138 +-1.082013,-1.082013,-1.082013,-1.082013,-1.082013,-1.082013 +-1.075888,-1.075888,-1.075888,-1.075888,-1.075888,-1.075888 +-1.069763,-1.069763,-1.069763,-1.069763,-1.069763,-1.069763 +-1.063638,-1.063638,-1.063638,-1.063638,-1.063638,-1.063638 +-1.057513,-1.057513,-1.057513,-1.057513,-1.057513,-1.057513 +-1.051388,-1.051388,-1.051388,-1.051388,-1.051388,-1.051388 +-1.045263,-1.045263,-1.045263,-1.045263,-1.045263,-1.045263 +-1.039138,-1.039138,-1.039138,-1.039138,-1.039138,-1.039138 +-1.033013,-1.033013,-1.033013,-1.033013,-1.033013,-1.033013 +-1.026888,-1.026888,-1.026888,-1.026888,-1.026888,-1.026888 +-1.020763,-1.020763,-1.020763,-1.020763,-1.020763,-1.020763 +-1.014638,-1.014638,-1.014638,-1.014638,-1.014638,-1.014638 +-1.008513,-1.008513,-1.008513,-1.008513,-1.008513,-1.008513 +-1.002388,-1.002388,-1.002388,-1.002388,-1.002388,-1.002388 +-0.996263,-0.996263,-0.996263,-0.996263,-0.996263,-0.996263 +-0.990138,-0.990138,-0.990138,-0.990138,-0.990138,-0.990138 +-0.984013,-0.984013,-0.984013,-0.984013,-0.984013,-0.984013 +-0.977888,-0.977888,-0.977888,-0.977888,-0.977888,-0.977888 +-0.971763,-0.971763,-0.971763,-0.971763,-0.971763,-0.971763 +-0.965638,-0.965638,-0.965638,-0.965638,-0.965638,-0.965638 +-0.959513,-0.959513,-0.959513,-0.959513,-0.959513,-0.959513 +-0.953388,-0.953388,-0.953388,-0.953388,-0.953388,-0.953388 +-0.947263,-0.947263,-0.947263,-0.947263,-0.947263,-0.947263 +-0.941138,-0.941138,-0.941138,-0.941138,-0.941138,-0.941138 +-0.935013,-0.935013,-0.935013,-0.935013,-0.935013,-0.935013 +-0.928888,-0.928888,-0.928888,-0.928888,-0.928888,-0.928888 +-0.922763,-0.922763,-0.922763,-0.922763,-0.922763,-0.922763 +-0.916638,-0.916638,-0.916638,-0.916638,-0.916638,-0.916638 +-0.910513,-0.910513,-0.910513,-0.910513,-0.910513,-0.910513 +-0.904388,-0.904388,-0.904388,-0.904388,-0.904388,-0.904388 +-0.898263,-0.898263,-0.898263,-0.898263,-0.898263,-0.898263 +-0.892138,-0.892138,-0.892138,-0.892138,-0.892138,-0.892138 +-0.886013,-0.886013,-0.886013,-0.886013,-0.886013,-0.886013 +-0.879888,-0.879888,-0.879888,-0.879888,-0.879888,-0.879888 +-0.873763,-0.873763,-0.873763,-0.873763,-0.873763,-0.873763 +-0.867638,-0.867638,-0.867638,-0.867638,-0.867638,-0.867638 +-0.861513,-0.861513,-0.861513,-0.861513,-0.861513,-0.861513 +-0.855388,-0.855388,-0.855388,-0.855388,-0.855388,-0.855388 +-0.849263,-0.849263,-0.849263,-0.849263,-0.849263,-0.849263 +-0.843138,-0.843138,-0.843138,-0.843138,-0.843138,-0.843138 +-0.837013,-0.837013,-0.837013,-0.837013,-0.837013,-0.837013 +-0.830888,-0.830888,-0.830888,-0.830888,-0.830888,-0.830888 +-0.824763,-0.824763,-0.824763,-0.824763,-0.824763,-0.824763 +-0.818638,-0.818638,-0.818638,-0.818638,-0.818638,-0.818638 +-0.812513,-0.812513,-0.812513,-0.812513,-0.812513,-0.812513 +-0.806388,-0.806388,-0.806388,-0.806388,-0.806388,-0.806388 +-0.800263,-0.800263,-0.800263,-0.800263,-0.800263,-0.800263 +-0.794138,-0.794138,-0.794138,-0.794138,-0.794138,-0.794138 +-0.788013,-0.788013,-0.788013,-0.788013,-0.788013,-0.788013 +-0.781888,-0.781888,-0.781888,-0.781888,-0.781888,-0.781888 +-0.775763,-0.775763,-0.775763,-0.775763,-0.775763,-0.775763 +-0.769638,-0.769638,-0.769638,-0.769638,-0.769638,-0.769638 +-0.763513,-0.763513,-0.763513,-0.763513,-0.763513,-0.763513 +-0.757388,-0.757388,-0.757388,-0.757388,-0.757388,-0.757388 +-0.751263,-0.751263,-0.751263,-0.751263,-0.751263,-0.751263 +-0.745138,-0.745138,-0.745138,-0.745138,-0.745138,-0.745138 +-0.739013,-0.739013,-0.739013,-0.739013,-0.739013,-0.739013 +-0.732888,-0.732888,-0.732888,-0.732888,-0.732888,-0.732888 +-0.726763,-0.726763,-0.726763,-0.726763,-0.726763,-0.726763 +-0.720638,-0.720638,-0.720638,-0.720638,-0.720638,-0.720638 +-0.714513,-0.714513,-0.714513,-0.714513,-0.714513,-0.714513 +-0.708388,-0.708388,-0.708388,-0.708388,-0.708388,-0.708388 +-0.702263,-0.702263,-0.702263,-0.702263,-0.702263,-0.702263 +-0.696138,-0.696138,-0.696138,-0.696138,-0.696138,-0.696138 +-0.690013,-0.690013,-0.690013,-0.690013,-0.690013,-0.690013 +-0.683888,-0.683888,-0.683888,-0.683888,-0.683888,-0.683888 +-0.677763,-0.677763,-0.677763,-0.677763,-0.677763,-0.677763 +-0.671638,-0.671638,-0.671638,-0.671638,-0.671638,-0.671638 +-0.665513,-0.665513,-0.665513,-0.665513,-0.665513,-0.665513 +-0.659388,-0.659388,-0.659388,-0.659388,-0.659388,-0.659388 +-0.653263,-0.653263,-0.653263,-0.653263,-0.653263,-0.653263 +-0.647138,-0.647138,-0.647138,-0.647138,-0.647138,-0.647138 +-0.641013,-0.641013,-0.641013,-0.641013,-0.641013,-0.641013 +-0.634888,-0.634888,-0.634888,-0.634888,-0.634888,-0.634888 +-0.628763,-0.628763,-0.628763,-0.628763,-0.628763,-0.628763 +-0.622638,-0.622638,-0.622638,-0.622638,-0.622638,-0.622638 +-0.616513,-0.616513,-0.616513,-0.616513,-0.616513,-0.616513 +-0.610388,-0.610388,-0.610388,-0.610388,-0.610388,-0.610388 +-0.604263,-0.604263,-0.604263,-0.604263,-0.604263,-0.604263 +-0.598138,-0.598138,-0.598138,-0.598138,-0.598138,-0.598138 +-0.592013,-0.592013,-0.592013,-0.592013,-0.592013,-0.592013 +-0.585888,-0.585888,-0.585888,-0.585888,-0.585888,-0.585888 +-0.579763,-0.579763,-0.579763,-0.579763,-0.579763,-0.579763 +-0.573638,-0.573638,-0.573638,-0.573638,-0.573638,-0.573638 +-0.567513,-0.567513,-0.567513,-0.567513,-0.567513,-0.567513 +-0.561388,-0.561388,-0.561388,-0.561388,-0.561388,-0.561388 +-0.555263,-0.555263,-0.555263,-0.555263,-0.555263,-0.555263 +-0.549138,-0.549138,-0.549138,-0.549138,-0.549138,-0.549138 +-0.543013,-0.543013,-0.543013,-0.543013,-0.543013,-0.543013 +-0.536888,-0.536888,-0.536888,-0.536888,-0.536888,-0.536888 +-0.530763,-0.530763,-0.530763,-0.530763,-0.530763,-0.530763 +-0.524638,-0.524638,-0.524638,-0.524638,-0.524638,-0.524638 +-0.518513,-0.518513,-0.518513,-0.518513,-0.518513,-0.518513 +-0.512388,-0.512388,-0.512388,-0.512388,-0.512388,-0.512388 +-0.506263,-0.506263,-0.506263,-0.506263,-0.506263,-0.506263 +-0.500138,-0.500138,-0.500138,-0.500138,-0.500138,-0.500138 +-0.494013,-0.494013,-0.494013,-0.494013,-0.494013,-0.494013 +-0.487888,-0.487888,-0.487888,-0.487888,-0.487888,-0.487888 +-0.481763,-0.481763,-0.481763,-0.481763,-0.481763,-0.481763 +-0.475638,-0.475638,-0.475638,-0.475638,-0.475638,-0.475638 +-0.469513,-0.469513,-0.469513,-0.469513,-0.469513,-0.469513 +-0.463388,-0.463388,-0.463388,-0.463388,-0.463388,-0.463388 +-0.457263,-0.457263,-0.457263,-0.457263,-0.457263,-0.457263 +-0.451138,-0.451138,-0.451138,-0.451138,-0.451138,-0.451138 +-0.445013,-0.445013,-0.445013,-0.445013,-0.445013,-0.445013 +-0.438888,-0.438888,-0.438888,-0.438888,-0.438888,-0.438888 +-0.432763,-0.432763,-0.432763,-0.432763,-0.432763,-0.432763 +-0.426638,-0.426638,-0.426638,-0.426638,-0.426638,-0.426638 +-0.420513,-0.420513,-0.420513,-0.420513,-0.420513,-0.420513 +-0.414388,-0.414388,-0.414388,-0.414388,-0.414388,-0.414388 +-0.408263,-0.408263,-0.408263,-0.408263,-0.408263,-0.408263 +-0.402138,-0.402138,-0.402138,-0.402138,-0.402138,-0.402138 +-0.396013,-0.396013,-0.396013,-0.396013,-0.396013,-0.396013 +-0.389888,-0.389888,-0.389888,-0.389888,-0.389888,-0.389888 +-0.383763,-0.383763,-0.383763,-0.383763,-0.383763,-0.383763 +-0.377638,-0.377638,-0.377638,-0.377638,-0.377638,-0.377638 +-0.371513,-0.371513,-0.371513,-0.371513,-0.371513,-0.371513 +-0.365388,-0.365388,-0.365388,-0.365388,-0.365388,-0.365388 +-0.359263,-0.359263,-0.359263,-0.359263,-0.359263,-0.359263 +-0.353138,-0.353138,-0.353138,-0.353138,-0.353138,-0.353138 +-0.347013,-0.347013,-0.347013,-0.347013,-0.347013,-0.347013 +-0.340888,-0.340888,-0.340888,-0.340888,-0.340888,-0.340888 +-0.334763,-0.334763,-0.334763,-0.334763,-0.334763,-0.334763 +-0.328638,-0.328638,-0.328638,-0.328638,-0.328638,-0.328638 +-0.322513,-0.322513,-0.322513,-0.322513,-0.322513,-0.322513 +-0.316388,-0.316388,-0.316388,-0.316388,-0.316388,-0.316388 +-0.310263,-0.310263,-0.310263,-0.310263,-0.310263,-0.310263 +-0.304138,-0.304138,-0.304138,-0.304138,-0.304138,-0.304138 +-0.298013,-0.298013,-0.298013,-0.298013,-0.298013,-0.298013 +-0.291888,-0.291888,-0.291888,-0.291888,-0.291888,-0.291888 +-0.285763,-0.285763,-0.285763,-0.285763,-0.285763,-0.285763 +-0.279638,-0.279638,-0.279638,-0.279638,-0.279638,-0.279638 +-0.273513,-0.273513,-0.273513,-0.273513,-0.273513,-0.273513 +-0.267388,-0.267388,-0.267388,-0.267388,-0.267388,-0.267388 +-0.261263,-0.261263,-0.261263,-0.261263,-0.261263,-0.261263 +-0.255138,-0.255138,-0.255138,-0.255138,-0.255138,-0.255138 +-0.249013,-0.249013,-0.249013,-0.249013,-0.249013,-0.249013 +-0.242888,-0.242888,-0.242888,-0.242888,-0.242888,-0.242888 +-0.236763,-0.236763,-0.236763,-0.236763,-0.236763,-0.236763 +-0.230638,-0.230638,-0.230638,-0.230638,-0.230638,-0.230638 +-0.224513,-0.224513,-0.224513,-0.224513,-0.224513,-0.224513 +-0.218388,-0.218388,-0.218388,-0.218388,-0.218388,-0.218388 +-0.212263,-0.212263,-0.212263,-0.212263,-0.212263,-0.212263 +-0.206138,-0.206138,-0.206138,-0.206138,-0.206138,-0.206138 +-0.200013,-0.200013,-0.200013,-0.200013,-0.200013,-0.200013 +-0.193888,-0.193888,-0.193888,-0.193888,-0.193888,-0.193888 +-0.187763,-0.187763,-0.187763,-0.187763,-0.187763,-0.187763 +-0.181638,-0.181638,-0.181638,-0.181638,-0.181638,-0.181638 +-0.175513,-0.175513,-0.175513,-0.175513,-0.175513,-0.175513 +-0.169388,-0.169388,-0.169388,-0.169388,-0.169388,-0.169388 +-0.163263,-0.163263,-0.163263,-0.163263,-0.163263,-0.163263 +-0.157138,-0.157138,-0.157138,-0.157138,-0.157138,-0.157138 +-0.151013,-0.151013,-0.151013,-0.151013,-0.151013,-0.151013 +-0.144888,-0.144888,-0.144888,-0.144888,-0.144888,-0.144888 +-0.138763,-0.138763,-0.138763,-0.138763,-0.138763,-0.138763 +-0.132638,-0.132638,-0.132638,-0.132638,-0.132638,-0.132638 +-0.126513,-0.126513,-0.126513,-0.126513,-0.126513,-0.126513 +-0.120388,-0.120388,-0.120388,-0.120388,-0.120388,-0.120388 +-0.114263,-0.114263,-0.114263,-0.114263,-0.114263,-0.114263 +-0.108142,-0.108142,-0.108142,-0.108142,-0.108142,-0.108142 +-0.102038,-0.102038,-0.102038,-0.102038,-0.102038,-0.102038 +-0.095971,-0.095971,-0.095971,-0.095971,-0.095971,-0.095971 +-0.089957,-0.089957,-0.089957,-0.089957,-0.089957,-0.089957 +-0.084015,-0.084015,-0.084015,-0.084015,-0.084015,-0.084015 +-0.07816,-0.07816,-0.07816,-0.07816,-0.07816,-0.07816 +-0.072412,-0.072412,-0.072412,-0.072412,-0.072412,-0.072412 +-0.066787,-0.066787,-0.066787,-0.066787,-0.066787,-0.066787 +-0.061302,-0.061302,-0.061302,-0.061302,-0.061302,-0.061302 +-0.055977,-0.055977,-0.055977,-0.055977,-0.055977,-0.055977 +-0.050827,-0.050827,-0.050827,-0.050827,-0.050827,-0.050827 +-0.04587,-0.04587,-0.04587,-0.04587,-0.04587,-0.04587 +-0.041125,-0.041125,-0.041125,-0.041125,-0.041125,-0.041125 +-0.036608,-0.036608,-0.036608,-0.036608,-0.036608,-0.036608 +-0.032337,-0.032337,-0.032337,-0.032337,-0.032337,-0.032337 +-0.028329,-0.028329,-0.028329,-0.028329,-0.028329,-0.028329 +-0.024602,-0.024602,-0.024602,-0.024602,-0.024602,-0.024602 +-0.021174,-0.021174,-0.021174,-0.021174,-0.021174,-0.021174 +-0.018062,-0.018062,-0.018062,-0.018062,-0.018062,-0.018062 +-0.015269,-0.015269,-0.015269,-0.015269,-0.015269,-0.015269 +-0.01278,-0.01278,-0.01278,-0.01278,-0.01278,-0.01278 +-0.010577,-0.010577,-0.010577,-0.010577,-0.010577,-0.010577 +-0.008643,-0.008643,-0.008643,-0.008643,-0.008643,-0.008643 +-0.006961,-0.006961,-0.006961,-0.006961,-0.006961,-0.006961 +-0.005512,-0.005512,-0.005512,-0.005512,-0.005512,-0.005512 +-0.00428,-0.00428,-0.00428,-0.00428,-0.00428,-0.00428 +-0.003246,-0.003246,-0.003246,-0.003246,-0.003246,-0.003246 +-0.002394,-0.002394,-0.002394,-0.002394,-0.002394,-0.002394 +-0.001706,-0.001706,-0.001706,-0.001706,-0.001706,-0.001706 +-0.001165,-0.001165,-0.001165,-0.001165,-0.001165,-0.001165 +-0.000752,-0.000752,-0.000752,-0.000752,-0.000752,-0.000752 +-0.00045,-0.00045,-0.00045,-0.00045,-0.00045,-0.00045 +-0.000242,-0.000242,-0.000242,-0.000242,-0.000242,-0.000242 +-0.000111,-0.000111,-0.000111,-0.000111,-0.000111,-0.000111 +-0.000039,-0.000039,-0.000039,-0.000039,-0.000039,-0.000039 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000025,0.000025,0.000025,0.000025,0.000025,0.000025 +0.000085,0.000085,0.000085,0.000085,0.000085,0.000085 +0.000203,0.000203,0.000203,0.000203,0.000203,0.000203 +0.000396,0.000396,0.000396,0.000396,0.000396,0.000396 +0.000684,0.000684,0.000684,0.000684,0.000684,0.000684 +0.001086,0.001086,0.001086,0.001086,0.001086,0.001086 +0.001621,0.001621,0.001621,0.001621,0.001621,0.001621 +0.002308,0.002308,0.002308,0.002308,0.002308,0.002308 +0.003167,0.003167,0.003167,0.003167,0.003167,0.003167 +0.004215,0.004215,0.004215,0.004215,0.004215,0.004215 +0.005472,0.005472,0.005472,0.005472,0.005472,0.005472 +0.006957,0.006957,0.006957,0.006957,0.006957,0.006957 +0.008689,0.008689,0.008689,0.008689,0.008689,0.008689 +0.010687,0.010687,0.010687,0.010687,0.010687,0.010687 +0.012971,0.012971,0.012971,0.012971,0.012971,0.012971 +0.015558,0.015558,0.015558,0.015558,0.015558,0.015558 +0.018468,0.018468,0.018468,0.018468,0.018468,0.018468 +0.02172,0.02172,0.02172,0.02172,0.02172,0.02172 +0.025333,0.025333,0.025333,0.025333,0.025333,0.025333 +0.029305,0.029305,0.029305,0.029305,0.029305,0.029305 +0.033619,0.033619,0.033619,0.033619,0.033619,0.033619 +0.038256,0.038256,0.038256,0.038256,0.038256,0.038256 +0.043196,0.043196,0.043196,0.043196,0.043196,0.043196 +0.048422,0.048422,0.048422,0.048422,0.048422,0.048422 +0.053913,0.053913,0.053913,0.053913,0.053913,0.053913 +0.059651,0.059651,0.059651,0.059651,0.059651,0.059651 +0.065616,0.065616,0.065616,0.065616,0.065616,0.065616 +0.071791,0.071791,0.071791,0.071791,0.071791,0.071791 +0.078155,0.078155,0.078155,0.078155,0.078155,0.078155 +0.08469,0.08469,0.08469,0.08469,0.08469,0.08469 +0.091376,0.091376,0.091376,0.091376,0.091376,0.091376 +0.098196,0.098196,0.098196,0.098196,0.098196,0.098196 +0.105129,0.105129,0.105129,0.105129,0.105129,0.105129 +0.112157,0.112157,0.112157,0.112157,0.112157,0.112157 +0.119261,0.119261,0.119261,0.119261,0.119261,0.119261 +0.126421,0.126421,0.126421,0.126421,0.126421,0.126421 +0.133619,0.133619,0.133619,0.133619,0.133619,0.133619 +0.140836,0.140836,0.140836,0.140836,0.140836,0.140836 +0.148056,0.148056,0.148056,0.148056,0.148056,0.148056 +0.155276,0.155276,0.155276,0.155276,0.155276,0.155276 +0.162496,0.162496,0.162496,0.162496,0.162496,0.162496 +0.169716,0.169716,0.169716,0.169716,0.169716,0.169716 +0.176936,0.176936,0.176936,0.176936,0.176936,0.176936 +0.184156,0.184156,0.184156,0.184156,0.184156,0.184156 +0.191376,0.191376,0.191376,0.191376,0.191376,0.191376 +0.198596,0.198596,0.198596,0.198596,0.198596,0.198596 +0.205816,0.205816,0.205816,0.205816,0.205816,0.205816 +0.213036,0.213036,0.213036,0.213036,0.213036,0.213036 +0.220256,0.220256,0.220256,0.220256,0.220256,0.220256 +0.227476,0.227476,0.227476,0.227476,0.227476,0.227476 +0.234696,0.234696,0.234696,0.234696,0.234696,0.234696 +0.241916,0.241916,0.241916,0.241916,0.241916,0.241916 +0.249136,0.249136,0.249136,0.249136,0.249136,0.249136 +0.256356,0.256356,0.256356,0.256356,0.256356,0.256356 +0.263576,0.263576,0.263576,0.263576,0.263576,0.263576 +0.270796,0.270796,0.270796,0.270796,0.270796,0.270796 +0.278016,0.278016,0.278016,0.278016,0.278016,0.278016 +0.285236,0.285236,0.285236,0.285236,0.285236,0.285236 +0.292456,0.292456,0.292456,0.292456,0.292456,0.292456 +0.299676,0.299676,0.299676,0.299676,0.299676,0.299676 +0.306896,0.306896,0.306896,0.306896,0.306896,0.306896 +0.314116,0.314116,0.314116,0.314116,0.314116,0.314116 +0.321336,0.321336,0.321336,0.321336,0.321336,0.321336 +0.328556,0.328556,0.328556,0.328556,0.328556,0.328556 +0.335776,0.335776,0.335776,0.335776,0.335776,0.335776 +0.342996,0.342996,0.342996,0.342996,0.342996,0.342996 +0.350216,0.350216,0.350216,0.350216,0.350216,0.350216 +0.357436,0.357436,0.357436,0.357436,0.357436,0.357436 +0.364656,0.364656,0.364656,0.364656,0.364656,0.364656 +0.371876,0.371876,0.371876,0.371876,0.371876,0.371876 +0.379096,0.379096,0.379096,0.379096,0.379096,0.379096 +0.386316,0.386316,0.386316,0.386316,0.386316,0.386316 +0.393536,0.393536,0.393536,0.393536,0.393536,0.393536 +0.400756,0.400756,0.400756,0.400756,0.400756,0.400756 +0.407976,0.407976,0.407976,0.407976,0.407976,0.407976 +0.415196,0.415196,0.415196,0.415196,0.415196,0.415196 +0.422416,0.422416,0.422416,0.422416,0.422416,0.422416 +0.429636,0.429636,0.429636,0.429636,0.429636,0.429636 +0.436856,0.436856,0.436856,0.436856,0.436856,0.436856 +0.444076,0.444076,0.444076,0.444076,0.444076,0.444076 +0.451296,0.451296,0.451296,0.451296,0.451296,0.451296 +0.458516,0.458516,0.458516,0.458516,0.458516,0.458516 +0.465736,0.465736,0.465736,0.465736,0.465736,0.465736 +0.472956,0.472956,0.472956,0.472956,0.472956,0.472956 +0.480176,0.480176,0.480176,0.480176,0.480176,0.480176 +0.487396,0.487396,0.487396,0.487396,0.487396,0.487396 +0.494616,0.494616,0.494616,0.494616,0.494616,0.494616 +0.501836,0.501836,0.501836,0.501836,0.501836,0.501836 +0.509056,0.509056,0.509056,0.509056,0.509056,0.509056 +0.516276,0.516276,0.516276,0.516276,0.516276,0.516276 +0.523496,0.523496,0.523496,0.523496,0.523496,0.523496 +0.530716,0.530716,0.530716,0.530716,0.530716,0.530716 +0.537936,0.537936,0.537936,0.537936,0.537936,0.537936 +0.545156,0.545156,0.545156,0.545156,0.545156,0.545156 +0.552376,0.552376,0.552376,0.552376,0.552376,0.552376 +0.559596,0.559596,0.559596,0.559596,0.559596,0.559596 +0.566816,0.566816,0.566816,0.566816,0.566816,0.566816 +0.574036,0.574036,0.574036,0.574036,0.574036,0.574036 +0.581256,0.581256,0.581256,0.581256,0.581256,0.581256 +0.588476,0.588476,0.588476,0.588476,0.588476,0.588476 +0.595696,0.595696,0.595696,0.595696,0.595696,0.595696 +0.602916,0.602916,0.602916,0.602916,0.602916,0.602916 +0.610136,0.610136,0.610136,0.610136,0.610136,0.610136 +0.617356,0.617356,0.617356,0.617356,0.617356,0.617356 +0.624576,0.624576,0.624576,0.624576,0.624576,0.624576 +0.631796,0.631796,0.631796,0.631796,0.631796,0.631796 +0.639016,0.639016,0.639016,0.639016,0.639016,0.639016 +0.646236,0.646236,0.646236,0.646236,0.646236,0.646236 +0.653456,0.653456,0.653456,0.653456,0.653456,0.653456 +0.660676,0.660676,0.660676,0.660676,0.660676,0.660676 +0.667896,0.667896,0.667896,0.667896,0.667896,0.667896 +0.675116,0.675116,0.675116,0.675116,0.675116,0.675116 +0.682336,0.682336,0.682336,0.682336,0.682336,0.682336 +0.689556,0.689556,0.689556,0.689556,0.689556,0.689556 +0.696776,0.696776,0.696776,0.696776,0.696776,0.696776 +0.703996,0.703996,0.703996,0.703996,0.703996,0.703996 +0.711216,0.711216,0.711216,0.711216,0.711216,0.711216 +0.718436,0.718436,0.718436,0.718436,0.718436,0.718436 +0.725656,0.725656,0.725656,0.725656,0.725656,0.725656 +0.732876,0.732876,0.732876,0.732876,0.732876,0.732876 +0.740096,0.740096,0.740096,0.740096,0.740096,0.740096 +0.747316,0.747316,0.747316,0.747316,0.747316,0.747316 +0.754536,0.754536,0.754536,0.754536,0.754536,0.754536 +0.761756,0.761756,0.761756,0.761756,0.761756,0.761756 +0.768976,0.768976,0.768976,0.768976,0.768976,0.768976 +0.776196,0.776196,0.776196,0.776196,0.776196,0.776196 +0.783416,0.783416,0.783416,0.783416,0.783416,0.783416 +0.790636,0.790636,0.790636,0.790636,0.790636,0.790636 +0.797856,0.797856,0.797856,0.797856,0.797856,0.797856 +0.805076,0.805076,0.805076,0.805076,0.805076,0.805076 +0.812296,0.812296,0.812296,0.812296,0.812296,0.812296 +0.819516,0.819516,0.819516,0.819516,0.819516,0.819516 +0.826736,0.826736,0.826736,0.826736,0.826736,0.826736 +0.833956,0.833956,0.833956,0.833956,0.833956,0.833956 +0.841176,0.841176,0.841176,0.841176,0.841176,0.841176 +0.848396,0.848396,0.848396,0.848396,0.848396,0.848396 +0.855616,0.855616,0.855616,0.855616,0.855616,0.855616 +0.862836,0.862836,0.862836,0.862836,0.862836,0.862836 +0.870056,0.870056,0.870056,0.870056,0.870056,0.870056 +0.877276,0.877276,0.877276,0.877276,0.877276,0.877276 +0.884496,0.884496,0.884496,0.884496,0.884496,0.884496 +0.891716,0.891716,0.891716,0.891716,0.891716,0.891716 +0.898936,0.898936,0.898936,0.898936,0.898936,0.898936 +0.906156,0.906156,0.906156,0.906156,0.906156,0.906156 +0.913376,0.913376,0.913376,0.913376,0.913376,0.913376 +0.920596,0.920596,0.920596,0.920596,0.920596,0.920596 +0.927816,0.927816,0.927816,0.927816,0.927816,0.927816 +0.935036,0.935036,0.935036,0.935036,0.935036,0.935036 +0.942256,0.942256,0.942256,0.942256,0.942256,0.942256 +0.949476,0.949476,0.949476,0.949476,0.949476,0.949476 +0.956696,0.956696,0.956696,0.956696,0.956696,0.956696 +0.963916,0.963916,0.963916,0.963916,0.963916,0.963916 +0.971136,0.971136,0.971136,0.971136,0.971136,0.971136 +0.978356,0.978356,0.978356,0.978356,0.978356,0.978356 +0.985576,0.985576,0.985576,0.985576,0.985576,0.985576 +0.992796,0.992796,0.992796,0.992796,0.992796,0.992796 +1.000016,1.000016,1.000016,1.000016,1.000016,1.000016 +1.007236,1.007236,1.007236,1.007236,1.007236,1.007236 +1.014456,1.014456,1.014456,1.014456,1.014456,1.014456 +1.021676,1.021676,1.021676,1.021676,1.021676,1.021676 +1.028896,1.028896,1.028896,1.028896,1.028896,1.028896 +1.036116,1.036116,1.036116,1.036116,1.036116,1.036116 +1.043336,1.043336,1.043336,1.043336,1.043336,1.043336 +1.050556,1.050556,1.050556,1.050556,1.050556,1.050556 +1.057776,1.057776,1.057776,1.057776,1.057776,1.057776 +1.064996,1.064996,1.064996,1.064996,1.064996,1.064996 +1.072216,1.072216,1.072216,1.072216,1.072216,1.072216 +1.079436,1.079436,1.079436,1.079436,1.079436,1.079436 +1.086656,1.086656,1.086656,1.086656,1.086656,1.086656 +1.093876,1.093876,1.093876,1.093876,1.093876,1.093876 +1.101096,1.101096,1.101096,1.101096,1.101096,1.101096 +1.108316,1.108316,1.108316,1.108316,1.108316,1.108316 +1.115536,1.115536,1.115536,1.115536,1.115536,1.115536 +1.122756,1.122756,1.122756,1.122756,1.122756,1.122756 +1.129976,1.129976,1.129976,1.129976,1.129976,1.129976 +1.137196,1.137196,1.137196,1.137196,1.137196,1.137196 +1.144416,1.144416,1.144416,1.144416,1.144416,1.144416 +1.151636,1.151636,1.151636,1.151636,1.151636,1.151636 +1.158856,1.158856,1.158856,1.158856,1.158856,1.158856 +1.166076,1.166076,1.166076,1.166076,1.166076,1.166076 +1.173296,1.173296,1.173296,1.173296,1.173296,1.173296 +1.180516,1.180516,1.180516,1.180516,1.180516,1.180516 +1.187736,1.187736,1.187736,1.187736,1.187736,1.187736 +1.194956,1.194956,1.194956,1.194956,1.194956,1.194956 +1.202176,1.202176,1.202176,1.202176,1.202176,1.202176 +1.209396,1.209396,1.209396,1.209396,1.209396,1.209396 +1.216616,1.216616,1.216616,1.216616,1.216616,1.216616 +1.223836,1.223836,1.223836,1.223836,1.223836,1.223836 +1.231056,1.231056,1.231056,1.231056,1.231056,1.231056 +1.238276,1.238276,1.238276,1.238276,1.238276,1.238276 +1.245496,1.245496,1.245496,1.245496,1.245496,1.245496 +1.252716,1.252716,1.252716,1.252716,1.252716,1.252716 +1.259936,1.259936,1.259936,1.259936,1.259936,1.259936 +1.267156,1.267156,1.267156,1.267156,1.267156,1.267156 +1.274376,1.274376,1.274376,1.274376,1.274376,1.274376 +1.281596,1.281596,1.281596,1.281596,1.281596,1.281596 +1.288816,1.288816,1.288816,1.288816,1.288816,1.288816 +1.296036,1.296036,1.296036,1.296036,1.296036,1.296036 +1.303256,1.303256,1.303256,1.303256,1.303256,1.303256 +1.310476,1.310476,1.310476,1.310476,1.310476,1.310476 +1.317696,1.317696,1.317696,1.317696,1.317696,1.317696 +1.324916,1.324916,1.324916,1.324916,1.324916,1.324916 +1.332136,1.332136,1.332136,1.332136,1.332136,1.332136 +1.339356,1.339356,1.339356,1.339356,1.339356,1.339356 +1.346576,1.346576,1.346576,1.346576,1.346576,1.346576 +1.353796,1.353796,1.353796,1.353796,1.353796,1.353796 +1.361016,1.361016,1.361016,1.361016,1.361016,1.361016 +1.368236,1.368236,1.368236,1.368236,1.368236,1.368236 +1.375456,1.375456,1.375456,1.375456,1.375456,1.375456 +1.382676,1.382676,1.382676,1.382676,1.382676,1.382676 +1.389896,1.389896,1.389896,1.389896,1.389896,1.389896 +1.397116,1.397116,1.397116,1.397116,1.397116,1.397116 +1.404336,1.404336,1.404336,1.404336,1.404336,1.404336 +1.411556,1.411556,1.411556,1.411556,1.411556,1.411556 +1.418776,1.418776,1.418776,1.418776,1.418776,1.418776 +1.425996,1.425996,1.425996,1.425996,1.425996,1.425996 +1.433216,1.433216,1.433216,1.433216,1.433216,1.433216 +1.440436,1.440436,1.440436,1.440436,1.440436,1.440436 +1.447656,1.447656,1.447656,1.447656,1.447656,1.447656 +1.454876,1.454876,1.454876,1.454876,1.454876,1.454876 +1.462096,1.462096,1.462096,1.462096,1.462096,1.462096 +1.469316,1.469316,1.469316,1.469316,1.469316,1.469316 +1.476536,1.476536,1.476536,1.476536,1.476536,1.476536 +1.483756,1.483756,1.483756,1.483756,1.483756,1.483756 +1.490976,1.490976,1.490976,1.490976,1.490976,1.490976 +1.498196,1.498196,1.498196,1.498196,1.498196,1.498196 +1.505416,1.505416,1.505416,1.505416,1.505416,1.505416 +1.512636,1.512636,1.512636,1.512636,1.512636,1.512636 +1.519856,1.519856,1.519856,1.519856,1.519856,1.519856 +1.527076,1.527076,1.527076,1.527076,1.527076,1.527076 +1.534296,1.534296,1.534296,1.534296,1.534296,1.534296 +1.541516,1.541516,1.541516,1.541516,1.541516,1.541516 +1.548736,1.548736,1.548736,1.548736,1.548736,1.548736 +1.555956,1.555956,1.555956,1.555956,1.555956,1.555956 +1.563176,1.563176,1.563176,1.563176,1.563176,1.563176 +1.570396,1.570396,1.570396,1.570396,1.570396,1.570396 +1.577616,1.577616,1.577616,1.577616,1.577616,1.577616 +1.584836,1.584836,1.584836,1.584836,1.584836,1.584836 +1.592056,1.592056,1.592056,1.592056,1.592056,1.592056 +1.599276,1.599276,1.599276,1.599276,1.599276,1.599276 +1.606496,1.606496,1.606496,1.606496,1.606496,1.606496 +1.61371,1.61371,1.61371,1.61371,1.61371,1.61371 +1.620899,1.620899,1.620899,1.620899,1.620899,1.620899 +1.628046,1.628046,1.628046,1.628046,1.628046,1.628046 +1.63513,1.63513,1.63513,1.63513,1.63513,1.63513 +1.642133,1.642133,1.642133,1.642133,1.642133,1.642133 +1.649036,1.649036,1.649036,1.649036,1.649036,1.649036 +1.65582,1.65582,1.65582,1.65582,1.65582,1.65582 +1.662466,1.662466,1.662466,1.662466,1.662466,1.662466 +1.668955,1.668955,1.668955,1.668955,1.668955,1.668955 +1.675267,1.675267,1.675267,1.675267,1.675267,1.675267 +1.681385,1.681385,1.681385,1.681385,1.681385,1.681385 +1.687288,1.687288,1.687288,1.687288,1.687288,1.687288 +1.692959,1.692959,1.692959,1.692959,1.692959,1.692959 +1.698377,1.698377,1.698377,1.698377,1.698377,1.698377 +1.703524,1.703524,1.703524,1.703524,1.703524,1.703524 +1.708381,1.708381,1.708381,1.708381,1.708381,1.708381 +1.712929,1.712929,1.712929,1.712929,1.712929,1.712929 +1.717149,1.717149,1.717149,1.717149,1.717149,1.717149 +1.721022,1.721022,1.721022,1.721022,1.721022,1.721022 +1.724531,1.724531,1.724531,1.724531,1.724531,1.724531 +1.727685,1.727685,1.727685,1.727685,1.727685,1.727685 +1.730502,1.730502,1.730502,1.730502,1.730502,1.730502 +1.733002,1.733002,1.733002,1.733002,1.733002,1.733002 +1.735203,1.735203,1.735203,1.735203,1.735203,1.735203 +1.737124,1.737124,1.737124,1.737124,1.737124,1.737124 +1.738785,1.738785,1.738785,1.738785,1.738785,1.738785 +1.740204,1.740204,1.740204,1.740204,1.740204,1.740204 +1.741401,1.741401,1.741401,1.741401,1.741401,1.741401 +1.742393,1.742393,1.742393,1.742393,1.742393,1.742393 +1.743201,1.743201,1.743201,1.743201,1.743201,1.743201 +1.743844,1.743844,1.743844,1.743844,1.743844,1.743844 +1.74434,1.74434,1.74434,1.74434,1.74434,1.74434 +1.744708,1.744708,1.744708,1.744708,1.744708,1.744708 +1.744967,1.744967,1.744967,1.744967,1.744967,1.744967 +1.745137,1.745137,1.745137,1.745137,1.745137,1.745137 +1.745236,1.745236,1.745236,1.745236,1.745236,1.745236 +1.745284,1.745284,1.745284,1.745284,1.745284,1.745284 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745275,1.745275,1.745275,1.745275,1.745275,1.745275 +1.745215,1.745215,1.745215,1.745215,1.745215,1.745215 +1.745097,1.745097,1.745097,1.745097,1.745097,1.745097 +1.744904,1.744904,1.744904,1.744904,1.744904,1.744904 +1.744616,1.744616,1.744616,1.744616,1.744616,1.744616 +1.744214,1.744214,1.744214,1.744214,1.744214,1.744214 +1.743679,1.743679,1.743679,1.743679,1.743679,1.743679 +1.742992,1.742992,1.742992,1.742992,1.742992,1.742992 +1.742133,1.742133,1.742133,1.742133,1.742133,1.742133 +1.741085,1.741085,1.741085,1.741085,1.741085,1.741085 +1.739828,1.739828,1.739828,1.739828,1.739828,1.739828 +1.738343,1.738343,1.738343,1.738343,1.738343,1.738343 +1.736611,1.736611,1.736611,1.736611,1.736611,1.736611 +1.734613,1.734613,1.734613,1.734613,1.734613,1.734613 +1.732329,1.732329,1.732329,1.732329,1.732329,1.732329 +1.729742,1.729742,1.729742,1.729742,1.729742,1.729742 +1.726832,1.726832,1.726832,1.726832,1.726832,1.726832 +1.72358,1.72358,1.72358,1.72358,1.72358,1.72358 +1.719967,1.719967,1.719967,1.719967,1.719967,1.719967 +1.715995,1.715995,1.715995,1.715995,1.715995,1.715995 +1.711681,1.711681,1.711681,1.711681,1.711681,1.711681 +1.707044,1.707044,1.707044,1.707044,1.707044,1.707044 +1.702104,1.702104,1.702104,1.702104,1.702104,1.702104 +1.696878,1.696878,1.696878,1.696878,1.696878,1.696878 +1.691387,1.691387,1.691387,1.691387,1.691387,1.691387 +1.685649,1.685649,1.685649,1.685649,1.685649,1.685649 +1.679684,1.679684,1.679684,1.679684,1.679684,1.679684 +1.673509,1.673509,1.673509,1.673509,1.673509,1.673509 +1.667145,1.667145,1.667145,1.667145,1.667145,1.667145 +1.66061,1.66061,1.66061,1.66061,1.66061,1.66061 +1.653924,1.653924,1.653924,1.653924,1.653924,1.653924 +1.647104,1.647104,1.647104,1.647104,1.647104,1.647104 +1.640171,1.640171,1.640171,1.640171,1.640171,1.640171 +1.633143,1.633143,1.633143,1.633143,1.633143,1.633143 +1.626039,1.626039,1.626039,1.626039,1.626039,1.626039 +1.618879,1.618879,1.618879,1.618879,1.618879,1.618879 +1.611681,1.611681,1.611681,1.611681,1.611681,1.611681 +1.604464,1.604464,1.604464,1.604464,1.604464,1.604464 +1.597244,1.597244,1.597244,1.597244,1.597244,1.597244 +1.590024,1.590024,1.590024,1.590024,1.590024,1.590024 +1.582804,1.582804,1.582804,1.582804,1.582804,1.582804 +1.575584,1.575584,1.575584,1.575584,1.575584,1.575584 +1.568364,1.568364,1.568364,1.568364,1.568364,1.568364 +1.561144,1.561144,1.561144,1.561144,1.561144,1.561144 +1.553924,1.553924,1.553924,1.553924,1.553924,1.553924 +1.546704,1.546704,1.546704,1.546704,1.546704,1.546704 +1.539484,1.539484,1.539484,1.539484,1.539484,1.539484 +1.532264,1.532264,1.532264,1.532264,1.532264,1.532264 +1.525044,1.525044,1.525044,1.525044,1.525044,1.525044 +1.517824,1.517824,1.517824,1.517824,1.517824,1.517824 +1.510604,1.510604,1.510604,1.510604,1.510604,1.510604 +1.503384,1.503384,1.503384,1.503384,1.503384,1.503384 +1.496164,1.496164,1.496164,1.496164,1.496164,1.496164 +1.488944,1.488944,1.488944,1.488944,1.488944,1.488944 +1.481724,1.481724,1.481724,1.481724,1.481724,1.481724 +1.474504,1.474504,1.474504,1.474504,1.474504,1.474504 +1.467284,1.467284,1.467284,1.467284,1.467284,1.467284 +1.460064,1.460064,1.460064,1.460064,1.460064,1.460064 +1.452844,1.452844,1.452844,1.452844,1.452844,1.452844 +1.445624,1.445624,1.445624,1.445624,1.445624,1.445624 +1.438404,1.438404,1.438404,1.438404,1.438404,1.438404 +1.431184,1.431184,1.431184,1.431184,1.431184,1.431184 +1.423964,1.423964,1.423964,1.423964,1.423964,1.423964 +1.416744,1.416744,1.416744,1.416744,1.416744,1.416744 +1.409524,1.409524,1.409524,1.409524,1.409524,1.409524 +1.402304,1.402304,1.402304,1.402304,1.402304,1.402304 +1.395084,1.395084,1.395084,1.395084,1.395084,1.395084 +1.387864,1.387864,1.387864,1.387864,1.387864,1.387864 +1.380644,1.380644,1.380644,1.380644,1.380644,1.380644 +1.373424,1.373424,1.373424,1.373424,1.373424,1.373424 +1.366204,1.366204,1.366204,1.366204,1.366204,1.366204 +1.358984,1.358984,1.358984,1.358984,1.358984,1.358984 +1.351764,1.351764,1.351764,1.351764,1.351764,1.351764 +1.344544,1.344544,1.344544,1.344544,1.344544,1.344544 +1.337324,1.337324,1.337324,1.337324,1.337324,1.337324 +1.330104,1.330104,1.330104,1.330104,1.330104,1.330104 +1.322884,1.322884,1.322884,1.322884,1.322884,1.322884 +1.315664,1.315664,1.315664,1.315664,1.315664,1.315664 +1.308444,1.308444,1.308444,1.308444,1.308444,1.308444 +1.301224,1.301224,1.301224,1.301224,1.301224,1.301224 +1.294004,1.294004,1.294004,1.294004,1.294004,1.294004 +1.286784,1.286784,1.286784,1.286784,1.286784,1.286784 +1.279564,1.279564,1.279564,1.279564,1.279564,1.279564 +1.272344,1.272344,1.272344,1.272344,1.272344,1.272344 +1.265124,1.265124,1.265124,1.265124,1.265124,1.265124 +1.257904,1.257904,1.257904,1.257904,1.257904,1.257904 +1.250684,1.250684,1.250684,1.250684,1.250684,1.250684 +1.243464,1.243464,1.243464,1.243464,1.243464,1.243464 +1.236244,1.236244,1.236244,1.236244,1.236244,1.236244 +1.229024,1.229024,1.229024,1.229024,1.229024,1.229024 +1.221804,1.221804,1.221804,1.221804,1.221804,1.221804 +1.214584,1.214584,1.214584,1.214584,1.214584,1.214584 +1.207364,1.207364,1.207364,1.207364,1.207364,1.207364 +1.200144,1.200144,1.200144,1.200144,1.200144,1.200144 +1.192924,1.192924,1.192924,1.192924,1.192924,1.192924 +1.185704,1.185704,1.185704,1.185704,1.185704,1.185704 +1.178484,1.178484,1.178484,1.178484,1.178484,1.178484 +1.171264,1.171264,1.171264,1.171264,1.171264,1.171264 +1.164044,1.164044,1.164044,1.164044,1.164044,1.164044 +1.156824,1.156824,1.156824,1.156824,1.156824,1.156824 +1.149604,1.149604,1.149604,1.149604,1.149604,1.149604 +1.142384,1.142384,1.142384,1.142384,1.142384,1.142384 +1.135164,1.135164,1.135164,1.135164,1.135164,1.135164 +1.127944,1.127944,1.127944,1.127944,1.127944,1.127944 +1.120724,1.120724,1.120724,1.120724,1.120724,1.120724 +1.113504,1.113504,1.113504,1.113504,1.113504,1.113504 +1.106284,1.106284,1.106284,1.106284,1.106284,1.106284 +1.099064,1.099064,1.099064,1.099064,1.099064,1.099064 +1.091844,1.091844,1.091844,1.091844,1.091844,1.091844 +1.084624,1.084624,1.084624,1.084624,1.084624,1.084624 +1.077404,1.077404,1.077404,1.077404,1.077404,1.077404 +1.070184,1.070184,1.070184,1.070184,1.070184,1.070184 +1.062964,1.062964,1.062964,1.062964,1.062964,1.062964 +1.055744,1.055744,1.055744,1.055744,1.055744,1.055744 +1.048524,1.048524,1.048524,1.048524,1.048524,1.048524 +1.041304,1.041304,1.041304,1.041304,1.041304,1.041304 +1.034084,1.034084,1.034084,1.034084,1.034084,1.034084 +1.026864,1.026864,1.026864,1.026864,1.026864,1.026864 +1.019644,1.019644,1.019644,1.019644,1.019644,1.019644 +1.012424,1.012424,1.012424,1.012424,1.012424,1.012424 +1.005204,1.005204,1.005204,1.005204,1.005204,1.005204 +0.997984,0.997984,0.997984,0.997984,0.997984,0.997984 +0.990764,0.990764,0.990764,0.990764,0.990764,0.990764 +0.983544,0.983544,0.983544,0.983544,0.983544,0.983544 +0.976324,0.976324,0.976324,0.976324,0.976324,0.976324 +0.969104,0.969104,0.969104,0.969104,0.969104,0.969104 +0.961884,0.961884,0.961884,0.961884,0.961884,0.961884 +0.954664,0.954664,0.954664,0.954664,0.954664,0.954664 +0.947444,0.947444,0.947444,0.947444,0.947444,0.947444 +0.940224,0.940224,0.940224,0.940224,0.940224,0.940224 +0.933004,0.933004,0.933004,0.933004,0.933004,0.933004 +0.925784,0.925784,0.925784,0.925784,0.925784,0.925784 +0.918564,0.918564,0.918564,0.918564,0.918564,0.918564 +0.911344,0.911344,0.911344,0.911344,0.911344,0.911344 +0.904124,0.904124,0.904124,0.904124,0.904124,0.904124 +0.896904,0.896904,0.896904,0.896904,0.896904,0.896904 +0.889684,0.889684,0.889684,0.889684,0.889684,0.889684 +0.882464,0.882464,0.882464,0.882464,0.882464,0.882464 +0.875244,0.875244,0.875244,0.875244,0.875244,0.875244 +0.868024,0.868024,0.868024,0.868024,0.868024,0.868024 +0.860804,0.860804,0.860804,0.860804,0.860804,0.860804 +0.853584,0.853584,0.853584,0.853584,0.853584,0.853584 +0.846364,0.846364,0.846364,0.846364,0.846364,0.846364 +0.839144,0.839144,0.839144,0.839144,0.839144,0.839144 +0.831924,0.831924,0.831924,0.831924,0.831924,0.831924 +0.824704,0.824704,0.824704,0.824704,0.824704,0.824704 +0.817484,0.817484,0.817484,0.817484,0.817484,0.817484 +0.810264,0.810264,0.810264,0.810264,0.810264,0.810264 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.795824,0.795824,0.795824,0.795824,0.795824,0.795824 +0.788604,0.788604,0.788604,0.788604,0.788604,0.788604 +0.781384,0.781384,0.781384,0.781384,0.781384,0.781384 +0.774164,0.774164,0.774164,0.774164,0.774164,0.774164 +0.766944,0.766944,0.766944,0.766944,0.766944,0.766944 +0.759724,0.759724,0.759724,0.759724,0.759724,0.759724 +0.752504,0.752504,0.752504,0.752504,0.752504,0.752504 +0.745284,0.745284,0.745284,0.745284,0.745284,0.745284 +0.738064,0.738064,0.738064,0.738064,0.738064,0.738064 +0.730844,0.730844,0.730844,0.730844,0.730844,0.730844 +0.723624,0.723624,0.723624,0.723624,0.723624,0.723624 +0.716404,0.716404,0.716404,0.716404,0.716404,0.716404 +0.709184,0.709184,0.709184,0.709184,0.709184,0.709184 +0.701964,0.701964,0.701964,0.701964,0.701964,0.701964 +0.694744,0.694744,0.694744,0.694744,0.694744,0.694744 +0.687524,0.687524,0.687524,0.687524,0.687524,0.687524 +0.680304,0.680304,0.680304,0.680304,0.680304,0.680304 +0.673084,0.673084,0.673084,0.673084,0.673084,0.673084 +0.665864,0.665864,0.665864,0.665864,0.665864,0.665864 +0.658644,0.658644,0.658644,0.658644,0.658644,0.658644 +0.651424,0.651424,0.651424,0.651424,0.651424,0.651424 +0.644204,0.644204,0.644204,0.644204,0.644204,0.644204 +0.636984,0.636984,0.636984,0.636984,0.636984,0.636984 +0.629764,0.629764,0.629764,0.629764,0.629764,0.629764 +0.622544,0.622544,0.622544,0.622544,0.622544,0.622544 +0.615324,0.615324,0.615324,0.615324,0.615324,0.615324 +0.608104,0.608104,0.608104,0.608104,0.608104,0.608104 +0.600884,0.600884,0.600884,0.600884,0.600884,0.600884 +0.593664,0.593664,0.593664,0.593664,0.593664,0.593664 +0.586444,0.586444,0.586444,0.586444,0.586444,0.586444 +0.579224,0.579224,0.579224,0.579224,0.579224,0.579224 +0.572004,0.572004,0.572004,0.572004,0.572004,0.572004 +0.564784,0.564784,0.564784,0.564784,0.564784,0.564784 +0.557564,0.557564,0.557564,0.557564,0.557564,0.557564 +0.550344,0.550344,0.550344,0.550344,0.550344,0.550344 +0.543124,0.543124,0.543124,0.543124,0.543124,0.543124 +0.535904,0.535904,0.535904,0.535904,0.535904,0.535904 +0.528684,0.528684,0.528684,0.528684,0.528684,0.528684 +0.521464,0.521464,0.521464,0.521464,0.521464,0.521464 +0.514244,0.514244,0.514244,0.514244,0.514244,0.514244 +0.507024,0.507024,0.507024,0.507024,0.507024,0.507024 +0.499804,0.499804,0.499804,0.499804,0.499804,0.499804 +0.492584,0.492584,0.492584,0.492584,0.492584,0.492584 +0.485364,0.485364,0.485364,0.485364,0.485364,0.485364 +0.478144,0.478144,0.478144,0.478144,0.478144,0.478144 +0.470924,0.470924,0.470924,0.470924,0.470924,0.470924 +0.463704,0.463704,0.463704,0.463704,0.463704,0.463704 +0.456484,0.456484,0.456484,0.456484,0.456484,0.456484 +0.449264,0.449264,0.449264,0.449264,0.449264,0.449264 +0.442044,0.442044,0.442044,0.442044,0.442044,0.442044 +0.434824,0.434824,0.434824,0.434824,0.434824,0.434824 +0.427604,0.427604,0.427604,0.427604,0.427604,0.427604 +0.420384,0.420384,0.420384,0.420384,0.420384,0.420384 +0.413164,0.413164,0.413164,0.413164,0.413164,0.413164 +0.405944,0.405944,0.405944,0.405944,0.405944,0.405944 +0.398724,0.398724,0.398724,0.398724,0.398724,0.398724 +0.391504,0.391504,0.391504,0.391504,0.391504,0.391504 +0.384284,0.384284,0.384284,0.384284,0.384284,0.384284 +0.377064,0.377064,0.377064,0.377064,0.377064,0.377064 +0.369844,0.369844,0.369844,0.369844,0.369844,0.369844 +0.362624,0.362624,0.362624,0.362624,0.362624,0.362624 +0.355404,0.355404,0.355404,0.355404,0.355404,0.355404 +0.348184,0.348184,0.348184,0.348184,0.348184,0.348184 +0.340964,0.340964,0.340964,0.340964,0.340964,0.340964 +0.333744,0.333744,0.333744,0.333744,0.333744,0.333744 +0.326524,0.326524,0.326524,0.326524,0.326524,0.326524 +0.319304,0.319304,0.319304,0.319304,0.319304,0.319304 +0.312084,0.312084,0.312084,0.312084,0.312084,0.312084 +0.304864,0.304864,0.304864,0.304864,0.304864,0.304864 +0.297644,0.297644,0.297644,0.297644,0.297644,0.297644 +0.290424,0.290424,0.290424,0.290424,0.290424,0.290424 +0.283204,0.283204,0.283204,0.283204,0.283204,0.283204 +0.275984,0.275984,0.275984,0.275984,0.275984,0.275984 +0.268764,0.268764,0.268764,0.268764,0.268764,0.268764 +0.261544,0.261544,0.261544,0.261544,0.261544,0.261544 +0.254324,0.254324,0.254324,0.254324,0.254324,0.254324 +0.247104,0.247104,0.247104,0.247104,0.247104,0.247104 +0.239884,0.239884,0.239884,0.239884,0.239884,0.239884 +0.232664,0.232664,0.232664,0.232664,0.232664,0.232664 +0.225444,0.225444,0.225444,0.225444,0.225444,0.225444 +0.218224,0.218224,0.218224,0.218224,0.218224,0.218224 +0.211004,0.211004,0.211004,0.211004,0.211004,0.211004 +0.203784,0.203784,0.203784,0.203784,0.203784,0.203784 +0.196564,0.196564,0.196564,0.196564,0.196564,0.196564 +0.189344,0.189344,0.189344,0.189344,0.189344,0.189344 +0.182124,0.182124,0.182124,0.182124,0.182124,0.182124 +0.174904,0.174904,0.174904,0.174904,0.174904,0.174904 +0.167684,0.167684,0.167684,0.167684,0.167684,0.167684 +0.160464,0.160464,0.160464,0.160464,0.160464,0.160464 +0.153244,0.153244,0.153244,0.153244,0.153244,0.153244 +0.146024,0.146024,0.146024,0.146024,0.146024,0.146024 +0.138804,0.138804,0.138804,0.138804,0.138804,0.138804 +0.13159,0.13159,0.13159,0.13159,0.13159,0.13159 +0.124401,0.124401,0.124401,0.124401,0.124401,0.124401 +0.117254,0.117254,0.117254,0.117254,0.117254,0.117254 +0.11017,0.11017,0.11017,0.11017,0.11017,0.11017 +0.103167,0.103167,0.103167,0.103167,0.103167,0.103167 +0.096264,0.096264,0.096264,0.096264,0.096264,0.096264 +0.08948,0.08948,0.08948,0.08948,0.08948,0.08948 +0.082834,0.082834,0.082834,0.082834,0.082834,0.082834 +0.076345,0.076345,0.076345,0.076345,0.076345,0.076345 +0.070033,0.070033,0.070033,0.070033,0.070033,0.070033 +0.063915,0.063915,0.063915,0.063915,0.063915,0.063915 +0.058012,0.058012,0.058012,0.058012,0.058012,0.058012 +0.052341,0.052341,0.052341,0.052341,0.052341,0.052341 +0.046923,0.046923,0.046923,0.046923,0.046923,0.046923 +0.041776,0.041776,0.041776,0.041776,0.041776,0.041776 +0.036919,0.036919,0.036919,0.036919,0.036919,0.036919 +0.032371,0.032371,0.032371,0.032371,0.032371,0.032371 +0.028151,0.028151,0.028151,0.028151,0.028151,0.028151 +0.024278,0.024278,0.024278,0.024278,0.024278,0.024278 +0.020769,0.020769,0.020769,0.020769,0.020769,0.020769 +0.017615,0.017615,0.017615,0.017615,0.017615,0.017615 +0.014798,0.014798,0.014798,0.014798,0.014798,0.014798 +0.012298,0.012298,0.012298,0.012298,0.012298,0.012298 +0.010097,0.010097,0.010097,0.010097,0.010097,0.010097 +0.008176,0.008176,0.008176,0.008176,0.008176,0.008176 +0.006515,0.006515,0.006515,0.006515,0.006515,0.006515 +0.005096,0.005096,0.005096,0.005096,0.005096,0.005096 +0.003899,0.003899,0.003899,0.003899,0.003899,0.003899 +0.002907,0.002907,0.002907,0.002907,0.002907,0.002907 +0.002099,0.002099,0.002099,0.002099,0.002099,0.002099 +0.001456,0.001456,0.001456,0.001456,0.001456,0.001456 +0.00096,0.00096,0.00096,0.00096,0.00096,0.00096 +0.000592,0.000592,0.000592,0.000592,0.000592,0.000592 +0.000333,0.000333,0.000333,0.000333,0.000333,0.000333 +0.000163,0.000163,0.000163,0.000163,0.000163,0.000163 +0.000064,0.000064,0.000064,0.000064,0.000064,0.000064 +0.000016,0.000016,0.000016,0.000016,0.000016,0.000016 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000025,-0.000025,-0.000025,-0.000025,-0.000025,-0.000025 +-0.000085,-0.000085,-0.000085,-0.000085,-0.000085,-0.000085 +-0.000203,-0.000203,-0.000203,-0.000203,-0.000203,-0.000203 +-0.000396,-0.000396,-0.000396,-0.000396,-0.000396,-0.000396 +-0.000684,-0.000684,-0.000684,-0.000684,-0.000684,-0.000684 +-0.001086,-0.001086,-0.001086,-0.001086,-0.001086,-0.001086 +-0.001621,-0.001621,-0.001621,-0.001621,-0.001621,-0.001621 +-0.002308,-0.002308,-0.002308,-0.002308,-0.002308,-0.002308 +-0.003167,-0.003167,-0.003167,-0.003167,-0.003167,-0.003167 +-0.004215,-0.004215,-0.004215,-0.004215,-0.004215,-0.004215 +-0.005472,-0.005472,-0.005472,-0.005472,-0.005472,-0.005472 +-0.006957,-0.006957,-0.006957,-0.006957,-0.006957,-0.006957 +-0.008689,-0.008689,-0.008689,-0.008689,-0.008689,-0.008689 +-0.010687,-0.010687,-0.010687,-0.010687,-0.010687,-0.010687 +-0.012971,-0.012971,-0.012971,-0.012971,-0.012971,-0.012971 +-0.015558,-0.015558,-0.015558,-0.015558,-0.015558,-0.015558 +-0.018468,-0.018468,-0.018468,-0.018468,-0.018468,-0.018468 +-0.02172,-0.02172,-0.02172,-0.02172,-0.02172,-0.02172 +-0.025333,-0.025333,-0.025333,-0.025333,-0.025333,-0.025333 +-0.029305,-0.029305,-0.029305,-0.029305,-0.029305,-0.029305 +-0.033619,-0.033619,-0.033619,-0.033619,-0.033619,-0.033619 +-0.038256,-0.038256,-0.038256,-0.038256,-0.038256,-0.038256 +-0.043196,-0.043196,-0.043196,-0.043196,-0.043196,-0.043196 +-0.048422,-0.048422,-0.048422,-0.048422,-0.048422,-0.048422 +-0.053913,-0.053913,-0.053913,-0.053913,-0.053913,-0.053913 +-0.059651,-0.059651,-0.059651,-0.059651,-0.059651,-0.059651 +-0.065616,-0.065616,-0.065616,-0.065616,-0.065616,-0.065616 +-0.071791,-0.071791,-0.071791,-0.071791,-0.071791,-0.071791 +-0.078155,-0.078155,-0.078155,-0.078155,-0.078155,-0.078155 +-0.08469,-0.08469,-0.08469,-0.08469,-0.08469,-0.08469 +-0.091376,-0.091376,-0.091376,-0.091376,-0.091376,-0.091376 +-0.098196,-0.098196,-0.098196,-0.098196,-0.098196,-0.098196 +-0.105129,-0.105129,-0.105129,-0.105129,-0.105129,-0.105129 +-0.112157,-0.112157,-0.112157,-0.112157,-0.112157,-0.112157 +-0.119261,-0.119261,-0.119261,-0.119261,-0.119261,-0.119261 +-0.126421,-0.126421,-0.126421,-0.126421,-0.126421,-0.126421 +-0.133619,-0.133619,-0.133619,-0.133619,-0.133619,-0.133619 +-0.140836,-0.140836,-0.140836,-0.140836,-0.140836,-0.140836 +-0.148056,-0.148056,-0.148056,-0.148056,-0.148056,-0.148056 +-0.155276,-0.155276,-0.155276,-0.155276,-0.155276,-0.155276 +-0.162496,-0.162496,-0.162496,-0.162496,-0.162496,-0.162496 +-0.169716,-0.169716,-0.169716,-0.169716,-0.169716,-0.169716 +-0.176936,-0.176936,-0.176936,-0.176936,-0.176936,-0.176936 +-0.184156,-0.184156,-0.184156,-0.184156,-0.184156,-0.184156 +-0.191376,-0.191376,-0.191376,-0.191376,-0.191376,-0.191376 +-0.198596,-0.198596,-0.198596,-0.198596,-0.198596,-0.198596 +-0.205816,-0.205816,-0.205816,-0.205816,-0.205816,-0.205816 +-0.213036,-0.213036,-0.213036,-0.213036,-0.213036,-0.213036 +-0.220256,-0.220256,-0.220256,-0.220256,-0.220256,-0.220256 +-0.227476,-0.227476,-0.227476,-0.227476,-0.227476,-0.227476 +-0.234696,-0.234696,-0.234696,-0.234696,-0.234696,-0.234696 +-0.241916,-0.241916,-0.241916,-0.241916,-0.241916,-0.241916 +-0.249136,-0.249136,-0.249136,-0.249136,-0.249136,-0.249136 +-0.256356,-0.256356,-0.256356,-0.256356,-0.256356,-0.256356 +-0.263576,-0.263576,-0.263576,-0.263576,-0.263576,-0.263576 +-0.270796,-0.270796,-0.270796,-0.270796,-0.270796,-0.270796 +-0.278016,-0.278016,-0.278016,-0.278016,-0.278016,-0.278016 +-0.285236,-0.285236,-0.285236,-0.285236,-0.285236,-0.285236 +-0.292456,-0.292456,-0.292456,-0.292456,-0.292456,-0.292456 +-0.299676,-0.299676,-0.299676,-0.299676,-0.299676,-0.299676 +-0.306896,-0.306896,-0.306896,-0.306896,-0.306896,-0.306896 +-0.314116,-0.314116,-0.314116,-0.314116,-0.314116,-0.314116 +-0.321336,-0.321336,-0.321336,-0.321336,-0.321336,-0.321336 +-0.328556,-0.328556,-0.328556,-0.328556,-0.328556,-0.328556 +-0.335776,-0.335776,-0.335776,-0.335776,-0.335776,-0.335776 +-0.342996,-0.342996,-0.342996,-0.342996,-0.342996,-0.342996 +-0.350216,-0.350216,-0.350216,-0.350216,-0.350216,-0.350216 +-0.357436,-0.357436,-0.357436,-0.357436,-0.357436,-0.357436 +-0.364656,-0.364656,-0.364656,-0.364656,-0.364656,-0.364656 +-0.371876,-0.371876,-0.371876,-0.371876,-0.371876,-0.371876 +-0.379096,-0.379096,-0.379096,-0.379096,-0.379096,-0.379096 +-0.386316,-0.386316,-0.386316,-0.386316,-0.386316,-0.386316 +-0.393536,-0.393536,-0.393536,-0.393536,-0.393536,-0.393536 +-0.400756,-0.400756,-0.400756,-0.400756,-0.400756,-0.400756 +-0.407976,-0.407976,-0.407976,-0.407976,-0.407976,-0.407976 +-0.415196,-0.415196,-0.415196,-0.415196,-0.415196,-0.415196 +-0.422416,-0.422416,-0.422416,-0.422416,-0.422416,-0.422416 +-0.429636,-0.429636,-0.429636,-0.429636,-0.429636,-0.429636 +-0.436856,-0.436856,-0.436856,-0.436856,-0.436856,-0.436856 +-0.444076,-0.444076,-0.444076,-0.444076,-0.444076,-0.444076 +-0.451296,-0.451296,-0.451296,-0.451296,-0.451296,-0.451296 +-0.458516,-0.458516,-0.458516,-0.458516,-0.458516,-0.458516 +-0.465736,-0.465736,-0.465736,-0.465736,-0.465736,-0.465736 +-0.472956,-0.472956,-0.472956,-0.472956,-0.472956,-0.472956 +-0.480176,-0.480176,-0.480176,-0.480176,-0.480176,-0.480176 +-0.487396,-0.487396,-0.487396,-0.487396,-0.487396,-0.487396 +-0.494616,-0.494616,-0.494616,-0.494616,-0.494616,-0.494616 +-0.501836,-0.501836,-0.501836,-0.501836,-0.501836,-0.501836 +-0.509056,-0.509056,-0.509056,-0.509056,-0.509056,-0.509056 +-0.516276,-0.516276,-0.516276,-0.516276,-0.516276,-0.516276 +-0.523496,-0.523496,-0.523496,-0.523496,-0.523496,-0.523496 +-0.530716,-0.530716,-0.530716,-0.530716,-0.530716,-0.530716 +-0.537936,-0.537936,-0.537936,-0.537936,-0.537936,-0.537936 +-0.545156,-0.545156,-0.545156,-0.545156,-0.545156,-0.545156 +-0.552376,-0.552376,-0.552376,-0.552376,-0.552376,-0.552376 +-0.559596,-0.559596,-0.559596,-0.559596,-0.559596,-0.559596 +-0.566816,-0.566816,-0.566816,-0.566816,-0.566816,-0.566816 +-0.574036,-0.574036,-0.574036,-0.574036,-0.574036,-0.574036 +-0.581256,-0.581256,-0.581256,-0.581256,-0.581256,-0.581256 +-0.588476,-0.588476,-0.588476,-0.588476,-0.588476,-0.588476 +-0.595696,-0.595696,-0.595696,-0.595696,-0.595696,-0.595696 +-0.602916,-0.602916,-0.602916,-0.602916,-0.602916,-0.602916 +-0.610136,-0.610136,-0.610136,-0.610136,-0.610136,-0.610136 +-0.617356,-0.617356,-0.617356,-0.617356,-0.617356,-0.617356 +-0.624576,-0.624576,-0.624576,-0.624576,-0.624576,-0.624576 +-0.631796,-0.631796,-0.631796,-0.631796,-0.631796,-0.631796 +-0.639016,-0.639016,-0.639016,-0.639016,-0.639016,-0.639016 +-0.646236,-0.646236,-0.646236,-0.646236,-0.646236,-0.646236 +-0.653456,-0.653456,-0.653456,-0.653456,-0.653456,-0.653456 +-0.660676,-0.660676,-0.660676,-0.660676,-0.660676,-0.660676 +-0.667896,-0.667896,-0.667896,-0.667896,-0.667896,-0.667896 +-0.675116,-0.675116,-0.675116,-0.675116,-0.675116,-0.675116 +-0.682336,-0.682336,-0.682336,-0.682336,-0.682336,-0.682336 +-0.689556,-0.689556,-0.689556,-0.689556,-0.689556,-0.689556 +-0.696776,-0.696776,-0.696776,-0.696776,-0.696776,-0.696776 +-0.703996,-0.703996,-0.703996,-0.703996,-0.703996,-0.703996 +-0.711216,-0.711216,-0.711216,-0.711216,-0.711216,-0.711216 +-0.718436,-0.718436,-0.718436,-0.718436,-0.718436,-0.718436 +-0.725656,-0.725656,-0.725656,-0.725656,-0.725656,-0.725656 +-0.732876,-0.732876,-0.732876,-0.732876,-0.732876,-0.732876 +-0.740096,-0.740096,-0.740096,-0.740096,-0.740096,-0.740096 +-0.747316,-0.747316,-0.747316,-0.747316,-0.747316,-0.747316 +-0.754536,-0.754536,-0.754536,-0.754536,-0.754536,-0.754536 +-0.761756,-0.761756,-0.761756,-0.761756,-0.761756,-0.761756 +-0.768976,-0.768976,-0.768976,-0.768976,-0.768976,-0.768976 +-0.776196,-0.776196,-0.776196,-0.776196,-0.776196,-0.776196 +-0.783416,-0.783416,-0.783416,-0.783416,-0.783416,-0.783416 +-0.790636,-0.790636,-0.790636,-0.790636,-0.790636,-0.790636 +-0.797856,-0.797856,-0.797856,-0.797856,-0.797856,-0.797856 +-0.805076,-0.805076,-0.805076,-0.805076,-0.805076,-0.805076 +-0.812296,-0.812296,-0.812296,-0.812296,-0.812296,-0.812296 +-0.819516,-0.819516,-0.819516,-0.819516,-0.819516,-0.819516 +-0.826736,-0.826736,-0.826736,-0.826736,-0.826736,-0.826736 +-0.833956,-0.833956,-0.833956,-0.833956,-0.833956,-0.833956 +-0.841176,-0.841176,-0.841176,-0.841176,-0.841176,-0.841176 +-0.848396,-0.848396,-0.848396,-0.848396,-0.848396,-0.848396 +-0.855616,-0.855616,-0.855616,-0.855616,-0.855616,-0.855616 +-0.862836,-0.862836,-0.862836,-0.862836,-0.862836,-0.862836 +-0.870056,-0.870056,-0.870056,-0.870056,-0.870056,-0.870056 +-0.877276,-0.877276,-0.877276,-0.877276,-0.877276,-0.877276 +-0.884496,-0.884496,-0.884496,-0.884496,-0.884496,-0.884496 +-0.891716,-0.891716,-0.891716,-0.891716,-0.891716,-0.891716 +-0.898936,-0.898936,-0.898936,-0.898936,-0.898936,-0.898936 +-0.906156,-0.906156,-0.906156,-0.906156,-0.906156,-0.906156 +-0.913376,-0.913376,-0.913376,-0.913376,-0.913376,-0.913376 +-0.920596,-0.920596,-0.920596,-0.920596,-0.920596,-0.920596 +-0.927816,-0.927816,-0.927816,-0.927816,-0.927816,-0.927816 +-0.935036,-0.935036,-0.935036,-0.935036,-0.935036,-0.935036 +-0.942256,-0.942256,-0.942256,-0.942256,-0.942256,-0.942256 +-0.949476,-0.949476,-0.949476,-0.949476,-0.949476,-0.949476 +-0.956696,-0.956696,-0.956696,-0.956696,-0.956696,-0.956696 +-0.963916,-0.963916,-0.963916,-0.963916,-0.963916,-0.963916 +-0.971136,-0.971136,-0.971136,-0.971136,-0.971136,-0.971136 +-0.978356,-0.978356,-0.978356,-0.978356,-0.978356,-0.978356 +-0.985576,-0.985576,-0.985576,-0.985576,-0.985576,-0.985576 +-0.992796,-0.992796,-0.992796,-0.992796,-0.992796,-0.992796 +-1.000016,-1.000016,-1.000016,-1.000016,-1.000016,-1.000016 +-1.007236,-1.007236,-1.007236,-1.007236,-1.007236,-1.007236 +-1.014456,-1.014456,-1.014456,-1.014456,-1.014456,-1.014456 +-1.021676,-1.021676,-1.021676,-1.021676,-1.021676,-1.021676 +-1.028896,-1.028896,-1.028896,-1.028896,-1.028896,-1.028896 +-1.036116,-1.036116,-1.036116,-1.036116,-1.036116,-1.036116 +-1.043336,-1.043336,-1.043336,-1.043336,-1.043336,-1.043336 +-1.050556,-1.050556,-1.050556,-1.050556,-1.050556,-1.050556 +-1.057776,-1.057776,-1.057776,-1.057776,-1.057776,-1.057776 +-1.064996,-1.064996,-1.064996,-1.064996,-1.064996,-1.064996 +-1.072216,-1.072216,-1.072216,-1.072216,-1.072216,-1.072216 +-1.079436,-1.079436,-1.079436,-1.079436,-1.079436,-1.079436 +-1.086656,-1.086656,-1.086656,-1.086656,-1.086656,-1.086656 +-1.093876,-1.093876,-1.093876,-1.093876,-1.093876,-1.093876 +-1.101096,-1.101096,-1.101096,-1.101096,-1.101096,-1.101096 +-1.108316,-1.108316,-1.108316,-1.108316,-1.108316,-1.108316 +-1.115536,-1.115536,-1.115536,-1.115536,-1.115536,-1.115536 +-1.122756,-1.122756,-1.122756,-1.122756,-1.122756,-1.122756 +-1.129976,-1.129976,-1.129976,-1.129976,-1.129976,-1.129976 +-1.137196,-1.137196,-1.137196,-1.137196,-1.137196,-1.137196 +-1.144416,-1.144416,-1.144416,-1.144416,-1.144416,-1.144416 +-1.151636,-1.151636,-1.151636,-1.151636,-1.151636,-1.151636 +-1.158856,-1.158856,-1.158856,-1.158856,-1.158856,-1.158856 +-1.166076,-1.166076,-1.166076,-1.166076,-1.166076,-1.166076 +-1.173296,-1.173296,-1.173296,-1.173296,-1.173296,-1.173296 +-1.180516,-1.180516,-1.180516,-1.180516,-1.180516,-1.180516 +-1.187736,-1.187736,-1.187736,-1.187736,-1.187736,-1.187736 +-1.194956,-1.194956,-1.194956,-1.194956,-1.194956,-1.194956 +-1.202176,-1.202176,-1.202176,-1.202176,-1.202176,-1.202176 +-1.209396,-1.209396,-1.209396,-1.209396,-1.209396,-1.209396 +-1.216616,-1.216616,-1.216616,-1.216616,-1.216616,-1.216616 +-1.223836,-1.223836,-1.223836,-1.223836,-1.223836,-1.223836 +-1.231056,-1.231056,-1.231056,-1.231056,-1.231056,-1.231056 +-1.238276,-1.238276,-1.238276,-1.238276,-1.238276,-1.238276 +-1.245496,-1.245496,-1.245496,-1.245496,-1.245496,-1.245496 +-1.252716,-1.252716,-1.252716,-1.252716,-1.252716,-1.252716 +-1.259936,-1.259936,-1.259936,-1.259936,-1.259936,-1.259936 +-1.267156,-1.267156,-1.267156,-1.267156,-1.267156,-1.267156 +-1.274376,-1.274376,-1.274376,-1.274376,-1.274376,-1.274376 +-1.281596,-1.281596,-1.281596,-1.281596,-1.281596,-1.281596 +-1.288816,-1.288816,-1.288816,-1.288816,-1.288816,-1.288816 +-1.296036,-1.296036,-1.296036,-1.296036,-1.296036,-1.296036 +-1.303256,-1.303256,-1.303256,-1.303256,-1.303256,-1.303256 +-1.310476,-1.310476,-1.310476,-1.310476,-1.310476,-1.310476 +-1.317696,-1.317696,-1.317696,-1.317696,-1.317696,-1.317696 +-1.324916,-1.324916,-1.324916,-1.324916,-1.324916,-1.324916 +-1.332136,-1.332136,-1.332136,-1.332136,-1.332136,-1.332136 +-1.339356,-1.339356,-1.339356,-1.339356,-1.339356,-1.339356 +-1.346576,-1.346576,-1.346576,-1.346576,-1.346576,-1.346576 +-1.353796,-1.353796,-1.353796,-1.353796,-1.353796,-1.353796 +-1.361016,-1.361016,-1.361016,-1.361016,-1.361016,-1.361016 +-1.368236,-1.368236,-1.368236,-1.368236,-1.368236,-1.368236 +-1.375456,-1.375456,-1.375456,-1.375456,-1.375456,-1.375456 +-1.382676,-1.382676,-1.382676,-1.382676,-1.382676,-1.382676 +-1.389896,-1.389896,-1.389896,-1.389896,-1.389896,-1.389896 +-1.397116,-1.397116,-1.397116,-1.397116,-1.397116,-1.397116 +-1.404336,-1.404336,-1.404336,-1.404336,-1.404336,-1.404336 +-1.411556,-1.411556,-1.411556,-1.411556,-1.411556,-1.411556 +-1.418776,-1.418776,-1.418776,-1.418776,-1.418776,-1.418776 +-1.425996,-1.425996,-1.425996,-1.425996,-1.425996,-1.425996 +-1.433216,-1.433216,-1.433216,-1.433216,-1.433216,-1.433216 +-1.440436,-1.440436,-1.440436,-1.440436,-1.440436,-1.440436 +-1.447656,-1.447656,-1.447656,-1.447656,-1.447656,-1.447656 +-1.454876,-1.454876,-1.454876,-1.454876,-1.454876,-1.454876 +-1.462096,-1.462096,-1.462096,-1.462096,-1.462096,-1.462096 +-1.469316,-1.469316,-1.469316,-1.469316,-1.469316,-1.469316 +-1.476536,-1.476536,-1.476536,-1.476536,-1.476536,-1.476536 +-1.483756,-1.483756,-1.483756,-1.483756,-1.483756,-1.483756 +-1.490976,-1.490976,-1.490976,-1.490976,-1.490976,-1.490976 +-1.498196,-1.498196,-1.498196,-1.498196,-1.498196,-1.498196 +-1.505416,-1.505416,-1.505416,-1.505416,-1.505416,-1.505416 +-1.512636,-1.512636,-1.512636,-1.512636,-1.512636,-1.512636 +-1.519856,-1.519856,-1.519856,-1.519856,-1.519856,-1.519856 +-1.527076,-1.527076,-1.527076,-1.527076,-1.527076,-1.527076 +-1.534296,-1.534296,-1.534296,-1.534296,-1.534296,-1.534296 +-1.541516,-1.541516,-1.541516,-1.541516,-1.541516,-1.541516 +-1.548736,-1.548736,-1.548736,-1.548736,-1.548736,-1.548736 +-1.555956,-1.555956,-1.555956,-1.555956,-1.555956,-1.555956 +-1.563176,-1.563176,-1.563176,-1.563176,-1.563176,-1.563176 +-1.570396,-1.570396,-1.570396,-1.570396,-1.570396,-1.570396 +-1.577616,-1.577616,-1.577616,-1.577616,-1.577616,-1.577616 +-1.584836,-1.584836,-1.584836,-1.584836,-1.584836,-1.584836 +-1.592056,-1.592056,-1.592056,-1.592056,-1.592056,-1.592056 +-1.599276,-1.599276,-1.599276,-1.599276,-1.599276,-1.599276 +-1.606496,-1.606496,-1.606496,-1.606496,-1.606496,-1.606496 +-1.61371,-1.61371,-1.61371,-1.61371,-1.61371,-1.61371 +-1.620899,-1.620899,-1.620899,-1.620899,-1.620899,-1.620899 +-1.628046,-1.628046,-1.628046,-1.628046,-1.628046,-1.628046 +-1.63513,-1.63513,-1.63513,-1.63513,-1.63513,-1.63513 +-1.642133,-1.642133,-1.642133,-1.642133,-1.642133,-1.642133 +-1.649036,-1.649036,-1.649036,-1.649036,-1.649036,-1.649036 +-1.65582,-1.65582,-1.65582,-1.65582,-1.65582,-1.65582 +-1.662466,-1.662466,-1.662466,-1.662466,-1.662466,-1.662466 +-1.668955,-1.668955,-1.668955,-1.668955,-1.668955,-1.668955 +-1.675267,-1.675267,-1.675267,-1.675267,-1.675267,-1.675267 +-1.681385,-1.681385,-1.681385,-1.681385,-1.681385,-1.681385 +-1.687288,-1.687288,-1.687288,-1.687288,-1.687288,-1.687288 +-1.692959,-1.692959,-1.692959,-1.692959,-1.692959,-1.692959 +-1.698377,-1.698377,-1.698377,-1.698377,-1.698377,-1.698377 +-1.703524,-1.703524,-1.703524,-1.703524,-1.703524,-1.703524 +-1.708381,-1.708381,-1.708381,-1.708381,-1.708381,-1.708381 +-1.712929,-1.712929,-1.712929,-1.712929,-1.712929,-1.712929 +-1.717149,-1.717149,-1.717149,-1.717149,-1.717149,-1.717149 +-1.721022,-1.721022,-1.721022,-1.721022,-1.721022,-1.721022 +-1.724531,-1.724531,-1.724531,-1.724531,-1.724531,-1.724531 +-1.727685,-1.727685,-1.727685,-1.727685,-1.727685,-1.727685 +-1.730502,-1.730502,-1.730502,-1.730502,-1.730502,-1.730502 +-1.733002,-1.733002,-1.733002,-1.733002,-1.733002,-1.733002 +-1.735203,-1.735203,-1.735203,-1.735203,-1.735203,-1.735203 +-1.737124,-1.737124,-1.737124,-1.737124,-1.737124,-1.737124 +-1.738785,-1.738785,-1.738785,-1.738785,-1.738785,-1.738785 +-1.740204,-1.740204,-1.740204,-1.740204,-1.740204,-1.740204 +-1.741401,-1.741401,-1.741401,-1.741401,-1.741401,-1.741401 +-1.742393,-1.742393,-1.742393,-1.742393,-1.742393,-1.742393 +-1.743201,-1.743201,-1.743201,-1.743201,-1.743201,-1.743201 +-1.743844,-1.743844,-1.743844,-1.743844,-1.743844,-1.743844 +-1.74434,-1.74434,-1.74434,-1.74434,-1.74434,-1.74434 +-1.744708,-1.744708,-1.744708,-1.744708,-1.744708,-1.744708 +-1.744967,-1.744967,-1.744967,-1.744967,-1.744967,-1.744967 +-1.745137,-1.745137,-1.745137,-1.745137,-1.745137,-1.745137 +-1.745236,-1.745236,-1.745236,-1.745236,-1.745236,-1.745236 +-1.745284,-1.745284,-1.745284,-1.745284,-1.745284,-1.745284 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745275,-1.745275,-1.745275,-1.745275,-1.745275,-1.745275 +-1.745215,-1.745215,-1.745215,-1.745215,-1.745215,-1.745215 +-1.745097,-1.745097,-1.745097,-1.745097,-1.745097,-1.745097 +-1.744904,-1.744904,-1.744904,-1.744904,-1.744904,-1.744904 +-1.744616,-1.744616,-1.744616,-1.744616,-1.744616,-1.744616 +-1.744214,-1.744214,-1.744214,-1.744214,-1.744214,-1.744214 +-1.743679,-1.743679,-1.743679,-1.743679,-1.743679,-1.743679 +-1.742992,-1.742992,-1.742992,-1.742992,-1.742992,-1.742992 +-1.742133,-1.742133,-1.742133,-1.742133,-1.742133,-1.742133 +-1.741085,-1.741085,-1.741085,-1.741085,-1.741085,-1.741085 +-1.739828,-1.739828,-1.739828,-1.739828,-1.739828,-1.739828 +-1.738343,-1.738343,-1.738343,-1.738343,-1.738343,-1.738343 +-1.736611,-1.736611,-1.736611,-1.736611,-1.736611,-1.736611 +-1.734613,-1.734613,-1.734613,-1.734613,-1.734613,-1.734613 +-1.732329,-1.732329,-1.732329,-1.732329,-1.732329,-1.732329 +-1.729742,-1.729742,-1.729742,-1.729742,-1.729742,-1.729742 +-1.726832,-1.726832,-1.726832,-1.726832,-1.726832,-1.726832 +-1.72358,-1.72358,-1.72358,-1.72358,-1.72358,-1.72358 +-1.719967,-1.719967,-1.719967,-1.719967,-1.719967,-1.719967 +-1.715995,-1.715995,-1.715995,-1.715995,-1.715995,-1.715995 +-1.711681,-1.711681,-1.711681,-1.711681,-1.711681,-1.711681 +-1.707044,-1.707044,-1.707044,-1.707044,-1.707044,-1.707044 +-1.702104,-1.702104,-1.702104,-1.702104,-1.702104,-1.702104 +-1.696878,-1.696878,-1.696878,-1.696878,-1.696878,-1.696878 +-1.691387,-1.691387,-1.691387,-1.691387,-1.691387,-1.691387 +-1.685649,-1.685649,-1.685649,-1.685649,-1.685649,-1.685649 +-1.679684,-1.679684,-1.679684,-1.679684,-1.679684,-1.679684 +-1.673509,-1.673509,-1.673509,-1.673509,-1.673509,-1.673509 +-1.667145,-1.667145,-1.667145,-1.667145,-1.667145,-1.667145 +-1.66061,-1.66061,-1.66061,-1.66061,-1.66061,-1.66061 +-1.653924,-1.653924,-1.653924,-1.653924,-1.653924,-1.653924 +-1.647104,-1.647104,-1.647104,-1.647104,-1.647104,-1.647104 +-1.640171,-1.640171,-1.640171,-1.640171,-1.640171,-1.640171 +-1.633143,-1.633143,-1.633143,-1.633143,-1.633143,-1.633143 +-1.626039,-1.626039,-1.626039,-1.626039,-1.626039,-1.626039 +-1.618879,-1.618879,-1.618879,-1.618879,-1.618879,-1.618879 +-1.611681,-1.611681,-1.611681,-1.611681,-1.611681,-1.611681 +-1.604464,-1.604464,-1.604464,-1.604464,-1.604464,-1.604464 +-1.597244,-1.597244,-1.597244,-1.597244,-1.597244,-1.597244 +-1.590024,-1.590024,-1.590024,-1.590024,-1.590024,-1.590024 +-1.582804,-1.582804,-1.582804,-1.582804,-1.582804,-1.582804 +-1.575584,-1.575584,-1.575584,-1.575584,-1.575584,-1.575584 +-1.568364,-1.568364,-1.568364,-1.568364,-1.568364,-1.568364 +-1.561144,-1.561144,-1.561144,-1.561144,-1.561144,-1.561144 +-1.553924,-1.553924,-1.553924,-1.553924,-1.553924,-1.553924 +-1.546704,-1.546704,-1.546704,-1.546704,-1.546704,-1.546704 +-1.539484,-1.539484,-1.539484,-1.539484,-1.539484,-1.539484 +-1.532264,-1.532264,-1.532264,-1.532264,-1.532264,-1.532264 +-1.525044,-1.525044,-1.525044,-1.525044,-1.525044,-1.525044 +-1.517824,-1.517824,-1.517824,-1.517824,-1.517824,-1.517824 +-1.510604,-1.510604,-1.510604,-1.510604,-1.510604,-1.510604 +-1.503384,-1.503384,-1.503384,-1.503384,-1.503384,-1.503384 +-1.496164,-1.496164,-1.496164,-1.496164,-1.496164,-1.496164 +-1.488944,-1.488944,-1.488944,-1.488944,-1.488944,-1.488944 +-1.481724,-1.481724,-1.481724,-1.481724,-1.481724,-1.481724 +-1.474504,-1.474504,-1.474504,-1.474504,-1.474504,-1.474504 +-1.467284,-1.467284,-1.467284,-1.467284,-1.467284,-1.467284 +-1.460064,-1.460064,-1.460064,-1.460064,-1.460064,-1.460064 +-1.452844,-1.452844,-1.452844,-1.452844,-1.452844,-1.452844 +-1.445624,-1.445624,-1.445624,-1.445624,-1.445624,-1.445624 +-1.438404,-1.438404,-1.438404,-1.438404,-1.438404,-1.438404 +-1.431184,-1.431184,-1.431184,-1.431184,-1.431184,-1.431184 +-1.423964,-1.423964,-1.423964,-1.423964,-1.423964,-1.423964 +-1.416744,-1.416744,-1.416744,-1.416744,-1.416744,-1.416744 +-1.409524,-1.409524,-1.409524,-1.409524,-1.409524,-1.409524 +-1.402304,-1.402304,-1.402304,-1.402304,-1.402304,-1.402304 +-1.395084,-1.395084,-1.395084,-1.395084,-1.395084,-1.395084 +-1.387864,-1.387864,-1.387864,-1.387864,-1.387864,-1.387864 +-1.380644,-1.380644,-1.380644,-1.380644,-1.380644,-1.380644 +-1.373424,-1.373424,-1.373424,-1.373424,-1.373424,-1.373424 +-1.366204,-1.366204,-1.366204,-1.366204,-1.366204,-1.366204 +-1.358984,-1.358984,-1.358984,-1.358984,-1.358984,-1.358984 +-1.351764,-1.351764,-1.351764,-1.351764,-1.351764,-1.351764 +-1.344544,-1.344544,-1.344544,-1.344544,-1.344544,-1.344544 +-1.337324,-1.337324,-1.337324,-1.337324,-1.337324,-1.337324 +-1.330104,-1.330104,-1.330104,-1.330104,-1.330104,-1.330104 +-1.322884,-1.322884,-1.322884,-1.322884,-1.322884,-1.322884 +-1.315664,-1.315664,-1.315664,-1.315664,-1.315664,-1.315664 +-1.308444,-1.308444,-1.308444,-1.308444,-1.308444,-1.308444 +-1.301224,-1.301224,-1.301224,-1.301224,-1.301224,-1.301224 +-1.294004,-1.294004,-1.294004,-1.294004,-1.294004,-1.294004 +-1.286784,-1.286784,-1.286784,-1.286784,-1.286784,-1.286784 +-1.279564,-1.279564,-1.279564,-1.279564,-1.279564,-1.279564 +-1.272344,-1.272344,-1.272344,-1.272344,-1.272344,-1.272344 +-1.265124,-1.265124,-1.265124,-1.265124,-1.265124,-1.265124 +-1.257904,-1.257904,-1.257904,-1.257904,-1.257904,-1.257904 +-1.250684,-1.250684,-1.250684,-1.250684,-1.250684,-1.250684 +-1.243464,-1.243464,-1.243464,-1.243464,-1.243464,-1.243464 +-1.236244,-1.236244,-1.236244,-1.236244,-1.236244,-1.236244 +-1.229024,-1.229024,-1.229024,-1.229024,-1.229024,-1.229024 +-1.221804,-1.221804,-1.221804,-1.221804,-1.221804,-1.221804 +-1.214584,-1.214584,-1.214584,-1.214584,-1.214584,-1.214584 +-1.207364,-1.207364,-1.207364,-1.207364,-1.207364,-1.207364 +-1.200144,-1.200144,-1.200144,-1.200144,-1.200144,-1.200144 +-1.192924,-1.192924,-1.192924,-1.192924,-1.192924,-1.192924 +-1.185704,-1.185704,-1.185704,-1.185704,-1.185704,-1.185704 +-1.178484,-1.178484,-1.178484,-1.178484,-1.178484,-1.178484 +-1.171264,-1.171264,-1.171264,-1.171264,-1.171264,-1.171264 +-1.164044,-1.164044,-1.164044,-1.164044,-1.164044,-1.164044 +-1.156824,-1.156824,-1.156824,-1.156824,-1.156824,-1.156824 +-1.149604,-1.149604,-1.149604,-1.149604,-1.149604,-1.149604 +-1.142384,-1.142384,-1.142384,-1.142384,-1.142384,-1.142384 +-1.135164,-1.135164,-1.135164,-1.135164,-1.135164,-1.135164 +-1.127944,-1.127944,-1.127944,-1.127944,-1.127944,-1.127944 +-1.120724,-1.120724,-1.120724,-1.120724,-1.120724,-1.120724 +-1.113504,-1.113504,-1.113504,-1.113504,-1.113504,-1.113504 +-1.106284,-1.106284,-1.106284,-1.106284,-1.106284,-1.106284 +-1.099064,-1.099064,-1.099064,-1.099064,-1.099064,-1.099064 +-1.091844,-1.091844,-1.091844,-1.091844,-1.091844,-1.091844 +-1.084624,-1.084624,-1.084624,-1.084624,-1.084624,-1.084624 +-1.077404,-1.077404,-1.077404,-1.077404,-1.077404,-1.077404 +-1.070184,-1.070184,-1.070184,-1.070184,-1.070184,-1.070184 +-1.062964,-1.062964,-1.062964,-1.062964,-1.062964,-1.062964 +-1.055744,-1.055744,-1.055744,-1.055744,-1.055744,-1.055744 +-1.048524,-1.048524,-1.048524,-1.048524,-1.048524,-1.048524 +-1.041304,-1.041304,-1.041304,-1.041304,-1.041304,-1.041304 +-1.034084,-1.034084,-1.034084,-1.034084,-1.034084,-1.034084 +-1.026864,-1.026864,-1.026864,-1.026864,-1.026864,-1.026864 +-1.019644,-1.019644,-1.019644,-1.019644,-1.019644,-1.019644 +-1.012424,-1.012424,-1.012424,-1.012424,-1.012424,-1.012424 +-1.005204,-1.005204,-1.005204,-1.005204,-1.005204,-1.005204 +-0.997984,-0.997984,-0.997984,-0.997984,-0.997984,-0.997984 +-0.990764,-0.990764,-0.990764,-0.990764,-0.990764,-0.990764 +-0.983544,-0.983544,-0.983544,-0.983544,-0.983544,-0.983544 +-0.976324,-0.976324,-0.976324,-0.976324,-0.976324,-0.976324 +-0.969104,-0.969104,-0.969104,-0.969104,-0.969104,-0.969104 +-0.961884,-0.961884,-0.961884,-0.961884,-0.961884,-0.961884 +-0.954664,-0.954664,-0.954664,-0.954664,-0.954664,-0.954664 +-0.947444,-0.947444,-0.947444,-0.947444,-0.947444,-0.947444 +-0.940224,-0.940224,-0.940224,-0.940224,-0.940224,-0.940224 +-0.933004,-0.933004,-0.933004,-0.933004,-0.933004,-0.933004 +-0.925784,-0.925784,-0.925784,-0.925784,-0.925784,-0.925784 +-0.918564,-0.918564,-0.918564,-0.918564,-0.918564,-0.918564 +-0.911344,-0.911344,-0.911344,-0.911344,-0.911344,-0.911344 +-0.904124,-0.904124,-0.904124,-0.904124,-0.904124,-0.904124 +-0.896904,-0.896904,-0.896904,-0.896904,-0.896904,-0.896904 +-0.889684,-0.889684,-0.889684,-0.889684,-0.889684,-0.889684 +-0.882464,-0.882464,-0.882464,-0.882464,-0.882464,-0.882464 +-0.875244,-0.875244,-0.875244,-0.875244,-0.875244,-0.875244 +-0.868024,-0.868024,-0.868024,-0.868024,-0.868024,-0.868024 +-0.860804,-0.860804,-0.860804,-0.860804,-0.860804,-0.860804 +-0.853584,-0.853584,-0.853584,-0.853584,-0.853584,-0.853584 +-0.846364,-0.846364,-0.846364,-0.846364,-0.846364,-0.846364 +-0.839144,-0.839144,-0.839144,-0.839144,-0.839144,-0.839144 +-0.831924,-0.831924,-0.831924,-0.831924,-0.831924,-0.831924 +-0.824704,-0.824704,-0.824704,-0.824704,-0.824704,-0.824704 +-0.817484,-0.817484,-0.817484,-0.817484,-0.817484,-0.817484 +-0.810264,-0.810264,-0.810264,-0.810264,-0.810264,-0.810264 +-0.803044,-0.803044,-0.803044,-0.803044,-0.803044,-0.803044 +-0.795824,-0.795824,-0.795824,-0.795824,-0.795824,-0.795824 +-0.788604,-0.788604,-0.788604,-0.788604,-0.788604,-0.788604 +-0.781384,-0.781384,-0.781384,-0.781384,-0.781384,-0.781384 +-0.774164,-0.774164,-0.774164,-0.774164,-0.774164,-0.774164 +-0.766944,-0.766944,-0.766944,-0.766944,-0.766944,-0.766944 +-0.759724,-0.759724,-0.759724,-0.759724,-0.759724,-0.759724 +-0.752504,-0.752504,-0.752504,-0.752504,-0.752504,-0.752504 +-0.745284,-0.745284,-0.745284,-0.745284,-0.745284,-0.745284 +-0.738064,-0.738064,-0.738064,-0.738064,-0.738064,-0.738064 +-0.730844,-0.730844,-0.730844,-0.730844,-0.730844,-0.730844 +-0.723624,-0.723624,-0.723624,-0.723624,-0.723624,-0.723624 +-0.716404,-0.716404,-0.716404,-0.716404,-0.716404,-0.716404 +-0.709184,-0.709184,-0.709184,-0.709184,-0.709184,-0.709184 +-0.701964,-0.701964,-0.701964,-0.701964,-0.701964,-0.701964 +-0.694744,-0.694744,-0.694744,-0.694744,-0.694744,-0.694744 +-0.687524,-0.687524,-0.687524,-0.687524,-0.687524,-0.687524 +-0.680304,-0.680304,-0.680304,-0.680304,-0.680304,-0.680304 +-0.673084,-0.673084,-0.673084,-0.673084,-0.673084,-0.673084 +-0.665864,-0.665864,-0.665864,-0.665864,-0.665864,-0.665864 +-0.658644,-0.658644,-0.658644,-0.658644,-0.658644,-0.658644 +-0.651424,-0.651424,-0.651424,-0.651424,-0.651424,-0.651424 +-0.644204,-0.644204,-0.644204,-0.644204,-0.644204,-0.644204 +-0.636984,-0.636984,-0.636984,-0.636984,-0.636984,-0.636984 +-0.629764,-0.629764,-0.629764,-0.629764,-0.629764,-0.629764 +-0.622544,-0.622544,-0.622544,-0.622544,-0.622544,-0.622544 +-0.615324,-0.615324,-0.615324,-0.615324,-0.615324,-0.615324 +-0.608104,-0.608104,-0.608104,-0.608104,-0.608104,-0.608104 +-0.600884,-0.600884,-0.600884,-0.600884,-0.600884,-0.600884 +-0.593664,-0.593664,-0.593664,-0.593664,-0.593664,-0.593664 +-0.586444,-0.586444,-0.586444,-0.586444,-0.586444,-0.586444 +-0.579224,-0.579224,-0.579224,-0.579224,-0.579224,-0.579224 +-0.572004,-0.572004,-0.572004,-0.572004,-0.572004,-0.572004 +-0.564784,-0.564784,-0.564784,-0.564784,-0.564784,-0.564784 +-0.557564,-0.557564,-0.557564,-0.557564,-0.557564,-0.557564 +-0.550344,-0.550344,-0.550344,-0.550344,-0.550344,-0.550344 +-0.543124,-0.543124,-0.543124,-0.543124,-0.543124,-0.543124 +-0.535904,-0.535904,-0.535904,-0.535904,-0.535904,-0.535904 +-0.528684,-0.528684,-0.528684,-0.528684,-0.528684,-0.528684 +-0.521464,-0.521464,-0.521464,-0.521464,-0.521464,-0.521464 +-0.514244,-0.514244,-0.514244,-0.514244,-0.514244,-0.514244 +-0.507024,-0.507024,-0.507024,-0.507024,-0.507024,-0.507024 +-0.499804,-0.499804,-0.499804,-0.499804,-0.499804,-0.499804 +-0.492584,-0.492584,-0.492584,-0.492584,-0.492584,-0.492584 +-0.485364,-0.485364,-0.485364,-0.485364,-0.485364,-0.485364 +-0.478144,-0.478144,-0.478144,-0.478144,-0.478144,-0.478144 +-0.470924,-0.470924,-0.470924,-0.470924,-0.470924,-0.470924 +-0.463704,-0.463704,-0.463704,-0.463704,-0.463704,-0.463704 +-0.456484,-0.456484,-0.456484,-0.456484,-0.456484,-0.456484 +-0.449264,-0.449264,-0.449264,-0.449264,-0.449264,-0.449264 +-0.442044,-0.442044,-0.442044,-0.442044,-0.442044,-0.442044 +-0.434824,-0.434824,-0.434824,-0.434824,-0.434824,-0.434824 +-0.427604,-0.427604,-0.427604,-0.427604,-0.427604,-0.427604 +-0.420384,-0.420384,-0.420384,-0.420384,-0.420384,-0.420384 +-0.413164,-0.413164,-0.413164,-0.413164,-0.413164,-0.413164 +-0.405944,-0.405944,-0.405944,-0.405944,-0.405944,-0.405944 +-0.398724,-0.398724,-0.398724,-0.398724,-0.398724,-0.398724 +-0.391504,-0.391504,-0.391504,-0.391504,-0.391504,-0.391504 +-0.384284,-0.384284,-0.384284,-0.384284,-0.384284,-0.384284 +-0.377064,-0.377064,-0.377064,-0.377064,-0.377064,-0.377064 +-0.369844,-0.369844,-0.369844,-0.369844,-0.369844,-0.369844 +-0.362624,-0.362624,-0.362624,-0.362624,-0.362624,-0.362624 +-0.355404,-0.355404,-0.355404,-0.355404,-0.355404,-0.355404 +-0.348184,-0.348184,-0.348184,-0.348184,-0.348184,-0.348184 +-0.340964,-0.340964,-0.340964,-0.340964,-0.340964,-0.340964 +-0.333744,-0.333744,-0.333744,-0.333744,-0.333744,-0.333744 +-0.326524,-0.326524,-0.326524,-0.326524,-0.326524,-0.326524 +-0.319304,-0.319304,-0.319304,-0.319304,-0.319304,-0.319304 +-0.312084,-0.312084,-0.312084,-0.312084,-0.312084,-0.312084 +-0.304864,-0.304864,-0.304864,-0.304864,-0.304864,-0.304864 +-0.297644,-0.297644,-0.297644,-0.297644,-0.297644,-0.297644 +-0.290424,-0.290424,-0.290424,-0.290424,-0.290424,-0.290424 +-0.283204,-0.283204,-0.283204,-0.283204,-0.283204,-0.283204 +-0.275984,-0.275984,-0.275984,-0.275984,-0.275984,-0.275984 +-0.268764,-0.268764,-0.268764,-0.268764,-0.268764,-0.268764 +-0.261544,-0.261544,-0.261544,-0.261544,-0.261544,-0.261544 +-0.254324,-0.254324,-0.254324,-0.254324,-0.254324,-0.254324 +-0.247104,-0.247104,-0.247104,-0.247104,-0.247104,-0.247104 +-0.239884,-0.239884,-0.239884,-0.239884,-0.239884,-0.239884 +-0.232664,-0.232664,-0.232664,-0.232664,-0.232664,-0.232664 +-0.225444,-0.225444,-0.225444,-0.225444,-0.225444,-0.225444 +-0.218224,-0.218224,-0.218224,-0.218224,-0.218224,-0.218224 +-0.211004,-0.211004,-0.211004,-0.211004,-0.211004,-0.211004 +-0.203784,-0.203784,-0.203784,-0.203784,-0.203784,-0.203784 +-0.196564,-0.196564,-0.196564,-0.196564,-0.196564,-0.196564 +-0.189344,-0.189344,-0.189344,-0.189344,-0.189344,-0.189344 +-0.182124,-0.182124,-0.182124,-0.182124,-0.182124,-0.182124 +-0.174904,-0.174904,-0.174904,-0.174904,-0.174904,-0.174904 +-0.167684,-0.167684,-0.167684,-0.167684,-0.167684,-0.167684 +-0.160464,-0.160464,-0.160464,-0.160464,-0.160464,-0.160464 +-0.153244,-0.153244,-0.153244,-0.153244,-0.153244,-0.153244 +-0.146024,-0.146024,-0.146024,-0.146024,-0.146024,-0.146024 +-0.138804,-0.138804,-0.138804,-0.138804,-0.138804,-0.138804 +-0.13159,-0.13159,-0.13159,-0.13159,-0.13159,-0.13159 +-0.124401,-0.124401,-0.124401,-0.124401,-0.124401,-0.124401 +-0.117254,-0.117254,-0.117254,-0.117254,-0.117254,-0.117254 +-0.11017,-0.11017,-0.11017,-0.11017,-0.11017,-0.11017 +-0.103167,-0.103167,-0.103167,-0.103167,-0.103167,-0.103167 +-0.096264,-0.096264,-0.096264,-0.096264,-0.096264,-0.096264 +-0.08948,-0.08948,-0.08948,-0.08948,-0.08948,-0.08948 +-0.082834,-0.082834,-0.082834,-0.082834,-0.082834,-0.082834 +-0.076345,-0.076345,-0.076345,-0.076345,-0.076345,-0.076345 +-0.070033,-0.070033,-0.070033,-0.070033,-0.070033,-0.070033 +-0.063915,-0.063915,-0.063915,-0.063915,-0.063915,-0.063915 +-0.058012,-0.058012,-0.058012,-0.058012,-0.058012,-0.058012 +-0.052341,-0.052341,-0.052341,-0.052341,-0.052341,-0.052341 +-0.046923,-0.046923,-0.046923,-0.046923,-0.046923,-0.046923 +-0.041776,-0.041776,-0.041776,-0.041776,-0.041776,-0.041776 +-0.036919,-0.036919,-0.036919,-0.036919,-0.036919,-0.036919 +-0.032371,-0.032371,-0.032371,-0.032371,-0.032371,-0.032371 +-0.028151,-0.028151,-0.028151,-0.028151,-0.028151,-0.028151 +-0.024278,-0.024278,-0.024278,-0.024278,-0.024278,-0.024278 +-0.020769,-0.020769,-0.020769,-0.020769,-0.020769,-0.020769 +-0.017615,-0.017615,-0.017615,-0.017615,-0.017615,-0.017615 +-0.014798,-0.014798,-0.014798,-0.014798,-0.014798,-0.014798 +-0.012298,-0.012298,-0.012298,-0.012298,-0.012298,-0.012298 +-0.010097,-0.010097,-0.010097,-0.010097,-0.010097,-0.010097 +-0.008176,-0.008176,-0.008176,-0.008176,-0.008176,-0.008176 +-0.006515,-0.006515,-0.006515,-0.006515,-0.006515,-0.006515 +-0.005096,-0.005096,-0.005096,-0.005096,-0.005096,-0.005096 +-0.003899,-0.003899,-0.003899,-0.003899,-0.003899,-0.003899 +-0.002907,-0.002907,-0.002907,-0.002907,-0.002907,-0.002907 +-0.002099,-0.002099,-0.002099,-0.002099,-0.002099,-0.002099 +-0.001456,-0.001456,-0.001456,-0.001456,-0.001456,-0.001456 +-0.00096,-0.00096,-0.00096,-0.00096,-0.00096,-0.00096 +-0.000592,-0.000592,-0.000592,-0.000592,-0.000592,-0.000592 +-0.000333,-0.000333,-0.000333,-0.000333,-0.000333,-0.000333 +-0.000163,-0.000163,-0.000163,-0.000163,-0.000163,-0.000163 +-0.000064,-0.000064,-0.000064,-0.000064,-0.000064,-0.000064 +-0.000016,-0.000016,-0.000016,-0.000016,-0.000016,-0.000016 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000027,0.000027,0.000027,0.000027,0.000027,0.000027 +0.000092,0.000092,0.000092,0.000092,0.000092,0.000092 +0.000219,0.000219,0.000219,0.000219,0.000219,0.000219 +0.000427,0.000427,0.000427,0.000427,0.000427,0.000427 +0.000738,0.000738,0.000738,0.000738,0.000738,0.000738 +0.001172,0.001172,0.001172,0.001172,0.001172,0.001172 +0.001749,0.001749,0.001749,0.001749,0.001749,0.001749 +0.002491,0.002491,0.002491,0.002491,0.002491,0.002491 +0.003417,0.003417,0.003417,0.003417,0.003417,0.003417 +0.004548,0.004548,0.004548,0.004548,0.004548,0.004548 +0.005904,0.005904,0.005904,0.005904,0.005904,0.005904 +0.007506,0.007506,0.007506,0.007506,0.007506,0.007506 +0.009375,0.009375,0.009375,0.009375,0.009375,0.009375 +0.011531,0.011531,0.011531,0.011531,0.011531,0.011531 +0.013995,0.013995,0.013995,0.013995,0.013995,0.013995 +0.016786,0.016786,0.016786,0.016786,0.016786,0.016786 +0.019926,0.019926,0.019926,0.019926,0.019926,0.019926 +0.023435,0.023435,0.023435,0.023435,0.023435,0.023435 +0.027333,0.027333,0.027333,0.027333,0.027333,0.027333 +0.031639,0.031639,0.031639,0.031639,0.031639,0.031639 +0.036344,0.036344,0.036344,0.036344,0.036344,0.036344 +0.041428,0.041428,0.041428,0.041428,0.041428,0.041428 +0.046871,0.046871,0.046871,0.046871,0.046871,0.046871 +0.052652,0.052652,0.052652,0.052652,0.052652,0.052652 +0.058751,0.058751,0.058751,0.058751,0.058751,0.058751 +0.065147,0.065147,0.065147,0.065147,0.065147,0.065147 +0.07182,0.07182,0.07182,0.07182,0.07182,0.07182 +0.078749,0.078749,0.078749,0.078749,0.078749,0.078749 +0.085913,0.085913,0.085913,0.085913,0.085913,0.085913 +0.093293,0.093293,0.093293,0.093293,0.093293,0.093293 +0.100868,0.100868,0.100868,0.100868,0.100868,0.100868 +0.108616,0.108616,0.108616,0.108616,0.108616,0.108616 +0.116519,0.116519,0.116519,0.116519,0.116519,0.116519 +0.124554,0.124554,0.124554,0.124554,0.124554,0.124554 +0.132702,0.132702,0.132702,0.132702,0.132702,0.132702 +0.140943,0.140943,0.140943,0.140943,0.140943,0.140943 +0.149255,0.149255,0.149255,0.149255,0.149255,0.149255 +0.157618,0.157618,0.157618,0.157618,0.157618,0.157618 +0.166012,0.166012,0.166012,0.166012,0.166012,0.166012 +0.174417,0.174417,0.174417,0.174417,0.174417,0.174417 +0.182822,0.182822,0.182822,0.182822,0.182822,0.182822 +0.191227,0.191227,0.191227,0.191227,0.191227,0.191227 +0.199632,0.199632,0.199632,0.199632,0.199632,0.199632 +0.208037,0.208037,0.208037,0.208037,0.208037,0.208037 +0.216442,0.216442,0.216442,0.216442,0.216442,0.216442 +0.224847,0.224847,0.224847,0.224847,0.224847,0.224847 +0.233252,0.233252,0.233252,0.233252,0.233252,0.233252 +0.241657,0.241657,0.241657,0.241657,0.241657,0.241657 +0.250062,0.250062,0.250062,0.250062,0.250062,0.250062 +0.258467,0.258467,0.258467,0.258467,0.258467,0.258467 +0.266872,0.266872,0.266872,0.266872,0.266872,0.266872 +0.275277,0.275277,0.275277,0.275277,0.275277,0.275277 +0.283682,0.283682,0.283682,0.283682,0.283682,0.283682 +0.292087,0.292087,0.292087,0.292087,0.292087,0.292087 +0.300492,0.300492,0.300492,0.300492,0.300492,0.300492 +0.308897,0.308897,0.308897,0.308897,0.308897,0.308897 +0.317302,0.317302,0.317302,0.317302,0.317302,0.317302 +0.325707,0.325707,0.325707,0.325707,0.325707,0.325707 +0.334112,0.334112,0.334112,0.334112,0.334112,0.334112 +0.342517,0.342517,0.342517,0.342517,0.342517,0.342517 +0.350922,0.350922,0.350922,0.350922,0.350922,0.350922 +0.359327,0.359327,0.359327,0.359327,0.359327,0.359327 +0.367732,0.367732,0.367732,0.367732,0.367732,0.367732 +0.376137,0.376137,0.376137,0.376137,0.376137,0.376137 +0.384542,0.384542,0.384542,0.384542,0.384542,0.384542 +0.392947,0.392947,0.392947,0.392947,0.392947,0.392947 +0.401352,0.401352,0.401352,0.401352,0.401352,0.401352 +0.409757,0.409757,0.409757,0.409757,0.409757,0.409757 +0.418162,0.418162,0.418162,0.418162,0.418162,0.418162 +0.426567,0.426567,0.426567,0.426567,0.426567,0.426567 +0.434972,0.434972,0.434972,0.434972,0.434972,0.434972 +0.443377,0.443377,0.443377,0.443377,0.443377,0.443377 +0.451782,0.451782,0.451782,0.451782,0.451782,0.451782 +0.460187,0.460187,0.460187,0.460187,0.460187,0.460187 +0.468592,0.468592,0.468592,0.468592,0.468592,0.468592 +0.476997,0.476997,0.476997,0.476997,0.476997,0.476997 +0.485402,0.485402,0.485402,0.485402,0.485402,0.485402 +0.493807,0.493807,0.493807,0.493807,0.493807,0.493807 +0.502212,0.502212,0.502212,0.502212,0.502212,0.502212 +0.510617,0.510617,0.510617,0.510617,0.510617,0.510617 +0.519022,0.519022,0.519022,0.519022,0.519022,0.519022 +0.527427,0.527427,0.527427,0.527427,0.527427,0.527427 +0.535832,0.535832,0.535832,0.535832,0.535832,0.535832 +0.544237,0.544237,0.544237,0.544237,0.544237,0.544237 +0.552642,0.552642,0.552642,0.552642,0.552642,0.552642 +0.561047,0.561047,0.561047,0.561047,0.561047,0.561047 +0.569452,0.569452,0.569452,0.569452,0.569452,0.569452 +0.577857,0.577857,0.577857,0.577857,0.577857,0.577857 +0.586262,0.586262,0.586262,0.586262,0.586262,0.586262 +0.594667,0.594667,0.594667,0.594667,0.594667,0.594667 +0.603072,0.603072,0.603072,0.603072,0.603072,0.603072 +0.611477,0.611477,0.611477,0.611477,0.611477,0.611477 +0.619882,0.619882,0.619882,0.619882,0.619882,0.619882 +0.628287,0.628287,0.628287,0.628287,0.628287,0.628287 +0.636692,0.636692,0.636692,0.636692,0.636692,0.636692 +0.645097,0.645097,0.645097,0.645097,0.645097,0.645097 +0.653502,0.653502,0.653502,0.653502,0.653502,0.653502 +0.661907,0.661907,0.661907,0.661907,0.661907,0.661907 +0.670312,0.670312,0.670312,0.670312,0.670312,0.670312 +0.678717,0.678717,0.678717,0.678717,0.678717,0.678717 +0.687122,0.687122,0.687122,0.687122,0.687122,0.687122 +0.695527,0.695527,0.695527,0.695527,0.695527,0.695527 +0.703932,0.703932,0.703932,0.703932,0.703932,0.703932 +0.712337,0.712337,0.712337,0.712337,0.712337,0.712337 +0.720742,0.720742,0.720742,0.720742,0.720742,0.720742 +0.729147,0.729147,0.729147,0.729147,0.729147,0.729147 +0.737552,0.737552,0.737552,0.737552,0.737552,0.737552 +0.745957,0.745957,0.745957,0.745957,0.745957,0.745957 +0.754362,0.754362,0.754362,0.754362,0.754362,0.754362 +0.762767,0.762767,0.762767,0.762767,0.762767,0.762767 +0.771172,0.771172,0.771172,0.771172,0.771172,0.771172 +0.779577,0.779577,0.779577,0.779577,0.779577,0.779577 +0.787982,0.787982,0.787982,0.787982,0.787982,0.787982 +0.796387,0.796387,0.796387,0.796387,0.796387,0.796387 +0.804792,0.804792,0.804792,0.804792,0.804792,0.804792 +0.813197,0.813197,0.813197,0.813197,0.813197,0.813197 +0.821602,0.821602,0.821602,0.821602,0.821602,0.821602 +0.830007,0.830007,0.830007,0.830007,0.830007,0.830007 +0.838412,0.838412,0.838412,0.838412,0.838412,0.838412 +0.846817,0.846817,0.846817,0.846817,0.846817,0.846817 +0.855222,0.855222,0.855222,0.855222,0.855222,0.855222 +0.863627,0.863627,0.863627,0.863627,0.863627,0.863627 +0.872032,0.872032,0.872032,0.872032,0.872032,0.872032 +0.880437,0.880437,0.880437,0.880437,0.880437,0.880437 +0.888842,0.888842,0.888842,0.888842,0.888842,0.888842 +0.897247,0.897247,0.897247,0.897247,0.897247,0.897247 +0.905652,0.905652,0.905652,0.905652,0.905652,0.905652 +0.914057,0.914057,0.914057,0.914057,0.914057,0.914057 +0.922462,0.922462,0.922462,0.922462,0.922462,0.922462 +0.930867,0.930867,0.930867,0.930867,0.930867,0.930867 +0.939272,0.939272,0.939272,0.939272,0.939272,0.939272 +0.947677,0.947677,0.947677,0.947677,0.947677,0.947677 +0.956082,0.956082,0.956082,0.956082,0.956082,0.956082 +0.964487,0.964487,0.964487,0.964487,0.964487,0.964487 +0.972892,0.972892,0.972892,0.972892,0.972892,0.972892 +0.981297,0.981297,0.981297,0.981297,0.981297,0.981297 +0.989702,0.989702,0.989702,0.989702,0.989702,0.989702 +0.998107,0.998107,0.998107,0.998107,0.998107,0.998107 +1.006512,1.006512,1.006512,1.006512,1.006512,1.006512 +1.014917,1.014917,1.014917,1.014917,1.014917,1.014917 +1.023322,1.023322,1.023322,1.023322,1.023322,1.023322 +1.031727,1.031727,1.031727,1.031727,1.031727,1.031727 +1.040132,1.040132,1.040132,1.040132,1.040132,1.040132 +1.048537,1.048537,1.048537,1.048537,1.048537,1.048537 +1.056942,1.056942,1.056942,1.056942,1.056942,1.056942 +1.065347,1.065347,1.065347,1.065347,1.065347,1.065347 +1.073752,1.073752,1.073752,1.073752,1.073752,1.073752 +1.082157,1.082157,1.082157,1.082157,1.082157,1.082157 +1.090562,1.090562,1.090562,1.090562,1.090562,1.090562 +1.098967,1.098967,1.098967,1.098967,1.098967,1.098967 +1.107372,1.107372,1.107372,1.107372,1.107372,1.107372 +1.115777,1.115777,1.115777,1.115777,1.115777,1.115777 +1.124182,1.124182,1.124182,1.124182,1.124182,1.124182 +1.132587,1.132587,1.132587,1.132587,1.132587,1.132587 +1.140992,1.140992,1.140992,1.140992,1.140992,1.140992 +1.149397,1.149397,1.149397,1.149397,1.149397,1.149397 +1.157802,1.157802,1.157802,1.157802,1.157802,1.157802 +1.166207,1.166207,1.166207,1.166207,1.166207,1.166207 +1.174612,1.174612,1.174612,1.174612,1.174612,1.174612 +1.183017,1.183017,1.183017,1.183017,1.183017,1.183017 +1.191422,1.191422,1.191422,1.191422,1.191422,1.191422 +1.199827,1.199827,1.199827,1.199827,1.199827,1.199827 +1.208232,1.208232,1.208232,1.208232,1.208232,1.208232 +1.216637,1.216637,1.216637,1.216637,1.216637,1.216637 +1.225042,1.225042,1.225042,1.225042,1.225042,1.225042 +1.233447,1.233447,1.233447,1.233447,1.233447,1.233447 +1.241852,1.241852,1.241852,1.241852,1.241852,1.241852 +1.250257,1.250257,1.250257,1.250257,1.250257,1.250257 +1.258662,1.258662,1.258662,1.258662,1.258662,1.258662 +1.267067,1.267067,1.267067,1.267067,1.267067,1.267067 +1.275472,1.275472,1.275472,1.275472,1.275472,1.275472 +1.283877,1.283877,1.283877,1.283877,1.283877,1.283877 +1.292282,1.292282,1.292282,1.292282,1.292282,1.292282 +1.300687,1.300687,1.300687,1.300687,1.300687,1.300687 +1.309092,1.309092,1.309092,1.309092,1.309092,1.309092 +1.317497,1.317497,1.317497,1.317497,1.317497,1.317497 +1.325902,1.325902,1.325902,1.325902,1.325902,1.325902 +1.334307,1.334307,1.334307,1.334307,1.334307,1.334307 +1.342712,1.342712,1.342712,1.342712,1.342712,1.342712 +1.351117,1.351117,1.351117,1.351117,1.351117,1.351117 +1.359522,1.359522,1.359522,1.359522,1.359522,1.359522 +1.367927,1.367927,1.367927,1.367927,1.367927,1.367927 +1.376332,1.376332,1.376332,1.376332,1.376332,1.376332 +1.384737,1.384737,1.384737,1.384737,1.384737,1.384737 +1.393142,1.393142,1.393142,1.393142,1.393142,1.393142 +1.401547,1.401547,1.401547,1.401547,1.401547,1.401547 +1.409952,1.409952,1.409952,1.409952,1.409952,1.409952 +1.418357,1.418357,1.418357,1.418357,1.418357,1.418357 +1.426762,1.426762,1.426762,1.426762,1.426762,1.426762 +1.435167,1.435167,1.435167,1.435167,1.435167,1.435167 +1.443572,1.443572,1.443572,1.443572,1.443572,1.443572 +1.451977,1.451977,1.451977,1.451977,1.451977,1.451977 +1.460382,1.460382,1.460382,1.460382,1.460382,1.460382 +1.468787,1.468787,1.468787,1.468787,1.468787,1.468787 +1.477192,1.477192,1.477192,1.477192,1.477192,1.477192 +1.485597,1.485597,1.485597,1.485597,1.485597,1.485597 +1.494002,1.494002,1.494002,1.494002,1.494002,1.494002 +1.502407,1.502407,1.502407,1.502407,1.502407,1.502407 +1.510812,1.510812,1.510812,1.510812,1.510812,1.510812 +1.519217,1.519217,1.519217,1.519217,1.519217,1.519217 +1.527622,1.527622,1.527622,1.527622,1.527622,1.527622 +1.536027,1.536027,1.536027,1.536027,1.536027,1.536027 +1.544432,1.544432,1.544432,1.544432,1.544432,1.544432 +1.552837,1.552837,1.552837,1.552837,1.552837,1.552837 +1.561242,1.561242,1.561242,1.561242,1.561242,1.561242 +1.569647,1.569647,1.569647,1.569647,1.569647,1.569647 +1.578052,1.578052,1.578052,1.578052,1.578052,1.578052 +1.586448,1.586448,1.586448,1.586448,1.586448,1.586448 +1.594817,1.594817,1.594817,1.594817,1.594817,1.594817 +1.603138,1.603138,1.603138,1.603138,1.603138,1.603138 +1.611391,1.611391,1.611391,1.611391,1.611391,1.611391 +1.619554,1.619554,1.619554,1.619554,1.619554,1.619554 +1.627607,1.627607,1.627607,1.627607,1.627607,1.627607 +1.63553,1.63553,1.63553,1.63553,1.63553,1.63553 +1.643303,1.643303,1.643303,1.643303,1.643303,1.643303 +1.650904,1.650904,1.650904,1.650904,1.650904,1.650904 +1.658314,1.658314,1.658314,1.658314,1.658314,1.658314 +1.665511,1.665511,1.665511,1.665511,1.665511,1.665511 +1.672476,1.672476,1.672476,1.672476,1.672476,1.672476 +1.679188,1.679188,1.679188,1.679188,1.679188,1.679188 +1.685626,1.685626,1.685626,1.685626,1.685626,1.685626 +1.69177,1.69177,1.69177,1.69177,1.69177,1.69177 +1.697599,1.697599,1.697599,1.697599,1.697599,1.697599 +1.703093,1.703093,1.703093,1.703093,1.703093,1.703093 +1.708231,1.708231,1.708231,1.708231,1.708231,1.708231 +1.712994,1.712994,1.712994,1.712994,1.712994,1.712994 +1.717359,1.717359,1.717359,1.717359,1.717359,1.717359 +1.721316,1.721316,1.721316,1.721316,1.721316,1.721316 +1.724881,1.724881,1.724881,1.724881,1.724881,1.724881 +1.728074,1.728074,1.728074,1.728074,1.728074,1.728074 +1.730916,1.730916,1.730916,1.730916,1.730916,1.730916 +1.733426,1.733426,1.733426,1.733426,1.733426,1.733426 +1.735626,1.735626,1.735626,1.735626,1.735626,1.735626 +1.737536,1.737536,1.737536,1.737536,1.737536,1.737536 +1.739176,1.739176,1.739176,1.739176,1.739176,1.739176 +1.740567,1.740567,1.740567,1.740567,1.740567,1.740567 +1.74173,1.74173,1.74173,1.74173,1.74173,1.74173 +1.742685,1.742685,1.742685,1.742685,1.742685,1.742685 +1.743452,1.743452,1.743452,1.743452,1.743452,1.743452 +1.744053,1.744053,1.744053,1.744053,1.744053,1.744053 +1.744506,1.744506,1.744506,1.744506,1.744506,1.744506 +1.744834,1.744834,1.744834,1.744834,1.744834,1.744834 +1.745056,1.745056,1.745056,1.745056,1.745056,1.745056 +1.745194,1.745194,1.745194,1.745194,1.745194,1.745194 +1.745266,1.745266,1.745266,1.745266,1.745266,1.745266 +1.745295,1.745295,1.745295,1.745295,1.745295,1.745295 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745273,1.745273,1.745273,1.745273,1.745273,1.745273 +1.745208,1.745208,1.745208,1.745208,1.745208,1.745208 +1.745081,1.745081,1.745081,1.745081,1.745081,1.745081 +1.744873,1.744873,1.744873,1.744873,1.744873,1.744873 +1.744562,1.744562,1.744562,1.744562,1.744562,1.744562 +1.744128,1.744128,1.744128,1.744128,1.744128,1.744128 +1.743551,1.743551,1.743551,1.743551,1.743551,1.743551 +1.742809,1.742809,1.742809,1.742809,1.742809,1.742809 +1.741883,1.741883,1.741883,1.741883,1.741883,1.741883 +1.740752,1.740752,1.740752,1.740752,1.740752,1.740752 +1.739396,1.739396,1.739396,1.739396,1.739396,1.739396 +1.737794,1.737794,1.737794,1.737794,1.737794,1.737794 +1.735925,1.735925,1.735925,1.735925,1.735925,1.735925 +1.733769,1.733769,1.733769,1.733769,1.733769,1.733769 +1.731305,1.731305,1.731305,1.731305,1.731305,1.731305 +1.728514,1.728514,1.728514,1.728514,1.728514,1.728514 +1.725374,1.725374,1.725374,1.725374,1.725374,1.725374 +1.721865,1.721865,1.721865,1.721865,1.721865,1.721865 +1.717967,1.717967,1.717967,1.717967,1.717967,1.717967 +1.713661,1.713661,1.713661,1.713661,1.713661,1.713661 +1.708956,1.708956,1.708956,1.708956,1.708956,1.708956 +1.703872,1.703872,1.703872,1.703872,1.703872,1.703872 +1.698429,1.698429,1.698429,1.698429,1.698429,1.698429 +1.692648,1.692648,1.692648,1.692648,1.692648,1.692648 +1.686549,1.686549,1.686549,1.686549,1.686549,1.686549 +1.680153,1.680153,1.680153,1.680153,1.680153,1.680153 +1.67348,1.67348,1.67348,1.67348,1.67348,1.67348 +1.666551,1.666551,1.666551,1.666551,1.666551,1.666551 +1.659387,1.659387,1.659387,1.659387,1.659387,1.659387 +1.652007,1.652007,1.652007,1.652007,1.652007,1.652007 +1.644432,1.644432,1.644432,1.644432,1.644432,1.644432 +1.636684,1.636684,1.636684,1.636684,1.636684,1.636684 +1.628781,1.628781,1.628781,1.628781,1.628781,1.628781 +1.620746,1.620746,1.620746,1.620746,1.620746,1.620746 +1.612598,1.612598,1.612598,1.612598,1.612598,1.612598 +1.604357,1.604357,1.604357,1.604357,1.604357,1.604357 +1.596045,1.596045,1.596045,1.596045,1.596045,1.596045 +1.587682,1.587682,1.587682,1.587682,1.587682,1.587682 +1.579288,1.579288,1.579288,1.579288,1.579288,1.579288 +1.570883,1.570883,1.570883,1.570883,1.570883,1.570883 +1.562478,1.562478,1.562478,1.562478,1.562478,1.562478 +1.554073,1.554073,1.554073,1.554073,1.554073,1.554073 +1.545668,1.545668,1.545668,1.545668,1.545668,1.545668 +1.537263,1.537263,1.537263,1.537263,1.537263,1.537263 +1.528858,1.528858,1.528858,1.528858,1.528858,1.528858 +1.520453,1.520453,1.520453,1.520453,1.520453,1.520453 +1.512048,1.512048,1.512048,1.512048,1.512048,1.512048 +1.503643,1.503643,1.503643,1.503643,1.503643,1.503643 +1.495238,1.495238,1.495238,1.495238,1.495238,1.495238 +1.486833,1.486833,1.486833,1.486833,1.486833,1.486833 +1.478428,1.478428,1.478428,1.478428,1.478428,1.478428 +1.470023,1.470023,1.470023,1.470023,1.470023,1.470023 +1.461618,1.461618,1.461618,1.461618,1.461618,1.461618 +1.453213,1.453213,1.453213,1.453213,1.453213,1.453213 +1.444808,1.444808,1.444808,1.444808,1.444808,1.444808 +1.436403,1.436403,1.436403,1.436403,1.436403,1.436403 +1.427998,1.427998,1.427998,1.427998,1.427998,1.427998 +1.419593,1.419593,1.419593,1.419593,1.419593,1.419593 +1.411188,1.411188,1.411188,1.411188,1.411188,1.411188 +1.402783,1.402783,1.402783,1.402783,1.402783,1.402783 +1.394378,1.394378,1.394378,1.394378,1.394378,1.394378 +1.385973,1.385973,1.385973,1.385973,1.385973,1.385973 +1.377568,1.377568,1.377568,1.377568,1.377568,1.377568 +1.369163,1.369163,1.369163,1.369163,1.369163,1.369163 +1.360758,1.360758,1.360758,1.360758,1.360758,1.360758 +1.352353,1.352353,1.352353,1.352353,1.352353,1.352353 +1.343948,1.343948,1.343948,1.343948,1.343948,1.343948 +1.335543,1.335543,1.335543,1.335543,1.335543,1.335543 +1.327138,1.327138,1.327138,1.327138,1.327138,1.327138 +1.318733,1.318733,1.318733,1.318733,1.318733,1.318733 +1.310328,1.310328,1.310328,1.310328,1.310328,1.310328 +1.301923,1.301923,1.301923,1.301923,1.301923,1.301923 +1.293518,1.293518,1.293518,1.293518,1.293518,1.293518 +1.285113,1.285113,1.285113,1.285113,1.285113,1.285113 +1.276708,1.276708,1.276708,1.276708,1.276708,1.276708 +1.268303,1.268303,1.268303,1.268303,1.268303,1.268303 +1.259898,1.259898,1.259898,1.259898,1.259898,1.259898 +1.251493,1.251493,1.251493,1.251493,1.251493,1.251493 +1.243088,1.243088,1.243088,1.243088,1.243088,1.243088 +1.234683,1.234683,1.234683,1.234683,1.234683,1.234683 +1.226278,1.226278,1.226278,1.226278,1.226278,1.226278 +1.217873,1.217873,1.217873,1.217873,1.217873,1.217873 +1.209468,1.209468,1.209468,1.209468,1.209468,1.209468 +1.201063,1.201063,1.201063,1.201063,1.201063,1.201063 +1.192658,1.192658,1.192658,1.192658,1.192658,1.192658 +1.184253,1.184253,1.184253,1.184253,1.184253,1.184253 +1.175848,1.175848,1.175848,1.175848,1.175848,1.175848 +1.167443,1.167443,1.167443,1.167443,1.167443,1.167443 +1.159038,1.159038,1.159038,1.159038,1.159038,1.159038 +1.150633,1.150633,1.150633,1.150633,1.150633,1.150633 +1.142228,1.142228,1.142228,1.142228,1.142228,1.142228 +1.133823,1.133823,1.133823,1.133823,1.133823,1.133823 +1.125418,1.125418,1.125418,1.125418,1.125418,1.125418 +1.117013,1.117013,1.117013,1.117013,1.117013,1.117013 +1.108608,1.108608,1.108608,1.108608,1.108608,1.108608 +1.100203,1.100203,1.100203,1.100203,1.100203,1.100203 +1.091798,1.091798,1.091798,1.091798,1.091798,1.091798 +1.083393,1.083393,1.083393,1.083393,1.083393,1.083393 +1.074988,1.074988,1.074988,1.074988,1.074988,1.074988 +1.066583,1.066583,1.066583,1.066583,1.066583,1.066583 +1.058178,1.058178,1.058178,1.058178,1.058178,1.058178 +1.049773,1.049773,1.049773,1.049773,1.049773,1.049773 +1.041368,1.041368,1.041368,1.041368,1.041368,1.041368 +1.032963,1.032963,1.032963,1.032963,1.032963,1.032963 +1.024558,1.024558,1.024558,1.024558,1.024558,1.024558 +1.016153,1.016153,1.016153,1.016153,1.016153,1.016153 +1.007748,1.007748,1.007748,1.007748,1.007748,1.007748 +0.999343,0.999343,0.999343,0.999343,0.999343,0.999343 +0.990938,0.990938,0.990938,0.990938,0.990938,0.990938 +0.982533,0.982533,0.982533,0.982533,0.982533,0.982533 +0.974128,0.974128,0.974128,0.974128,0.974128,0.974128 +0.965723,0.965723,0.965723,0.965723,0.965723,0.965723 +0.957318,0.957318,0.957318,0.957318,0.957318,0.957318 +0.948913,0.948913,0.948913,0.948913,0.948913,0.948913 +0.940508,0.940508,0.940508,0.940508,0.940508,0.940508 +0.932103,0.932103,0.932103,0.932103,0.932103,0.932103 +0.923698,0.923698,0.923698,0.923698,0.923698,0.923698 +0.915293,0.915293,0.915293,0.915293,0.915293,0.915293 +0.906888,0.906888,0.906888,0.906888,0.906888,0.906888 +0.898483,0.898483,0.898483,0.898483,0.898483,0.898483 +0.890078,0.890078,0.890078,0.890078,0.890078,0.890078 +0.881673,0.881673,0.881673,0.881673,0.881673,0.881673 +0.873268,0.873268,0.873268,0.873268,0.873268,0.873268 +0.864863,0.864863,0.864863,0.864863,0.864863,0.864863 +0.856458,0.856458,0.856458,0.856458,0.856458,0.856458 +0.848053,0.848053,0.848053,0.848053,0.848053,0.848053 +0.839648,0.839648,0.839648,0.839648,0.839648,0.839648 +0.831243,0.831243,0.831243,0.831243,0.831243,0.831243 +0.822838,0.822838,0.822838,0.822838,0.822838,0.822838 +0.814433,0.814433,0.814433,0.814433,0.814433,0.814433 +0.806028,0.806028,0.806028,0.806028,0.806028,0.806028 +0.797623,0.797623,0.797623,0.797623,0.797623,0.797623 +0.789218,0.789218,0.789218,0.789218,0.789218,0.789218 +0.780813,0.780813,0.780813,0.780813,0.780813,0.780813 +0.772408,0.772408,0.772408,0.772408,0.772408,0.772408 +0.764003,0.764003,0.764003,0.764003,0.764003,0.764003 +0.755598,0.755598,0.755598,0.755598,0.755598,0.755598 +0.747193,0.747193,0.747193,0.747193,0.747193,0.747193 +0.738788,0.738788,0.738788,0.738788,0.738788,0.738788 +0.730383,0.730383,0.730383,0.730383,0.730383,0.730383 +0.721978,0.721978,0.721978,0.721978,0.721978,0.721978 +0.713573,0.713573,0.713573,0.713573,0.713573,0.713573 +0.705168,0.705168,0.705168,0.705168,0.705168,0.705168 +0.696763,0.696763,0.696763,0.696763,0.696763,0.696763 +0.688358,0.688358,0.688358,0.688358,0.688358,0.688358 +0.679953,0.679953,0.679953,0.679953,0.679953,0.679953 +0.671548,0.671548,0.671548,0.671548,0.671548,0.671548 +0.663143,0.663143,0.663143,0.663143,0.663143,0.663143 +0.654738,0.654738,0.654738,0.654738,0.654738,0.654738 +0.646333,0.646333,0.646333,0.646333,0.646333,0.646333 +0.637928,0.637928,0.637928,0.637928,0.637928,0.637928 +0.629523,0.629523,0.629523,0.629523,0.629523,0.629523 +0.621118,0.621118,0.621118,0.621118,0.621118,0.621118 +0.612713,0.612713,0.612713,0.612713,0.612713,0.612713 +0.604308,0.604308,0.604308,0.604308,0.604308,0.604308 +0.595903,0.595903,0.595903,0.595903,0.595903,0.595903 +0.587498,0.587498,0.587498,0.587498,0.587498,0.587498 +0.579093,0.579093,0.579093,0.579093,0.579093,0.579093 +0.570688,0.570688,0.570688,0.570688,0.570688,0.570688 +0.562283,0.562283,0.562283,0.562283,0.562283,0.562283 +0.553878,0.553878,0.553878,0.553878,0.553878,0.553878 +0.545473,0.545473,0.545473,0.545473,0.545473,0.545473 +0.537068,0.537068,0.537068,0.537068,0.537068,0.537068 +0.528663,0.528663,0.528663,0.528663,0.528663,0.528663 +0.520258,0.520258,0.520258,0.520258,0.520258,0.520258 +0.511853,0.511853,0.511853,0.511853,0.511853,0.511853 +0.503448,0.503448,0.503448,0.503448,0.503448,0.503448 +0.495043,0.495043,0.495043,0.495043,0.495043,0.495043 +0.486638,0.486638,0.486638,0.486638,0.486638,0.486638 +0.478233,0.478233,0.478233,0.478233,0.478233,0.478233 +0.469828,0.469828,0.469828,0.469828,0.469828,0.469828 +0.461423,0.461423,0.461423,0.461423,0.461423,0.461423 +0.453018,0.453018,0.453018,0.453018,0.453018,0.453018 +0.444613,0.444613,0.444613,0.444613,0.444613,0.444613 +0.436208,0.436208,0.436208,0.436208,0.436208,0.436208 +0.427803,0.427803,0.427803,0.427803,0.427803,0.427803 +0.419398,0.419398,0.419398,0.419398,0.419398,0.419398 +0.410993,0.410993,0.410993,0.410993,0.410993,0.410993 +0.402588,0.402588,0.402588,0.402588,0.402588,0.402588 +0.394183,0.394183,0.394183,0.394183,0.394183,0.394183 +0.385778,0.385778,0.385778,0.385778,0.385778,0.385778 +0.377373,0.377373,0.377373,0.377373,0.377373,0.377373 +0.368968,0.368968,0.368968,0.368968,0.368968,0.368968 +0.360563,0.360563,0.360563,0.360563,0.360563,0.360563 +0.352158,0.352158,0.352158,0.352158,0.352158,0.352158 +0.343753,0.343753,0.343753,0.343753,0.343753,0.343753 +0.335348,0.335348,0.335348,0.335348,0.335348,0.335348 +0.326943,0.326943,0.326943,0.326943,0.326943,0.326943 +0.318538,0.318538,0.318538,0.318538,0.318538,0.318538 +0.310133,0.310133,0.310133,0.310133,0.310133,0.310133 +0.301728,0.301728,0.301728,0.301728,0.301728,0.301728 +0.293323,0.293323,0.293323,0.293323,0.293323,0.293323 +0.284918,0.284918,0.284918,0.284918,0.284918,0.284918 +0.276513,0.276513,0.276513,0.276513,0.276513,0.276513 +0.268108,0.268108,0.268108,0.268108,0.268108,0.268108 +0.259703,0.259703,0.259703,0.259703,0.259703,0.259703 +0.251298,0.251298,0.251298,0.251298,0.251298,0.251298 +0.242893,0.242893,0.242893,0.242893,0.242893,0.242893 +0.234488,0.234488,0.234488,0.234488,0.234488,0.234488 +0.226083,0.226083,0.226083,0.226083,0.226083,0.226083 +0.217678,0.217678,0.217678,0.217678,0.217678,0.217678 +0.209273,0.209273,0.209273,0.209273,0.209273,0.209273 +0.200868,0.200868,0.200868,0.200868,0.200868,0.200868 +0.192463,0.192463,0.192463,0.192463,0.192463,0.192463 +0.184058,0.184058,0.184058,0.184058,0.184058,0.184058 +0.175653,0.175653,0.175653,0.175653,0.175653,0.175653 +0.167248,0.167248,0.167248,0.167248,0.167248,0.167248 +0.158852,0.158852,0.158852,0.158852,0.158852,0.158852 +0.150483,0.150483,0.150483,0.150483,0.150483,0.150483 +0.142162,0.142162,0.142162,0.142162,0.142162,0.142162 +0.133909,0.133909,0.133909,0.133909,0.133909,0.133909 +0.125746,0.125746,0.125746,0.125746,0.125746,0.125746 +0.117693,0.117693,0.117693,0.117693,0.117693,0.117693 +0.10977,0.10977,0.10977,0.10977,0.10977,0.10977 +0.101997,0.101997,0.101997,0.101997,0.101997,0.101997 +0.094396,0.094396,0.094396,0.094396,0.094396,0.094396 +0.086986,0.086986,0.086986,0.086986,0.086986,0.086986 +0.079789,0.079789,0.079789,0.079789,0.079789,0.079789 +0.072824,0.072824,0.072824,0.072824,0.072824,0.072824 +0.066112,0.066112,0.066112,0.066112,0.066112,0.066112 +0.059674,0.059674,0.059674,0.059674,0.059674,0.059674 +0.05353,0.05353,0.05353,0.05353,0.05353,0.05353 +0.047701,0.047701,0.047701,0.047701,0.047701,0.047701 +0.042207,0.042207,0.042207,0.042207,0.042207,0.042207 +0.037069,0.037069,0.037069,0.037069,0.037069,0.037069 +0.032306,0.032306,0.032306,0.032306,0.032306,0.032306 +0.027941,0.027941,0.027941,0.027941,0.027941,0.027941 +0.023984,0.023984,0.023984,0.023984,0.023984,0.023984 +0.020419,0.020419,0.020419,0.020419,0.020419,0.020419 +0.017226,0.017226,0.017226,0.017226,0.017226,0.017226 +0.014384,0.014384,0.014384,0.014384,0.014384,0.014384 +0.011874,0.011874,0.011874,0.011874,0.011874,0.011874 +0.009674,0.009674,0.009674,0.009674,0.009674,0.009674 +0.007764,0.007764,0.007764,0.007764,0.007764,0.007764 +0.006124,0.006124,0.006124,0.006124,0.006124,0.006124 +0.004733,0.004733,0.004733,0.004733,0.004733,0.004733 +0.00357,0.00357,0.00357,0.00357,0.00357,0.00357 +0.002615,0.002615,0.002615,0.002615,0.002615,0.002615 +0.001848,0.001848,0.001848,0.001848,0.001848,0.001848 +0.001247,0.001247,0.001247,0.001247,0.001247,0.001247 +0.000794,0.000794,0.000794,0.000794,0.000794,0.000794 +0.000466,0.000466,0.000466,0.000466,0.000466,0.000466 +0.000244,0.000244,0.000244,0.000244,0.000244,0.000244 +0.000106,0.000106,0.000106,0.000106,0.000106,0.000106 +0.000034,0.000034,0.000034,0.000034,0.000034,0.000034 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000027,-0.000027,-0.000027,-0.000027,-0.000027,-0.000027 +-0.000092,-0.000092,-0.000092,-0.000092,-0.000092,-0.000092 +-0.000219,-0.000219,-0.000219,-0.000219,-0.000219,-0.000219 +-0.000427,-0.000427,-0.000427,-0.000427,-0.000427,-0.000427 +-0.000738,-0.000738,-0.000738,-0.000738,-0.000738,-0.000738 +-0.001172,-0.001172,-0.001172,-0.001172,-0.001172,-0.001172 +-0.001749,-0.001749,-0.001749,-0.001749,-0.001749,-0.001749 +-0.002491,-0.002491,-0.002491,-0.002491,-0.002491,-0.002491 +-0.003417,-0.003417,-0.003417,-0.003417,-0.003417,-0.003417 +-0.004548,-0.004548,-0.004548,-0.004548,-0.004548,-0.004548 +-0.005904,-0.005904,-0.005904,-0.005904,-0.005904,-0.005904 +-0.007506,-0.007506,-0.007506,-0.007506,-0.007506,-0.007506 +-0.009375,-0.009375,-0.009375,-0.009375,-0.009375,-0.009375 +-0.011531,-0.011531,-0.011531,-0.011531,-0.011531,-0.011531 +-0.013995,-0.013995,-0.013995,-0.013995,-0.013995,-0.013995 +-0.016786,-0.016786,-0.016786,-0.016786,-0.016786,-0.016786 +-0.019926,-0.019926,-0.019926,-0.019926,-0.019926,-0.019926 +-0.023435,-0.023435,-0.023435,-0.023435,-0.023435,-0.023435 +-0.027333,-0.027333,-0.027333,-0.027333,-0.027333,-0.027333 +-0.031639,-0.031639,-0.031639,-0.031639,-0.031639,-0.031639 +-0.036344,-0.036344,-0.036344,-0.036344,-0.036344,-0.036344 +-0.041428,-0.041428,-0.041428,-0.041428,-0.041428,-0.041428 +-0.046871,-0.046871,-0.046871,-0.046871,-0.046871,-0.046871 +-0.052652,-0.052652,-0.052652,-0.052652,-0.052652,-0.052652 +-0.058751,-0.058751,-0.058751,-0.058751,-0.058751,-0.058751 +-0.065147,-0.065147,-0.065147,-0.065147,-0.065147,-0.065147 +-0.07182,-0.07182,-0.07182,-0.07182,-0.07182,-0.07182 +-0.078749,-0.078749,-0.078749,-0.078749,-0.078749,-0.078749 +-0.085913,-0.085913,-0.085913,-0.085913,-0.085913,-0.085913 +-0.093293,-0.093293,-0.093293,-0.093293,-0.093293,-0.093293 +-0.100868,-0.100868,-0.100868,-0.100868,-0.100868,-0.100868 +-0.108616,-0.108616,-0.108616,-0.108616,-0.108616,-0.108616 +-0.116519,-0.116519,-0.116519,-0.116519,-0.116519,-0.116519 +-0.124554,-0.124554,-0.124554,-0.124554,-0.124554,-0.124554 +-0.132702,-0.132702,-0.132702,-0.132702,-0.132702,-0.132702 +-0.140943,-0.140943,-0.140943,-0.140943,-0.140943,-0.140943 +-0.149255,-0.149255,-0.149255,-0.149255,-0.149255,-0.149255 +-0.157618,-0.157618,-0.157618,-0.157618,-0.157618,-0.157618 +-0.166012,-0.166012,-0.166012,-0.166012,-0.166012,-0.166012 +-0.174417,-0.174417,-0.174417,-0.174417,-0.174417,-0.174417 +-0.182822,-0.182822,-0.182822,-0.182822,-0.182822,-0.182822 +-0.191227,-0.191227,-0.191227,-0.191227,-0.191227,-0.191227 +-0.199632,-0.199632,-0.199632,-0.199632,-0.199632,-0.199632 +-0.208037,-0.208037,-0.208037,-0.208037,-0.208037,-0.208037 +-0.216442,-0.216442,-0.216442,-0.216442,-0.216442,-0.216442 +-0.224847,-0.224847,-0.224847,-0.224847,-0.224847,-0.224847 +-0.233252,-0.233252,-0.233252,-0.233252,-0.233252,-0.233252 +-0.241657,-0.241657,-0.241657,-0.241657,-0.241657,-0.241657 +-0.250062,-0.250062,-0.250062,-0.250062,-0.250062,-0.250062 +-0.258467,-0.258467,-0.258467,-0.258467,-0.258467,-0.258467 +-0.266872,-0.266872,-0.266872,-0.266872,-0.266872,-0.266872 +-0.275277,-0.275277,-0.275277,-0.275277,-0.275277,-0.275277 +-0.283682,-0.283682,-0.283682,-0.283682,-0.283682,-0.283682 +-0.292087,-0.292087,-0.292087,-0.292087,-0.292087,-0.292087 +-0.300492,-0.300492,-0.300492,-0.300492,-0.300492,-0.300492 +-0.308897,-0.308897,-0.308897,-0.308897,-0.308897,-0.308897 +-0.317302,-0.317302,-0.317302,-0.317302,-0.317302,-0.317302 +-0.325707,-0.325707,-0.325707,-0.325707,-0.325707,-0.325707 +-0.334112,-0.334112,-0.334112,-0.334112,-0.334112,-0.334112 +-0.342517,-0.342517,-0.342517,-0.342517,-0.342517,-0.342517 +-0.350922,-0.350922,-0.350922,-0.350922,-0.350922,-0.350922 +-0.359327,-0.359327,-0.359327,-0.359327,-0.359327,-0.359327 +-0.367732,-0.367732,-0.367732,-0.367732,-0.367732,-0.367732 +-0.376137,-0.376137,-0.376137,-0.376137,-0.376137,-0.376137 +-0.384542,-0.384542,-0.384542,-0.384542,-0.384542,-0.384542 +-0.392947,-0.392947,-0.392947,-0.392947,-0.392947,-0.392947 +-0.401352,-0.401352,-0.401352,-0.401352,-0.401352,-0.401352 +-0.409757,-0.409757,-0.409757,-0.409757,-0.409757,-0.409757 +-0.418162,-0.418162,-0.418162,-0.418162,-0.418162,-0.418162 +-0.426567,-0.426567,-0.426567,-0.426567,-0.426567,-0.426567 +-0.434972,-0.434972,-0.434972,-0.434972,-0.434972,-0.434972 +-0.443377,-0.443377,-0.443377,-0.443377,-0.443377,-0.443377 +-0.451782,-0.451782,-0.451782,-0.451782,-0.451782,-0.451782 +-0.460187,-0.460187,-0.460187,-0.460187,-0.460187,-0.460187 +-0.468592,-0.468592,-0.468592,-0.468592,-0.468592,-0.468592 +-0.476997,-0.476997,-0.476997,-0.476997,-0.476997,-0.476997 +-0.485402,-0.485402,-0.485402,-0.485402,-0.485402,-0.485402 +-0.493807,-0.493807,-0.493807,-0.493807,-0.493807,-0.493807 +-0.502212,-0.502212,-0.502212,-0.502212,-0.502212,-0.502212 +-0.510617,-0.510617,-0.510617,-0.510617,-0.510617,-0.510617 +-0.519022,-0.519022,-0.519022,-0.519022,-0.519022,-0.519022 +-0.527427,-0.527427,-0.527427,-0.527427,-0.527427,-0.527427 +-0.535832,-0.535832,-0.535832,-0.535832,-0.535832,-0.535832 +-0.544237,-0.544237,-0.544237,-0.544237,-0.544237,-0.544237 +-0.552642,-0.552642,-0.552642,-0.552642,-0.552642,-0.552642 +-0.561047,-0.561047,-0.561047,-0.561047,-0.561047,-0.561047 +-0.569452,-0.569452,-0.569452,-0.569452,-0.569452,-0.569452 +-0.577857,-0.577857,-0.577857,-0.577857,-0.577857,-0.577857 +-0.586262,-0.586262,-0.586262,-0.586262,-0.586262,-0.586262 +-0.594667,-0.594667,-0.594667,-0.594667,-0.594667,-0.594667 +-0.603072,-0.603072,-0.603072,-0.603072,-0.603072,-0.603072 +-0.611477,-0.611477,-0.611477,-0.611477,-0.611477,-0.611477 +-0.619882,-0.619882,-0.619882,-0.619882,-0.619882,-0.619882 +-0.628287,-0.628287,-0.628287,-0.628287,-0.628287,-0.628287 +-0.636692,-0.636692,-0.636692,-0.636692,-0.636692,-0.636692 +-0.645097,-0.645097,-0.645097,-0.645097,-0.645097,-0.645097 +-0.653502,-0.653502,-0.653502,-0.653502,-0.653502,-0.653502 +-0.661907,-0.661907,-0.661907,-0.661907,-0.661907,-0.661907 +-0.670312,-0.670312,-0.670312,-0.670312,-0.670312,-0.670312 +-0.678717,-0.678717,-0.678717,-0.678717,-0.678717,-0.678717 +-0.687122,-0.687122,-0.687122,-0.687122,-0.687122,-0.687122 +-0.695527,-0.695527,-0.695527,-0.695527,-0.695527,-0.695527 +-0.703932,-0.703932,-0.703932,-0.703932,-0.703932,-0.703932 +-0.712337,-0.712337,-0.712337,-0.712337,-0.712337,-0.712337 +-0.720742,-0.720742,-0.720742,-0.720742,-0.720742,-0.720742 +-0.729147,-0.729147,-0.729147,-0.729147,-0.729147,-0.729147 +-0.737552,-0.737552,-0.737552,-0.737552,-0.737552,-0.737552 +-0.745957,-0.745957,-0.745957,-0.745957,-0.745957,-0.745957 +-0.754362,-0.754362,-0.754362,-0.754362,-0.754362,-0.754362 +-0.762767,-0.762767,-0.762767,-0.762767,-0.762767,-0.762767 +-0.771172,-0.771172,-0.771172,-0.771172,-0.771172,-0.771172 +-0.779577,-0.779577,-0.779577,-0.779577,-0.779577,-0.779577 +-0.787982,-0.787982,-0.787982,-0.787982,-0.787982,-0.787982 +-0.796387,-0.796387,-0.796387,-0.796387,-0.796387,-0.796387 +-0.804792,-0.804792,-0.804792,-0.804792,-0.804792,-0.804792 +-0.813197,-0.813197,-0.813197,-0.813197,-0.813197,-0.813197 +-0.821602,-0.821602,-0.821602,-0.821602,-0.821602,-0.821602 +-0.830007,-0.830007,-0.830007,-0.830007,-0.830007,-0.830007 +-0.838412,-0.838412,-0.838412,-0.838412,-0.838412,-0.838412 +-0.846817,-0.846817,-0.846817,-0.846817,-0.846817,-0.846817 +-0.855222,-0.855222,-0.855222,-0.855222,-0.855222,-0.855222 +-0.863627,-0.863627,-0.863627,-0.863627,-0.863627,-0.863627 +-0.872032,-0.872032,-0.872032,-0.872032,-0.872032,-0.872032 +-0.880437,-0.880437,-0.880437,-0.880437,-0.880437,-0.880437 +-0.888842,-0.888842,-0.888842,-0.888842,-0.888842,-0.888842 +-0.897247,-0.897247,-0.897247,-0.897247,-0.897247,-0.897247 +-0.905652,-0.905652,-0.905652,-0.905652,-0.905652,-0.905652 +-0.914057,-0.914057,-0.914057,-0.914057,-0.914057,-0.914057 +-0.922462,-0.922462,-0.922462,-0.922462,-0.922462,-0.922462 +-0.930867,-0.930867,-0.930867,-0.930867,-0.930867,-0.930867 +-0.939272,-0.939272,-0.939272,-0.939272,-0.939272,-0.939272 +-0.947677,-0.947677,-0.947677,-0.947677,-0.947677,-0.947677 +-0.956082,-0.956082,-0.956082,-0.956082,-0.956082,-0.956082 +-0.964487,-0.964487,-0.964487,-0.964487,-0.964487,-0.964487 +-0.972892,-0.972892,-0.972892,-0.972892,-0.972892,-0.972892 +-0.981297,-0.981297,-0.981297,-0.981297,-0.981297,-0.981297 +-0.989702,-0.989702,-0.989702,-0.989702,-0.989702,-0.989702 +-0.998107,-0.998107,-0.998107,-0.998107,-0.998107,-0.998107 +-1.006512,-1.006512,-1.006512,-1.006512,-1.006512,-1.006512 +-1.014917,-1.014917,-1.014917,-1.014917,-1.014917,-1.014917 +-1.023322,-1.023322,-1.023322,-1.023322,-1.023322,-1.023322 +-1.031727,-1.031727,-1.031727,-1.031727,-1.031727,-1.031727 +-1.040132,-1.040132,-1.040132,-1.040132,-1.040132,-1.040132 +-1.048537,-1.048537,-1.048537,-1.048537,-1.048537,-1.048537 +-1.056942,-1.056942,-1.056942,-1.056942,-1.056942,-1.056942 +-1.065347,-1.065347,-1.065347,-1.065347,-1.065347,-1.065347 +-1.073752,-1.073752,-1.073752,-1.073752,-1.073752,-1.073752 +-1.082157,-1.082157,-1.082157,-1.082157,-1.082157,-1.082157 +-1.090562,-1.090562,-1.090562,-1.090562,-1.090562,-1.090562 +-1.098967,-1.098967,-1.098967,-1.098967,-1.098967,-1.098967 +-1.107372,-1.107372,-1.107372,-1.107372,-1.107372,-1.107372 +-1.115777,-1.115777,-1.115777,-1.115777,-1.115777,-1.115777 +-1.124182,-1.124182,-1.124182,-1.124182,-1.124182,-1.124182 +-1.132587,-1.132587,-1.132587,-1.132587,-1.132587,-1.132587 +-1.140992,-1.140992,-1.140992,-1.140992,-1.140992,-1.140992 +-1.149397,-1.149397,-1.149397,-1.149397,-1.149397,-1.149397 +-1.157802,-1.157802,-1.157802,-1.157802,-1.157802,-1.157802 +-1.166207,-1.166207,-1.166207,-1.166207,-1.166207,-1.166207 +-1.174612,-1.174612,-1.174612,-1.174612,-1.174612,-1.174612 +-1.183017,-1.183017,-1.183017,-1.183017,-1.183017,-1.183017 +-1.191422,-1.191422,-1.191422,-1.191422,-1.191422,-1.191422 +-1.199827,-1.199827,-1.199827,-1.199827,-1.199827,-1.199827 +-1.208232,-1.208232,-1.208232,-1.208232,-1.208232,-1.208232 +-1.216637,-1.216637,-1.216637,-1.216637,-1.216637,-1.216637 +-1.225042,-1.225042,-1.225042,-1.225042,-1.225042,-1.225042 +-1.233447,-1.233447,-1.233447,-1.233447,-1.233447,-1.233447 +-1.241852,-1.241852,-1.241852,-1.241852,-1.241852,-1.241852 +-1.250257,-1.250257,-1.250257,-1.250257,-1.250257,-1.250257 +-1.258662,-1.258662,-1.258662,-1.258662,-1.258662,-1.258662 +-1.267067,-1.267067,-1.267067,-1.267067,-1.267067,-1.267067 +-1.275472,-1.275472,-1.275472,-1.275472,-1.275472,-1.275472 +-1.283877,-1.283877,-1.283877,-1.283877,-1.283877,-1.283877 +-1.292282,-1.292282,-1.292282,-1.292282,-1.292282,-1.292282 +-1.300687,-1.300687,-1.300687,-1.300687,-1.300687,-1.300687 +-1.309092,-1.309092,-1.309092,-1.309092,-1.309092,-1.309092 +-1.317497,-1.317497,-1.317497,-1.317497,-1.317497,-1.317497 +-1.325902,-1.325902,-1.325902,-1.325902,-1.325902,-1.325902 +-1.334307,-1.334307,-1.334307,-1.334307,-1.334307,-1.334307 +-1.342712,-1.342712,-1.342712,-1.342712,-1.342712,-1.342712 +-1.351117,-1.351117,-1.351117,-1.351117,-1.351117,-1.351117 +-1.359522,-1.359522,-1.359522,-1.359522,-1.359522,-1.359522 +-1.367927,-1.367927,-1.367927,-1.367927,-1.367927,-1.367927 +-1.376332,-1.376332,-1.376332,-1.376332,-1.376332,-1.376332 +-1.384737,-1.384737,-1.384737,-1.384737,-1.384737,-1.384737 +-1.393142,-1.393142,-1.393142,-1.393142,-1.393142,-1.393142 +-1.401547,-1.401547,-1.401547,-1.401547,-1.401547,-1.401547 +-1.409952,-1.409952,-1.409952,-1.409952,-1.409952,-1.409952 +-1.418357,-1.418357,-1.418357,-1.418357,-1.418357,-1.418357 +-1.426762,-1.426762,-1.426762,-1.426762,-1.426762,-1.426762 +-1.435167,-1.435167,-1.435167,-1.435167,-1.435167,-1.435167 +-1.443572,-1.443572,-1.443572,-1.443572,-1.443572,-1.443572 +-1.451977,-1.451977,-1.451977,-1.451977,-1.451977,-1.451977 +-1.460382,-1.460382,-1.460382,-1.460382,-1.460382,-1.460382 +-1.468787,-1.468787,-1.468787,-1.468787,-1.468787,-1.468787 +-1.477192,-1.477192,-1.477192,-1.477192,-1.477192,-1.477192 +-1.485597,-1.485597,-1.485597,-1.485597,-1.485597,-1.485597 +-1.494002,-1.494002,-1.494002,-1.494002,-1.494002,-1.494002 +-1.502407,-1.502407,-1.502407,-1.502407,-1.502407,-1.502407 +-1.510812,-1.510812,-1.510812,-1.510812,-1.510812,-1.510812 +-1.519217,-1.519217,-1.519217,-1.519217,-1.519217,-1.519217 +-1.527622,-1.527622,-1.527622,-1.527622,-1.527622,-1.527622 +-1.536027,-1.536027,-1.536027,-1.536027,-1.536027,-1.536027 +-1.544432,-1.544432,-1.544432,-1.544432,-1.544432,-1.544432 +-1.552837,-1.552837,-1.552837,-1.552837,-1.552837,-1.552837 +-1.561242,-1.561242,-1.561242,-1.561242,-1.561242,-1.561242 +-1.569647,-1.569647,-1.569647,-1.569647,-1.569647,-1.569647 +-1.578052,-1.578052,-1.578052,-1.578052,-1.578052,-1.578052 +-1.586448,-1.586448,-1.586448,-1.586448,-1.586448,-1.586448 +-1.594817,-1.594817,-1.594817,-1.594817,-1.594817,-1.594817 +-1.603138,-1.603138,-1.603138,-1.603138,-1.603138,-1.603138 +-1.611391,-1.611391,-1.611391,-1.611391,-1.611391,-1.611391 +-1.619554,-1.619554,-1.619554,-1.619554,-1.619554,-1.619554 +-1.627607,-1.627607,-1.627607,-1.627607,-1.627607,-1.627607 +-1.63553,-1.63553,-1.63553,-1.63553,-1.63553,-1.63553 +-1.643303,-1.643303,-1.643303,-1.643303,-1.643303,-1.643303 +-1.650904,-1.650904,-1.650904,-1.650904,-1.650904,-1.650904 +-1.658314,-1.658314,-1.658314,-1.658314,-1.658314,-1.658314 +-1.665511,-1.665511,-1.665511,-1.665511,-1.665511,-1.665511 +-1.672476,-1.672476,-1.672476,-1.672476,-1.672476,-1.672476 +-1.679188,-1.679188,-1.679188,-1.679188,-1.679188,-1.679188 +-1.685626,-1.685626,-1.685626,-1.685626,-1.685626,-1.685626 +-1.69177,-1.69177,-1.69177,-1.69177,-1.69177,-1.69177 +-1.697599,-1.697599,-1.697599,-1.697599,-1.697599,-1.697599 +-1.703093,-1.703093,-1.703093,-1.703093,-1.703093,-1.703093 +-1.708231,-1.708231,-1.708231,-1.708231,-1.708231,-1.708231 +-1.712994,-1.712994,-1.712994,-1.712994,-1.712994,-1.712994 +-1.717359,-1.717359,-1.717359,-1.717359,-1.717359,-1.717359 +-1.721316,-1.721316,-1.721316,-1.721316,-1.721316,-1.721316 +-1.724881,-1.724881,-1.724881,-1.724881,-1.724881,-1.724881 +-1.728074,-1.728074,-1.728074,-1.728074,-1.728074,-1.728074 +-1.730916,-1.730916,-1.730916,-1.730916,-1.730916,-1.730916 +-1.733426,-1.733426,-1.733426,-1.733426,-1.733426,-1.733426 +-1.735626,-1.735626,-1.735626,-1.735626,-1.735626,-1.735626 +-1.737536,-1.737536,-1.737536,-1.737536,-1.737536,-1.737536 +-1.739176,-1.739176,-1.739176,-1.739176,-1.739176,-1.739176 +-1.740567,-1.740567,-1.740567,-1.740567,-1.740567,-1.740567 +-1.74173,-1.74173,-1.74173,-1.74173,-1.74173,-1.74173 +-1.742685,-1.742685,-1.742685,-1.742685,-1.742685,-1.742685 +-1.743452,-1.743452,-1.743452,-1.743452,-1.743452,-1.743452 +-1.744053,-1.744053,-1.744053,-1.744053,-1.744053,-1.744053 +-1.744506,-1.744506,-1.744506,-1.744506,-1.744506,-1.744506 +-1.744834,-1.744834,-1.744834,-1.744834,-1.744834,-1.744834 +-1.745056,-1.745056,-1.745056,-1.745056,-1.745056,-1.745056 +-1.745194,-1.745194,-1.745194,-1.745194,-1.745194,-1.745194 +-1.745266,-1.745266,-1.745266,-1.745266,-1.745266,-1.745266 +-1.745295,-1.745295,-1.745295,-1.745295,-1.745295,-1.745295 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745273,-1.745273,-1.745273,-1.745273,-1.745273,-1.745273 +-1.745208,-1.745208,-1.745208,-1.745208,-1.745208,-1.745208 +-1.745081,-1.745081,-1.745081,-1.745081,-1.745081,-1.745081 +-1.744873,-1.744873,-1.744873,-1.744873,-1.744873,-1.744873 +-1.744562,-1.744562,-1.744562,-1.744562,-1.744562,-1.744562 +-1.744128,-1.744128,-1.744128,-1.744128,-1.744128,-1.744128 +-1.743551,-1.743551,-1.743551,-1.743551,-1.743551,-1.743551 +-1.742809,-1.742809,-1.742809,-1.742809,-1.742809,-1.742809 +-1.741883,-1.741883,-1.741883,-1.741883,-1.741883,-1.741883 +-1.740752,-1.740752,-1.740752,-1.740752,-1.740752,-1.740752 +-1.739396,-1.739396,-1.739396,-1.739396,-1.739396,-1.739396 +-1.737794,-1.737794,-1.737794,-1.737794,-1.737794,-1.737794 +-1.735925,-1.735925,-1.735925,-1.735925,-1.735925,-1.735925 +-1.733769,-1.733769,-1.733769,-1.733769,-1.733769,-1.733769 +-1.731305,-1.731305,-1.731305,-1.731305,-1.731305,-1.731305 +-1.728514,-1.728514,-1.728514,-1.728514,-1.728514,-1.728514 +-1.725374,-1.725374,-1.725374,-1.725374,-1.725374,-1.725374 +-1.721865,-1.721865,-1.721865,-1.721865,-1.721865,-1.721865 +-1.717967,-1.717967,-1.717967,-1.717967,-1.717967,-1.717967 +-1.713661,-1.713661,-1.713661,-1.713661,-1.713661,-1.713661 +-1.708956,-1.708956,-1.708956,-1.708956,-1.708956,-1.708956 +-1.703872,-1.703872,-1.703872,-1.703872,-1.703872,-1.703872 +-1.698429,-1.698429,-1.698429,-1.698429,-1.698429,-1.698429 +-1.692648,-1.692648,-1.692648,-1.692648,-1.692648,-1.692648 +-1.686549,-1.686549,-1.686549,-1.686549,-1.686549,-1.686549 +-1.680153,-1.680153,-1.680153,-1.680153,-1.680153,-1.680153 +-1.67348,-1.67348,-1.67348,-1.67348,-1.67348,-1.67348 +-1.666551,-1.666551,-1.666551,-1.666551,-1.666551,-1.666551 +-1.659387,-1.659387,-1.659387,-1.659387,-1.659387,-1.659387 +-1.652007,-1.652007,-1.652007,-1.652007,-1.652007,-1.652007 +-1.644432,-1.644432,-1.644432,-1.644432,-1.644432,-1.644432 +-1.636684,-1.636684,-1.636684,-1.636684,-1.636684,-1.636684 +-1.628781,-1.628781,-1.628781,-1.628781,-1.628781,-1.628781 +-1.620746,-1.620746,-1.620746,-1.620746,-1.620746,-1.620746 +-1.612598,-1.612598,-1.612598,-1.612598,-1.612598,-1.612598 +-1.604357,-1.604357,-1.604357,-1.604357,-1.604357,-1.604357 +-1.596045,-1.596045,-1.596045,-1.596045,-1.596045,-1.596045 +-1.587682,-1.587682,-1.587682,-1.587682,-1.587682,-1.587682 +-1.579288,-1.579288,-1.579288,-1.579288,-1.579288,-1.579288 +-1.570883,-1.570883,-1.570883,-1.570883,-1.570883,-1.570883 +-1.562478,-1.562478,-1.562478,-1.562478,-1.562478,-1.562478 +-1.554073,-1.554073,-1.554073,-1.554073,-1.554073,-1.554073 +-1.545668,-1.545668,-1.545668,-1.545668,-1.545668,-1.545668 +-1.537263,-1.537263,-1.537263,-1.537263,-1.537263,-1.537263 +-1.528858,-1.528858,-1.528858,-1.528858,-1.528858,-1.528858 +-1.520453,-1.520453,-1.520453,-1.520453,-1.520453,-1.520453 +-1.512048,-1.512048,-1.512048,-1.512048,-1.512048,-1.512048 +-1.503643,-1.503643,-1.503643,-1.503643,-1.503643,-1.503643 +-1.495238,-1.495238,-1.495238,-1.495238,-1.495238,-1.495238 +-1.486833,-1.486833,-1.486833,-1.486833,-1.486833,-1.486833 +-1.478428,-1.478428,-1.478428,-1.478428,-1.478428,-1.478428 +-1.470023,-1.470023,-1.470023,-1.470023,-1.470023,-1.470023 +-1.461618,-1.461618,-1.461618,-1.461618,-1.461618,-1.461618 +-1.453213,-1.453213,-1.453213,-1.453213,-1.453213,-1.453213 +-1.444808,-1.444808,-1.444808,-1.444808,-1.444808,-1.444808 +-1.436403,-1.436403,-1.436403,-1.436403,-1.436403,-1.436403 +-1.427998,-1.427998,-1.427998,-1.427998,-1.427998,-1.427998 +-1.419593,-1.419593,-1.419593,-1.419593,-1.419593,-1.419593 +-1.411188,-1.411188,-1.411188,-1.411188,-1.411188,-1.411188 +-1.402783,-1.402783,-1.402783,-1.402783,-1.402783,-1.402783 +-1.394378,-1.394378,-1.394378,-1.394378,-1.394378,-1.394378 +-1.385973,-1.385973,-1.385973,-1.385973,-1.385973,-1.385973 +-1.377568,-1.377568,-1.377568,-1.377568,-1.377568,-1.377568 +-1.369163,-1.369163,-1.369163,-1.369163,-1.369163,-1.369163 +-1.360758,-1.360758,-1.360758,-1.360758,-1.360758,-1.360758 +-1.352353,-1.352353,-1.352353,-1.352353,-1.352353,-1.352353 +-1.343948,-1.343948,-1.343948,-1.343948,-1.343948,-1.343948 +-1.335543,-1.335543,-1.335543,-1.335543,-1.335543,-1.335543 +-1.327138,-1.327138,-1.327138,-1.327138,-1.327138,-1.327138 +-1.318733,-1.318733,-1.318733,-1.318733,-1.318733,-1.318733 +-1.310328,-1.310328,-1.310328,-1.310328,-1.310328,-1.310328 +-1.301923,-1.301923,-1.301923,-1.301923,-1.301923,-1.301923 +-1.293518,-1.293518,-1.293518,-1.293518,-1.293518,-1.293518 +-1.285113,-1.285113,-1.285113,-1.285113,-1.285113,-1.285113 +-1.276708,-1.276708,-1.276708,-1.276708,-1.276708,-1.276708 +-1.268303,-1.268303,-1.268303,-1.268303,-1.268303,-1.268303 +-1.259898,-1.259898,-1.259898,-1.259898,-1.259898,-1.259898 +-1.251493,-1.251493,-1.251493,-1.251493,-1.251493,-1.251493 +-1.243088,-1.243088,-1.243088,-1.243088,-1.243088,-1.243088 +-1.234683,-1.234683,-1.234683,-1.234683,-1.234683,-1.234683 +-1.226278,-1.226278,-1.226278,-1.226278,-1.226278,-1.226278 +-1.217873,-1.217873,-1.217873,-1.217873,-1.217873,-1.217873 +-1.209468,-1.209468,-1.209468,-1.209468,-1.209468,-1.209468 +-1.201063,-1.201063,-1.201063,-1.201063,-1.201063,-1.201063 +-1.192658,-1.192658,-1.192658,-1.192658,-1.192658,-1.192658 +-1.184253,-1.184253,-1.184253,-1.184253,-1.184253,-1.184253 +-1.175848,-1.175848,-1.175848,-1.175848,-1.175848,-1.175848 +-1.167443,-1.167443,-1.167443,-1.167443,-1.167443,-1.167443 +-1.159038,-1.159038,-1.159038,-1.159038,-1.159038,-1.159038 +-1.150633,-1.150633,-1.150633,-1.150633,-1.150633,-1.150633 +-1.142228,-1.142228,-1.142228,-1.142228,-1.142228,-1.142228 +-1.133823,-1.133823,-1.133823,-1.133823,-1.133823,-1.133823 +-1.125418,-1.125418,-1.125418,-1.125418,-1.125418,-1.125418 +-1.117013,-1.117013,-1.117013,-1.117013,-1.117013,-1.117013 +-1.108608,-1.108608,-1.108608,-1.108608,-1.108608,-1.108608 +-1.100203,-1.100203,-1.100203,-1.100203,-1.100203,-1.100203 +-1.091798,-1.091798,-1.091798,-1.091798,-1.091798,-1.091798 +-1.083393,-1.083393,-1.083393,-1.083393,-1.083393,-1.083393 +-1.074988,-1.074988,-1.074988,-1.074988,-1.074988,-1.074988 +-1.066583,-1.066583,-1.066583,-1.066583,-1.066583,-1.066583 +-1.058178,-1.058178,-1.058178,-1.058178,-1.058178,-1.058178 +-1.049773,-1.049773,-1.049773,-1.049773,-1.049773,-1.049773 +-1.041368,-1.041368,-1.041368,-1.041368,-1.041368,-1.041368 +-1.032963,-1.032963,-1.032963,-1.032963,-1.032963,-1.032963 +-1.024558,-1.024558,-1.024558,-1.024558,-1.024558,-1.024558 +-1.016153,-1.016153,-1.016153,-1.016153,-1.016153,-1.016153 +-1.007748,-1.007748,-1.007748,-1.007748,-1.007748,-1.007748 +-0.999343,-0.999343,-0.999343,-0.999343,-0.999343,-0.999343 +-0.990938,-0.990938,-0.990938,-0.990938,-0.990938,-0.990938 +-0.982533,-0.982533,-0.982533,-0.982533,-0.982533,-0.982533 +-0.974128,-0.974128,-0.974128,-0.974128,-0.974128,-0.974128 +-0.965723,-0.965723,-0.965723,-0.965723,-0.965723,-0.965723 +-0.957318,-0.957318,-0.957318,-0.957318,-0.957318,-0.957318 +-0.948913,-0.948913,-0.948913,-0.948913,-0.948913,-0.948913 +-0.940508,-0.940508,-0.940508,-0.940508,-0.940508,-0.940508 +-0.932103,-0.932103,-0.932103,-0.932103,-0.932103,-0.932103 +-0.923698,-0.923698,-0.923698,-0.923698,-0.923698,-0.923698 +-0.915293,-0.915293,-0.915293,-0.915293,-0.915293,-0.915293 +-0.906888,-0.906888,-0.906888,-0.906888,-0.906888,-0.906888 +-0.898483,-0.898483,-0.898483,-0.898483,-0.898483,-0.898483 +-0.890078,-0.890078,-0.890078,-0.890078,-0.890078,-0.890078 +-0.881673,-0.881673,-0.881673,-0.881673,-0.881673,-0.881673 +-0.873268,-0.873268,-0.873268,-0.873268,-0.873268,-0.873268 +-0.864863,-0.864863,-0.864863,-0.864863,-0.864863,-0.864863 +-0.856458,-0.856458,-0.856458,-0.856458,-0.856458,-0.856458 +-0.848053,-0.848053,-0.848053,-0.848053,-0.848053,-0.848053 +-0.839648,-0.839648,-0.839648,-0.839648,-0.839648,-0.839648 +-0.831243,-0.831243,-0.831243,-0.831243,-0.831243,-0.831243 +-0.822838,-0.822838,-0.822838,-0.822838,-0.822838,-0.822838 +-0.814433,-0.814433,-0.814433,-0.814433,-0.814433,-0.814433 +-0.806028,-0.806028,-0.806028,-0.806028,-0.806028,-0.806028 +-0.797623,-0.797623,-0.797623,-0.797623,-0.797623,-0.797623 +-0.789218,-0.789218,-0.789218,-0.789218,-0.789218,-0.789218 +-0.780813,-0.780813,-0.780813,-0.780813,-0.780813,-0.780813 +-0.772408,-0.772408,-0.772408,-0.772408,-0.772408,-0.772408 +-0.764003,-0.764003,-0.764003,-0.764003,-0.764003,-0.764003 +-0.755598,-0.755598,-0.755598,-0.755598,-0.755598,-0.755598 +-0.747193,-0.747193,-0.747193,-0.747193,-0.747193,-0.747193 +-0.738788,-0.738788,-0.738788,-0.738788,-0.738788,-0.738788 +-0.730383,-0.730383,-0.730383,-0.730383,-0.730383,-0.730383 +-0.721978,-0.721978,-0.721978,-0.721978,-0.721978,-0.721978 +-0.713573,-0.713573,-0.713573,-0.713573,-0.713573,-0.713573 +-0.705168,-0.705168,-0.705168,-0.705168,-0.705168,-0.705168 +-0.696763,-0.696763,-0.696763,-0.696763,-0.696763,-0.696763 +-0.688358,-0.688358,-0.688358,-0.688358,-0.688358,-0.688358 +-0.679953,-0.679953,-0.679953,-0.679953,-0.679953,-0.679953 +-0.671548,-0.671548,-0.671548,-0.671548,-0.671548,-0.671548 +-0.663143,-0.663143,-0.663143,-0.663143,-0.663143,-0.663143 +-0.654738,-0.654738,-0.654738,-0.654738,-0.654738,-0.654738 +-0.646333,-0.646333,-0.646333,-0.646333,-0.646333,-0.646333 +-0.637928,-0.637928,-0.637928,-0.637928,-0.637928,-0.637928 +-0.629523,-0.629523,-0.629523,-0.629523,-0.629523,-0.629523 +-0.621118,-0.621118,-0.621118,-0.621118,-0.621118,-0.621118 +-0.612713,-0.612713,-0.612713,-0.612713,-0.612713,-0.612713 +-0.604308,-0.604308,-0.604308,-0.604308,-0.604308,-0.604308 +-0.595903,-0.595903,-0.595903,-0.595903,-0.595903,-0.595903 +-0.587498,-0.587498,-0.587498,-0.587498,-0.587498,-0.587498 +-0.579093,-0.579093,-0.579093,-0.579093,-0.579093,-0.579093 +-0.570688,-0.570688,-0.570688,-0.570688,-0.570688,-0.570688 +-0.562283,-0.562283,-0.562283,-0.562283,-0.562283,-0.562283 +-0.553878,-0.553878,-0.553878,-0.553878,-0.553878,-0.553878 +-0.545473,-0.545473,-0.545473,-0.545473,-0.545473,-0.545473 +-0.537068,-0.537068,-0.537068,-0.537068,-0.537068,-0.537068 +-0.528663,-0.528663,-0.528663,-0.528663,-0.528663,-0.528663 +-0.520258,-0.520258,-0.520258,-0.520258,-0.520258,-0.520258 +-0.511853,-0.511853,-0.511853,-0.511853,-0.511853,-0.511853 +-0.503448,-0.503448,-0.503448,-0.503448,-0.503448,-0.503448 +-0.495043,-0.495043,-0.495043,-0.495043,-0.495043,-0.495043 +-0.486638,-0.486638,-0.486638,-0.486638,-0.486638,-0.486638 +-0.478233,-0.478233,-0.478233,-0.478233,-0.478233,-0.478233 +-0.469828,-0.469828,-0.469828,-0.469828,-0.469828,-0.469828 +-0.461423,-0.461423,-0.461423,-0.461423,-0.461423,-0.461423 +-0.453018,-0.453018,-0.453018,-0.453018,-0.453018,-0.453018 +-0.444613,-0.444613,-0.444613,-0.444613,-0.444613,-0.444613 +-0.436208,-0.436208,-0.436208,-0.436208,-0.436208,-0.436208 +-0.427803,-0.427803,-0.427803,-0.427803,-0.427803,-0.427803 +-0.419398,-0.419398,-0.419398,-0.419398,-0.419398,-0.419398 +-0.410993,-0.410993,-0.410993,-0.410993,-0.410993,-0.410993 +-0.402588,-0.402588,-0.402588,-0.402588,-0.402588,-0.402588 +-0.394183,-0.394183,-0.394183,-0.394183,-0.394183,-0.394183 +-0.385778,-0.385778,-0.385778,-0.385778,-0.385778,-0.385778 +-0.377373,-0.377373,-0.377373,-0.377373,-0.377373,-0.377373 +-0.368968,-0.368968,-0.368968,-0.368968,-0.368968,-0.368968 +-0.360563,-0.360563,-0.360563,-0.360563,-0.360563,-0.360563 +-0.352158,-0.352158,-0.352158,-0.352158,-0.352158,-0.352158 +-0.343753,-0.343753,-0.343753,-0.343753,-0.343753,-0.343753 +-0.335348,-0.335348,-0.335348,-0.335348,-0.335348,-0.335348 +-0.326943,-0.326943,-0.326943,-0.326943,-0.326943,-0.326943 +-0.318538,-0.318538,-0.318538,-0.318538,-0.318538,-0.318538 +-0.310133,-0.310133,-0.310133,-0.310133,-0.310133,-0.310133 +-0.301728,-0.301728,-0.301728,-0.301728,-0.301728,-0.301728 +-0.293323,-0.293323,-0.293323,-0.293323,-0.293323,-0.293323 +-0.284918,-0.284918,-0.284918,-0.284918,-0.284918,-0.284918 +-0.276513,-0.276513,-0.276513,-0.276513,-0.276513,-0.276513 +-0.268108,-0.268108,-0.268108,-0.268108,-0.268108,-0.268108 +-0.259703,-0.259703,-0.259703,-0.259703,-0.259703,-0.259703 +-0.251298,-0.251298,-0.251298,-0.251298,-0.251298,-0.251298 +-0.242893,-0.242893,-0.242893,-0.242893,-0.242893,-0.242893 +-0.234488,-0.234488,-0.234488,-0.234488,-0.234488,-0.234488 +-0.226083,-0.226083,-0.226083,-0.226083,-0.226083,-0.226083 +-0.217678,-0.217678,-0.217678,-0.217678,-0.217678,-0.217678 +-0.209273,-0.209273,-0.209273,-0.209273,-0.209273,-0.209273 +-0.200868,-0.200868,-0.200868,-0.200868,-0.200868,-0.200868 +-0.192463,-0.192463,-0.192463,-0.192463,-0.192463,-0.192463 +-0.184058,-0.184058,-0.184058,-0.184058,-0.184058,-0.184058 +-0.175653,-0.175653,-0.175653,-0.175653,-0.175653,-0.175653 +-0.167248,-0.167248,-0.167248,-0.167248,-0.167248,-0.167248 +-0.158852,-0.158852,-0.158852,-0.158852,-0.158852,-0.158852 +-0.150483,-0.150483,-0.150483,-0.150483,-0.150483,-0.150483 +-0.142162,-0.142162,-0.142162,-0.142162,-0.142162,-0.142162 +-0.133909,-0.133909,-0.133909,-0.133909,-0.133909,-0.133909 +-0.125746,-0.125746,-0.125746,-0.125746,-0.125746,-0.125746 +-0.117693,-0.117693,-0.117693,-0.117693,-0.117693,-0.117693 +-0.10977,-0.10977,-0.10977,-0.10977,-0.10977,-0.10977 +-0.101997,-0.101997,-0.101997,-0.101997,-0.101997,-0.101997 +-0.094396,-0.094396,-0.094396,-0.094396,-0.094396,-0.094396 +-0.086986,-0.086986,-0.086986,-0.086986,-0.086986,-0.086986 +-0.079789,-0.079789,-0.079789,-0.079789,-0.079789,-0.079789 +-0.072824,-0.072824,-0.072824,-0.072824,-0.072824,-0.072824 +-0.066112,-0.066112,-0.066112,-0.066112,-0.066112,-0.066112 +-0.059674,-0.059674,-0.059674,-0.059674,-0.059674,-0.059674 +-0.05353,-0.05353,-0.05353,-0.05353,-0.05353,-0.05353 +-0.047701,-0.047701,-0.047701,-0.047701,-0.047701,-0.047701 +-0.042207,-0.042207,-0.042207,-0.042207,-0.042207,-0.042207 +-0.037069,-0.037069,-0.037069,-0.037069,-0.037069,-0.037069 +-0.032306,-0.032306,-0.032306,-0.032306,-0.032306,-0.032306 +-0.027941,-0.027941,-0.027941,-0.027941,-0.027941,-0.027941 +-0.023984,-0.023984,-0.023984,-0.023984,-0.023984,-0.023984 +-0.020419,-0.020419,-0.020419,-0.020419,-0.020419,-0.020419 +-0.017226,-0.017226,-0.017226,-0.017226,-0.017226,-0.017226 +-0.014384,-0.014384,-0.014384,-0.014384,-0.014384,-0.014384 +-0.011874,-0.011874,-0.011874,-0.011874,-0.011874,-0.011874 +-0.009674,-0.009674,-0.009674,-0.009674,-0.009674,-0.009674 +-0.007764,-0.007764,-0.007764,-0.007764,-0.007764,-0.007764 +-0.006124,-0.006124,-0.006124,-0.006124,-0.006124,-0.006124 +-0.004733,-0.004733,-0.004733,-0.004733,-0.004733,-0.004733 +-0.00357,-0.00357,-0.00357,-0.00357,-0.00357,-0.00357 +-0.002615,-0.002615,-0.002615,-0.002615,-0.002615,-0.002615 +-0.001848,-0.001848,-0.001848,-0.001848,-0.001848,-0.001848 +-0.001247,-0.001247,-0.001247,-0.001247,-0.001247,-0.001247 +-0.000794,-0.000794,-0.000794,-0.000794,-0.000794,-0.000794 +-0.000466,-0.000466,-0.000466,-0.000466,-0.000466,-0.000466 +-0.000244,-0.000244,-0.000244,-0.000244,-0.000244,-0.000244 +-0.000106,-0.000106,-0.000106,-0.000106,-0.000106,-0.000106 +-0.000034,-0.000034,-0.000034,-0.000034,-0.000034,-0.000034 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000029,0.000029,0.000029,0.000029,0.000029,0.000029 +0.000099,0.000099,0.000099,0.000099,0.000099,0.000099 +0.000235,0.000235,0.000235,0.000235,0.000235,0.000235 +0.000458,0.000458,0.000458,0.000458,0.000458,0.000458 +0.000792,0.000792,0.000792,0.000792,0.000792,0.000792 +0.001258,0.001258,0.001258,0.001258,0.001258,0.001258 +0.001877,0.001877,0.001877,0.001877,0.001877,0.001877 +0.002673,0.002673,0.002673,0.002673,0.002673,0.002673 +0.003667,0.003667,0.003667,0.003667,0.003667,0.003667 +0.00488,0.00488,0.00488,0.00488,0.00488,0.00488 +0.006336,0.006336,0.006336,0.006336,0.006336,0.006336 +0.008056,0.008056,0.008056,0.008056,0.008056,0.008056 +0.010061,0.010061,0.010061,0.010061,0.010061,0.010061 +0.012375,0.012375,0.012375,0.012375,0.012375,0.012375 +0.015019,0.015019,0.015019,0.015019,0.015019,0.015019 +0.018014,0.018014,0.018014,0.018014,0.018014,0.018014 +0.021384,0.021384,0.021384,0.021384,0.021384,0.021384 +0.02515,0.02515,0.02515,0.02515,0.02515,0.02515 +0.029333,0.029333,0.029333,0.029333,0.029333,0.029333 +0.033957,0.033957,0.033957,0.033957,0.033957,0.033957 +0.039035,0.039035,0.039035,0.039035,0.039035,0.039035 +0.044552,0.044552,0.044552,0.044552,0.044552,0.044552 +0.050485,0.050485,0.050485,0.050485,0.050485,0.050485 +0.056814,0.056814,0.056814,0.056814,0.056814,0.056814 +0.063516,0.063516,0.063516,0.063516,0.063516,0.063516 +0.070568,0.070568,0.070568,0.070568,0.070568,0.070568 +0.07795,0.07795,0.07795,0.07795,0.07795,0.07795 +0.085638,0.085638,0.085638,0.085638,0.085638,0.085638 +0.093611,0.093611,0.093611,0.093611,0.093611,0.093611 +0.101848,0.101848,0.101848,0.101848,0.101848,0.101848 +0.110325,0.110325,0.110325,0.110325,0.110325,0.110325 +0.119021,0.119021,0.119021,0.119021,0.119021,0.119021 +0.127915,0.127915,0.127915,0.127915,0.127915,0.127915 +0.136983,0.136983,0.136983,0.136983,0.136983,0.136983 +0.146204,0.146204,0.146204,0.146204,0.146204,0.146204 +0.155556,0.155556,0.155556,0.155556,0.155556,0.155556 +0.165017,0.165017,0.165017,0.165017,0.165017,0.165017 +0.174565,0.174565,0.174565,0.174565,0.174565,0.174565 +0.184178,0.184178,0.184178,0.184178,0.184178,0.184178 +0.193834,0.193834,0.193834,0.193834,0.193834,0.193834 +0.203511,0.203511,0.203511,0.203511,0.203511,0.203511 +0.213191,0.213191,0.213191,0.213191,0.213191,0.213191 +0.222871,0.222871,0.222871,0.222871,0.222871,0.222871 +0.232551,0.232551,0.232551,0.232551,0.232551,0.232551 +0.242231,0.242231,0.242231,0.242231,0.242231,0.242231 +0.251911,0.251911,0.251911,0.251911,0.251911,0.251911 +0.261591,0.261591,0.261591,0.261591,0.261591,0.261591 +0.271271,0.271271,0.271271,0.271271,0.271271,0.271271 +0.280951,0.280951,0.280951,0.280951,0.280951,0.280951 +0.290631,0.290631,0.290631,0.290631,0.290631,0.290631 +0.300311,0.300311,0.300311,0.300311,0.300311,0.300311 +0.309991,0.309991,0.309991,0.309991,0.309991,0.309991 +0.319671,0.319671,0.319671,0.319671,0.319671,0.319671 +0.329351,0.329351,0.329351,0.329351,0.329351,0.329351 +0.339031,0.339031,0.339031,0.339031,0.339031,0.339031 +0.348711,0.348711,0.348711,0.348711,0.348711,0.348711 +0.358391,0.358391,0.358391,0.358391,0.358391,0.358391 +0.368071,0.368071,0.368071,0.368071,0.368071,0.368071 +0.377751,0.377751,0.377751,0.377751,0.377751,0.377751 +0.387431,0.387431,0.387431,0.387431,0.387431,0.387431 +0.397111,0.397111,0.397111,0.397111,0.397111,0.397111 +0.406791,0.406791,0.406791,0.406791,0.406791,0.406791 +0.416471,0.416471,0.416471,0.416471,0.416471,0.416471 +0.426151,0.426151,0.426151,0.426151,0.426151,0.426151 +0.435831,0.435831,0.435831,0.435831,0.435831,0.435831 +0.445511,0.445511,0.445511,0.445511,0.445511,0.445511 +0.455191,0.455191,0.455191,0.455191,0.455191,0.455191 +0.464871,0.464871,0.464871,0.464871,0.464871,0.464871 +0.474551,0.474551,0.474551,0.474551,0.474551,0.474551 +0.484231,0.484231,0.484231,0.484231,0.484231,0.484231 +0.493911,0.493911,0.493911,0.493911,0.493911,0.493911 +0.503591,0.503591,0.503591,0.503591,0.503591,0.503591 +0.513271,0.513271,0.513271,0.513271,0.513271,0.513271 +0.522951,0.522951,0.522951,0.522951,0.522951,0.522951 +0.532631,0.532631,0.532631,0.532631,0.532631,0.532631 +0.542311,0.542311,0.542311,0.542311,0.542311,0.542311 +0.551991,0.551991,0.551991,0.551991,0.551991,0.551991 +0.561671,0.561671,0.561671,0.561671,0.561671,0.561671 +0.571351,0.571351,0.571351,0.571351,0.571351,0.571351 +0.581031,0.581031,0.581031,0.581031,0.581031,0.581031 +0.590711,0.590711,0.590711,0.590711,0.590711,0.590711 +0.600391,0.600391,0.600391,0.600391,0.600391,0.600391 +0.610071,0.610071,0.610071,0.610071,0.610071,0.610071 +0.619751,0.619751,0.619751,0.619751,0.619751,0.619751 +0.629431,0.629431,0.629431,0.629431,0.629431,0.629431 +0.639111,0.639111,0.639111,0.639111,0.639111,0.639111 +0.648791,0.648791,0.648791,0.648791,0.648791,0.648791 +0.658471,0.658471,0.658471,0.658471,0.658471,0.658471 +0.668151,0.668151,0.668151,0.668151,0.668151,0.668151 +0.677831,0.677831,0.677831,0.677831,0.677831,0.677831 +0.687511,0.687511,0.687511,0.687511,0.687511,0.687511 +0.697191,0.697191,0.697191,0.697191,0.697191,0.697191 +0.706871,0.706871,0.706871,0.706871,0.706871,0.706871 +0.716551,0.716551,0.716551,0.716551,0.716551,0.716551 +0.726231,0.726231,0.726231,0.726231,0.726231,0.726231 +0.735911,0.735911,0.735911,0.735911,0.735911,0.735911 +0.745591,0.745591,0.745591,0.745591,0.745591,0.745591 +0.755271,0.755271,0.755271,0.755271,0.755271,0.755271 +0.764951,0.764951,0.764951,0.764951,0.764951,0.764951 +0.774631,0.774631,0.774631,0.774631,0.774631,0.774631 +0.784311,0.784311,0.784311,0.784311,0.784311,0.784311 +0.793991,0.793991,0.793991,0.793991,0.793991,0.793991 +0.803671,0.803671,0.803671,0.803671,0.803671,0.803671 +0.813351,0.813351,0.813351,0.813351,0.813351,0.813351 +0.823031,0.823031,0.823031,0.823031,0.823031,0.823031 +0.832711,0.832711,0.832711,0.832711,0.832711,0.832711 +0.842391,0.842391,0.842391,0.842391,0.842391,0.842391 +0.852071,0.852071,0.852071,0.852071,0.852071,0.852071 +0.861751,0.861751,0.861751,0.861751,0.861751,0.861751 +0.871431,0.871431,0.871431,0.871431,0.871431,0.871431 +0.881111,0.881111,0.881111,0.881111,0.881111,0.881111 +0.890791,0.890791,0.890791,0.890791,0.890791,0.890791 +0.900471,0.900471,0.900471,0.900471,0.900471,0.900471 +0.910151,0.910151,0.910151,0.910151,0.910151,0.910151 +0.919831,0.919831,0.919831,0.919831,0.919831,0.919831 +0.929511,0.929511,0.929511,0.929511,0.929511,0.929511 +0.939191,0.939191,0.939191,0.939191,0.939191,0.939191 +0.948871,0.948871,0.948871,0.948871,0.948871,0.948871 +0.958551,0.958551,0.958551,0.958551,0.958551,0.958551 +0.968231,0.968231,0.968231,0.968231,0.968231,0.968231 +0.977911,0.977911,0.977911,0.977911,0.977911,0.977911 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.997271,0.997271,0.997271,0.997271,0.997271,0.997271 +1.006951,1.006951,1.006951,1.006951,1.006951,1.006951 +1.016631,1.016631,1.016631,1.016631,1.016631,1.016631 +1.026311,1.026311,1.026311,1.026311,1.026311,1.026311 +1.035991,1.035991,1.035991,1.035991,1.035991,1.035991 +1.045671,1.045671,1.045671,1.045671,1.045671,1.045671 +1.055351,1.055351,1.055351,1.055351,1.055351,1.055351 +1.065031,1.065031,1.065031,1.065031,1.065031,1.065031 +1.074711,1.074711,1.074711,1.074711,1.074711,1.074711 +1.084391,1.084391,1.084391,1.084391,1.084391,1.084391 +1.094071,1.094071,1.094071,1.094071,1.094071,1.094071 +1.103751,1.103751,1.103751,1.103751,1.103751,1.103751 +1.113431,1.113431,1.113431,1.113431,1.113431,1.113431 +1.123111,1.123111,1.123111,1.123111,1.123111,1.123111 +1.132791,1.132791,1.132791,1.132791,1.132791,1.132791 +1.142471,1.142471,1.142471,1.142471,1.142471,1.142471 +1.152151,1.152151,1.152151,1.152151,1.152151,1.152151 +1.161831,1.161831,1.161831,1.161831,1.161831,1.161831 +1.171511,1.171511,1.171511,1.171511,1.171511,1.171511 +1.181191,1.181191,1.181191,1.181191,1.181191,1.181191 +1.190871,1.190871,1.190871,1.190871,1.190871,1.190871 +1.200551,1.200551,1.200551,1.200551,1.200551,1.200551 +1.210231,1.210231,1.210231,1.210231,1.210231,1.210231 +1.219911,1.219911,1.219911,1.219911,1.219911,1.219911 +1.229591,1.229591,1.229591,1.229591,1.229591,1.229591 +1.239271,1.239271,1.239271,1.239271,1.239271,1.239271 +1.248951,1.248951,1.248951,1.248951,1.248951,1.248951 +1.258631,1.258631,1.258631,1.258631,1.258631,1.258631 +1.268311,1.268311,1.268311,1.268311,1.268311,1.268311 +1.277991,1.277991,1.277991,1.277991,1.277991,1.277991 +1.287671,1.287671,1.287671,1.287671,1.287671,1.287671 +1.297351,1.297351,1.297351,1.297351,1.297351,1.297351 +1.307031,1.307031,1.307031,1.307031,1.307031,1.307031 +1.316711,1.316711,1.316711,1.316711,1.316711,1.316711 +1.326391,1.326391,1.326391,1.326391,1.326391,1.326391 +1.336071,1.336071,1.336071,1.336071,1.336071,1.336071 +1.345751,1.345751,1.345751,1.345751,1.345751,1.345751 +1.355431,1.355431,1.355431,1.355431,1.355431,1.355431 +1.365111,1.365111,1.365111,1.365111,1.365111,1.365111 +1.374791,1.374791,1.374791,1.374791,1.374791,1.374791 +1.384471,1.384471,1.384471,1.384471,1.384471,1.384471 +1.394151,1.394151,1.394151,1.394151,1.394151,1.394151 +1.403831,1.403831,1.403831,1.403831,1.403831,1.403831 +1.413511,1.413511,1.413511,1.413511,1.413511,1.413511 +1.423191,1.423191,1.423191,1.423191,1.423191,1.423191 +1.432871,1.432871,1.432871,1.432871,1.432871,1.432871 +1.442551,1.442551,1.442551,1.442551,1.442551,1.442551 +1.452231,1.452231,1.452231,1.452231,1.452231,1.452231 +1.461911,1.461911,1.461911,1.461911,1.461911,1.461911 +1.471591,1.471591,1.471591,1.471591,1.471591,1.471591 +1.481271,1.481271,1.481271,1.481271,1.481271,1.481271 +1.490951,1.490951,1.490951,1.490951,1.490951,1.490951 +1.500631,1.500631,1.500631,1.500631,1.500631,1.500631 +1.510311,1.510311,1.510311,1.510311,1.510311,1.510311 +1.519991,1.519991,1.519991,1.519991,1.519991,1.519991 +1.529671,1.529671,1.529671,1.529671,1.529671,1.529671 +1.539351,1.539351,1.539351,1.539351,1.539351,1.539351 +1.549029,1.549029,1.549029,1.549029,1.549029,1.549029 +1.558693,1.558693,1.558693,1.558693,1.558693,1.558693 +1.568318,1.568318,1.568318,1.568318,1.568318,1.568318 +1.577885,1.577885,1.577885,1.577885,1.577885,1.577885 +1.58737,1.58737,1.58737,1.58737,1.58737,1.58737 +1.596751,1.596751,1.596751,1.596751,1.596751,1.596751 +1.606008,1.606008,1.606008,1.606008,1.606008,1.606008 +1.615116,1.615116,1.615116,1.615116,1.615116,1.615116 +1.624056,1.624056,1.624056,1.624056,1.624056,1.624056 +1.632804,1.632804,1.632804,1.632804,1.632804,1.632804 +1.641338,1.641338,1.641338,1.641338,1.641338,1.641338 +1.649637,1.649637,1.649637,1.649637,1.649637,1.649637 +1.657679,1.657679,1.657679,1.657679,1.657679,1.657679 +1.665441,1.665441,1.665441,1.665441,1.665441,1.665441 +1.672902,1.672902,1.672902,1.672902,1.672902,1.672902 +1.68004,1.68004,1.68004,1.68004,1.68004,1.68004 +1.686832,1.686832,1.686832,1.686832,1.686832,1.686832 +1.693257,1.693257,1.693257,1.693257,1.693257,1.693257 +1.699292,1.699292,1.699292,1.699292,1.699292,1.699292 +1.704916,1.704916,1.704916,1.704916,1.704916,1.704916 +1.710106,1.710106,1.710106,1.710106,1.710106,1.710106 +1.714844,1.714844,1.714844,1.714844,1.714844,1.714844 +1.719137,1.719137,1.719137,1.719137,1.719137,1.719137 +1.723005,1.723005,1.723005,1.723005,1.723005,1.723005 +1.726473,1.726473,1.726473,1.726473,1.726473,1.726473 +1.729561,1.729561,1.729561,1.729561,1.729561,1.729561 +1.732291,1.732291,1.732291,1.732291,1.732291,1.732291 +1.734686,1.734686,1.734686,1.734686,1.734686,1.734686 +1.736767,1.736767,1.736767,1.736767,1.736767,1.736767 +1.738556,1.738556,1.738556,1.738556,1.738556,1.738556 +1.740077,1.740077,1.740077,1.740077,1.740077,1.740077 +1.741349,1.741349,1.741349,1.741349,1.741349,1.741349 +1.742396,1.742396,1.742396,1.742396,1.742396,1.742396 +1.74324,1.74324,1.74324,1.74324,1.74324,1.74324 +1.743902,1.743902,1.743902,1.743902,1.743902,1.743902 +1.744404,1.744404,1.744404,1.744404,1.744404,1.744404 +1.744769,1.744769,1.744769,1.744769,1.744769,1.744769 +1.745018,1.745018,1.745018,1.745018,1.745018,1.745018 +1.745174,1.745174,1.745174,1.745174,1.745174,1.745174 +1.745258,1.745258,1.745258,1.745258,1.745258,1.745258 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745271,1.745271,1.745271,1.745271,1.745271,1.745271 +1.745201,1.745201,1.745201,1.745201,1.745201,1.745201 +1.745065,1.745065,1.745065,1.745065,1.745065,1.745065 +1.744842,1.744842,1.744842,1.744842,1.744842,1.744842 +1.744508,1.744508,1.744508,1.744508,1.744508,1.744508 +1.744042,1.744042,1.744042,1.744042,1.744042,1.744042 +1.743423,1.743423,1.743423,1.743423,1.743423,1.743423 +1.742627,1.742627,1.742627,1.742627,1.742627,1.742627 +1.741633,1.741633,1.741633,1.741633,1.741633,1.741633 +1.74042,1.74042,1.74042,1.74042,1.74042,1.74042 +1.738964,1.738964,1.738964,1.738964,1.738964,1.738964 +1.737244,1.737244,1.737244,1.737244,1.737244,1.737244 +1.735239,1.735239,1.735239,1.735239,1.735239,1.735239 +1.732925,1.732925,1.732925,1.732925,1.732925,1.732925 +1.730281,1.730281,1.730281,1.730281,1.730281,1.730281 +1.727286,1.727286,1.727286,1.727286,1.727286,1.727286 +1.723916,1.723916,1.723916,1.723916,1.723916,1.723916 +1.72015,1.72015,1.72015,1.72015,1.72015,1.72015 +1.715967,1.715967,1.715967,1.715967,1.715967,1.715967 +1.711343,1.711343,1.711343,1.711343,1.711343,1.711343 +1.706265,1.706265,1.706265,1.706265,1.706265,1.706265 +1.700748,1.700748,1.700748,1.700748,1.700748,1.700748 +1.694815,1.694815,1.694815,1.694815,1.694815,1.694815 +1.688486,1.688486,1.688486,1.688486,1.688486,1.688486 +1.681784,1.681784,1.681784,1.681784,1.681784,1.681784 +1.674732,1.674732,1.674732,1.674732,1.674732,1.674732 +1.66735,1.66735,1.66735,1.66735,1.66735,1.66735 +1.659662,1.659662,1.659662,1.659662,1.659662,1.659662 +1.651689,1.651689,1.651689,1.651689,1.651689,1.651689 +1.643452,1.643452,1.643452,1.643452,1.643452,1.643452 +1.634975,1.634975,1.634975,1.634975,1.634975,1.634975 +1.626279,1.626279,1.626279,1.626279,1.626279,1.626279 +1.617385,1.617385,1.617385,1.617385,1.617385,1.617385 +1.608317,1.608317,1.608317,1.608317,1.608317,1.608317 +1.599096,1.599096,1.599096,1.599096,1.599096,1.599096 +1.589744,1.589744,1.589744,1.589744,1.589744,1.589744 +1.580283,1.580283,1.580283,1.580283,1.580283,1.580283 +1.570735,1.570735,1.570735,1.570735,1.570735,1.570735 +1.561122,1.561122,1.561122,1.561122,1.561122,1.561122 +1.551466,1.551466,1.551466,1.551466,1.551466,1.551466 +1.541789,1.541789,1.541789,1.541789,1.541789,1.541789 +1.532109,1.532109,1.532109,1.532109,1.532109,1.532109 +1.522429,1.522429,1.522429,1.522429,1.522429,1.522429 +1.512749,1.512749,1.512749,1.512749,1.512749,1.512749 +1.503069,1.503069,1.503069,1.503069,1.503069,1.503069 +1.493389,1.493389,1.493389,1.493389,1.493389,1.493389 +1.483709,1.483709,1.483709,1.483709,1.483709,1.483709 +1.474029,1.474029,1.474029,1.474029,1.474029,1.474029 +1.464349,1.464349,1.464349,1.464349,1.464349,1.464349 +1.454669,1.454669,1.454669,1.454669,1.454669,1.454669 +1.444989,1.444989,1.444989,1.444989,1.444989,1.444989 +1.435309,1.435309,1.435309,1.435309,1.435309,1.435309 +1.425629,1.425629,1.425629,1.425629,1.425629,1.425629 +1.415949,1.415949,1.415949,1.415949,1.415949,1.415949 +1.406269,1.406269,1.406269,1.406269,1.406269,1.406269 +1.396589,1.396589,1.396589,1.396589,1.396589,1.396589 +1.386909,1.386909,1.386909,1.386909,1.386909,1.386909 +1.377229,1.377229,1.377229,1.377229,1.377229,1.377229 +1.367549,1.367549,1.367549,1.367549,1.367549,1.367549 +1.357869,1.357869,1.357869,1.357869,1.357869,1.357869 +1.348189,1.348189,1.348189,1.348189,1.348189,1.348189 +1.338509,1.338509,1.338509,1.338509,1.338509,1.338509 +1.328829,1.328829,1.328829,1.328829,1.328829,1.328829 +1.319149,1.319149,1.319149,1.319149,1.319149,1.319149 +1.309469,1.309469,1.309469,1.309469,1.309469,1.309469 +1.299789,1.299789,1.299789,1.299789,1.299789,1.299789 +1.290109,1.290109,1.290109,1.290109,1.290109,1.290109 +1.280429,1.280429,1.280429,1.280429,1.280429,1.280429 +1.270749,1.270749,1.270749,1.270749,1.270749,1.270749 +1.261069,1.261069,1.261069,1.261069,1.261069,1.261069 +1.251389,1.251389,1.251389,1.251389,1.251389,1.251389 +1.241709,1.241709,1.241709,1.241709,1.241709,1.241709 +1.232029,1.232029,1.232029,1.232029,1.232029,1.232029 +1.222349,1.222349,1.222349,1.222349,1.222349,1.222349 +1.212669,1.212669,1.212669,1.212669,1.212669,1.212669 +1.202989,1.202989,1.202989,1.202989,1.202989,1.202989 +1.193309,1.193309,1.193309,1.193309,1.193309,1.193309 +1.183629,1.183629,1.183629,1.183629,1.183629,1.183629 +1.173949,1.173949,1.173949,1.173949,1.173949,1.173949 +1.164269,1.164269,1.164269,1.164269,1.164269,1.164269 +1.154589,1.154589,1.154589,1.154589,1.154589,1.154589 +1.144909,1.144909,1.144909,1.144909,1.144909,1.144909 +1.135229,1.135229,1.135229,1.135229,1.135229,1.135229 +1.125549,1.125549,1.125549,1.125549,1.125549,1.125549 +1.115869,1.115869,1.115869,1.115869,1.115869,1.115869 +1.106189,1.106189,1.106189,1.106189,1.106189,1.106189 +1.096509,1.096509,1.096509,1.096509,1.096509,1.096509 +1.086829,1.086829,1.086829,1.086829,1.086829,1.086829 +1.077149,1.077149,1.077149,1.077149,1.077149,1.077149 +1.067469,1.067469,1.067469,1.067469,1.067469,1.067469 +1.057789,1.057789,1.057789,1.057789,1.057789,1.057789 +1.048109,1.048109,1.048109,1.048109,1.048109,1.048109 +1.038429,1.038429,1.038429,1.038429,1.038429,1.038429 +1.028749,1.028749,1.028749,1.028749,1.028749,1.028749 +1.019069,1.019069,1.019069,1.019069,1.019069,1.019069 +1.009389,1.009389,1.009389,1.009389,1.009389,1.009389 +0.999709,0.999709,0.999709,0.999709,0.999709,0.999709 +0.990029,0.990029,0.990029,0.990029,0.990029,0.990029 +0.980349,0.980349,0.980349,0.980349,0.980349,0.980349 +0.970669,0.970669,0.970669,0.970669,0.970669,0.970669 +0.960989,0.960989,0.960989,0.960989,0.960989,0.960989 +0.951309,0.951309,0.951309,0.951309,0.951309,0.951309 +0.941629,0.941629,0.941629,0.941629,0.941629,0.941629 +0.931949,0.931949,0.931949,0.931949,0.931949,0.931949 +0.922269,0.922269,0.922269,0.922269,0.922269,0.922269 +0.912589,0.912589,0.912589,0.912589,0.912589,0.912589 +0.902909,0.902909,0.902909,0.902909,0.902909,0.902909 +0.893229,0.893229,0.893229,0.893229,0.893229,0.893229 +0.883549,0.883549,0.883549,0.883549,0.883549,0.883549 +0.873869,0.873869,0.873869,0.873869,0.873869,0.873869 +0.864189,0.864189,0.864189,0.864189,0.864189,0.864189 +0.854509,0.854509,0.854509,0.854509,0.854509,0.854509 +0.844829,0.844829,0.844829,0.844829,0.844829,0.844829 +0.835149,0.835149,0.835149,0.835149,0.835149,0.835149 +0.825469,0.825469,0.825469,0.825469,0.825469,0.825469 +0.815789,0.815789,0.815789,0.815789,0.815789,0.815789 +0.806109,0.806109,0.806109,0.806109,0.806109,0.806109 +0.796429,0.796429,0.796429,0.796429,0.796429,0.796429 +0.786749,0.786749,0.786749,0.786749,0.786749,0.786749 +0.777069,0.777069,0.777069,0.777069,0.777069,0.777069 +0.767389,0.767389,0.767389,0.767389,0.767389,0.767389 +0.757709,0.757709,0.757709,0.757709,0.757709,0.757709 +0.748029,0.748029,0.748029,0.748029,0.748029,0.748029 +0.738349,0.738349,0.738349,0.738349,0.738349,0.738349 +0.728669,0.728669,0.728669,0.728669,0.728669,0.728669 +0.718989,0.718989,0.718989,0.718989,0.718989,0.718989 +0.709309,0.709309,0.709309,0.709309,0.709309,0.709309 +0.699629,0.699629,0.699629,0.699629,0.699629,0.699629 +0.689949,0.689949,0.689949,0.689949,0.689949,0.689949 +0.680269,0.680269,0.680269,0.680269,0.680269,0.680269 +0.670589,0.670589,0.670589,0.670589,0.670589,0.670589 +0.660909,0.660909,0.660909,0.660909,0.660909,0.660909 +0.651229,0.651229,0.651229,0.651229,0.651229,0.651229 +0.641549,0.641549,0.641549,0.641549,0.641549,0.641549 +0.631869,0.631869,0.631869,0.631869,0.631869,0.631869 +0.622189,0.622189,0.622189,0.622189,0.622189,0.622189 +0.612509,0.612509,0.612509,0.612509,0.612509,0.612509 +0.602829,0.602829,0.602829,0.602829,0.602829,0.602829 +0.593149,0.593149,0.593149,0.593149,0.593149,0.593149 +0.583469,0.583469,0.583469,0.583469,0.583469,0.583469 +0.573789,0.573789,0.573789,0.573789,0.573789,0.573789 +0.564109,0.564109,0.564109,0.564109,0.564109,0.564109 +0.554429,0.554429,0.554429,0.554429,0.554429,0.554429 +0.544749,0.544749,0.544749,0.544749,0.544749,0.544749 +0.535069,0.535069,0.535069,0.535069,0.535069,0.535069 +0.525389,0.525389,0.525389,0.525389,0.525389,0.525389 +0.515709,0.515709,0.515709,0.515709,0.515709,0.515709 +0.506029,0.506029,0.506029,0.506029,0.506029,0.506029 +0.496349,0.496349,0.496349,0.496349,0.496349,0.496349 +0.486669,0.486669,0.486669,0.486669,0.486669,0.486669 +0.476989,0.476989,0.476989,0.476989,0.476989,0.476989 +0.467309,0.467309,0.467309,0.467309,0.467309,0.467309 +0.457629,0.457629,0.457629,0.457629,0.457629,0.457629 +0.447949,0.447949,0.447949,0.447949,0.447949,0.447949 +0.438269,0.438269,0.438269,0.438269,0.438269,0.438269 +0.428589,0.428589,0.428589,0.428589,0.428589,0.428589 +0.418909,0.418909,0.418909,0.418909,0.418909,0.418909 +0.409229,0.409229,0.409229,0.409229,0.409229,0.409229 +0.399549,0.399549,0.399549,0.399549,0.399549,0.399549 +0.389869,0.389869,0.389869,0.389869,0.389869,0.389869 +0.380189,0.380189,0.380189,0.380189,0.380189,0.380189 +0.370509,0.370509,0.370509,0.370509,0.370509,0.370509 +0.360829,0.360829,0.360829,0.360829,0.360829,0.360829 +0.351149,0.351149,0.351149,0.351149,0.351149,0.351149 +0.341469,0.341469,0.341469,0.341469,0.341469,0.341469 +0.331789,0.331789,0.331789,0.331789,0.331789,0.331789 +0.322109,0.322109,0.322109,0.322109,0.322109,0.322109 +0.312429,0.312429,0.312429,0.312429,0.312429,0.312429 +0.302749,0.302749,0.302749,0.302749,0.302749,0.302749 +0.293069,0.293069,0.293069,0.293069,0.293069,0.293069 +0.283389,0.283389,0.283389,0.283389,0.283389,0.283389 +0.273709,0.273709,0.273709,0.273709,0.273709,0.273709 +0.264029,0.264029,0.264029,0.264029,0.264029,0.264029 +0.254349,0.254349,0.254349,0.254349,0.254349,0.254349 +0.244669,0.244669,0.244669,0.244669,0.244669,0.244669 +0.234989,0.234989,0.234989,0.234989,0.234989,0.234989 +0.225309,0.225309,0.225309,0.225309,0.225309,0.225309 +0.215629,0.215629,0.215629,0.215629,0.215629,0.215629 +0.205949,0.205949,0.205949,0.205949,0.205949,0.205949 +0.196271,0.196271,0.196271,0.196271,0.196271,0.196271 +0.186607,0.186607,0.186607,0.186607,0.186607,0.186607 +0.176982,0.176982,0.176982,0.176982,0.176982,0.176982 +0.167415,0.167415,0.167415,0.167415,0.167415,0.167415 +0.15793,0.15793,0.15793,0.15793,0.15793,0.15793 +0.148549,0.148549,0.148549,0.148549,0.148549,0.148549 +0.139292,0.139292,0.139292,0.139292,0.139292,0.139292 +0.130184,0.130184,0.130184,0.130184,0.130184,0.130184 +0.121244,0.121244,0.121244,0.121244,0.121244,0.121244 +0.112496,0.112496,0.112496,0.112496,0.112496,0.112496 +0.103962,0.103962,0.103962,0.103962,0.103962,0.103962 +0.095663,0.095663,0.095663,0.095663,0.095663,0.095663 +0.087621,0.087621,0.087621,0.087621,0.087621,0.087621 +0.079859,0.079859,0.079859,0.079859,0.079859,0.079859 +0.072398,0.072398,0.072398,0.072398,0.072398,0.072398 +0.06526,0.06526,0.06526,0.06526,0.06526,0.06526 +0.058468,0.058468,0.058468,0.058468,0.058468,0.058468 +0.052043,0.052043,0.052043,0.052043,0.052043,0.052043 +0.046008,0.046008,0.046008,0.046008,0.046008,0.046008 +0.040384,0.040384,0.040384,0.040384,0.040384,0.040384 +0.035194,0.035194,0.035194,0.035194,0.035194,0.035194 +0.030456,0.030456,0.030456,0.030456,0.030456,0.030456 +0.026163,0.026163,0.026163,0.026163,0.026163,0.026163 +0.022295,0.022295,0.022295,0.022295,0.022295,0.022295 +0.018827,0.018827,0.018827,0.018827,0.018827,0.018827 +0.015739,0.015739,0.015739,0.015739,0.015739,0.015739 +0.013009,0.013009,0.013009,0.013009,0.013009,0.013009 +0.010614,0.010614,0.010614,0.010614,0.010614,0.010614 +0.008533,0.008533,0.008533,0.008533,0.008533,0.008533 +0.006744,0.006744,0.006744,0.006744,0.006744,0.006744 +0.005223,0.005223,0.005223,0.005223,0.005223,0.005223 +0.003951,0.003951,0.003951,0.003951,0.003951,0.003951 +0.002904,0.002904,0.002904,0.002904,0.002904,0.002904 +0.00206,0.00206,0.00206,0.00206,0.00206,0.00206 +0.001398,0.001398,0.001398,0.001398,0.001398,0.001398 +0.000896,0.000896,0.000896,0.000896,0.000896,0.000896 +0.000531,0.000531,0.000531,0.000531,0.000531,0.000531 +0.000282,0.000282,0.000282,0.000282,0.000282,0.000282 +0.000126,0.000126,0.000126,0.000126,0.000126,0.000126 +0.000042,0.000042,0.000042,0.000042,0.000042,0.000042 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000029,-0.000029,-0.000029,-0.000029,-0.000029,-0.000029 +-0.000099,-0.000099,-0.000099,-0.000099,-0.000099,-0.000099 +-0.000235,-0.000235,-0.000235,-0.000235,-0.000235,-0.000235 +-0.000458,-0.000458,-0.000458,-0.000458,-0.000458,-0.000458 +-0.000792,-0.000792,-0.000792,-0.000792,-0.000792,-0.000792 +-0.001258,-0.001258,-0.001258,-0.001258,-0.001258,-0.001258 +-0.001877,-0.001877,-0.001877,-0.001877,-0.001877,-0.001877 +-0.002673,-0.002673,-0.002673,-0.002673,-0.002673,-0.002673 +-0.003667,-0.003667,-0.003667,-0.003667,-0.003667,-0.003667 +-0.00488,-0.00488,-0.00488,-0.00488,-0.00488,-0.00488 +-0.006336,-0.006336,-0.006336,-0.006336,-0.006336,-0.006336 +-0.008056,-0.008056,-0.008056,-0.008056,-0.008056,-0.008056 +-0.010061,-0.010061,-0.010061,-0.010061,-0.010061,-0.010061 +-0.012375,-0.012375,-0.012375,-0.012375,-0.012375,-0.012375 +-0.015019,-0.015019,-0.015019,-0.015019,-0.015019,-0.015019 +-0.018014,-0.018014,-0.018014,-0.018014,-0.018014,-0.018014 +-0.021384,-0.021384,-0.021384,-0.021384,-0.021384,-0.021384 +-0.02515,-0.02515,-0.02515,-0.02515,-0.02515,-0.02515 +-0.029333,-0.029333,-0.029333,-0.029333,-0.029333,-0.029333 +-0.033957,-0.033957,-0.033957,-0.033957,-0.033957,-0.033957 +-0.039035,-0.039035,-0.039035,-0.039035,-0.039035,-0.039035 +-0.044552,-0.044552,-0.044552,-0.044552,-0.044552,-0.044552 +-0.050485,-0.050485,-0.050485,-0.050485,-0.050485,-0.050485 +-0.056814,-0.056814,-0.056814,-0.056814,-0.056814,-0.056814 +-0.063516,-0.063516,-0.063516,-0.063516,-0.063516,-0.063516 +-0.070568,-0.070568,-0.070568,-0.070568,-0.070568,-0.070568 +-0.07795,-0.07795,-0.07795,-0.07795,-0.07795,-0.07795 +-0.085638,-0.085638,-0.085638,-0.085638,-0.085638,-0.085638 +-0.093611,-0.093611,-0.093611,-0.093611,-0.093611,-0.093611 +-0.101848,-0.101848,-0.101848,-0.101848,-0.101848,-0.101848 +-0.110325,-0.110325,-0.110325,-0.110325,-0.110325,-0.110325 +-0.119021,-0.119021,-0.119021,-0.119021,-0.119021,-0.119021 +-0.127915,-0.127915,-0.127915,-0.127915,-0.127915,-0.127915 +-0.136983,-0.136983,-0.136983,-0.136983,-0.136983,-0.136983 +-0.146204,-0.146204,-0.146204,-0.146204,-0.146204,-0.146204 +-0.155556,-0.155556,-0.155556,-0.155556,-0.155556,-0.155556 +-0.165017,-0.165017,-0.165017,-0.165017,-0.165017,-0.165017 +-0.174565,-0.174565,-0.174565,-0.174565,-0.174565,-0.174565 +-0.184178,-0.184178,-0.184178,-0.184178,-0.184178,-0.184178 +-0.193834,-0.193834,-0.193834,-0.193834,-0.193834,-0.193834 +-0.203511,-0.203511,-0.203511,-0.203511,-0.203511,-0.203511 +-0.213191,-0.213191,-0.213191,-0.213191,-0.213191,-0.213191 +-0.222871,-0.222871,-0.222871,-0.222871,-0.222871,-0.222871 +-0.232551,-0.232551,-0.232551,-0.232551,-0.232551,-0.232551 +-0.242231,-0.242231,-0.242231,-0.242231,-0.242231,-0.242231 +-0.251911,-0.251911,-0.251911,-0.251911,-0.251911,-0.251911 +-0.261591,-0.261591,-0.261591,-0.261591,-0.261591,-0.261591 +-0.271271,-0.271271,-0.271271,-0.271271,-0.271271,-0.271271 +-0.280951,-0.280951,-0.280951,-0.280951,-0.280951,-0.280951 +-0.290631,-0.290631,-0.290631,-0.290631,-0.290631,-0.290631 +-0.300311,-0.300311,-0.300311,-0.300311,-0.300311,-0.300311 +-0.309991,-0.309991,-0.309991,-0.309991,-0.309991,-0.309991 +-0.319671,-0.319671,-0.319671,-0.319671,-0.319671,-0.319671 +-0.329351,-0.329351,-0.329351,-0.329351,-0.329351,-0.329351 +-0.339031,-0.339031,-0.339031,-0.339031,-0.339031,-0.339031 +-0.348711,-0.348711,-0.348711,-0.348711,-0.348711,-0.348711 +-0.358391,-0.358391,-0.358391,-0.358391,-0.358391,-0.358391 +-0.368071,-0.368071,-0.368071,-0.368071,-0.368071,-0.368071 +-0.377751,-0.377751,-0.377751,-0.377751,-0.377751,-0.377751 +-0.387431,-0.387431,-0.387431,-0.387431,-0.387431,-0.387431 +-0.397111,-0.397111,-0.397111,-0.397111,-0.397111,-0.397111 +-0.406791,-0.406791,-0.406791,-0.406791,-0.406791,-0.406791 +-0.416471,-0.416471,-0.416471,-0.416471,-0.416471,-0.416471 +-0.426151,-0.426151,-0.426151,-0.426151,-0.426151,-0.426151 +-0.435831,-0.435831,-0.435831,-0.435831,-0.435831,-0.435831 +-0.445511,-0.445511,-0.445511,-0.445511,-0.445511,-0.445511 +-0.455191,-0.455191,-0.455191,-0.455191,-0.455191,-0.455191 +-0.464871,-0.464871,-0.464871,-0.464871,-0.464871,-0.464871 +-0.474551,-0.474551,-0.474551,-0.474551,-0.474551,-0.474551 +-0.484231,-0.484231,-0.484231,-0.484231,-0.484231,-0.484231 +-0.493911,-0.493911,-0.493911,-0.493911,-0.493911,-0.493911 +-0.503591,-0.503591,-0.503591,-0.503591,-0.503591,-0.503591 +-0.513271,-0.513271,-0.513271,-0.513271,-0.513271,-0.513271 +-0.522951,-0.522951,-0.522951,-0.522951,-0.522951,-0.522951 +-0.532631,-0.532631,-0.532631,-0.532631,-0.532631,-0.532631 +-0.542311,-0.542311,-0.542311,-0.542311,-0.542311,-0.542311 +-0.551991,-0.551991,-0.551991,-0.551991,-0.551991,-0.551991 +-0.561671,-0.561671,-0.561671,-0.561671,-0.561671,-0.561671 +-0.571351,-0.571351,-0.571351,-0.571351,-0.571351,-0.571351 +-0.581031,-0.581031,-0.581031,-0.581031,-0.581031,-0.581031 +-0.590711,-0.590711,-0.590711,-0.590711,-0.590711,-0.590711 +-0.600391,-0.600391,-0.600391,-0.600391,-0.600391,-0.600391 +-0.610071,-0.610071,-0.610071,-0.610071,-0.610071,-0.610071 +-0.619751,-0.619751,-0.619751,-0.619751,-0.619751,-0.619751 +-0.629431,-0.629431,-0.629431,-0.629431,-0.629431,-0.629431 +-0.639111,-0.639111,-0.639111,-0.639111,-0.639111,-0.639111 +-0.648791,-0.648791,-0.648791,-0.648791,-0.648791,-0.648791 +-0.658471,-0.658471,-0.658471,-0.658471,-0.658471,-0.658471 +-0.668151,-0.668151,-0.668151,-0.668151,-0.668151,-0.668151 +-0.677831,-0.677831,-0.677831,-0.677831,-0.677831,-0.677831 +-0.687511,-0.687511,-0.687511,-0.687511,-0.687511,-0.687511 +-0.697191,-0.697191,-0.697191,-0.697191,-0.697191,-0.697191 +-0.706871,-0.706871,-0.706871,-0.706871,-0.706871,-0.706871 +-0.716551,-0.716551,-0.716551,-0.716551,-0.716551,-0.716551 +-0.726231,-0.726231,-0.726231,-0.726231,-0.726231,-0.726231 +-0.735911,-0.735911,-0.735911,-0.735911,-0.735911,-0.735911 +-0.745591,-0.745591,-0.745591,-0.745591,-0.745591,-0.745591 +-0.755271,-0.755271,-0.755271,-0.755271,-0.755271,-0.755271 +-0.764951,-0.764951,-0.764951,-0.764951,-0.764951,-0.764951 +-0.774631,-0.774631,-0.774631,-0.774631,-0.774631,-0.774631 +-0.784311,-0.784311,-0.784311,-0.784311,-0.784311,-0.784311 +-0.793991,-0.793991,-0.793991,-0.793991,-0.793991,-0.793991 +-0.803671,-0.803671,-0.803671,-0.803671,-0.803671,-0.803671 +-0.813351,-0.813351,-0.813351,-0.813351,-0.813351,-0.813351 +-0.823031,-0.823031,-0.823031,-0.823031,-0.823031,-0.823031 +-0.832711,-0.832711,-0.832711,-0.832711,-0.832711,-0.832711 +-0.842391,-0.842391,-0.842391,-0.842391,-0.842391,-0.842391 +-0.852071,-0.852071,-0.852071,-0.852071,-0.852071,-0.852071 +-0.861751,-0.861751,-0.861751,-0.861751,-0.861751,-0.861751 +-0.871431,-0.871431,-0.871431,-0.871431,-0.871431,-0.871431 +-0.881111,-0.881111,-0.881111,-0.881111,-0.881111,-0.881111 +-0.890791,-0.890791,-0.890791,-0.890791,-0.890791,-0.890791 +-0.900471,-0.900471,-0.900471,-0.900471,-0.900471,-0.900471 +-0.910151,-0.910151,-0.910151,-0.910151,-0.910151,-0.910151 +-0.919831,-0.919831,-0.919831,-0.919831,-0.919831,-0.919831 +-0.929511,-0.929511,-0.929511,-0.929511,-0.929511,-0.929511 +-0.939191,-0.939191,-0.939191,-0.939191,-0.939191,-0.939191 +-0.948871,-0.948871,-0.948871,-0.948871,-0.948871,-0.948871 +-0.958551,-0.958551,-0.958551,-0.958551,-0.958551,-0.958551 +-0.968231,-0.968231,-0.968231,-0.968231,-0.968231,-0.968231 +-0.977911,-0.977911,-0.977911,-0.977911,-0.977911,-0.977911 +-0.987591,-0.987591,-0.987591,-0.987591,-0.987591,-0.987591 +-0.997271,-0.997271,-0.997271,-0.997271,-0.997271,-0.997271 +-1.006951,-1.006951,-1.006951,-1.006951,-1.006951,-1.006951 +-1.016631,-1.016631,-1.016631,-1.016631,-1.016631,-1.016631 +-1.026311,-1.026311,-1.026311,-1.026311,-1.026311,-1.026311 +-1.035991,-1.035991,-1.035991,-1.035991,-1.035991,-1.035991 +-1.045671,-1.045671,-1.045671,-1.045671,-1.045671,-1.045671 +-1.055351,-1.055351,-1.055351,-1.055351,-1.055351,-1.055351 +-1.065031,-1.065031,-1.065031,-1.065031,-1.065031,-1.065031 +-1.074711,-1.074711,-1.074711,-1.074711,-1.074711,-1.074711 +-1.084391,-1.084391,-1.084391,-1.084391,-1.084391,-1.084391 +-1.094071,-1.094071,-1.094071,-1.094071,-1.094071,-1.094071 +-1.103751,-1.103751,-1.103751,-1.103751,-1.103751,-1.103751 +-1.113431,-1.113431,-1.113431,-1.113431,-1.113431,-1.113431 +-1.123111,-1.123111,-1.123111,-1.123111,-1.123111,-1.123111 +-1.132791,-1.132791,-1.132791,-1.132791,-1.132791,-1.132791 +-1.142471,-1.142471,-1.142471,-1.142471,-1.142471,-1.142471 +-1.152151,-1.152151,-1.152151,-1.152151,-1.152151,-1.152151 +-1.161831,-1.161831,-1.161831,-1.161831,-1.161831,-1.161831 +-1.171511,-1.171511,-1.171511,-1.171511,-1.171511,-1.171511 +-1.181191,-1.181191,-1.181191,-1.181191,-1.181191,-1.181191 +-1.190871,-1.190871,-1.190871,-1.190871,-1.190871,-1.190871 +-1.200551,-1.200551,-1.200551,-1.200551,-1.200551,-1.200551 +-1.210231,-1.210231,-1.210231,-1.210231,-1.210231,-1.210231 +-1.219911,-1.219911,-1.219911,-1.219911,-1.219911,-1.219911 +-1.229591,-1.229591,-1.229591,-1.229591,-1.229591,-1.229591 +-1.239271,-1.239271,-1.239271,-1.239271,-1.239271,-1.239271 +-1.248951,-1.248951,-1.248951,-1.248951,-1.248951,-1.248951 +-1.258631,-1.258631,-1.258631,-1.258631,-1.258631,-1.258631 +-1.268311,-1.268311,-1.268311,-1.268311,-1.268311,-1.268311 +-1.277991,-1.277991,-1.277991,-1.277991,-1.277991,-1.277991 +-1.287671,-1.287671,-1.287671,-1.287671,-1.287671,-1.287671 +-1.297351,-1.297351,-1.297351,-1.297351,-1.297351,-1.297351 +-1.307031,-1.307031,-1.307031,-1.307031,-1.307031,-1.307031 +-1.316711,-1.316711,-1.316711,-1.316711,-1.316711,-1.316711 +-1.326391,-1.326391,-1.326391,-1.326391,-1.326391,-1.326391 +-1.336071,-1.336071,-1.336071,-1.336071,-1.336071,-1.336071 +-1.345751,-1.345751,-1.345751,-1.345751,-1.345751,-1.345751 +-1.355431,-1.355431,-1.355431,-1.355431,-1.355431,-1.355431 +-1.365111,-1.365111,-1.365111,-1.365111,-1.365111,-1.365111 +-1.374791,-1.374791,-1.374791,-1.374791,-1.374791,-1.374791 +-1.384471,-1.384471,-1.384471,-1.384471,-1.384471,-1.384471 +-1.394151,-1.394151,-1.394151,-1.394151,-1.394151,-1.394151 +-1.403831,-1.403831,-1.403831,-1.403831,-1.403831,-1.403831 +-1.413511,-1.413511,-1.413511,-1.413511,-1.413511,-1.413511 +-1.423191,-1.423191,-1.423191,-1.423191,-1.423191,-1.423191 +-1.432871,-1.432871,-1.432871,-1.432871,-1.432871,-1.432871 +-1.442551,-1.442551,-1.442551,-1.442551,-1.442551,-1.442551 +-1.452231,-1.452231,-1.452231,-1.452231,-1.452231,-1.452231 +-1.461911,-1.461911,-1.461911,-1.461911,-1.461911,-1.461911 +-1.471591,-1.471591,-1.471591,-1.471591,-1.471591,-1.471591 +-1.481271,-1.481271,-1.481271,-1.481271,-1.481271,-1.481271 +-1.490951,-1.490951,-1.490951,-1.490951,-1.490951,-1.490951 +-1.500631,-1.500631,-1.500631,-1.500631,-1.500631,-1.500631 +-1.510311,-1.510311,-1.510311,-1.510311,-1.510311,-1.510311 +-1.519991,-1.519991,-1.519991,-1.519991,-1.519991,-1.519991 +-1.529671,-1.529671,-1.529671,-1.529671,-1.529671,-1.529671 +-1.539351,-1.539351,-1.539351,-1.539351,-1.539351,-1.539351 +-1.549029,-1.549029,-1.549029,-1.549029,-1.549029,-1.549029 +-1.558693,-1.558693,-1.558693,-1.558693,-1.558693,-1.558693 +-1.568318,-1.568318,-1.568318,-1.568318,-1.568318,-1.568318 +-1.577885,-1.577885,-1.577885,-1.577885,-1.577885,-1.577885 +-1.58737,-1.58737,-1.58737,-1.58737,-1.58737,-1.58737 +-1.596751,-1.596751,-1.596751,-1.596751,-1.596751,-1.596751 +-1.606008,-1.606008,-1.606008,-1.606008,-1.606008,-1.606008 +-1.615116,-1.615116,-1.615116,-1.615116,-1.615116,-1.615116 +-1.624056,-1.624056,-1.624056,-1.624056,-1.624056,-1.624056 +-1.632804,-1.632804,-1.632804,-1.632804,-1.632804,-1.632804 +-1.641338,-1.641338,-1.641338,-1.641338,-1.641338,-1.641338 +-1.649637,-1.649637,-1.649637,-1.649637,-1.649637,-1.649637 +-1.657679,-1.657679,-1.657679,-1.657679,-1.657679,-1.657679 +-1.665441,-1.665441,-1.665441,-1.665441,-1.665441,-1.665441 +-1.672902,-1.672902,-1.672902,-1.672902,-1.672902,-1.672902 +-1.68004,-1.68004,-1.68004,-1.68004,-1.68004,-1.68004 +-1.686832,-1.686832,-1.686832,-1.686832,-1.686832,-1.686832 +-1.693257,-1.693257,-1.693257,-1.693257,-1.693257,-1.693257 +-1.699292,-1.699292,-1.699292,-1.699292,-1.699292,-1.699292 +-1.704916,-1.704916,-1.704916,-1.704916,-1.704916,-1.704916 +-1.710106,-1.710106,-1.710106,-1.710106,-1.710106,-1.710106 +-1.714844,-1.714844,-1.714844,-1.714844,-1.714844,-1.714844 +-1.719137,-1.719137,-1.719137,-1.719137,-1.719137,-1.719137 +-1.723005,-1.723005,-1.723005,-1.723005,-1.723005,-1.723005 +-1.726473,-1.726473,-1.726473,-1.726473,-1.726473,-1.726473 +-1.729561,-1.729561,-1.729561,-1.729561,-1.729561,-1.729561 +-1.732291,-1.732291,-1.732291,-1.732291,-1.732291,-1.732291 +-1.734686,-1.734686,-1.734686,-1.734686,-1.734686,-1.734686 +-1.736767,-1.736767,-1.736767,-1.736767,-1.736767,-1.736767 +-1.738556,-1.738556,-1.738556,-1.738556,-1.738556,-1.738556 +-1.740077,-1.740077,-1.740077,-1.740077,-1.740077,-1.740077 +-1.741349,-1.741349,-1.741349,-1.741349,-1.741349,-1.741349 +-1.742396,-1.742396,-1.742396,-1.742396,-1.742396,-1.742396 +-1.74324,-1.74324,-1.74324,-1.74324,-1.74324,-1.74324 +-1.743902,-1.743902,-1.743902,-1.743902,-1.743902,-1.743902 +-1.744404,-1.744404,-1.744404,-1.744404,-1.744404,-1.744404 +-1.744769,-1.744769,-1.744769,-1.744769,-1.744769,-1.744769 +-1.745018,-1.745018,-1.745018,-1.745018,-1.745018,-1.745018 +-1.745174,-1.745174,-1.745174,-1.745174,-1.745174,-1.745174 +-1.745258,-1.745258,-1.745258,-1.745258,-1.745258,-1.745258 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745271,-1.745271,-1.745271,-1.745271,-1.745271,-1.745271 +-1.745201,-1.745201,-1.745201,-1.745201,-1.745201,-1.745201 +-1.745065,-1.745065,-1.745065,-1.745065,-1.745065,-1.745065 +-1.744842,-1.744842,-1.744842,-1.744842,-1.744842,-1.744842 +-1.744508,-1.744508,-1.744508,-1.744508,-1.744508,-1.744508 +-1.744042,-1.744042,-1.744042,-1.744042,-1.744042,-1.744042 +-1.743423,-1.743423,-1.743423,-1.743423,-1.743423,-1.743423 +-1.742627,-1.742627,-1.742627,-1.742627,-1.742627,-1.742627 +-1.741633,-1.741633,-1.741633,-1.741633,-1.741633,-1.741633 +-1.74042,-1.74042,-1.74042,-1.74042,-1.74042,-1.74042 +-1.738964,-1.738964,-1.738964,-1.738964,-1.738964,-1.738964 +-1.737244,-1.737244,-1.737244,-1.737244,-1.737244,-1.737244 +-1.735239,-1.735239,-1.735239,-1.735239,-1.735239,-1.735239 +-1.732925,-1.732925,-1.732925,-1.732925,-1.732925,-1.732925 +-1.730281,-1.730281,-1.730281,-1.730281,-1.730281,-1.730281 +-1.727286,-1.727286,-1.727286,-1.727286,-1.727286,-1.727286 +-1.723916,-1.723916,-1.723916,-1.723916,-1.723916,-1.723916 +-1.72015,-1.72015,-1.72015,-1.72015,-1.72015,-1.72015 +-1.715967,-1.715967,-1.715967,-1.715967,-1.715967,-1.715967 +-1.711343,-1.711343,-1.711343,-1.711343,-1.711343,-1.711343 +-1.706265,-1.706265,-1.706265,-1.706265,-1.706265,-1.706265 +-1.700748,-1.700748,-1.700748,-1.700748,-1.700748,-1.700748 +-1.694815,-1.694815,-1.694815,-1.694815,-1.694815,-1.694815 +-1.688486,-1.688486,-1.688486,-1.688486,-1.688486,-1.688486 +-1.681784,-1.681784,-1.681784,-1.681784,-1.681784,-1.681784 +-1.674732,-1.674732,-1.674732,-1.674732,-1.674732,-1.674732 +-1.66735,-1.66735,-1.66735,-1.66735,-1.66735,-1.66735 +-1.659662,-1.659662,-1.659662,-1.659662,-1.659662,-1.659662 +-1.651689,-1.651689,-1.651689,-1.651689,-1.651689,-1.651689 +-1.643452,-1.643452,-1.643452,-1.643452,-1.643452,-1.643452 +-1.634975,-1.634975,-1.634975,-1.634975,-1.634975,-1.634975 +-1.626279,-1.626279,-1.626279,-1.626279,-1.626279,-1.626279 +-1.617385,-1.617385,-1.617385,-1.617385,-1.617385,-1.617385 +-1.608317,-1.608317,-1.608317,-1.608317,-1.608317,-1.608317 +-1.599096,-1.599096,-1.599096,-1.599096,-1.599096,-1.599096 +-1.589744,-1.589744,-1.589744,-1.589744,-1.589744,-1.589744 +-1.580283,-1.580283,-1.580283,-1.580283,-1.580283,-1.580283 +-1.570735,-1.570735,-1.570735,-1.570735,-1.570735,-1.570735 +-1.561122,-1.561122,-1.561122,-1.561122,-1.561122,-1.561122 +-1.551466,-1.551466,-1.551466,-1.551466,-1.551466,-1.551466 +-1.541789,-1.541789,-1.541789,-1.541789,-1.541789,-1.541789 +-1.532109,-1.532109,-1.532109,-1.532109,-1.532109,-1.532109 +-1.522429,-1.522429,-1.522429,-1.522429,-1.522429,-1.522429 +-1.512749,-1.512749,-1.512749,-1.512749,-1.512749,-1.512749 +-1.503069,-1.503069,-1.503069,-1.503069,-1.503069,-1.503069 +-1.493389,-1.493389,-1.493389,-1.493389,-1.493389,-1.493389 +-1.483709,-1.483709,-1.483709,-1.483709,-1.483709,-1.483709 +-1.474029,-1.474029,-1.474029,-1.474029,-1.474029,-1.474029 +-1.464349,-1.464349,-1.464349,-1.464349,-1.464349,-1.464349 +-1.454669,-1.454669,-1.454669,-1.454669,-1.454669,-1.454669 +-1.444989,-1.444989,-1.444989,-1.444989,-1.444989,-1.444989 +-1.435309,-1.435309,-1.435309,-1.435309,-1.435309,-1.435309 +-1.425629,-1.425629,-1.425629,-1.425629,-1.425629,-1.425629 +-1.415949,-1.415949,-1.415949,-1.415949,-1.415949,-1.415949 +-1.406269,-1.406269,-1.406269,-1.406269,-1.406269,-1.406269 +-1.396589,-1.396589,-1.396589,-1.396589,-1.396589,-1.396589 +-1.386909,-1.386909,-1.386909,-1.386909,-1.386909,-1.386909 +-1.377229,-1.377229,-1.377229,-1.377229,-1.377229,-1.377229 +-1.367549,-1.367549,-1.367549,-1.367549,-1.367549,-1.367549 +-1.357869,-1.357869,-1.357869,-1.357869,-1.357869,-1.357869 +-1.348189,-1.348189,-1.348189,-1.348189,-1.348189,-1.348189 +-1.338509,-1.338509,-1.338509,-1.338509,-1.338509,-1.338509 +-1.328829,-1.328829,-1.328829,-1.328829,-1.328829,-1.328829 +-1.319149,-1.319149,-1.319149,-1.319149,-1.319149,-1.319149 +-1.309469,-1.309469,-1.309469,-1.309469,-1.309469,-1.309469 +-1.299789,-1.299789,-1.299789,-1.299789,-1.299789,-1.299789 +-1.290109,-1.290109,-1.290109,-1.290109,-1.290109,-1.290109 +-1.280429,-1.280429,-1.280429,-1.280429,-1.280429,-1.280429 +-1.270749,-1.270749,-1.270749,-1.270749,-1.270749,-1.270749 +-1.261069,-1.261069,-1.261069,-1.261069,-1.261069,-1.261069 +-1.251389,-1.251389,-1.251389,-1.251389,-1.251389,-1.251389 +-1.241709,-1.241709,-1.241709,-1.241709,-1.241709,-1.241709 +-1.232029,-1.232029,-1.232029,-1.232029,-1.232029,-1.232029 +-1.222349,-1.222349,-1.222349,-1.222349,-1.222349,-1.222349 +-1.212669,-1.212669,-1.212669,-1.212669,-1.212669,-1.212669 +-1.202989,-1.202989,-1.202989,-1.202989,-1.202989,-1.202989 +-1.193309,-1.193309,-1.193309,-1.193309,-1.193309,-1.193309 +-1.183629,-1.183629,-1.183629,-1.183629,-1.183629,-1.183629 +-1.173949,-1.173949,-1.173949,-1.173949,-1.173949,-1.173949 +-1.164269,-1.164269,-1.164269,-1.164269,-1.164269,-1.164269 +-1.154589,-1.154589,-1.154589,-1.154589,-1.154589,-1.154589 +-1.144909,-1.144909,-1.144909,-1.144909,-1.144909,-1.144909 +-1.135229,-1.135229,-1.135229,-1.135229,-1.135229,-1.135229 +-1.125549,-1.125549,-1.125549,-1.125549,-1.125549,-1.125549 +-1.115869,-1.115869,-1.115869,-1.115869,-1.115869,-1.115869 +-1.106189,-1.106189,-1.106189,-1.106189,-1.106189,-1.106189 +-1.096509,-1.096509,-1.096509,-1.096509,-1.096509,-1.096509 +-1.086829,-1.086829,-1.086829,-1.086829,-1.086829,-1.086829 +-1.077149,-1.077149,-1.077149,-1.077149,-1.077149,-1.077149 +-1.067469,-1.067469,-1.067469,-1.067469,-1.067469,-1.067469 +-1.057789,-1.057789,-1.057789,-1.057789,-1.057789,-1.057789 +-1.048109,-1.048109,-1.048109,-1.048109,-1.048109,-1.048109 +-1.038429,-1.038429,-1.038429,-1.038429,-1.038429,-1.038429 +-1.028749,-1.028749,-1.028749,-1.028749,-1.028749,-1.028749 +-1.019069,-1.019069,-1.019069,-1.019069,-1.019069,-1.019069 +-1.009389,-1.009389,-1.009389,-1.009389,-1.009389,-1.009389 +-0.999709,-0.999709,-0.999709,-0.999709,-0.999709,-0.999709 +-0.990029,-0.990029,-0.990029,-0.990029,-0.990029,-0.990029 +-0.980349,-0.980349,-0.980349,-0.980349,-0.980349,-0.980349 +-0.970669,-0.970669,-0.970669,-0.970669,-0.970669,-0.970669 +-0.960989,-0.960989,-0.960989,-0.960989,-0.960989,-0.960989 +-0.951309,-0.951309,-0.951309,-0.951309,-0.951309,-0.951309 +-0.941629,-0.941629,-0.941629,-0.941629,-0.941629,-0.941629 +-0.931949,-0.931949,-0.931949,-0.931949,-0.931949,-0.931949 +-0.922269,-0.922269,-0.922269,-0.922269,-0.922269,-0.922269 +-0.912589,-0.912589,-0.912589,-0.912589,-0.912589,-0.912589 +-0.902909,-0.902909,-0.902909,-0.902909,-0.902909,-0.902909 +-0.893229,-0.893229,-0.893229,-0.893229,-0.893229,-0.893229 +-0.883549,-0.883549,-0.883549,-0.883549,-0.883549,-0.883549 +-0.873869,-0.873869,-0.873869,-0.873869,-0.873869,-0.873869 +-0.864189,-0.864189,-0.864189,-0.864189,-0.864189,-0.864189 +-0.854509,-0.854509,-0.854509,-0.854509,-0.854509,-0.854509 +-0.844829,-0.844829,-0.844829,-0.844829,-0.844829,-0.844829 +-0.835149,-0.835149,-0.835149,-0.835149,-0.835149,-0.835149 +-0.825469,-0.825469,-0.825469,-0.825469,-0.825469,-0.825469 +-0.815789,-0.815789,-0.815789,-0.815789,-0.815789,-0.815789 +-0.806109,-0.806109,-0.806109,-0.806109,-0.806109,-0.806109 +-0.796429,-0.796429,-0.796429,-0.796429,-0.796429,-0.796429 +-0.786749,-0.786749,-0.786749,-0.786749,-0.786749,-0.786749 +-0.777069,-0.777069,-0.777069,-0.777069,-0.777069,-0.777069 +-0.767389,-0.767389,-0.767389,-0.767389,-0.767389,-0.767389 +-0.757709,-0.757709,-0.757709,-0.757709,-0.757709,-0.757709 +-0.748029,-0.748029,-0.748029,-0.748029,-0.748029,-0.748029 +-0.738349,-0.738349,-0.738349,-0.738349,-0.738349,-0.738349 +-0.728669,-0.728669,-0.728669,-0.728669,-0.728669,-0.728669 +-0.718989,-0.718989,-0.718989,-0.718989,-0.718989,-0.718989 +-0.709309,-0.709309,-0.709309,-0.709309,-0.709309,-0.709309 +-0.699629,-0.699629,-0.699629,-0.699629,-0.699629,-0.699629 +-0.689949,-0.689949,-0.689949,-0.689949,-0.689949,-0.689949 +-0.680269,-0.680269,-0.680269,-0.680269,-0.680269,-0.680269 +-0.670589,-0.670589,-0.670589,-0.670589,-0.670589,-0.670589 +-0.660909,-0.660909,-0.660909,-0.660909,-0.660909,-0.660909 +-0.651229,-0.651229,-0.651229,-0.651229,-0.651229,-0.651229 +-0.641549,-0.641549,-0.641549,-0.641549,-0.641549,-0.641549 +-0.631869,-0.631869,-0.631869,-0.631869,-0.631869,-0.631869 +-0.622189,-0.622189,-0.622189,-0.622189,-0.622189,-0.622189 +-0.612509,-0.612509,-0.612509,-0.612509,-0.612509,-0.612509 +-0.602829,-0.602829,-0.602829,-0.602829,-0.602829,-0.602829 +-0.593149,-0.593149,-0.593149,-0.593149,-0.593149,-0.593149 +-0.583469,-0.583469,-0.583469,-0.583469,-0.583469,-0.583469 +-0.573789,-0.573789,-0.573789,-0.573789,-0.573789,-0.573789 +-0.564109,-0.564109,-0.564109,-0.564109,-0.564109,-0.564109 +-0.554429,-0.554429,-0.554429,-0.554429,-0.554429,-0.554429 +-0.544749,-0.544749,-0.544749,-0.544749,-0.544749,-0.544749 +-0.535069,-0.535069,-0.535069,-0.535069,-0.535069,-0.535069 +-0.525389,-0.525389,-0.525389,-0.525389,-0.525389,-0.525389 +-0.515709,-0.515709,-0.515709,-0.515709,-0.515709,-0.515709 +-0.506029,-0.506029,-0.506029,-0.506029,-0.506029,-0.506029 +-0.496349,-0.496349,-0.496349,-0.496349,-0.496349,-0.496349 +-0.486669,-0.486669,-0.486669,-0.486669,-0.486669,-0.486669 +-0.476989,-0.476989,-0.476989,-0.476989,-0.476989,-0.476989 +-0.467309,-0.467309,-0.467309,-0.467309,-0.467309,-0.467309 +-0.457629,-0.457629,-0.457629,-0.457629,-0.457629,-0.457629 +-0.447949,-0.447949,-0.447949,-0.447949,-0.447949,-0.447949 +-0.438269,-0.438269,-0.438269,-0.438269,-0.438269,-0.438269 +-0.428589,-0.428589,-0.428589,-0.428589,-0.428589,-0.428589 +-0.418909,-0.418909,-0.418909,-0.418909,-0.418909,-0.418909 +-0.409229,-0.409229,-0.409229,-0.409229,-0.409229,-0.409229 +-0.399549,-0.399549,-0.399549,-0.399549,-0.399549,-0.399549 +-0.389869,-0.389869,-0.389869,-0.389869,-0.389869,-0.389869 +-0.380189,-0.380189,-0.380189,-0.380189,-0.380189,-0.380189 +-0.370509,-0.370509,-0.370509,-0.370509,-0.370509,-0.370509 +-0.360829,-0.360829,-0.360829,-0.360829,-0.360829,-0.360829 +-0.351149,-0.351149,-0.351149,-0.351149,-0.351149,-0.351149 +-0.341469,-0.341469,-0.341469,-0.341469,-0.341469,-0.341469 +-0.331789,-0.331789,-0.331789,-0.331789,-0.331789,-0.331789 +-0.322109,-0.322109,-0.322109,-0.322109,-0.322109,-0.322109 +-0.312429,-0.312429,-0.312429,-0.312429,-0.312429,-0.312429 +-0.302749,-0.302749,-0.302749,-0.302749,-0.302749,-0.302749 +-0.293069,-0.293069,-0.293069,-0.293069,-0.293069,-0.293069 +-0.283389,-0.283389,-0.283389,-0.283389,-0.283389,-0.283389 +-0.273709,-0.273709,-0.273709,-0.273709,-0.273709,-0.273709 +-0.264029,-0.264029,-0.264029,-0.264029,-0.264029,-0.264029 +-0.254349,-0.254349,-0.254349,-0.254349,-0.254349,-0.254349 +-0.244669,-0.244669,-0.244669,-0.244669,-0.244669,-0.244669 +-0.234989,-0.234989,-0.234989,-0.234989,-0.234989,-0.234989 +-0.225309,-0.225309,-0.225309,-0.225309,-0.225309,-0.225309 +-0.215629,-0.215629,-0.215629,-0.215629,-0.215629,-0.215629 +-0.205949,-0.205949,-0.205949,-0.205949,-0.205949,-0.205949 +-0.196271,-0.196271,-0.196271,-0.196271,-0.196271,-0.196271 +-0.186607,-0.186607,-0.186607,-0.186607,-0.186607,-0.186607 +-0.176982,-0.176982,-0.176982,-0.176982,-0.176982,-0.176982 +-0.167415,-0.167415,-0.167415,-0.167415,-0.167415,-0.167415 +-0.15793,-0.15793,-0.15793,-0.15793,-0.15793,-0.15793 +-0.148549,-0.148549,-0.148549,-0.148549,-0.148549,-0.148549 +-0.139292,-0.139292,-0.139292,-0.139292,-0.139292,-0.139292 +-0.130184,-0.130184,-0.130184,-0.130184,-0.130184,-0.130184 +-0.121244,-0.121244,-0.121244,-0.121244,-0.121244,-0.121244 +-0.112496,-0.112496,-0.112496,-0.112496,-0.112496,-0.112496 +-0.103962,-0.103962,-0.103962,-0.103962,-0.103962,-0.103962 +-0.095663,-0.095663,-0.095663,-0.095663,-0.095663,-0.095663 +-0.087621,-0.087621,-0.087621,-0.087621,-0.087621,-0.087621 +-0.079859,-0.079859,-0.079859,-0.079859,-0.079859,-0.079859 +-0.072398,-0.072398,-0.072398,-0.072398,-0.072398,-0.072398 +-0.06526,-0.06526,-0.06526,-0.06526,-0.06526,-0.06526 +-0.058468,-0.058468,-0.058468,-0.058468,-0.058468,-0.058468 +-0.052043,-0.052043,-0.052043,-0.052043,-0.052043,-0.052043 +-0.046008,-0.046008,-0.046008,-0.046008,-0.046008,-0.046008 +-0.040384,-0.040384,-0.040384,-0.040384,-0.040384,-0.040384 +-0.035194,-0.035194,-0.035194,-0.035194,-0.035194,-0.035194 +-0.030456,-0.030456,-0.030456,-0.030456,-0.030456,-0.030456 +-0.026163,-0.026163,-0.026163,-0.026163,-0.026163,-0.026163 +-0.022295,-0.022295,-0.022295,-0.022295,-0.022295,-0.022295 +-0.018827,-0.018827,-0.018827,-0.018827,-0.018827,-0.018827 +-0.015739,-0.015739,-0.015739,-0.015739,-0.015739,-0.015739 +-0.013009,-0.013009,-0.013009,-0.013009,-0.013009,-0.013009 +-0.010614,-0.010614,-0.010614,-0.010614,-0.010614,-0.010614 +-0.008533,-0.008533,-0.008533,-0.008533,-0.008533,-0.008533 +-0.006744,-0.006744,-0.006744,-0.006744,-0.006744,-0.006744 +-0.005223,-0.005223,-0.005223,-0.005223,-0.005223,-0.005223 +-0.003951,-0.003951,-0.003951,-0.003951,-0.003951,-0.003951 +-0.002904,-0.002904,-0.002904,-0.002904,-0.002904,-0.002904 +-0.00206,-0.00206,-0.00206,-0.00206,-0.00206,-0.00206 +-0.001398,-0.001398,-0.001398,-0.001398,-0.001398,-0.001398 +-0.000896,-0.000896,-0.000896,-0.000896,-0.000896,-0.000896 +-0.000531,-0.000531,-0.000531,-0.000531,-0.000531,-0.000531 +-0.000282,-0.000282,-0.000282,-0.000282,-0.000282,-0.000282 +-0.000126,-0.000126,-0.000126,-0.000126,-0.000126,-0.000126 +-0.000042,-0.000042,-0.000042,-0.000042,-0.000042,-0.000042 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/3.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/3.csv new file mode 100644 index 00000000..1f8f5911 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/3.csv @@ -0,0 +1,4708 @@ +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.00003,0.00003,0.00003,0.00003,0.00003,0.00003 +0.000101,0.000101,0.000101,0.000101,0.000101,0.000101 +0.00024,0.00024,0.00024,0.00024,0.00024,0.00024 +0.000469,0.000469,0.000469,0.000469,0.000469,0.000469 +0.00081,0.00081,0.00081,0.00081,0.00081,0.00081 +0.001286,0.001286,0.001286,0.001286,0.001286,0.001286 +0.00192,0.00192,0.00192,0.00192,0.00192,0.00192 +0.002734,0.002734,0.002734,0.002734,0.002734,0.002734 +0.00375,0.00375,0.00375,0.00375,0.00375,0.00375 +0.004991,0.004991,0.004991,0.004991,0.004991,0.004991 +0.00648,0.00648,0.00648,0.00648,0.00648,0.00648 +0.008239,0.008239,0.008239,0.008239,0.008239,0.008239 +0.01029,0.01029,0.01029,0.01029,0.01029,0.01029 +0.012656,0.012656,0.012656,0.012656,0.012656,0.012656 +0.01536,0.01536,0.01536,0.01536,0.01536,0.01536 +0.018424,0.018424,0.018424,0.018424,0.018424,0.018424 +0.02187,0.02187,0.02187,0.02187,0.02187,0.02187 +0.025721,0.025721,0.025721,0.025721,0.025721,0.025721 +0.03,0.03,0.03,0.03,0.03,0.03 +0.034729,0.034729,0.034729,0.034729,0.034729,0.034729 +0.039926,0.039926,0.039926,0.039926,0.039926,0.039926 +0.045583,0.045583,0.045583,0.045583,0.045583,0.045583 +0.051678,0.051678,0.051678,0.051678,0.051678,0.051678 +0.058186,0.058186,0.058186,0.058186,0.058186,0.058186 +0.065087,0.065087,0.065087,0.065087,0.065087,0.065087 +0.072358,0.072358,0.072358,0.072358,0.072358,0.072358 +0.079975,0.079975,0.079975,0.079975,0.079975,0.079975 +0.087918,0.087918,0.087918,0.087918,0.087918,0.087918 +0.096162,0.096162,0.096162,0.096162,0.096162,0.096162 +0.104686,0.104686,0.104686,0.104686,0.104686,0.104686 +0.113467,0.113467,0.113467,0.113467,0.113467,0.113467 +0.122482,0.122482,0.122482,0.122482,0.122482,0.122482 +0.13171,0.13171,0.13171,0.13171,0.13171,0.13171 +0.141127,0.141127,0.141127,0.141127,0.141127,0.141127 +0.150712,0.150712,0.150712,0.150712,0.150712,0.150712 +0.160441,0.160441,0.160441,0.160441,0.160441,0.160441 +0.170292,0.170292,0.170292,0.170292,0.170292,0.170292 +0.180242,0.180242,0.180242,0.180242,0.180242,0.180242 +0.19027,0.19027,0.19027,0.19027,0.19027,0.19027 +0.200352,0.200352,0.200352,0.200352,0.200352,0.200352 +0.210467,0.210467,0.210467,0.210467,0.210467,0.210467 +0.220591,0.220591,0.220591,0.220591,0.220591,0.220591 +0.230716,0.230716,0.230716,0.230716,0.230716,0.230716 +0.240841,0.240841,0.240841,0.240841,0.240841,0.240841 +0.250966,0.250966,0.250966,0.250966,0.250966,0.250966 +0.261091,0.261091,0.261091,0.261091,0.261091,0.261091 +0.271216,0.271216,0.271216,0.271216,0.271216,0.271216 +0.281341,0.281341,0.281341,0.281341,0.281341,0.281341 +0.291466,0.291466,0.291466,0.291466,0.291466,0.291466 +0.301591,0.301591,0.301591,0.301591,0.301591,0.301591 +0.311716,0.311716,0.311716,0.311716,0.311716,0.311716 +0.321841,0.321841,0.321841,0.321841,0.321841,0.321841 +0.331966,0.331966,0.331966,0.331966,0.331966,0.331966 +0.342091,0.342091,0.342091,0.342091,0.342091,0.342091 +0.352216,0.352216,0.352216,0.352216,0.352216,0.352216 +0.362341,0.362341,0.362341,0.362341,0.362341,0.362341 +0.372466,0.372466,0.372466,0.372466,0.372466,0.372466 +0.382591,0.382591,0.382591,0.382591,0.382591,0.382591 +0.392716,0.392716,0.392716,0.392716,0.392716,0.392716 +0.402841,0.402841,0.402841,0.402841,0.402841,0.402841 +0.412966,0.412966,0.412966,0.412966,0.412966,0.412966 +0.423091,0.423091,0.423091,0.423091,0.423091,0.423091 +0.433216,0.433216,0.433216,0.433216,0.433216,0.433216 +0.443341,0.443341,0.443341,0.443341,0.443341,0.443341 +0.453466,0.453466,0.453466,0.453466,0.453466,0.453466 +0.463591,0.463591,0.463591,0.463591,0.463591,0.463591 +0.473716,0.473716,0.473716,0.473716,0.473716,0.473716 +0.483841,0.483841,0.483841,0.483841,0.483841,0.483841 +0.493966,0.493966,0.493966,0.493966,0.493966,0.493966 +0.504091,0.504091,0.504091,0.504091,0.504091,0.504091 +0.514216,0.514216,0.514216,0.514216,0.514216,0.514216 +0.524341,0.524341,0.524341,0.524341,0.524341,0.524341 +0.534466,0.534466,0.534466,0.534466,0.534466,0.534466 +0.544591,0.544591,0.544591,0.544591,0.544591,0.544591 +0.554716,0.554716,0.554716,0.554716,0.554716,0.554716 +0.564841,0.564841,0.564841,0.564841,0.564841,0.564841 +0.574966,0.574966,0.574966,0.574966,0.574966,0.574966 +0.585091,0.585091,0.585091,0.585091,0.585091,0.585091 +0.595216,0.595216,0.595216,0.595216,0.595216,0.595216 +0.605341,0.605341,0.605341,0.605341,0.605341,0.605341 +0.615466,0.615466,0.615466,0.615466,0.615466,0.615466 +0.625591,0.625591,0.625591,0.625591,0.625591,0.625591 +0.635716,0.635716,0.635716,0.635716,0.635716,0.635716 +0.645841,0.645841,0.645841,0.645841,0.645841,0.645841 +0.655966,0.655966,0.655966,0.655966,0.655966,0.655966 +0.666091,0.666091,0.666091,0.666091,0.666091,0.666091 +0.676216,0.676216,0.676216,0.676216,0.676216,0.676216 +0.686341,0.686341,0.686341,0.686341,0.686341,0.686341 +0.696466,0.696466,0.696466,0.696466,0.696466,0.696466 +0.706591,0.706591,0.706591,0.706591,0.706591,0.706591 +0.716716,0.716716,0.716716,0.716716,0.716716,0.716716 +0.726841,0.726841,0.726841,0.726841,0.726841,0.726841 +0.736966,0.736966,0.736966,0.736966,0.736966,0.736966 +0.747091,0.747091,0.747091,0.747091,0.747091,0.747091 +0.757216,0.757216,0.757216,0.757216,0.757216,0.757216 +0.767341,0.767341,0.767341,0.767341,0.767341,0.767341 +0.777466,0.777466,0.777466,0.777466,0.777466,0.777466 +0.787591,0.787591,0.787591,0.787591,0.787591,0.787591 +0.797716,0.797716,0.797716,0.797716,0.797716,0.797716 +0.807841,0.807841,0.807841,0.807841,0.807841,0.807841 +0.817966,0.817966,0.817966,0.817966,0.817966,0.817966 +0.828091,0.828091,0.828091,0.828091,0.828091,0.828091 +0.838216,0.838216,0.838216,0.838216,0.838216,0.838216 +0.848341,0.848341,0.848341,0.848341,0.848341,0.848341 +0.858466,0.858466,0.858466,0.858466,0.858466,0.858466 +0.868591,0.868591,0.868591,0.868591,0.868591,0.868591 +0.878716,0.878716,0.878716,0.878716,0.878716,0.878716 +0.888841,0.888841,0.888841,0.888841,0.888841,0.888841 +0.898966,0.898966,0.898966,0.898966,0.898966,0.898966 +0.909091,0.909091,0.909091,0.909091,0.909091,0.909091 +0.919216,0.919216,0.919216,0.919216,0.919216,0.919216 +0.929341,0.929341,0.929341,0.929341,0.929341,0.929341 +0.939466,0.939466,0.939466,0.939466,0.939466,0.939466 +0.949591,0.949591,0.949591,0.949591,0.949591,0.949591 +0.959716,0.959716,0.959716,0.959716,0.959716,0.959716 +0.969841,0.969841,0.969841,0.969841,0.969841,0.969841 +0.979966,0.979966,0.979966,0.979966,0.979966,0.979966 +0.990091,0.990091,0.990091,0.990091,0.990091,0.990091 +1.000216,1.000216,1.000216,1.000216,1.000216,1.000216 +1.010341,1.010341,1.010341,1.010341,1.010341,1.010341 +1.020466,1.020466,1.020466,1.020466,1.020466,1.020466 +1.030591,1.030591,1.030591,1.030591,1.030591,1.030591 +1.040716,1.040716,1.040716,1.040716,1.040716,1.040716 +1.050841,1.050841,1.050841,1.050841,1.050841,1.050841 +1.060966,1.060966,1.060966,1.060966,1.060966,1.060966 +1.071091,1.071091,1.071091,1.071091,1.071091,1.071091 +1.081216,1.081216,1.081216,1.081216,1.081216,1.081216 +1.091341,1.091341,1.091341,1.091341,1.091341,1.091341 +1.101466,1.101466,1.101466,1.101466,1.101466,1.101466 +1.111591,1.111591,1.111591,1.111591,1.111591,1.111591 +1.121716,1.121716,1.121716,1.121716,1.121716,1.121716 +1.131841,1.131841,1.131841,1.131841,1.131841,1.131841 +1.141966,1.141966,1.141966,1.141966,1.141966,1.141966 +1.152091,1.152091,1.152091,1.152091,1.152091,1.152091 +1.162216,1.162216,1.162216,1.162216,1.162216,1.162216 +1.172341,1.172341,1.172341,1.172341,1.172341,1.172341 +1.182466,1.182466,1.182466,1.182466,1.182466,1.182466 +1.192591,1.192591,1.192591,1.192591,1.192591,1.192591 +1.202716,1.202716,1.202716,1.202716,1.202716,1.202716 +1.212841,1.212841,1.212841,1.212841,1.212841,1.212841 +1.222966,1.222966,1.222966,1.222966,1.222966,1.222966 +1.233091,1.233091,1.233091,1.233091,1.233091,1.233091 +1.243216,1.243216,1.243216,1.243216,1.243216,1.243216 +1.253341,1.253341,1.253341,1.253341,1.253341,1.253341 +1.263466,1.263466,1.263466,1.263466,1.263466,1.263466 +1.273591,1.273591,1.273591,1.273591,1.273591,1.273591 +1.283716,1.283716,1.283716,1.283716,1.283716,1.283716 +1.293841,1.293841,1.293841,1.293841,1.293841,1.293841 +1.303966,1.303966,1.303966,1.303966,1.303966,1.303966 +1.314091,1.314091,1.314091,1.314091,1.314091,1.314091 +1.324216,1.324216,1.324216,1.324216,1.324216,1.324216 +1.334341,1.334341,1.334341,1.334341,1.334341,1.334341 +1.344466,1.344466,1.344466,1.344466,1.344466,1.344466 +1.354591,1.354591,1.354591,1.354591,1.354591,1.354591 +1.364716,1.364716,1.364716,1.364716,1.364716,1.364716 +1.374841,1.374841,1.374841,1.374841,1.374841,1.374841 +1.384966,1.384966,1.384966,1.384966,1.384966,1.384966 +1.395091,1.395091,1.395091,1.395091,1.395091,1.395091 +1.405216,1.405216,1.405216,1.405216,1.405216,1.405216 +1.415341,1.415341,1.415341,1.415341,1.415341,1.415341 +1.425466,1.425466,1.425466,1.425466,1.425466,1.425466 +1.435591,1.435591,1.435591,1.435591,1.435591,1.435591 +1.445716,1.445716,1.445716,1.445716,1.445716,1.445716 +1.455841,1.455841,1.455841,1.455841,1.455841,1.455841 +1.465966,1.465966,1.465966,1.465966,1.465966,1.465966 +1.476091,1.476091,1.476091,1.476091,1.476091,1.476091 +1.486216,1.486216,1.486216,1.486216,1.486216,1.486216 +1.496341,1.496341,1.496341,1.496341,1.496341,1.496341 +1.506466,1.506466,1.506466,1.506466,1.506466,1.506466 +1.516591,1.516591,1.516591,1.516591,1.516591,1.516591 +1.526716,1.526716,1.526716,1.526716,1.526716,1.526716 +1.53684,1.53684,1.53684,1.53684,1.53684,1.53684 +1.54695,1.54695,1.54695,1.54695,1.54695,1.54695 +1.557024,1.557024,1.557024,1.557024,1.557024,1.557024 +1.567038,1.567038,1.567038,1.567038,1.567038,1.567038 +1.57697,1.57697,1.57697,1.57697,1.57697,1.57697 +1.586799,1.586799,1.586799,1.586799,1.586799,1.586799 +1.596501,1.596501,1.596501,1.596501,1.596501,1.596501 +1.606054,1.606054,1.606054,1.606054,1.606054,1.606054 +1.615436,1.615436,1.615436,1.615436,1.615436,1.615436 +1.624623,1.624623,1.624623,1.624623,1.624623,1.624623 +1.633594,1.633594,1.633594,1.633594,1.633594,1.633594 +1.642325,1.642325,1.642325,1.642325,1.642325,1.642325 +1.650796,1.650796,1.650796,1.650796,1.650796,1.650796 +1.658982,1.658982,1.658982,1.658982,1.658982,1.658982 +1.666861,1.666861,1.666861,1.666861,1.666861,1.666861 +1.674412,1.674412,1.674412,1.674412,1.674412,1.674412 +1.681611,1.681611,1.681611,1.681611,1.681611,1.681611 +1.688436,1.688436,1.688436,1.688436,1.688436,1.688436 +1.694864,1.694864,1.694864,1.694864,1.694864,1.694864 +1.700874,1.700874,1.700874,1.700874,1.700874,1.700874 +1.706441,1.706441,1.706441,1.706441,1.706441,1.706441 +1.711546,1.711546,1.711546,1.711546,1.711546,1.711546 +1.716183,1.716183,1.716183,1.716183,1.716183,1.716183 +1.720376,1.720376,1.720376,1.720376,1.720376,1.720376 +1.724145,1.724145,1.724145,1.724145,1.724145,1.724145 +1.727513,1.727513,1.727513,1.727513,1.727513,1.727513 +1.730504,1.730504,1.730504,1.730504,1.730504,1.730504 +1.733139,1.733139,1.733139,1.733139,1.733139,1.733139 +1.735441,1.735441,1.735441,1.735441,1.735441,1.735441 +1.737433,1.737433,1.737433,1.737433,1.737433,1.737433 +1.739136,1.739136,1.739136,1.739136,1.739136,1.739136 +1.740574,1.740574,1.740574,1.740574,1.740574,1.740574 +1.741769,1.741769,1.741769,1.741769,1.741769,1.741769 +1.742743,1.742743,1.742743,1.742743,1.742743,1.742743 +1.743519,1.743519,1.743519,1.743519,1.743519,1.743519 +1.74412,1.74412,1.74412,1.74412,1.74412,1.74412 +1.744568,1.744568,1.744568,1.744568,1.744568,1.744568 +1.744885,1.744885,1.744885,1.744885,1.744885,1.744885 +1.745094,1.745094,1.745094,1.745094,1.745094,1.745094 +1.745218,1.745218,1.745218,1.745218,1.745218,1.745218 +1.745278,1.745278,1.745278,1.745278,1.745278,1.745278 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.74527,1.74527,1.74527,1.74527,1.74527,1.74527 +1.745199,1.745199,1.745199,1.745199,1.745199,1.745199 +1.74506,1.74506,1.74506,1.74506,1.74506,1.74506 +1.744831,1.744831,1.744831,1.744831,1.744831,1.744831 +1.74449,1.74449,1.74449,1.74449,1.74449,1.74449 +1.744014,1.744014,1.744014,1.744014,1.744014,1.744014 +1.74338,1.74338,1.74338,1.74338,1.74338,1.74338 +1.742566,1.742566,1.742566,1.742566,1.742566,1.742566 +1.74155,1.74155,1.74155,1.74155,1.74155,1.74155 +1.740309,1.740309,1.740309,1.740309,1.740309,1.740309 +1.73882,1.73882,1.73882,1.73882,1.73882,1.73882 +1.737061,1.737061,1.737061,1.737061,1.737061,1.737061 +1.73501,1.73501,1.73501,1.73501,1.73501,1.73501 +1.732644,1.732644,1.732644,1.732644,1.732644,1.732644 +1.72994,1.72994,1.72994,1.72994,1.72994,1.72994 +1.726876,1.726876,1.726876,1.726876,1.726876,1.726876 +1.72343,1.72343,1.72343,1.72343,1.72343,1.72343 +1.719579,1.719579,1.719579,1.719579,1.719579,1.719579 +1.7153,1.7153,1.7153,1.7153,1.7153,1.7153 +1.710571,1.710571,1.710571,1.710571,1.710571,1.710571 +1.705374,1.705374,1.705374,1.705374,1.705374,1.705374 +1.699717,1.699717,1.699717,1.699717,1.699717,1.699717 +1.693622,1.693622,1.693622,1.693622,1.693622,1.693622 +1.687114,1.687114,1.687114,1.687114,1.687114,1.687114 +1.680213,1.680213,1.680213,1.680213,1.680213,1.680213 +1.672942,1.672942,1.672942,1.672942,1.672942,1.672942 +1.665325,1.665325,1.665325,1.665325,1.665325,1.665325 +1.657382,1.657382,1.657382,1.657382,1.657382,1.657382 +1.649138,1.649138,1.649138,1.649138,1.649138,1.649138 +1.640614,1.640614,1.640614,1.640614,1.640614,1.640614 +1.631833,1.631833,1.631833,1.631833,1.631833,1.631833 +1.622818,1.622818,1.622818,1.622818,1.622818,1.622818 +1.61359,1.61359,1.61359,1.61359,1.61359,1.61359 +1.604173,1.604173,1.604173,1.604173,1.604173,1.604173 +1.594588,1.594588,1.594588,1.594588,1.594588,1.594588 +1.584859,1.584859,1.584859,1.584859,1.584859,1.584859 +1.575008,1.575008,1.575008,1.575008,1.575008,1.575008 +1.565058,1.565058,1.565058,1.565058,1.565058,1.565058 +1.55503,1.55503,1.55503,1.55503,1.55503,1.55503 +1.544948,1.544948,1.544948,1.544948,1.544948,1.544948 +1.534833,1.534833,1.534833,1.534833,1.534833,1.534833 +1.524709,1.524709,1.524709,1.524709,1.524709,1.524709 +1.514584,1.514584,1.514584,1.514584,1.514584,1.514584 +1.504459,1.504459,1.504459,1.504459,1.504459,1.504459 +1.494334,1.494334,1.494334,1.494334,1.494334,1.494334 +1.484209,1.484209,1.484209,1.484209,1.484209,1.484209 +1.474084,1.474084,1.474084,1.474084,1.474084,1.474084 +1.463959,1.463959,1.463959,1.463959,1.463959,1.463959 +1.453834,1.453834,1.453834,1.453834,1.453834,1.453834 +1.443709,1.443709,1.443709,1.443709,1.443709,1.443709 +1.433584,1.433584,1.433584,1.433584,1.433584,1.433584 +1.423459,1.423459,1.423459,1.423459,1.423459,1.423459 +1.413334,1.413334,1.413334,1.413334,1.413334,1.413334 +1.403209,1.403209,1.403209,1.403209,1.403209,1.403209 +1.393084,1.393084,1.393084,1.393084,1.393084,1.393084 +1.382959,1.382959,1.382959,1.382959,1.382959,1.382959 +1.372834,1.372834,1.372834,1.372834,1.372834,1.372834 +1.362709,1.362709,1.362709,1.362709,1.362709,1.362709 +1.352584,1.352584,1.352584,1.352584,1.352584,1.352584 +1.342459,1.342459,1.342459,1.342459,1.342459,1.342459 +1.332334,1.332334,1.332334,1.332334,1.332334,1.332334 +1.322209,1.322209,1.322209,1.322209,1.322209,1.322209 +1.312084,1.312084,1.312084,1.312084,1.312084,1.312084 +1.301959,1.301959,1.301959,1.301959,1.301959,1.301959 +1.291834,1.291834,1.291834,1.291834,1.291834,1.291834 +1.281709,1.281709,1.281709,1.281709,1.281709,1.281709 +1.271584,1.271584,1.271584,1.271584,1.271584,1.271584 +1.261459,1.261459,1.261459,1.261459,1.261459,1.261459 +1.251334,1.251334,1.251334,1.251334,1.251334,1.251334 +1.241209,1.241209,1.241209,1.241209,1.241209,1.241209 +1.231084,1.231084,1.231084,1.231084,1.231084,1.231084 +1.220959,1.220959,1.220959,1.220959,1.220959,1.220959 +1.210834,1.210834,1.210834,1.210834,1.210834,1.210834 +1.200709,1.200709,1.200709,1.200709,1.200709,1.200709 +1.190584,1.190584,1.190584,1.190584,1.190584,1.190584 +1.180459,1.180459,1.180459,1.180459,1.180459,1.180459 +1.170334,1.170334,1.170334,1.170334,1.170334,1.170334 +1.160209,1.160209,1.160209,1.160209,1.160209,1.160209 +1.150084,1.150084,1.150084,1.150084,1.150084,1.150084 +1.139959,1.139959,1.139959,1.139959,1.139959,1.139959 +1.129834,1.129834,1.129834,1.129834,1.129834,1.129834 +1.119709,1.119709,1.119709,1.119709,1.119709,1.119709 +1.109584,1.109584,1.109584,1.109584,1.109584,1.109584 +1.099459,1.099459,1.099459,1.099459,1.099459,1.099459 +1.089334,1.089334,1.089334,1.089334,1.089334,1.089334 +1.079209,1.079209,1.079209,1.079209,1.079209,1.079209 +1.069084,1.069084,1.069084,1.069084,1.069084,1.069084 +1.058959,1.058959,1.058959,1.058959,1.058959,1.058959 +1.048834,1.048834,1.048834,1.048834,1.048834,1.048834 +1.038709,1.038709,1.038709,1.038709,1.038709,1.038709 +1.028584,1.028584,1.028584,1.028584,1.028584,1.028584 +1.018459,1.018459,1.018459,1.018459,1.018459,1.018459 +1.008334,1.008334,1.008334,1.008334,1.008334,1.008334 +0.998209,0.998209,0.998209,0.998209,0.998209,0.998209 +0.988084,0.988084,0.988084,0.988084,0.988084,0.988084 +0.977959,0.977959,0.977959,0.977959,0.977959,0.977959 +0.967834,0.967834,0.967834,0.967834,0.967834,0.967834 +0.957709,0.957709,0.957709,0.957709,0.957709,0.957709 +0.947584,0.947584,0.947584,0.947584,0.947584,0.947584 +0.937459,0.937459,0.937459,0.937459,0.937459,0.937459 +0.927334,0.927334,0.927334,0.927334,0.927334,0.927334 +0.917209,0.917209,0.917209,0.917209,0.917209,0.917209 +0.907084,0.907084,0.907084,0.907084,0.907084,0.907084 +0.896959,0.896959,0.896959,0.896959,0.896959,0.896959 +0.886834,0.886834,0.886834,0.886834,0.886834,0.886834 +0.876709,0.876709,0.876709,0.876709,0.876709,0.876709 +0.866584,0.866584,0.866584,0.866584,0.866584,0.866584 +0.856459,0.856459,0.856459,0.856459,0.856459,0.856459 +0.846334,0.846334,0.846334,0.846334,0.846334,0.846334 +0.836209,0.836209,0.836209,0.836209,0.836209,0.836209 +0.826084,0.826084,0.826084,0.826084,0.826084,0.826084 +0.815959,0.815959,0.815959,0.815959,0.815959,0.815959 +0.805834,0.805834,0.805834,0.805834,0.805834,0.805834 +0.795709,0.795709,0.795709,0.795709,0.795709,0.795709 +0.785584,0.785584,0.785584,0.785584,0.785584,0.785584 +0.775459,0.775459,0.775459,0.775459,0.775459,0.775459 +0.765334,0.765334,0.765334,0.765334,0.765334,0.765334 +0.755209,0.755209,0.755209,0.755209,0.755209,0.755209 +0.745084,0.745084,0.745084,0.745084,0.745084,0.745084 +0.734959,0.734959,0.734959,0.734959,0.734959,0.734959 +0.724834,0.724834,0.724834,0.724834,0.724834,0.724834 +0.714709,0.714709,0.714709,0.714709,0.714709,0.714709 +0.704584,0.704584,0.704584,0.704584,0.704584,0.704584 +0.694459,0.694459,0.694459,0.694459,0.694459,0.694459 +0.684334,0.684334,0.684334,0.684334,0.684334,0.684334 +0.674209,0.674209,0.674209,0.674209,0.674209,0.674209 +0.664084,0.664084,0.664084,0.664084,0.664084,0.664084 +0.653959,0.653959,0.653959,0.653959,0.653959,0.653959 +0.643834,0.643834,0.643834,0.643834,0.643834,0.643834 +0.633709,0.633709,0.633709,0.633709,0.633709,0.633709 +0.623584,0.623584,0.623584,0.623584,0.623584,0.623584 +0.613459,0.613459,0.613459,0.613459,0.613459,0.613459 +0.603334,0.603334,0.603334,0.603334,0.603334,0.603334 +0.593209,0.593209,0.593209,0.593209,0.593209,0.593209 +0.583084,0.583084,0.583084,0.583084,0.583084,0.583084 +0.572959,0.572959,0.572959,0.572959,0.572959,0.572959 +0.562834,0.562834,0.562834,0.562834,0.562834,0.562834 +0.552709,0.552709,0.552709,0.552709,0.552709,0.552709 +0.542584,0.542584,0.542584,0.542584,0.542584,0.542584 +0.532459,0.532459,0.532459,0.532459,0.532459,0.532459 +0.522334,0.522334,0.522334,0.522334,0.522334,0.522334 +0.512209,0.512209,0.512209,0.512209,0.512209,0.512209 +0.502084,0.502084,0.502084,0.502084,0.502084,0.502084 +0.491959,0.491959,0.491959,0.491959,0.491959,0.491959 +0.481834,0.481834,0.481834,0.481834,0.481834,0.481834 +0.471709,0.471709,0.471709,0.471709,0.471709,0.471709 +0.461584,0.461584,0.461584,0.461584,0.461584,0.461584 +0.451459,0.451459,0.451459,0.451459,0.451459,0.451459 +0.441334,0.441334,0.441334,0.441334,0.441334,0.441334 +0.431209,0.431209,0.431209,0.431209,0.431209,0.431209 +0.421084,0.421084,0.421084,0.421084,0.421084,0.421084 +0.410959,0.410959,0.410959,0.410959,0.410959,0.410959 +0.400834,0.400834,0.400834,0.400834,0.400834,0.400834 +0.390709,0.390709,0.390709,0.390709,0.390709,0.390709 +0.380584,0.380584,0.380584,0.380584,0.380584,0.380584 +0.370459,0.370459,0.370459,0.370459,0.370459,0.370459 +0.360334,0.360334,0.360334,0.360334,0.360334,0.360334 +0.350209,0.350209,0.350209,0.350209,0.350209,0.350209 +0.340084,0.340084,0.340084,0.340084,0.340084,0.340084 +0.329959,0.329959,0.329959,0.329959,0.329959,0.329959 +0.319834,0.319834,0.319834,0.319834,0.319834,0.319834 +0.309709,0.309709,0.309709,0.309709,0.309709,0.309709 +0.299584,0.299584,0.299584,0.299584,0.299584,0.299584 +0.289459,0.289459,0.289459,0.289459,0.289459,0.289459 +0.279334,0.279334,0.279334,0.279334,0.279334,0.279334 +0.269209,0.269209,0.269209,0.269209,0.269209,0.269209 +0.259084,0.259084,0.259084,0.259084,0.259084,0.259084 +0.248959,0.248959,0.248959,0.248959,0.248959,0.248959 +0.238834,0.238834,0.238834,0.238834,0.238834,0.238834 +0.228709,0.228709,0.228709,0.228709,0.228709,0.228709 +0.218584,0.218584,0.218584,0.218584,0.218584,0.218584 +0.20846,0.20846,0.20846,0.20846,0.20846,0.20846 +0.19835,0.19835,0.19835,0.19835,0.19835,0.19835 +0.188276,0.188276,0.188276,0.188276,0.188276,0.188276 +0.178262,0.178262,0.178262,0.178262,0.178262,0.178262 +0.16833,0.16833,0.16833,0.16833,0.16833,0.16833 +0.158501,0.158501,0.158501,0.158501,0.158501,0.158501 +0.148799,0.148799,0.148799,0.148799,0.148799,0.148799 +0.139246,0.139246,0.139246,0.139246,0.139246,0.139246 +0.129864,0.129864,0.129864,0.129864,0.129864,0.129864 +0.120677,0.120677,0.120677,0.120677,0.120677,0.120677 +0.111706,0.111706,0.111706,0.111706,0.111706,0.111706 +0.102975,0.102975,0.102975,0.102975,0.102975,0.102975 +0.094504,0.094504,0.094504,0.094504,0.094504,0.094504 +0.086318,0.086318,0.086318,0.086318,0.086318,0.086318 +0.078439,0.078439,0.078439,0.078439,0.078439,0.078439 +0.070888,0.070888,0.070888,0.070888,0.070888,0.070888 +0.063689,0.063689,0.063689,0.063689,0.063689,0.063689 +0.056864,0.056864,0.056864,0.056864,0.056864,0.056864 +0.050436,0.050436,0.050436,0.050436,0.050436,0.050436 +0.044426,0.044426,0.044426,0.044426,0.044426,0.044426 +0.038859,0.038859,0.038859,0.038859,0.038859,0.038859 +0.033754,0.033754,0.033754,0.033754,0.033754,0.033754 +0.029117,0.029117,0.029117,0.029117,0.029117,0.029117 +0.024924,0.024924,0.024924,0.024924,0.024924,0.024924 +0.021155,0.021155,0.021155,0.021155,0.021155,0.021155 +0.017787,0.017787,0.017787,0.017787,0.017787,0.017787 +0.014796,0.014796,0.014796,0.014796,0.014796,0.014796 +0.012161,0.012161,0.012161,0.012161,0.012161,0.012161 +0.009859,0.009859,0.009859,0.009859,0.009859,0.009859 +0.007867,0.007867,0.007867,0.007867,0.007867,0.007867 +0.006164,0.006164,0.006164,0.006164,0.006164,0.006164 +0.004726,0.004726,0.004726,0.004726,0.004726,0.004726 +0.003531,0.003531,0.003531,0.003531,0.003531,0.003531 +0.002557,0.002557,0.002557,0.002557,0.002557,0.002557 +0.001781,0.001781,0.001781,0.001781,0.001781,0.001781 +0.00118,0.00118,0.00118,0.00118,0.00118,0.00118 +0.000732,0.000732,0.000732,0.000732,0.000732,0.000732 +0.000415,0.000415,0.000415,0.000415,0.000415,0.000415 +0.000206,0.000206,0.000206,0.000206,0.000206,0.000206 +0.000082,0.000082,0.000082,0.000082,0.000082,0.000082 +0.000022,0.000022,0.000022,0.000022,0.000022,0.000022 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.00003,-0.00003,-0.00003,-0.00003,-0.00003,-0.00003 +-0.000101,-0.000101,-0.000101,-0.000101,-0.000101,-0.000101 +-0.00024,-0.00024,-0.00024,-0.00024,-0.00024,-0.00024 +-0.000469,-0.000469,-0.000469,-0.000469,-0.000469,-0.000469 +-0.00081,-0.00081,-0.00081,-0.00081,-0.00081,-0.00081 +-0.001286,-0.001286,-0.001286,-0.001286,-0.001286,-0.001286 +-0.00192,-0.00192,-0.00192,-0.00192,-0.00192,-0.00192 +-0.002734,-0.002734,-0.002734,-0.002734,-0.002734,-0.002734 +-0.00375,-0.00375,-0.00375,-0.00375,-0.00375,-0.00375 +-0.004991,-0.004991,-0.004991,-0.004991,-0.004991,-0.004991 +-0.00648,-0.00648,-0.00648,-0.00648,-0.00648,-0.00648 +-0.008239,-0.008239,-0.008239,-0.008239,-0.008239,-0.008239 +-0.01029,-0.01029,-0.01029,-0.01029,-0.01029,-0.01029 +-0.012656,-0.012656,-0.012656,-0.012656,-0.012656,-0.012656 +-0.01536,-0.01536,-0.01536,-0.01536,-0.01536,-0.01536 +-0.018424,-0.018424,-0.018424,-0.018424,-0.018424,-0.018424 +-0.02187,-0.02187,-0.02187,-0.02187,-0.02187,-0.02187 +-0.025721,-0.025721,-0.025721,-0.025721,-0.025721,-0.025721 +-0.03,-0.03,-0.03,-0.03,-0.03,-0.03 +-0.034729,-0.034729,-0.034729,-0.034729,-0.034729,-0.034729 +-0.039926,-0.039926,-0.039926,-0.039926,-0.039926,-0.039926 +-0.045583,-0.045583,-0.045583,-0.045583,-0.045583,-0.045583 +-0.051678,-0.051678,-0.051678,-0.051678,-0.051678,-0.051678 +-0.058186,-0.058186,-0.058186,-0.058186,-0.058186,-0.058186 +-0.065087,-0.065087,-0.065087,-0.065087,-0.065087,-0.065087 +-0.072358,-0.072358,-0.072358,-0.072358,-0.072358,-0.072358 +-0.079975,-0.079975,-0.079975,-0.079975,-0.079975,-0.079975 +-0.087918,-0.087918,-0.087918,-0.087918,-0.087918,-0.087918 +-0.096162,-0.096162,-0.096162,-0.096162,-0.096162,-0.096162 +-0.104686,-0.104686,-0.104686,-0.104686,-0.104686,-0.104686 +-0.113467,-0.113467,-0.113467,-0.113467,-0.113467,-0.113467 +-0.122482,-0.122482,-0.122482,-0.122482,-0.122482,-0.122482 +-0.13171,-0.13171,-0.13171,-0.13171,-0.13171,-0.13171 +-0.141127,-0.141127,-0.141127,-0.141127,-0.141127,-0.141127 +-0.150712,-0.150712,-0.150712,-0.150712,-0.150712,-0.150712 +-0.160441,-0.160441,-0.160441,-0.160441,-0.160441,-0.160441 +-0.170292,-0.170292,-0.170292,-0.170292,-0.170292,-0.170292 +-0.180242,-0.180242,-0.180242,-0.180242,-0.180242,-0.180242 +-0.19027,-0.19027,-0.19027,-0.19027,-0.19027,-0.19027 +-0.200352,-0.200352,-0.200352,-0.200352,-0.200352,-0.200352 +-0.210467,-0.210467,-0.210467,-0.210467,-0.210467,-0.210467 +-0.220591,-0.220591,-0.220591,-0.220591,-0.220591,-0.220591 +-0.230716,-0.230716,-0.230716,-0.230716,-0.230716,-0.230716 +-0.240841,-0.240841,-0.240841,-0.240841,-0.240841,-0.240841 +-0.250966,-0.250966,-0.250966,-0.250966,-0.250966,-0.250966 +-0.261091,-0.261091,-0.261091,-0.261091,-0.261091,-0.261091 +-0.271216,-0.271216,-0.271216,-0.271216,-0.271216,-0.271216 +-0.281341,-0.281341,-0.281341,-0.281341,-0.281341,-0.281341 +-0.291466,-0.291466,-0.291466,-0.291466,-0.291466,-0.291466 +-0.301591,-0.301591,-0.301591,-0.301591,-0.301591,-0.301591 +-0.311716,-0.311716,-0.311716,-0.311716,-0.311716,-0.311716 +-0.321841,-0.321841,-0.321841,-0.321841,-0.321841,-0.321841 +-0.331966,-0.331966,-0.331966,-0.331966,-0.331966,-0.331966 +-0.342091,-0.342091,-0.342091,-0.342091,-0.342091,-0.342091 +-0.352216,-0.352216,-0.352216,-0.352216,-0.352216,-0.352216 +-0.362341,-0.362341,-0.362341,-0.362341,-0.362341,-0.362341 +-0.372466,-0.372466,-0.372466,-0.372466,-0.372466,-0.372466 +-0.382591,-0.382591,-0.382591,-0.382591,-0.382591,-0.382591 +-0.392716,-0.392716,-0.392716,-0.392716,-0.392716,-0.392716 +-0.402841,-0.402841,-0.402841,-0.402841,-0.402841,-0.402841 +-0.412966,-0.412966,-0.412966,-0.412966,-0.412966,-0.412966 +-0.423091,-0.423091,-0.423091,-0.423091,-0.423091,-0.423091 +-0.433216,-0.433216,-0.433216,-0.433216,-0.433216,-0.433216 +-0.443341,-0.443341,-0.443341,-0.443341,-0.443341,-0.443341 +-0.453466,-0.453466,-0.453466,-0.453466,-0.453466,-0.453466 +-0.463591,-0.463591,-0.463591,-0.463591,-0.463591,-0.463591 +-0.473716,-0.473716,-0.473716,-0.473716,-0.473716,-0.473716 +-0.483841,-0.483841,-0.483841,-0.483841,-0.483841,-0.483841 +-0.493966,-0.493966,-0.493966,-0.493966,-0.493966,-0.493966 +-0.504091,-0.504091,-0.504091,-0.504091,-0.504091,-0.504091 +-0.514216,-0.514216,-0.514216,-0.514216,-0.514216,-0.514216 +-0.524341,-0.524341,-0.524341,-0.524341,-0.524341,-0.524341 +-0.534466,-0.534466,-0.534466,-0.534466,-0.534466,-0.534466 +-0.544591,-0.544591,-0.544591,-0.544591,-0.544591,-0.544591 +-0.554716,-0.554716,-0.554716,-0.554716,-0.554716,-0.554716 +-0.564841,-0.564841,-0.564841,-0.564841,-0.564841,-0.564841 +-0.574966,-0.574966,-0.574966,-0.574966,-0.574966,-0.574966 +-0.585091,-0.585091,-0.585091,-0.585091,-0.585091,-0.585091 +-0.595216,-0.595216,-0.595216,-0.595216,-0.595216,-0.595216 +-0.605341,-0.605341,-0.605341,-0.605341,-0.605341,-0.605341 +-0.615466,-0.615466,-0.615466,-0.615466,-0.615466,-0.615466 +-0.625591,-0.625591,-0.625591,-0.625591,-0.625591,-0.625591 +-0.635716,-0.635716,-0.635716,-0.635716,-0.635716,-0.635716 +-0.645841,-0.645841,-0.645841,-0.645841,-0.645841,-0.645841 +-0.655966,-0.655966,-0.655966,-0.655966,-0.655966,-0.655966 +-0.666091,-0.666091,-0.666091,-0.666091,-0.666091,-0.666091 +-0.676216,-0.676216,-0.676216,-0.676216,-0.676216,-0.676216 +-0.686341,-0.686341,-0.686341,-0.686341,-0.686341,-0.686341 +-0.696466,-0.696466,-0.696466,-0.696466,-0.696466,-0.696466 +-0.706591,-0.706591,-0.706591,-0.706591,-0.706591,-0.706591 +-0.716716,-0.716716,-0.716716,-0.716716,-0.716716,-0.716716 +-0.726841,-0.726841,-0.726841,-0.726841,-0.726841,-0.726841 +-0.736966,-0.736966,-0.736966,-0.736966,-0.736966,-0.736966 +-0.747091,-0.747091,-0.747091,-0.747091,-0.747091,-0.747091 +-0.757216,-0.757216,-0.757216,-0.757216,-0.757216,-0.757216 +-0.767341,-0.767341,-0.767341,-0.767341,-0.767341,-0.767341 +-0.777466,-0.777466,-0.777466,-0.777466,-0.777466,-0.777466 +-0.787591,-0.787591,-0.787591,-0.787591,-0.787591,-0.787591 +-0.797716,-0.797716,-0.797716,-0.797716,-0.797716,-0.797716 +-0.807841,-0.807841,-0.807841,-0.807841,-0.807841,-0.807841 +-0.817966,-0.817966,-0.817966,-0.817966,-0.817966,-0.817966 +-0.828091,-0.828091,-0.828091,-0.828091,-0.828091,-0.828091 +-0.838216,-0.838216,-0.838216,-0.838216,-0.838216,-0.838216 +-0.848341,-0.848341,-0.848341,-0.848341,-0.848341,-0.848341 +-0.858466,-0.858466,-0.858466,-0.858466,-0.858466,-0.858466 +-0.868591,-0.868591,-0.868591,-0.868591,-0.868591,-0.868591 +-0.878716,-0.878716,-0.878716,-0.878716,-0.878716,-0.878716 +-0.888841,-0.888841,-0.888841,-0.888841,-0.888841,-0.888841 +-0.898966,-0.898966,-0.898966,-0.898966,-0.898966,-0.898966 +-0.909091,-0.909091,-0.909091,-0.909091,-0.909091,-0.909091 +-0.919216,-0.919216,-0.919216,-0.919216,-0.919216,-0.919216 +-0.929341,-0.929341,-0.929341,-0.929341,-0.929341,-0.929341 +-0.939466,-0.939466,-0.939466,-0.939466,-0.939466,-0.939466 +-0.949591,-0.949591,-0.949591,-0.949591,-0.949591,-0.949591 +-0.959716,-0.959716,-0.959716,-0.959716,-0.959716,-0.959716 +-0.969841,-0.969841,-0.969841,-0.969841,-0.969841,-0.969841 +-0.979966,-0.979966,-0.979966,-0.979966,-0.979966,-0.979966 +-0.990091,-0.990091,-0.990091,-0.990091,-0.990091,-0.990091 +-1.000216,-1.000216,-1.000216,-1.000216,-1.000216,-1.000216 +-1.010341,-1.010341,-1.010341,-1.010341,-1.010341,-1.010341 +-1.020466,-1.020466,-1.020466,-1.020466,-1.020466,-1.020466 +-1.030591,-1.030591,-1.030591,-1.030591,-1.030591,-1.030591 +-1.040716,-1.040716,-1.040716,-1.040716,-1.040716,-1.040716 +-1.050841,-1.050841,-1.050841,-1.050841,-1.050841,-1.050841 +-1.060966,-1.060966,-1.060966,-1.060966,-1.060966,-1.060966 +-1.071091,-1.071091,-1.071091,-1.071091,-1.071091,-1.071091 +-1.081216,-1.081216,-1.081216,-1.081216,-1.081216,-1.081216 +-1.091341,-1.091341,-1.091341,-1.091341,-1.091341,-1.091341 +-1.101466,-1.101466,-1.101466,-1.101466,-1.101466,-1.101466 +-1.111591,-1.111591,-1.111591,-1.111591,-1.111591,-1.111591 +-1.121716,-1.121716,-1.121716,-1.121716,-1.121716,-1.121716 +-1.131841,-1.131841,-1.131841,-1.131841,-1.131841,-1.131841 +-1.141966,-1.141966,-1.141966,-1.141966,-1.141966,-1.141966 +-1.152091,-1.152091,-1.152091,-1.152091,-1.152091,-1.152091 +-1.162216,-1.162216,-1.162216,-1.162216,-1.162216,-1.162216 +-1.172341,-1.172341,-1.172341,-1.172341,-1.172341,-1.172341 +-1.182466,-1.182466,-1.182466,-1.182466,-1.182466,-1.182466 +-1.192591,-1.192591,-1.192591,-1.192591,-1.192591,-1.192591 +-1.202716,-1.202716,-1.202716,-1.202716,-1.202716,-1.202716 +-1.212841,-1.212841,-1.212841,-1.212841,-1.212841,-1.212841 +-1.222966,-1.222966,-1.222966,-1.222966,-1.222966,-1.222966 +-1.233091,-1.233091,-1.233091,-1.233091,-1.233091,-1.233091 +-1.243216,-1.243216,-1.243216,-1.243216,-1.243216,-1.243216 +-1.253341,-1.253341,-1.253341,-1.253341,-1.253341,-1.253341 +-1.263466,-1.263466,-1.263466,-1.263466,-1.263466,-1.263466 +-1.273591,-1.273591,-1.273591,-1.273591,-1.273591,-1.273591 +-1.283716,-1.283716,-1.283716,-1.283716,-1.283716,-1.283716 +-1.293841,-1.293841,-1.293841,-1.293841,-1.293841,-1.293841 +-1.303966,-1.303966,-1.303966,-1.303966,-1.303966,-1.303966 +-1.314091,-1.314091,-1.314091,-1.314091,-1.314091,-1.314091 +-1.324216,-1.324216,-1.324216,-1.324216,-1.324216,-1.324216 +-1.334341,-1.334341,-1.334341,-1.334341,-1.334341,-1.334341 +-1.344466,-1.344466,-1.344466,-1.344466,-1.344466,-1.344466 +-1.354591,-1.354591,-1.354591,-1.354591,-1.354591,-1.354591 +-1.364716,-1.364716,-1.364716,-1.364716,-1.364716,-1.364716 +-1.374841,-1.374841,-1.374841,-1.374841,-1.374841,-1.374841 +-1.384966,-1.384966,-1.384966,-1.384966,-1.384966,-1.384966 +-1.395091,-1.395091,-1.395091,-1.395091,-1.395091,-1.395091 +-1.405216,-1.405216,-1.405216,-1.405216,-1.405216,-1.405216 +-1.415341,-1.415341,-1.415341,-1.415341,-1.415341,-1.415341 +-1.425466,-1.425466,-1.425466,-1.425466,-1.425466,-1.425466 +-1.435591,-1.435591,-1.435591,-1.435591,-1.435591,-1.435591 +-1.445716,-1.445716,-1.445716,-1.445716,-1.445716,-1.445716 +-1.455841,-1.455841,-1.455841,-1.455841,-1.455841,-1.455841 +-1.465966,-1.465966,-1.465966,-1.465966,-1.465966,-1.465966 +-1.476091,-1.476091,-1.476091,-1.476091,-1.476091,-1.476091 +-1.486216,-1.486216,-1.486216,-1.486216,-1.486216,-1.486216 +-1.496341,-1.496341,-1.496341,-1.496341,-1.496341,-1.496341 +-1.506466,-1.506466,-1.506466,-1.506466,-1.506466,-1.506466 +-1.516591,-1.516591,-1.516591,-1.516591,-1.516591,-1.516591 +-1.526716,-1.526716,-1.526716,-1.526716,-1.526716,-1.526716 +-1.53684,-1.53684,-1.53684,-1.53684,-1.53684,-1.53684 +-1.54695,-1.54695,-1.54695,-1.54695,-1.54695,-1.54695 +-1.557024,-1.557024,-1.557024,-1.557024,-1.557024,-1.557024 +-1.567038,-1.567038,-1.567038,-1.567038,-1.567038,-1.567038 +-1.57697,-1.57697,-1.57697,-1.57697,-1.57697,-1.57697 +-1.586799,-1.586799,-1.586799,-1.586799,-1.586799,-1.586799 +-1.596501,-1.596501,-1.596501,-1.596501,-1.596501,-1.596501 +-1.606054,-1.606054,-1.606054,-1.606054,-1.606054,-1.606054 +-1.615436,-1.615436,-1.615436,-1.615436,-1.615436,-1.615436 +-1.624623,-1.624623,-1.624623,-1.624623,-1.624623,-1.624623 +-1.633594,-1.633594,-1.633594,-1.633594,-1.633594,-1.633594 +-1.642325,-1.642325,-1.642325,-1.642325,-1.642325,-1.642325 +-1.650796,-1.650796,-1.650796,-1.650796,-1.650796,-1.650796 +-1.658982,-1.658982,-1.658982,-1.658982,-1.658982,-1.658982 +-1.666861,-1.666861,-1.666861,-1.666861,-1.666861,-1.666861 +-1.674412,-1.674412,-1.674412,-1.674412,-1.674412,-1.674412 +-1.681611,-1.681611,-1.681611,-1.681611,-1.681611,-1.681611 +-1.688436,-1.688436,-1.688436,-1.688436,-1.688436,-1.688436 +-1.694864,-1.694864,-1.694864,-1.694864,-1.694864,-1.694864 +-1.700874,-1.700874,-1.700874,-1.700874,-1.700874,-1.700874 +-1.706441,-1.706441,-1.706441,-1.706441,-1.706441,-1.706441 +-1.711546,-1.711546,-1.711546,-1.711546,-1.711546,-1.711546 +-1.716183,-1.716183,-1.716183,-1.716183,-1.716183,-1.716183 +-1.720376,-1.720376,-1.720376,-1.720376,-1.720376,-1.720376 +-1.724145,-1.724145,-1.724145,-1.724145,-1.724145,-1.724145 +-1.727513,-1.727513,-1.727513,-1.727513,-1.727513,-1.727513 +-1.730504,-1.730504,-1.730504,-1.730504,-1.730504,-1.730504 +-1.733139,-1.733139,-1.733139,-1.733139,-1.733139,-1.733139 +-1.735441,-1.735441,-1.735441,-1.735441,-1.735441,-1.735441 +-1.737433,-1.737433,-1.737433,-1.737433,-1.737433,-1.737433 +-1.739136,-1.739136,-1.739136,-1.739136,-1.739136,-1.739136 +-1.740574,-1.740574,-1.740574,-1.740574,-1.740574,-1.740574 +-1.741769,-1.741769,-1.741769,-1.741769,-1.741769,-1.741769 +-1.742743,-1.742743,-1.742743,-1.742743,-1.742743,-1.742743 +-1.743519,-1.743519,-1.743519,-1.743519,-1.743519,-1.743519 +-1.74412,-1.74412,-1.74412,-1.74412,-1.74412,-1.74412 +-1.744568,-1.744568,-1.744568,-1.744568,-1.744568,-1.744568 +-1.744885,-1.744885,-1.744885,-1.744885,-1.744885,-1.744885 +-1.745094,-1.745094,-1.745094,-1.745094,-1.745094,-1.745094 +-1.745218,-1.745218,-1.745218,-1.745218,-1.745218,-1.745218 +-1.745278,-1.745278,-1.745278,-1.745278,-1.745278,-1.745278 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.74527,-1.74527,-1.74527,-1.74527,-1.74527,-1.74527 +-1.745199,-1.745199,-1.745199,-1.745199,-1.745199,-1.745199 +-1.74506,-1.74506,-1.74506,-1.74506,-1.74506,-1.74506 +-1.744831,-1.744831,-1.744831,-1.744831,-1.744831,-1.744831 +-1.74449,-1.74449,-1.74449,-1.74449,-1.74449,-1.74449 +-1.744014,-1.744014,-1.744014,-1.744014,-1.744014,-1.744014 +-1.74338,-1.74338,-1.74338,-1.74338,-1.74338,-1.74338 +-1.742566,-1.742566,-1.742566,-1.742566,-1.742566,-1.742566 +-1.74155,-1.74155,-1.74155,-1.74155,-1.74155,-1.74155 +-1.740309,-1.740309,-1.740309,-1.740309,-1.740309,-1.740309 +-1.73882,-1.73882,-1.73882,-1.73882,-1.73882,-1.73882 +-1.737061,-1.737061,-1.737061,-1.737061,-1.737061,-1.737061 +-1.73501,-1.73501,-1.73501,-1.73501,-1.73501,-1.73501 +-1.732644,-1.732644,-1.732644,-1.732644,-1.732644,-1.732644 +-1.72994,-1.72994,-1.72994,-1.72994,-1.72994,-1.72994 +-1.726876,-1.726876,-1.726876,-1.726876,-1.726876,-1.726876 +-1.72343,-1.72343,-1.72343,-1.72343,-1.72343,-1.72343 +-1.719579,-1.719579,-1.719579,-1.719579,-1.719579,-1.719579 +-1.7153,-1.7153,-1.7153,-1.7153,-1.7153,-1.7153 +-1.710571,-1.710571,-1.710571,-1.710571,-1.710571,-1.710571 +-1.705374,-1.705374,-1.705374,-1.705374,-1.705374,-1.705374 +-1.699717,-1.699717,-1.699717,-1.699717,-1.699717,-1.699717 +-1.693622,-1.693622,-1.693622,-1.693622,-1.693622,-1.693622 +-1.687114,-1.687114,-1.687114,-1.687114,-1.687114,-1.687114 +-1.680213,-1.680213,-1.680213,-1.680213,-1.680213,-1.680213 +-1.672942,-1.672942,-1.672942,-1.672942,-1.672942,-1.672942 +-1.665325,-1.665325,-1.665325,-1.665325,-1.665325,-1.665325 +-1.657382,-1.657382,-1.657382,-1.657382,-1.657382,-1.657382 +-1.649138,-1.649138,-1.649138,-1.649138,-1.649138,-1.649138 +-1.640614,-1.640614,-1.640614,-1.640614,-1.640614,-1.640614 +-1.631833,-1.631833,-1.631833,-1.631833,-1.631833,-1.631833 +-1.622818,-1.622818,-1.622818,-1.622818,-1.622818,-1.622818 +-1.61359,-1.61359,-1.61359,-1.61359,-1.61359,-1.61359 +-1.604173,-1.604173,-1.604173,-1.604173,-1.604173,-1.604173 +-1.594588,-1.594588,-1.594588,-1.594588,-1.594588,-1.594588 +-1.584859,-1.584859,-1.584859,-1.584859,-1.584859,-1.584859 +-1.575008,-1.575008,-1.575008,-1.575008,-1.575008,-1.575008 +-1.565058,-1.565058,-1.565058,-1.565058,-1.565058,-1.565058 +-1.55503,-1.55503,-1.55503,-1.55503,-1.55503,-1.55503 +-1.544948,-1.544948,-1.544948,-1.544948,-1.544948,-1.544948 +-1.534833,-1.534833,-1.534833,-1.534833,-1.534833,-1.534833 +-1.524709,-1.524709,-1.524709,-1.524709,-1.524709,-1.524709 +-1.514584,-1.514584,-1.514584,-1.514584,-1.514584,-1.514584 +-1.504459,-1.504459,-1.504459,-1.504459,-1.504459,-1.504459 +-1.494334,-1.494334,-1.494334,-1.494334,-1.494334,-1.494334 +-1.484209,-1.484209,-1.484209,-1.484209,-1.484209,-1.484209 +-1.474084,-1.474084,-1.474084,-1.474084,-1.474084,-1.474084 +-1.463959,-1.463959,-1.463959,-1.463959,-1.463959,-1.463959 +-1.453834,-1.453834,-1.453834,-1.453834,-1.453834,-1.453834 +-1.443709,-1.443709,-1.443709,-1.443709,-1.443709,-1.443709 +-1.433584,-1.433584,-1.433584,-1.433584,-1.433584,-1.433584 +-1.423459,-1.423459,-1.423459,-1.423459,-1.423459,-1.423459 +-1.413334,-1.413334,-1.413334,-1.413334,-1.413334,-1.413334 +-1.403209,-1.403209,-1.403209,-1.403209,-1.403209,-1.403209 +-1.393084,-1.393084,-1.393084,-1.393084,-1.393084,-1.393084 +-1.382959,-1.382959,-1.382959,-1.382959,-1.382959,-1.382959 +-1.372834,-1.372834,-1.372834,-1.372834,-1.372834,-1.372834 +-1.362709,-1.362709,-1.362709,-1.362709,-1.362709,-1.362709 +-1.352584,-1.352584,-1.352584,-1.352584,-1.352584,-1.352584 +-1.342459,-1.342459,-1.342459,-1.342459,-1.342459,-1.342459 +-1.332334,-1.332334,-1.332334,-1.332334,-1.332334,-1.332334 +-1.322209,-1.322209,-1.322209,-1.322209,-1.322209,-1.322209 +-1.312084,-1.312084,-1.312084,-1.312084,-1.312084,-1.312084 +-1.301959,-1.301959,-1.301959,-1.301959,-1.301959,-1.301959 +-1.291834,-1.291834,-1.291834,-1.291834,-1.291834,-1.291834 +-1.281709,-1.281709,-1.281709,-1.281709,-1.281709,-1.281709 +-1.271584,-1.271584,-1.271584,-1.271584,-1.271584,-1.271584 +-1.261459,-1.261459,-1.261459,-1.261459,-1.261459,-1.261459 +-1.251334,-1.251334,-1.251334,-1.251334,-1.251334,-1.251334 +-1.241209,-1.241209,-1.241209,-1.241209,-1.241209,-1.241209 +-1.231084,-1.231084,-1.231084,-1.231084,-1.231084,-1.231084 +-1.220959,-1.220959,-1.220959,-1.220959,-1.220959,-1.220959 +-1.210834,-1.210834,-1.210834,-1.210834,-1.210834,-1.210834 +-1.200709,-1.200709,-1.200709,-1.200709,-1.200709,-1.200709 +-1.190584,-1.190584,-1.190584,-1.190584,-1.190584,-1.190584 +-1.180459,-1.180459,-1.180459,-1.180459,-1.180459,-1.180459 +-1.170334,-1.170334,-1.170334,-1.170334,-1.170334,-1.170334 +-1.160209,-1.160209,-1.160209,-1.160209,-1.160209,-1.160209 +-1.150084,-1.150084,-1.150084,-1.150084,-1.150084,-1.150084 +-1.139959,-1.139959,-1.139959,-1.139959,-1.139959,-1.139959 +-1.129834,-1.129834,-1.129834,-1.129834,-1.129834,-1.129834 +-1.119709,-1.119709,-1.119709,-1.119709,-1.119709,-1.119709 +-1.109584,-1.109584,-1.109584,-1.109584,-1.109584,-1.109584 +-1.099459,-1.099459,-1.099459,-1.099459,-1.099459,-1.099459 +-1.089334,-1.089334,-1.089334,-1.089334,-1.089334,-1.089334 +-1.079209,-1.079209,-1.079209,-1.079209,-1.079209,-1.079209 +-1.069084,-1.069084,-1.069084,-1.069084,-1.069084,-1.069084 +-1.058959,-1.058959,-1.058959,-1.058959,-1.058959,-1.058959 +-1.048834,-1.048834,-1.048834,-1.048834,-1.048834,-1.048834 +-1.038709,-1.038709,-1.038709,-1.038709,-1.038709,-1.038709 +-1.028584,-1.028584,-1.028584,-1.028584,-1.028584,-1.028584 +-1.018459,-1.018459,-1.018459,-1.018459,-1.018459,-1.018459 +-1.008334,-1.008334,-1.008334,-1.008334,-1.008334,-1.008334 +-0.998209,-0.998209,-0.998209,-0.998209,-0.998209,-0.998209 +-0.988084,-0.988084,-0.988084,-0.988084,-0.988084,-0.988084 +-0.977959,-0.977959,-0.977959,-0.977959,-0.977959,-0.977959 +-0.967834,-0.967834,-0.967834,-0.967834,-0.967834,-0.967834 +-0.957709,-0.957709,-0.957709,-0.957709,-0.957709,-0.957709 +-0.947584,-0.947584,-0.947584,-0.947584,-0.947584,-0.947584 +-0.937459,-0.937459,-0.937459,-0.937459,-0.937459,-0.937459 +-0.927334,-0.927334,-0.927334,-0.927334,-0.927334,-0.927334 +-0.917209,-0.917209,-0.917209,-0.917209,-0.917209,-0.917209 +-0.907084,-0.907084,-0.907084,-0.907084,-0.907084,-0.907084 +-0.896959,-0.896959,-0.896959,-0.896959,-0.896959,-0.896959 +-0.886834,-0.886834,-0.886834,-0.886834,-0.886834,-0.886834 +-0.876709,-0.876709,-0.876709,-0.876709,-0.876709,-0.876709 +-0.866584,-0.866584,-0.866584,-0.866584,-0.866584,-0.866584 +-0.856459,-0.856459,-0.856459,-0.856459,-0.856459,-0.856459 +-0.846334,-0.846334,-0.846334,-0.846334,-0.846334,-0.846334 +-0.836209,-0.836209,-0.836209,-0.836209,-0.836209,-0.836209 +-0.826084,-0.826084,-0.826084,-0.826084,-0.826084,-0.826084 +-0.815959,-0.815959,-0.815959,-0.815959,-0.815959,-0.815959 +-0.805834,-0.805834,-0.805834,-0.805834,-0.805834,-0.805834 +-0.795709,-0.795709,-0.795709,-0.795709,-0.795709,-0.795709 +-0.785584,-0.785584,-0.785584,-0.785584,-0.785584,-0.785584 +-0.775459,-0.775459,-0.775459,-0.775459,-0.775459,-0.775459 +-0.765334,-0.765334,-0.765334,-0.765334,-0.765334,-0.765334 +-0.755209,-0.755209,-0.755209,-0.755209,-0.755209,-0.755209 +-0.745084,-0.745084,-0.745084,-0.745084,-0.745084,-0.745084 +-0.734959,-0.734959,-0.734959,-0.734959,-0.734959,-0.734959 +-0.724834,-0.724834,-0.724834,-0.724834,-0.724834,-0.724834 +-0.714709,-0.714709,-0.714709,-0.714709,-0.714709,-0.714709 +-0.704584,-0.704584,-0.704584,-0.704584,-0.704584,-0.704584 +-0.694459,-0.694459,-0.694459,-0.694459,-0.694459,-0.694459 +-0.684334,-0.684334,-0.684334,-0.684334,-0.684334,-0.684334 +-0.674209,-0.674209,-0.674209,-0.674209,-0.674209,-0.674209 +-0.664084,-0.664084,-0.664084,-0.664084,-0.664084,-0.664084 +-0.653959,-0.653959,-0.653959,-0.653959,-0.653959,-0.653959 +-0.643834,-0.643834,-0.643834,-0.643834,-0.643834,-0.643834 +-0.633709,-0.633709,-0.633709,-0.633709,-0.633709,-0.633709 +-0.623584,-0.623584,-0.623584,-0.623584,-0.623584,-0.623584 +-0.613459,-0.613459,-0.613459,-0.613459,-0.613459,-0.613459 +-0.603334,-0.603334,-0.603334,-0.603334,-0.603334,-0.603334 +-0.593209,-0.593209,-0.593209,-0.593209,-0.593209,-0.593209 +-0.583084,-0.583084,-0.583084,-0.583084,-0.583084,-0.583084 +-0.572959,-0.572959,-0.572959,-0.572959,-0.572959,-0.572959 +-0.562834,-0.562834,-0.562834,-0.562834,-0.562834,-0.562834 +-0.552709,-0.552709,-0.552709,-0.552709,-0.552709,-0.552709 +-0.542584,-0.542584,-0.542584,-0.542584,-0.542584,-0.542584 +-0.532459,-0.532459,-0.532459,-0.532459,-0.532459,-0.532459 +-0.522334,-0.522334,-0.522334,-0.522334,-0.522334,-0.522334 +-0.512209,-0.512209,-0.512209,-0.512209,-0.512209,-0.512209 +-0.502084,-0.502084,-0.502084,-0.502084,-0.502084,-0.502084 +-0.491959,-0.491959,-0.491959,-0.491959,-0.491959,-0.491959 +-0.481834,-0.481834,-0.481834,-0.481834,-0.481834,-0.481834 +-0.471709,-0.471709,-0.471709,-0.471709,-0.471709,-0.471709 +-0.461584,-0.461584,-0.461584,-0.461584,-0.461584,-0.461584 +-0.451459,-0.451459,-0.451459,-0.451459,-0.451459,-0.451459 +-0.441334,-0.441334,-0.441334,-0.441334,-0.441334,-0.441334 +-0.431209,-0.431209,-0.431209,-0.431209,-0.431209,-0.431209 +-0.421084,-0.421084,-0.421084,-0.421084,-0.421084,-0.421084 +-0.410959,-0.410959,-0.410959,-0.410959,-0.410959,-0.410959 +-0.400834,-0.400834,-0.400834,-0.400834,-0.400834,-0.400834 +-0.390709,-0.390709,-0.390709,-0.390709,-0.390709,-0.390709 +-0.380584,-0.380584,-0.380584,-0.380584,-0.380584,-0.380584 +-0.370459,-0.370459,-0.370459,-0.370459,-0.370459,-0.370459 +-0.360334,-0.360334,-0.360334,-0.360334,-0.360334,-0.360334 +-0.350209,-0.350209,-0.350209,-0.350209,-0.350209,-0.350209 +-0.340084,-0.340084,-0.340084,-0.340084,-0.340084,-0.340084 +-0.329959,-0.329959,-0.329959,-0.329959,-0.329959,-0.329959 +-0.319834,-0.319834,-0.319834,-0.319834,-0.319834,-0.319834 +-0.309709,-0.309709,-0.309709,-0.309709,-0.309709,-0.309709 +-0.299584,-0.299584,-0.299584,-0.299584,-0.299584,-0.299584 +-0.289459,-0.289459,-0.289459,-0.289459,-0.289459,-0.289459 +-0.279334,-0.279334,-0.279334,-0.279334,-0.279334,-0.279334 +-0.269209,-0.269209,-0.269209,-0.269209,-0.269209,-0.269209 +-0.259084,-0.259084,-0.259084,-0.259084,-0.259084,-0.259084 +-0.248959,-0.248959,-0.248959,-0.248959,-0.248959,-0.248959 +-0.238834,-0.238834,-0.238834,-0.238834,-0.238834,-0.238834 +-0.228709,-0.228709,-0.228709,-0.228709,-0.228709,-0.228709 +-0.218584,-0.218584,-0.218584,-0.218584,-0.218584,-0.218584 +-0.20846,-0.20846,-0.20846,-0.20846,-0.20846,-0.20846 +-0.19835,-0.19835,-0.19835,-0.19835,-0.19835,-0.19835 +-0.188276,-0.188276,-0.188276,-0.188276,-0.188276,-0.188276 +-0.178262,-0.178262,-0.178262,-0.178262,-0.178262,-0.178262 +-0.16833,-0.16833,-0.16833,-0.16833,-0.16833,-0.16833 +-0.158501,-0.158501,-0.158501,-0.158501,-0.158501,-0.158501 +-0.148799,-0.148799,-0.148799,-0.148799,-0.148799,-0.148799 +-0.139246,-0.139246,-0.139246,-0.139246,-0.139246,-0.139246 +-0.129864,-0.129864,-0.129864,-0.129864,-0.129864,-0.129864 +-0.120677,-0.120677,-0.120677,-0.120677,-0.120677,-0.120677 +-0.111706,-0.111706,-0.111706,-0.111706,-0.111706,-0.111706 +-0.102975,-0.102975,-0.102975,-0.102975,-0.102975,-0.102975 +-0.094504,-0.094504,-0.094504,-0.094504,-0.094504,-0.094504 +-0.086318,-0.086318,-0.086318,-0.086318,-0.086318,-0.086318 +-0.078439,-0.078439,-0.078439,-0.078439,-0.078439,-0.078439 +-0.070888,-0.070888,-0.070888,-0.070888,-0.070888,-0.070888 +-0.063689,-0.063689,-0.063689,-0.063689,-0.063689,-0.063689 +-0.056864,-0.056864,-0.056864,-0.056864,-0.056864,-0.056864 +-0.050436,-0.050436,-0.050436,-0.050436,-0.050436,-0.050436 +-0.044426,-0.044426,-0.044426,-0.044426,-0.044426,-0.044426 +-0.038859,-0.038859,-0.038859,-0.038859,-0.038859,-0.038859 +-0.033754,-0.033754,-0.033754,-0.033754,-0.033754,-0.033754 +-0.029117,-0.029117,-0.029117,-0.029117,-0.029117,-0.029117 +-0.024924,-0.024924,-0.024924,-0.024924,-0.024924,-0.024924 +-0.021155,-0.021155,-0.021155,-0.021155,-0.021155,-0.021155 +-0.017787,-0.017787,-0.017787,-0.017787,-0.017787,-0.017787 +-0.014796,-0.014796,-0.014796,-0.014796,-0.014796,-0.014796 +-0.012161,-0.012161,-0.012161,-0.012161,-0.012161,-0.012161 +-0.009859,-0.009859,-0.009859,-0.009859,-0.009859,-0.009859 +-0.007867,-0.007867,-0.007867,-0.007867,-0.007867,-0.007867 +-0.006164,-0.006164,-0.006164,-0.006164,-0.006164,-0.006164 +-0.004726,-0.004726,-0.004726,-0.004726,-0.004726,-0.004726 +-0.003531,-0.003531,-0.003531,-0.003531,-0.003531,-0.003531 +-0.002557,-0.002557,-0.002557,-0.002557,-0.002557,-0.002557 +-0.001781,-0.001781,-0.001781,-0.001781,-0.001781,-0.001781 +-0.00118,-0.00118,-0.00118,-0.00118,-0.00118,-0.00118 +-0.000732,-0.000732,-0.000732,-0.000732,-0.000732,-0.000732 +-0.000415,-0.000415,-0.000415,-0.000415,-0.000415,-0.000415 +-0.000206,-0.000206,-0.000206,-0.000206,-0.000206,-0.000206 +-0.000082,-0.000082,-0.000082,-0.000082,-0.000082,-0.000082 +-0.000022,-0.000022,-0.000022,-0.000022,-0.000022,-0.000022 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000032,0.000032,0.000032,0.000032,0.000032,0.000032 +0.000108,0.000108,0.000108,0.000108,0.000108,0.000108 +0.000256,0.000256,0.000256,0.000256,0.000256,0.000256 +0.0005,0.0005,0.0005,0.0005,0.0005,0.0005 +0.000864,0.000864,0.000864,0.000864,0.000864,0.000864 +0.001372,0.001372,0.001372,0.001372,0.001372,0.001372 +0.002048,0.002048,0.002048,0.002048,0.002048,0.002048 +0.002916,0.002916,0.002916,0.002916,0.002916,0.002916 +0.004,0.004,0.004,0.004,0.004,0.004 +0.005324,0.005324,0.005324,0.005324,0.005324,0.005324 +0.006912,0.006912,0.006912,0.006912,0.006912,0.006912 +0.008788,0.008788,0.008788,0.008788,0.008788,0.008788 +0.010976,0.010976,0.010976,0.010976,0.010976,0.010976 +0.0135,0.0135,0.0135,0.0135,0.0135,0.0135 +0.016384,0.016384,0.016384,0.016384,0.016384,0.016384 +0.019652,0.019652,0.019652,0.019652,0.019652,0.019652 +0.023328,0.023328,0.023328,0.023328,0.023328,0.023328 +0.027436,0.027436,0.027436,0.027436,0.027436,0.027436 +0.032,0.032,0.032,0.032,0.032,0.032 +0.037044,0.037044,0.037044,0.037044,0.037044,0.037044 +0.042592,0.042592,0.042592,0.042592,0.042592,0.042592 +0.048658,0.048658,0.048658,0.048658,0.048658,0.048658 +0.055223,0.055223,0.055223,0.055223,0.055223,0.055223 +0.062264,0.062264,0.062264,0.062264,0.062264,0.062264 +0.069756,0.069756,0.069756,0.069756,0.069756,0.069756 +0.077676,0.077676,0.077676,0.077676,0.077676,0.077676 +0.086,0.086,0.086,0.086,0.086,0.086 +0.094703,0.094703,0.094703,0.094703,0.094703,0.094703 +0.103762,0.103762,0.103762,0.103762,0.103762,0.103762 +0.113153,0.113153,0.113153,0.113153,0.113153,0.113153 +0.122851,0.122851,0.122851,0.122851,0.122851,0.122851 +0.132833,0.132833,0.132833,0.132833,0.132833,0.132833 +0.143075,0.143075,0.143075,0.143075,0.143075,0.143075 +0.153552,0.153552,0.153552,0.153552,0.153552,0.153552 +0.164241,0.164241,0.164241,0.164241,0.164241,0.164241 +0.175117,0.175117,0.175117,0.175117,0.175117,0.175117 +0.186157,0.186157,0.186157,0.186157,0.186157,0.186157 +0.197337,0.197337,0.197337,0.197337,0.197337,0.197337 +0.208632,0.208632,0.208632,0.208632,0.208632,0.208632 +0.220019,0.220019,0.220019,0.220019,0.220019,0.220019 +0.231473,0.231473,0.231473,0.231473,0.231473,0.231473 +0.242972,0.242972,0.242972,0.242972,0.242972,0.242972 +0.254489,0.254489,0.254489,0.254489,0.254489,0.254489 +0.266009,0.266009,0.266009,0.266009,0.266009,0.266009 +0.277529,0.277529,0.277529,0.277529,0.277529,0.277529 +0.289049,0.289049,0.289049,0.289049,0.289049,0.289049 +0.300569,0.300569,0.300569,0.300569,0.300569,0.300569 +0.312089,0.312089,0.312089,0.312089,0.312089,0.312089 +0.323609,0.323609,0.323609,0.323609,0.323609,0.323609 +0.335129,0.335129,0.335129,0.335129,0.335129,0.335129 +0.346649,0.346649,0.346649,0.346649,0.346649,0.346649 +0.358169,0.358169,0.358169,0.358169,0.358169,0.358169 +0.369689,0.369689,0.369689,0.369689,0.369689,0.369689 +0.381209,0.381209,0.381209,0.381209,0.381209,0.381209 +0.392729,0.392729,0.392729,0.392729,0.392729,0.392729 +0.404249,0.404249,0.404249,0.404249,0.404249,0.404249 +0.415769,0.415769,0.415769,0.415769,0.415769,0.415769 +0.427289,0.427289,0.427289,0.427289,0.427289,0.427289 +0.438809,0.438809,0.438809,0.438809,0.438809,0.438809 +0.450329,0.450329,0.450329,0.450329,0.450329,0.450329 +0.461849,0.461849,0.461849,0.461849,0.461849,0.461849 +0.473369,0.473369,0.473369,0.473369,0.473369,0.473369 +0.484889,0.484889,0.484889,0.484889,0.484889,0.484889 +0.496409,0.496409,0.496409,0.496409,0.496409,0.496409 +0.507929,0.507929,0.507929,0.507929,0.507929,0.507929 +0.519449,0.519449,0.519449,0.519449,0.519449,0.519449 +0.530969,0.530969,0.530969,0.530969,0.530969,0.530969 +0.542489,0.542489,0.542489,0.542489,0.542489,0.542489 +0.554009,0.554009,0.554009,0.554009,0.554009,0.554009 +0.565529,0.565529,0.565529,0.565529,0.565529,0.565529 +0.577049,0.577049,0.577049,0.577049,0.577049,0.577049 +0.588569,0.588569,0.588569,0.588569,0.588569,0.588569 +0.600089,0.600089,0.600089,0.600089,0.600089,0.600089 +0.611609,0.611609,0.611609,0.611609,0.611609,0.611609 +0.623129,0.623129,0.623129,0.623129,0.623129,0.623129 +0.634649,0.634649,0.634649,0.634649,0.634649,0.634649 +0.646169,0.646169,0.646169,0.646169,0.646169,0.646169 +0.657689,0.657689,0.657689,0.657689,0.657689,0.657689 +0.669209,0.669209,0.669209,0.669209,0.669209,0.669209 +0.680729,0.680729,0.680729,0.680729,0.680729,0.680729 +0.692249,0.692249,0.692249,0.692249,0.692249,0.692249 +0.703769,0.703769,0.703769,0.703769,0.703769,0.703769 +0.715289,0.715289,0.715289,0.715289,0.715289,0.715289 +0.726809,0.726809,0.726809,0.726809,0.726809,0.726809 +0.738329,0.738329,0.738329,0.738329,0.738329,0.738329 +0.749849,0.749849,0.749849,0.749849,0.749849,0.749849 +0.761369,0.761369,0.761369,0.761369,0.761369,0.761369 +0.772889,0.772889,0.772889,0.772889,0.772889,0.772889 +0.784409,0.784409,0.784409,0.784409,0.784409,0.784409 +0.795929,0.795929,0.795929,0.795929,0.795929,0.795929 +0.807449,0.807449,0.807449,0.807449,0.807449,0.807449 +0.818969,0.818969,0.818969,0.818969,0.818969,0.818969 +0.830489,0.830489,0.830489,0.830489,0.830489,0.830489 +0.842009,0.842009,0.842009,0.842009,0.842009,0.842009 +0.853529,0.853529,0.853529,0.853529,0.853529,0.853529 +0.865049,0.865049,0.865049,0.865049,0.865049,0.865049 +0.876569,0.876569,0.876569,0.876569,0.876569,0.876569 +0.888089,0.888089,0.888089,0.888089,0.888089,0.888089 +0.899609,0.899609,0.899609,0.899609,0.899609,0.899609 +0.911129,0.911129,0.911129,0.911129,0.911129,0.911129 +0.922649,0.922649,0.922649,0.922649,0.922649,0.922649 +0.934169,0.934169,0.934169,0.934169,0.934169,0.934169 +0.945689,0.945689,0.945689,0.945689,0.945689,0.945689 +0.957209,0.957209,0.957209,0.957209,0.957209,0.957209 +0.968729,0.968729,0.968729,0.968729,0.968729,0.968729 +0.980249,0.980249,0.980249,0.980249,0.980249,0.980249 +0.991769,0.991769,0.991769,0.991769,0.991769,0.991769 +1.003289,1.003289,1.003289,1.003289,1.003289,1.003289 +1.014809,1.014809,1.014809,1.014809,1.014809,1.014809 +1.026329,1.026329,1.026329,1.026329,1.026329,1.026329 +1.037849,1.037849,1.037849,1.037849,1.037849,1.037849 +1.049369,1.049369,1.049369,1.049369,1.049369,1.049369 +1.060889,1.060889,1.060889,1.060889,1.060889,1.060889 +1.072409,1.072409,1.072409,1.072409,1.072409,1.072409 +1.083929,1.083929,1.083929,1.083929,1.083929,1.083929 +1.095449,1.095449,1.095449,1.095449,1.095449,1.095449 +1.106969,1.106969,1.106969,1.106969,1.106969,1.106969 +1.118489,1.118489,1.118489,1.118489,1.118489,1.118489 +1.130009,1.130009,1.130009,1.130009,1.130009,1.130009 +1.141529,1.141529,1.141529,1.141529,1.141529,1.141529 +1.153049,1.153049,1.153049,1.153049,1.153049,1.153049 +1.164569,1.164569,1.164569,1.164569,1.164569,1.164569 +1.176089,1.176089,1.176089,1.176089,1.176089,1.176089 +1.187609,1.187609,1.187609,1.187609,1.187609,1.187609 +1.199129,1.199129,1.199129,1.199129,1.199129,1.199129 +1.210649,1.210649,1.210649,1.210649,1.210649,1.210649 +1.222169,1.222169,1.222169,1.222169,1.222169,1.222169 +1.233689,1.233689,1.233689,1.233689,1.233689,1.233689 +1.245209,1.245209,1.245209,1.245209,1.245209,1.245209 +1.256729,1.256729,1.256729,1.256729,1.256729,1.256729 +1.268249,1.268249,1.268249,1.268249,1.268249,1.268249 +1.279769,1.279769,1.279769,1.279769,1.279769,1.279769 +1.291289,1.291289,1.291289,1.291289,1.291289,1.291289 +1.302809,1.302809,1.302809,1.302809,1.302809,1.302809 +1.314329,1.314329,1.314329,1.314329,1.314329,1.314329 +1.325849,1.325849,1.325849,1.325849,1.325849,1.325849 +1.337369,1.337369,1.337369,1.337369,1.337369,1.337369 +1.348889,1.348889,1.348889,1.348889,1.348889,1.348889 +1.360409,1.360409,1.360409,1.360409,1.360409,1.360409 +1.371929,1.371929,1.371929,1.371929,1.371929,1.371929 +1.383449,1.383449,1.383449,1.383449,1.383449,1.383449 +1.394969,1.394969,1.394969,1.394969,1.394969,1.394969 +1.406489,1.406489,1.406489,1.406489,1.406489,1.406489 +1.418009,1.418009,1.418009,1.418009,1.418009,1.418009 +1.429529,1.429529,1.429529,1.429529,1.429529,1.429529 +1.441049,1.441049,1.441049,1.441049,1.441049,1.441049 +1.452569,1.452569,1.452569,1.452569,1.452569,1.452569 +1.464089,1.464089,1.464089,1.464089,1.464089,1.464089 +1.475609,1.475609,1.475609,1.475609,1.475609,1.475609 +1.487129,1.487129,1.487129,1.487129,1.487129,1.487129 +1.498649,1.498649,1.498649,1.498649,1.498649,1.498649 +1.510156,1.510156,1.510156,1.510156,1.510156,1.510156 +1.521627,1.521627,1.521627,1.521627,1.521627,1.521627 +1.533038,1.533038,1.533038,1.533038,1.533038,1.533038 +1.544365,1.544365,1.544365,1.544365,1.544365,1.544365 +1.555585,1.555585,1.555585,1.555585,1.555585,1.555585 +1.566672,1.566672,1.566672,1.566672,1.566672,1.566672 +1.577603,1.577603,1.577603,1.577603,1.577603,1.577603 +1.588354,1.588354,1.588354,1.588354,1.588354,1.588354 +1.598902,1.598902,1.598902,1.598902,1.598902,1.598902 +1.609221,1.609221,1.609221,1.609221,1.609221,1.609221 +1.619289,1.619289,1.619289,1.619289,1.619289,1.619289 +1.62908,1.62908,1.62908,1.62908,1.62908,1.62908 +1.638572,1.638572,1.638572,1.638572,1.638572,1.638572 +1.647739,1.647739,1.647739,1.647739,1.647739,1.647739 +1.656559,1.656559,1.656559,1.656559,1.656559,1.656559 +1.665007,1.665007,1.665007,1.665007,1.665007,1.665007 +1.673058,1.673058,1.673058,1.673058,1.673058,1.673058 +1.68069,1.68069,1.68069,1.68069,1.68069,1.68069 +1.687878,1.687878,1.687878,1.687878,1.687878,1.687878 +1.694598,1.694598,1.694598,1.694598,1.694598,1.694598 +1.700826,1.700826,1.700826,1.700826,1.700826,1.700826 +1.706539,1.706539,1.706539,1.706539,1.706539,1.706539 +1.711742,1.711742,1.711742,1.711742,1.711742,1.711742 +1.716456,1.716456,1.716456,1.716456,1.716456,1.716456 +1.720707,1.720707,1.720707,1.720707,1.720707,1.720707 +1.724519,1.724519,1.724519,1.724519,1.724519,1.724519 +1.727915,1.727915,1.727915,1.727915,1.727915,1.727915 +1.730919,1.730919,1.730919,1.730919,1.730919,1.730919 +1.733555,1.733555,1.733555,1.733555,1.733555,1.733555 +1.735848,1.735848,1.735848,1.735848,1.735848,1.735848 +1.737821,1.737821,1.737821,1.737821,1.737821,1.737821 +1.739498,1.739498,1.739498,1.739498,1.739498,1.739498 +1.740904,1.740904,1.740904,1.740904,1.740904,1.740904 +1.742062,1.742062,1.742062,1.742062,1.742062,1.742062 +1.742997,1.742997,1.742997,1.742997,1.742997,1.742997 +1.743731,1.743731,1.743731,1.743731,1.743731,1.743731 +1.74429,1.74429,1.74429,1.74429,1.74429,1.74429 +1.744698,1.744698,1.744698,1.744698,1.744698,1.744698 +1.744978,1.744978,1.744978,1.744978,1.744978,1.744978 +1.745154,1.745154,1.745154,1.745154,1.745154,1.745154 +1.74525,1.74525,1.74525,1.74525,1.74525,1.74525 +1.745291,1.745291,1.745291,1.745291,1.745291,1.745291 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745268,1.745268,1.745268,1.745268,1.745268,1.745268 +1.745192,1.745192,1.745192,1.745192,1.745192,1.745192 +1.745044,1.745044,1.745044,1.745044,1.745044,1.745044 +1.7448,1.7448,1.7448,1.7448,1.7448,1.7448 +1.744436,1.744436,1.744436,1.744436,1.744436,1.744436 +1.743928,1.743928,1.743928,1.743928,1.743928,1.743928 +1.743252,1.743252,1.743252,1.743252,1.743252,1.743252 +1.742384,1.742384,1.742384,1.742384,1.742384,1.742384 +1.7413,1.7413,1.7413,1.7413,1.7413,1.7413 +1.739976,1.739976,1.739976,1.739976,1.739976,1.739976 +1.738388,1.738388,1.738388,1.738388,1.738388,1.738388 +1.736512,1.736512,1.736512,1.736512,1.736512,1.736512 +1.734324,1.734324,1.734324,1.734324,1.734324,1.734324 +1.7318,1.7318,1.7318,1.7318,1.7318,1.7318 +1.728916,1.728916,1.728916,1.728916,1.728916,1.728916 +1.725648,1.725648,1.725648,1.725648,1.725648,1.725648 +1.721972,1.721972,1.721972,1.721972,1.721972,1.721972 +1.717864,1.717864,1.717864,1.717864,1.717864,1.717864 +1.7133,1.7133,1.7133,1.7133,1.7133,1.7133 +1.708256,1.708256,1.708256,1.708256,1.708256,1.708256 +1.702708,1.702708,1.702708,1.702708,1.702708,1.702708 +1.696642,1.696642,1.696642,1.696642,1.696642,1.696642 +1.690077,1.690077,1.690077,1.690077,1.690077,1.690077 +1.683036,1.683036,1.683036,1.683036,1.683036,1.683036 +1.675544,1.675544,1.675544,1.675544,1.675544,1.675544 +1.667624,1.667624,1.667624,1.667624,1.667624,1.667624 +1.6593,1.6593,1.6593,1.6593,1.6593,1.6593 +1.650597,1.650597,1.650597,1.650597,1.650597,1.650597 +1.641538,1.641538,1.641538,1.641538,1.641538,1.641538 +1.632147,1.632147,1.632147,1.632147,1.632147,1.632147 +1.622449,1.622449,1.622449,1.622449,1.622449,1.622449 +1.612467,1.612467,1.612467,1.612467,1.612467,1.612467 +1.602225,1.602225,1.602225,1.602225,1.602225,1.602225 +1.591748,1.591748,1.591748,1.591748,1.591748,1.591748 +1.581059,1.581059,1.581059,1.581059,1.581059,1.581059 +1.570183,1.570183,1.570183,1.570183,1.570183,1.570183 +1.559143,1.559143,1.559143,1.559143,1.559143,1.559143 +1.547963,1.547963,1.547963,1.547963,1.547963,1.547963 +1.536668,1.536668,1.536668,1.536668,1.536668,1.536668 +1.525281,1.525281,1.525281,1.525281,1.525281,1.525281 +1.513827,1.513827,1.513827,1.513827,1.513827,1.513827 +1.502328,1.502328,1.502328,1.502328,1.502328,1.502328 +1.490811,1.490811,1.490811,1.490811,1.490811,1.490811 +1.479291,1.479291,1.479291,1.479291,1.479291,1.479291 +1.467771,1.467771,1.467771,1.467771,1.467771,1.467771 +1.456251,1.456251,1.456251,1.456251,1.456251,1.456251 +1.444731,1.444731,1.444731,1.444731,1.444731,1.444731 +1.433211,1.433211,1.433211,1.433211,1.433211,1.433211 +1.421691,1.421691,1.421691,1.421691,1.421691,1.421691 +1.410171,1.410171,1.410171,1.410171,1.410171,1.410171 +1.398651,1.398651,1.398651,1.398651,1.398651,1.398651 +1.387131,1.387131,1.387131,1.387131,1.387131,1.387131 +1.375611,1.375611,1.375611,1.375611,1.375611,1.375611 +1.364091,1.364091,1.364091,1.364091,1.364091,1.364091 +1.352571,1.352571,1.352571,1.352571,1.352571,1.352571 +1.341051,1.341051,1.341051,1.341051,1.341051,1.341051 +1.329531,1.329531,1.329531,1.329531,1.329531,1.329531 +1.318011,1.318011,1.318011,1.318011,1.318011,1.318011 +1.306491,1.306491,1.306491,1.306491,1.306491,1.306491 +1.294971,1.294971,1.294971,1.294971,1.294971,1.294971 +1.283451,1.283451,1.283451,1.283451,1.283451,1.283451 +1.271931,1.271931,1.271931,1.271931,1.271931,1.271931 +1.260411,1.260411,1.260411,1.260411,1.260411,1.260411 +1.248891,1.248891,1.248891,1.248891,1.248891,1.248891 +1.237371,1.237371,1.237371,1.237371,1.237371,1.237371 +1.225851,1.225851,1.225851,1.225851,1.225851,1.225851 +1.214331,1.214331,1.214331,1.214331,1.214331,1.214331 +1.202811,1.202811,1.202811,1.202811,1.202811,1.202811 +1.191291,1.191291,1.191291,1.191291,1.191291,1.191291 +1.179771,1.179771,1.179771,1.179771,1.179771,1.179771 +1.168251,1.168251,1.168251,1.168251,1.168251,1.168251 +1.156731,1.156731,1.156731,1.156731,1.156731,1.156731 +1.145211,1.145211,1.145211,1.145211,1.145211,1.145211 +1.133691,1.133691,1.133691,1.133691,1.133691,1.133691 +1.122171,1.122171,1.122171,1.122171,1.122171,1.122171 +1.110651,1.110651,1.110651,1.110651,1.110651,1.110651 +1.099131,1.099131,1.099131,1.099131,1.099131,1.099131 +1.087611,1.087611,1.087611,1.087611,1.087611,1.087611 +1.076091,1.076091,1.076091,1.076091,1.076091,1.076091 +1.064571,1.064571,1.064571,1.064571,1.064571,1.064571 +1.053051,1.053051,1.053051,1.053051,1.053051,1.053051 +1.041531,1.041531,1.041531,1.041531,1.041531,1.041531 +1.030011,1.030011,1.030011,1.030011,1.030011,1.030011 +1.018491,1.018491,1.018491,1.018491,1.018491,1.018491 +1.006971,1.006971,1.006971,1.006971,1.006971,1.006971 +0.995451,0.995451,0.995451,0.995451,0.995451,0.995451 +0.983931,0.983931,0.983931,0.983931,0.983931,0.983931 +0.972411,0.972411,0.972411,0.972411,0.972411,0.972411 +0.960891,0.960891,0.960891,0.960891,0.960891,0.960891 +0.949371,0.949371,0.949371,0.949371,0.949371,0.949371 +0.937851,0.937851,0.937851,0.937851,0.937851,0.937851 +0.926331,0.926331,0.926331,0.926331,0.926331,0.926331 +0.914811,0.914811,0.914811,0.914811,0.914811,0.914811 +0.903291,0.903291,0.903291,0.903291,0.903291,0.903291 +0.891771,0.891771,0.891771,0.891771,0.891771,0.891771 +0.880251,0.880251,0.880251,0.880251,0.880251,0.880251 +0.868731,0.868731,0.868731,0.868731,0.868731,0.868731 +0.857211,0.857211,0.857211,0.857211,0.857211,0.857211 +0.845691,0.845691,0.845691,0.845691,0.845691,0.845691 +0.834171,0.834171,0.834171,0.834171,0.834171,0.834171 +0.822651,0.822651,0.822651,0.822651,0.822651,0.822651 +0.811131,0.811131,0.811131,0.811131,0.811131,0.811131 +0.799611,0.799611,0.799611,0.799611,0.799611,0.799611 +0.788091,0.788091,0.788091,0.788091,0.788091,0.788091 +0.776571,0.776571,0.776571,0.776571,0.776571,0.776571 +0.765051,0.765051,0.765051,0.765051,0.765051,0.765051 +0.753531,0.753531,0.753531,0.753531,0.753531,0.753531 +0.742011,0.742011,0.742011,0.742011,0.742011,0.742011 +0.730491,0.730491,0.730491,0.730491,0.730491,0.730491 +0.718971,0.718971,0.718971,0.718971,0.718971,0.718971 +0.707451,0.707451,0.707451,0.707451,0.707451,0.707451 +0.695931,0.695931,0.695931,0.695931,0.695931,0.695931 +0.684411,0.684411,0.684411,0.684411,0.684411,0.684411 +0.672891,0.672891,0.672891,0.672891,0.672891,0.672891 +0.661371,0.661371,0.661371,0.661371,0.661371,0.661371 +0.649851,0.649851,0.649851,0.649851,0.649851,0.649851 +0.638331,0.638331,0.638331,0.638331,0.638331,0.638331 +0.626811,0.626811,0.626811,0.626811,0.626811,0.626811 +0.615291,0.615291,0.615291,0.615291,0.615291,0.615291 +0.603771,0.603771,0.603771,0.603771,0.603771,0.603771 +0.592251,0.592251,0.592251,0.592251,0.592251,0.592251 +0.580731,0.580731,0.580731,0.580731,0.580731,0.580731 +0.569211,0.569211,0.569211,0.569211,0.569211,0.569211 +0.557691,0.557691,0.557691,0.557691,0.557691,0.557691 +0.546171,0.546171,0.546171,0.546171,0.546171,0.546171 +0.534651,0.534651,0.534651,0.534651,0.534651,0.534651 +0.523131,0.523131,0.523131,0.523131,0.523131,0.523131 +0.511611,0.511611,0.511611,0.511611,0.511611,0.511611 +0.500091,0.500091,0.500091,0.500091,0.500091,0.500091 +0.488571,0.488571,0.488571,0.488571,0.488571,0.488571 +0.477051,0.477051,0.477051,0.477051,0.477051,0.477051 +0.465531,0.465531,0.465531,0.465531,0.465531,0.465531 +0.454011,0.454011,0.454011,0.454011,0.454011,0.454011 +0.442491,0.442491,0.442491,0.442491,0.442491,0.442491 +0.430971,0.430971,0.430971,0.430971,0.430971,0.430971 +0.419451,0.419451,0.419451,0.419451,0.419451,0.419451 +0.407931,0.407931,0.407931,0.407931,0.407931,0.407931 +0.396411,0.396411,0.396411,0.396411,0.396411,0.396411 +0.384891,0.384891,0.384891,0.384891,0.384891,0.384891 +0.373371,0.373371,0.373371,0.373371,0.373371,0.373371 +0.361851,0.361851,0.361851,0.361851,0.361851,0.361851 +0.350331,0.350331,0.350331,0.350331,0.350331,0.350331 +0.338811,0.338811,0.338811,0.338811,0.338811,0.338811 +0.327291,0.327291,0.327291,0.327291,0.327291,0.327291 +0.315771,0.315771,0.315771,0.315771,0.315771,0.315771 +0.304251,0.304251,0.304251,0.304251,0.304251,0.304251 +0.292731,0.292731,0.292731,0.292731,0.292731,0.292731 +0.281211,0.281211,0.281211,0.281211,0.281211,0.281211 +0.269691,0.269691,0.269691,0.269691,0.269691,0.269691 +0.258171,0.258171,0.258171,0.258171,0.258171,0.258171 +0.246651,0.246651,0.246651,0.246651,0.246651,0.246651 +0.235144,0.235144,0.235144,0.235144,0.235144,0.235144 +0.223673,0.223673,0.223673,0.223673,0.223673,0.223673 +0.212262,0.212262,0.212262,0.212262,0.212262,0.212262 +0.200935,0.200935,0.200935,0.200935,0.200935,0.200935 +0.189715,0.189715,0.189715,0.189715,0.189715,0.189715 +0.178628,0.178628,0.178628,0.178628,0.178628,0.178628 +0.167697,0.167697,0.167697,0.167697,0.167697,0.167697 +0.156946,0.156946,0.156946,0.156946,0.156946,0.156946 +0.146398,0.146398,0.146398,0.146398,0.146398,0.146398 +0.136079,0.136079,0.136079,0.136079,0.136079,0.136079 +0.126011,0.126011,0.126011,0.126011,0.126011,0.126011 +0.11622,0.11622,0.11622,0.11622,0.11622,0.11622 +0.106728,0.106728,0.106728,0.106728,0.106728,0.106728 +0.097561,0.097561,0.097561,0.097561,0.097561,0.097561 +0.088741,0.088741,0.088741,0.088741,0.088741,0.088741 +0.080293,0.080293,0.080293,0.080293,0.080293,0.080293 +0.072242,0.072242,0.072242,0.072242,0.072242,0.072242 +0.06461,0.06461,0.06461,0.06461,0.06461,0.06461 +0.057422,0.057422,0.057422,0.057422,0.057422,0.057422 +0.050702,0.050702,0.050702,0.050702,0.050702,0.050702 +0.044474,0.044474,0.044474,0.044474,0.044474,0.044474 +0.038761,0.038761,0.038761,0.038761,0.038761,0.038761 +0.033558,0.033558,0.033558,0.033558,0.033558,0.033558 +0.028844,0.028844,0.028844,0.028844,0.028844,0.028844 +0.024593,0.024593,0.024593,0.024593,0.024593,0.024593 +0.020781,0.020781,0.020781,0.020781,0.020781,0.020781 +0.017385,0.017385,0.017385,0.017385,0.017385,0.017385 +0.014381,0.014381,0.014381,0.014381,0.014381,0.014381 +0.011745,0.011745,0.011745,0.011745,0.011745,0.011745 +0.009452,0.009452,0.009452,0.009452,0.009452,0.009452 +0.007479,0.007479,0.007479,0.007479,0.007479,0.007479 +0.005802,0.005802,0.005802,0.005802,0.005802,0.005802 +0.004396,0.004396,0.004396,0.004396,0.004396,0.004396 +0.003238,0.003238,0.003238,0.003238,0.003238,0.003238 +0.002303,0.002303,0.002303,0.002303,0.002303,0.002303 +0.001569,0.001569,0.001569,0.001569,0.001569,0.001569 +0.00101,0.00101,0.00101,0.00101,0.00101,0.00101 +0.000602,0.000602,0.000602,0.000602,0.000602,0.000602 +0.000322,0.000322,0.000322,0.000322,0.000322,0.000322 +0.000146,0.000146,0.000146,0.000146,0.000146,0.000146 +0.00005,0.00005,0.00005,0.00005,0.00005,0.00005 +0.000009,0.000009,0.000009,0.000009,0.000009,0.000009 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000032,-0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000108,-0.000108,-0.000108,-0.000108,-0.000108,-0.000108 +-0.000256,-0.000256,-0.000256,-0.000256,-0.000256,-0.000256 +-0.0005,-0.0005,-0.0005,-0.0005,-0.0005,-0.0005 +-0.000864,-0.000864,-0.000864,-0.000864,-0.000864,-0.000864 +-0.001372,-0.001372,-0.001372,-0.001372,-0.001372,-0.001372 +-0.002048,-0.002048,-0.002048,-0.002048,-0.002048,-0.002048 +-0.002916,-0.002916,-0.002916,-0.002916,-0.002916,-0.002916 +-0.004,-0.004,-0.004,-0.004,-0.004,-0.004 +-0.005324,-0.005324,-0.005324,-0.005324,-0.005324,-0.005324 +-0.006912,-0.006912,-0.006912,-0.006912,-0.006912,-0.006912 +-0.008788,-0.008788,-0.008788,-0.008788,-0.008788,-0.008788 +-0.010976,-0.010976,-0.010976,-0.010976,-0.010976,-0.010976 +-0.0135,-0.0135,-0.0135,-0.0135,-0.0135,-0.0135 +-0.016384,-0.016384,-0.016384,-0.016384,-0.016384,-0.016384 +-0.019652,-0.019652,-0.019652,-0.019652,-0.019652,-0.019652 +-0.023328,-0.023328,-0.023328,-0.023328,-0.023328,-0.023328 +-0.027436,-0.027436,-0.027436,-0.027436,-0.027436,-0.027436 +-0.032,-0.032,-0.032,-0.032,-0.032,-0.032 +-0.037044,-0.037044,-0.037044,-0.037044,-0.037044,-0.037044 +-0.042592,-0.042592,-0.042592,-0.042592,-0.042592,-0.042592 +-0.048658,-0.048658,-0.048658,-0.048658,-0.048658,-0.048658 +-0.055223,-0.055223,-0.055223,-0.055223,-0.055223,-0.055223 +-0.062264,-0.062264,-0.062264,-0.062264,-0.062264,-0.062264 +-0.069756,-0.069756,-0.069756,-0.069756,-0.069756,-0.069756 +-0.077676,-0.077676,-0.077676,-0.077676,-0.077676,-0.077676 +-0.086,-0.086,-0.086,-0.086,-0.086,-0.086 +-0.094703,-0.094703,-0.094703,-0.094703,-0.094703,-0.094703 +-0.103762,-0.103762,-0.103762,-0.103762,-0.103762,-0.103762 +-0.113153,-0.113153,-0.113153,-0.113153,-0.113153,-0.113153 +-0.122851,-0.122851,-0.122851,-0.122851,-0.122851,-0.122851 +-0.132833,-0.132833,-0.132833,-0.132833,-0.132833,-0.132833 +-0.143075,-0.143075,-0.143075,-0.143075,-0.143075,-0.143075 +-0.153552,-0.153552,-0.153552,-0.153552,-0.153552,-0.153552 +-0.164241,-0.164241,-0.164241,-0.164241,-0.164241,-0.164241 +-0.175117,-0.175117,-0.175117,-0.175117,-0.175117,-0.175117 +-0.186157,-0.186157,-0.186157,-0.186157,-0.186157,-0.186157 +-0.197337,-0.197337,-0.197337,-0.197337,-0.197337,-0.197337 +-0.208632,-0.208632,-0.208632,-0.208632,-0.208632,-0.208632 +-0.220019,-0.220019,-0.220019,-0.220019,-0.220019,-0.220019 +-0.231473,-0.231473,-0.231473,-0.231473,-0.231473,-0.231473 +-0.242972,-0.242972,-0.242972,-0.242972,-0.242972,-0.242972 +-0.254489,-0.254489,-0.254489,-0.254489,-0.254489,-0.254489 +-0.266009,-0.266009,-0.266009,-0.266009,-0.266009,-0.266009 +-0.277529,-0.277529,-0.277529,-0.277529,-0.277529,-0.277529 +-0.289049,-0.289049,-0.289049,-0.289049,-0.289049,-0.289049 +-0.300569,-0.300569,-0.300569,-0.300569,-0.300569,-0.300569 +-0.312089,-0.312089,-0.312089,-0.312089,-0.312089,-0.312089 +-0.323609,-0.323609,-0.323609,-0.323609,-0.323609,-0.323609 +-0.335129,-0.335129,-0.335129,-0.335129,-0.335129,-0.335129 +-0.346649,-0.346649,-0.346649,-0.346649,-0.346649,-0.346649 +-0.358169,-0.358169,-0.358169,-0.358169,-0.358169,-0.358169 +-0.369689,-0.369689,-0.369689,-0.369689,-0.369689,-0.369689 +-0.381209,-0.381209,-0.381209,-0.381209,-0.381209,-0.381209 +-0.392729,-0.392729,-0.392729,-0.392729,-0.392729,-0.392729 +-0.404249,-0.404249,-0.404249,-0.404249,-0.404249,-0.404249 +-0.415769,-0.415769,-0.415769,-0.415769,-0.415769,-0.415769 +-0.427289,-0.427289,-0.427289,-0.427289,-0.427289,-0.427289 +-0.438809,-0.438809,-0.438809,-0.438809,-0.438809,-0.438809 +-0.450329,-0.450329,-0.450329,-0.450329,-0.450329,-0.450329 +-0.461849,-0.461849,-0.461849,-0.461849,-0.461849,-0.461849 +-0.473369,-0.473369,-0.473369,-0.473369,-0.473369,-0.473369 +-0.484889,-0.484889,-0.484889,-0.484889,-0.484889,-0.484889 +-0.496409,-0.496409,-0.496409,-0.496409,-0.496409,-0.496409 +-0.507929,-0.507929,-0.507929,-0.507929,-0.507929,-0.507929 +-0.519449,-0.519449,-0.519449,-0.519449,-0.519449,-0.519449 +-0.530969,-0.530969,-0.530969,-0.530969,-0.530969,-0.530969 +-0.542489,-0.542489,-0.542489,-0.542489,-0.542489,-0.542489 +-0.554009,-0.554009,-0.554009,-0.554009,-0.554009,-0.554009 +-0.565529,-0.565529,-0.565529,-0.565529,-0.565529,-0.565529 +-0.577049,-0.577049,-0.577049,-0.577049,-0.577049,-0.577049 +-0.588569,-0.588569,-0.588569,-0.588569,-0.588569,-0.588569 +-0.600089,-0.600089,-0.600089,-0.600089,-0.600089,-0.600089 +-0.611609,-0.611609,-0.611609,-0.611609,-0.611609,-0.611609 +-0.623129,-0.623129,-0.623129,-0.623129,-0.623129,-0.623129 +-0.634649,-0.634649,-0.634649,-0.634649,-0.634649,-0.634649 +-0.646169,-0.646169,-0.646169,-0.646169,-0.646169,-0.646169 +-0.657689,-0.657689,-0.657689,-0.657689,-0.657689,-0.657689 +-0.669209,-0.669209,-0.669209,-0.669209,-0.669209,-0.669209 +-0.680729,-0.680729,-0.680729,-0.680729,-0.680729,-0.680729 +-0.692249,-0.692249,-0.692249,-0.692249,-0.692249,-0.692249 +-0.703769,-0.703769,-0.703769,-0.703769,-0.703769,-0.703769 +-0.715289,-0.715289,-0.715289,-0.715289,-0.715289,-0.715289 +-0.726809,-0.726809,-0.726809,-0.726809,-0.726809,-0.726809 +-0.738329,-0.738329,-0.738329,-0.738329,-0.738329,-0.738329 +-0.749849,-0.749849,-0.749849,-0.749849,-0.749849,-0.749849 +-0.761369,-0.761369,-0.761369,-0.761369,-0.761369,-0.761369 +-0.772889,-0.772889,-0.772889,-0.772889,-0.772889,-0.772889 +-0.784409,-0.784409,-0.784409,-0.784409,-0.784409,-0.784409 +-0.795929,-0.795929,-0.795929,-0.795929,-0.795929,-0.795929 +-0.807449,-0.807449,-0.807449,-0.807449,-0.807449,-0.807449 +-0.818969,-0.818969,-0.818969,-0.818969,-0.818969,-0.818969 +-0.830489,-0.830489,-0.830489,-0.830489,-0.830489,-0.830489 +-0.842009,-0.842009,-0.842009,-0.842009,-0.842009,-0.842009 +-0.853529,-0.853529,-0.853529,-0.853529,-0.853529,-0.853529 +-0.865049,-0.865049,-0.865049,-0.865049,-0.865049,-0.865049 +-0.876569,-0.876569,-0.876569,-0.876569,-0.876569,-0.876569 +-0.888089,-0.888089,-0.888089,-0.888089,-0.888089,-0.888089 +-0.899609,-0.899609,-0.899609,-0.899609,-0.899609,-0.899609 +-0.911129,-0.911129,-0.911129,-0.911129,-0.911129,-0.911129 +-0.922649,-0.922649,-0.922649,-0.922649,-0.922649,-0.922649 +-0.934169,-0.934169,-0.934169,-0.934169,-0.934169,-0.934169 +-0.945689,-0.945689,-0.945689,-0.945689,-0.945689,-0.945689 +-0.957209,-0.957209,-0.957209,-0.957209,-0.957209,-0.957209 +-0.968729,-0.968729,-0.968729,-0.968729,-0.968729,-0.968729 +-0.980249,-0.980249,-0.980249,-0.980249,-0.980249,-0.980249 +-0.991769,-0.991769,-0.991769,-0.991769,-0.991769,-0.991769 +-1.003289,-1.003289,-1.003289,-1.003289,-1.003289,-1.003289 +-1.014809,-1.014809,-1.014809,-1.014809,-1.014809,-1.014809 +-1.026329,-1.026329,-1.026329,-1.026329,-1.026329,-1.026329 +-1.037849,-1.037849,-1.037849,-1.037849,-1.037849,-1.037849 +-1.049369,-1.049369,-1.049369,-1.049369,-1.049369,-1.049369 +-1.060889,-1.060889,-1.060889,-1.060889,-1.060889,-1.060889 +-1.072409,-1.072409,-1.072409,-1.072409,-1.072409,-1.072409 +-1.083929,-1.083929,-1.083929,-1.083929,-1.083929,-1.083929 +-1.095449,-1.095449,-1.095449,-1.095449,-1.095449,-1.095449 +-1.106969,-1.106969,-1.106969,-1.106969,-1.106969,-1.106969 +-1.118489,-1.118489,-1.118489,-1.118489,-1.118489,-1.118489 +-1.130009,-1.130009,-1.130009,-1.130009,-1.130009,-1.130009 +-1.141529,-1.141529,-1.141529,-1.141529,-1.141529,-1.141529 +-1.153049,-1.153049,-1.153049,-1.153049,-1.153049,-1.153049 +-1.164569,-1.164569,-1.164569,-1.164569,-1.164569,-1.164569 +-1.176089,-1.176089,-1.176089,-1.176089,-1.176089,-1.176089 +-1.187609,-1.187609,-1.187609,-1.187609,-1.187609,-1.187609 +-1.199129,-1.199129,-1.199129,-1.199129,-1.199129,-1.199129 +-1.210649,-1.210649,-1.210649,-1.210649,-1.210649,-1.210649 +-1.222169,-1.222169,-1.222169,-1.222169,-1.222169,-1.222169 +-1.233689,-1.233689,-1.233689,-1.233689,-1.233689,-1.233689 +-1.245209,-1.245209,-1.245209,-1.245209,-1.245209,-1.245209 +-1.256729,-1.256729,-1.256729,-1.256729,-1.256729,-1.256729 +-1.268249,-1.268249,-1.268249,-1.268249,-1.268249,-1.268249 +-1.279769,-1.279769,-1.279769,-1.279769,-1.279769,-1.279769 +-1.291289,-1.291289,-1.291289,-1.291289,-1.291289,-1.291289 +-1.302809,-1.302809,-1.302809,-1.302809,-1.302809,-1.302809 +-1.314329,-1.314329,-1.314329,-1.314329,-1.314329,-1.314329 +-1.325849,-1.325849,-1.325849,-1.325849,-1.325849,-1.325849 +-1.337369,-1.337369,-1.337369,-1.337369,-1.337369,-1.337369 +-1.348889,-1.348889,-1.348889,-1.348889,-1.348889,-1.348889 +-1.360409,-1.360409,-1.360409,-1.360409,-1.360409,-1.360409 +-1.371929,-1.371929,-1.371929,-1.371929,-1.371929,-1.371929 +-1.383449,-1.383449,-1.383449,-1.383449,-1.383449,-1.383449 +-1.394969,-1.394969,-1.394969,-1.394969,-1.394969,-1.394969 +-1.406489,-1.406489,-1.406489,-1.406489,-1.406489,-1.406489 +-1.418009,-1.418009,-1.418009,-1.418009,-1.418009,-1.418009 +-1.429529,-1.429529,-1.429529,-1.429529,-1.429529,-1.429529 +-1.441049,-1.441049,-1.441049,-1.441049,-1.441049,-1.441049 +-1.452569,-1.452569,-1.452569,-1.452569,-1.452569,-1.452569 +-1.464089,-1.464089,-1.464089,-1.464089,-1.464089,-1.464089 +-1.475609,-1.475609,-1.475609,-1.475609,-1.475609,-1.475609 +-1.487129,-1.487129,-1.487129,-1.487129,-1.487129,-1.487129 +-1.498649,-1.498649,-1.498649,-1.498649,-1.498649,-1.498649 +-1.510156,-1.510156,-1.510156,-1.510156,-1.510156,-1.510156 +-1.521627,-1.521627,-1.521627,-1.521627,-1.521627,-1.521627 +-1.533038,-1.533038,-1.533038,-1.533038,-1.533038,-1.533038 +-1.544365,-1.544365,-1.544365,-1.544365,-1.544365,-1.544365 +-1.555585,-1.555585,-1.555585,-1.555585,-1.555585,-1.555585 +-1.566672,-1.566672,-1.566672,-1.566672,-1.566672,-1.566672 +-1.577603,-1.577603,-1.577603,-1.577603,-1.577603,-1.577603 +-1.588354,-1.588354,-1.588354,-1.588354,-1.588354,-1.588354 +-1.598902,-1.598902,-1.598902,-1.598902,-1.598902,-1.598902 +-1.609221,-1.609221,-1.609221,-1.609221,-1.609221,-1.609221 +-1.619289,-1.619289,-1.619289,-1.619289,-1.619289,-1.619289 +-1.62908,-1.62908,-1.62908,-1.62908,-1.62908,-1.62908 +-1.638572,-1.638572,-1.638572,-1.638572,-1.638572,-1.638572 +-1.647739,-1.647739,-1.647739,-1.647739,-1.647739,-1.647739 +-1.656559,-1.656559,-1.656559,-1.656559,-1.656559,-1.656559 +-1.665007,-1.665007,-1.665007,-1.665007,-1.665007,-1.665007 +-1.673058,-1.673058,-1.673058,-1.673058,-1.673058,-1.673058 +-1.68069,-1.68069,-1.68069,-1.68069,-1.68069,-1.68069 +-1.687878,-1.687878,-1.687878,-1.687878,-1.687878,-1.687878 +-1.694598,-1.694598,-1.694598,-1.694598,-1.694598,-1.694598 +-1.700826,-1.700826,-1.700826,-1.700826,-1.700826,-1.700826 +-1.706539,-1.706539,-1.706539,-1.706539,-1.706539,-1.706539 +-1.711742,-1.711742,-1.711742,-1.711742,-1.711742,-1.711742 +-1.716456,-1.716456,-1.716456,-1.716456,-1.716456,-1.716456 +-1.720707,-1.720707,-1.720707,-1.720707,-1.720707,-1.720707 +-1.724519,-1.724519,-1.724519,-1.724519,-1.724519,-1.724519 +-1.727915,-1.727915,-1.727915,-1.727915,-1.727915,-1.727915 +-1.730919,-1.730919,-1.730919,-1.730919,-1.730919,-1.730919 +-1.733555,-1.733555,-1.733555,-1.733555,-1.733555,-1.733555 +-1.735848,-1.735848,-1.735848,-1.735848,-1.735848,-1.735848 +-1.737821,-1.737821,-1.737821,-1.737821,-1.737821,-1.737821 +-1.739498,-1.739498,-1.739498,-1.739498,-1.739498,-1.739498 +-1.740904,-1.740904,-1.740904,-1.740904,-1.740904,-1.740904 +-1.742062,-1.742062,-1.742062,-1.742062,-1.742062,-1.742062 +-1.742997,-1.742997,-1.742997,-1.742997,-1.742997,-1.742997 +-1.743731,-1.743731,-1.743731,-1.743731,-1.743731,-1.743731 +-1.74429,-1.74429,-1.74429,-1.74429,-1.74429,-1.74429 +-1.744698,-1.744698,-1.744698,-1.744698,-1.744698,-1.744698 +-1.744978,-1.744978,-1.744978,-1.744978,-1.744978,-1.744978 +-1.745154,-1.745154,-1.745154,-1.745154,-1.745154,-1.745154 +-1.74525,-1.74525,-1.74525,-1.74525,-1.74525,-1.74525 +-1.745291,-1.745291,-1.745291,-1.745291,-1.745291,-1.745291 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745268,-1.745268,-1.745268,-1.745268,-1.745268,-1.745268 +-1.745192,-1.745192,-1.745192,-1.745192,-1.745192,-1.745192 +-1.745044,-1.745044,-1.745044,-1.745044,-1.745044,-1.745044 +-1.7448,-1.7448,-1.7448,-1.7448,-1.7448,-1.7448 +-1.744436,-1.744436,-1.744436,-1.744436,-1.744436,-1.744436 +-1.743928,-1.743928,-1.743928,-1.743928,-1.743928,-1.743928 +-1.743252,-1.743252,-1.743252,-1.743252,-1.743252,-1.743252 +-1.742384,-1.742384,-1.742384,-1.742384,-1.742384,-1.742384 +-1.7413,-1.7413,-1.7413,-1.7413,-1.7413,-1.7413 +-1.739976,-1.739976,-1.739976,-1.739976,-1.739976,-1.739976 +-1.738388,-1.738388,-1.738388,-1.738388,-1.738388,-1.738388 +-1.736512,-1.736512,-1.736512,-1.736512,-1.736512,-1.736512 +-1.734324,-1.734324,-1.734324,-1.734324,-1.734324,-1.734324 +-1.7318,-1.7318,-1.7318,-1.7318,-1.7318,-1.7318 +-1.728916,-1.728916,-1.728916,-1.728916,-1.728916,-1.728916 +-1.725648,-1.725648,-1.725648,-1.725648,-1.725648,-1.725648 +-1.721972,-1.721972,-1.721972,-1.721972,-1.721972,-1.721972 +-1.717864,-1.717864,-1.717864,-1.717864,-1.717864,-1.717864 +-1.7133,-1.7133,-1.7133,-1.7133,-1.7133,-1.7133 +-1.708256,-1.708256,-1.708256,-1.708256,-1.708256,-1.708256 +-1.702708,-1.702708,-1.702708,-1.702708,-1.702708,-1.702708 +-1.696642,-1.696642,-1.696642,-1.696642,-1.696642,-1.696642 +-1.690077,-1.690077,-1.690077,-1.690077,-1.690077,-1.690077 +-1.683036,-1.683036,-1.683036,-1.683036,-1.683036,-1.683036 +-1.675544,-1.675544,-1.675544,-1.675544,-1.675544,-1.675544 +-1.667624,-1.667624,-1.667624,-1.667624,-1.667624,-1.667624 +-1.6593,-1.6593,-1.6593,-1.6593,-1.6593,-1.6593 +-1.650597,-1.650597,-1.650597,-1.650597,-1.650597,-1.650597 +-1.641538,-1.641538,-1.641538,-1.641538,-1.641538,-1.641538 +-1.632147,-1.632147,-1.632147,-1.632147,-1.632147,-1.632147 +-1.622449,-1.622449,-1.622449,-1.622449,-1.622449,-1.622449 +-1.612467,-1.612467,-1.612467,-1.612467,-1.612467,-1.612467 +-1.602225,-1.602225,-1.602225,-1.602225,-1.602225,-1.602225 +-1.591748,-1.591748,-1.591748,-1.591748,-1.591748,-1.591748 +-1.581059,-1.581059,-1.581059,-1.581059,-1.581059,-1.581059 +-1.570183,-1.570183,-1.570183,-1.570183,-1.570183,-1.570183 +-1.559143,-1.559143,-1.559143,-1.559143,-1.559143,-1.559143 +-1.547963,-1.547963,-1.547963,-1.547963,-1.547963,-1.547963 +-1.536668,-1.536668,-1.536668,-1.536668,-1.536668,-1.536668 +-1.525281,-1.525281,-1.525281,-1.525281,-1.525281,-1.525281 +-1.513827,-1.513827,-1.513827,-1.513827,-1.513827,-1.513827 +-1.502328,-1.502328,-1.502328,-1.502328,-1.502328,-1.502328 +-1.490811,-1.490811,-1.490811,-1.490811,-1.490811,-1.490811 +-1.479291,-1.479291,-1.479291,-1.479291,-1.479291,-1.479291 +-1.467771,-1.467771,-1.467771,-1.467771,-1.467771,-1.467771 +-1.456251,-1.456251,-1.456251,-1.456251,-1.456251,-1.456251 +-1.444731,-1.444731,-1.444731,-1.444731,-1.444731,-1.444731 +-1.433211,-1.433211,-1.433211,-1.433211,-1.433211,-1.433211 +-1.421691,-1.421691,-1.421691,-1.421691,-1.421691,-1.421691 +-1.410171,-1.410171,-1.410171,-1.410171,-1.410171,-1.410171 +-1.398651,-1.398651,-1.398651,-1.398651,-1.398651,-1.398651 +-1.387131,-1.387131,-1.387131,-1.387131,-1.387131,-1.387131 +-1.375611,-1.375611,-1.375611,-1.375611,-1.375611,-1.375611 +-1.364091,-1.364091,-1.364091,-1.364091,-1.364091,-1.364091 +-1.352571,-1.352571,-1.352571,-1.352571,-1.352571,-1.352571 +-1.341051,-1.341051,-1.341051,-1.341051,-1.341051,-1.341051 +-1.329531,-1.329531,-1.329531,-1.329531,-1.329531,-1.329531 +-1.318011,-1.318011,-1.318011,-1.318011,-1.318011,-1.318011 +-1.306491,-1.306491,-1.306491,-1.306491,-1.306491,-1.306491 +-1.294971,-1.294971,-1.294971,-1.294971,-1.294971,-1.294971 +-1.283451,-1.283451,-1.283451,-1.283451,-1.283451,-1.283451 +-1.271931,-1.271931,-1.271931,-1.271931,-1.271931,-1.271931 +-1.260411,-1.260411,-1.260411,-1.260411,-1.260411,-1.260411 +-1.248891,-1.248891,-1.248891,-1.248891,-1.248891,-1.248891 +-1.237371,-1.237371,-1.237371,-1.237371,-1.237371,-1.237371 +-1.225851,-1.225851,-1.225851,-1.225851,-1.225851,-1.225851 +-1.214331,-1.214331,-1.214331,-1.214331,-1.214331,-1.214331 +-1.202811,-1.202811,-1.202811,-1.202811,-1.202811,-1.202811 +-1.191291,-1.191291,-1.191291,-1.191291,-1.191291,-1.191291 +-1.179771,-1.179771,-1.179771,-1.179771,-1.179771,-1.179771 +-1.168251,-1.168251,-1.168251,-1.168251,-1.168251,-1.168251 +-1.156731,-1.156731,-1.156731,-1.156731,-1.156731,-1.156731 +-1.145211,-1.145211,-1.145211,-1.145211,-1.145211,-1.145211 +-1.133691,-1.133691,-1.133691,-1.133691,-1.133691,-1.133691 +-1.122171,-1.122171,-1.122171,-1.122171,-1.122171,-1.122171 +-1.110651,-1.110651,-1.110651,-1.110651,-1.110651,-1.110651 +-1.099131,-1.099131,-1.099131,-1.099131,-1.099131,-1.099131 +-1.087611,-1.087611,-1.087611,-1.087611,-1.087611,-1.087611 +-1.076091,-1.076091,-1.076091,-1.076091,-1.076091,-1.076091 +-1.064571,-1.064571,-1.064571,-1.064571,-1.064571,-1.064571 +-1.053051,-1.053051,-1.053051,-1.053051,-1.053051,-1.053051 +-1.041531,-1.041531,-1.041531,-1.041531,-1.041531,-1.041531 +-1.030011,-1.030011,-1.030011,-1.030011,-1.030011,-1.030011 +-1.018491,-1.018491,-1.018491,-1.018491,-1.018491,-1.018491 +-1.006971,-1.006971,-1.006971,-1.006971,-1.006971,-1.006971 +-0.995451,-0.995451,-0.995451,-0.995451,-0.995451,-0.995451 +-0.983931,-0.983931,-0.983931,-0.983931,-0.983931,-0.983931 +-0.972411,-0.972411,-0.972411,-0.972411,-0.972411,-0.972411 +-0.960891,-0.960891,-0.960891,-0.960891,-0.960891,-0.960891 +-0.949371,-0.949371,-0.949371,-0.949371,-0.949371,-0.949371 +-0.937851,-0.937851,-0.937851,-0.937851,-0.937851,-0.937851 +-0.926331,-0.926331,-0.926331,-0.926331,-0.926331,-0.926331 +-0.914811,-0.914811,-0.914811,-0.914811,-0.914811,-0.914811 +-0.903291,-0.903291,-0.903291,-0.903291,-0.903291,-0.903291 +-0.891771,-0.891771,-0.891771,-0.891771,-0.891771,-0.891771 +-0.880251,-0.880251,-0.880251,-0.880251,-0.880251,-0.880251 +-0.868731,-0.868731,-0.868731,-0.868731,-0.868731,-0.868731 +-0.857211,-0.857211,-0.857211,-0.857211,-0.857211,-0.857211 +-0.845691,-0.845691,-0.845691,-0.845691,-0.845691,-0.845691 +-0.834171,-0.834171,-0.834171,-0.834171,-0.834171,-0.834171 +-0.822651,-0.822651,-0.822651,-0.822651,-0.822651,-0.822651 +-0.811131,-0.811131,-0.811131,-0.811131,-0.811131,-0.811131 +-0.799611,-0.799611,-0.799611,-0.799611,-0.799611,-0.799611 +-0.788091,-0.788091,-0.788091,-0.788091,-0.788091,-0.788091 +-0.776571,-0.776571,-0.776571,-0.776571,-0.776571,-0.776571 +-0.765051,-0.765051,-0.765051,-0.765051,-0.765051,-0.765051 +-0.753531,-0.753531,-0.753531,-0.753531,-0.753531,-0.753531 +-0.742011,-0.742011,-0.742011,-0.742011,-0.742011,-0.742011 +-0.730491,-0.730491,-0.730491,-0.730491,-0.730491,-0.730491 +-0.718971,-0.718971,-0.718971,-0.718971,-0.718971,-0.718971 +-0.707451,-0.707451,-0.707451,-0.707451,-0.707451,-0.707451 +-0.695931,-0.695931,-0.695931,-0.695931,-0.695931,-0.695931 +-0.684411,-0.684411,-0.684411,-0.684411,-0.684411,-0.684411 +-0.672891,-0.672891,-0.672891,-0.672891,-0.672891,-0.672891 +-0.661371,-0.661371,-0.661371,-0.661371,-0.661371,-0.661371 +-0.649851,-0.649851,-0.649851,-0.649851,-0.649851,-0.649851 +-0.638331,-0.638331,-0.638331,-0.638331,-0.638331,-0.638331 +-0.626811,-0.626811,-0.626811,-0.626811,-0.626811,-0.626811 +-0.615291,-0.615291,-0.615291,-0.615291,-0.615291,-0.615291 +-0.603771,-0.603771,-0.603771,-0.603771,-0.603771,-0.603771 +-0.592251,-0.592251,-0.592251,-0.592251,-0.592251,-0.592251 +-0.580731,-0.580731,-0.580731,-0.580731,-0.580731,-0.580731 +-0.569211,-0.569211,-0.569211,-0.569211,-0.569211,-0.569211 +-0.557691,-0.557691,-0.557691,-0.557691,-0.557691,-0.557691 +-0.546171,-0.546171,-0.546171,-0.546171,-0.546171,-0.546171 +-0.534651,-0.534651,-0.534651,-0.534651,-0.534651,-0.534651 +-0.523131,-0.523131,-0.523131,-0.523131,-0.523131,-0.523131 +-0.511611,-0.511611,-0.511611,-0.511611,-0.511611,-0.511611 +-0.500091,-0.500091,-0.500091,-0.500091,-0.500091,-0.500091 +-0.488571,-0.488571,-0.488571,-0.488571,-0.488571,-0.488571 +-0.477051,-0.477051,-0.477051,-0.477051,-0.477051,-0.477051 +-0.465531,-0.465531,-0.465531,-0.465531,-0.465531,-0.465531 +-0.454011,-0.454011,-0.454011,-0.454011,-0.454011,-0.454011 +-0.442491,-0.442491,-0.442491,-0.442491,-0.442491,-0.442491 +-0.430971,-0.430971,-0.430971,-0.430971,-0.430971,-0.430971 +-0.419451,-0.419451,-0.419451,-0.419451,-0.419451,-0.419451 +-0.407931,-0.407931,-0.407931,-0.407931,-0.407931,-0.407931 +-0.396411,-0.396411,-0.396411,-0.396411,-0.396411,-0.396411 +-0.384891,-0.384891,-0.384891,-0.384891,-0.384891,-0.384891 +-0.373371,-0.373371,-0.373371,-0.373371,-0.373371,-0.373371 +-0.361851,-0.361851,-0.361851,-0.361851,-0.361851,-0.361851 +-0.350331,-0.350331,-0.350331,-0.350331,-0.350331,-0.350331 +-0.338811,-0.338811,-0.338811,-0.338811,-0.338811,-0.338811 +-0.327291,-0.327291,-0.327291,-0.327291,-0.327291,-0.327291 +-0.315771,-0.315771,-0.315771,-0.315771,-0.315771,-0.315771 +-0.304251,-0.304251,-0.304251,-0.304251,-0.304251,-0.304251 +-0.292731,-0.292731,-0.292731,-0.292731,-0.292731,-0.292731 +-0.281211,-0.281211,-0.281211,-0.281211,-0.281211,-0.281211 +-0.269691,-0.269691,-0.269691,-0.269691,-0.269691,-0.269691 +-0.258171,-0.258171,-0.258171,-0.258171,-0.258171,-0.258171 +-0.246651,-0.246651,-0.246651,-0.246651,-0.246651,-0.246651 +-0.235144,-0.235144,-0.235144,-0.235144,-0.235144,-0.235144 +-0.223673,-0.223673,-0.223673,-0.223673,-0.223673,-0.223673 +-0.212262,-0.212262,-0.212262,-0.212262,-0.212262,-0.212262 +-0.200935,-0.200935,-0.200935,-0.200935,-0.200935,-0.200935 +-0.189715,-0.189715,-0.189715,-0.189715,-0.189715,-0.189715 +-0.178628,-0.178628,-0.178628,-0.178628,-0.178628,-0.178628 +-0.167697,-0.167697,-0.167697,-0.167697,-0.167697,-0.167697 +-0.156946,-0.156946,-0.156946,-0.156946,-0.156946,-0.156946 +-0.146398,-0.146398,-0.146398,-0.146398,-0.146398,-0.146398 +-0.136079,-0.136079,-0.136079,-0.136079,-0.136079,-0.136079 +-0.126011,-0.126011,-0.126011,-0.126011,-0.126011,-0.126011 +-0.11622,-0.11622,-0.11622,-0.11622,-0.11622,-0.11622 +-0.106728,-0.106728,-0.106728,-0.106728,-0.106728,-0.106728 +-0.097561,-0.097561,-0.097561,-0.097561,-0.097561,-0.097561 +-0.088741,-0.088741,-0.088741,-0.088741,-0.088741,-0.088741 +-0.080293,-0.080293,-0.080293,-0.080293,-0.080293,-0.080293 +-0.072242,-0.072242,-0.072242,-0.072242,-0.072242,-0.072242 +-0.06461,-0.06461,-0.06461,-0.06461,-0.06461,-0.06461 +-0.057422,-0.057422,-0.057422,-0.057422,-0.057422,-0.057422 +-0.050702,-0.050702,-0.050702,-0.050702,-0.050702,-0.050702 +-0.044474,-0.044474,-0.044474,-0.044474,-0.044474,-0.044474 +-0.038761,-0.038761,-0.038761,-0.038761,-0.038761,-0.038761 +-0.033558,-0.033558,-0.033558,-0.033558,-0.033558,-0.033558 +-0.028844,-0.028844,-0.028844,-0.028844,-0.028844,-0.028844 +-0.024593,-0.024593,-0.024593,-0.024593,-0.024593,-0.024593 +-0.020781,-0.020781,-0.020781,-0.020781,-0.020781,-0.020781 +-0.017385,-0.017385,-0.017385,-0.017385,-0.017385,-0.017385 +-0.014381,-0.014381,-0.014381,-0.014381,-0.014381,-0.014381 +-0.011745,-0.011745,-0.011745,-0.011745,-0.011745,-0.011745 +-0.009452,-0.009452,-0.009452,-0.009452,-0.009452,-0.009452 +-0.007479,-0.007479,-0.007479,-0.007479,-0.007479,-0.007479 +-0.005802,-0.005802,-0.005802,-0.005802,-0.005802,-0.005802 +-0.004396,-0.004396,-0.004396,-0.004396,-0.004396,-0.004396 +-0.003238,-0.003238,-0.003238,-0.003238,-0.003238,-0.003238 +-0.002303,-0.002303,-0.002303,-0.002303,-0.002303,-0.002303 +-0.001569,-0.001569,-0.001569,-0.001569,-0.001569,-0.001569 +-0.00101,-0.00101,-0.00101,-0.00101,-0.00101,-0.00101 +-0.000602,-0.000602,-0.000602,-0.000602,-0.000602,-0.000602 +-0.000322,-0.000322,-0.000322,-0.000322,-0.000322,-0.000322 +-0.000146,-0.000146,-0.000146,-0.000146,-0.000146,-0.000146 +-0.00005,-0.00005,-0.00005,-0.00005,-0.00005,-0.00005 +-0.000009,-0.000009,-0.000009,-0.000009,-0.000009,-0.000009 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000034,0.000034,0.000034,0.000034,0.000034,0.000034 +0.000115,0.000115,0.000115,0.000115,0.000115,0.000115 +0.000272,0.000272,0.000272,0.000272,0.000272,0.000272 +0.000531,0.000531,0.000531,0.000531,0.000531,0.000531 +0.000918,0.000918,0.000918,0.000918,0.000918,0.000918 +0.001458,0.001458,0.001458,0.001458,0.001458,0.001458 +0.002176,0.002176,0.002176,0.002176,0.002176,0.002176 +0.003098,0.003098,0.003098,0.003098,0.003098,0.003098 +0.00425,0.00425,0.00425,0.00425,0.00425,0.00425 +0.005657,0.005657,0.005657,0.005657,0.005657,0.005657 +0.007344,0.007344,0.007344,0.007344,0.007344,0.007344 +0.009337,0.009337,0.009337,0.009337,0.009337,0.009337 +0.011662,0.011662,0.011662,0.011662,0.011662,0.011662 +0.014344,0.014344,0.014344,0.014344,0.014344,0.014344 +0.017408,0.017408,0.017408,0.017408,0.017408,0.017408 +0.02088,0.02088,0.02088,0.02088,0.02088,0.02088 +0.024786,0.024786,0.024786,0.024786,0.024786,0.024786 +0.029151,0.029151,0.029151,0.029151,0.029151,0.029151 +0.034,0.034,0.034,0.034,0.034,0.034 +0.039359,0.039359,0.039359,0.039359,0.039359,0.039359 +0.045254,0.045254,0.045254,0.045254,0.045254,0.045254 +0.051709,0.051709,0.051709,0.051709,0.051709,0.051709 +0.058728,0.058728,0.058728,0.058728,0.058728,0.058728 +0.066286,0.066286,0.066286,0.066286,0.066286,0.066286 +0.074359,0.074359,0.074359,0.074359,0.074359,0.074359 +0.08292,0.08292,0.08292,0.08292,0.08292,0.08292 +0.091945,0.091945,0.091945,0.091945,0.091945,0.091945 +0.101407,0.101407,0.101407,0.101407,0.101407,0.101407 +0.111282,0.111282,0.111282,0.111282,0.111282,0.111282 +0.121543,0.121543,0.121543,0.121543,0.121543,0.121543 +0.132166,0.132166,0.132166,0.132166,0.132166,0.132166 +0.143124,0.143124,0.143124,0.143124,0.143124,0.143124 +0.154393,0.154393,0.154393,0.154393,0.154393,0.154393 +0.165946,0.165946,0.165946,0.165946,0.165946,0.165946 +0.177759,0.177759,0.177759,0.177759,0.177759,0.177759 +0.189805,0.189805,0.189805,0.189805,0.189805,0.189805 +0.20206,0.20206,0.20206,0.20206,0.20206,0.20206 +0.214497,0.214497,0.214497,0.214497,0.214497,0.214497 +0.227092,0.227092,0.227092,0.227092,0.227092,0.227092 +0.239818,0.239818,0.239818,0.239818,0.239818,0.239818 +0.252651,0.252651,0.252651,0.252651,0.252651,0.252651 +0.265564,0.265564,0.265564,0.265564,0.265564,0.265564 +0.278532,0.278532,0.278532,0.278532,0.278532,0.278532 +0.291531,0.291531,0.291531,0.291531,0.291531,0.291531 +0.304536,0.304536,0.304536,0.304536,0.304536,0.304536 +0.317541,0.317541,0.317541,0.317541,0.317541,0.317541 +0.330546,0.330546,0.330546,0.330546,0.330546,0.330546 +0.343551,0.343551,0.343551,0.343551,0.343551,0.343551 +0.356556,0.356556,0.356556,0.356556,0.356556,0.356556 +0.369561,0.369561,0.369561,0.369561,0.369561,0.369561 +0.382566,0.382566,0.382566,0.382566,0.382566,0.382566 +0.395571,0.395571,0.395571,0.395571,0.395571,0.395571 +0.408576,0.408576,0.408576,0.408576,0.408576,0.408576 +0.421581,0.421581,0.421581,0.421581,0.421581,0.421581 +0.434586,0.434586,0.434586,0.434586,0.434586,0.434586 +0.447591,0.447591,0.447591,0.447591,0.447591,0.447591 +0.460596,0.460596,0.460596,0.460596,0.460596,0.460596 +0.473601,0.473601,0.473601,0.473601,0.473601,0.473601 +0.486606,0.486606,0.486606,0.486606,0.486606,0.486606 +0.499611,0.499611,0.499611,0.499611,0.499611,0.499611 +0.512616,0.512616,0.512616,0.512616,0.512616,0.512616 +0.525621,0.525621,0.525621,0.525621,0.525621,0.525621 +0.538626,0.538626,0.538626,0.538626,0.538626,0.538626 +0.551631,0.551631,0.551631,0.551631,0.551631,0.551631 +0.564636,0.564636,0.564636,0.564636,0.564636,0.564636 +0.577641,0.577641,0.577641,0.577641,0.577641,0.577641 +0.590646,0.590646,0.590646,0.590646,0.590646,0.590646 +0.603651,0.603651,0.603651,0.603651,0.603651,0.603651 +0.616656,0.616656,0.616656,0.616656,0.616656,0.616656 +0.629661,0.629661,0.629661,0.629661,0.629661,0.629661 +0.642666,0.642666,0.642666,0.642666,0.642666,0.642666 +0.655671,0.655671,0.655671,0.655671,0.655671,0.655671 +0.668676,0.668676,0.668676,0.668676,0.668676,0.668676 +0.681681,0.681681,0.681681,0.681681,0.681681,0.681681 +0.694686,0.694686,0.694686,0.694686,0.694686,0.694686 +0.707691,0.707691,0.707691,0.707691,0.707691,0.707691 +0.720696,0.720696,0.720696,0.720696,0.720696,0.720696 +0.733701,0.733701,0.733701,0.733701,0.733701,0.733701 +0.746706,0.746706,0.746706,0.746706,0.746706,0.746706 +0.759711,0.759711,0.759711,0.759711,0.759711,0.759711 +0.772716,0.772716,0.772716,0.772716,0.772716,0.772716 +0.785721,0.785721,0.785721,0.785721,0.785721,0.785721 +0.798726,0.798726,0.798726,0.798726,0.798726,0.798726 +0.811731,0.811731,0.811731,0.811731,0.811731,0.811731 +0.824736,0.824736,0.824736,0.824736,0.824736,0.824736 +0.837741,0.837741,0.837741,0.837741,0.837741,0.837741 +0.850746,0.850746,0.850746,0.850746,0.850746,0.850746 +0.863751,0.863751,0.863751,0.863751,0.863751,0.863751 +0.876756,0.876756,0.876756,0.876756,0.876756,0.876756 +0.889761,0.889761,0.889761,0.889761,0.889761,0.889761 +0.902766,0.902766,0.902766,0.902766,0.902766,0.902766 +0.915771,0.915771,0.915771,0.915771,0.915771,0.915771 +0.928776,0.928776,0.928776,0.928776,0.928776,0.928776 +0.941781,0.941781,0.941781,0.941781,0.941781,0.941781 +0.954786,0.954786,0.954786,0.954786,0.954786,0.954786 +0.967791,0.967791,0.967791,0.967791,0.967791,0.967791 +0.980796,0.980796,0.980796,0.980796,0.980796,0.980796 +0.993801,0.993801,0.993801,0.993801,0.993801,0.993801 +1.006806,1.006806,1.006806,1.006806,1.006806,1.006806 +1.019811,1.019811,1.019811,1.019811,1.019811,1.019811 +1.032816,1.032816,1.032816,1.032816,1.032816,1.032816 +1.045821,1.045821,1.045821,1.045821,1.045821,1.045821 +1.058826,1.058826,1.058826,1.058826,1.058826,1.058826 +1.071831,1.071831,1.071831,1.071831,1.071831,1.071831 +1.084836,1.084836,1.084836,1.084836,1.084836,1.084836 +1.097841,1.097841,1.097841,1.097841,1.097841,1.097841 +1.110846,1.110846,1.110846,1.110846,1.110846,1.110846 +1.123851,1.123851,1.123851,1.123851,1.123851,1.123851 +1.136856,1.136856,1.136856,1.136856,1.136856,1.136856 +1.149861,1.149861,1.149861,1.149861,1.149861,1.149861 +1.162866,1.162866,1.162866,1.162866,1.162866,1.162866 +1.175871,1.175871,1.175871,1.175871,1.175871,1.175871 +1.188876,1.188876,1.188876,1.188876,1.188876,1.188876 +1.201881,1.201881,1.201881,1.201881,1.201881,1.201881 +1.214886,1.214886,1.214886,1.214886,1.214886,1.214886 +1.227891,1.227891,1.227891,1.227891,1.227891,1.227891 +1.240896,1.240896,1.240896,1.240896,1.240896,1.240896 +1.253901,1.253901,1.253901,1.253901,1.253901,1.253901 +1.266906,1.266906,1.266906,1.266906,1.266906,1.266906 +1.279911,1.279911,1.279911,1.279911,1.279911,1.279911 +1.292916,1.292916,1.292916,1.292916,1.292916,1.292916 +1.305921,1.305921,1.305921,1.305921,1.305921,1.305921 +1.318926,1.318926,1.318926,1.318926,1.318926,1.318926 +1.331931,1.331931,1.331931,1.331931,1.331931,1.331931 +1.344936,1.344936,1.344936,1.344936,1.344936,1.344936 +1.357941,1.357941,1.357941,1.357941,1.357941,1.357941 +1.370946,1.370946,1.370946,1.370946,1.370946,1.370946 +1.383951,1.383951,1.383951,1.383951,1.383951,1.383951 +1.396956,1.396956,1.396956,1.396956,1.396956,1.396956 +1.409961,1.409961,1.409961,1.409961,1.409961,1.409961 +1.422966,1.422966,1.422966,1.422966,1.422966,1.422966 +1.435971,1.435971,1.435971,1.435971,1.435971,1.435971 +1.448976,1.448976,1.448976,1.448976,1.448976,1.448976 +1.461979,1.461979,1.461979,1.461979,1.461979,1.461979 +1.474961,1.474961,1.474961,1.474961,1.474961,1.474961 +1.487898,1.487898,1.487898,1.487898,1.487898,1.487898 +1.500763,1.500763,1.500763,1.500763,1.500763,1.500763 +1.513531,1.513531,1.513531,1.513531,1.513531,1.513531 +1.526177,1.526177,1.526177,1.526177,1.526177,1.526177 +1.538676,1.538676,1.538676,1.538676,1.538676,1.538676 +1.551001,1.551001,1.551001,1.551001,1.551001,1.551001 +1.563127,1.563127,1.563127,1.563127,1.563127,1.563127 +1.575028,1.575028,1.575028,1.575028,1.575028,1.575028 +1.58668,1.58668,1.58668,1.58668,1.58668,1.58668 +1.598057,1.598057,1.598057,1.598057,1.598057,1.598057 +1.609133,1.609133,1.609133,1.609133,1.609133,1.609133 +1.619882,1.619882,1.619882,1.619882,1.619882,1.619882 +1.630279,1.630279,1.630279,1.630279,1.630279,1.630279 +1.6403,1.6403,1.6403,1.6403,1.6403,1.6403 +1.649917,1.649917,1.649917,1.649917,1.649917,1.649917 +1.659106,1.659106,1.659106,1.659106,1.659106,1.659106 +1.667841,1.667841,1.667841,1.667841,1.667841,1.667841 +1.676097,1.676097,1.676097,1.676097,1.676097,1.676097 +1.683848,1.683848,1.683848,1.683848,1.683848,1.683848 +1.691068,1.691068,1.691068,1.691068,1.691068,1.691068 +1.697733,1.697733,1.697733,1.697733,1.697733,1.697733 +1.703832,1.703832,1.703832,1.703832,1.703832,1.703832 +1.709385,1.709385,1.709385,1.709385,1.709385,1.709385 +1.71442,1.71442,1.71442,1.71442,1.71442,1.71442 +1.71896,1.71896,1.71896,1.71896,1.71896,1.71896 +1.723032,1.723032,1.723032,1.723032,1.723032,1.723032 +1.726661,1.726661,1.726661,1.726661,1.726661,1.726661 +1.729873,1.729873,1.729873,1.729873,1.729873,1.729873 +1.732692,1.732692,1.732692,1.732692,1.732692,1.732692 +1.735146,1.735146,1.735146,1.735146,1.735146,1.735146 +1.737258,1.737258,1.737258,1.737258,1.737258,1.737258 +1.739055,1.739055,1.739055,1.739055,1.739055,1.739055 +1.740563,1.740563,1.740563,1.740563,1.740563,1.740563 +1.741805,1.741805,1.741805,1.741805,1.741805,1.741805 +1.742809,1.742809,1.742809,1.742809,1.742809,1.742809 +1.7436,1.7436,1.7436,1.7436,1.7436,1.7436 +1.744202,1.744202,1.744202,1.744202,1.744202,1.744202 +1.744642,1.744642,1.744642,1.744642,1.744642,1.744642 +1.744946,1.744946,1.744946,1.744946,1.744946,1.744946 +1.745138,1.745138,1.745138,1.745138,1.745138,1.745138 +1.745244,1.745244,1.745244,1.745244,1.745244,1.745244 +1.745289,1.745289,1.745289,1.745289,1.745289,1.745289 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745266,1.745266,1.745266,1.745266,1.745266,1.745266 +1.745185,1.745185,1.745185,1.745185,1.745185,1.745185 +1.745028,1.745028,1.745028,1.745028,1.745028,1.745028 +1.744769,1.744769,1.744769,1.744769,1.744769,1.744769 +1.744382,1.744382,1.744382,1.744382,1.744382,1.744382 +1.743842,1.743842,1.743842,1.743842,1.743842,1.743842 +1.743124,1.743124,1.743124,1.743124,1.743124,1.743124 +1.742202,1.742202,1.742202,1.742202,1.742202,1.742202 +1.74105,1.74105,1.74105,1.74105,1.74105,1.74105 +1.739643,1.739643,1.739643,1.739643,1.739643,1.739643 +1.737956,1.737956,1.737956,1.737956,1.737956,1.737956 +1.735963,1.735963,1.735963,1.735963,1.735963,1.735963 +1.733638,1.733638,1.733638,1.733638,1.733638,1.733638 +1.730956,1.730956,1.730956,1.730956,1.730956,1.730956 +1.727892,1.727892,1.727892,1.727892,1.727892,1.727892 +1.72442,1.72442,1.72442,1.72442,1.72442,1.72442 +1.720514,1.720514,1.720514,1.720514,1.720514,1.720514 +1.716149,1.716149,1.716149,1.716149,1.716149,1.716149 +1.7113,1.7113,1.7113,1.7113,1.7113,1.7113 +1.705941,1.705941,1.705941,1.705941,1.705941,1.705941 +1.700046,1.700046,1.700046,1.700046,1.700046,1.700046 +1.693591,1.693591,1.693591,1.693591,1.693591,1.693591 +1.686572,1.686572,1.686572,1.686572,1.686572,1.686572 +1.679014,1.679014,1.679014,1.679014,1.679014,1.679014 +1.670941,1.670941,1.670941,1.670941,1.670941,1.670941 +1.66238,1.66238,1.66238,1.66238,1.66238,1.66238 +1.653355,1.653355,1.653355,1.653355,1.653355,1.653355 +1.643893,1.643893,1.643893,1.643893,1.643893,1.643893 +1.634018,1.634018,1.634018,1.634018,1.634018,1.634018 +1.623757,1.623757,1.623757,1.623757,1.623757,1.623757 +1.613134,1.613134,1.613134,1.613134,1.613134,1.613134 +1.602176,1.602176,1.602176,1.602176,1.602176,1.602176 +1.590907,1.590907,1.590907,1.590907,1.590907,1.590907 +1.579354,1.579354,1.579354,1.579354,1.579354,1.579354 +1.567541,1.567541,1.567541,1.567541,1.567541,1.567541 +1.555495,1.555495,1.555495,1.555495,1.555495,1.555495 +1.54324,1.54324,1.54324,1.54324,1.54324,1.54324 +1.530803,1.530803,1.530803,1.530803,1.530803,1.530803 +1.518208,1.518208,1.518208,1.518208,1.518208,1.518208 +1.505482,1.505482,1.505482,1.505482,1.505482,1.505482 +1.492649,1.492649,1.492649,1.492649,1.492649,1.492649 +1.479736,1.479736,1.479736,1.479736,1.479736,1.479736 +1.466768,1.466768,1.466768,1.466768,1.466768,1.466768 +1.453769,1.453769,1.453769,1.453769,1.453769,1.453769 +1.440764,1.440764,1.440764,1.440764,1.440764,1.440764 +1.427759,1.427759,1.427759,1.427759,1.427759,1.427759 +1.414754,1.414754,1.414754,1.414754,1.414754,1.414754 +1.401749,1.401749,1.401749,1.401749,1.401749,1.401749 +1.388744,1.388744,1.388744,1.388744,1.388744,1.388744 +1.375739,1.375739,1.375739,1.375739,1.375739,1.375739 +1.362734,1.362734,1.362734,1.362734,1.362734,1.362734 +1.349729,1.349729,1.349729,1.349729,1.349729,1.349729 +1.336724,1.336724,1.336724,1.336724,1.336724,1.336724 +1.323719,1.323719,1.323719,1.323719,1.323719,1.323719 +1.310714,1.310714,1.310714,1.310714,1.310714,1.310714 +1.297709,1.297709,1.297709,1.297709,1.297709,1.297709 +1.284704,1.284704,1.284704,1.284704,1.284704,1.284704 +1.271699,1.271699,1.271699,1.271699,1.271699,1.271699 +1.258694,1.258694,1.258694,1.258694,1.258694,1.258694 +1.245689,1.245689,1.245689,1.245689,1.245689,1.245689 +1.232684,1.232684,1.232684,1.232684,1.232684,1.232684 +1.219679,1.219679,1.219679,1.219679,1.219679,1.219679 +1.206674,1.206674,1.206674,1.206674,1.206674,1.206674 +1.193669,1.193669,1.193669,1.193669,1.193669,1.193669 +1.180664,1.180664,1.180664,1.180664,1.180664,1.180664 +1.167659,1.167659,1.167659,1.167659,1.167659,1.167659 +1.154654,1.154654,1.154654,1.154654,1.154654,1.154654 +1.141649,1.141649,1.141649,1.141649,1.141649,1.141649 +1.128644,1.128644,1.128644,1.128644,1.128644,1.128644 +1.115639,1.115639,1.115639,1.115639,1.115639,1.115639 +1.102634,1.102634,1.102634,1.102634,1.102634,1.102634 +1.089629,1.089629,1.089629,1.089629,1.089629,1.089629 +1.076624,1.076624,1.076624,1.076624,1.076624,1.076624 +1.063619,1.063619,1.063619,1.063619,1.063619,1.063619 +1.050614,1.050614,1.050614,1.050614,1.050614,1.050614 +1.037609,1.037609,1.037609,1.037609,1.037609,1.037609 +1.024604,1.024604,1.024604,1.024604,1.024604,1.024604 +1.011599,1.011599,1.011599,1.011599,1.011599,1.011599 +0.998594,0.998594,0.998594,0.998594,0.998594,0.998594 +0.985589,0.985589,0.985589,0.985589,0.985589,0.985589 +0.972584,0.972584,0.972584,0.972584,0.972584,0.972584 +0.959579,0.959579,0.959579,0.959579,0.959579,0.959579 +0.946574,0.946574,0.946574,0.946574,0.946574,0.946574 +0.933569,0.933569,0.933569,0.933569,0.933569,0.933569 +0.920564,0.920564,0.920564,0.920564,0.920564,0.920564 +0.907559,0.907559,0.907559,0.907559,0.907559,0.907559 +0.894554,0.894554,0.894554,0.894554,0.894554,0.894554 +0.881549,0.881549,0.881549,0.881549,0.881549,0.881549 +0.868544,0.868544,0.868544,0.868544,0.868544,0.868544 +0.855539,0.855539,0.855539,0.855539,0.855539,0.855539 +0.842534,0.842534,0.842534,0.842534,0.842534,0.842534 +0.829529,0.829529,0.829529,0.829529,0.829529,0.829529 +0.816524,0.816524,0.816524,0.816524,0.816524,0.816524 +0.803519,0.803519,0.803519,0.803519,0.803519,0.803519 +0.790514,0.790514,0.790514,0.790514,0.790514,0.790514 +0.777509,0.777509,0.777509,0.777509,0.777509,0.777509 +0.764504,0.764504,0.764504,0.764504,0.764504,0.764504 +0.751499,0.751499,0.751499,0.751499,0.751499,0.751499 +0.738494,0.738494,0.738494,0.738494,0.738494,0.738494 +0.725489,0.725489,0.725489,0.725489,0.725489,0.725489 +0.712484,0.712484,0.712484,0.712484,0.712484,0.712484 +0.699479,0.699479,0.699479,0.699479,0.699479,0.699479 +0.686474,0.686474,0.686474,0.686474,0.686474,0.686474 +0.673469,0.673469,0.673469,0.673469,0.673469,0.673469 +0.660464,0.660464,0.660464,0.660464,0.660464,0.660464 +0.647459,0.647459,0.647459,0.647459,0.647459,0.647459 +0.634454,0.634454,0.634454,0.634454,0.634454,0.634454 +0.621449,0.621449,0.621449,0.621449,0.621449,0.621449 +0.608444,0.608444,0.608444,0.608444,0.608444,0.608444 +0.595439,0.595439,0.595439,0.595439,0.595439,0.595439 +0.582434,0.582434,0.582434,0.582434,0.582434,0.582434 +0.569429,0.569429,0.569429,0.569429,0.569429,0.569429 +0.556424,0.556424,0.556424,0.556424,0.556424,0.556424 +0.543419,0.543419,0.543419,0.543419,0.543419,0.543419 +0.530414,0.530414,0.530414,0.530414,0.530414,0.530414 +0.517409,0.517409,0.517409,0.517409,0.517409,0.517409 +0.504404,0.504404,0.504404,0.504404,0.504404,0.504404 +0.491399,0.491399,0.491399,0.491399,0.491399,0.491399 +0.478394,0.478394,0.478394,0.478394,0.478394,0.478394 +0.465389,0.465389,0.465389,0.465389,0.465389,0.465389 +0.452384,0.452384,0.452384,0.452384,0.452384,0.452384 +0.439379,0.439379,0.439379,0.439379,0.439379,0.439379 +0.426374,0.426374,0.426374,0.426374,0.426374,0.426374 +0.413369,0.413369,0.413369,0.413369,0.413369,0.413369 +0.400364,0.400364,0.400364,0.400364,0.400364,0.400364 +0.387359,0.387359,0.387359,0.387359,0.387359,0.387359 +0.374354,0.374354,0.374354,0.374354,0.374354,0.374354 +0.361349,0.361349,0.361349,0.361349,0.361349,0.361349 +0.348344,0.348344,0.348344,0.348344,0.348344,0.348344 +0.335339,0.335339,0.335339,0.335339,0.335339,0.335339 +0.322334,0.322334,0.322334,0.322334,0.322334,0.322334 +0.309329,0.309329,0.309329,0.309329,0.309329,0.309329 +0.296324,0.296324,0.296324,0.296324,0.296324,0.296324 +0.283321,0.283321,0.283321,0.283321,0.283321,0.283321 +0.270339,0.270339,0.270339,0.270339,0.270339,0.270339 +0.257402,0.257402,0.257402,0.257402,0.257402,0.257402 +0.244537,0.244537,0.244537,0.244537,0.244537,0.244537 +0.231769,0.231769,0.231769,0.231769,0.231769,0.231769 +0.219123,0.219123,0.219123,0.219123,0.219123,0.219123 +0.206624,0.206624,0.206624,0.206624,0.206624,0.206624 +0.194299,0.194299,0.194299,0.194299,0.194299,0.194299 +0.182173,0.182173,0.182173,0.182173,0.182173,0.182173 +0.170272,0.170272,0.170272,0.170272,0.170272,0.170272 +0.15862,0.15862,0.15862,0.15862,0.15862,0.15862 +0.147243,0.147243,0.147243,0.147243,0.147243,0.147243 +0.136167,0.136167,0.136167,0.136167,0.136167,0.136167 +0.125418,0.125418,0.125418,0.125418,0.125418,0.125418 +0.115021,0.115021,0.115021,0.115021,0.115021,0.115021 +0.105,0.105,0.105,0.105,0.105,0.105 +0.095383,0.095383,0.095383,0.095383,0.095383,0.095383 +0.086194,0.086194,0.086194,0.086194,0.086194,0.086194 +0.077459,0.077459,0.077459,0.077459,0.077459,0.077459 +0.069203,0.069203,0.069203,0.069203,0.069203,0.069203 +0.061452,0.061452,0.061452,0.061452,0.061452,0.061452 +0.054232,0.054232,0.054232,0.054232,0.054232,0.054232 +0.047567,0.047567,0.047567,0.047567,0.047567,0.047567 +0.041468,0.041468,0.041468,0.041468,0.041468,0.041468 +0.035915,0.035915,0.035915,0.035915,0.035915,0.035915 +0.03088,0.03088,0.03088,0.03088,0.03088,0.03088 +0.02634,0.02634,0.02634,0.02634,0.02634,0.02634 +0.022268,0.022268,0.022268,0.022268,0.022268,0.022268 +0.018639,0.018639,0.018639,0.018639,0.018639,0.018639 +0.015427,0.015427,0.015427,0.015427,0.015427,0.015427 +0.012608,0.012608,0.012608,0.012608,0.012608,0.012608 +0.010154,0.010154,0.010154,0.010154,0.010154,0.010154 +0.008042,0.008042,0.008042,0.008042,0.008042,0.008042 +0.006245,0.006245,0.006245,0.006245,0.006245,0.006245 +0.004737,0.004737,0.004737,0.004737,0.004737,0.004737 +0.003495,0.003495,0.003495,0.003495,0.003495,0.003495 +0.002491,0.002491,0.002491,0.002491,0.002491,0.002491 +0.0017,0.0017,0.0017,0.0017,0.0017,0.0017 +0.001098,0.001098,0.001098,0.001098,0.001098,0.001098 +0.000658,0.000658,0.000658,0.000658,0.000658,0.000658 +0.000354,0.000354,0.000354,0.000354,0.000354,0.000354 +0.000162,0.000162,0.000162,0.000162,0.000162,0.000162 +0.000056,0.000056,0.000056,0.000056,0.000056,0.000056 +0.000011,0.000011,0.000011,0.000011,0.000011,0.000011 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000034,-0.000034,-0.000034,-0.000034,-0.000034,-0.000034 +-0.000115,-0.000115,-0.000115,-0.000115,-0.000115,-0.000115 +-0.000272,-0.000272,-0.000272,-0.000272,-0.000272,-0.000272 +-0.000531,-0.000531,-0.000531,-0.000531,-0.000531,-0.000531 +-0.000918,-0.000918,-0.000918,-0.000918,-0.000918,-0.000918 +-0.001458,-0.001458,-0.001458,-0.001458,-0.001458,-0.001458 +-0.002176,-0.002176,-0.002176,-0.002176,-0.002176,-0.002176 +-0.003098,-0.003098,-0.003098,-0.003098,-0.003098,-0.003098 +-0.00425,-0.00425,-0.00425,-0.00425,-0.00425,-0.00425 +-0.005657,-0.005657,-0.005657,-0.005657,-0.005657,-0.005657 +-0.007344,-0.007344,-0.007344,-0.007344,-0.007344,-0.007344 +-0.009337,-0.009337,-0.009337,-0.009337,-0.009337,-0.009337 +-0.011662,-0.011662,-0.011662,-0.011662,-0.011662,-0.011662 +-0.014344,-0.014344,-0.014344,-0.014344,-0.014344,-0.014344 +-0.017408,-0.017408,-0.017408,-0.017408,-0.017408,-0.017408 +-0.02088,-0.02088,-0.02088,-0.02088,-0.02088,-0.02088 +-0.024786,-0.024786,-0.024786,-0.024786,-0.024786,-0.024786 +-0.029151,-0.029151,-0.029151,-0.029151,-0.029151,-0.029151 +-0.034,-0.034,-0.034,-0.034,-0.034,-0.034 +-0.039359,-0.039359,-0.039359,-0.039359,-0.039359,-0.039359 +-0.045254,-0.045254,-0.045254,-0.045254,-0.045254,-0.045254 +-0.051709,-0.051709,-0.051709,-0.051709,-0.051709,-0.051709 +-0.058728,-0.058728,-0.058728,-0.058728,-0.058728,-0.058728 +-0.066286,-0.066286,-0.066286,-0.066286,-0.066286,-0.066286 +-0.074359,-0.074359,-0.074359,-0.074359,-0.074359,-0.074359 +-0.08292,-0.08292,-0.08292,-0.08292,-0.08292,-0.08292 +-0.091945,-0.091945,-0.091945,-0.091945,-0.091945,-0.091945 +-0.101407,-0.101407,-0.101407,-0.101407,-0.101407,-0.101407 +-0.111282,-0.111282,-0.111282,-0.111282,-0.111282,-0.111282 +-0.121543,-0.121543,-0.121543,-0.121543,-0.121543,-0.121543 +-0.132166,-0.132166,-0.132166,-0.132166,-0.132166,-0.132166 +-0.143124,-0.143124,-0.143124,-0.143124,-0.143124,-0.143124 +-0.154393,-0.154393,-0.154393,-0.154393,-0.154393,-0.154393 +-0.165946,-0.165946,-0.165946,-0.165946,-0.165946,-0.165946 +-0.177759,-0.177759,-0.177759,-0.177759,-0.177759,-0.177759 +-0.189805,-0.189805,-0.189805,-0.189805,-0.189805,-0.189805 +-0.20206,-0.20206,-0.20206,-0.20206,-0.20206,-0.20206 +-0.214497,-0.214497,-0.214497,-0.214497,-0.214497,-0.214497 +-0.227092,-0.227092,-0.227092,-0.227092,-0.227092,-0.227092 +-0.239818,-0.239818,-0.239818,-0.239818,-0.239818,-0.239818 +-0.252651,-0.252651,-0.252651,-0.252651,-0.252651,-0.252651 +-0.265564,-0.265564,-0.265564,-0.265564,-0.265564,-0.265564 +-0.278532,-0.278532,-0.278532,-0.278532,-0.278532,-0.278532 +-0.291531,-0.291531,-0.291531,-0.291531,-0.291531,-0.291531 +-0.304536,-0.304536,-0.304536,-0.304536,-0.304536,-0.304536 +-0.317541,-0.317541,-0.317541,-0.317541,-0.317541,-0.317541 +-0.330546,-0.330546,-0.330546,-0.330546,-0.330546,-0.330546 +-0.343551,-0.343551,-0.343551,-0.343551,-0.343551,-0.343551 +-0.356556,-0.356556,-0.356556,-0.356556,-0.356556,-0.356556 +-0.369561,-0.369561,-0.369561,-0.369561,-0.369561,-0.369561 +-0.382566,-0.382566,-0.382566,-0.382566,-0.382566,-0.382566 +-0.395571,-0.395571,-0.395571,-0.395571,-0.395571,-0.395571 +-0.408576,-0.408576,-0.408576,-0.408576,-0.408576,-0.408576 +-0.421581,-0.421581,-0.421581,-0.421581,-0.421581,-0.421581 +-0.434586,-0.434586,-0.434586,-0.434586,-0.434586,-0.434586 +-0.447591,-0.447591,-0.447591,-0.447591,-0.447591,-0.447591 +-0.460596,-0.460596,-0.460596,-0.460596,-0.460596,-0.460596 +-0.473601,-0.473601,-0.473601,-0.473601,-0.473601,-0.473601 +-0.486606,-0.486606,-0.486606,-0.486606,-0.486606,-0.486606 +-0.499611,-0.499611,-0.499611,-0.499611,-0.499611,-0.499611 +-0.512616,-0.512616,-0.512616,-0.512616,-0.512616,-0.512616 +-0.525621,-0.525621,-0.525621,-0.525621,-0.525621,-0.525621 +-0.538626,-0.538626,-0.538626,-0.538626,-0.538626,-0.538626 +-0.551631,-0.551631,-0.551631,-0.551631,-0.551631,-0.551631 +-0.564636,-0.564636,-0.564636,-0.564636,-0.564636,-0.564636 +-0.577641,-0.577641,-0.577641,-0.577641,-0.577641,-0.577641 +-0.590646,-0.590646,-0.590646,-0.590646,-0.590646,-0.590646 +-0.603651,-0.603651,-0.603651,-0.603651,-0.603651,-0.603651 +-0.616656,-0.616656,-0.616656,-0.616656,-0.616656,-0.616656 +-0.629661,-0.629661,-0.629661,-0.629661,-0.629661,-0.629661 +-0.642666,-0.642666,-0.642666,-0.642666,-0.642666,-0.642666 +-0.655671,-0.655671,-0.655671,-0.655671,-0.655671,-0.655671 +-0.668676,-0.668676,-0.668676,-0.668676,-0.668676,-0.668676 +-0.681681,-0.681681,-0.681681,-0.681681,-0.681681,-0.681681 +-0.694686,-0.694686,-0.694686,-0.694686,-0.694686,-0.694686 +-0.707691,-0.707691,-0.707691,-0.707691,-0.707691,-0.707691 +-0.720696,-0.720696,-0.720696,-0.720696,-0.720696,-0.720696 +-0.733701,-0.733701,-0.733701,-0.733701,-0.733701,-0.733701 +-0.746706,-0.746706,-0.746706,-0.746706,-0.746706,-0.746706 +-0.759711,-0.759711,-0.759711,-0.759711,-0.759711,-0.759711 +-0.772716,-0.772716,-0.772716,-0.772716,-0.772716,-0.772716 +-0.785721,-0.785721,-0.785721,-0.785721,-0.785721,-0.785721 +-0.798726,-0.798726,-0.798726,-0.798726,-0.798726,-0.798726 +-0.811731,-0.811731,-0.811731,-0.811731,-0.811731,-0.811731 +-0.824736,-0.824736,-0.824736,-0.824736,-0.824736,-0.824736 +-0.837741,-0.837741,-0.837741,-0.837741,-0.837741,-0.837741 +-0.850746,-0.850746,-0.850746,-0.850746,-0.850746,-0.850746 +-0.863751,-0.863751,-0.863751,-0.863751,-0.863751,-0.863751 +-0.876756,-0.876756,-0.876756,-0.876756,-0.876756,-0.876756 +-0.889761,-0.889761,-0.889761,-0.889761,-0.889761,-0.889761 +-0.902766,-0.902766,-0.902766,-0.902766,-0.902766,-0.902766 +-0.915771,-0.915771,-0.915771,-0.915771,-0.915771,-0.915771 +-0.928776,-0.928776,-0.928776,-0.928776,-0.928776,-0.928776 +-0.941781,-0.941781,-0.941781,-0.941781,-0.941781,-0.941781 +-0.954786,-0.954786,-0.954786,-0.954786,-0.954786,-0.954786 +-0.967791,-0.967791,-0.967791,-0.967791,-0.967791,-0.967791 +-0.980796,-0.980796,-0.980796,-0.980796,-0.980796,-0.980796 +-0.993801,-0.993801,-0.993801,-0.993801,-0.993801,-0.993801 +-1.006806,-1.006806,-1.006806,-1.006806,-1.006806,-1.006806 +-1.019811,-1.019811,-1.019811,-1.019811,-1.019811,-1.019811 +-1.032816,-1.032816,-1.032816,-1.032816,-1.032816,-1.032816 +-1.045821,-1.045821,-1.045821,-1.045821,-1.045821,-1.045821 +-1.058826,-1.058826,-1.058826,-1.058826,-1.058826,-1.058826 +-1.071831,-1.071831,-1.071831,-1.071831,-1.071831,-1.071831 +-1.084836,-1.084836,-1.084836,-1.084836,-1.084836,-1.084836 +-1.097841,-1.097841,-1.097841,-1.097841,-1.097841,-1.097841 +-1.110846,-1.110846,-1.110846,-1.110846,-1.110846,-1.110846 +-1.123851,-1.123851,-1.123851,-1.123851,-1.123851,-1.123851 +-1.136856,-1.136856,-1.136856,-1.136856,-1.136856,-1.136856 +-1.149861,-1.149861,-1.149861,-1.149861,-1.149861,-1.149861 +-1.162866,-1.162866,-1.162866,-1.162866,-1.162866,-1.162866 +-1.175871,-1.175871,-1.175871,-1.175871,-1.175871,-1.175871 +-1.188876,-1.188876,-1.188876,-1.188876,-1.188876,-1.188876 +-1.201881,-1.201881,-1.201881,-1.201881,-1.201881,-1.201881 +-1.214886,-1.214886,-1.214886,-1.214886,-1.214886,-1.214886 +-1.227891,-1.227891,-1.227891,-1.227891,-1.227891,-1.227891 +-1.240896,-1.240896,-1.240896,-1.240896,-1.240896,-1.240896 +-1.253901,-1.253901,-1.253901,-1.253901,-1.253901,-1.253901 +-1.266906,-1.266906,-1.266906,-1.266906,-1.266906,-1.266906 +-1.279911,-1.279911,-1.279911,-1.279911,-1.279911,-1.279911 +-1.292916,-1.292916,-1.292916,-1.292916,-1.292916,-1.292916 +-1.305921,-1.305921,-1.305921,-1.305921,-1.305921,-1.305921 +-1.318926,-1.318926,-1.318926,-1.318926,-1.318926,-1.318926 +-1.331931,-1.331931,-1.331931,-1.331931,-1.331931,-1.331931 +-1.344936,-1.344936,-1.344936,-1.344936,-1.344936,-1.344936 +-1.357941,-1.357941,-1.357941,-1.357941,-1.357941,-1.357941 +-1.370946,-1.370946,-1.370946,-1.370946,-1.370946,-1.370946 +-1.383951,-1.383951,-1.383951,-1.383951,-1.383951,-1.383951 +-1.396956,-1.396956,-1.396956,-1.396956,-1.396956,-1.396956 +-1.409961,-1.409961,-1.409961,-1.409961,-1.409961,-1.409961 +-1.422966,-1.422966,-1.422966,-1.422966,-1.422966,-1.422966 +-1.435971,-1.435971,-1.435971,-1.435971,-1.435971,-1.435971 +-1.448976,-1.448976,-1.448976,-1.448976,-1.448976,-1.448976 +-1.461979,-1.461979,-1.461979,-1.461979,-1.461979,-1.461979 +-1.474961,-1.474961,-1.474961,-1.474961,-1.474961,-1.474961 +-1.487898,-1.487898,-1.487898,-1.487898,-1.487898,-1.487898 +-1.500763,-1.500763,-1.500763,-1.500763,-1.500763,-1.500763 +-1.513531,-1.513531,-1.513531,-1.513531,-1.513531,-1.513531 +-1.526177,-1.526177,-1.526177,-1.526177,-1.526177,-1.526177 +-1.538676,-1.538676,-1.538676,-1.538676,-1.538676,-1.538676 +-1.551001,-1.551001,-1.551001,-1.551001,-1.551001,-1.551001 +-1.563127,-1.563127,-1.563127,-1.563127,-1.563127,-1.563127 +-1.575028,-1.575028,-1.575028,-1.575028,-1.575028,-1.575028 +-1.58668,-1.58668,-1.58668,-1.58668,-1.58668,-1.58668 +-1.598057,-1.598057,-1.598057,-1.598057,-1.598057,-1.598057 +-1.609133,-1.609133,-1.609133,-1.609133,-1.609133,-1.609133 +-1.619882,-1.619882,-1.619882,-1.619882,-1.619882,-1.619882 +-1.630279,-1.630279,-1.630279,-1.630279,-1.630279,-1.630279 +-1.6403,-1.6403,-1.6403,-1.6403,-1.6403,-1.6403 +-1.649917,-1.649917,-1.649917,-1.649917,-1.649917,-1.649917 +-1.659106,-1.659106,-1.659106,-1.659106,-1.659106,-1.659106 +-1.667841,-1.667841,-1.667841,-1.667841,-1.667841,-1.667841 +-1.676097,-1.676097,-1.676097,-1.676097,-1.676097,-1.676097 +-1.683848,-1.683848,-1.683848,-1.683848,-1.683848,-1.683848 +-1.691068,-1.691068,-1.691068,-1.691068,-1.691068,-1.691068 +-1.697733,-1.697733,-1.697733,-1.697733,-1.697733,-1.697733 +-1.703832,-1.703832,-1.703832,-1.703832,-1.703832,-1.703832 +-1.709385,-1.709385,-1.709385,-1.709385,-1.709385,-1.709385 +-1.71442,-1.71442,-1.71442,-1.71442,-1.71442,-1.71442 +-1.71896,-1.71896,-1.71896,-1.71896,-1.71896,-1.71896 +-1.723032,-1.723032,-1.723032,-1.723032,-1.723032,-1.723032 +-1.726661,-1.726661,-1.726661,-1.726661,-1.726661,-1.726661 +-1.729873,-1.729873,-1.729873,-1.729873,-1.729873,-1.729873 +-1.732692,-1.732692,-1.732692,-1.732692,-1.732692,-1.732692 +-1.735146,-1.735146,-1.735146,-1.735146,-1.735146,-1.735146 +-1.737258,-1.737258,-1.737258,-1.737258,-1.737258,-1.737258 +-1.739055,-1.739055,-1.739055,-1.739055,-1.739055,-1.739055 +-1.740563,-1.740563,-1.740563,-1.740563,-1.740563,-1.740563 +-1.741805,-1.741805,-1.741805,-1.741805,-1.741805,-1.741805 +-1.742809,-1.742809,-1.742809,-1.742809,-1.742809,-1.742809 +-1.7436,-1.7436,-1.7436,-1.7436,-1.7436,-1.7436 +-1.744202,-1.744202,-1.744202,-1.744202,-1.744202,-1.744202 +-1.744642,-1.744642,-1.744642,-1.744642,-1.744642,-1.744642 +-1.744946,-1.744946,-1.744946,-1.744946,-1.744946,-1.744946 +-1.745138,-1.745138,-1.745138,-1.745138,-1.745138,-1.745138 +-1.745244,-1.745244,-1.745244,-1.745244,-1.745244,-1.745244 +-1.745289,-1.745289,-1.745289,-1.745289,-1.745289,-1.745289 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745266,-1.745266,-1.745266,-1.745266,-1.745266,-1.745266 +-1.745185,-1.745185,-1.745185,-1.745185,-1.745185,-1.745185 +-1.745028,-1.745028,-1.745028,-1.745028,-1.745028,-1.745028 +-1.744769,-1.744769,-1.744769,-1.744769,-1.744769,-1.744769 +-1.744382,-1.744382,-1.744382,-1.744382,-1.744382,-1.744382 +-1.743842,-1.743842,-1.743842,-1.743842,-1.743842,-1.743842 +-1.743124,-1.743124,-1.743124,-1.743124,-1.743124,-1.743124 +-1.742202,-1.742202,-1.742202,-1.742202,-1.742202,-1.742202 +-1.74105,-1.74105,-1.74105,-1.74105,-1.74105,-1.74105 +-1.739643,-1.739643,-1.739643,-1.739643,-1.739643,-1.739643 +-1.737956,-1.737956,-1.737956,-1.737956,-1.737956,-1.737956 +-1.735963,-1.735963,-1.735963,-1.735963,-1.735963,-1.735963 +-1.733638,-1.733638,-1.733638,-1.733638,-1.733638,-1.733638 +-1.730956,-1.730956,-1.730956,-1.730956,-1.730956,-1.730956 +-1.727892,-1.727892,-1.727892,-1.727892,-1.727892,-1.727892 +-1.72442,-1.72442,-1.72442,-1.72442,-1.72442,-1.72442 +-1.720514,-1.720514,-1.720514,-1.720514,-1.720514,-1.720514 +-1.716149,-1.716149,-1.716149,-1.716149,-1.716149,-1.716149 +-1.7113,-1.7113,-1.7113,-1.7113,-1.7113,-1.7113 +-1.705941,-1.705941,-1.705941,-1.705941,-1.705941,-1.705941 +-1.700046,-1.700046,-1.700046,-1.700046,-1.700046,-1.700046 +-1.693591,-1.693591,-1.693591,-1.693591,-1.693591,-1.693591 +-1.686572,-1.686572,-1.686572,-1.686572,-1.686572,-1.686572 +-1.679014,-1.679014,-1.679014,-1.679014,-1.679014,-1.679014 +-1.670941,-1.670941,-1.670941,-1.670941,-1.670941,-1.670941 +-1.66238,-1.66238,-1.66238,-1.66238,-1.66238,-1.66238 +-1.653355,-1.653355,-1.653355,-1.653355,-1.653355,-1.653355 +-1.643893,-1.643893,-1.643893,-1.643893,-1.643893,-1.643893 +-1.634018,-1.634018,-1.634018,-1.634018,-1.634018,-1.634018 +-1.623757,-1.623757,-1.623757,-1.623757,-1.623757,-1.623757 +-1.613134,-1.613134,-1.613134,-1.613134,-1.613134,-1.613134 +-1.602176,-1.602176,-1.602176,-1.602176,-1.602176,-1.602176 +-1.590907,-1.590907,-1.590907,-1.590907,-1.590907,-1.590907 +-1.579354,-1.579354,-1.579354,-1.579354,-1.579354,-1.579354 +-1.567541,-1.567541,-1.567541,-1.567541,-1.567541,-1.567541 +-1.555495,-1.555495,-1.555495,-1.555495,-1.555495,-1.555495 +-1.54324,-1.54324,-1.54324,-1.54324,-1.54324,-1.54324 +-1.530803,-1.530803,-1.530803,-1.530803,-1.530803,-1.530803 +-1.518208,-1.518208,-1.518208,-1.518208,-1.518208,-1.518208 +-1.505482,-1.505482,-1.505482,-1.505482,-1.505482,-1.505482 +-1.492649,-1.492649,-1.492649,-1.492649,-1.492649,-1.492649 +-1.479736,-1.479736,-1.479736,-1.479736,-1.479736,-1.479736 +-1.466768,-1.466768,-1.466768,-1.466768,-1.466768,-1.466768 +-1.453769,-1.453769,-1.453769,-1.453769,-1.453769,-1.453769 +-1.440764,-1.440764,-1.440764,-1.440764,-1.440764,-1.440764 +-1.427759,-1.427759,-1.427759,-1.427759,-1.427759,-1.427759 +-1.414754,-1.414754,-1.414754,-1.414754,-1.414754,-1.414754 +-1.401749,-1.401749,-1.401749,-1.401749,-1.401749,-1.401749 +-1.388744,-1.388744,-1.388744,-1.388744,-1.388744,-1.388744 +-1.375739,-1.375739,-1.375739,-1.375739,-1.375739,-1.375739 +-1.362734,-1.362734,-1.362734,-1.362734,-1.362734,-1.362734 +-1.349729,-1.349729,-1.349729,-1.349729,-1.349729,-1.349729 +-1.336724,-1.336724,-1.336724,-1.336724,-1.336724,-1.336724 +-1.323719,-1.323719,-1.323719,-1.323719,-1.323719,-1.323719 +-1.310714,-1.310714,-1.310714,-1.310714,-1.310714,-1.310714 +-1.297709,-1.297709,-1.297709,-1.297709,-1.297709,-1.297709 +-1.284704,-1.284704,-1.284704,-1.284704,-1.284704,-1.284704 +-1.271699,-1.271699,-1.271699,-1.271699,-1.271699,-1.271699 +-1.258694,-1.258694,-1.258694,-1.258694,-1.258694,-1.258694 +-1.245689,-1.245689,-1.245689,-1.245689,-1.245689,-1.245689 +-1.232684,-1.232684,-1.232684,-1.232684,-1.232684,-1.232684 +-1.219679,-1.219679,-1.219679,-1.219679,-1.219679,-1.219679 +-1.206674,-1.206674,-1.206674,-1.206674,-1.206674,-1.206674 +-1.193669,-1.193669,-1.193669,-1.193669,-1.193669,-1.193669 +-1.180664,-1.180664,-1.180664,-1.180664,-1.180664,-1.180664 +-1.167659,-1.167659,-1.167659,-1.167659,-1.167659,-1.167659 +-1.154654,-1.154654,-1.154654,-1.154654,-1.154654,-1.154654 +-1.141649,-1.141649,-1.141649,-1.141649,-1.141649,-1.141649 +-1.128644,-1.128644,-1.128644,-1.128644,-1.128644,-1.128644 +-1.115639,-1.115639,-1.115639,-1.115639,-1.115639,-1.115639 +-1.102634,-1.102634,-1.102634,-1.102634,-1.102634,-1.102634 +-1.089629,-1.089629,-1.089629,-1.089629,-1.089629,-1.089629 +-1.076624,-1.076624,-1.076624,-1.076624,-1.076624,-1.076624 +-1.063619,-1.063619,-1.063619,-1.063619,-1.063619,-1.063619 +-1.050614,-1.050614,-1.050614,-1.050614,-1.050614,-1.050614 +-1.037609,-1.037609,-1.037609,-1.037609,-1.037609,-1.037609 +-1.024604,-1.024604,-1.024604,-1.024604,-1.024604,-1.024604 +-1.011599,-1.011599,-1.011599,-1.011599,-1.011599,-1.011599 +-0.998594,-0.998594,-0.998594,-0.998594,-0.998594,-0.998594 +-0.985589,-0.985589,-0.985589,-0.985589,-0.985589,-0.985589 +-0.972584,-0.972584,-0.972584,-0.972584,-0.972584,-0.972584 +-0.959579,-0.959579,-0.959579,-0.959579,-0.959579,-0.959579 +-0.946574,-0.946574,-0.946574,-0.946574,-0.946574,-0.946574 +-0.933569,-0.933569,-0.933569,-0.933569,-0.933569,-0.933569 +-0.920564,-0.920564,-0.920564,-0.920564,-0.920564,-0.920564 +-0.907559,-0.907559,-0.907559,-0.907559,-0.907559,-0.907559 +-0.894554,-0.894554,-0.894554,-0.894554,-0.894554,-0.894554 +-0.881549,-0.881549,-0.881549,-0.881549,-0.881549,-0.881549 +-0.868544,-0.868544,-0.868544,-0.868544,-0.868544,-0.868544 +-0.855539,-0.855539,-0.855539,-0.855539,-0.855539,-0.855539 +-0.842534,-0.842534,-0.842534,-0.842534,-0.842534,-0.842534 +-0.829529,-0.829529,-0.829529,-0.829529,-0.829529,-0.829529 +-0.816524,-0.816524,-0.816524,-0.816524,-0.816524,-0.816524 +-0.803519,-0.803519,-0.803519,-0.803519,-0.803519,-0.803519 +-0.790514,-0.790514,-0.790514,-0.790514,-0.790514,-0.790514 +-0.777509,-0.777509,-0.777509,-0.777509,-0.777509,-0.777509 +-0.764504,-0.764504,-0.764504,-0.764504,-0.764504,-0.764504 +-0.751499,-0.751499,-0.751499,-0.751499,-0.751499,-0.751499 +-0.738494,-0.738494,-0.738494,-0.738494,-0.738494,-0.738494 +-0.725489,-0.725489,-0.725489,-0.725489,-0.725489,-0.725489 +-0.712484,-0.712484,-0.712484,-0.712484,-0.712484,-0.712484 +-0.699479,-0.699479,-0.699479,-0.699479,-0.699479,-0.699479 +-0.686474,-0.686474,-0.686474,-0.686474,-0.686474,-0.686474 +-0.673469,-0.673469,-0.673469,-0.673469,-0.673469,-0.673469 +-0.660464,-0.660464,-0.660464,-0.660464,-0.660464,-0.660464 +-0.647459,-0.647459,-0.647459,-0.647459,-0.647459,-0.647459 +-0.634454,-0.634454,-0.634454,-0.634454,-0.634454,-0.634454 +-0.621449,-0.621449,-0.621449,-0.621449,-0.621449,-0.621449 +-0.608444,-0.608444,-0.608444,-0.608444,-0.608444,-0.608444 +-0.595439,-0.595439,-0.595439,-0.595439,-0.595439,-0.595439 +-0.582434,-0.582434,-0.582434,-0.582434,-0.582434,-0.582434 +-0.569429,-0.569429,-0.569429,-0.569429,-0.569429,-0.569429 +-0.556424,-0.556424,-0.556424,-0.556424,-0.556424,-0.556424 +-0.543419,-0.543419,-0.543419,-0.543419,-0.543419,-0.543419 +-0.530414,-0.530414,-0.530414,-0.530414,-0.530414,-0.530414 +-0.517409,-0.517409,-0.517409,-0.517409,-0.517409,-0.517409 +-0.504404,-0.504404,-0.504404,-0.504404,-0.504404,-0.504404 +-0.491399,-0.491399,-0.491399,-0.491399,-0.491399,-0.491399 +-0.478394,-0.478394,-0.478394,-0.478394,-0.478394,-0.478394 +-0.465389,-0.465389,-0.465389,-0.465389,-0.465389,-0.465389 +-0.452384,-0.452384,-0.452384,-0.452384,-0.452384,-0.452384 +-0.439379,-0.439379,-0.439379,-0.439379,-0.439379,-0.439379 +-0.426374,-0.426374,-0.426374,-0.426374,-0.426374,-0.426374 +-0.413369,-0.413369,-0.413369,-0.413369,-0.413369,-0.413369 +-0.400364,-0.400364,-0.400364,-0.400364,-0.400364,-0.400364 +-0.387359,-0.387359,-0.387359,-0.387359,-0.387359,-0.387359 +-0.374354,-0.374354,-0.374354,-0.374354,-0.374354,-0.374354 +-0.361349,-0.361349,-0.361349,-0.361349,-0.361349,-0.361349 +-0.348344,-0.348344,-0.348344,-0.348344,-0.348344,-0.348344 +-0.335339,-0.335339,-0.335339,-0.335339,-0.335339,-0.335339 +-0.322334,-0.322334,-0.322334,-0.322334,-0.322334,-0.322334 +-0.309329,-0.309329,-0.309329,-0.309329,-0.309329,-0.309329 +-0.296324,-0.296324,-0.296324,-0.296324,-0.296324,-0.296324 +-0.283321,-0.283321,-0.283321,-0.283321,-0.283321,-0.283321 +-0.270339,-0.270339,-0.270339,-0.270339,-0.270339,-0.270339 +-0.257402,-0.257402,-0.257402,-0.257402,-0.257402,-0.257402 +-0.244537,-0.244537,-0.244537,-0.244537,-0.244537,-0.244537 +-0.231769,-0.231769,-0.231769,-0.231769,-0.231769,-0.231769 +-0.219123,-0.219123,-0.219123,-0.219123,-0.219123,-0.219123 +-0.206624,-0.206624,-0.206624,-0.206624,-0.206624,-0.206624 +-0.194299,-0.194299,-0.194299,-0.194299,-0.194299,-0.194299 +-0.182173,-0.182173,-0.182173,-0.182173,-0.182173,-0.182173 +-0.170272,-0.170272,-0.170272,-0.170272,-0.170272,-0.170272 +-0.15862,-0.15862,-0.15862,-0.15862,-0.15862,-0.15862 +-0.147243,-0.147243,-0.147243,-0.147243,-0.147243,-0.147243 +-0.136167,-0.136167,-0.136167,-0.136167,-0.136167,-0.136167 +-0.125418,-0.125418,-0.125418,-0.125418,-0.125418,-0.125418 +-0.115021,-0.115021,-0.115021,-0.115021,-0.115021,-0.115021 +-0.105,-0.105,-0.105,-0.105,-0.105,-0.105 +-0.095383,-0.095383,-0.095383,-0.095383,-0.095383,-0.095383 +-0.086194,-0.086194,-0.086194,-0.086194,-0.086194,-0.086194 +-0.077459,-0.077459,-0.077459,-0.077459,-0.077459,-0.077459 +-0.069203,-0.069203,-0.069203,-0.069203,-0.069203,-0.069203 +-0.061452,-0.061452,-0.061452,-0.061452,-0.061452,-0.061452 +-0.054232,-0.054232,-0.054232,-0.054232,-0.054232,-0.054232 +-0.047567,-0.047567,-0.047567,-0.047567,-0.047567,-0.047567 +-0.041468,-0.041468,-0.041468,-0.041468,-0.041468,-0.041468 +-0.035915,-0.035915,-0.035915,-0.035915,-0.035915,-0.035915 +-0.03088,-0.03088,-0.03088,-0.03088,-0.03088,-0.03088 +-0.02634,-0.02634,-0.02634,-0.02634,-0.02634,-0.02634 +-0.022268,-0.022268,-0.022268,-0.022268,-0.022268,-0.022268 +-0.018639,-0.018639,-0.018639,-0.018639,-0.018639,-0.018639 +-0.015427,-0.015427,-0.015427,-0.015427,-0.015427,-0.015427 +-0.012608,-0.012608,-0.012608,-0.012608,-0.012608,-0.012608 +-0.010154,-0.010154,-0.010154,-0.010154,-0.010154,-0.010154 +-0.008042,-0.008042,-0.008042,-0.008042,-0.008042,-0.008042 +-0.006245,-0.006245,-0.006245,-0.006245,-0.006245,-0.006245 +-0.004737,-0.004737,-0.004737,-0.004737,-0.004737,-0.004737 +-0.003495,-0.003495,-0.003495,-0.003495,-0.003495,-0.003495 +-0.002491,-0.002491,-0.002491,-0.002491,-0.002491,-0.002491 +-0.0017,-0.0017,-0.0017,-0.0017,-0.0017,-0.0017 +-0.001098,-0.001098,-0.001098,-0.001098,-0.001098,-0.001098 +-0.000658,-0.000658,-0.000658,-0.000658,-0.000658,-0.000658 +-0.000354,-0.000354,-0.000354,-0.000354,-0.000354,-0.000354 +-0.000162,-0.000162,-0.000162,-0.000162,-0.000162,-0.000162 +-0.000056,-0.000056,-0.000056,-0.000056,-0.000056,-0.000056 +-0.000011,-0.000011,-0.000011,-0.000011,-0.000011,-0.000011 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0.000036,0.000036,0.000036,0.000036,0.000036,0.000036 +0.000122,0.000122,0.000122,0.000122,0.000122,0.000122 +0.000288,0.000288,0.000288,0.000288,0.000288,0.000288 +0.000563,0.000563,0.000563,0.000563,0.000563,0.000563 +0.000972,0.000972,0.000972,0.000972,0.000972,0.000972 +0.001544,0.001544,0.001544,0.001544,0.001544,0.001544 +0.002304,0.002304,0.002304,0.002304,0.002304,0.002304 +0.003281,0.003281,0.003281,0.003281,0.003281,0.003281 +0.0045,0.0045,0.0045,0.0045,0.0045,0.0045 +0.00599,0.00599,0.00599,0.00599,0.00599,0.00599 +0.007776,0.007776,0.007776,0.007776,0.007776,0.007776 +0.009887,0.009887,0.009887,0.009887,0.009887,0.009887 +0.012348,0.012348,0.012348,0.012348,0.012348,0.012348 +0.015188,0.015188,0.015188,0.015188,0.015188,0.015188 +0.018432,0.018432,0.018432,0.018432,0.018432,0.018432 +0.022109,0.022109,0.022109,0.022109,0.022109,0.022109 +0.026244,0.026244,0.026244,0.026244,0.026244,0.026244 +0.030866,0.030866,0.030866,0.030866,0.030866,0.030866 +0.036,0.036,0.036,0.036,0.036,0.036 +0.041675,0.041675,0.041675,0.041675,0.041675,0.041675 +0.047916,0.047916,0.047916,0.047916,0.047916,0.047916 +0.054752,0.054752,0.054752,0.054752,0.054752,0.054752 +0.062204,0.062204,0.062204,0.062204,0.062204,0.062204 +0.070263,0.070263,0.070263,0.070263,0.070263,0.070263 +0.078902,0.078902,0.078902,0.078902,0.078902,0.078902 +0.088094,0.088094,0.088094,0.088094,0.088094,0.088094 +0.097812,0.097812,0.097812,0.097812,0.097812,0.097812 +0.108029,0.108029,0.108029,0.108029,0.108029,0.108029 +0.118717,0.118717,0.118717,0.118717,0.118717,0.118717 +0.12985,0.12985,0.12985,0.12985,0.12985,0.12985 +0.141402,0.141402,0.141402,0.141402,0.141402,0.141402 +0.153344,0.153344,0.153344,0.153344,0.153344,0.153344 +0.16565,0.16565,0.16565,0.16565,0.16565,0.16565 +0.178292,0.178292,0.178292,0.178292,0.178292,0.178292 +0.191245,0.191245,0.191245,0.191245,0.191245,0.191245 +0.20448,0.20448,0.20448,0.20448,0.20448,0.20448 +0.217971,0.217971,0.217971,0.217971,0.217971,0.217971 +0.231692,0.231692,0.231692,0.231692,0.231692,0.231692 +0.245613,0.245613,0.245613,0.245613,0.245613,0.245613 +0.25971,0.25971,0.25971,0.25971,0.25971,0.25971 +0.273955,0.273955,0.273955,0.273955,0.273955,0.273955 +0.28832,0.28832,0.28832,0.28832,0.28832,0.28832 +0.30278,0.30278,0.30278,0.30278,0.30278,0.30278 +0.317306,0.317306,0.317306,0.317306,0.317306,0.317306 +0.331872,0.331872,0.331872,0.331872,0.331872,0.331872 +0.346451,0.346451,0.346451,0.346451,0.346451,0.346451 +0.361031,0.361031,0.361031,0.361031,0.361031,0.361031 +0.375611,0.375611,0.375611,0.375611,0.375611,0.375611 +0.390191,0.390191,0.390191,0.390191,0.390191,0.390191 +0.404771,0.404771,0.404771,0.404771,0.404771,0.404771 +0.419351,0.419351,0.419351,0.419351,0.419351,0.419351 +0.433931,0.433931,0.433931,0.433931,0.433931,0.433931 +0.448511,0.448511,0.448511,0.448511,0.448511,0.448511 +0.463091,0.463091,0.463091,0.463091,0.463091,0.463091 +0.477671,0.477671,0.477671,0.477671,0.477671,0.477671 +0.492251,0.492251,0.492251,0.492251,0.492251,0.492251 +0.506831,0.506831,0.506831,0.506831,0.506831,0.506831 +0.521411,0.521411,0.521411,0.521411,0.521411,0.521411 +0.535991,0.535991,0.535991,0.535991,0.535991,0.535991 +0.550571,0.550571,0.550571,0.550571,0.550571,0.550571 +0.565151,0.565151,0.565151,0.565151,0.565151,0.565151 +0.579731,0.579731,0.579731,0.579731,0.579731,0.579731 +0.594311,0.594311,0.594311,0.594311,0.594311,0.594311 +0.608891,0.608891,0.608891,0.608891,0.608891,0.608891 +0.623471,0.623471,0.623471,0.623471,0.623471,0.623471 +0.638051,0.638051,0.638051,0.638051,0.638051,0.638051 +0.652631,0.652631,0.652631,0.652631,0.652631,0.652631 +0.667211,0.667211,0.667211,0.667211,0.667211,0.667211 +0.681791,0.681791,0.681791,0.681791,0.681791,0.681791 +0.696371,0.696371,0.696371,0.696371,0.696371,0.696371 +0.710951,0.710951,0.710951,0.710951,0.710951,0.710951 +0.725531,0.725531,0.725531,0.725531,0.725531,0.725531 +0.740111,0.740111,0.740111,0.740111,0.740111,0.740111 +0.754691,0.754691,0.754691,0.754691,0.754691,0.754691 +0.769271,0.769271,0.769271,0.769271,0.769271,0.769271 +0.783851,0.783851,0.783851,0.783851,0.783851,0.783851 +0.798431,0.798431,0.798431,0.798431,0.798431,0.798431 +0.813011,0.813011,0.813011,0.813011,0.813011,0.813011 +0.827591,0.827591,0.827591,0.827591,0.827591,0.827591 +0.842171,0.842171,0.842171,0.842171,0.842171,0.842171 +0.856751,0.856751,0.856751,0.856751,0.856751,0.856751 +0.871331,0.871331,0.871331,0.871331,0.871331,0.871331 +0.885911,0.885911,0.885911,0.885911,0.885911,0.885911 +0.900491,0.900491,0.900491,0.900491,0.900491,0.900491 +0.915071,0.915071,0.915071,0.915071,0.915071,0.915071 +0.929651,0.929651,0.929651,0.929651,0.929651,0.929651 +0.944231,0.944231,0.944231,0.944231,0.944231,0.944231 +0.958811,0.958811,0.958811,0.958811,0.958811,0.958811 +0.973391,0.973391,0.973391,0.973391,0.973391,0.973391 +0.987971,0.987971,0.987971,0.987971,0.987971,0.987971 +1.002551,1.002551,1.002551,1.002551,1.002551,1.002551 +1.017131,1.017131,1.017131,1.017131,1.017131,1.017131 +1.031711,1.031711,1.031711,1.031711,1.031711,1.031711 +1.046291,1.046291,1.046291,1.046291,1.046291,1.046291 +1.060871,1.060871,1.060871,1.060871,1.060871,1.060871 +1.075451,1.075451,1.075451,1.075451,1.075451,1.075451 +1.090031,1.090031,1.090031,1.090031,1.090031,1.090031 +1.104611,1.104611,1.104611,1.104611,1.104611,1.104611 +1.119191,1.119191,1.119191,1.119191,1.119191,1.119191 +1.133771,1.133771,1.133771,1.133771,1.133771,1.133771 +1.148351,1.148351,1.148351,1.148351,1.148351,1.148351 +1.162931,1.162931,1.162931,1.162931,1.162931,1.162931 +1.177511,1.177511,1.177511,1.177511,1.177511,1.177511 +1.192091,1.192091,1.192091,1.192091,1.192091,1.192091 +1.206671,1.206671,1.206671,1.206671,1.206671,1.206671 +1.221251,1.221251,1.221251,1.221251,1.221251,1.221251 +1.235831,1.235831,1.235831,1.235831,1.235831,1.235831 +1.250411,1.250411,1.250411,1.250411,1.250411,1.250411 +1.264991,1.264991,1.264991,1.264991,1.264991,1.264991 +1.279571,1.279571,1.279571,1.279571,1.279571,1.279571 +1.294151,1.294151,1.294151,1.294151,1.294151,1.294151 +1.308731,1.308731,1.308731,1.308731,1.308731,1.308731 +1.323311,1.323311,1.323311,1.323311,1.323311,1.323311 +1.337891,1.337891,1.337891,1.337891,1.337891,1.337891 +1.352471,1.352471,1.352471,1.352471,1.352471,1.352471 +1.367051,1.367051,1.367051,1.367051,1.367051,1.367051 +1.381631,1.381631,1.381631,1.381631,1.381631,1.381631 +1.396211,1.396211,1.396211,1.396211,1.396211,1.396211 +1.410791,1.410791,1.410791,1.410791,1.410791,1.410791 +1.425362,1.425362,1.425362,1.425362,1.425362,1.425362 +1.439897,1.439897,1.439897,1.439897,1.439897,1.439897 +1.45437,1.45437,1.45437,1.45437,1.45437,1.45437 +1.468755,1.468755,1.468755,1.468755,1.468755,1.468755 +1.483023,1.483023,1.483023,1.483023,1.483023,1.483023 +1.497149,1.497149,1.497149,1.497149,1.497149,1.497149 +1.511104,1.511104,1.511104,1.511104,1.511104,1.511104 +1.524863,1.524863,1.524863,1.524863,1.524863,1.524863 +1.538398,1.538398,1.538398,1.538398,1.538398,1.538398 +1.551681,1.551681,1.551681,1.551681,1.551681,1.551681 +1.564687,1.564687,1.564687,1.564687,1.564687,1.564687 +1.577388,1.577388,1.577388,1.577388,1.577388,1.577388 +1.589757,1.589757,1.589757,1.589757,1.589757,1.589757 +1.601766,1.601766,1.601766,1.601766,1.601766,1.601766 +1.61339,1.61339,1.61339,1.61339,1.61339,1.61339 +1.624601,1.624601,1.624601,1.624601,1.624601,1.624601 +1.635372,1.635372,1.635372,1.635372,1.635372,1.635372 +1.645676,1.645676,1.645676,1.645676,1.645676,1.645676 +1.655486,1.655486,1.655486,1.655486,1.655486,1.655486 +1.664775,1.664775,1.664775,1.664775,1.664775,1.664775 +1.673516,1.673516,1.673516,1.673516,1.673516,1.673516 +1.681682,1.681682,1.681682,1.681682,1.681682,1.681682 +1.689247,1.689247,1.689247,1.689247,1.689247,1.689247 +1.696192,1.696192,1.696192,1.696192,1.696192,1.696192 +1.702539,1.702539,1.702539,1.702539,1.702539,1.702539 +1.708314,1.708314,1.708314,1.708314,1.708314,1.708314 +1.713545,1.713545,1.713545,1.713545,1.713545,1.713545 +1.718257,1.718257,1.718257,1.718257,1.718257,1.718257 +1.722478,1.722478,1.722478,1.722478,1.722478,1.722478 +1.726236,1.726236,1.726236,1.726236,1.726236,1.726236 +1.729556,1.729556,1.729556,1.729556,1.729556,1.729556 +1.732467,1.732467,1.732467,1.732467,1.732467,1.732467 +1.734995,1.734995,1.734995,1.734995,1.734995,1.734995 +1.737167,1.737167,1.737167,1.737167,1.737167,1.737167 +1.73901,1.73901,1.73901,1.73901,1.73901,1.73901 +1.740551,1.740551,1.740551,1.740551,1.740551,1.740551 +1.741818,1.741818,1.741818,1.741818,1.741818,1.741818 +1.742836,1.742836,1.742836,1.742836,1.742836,1.742836 +1.743634,1.743634,1.743634,1.743634,1.743634,1.743634 +1.744237,1.744237,1.744237,1.744237,1.744237,1.744237 +1.744674,1.744674,1.744674,1.744674,1.744674,1.744674 +1.744971,1.744971,1.744971,1.744971,1.744971,1.744971 +1.745155,1.745155,1.745155,1.745155,1.745155,1.745155 +1.745253,1.745253,1.745253,1.745253,1.745253,1.745253 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745264,1.745264,1.745264,1.745264,1.745264,1.745264 +1.745178,1.745178,1.745178,1.745178,1.745178,1.745178 +1.745012,1.745012,1.745012,1.745012,1.745012,1.745012 +1.744738,1.744738,1.744738,1.744738,1.744738,1.744738 +1.744328,1.744328,1.744328,1.744328,1.744328,1.744328 +1.743756,1.743756,1.743756,1.743756,1.743756,1.743756 +1.742996,1.742996,1.742996,1.742996,1.742996,1.742996 +1.742019,1.742019,1.742019,1.742019,1.742019,1.742019 +1.7408,1.7408,1.7408,1.7408,1.7408,1.7408 +1.73931,1.73931,1.73931,1.73931,1.73931,1.73931 +1.737524,1.737524,1.737524,1.737524,1.737524,1.737524 +1.735413,1.735413,1.735413,1.735413,1.735413,1.735413 +1.732952,1.732952,1.732952,1.732952,1.732952,1.732952 +1.730112,1.730112,1.730112,1.730112,1.730112,1.730112 +1.726868,1.726868,1.726868,1.726868,1.726868,1.726868 +1.723191,1.723191,1.723191,1.723191,1.723191,1.723191 +1.719056,1.719056,1.719056,1.719056,1.719056,1.719056 +1.714434,1.714434,1.714434,1.714434,1.714434,1.714434 +1.7093,1.7093,1.7093,1.7093,1.7093,1.7093 +1.703625,1.703625,1.703625,1.703625,1.703625,1.703625 +1.697384,1.697384,1.697384,1.697384,1.697384,1.697384 +1.690548,1.690548,1.690548,1.690548,1.690548,1.690548 +1.683096,1.683096,1.683096,1.683096,1.683096,1.683096 +1.675037,1.675037,1.675037,1.675037,1.675037,1.675037 +1.666398,1.666398,1.666398,1.666398,1.666398,1.666398 +1.657206,1.657206,1.657206,1.657206,1.657206,1.657206 +1.647488,1.647488,1.647488,1.647488,1.647488,1.647488 +1.637271,1.637271,1.637271,1.637271,1.637271,1.637271 +1.626583,1.626583,1.626583,1.626583,1.626583,1.626583 +1.61545,1.61545,1.61545,1.61545,1.61545,1.61545 +1.603898,1.603898,1.603898,1.603898,1.603898,1.603898 +1.591956,1.591956,1.591956,1.591956,1.591956,1.591956 +1.57965,1.57965,1.57965,1.57965,1.57965,1.57965 +1.567008,1.567008,1.567008,1.567008,1.567008,1.567008 +1.554055,1.554055,1.554055,1.554055,1.554055,1.554055 +1.54082,1.54082,1.54082,1.54082,1.54082,1.54082 +1.527329,1.527329,1.527329,1.527329,1.527329,1.527329 +1.513608,1.513608,1.513608,1.513608,1.513608,1.513608 +1.499687,1.499687,1.499687,1.499687,1.499687,1.499687 +1.48559,1.48559,1.48559,1.48559,1.48559,1.48559 +1.471345,1.471345,1.471345,1.471345,1.471345,1.471345 +1.45698,1.45698,1.45698,1.45698,1.45698,1.45698 +1.44252,1.44252,1.44252,1.44252,1.44252,1.44252 +1.427994,1.427994,1.427994,1.427994,1.427994,1.427994 +1.413428,1.413428,1.413428,1.413428,1.413428,1.413428 +1.398849,1.398849,1.398849,1.398849,1.398849,1.398849 +1.384269,1.384269,1.384269,1.384269,1.384269,1.384269 +1.369689,1.369689,1.369689,1.369689,1.369689,1.369689 +1.355109,1.355109,1.355109,1.355109,1.355109,1.355109 +1.340529,1.340529,1.340529,1.340529,1.340529,1.340529 +1.325949,1.325949,1.325949,1.325949,1.325949,1.325949 +1.311369,1.311369,1.311369,1.311369,1.311369,1.311369 +1.296789,1.296789,1.296789,1.296789,1.296789,1.296789 +1.282209,1.282209,1.282209,1.282209,1.282209,1.282209 +1.267629,1.267629,1.267629,1.267629,1.267629,1.267629 +1.253049,1.253049,1.253049,1.253049,1.253049,1.253049 +1.238469,1.238469,1.238469,1.238469,1.238469,1.238469 +1.223889,1.223889,1.223889,1.223889,1.223889,1.223889 +1.209309,1.209309,1.209309,1.209309,1.209309,1.209309 +1.194729,1.194729,1.194729,1.194729,1.194729,1.194729 +1.180149,1.180149,1.180149,1.180149,1.180149,1.180149 +1.165569,1.165569,1.165569,1.165569,1.165569,1.165569 +1.150989,1.150989,1.150989,1.150989,1.150989,1.150989 +1.136409,1.136409,1.136409,1.136409,1.136409,1.136409 +1.121829,1.121829,1.121829,1.121829,1.121829,1.121829 +1.107249,1.107249,1.107249,1.107249,1.107249,1.107249 +1.092669,1.092669,1.092669,1.092669,1.092669,1.092669 +1.078089,1.078089,1.078089,1.078089,1.078089,1.078089 +1.063509,1.063509,1.063509,1.063509,1.063509,1.063509 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.034349,1.034349,1.034349,1.034349,1.034349,1.034349 +1.019769,1.019769,1.019769,1.019769,1.019769,1.019769 +1.005189,1.005189,1.005189,1.005189,1.005189,1.005189 +0.990609,0.990609,0.990609,0.990609,0.990609,0.990609 +0.976029,0.976029,0.976029,0.976029,0.976029,0.976029 +0.961449,0.961449,0.961449,0.961449,0.961449,0.961449 +0.946869,0.946869,0.946869,0.946869,0.946869,0.946869 +0.932289,0.932289,0.932289,0.932289,0.932289,0.932289 +0.917709,0.917709,0.917709,0.917709,0.917709,0.917709 +0.903129,0.903129,0.903129,0.903129,0.903129,0.903129 +0.888549,0.888549,0.888549,0.888549,0.888549,0.888549 +0.873969,0.873969,0.873969,0.873969,0.873969,0.873969 +0.859389,0.859389,0.859389,0.859389,0.859389,0.859389 +0.844809,0.844809,0.844809,0.844809,0.844809,0.844809 +0.830229,0.830229,0.830229,0.830229,0.830229,0.830229 +0.815649,0.815649,0.815649,0.815649,0.815649,0.815649 +0.801069,0.801069,0.801069,0.801069,0.801069,0.801069 +0.786489,0.786489,0.786489,0.786489,0.786489,0.786489 +0.771909,0.771909,0.771909,0.771909,0.771909,0.771909 +0.757329,0.757329,0.757329,0.757329,0.757329,0.757329 +0.742749,0.742749,0.742749,0.742749,0.742749,0.742749 +0.728169,0.728169,0.728169,0.728169,0.728169,0.728169 +0.713589,0.713589,0.713589,0.713589,0.713589,0.713589 +0.699009,0.699009,0.699009,0.699009,0.699009,0.699009 +0.684429,0.684429,0.684429,0.684429,0.684429,0.684429 +0.669849,0.669849,0.669849,0.669849,0.669849,0.669849 +0.655269,0.655269,0.655269,0.655269,0.655269,0.655269 +0.640689,0.640689,0.640689,0.640689,0.640689,0.640689 +0.626109,0.626109,0.626109,0.626109,0.626109,0.626109 +0.611529,0.611529,0.611529,0.611529,0.611529,0.611529 +0.596949,0.596949,0.596949,0.596949,0.596949,0.596949 +0.582369,0.582369,0.582369,0.582369,0.582369,0.582369 +0.567789,0.567789,0.567789,0.567789,0.567789,0.567789 +0.553209,0.553209,0.553209,0.553209,0.553209,0.553209 +0.538629,0.538629,0.538629,0.538629,0.538629,0.538629 +0.524049,0.524049,0.524049,0.524049,0.524049,0.524049 +0.509469,0.509469,0.509469,0.509469,0.509469,0.509469 +0.494889,0.494889,0.494889,0.494889,0.494889,0.494889 +0.480309,0.480309,0.480309,0.480309,0.480309,0.480309 +0.465729,0.465729,0.465729,0.465729,0.465729,0.465729 +0.451149,0.451149,0.451149,0.451149,0.451149,0.451149 +0.436569,0.436569,0.436569,0.436569,0.436569,0.436569 +0.421989,0.421989,0.421989,0.421989,0.421989,0.421989 +0.407409,0.407409,0.407409,0.407409,0.407409,0.407409 +0.392829,0.392829,0.392829,0.392829,0.392829,0.392829 +0.378249,0.378249,0.378249,0.378249,0.378249,0.378249 +0.363669,0.363669,0.363669,0.363669,0.363669,0.363669 +0.349089,0.349089,0.349089,0.349089,0.349089,0.349089 +0.334509,0.334509,0.334509,0.334509,0.334509,0.334509 +0.319938,0.319938,0.319938,0.319938,0.319938,0.319938 +0.305403,0.305403,0.305403,0.305403,0.305403,0.305403 +0.29093,0.29093,0.29093,0.29093,0.29093,0.29093 +0.276545,0.276545,0.276545,0.276545,0.276545,0.276545 +0.262277,0.262277,0.262277,0.262277,0.262277,0.262277 +0.248151,0.248151,0.248151,0.248151,0.248151,0.248151 +0.234196,0.234196,0.234196,0.234196,0.234196,0.234196 +0.220437,0.220437,0.220437,0.220437,0.220437,0.220437 +0.206902,0.206902,0.206902,0.206902,0.206902,0.206902 +0.193619,0.193619,0.193619,0.193619,0.193619,0.193619 +0.180613,0.180613,0.180613,0.180613,0.180613,0.180613 +0.167912,0.167912,0.167912,0.167912,0.167912,0.167912 +0.155543,0.155543,0.155543,0.155543,0.155543,0.155543 +0.143534,0.143534,0.143534,0.143534,0.143534,0.143534 +0.13191,0.13191,0.13191,0.13191,0.13191,0.13191 +0.120699,0.120699,0.120699,0.120699,0.120699,0.120699 +0.109928,0.109928,0.109928,0.109928,0.109928,0.109928 +0.099624,0.099624,0.099624,0.099624,0.099624,0.099624 +0.089814,0.089814,0.089814,0.089814,0.089814,0.089814 +0.080525,0.080525,0.080525,0.080525,0.080525,0.080525 +0.071784,0.071784,0.071784,0.071784,0.071784,0.071784 +0.063618,0.063618,0.063618,0.063618,0.063618,0.063618 +0.056053,0.056053,0.056053,0.056053,0.056053,0.056053 +0.049108,0.049108,0.049108,0.049108,0.049108,0.049108 +0.042761,0.042761,0.042761,0.042761,0.042761,0.042761 +0.036986,0.036986,0.036986,0.036986,0.036986,0.036986 +0.031755,0.031755,0.031755,0.031755,0.031755,0.031755 +0.027043,0.027043,0.027043,0.027043,0.027043,0.027043 +0.022822,0.022822,0.022822,0.022822,0.022822,0.022822 +0.019064,0.019064,0.019064,0.019064,0.019064,0.019064 +0.015744,0.015744,0.015744,0.015744,0.015744,0.015744 +0.012833,0.012833,0.012833,0.012833,0.012833,0.012833 +0.010305,0.010305,0.010305,0.010305,0.010305,0.010305 +0.008133,0.008133,0.008133,0.008133,0.008133,0.008133 +0.00629,0.00629,0.00629,0.00629,0.00629,0.00629 +0.004749,0.004749,0.004749,0.004749,0.004749,0.004749 +0.003482,0.003482,0.003482,0.003482,0.003482,0.003482 +0.002464,0.002464,0.002464,0.002464,0.002464,0.002464 +0.001666,0.001666,0.001666,0.001666,0.001666,0.001666 +0.001063,0.001063,0.001063,0.001063,0.001063,0.001063 +0.000626,0.000626,0.000626,0.000626,0.000626,0.000626 +0.000329,0.000329,0.000329,0.000329,0.000329,0.000329 +0.000145,0.000145,0.000145,0.000145,0.000145,0.000145 +0.000047,0.000047,0.000047,0.000047,0.000047,0.000047 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +-0.000036,-0.000036,-0.000036,-0.000036,-0.000036,-0.000036 +-0.000122,-0.000122,-0.000122,-0.000122,-0.000122,-0.000122 +-0.000288,-0.000288,-0.000288,-0.000288,-0.000288,-0.000288 +-0.000563,-0.000563,-0.000563,-0.000563,-0.000563,-0.000563 +-0.000972,-0.000972,-0.000972,-0.000972,-0.000972,-0.000972 +-0.001544,-0.001544,-0.001544,-0.001544,-0.001544,-0.001544 +-0.002304,-0.002304,-0.002304,-0.002304,-0.002304,-0.002304 +-0.003281,-0.003281,-0.003281,-0.003281,-0.003281,-0.003281 +-0.0045,-0.0045,-0.0045,-0.0045,-0.0045,-0.0045 +-0.00599,-0.00599,-0.00599,-0.00599,-0.00599,-0.00599 +-0.007776,-0.007776,-0.007776,-0.007776,-0.007776,-0.007776 +-0.009887,-0.009887,-0.009887,-0.009887,-0.009887,-0.009887 +-0.012348,-0.012348,-0.012348,-0.012348,-0.012348,-0.012348 +-0.015188,-0.015188,-0.015188,-0.015188,-0.015188,-0.015188 +-0.018432,-0.018432,-0.018432,-0.018432,-0.018432,-0.018432 +-0.022109,-0.022109,-0.022109,-0.022109,-0.022109,-0.022109 +-0.026244,-0.026244,-0.026244,-0.026244,-0.026244,-0.026244 +-0.030866,-0.030866,-0.030866,-0.030866,-0.030866,-0.030866 +-0.036,-0.036,-0.036,-0.036,-0.036,-0.036 +-0.041675,-0.041675,-0.041675,-0.041675,-0.041675,-0.041675 +-0.047916,-0.047916,-0.047916,-0.047916,-0.047916,-0.047916 +-0.054752,-0.054752,-0.054752,-0.054752,-0.054752,-0.054752 +-0.062204,-0.062204,-0.062204,-0.062204,-0.062204,-0.062204 +-0.070263,-0.070263,-0.070263,-0.070263,-0.070263,-0.070263 +-0.078902,-0.078902,-0.078902,-0.078902,-0.078902,-0.078902 +-0.088094,-0.088094,-0.088094,-0.088094,-0.088094,-0.088094 +-0.097812,-0.097812,-0.097812,-0.097812,-0.097812,-0.097812 +-0.108029,-0.108029,-0.108029,-0.108029,-0.108029,-0.108029 +-0.118717,-0.118717,-0.118717,-0.118717,-0.118717,-0.118717 +-0.12985,-0.12985,-0.12985,-0.12985,-0.12985,-0.12985 +-0.141402,-0.141402,-0.141402,-0.141402,-0.141402,-0.141402 +-0.153344,-0.153344,-0.153344,-0.153344,-0.153344,-0.153344 +-0.16565,-0.16565,-0.16565,-0.16565,-0.16565,-0.16565 +-0.178292,-0.178292,-0.178292,-0.178292,-0.178292,-0.178292 +-0.191245,-0.191245,-0.191245,-0.191245,-0.191245,-0.191245 +-0.20448,-0.20448,-0.20448,-0.20448,-0.20448,-0.20448 +-0.217971,-0.217971,-0.217971,-0.217971,-0.217971,-0.217971 +-0.231692,-0.231692,-0.231692,-0.231692,-0.231692,-0.231692 +-0.245613,-0.245613,-0.245613,-0.245613,-0.245613,-0.245613 +-0.25971,-0.25971,-0.25971,-0.25971,-0.25971,-0.25971 +-0.273955,-0.273955,-0.273955,-0.273955,-0.273955,-0.273955 +-0.28832,-0.28832,-0.28832,-0.28832,-0.28832,-0.28832 +-0.30278,-0.30278,-0.30278,-0.30278,-0.30278,-0.30278 +-0.317306,-0.317306,-0.317306,-0.317306,-0.317306,-0.317306 +-0.331872,-0.331872,-0.331872,-0.331872,-0.331872,-0.331872 +-0.346451,-0.346451,-0.346451,-0.346451,-0.346451,-0.346451 +-0.361031,-0.361031,-0.361031,-0.361031,-0.361031,-0.361031 +-0.375611,-0.375611,-0.375611,-0.375611,-0.375611,-0.375611 +-0.390191,-0.390191,-0.390191,-0.390191,-0.390191,-0.390191 +-0.404771,-0.404771,-0.404771,-0.404771,-0.404771,-0.404771 +-0.419351,-0.419351,-0.419351,-0.419351,-0.419351,-0.419351 +-0.433931,-0.433931,-0.433931,-0.433931,-0.433931,-0.433931 +-0.448511,-0.448511,-0.448511,-0.448511,-0.448511,-0.448511 +-0.463091,-0.463091,-0.463091,-0.463091,-0.463091,-0.463091 +-0.477671,-0.477671,-0.477671,-0.477671,-0.477671,-0.477671 +-0.492251,-0.492251,-0.492251,-0.492251,-0.492251,-0.492251 +-0.506831,-0.506831,-0.506831,-0.506831,-0.506831,-0.506831 +-0.521411,-0.521411,-0.521411,-0.521411,-0.521411,-0.521411 +-0.535991,-0.535991,-0.535991,-0.535991,-0.535991,-0.535991 +-0.550571,-0.550571,-0.550571,-0.550571,-0.550571,-0.550571 +-0.565151,-0.565151,-0.565151,-0.565151,-0.565151,-0.565151 +-0.579731,-0.579731,-0.579731,-0.579731,-0.579731,-0.579731 +-0.594311,-0.594311,-0.594311,-0.594311,-0.594311,-0.594311 +-0.608891,-0.608891,-0.608891,-0.608891,-0.608891,-0.608891 +-0.623471,-0.623471,-0.623471,-0.623471,-0.623471,-0.623471 +-0.638051,-0.638051,-0.638051,-0.638051,-0.638051,-0.638051 +-0.652631,-0.652631,-0.652631,-0.652631,-0.652631,-0.652631 +-0.667211,-0.667211,-0.667211,-0.667211,-0.667211,-0.667211 +-0.681791,-0.681791,-0.681791,-0.681791,-0.681791,-0.681791 +-0.696371,-0.696371,-0.696371,-0.696371,-0.696371,-0.696371 +-0.710951,-0.710951,-0.710951,-0.710951,-0.710951,-0.710951 +-0.725531,-0.725531,-0.725531,-0.725531,-0.725531,-0.725531 +-0.740111,-0.740111,-0.740111,-0.740111,-0.740111,-0.740111 +-0.754691,-0.754691,-0.754691,-0.754691,-0.754691,-0.754691 +-0.769271,-0.769271,-0.769271,-0.769271,-0.769271,-0.769271 +-0.783851,-0.783851,-0.783851,-0.783851,-0.783851,-0.783851 +-0.798431,-0.798431,-0.798431,-0.798431,-0.798431,-0.798431 +-0.813011,-0.813011,-0.813011,-0.813011,-0.813011,-0.813011 +-0.827591,-0.827591,-0.827591,-0.827591,-0.827591,-0.827591 +-0.842171,-0.842171,-0.842171,-0.842171,-0.842171,-0.842171 +-0.856751,-0.856751,-0.856751,-0.856751,-0.856751,-0.856751 +-0.871331,-0.871331,-0.871331,-0.871331,-0.871331,-0.871331 +-0.885911,-0.885911,-0.885911,-0.885911,-0.885911,-0.885911 +-0.900491,-0.900491,-0.900491,-0.900491,-0.900491,-0.900491 +-0.915071,-0.915071,-0.915071,-0.915071,-0.915071,-0.915071 +-0.929651,-0.929651,-0.929651,-0.929651,-0.929651,-0.929651 +-0.944231,-0.944231,-0.944231,-0.944231,-0.944231,-0.944231 +-0.958811,-0.958811,-0.958811,-0.958811,-0.958811,-0.958811 +-0.973391,-0.973391,-0.973391,-0.973391,-0.973391,-0.973391 +-0.987971,-0.987971,-0.987971,-0.987971,-0.987971,-0.987971 +-1.002551,-1.002551,-1.002551,-1.002551,-1.002551,-1.002551 +-1.017131,-1.017131,-1.017131,-1.017131,-1.017131,-1.017131 +-1.031711,-1.031711,-1.031711,-1.031711,-1.031711,-1.031711 +-1.046291,-1.046291,-1.046291,-1.046291,-1.046291,-1.046291 +-1.060871,-1.060871,-1.060871,-1.060871,-1.060871,-1.060871 +-1.075451,-1.075451,-1.075451,-1.075451,-1.075451,-1.075451 +-1.090031,-1.090031,-1.090031,-1.090031,-1.090031,-1.090031 +-1.104611,-1.104611,-1.104611,-1.104611,-1.104611,-1.104611 +-1.119191,-1.119191,-1.119191,-1.119191,-1.119191,-1.119191 +-1.133771,-1.133771,-1.133771,-1.133771,-1.133771,-1.133771 +-1.148351,-1.148351,-1.148351,-1.148351,-1.148351,-1.148351 +-1.162931,-1.162931,-1.162931,-1.162931,-1.162931,-1.162931 +-1.177511,-1.177511,-1.177511,-1.177511,-1.177511,-1.177511 +-1.192091,-1.192091,-1.192091,-1.192091,-1.192091,-1.192091 +-1.206671,-1.206671,-1.206671,-1.206671,-1.206671,-1.206671 +-1.221251,-1.221251,-1.221251,-1.221251,-1.221251,-1.221251 +-1.235831,-1.235831,-1.235831,-1.235831,-1.235831,-1.235831 +-1.250411,-1.250411,-1.250411,-1.250411,-1.250411,-1.250411 +-1.264991,-1.264991,-1.264991,-1.264991,-1.264991,-1.264991 +-1.279571,-1.279571,-1.279571,-1.279571,-1.279571,-1.279571 +-1.294151,-1.294151,-1.294151,-1.294151,-1.294151,-1.294151 +-1.308731,-1.308731,-1.308731,-1.308731,-1.308731,-1.308731 +-1.323311,-1.323311,-1.323311,-1.323311,-1.323311,-1.323311 +-1.337891,-1.337891,-1.337891,-1.337891,-1.337891,-1.337891 +-1.352471,-1.352471,-1.352471,-1.352471,-1.352471,-1.352471 +-1.367051,-1.367051,-1.367051,-1.367051,-1.367051,-1.367051 +-1.381631,-1.381631,-1.381631,-1.381631,-1.381631,-1.381631 +-1.396211,-1.396211,-1.396211,-1.396211,-1.396211,-1.396211 +-1.410791,-1.410791,-1.410791,-1.410791,-1.410791,-1.410791 +-1.425362,-1.425362,-1.425362,-1.425362,-1.425362,-1.425362 +-1.439897,-1.439897,-1.439897,-1.439897,-1.439897,-1.439897 +-1.45437,-1.45437,-1.45437,-1.45437,-1.45437,-1.45437 +-1.468755,-1.468755,-1.468755,-1.468755,-1.468755,-1.468755 +-1.483023,-1.483023,-1.483023,-1.483023,-1.483023,-1.483023 +-1.497149,-1.497149,-1.497149,-1.497149,-1.497149,-1.497149 +-1.511104,-1.511104,-1.511104,-1.511104,-1.511104,-1.511104 +-1.524863,-1.524863,-1.524863,-1.524863,-1.524863,-1.524863 +-1.538398,-1.538398,-1.538398,-1.538398,-1.538398,-1.538398 +-1.551681,-1.551681,-1.551681,-1.551681,-1.551681,-1.551681 +-1.564687,-1.564687,-1.564687,-1.564687,-1.564687,-1.564687 +-1.577388,-1.577388,-1.577388,-1.577388,-1.577388,-1.577388 +-1.589757,-1.589757,-1.589757,-1.589757,-1.589757,-1.589757 +-1.601766,-1.601766,-1.601766,-1.601766,-1.601766,-1.601766 +-1.61339,-1.61339,-1.61339,-1.61339,-1.61339,-1.61339 +-1.624601,-1.624601,-1.624601,-1.624601,-1.624601,-1.624601 +-1.635372,-1.635372,-1.635372,-1.635372,-1.635372,-1.635372 +-1.645676,-1.645676,-1.645676,-1.645676,-1.645676,-1.645676 +-1.655486,-1.655486,-1.655486,-1.655486,-1.655486,-1.655486 +-1.664775,-1.664775,-1.664775,-1.664775,-1.664775,-1.664775 +-1.673516,-1.673516,-1.673516,-1.673516,-1.673516,-1.673516 +-1.681682,-1.681682,-1.681682,-1.681682,-1.681682,-1.681682 +-1.689247,-1.689247,-1.689247,-1.689247,-1.689247,-1.689247 +-1.696192,-1.696192,-1.696192,-1.696192,-1.696192,-1.696192 +-1.702539,-1.702539,-1.702539,-1.702539,-1.702539,-1.702539 +-1.708314,-1.708314,-1.708314,-1.708314,-1.708314,-1.708314 +-1.713545,-1.713545,-1.713545,-1.713545,-1.713545,-1.713545 +-1.718257,-1.718257,-1.718257,-1.718257,-1.718257,-1.718257 +-1.722478,-1.722478,-1.722478,-1.722478,-1.722478,-1.722478 +-1.726236,-1.726236,-1.726236,-1.726236,-1.726236,-1.726236 +-1.729556,-1.729556,-1.729556,-1.729556,-1.729556,-1.729556 +-1.732467,-1.732467,-1.732467,-1.732467,-1.732467,-1.732467 +-1.734995,-1.734995,-1.734995,-1.734995,-1.734995,-1.734995 +-1.737167,-1.737167,-1.737167,-1.737167,-1.737167,-1.737167 +-1.73901,-1.73901,-1.73901,-1.73901,-1.73901,-1.73901 +-1.740551,-1.740551,-1.740551,-1.740551,-1.740551,-1.740551 +-1.741818,-1.741818,-1.741818,-1.741818,-1.741818,-1.741818 +-1.742836,-1.742836,-1.742836,-1.742836,-1.742836,-1.742836 +-1.743634,-1.743634,-1.743634,-1.743634,-1.743634,-1.743634 +-1.744237,-1.744237,-1.744237,-1.744237,-1.744237,-1.744237 +-1.744674,-1.744674,-1.744674,-1.744674,-1.744674,-1.744674 +-1.744971,-1.744971,-1.744971,-1.744971,-1.744971,-1.744971 +-1.745155,-1.745155,-1.745155,-1.745155,-1.745155,-1.745155 +-1.745253,-1.745253,-1.745253,-1.745253,-1.745253,-1.745253 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745264,-1.745264,-1.745264,-1.745264,-1.745264,-1.745264 +-1.745178,-1.745178,-1.745178,-1.745178,-1.745178,-1.745178 +-1.745012,-1.745012,-1.745012,-1.745012,-1.745012,-1.745012 +-1.744738,-1.744738,-1.744738,-1.744738,-1.744738,-1.744738 +-1.744328,-1.744328,-1.744328,-1.744328,-1.744328,-1.744328 +-1.743756,-1.743756,-1.743756,-1.743756,-1.743756,-1.743756 +-1.742996,-1.742996,-1.742996,-1.742996,-1.742996,-1.742996 +-1.742019,-1.742019,-1.742019,-1.742019,-1.742019,-1.742019 +-1.7408,-1.7408,-1.7408,-1.7408,-1.7408,-1.7408 +-1.73931,-1.73931,-1.73931,-1.73931,-1.73931,-1.73931 +-1.737524,-1.737524,-1.737524,-1.737524,-1.737524,-1.737524 +-1.735413,-1.735413,-1.735413,-1.735413,-1.735413,-1.735413 +-1.732952,-1.732952,-1.732952,-1.732952,-1.732952,-1.732952 +-1.730112,-1.730112,-1.730112,-1.730112,-1.730112,-1.730112 +-1.726868,-1.726868,-1.726868,-1.726868,-1.726868,-1.726868 +-1.723191,-1.723191,-1.723191,-1.723191,-1.723191,-1.723191 +-1.719056,-1.719056,-1.719056,-1.719056,-1.719056,-1.719056 +-1.714434,-1.714434,-1.714434,-1.714434,-1.714434,-1.714434 +-1.7093,-1.7093,-1.7093,-1.7093,-1.7093,-1.7093 +-1.703625,-1.703625,-1.703625,-1.703625,-1.703625,-1.703625 +-1.697384,-1.697384,-1.697384,-1.697384,-1.697384,-1.697384 +-1.690548,-1.690548,-1.690548,-1.690548,-1.690548,-1.690548 +-1.683096,-1.683096,-1.683096,-1.683096,-1.683096,-1.683096 +-1.675037,-1.675037,-1.675037,-1.675037,-1.675037,-1.675037 +-1.666398,-1.666398,-1.666398,-1.666398,-1.666398,-1.666398 +-1.657206,-1.657206,-1.657206,-1.657206,-1.657206,-1.657206 +-1.647488,-1.647488,-1.647488,-1.647488,-1.647488,-1.647488 +-1.637271,-1.637271,-1.637271,-1.637271,-1.637271,-1.637271 +-1.626583,-1.626583,-1.626583,-1.626583,-1.626583,-1.626583 +-1.61545,-1.61545,-1.61545,-1.61545,-1.61545,-1.61545 +-1.603898,-1.603898,-1.603898,-1.603898,-1.603898,-1.603898 +-1.591956,-1.591956,-1.591956,-1.591956,-1.591956,-1.591956 +-1.57965,-1.57965,-1.57965,-1.57965,-1.57965,-1.57965 +-1.567008,-1.567008,-1.567008,-1.567008,-1.567008,-1.567008 +-1.554055,-1.554055,-1.554055,-1.554055,-1.554055,-1.554055 +-1.54082,-1.54082,-1.54082,-1.54082,-1.54082,-1.54082 +-1.527329,-1.527329,-1.527329,-1.527329,-1.527329,-1.527329 +-1.513608,-1.513608,-1.513608,-1.513608,-1.513608,-1.513608 +-1.499687,-1.499687,-1.499687,-1.499687,-1.499687,-1.499687 +-1.48559,-1.48559,-1.48559,-1.48559,-1.48559,-1.48559 +-1.471345,-1.471345,-1.471345,-1.471345,-1.471345,-1.471345 +-1.45698,-1.45698,-1.45698,-1.45698,-1.45698,-1.45698 +-1.44252,-1.44252,-1.44252,-1.44252,-1.44252,-1.44252 +-1.427994,-1.427994,-1.427994,-1.427994,-1.427994,-1.427994 +-1.413428,-1.413428,-1.413428,-1.413428,-1.413428,-1.413428 +-1.398849,-1.398849,-1.398849,-1.398849,-1.398849,-1.398849 +-1.384269,-1.384269,-1.384269,-1.384269,-1.384269,-1.384269 +-1.369689,-1.369689,-1.369689,-1.369689,-1.369689,-1.369689 +-1.355109,-1.355109,-1.355109,-1.355109,-1.355109,-1.355109 +-1.340529,-1.340529,-1.340529,-1.340529,-1.340529,-1.340529 +-1.325949,-1.325949,-1.325949,-1.325949,-1.325949,-1.325949 +-1.311369,-1.311369,-1.311369,-1.311369,-1.311369,-1.311369 +-1.296789,-1.296789,-1.296789,-1.296789,-1.296789,-1.296789 +-1.282209,-1.282209,-1.282209,-1.282209,-1.282209,-1.282209 +-1.267629,-1.267629,-1.267629,-1.267629,-1.267629,-1.267629 +-1.253049,-1.253049,-1.253049,-1.253049,-1.253049,-1.253049 +-1.238469,-1.238469,-1.238469,-1.238469,-1.238469,-1.238469 +-1.223889,-1.223889,-1.223889,-1.223889,-1.223889,-1.223889 +-1.209309,-1.209309,-1.209309,-1.209309,-1.209309,-1.209309 +-1.194729,-1.194729,-1.194729,-1.194729,-1.194729,-1.194729 +-1.180149,-1.180149,-1.180149,-1.180149,-1.180149,-1.180149 +-1.165569,-1.165569,-1.165569,-1.165569,-1.165569,-1.165569 +-1.150989,-1.150989,-1.150989,-1.150989,-1.150989,-1.150989 +-1.136409,-1.136409,-1.136409,-1.136409,-1.136409,-1.136409 +-1.121829,-1.121829,-1.121829,-1.121829,-1.121829,-1.121829 +-1.107249,-1.107249,-1.107249,-1.107249,-1.107249,-1.107249 +-1.092669,-1.092669,-1.092669,-1.092669,-1.092669,-1.092669 +-1.078089,-1.078089,-1.078089,-1.078089,-1.078089,-1.078089 +-1.063509,-1.063509,-1.063509,-1.063509,-1.063509,-1.063509 +-1.048929,-1.048929,-1.048929,-1.048929,-1.048929,-1.048929 +-1.034349,-1.034349,-1.034349,-1.034349,-1.034349,-1.034349 +-1.019769,-1.019769,-1.019769,-1.019769,-1.019769,-1.019769 +-1.005189,-1.005189,-1.005189,-1.005189,-1.005189,-1.005189 +-0.990609,-0.990609,-0.990609,-0.990609,-0.990609,-0.990609 +-0.976029,-0.976029,-0.976029,-0.976029,-0.976029,-0.976029 +-0.961449,-0.961449,-0.961449,-0.961449,-0.961449,-0.961449 +-0.946869,-0.946869,-0.946869,-0.946869,-0.946869,-0.946869 +-0.932289,-0.932289,-0.932289,-0.932289,-0.932289,-0.932289 +-0.917709,-0.917709,-0.917709,-0.917709,-0.917709,-0.917709 +-0.903129,-0.903129,-0.903129,-0.903129,-0.903129,-0.903129 +-0.888549,-0.888549,-0.888549,-0.888549,-0.888549,-0.888549 +-0.873969,-0.873969,-0.873969,-0.873969,-0.873969,-0.873969 +-0.859389,-0.859389,-0.859389,-0.859389,-0.859389,-0.859389 +-0.844809,-0.844809,-0.844809,-0.844809,-0.844809,-0.844809 +-0.830229,-0.830229,-0.830229,-0.830229,-0.830229,-0.830229 +-0.815649,-0.815649,-0.815649,-0.815649,-0.815649,-0.815649 +-0.801069,-0.801069,-0.801069,-0.801069,-0.801069,-0.801069 +-0.786489,-0.786489,-0.786489,-0.786489,-0.786489,-0.786489 +-0.771909,-0.771909,-0.771909,-0.771909,-0.771909,-0.771909 +-0.757329,-0.757329,-0.757329,-0.757329,-0.757329,-0.757329 +-0.742749,-0.742749,-0.742749,-0.742749,-0.742749,-0.742749 +-0.728169,-0.728169,-0.728169,-0.728169,-0.728169,-0.728169 +-0.713589,-0.713589,-0.713589,-0.713589,-0.713589,-0.713589 +-0.699009,-0.699009,-0.699009,-0.699009,-0.699009,-0.699009 +-0.684429,-0.684429,-0.684429,-0.684429,-0.684429,-0.684429 +-0.669849,-0.669849,-0.669849,-0.669849,-0.669849,-0.669849 +-0.655269,-0.655269,-0.655269,-0.655269,-0.655269,-0.655269 +-0.640689,-0.640689,-0.640689,-0.640689,-0.640689,-0.640689 +-0.626109,-0.626109,-0.626109,-0.626109,-0.626109,-0.626109 +-0.611529,-0.611529,-0.611529,-0.611529,-0.611529,-0.611529 +-0.596949,-0.596949,-0.596949,-0.596949,-0.596949,-0.596949 +-0.582369,-0.582369,-0.582369,-0.582369,-0.582369,-0.582369 +-0.567789,-0.567789,-0.567789,-0.567789,-0.567789,-0.567789 +-0.553209,-0.553209,-0.553209,-0.553209,-0.553209,-0.553209 +-0.538629,-0.538629,-0.538629,-0.538629,-0.538629,-0.538629 +-0.524049,-0.524049,-0.524049,-0.524049,-0.524049,-0.524049 +-0.509469,-0.509469,-0.509469,-0.509469,-0.509469,-0.509469 +-0.494889,-0.494889,-0.494889,-0.494889,-0.494889,-0.494889 +-0.480309,-0.480309,-0.480309,-0.480309,-0.480309,-0.480309 +-0.465729,-0.465729,-0.465729,-0.465729,-0.465729,-0.465729 +-0.451149,-0.451149,-0.451149,-0.451149,-0.451149,-0.451149 +-0.436569,-0.436569,-0.436569,-0.436569,-0.436569,-0.436569 +-0.421989,-0.421989,-0.421989,-0.421989,-0.421989,-0.421989 +-0.407409,-0.407409,-0.407409,-0.407409,-0.407409,-0.407409 +-0.392829,-0.392829,-0.392829,-0.392829,-0.392829,-0.392829 +-0.378249,-0.378249,-0.378249,-0.378249,-0.378249,-0.378249 +-0.363669,-0.363669,-0.363669,-0.363669,-0.363669,-0.363669 +-0.349089,-0.349089,-0.349089,-0.349089,-0.349089,-0.349089 +-0.334509,-0.334509,-0.334509,-0.334509,-0.334509,-0.334509 +-0.319938,-0.319938,-0.319938,-0.319938,-0.319938,-0.319938 +-0.305403,-0.305403,-0.305403,-0.305403,-0.305403,-0.305403 +-0.29093,-0.29093,-0.29093,-0.29093,-0.29093,-0.29093 +-0.276545,-0.276545,-0.276545,-0.276545,-0.276545,-0.276545 +-0.262277,-0.262277,-0.262277,-0.262277,-0.262277,-0.262277 +-0.248151,-0.248151,-0.248151,-0.248151,-0.248151,-0.248151 +-0.234196,-0.234196,-0.234196,-0.234196,-0.234196,-0.234196 +-0.220437,-0.220437,-0.220437,-0.220437,-0.220437,-0.220437 +-0.206902,-0.206902,-0.206902,-0.206902,-0.206902,-0.206902 +-0.193619,-0.193619,-0.193619,-0.193619,-0.193619,-0.193619 +-0.180613,-0.180613,-0.180613,-0.180613,-0.180613,-0.180613 +-0.167912,-0.167912,-0.167912,-0.167912,-0.167912,-0.167912 +-0.155543,-0.155543,-0.155543,-0.155543,-0.155543,-0.155543 +-0.143534,-0.143534,-0.143534,-0.143534,-0.143534,-0.143534 +-0.13191,-0.13191,-0.13191,-0.13191,-0.13191,-0.13191 +-0.120699,-0.120699,-0.120699,-0.120699,-0.120699,-0.120699 +-0.109928,-0.109928,-0.109928,-0.109928,-0.109928,-0.109928 +-0.099624,-0.099624,-0.099624,-0.099624,-0.099624,-0.099624 +-0.089814,-0.089814,-0.089814,-0.089814,-0.089814,-0.089814 +-0.080525,-0.080525,-0.080525,-0.080525,-0.080525,-0.080525 +-0.071784,-0.071784,-0.071784,-0.071784,-0.071784,-0.071784 +-0.063618,-0.063618,-0.063618,-0.063618,-0.063618,-0.063618 +-0.056053,-0.056053,-0.056053,-0.056053,-0.056053,-0.056053 +-0.049108,-0.049108,-0.049108,-0.049108,-0.049108,-0.049108 +-0.042761,-0.042761,-0.042761,-0.042761,-0.042761,-0.042761 +-0.036986,-0.036986,-0.036986,-0.036986,-0.036986,-0.036986 +-0.031755,-0.031755,-0.031755,-0.031755,-0.031755,-0.031755 +-0.027043,-0.027043,-0.027043,-0.027043,-0.027043,-0.027043 +-0.022822,-0.022822,-0.022822,-0.022822,-0.022822,-0.022822 +-0.019064,-0.019064,-0.019064,-0.019064,-0.019064,-0.019064 +-0.015744,-0.015744,-0.015744,-0.015744,-0.015744,-0.015744 +-0.012833,-0.012833,-0.012833,-0.012833,-0.012833,-0.012833 +-0.010305,-0.010305,-0.010305,-0.010305,-0.010305,-0.010305 +-0.008133,-0.008133,-0.008133,-0.008133,-0.008133,-0.008133 +-0.00629,-0.00629,-0.00629,-0.00629,-0.00629,-0.00629 +-0.004749,-0.004749,-0.004749,-0.004749,-0.004749,-0.004749 +-0.003482,-0.003482,-0.003482,-0.003482,-0.003482,-0.003482 +-0.002464,-0.002464,-0.002464,-0.002464,-0.002464,-0.002464 +-0.001666,-0.001666,-0.001666,-0.001666,-0.001666,-0.001666 +-0.001063,-0.001063,-0.001063,-0.001063,-0.001063,-0.001063 +-0.000626,-0.000626,-0.000626,-0.000626,-0.000626,-0.000626 +-0.000329,-0.000329,-0.000329,-0.000329,-0.000329,-0.000329 +-0.000145,-0.000145,-0.000145,-0.000145,-0.000145,-0.000145 +-0.000047,-0.000047,-0.000047,-0.000047,-0.000047,-0.000047 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0.000037,0.000037,0.000037,0.000037,0.000037,0.000037 +0.000126,0.000126,0.000126,0.000126,0.000126,0.000126 +0.000299,0.000299,0.000299,0.000299,0.000299,0.000299 +0.000583,0.000583,0.000583,0.000583,0.000583,0.000583 +0.001008,0.001008,0.001008,0.001008,0.001008,0.001008 +0.001601,0.001601,0.001601,0.001601,0.001601,0.001601 +0.002389,0.002389,0.002389,0.002389,0.002389,0.002389 +0.003402,0.003402,0.003402,0.003402,0.003402,0.003402 +0.004667,0.004667,0.004667,0.004667,0.004667,0.004667 +0.006211,0.006211,0.006211,0.006211,0.006211,0.006211 +0.008064,0.008064,0.008064,0.008064,0.008064,0.008064 +0.010253,0.010253,0.010253,0.010253,0.010253,0.010253 +0.012805,0.012805,0.012805,0.012805,0.012805,0.012805 +0.01575,0.01575,0.01575,0.01575,0.01575,0.01575 +0.019115,0.019115,0.019115,0.019115,0.019115,0.019115 +0.022927,0.022927,0.022927,0.022927,0.022927,0.022927 +0.027216,0.027216,0.027216,0.027216,0.027216,0.027216 +0.032009,0.032009,0.032009,0.032009,0.032009,0.032009 +0.037333,0.037333,0.037333,0.037333,0.037333,0.037333 +0.043218,0.043218,0.043218,0.043218,0.043218,0.043218 +0.049691,0.049691,0.049691,0.049691,0.049691,0.049691 +0.056779,0.056779,0.056779,0.056779,0.056779,0.056779 +0.064512,0.064512,0.064512,0.064512,0.064512,0.064512 +0.072894,0.072894,0.072894,0.072894,0.072894,0.072894 +0.081902,0.081902,0.081902,0.081902,0.081902,0.081902 +0.091508,0.091508,0.091508,0.091508,0.091508,0.091508 +0.101682,0.101682,0.101682,0.101682,0.101682,0.101682 +0.112398,0.112398,0.112398,0.112398,0.112398,0.112398 +0.123626,0.123626,0.123626,0.123626,0.123626,0.123626 +0.13534,0.13534,0.13534,0.13534,0.13534,0.13534 +0.147512,0.147512,0.147512,0.147512,0.147512,0.147512 +0.160112,0.160112,0.160112,0.160112,0.160112,0.160112 +0.173114,0.173114,0.173114,0.173114,0.173114,0.173114 +0.186488,0.186488,0.186488,0.186488,0.186488,0.186488 +0.200208,0.200208,0.200208,0.200208,0.200208,0.200208 +0.214246,0.214246,0.214246,0.214246,0.214246,0.214246 +0.228572,0.228572,0.228572,0.228572,0.228572,0.228572 +0.24316,0.24316,0.24316,0.24316,0.24316,0.24316 +0.25798,0.25798,0.25798,0.25798,0.25798,0.25798 +0.273006,0.273006,0.273006,0.273006,0.273006,0.273006 +0.28821,0.28821,0.28821,0.28821,0.28821,0.28821 +0.303562,0.303562,0.303562,0.303562,0.303562,0.303562 +0.319036,0.319036,0.319036,0.319036,0.319036,0.319036 +0.334602,0.334602,0.334602,0.334602,0.334602,0.334602 +0.350234,0.350234,0.350234,0.350234,0.350234,0.350234 +0.365904,0.365904,0.365904,0.365904,0.365904,0.365904 +0.381583,0.381583,0.381583,0.381583,0.381583,0.381583 +0.397263,0.397263,0.397263,0.397263,0.397263,0.397263 +0.412943,0.412943,0.412943,0.412943,0.412943,0.412943 +0.428623,0.428623,0.428623,0.428623,0.428623,0.428623 +0.444303,0.444303,0.444303,0.444303,0.444303,0.444303 +0.459983,0.459983,0.459983,0.459983,0.459983,0.459983 +0.475663,0.475663,0.475663,0.475663,0.475663,0.475663 +0.491343,0.491343,0.491343,0.491343,0.491343,0.491343 +0.507023,0.507023,0.507023,0.507023,0.507023,0.507023 +0.522703,0.522703,0.522703,0.522703,0.522703,0.522703 +0.538383,0.538383,0.538383,0.538383,0.538383,0.538383 +0.554063,0.554063,0.554063,0.554063,0.554063,0.554063 +0.569743,0.569743,0.569743,0.569743,0.569743,0.569743 +0.585423,0.585423,0.585423,0.585423,0.585423,0.585423 +0.601103,0.601103,0.601103,0.601103,0.601103,0.601103 +0.616783,0.616783,0.616783,0.616783,0.616783,0.616783 +0.632463,0.632463,0.632463,0.632463,0.632463,0.632463 +0.648143,0.648143,0.648143,0.648143,0.648143,0.648143 +0.663823,0.663823,0.663823,0.663823,0.663823,0.663823 +0.679503,0.679503,0.679503,0.679503,0.679503,0.679503 +0.695183,0.695183,0.695183,0.695183,0.695183,0.695183 +0.710863,0.710863,0.710863,0.710863,0.710863,0.710863 +0.726543,0.726543,0.726543,0.726543,0.726543,0.726543 +0.742223,0.742223,0.742223,0.742223,0.742223,0.742223 +0.757903,0.757903,0.757903,0.757903,0.757903,0.757903 +0.773583,0.773583,0.773583,0.773583,0.773583,0.773583 +0.789263,0.789263,0.789263,0.789263,0.789263,0.789263 +0.804943,0.804943,0.804943,0.804943,0.804943,0.804943 +0.820623,0.820623,0.820623,0.820623,0.820623,0.820623 +0.836303,0.836303,0.836303,0.836303,0.836303,0.836303 +0.851983,0.851983,0.851983,0.851983,0.851983,0.851983 +0.867663,0.867663,0.867663,0.867663,0.867663,0.867663 +0.883343,0.883343,0.883343,0.883343,0.883343,0.883343 +0.899023,0.899023,0.899023,0.899023,0.899023,0.899023 +0.914703,0.914703,0.914703,0.914703,0.914703,0.914703 +0.930383,0.930383,0.930383,0.930383,0.930383,0.930383 +0.946063,0.946063,0.946063,0.946063,0.946063,0.946063 +0.961743,0.961743,0.961743,0.961743,0.961743,0.961743 +0.977423,0.977423,0.977423,0.977423,0.977423,0.977423 +0.993103,0.993103,0.993103,0.993103,0.993103,0.993103 +1.008783,1.008783,1.008783,1.008783,1.008783,1.008783 +1.024463,1.024463,1.024463,1.024463,1.024463,1.024463 +1.040143,1.040143,1.040143,1.040143,1.040143,1.040143 +1.055823,1.055823,1.055823,1.055823,1.055823,1.055823 +1.071503,1.071503,1.071503,1.071503,1.071503,1.071503 +1.087183,1.087183,1.087183,1.087183,1.087183,1.087183 +1.102863,1.102863,1.102863,1.102863,1.102863,1.102863 +1.118543,1.118543,1.118543,1.118543,1.118543,1.118543 +1.134223,1.134223,1.134223,1.134223,1.134223,1.134223 +1.149903,1.149903,1.149903,1.149903,1.149903,1.149903 +1.165583,1.165583,1.165583,1.165583,1.165583,1.165583 +1.181263,1.181263,1.181263,1.181263,1.181263,1.181263 +1.196943,1.196943,1.196943,1.196943,1.196943,1.196943 +1.212623,1.212623,1.212623,1.212623,1.212623,1.212623 +1.228303,1.228303,1.228303,1.228303,1.228303,1.228303 +1.243983,1.243983,1.243983,1.243983,1.243983,1.243983 +1.259663,1.259663,1.259663,1.259663,1.259663,1.259663 +1.275343,1.275343,1.275343,1.275343,1.275343,1.275343 +1.291023,1.291023,1.291023,1.291023,1.291023,1.291023 +1.306703,1.306703,1.306703,1.306703,1.306703,1.306703 +1.322383,1.322383,1.322383,1.322383,1.322383,1.322383 +1.338063,1.338063,1.338063,1.338063,1.338063,1.338063 +1.353743,1.353743,1.353743,1.353743,1.353743,1.353743 +1.369423,1.369423,1.369423,1.369423,1.369423,1.369423 +1.385102,1.385102,1.385102,1.385102,1.385102,1.385102 +1.400761,1.400761,1.400761,1.400761,1.400761,1.400761 +1.416372,1.416372,1.416372,1.416372,1.416372,1.416372 +1.431909,1.431909,1.431909,1.431909,1.431909,1.431909 +1.447341,1.447341,1.447341,1.447341,1.447341,1.447341 +1.462643,1.462643,1.462643,1.462643,1.462643,1.462643 +1.477785,1.477785,1.477785,1.477785,1.477785,1.477785 +1.492739,1.492739,1.492739,1.492739,1.492739,1.492739 +1.507478,1.507478,1.507478,1.507478,1.507478,1.507478 +1.521974,1.521974,1.521974,1.521974,1.521974,1.521974 +1.536198,1.536198,1.536198,1.536198,1.536198,1.536198 +1.550123,1.550123,1.550123,1.550123,1.550123,1.550123 +1.563721,1.563721,1.563721,1.563721,1.563721,1.563721 +1.576963,1.576963,1.576963,1.576963,1.576963,1.576963 +1.589822,1.589822,1.589822,1.589822,1.589822,1.589822 +1.602269,1.602269,1.602269,1.602269,1.602269,1.602269 +1.614278,1.614278,1.614278,1.614278,1.614278,1.614278 +1.625818,1.625818,1.625818,1.625818,1.625818,1.625818 +1.636863,1.636863,1.636863,1.636863,1.636863,1.636863 +1.647385,1.647385,1.647385,1.647385,1.647385,1.647385 +1.657356,1.657356,1.657356,1.657356,1.657356,1.657356 +1.666747,1.666747,1.666747,1.666747,1.666747,1.666747 +1.67553,1.67553,1.67553,1.67553,1.67553,1.67553 +1.683679,1.683679,1.683679,1.683679,1.683679,1.683679 +1.691174,1.691174,1.691174,1.691174,1.691174,1.691174 +1.698035,1.698035,1.698035,1.698035,1.698035,1.698035 +1.70429,1.70429,1.70429,1.70429,1.70429,1.70429 +1.709968,1.709968,1.709968,1.709968,1.709968,1.709968 +1.715096,1.715096,1.715096,1.715096,1.715096,1.715096 +1.719702,1.719702,1.719702,1.719702,1.719702,1.719702 +1.723814,1.723814,1.723814,1.723814,1.723814,1.723814 +1.72746,1.72746,1.72746,1.72746,1.72746,1.72746 +1.730669,1.730669,1.730669,1.730669,1.730669,1.730669 +1.733468,1.733468,1.733468,1.733468,1.733468,1.733468 +1.735885,1.735885,1.735885,1.735885,1.735885,1.735885 +1.737948,1.737948,1.737948,1.737948,1.737948,1.737948 +1.739685,1.739685,1.739685,1.739685,1.739685,1.739685 +1.741125,1.741125,1.741125,1.741125,1.741125,1.741125 +1.742294,1.742294,1.742294,1.742294,1.742294,1.742294 +1.743222,1.743222,1.743222,1.743222,1.743222,1.743222 +1.743936,1.743936,1.743936,1.743936,1.743936,1.743936 +1.744465,1.744465,1.744465,1.744465,1.744465,1.744465 +1.744835,1.744835,1.744835,1.744835,1.744835,1.744835 +1.745076,1.745076,1.745076,1.745076,1.745076,1.745076 +1.745215,1.745215,1.745215,1.745215,1.745215,1.745215 +1.74528,1.74528,1.74528,1.74528,1.74528,1.74528 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745295,1.745295,1.745295,1.745295,1.745295,1.745295 +1.745263,1.745263,1.745263,1.745263,1.745263,1.745263 +1.745174,1.745174,1.745174,1.745174,1.745174,1.745174 +1.745001,1.745001,1.745001,1.745001,1.745001,1.745001 +1.744717,1.744717,1.744717,1.744717,1.744717,1.744717 +1.744292,1.744292,1.744292,1.744292,1.744292,1.744292 +1.743699,1.743699,1.743699,1.743699,1.743699,1.743699 +1.742911,1.742911,1.742911,1.742911,1.742911,1.742911 +1.741898,1.741898,1.741898,1.741898,1.741898,1.741898 +1.740633,1.740633,1.740633,1.740633,1.740633,1.740633 +1.739089,1.739089,1.739089,1.739089,1.739089,1.739089 +1.737236,1.737236,1.737236,1.737236,1.737236,1.737236 +1.735047,1.735047,1.735047,1.735047,1.735047,1.735047 +1.732495,1.732495,1.732495,1.732495,1.732495,1.732495 +1.72955,1.72955,1.72955,1.72955,1.72955,1.72955 +1.726185,1.726185,1.726185,1.726185,1.726185,1.726185 +1.722373,1.722373,1.722373,1.722373,1.722373,1.722373 +1.718084,1.718084,1.718084,1.718084,1.718084,1.718084 +1.713291,1.713291,1.713291,1.713291,1.713291,1.713291 +1.707967,1.707967,1.707967,1.707967,1.707967,1.707967 +1.702082,1.702082,1.702082,1.702082,1.702082,1.702082 +1.695609,1.695609,1.695609,1.695609,1.695609,1.695609 +1.688521,1.688521,1.688521,1.688521,1.688521,1.688521 +1.680788,1.680788,1.680788,1.680788,1.680788,1.680788 +1.672406,1.672406,1.672406,1.672406,1.672406,1.672406 +1.663398,1.663398,1.663398,1.663398,1.663398,1.663398 +1.653792,1.653792,1.653792,1.653792,1.653792,1.653792 +1.643618,1.643618,1.643618,1.643618,1.643618,1.643618 +1.632902,1.632902,1.632902,1.632902,1.632902,1.632902 +1.621674,1.621674,1.621674,1.621674,1.621674,1.621674 +1.60996,1.60996,1.60996,1.60996,1.60996,1.60996 +1.597788,1.597788,1.597788,1.597788,1.597788,1.597788 +1.585188,1.585188,1.585188,1.585188,1.585188,1.585188 +1.572186,1.572186,1.572186,1.572186,1.572186,1.572186 +1.558812,1.558812,1.558812,1.558812,1.558812,1.558812 +1.545092,1.545092,1.545092,1.545092,1.545092,1.545092 +1.531054,1.531054,1.531054,1.531054,1.531054,1.531054 +1.516728,1.516728,1.516728,1.516728,1.516728,1.516728 +1.50214,1.50214,1.50214,1.50214,1.50214,1.50214 +1.48732,1.48732,1.48732,1.48732,1.48732,1.48732 +1.472294,1.472294,1.472294,1.472294,1.472294,1.472294 +1.45709,1.45709,1.45709,1.45709,1.45709,1.45709 +1.441738,1.441738,1.441738,1.441738,1.441738,1.441738 +1.426264,1.426264,1.426264,1.426264,1.426264,1.426264 +1.410698,1.410698,1.410698,1.410698,1.410698,1.410698 +1.395066,1.395066,1.395066,1.395066,1.395066,1.395066 +1.379396,1.379396,1.379396,1.379396,1.379396,1.379396 +1.363717,1.363717,1.363717,1.363717,1.363717,1.363717 +1.348037,1.348037,1.348037,1.348037,1.348037,1.348037 +1.332357,1.332357,1.332357,1.332357,1.332357,1.332357 +1.316677,1.316677,1.316677,1.316677,1.316677,1.316677 +1.300997,1.300997,1.300997,1.300997,1.300997,1.300997 +1.285317,1.285317,1.285317,1.285317,1.285317,1.285317 +1.269637,1.269637,1.269637,1.269637,1.269637,1.269637 +1.253957,1.253957,1.253957,1.253957,1.253957,1.253957 +1.238277,1.238277,1.238277,1.238277,1.238277,1.238277 +1.222597,1.222597,1.222597,1.222597,1.222597,1.222597 +1.206917,1.206917,1.206917,1.206917,1.206917,1.206917 +1.191237,1.191237,1.191237,1.191237,1.191237,1.191237 +1.175557,1.175557,1.175557,1.175557,1.175557,1.175557 +1.159877,1.159877,1.159877,1.159877,1.159877,1.159877 +1.144197,1.144197,1.144197,1.144197,1.144197,1.144197 +1.128517,1.128517,1.128517,1.128517,1.128517,1.128517 +1.112837,1.112837,1.112837,1.112837,1.112837,1.112837 +1.097157,1.097157,1.097157,1.097157,1.097157,1.097157 +1.081477,1.081477,1.081477,1.081477,1.081477,1.081477 +1.065797,1.065797,1.065797,1.065797,1.065797,1.065797 +1.050117,1.050117,1.050117,1.050117,1.050117,1.050117 +1.034437,1.034437,1.034437,1.034437,1.034437,1.034437 +1.018757,1.018757,1.018757,1.018757,1.018757,1.018757 +1.003077,1.003077,1.003077,1.003077,1.003077,1.003077 +0.987397,0.987397,0.987397,0.987397,0.987397,0.987397 +0.971717,0.971717,0.971717,0.971717,0.971717,0.971717 +0.956037,0.956037,0.956037,0.956037,0.956037,0.956037 +0.940357,0.940357,0.940357,0.940357,0.940357,0.940357 +0.924677,0.924677,0.924677,0.924677,0.924677,0.924677 +0.908997,0.908997,0.908997,0.908997,0.908997,0.908997 +0.893317,0.893317,0.893317,0.893317,0.893317,0.893317 +0.877637,0.877637,0.877637,0.877637,0.877637,0.877637 +0.861957,0.861957,0.861957,0.861957,0.861957,0.861957 +0.846277,0.846277,0.846277,0.846277,0.846277,0.846277 +0.830597,0.830597,0.830597,0.830597,0.830597,0.830597 +0.814917,0.814917,0.814917,0.814917,0.814917,0.814917 +0.799237,0.799237,0.799237,0.799237,0.799237,0.799237 +0.783557,0.783557,0.783557,0.783557,0.783557,0.783557 +0.767877,0.767877,0.767877,0.767877,0.767877,0.767877 +0.752197,0.752197,0.752197,0.752197,0.752197,0.752197 +0.736517,0.736517,0.736517,0.736517,0.736517,0.736517 +0.720837,0.720837,0.720837,0.720837,0.720837,0.720837 +0.705157,0.705157,0.705157,0.705157,0.705157,0.705157 +0.689477,0.689477,0.689477,0.689477,0.689477,0.689477 +0.673797,0.673797,0.673797,0.673797,0.673797,0.673797 +0.658117,0.658117,0.658117,0.658117,0.658117,0.658117 +0.642437,0.642437,0.642437,0.642437,0.642437,0.642437 +0.626757,0.626757,0.626757,0.626757,0.626757,0.626757 +0.611077,0.611077,0.611077,0.611077,0.611077,0.611077 +0.595397,0.595397,0.595397,0.595397,0.595397,0.595397 +0.579717,0.579717,0.579717,0.579717,0.579717,0.579717 +0.564037,0.564037,0.564037,0.564037,0.564037,0.564037 +0.548357,0.548357,0.548357,0.548357,0.548357,0.548357 +0.532677,0.532677,0.532677,0.532677,0.532677,0.532677 +0.516997,0.516997,0.516997,0.516997,0.516997,0.516997 +0.501317,0.501317,0.501317,0.501317,0.501317,0.501317 +0.485637,0.485637,0.485637,0.485637,0.485637,0.485637 +0.469957,0.469957,0.469957,0.469957,0.469957,0.469957 +0.454277,0.454277,0.454277,0.454277,0.454277,0.454277 +0.438597,0.438597,0.438597,0.438597,0.438597,0.438597 +0.422917,0.422917,0.422917,0.422917,0.422917,0.422917 +0.407237,0.407237,0.407237,0.407237,0.407237,0.407237 +0.391557,0.391557,0.391557,0.391557,0.391557,0.391557 +0.375877,0.375877,0.375877,0.375877,0.375877,0.375877 +0.360198,0.360198,0.360198,0.360198,0.360198,0.360198 +0.344539,0.344539,0.344539,0.344539,0.344539,0.344539 +0.328928,0.328928,0.328928,0.328928,0.328928,0.328928 +0.313391,0.313391,0.313391,0.313391,0.313391,0.313391 +0.297959,0.297959,0.297959,0.297959,0.297959,0.297959 +0.282657,0.282657,0.282657,0.282657,0.282657,0.282657 +0.267515,0.267515,0.267515,0.267515,0.267515,0.267515 +0.252561,0.252561,0.252561,0.252561,0.252561,0.252561 +0.237822,0.237822,0.237822,0.237822,0.237822,0.237822 +0.223326,0.223326,0.223326,0.223326,0.223326,0.223326 +0.209102,0.209102,0.209102,0.209102,0.209102,0.209102 +0.195177,0.195177,0.195177,0.195177,0.195177,0.195177 +0.181579,0.181579,0.181579,0.181579,0.181579,0.181579 +0.168337,0.168337,0.168337,0.168337,0.168337,0.168337 +0.155478,0.155478,0.155478,0.155478,0.155478,0.155478 +0.143031,0.143031,0.143031,0.143031,0.143031,0.143031 +0.131022,0.131022,0.131022,0.131022,0.131022,0.131022 +0.119482,0.119482,0.119482,0.119482,0.119482,0.119482 +0.108437,0.108437,0.108437,0.108437,0.108437,0.108437 +0.097915,0.097915,0.097915,0.097915,0.097915,0.097915 +0.087944,0.087944,0.087944,0.087944,0.087944,0.087944 +0.078553,0.078553,0.078553,0.078553,0.078553,0.078553 +0.06977,0.06977,0.06977,0.06977,0.06977,0.06977 +0.061621,0.061621,0.061621,0.061621,0.061621,0.061621 +0.054126,0.054126,0.054126,0.054126,0.054126,0.054126 +0.047265,0.047265,0.047265,0.047265,0.047265,0.047265 +0.04101,0.04101,0.04101,0.04101,0.04101,0.04101 +0.035332,0.035332,0.035332,0.035332,0.035332,0.035332 +0.030204,0.030204,0.030204,0.030204,0.030204,0.030204 +0.025598,0.025598,0.025598,0.025598,0.025598,0.025598 +0.021486,0.021486,0.021486,0.021486,0.021486,0.021486 +0.01784,0.01784,0.01784,0.01784,0.01784,0.01784 +0.014631,0.014631,0.014631,0.014631,0.014631,0.014631 +0.011832,0.011832,0.011832,0.011832,0.011832,0.011832 +0.009415,0.009415,0.009415,0.009415,0.009415,0.009415 +0.007352,0.007352,0.007352,0.007352,0.007352,0.007352 +0.005615,0.005615,0.005615,0.005615,0.005615,0.005615 +0.004175,0.004175,0.004175,0.004175,0.004175,0.004175 +0.003006,0.003006,0.003006,0.003006,0.003006,0.003006 +0.002078,0.002078,0.002078,0.002078,0.002078,0.002078 +0.001364,0.001364,0.001364,0.001364,0.001364,0.001364 +0.000835,0.000835,0.000835,0.000835,0.000835,0.000835 +0.000465,0.000465,0.000465,0.000465,0.000465,0.000465 +0.000224,0.000224,0.000224,0.000224,0.000224,0.000224 +0.000085,0.000085,0.000085,0.000085,0.000085,0.000085 +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +-0.000037,-0.000037,-0.000037,-0.000037,-0.000037,-0.000037 +-0.000126,-0.000126,-0.000126,-0.000126,-0.000126,-0.000126 +-0.000299,-0.000299,-0.000299,-0.000299,-0.000299,-0.000299 +-0.000583,-0.000583,-0.000583,-0.000583,-0.000583,-0.000583 +-0.001008,-0.001008,-0.001008,-0.001008,-0.001008,-0.001008 +-0.001601,-0.001601,-0.001601,-0.001601,-0.001601,-0.001601 +-0.002389,-0.002389,-0.002389,-0.002389,-0.002389,-0.002389 +-0.003402,-0.003402,-0.003402,-0.003402,-0.003402,-0.003402 +-0.004667,-0.004667,-0.004667,-0.004667,-0.004667,-0.004667 +-0.006211,-0.006211,-0.006211,-0.006211,-0.006211,-0.006211 +-0.008064,-0.008064,-0.008064,-0.008064,-0.008064,-0.008064 +-0.010253,-0.010253,-0.010253,-0.010253,-0.010253,-0.010253 +-0.012805,-0.012805,-0.012805,-0.012805,-0.012805,-0.012805 +-0.01575,-0.01575,-0.01575,-0.01575,-0.01575,-0.01575 +-0.019115,-0.019115,-0.019115,-0.019115,-0.019115,-0.019115 +-0.022927,-0.022927,-0.022927,-0.022927,-0.022927,-0.022927 +-0.027216,-0.027216,-0.027216,-0.027216,-0.027216,-0.027216 +-0.032009,-0.032009,-0.032009,-0.032009,-0.032009,-0.032009 +-0.037333,-0.037333,-0.037333,-0.037333,-0.037333,-0.037333 +-0.043218,-0.043218,-0.043218,-0.043218,-0.043218,-0.043218 +-0.049691,-0.049691,-0.049691,-0.049691,-0.049691,-0.049691 +-0.056779,-0.056779,-0.056779,-0.056779,-0.056779,-0.056779 +-0.064512,-0.064512,-0.064512,-0.064512,-0.064512,-0.064512 +-0.072894,-0.072894,-0.072894,-0.072894,-0.072894,-0.072894 +-0.081902,-0.081902,-0.081902,-0.081902,-0.081902,-0.081902 +-0.091508,-0.091508,-0.091508,-0.091508,-0.091508,-0.091508 +-0.101682,-0.101682,-0.101682,-0.101682,-0.101682,-0.101682 +-0.112398,-0.112398,-0.112398,-0.112398,-0.112398,-0.112398 +-0.123626,-0.123626,-0.123626,-0.123626,-0.123626,-0.123626 +-0.13534,-0.13534,-0.13534,-0.13534,-0.13534,-0.13534 +-0.147512,-0.147512,-0.147512,-0.147512,-0.147512,-0.147512 +-0.160112,-0.160112,-0.160112,-0.160112,-0.160112,-0.160112 +-0.173114,-0.173114,-0.173114,-0.173114,-0.173114,-0.173114 +-0.186488,-0.186488,-0.186488,-0.186488,-0.186488,-0.186488 +-0.200208,-0.200208,-0.200208,-0.200208,-0.200208,-0.200208 +-0.214246,-0.214246,-0.214246,-0.214246,-0.214246,-0.214246 +-0.228572,-0.228572,-0.228572,-0.228572,-0.228572,-0.228572 +-0.24316,-0.24316,-0.24316,-0.24316,-0.24316,-0.24316 +-0.25798,-0.25798,-0.25798,-0.25798,-0.25798,-0.25798 +-0.273006,-0.273006,-0.273006,-0.273006,-0.273006,-0.273006 +-0.28821,-0.28821,-0.28821,-0.28821,-0.28821,-0.28821 +-0.303562,-0.303562,-0.303562,-0.303562,-0.303562,-0.303562 +-0.319036,-0.319036,-0.319036,-0.319036,-0.319036,-0.319036 +-0.334602,-0.334602,-0.334602,-0.334602,-0.334602,-0.334602 +-0.350234,-0.350234,-0.350234,-0.350234,-0.350234,-0.350234 +-0.365904,-0.365904,-0.365904,-0.365904,-0.365904,-0.365904 +-0.381583,-0.381583,-0.381583,-0.381583,-0.381583,-0.381583 +-0.397263,-0.397263,-0.397263,-0.397263,-0.397263,-0.397263 +-0.412943,-0.412943,-0.412943,-0.412943,-0.412943,-0.412943 +-0.428623,-0.428623,-0.428623,-0.428623,-0.428623,-0.428623 +-0.444303,-0.444303,-0.444303,-0.444303,-0.444303,-0.444303 +-0.459983,-0.459983,-0.459983,-0.459983,-0.459983,-0.459983 +-0.475663,-0.475663,-0.475663,-0.475663,-0.475663,-0.475663 +-0.491343,-0.491343,-0.491343,-0.491343,-0.491343,-0.491343 +-0.507023,-0.507023,-0.507023,-0.507023,-0.507023,-0.507023 +-0.522703,-0.522703,-0.522703,-0.522703,-0.522703,-0.522703 +-0.538383,-0.538383,-0.538383,-0.538383,-0.538383,-0.538383 +-0.554063,-0.554063,-0.554063,-0.554063,-0.554063,-0.554063 +-0.569743,-0.569743,-0.569743,-0.569743,-0.569743,-0.569743 +-0.585423,-0.585423,-0.585423,-0.585423,-0.585423,-0.585423 +-0.601103,-0.601103,-0.601103,-0.601103,-0.601103,-0.601103 +-0.616783,-0.616783,-0.616783,-0.616783,-0.616783,-0.616783 +-0.632463,-0.632463,-0.632463,-0.632463,-0.632463,-0.632463 +-0.648143,-0.648143,-0.648143,-0.648143,-0.648143,-0.648143 +-0.663823,-0.663823,-0.663823,-0.663823,-0.663823,-0.663823 +-0.679503,-0.679503,-0.679503,-0.679503,-0.679503,-0.679503 +-0.695183,-0.695183,-0.695183,-0.695183,-0.695183,-0.695183 +-0.710863,-0.710863,-0.710863,-0.710863,-0.710863,-0.710863 +-0.726543,-0.726543,-0.726543,-0.726543,-0.726543,-0.726543 +-0.742223,-0.742223,-0.742223,-0.742223,-0.742223,-0.742223 +-0.757903,-0.757903,-0.757903,-0.757903,-0.757903,-0.757903 +-0.773583,-0.773583,-0.773583,-0.773583,-0.773583,-0.773583 +-0.789263,-0.789263,-0.789263,-0.789263,-0.789263,-0.789263 +-0.804943,-0.804943,-0.804943,-0.804943,-0.804943,-0.804943 +-0.820623,-0.820623,-0.820623,-0.820623,-0.820623,-0.820623 +-0.836303,-0.836303,-0.836303,-0.836303,-0.836303,-0.836303 +-0.851983,-0.851983,-0.851983,-0.851983,-0.851983,-0.851983 +-0.867663,-0.867663,-0.867663,-0.867663,-0.867663,-0.867663 +-0.883343,-0.883343,-0.883343,-0.883343,-0.883343,-0.883343 +-0.899023,-0.899023,-0.899023,-0.899023,-0.899023,-0.899023 +-0.914703,-0.914703,-0.914703,-0.914703,-0.914703,-0.914703 +-0.930383,-0.930383,-0.930383,-0.930383,-0.930383,-0.930383 +-0.946063,-0.946063,-0.946063,-0.946063,-0.946063,-0.946063 +-0.961743,-0.961743,-0.961743,-0.961743,-0.961743,-0.961743 +-0.977423,-0.977423,-0.977423,-0.977423,-0.977423,-0.977423 +-0.993103,-0.993103,-0.993103,-0.993103,-0.993103,-0.993103 +-1.008783,-1.008783,-1.008783,-1.008783,-1.008783,-1.008783 +-1.024463,-1.024463,-1.024463,-1.024463,-1.024463,-1.024463 +-1.040143,-1.040143,-1.040143,-1.040143,-1.040143,-1.040143 +-1.055823,-1.055823,-1.055823,-1.055823,-1.055823,-1.055823 +-1.071503,-1.071503,-1.071503,-1.071503,-1.071503,-1.071503 +-1.087183,-1.087183,-1.087183,-1.087183,-1.087183,-1.087183 +-1.102863,-1.102863,-1.102863,-1.102863,-1.102863,-1.102863 +-1.118543,-1.118543,-1.118543,-1.118543,-1.118543,-1.118543 +-1.134223,-1.134223,-1.134223,-1.134223,-1.134223,-1.134223 +-1.149903,-1.149903,-1.149903,-1.149903,-1.149903,-1.149903 +-1.165583,-1.165583,-1.165583,-1.165583,-1.165583,-1.165583 +-1.181263,-1.181263,-1.181263,-1.181263,-1.181263,-1.181263 +-1.196943,-1.196943,-1.196943,-1.196943,-1.196943,-1.196943 +-1.212623,-1.212623,-1.212623,-1.212623,-1.212623,-1.212623 +-1.228303,-1.228303,-1.228303,-1.228303,-1.228303,-1.228303 +-1.243983,-1.243983,-1.243983,-1.243983,-1.243983,-1.243983 +-1.259663,-1.259663,-1.259663,-1.259663,-1.259663,-1.259663 +-1.275343,-1.275343,-1.275343,-1.275343,-1.275343,-1.275343 +-1.291023,-1.291023,-1.291023,-1.291023,-1.291023,-1.291023 +-1.306703,-1.306703,-1.306703,-1.306703,-1.306703,-1.306703 +-1.322383,-1.322383,-1.322383,-1.322383,-1.322383,-1.322383 +-1.338063,-1.338063,-1.338063,-1.338063,-1.338063,-1.338063 +-1.353743,-1.353743,-1.353743,-1.353743,-1.353743,-1.353743 +-1.369423,-1.369423,-1.369423,-1.369423,-1.369423,-1.369423 +-1.385102,-1.385102,-1.385102,-1.385102,-1.385102,-1.385102 +-1.400761,-1.400761,-1.400761,-1.400761,-1.400761,-1.400761 +-1.416372,-1.416372,-1.416372,-1.416372,-1.416372,-1.416372 +-1.431909,-1.431909,-1.431909,-1.431909,-1.431909,-1.431909 +-1.447341,-1.447341,-1.447341,-1.447341,-1.447341,-1.447341 +-1.462643,-1.462643,-1.462643,-1.462643,-1.462643,-1.462643 +-1.477785,-1.477785,-1.477785,-1.477785,-1.477785,-1.477785 +-1.492739,-1.492739,-1.492739,-1.492739,-1.492739,-1.492739 +-1.507478,-1.507478,-1.507478,-1.507478,-1.507478,-1.507478 +-1.521974,-1.521974,-1.521974,-1.521974,-1.521974,-1.521974 +-1.536198,-1.536198,-1.536198,-1.536198,-1.536198,-1.536198 +-1.550123,-1.550123,-1.550123,-1.550123,-1.550123,-1.550123 +-1.563721,-1.563721,-1.563721,-1.563721,-1.563721,-1.563721 +-1.576963,-1.576963,-1.576963,-1.576963,-1.576963,-1.576963 +-1.589822,-1.589822,-1.589822,-1.589822,-1.589822,-1.589822 +-1.602269,-1.602269,-1.602269,-1.602269,-1.602269,-1.602269 +-1.614278,-1.614278,-1.614278,-1.614278,-1.614278,-1.614278 +-1.625818,-1.625818,-1.625818,-1.625818,-1.625818,-1.625818 +-1.636863,-1.636863,-1.636863,-1.636863,-1.636863,-1.636863 +-1.647385,-1.647385,-1.647385,-1.647385,-1.647385,-1.647385 +-1.657356,-1.657356,-1.657356,-1.657356,-1.657356,-1.657356 +-1.666747,-1.666747,-1.666747,-1.666747,-1.666747,-1.666747 +-1.67553,-1.67553,-1.67553,-1.67553,-1.67553,-1.67553 +-1.683679,-1.683679,-1.683679,-1.683679,-1.683679,-1.683679 +-1.691174,-1.691174,-1.691174,-1.691174,-1.691174,-1.691174 +-1.698035,-1.698035,-1.698035,-1.698035,-1.698035,-1.698035 +-1.70429,-1.70429,-1.70429,-1.70429,-1.70429,-1.70429 +-1.709968,-1.709968,-1.709968,-1.709968,-1.709968,-1.709968 +-1.715096,-1.715096,-1.715096,-1.715096,-1.715096,-1.715096 +-1.719702,-1.719702,-1.719702,-1.719702,-1.719702,-1.719702 +-1.723814,-1.723814,-1.723814,-1.723814,-1.723814,-1.723814 +-1.72746,-1.72746,-1.72746,-1.72746,-1.72746,-1.72746 +-1.730669,-1.730669,-1.730669,-1.730669,-1.730669,-1.730669 +-1.733468,-1.733468,-1.733468,-1.733468,-1.733468,-1.733468 +-1.735885,-1.735885,-1.735885,-1.735885,-1.735885,-1.735885 +-1.737948,-1.737948,-1.737948,-1.737948,-1.737948,-1.737948 +-1.739685,-1.739685,-1.739685,-1.739685,-1.739685,-1.739685 +-1.741125,-1.741125,-1.741125,-1.741125,-1.741125,-1.741125 +-1.742294,-1.742294,-1.742294,-1.742294,-1.742294,-1.742294 +-1.743222,-1.743222,-1.743222,-1.743222,-1.743222,-1.743222 +-1.743936,-1.743936,-1.743936,-1.743936,-1.743936,-1.743936 +-1.744465,-1.744465,-1.744465,-1.744465,-1.744465,-1.744465 +-1.744835,-1.744835,-1.744835,-1.744835,-1.744835,-1.744835 +-1.745076,-1.745076,-1.745076,-1.745076,-1.745076,-1.745076 +-1.745215,-1.745215,-1.745215,-1.745215,-1.745215,-1.745215 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745295,-1.745295,-1.745295,-1.745295,-1.745295,-1.745295 +-1.745263,-1.745263,-1.745263,-1.745263,-1.745263,-1.745263 +-1.745174,-1.745174,-1.745174,-1.745174,-1.745174,-1.745174 +-1.745001,-1.745001,-1.745001,-1.745001,-1.745001,-1.745001 +-1.744717,-1.744717,-1.744717,-1.744717,-1.744717,-1.744717 +-1.744292,-1.744292,-1.744292,-1.744292,-1.744292,-1.744292 +-1.743699,-1.743699,-1.743699,-1.743699,-1.743699,-1.743699 +-1.742911,-1.742911,-1.742911,-1.742911,-1.742911,-1.742911 +-1.741898,-1.741898,-1.741898,-1.741898,-1.741898,-1.741898 +-1.740633,-1.740633,-1.740633,-1.740633,-1.740633,-1.740633 +-1.739089,-1.739089,-1.739089,-1.739089,-1.739089,-1.739089 +-1.737236,-1.737236,-1.737236,-1.737236,-1.737236,-1.737236 +-1.735047,-1.735047,-1.735047,-1.735047,-1.735047,-1.735047 +-1.732495,-1.732495,-1.732495,-1.732495,-1.732495,-1.732495 +-1.72955,-1.72955,-1.72955,-1.72955,-1.72955,-1.72955 +-1.726185,-1.726185,-1.726185,-1.726185,-1.726185,-1.726185 +-1.722373,-1.722373,-1.722373,-1.722373,-1.722373,-1.722373 +-1.718084,-1.718084,-1.718084,-1.718084,-1.718084,-1.718084 +-1.713291,-1.713291,-1.713291,-1.713291,-1.713291,-1.713291 +-1.707967,-1.707967,-1.707967,-1.707967,-1.707967,-1.707967 +-1.702082,-1.702082,-1.702082,-1.702082,-1.702082,-1.702082 +-1.695609,-1.695609,-1.695609,-1.695609,-1.695609,-1.695609 +-1.688521,-1.688521,-1.688521,-1.688521,-1.688521,-1.688521 +-1.680788,-1.680788,-1.680788,-1.680788,-1.680788,-1.680788 +-1.672406,-1.672406,-1.672406,-1.672406,-1.672406,-1.672406 +-1.663398,-1.663398,-1.663398,-1.663398,-1.663398,-1.663398 +-1.653792,-1.653792,-1.653792,-1.653792,-1.653792,-1.653792 +-1.643618,-1.643618,-1.643618,-1.643618,-1.643618,-1.643618 +-1.632902,-1.632902,-1.632902,-1.632902,-1.632902,-1.632902 +-1.621674,-1.621674,-1.621674,-1.621674,-1.621674,-1.621674 +-1.60996,-1.60996,-1.60996,-1.60996,-1.60996,-1.60996 +-1.597788,-1.597788,-1.597788,-1.597788,-1.597788,-1.597788 +-1.585188,-1.585188,-1.585188,-1.585188,-1.585188,-1.585188 +-1.572186,-1.572186,-1.572186,-1.572186,-1.572186,-1.572186 +-1.558812,-1.558812,-1.558812,-1.558812,-1.558812,-1.558812 +-1.545092,-1.545092,-1.545092,-1.545092,-1.545092,-1.545092 +-1.531054,-1.531054,-1.531054,-1.531054,-1.531054,-1.531054 +-1.516728,-1.516728,-1.516728,-1.516728,-1.516728,-1.516728 +-1.50214,-1.50214,-1.50214,-1.50214,-1.50214,-1.50214 +-1.48732,-1.48732,-1.48732,-1.48732,-1.48732,-1.48732 +-1.472294,-1.472294,-1.472294,-1.472294,-1.472294,-1.472294 +-1.45709,-1.45709,-1.45709,-1.45709,-1.45709,-1.45709 +-1.441738,-1.441738,-1.441738,-1.441738,-1.441738,-1.441738 +-1.426264,-1.426264,-1.426264,-1.426264,-1.426264,-1.426264 +-1.410698,-1.410698,-1.410698,-1.410698,-1.410698,-1.410698 +-1.395066,-1.395066,-1.395066,-1.395066,-1.395066,-1.395066 +-1.379396,-1.379396,-1.379396,-1.379396,-1.379396,-1.379396 +-1.363717,-1.363717,-1.363717,-1.363717,-1.363717,-1.363717 +-1.348037,-1.348037,-1.348037,-1.348037,-1.348037,-1.348037 +-1.332357,-1.332357,-1.332357,-1.332357,-1.332357,-1.332357 +-1.316677,-1.316677,-1.316677,-1.316677,-1.316677,-1.316677 +-1.300997,-1.300997,-1.300997,-1.300997,-1.300997,-1.300997 +-1.285317,-1.285317,-1.285317,-1.285317,-1.285317,-1.285317 +-1.269637,-1.269637,-1.269637,-1.269637,-1.269637,-1.269637 +-1.253957,-1.253957,-1.253957,-1.253957,-1.253957,-1.253957 +-1.238277,-1.238277,-1.238277,-1.238277,-1.238277,-1.238277 +-1.222597,-1.222597,-1.222597,-1.222597,-1.222597,-1.222597 +-1.206917,-1.206917,-1.206917,-1.206917,-1.206917,-1.206917 +-1.191237,-1.191237,-1.191237,-1.191237,-1.191237,-1.191237 +-1.175557,-1.175557,-1.175557,-1.175557,-1.175557,-1.175557 +-1.159877,-1.159877,-1.159877,-1.159877,-1.159877,-1.159877 +-1.144197,-1.144197,-1.144197,-1.144197,-1.144197,-1.144197 +-1.128517,-1.128517,-1.128517,-1.128517,-1.128517,-1.128517 +-1.112837,-1.112837,-1.112837,-1.112837,-1.112837,-1.112837 +-1.097157,-1.097157,-1.097157,-1.097157,-1.097157,-1.097157 +-1.081477,-1.081477,-1.081477,-1.081477,-1.081477,-1.081477 +-1.065797,-1.065797,-1.065797,-1.065797,-1.065797,-1.065797 +-1.050117,-1.050117,-1.050117,-1.050117,-1.050117,-1.050117 +-1.034437,-1.034437,-1.034437,-1.034437,-1.034437,-1.034437 +-1.018757,-1.018757,-1.018757,-1.018757,-1.018757,-1.018757 +-1.003077,-1.003077,-1.003077,-1.003077,-1.003077,-1.003077 +-0.987397,-0.987397,-0.987397,-0.987397,-0.987397,-0.987397 +-0.971717,-0.971717,-0.971717,-0.971717,-0.971717,-0.971717 +-0.956037,-0.956037,-0.956037,-0.956037,-0.956037,-0.956037 +-0.940357,-0.940357,-0.940357,-0.940357,-0.940357,-0.940357 +-0.924677,-0.924677,-0.924677,-0.924677,-0.924677,-0.924677 +-0.908997,-0.908997,-0.908997,-0.908997,-0.908997,-0.908997 +-0.893317,-0.893317,-0.893317,-0.893317,-0.893317,-0.893317 +-0.877637,-0.877637,-0.877637,-0.877637,-0.877637,-0.877637 +-0.861957,-0.861957,-0.861957,-0.861957,-0.861957,-0.861957 +-0.846277,-0.846277,-0.846277,-0.846277,-0.846277,-0.846277 +-0.830597,-0.830597,-0.830597,-0.830597,-0.830597,-0.830597 +-0.814917,-0.814917,-0.814917,-0.814917,-0.814917,-0.814917 +-0.799237,-0.799237,-0.799237,-0.799237,-0.799237,-0.799237 +-0.783557,-0.783557,-0.783557,-0.783557,-0.783557,-0.783557 +-0.767877,-0.767877,-0.767877,-0.767877,-0.767877,-0.767877 +-0.752197,-0.752197,-0.752197,-0.752197,-0.752197,-0.752197 +-0.736517,-0.736517,-0.736517,-0.736517,-0.736517,-0.736517 +-0.720837,-0.720837,-0.720837,-0.720837,-0.720837,-0.720837 +-0.705157,-0.705157,-0.705157,-0.705157,-0.705157,-0.705157 +-0.689477,-0.689477,-0.689477,-0.689477,-0.689477,-0.689477 +-0.673797,-0.673797,-0.673797,-0.673797,-0.673797,-0.673797 +-0.658117,-0.658117,-0.658117,-0.658117,-0.658117,-0.658117 +-0.642437,-0.642437,-0.642437,-0.642437,-0.642437,-0.642437 +-0.626757,-0.626757,-0.626757,-0.626757,-0.626757,-0.626757 +-0.611077,-0.611077,-0.611077,-0.611077,-0.611077,-0.611077 +-0.595397,-0.595397,-0.595397,-0.595397,-0.595397,-0.595397 +-0.579717,-0.579717,-0.579717,-0.579717,-0.579717,-0.579717 +-0.564037,-0.564037,-0.564037,-0.564037,-0.564037,-0.564037 +-0.548357,-0.548357,-0.548357,-0.548357,-0.548357,-0.548357 +-0.532677,-0.532677,-0.532677,-0.532677,-0.532677,-0.532677 +-0.516997,-0.516997,-0.516997,-0.516997,-0.516997,-0.516997 +-0.501317,-0.501317,-0.501317,-0.501317,-0.501317,-0.501317 +-0.485637,-0.485637,-0.485637,-0.485637,-0.485637,-0.485637 +-0.469957,-0.469957,-0.469957,-0.469957,-0.469957,-0.469957 +-0.454277,-0.454277,-0.454277,-0.454277,-0.454277,-0.454277 +-0.438597,-0.438597,-0.438597,-0.438597,-0.438597,-0.438597 +-0.422917,-0.422917,-0.422917,-0.422917,-0.422917,-0.422917 +-0.407237,-0.407237,-0.407237,-0.407237,-0.407237,-0.407237 +-0.391557,-0.391557,-0.391557,-0.391557,-0.391557,-0.391557 +-0.375877,-0.375877,-0.375877,-0.375877,-0.375877,-0.375877 +-0.360198,-0.360198,-0.360198,-0.360198,-0.360198,-0.360198 +-0.344539,-0.344539,-0.344539,-0.344539,-0.344539,-0.344539 +-0.328928,-0.328928,-0.328928,-0.328928,-0.328928,-0.328928 +-0.313391,-0.313391,-0.313391,-0.313391,-0.313391,-0.313391 +-0.297959,-0.297959,-0.297959,-0.297959,-0.297959,-0.297959 +-0.282657,-0.282657,-0.282657,-0.282657,-0.282657,-0.282657 +-0.267515,-0.267515,-0.267515,-0.267515,-0.267515,-0.267515 +-0.252561,-0.252561,-0.252561,-0.252561,-0.252561,-0.252561 +-0.237822,-0.237822,-0.237822,-0.237822,-0.237822,-0.237822 +-0.223326,-0.223326,-0.223326,-0.223326,-0.223326,-0.223326 +-0.209102,-0.209102,-0.209102,-0.209102,-0.209102,-0.209102 +-0.195177,-0.195177,-0.195177,-0.195177,-0.195177,-0.195177 +-0.181579,-0.181579,-0.181579,-0.181579,-0.181579,-0.181579 +-0.168337,-0.168337,-0.168337,-0.168337,-0.168337,-0.168337 +-0.155478,-0.155478,-0.155478,-0.155478,-0.155478,-0.155478 +-0.143031,-0.143031,-0.143031,-0.143031,-0.143031,-0.143031 +-0.131022,-0.131022,-0.131022,-0.131022,-0.131022,-0.131022 +-0.119482,-0.119482,-0.119482,-0.119482,-0.119482,-0.119482 +-0.108437,-0.108437,-0.108437,-0.108437,-0.108437,-0.108437 +-0.097915,-0.097915,-0.097915,-0.097915,-0.097915,-0.097915 +-0.087944,-0.087944,-0.087944,-0.087944,-0.087944,-0.087944 +-0.078553,-0.078553,-0.078553,-0.078553,-0.078553,-0.078553 +-0.06977,-0.06977,-0.06977,-0.06977,-0.06977,-0.06977 +-0.061621,-0.061621,-0.061621,-0.061621,-0.061621,-0.061621 +-0.054126,-0.054126,-0.054126,-0.054126,-0.054126,-0.054126 +-0.047265,-0.047265,-0.047265,-0.047265,-0.047265,-0.047265 +-0.04101,-0.04101,-0.04101,-0.04101,-0.04101,-0.04101 +-0.035332,-0.035332,-0.035332,-0.035332,-0.035332,-0.035332 +-0.030204,-0.030204,-0.030204,-0.030204,-0.030204,-0.030204 +-0.025598,-0.025598,-0.025598,-0.025598,-0.025598,-0.025598 +-0.021486,-0.021486,-0.021486,-0.021486,-0.021486,-0.021486 +-0.01784,-0.01784,-0.01784,-0.01784,-0.01784,-0.01784 +-0.014631,-0.014631,-0.014631,-0.014631,-0.014631,-0.014631 +-0.011832,-0.011832,-0.011832,-0.011832,-0.011832,-0.011832 +-0.009415,-0.009415,-0.009415,-0.009415,-0.009415,-0.009415 +-0.007352,-0.007352,-0.007352,-0.007352,-0.007352,-0.007352 +-0.005615,-0.005615,-0.005615,-0.005615,-0.005615,-0.005615 +-0.004175,-0.004175,-0.004175,-0.004175,-0.004175,-0.004175 +-0.003006,-0.003006,-0.003006,-0.003006,-0.003006,-0.003006 +-0.002078,-0.002078,-0.002078,-0.002078,-0.002078,-0.002078 +-0.001364,-0.001364,-0.001364,-0.001364,-0.001364,-0.001364 +-0.000835,-0.000835,-0.000835,-0.000835,-0.000835,-0.000835 +-0.000465,-0.000465,-0.000465,-0.000465,-0.000465,-0.000465 +-0.000224,-0.000224,-0.000224,-0.000224,-0.000224,-0.000224 +-0.000085,-0.000085,-0.000085,-0.000085,-0.000085,-0.000085 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 + diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/4.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/4.csv new file mode 100644 index 00000000..dba24f43 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/4.csv @@ -0,0 +1,6210 @@ +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0.000017,0.000017,0.000017,0.000017,0.000017,0.000017 +0.00004,0.00004,0.00004,0.00004,0.00004,0.00004 +0.000078,0.000078,0.000078,0.000078,0.000078,0.000078 +0.000135,0.000135,0.000135,0.000135,0.000135,0.000135 +0.000214,0.000214,0.000214,0.000214,0.000214,0.000214 +0.00032,0.00032,0.00032,0.00032,0.00032,0.00032 +0.000456,0.000456,0.000456,0.000456,0.000456,0.000456 +0.000625,0.000625,0.000625,0.000625,0.000625,0.000625 +0.000832,0.000832,0.000832,0.000832,0.000832,0.000832 +0.00108,0.00108,0.00108,0.00108,0.00108,0.00108 +0.001373,0.001373,0.001373,0.001373,0.001373,0.001373 +0.001715,0.001715,0.001715,0.001715,0.001715,0.001715 +0.002109,0.002109,0.002109,0.002109,0.002109,0.002109 +0.00256,0.00256,0.00256,0.00256,0.00256,0.00256 +0.003071,0.003071,0.003071,0.003071,0.003071,0.003071 +0.003645,0.003645,0.003645,0.003645,0.003645,0.003645 +0.004287,0.004287,0.004287,0.004287,0.004287,0.004287 +0.005,0.005,0.005,0.005,0.005,0.005 +0.005788,0.005788,0.005788,0.005788,0.005788,0.005788 +0.006655,0.006655,0.006655,0.006655,0.006655,0.006655 +0.007604,0.007604,0.007604,0.007604,0.007604,0.007604 +0.00864,0.00864,0.00864,0.00864,0.00864,0.00864 +0.009766,0.009766,0.009766,0.009766,0.009766,0.009766 +0.010984,0.010984,0.010984,0.010984,0.010984,0.010984 +0.012297,0.012297,0.012297,0.012297,0.012297,0.012297 +0.013703,0.013703,0.013703,0.013703,0.013703,0.013703 +0.015203,0.015203,0.015203,0.015203,0.015203,0.015203 +0.016797,0.016797,0.016797,0.016797,0.016797,0.016797 +0.018484,0.018484,0.018484,0.018484,0.018484,0.018484 +0.020266,0.020266,0.020266,0.020266,0.020266,0.020266 +0.022141,0.022141,0.022141,0.022141,0.022141,0.022141 +0.024109,0.024109,0.024109,0.024109,0.024109,0.024109 +0.026172,0.026172,0.026172,0.026172,0.026172,0.026172 +0.028328,0.028328,0.028328,0.028328,0.028328,0.028328 +0.030578,0.030578,0.030578,0.030578,0.030578,0.030578 +0.032922,0.032922,0.032922,0.032922,0.032922,0.032922 +0.035359,0.035359,0.035359,0.035359,0.035359,0.035359 +0.037891,0.037891,0.037891,0.037891,0.037891,0.037891 +0.040516,0.040516,0.040516,0.040516,0.040516,0.040516 +0.043234,0.043234,0.043234,0.043234,0.043234,0.043234 +0.046047,0.046047,0.046047,0.046047,0.046047,0.046047 +0.048953,0.048953,0.048953,0.048953,0.048953,0.048953 +0.051953,0.051953,0.051953,0.051953,0.051953,0.051953 +0.055047,0.055047,0.055047,0.055047,0.055047,0.055047 +0.058234,0.058234,0.058234,0.058234,0.058234,0.058234 +0.061516,0.061516,0.061516,0.061516,0.061516,0.061516 +0.064891,0.064891,0.064891,0.064891,0.064891,0.064891 +0.068359,0.068359,0.068359,0.068359,0.068359,0.068359 +0.071922,0.071922,0.071922,0.071922,0.071922,0.071922 +0.075578,0.075578,0.075578,0.075578,0.075578,0.075578 +0.079328,0.079328,0.079328,0.079328,0.079328,0.079328 +0.083172,0.083172,0.083172,0.083172,0.083172,0.083172 +0.087109,0.087109,0.087109,0.087109,0.087109,0.087109 +0.091141,0.091141,0.091141,0.091141,0.091141,0.091141 +0.095266,0.095266,0.095266,0.095266,0.095266,0.095266 +0.099484,0.099484,0.099484,0.099484,0.099484,0.099484 +0.103797,0.103797,0.103797,0.103797,0.103797,0.103797 +0.108203,0.108203,0.108203,0.108203,0.108203,0.108203 +0.112703,0.112703,0.112703,0.112703,0.112703,0.112703 +0.117297,0.117297,0.117297,0.117297,0.117297,0.117297 +0.121984,0.121984,0.121984,0.121984,0.121984,0.121984 +0.126766,0.126766,0.126766,0.126766,0.126766,0.126766 +0.131641,0.131641,0.131641,0.131641,0.131641,0.131641 +0.136609,0.136609,0.136609,0.136609,0.136609,0.136609 +0.141672,0.141672,0.141672,0.141672,0.141672,0.141672 +0.146828,0.146828,0.146828,0.146828,0.146828,0.146828 +0.152078,0.152078,0.152078,0.152078,0.152078,0.152078 +0.157422,0.157422,0.157422,0.157422,0.157422,0.157422 +0.162859,0.162859,0.162859,0.162859,0.162859,0.162859 +0.168391,0.168391,0.168391,0.168391,0.168391,0.168391 +0.174016,0.174016,0.174016,0.174016,0.174016,0.174016 +0.179734,0.179734,0.179734,0.179734,0.179734,0.179734 +0.185547,0.185547,0.185547,0.185547,0.185547,0.185547 +0.191453,0.191453,0.191453,0.191453,0.191453,0.191453 +0.197453,0.197453,0.197453,0.197453,0.197453,0.197453 +0.203547,0.203547,0.203547,0.203547,0.203547,0.203547 +0.209734,0.209734,0.209734,0.209734,0.209734,0.209734 +0.216016,0.216016,0.216016,0.216016,0.216016,0.216016 +0.222391,0.222391,0.222391,0.222391,0.222391,0.222391 +0.228859,0.228859,0.228859,0.228859,0.228859,0.228859 +0.235422,0.235422,0.235422,0.235422,0.235422,0.235422 +0.242078,0.242078,0.242078,0.242078,0.242078,0.242078 +0.248828,0.248828,0.248828,0.248828,0.248828,0.248828 +0.255672,0.255672,0.255672,0.255672,0.255672,0.255672 +0.262609,0.262609,0.262609,0.262609,0.262609,0.262609 +0.269641,0.269641,0.269641,0.269641,0.269641,0.269641 +0.276766,0.276766,0.276766,0.276766,0.276766,0.276766 +0.283984,0.283984,0.283984,0.283984,0.283984,0.283984 +0.291297,0.291297,0.291297,0.291297,0.291297,0.291297 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.306203,0.306203,0.306203,0.306203,0.306203,0.306203 +0.313797,0.313797,0.313797,0.313797,0.313797,0.313797 +0.321484,0.321484,0.321484,0.321484,0.321484,0.321484 +0.329266,0.329266,0.329266,0.329266,0.329266,0.329266 +0.337141,0.337141,0.337141,0.337141,0.337141,0.337141 +0.345109,0.345109,0.345109,0.345109,0.345109,0.345109 +0.353172,0.353172,0.353172,0.353172,0.353172,0.353172 +0.361328,0.361328,0.361328,0.361328,0.361328,0.361328 +0.369578,0.369578,0.369578,0.369578,0.369578,0.369578 +0.377922,0.377922,0.377922,0.377922,0.377922,0.377922 +0.386359,0.386359,0.386359,0.386359,0.386359,0.386359 +0.394891,0.394891,0.394891,0.394891,0.394891,0.394891 +0.403516,0.403516,0.403516,0.403516,0.403516,0.403516 +0.412234,0.412234,0.412234,0.412234,0.412234,0.412234 +0.421047,0.421047,0.421047,0.421047,0.421047,0.421047 +0.429953,0.429953,0.429953,0.429953,0.429953,0.429953 +0.438953,0.438953,0.438953,0.438953,0.438953,0.438953 +0.448047,0.448047,0.448047,0.448047,0.448047,0.448047 +0.457234,0.457234,0.457234,0.457234,0.457234,0.457234 +0.466516,0.466516,0.466516,0.466516,0.466516,0.466516 +0.475891,0.475891,0.475891,0.475891,0.475891,0.475891 +0.485359,0.485359,0.485359,0.485359,0.485359,0.485359 +0.494922,0.494922,0.494922,0.494922,0.494922,0.494922 +0.504578,0.504578,0.504578,0.504578,0.504578,0.504578 +0.514328,0.514328,0.514328,0.514328,0.514328,0.514328 +0.524172,0.524172,0.524172,0.524172,0.524172,0.524172 +0.534109,0.534109,0.534109,0.534109,0.534109,0.534109 +0.544141,0.544141,0.544141,0.544141,0.544141,0.544141 +0.554266,0.554266,0.554266,0.554266,0.554266,0.554266 +0.564484,0.564484,0.564484,0.564484,0.564484,0.564484 +0.574797,0.574797,0.574797,0.574797,0.574797,0.574797 +0.585203,0.585203,0.585203,0.585203,0.585203,0.585203 +0.595703,0.595703,0.595703,0.595703,0.595703,0.595703 +0.606295,0.606295,0.606295,0.606295,0.606295,0.606295 +0.616975,0.616975,0.616975,0.616975,0.616975,0.616975 +0.627739,0.627739,0.627739,0.627739,0.627739,0.627739 +0.638584,0.638584,0.638584,0.638584,0.638584,0.638584 +0.649506,0.649506,0.649506,0.649506,0.649506,0.649506 +0.660501,0.660501,0.660501,0.660501,0.660501,0.660501 +0.671566,0.671566,0.671566,0.671566,0.671566,0.671566 +0.682696,0.682696,0.682696,0.682696,0.682696,0.682696 +0.693888,0.693888,0.693888,0.693888,0.693888,0.693888 +0.705139,0.705139,0.705139,0.705139,0.705139,0.705139 +0.716443,0.716443,0.716443,0.716443,0.716443,0.716443 +0.727799,0.727799,0.727799,0.727799,0.727799,0.727799 +0.739201,0.739201,0.739201,0.739201,0.739201,0.739201 +0.750647,0.750647,0.750647,0.750647,0.750647,0.750647 +0.762132,0.762132,0.762132,0.762132,0.762132,0.762132 +0.773653,0.773653,0.773653,0.773653,0.773653,0.773653 +0.785205,0.785205,0.785205,0.785205,0.785205,0.785205 +0.796786,0.796786,0.796786,0.796786,0.796786,0.796786 +0.808391,0.808391,0.808391,0.808391,0.808391,0.808391 +0.820017,0.820017,0.820017,0.820017,0.820017,0.820017 +0.83166,0.83166,0.83166,0.83166,0.83166,0.83166 +0.843316,0.843316,0.843316,0.843316,0.843316,0.843316 +0.854981,0.854981,0.854981,0.854981,0.854981,0.854981 +0.866652,0.866652,0.866652,0.866652,0.866652,0.866652 +0.878325,0.878325,0.878325,0.878325,0.878325,0.878325 +0.889997,0.889997,0.889997,0.889997,0.889997,0.889997 +0.901662,0.901662,0.901662,0.901662,0.901662,0.901662 +0.913318,0.913318,0.913318,0.913318,0.913318,0.913318 +0.924962,0.924962,0.924962,0.924962,0.924962,0.924962 +0.936588,0.936588,0.936588,0.936588,0.936588,0.936588 +0.948194,0.948194,0.948194,0.948194,0.948194,0.948194 +0.959775,0.959775,0.959775,0.959775,0.959775,0.959775 +0.971329,0.971329,0.971329,0.971329,0.971329,0.971329 +0.98285,0.98285,0.98285,0.98285,0.98285,0.98285 +0.994336,0.994336,0.994336,0.994336,0.994336,0.994336 +1.005783,1.005783,1.005783,1.005783,1.005783,1.005783 +1.017187,1.017187,1.017187,1.017187,1.017187,1.017187 +1.028544,1.028544,1.028544,1.028544,1.028544,1.028544 +1.03985,1.03985,1.03985,1.03985,1.03985,1.03985 +1.051102,1.051102,1.051102,1.051102,1.051102,1.051102 +1.062296,1.062296,1.062296,1.062296,1.062296,1.062296 +1.073428,1.073428,1.073428,1.073428,1.073428,1.073428 +1.084494,1.084494,1.084494,1.084494,1.084494,1.084494 +1.095491,1.095491,1.095491,1.095491,1.095491,1.095491 +1.106415,1.106415,1.106415,1.106415,1.106415,1.106415 +1.117262,1.117262,1.117262,1.117262,1.117262,1.117262 +1.128029,1.128029,1.128029,1.128029,1.128029,1.128029 +1.138711,1.138711,1.138711,1.138711,1.138711,1.138711 +1.149306,1.149306,1.149306,1.149306,1.149306,1.149306 +1.159808,1.159808,1.159808,1.159808,1.159808,1.159808 +1.170217,1.170217,1.170217,1.170217,1.170217,1.170217 +1.180532,1.180532,1.180532,1.180532,1.180532,1.180532 +1.190753,1.190753,1.190753,1.190753,1.190753,1.190753 +1.200881,1.200881,1.200881,1.200881,1.200881,1.200881 +1.210915,1.210915,1.210915,1.210915,1.210915,1.210915 +1.220855,1.220855,1.220855,1.220855,1.220855,1.220855 +1.230701,1.230701,1.230701,1.230701,1.230701,1.230701 +1.240454,1.240454,1.240454,1.240454,1.240454,1.240454 +1.250113,1.250113,1.250113,1.250113,1.250113,1.250113 +1.259678,1.259678,1.259678,1.259678,1.259678,1.259678 +1.269149,1.269149,1.269149,1.269149,1.269149,1.269149 +1.278527,1.278527,1.278527,1.278527,1.278527,1.278527 +1.287811,1.287811,1.287811,1.287811,1.287811,1.287811 +1.297001,1.297001,1.297001,1.297001,1.297001,1.297001 +1.306097,1.306097,1.306097,1.306097,1.306097,1.306097 +1.3151,1.3151,1.3151,1.3151,1.3151,1.3151 +1.324008,1.324008,1.324008,1.324008,1.324008,1.324008 +1.332824,1.332824,1.332824,1.332824,1.332824,1.332824 +1.341545,1.341545,1.341545,1.341545,1.341545,1.341545 +1.350172,1.350172,1.350172,1.350172,1.350172,1.350172 +1.358706,1.358706,1.358706,1.358706,1.358706,1.358706 +1.367146,1.367146,1.367146,1.367146,1.367146,1.367146 +1.375493,1.375493,1.375493,1.375493,1.375493,1.375493 +1.383745,1.383745,1.383745,1.383745,1.383745,1.383745 +1.391904,1.391904,1.391904,1.391904,1.391904,1.391904 +1.399969,1.399969,1.399969,1.399969,1.399969,1.399969 +1.407941,1.407941,1.407941,1.407941,1.407941,1.407941 +1.415818,1.415818,1.415818,1.415818,1.415818,1.415818 +1.423602,1.423602,1.423602,1.423602,1.423602,1.423602 +1.431292,1.431292,1.431292,1.431292,1.431292,1.431292 +1.438888,1.438888,1.438888,1.438888,1.438888,1.438888 +1.446391,1.446391,1.446391,1.446391,1.446391,1.446391 +1.4538,1.4538,1.4538,1.4538,1.4538,1.4538 +1.461115,1.461115,1.461115,1.461115,1.461115,1.461115 +1.468336,1.468336,1.468336,1.468336,1.468336,1.468336 +1.475464,1.475464,1.475464,1.475464,1.475464,1.475464 +1.482498,1.482498,1.482498,1.482498,1.482498,1.482498 +1.489438,1.489438,1.489438,1.489438,1.489438,1.489438 +1.496284,1.496284,1.496284,1.496284,1.496284,1.496284 +1.503037,1.503037,1.503037,1.503037,1.503037,1.503037 +1.509696,1.509696,1.509696,1.509696,1.509696,1.509696 +1.516261,1.516261,1.516261,1.516261,1.516261,1.516261 +1.522732,1.522732,1.522732,1.522732,1.522732,1.522732 +1.52911,1.52911,1.52911,1.52911,1.52911,1.52911 +1.535393,1.535393,1.535393,1.535393,1.535393,1.535393 +1.541584,1.541584,1.541584,1.541584,1.541584,1.541584 +1.54768,1.54768,1.54768,1.54768,1.54768,1.54768 +1.553682,1.553682,1.553682,1.553682,1.553682,1.553682 +1.559591,1.559591,1.559591,1.559591,1.559591,1.559591 +1.565406,1.565406,1.565406,1.565406,1.565406,1.565406 +1.571128,1.571128,1.571128,1.571128,1.571128,1.571128 +1.576755,1.576755,1.576755,1.576755,1.576755,1.576755 +1.582289,1.582289,1.582289,1.582289,1.582289,1.582289 +1.587729,1.587729,1.587729,1.587729,1.587729,1.587729 +1.593076,1.593076,1.593076,1.593076,1.593076,1.593076 +1.598328,1.598328,1.598328,1.598328,1.598328,1.598328 +1.603487,1.603487,1.603487,1.603487,1.603487,1.603487 +1.608552,1.608552,1.608552,1.608552,1.608552,1.608552 +1.613523,1.613523,1.613523,1.613523,1.613523,1.613523 +1.618401,1.618401,1.618401,1.618401,1.618401,1.618401 +1.623185,1.623185,1.623185,1.623185,1.623185,1.623185 +1.627875,1.627875,1.627875,1.627875,1.627875,1.627875 +1.632471,1.632471,1.632471,1.632471,1.632471,1.632471 +1.636974,1.636974,1.636974,1.636974,1.636974,1.636974 +1.641383,1.641383,1.641383,1.641383,1.641383,1.641383 +1.645698,1.645698,1.645698,1.645698,1.645698,1.645698 +1.649919,1.649919,1.649919,1.649919,1.649919,1.649919 +1.654047,1.654047,1.654047,1.654047,1.654047,1.654047 +1.658081,1.658081,1.658081,1.658081,1.658081,1.658081 +1.662021,1.662021,1.662021,1.662021,1.662021,1.662021 +1.665867,1.665867,1.665867,1.665867,1.665867,1.665867 +1.66962,1.66962,1.66962,1.66962,1.66962,1.66962 +1.673278,1.673278,1.673278,1.673278,1.673278,1.673278 +1.676844,1.676844,1.676844,1.676844,1.676844,1.676844 +1.680315,1.680315,1.680315,1.680315,1.680315,1.680315 +1.683692,1.683692,1.683692,1.683692,1.683692,1.683692 +1.686976,1.686976,1.686976,1.686976,1.686976,1.686976 +1.690166,1.690166,1.690166,1.690166,1.690166,1.690166 +1.693263,1.693263,1.693263,1.693263,1.693263,1.693263 +1.696265,1.696265,1.696265,1.696265,1.696265,1.696265 +1.699174,1.699174,1.699174,1.699174,1.699174,1.699174 +1.701989,1.701989,1.701989,1.701989,1.701989,1.701989 +1.704711,1.704711,1.704711,1.704711,1.704711,1.704711 +1.707338,1.707338,1.707338,1.707338,1.707338,1.707338 +1.709872,1.709872,1.709872,1.709872,1.709872,1.709872 +1.712312,1.712312,1.712312,1.712312,1.712312,1.712312 +1.714658,1.714658,1.714658,1.714658,1.714658,1.714658 +1.716911,1.716911,1.716911,1.716911,1.716911,1.716911 +1.71907,1.71907,1.71907,1.71907,1.71907,1.71907 +1.721135,1.721135,1.721135,1.721135,1.721135,1.721135 +1.723106,1.723106,1.723106,1.723106,1.723106,1.723106 +1.724984,1.724984,1.724984,1.724984,1.724984,1.724984 +1.726768,1.726768,1.726768,1.726768,1.726768,1.726768 +1.728458,1.728458,1.728458,1.728458,1.728458,1.728458 +1.730054,1.730054,1.730054,1.730054,1.730054,1.730054 +1.731557,1.731557,1.731557,1.731557,1.731557,1.731557 +1.732966,1.732966,1.732966,1.732966,1.732966,1.732966 +1.734281,1.734281,1.734281,1.734281,1.734281,1.734281 +1.735502,1.735502,1.735502,1.735502,1.735502,1.735502 +1.73663,1.73663,1.73663,1.73663,1.73663,1.73663 +1.737668,1.737668,1.737668,1.737668,1.737668,1.737668 +1.73862,1.73862,1.73862,1.73862,1.73862,1.73862 +1.739489,1.739489,1.739489,1.739489,1.739489,1.739489 +1.740279,1.740279,1.740279,1.740279,1.740279,1.740279 +1.740994,1.740994,1.740994,1.740994,1.740994,1.740994 +1.741638,1.741638,1.741638,1.741638,1.741638,1.741638 +1.742214,1.742214,1.742214,1.742214,1.742214,1.742214 +1.742727,1.742727,1.742727,1.742727,1.742727,1.742727 +1.743179,1.743179,1.743179,1.743179,1.743179,1.743179 +1.743575,1.743575,1.743575,1.743575,1.743575,1.743575 +1.743918,1.743918,1.743918,1.743918,1.743918,1.743918 +1.744213,1.744213,1.744213,1.744213,1.744213,1.744213 +1.744462,1.744462,1.744462,1.744462,1.744462,1.744462 +1.74467,1.74467,1.74467,1.74467,1.74467,1.74467 +1.74484,1.74484,1.74484,1.74484,1.74484,1.74484 +1.744977,1.744977,1.744977,1.744977,1.744977,1.744977 +1.745083,1.745083,1.745083,1.745083,1.745083,1.745083 +1.745163,1.745163,1.745163,1.745163,1.745163,1.745163 +1.745221,1.745221,1.745221,1.745221,1.745221,1.745221 +1.745259,1.745259,1.745259,1.745259,1.745259,1.745259 +1.745283,1.745283,1.745283,1.745283,1.745283,1.745283 +1.745295,1.745295,1.745295,1.745295,1.745295,1.745295 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745295,1.745295,1.745295,1.745295,1.745295,1.745295 +1.745283,1.745283,1.745283,1.745283,1.745283,1.745283 +1.74526,1.74526,1.74526,1.74526,1.74526,1.74526 +1.745222,1.745222,1.745222,1.745222,1.745222,1.745222 +1.745165,1.745165,1.745165,1.745165,1.745165,1.745165 +1.745086,1.745086,1.745086,1.745086,1.745086,1.745086 +1.74498,1.74498,1.74498,1.74498,1.74498,1.74498 +1.744844,1.744844,1.744844,1.744844,1.744844,1.744844 +1.744675,1.744675,1.744675,1.744675,1.744675,1.744675 +1.744468,1.744468,1.744468,1.744468,1.744468,1.744468 +1.74422,1.74422,1.74422,1.74422,1.74422,1.74422 +1.743927,1.743927,1.743927,1.743927,1.743927,1.743927 +1.743585,1.743585,1.743585,1.743585,1.743585,1.743585 +1.743191,1.743191,1.743191,1.743191,1.743191,1.743191 +1.74274,1.74274,1.74274,1.74274,1.74274,1.74274 +1.742229,1.742229,1.742229,1.742229,1.742229,1.742229 +1.741655,1.741655,1.741655,1.741655,1.741655,1.741655 +1.741013,1.741013,1.741013,1.741013,1.741013,1.741013 +1.7403,1.7403,1.7403,1.7403,1.7403,1.7403 +1.739512,1.739512,1.739512,1.739512,1.739512,1.739512 +1.738645,1.738645,1.738645,1.738645,1.738645,1.738645 +1.737696,1.737696,1.737696,1.737696,1.737696,1.737696 +1.73666,1.73666,1.73666,1.73666,1.73666,1.73666 +1.735534,1.735534,1.735534,1.735534,1.735534,1.735534 +1.734316,1.734316,1.734316,1.734316,1.734316,1.734316 +1.733003,1.733003,1.733003,1.733003,1.733003,1.733003 +1.731597,1.731597,1.731597,1.731597,1.731597,1.731597 +1.730097,1.730097,1.730097,1.730097,1.730097,1.730097 +1.728503,1.728503,1.728503,1.728503,1.728503,1.728503 +1.726816,1.726816,1.726816,1.726816,1.726816,1.726816 +1.725034,1.725034,1.725034,1.725034,1.725034,1.725034 +1.723159,1.723159,1.723159,1.723159,1.723159,1.723159 +1.721191,1.721191,1.721191,1.721191,1.721191,1.721191 +1.719128,1.719128,1.719128,1.719128,1.719128,1.719128 +1.716972,1.716972,1.716972,1.716972,1.716972,1.716972 +1.714722,1.714722,1.714722,1.714722,1.714722,1.714722 +1.712378,1.712378,1.712378,1.712378,1.712378,1.712378 +1.709941,1.709941,1.709941,1.709941,1.709941,1.709941 +1.707409,1.707409,1.707409,1.707409,1.707409,1.707409 +1.704784,1.704784,1.704784,1.704784,1.704784,1.704784 +1.702066,1.702066,1.702066,1.702066,1.702066,1.702066 +1.699253,1.699253,1.699253,1.699253,1.699253,1.699253 +1.696347,1.696347,1.696347,1.696347,1.696347,1.696347 +1.693347,1.693347,1.693347,1.693347,1.693347,1.693347 +1.690253,1.690253,1.690253,1.690253,1.690253,1.690253 +1.687066,1.687066,1.687066,1.687066,1.687066,1.687066 +1.683784,1.683784,1.683784,1.683784,1.683784,1.683784 +1.680409,1.680409,1.680409,1.680409,1.680409,1.680409 +1.676941,1.676941,1.676941,1.676941,1.676941,1.676941 +1.673378,1.673378,1.673378,1.673378,1.673378,1.673378 +1.669722,1.669722,1.669722,1.669722,1.669722,1.669722 +1.665972,1.665972,1.665972,1.665972,1.665972,1.665972 +1.662128,1.662128,1.662128,1.662128,1.662128,1.662128 +1.658191,1.658191,1.658191,1.658191,1.658191,1.658191 +1.654159,1.654159,1.654159,1.654159,1.654159,1.654159 +1.650034,1.650034,1.650034,1.650034,1.650034,1.650034 +1.645816,1.645816,1.645816,1.645816,1.645816,1.645816 +1.641503,1.641503,1.641503,1.641503,1.641503,1.641503 +1.637097,1.637097,1.637097,1.637097,1.637097,1.637097 +1.632597,1.632597,1.632597,1.632597,1.632597,1.632597 +1.628003,1.628003,1.628003,1.628003,1.628003,1.628003 +1.623316,1.623316,1.623316,1.623316,1.623316,1.623316 +1.618534,1.618534,1.618534,1.618534,1.618534,1.618534 +1.613659,1.613659,1.613659,1.613659,1.613659,1.613659 +1.608691,1.608691,1.608691,1.608691,1.608691,1.608691 +1.603628,1.603628,1.603628,1.603628,1.603628,1.603628 +1.598472,1.598472,1.598472,1.598472,1.598472,1.598472 +1.593222,1.593222,1.593222,1.593222,1.593222,1.593222 +1.587878,1.587878,1.587878,1.587878,1.587878,1.587878 +1.582441,1.582441,1.582441,1.582441,1.582441,1.582441 +1.576909,1.576909,1.576909,1.576909,1.576909,1.576909 +1.571284,1.571284,1.571284,1.571284,1.571284,1.571284 +1.565566,1.565566,1.565566,1.565566,1.565566,1.565566 +1.559753,1.559753,1.559753,1.559753,1.559753,1.559753 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.547847,1.547847,1.547847,1.547847,1.547847,1.547847 +1.541753,1.541753,1.541753,1.541753,1.541753,1.541753 +1.535566,1.535566,1.535566,1.535566,1.535566,1.535566 +1.529284,1.529284,1.529284,1.529284,1.529284,1.529284 +1.522909,1.522909,1.522909,1.522909,1.522909,1.522909 +1.516441,1.516441,1.516441,1.516441,1.516441,1.516441 +1.509878,1.509878,1.509878,1.509878,1.509878,1.509878 +1.503222,1.503222,1.503222,1.503222,1.503222,1.503222 +1.496472,1.496472,1.496472,1.496472,1.496472,1.496472 +1.489628,1.489628,1.489628,1.489628,1.489628,1.489628 +1.482691,1.482691,1.482691,1.482691,1.482691,1.482691 +1.475659,1.475659,1.475659,1.475659,1.475659,1.475659 +1.468534,1.468534,1.468534,1.468534,1.468534,1.468534 +1.461316,1.461316,1.461316,1.461316,1.461316,1.461316 +1.454003,1.454003,1.454003,1.454003,1.454003,1.454003 +1.446597,1.446597,1.446597,1.446597,1.446597,1.446597 +1.439097,1.439097,1.439097,1.439097,1.439097,1.439097 +1.431503,1.431503,1.431503,1.431503,1.431503,1.431503 +1.423816,1.423816,1.423816,1.423816,1.423816,1.423816 +1.416034,1.416034,1.416034,1.416034,1.416034,1.416034 +1.408159,1.408159,1.408159,1.408159,1.408159,1.408159 +1.400191,1.400191,1.400191,1.400191,1.400191,1.400191 +1.392128,1.392128,1.392128,1.392128,1.392128,1.392128 +1.383972,1.383972,1.383972,1.383972,1.383972,1.383972 +1.375722,1.375722,1.375722,1.375722,1.375722,1.375722 +1.367378,1.367378,1.367378,1.367378,1.367378,1.367378 +1.358941,1.358941,1.358941,1.358941,1.358941,1.358941 +1.350409,1.350409,1.350409,1.350409,1.350409,1.350409 +1.341784,1.341784,1.341784,1.341784,1.341784,1.341784 +1.333066,1.333066,1.333066,1.333066,1.333066,1.333066 +1.324253,1.324253,1.324253,1.324253,1.324253,1.324253 +1.315347,1.315347,1.315347,1.315347,1.315347,1.315347 +1.306347,1.306347,1.306347,1.306347,1.306347,1.306347 +1.297253,1.297253,1.297253,1.297253,1.297253,1.297253 +1.288066,1.288066,1.288066,1.288066,1.288066,1.288066 +1.278784,1.278784,1.278784,1.278784,1.278784,1.278784 +1.269409,1.269409,1.269409,1.269409,1.269409,1.269409 +1.259941,1.259941,1.259941,1.259941,1.259941,1.259941 +1.250378,1.250378,1.250378,1.250378,1.250378,1.250378 +1.240722,1.240722,1.240722,1.240722,1.240722,1.240722 +1.230972,1.230972,1.230972,1.230972,1.230972,1.230972 +1.221128,1.221128,1.221128,1.221128,1.221128,1.221128 +1.211191,1.211191,1.211191,1.211191,1.211191,1.211191 +1.201159,1.201159,1.201159,1.201159,1.201159,1.201159 +1.191034,1.191034,1.191034,1.191034,1.191034,1.191034 +1.180816,1.180816,1.180816,1.180816,1.180816,1.180816 +1.170503,1.170503,1.170503,1.170503,1.170503,1.170503 +1.160097,1.160097,1.160097,1.160097,1.160097,1.160097 +1.149597,1.149597,1.149597,1.149597,1.149597,1.149597 +1.139005,1.139005,1.139005,1.139005,1.139005,1.139005 +1.128325,1.128325,1.128325,1.128325,1.128325,1.128325 +1.117561,1.117561,1.117561,1.117561,1.117561,1.117561 +1.106716,1.106716,1.106716,1.106716,1.106716,1.106716 +1.095794,1.095794,1.095794,1.095794,1.095794,1.095794 +1.084799,1.084799,1.084799,1.084799,1.084799,1.084799 +1.073734,1.073734,1.073734,1.073734,1.073734,1.073734 +1.062604,1.062604,1.062604,1.062604,1.062604,1.062604 +1.051412,1.051412,1.051412,1.051412,1.051412,1.051412 +1.040161,1.040161,1.040161,1.040161,1.040161,1.040161 +1.028857,1.028857,1.028857,1.028857,1.028857,1.028857 +1.017501,1.017501,1.017501,1.017501,1.017501,1.017501 +1.006099,1.006099,1.006099,1.006099,1.006099,1.006099 +0.994653,0.994653,0.994653,0.994653,0.994653,0.994653 +0.983168,0.983168,0.983168,0.983168,0.983168,0.983168 +0.971647,0.971647,0.971647,0.971647,0.971647,0.971647 +0.960095,0.960095,0.960095,0.960095,0.960095,0.960095 +0.948514,0.948514,0.948514,0.948514,0.948514,0.948514 +0.936909,0.936909,0.936909,0.936909,0.936909,0.936909 +0.925283,0.925283,0.925283,0.925283,0.925283,0.925283 +0.91364,0.91364,0.91364,0.91364,0.91364,0.91364 +0.901984,0.901984,0.901984,0.901984,0.901984,0.901984 +0.890319,0.890319,0.890319,0.890319,0.890319,0.890319 +0.878648,0.878648,0.878648,0.878648,0.878648,0.878648 +0.866975,0.866975,0.866975,0.866975,0.866975,0.866975 +0.855303,0.855303,0.855303,0.855303,0.855303,0.855303 +0.843638,0.843638,0.843638,0.843638,0.843638,0.843638 +0.831982,0.831982,0.831982,0.831982,0.831982,0.831982 +0.820338,0.820338,0.820338,0.820338,0.820338,0.820338 +0.808712,0.808712,0.808712,0.808712,0.808712,0.808712 +0.797106,0.797106,0.797106,0.797106,0.797106,0.797106 +0.785525,0.785525,0.785525,0.785525,0.785525,0.785525 +0.773971,0.773971,0.773971,0.773971,0.773971,0.773971 +0.76245,0.76245,0.76245,0.76245,0.76245,0.76245 +0.750964,0.750964,0.750964,0.750964,0.750964,0.750964 +0.739517,0.739517,0.739517,0.739517,0.739517,0.739517 +0.728113,0.728113,0.728113,0.728113,0.728113,0.728113 +0.716756,0.716756,0.716756,0.716756,0.716756,0.716756 +0.70545,0.70545,0.70545,0.70545,0.70545,0.70545 +0.694198,0.694198,0.694198,0.694198,0.694198,0.694198 +0.683004,0.683004,0.683004,0.683004,0.683004,0.683004 +0.671872,0.671872,0.671872,0.671872,0.671872,0.671872 +0.660806,0.660806,0.660806,0.660806,0.660806,0.660806 +0.649809,0.649809,0.649809,0.649809,0.649809,0.649809 +0.638885,0.638885,0.638885,0.638885,0.638885,0.638885 +0.628038,0.628038,0.628038,0.628038,0.628038,0.628038 +0.617271,0.617271,0.617271,0.617271,0.617271,0.617271 +0.606589,0.606589,0.606589,0.606589,0.606589,0.606589 +0.595994,0.595994,0.595994,0.595994,0.595994,0.595994 +0.585492,0.585492,0.585492,0.585492,0.585492,0.585492 +0.575083,0.575083,0.575083,0.575083,0.575083,0.575083 +0.564768,0.564768,0.564768,0.564768,0.564768,0.564768 +0.554547,0.554547,0.554547,0.554547,0.554547,0.554547 +0.544419,0.544419,0.544419,0.544419,0.544419,0.544419 +0.534385,0.534385,0.534385,0.534385,0.534385,0.534385 +0.524445,0.524445,0.524445,0.524445,0.524445,0.524445 +0.514599,0.514599,0.514599,0.514599,0.514599,0.514599 +0.504846,0.504846,0.504846,0.504846,0.504846,0.504846 +0.495187,0.495187,0.495187,0.495187,0.495187,0.495187 +0.485622,0.485622,0.485622,0.485622,0.485622,0.485622 +0.476151,0.476151,0.476151,0.476151,0.476151,0.476151 +0.466773,0.466773,0.466773,0.466773,0.466773,0.466773 +0.457489,0.457489,0.457489,0.457489,0.457489,0.457489 +0.448299,0.448299,0.448299,0.448299,0.448299,0.448299 +0.439203,0.439203,0.439203,0.439203,0.439203,0.439203 +0.4302,0.4302,0.4302,0.4302,0.4302,0.4302 +0.421292,0.421292,0.421292,0.421292,0.421292,0.421292 +0.412476,0.412476,0.412476,0.412476,0.412476,0.412476 +0.403755,0.403755,0.403755,0.403755,0.403755,0.403755 +0.395128,0.395128,0.395128,0.395128,0.395128,0.395128 +0.386594,0.386594,0.386594,0.386594,0.386594,0.386594 +0.378154,0.378154,0.378154,0.378154,0.378154,0.378154 +0.369807,0.369807,0.369807,0.369807,0.369807,0.369807 +0.361555,0.361555,0.361555,0.361555,0.361555,0.361555 +0.353396,0.353396,0.353396,0.353396,0.353396,0.353396 +0.345331,0.345331,0.345331,0.345331,0.345331,0.345331 +0.337359,0.337359,0.337359,0.337359,0.337359,0.337359 +0.329482,0.329482,0.329482,0.329482,0.329482,0.329482 +0.321698,0.321698,0.321698,0.321698,0.321698,0.321698 +0.314008,0.314008,0.314008,0.314008,0.314008,0.314008 +0.306412,0.306412,0.306412,0.306412,0.306412,0.306412 +0.298909,0.298909,0.298909,0.298909,0.298909,0.298909 +0.2915,0.2915,0.2915,0.2915,0.2915,0.2915 +0.284185,0.284185,0.284185,0.284185,0.284185,0.284185 +0.276964,0.276964,0.276964,0.276964,0.276964,0.276964 +0.269836,0.269836,0.269836,0.269836,0.269836,0.269836 +0.262802,0.262802,0.262802,0.262802,0.262802,0.262802 +0.255862,0.255862,0.255862,0.255862,0.255862,0.255862 +0.249016,0.249016,0.249016,0.249016,0.249016,0.249016 +0.242263,0.242263,0.242263,0.242263,0.242263,0.242263 +0.235604,0.235604,0.235604,0.235604,0.235604,0.235604 +0.229039,0.229039,0.229039,0.229039,0.229039,0.229039 +0.222568,0.222568,0.222568,0.222568,0.222568,0.222568 +0.21619,0.21619,0.21619,0.21619,0.21619,0.21619 +0.209907,0.209907,0.209907,0.209907,0.209907,0.209907 +0.203716,0.203716,0.203716,0.203716,0.203716,0.203716 +0.19762,0.19762,0.19762,0.19762,0.19762,0.19762 +0.191618,0.191618,0.191618,0.191618,0.191618,0.191618 +0.185709,0.185709,0.185709,0.185709,0.185709,0.185709 +0.179894,0.179894,0.179894,0.179894,0.179894,0.179894 +0.174172,0.174172,0.174172,0.174172,0.174172,0.174172 +0.168545,0.168545,0.168545,0.168545,0.168545,0.168545 +0.163011,0.163011,0.163011,0.163011,0.163011,0.163011 +0.157571,0.157571,0.157571,0.157571,0.157571,0.157571 +0.152224,0.152224,0.152224,0.152224,0.152224,0.152224 +0.146972,0.146972,0.146972,0.146972,0.146972,0.146972 +0.141813,0.141813,0.141813,0.141813,0.141813,0.141813 +0.136748,0.136748,0.136748,0.136748,0.136748,0.136748 +0.131777,0.131777,0.131777,0.131777,0.131777,0.131777 +0.126899,0.126899,0.126899,0.126899,0.126899,0.126899 +0.122115,0.122115,0.122115,0.122115,0.122115,0.122115 +0.117425,0.117425,0.117425,0.117425,0.117425,0.117425 +0.112829,0.112829,0.112829,0.112829,0.112829,0.112829 +0.108326,0.108326,0.108326,0.108326,0.108326,0.108326 +0.103917,0.103917,0.103917,0.103917,0.103917,0.103917 +0.099602,0.099602,0.099602,0.099602,0.099602,0.099602 +0.095381,0.095381,0.095381,0.095381,0.095381,0.095381 +0.091253,0.091253,0.091253,0.091253,0.091253,0.091253 +0.087219,0.087219,0.087219,0.087219,0.087219,0.087219 +0.083279,0.083279,0.083279,0.083279,0.083279,0.083279 +0.079433,0.079433,0.079433,0.079433,0.079433,0.079433 +0.07568,0.07568,0.07568,0.07568,0.07568,0.07568 +0.072022,0.072022,0.072022,0.072022,0.072022,0.072022 +0.068456,0.068456,0.068456,0.068456,0.068456,0.068456 +0.064985,0.064985,0.064985,0.064985,0.064985,0.064985 +0.061608,0.061608,0.061608,0.061608,0.061608,0.061608 +0.058324,0.058324,0.058324,0.058324,0.058324,0.058324 +0.055134,0.055134,0.055134,0.055134,0.055134,0.055134 +0.052037,0.052037,0.052037,0.052037,0.052037,0.052037 +0.049035,0.049035,0.049035,0.049035,0.049035,0.049035 +0.046126,0.046126,0.046126,0.046126,0.046126,0.046126 +0.043311,0.043311,0.043311,0.043311,0.043311,0.043311 +0.040589,0.040589,0.040589,0.040589,0.040589,0.040589 +0.037962,0.037962,0.037962,0.037962,0.037962,0.037962 +0.035428,0.035428,0.035428,0.035428,0.035428,0.035428 +0.032988,0.032988,0.032988,0.032988,0.032988,0.032988 +0.030642,0.030642,0.030642,0.030642,0.030642,0.030642 +0.028389,0.028389,0.028389,0.028389,0.028389,0.028389 +0.02623,0.02623,0.02623,0.02623,0.02623,0.02623 +0.024165,0.024165,0.024165,0.024165,0.024165,0.024165 +0.022194,0.022194,0.022194,0.022194,0.022194,0.022194 +0.020316,0.020316,0.020316,0.020316,0.020316,0.020316 +0.018532,0.018532,0.018532,0.018532,0.018532,0.018532 +0.016842,0.016842,0.016842,0.016842,0.016842,0.016842 +0.015246,0.015246,0.015246,0.015246,0.015246,0.015246 +0.013743,0.013743,0.013743,0.013743,0.013743,0.013743 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.011019,0.011019,0.011019,0.011019,0.011019,0.011019 +0.009798,0.009798,0.009798,0.009798,0.009798,0.009798 +0.00867,0.00867,0.00867,0.00867,0.00867,0.00867 +0.007632,0.007632,0.007632,0.007632,0.007632,0.007632 +0.00668,0.00668,0.00668,0.00668,0.00668,0.00668 +0.005811,0.005811,0.005811,0.005811,0.005811,0.005811 +0.005021,0.005021,0.005021,0.005021,0.005021,0.005021 +0.004306,0.004306,0.004306,0.004306,0.004306,0.004306 +0.003662,0.003662,0.003662,0.003662,0.003662,0.003662 +0.003086,0.003086,0.003086,0.003086,0.003086,0.003086 +0.002573,0.002573,0.002573,0.002573,0.002573,0.002573 +0.002121,0.002121,0.002121,0.002121,0.002121,0.002121 +0.001725,0.001725,0.001725,0.001725,0.001725,0.001725 +0.001382,0.001382,0.001382,0.001382,0.001382,0.001382 +0.001087,0.001087,0.001087,0.001087,0.001087,0.001087 +0.000838,0.000838,0.000838,0.000838,0.000838,0.000838 +0.00063,0.00063,0.00063,0.00063,0.00063,0.00063 +0.00046,0.00046,0.00046,0.00046,0.00046,0.00046 +0.000323,0.000323,0.000323,0.000323,0.000323,0.000323 +0.000217,0.000217,0.000217,0.000217,0.000217,0.000217 +0.000137,0.000137,0.000137,0.000137,0.000137,0.000137 +0.000079,0.000079,0.000079,0.000079,0.000079,0.000079 +0.000041,0.000041,0.000041,0.000041,0.000041,0.000041 +0.000017,0.000017,0.000017,0.000017,0.000017,0.000017 +0.000005,0.000005,0.000005,0.000005,0.000005,0.000005 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.00004,-0.00004,-0.00004,-0.00004,-0.00004,-0.00004 +-0.000078,-0.000078,-0.000078,-0.000078,-0.000078,-0.000078 +-0.000135,-0.000135,-0.000135,-0.000135,-0.000135,-0.000135 +-0.000214,-0.000214,-0.000214,-0.000214,-0.000214,-0.000214 +-0.00032,-0.00032,-0.00032,-0.00032,-0.00032,-0.00032 +-0.000456,-0.000456,-0.000456,-0.000456,-0.000456,-0.000456 +-0.000625,-0.000625,-0.000625,-0.000625,-0.000625,-0.000625 +-0.000832,-0.000832,-0.000832,-0.000832,-0.000832,-0.000832 +-0.00108,-0.00108,-0.00108,-0.00108,-0.00108,-0.00108 +-0.001373,-0.001373,-0.001373,-0.001373,-0.001373,-0.001373 +-0.001715,-0.001715,-0.001715,-0.001715,-0.001715,-0.001715 +-0.002109,-0.002109,-0.002109,-0.002109,-0.002109,-0.002109 +-0.00256,-0.00256,-0.00256,-0.00256,-0.00256,-0.00256 +-0.003071,-0.003071,-0.003071,-0.003071,-0.003071,-0.003071 +-0.003645,-0.003645,-0.003645,-0.003645,-0.003645,-0.003645 +-0.004287,-0.004287,-0.004287,-0.004287,-0.004287,-0.004287 +-0.005,-0.005,-0.005,-0.005,-0.005,-0.005 +-0.005788,-0.005788,-0.005788,-0.005788,-0.005788,-0.005788 +-0.006655,-0.006655,-0.006655,-0.006655,-0.006655,-0.006655 +-0.007604,-0.007604,-0.007604,-0.007604,-0.007604,-0.007604 +-0.00864,-0.00864,-0.00864,-0.00864,-0.00864,-0.00864 +-0.009766,-0.009766,-0.009766,-0.009766,-0.009766,-0.009766 +-0.010984,-0.010984,-0.010984,-0.010984,-0.010984,-0.010984 +-0.012297,-0.012297,-0.012297,-0.012297,-0.012297,-0.012297 +-0.013703,-0.013703,-0.013703,-0.013703,-0.013703,-0.013703 +-0.015203,-0.015203,-0.015203,-0.015203,-0.015203,-0.015203 +-0.016797,-0.016797,-0.016797,-0.016797,-0.016797,-0.016797 +-0.018484,-0.018484,-0.018484,-0.018484,-0.018484,-0.018484 +-0.020266,-0.020266,-0.020266,-0.020266,-0.020266,-0.020266 +-0.022141,-0.022141,-0.022141,-0.022141,-0.022141,-0.022141 +-0.024109,-0.024109,-0.024109,-0.024109,-0.024109,-0.024109 +-0.026172,-0.026172,-0.026172,-0.026172,-0.026172,-0.026172 +-0.028328,-0.028328,-0.028328,-0.028328,-0.028328,-0.028328 +-0.030578,-0.030578,-0.030578,-0.030578,-0.030578,-0.030578 +-0.032922,-0.032922,-0.032922,-0.032922,-0.032922,-0.032922 +-0.035359,-0.035359,-0.035359,-0.035359,-0.035359,-0.035359 +-0.037891,-0.037891,-0.037891,-0.037891,-0.037891,-0.037891 +-0.040516,-0.040516,-0.040516,-0.040516,-0.040516,-0.040516 +-0.043234,-0.043234,-0.043234,-0.043234,-0.043234,-0.043234 +-0.046047,-0.046047,-0.046047,-0.046047,-0.046047,-0.046047 +-0.048953,-0.048953,-0.048953,-0.048953,-0.048953,-0.048953 +-0.051953,-0.051953,-0.051953,-0.051953,-0.051953,-0.051953 +-0.055047,-0.055047,-0.055047,-0.055047,-0.055047,-0.055047 +-0.058234,-0.058234,-0.058234,-0.058234,-0.058234,-0.058234 +-0.061516,-0.061516,-0.061516,-0.061516,-0.061516,-0.061516 +-0.064891,-0.064891,-0.064891,-0.064891,-0.064891,-0.064891 +-0.068359,-0.068359,-0.068359,-0.068359,-0.068359,-0.068359 +-0.071922,-0.071922,-0.071922,-0.071922,-0.071922,-0.071922 +-0.075578,-0.075578,-0.075578,-0.075578,-0.075578,-0.075578 +-0.079328,-0.079328,-0.079328,-0.079328,-0.079328,-0.079328 +-0.083172,-0.083172,-0.083172,-0.083172,-0.083172,-0.083172 +-0.087109,-0.087109,-0.087109,-0.087109,-0.087109,-0.087109 +-0.091141,-0.091141,-0.091141,-0.091141,-0.091141,-0.091141 +-0.095266,-0.095266,-0.095266,-0.095266,-0.095266,-0.095266 +-0.099484,-0.099484,-0.099484,-0.099484,-0.099484,-0.099484 +-0.103797,-0.103797,-0.103797,-0.103797,-0.103797,-0.103797 +-0.108203,-0.108203,-0.108203,-0.108203,-0.108203,-0.108203 +-0.112703,-0.112703,-0.112703,-0.112703,-0.112703,-0.112703 +-0.117297,-0.117297,-0.117297,-0.117297,-0.117297,-0.117297 +-0.121984,-0.121984,-0.121984,-0.121984,-0.121984,-0.121984 +-0.126766,-0.126766,-0.126766,-0.126766,-0.126766,-0.126766 +-0.131641,-0.131641,-0.131641,-0.131641,-0.131641,-0.131641 +-0.136609,-0.136609,-0.136609,-0.136609,-0.136609,-0.136609 +-0.141672,-0.141672,-0.141672,-0.141672,-0.141672,-0.141672 +-0.146828,-0.146828,-0.146828,-0.146828,-0.146828,-0.146828 +-0.152078,-0.152078,-0.152078,-0.152078,-0.152078,-0.152078 +-0.157422,-0.157422,-0.157422,-0.157422,-0.157422,-0.157422 +-0.162859,-0.162859,-0.162859,-0.162859,-0.162859,-0.162859 +-0.168391,-0.168391,-0.168391,-0.168391,-0.168391,-0.168391 +-0.174016,-0.174016,-0.174016,-0.174016,-0.174016,-0.174016 +-0.179734,-0.179734,-0.179734,-0.179734,-0.179734,-0.179734 +-0.185547,-0.185547,-0.185547,-0.185547,-0.185547,-0.185547 +-0.191453,-0.191453,-0.191453,-0.191453,-0.191453,-0.191453 +-0.197453,-0.197453,-0.197453,-0.197453,-0.197453,-0.197453 +-0.203547,-0.203547,-0.203547,-0.203547,-0.203547,-0.203547 +-0.209734,-0.209734,-0.209734,-0.209734,-0.209734,-0.209734 +-0.216016,-0.216016,-0.216016,-0.216016,-0.216016,-0.216016 +-0.222391,-0.222391,-0.222391,-0.222391,-0.222391,-0.222391 +-0.228859,-0.228859,-0.228859,-0.228859,-0.228859,-0.228859 +-0.235422,-0.235422,-0.235422,-0.235422,-0.235422,-0.235422 +-0.242078,-0.242078,-0.242078,-0.242078,-0.242078,-0.242078 +-0.248828,-0.248828,-0.248828,-0.248828,-0.248828,-0.248828 +-0.255672,-0.255672,-0.255672,-0.255672,-0.255672,-0.255672 +-0.262609,-0.262609,-0.262609,-0.262609,-0.262609,-0.262609 +-0.269641,-0.269641,-0.269641,-0.269641,-0.269641,-0.269641 +-0.276766,-0.276766,-0.276766,-0.276766,-0.276766,-0.276766 +-0.283984,-0.283984,-0.283984,-0.283984,-0.283984,-0.283984 +-0.291297,-0.291297,-0.291297,-0.291297,-0.291297,-0.291297 +-0.298703,-0.298703,-0.298703,-0.298703,-0.298703,-0.298703 +-0.306203,-0.306203,-0.306203,-0.306203,-0.306203,-0.306203 +-0.313797,-0.313797,-0.313797,-0.313797,-0.313797,-0.313797 +-0.321484,-0.321484,-0.321484,-0.321484,-0.321484,-0.321484 +-0.329266,-0.329266,-0.329266,-0.329266,-0.329266,-0.329266 +-0.337141,-0.337141,-0.337141,-0.337141,-0.337141,-0.337141 +-0.345109,-0.345109,-0.345109,-0.345109,-0.345109,-0.345109 +-0.353172,-0.353172,-0.353172,-0.353172,-0.353172,-0.353172 +-0.361328,-0.361328,-0.361328,-0.361328,-0.361328,-0.361328 +-0.369578,-0.369578,-0.369578,-0.369578,-0.369578,-0.369578 +-0.377922,-0.377922,-0.377922,-0.377922,-0.377922,-0.377922 +-0.386359,-0.386359,-0.386359,-0.386359,-0.386359,-0.386359 +-0.394891,-0.394891,-0.394891,-0.394891,-0.394891,-0.394891 +-0.403516,-0.403516,-0.403516,-0.403516,-0.403516,-0.403516 +-0.412234,-0.412234,-0.412234,-0.412234,-0.412234,-0.412234 +-0.421047,-0.421047,-0.421047,-0.421047,-0.421047,-0.421047 +-0.429953,-0.429953,-0.429953,-0.429953,-0.429953,-0.429953 +-0.438953,-0.438953,-0.438953,-0.438953,-0.438953,-0.438953 +-0.448047,-0.448047,-0.448047,-0.448047,-0.448047,-0.448047 +-0.457234,-0.457234,-0.457234,-0.457234,-0.457234,-0.457234 +-0.466516,-0.466516,-0.466516,-0.466516,-0.466516,-0.466516 +-0.475891,-0.475891,-0.475891,-0.475891,-0.475891,-0.475891 +-0.485359,-0.485359,-0.485359,-0.485359,-0.485359,-0.485359 +-0.494922,-0.494922,-0.494922,-0.494922,-0.494922,-0.494922 +-0.504578,-0.504578,-0.504578,-0.504578,-0.504578,-0.504578 +-0.514328,-0.514328,-0.514328,-0.514328,-0.514328,-0.514328 +-0.524172,-0.524172,-0.524172,-0.524172,-0.524172,-0.524172 +-0.534109,-0.534109,-0.534109,-0.534109,-0.534109,-0.534109 +-0.544141,-0.544141,-0.544141,-0.544141,-0.544141,-0.544141 +-0.554266,-0.554266,-0.554266,-0.554266,-0.554266,-0.554266 +-0.564484,-0.564484,-0.564484,-0.564484,-0.564484,-0.564484 +-0.574797,-0.574797,-0.574797,-0.574797,-0.574797,-0.574797 +-0.585203,-0.585203,-0.585203,-0.585203,-0.585203,-0.585203 +-0.595703,-0.595703,-0.595703,-0.595703,-0.595703,-0.595703 +-0.606295,-0.606295,-0.606295,-0.606295,-0.606295,-0.606295 +-0.616975,-0.616975,-0.616975,-0.616975,-0.616975,-0.616975 +-0.627739,-0.627739,-0.627739,-0.627739,-0.627739,-0.627739 +-0.638584,-0.638584,-0.638584,-0.638584,-0.638584,-0.638584 +-0.649506,-0.649506,-0.649506,-0.649506,-0.649506,-0.649506 +-0.660501,-0.660501,-0.660501,-0.660501,-0.660501,-0.660501 +-0.671566,-0.671566,-0.671566,-0.671566,-0.671566,-0.671566 +-0.682696,-0.682696,-0.682696,-0.682696,-0.682696,-0.682696 +-0.693888,-0.693888,-0.693888,-0.693888,-0.693888,-0.693888 +-0.705139,-0.705139,-0.705139,-0.705139,-0.705139,-0.705139 +-0.716443,-0.716443,-0.716443,-0.716443,-0.716443,-0.716443 +-0.727799,-0.727799,-0.727799,-0.727799,-0.727799,-0.727799 +-0.739201,-0.739201,-0.739201,-0.739201,-0.739201,-0.739201 +-0.750647,-0.750647,-0.750647,-0.750647,-0.750647,-0.750647 +-0.762132,-0.762132,-0.762132,-0.762132,-0.762132,-0.762132 +-0.773653,-0.773653,-0.773653,-0.773653,-0.773653,-0.773653 +-0.785205,-0.785205,-0.785205,-0.785205,-0.785205,-0.785205 +-0.796786,-0.796786,-0.796786,-0.796786,-0.796786,-0.796786 +-0.808391,-0.808391,-0.808391,-0.808391,-0.808391,-0.808391 +-0.820017,-0.820017,-0.820017,-0.820017,-0.820017,-0.820017 +-0.83166,-0.83166,-0.83166,-0.83166,-0.83166,-0.83166 +-0.843316,-0.843316,-0.843316,-0.843316,-0.843316,-0.843316 +-0.854981,-0.854981,-0.854981,-0.854981,-0.854981,-0.854981 +-0.866652,-0.866652,-0.866652,-0.866652,-0.866652,-0.866652 +-0.878325,-0.878325,-0.878325,-0.878325,-0.878325,-0.878325 +-0.889997,-0.889997,-0.889997,-0.889997,-0.889997,-0.889997 +-0.901662,-0.901662,-0.901662,-0.901662,-0.901662,-0.901662 +-0.913318,-0.913318,-0.913318,-0.913318,-0.913318,-0.913318 +-0.924962,-0.924962,-0.924962,-0.924962,-0.924962,-0.924962 +-0.936588,-0.936588,-0.936588,-0.936588,-0.936588,-0.936588 +-0.948194,-0.948194,-0.948194,-0.948194,-0.948194,-0.948194 +-0.959775,-0.959775,-0.959775,-0.959775,-0.959775,-0.959775 +-0.971329,-0.971329,-0.971329,-0.971329,-0.971329,-0.971329 +-0.98285,-0.98285,-0.98285,-0.98285,-0.98285,-0.98285 +-0.994336,-0.994336,-0.994336,-0.994336,-0.994336,-0.994336 +-1.005783,-1.005783,-1.005783,-1.005783,-1.005783,-1.005783 +-1.017187,-1.017187,-1.017187,-1.017187,-1.017187,-1.017187 +-1.028544,-1.028544,-1.028544,-1.028544,-1.028544,-1.028544 +-1.03985,-1.03985,-1.03985,-1.03985,-1.03985,-1.03985 +-1.051102,-1.051102,-1.051102,-1.051102,-1.051102,-1.051102 +-1.062296,-1.062296,-1.062296,-1.062296,-1.062296,-1.062296 +-1.073428,-1.073428,-1.073428,-1.073428,-1.073428,-1.073428 +-1.084494,-1.084494,-1.084494,-1.084494,-1.084494,-1.084494 +-1.095491,-1.095491,-1.095491,-1.095491,-1.095491,-1.095491 +-1.106415,-1.106415,-1.106415,-1.106415,-1.106415,-1.106415 +-1.117262,-1.117262,-1.117262,-1.117262,-1.117262,-1.117262 +-1.128029,-1.128029,-1.128029,-1.128029,-1.128029,-1.128029 +-1.138711,-1.138711,-1.138711,-1.138711,-1.138711,-1.138711 +-1.149306,-1.149306,-1.149306,-1.149306,-1.149306,-1.149306 +-1.159808,-1.159808,-1.159808,-1.159808,-1.159808,-1.159808 +-1.170217,-1.170217,-1.170217,-1.170217,-1.170217,-1.170217 +-1.180532,-1.180532,-1.180532,-1.180532,-1.180532,-1.180532 +-1.190753,-1.190753,-1.190753,-1.190753,-1.190753,-1.190753 +-1.200881,-1.200881,-1.200881,-1.200881,-1.200881,-1.200881 +-1.210915,-1.210915,-1.210915,-1.210915,-1.210915,-1.210915 +-1.220855,-1.220855,-1.220855,-1.220855,-1.220855,-1.220855 +-1.230701,-1.230701,-1.230701,-1.230701,-1.230701,-1.230701 +-1.240454,-1.240454,-1.240454,-1.240454,-1.240454,-1.240454 +-1.250113,-1.250113,-1.250113,-1.250113,-1.250113,-1.250113 +-1.259678,-1.259678,-1.259678,-1.259678,-1.259678,-1.259678 +-1.269149,-1.269149,-1.269149,-1.269149,-1.269149,-1.269149 +-1.278527,-1.278527,-1.278527,-1.278527,-1.278527,-1.278527 +-1.287811,-1.287811,-1.287811,-1.287811,-1.287811,-1.287811 +-1.297001,-1.297001,-1.297001,-1.297001,-1.297001,-1.297001 +-1.306097,-1.306097,-1.306097,-1.306097,-1.306097,-1.306097 +-1.3151,-1.3151,-1.3151,-1.3151,-1.3151,-1.3151 +-1.324008,-1.324008,-1.324008,-1.324008,-1.324008,-1.324008 +-1.332824,-1.332824,-1.332824,-1.332824,-1.332824,-1.332824 +-1.341545,-1.341545,-1.341545,-1.341545,-1.341545,-1.341545 +-1.350172,-1.350172,-1.350172,-1.350172,-1.350172,-1.350172 +-1.358706,-1.358706,-1.358706,-1.358706,-1.358706,-1.358706 +-1.367146,-1.367146,-1.367146,-1.367146,-1.367146,-1.367146 +-1.375493,-1.375493,-1.375493,-1.375493,-1.375493,-1.375493 +-1.383745,-1.383745,-1.383745,-1.383745,-1.383745,-1.383745 +-1.391904,-1.391904,-1.391904,-1.391904,-1.391904,-1.391904 +-1.399969,-1.399969,-1.399969,-1.399969,-1.399969,-1.399969 +-1.407941,-1.407941,-1.407941,-1.407941,-1.407941,-1.407941 +-1.415818,-1.415818,-1.415818,-1.415818,-1.415818,-1.415818 +-1.423602,-1.423602,-1.423602,-1.423602,-1.423602,-1.423602 +-1.431292,-1.431292,-1.431292,-1.431292,-1.431292,-1.431292 +-1.438888,-1.438888,-1.438888,-1.438888,-1.438888,-1.438888 +-1.446391,-1.446391,-1.446391,-1.446391,-1.446391,-1.446391 +-1.4538,-1.4538,-1.4538,-1.4538,-1.4538,-1.4538 +-1.461115,-1.461115,-1.461115,-1.461115,-1.461115,-1.461115 +-1.468336,-1.468336,-1.468336,-1.468336,-1.468336,-1.468336 +-1.475464,-1.475464,-1.475464,-1.475464,-1.475464,-1.475464 +-1.482498,-1.482498,-1.482498,-1.482498,-1.482498,-1.482498 +-1.489438,-1.489438,-1.489438,-1.489438,-1.489438,-1.489438 +-1.496284,-1.496284,-1.496284,-1.496284,-1.496284,-1.496284 +-1.503037,-1.503037,-1.503037,-1.503037,-1.503037,-1.503037 +-1.509696,-1.509696,-1.509696,-1.509696,-1.509696,-1.509696 +-1.516261,-1.516261,-1.516261,-1.516261,-1.516261,-1.516261 +-1.522732,-1.522732,-1.522732,-1.522732,-1.522732,-1.522732 +-1.52911,-1.52911,-1.52911,-1.52911,-1.52911,-1.52911 +-1.535393,-1.535393,-1.535393,-1.535393,-1.535393,-1.535393 +-1.541584,-1.541584,-1.541584,-1.541584,-1.541584,-1.541584 +-1.54768,-1.54768,-1.54768,-1.54768,-1.54768,-1.54768 +-1.553682,-1.553682,-1.553682,-1.553682,-1.553682,-1.553682 +-1.559591,-1.559591,-1.559591,-1.559591,-1.559591,-1.559591 +-1.565406,-1.565406,-1.565406,-1.565406,-1.565406,-1.565406 +-1.571128,-1.571128,-1.571128,-1.571128,-1.571128,-1.571128 +-1.576755,-1.576755,-1.576755,-1.576755,-1.576755,-1.576755 +-1.582289,-1.582289,-1.582289,-1.582289,-1.582289,-1.582289 +-1.587729,-1.587729,-1.587729,-1.587729,-1.587729,-1.587729 +-1.593076,-1.593076,-1.593076,-1.593076,-1.593076,-1.593076 +-1.598328,-1.598328,-1.598328,-1.598328,-1.598328,-1.598328 +-1.603487,-1.603487,-1.603487,-1.603487,-1.603487,-1.603487 +-1.608552,-1.608552,-1.608552,-1.608552,-1.608552,-1.608552 +-1.613523,-1.613523,-1.613523,-1.613523,-1.613523,-1.613523 +-1.618401,-1.618401,-1.618401,-1.618401,-1.618401,-1.618401 +-1.623185,-1.623185,-1.623185,-1.623185,-1.623185,-1.623185 +-1.627875,-1.627875,-1.627875,-1.627875,-1.627875,-1.627875 +-1.632471,-1.632471,-1.632471,-1.632471,-1.632471,-1.632471 +-1.636974,-1.636974,-1.636974,-1.636974,-1.636974,-1.636974 +-1.641383,-1.641383,-1.641383,-1.641383,-1.641383,-1.641383 +-1.645698,-1.645698,-1.645698,-1.645698,-1.645698,-1.645698 +-1.649919,-1.649919,-1.649919,-1.649919,-1.649919,-1.649919 +-1.654047,-1.654047,-1.654047,-1.654047,-1.654047,-1.654047 +-1.658081,-1.658081,-1.658081,-1.658081,-1.658081,-1.658081 +-1.662021,-1.662021,-1.662021,-1.662021,-1.662021,-1.662021 +-1.665867,-1.665867,-1.665867,-1.665867,-1.665867,-1.665867 +-1.66962,-1.66962,-1.66962,-1.66962,-1.66962,-1.66962 +-1.673278,-1.673278,-1.673278,-1.673278,-1.673278,-1.673278 +-1.676844,-1.676844,-1.676844,-1.676844,-1.676844,-1.676844 +-1.680315,-1.680315,-1.680315,-1.680315,-1.680315,-1.680315 +-1.683692,-1.683692,-1.683692,-1.683692,-1.683692,-1.683692 +-1.686976,-1.686976,-1.686976,-1.686976,-1.686976,-1.686976 +-1.690166,-1.690166,-1.690166,-1.690166,-1.690166,-1.690166 +-1.693263,-1.693263,-1.693263,-1.693263,-1.693263,-1.693263 +-1.696265,-1.696265,-1.696265,-1.696265,-1.696265,-1.696265 +-1.699174,-1.699174,-1.699174,-1.699174,-1.699174,-1.699174 +-1.701989,-1.701989,-1.701989,-1.701989,-1.701989,-1.701989 +-1.704711,-1.704711,-1.704711,-1.704711,-1.704711,-1.704711 +-1.707338,-1.707338,-1.707338,-1.707338,-1.707338,-1.707338 +-1.709872,-1.709872,-1.709872,-1.709872,-1.709872,-1.709872 +-1.712312,-1.712312,-1.712312,-1.712312,-1.712312,-1.712312 +-1.714658,-1.714658,-1.714658,-1.714658,-1.714658,-1.714658 +-1.716911,-1.716911,-1.716911,-1.716911,-1.716911,-1.716911 +-1.71907,-1.71907,-1.71907,-1.71907,-1.71907,-1.71907 +-1.721135,-1.721135,-1.721135,-1.721135,-1.721135,-1.721135 +-1.723106,-1.723106,-1.723106,-1.723106,-1.723106,-1.723106 +-1.724984,-1.724984,-1.724984,-1.724984,-1.724984,-1.724984 +-1.726768,-1.726768,-1.726768,-1.726768,-1.726768,-1.726768 +-1.728458,-1.728458,-1.728458,-1.728458,-1.728458,-1.728458 +-1.730054,-1.730054,-1.730054,-1.730054,-1.730054,-1.730054 +-1.731557,-1.731557,-1.731557,-1.731557,-1.731557,-1.731557 +-1.732966,-1.732966,-1.732966,-1.732966,-1.732966,-1.732966 +-1.734281,-1.734281,-1.734281,-1.734281,-1.734281,-1.734281 +-1.735502,-1.735502,-1.735502,-1.735502,-1.735502,-1.735502 +-1.73663,-1.73663,-1.73663,-1.73663,-1.73663,-1.73663 +-1.737668,-1.737668,-1.737668,-1.737668,-1.737668,-1.737668 +-1.73862,-1.73862,-1.73862,-1.73862,-1.73862,-1.73862 +-1.739489,-1.739489,-1.739489,-1.739489,-1.739489,-1.739489 +-1.740279,-1.740279,-1.740279,-1.740279,-1.740279,-1.740279 +-1.740994,-1.740994,-1.740994,-1.740994,-1.740994,-1.740994 +-1.741638,-1.741638,-1.741638,-1.741638,-1.741638,-1.741638 +-1.742214,-1.742214,-1.742214,-1.742214,-1.742214,-1.742214 +-1.742727,-1.742727,-1.742727,-1.742727,-1.742727,-1.742727 +-1.743179,-1.743179,-1.743179,-1.743179,-1.743179,-1.743179 +-1.743575,-1.743575,-1.743575,-1.743575,-1.743575,-1.743575 +-1.743918,-1.743918,-1.743918,-1.743918,-1.743918,-1.743918 +-1.744213,-1.744213,-1.744213,-1.744213,-1.744213,-1.744213 +-1.744462,-1.744462,-1.744462,-1.744462,-1.744462,-1.744462 +-1.74467,-1.74467,-1.74467,-1.74467,-1.74467,-1.74467 +-1.74484,-1.74484,-1.74484,-1.74484,-1.74484,-1.74484 +-1.744977,-1.744977,-1.744977,-1.744977,-1.744977,-1.744977 +-1.745083,-1.745083,-1.745083,-1.745083,-1.745083,-1.745083 +-1.745163,-1.745163,-1.745163,-1.745163,-1.745163,-1.745163 +-1.745221,-1.745221,-1.745221,-1.745221,-1.745221,-1.745221 +-1.745259,-1.745259,-1.745259,-1.745259,-1.745259,-1.745259 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.745295,-1.745295,-1.745295,-1.745295,-1.745295,-1.745295 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745295,-1.745295,-1.745295,-1.745295,-1.745295,-1.745295 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.74526,-1.74526,-1.74526,-1.74526,-1.74526,-1.74526 +-1.745222,-1.745222,-1.745222,-1.745222,-1.745222,-1.745222 +-1.745165,-1.745165,-1.745165,-1.745165,-1.745165,-1.745165 +-1.745086,-1.745086,-1.745086,-1.745086,-1.745086,-1.745086 +-1.74498,-1.74498,-1.74498,-1.74498,-1.74498,-1.74498 +-1.744844,-1.744844,-1.744844,-1.744844,-1.744844,-1.744844 +-1.744675,-1.744675,-1.744675,-1.744675,-1.744675,-1.744675 +-1.744468,-1.744468,-1.744468,-1.744468,-1.744468,-1.744468 +-1.74422,-1.74422,-1.74422,-1.74422,-1.74422,-1.74422 +-1.743927,-1.743927,-1.743927,-1.743927,-1.743927,-1.743927 +-1.743585,-1.743585,-1.743585,-1.743585,-1.743585,-1.743585 +-1.743191,-1.743191,-1.743191,-1.743191,-1.743191,-1.743191 +-1.74274,-1.74274,-1.74274,-1.74274,-1.74274,-1.74274 +-1.742229,-1.742229,-1.742229,-1.742229,-1.742229,-1.742229 +-1.741655,-1.741655,-1.741655,-1.741655,-1.741655,-1.741655 +-1.741013,-1.741013,-1.741013,-1.741013,-1.741013,-1.741013 +-1.7403,-1.7403,-1.7403,-1.7403,-1.7403,-1.7403 +-1.739512,-1.739512,-1.739512,-1.739512,-1.739512,-1.739512 +-1.738645,-1.738645,-1.738645,-1.738645,-1.738645,-1.738645 +-1.737696,-1.737696,-1.737696,-1.737696,-1.737696,-1.737696 +-1.73666,-1.73666,-1.73666,-1.73666,-1.73666,-1.73666 +-1.735534,-1.735534,-1.735534,-1.735534,-1.735534,-1.735534 +-1.734316,-1.734316,-1.734316,-1.734316,-1.734316,-1.734316 +-1.733003,-1.733003,-1.733003,-1.733003,-1.733003,-1.733003 +-1.731597,-1.731597,-1.731597,-1.731597,-1.731597,-1.731597 +-1.730097,-1.730097,-1.730097,-1.730097,-1.730097,-1.730097 +-1.728503,-1.728503,-1.728503,-1.728503,-1.728503,-1.728503 +-1.726816,-1.726816,-1.726816,-1.726816,-1.726816,-1.726816 +-1.725034,-1.725034,-1.725034,-1.725034,-1.725034,-1.725034 +-1.723159,-1.723159,-1.723159,-1.723159,-1.723159,-1.723159 +-1.721191,-1.721191,-1.721191,-1.721191,-1.721191,-1.721191 +-1.719128,-1.719128,-1.719128,-1.719128,-1.719128,-1.719128 +-1.716972,-1.716972,-1.716972,-1.716972,-1.716972,-1.716972 +-1.714722,-1.714722,-1.714722,-1.714722,-1.714722,-1.714722 +-1.712378,-1.712378,-1.712378,-1.712378,-1.712378,-1.712378 +-1.709941,-1.709941,-1.709941,-1.709941,-1.709941,-1.709941 +-1.707409,-1.707409,-1.707409,-1.707409,-1.707409,-1.707409 +-1.704784,-1.704784,-1.704784,-1.704784,-1.704784,-1.704784 +-1.702066,-1.702066,-1.702066,-1.702066,-1.702066,-1.702066 +-1.699253,-1.699253,-1.699253,-1.699253,-1.699253,-1.699253 +-1.696347,-1.696347,-1.696347,-1.696347,-1.696347,-1.696347 +-1.693347,-1.693347,-1.693347,-1.693347,-1.693347,-1.693347 +-1.690253,-1.690253,-1.690253,-1.690253,-1.690253,-1.690253 +-1.687066,-1.687066,-1.687066,-1.687066,-1.687066,-1.687066 +-1.683784,-1.683784,-1.683784,-1.683784,-1.683784,-1.683784 +-1.680409,-1.680409,-1.680409,-1.680409,-1.680409,-1.680409 +-1.676941,-1.676941,-1.676941,-1.676941,-1.676941,-1.676941 +-1.673378,-1.673378,-1.673378,-1.673378,-1.673378,-1.673378 +-1.669722,-1.669722,-1.669722,-1.669722,-1.669722,-1.669722 +-1.665972,-1.665972,-1.665972,-1.665972,-1.665972,-1.665972 +-1.662128,-1.662128,-1.662128,-1.662128,-1.662128,-1.662128 +-1.658191,-1.658191,-1.658191,-1.658191,-1.658191,-1.658191 +-1.654159,-1.654159,-1.654159,-1.654159,-1.654159,-1.654159 +-1.650034,-1.650034,-1.650034,-1.650034,-1.650034,-1.650034 +-1.645816,-1.645816,-1.645816,-1.645816,-1.645816,-1.645816 +-1.641503,-1.641503,-1.641503,-1.641503,-1.641503,-1.641503 +-1.637097,-1.637097,-1.637097,-1.637097,-1.637097,-1.637097 +-1.632597,-1.632597,-1.632597,-1.632597,-1.632597,-1.632597 +-1.628003,-1.628003,-1.628003,-1.628003,-1.628003,-1.628003 +-1.623316,-1.623316,-1.623316,-1.623316,-1.623316,-1.623316 +-1.618534,-1.618534,-1.618534,-1.618534,-1.618534,-1.618534 +-1.613659,-1.613659,-1.613659,-1.613659,-1.613659,-1.613659 +-1.608691,-1.608691,-1.608691,-1.608691,-1.608691,-1.608691 +-1.603628,-1.603628,-1.603628,-1.603628,-1.603628,-1.603628 +-1.598472,-1.598472,-1.598472,-1.598472,-1.598472,-1.598472 +-1.593222,-1.593222,-1.593222,-1.593222,-1.593222,-1.593222 +-1.587878,-1.587878,-1.587878,-1.587878,-1.587878,-1.587878 +-1.582441,-1.582441,-1.582441,-1.582441,-1.582441,-1.582441 +-1.576909,-1.576909,-1.576909,-1.576909,-1.576909,-1.576909 +-1.571284,-1.571284,-1.571284,-1.571284,-1.571284,-1.571284 +-1.565566,-1.565566,-1.565566,-1.565566,-1.565566,-1.565566 +-1.559753,-1.559753,-1.559753,-1.559753,-1.559753,-1.559753 +-1.553847,-1.553847,-1.553847,-1.553847,-1.553847,-1.553847 +-1.547847,-1.547847,-1.547847,-1.547847,-1.547847,-1.547847 +-1.541753,-1.541753,-1.541753,-1.541753,-1.541753,-1.541753 +-1.535566,-1.535566,-1.535566,-1.535566,-1.535566,-1.535566 +-1.529284,-1.529284,-1.529284,-1.529284,-1.529284,-1.529284 +-1.522909,-1.522909,-1.522909,-1.522909,-1.522909,-1.522909 +-1.516441,-1.516441,-1.516441,-1.516441,-1.516441,-1.516441 +-1.509878,-1.509878,-1.509878,-1.509878,-1.509878,-1.509878 +-1.503222,-1.503222,-1.503222,-1.503222,-1.503222,-1.503222 +-1.496472,-1.496472,-1.496472,-1.496472,-1.496472,-1.496472 +-1.489628,-1.489628,-1.489628,-1.489628,-1.489628,-1.489628 +-1.482691,-1.482691,-1.482691,-1.482691,-1.482691,-1.482691 +-1.475659,-1.475659,-1.475659,-1.475659,-1.475659,-1.475659 +-1.468534,-1.468534,-1.468534,-1.468534,-1.468534,-1.468534 +-1.461316,-1.461316,-1.461316,-1.461316,-1.461316,-1.461316 +-1.454003,-1.454003,-1.454003,-1.454003,-1.454003,-1.454003 +-1.446597,-1.446597,-1.446597,-1.446597,-1.446597,-1.446597 +-1.439097,-1.439097,-1.439097,-1.439097,-1.439097,-1.439097 +-1.431503,-1.431503,-1.431503,-1.431503,-1.431503,-1.431503 +-1.423816,-1.423816,-1.423816,-1.423816,-1.423816,-1.423816 +-1.416034,-1.416034,-1.416034,-1.416034,-1.416034,-1.416034 +-1.408159,-1.408159,-1.408159,-1.408159,-1.408159,-1.408159 +-1.400191,-1.400191,-1.400191,-1.400191,-1.400191,-1.400191 +-1.392128,-1.392128,-1.392128,-1.392128,-1.392128,-1.392128 +-1.383972,-1.383972,-1.383972,-1.383972,-1.383972,-1.383972 +-1.375722,-1.375722,-1.375722,-1.375722,-1.375722,-1.375722 +-1.367378,-1.367378,-1.367378,-1.367378,-1.367378,-1.367378 +-1.358941,-1.358941,-1.358941,-1.358941,-1.358941,-1.358941 +-1.350409,-1.350409,-1.350409,-1.350409,-1.350409,-1.350409 +-1.341784,-1.341784,-1.341784,-1.341784,-1.341784,-1.341784 +-1.333066,-1.333066,-1.333066,-1.333066,-1.333066,-1.333066 +-1.324253,-1.324253,-1.324253,-1.324253,-1.324253,-1.324253 +-1.315347,-1.315347,-1.315347,-1.315347,-1.315347,-1.315347 +-1.306347,-1.306347,-1.306347,-1.306347,-1.306347,-1.306347 +-1.297253,-1.297253,-1.297253,-1.297253,-1.297253,-1.297253 +-1.288066,-1.288066,-1.288066,-1.288066,-1.288066,-1.288066 +-1.278784,-1.278784,-1.278784,-1.278784,-1.278784,-1.278784 +-1.269409,-1.269409,-1.269409,-1.269409,-1.269409,-1.269409 +-1.259941,-1.259941,-1.259941,-1.259941,-1.259941,-1.259941 +-1.250378,-1.250378,-1.250378,-1.250378,-1.250378,-1.250378 +-1.240722,-1.240722,-1.240722,-1.240722,-1.240722,-1.240722 +-1.230972,-1.230972,-1.230972,-1.230972,-1.230972,-1.230972 +-1.221128,-1.221128,-1.221128,-1.221128,-1.221128,-1.221128 +-1.211191,-1.211191,-1.211191,-1.211191,-1.211191,-1.211191 +-1.201159,-1.201159,-1.201159,-1.201159,-1.201159,-1.201159 +-1.191034,-1.191034,-1.191034,-1.191034,-1.191034,-1.191034 +-1.180816,-1.180816,-1.180816,-1.180816,-1.180816,-1.180816 +-1.170503,-1.170503,-1.170503,-1.170503,-1.170503,-1.170503 +-1.160097,-1.160097,-1.160097,-1.160097,-1.160097,-1.160097 +-1.149597,-1.149597,-1.149597,-1.149597,-1.149597,-1.149597 +-1.139005,-1.139005,-1.139005,-1.139005,-1.139005,-1.139005 +-1.128325,-1.128325,-1.128325,-1.128325,-1.128325,-1.128325 +-1.117561,-1.117561,-1.117561,-1.117561,-1.117561,-1.117561 +-1.106716,-1.106716,-1.106716,-1.106716,-1.106716,-1.106716 +-1.095794,-1.095794,-1.095794,-1.095794,-1.095794,-1.095794 +-1.084799,-1.084799,-1.084799,-1.084799,-1.084799,-1.084799 +-1.073734,-1.073734,-1.073734,-1.073734,-1.073734,-1.073734 +-1.062604,-1.062604,-1.062604,-1.062604,-1.062604,-1.062604 +-1.051412,-1.051412,-1.051412,-1.051412,-1.051412,-1.051412 +-1.040161,-1.040161,-1.040161,-1.040161,-1.040161,-1.040161 +-1.028857,-1.028857,-1.028857,-1.028857,-1.028857,-1.028857 +-1.017501,-1.017501,-1.017501,-1.017501,-1.017501,-1.017501 +-1.006099,-1.006099,-1.006099,-1.006099,-1.006099,-1.006099 +-0.994653,-0.994653,-0.994653,-0.994653,-0.994653,-0.994653 +-0.983168,-0.983168,-0.983168,-0.983168,-0.983168,-0.983168 +-0.971647,-0.971647,-0.971647,-0.971647,-0.971647,-0.971647 +-0.960095,-0.960095,-0.960095,-0.960095,-0.960095,-0.960095 +-0.948514,-0.948514,-0.948514,-0.948514,-0.948514,-0.948514 +-0.936909,-0.936909,-0.936909,-0.936909,-0.936909,-0.936909 +-0.925283,-0.925283,-0.925283,-0.925283,-0.925283,-0.925283 +-0.91364,-0.91364,-0.91364,-0.91364,-0.91364,-0.91364 +-0.901984,-0.901984,-0.901984,-0.901984,-0.901984,-0.901984 +-0.890319,-0.890319,-0.890319,-0.890319,-0.890319,-0.890319 +-0.878648,-0.878648,-0.878648,-0.878648,-0.878648,-0.878648 +-0.866975,-0.866975,-0.866975,-0.866975,-0.866975,-0.866975 +-0.855303,-0.855303,-0.855303,-0.855303,-0.855303,-0.855303 +-0.843638,-0.843638,-0.843638,-0.843638,-0.843638,-0.843638 +-0.831982,-0.831982,-0.831982,-0.831982,-0.831982,-0.831982 +-0.820338,-0.820338,-0.820338,-0.820338,-0.820338,-0.820338 +-0.808712,-0.808712,-0.808712,-0.808712,-0.808712,-0.808712 +-0.797106,-0.797106,-0.797106,-0.797106,-0.797106,-0.797106 +-0.785525,-0.785525,-0.785525,-0.785525,-0.785525,-0.785525 +-0.773971,-0.773971,-0.773971,-0.773971,-0.773971,-0.773971 +-0.76245,-0.76245,-0.76245,-0.76245,-0.76245,-0.76245 +-0.750964,-0.750964,-0.750964,-0.750964,-0.750964,-0.750964 +-0.739517,-0.739517,-0.739517,-0.739517,-0.739517,-0.739517 +-0.728113,-0.728113,-0.728113,-0.728113,-0.728113,-0.728113 +-0.716756,-0.716756,-0.716756,-0.716756,-0.716756,-0.716756 +-0.70545,-0.70545,-0.70545,-0.70545,-0.70545,-0.70545 +-0.694198,-0.694198,-0.694198,-0.694198,-0.694198,-0.694198 +-0.683004,-0.683004,-0.683004,-0.683004,-0.683004,-0.683004 +-0.671872,-0.671872,-0.671872,-0.671872,-0.671872,-0.671872 +-0.660806,-0.660806,-0.660806,-0.660806,-0.660806,-0.660806 +-0.649809,-0.649809,-0.649809,-0.649809,-0.649809,-0.649809 +-0.638885,-0.638885,-0.638885,-0.638885,-0.638885,-0.638885 +-0.628038,-0.628038,-0.628038,-0.628038,-0.628038,-0.628038 +-0.617271,-0.617271,-0.617271,-0.617271,-0.617271,-0.617271 +-0.606589,-0.606589,-0.606589,-0.606589,-0.606589,-0.606589 +-0.595994,-0.595994,-0.595994,-0.595994,-0.595994,-0.595994 +-0.585492,-0.585492,-0.585492,-0.585492,-0.585492,-0.585492 +-0.575083,-0.575083,-0.575083,-0.575083,-0.575083,-0.575083 +-0.564768,-0.564768,-0.564768,-0.564768,-0.564768,-0.564768 +-0.554547,-0.554547,-0.554547,-0.554547,-0.554547,-0.554547 +-0.544419,-0.544419,-0.544419,-0.544419,-0.544419,-0.544419 +-0.534385,-0.534385,-0.534385,-0.534385,-0.534385,-0.534385 +-0.524445,-0.524445,-0.524445,-0.524445,-0.524445,-0.524445 +-0.514599,-0.514599,-0.514599,-0.514599,-0.514599,-0.514599 +-0.504846,-0.504846,-0.504846,-0.504846,-0.504846,-0.504846 +-0.495187,-0.495187,-0.495187,-0.495187,-0.495187,-0.495187 +-0.485622,-0.485622,-0.485622,-0.485622,-0.485622,-0.485622 +-0.476151,-0.476151,-0.476151,-0.476151,-0.476151,-0.476151 +-0.466773,-0.466773,-0.466773,-0.466773,-0.466773,-0.466773 +-0.457489,-0.457489,-0.457489,-0.457489,-0.457489,-0.457489 +-0.448299,-0.448299,-0.448299,-0.448299,-0.448299,-0.448299 +-0.439203,-0.439203,-0.439203,-0.439203,-0.439203,-0.439203 +-0.4302,-0.4302,-0.4302,-0.4302,-0.4302,-0.4302 +-0.421292,-0.421292,-0.421292,-0.421292,-0.421292,-0.421292 +-0.412476,-0.412476,-0.412476,-0.412476,-0.412476,-0.412476 +-0.403755,-0.403755,-0.403755,-0.403755,-0.403755,-0.403755 +-0.395128,-0.395128,-0.395128,-0.395128,-0.395128,-0.395128 +-0.386594,-0.386594,-0.386594,-0.386594,-0.386594,-0.386594 +-0.378154,-0.378154,-0.378154,-0.378154,-0.378154,-0.378154 +-0.369807,-0.369807,-0.369807,-0.369807,-0.369807,-0.369807 +-0.361555,-0.361555,-0.361555,-0.361555,-0.361555,-0.361555 +-0.353396,-0.353396,-0.353396,-0.353396,-0.353396,-0.353396 +-0.345331,-0.345331,-0.345331,-0.345331,-0.345331,-0.345331 +-0.337359,-0.337359,-0.337359,-0.337359,-0.337359,-0.337359 +-0.329482,-0.329482,-0.329482,-0.329482,-0.329482,-0.329482 +-0.321698,-0.321698,-0.321698,-0.321698,-0.321698,-0.321698 +-0.314008,-0.314008,-0.314008,-0.314008,-0.314008,-0.314008 +-0.306412,-0.306412,-0.306412,-0.306412,-0.306412,-0.306412 +-0.298909,-0.298909,-0.298909,-0.298909,-0.298909,-0.298909 +-0.2915,-0.2915,-0.2915,-0.2915,-0.2915,-0.2915 +-0.284185,-0.284185,-0.284185,-0.284185,-0.284185,-0.284185 +-0.276964,-0.276964,-0.276964,-0.276964,-0.276964,-0.276964 +-0.269836,-0.269836,-0.269836,-0.269836,-0.269836,-0.269836 +-0.262802,-0.262802,-0.262802,-0.262802,-0.262802,-0.262802 +-0.255862,-0.255862,-0.255862,-0.255862,-0.255862,-0.255862 +-0.249016,-0.249016,-0.249016,-0.249016,-0.249016,-0.249016 +-0.242263,-0.242263,-0.242263,-0.242263,-0.242263,-0.242263 +-0.235604,-0.235604,-0.235604,-0.235604,-0.235604,-0.235604 +-0.229039,-0.229039,-0.229039,-0.229039,-0.229039,-0.229039 +-0.222568,-0.222568,-0.222568,-0.222568,-0.222568,-0.222568 +-0.21619,-0.21619,-0.21619,-0.21619,-0.21619,-0.21619 +-0.209907,-0.209907,-0.209907,-0.209907,-0.209907,-0.209907 +-0.203716,-0.203716,-0.203716,-0.203716,-0.203716,-0.203716 +-0.19762,-0.19762,-0.19762,-0.19762,-0.19762,-0.19762 +-0.191618,-0.191618,-0.191618,-0.191618,-0.191618,-0.191618 +-0.185709,-0.185709,-0.185709,-0.185709,-0.185709,-0.185709 +-0.179894,-0.179894,-0.179894,-0.179894,-0.179894,-0.179894 +-0.174172,-0.174172,-0.174172,-0.174172,-0.174172,-0.174172 +-0.168545,-0.168545,-0.168545,-0.168545,-0.168545,-0.168545 +-0.163011,-0.163011,-0.163011,-0.163011,-0.163011,-0.163011 +-0.157571,-0.157571,-0.157571,-0.157571,-0.157571,-0.157571 +-0.152224,-0.152224,-0.152224,-0.152224,-0.152224,-0.152224 +-0.146972,-0.146972,-0.146972,-0.146972,-0.146972,-0.146972 +-0.141813,-0.141813,-0.141813,-0.141813,-0.141813,-0.141813 +-0.136748,-0.136748,-0.136748,-0.136748,-0.136748,-0.136748 +-0.131777,-0.131777,-0.131777,-0.131777,-0.131777,-0.131777 +-0.126899,-0.126899,-0.126899,-0.126899,-0.126899,-0.126899 +-0.122115,-0.122115,-0.122115,-0.122115,-0.122115,-0.122115 +-0.117425,-0.117425,-0.117425,-0.117425,-0.117425,-0.117425 +-0.112829,-0.112829,-0.112829,-0.112829,-0.112829,-0.112829 +-0.108326,-0.108326,-0.108326,-0.108326,-0.108326,-0.108326 +-0.103917,-0.103917,-0.103917,-0.103917,-0.103917,-0.103917 +-0.099602,-0.099602,-0.099602,-0.099602,-0.099602,-0.099602 +-0.095381,-0.095381,-0.095381,-0.095381,-0.095381,-0.095381 +-0.091253,-0.091253,-0.091253,-0.091253,-0.091253,-0.091253 +-0.087219,-0.087219,-0.087219,-0.087219,-0.087219,-0.087219 +-0.083279,-0.083279,-0.083279,-0.083279,-0.083279,-0.083279 +-0.079433,-0.079433,-0.079433,-0.079433,-0.079433,-0.079433 +-0.07568,-0.07568,-0.07568,-0.07568,-0.07568,-0.07568 +-0.072022,-0.072022,-0.072022,-0.072022,-0.072022,-0.072022 +-0.068456,-0.068456,-0.068456,-0.068456,-0.068456,-0.068456 +-0.064985,-0.064985,-0.064985,-0.064985,-0.064985,-0.064985 +-0.061608,-0.061608,-0.061608,-0.061608,-0.061608,-0.061608 +-0.058324,-0.058324,-0.058324,-0.058324,-0.058324,-0.058324 +-0.055134,-0.055134,-0.055134,-0.055134,-0.055134,-0.055134 +-0.052037,-0.052037,-0.052037,-0.052037,-0.052037,-0.052037 +-0.049035,-0.049035,-0.049035,-0.049035,-0.049035,-0.049035 +-0.046126,-0.046126,-0.046126,-0.046126,-0.046126,-0.046126 +-0.043311,-0.043311,-0.043311,-0.043311,-0.043311,-0.043311 +-0.040589,-0.040589,-0.040589,-0.040589,-0.040589,-0.040589 +-0.037962,-0.037962,-0.037962,-0.037962,-0.037962,-0.037962 +-0.035428,-0.035428,-0.035428,-0.035428,-0.035428,-0.035428 +-0.032988,-0.032988,-0.032988,-0.032988,-0.032988,-0.032988 +-0.030642,-0.030642,-0.030642,-0.030642,-0.030642,-0.030642 +-0.028389,-0.028389,-0.028389,-0.028389,-0.028389,-0.028389 +-0.02623,-0.02623,-0.02623,-0.02623,-0.02623,-0.02623 +-0.024165,-0.024165,-0.024165,-0.024165,-0.024165,-0.024165 +-0.022194,-0.022194,-0.022194,-0.022194,-0.022194,-0.022194 +-0.020316,-0.020316,-0.020316,-0.020316,-0.020316,-0.020316 +-0.018532,-0.018532,-0.018532,-0.018532,-0.018532,-0.018532 +-0.016842,-0.016842,-0.016842,-0.016842,-0.016842,-0.016842 +-0.015246,-0.015246,-0.015246,-0.015246,-0.015246,-0.015246 +-0.013743,-0.013743,-0.013743,-0.013743,-0.013743,-0.013743 +-0.012334,-0.012334,-0.012334,-0.012334,-0.012334,-0.012334 +-0.011019,-0.011019,-0.011019,-0.011019,-0.011019,-0.011019 +-0.009798,-0.009798,-0.009798,-0.009798,-0.009798,-0.009798 +-0.00867,-0.00867,-0.00867,-0.00867,-0.00867,-0.00867 +-0.007632,-0.007632,-0.007632,-0.007632,-0.007632,-0.007632 +-0.00668,-0.00668,-0.00668,-0.00668,-0.00668,-0.00668 +-0.005811,-0.005811,-0.005811,-0.005811,-0.005811,-0.005811 +-0.005021,-0.005021,-0.005021,-0.005021,-0.005021,-0.005021 +-0.004306,-0.004306,-0.004306,-0.004306,-0.004306,-0.004306 +-0.003662,-0.003662,-0.003662,-0.003662,-0.003662,-0.003662 +-0.003086,-0.003086,-0.003086,-0.003086,-0.003086,-0.003086 +-0.002573,-0.002573,-0.002573,-0.002573,-0.002573,-0.002573 +-0.002121,-0.002121,-0.002121,-0.002121,-0.002121,-0.002121 +-0.001725,-0.001725,-0.001725,-0.001725,-0.001725,-0.001725 +-0.001382,-0.001382,-0.001382,-0.001382,-0.001382,-0.001382 +-0.001087,-0.001087,-0.001087,-0.001087,-0.001087,-0.001087 +-0.000838,-0.000838,-0.000838,-0.000838,-0.000838,-0.000838 +-0.00063,-0.00063,-0.00063,-0.00063,-0.00063,-0.00063 +-0.00046,-0.00046,-0.00046,-0.00046,-0.00046,-0.00046 +-0.000323,-0.000323,-0.000323,-0.000323,-0.000323,-0.000323 +-0.000217,-0.000217,-0.000217,-0.000217,-0.000217,-0.000217 +-0.000137,-0.000137,-0.000137,-0.000137,-0.000137,-0.000137 +-0.000079,-0.000079,-0.000079,-0.000079,-0.000079,-0.000079 +-0.000041,-0.000041,-0.000041,-0.000041,-0.000041,-0.000041 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.000005,-0.000005,-0.000005,-0.000005,-0.000005,-0.000005 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000006,0.000006,0.000006,0.000006,0.000006,0.000006 +0.000019,0.000019,0.000019,0.000019,0.000019,0.000019 +0.000045,0.000045,0.000045,0.000045,0.000045,0.000045 +0.000089,0.000089,0.000089,0.000089,0.000089,0.000089 +0.000153,0.000153,0.000153,0.000153,0.000153,0.000153 +0.000243,0.000243,0.000243,0.000243,0.000243,0.000243 +0.000363,0.000363,0.000363,0.000363,0.000363,0.000363 +0.000516,0.000516,0.000516,0.000516,0.000516,0.000516 +0.000708,0.000708,0.000708,0.000708,0.000708,0.000708 +0.000943,0.000943,0.000943,0.000943,0.000943,0.000943 +0.001224,0.001224,0.001224,0.001224,0.001224,0.001224 +0.001556,0.001556,0.001556,0.001556,0.001556,0.001556 +0.001944,0.001944,0.001944,0.001944,0.001944,0.001944 +0.002391,0.002391,0.002391,0.002391,0.002391,0.002391 +0.002901,0.002901,0.002901,0.002901,0.002901,0.002901 +0.00348,0.00348,0.00348,0.00348,0.00348,0.00348 +0.004131,0.004131,0.004131,0.004131,0.004131,0.004131 +0.004858,0.004858,0.004858,0.004858,0.004858,0.004858 +0.005667,0.005667,0.005667,0.005667,0.005667,0.005667 +0.00656,0.00656,0.00656,0.00656,0.00656,0.00656 +0.007542,0.007542,0.007542,0.007542,0.007542,0.007542 +0.008618,0.008618,0.008618,0.008618,0.008618,0.008618 +0.009792,0.009792,0.009792,0.009792,0.009792,0.009792 +0.011068,0.011068,0.011068,0.011068,0.011068,0.011068 +0.012449,0.012449,0.012449,0.012449,0.012449,0.012449 +0.013936,0.013936,0.013936,0.013936,0.013936,0.013936 +0.01553,0.01553,0.01553,0.01553,0.01553,0.01553 +0.01723,0.01723,0.01723,0.01723,0.01723,0.01723 +0.019036,0.019036,0.019036,0.019036,0.019036,0.019036 +0.020949,0.020949,0.020949,0.020949,0.020949,0.020949 +0.022968,0.022968,0.022968,0.022968,0.022968,0.022968 +0.025093,0.025093,0.025093,0.025093,0.025093,0.025093 +0.027324,0.027324,0.027324,0.027324,0.027324,0.027324 +0.029661,0.029661,0.029661,0.029661,0.029661,0.029661 +0.032105,0.032105,0.032105,0.032105,0.032105,0.032105 +0.034655,0.034655,0.034655,0.034655,0.034655,0.034655 +0.037311,0.037311,0.037311,0.037311,0.037311,0.037311 +0.040074,0.040074,0.040074,0.040074,0.040074,0.040074 +0.042943,0.042943,0.042943,0.042943,0.042943,0.042943 +0.045918,0.045918,0.045918,0.045918,0.045918,0.045918 +0.048999,0.048999,0.048999,0.048999,0.048999,0.048999 +0.052186,0.052186,0.052186,0.052186,0.052186,0.052186 +0.05548,0.05548,0.05548,0.05548,0.05548,0.05548 +0.05888,0.05888,0.05888,0.05888,0.05888,0.05888 +0.062386,0.062386,0.062386,0.062386,0.062386,0.062386 +0.065999,0.065999,0.065999,0.065999,0.065999,0.065999 +0.069718,0.069718,0.069718,0.069718,0.069718,0.069718 +0.073543,0.073543,0.073543,0.073543,0.073543,0.073543 +0.077474,0.077474,0.077474,0.077474,0.077474,0.077474 +0.081511,0.081511,0.081511,0.081511,0.081511,0.081511 +0.085655,0.085655,0.085655,0.085655,0.085655,0.085655 +0.089905,0.089905,0.089905,0.089905,0.089905,0.089905 +0.094261,0.094261,0.094261,0.094261,0.094261,0.094261 +0.098724,0.098724,0.098724,0.098724,0.098724,0.098724 +0.103293,0.103293,0.103293,0.103293,0.103293,0.103293 +0.107968,0.107968,0.107968,0.107968,0.107968,0.107968 +0.112749,0.112749,0.112749,0.112749,0.112749,0.112749 +0.117636,0.117636,0.117636,0.117636,0.117636,0.117636 +0.12263,0.12263,0.12263,0.12263,0.12263,0.12263 +0.12773,0.12773,0.12773,0.12773,0.12773,0.12773 +0.132936,0.132936,0.132936,0.132936,0.132936,0.132936 +0.138249,0.138249,0.138249,0.138249,0.138249,0.138249 +0.143668,0.143668,0.143668,0.143668,0.143668,0.143668 +0.149193,0.149193,0.149193,0.149193,0.149193,0.149193 +0.154824,0.154824,0.154824,0.154824,0.154824,0.154824 +0.160561,0.160561,0.160561,0.160561,0.160561,0.160561 +0.166405,0.166405,0.166405,0.166405,0.166405,0.166405 +0.172355,0.172355,0.172355,0.172355,0.172355,0.172355 +0.178411,0.178411,0.178411,0.178411,0.178411,0.178411 +0.184574,0.184574,0.184574,0.184574,0.184574,0.184574 +0.190843,0.190843,0.190843,0.190843,0.190843,0.190843 +0.197218,0.197218,0.197218,0.197218,0.197218,0.197218 +0.203699,0.203699,0.203699,0.203699,0.203699,0.203699 +0.210286,0.210286,0.210286,0.210286,0.210286,0.210286 +0.21698,0.21698,0.21698,0.21698,0.21698,0.21698 +0.22378,0.22378,0.22378,0.22378,0.22378,0.22378 +0.230686,0.230686,0.230686,0.230686,0.230686,0.230686 +0.237699,0.237699,0.237699,0.237699,0.237699,0.237699 +0.244818,0.244818,0.244818,0.244818,0.244818,0.244818 +0.252043,0.252043,0.252043,0.252043,0.252043,0.252043 +0.259374,0.259374,0.259374,0.259374,0.259374,0.259374 +0.266811,0.266811,0.266811,0.266811,0.266811,0.266811 +0.274355,0.274355,0.274355,0.274355,0.274355,0.274355 +0.282005,0.282005,0.282005,0.282005,0.282005,0.282005 +0.289761,0.289761,0.289761,0.289761,0.289761,0.289761 +0.297624,0.297624,0.297624,0.297624,0.297624,0.297624 +0.305593,0.305593,0.305593,0.305593,0.305593,0.305593 +0.313668,0.313668,0.313668,0.313668,0.313668,0.313668 +0.321849,0.321849,0.321849,0.321849,0.321849,0.321849 +0.330136,0.330136,0.330136,0.330136,0.330136,0.330136 +0.33853,0.33853,0.33853,0.33853,0.33853,0.33853 +0.34703,0.34703,0.34703,0.34703,0.34703,0.34703 +0.355636,0.355636,0.355636,0.355636,0.355636,0.355636 +0.364349,0.364349,0.364349,0.364349,0.364349,0.364349 +0.373168,0.373168,0.373168,0.373168,0.373168,0.373168 +0.382093,0.382093,0.382093,0.382093,0.382093,0.382093 +0.391124,0.391124,0.391124,0.391124,0.391124,0.391124 +0.400261,0.400261,0.400261,0.400261,0.400261,0.400261 +0.409505,0.409505,0.409505,0.409505,0.409505,0.409505 +0.418855,0.418855,0.418855,0.418855,0.418855,0.418855 +0.428311,0.428311,0.428311,0.428311,0.428311,0.428311 +0.437874,0.437874,0.437874,0.437874,0.437874,0.437874 +0.447543,0.447543,0.447543,0.447543,0.447543,0.447543 +0.457318,0.457318,0.457318,0.457318,0.457318,0.457318 +0.467199,0.467199,0.467199,0.467199,0.467199,0.467199 +0.477186,0.477186,0.477186,0.477186,0.477186,0.477186 +0.48728,0.48728,0.48728,0.48728,0.48728,0.48728 +0.49748,0.49748,0.49748,0.49748,0.49748,0.49748 +0.507786,0.507786,0.507786,0.507786,0.507786,0.507786 +0.518199,0.518199,0.518199,0.518199,0.518199,0.518199 +0.528718,0.528718,0.528718,0.528718,0.528718,0.528718 +0.539343,0.539343,0.539343,0.539343,0.539343,0.539343 +0.550074,0.550074,0.550074,0.550074,0.550074,0.550074 +0.560911,0.560911,0.560911,0.560911,0.560911,0.560911 +0.571855,0.571855,0.571855,0.571855,0.571855,0.571855 +0.582905,0.582905,0.582905,0.582905,0.582905,0.582905 +0.594058,0.594058,0.594058,0.594058,0.594058,0.594058 +0.60531,0.60531,0.60531,0.60531,0.60531,0.60531 +0.616656,0.616656,0.616656,0.616656,0.616656,0.616656 +0.628093,0.628093,0.628093,0.628093,0.628093,0.628093 +0.639616,0.639616,0.639616,0.639616,0.639616,0.639616 +0.651221,0.651221,0.651221,0.651221,0.651221,0.651221 +0.662903,0.662903,0.662903,0.662903,0.662903,0.662903 +0.674659,0.674659,0.674659,0.674659,0.674659,0.674659 +0.686485,0.686485,0.686485,0.686485,0.686485,0.686485 +0.698375,0.698375,0.698375,0.698375,0.698375,0.698375 +0.710325,0.710325,0.710325,0.710325,0.710325,0.710325 +0.722333,0.722333,0.722333,0.722333,0.722333,0.722333 +0.734392,0.734392,0.734392,0.734392,0.734392,0.734392 +0.746499,0.746499,0.746499,0.746499,0.746499,0.746499 +0.75865,0.75865,0.75865,0.75865,0.75865,0.75865 +0.77084,0.77084,0.77084,0.77084,0.77084,0.77084 +0.783066,0.783066,0.783066,0.783066,0.783066,0.783066 +0.795322,0.795322,0.795322,0.795322,0.795322,0.795322 +0.807605,0.807605,0.807605,0.807605,0.807605,0.807605 +0.819911,0.819911,0.819911,0.819911,0.819911,0.819911 +0.832234,0.832234,0.832234,0.832234,0.832234,0.832234 +0.844572,0.844572,0.844572,0.844572,0.844572,0.844572 +0.856919,0.856919,0.856919,0.856919,0.856919,0.856919 +0.869272,0.869272,0.869272,0.869272,0.869272,0.869272 +0.881625,0.881625,0.881625,0.881625,0.881625,0.881625 +0.893976,0.893976,0.893976,0.893976,0.893976,0.893976 +0.90632,0.90632,0.90632,0.90632,0.90632,0.90632 +0.918651,0.918651,0.918651,0.918651,0.918651,0.918651 +0.930967,0.930967,0.930967,0.930967,0.930967,0.930967 +0.943263,0.943263,0.943263,0.943263,0.943263,0.943263 +0.955535,0.955535,0.955535,0.955535,0.955535,0.955535 +0.967777,0.967777,0.967777,0.967777,0.967777,0.967777 +0.979987,0.979987,0.979987,0.979987,0.979987,0.979987 +0.99216,0.99216,0.99216,0.99216,0.99216,0.99216 +1.004292,1.004292,1.004292,1.004292,1.004292,1.004292 +1.016378,1.016378,1.016378,1.016378,1.016378,1.016378 +1.028414,1.028414,1.028414,1.028414,1.028414,1.028414 +1.040396,1.040396,1.040396,1.040396,1.040396,1.040396 +1.05232,1.05232,1.05232,1.05232,1.05232,1.05232 +1.064181,1.064181,1.064181,1.064181,1.064181,1.064181 +1.075976,1.075976,1.075976,1.075976,1.075976,1.075976 +1.087699,1.087699,1.087699,1.087699,1.087699,1.087699 +1.099347,1.099347,1.099347,1.099347,1.099347,1.099347 +1.110915,1.110915,1.110915,1.110915,1.110915,1.110915 +1.1224,1.1224,1.1224,1.1224,1.1224,1.1224 +1.133796,1.133796,1.133796,1.133796,1.133796,1.133796 +1.1451,1.1451,1.1451,1.1451,1.1451,1.1451 +1.156308,1.156308,1.156308,1.156308,1.156308,1.156308 +1.167415,1.167415,1.167415,1.167415,1.167415,1.167415 +1.178416,1.178416,1.178416,1.178416,1.178416,1.178416 +1.189312,1.189312,1.189312,1.189312,1.189312,1.189312 +1.200101,1.200101,1.200101,1.200101,1.200101,1.200101 +1.210785,1.210785,1.210785,1.210785,1.210785,1.210785 +1.221361,1.221361,1.221361,1.221361,1.221361,1.221361 +1.231832,1.231832,1.231832,1.231832,1.231832,1.231832 +1.242196,1.242196,1.242196,1.242196,1.242196,1.242196 +1.252454,1.252454,1.252454,1.252454,1.252454,1.252454 +1.262606,1.262606,1.262606,1.262606,1.262606,1.262606 +1.272652,1.272652,1.272652,1.272652,1.272652,1.272652 +1.282591,1.282591,1.282591,1.282591,1.282591,1.282591 +1.292424,1.292424,1.292424,1.292424,1.292424,1.292424 +1.302151,1.302151,1.302151,1.302151,1.302151,1.302151 +1.311772,1.311772,1.311772,1.311772,1.311772,1.311772 +1.321286,1.321286,1.321286,1.321286,1.321286,1.321286 +1.330694,1.330694,1.330694,1.330694,1.330694,1.330694 +1.339996,1.339996,1.339996,1.339996,1.339996,1.339996 +1.349192,1.349192,1.349192,1.349192,1.349192,1.349192 +1.358281,1.358281,1.358281,1.358281,1.358281,1.358281 +1.367264,1.367264,1.367264,1.367264,1.367264,1.367264 +1.376141,1.376141,1.376141,1.376141,1.376141,1.376141 +1.384912,1.384912,1.384912,1.384912,1.384912,1.384912 +1.393576,1.393576,1.393576,1.393576,1.393576,1.393576 +1.402134,1.402134,1.402134,1.402134,1.402134,1.402134 +1.410586,1.410586,1.410586,1.410586,1.410586,1.410586 +1.418932,1.418932,1.418932,1.418932,1.418932,1.418932 +1.427171,1.427171,1.427171,1.427171,1.427171,1.427171 +1.435304,1.435304,1.435304,1.435304,1.435304,1.435304 +1.443331,1.443331,1.443331,1.443331,1.443331,1.443331 +1.451252,1.451252,1.451252,1.451252,1.451252,1.451252 +1.459066,1.459066,1.459066,1.459066,1.459066,1.459066 +1.466774,1.466774,1.466774,1.466774,1.466774,1.466774 +1.474376,1.474376,1.474376,1.474376,1.474376,1.474376 +1.481872,1.481872,1.481872,1.481872,1.481872,1.481872 +1.489261,1.489261,1.489261,1.489261,1.489261,1.489261 +1.496544,1.496544,1.496544,1.496544,1.496544,1.496544 +1.503721,1.503721,1.503721,1.503721,1.503721,1.503721 +1.510791,1.510791,1.510791,1.510791,1.510791,1.510791 +1.517756,1.517756,1.517756,1.517756,1.517756,1.517756 +1.524614,1.524614,1.524614,1.524614,1.524614,1.524614 +1.531366,1.531366,1.531366,1.531366,1.531366,1.531366 +1.538011,1.538011,1.538011,1.538011,1.538011,1.538011 +1.544551,1.544551,1.544551,1.544551,1.544551,1.544551 +1.550984,1.550984,1.550984,1.550984,1.550984,1.550984 +1.557311,1.557311,1.557311,1.557311,1.557311,1.557311 +1.563531,1.563531,1.563531,1.563531,1.563531,1.563531 +1.569646,1.569646,1.569646,1.569646,1.569646,1.569646 +1.575654,1.575654,1.575654,1.575654,1.575654,1.575654 +1.581556,1.581556,1.581556,1.581556,1.581556,1.581556 +1.587351,1.587351,1.587351,1.587351,1.587351,1.587351 +1.593041,1.593041,1.593041,1.593041,1.593041,1.593041 +1.598624,1.598624,1.598624,1.598624,1.598624,1.598624 +1.604101,1.604101,1.604101,1.604101,1.604101,1.604101 +1.609471,1.609471,1.609471,1.609471,1.609471,1.609471 +1.614736,1.614736,1.614736,1.614736,1.614736,1.614736 +1.619894,1.619894,1.619894,1.619894,1.619894,1.619894 +1.624946,1.624946,1.624946,1.624946,1.624946,1.624946 +1.629891,1.629891,1.629891,1.629891,1.629891,1.629891 +1.634731,1.634731,1.634731,1.634731,1.634731,1.634731 +1.639464,1.639464,1.639464,1.639464,1.639464,1.639464 +1.644091,1.644091,1.644091,1.644091,1.644091,1.644091 +1.648611,1.648611,1.648611,1.648611,1.648611,1.648611 +1.653025,1.653025,1.653025,1.653025,1.653025,1.653025 +1.657334,1.657334,1.657334,1.657334,1.657334,1.657334 +1.661535,1.661535,1.661535,1.661535,1.661535,1.661535 +1.665631,1.665631,1.665631,1.665631,1.665631,1.665631 +1.66962,1.66962,1.66962,1.66962,1.66962,1.66962 +1.673504,1.673504,1.673504,1.673504,1.673504,1.673504 +1.67728,1.67728,1.67728,1.67728,1.67728,1.67728 +1.680951,1.680951,1.680951,1.680951,1.680951,1.680951 +1.684515,1.684515,1.684515,1.684515,1.684515,1.684515 +1.687973,1.687973,1.687973,1.687973,1.687973,1.687973 +1.691325,1.691325,1.691325,1.691325,1.691325,1.691325 +1.694571,1.694571,1.694571,1.694571,1.694571,1.694571 +1.69771,1.69771,1.69771,1.69771,1.69771,1.69771 +1.700743,1.700743,1.700743,1.700743,1.700743,1.700743 +1.70367,1.70367,1.70367,1.70367,1.70367,1.70367 +1.706491,1.706491,1.706491,1.706491,1.706491,1.706491 +1.709205,1.709205,1.709205,1.709205,1.709205,1.709205 +1.711813,1.711813,1.711813,1.711813,1.711813,1.711813 +1.714315,1.714315,1.714315,1.714315,1.714315,1.714315 +1.716711,1.716711,1.716711,1.716711,1.716711,1.716711 +1.719,1.719,1.719,1.719,1.719,1.719 +1.721183,1.721183,1.721183,1.721183,1.721183,1.721183 +1.72326,1.72326,1.72326,1.72326,1.72326,1.72326 +1.725231,1.725231,1.725231,1.725231,1.725231,1.725231 +1.727095,1.727095,1.727095,1.727095,1.727095,1.727095 +1.728853,1.728853,1.728853,1.728853,1.728853,1.728853 +1.730505,1.730505,1.730505,1.730505,1.730505,1.730505 +1.732051,1.732051,1.732051,1.732051,1.732051,1.732051 +1.73349,1.73349,1.73349,1.73349,1.73349,1.73349 +1.734823,1.734823,1.734823,1.734823,1.734823,1.734823 +1.736052,1.736052,1.736052,1.736052,1.736052,1.736052 +1.737181,1.737181,1.737181,1.737181,1.737181,1.737181 +1.738214,1.738214,1.738214,1.738214,1.738214,1.738214 +1.739156,1.739156,1.739156,1.739156,1.739156,1.739156 +1.74001,1.74001,1.74001,1.74001,1.74001,1.74001 +1.740781,1.740781,1.740781,1.740781,1.740781,1.740781 +1.741473,1.741473,1.741473,1.741473,1.741473,1.741473 +1.742091,1.742091,1.742091,1.742091,1.742091,1.742091 +1.742638,1.742638,1.742638,1.742638,1.742638,1.742638 +1.74312,1.74312,1.74312,1.74312,1.74312,1.74312 +1.743539,1.743539,1.743539,1.743539,1.743539,1.743539 +1.743901,1.743901,1.743901,1.743901,1.743901,1.743901 +1.744209,1.744209,1.744209,1.744209,1.744209,1.744209 +1.744469,1.744469,1.744469,1.744469,1.744469,1.744469 +1.744684,1.744684,1.744684,1.744684,1.744684,1.744684 +1.744858,1.744858,1.744858,1.744858,1.744858,1.744858 +1.744996,1.744996,1.744996,1.744996,1.744996,1.744996 +1.745101,1.745101,1.745101,1.745101,1.745101,1.745101 +1.745179,1.745179,1.745179,1.745179,1.745179,1.745179 +1.745233,1.745233,1.745233,1.745233,1.745233,1.745233 +1.745268,1.745268,1.745268,1.745268,1.745268,1.745268 +1.745288,1.745288,1.745288,1.745288,1.745288,1.745288 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745294,1.745294,1.745294,1.745294,1.745294,1.745294 +1.745281,1.745281,1.745281,1.745281,1.745281,1.745281 +1.745255,1.745255,1.745255,1.745255,1.745255,1.745255 +1.745211,1.745211,1.745211,1.745211,1.745211,1.745211 +1.745147,1.745147,1.745147,1.745147,1.745147,1.745147 +1.745057,1.745057,1.745057,1.745057,1.745057,1.745057 +1.744937,1.744937,1.744937,1.744937,1.744937,1.744937 +1.744784,1.744784,1.744784,1.744784,1.744784,1.744784 +1.744592,1.744592,1.744592,1.744592,1.744592,1.744592 +1.744357,1.744357,1.744357,1.744357,1.744357,1.744357 +1.744076,1.744076,1.744076,1.744076,1.744076,1.744076 +1.743744,1.743744,1.743744,1.743744,1.743744,1.743744 +1.743356,1.743356,1.743356,1.743356,1.743356,1.743356 +1.742909,1.742909,1.742909,1.742909,1.742909,1.742909 +1.742399,1.742399,1.742399,1.742399,1.742399,1.742399 +1.74182,1.74182,1.74182,1.74182,1.74182,1.74182 +1.741169,1.741169,1.741169,1.741169,1.741169,1.741169 +1.740442,1.740442,1.740442,1.740442,1.740442,1.740442 +1.739633,1.739633,1.739633,1.739633,1.739633,1.739633 +1.73874,1.73874,1.73874,1.73874,1.73874,1.73874 +1.737758,1.737758,1.737758,1.737758,1.737758,1.737758 +1.736682,1.736682,1.736682,1.736682,1.736682,1.736682 +1.735508,1.735508,1.735508,1.735508,1.735508,1.735508 +1.734232,1.734232,1.734232,1.734232,1.734232,1.734232 +1.732851,1.732851,1.732851,1.732851,1.732851,1.732851 +1.731364,1.731364,1.731364,1.731364,1.731364,1.731364 +1.72977,1.72977,1.72977,1.72977,1.72977,1.72977 +1.72807,1.72807,1.72807,1.72807,1.72807,1.72807 +1.726264,1.726264,1.726264,1.726264,1.726264,1.726264 +1.724351,1.724351,1.724351,1.724351,1.724351,1.724351 +1.722332,1.722332,1.722332,1.722332,1.722332,1.722332 +1.720207,1.720207,1.720207,1.720207,1.720207,1.720207 +1.717976,1.717976,1.717976,1.717976,1.717976,1.717976 +1.715639,1.715639,1.715639,1.715639,1.715639,1.715639 +1.713195,1.713195,1.713195,1.713195,1.713195,1.713195 +1.710645,1.710645,1.710645,1.710645,1.710645,1.710645 +1.707989,1.707989,1.707989,1.707989,1.707989,1.707989 +1.705226,1.705226,1.705226,1.705226,1.705226,1.705226 +1.702357,1.702357,1.702357,1.702357,1.702357,1.702357 +1.699382,1.699382,1.699382,1.699382,1.699382,1.699382 +1.696301,1.696301,1.696301,1.696301,1.696301,1.696301 +1.693114,1.693114,1.693114,1.693114,1.693114,1.693114 +1.68982,1.68982,1.68982,1.68982,1.68982,1.68982 +1.68642,1.68642,1.68642,1.68642,1.68642,1.68642 +1.682914,1.682914,1.682914,1.682914,1.682914,1.682914 +1.679301,1.679301,1.679301,1.679301,1.679301,1.679301 +1.675582,1.675582,1.675582,1.675582,1.675582,1.675582 +1.671757,1.671757,1.671757,1.671757,1.671757,1.671757 +1.667826,1.667826,1.667826,1.667826,1.667826,1.667826 +1.663789,1.663789,1.663789,1.663789,1.663789,1.663789 +1.659645,1.659645,1.659645,1.659645,1.659645,1.659645 +1.655395,1.655395,1.655395,1.655395,1.655395,1.655395 +1.651039,1.651039,1.651039,1.651039,1.651039,1.651039 +1.646576,1.646576,1.646576,1.646576,1.646576,1.646576 +1.642007,1.642007,1.642007,1.642007,1.642007,1.642007 +1.637332,1.637332,1.637332,1.637332,1.637332,1.637332 +1.632551,1.632551,1.632551,1.632551,1.632551,1.632551 +1.627664,1.627664,1.627664,1.627664,1.627664,1.627664 +1.62267,1.62267,1.62267,1.62267,1.62267,1.62267 +1.61757,1.61757,1.61757,1.61757,1.61757,1.61757 +1.612364,1.612364,1.612364,1.612364,1.612364,1.612364 +1.607051,1.607051,1.607051,1.607051,1.607051,1.607051 +1.601632,1.601632,1.601632,1.601632,1.601632,1.601632 +1.596107,1.596107,1.596107,1.596107,1.596107,1.596107 +1.590476,1.590476,1.590476,1.590476,1.590476,1.590476 +1.584739,1.584739,1.584739,1.584739,1.584739,1.584739 +1.578895,1.578895,1.578895,1.578895,1.578895,1.578895 +1.572945,1.572945,1.572945,1.572945,1.572945,1.572945 +1.566889,1.566889,1.566889,1.566889,1.566889,1.566889 +1.560726,1.560726,1.560726,1.560726,1.560726,1.560726 +1.554457,1.554457,1.554457,1.554457,1.554457,1.554457 +1.548082,1.548082,1.548082,1.548082,1.548082,1.548082 +1.541601,1.541601,1.541601,1.541601,1.541601,1.541601 +1.535014,1.535014,1.535014,1.535014,1.535014,1.535014 +1.52832,1.52832,1.52832,1.52832,1.52832,1.52832 +1.52152,1.52152,1.52152,1.52152,1.52152,1.52152 +1.514614,1.514614,1.514614,1.514614,1.514614,1.514614 +1.507601,1.507601,1.507601,1.507601,1.507601,1.507601 +1.500482,1.500482,1.500482,1.500482,1.500482,1.500482 +1.493257,1.493257,1.493257,1.493257,1.493257,1.493257 +1.485926,1.485926,1.485926,1.485926,1.485926,1.485926 +1.478489,1.478489,1.478489,1.478489,1.478489,1.478489 +1.470945,1.470945,1.470945,1.470945,1.470945,1.470945 +1.463295,1.463295,1.463295,1.463295,1.463295,1.463295 +1.455539,1.455539,1.455539,1.455539,1.455539,1.455539 +1.447676,1.447676,1.447676,1.447676,1.447676,1.447676 +1.439707,1.439707,1.439707,1.439707,1.439707,1.439707 +1.431632,1.431632,1.431632,1.431632,1.431632,1.431632 +1.423451,1.423451,1.423451,1.423451,1.423451,1.423451 +1.415164,1.415164,1.415164,1.415164,1.415164,1.415164 +1.40677,1.40677,1.40677,1.40677,1.40677,1.40677 +1.39827,1.39827,1.39827,1.39827,1.39827,1.39827 +1.389664,1.389664,1.389664,1.389664,1.389664,1.389664 +1.380951,1.380951,1.380951,1.380951,1.380951,1.380951 +1.372132,1.372132,1.372132,1.372132,1.372132,1.372132 +1.363207,1.363207,1.363207,1.363207,1.363207,1.363207 +1.354176,1.354176,1.354176,1.354176,1.354176,1.354176 +1.345039,1.345039,1.345039,1.345039,1.345039,1.345039 +1.335795,1.335795,1.335795,1.335795,1.335795,1.335795 +1.326445,1.326445,1.326445,1.326445,1.326445,1.326445 +1.316989,1.316989,1.316989,1.316989,1.316989,1.316989 +1.307426,1.307426,1.307426,1.307426,1.307426,1.307426 +1.297757,1.297757,1.297757,1.297757,1.297757,1.297757 +1.287982,1.287982,1.287982,1.287982,1.287982,1.287982 +1.278101,1.278101,1.278101,1.278101,1.278101,1.278101 +1.268114,1.268114,1.268114,1.268114,1.268114,1.268114 +1.25802,1.25802,1.25802,1.25802,1.25802,1.25802 +1.24782,1.24782,1.24782,1.24782,1.24782,1.24782 +1.237514,1.237514,1.237514,1.237514,1.237514,1.237514 +1.227101,1.227101,1.227101,1.227101,1.227101,1.227101 +1.216582,1.216582,1.216582,1.216582,1.216582,1.216582 +1.205957,1.205957,1.205957,1.205957,1.205957,1.205957 +1.195226,1.195226,1.195226,1.195226,1.195226,1.195226 +1.184389,1.184389,1.184389,1.184389,1.184389,1.184389 +1.173445,1.173445,1.173445,1.173445,1.173445,1.173445 +1.162395,1.162395,1.162395,1.162395,1.162395,1.162395 +1.151242,1.151242,1.151242,1.151242,1.151242,1.151242 +1.13999,1.13999,1.13999,1.13999,1.13999,1.13999 +1.128644,1.128644,1.128644,1.128644,1.128644,1.128644 +1.117207,1.117207,1.117207,1.117207,1.117207,1.117207 +1.105684,1.105684,1.105684,1.105684,1.105684,1.105684 +1.094079,1.094079,1.094079,1.094079,1.094079,1.094079 +1.082397,1.082397,1.082397,1.082397,1.082397,1.082397 +1.070641,1.070641,1.070641,1.070641,1.070641,1.070641 +1.058815,1.058815,1.058815,1.058815,1.058815,1.058815 +1.046925,1.046925,1.046925,1.046925,1.046925,1.046925 +1.034975,1.034975,1.034975,1.034975,1.034975,1.034975 +1.022967,1.022967,1.022967,1.022967,1.022967,1.022967 +1.010908,1.010908,1.010908,1.010908,1.010908,1.010908 +0.998801,0.998801,0.998801,0.998801,0.998801,0.998801 +0.98665,0.98665,0.98665,0.98665,0.98665,0.98665 +0.97446,0.97446,0.97446,0.97446,0.97446,0.97446 +0.962234,0.962234,0.962234,0.962234,0.962234,0.962234 +0.949978,0.949978,0.949978,0.949978,0.949978,0.949978 +0.937695,0.937695,0.937695,0.937695,0.937695,0.937695 +0.925389,0.925389,0.925389,0.925389,0.925389,0.925389 +0.913066,0.913066,0.913066,0.913066,0.913066,0.913066 +0.900728,0.900728,0.900728,0.900728,0.900728,0.900728 +0.888381,0.888381,0.888381,0.888381,0.888381,0.888381 +0.876028,0.876028,0.876028,0.876028,0.876028,0.876028 +0.863675,0.863675,0.863675,0.863675,0.863675,0.863675 +0.851324,0.851324,0.851324,0.851324,0.851324,0.851324 +0.83898,0.83898,0.83898,0.83898,0.83898,0.83898 +0.826649,0.826649,0.826649,0.826649,0.826649,0.826649 +0.814333,0.814333,0.814333,0.814333,0.814333,0.814333 +0.802037,0.802037,0.802037,0.802037,0.802037,0.802037 +0.789765,0.789765,0.789765,0.789765,0.789765,0.789765 +0.777523,0.777523,0.777523,0.777523,0.777523,0.777523 +0.765313,0.765313,0.765313,0.765313,0.765313,0.765313 +0.75314,0.75314,0.75314,0.75314,0.75314,0.75314 +0.741008,0.741008,0.741008,0.741008,0.741008,0.741008 +0.728922,0.728922,0.728922,0.728922,0.728922,0.728922 +0.716886,0.716886,0.716886,0.716886,0.716886,0.716886 +0.704904,0.704904,0.704904,0.704904,0.704904,0.704904 +0.69298,0.69298,0.69298,0.69298,0.69298,0.69298 +0.681119,0.681119,0.681119,0.681119,0.681119,0.681119 +0.669324,0.669324,0.669324,0.669324,0.669324,0.669324 +0.657601,0.657601,0.657601,0.657601,0.657601,0.657601 +0.645953,0.645953,0.645953,0.645953,0.645953,0.645953 +0.634385,0.634385,0.634385,0.634385,0.634385,0.634385 +0.6229,0.6229,0.6229,0.6229,0.6229,0.6229 +0.611504,0.611504,0.611504,0.611504,0.611504,0.611504 +0.6002,0.6002,0.6002,0.6002,0.6002,0.6002 +0.588992,0.588992,0.588992,0.588992,0.588992,0.588992 +0.577885,0.577885,0.577885,0.577885,0.577885,0.577885 +0.566884,0.566884,0.566884,0.566884,0.566884,0.566884 +0.555988,0.555988,0.555988,0.555988,0.555988,0.555988 +0.545199,0.545199,0.545199,0.545199,0.545199,0.545199 +0.534515,0.534515,0.534515,0.534515,0.534515,0.534515 +0.523939,0.523939,0.523939,0.523939,0.523939,0.523939 +0.513468,0.513468,0.513468,0.513468,0.513468,0.513468 +0.503104,0.503104,0.503104,0.503104,0.503104,0.503104 +0.492846,0.492846,0.492846,0.492846,0.492846,0.492846 +0.482694,0.482694,0.482694,0.482694,0.482694,0.482694 +0.472648,0.472648,0.472648,0.472648,0.472648,0.472648 +0.462709,0.462709,0.462709,0.462709,0.462709,0.462709 +0.452876,0.452876,0.452876,0.452876,0.452876,0.452876 +0.443149,0.443149,0.443149,0.443149,0.443149,0.443149 +0.433528,0.433528,0.433528,0.433528,0.433528,0.433528 +0.424014,0.424014,0.424014,0.424014,0.424014,0.424014 +0.414606,0.414606,0.414606,0.414606,0.414606,0.414606 +0.405304,0.405304,0.405304,0.405304,0.405304,0.405304 +0.396108,0.396108,0.396108,0.396108,0.396108,0.396108 +0.387019,0.387019,0.387019,0.387019,0.387019,0.387019 +0.378036,0.378036,0.378036,0.378036,0.378036,0.378036 +0.369159,0.369159,0.369159,0.369159,0.369159,0.369159 +0.360388,0.360388,0.360388,0.360388,0.360388,0.360388 +0.351724,0.351724,0.351724,0.351724,0.351724,0.351724 +0.343166,0.343166,0.343166,0.343166,0.343166,0.343166 +0.334714,0.334714,0.334714,0.334714,0.334714,0.334714 +0.326368,0.326368,0.326368,0.326368,0.326368,0.326368 +0.318129,0.318129,0.318129,0.318129,0.318129,0.318129 +0.309996,0.309996,0.309996,0.309996,0.309996,0.309996 +0.301969,0.301969,0.301969,0.301969,0.301969,0.301969 +0.294048,0.294048,0.294048,0.294048,0.294048,0.294048 +0.286234,0.286234,0.286234,0.286234,0.286234,0.286234 +0.278526,0.278526,0.278526,0.278526,0.278526,0.278526 +0.270924,0.270924,0.270924,0.270924,0.270924,0.270924 +0.263428,0.263428,0.263428,0.263428,0.263428,0.263428 +0.256039,0.256039,0.256039,0.256039,0.256039,0.256039 +0.248756,0.248756,0.248756,0.248756,0.248756,0.248756 +0.241579,0.241579,0.241579,0.241579,0.241579,0.241579 +0.234509,0.234509,0.234509,0.234509,0.234509,0.234509 +0.227544,0.227544,0.227544,0.227544,0.227544,0.227544 +0.220686,0.220686,0.220686,0.220686,0.220686,0.220686 +0.213934,0.213934,0.213934,0.213934,0.213934,0.213934 +0.207289,0.207289,0.207289,0.207289,0.207289,0.207289 +0.200749,0.200749,0.200749,0.200749,0.200749,0.200749 +0.194316,0.194316,0.194316,0.194316,0.194316,0.194316 +0.187989,0.187989,0.187989,0.187989,0.187989,0.187989 +0.181769,0.181769,0.181769,0.181769,0.181769,0.181769 +0.175654,0.175654,0.175654,0.175654,0.175654,0.175654 +0.169646,0.169646,0.169646,0.169646,0.169646,0.169646 +0.163744,0.163744,0.163744,0.163744,0.163744,0.163744 +0.157949,0.157949,0.157949,0.157949,0.157949,0.157949 +0.152259,0.152259,0.152259,0.152259,0.152259,0.152259 +0.146676,0.146676,0.146676,0.146676,0.146676,0.146676 +0.141199,0.141199,0.141199,0.141199,0.141199,0.141199 +0.135829,0.135829,0.135829,0.135829,0.135829,0.135829 +0.130564,0.130564,0.130564,0.130564,0.130564,0.130564 +0.125406,0.125406,0.125406,0.125406,0.125406,0.125406 +0.120354,0.120354,0.120354,0.120354,0.120354,0.120354 +0.115409,0.115409,0.115409,0.115409,0.115409,0.115409 +0.110569,0.110569,0.110569,0.110569,0.110569,0.110569 +0.105836,0.105836,0.105836,0.105836,0.105836,0.105836 +0.101209,0.101209,0.101209,0.101209,0.101209,0.101209 +0.096689,0.096689,0.096689,0.096689,0.096689,0.096689 +0.092275,0.092275,0.092275,0.092275,0.092275,0.092275 +0.087966,0.087966,0.087966,0.087966,0.087966,0.087966 +0.083765,0.083765,0.083765,0.083765,0.083765,0.083765 +0.079669,0.079669,0.079669,0.079669,0.079669,0.079669 +0.07568,0.07568,0.07568,0.07568,0.07568,0.07568 +0.071796,0.071796,0.071796,0.071796,0.071796,0.071796 +0.06802,0.06802,0.06802,0.06802,0.06802,0.06802 +0.064349,0.064349,0.064349,0.064349,0.064349,0.064349 +0.060785,0.060785,0.060785,0.060785,0.060785,0.060785 +0.057327,0.057327,0.057327,0.057327,0.057327,0.057327 +0.053975,0.053975,0.053975,0.053975,0.053975,0.053975 +0.050729,0.050729,0.050729,0.050729,0.050729,0.050729 +0.04759,0.04759,0.04759,0.04759,0.04759,0.04759 +0.044557,0.044557,0.044557,0.044557,0.044557,0.044557 +0.04163,0.04163,0.04163,0.04163,0.04163,0.04163 +0.038809,0.038809,0.038809,0.038809,0.038809,0.038809 +0.036095,0.036095,0.036095,0.036095,0.036095,0.036095 +0.033487,0.033487,0.033487,0.033487,0.033487,0.033487 +0.030985,0.030985,0.030985,0.030985,0.030985,0.030985 +0.028589,0.028589,0.028589,0.028589,0.028589,0.028589 +0.0263,0.0263,0.0263,0.0263,0.0263,0.0263 +0.024117,0.024117,0.024117,0.024117,0.024117,0.024117 +0.02204,0.02204,0.02204,0.02204,0.02204,0.02204 +0.020069,0.020069,0.020069,0.020069,0.020069,0.020069 +0.018205,0.018205,0.018205,0.018205,0.018205,0.018205 +0.016447,0.016447,0.016447,0.016447,0.016447,0.016447 +0.014795,0.014795,0.014795,0.014795,0.014795,0.014795 +0.013249,0.013249,0.013249,0.013249,0.013249,0.013249 +0.01181,0.01181,0.01181,0.01181,0.01181,0.01181 +0.010477,0.010477,0.010477,0.010477,0.010477,0.010477 +0.009248,0.009248,0.009248,0.009248,0.009248,0.009248 +0.008119,0.008119,0.008119,0.008119,0.008119,0.008119 +0.007086,0.007086,0.007086,0.007086,0.007086,0.007086 +0.006144,0.006144,0.006144,0.006144,0.006144,0.006144 +0.00529,0.00529,0.00529,0.00529,0.00529,0.00529 +0.004519,0.004519,0.004519,0.004519,0.004519,0.004519 +0.003827,0.003827,0.003827,0.003827,0.003827,0.003827 +0.003209,0.003209,0.003209,0.003209,0.003209,0.003209 +0.002662,0.002662,0.002662,0.002662,0.002662,0.002662 +0.00218,0.00218,0.00218,0.00218,0.00218,0.00218 +0.001761,0.001761,0.001761,0.001761,0.001761,0.001761 +0.001399,0.001399,0.001399,0.001399,0.001399,0.001399 +0.001091,0.001091,0.001091,0.001091,0.001091,0.001091 +0.000831,0.000831,0.000831,0.000831,0.000831,0.000831 +0.000616,0.000616,0.000616,0.000616,0.000616,0.000616 +0.000442,0.000442,0.000442,0.000442,0.000442,0.000442 +0.000304,0.000304,0.000304,0.000304,0.000304,0.000304 +0.000199,0.000199,0.000199,0.000199,0.000199,0.000199 +0.000121,0.000121,0.000121,0.000121,0.000121,0.000121 +0.000067,0.000067,0.000067,0.000067,0.000067,0.000067 +0.000032,0.000032,0.000032,0.000032,0.000032,0.000032 +0.000012,0.000012,0.000012,0.000012,0.000012,0.000012 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000006,-0.000006,-0.000006,-0.000006,-0.000006,-0.000006 +-0.000019,-0.000019,-0.000019,-0.000019,-0.000019,-0.000019 +-0.000045,-0.000045,-0.000045,-0.000045,-0.000045,-0.000045 +-0.000089,-0.000089,-0.000089,-0.000089,-0.000089,-0.000089 +-0.000153,-0.000153,-0.000153,-0.000153,-0.000153,-0.000153 +-0.000243,-0.000243,-0.000243,-0.000243,-0.000243,-0.000243 +-0.000363,-0.000363,-0.000363,-0.000363,-0.000363,-0.000363 +-0.000516,-0.000516,-0.000516,-0.000516,-0.000516,-0.000516 +-0.000708,-0.000708,-0.000708,-0.000708,-0.000708,-0.000708 +-0.000943,-0.000943,-0.000943,-0.000943,-0.000943,-0.000943 +-0.001224,-0.001224,-0.001224,-0.001224,-0.001224,-0.001224 +-0.001556,-0.001556,-0.001556,-0.001556,-0.001556,-0.001556 +-0.001944,-0.001944,-0.001944,-0.001944,-0.001944,-0.001944 +-0.002391,-0.002391,-0.002391,-0.002391,-0.002391,-0.002391 +-0.002901,-0.002901,-0.002901,-0.002901,-0.002901,-0.002901 +-0.00348,-0.00348,-0.00348,-0.00348,-0.00348,-0.00348 +-0.004131,-0.004131,-0.004131,-0.004131,-0.004131,-0.004131 +-0.004858,-0.004858,-0.004858,-0.004858,-0.004858,-0.004858 +-0.005667,-0.005667,-0.005667,-0.005667,-0.005667,-0.005667 +-0.00656,-0.00656,-0.00656,-0.00656,-0.00656,-0.00656 +-0.007542,-0.007542,-0.007542,-0.007542,-0.007542,-0.007542 +-0.008618,-0.008618,-0.008618,-0.008618,-0.008618,-0.008618 +-0.009792,-0.009792,-0.009792,-0.009792,-0.009792,-0.009792 +-0.011068,-0.011068,-0.011068,-0.011068,-0.011068,-0.011068 +-0.012449,-0.012449,-0.012449,-0.012449,-0.012449,-0.012449 +-0.013936,-0.013936,-0.013936,-0.013936,-0.013936,-0.013936 +-0.01553,-0.01553,-0.01553,-0.01553,-0.01553,-0.01553 +-0.01723,-0.01723,-0.01723,-0.01723,-0.01723,-0.01723 +-0.019036,-0.019036,-0.019036,-0.019036,-0.019036,-0.019036 +-0.020949,-0.020949,-0.020949,-0.020949,-0.020949,-0.020949 +-0.022968,-0.022968,-0.022968,-0.022968,-0.022968,-0.022968 +-0.025093,-0.025093,-0.025093,-0.025093,-0.025093,-0.025093 +-0.027324,-0.027324,-0.027324,-0.027324,-0.027324,-0.027324 +-0.029661,-0.029661,-0.029661,-0.029661,-0.029661,-0.029661 +-0.032105,-0.032105,-0.032105,-0.032105,-0.032105,-0.032105 +-0.034655,-0.034655,-0.034655,-0.034655,-0.034655,-0.034655 +-0.037311,-0.037311,-0.037311,-0.037311,-0.037311,-0.037311 +-0.040074,-0.040074,-0.040074,-0.040074,-0.040074,-0.040074 +-0.042943,-0.042943,-0.042943,-0.042943,-0.042943,-0.042943 +-0.045918,-0.045918,-0.045918,-0.045918,-0.045918,-0.045918 +-0.048999,-0.048999,-0.048999,-0.048999,-0.048999,-0.048999 +-0.052186,-0.052186,-0.052186,-0.052186,-0.052186,-0.052186 +-0.05548,-0.05548,-0.05548,-0.05548,-0.05548,-0.05548 +-0.05888,-0.05888,-0.05888,-0.05888,-0.05888,-0.05888 +-0.062386,-0.062386,-0.062386,-0.062386,-0.062386,-0.062386 +-0.065999,-0.065999,-0.065999,-0.065999,-0.065999,-0.065999 +-0.069718,-0.069718,-0.069718,-0.069718,-0.069718,-0.069718 +-0.073543,-0.073543,-0.073543,-0.073543,-0.073543,-0.073543 +-0.077474,-0.077474,-0.077474,-0.077474,-0.077474,-0.077474 +-0.081511,-0.081511,-0.081511,-0.081511,-0.081511,-0.081511 +-0.085655,-0.085655,-0.085655,-0.085655,-0.085655,-0.085655 +-0.089905,-0.089905,-0.089905,-0.089905,-0.089905,-0.089905 +-0.094261,-0.094261,-0.094261,-0.094261,-0.094261,-0.094261 +-0.098724,-0.098724,-0.098724,-0.098724,-0.098724,-0.098724 +-0.103293,-0.103293,-0.103293,-0.103293,-0.103293,-0.103293 +-0.107968,-0.107968,-0.107968,-0.107968,-0.107968,-0.107968 +-0.112749,-0.112749,-0.112749,-0.112749,-0.112749,-0.112749 +-0.117636,-0.117636,-0.117636,-0.117636,-0.117636,-0.117636 +-0.12263,-0.12263,-0.12263,-0.12263,-0.12263,-0.12263 +-0.12773,-0.12773,-0.12773,-0.12773,-0.12773,-0.12773 +-0.132936,-0.132936,-0.132936,-0.132936,-0.132936,-0.132936 +-0.138249,-0.138249,-0.138249,-0.138249,-0.138249,-0.138249 +-0.143668,-0.143668,-0.143668,-0.143668,-0.143668,-0.143668 +-0.149193,-0.149193,-0.149193,-0.149193,-0.149193,-0.149193 +-0.154824,-0.154824,-0.154824,-0.154824,-0.154824,-0.154824 +-0.160561,-0.160561,-0.160561,-0.160561,-0.160561,-0.160561 +-0.166405,-0.166405,-0.166405,-0.166405,-0.166405,-0.166405 +-0.172355,-0.172355,-0.172355,-0.172355,-0.172355,-0.172355 +-0.178411,-0.178411,-0.178411,-0.178411,-0.178411,-0.178411 +-0.184574,-0.184574,-0.184574,-0.184574,-0.184574,-0.184574 +-0.190843,-0.190843,-0.190843,-0.190843,-0.190843,-0.190843 +-0.197218,-0.197218,-0.197218,-0.197218,-0.197218,-0.197218 +-0.203699,-0.203699,-0.203699,-0.203699,-0.203699,-0.203699 +-0.210286,-0.210286,-0.210286,-0.210286,-0.210286,-0.210286 +-0.21698,-0.21698,-0.21698,-0.21698,-0.21698,-0.21698 +-0.22378,-0.22378,-0.22378,-0.22378,-0.22378,-0.22378 +-0.230686,-0.230686,-0.230686,-0.230686,-0.230686,-0.230686 +-0.237699,-0.237699,-0.237699,-0.237699,-0.237699,-0.237699 +-0.244818,-0.244818,-0.244818,-0.244818,-0.244818,-0.244818 +-0.252043,-0.252043,-0.252043,-0.252043,-0.252043,-0.252043 +-0.259374,-0.259374,-0.259374,-0.259374,-0.259374,-0.259374 +-0.266811,-0.266811,-0.266811,-0.266811,-0.266811,-0.266811 +-0.274355,-0.274355,-0.274355,-0.274355,-0.274355,-0.274355 +-0.282005,-0.282005,-0.282005,-0.282005,-0.282005,-0.282005 +-0.289761,-0.289761,-0.289761,-0.289761,-0.289761,-0.289761 +-0.297624,-0.297624,-0.297624,-0.297624,-0.297624,-0.297624 +-0.305593,-0.305593,-0.305593,-0.305593,-0.305593,-0.305593 +-0.313668,-0.313668,-0.313668,-0.313668,-0.313668,-0.313668 +-0.321849,-0.321849,-0.321849,-0.321849,-0.321849,-0.321849 +-0.330136,-0.330136,-0.330136,-0.330136,-0.330136,-0.330136 +-0.33853,-0.33853,-0.33853,-0.33853,-0.33853,-0.33853 +-0.34703,-0.34703,-0.34703,-0.34703,-0.34703,-0.34703 +-0.355636,-0.355636,-0.355636,-0.355636,-0.355636,-0.355636 +-0.364349,-0.364349,-0.364349,-0.364349,-0.364349,-0.364349 +-0.373168,-0.373168,-0.373168,-0.373168,-0.373168,-0.373168 +-0.382093,-0.382093,-0.382093,-0.382093,-0.382093,-0.382093 +-0.391124,-0.391124,-0.391124,-0.391124,-0.391124,-0.391124 +-0.400261,-0.400261,-0.400261,-0.400261,-0.400261,-0.400261 +-0.409505,-0.409505,-0.409505,-0.409505,-0.409505,-0.409505 +-0.418855,-0.418855,-0.418855,-0.418855,-0.418855,-0.418855 +-0.428311,-0.428311,-0.428311,-0.428311,-0.428311,-0.428311 +-0.437874,-0.437874,-0.437874,-0.437874,-0.437874,-0.437874 +-0.447543,-0.447543,-0.447543,-0.447543,-0.447543,-0.447543 +-0.457318,-0.457318,-0.457318,-0.457318,-0.457318,-0.457318 +-0.467199,-0.467199,-0.467199,-0.467199,-0.467199,-0.467199 +-0.477186,-0.477186,-0.477186,-0.477186,-0.477186,-0.477186 +-0.48728,-0.48728,-0.48728,-0.48728,-0.48728,-0.48728 +-0.49748,-0.49748,-0.49748,-0.49748,-0.49748,-0.49748 +-0.507786,-0.507786,-0.507786,-0.507786,-0.507786,-0.507786 +-0.518199,-0.518199,-0.518199,-0.518199,-0.518199,-0.518199 +-0.528718,-0.528718,-0.528718,-0.528718,-0.528718,-0.528718 +-0.539343,-0.539343,-0.539343,-0.539343,-0.539343,-0.539343 +-0.550074,-0.550074,-0.550074,-0.550074,-0.550074,-0.550074 +-0.560911,-0.560911,-0.560911,-0.560911,-0.560911,-0.560911 +-0.571855,-0.571855,-0.571855,-0.571855,-0.571855,-0.571855 +-0.582905,-0.582905,-0.582905,-0.582905,-0.582905,-0.582905 +-0.594058,-0.594058,-0.594058,-0.594058,-0.594058,-0.594058 +-0.60531,-0.60531,-0.60531,-0.60531,-0.60531,-0.60531 +-0.616656,-0.616656,-0.616656,-0.616656,-0.616656,-0.616656 +-0.628093,-0.628093,-0.628093,-0.628093,-0.628093,-0.628093 +-0.639616,-0.639616,-0.639616,-0.639616,-0.639616,-0.639616 +-0.651221,-0.651221,-0.651221,-0.651221,-0.651221,-0.651221 +-0.662903,-0.662903,-0.662903,-0.662903,-0.662903,-0.662903 +-0.674659,-0.674659,-0.674659,-0.674659,-0.674659,-0.674659 +-0.686485,-0.686485,-0.686485,-0.686485,-0.686485,-0.686485 +-0.698375,-0.698375,-0.698375,-0.698375,-0.698375,-0.698375 +-0.710325,-0.710325,-0.710325,-0.710325,-0.710325,-0.710325 +-0.722333,-0.722333,-0.722333,-0.722333,-0.722333,-0.722333 +-0.734392,-0.734392,-0.734392,-0.734392,-0.734392,-0.734392 +-0.746499,-0.746499,-0.746499,-0.746499,-0.746499,-0.746499 +-0.75865,-0.75865,-0.75865,-0.75865,-0.75865,-0.75865 +-0.77084,-0.77084,-0.77084,-0.77084,-0.77084,-0.77084 +-0.783066,-0.783066,-0.783066,-0.783066,-0.783066,-0.783066 +-0.795322,-0.795322,-0.795322,-0.795322,-0.795322,-0.795322 +-0.807605,-0.807605,-0.807605,-0.807605,-0.807605,-0.807605 +-0.819911,-0.819911,-0.819911,-0.819911,-0.819911,-0.819911 +-0.832234,-0.832234,-0.832234,-0.832234,-0.832234,-0.832234 +-0.844572,-0.844572,-0.844572,-0.844572,-0.844572,-0.844572 +-0.856919,-0.856919,-0.856919,-0.856919,-0.856919,-0.856919 +-0.869272,-0.869272,-0.869272,-0.869272,-0.869272,-0.869272 +-0.881625,-0.881625,-0.881625,-0.881625,-0.881625,-0.881625 +-0.893976,-0.893976,-0.893976,-0.893976,-0.893976,-0.893976 +-0.90632,-0.90632,-0.90632,-0.90632,-0.90632,-0.90632 +-0.918651,-0.918651,-0.918651,-0.918651,-0.918651,-0.918651 +-0.930967,-0.930967,-0.930967,-0.930967,-0.930967,-0.930967 +-0.943263,-0.943263,-0.943263,-0.943263,-0.943263,-0.943263 +-0.955535,-0.955535,-0.955535,-0.955535,-0.955535,-0.955535 +-0.967777,-0.967777,-0.967777,-0.967777,-0.967777,-0.967777 +-0.979987,-0.979987,-0.979987,-0.979987,-0.979987,-0.979987 +-0.99216,-0.99216,-0.99216,-0.99216,-0.99216,-0.99216 +-1.004292,-1.004292,-1.004292,-1.004292,-1.004292,-1.004292 +-1.016378,-1.016378,-1.016378,-1.016378,-1.016378,-1.016378 +-1.028414,-1.028414,-1.028414,-1.028414,-1.028414,-1.028414 +-1.040396,-1.040396,-1.040396,-1.040396,-1.040396,-1.040396 +-1.05232,-1.05232,-1.05232,-1.05232,-1.05232,-1.05232 +-1.064181,-1.064181,-1.064181,-1.064181,-1.064181,-1.064181 +-1.075976,-1.075976,-1.075976,-1.075976,-1.075976,-1.075976 +-1.087699,-1.087699,-1.087699,-1.087699,-1.087699,-1.087699 +-1.099347,-1.099347,-1.099347,-1.099347,-1.099347,-1.099347 +-1.110915,-1.110915,-1.110915,-1.110915,-1.110915,-1.110915 +-1.1224,-1.1224,-1.1224,-1.1224,-1.1224,-1.1224 +-1.133796,-1.133796,-1.133796,-1.133796,-1.133796,-1.133796 +-1.1451,-1.1451,-1.1451,-1.1451,-1.1451,-1.1451 +-1.156308,-1.156308,-1.156308,-1.156308,-1.156308,-1.156308 +-1.167415,-1.167415,-1.167415,-1.167415,-1.167415,-1.167415 +-1.178416,-1.178416,-1.178416,-1.178416,-1.178416,-1.178416 +-1.189312,-1.189312,-1.189312,-1.189312,-1.189312,-1.189312 +-1.200101,-1.200101,-1.200101,-1.200101,-1.200101,-1.200101 +-1.210785,-1.210785,-1.210785,-1.210785,-1.210785,-1.210785 +-1.221361,-1.221361,-1.221361,-1.221361,-1.221361,-1.221361 +-1.231832,-1.231832,-1.231832,-1.231832,-1.231832,-1.231832 +-1.242196,-1.242196,-1.242196,-1.242196,-1.242196,-1.242196 +-1.252454,-1.252454,-1.252454,-1.252454,-1.252454,-1.252454 +-1.262606,-1.262606,-1.262606,-1.262606,-1.262606,-1.262606 +-1.272652,-1.272652,-1.272652,-1.272652,-1.272652,-1.272652 +-1.282591,-1.282591,-1.282591,-1.282591,-1.282591,-1.282591 +-1.292424,-1.292424,-1.292424,-1.292424,-1.292424,-1.292424 +-1.302151,-1.302151,-1.302151,-1.302151,-1.302151,-1.302151 +-1.311772,-1.311772,-1.311772,-1.311772,-1.311772,-1.311772 +-1.321286,-1.321286,-1.321286,-1.321286,-1.321286,-1.321286 +-1.330694,-1.330694,-1.330694,-1.330694,-1.330694,-1.330694 +-1.339996,-1.339996,-1.339996,-1.339996,-1.339996,-1.339996 +-1.349192,-1.349192,-1.349192,-1.349192,-1.349192,-1.349192 +-1.358281,-1.358281,-1.358281,-1.358281,-1.358281,-1.358281 +-1.367264,-1.367264,-1.367264,-1.367264,-1.367264,-1.367264 +-1.376141,-1.376141,-1.376141,-1.376141,-1.376141,-1.376141 +-1.384912,-1.384912,-1.384912,-1.384912,-1.384912,-1.384912 +-1.393576,-1.393576,-1.393576,-1.393576,-1.393576,-1.393576 +-1.402134,-1.402134,-1.402134,-1.402134,-1.402134,-1.402134 +-1.410586,-1.410586,-1.410586,-1.410586,-1.410586,-1.410586 +-1.418932,-1.418932,-1.418932,-1.418932,-1.418932,-1.418932 +-1.427171,-1.427171,-1.427171,-1.427171,-1.427171,-1.427171 +-1.435304,-1.435304,-1.435304,-1.435304,-1.435304,-1.435304 +-1.443331,-1.443331,-1.443331,-1.443331,-1.443331,-1.443331 +-1.451252,-1.451252,-1.451252,-1.451252,-1.451252,-1.451252 +-1.459066,-1.459066,-1.459066,-1.459066,-1.459066,-1.459066 +-1.466774,-1.466774,-1.466774,-1.466774,-1.466774,-1.466774 +-1.474376,-1.474376,-1.474376,-1.474376,-1.474376,-1.474376 +-1.481872,-1.481872,-1.481872,-1.481872,-1.481872,-1.481872 +-1.489261,-1.489261,-1.489261,-1.489261,-1.489261,-1.489261 +-1.496544,-1.496544,-1.496544,-1.496544,-1.496544,-1.496544 +-1.503721,-1.503721,-1.503721,-1.503721,-1.503721,-1.503721 +-1.510791,-1.510791,-1.510791,-1.510791,-1.510791,-1.510791 +-1.517756,-1.517756,-1.517756,-1.517756,-1.517756,-1.517756 +-1.524614,-1.524614,-1.524614,-1.524614,-1.524614,-1.524614 +-1.531366,-1.531366,-1.531366,-1.531366,-1.531366,-1.531366 +-1.538011,-1.538011,-1.538011,-1.538011,-1.538011,-1.538011 +-1.544551,-1.544551,-1.544551,-1.544551,-1.544551,-1.544551 +-1.550984,-1.550984,-1.550984,-1.550984,-1.550984,-1.550984 +-1.557311,-1.557311,-1.557311,-1.557311,-1.557311,-1.557311 +-1.563531,-1.563531,-1.563531,-1.563531,-1.563531,-1.563531 +-1.569646,-1.569646,-1.569646,-1.569646,-1.569646,-1.569646 +-1.575654,-1.575654,-1.575654,-1.575654,-1.575654,-1.575654 +-1.581556,-1.581556,-1.581556,-1.581556,-1.581556,-1.581556 +-1.587351,-1.587351,-1.587351,-1.587351,-1.587351,-1.587351 +-1.593041,-1.593041,-1.593041,-1.593041,-1.593041,-1.593041 +-1.598624,-1.598624,-1.598624,-1.598624,-1.598624,-1.598624 +-1.604101,-1.604101,-1.604101,-1.604101,-1.604101,-1.604101 +-1.609471,-1.609471,-1.609471,-1.609471,-1.609471,-1.609471 +-1.614736,-1.614736,-1.614736,-1.614736,-1.614736,-1.614736 +-1.619894,-1.619894,-1.619894,-1.619894,-1.619894,-1.619894 +-1.624946,-1.624946,-1.624946,-1.624946,-1.624946,-1.624946 +-1.629891,-1.629891,-1.629891,-1.629891,-1.629891,-1.629891 +-1.634731,-1.634731,-1.634731,-1.634731,-1.634731,-1.634731 +-1.639464,-1.639464,-1.639464,-1.639464,-1.639464,-1.639464 +-1.644091,-1.644091,-1.644091,-1.644091,-1.644091,-1.644091 +-1.648611,-1.648611,-1.648611,-1.648611,-1.648611,-1.648611 +-1.653025,-1.653025,-1.653025,-1.653025,-1.653025,-1.653025 +-1.657334,-1.657334,-1.657334,-1.657334,-1.657334,-1.657334 +-1.661535,-1.661535,-1.661535,-1.661535,-1.661535,-1.661535 +-1.665631,-1.665631,-1.665631,-1.665631,-1.665631,-1.665631 +-1.66962,-1.66962,-1.66962,-1.66962,-1.66962,-1.66962 +-1.673504,-1.673504,-1.673504,-1.673504,-1.673504,-1.673504 +-1.67728,-1.67728,-1.67728,-1.67728,-1.67728,-1.67728 +-1.680951,-1.680951,-1.680951,-1.680951,-1.680951,-1.680951 +-1.684515,-1.684515,-1.684515,-1.684515,-1.684515,-1.684515 +-1.687973,-1.687973,-1.687973,-1.687973,-1.687973,-1.687973 +-1.691325,-1.691325,-1.691325,-1.691325,-1.691325,-1.691325 +-1.694571,-1.694571,-1.694571,-1.694571,-1.694571,-1.694571 +-1.69771,-1.69771,-1.69771,-1.69771,-1.69771,-1.69771 +-1.700743,-1.700743,-1.700743,-1.700743,-1.700743,-1.700743 +-1.70367,-1.70367,-1.70367,-1.70367,-1.70367,-1.70367 +-1.706491,-1.706491,-1.706491,-1.706491,-1.706491,-1.706491 +-1.709205,-1.709205,-1.709205,-1.709205,-1.709205,-1.709205 +-1.711813,-1.711813,-1.711813,-1.711813,-1.711813,-1.711813 +-1.714315,-1.714315,-1.714315,-1.714315,-1.714315,-1.714315 +-1.716711,-1.716711,-1.716711,-1.716711,-1.716711,-1.716711 +-1.719,-1.719,-1.719,-1.719,-1.719,-1.719 +-1.721183,-1.721183,-1.721183,-1.721183,-1.721183,-1.721183 +-1.72326,-1.72326,-1.72326,-1.72326,-1.72326,-1.72326 +-1.725231,-1.725231,-1.725231,-1.725231,-1.725231,-1.725231 +-1.727095,-1.727095,-1.727095,-1.727095,-1.727095,-1.727095 +-1.728853,-1.728853,-1.728853,-1.728853,-1.728853,-1.728853 +-1.730505,-1.730505,-1.730505,-1.730505,-1.730505,-1.730505 +-1.732051,-1.732051,-1.732051,-1.732051,-1.732051,-1.732051 +-1.73349,-1.73349,-1.73349,-1.73349,-1.73349,-1.73349 +-1.734823,-1.734823,-1.734823,-1.734823,-1.734823,-1.734823 +-1.736052,-1.736052,-1.736052,-1.736052,-1.736052,-1.736052 +-1.737181,-1.737181,-1.737181,-1.737181,-1.737181,-1.737181 +-1.738214,-1.738214,-1.738214,-1.738214,-1.738214,-1.738214 +-1.739156,-1.739156,-1.739156,-1.739156,-1.739156,-1.739156 +-1.74001,-1.74001,-1.74001,-1.74001,-1.74001,-1.74001 +-1.740781,-1.740781,-1.740781,-1.740781,-1.740781,-1.740781 +-1.741473,-1.741473,-1.741473,-1.741473,-1.741473,-1.741473 +-1.742091,-1.742091,-1.742091,-1.742091,-1.742091,-1.742091 +-1.742638,-1.742638,-1.742638,-1.742638,-1.742638,-1.742638 +-1.74312,-1.74312,-1.74312,-1.74312,-1.74312,-1.74312 +-1.743539,-1.743539,-1.743539,-1.743539,-1.743539,-1.743539 +-1.743901,-1.743901,-1.743901,-1.743901,-1.743901,-1.743901 +-1.744209,-1.744209,-1.744209,-1.744209,-1.744209,-1.744209 +-1.744469,-1.744469,-1.744469,-1.744469,-1.744469,-1.744469 +-1.744684,-1.744684,-1.744684,-1.744684,-1.744684,-1.744684 +-1.744858,-1.744858,-1.744858,-1.744858,-1.744858,-1.744858 +-1.744996,-1.744996,-1.744996,-1.744996,-1.744996,-1.744996 +-1.745101,-1.745101,-1.745101,-1.745101,-1.745101,-1.745101 +-1.745179,-1.745179,-1.745179,-1.745179,-1.745179,-1.745179 +-1.745233,-1.745233,-1.745233,-1.745233,-1.745233,-1.745233 +-1.745268,-1.745268,-1.745268,-1.745268,-1.745268,-1.745268 +-1.745288,-1.745288,-1.745288,-1.745288,-1.745288,-1.745288 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745294,-1.745294,-1.745294,-1.745294,-1.745294,-1.745294 +-1.745281,-1.745281,-1.745281,-1.745281,-1.745281,-1.745281 +-1.745255,-1.745255,-1.745255,-1.745255,-1.745255,-1.745255 +-1.745211,-1.745211,-1.745211,-1.745211,-1.745211,-1.745211 +-1.745147,-1.745147,-1.745147,-1.745147,-1.745147,-1.745147 +-1.745057,-1.745057,-1.745057,-1.745057,-1.745057,-1.745057 +-1.744937,-1.744937,-1.744937,-1.744937,-1.744937,-1.744937 +-1.744784,-1.744784,-1.744784,-1.744784,-1.744784,-1.744784 +-1.744592,-1.744592,-1.744592,-1.744592,-1.744592,-1.744592 +-1.744357,-1.744357,-1.744357,-1.744357,-1.744357,-1.744357 +-1.744076,-1.744076,-1.744076,-1.744076,-1.744076,-1.744076 +-1.743744,-1.743744,-1.743744,-1.743744,-1.743744,-1.743744 +-1.743356,-1.743356,-1.743356,-1.743356,-1.743356,-1.743356 +-1.742909,-1.742909,-1.742909,-1.742909,-1.742909,-1.742909 +-1.742399,-1.742399,-1.742399,-1.742399,-1.742399,-1.742399 +-1.74182,-1.74182,-1.74182,-1.74182,-1.74182,-1.74182 +-1.741169,-1.741169,-1.741169,-1.741169,-1.741169,-1.741169 +-1.740442,-1.740442,-1.740442,-1.740442,-1.740442,-1.740442 +-1.739633,-1.739633,-1.739633,-1.739633,-1.739633,-1.739633 +-1.73874,-1.73874,-1.73874,-1.73874,-1.73874,-1.73874 +-1.737758,-1.737758,-1.737758,-1.737758,-1.737758,-1.737758 +-1.736682,-1.736682,-1.736682,-1.736682,-1.736682,-1.736682 +-1.735508,-1.735508,-1.735508,-1.735508,-1.735508,-1.735508 +-1.734232,-1.734232,-1.734232,-1.734232,-1.734232,-1.734232 +-1.732851,-1.732851,-1.732851,-1.732851,-1.732851,-1.732851 +-1.731364,-1.731364,-1.731364,-1.731364,-1.731364,-1.731364 +-1.72977,-1.72977,-1.72977,-1.72977,-1.72977,-1.72977 +-1.72807,-1.72807,-1.72807,-1.72807,-1.72807,-1.72807 +-1.726264,-1.726264,-1.726264,-1.726264,-1.726264,-1.726264 +-1.724351,-1.724351,-1.724351,-1.724351,-1.724351,-1.724351 +-1.722332,-1.722332,-1.722332,-1.722332,-1.722332,-1.722332 +-1.720207,-1.720207,-1.720207,-1.720207,-1.720207,-1.720207 +-1.717976,-1.717976,-1.717976,-1.717976,-1.717976,-1.717976 +-1.715639,-1.715639,-1.715639,-1.715639,-1.715639,-1.715639 +-1.713195,-1.713195,-1.713195,-1.713195,-1.713195,-1.713195 +-1.710645,-1.710645,-1.710645,-1.710645,-1.710645,-1.710645 +-1.707989,-1.707989,-1.707989,-1.707989,-1.707989,-1.707989 +-1.705226,-1.705226,-1.705226,-1.705226,-1.705226,-1.705226 +-1.702357,-1.702357,-1.702357,-1.702357,-1.702357,-1.702357 +-1.699382,-1.699382,-1.699382,-1.699382,-1.699382,-1.699382 +-1.696301,-1.696301,-1.696301,-1.696301,-1.696301,-1.696301 +-1.693114,-1.693114,-1.693114,-1.693114,-1.693114,-1.693114 +-1.68982,-1.68982,-1.68982,-1.68982,-1.68982,-1.68982 +-1.68642,-1.68642,-1.68642,-1.68642,-1.68642,-1.68642 +-1.682914,-1.682914,-1.682914,-1.682914,-1.682914,-1.682914 +-1.679301,-1.679301,-1.679301,-1.679301,-1.679301,-1.679301 +-1.675582,-1.675582,-1.675582,-1.675582,-1.675582,-1.675582 +-1.671757,-1.671757,-1.671757,-1.671757,-1.671757,-1.671757 +-1.667826,-1.667826,-1.667826,-1.667826,-1.667826,-1.667826 +-1.663789,-1.663789,-1.663789,-1.663789,-1.663789,-1.663789 +-1.659645,-1.659645,-1.659645,-1.659645,-1.659645,-1.659645 +-1.655395,-1.655395,-1.655395,-1.655395,-1.655395,-1.655395 +-1.651039,-1.651039,-1.651039,-1.651039,-1.651039,-1.651039 +-1.646576,-1.646576,-1.646576,-1.646576,-1.646576,-1.646576 +-1.642007,-1.642007,-1.642007,-1.642007,-1.642007,-1.642007 +-1.637332,-1.637332,-1.637332,-1.637332,-1.637332,-1.637332 +-1.632551,-1.632551,-1.632551,-1.632551,-1.632551,-1.632551 +-1.627664,-1.627664,-1.627664,-1.627664,-1.627664,-1.627664 +-1.62267,-1.62267,-1.62267,-1.62267,-1.62267,-1.62267 +-1.61757,-1.61757,-1.61757,-1.61757,-1.61757,-1.61757 +-1.612364,-1.612364,-1.612364,-1.612364,-1.612364,-1.612364 +-1.607051,-1.607051,-1.607051,-1.607051,-1.607051,-1.607051 +-1.601632,-1.601632,-1.601632,-1.601632,-1.601632,-1.601632 +-1.596107,-1.596107,-1.596107,-1.596107,-1.596107,-1.596107 +-1.590476,-1.590476,-1.590476,-1.590476,-1.590476,-1.590476 +-1.584739,-1.584739,-1.584739,-1.584739,-1.584739,-1.584739 +-1.578895,-1.578895,-1.578895,-1.578895,-1.578895,-1.578895 +-1.572945,-1.572945,-1.572945,-1.572945,-1.572945,-1.572945 +-1.566889,-1.566889,-1.566889,-1.566889,-1.566889,-1.566889 +-1.560726,-1.560726,-1.560726,-1.560726,-1.560726,-1.560726 +-1.554457,-1.554457,-1.554457,-1.554457,-1.554457,-1.554457 +-1.548082,-1.548082,-1.548082,-1.548082,-1.548082,-1.548082 +-1.541601,-1.541601,-1.541601,-1.541601,-1.541601,-1.541601 +-1.535014,-1.535014,-1.535014,-1.535014,-1.535014,-1.535014 +-1.52832,-1.52832,-1.52832,-1.52832,-1.52832,-1.52832 +-1.52152,-1.52152,-1.52152,-1.52152,-1.52152,-1.52152 +-1.514614,-1.514614,-1.514614,-1.514614,-1.514614,-1.514614 +-1.507601,-1.507601,-1.507601,-1.507601,-1.507601,-1.507601 +-1.500482,-1.500482,-1.500482,-1.500482,-1.500482,-1.500482 +-1.493257,-1.493257,-1.493257,-1.493257,-1.493257,-1.493257 +-1.485926,-1.485926,-1.485926,-1.485926,-1.485926,-1.485926 +-1.478489,-1.478489,-1.478489,-1.478489,-1.478489,-1.478489 +-1.470945,-1.470945,-1.470945,-1.470945,-1.470945,-1.470945 +-1.463295,-1.463295,-1.463295,-1.463295,-1.463295,-1.463295 +-1.455539,-1.455539,-1.455539,-1.455539,-1.455539,-1.455539 +-1.447676,-1.447676,-1.447676,-1.447676,-1.447676,-1.447676 +-1.439707,-1.439707,-1.439707,-1.439707,-1.439707,-1.439707 +-1.431632,-1.431632,-1.431632,-1.431632,-1.431632,-1.431632 +-1.423451,-1.423451,-1.423451,-1.423451,-1.423451,-1.423451 +-1.415164,-1.415164,-1.415164,-1.415164,-1.415164,-1.415164 +-1.40677,-1.40677,-1.40677,-1.40677,-1.40677,-1.40677 +-1.39827,-1.39827,-1.39827,-1.39827,-1.39827,-1.39827 +-1.389664,-1.389664,-1.389664,-1.389664,-1.389664,-1.389664 +-1.380951,-1.380951,-1.380951,-1.380951,-1.380951,-1.380951 +-1.372132,-1.372132,-1.372132,-1.372132,-1.372132,-1.372132 +-1.363207,-1.363207,-1.363207,-1.363207,-1.363207,-1.363207 +-1.354176,-1.354176,-1.354176,-1.354176,-1.354176,-1.354176 +-1.345039,-1.345039,-1.345039,-1.345039,-1.345039,-1.345039 +-1.335795,-1.335795,-1.335795,-1.335795,-1.335795,-1.335795 +-1.326445,-1.326445,-1.326445,-1.326445,-1.326445,-1.326445 +-1.316989,-1.316989,-1.316989,-1.316989,-1.316989,-1.316989 +-1.307426,-1.307426,-1.307426,-1.307426,-1.307426,-1.307426 +-1.297757,-1.297757,-1.297757,-1.297757,-1.297757,-1.297757 +-1.287982,-1.287982,-1.287982,-1.287982,-1.287982,-1.287982 +-1.278101,-1.278101,-1.278101,-1.278101,-1.278101,-1.278101 +-1.268114,-1.268114,-1.268114,-1.268114,-1.268114,-1.268114 +-1.25802,-1.25802,-1.25802,-1.25802,-1.25802,-1.25802 +-1.24782,-1.24782,-1.24782,-1.24782,-1.24782,-1.24782 +-1.237514,-1.237514,-1.237514,-1.237514,-1.237514,-1.237514 +-1.227101,-1.227101,-1.227101,-1.227101,-1.227101,-1.227101 +-1.216582,-1.216582,-1.216582,-1.216582,-1.216582,-1.216582 +-1.205957,-1.205957,-1.205957,-1.205957,-1.205957,-1.205957 +-1.195226,-1.195226,-1.195226,-1.195226,-1.195226,-1.195226 +-1.184389,-1.184389,-1.184389,-1.184389,-1.184389,-1.184389 +-1.173445,-1.173445,-1.173445,-1.173445,-1.173445,-1.173445 +-1.162395,-1.162395,-1.162395,-1.162395,-1.162395,-1.162395 +-1.151242,-1.151242,-1.151242,-1.151242,-1.151242,-1.151242 +-1.13999,-1.13999,-1.13999,-1.13999,-1.13999,-1.13999 +-1.128644,-1.128644,-1.128644,-1.128644,-1.128644,-1.128644 +-1.117207,-1.117207,-1.117207,-1.117207,-1.117207,-1.117207 +-1.105684,-1.105684,-1.105684,-1.105684,-1.105684,-1.105684 +-1.094079,-1.094079,-1.094079,-1.094079,-1.094079,-1.094079 +-1.082397,-1.082397,-1.082397,-1.082397,-1.082397,-1.082397 +-1.070641,-1.070641,-1.070641,-1.070641,-1.070641,-1.070641 +-1.058815,-1.058815,-1.058815,-1.058815,-1.058815,-1.058815 +-1.046925,-1.046925,-1.046925,-1.046925,-1.046925,-1.046925 +-1.034975,-1.034975,-1.034975,-1.034975,-1.034975,-1.034975 +-1.022967,-1.022967,-1.022967,-1.022967,-1.022967,-1.022967 +-1.010908,-1.010908,-1.010908,-1.010908,-1.010908,-1.010908 +-0.998801,-0.998801,-0.998801,-0.998801,-0.998801,-0.998801 +-0.98665,-0.98665,-0.98665,-0.98665,-0.98665,-0.98665 +-0.97446,-0.97446,-0.97446,-0.97446,-0.97446,-0.97446 +-0.962234,-0.962234,-0.962234,-0.962234,-0.962234,-0.962234 +-0.949978,-0.949978,-0.949978,-0.949978,-0.949978,-0.949978 +-0.937695,-0.937695,-0.937695,-0.937695,-0.937695,-0.937695 +-0.925389,-0.925389,-0.925389,-0.925389,-0.925389,-0.925389 +-0.913066,-0.913066,-0.913066,-0.913066,-0.913066,-0.913066 +-0.900728,-0.900728,-0.900728,-0.900728,-0.900728,-0.900728 +-0.888381,-0.888381,-0.888381,-0.888381,-0.888381,-0.888381 +-0.876028,-0.876028,-0.876028,-0.876028,-0.876028,-0.876028 +-0.863675,-0.863675,-0.863675,-0.863675,-0.863675,-0.863675 +-0.851324,-0.851324,-0.851324,-0.851324,-0.851324,-0.851324 +-0.83898,-0.83898,-0.83898,-0.83898,-0.83898,-0.83898 +-0.826649,-0.826649,-0.826649,-0.826649,-0.826649,-0.826649 +-0.814333,-0.814333,-0.814333,-0.814333,-0.814333,-0.814333 +-0.802037,-0.802037,-0.802037,-0.802037,-0.802037,-0.802037 +-0.789765,-0.789765,-0.789765,-0.789765,-0.789765,-0.789765 +-0.777523,-0.777523,-0.777523,-0.777523,-0.777523,-0.777523 +-0.765313,-0.765313,-0.765313,-0.765313,-0.765313,-0.765313 +-0.75314,-0.75314,-0.75314,-0.75314,-0.75314,-0.75314 +-0.741008,-0.741008,-0.741008,-0.741008,-0.741008,-0.741008 +-0.728922,-0.728922,-0.728922,-0.728922,-0.728922,-0.728922 +-0.716886,-0.716886,-0.716886,-0.716886,-0.716886,-0.716886 +-0.704904,-0.704904,-0.704904,-0.704904,-0.704904,-0.704904 +-0.69298,-0.69298,-0.69298,-0.69298,-0.69298,-0.69298 +-0.681119,-0.681119,-0.681119,-0.681119,-0.681119,-0.681119 +-0.669324,-0.669324,-0.669324,-0.669324,-0.669324,-0.669324 +-0.657601,-0.657601,-0.657601,-0.657601,-0.657601,-0.657601 +-0.645953,-0.645953,-0.645953,-0.645953,-0.645953,-0.645953 +-0.634385,-0.634385,-0.634385,-0.634385,-0.634385,-0.634385 +-0.6229,-0.6229,-0.6229,-0.6229,-0.6229,-0.6229 +-0.611504,-0.611504,-0.611504,-0.611504,-0.611504,-0.611504 +-0.6002,-0.6002,-0.6002,-0.6002,-0.6002,-0.6002 +-0.588992,-0.588992,-0.588992,-0.588992,-0.588992,-0.588992 +-0.577885,-0.577885,-0.577885,-0.577885,-0.577885,-0.577885 +-0.566884,-0.566884,-0.566884,-0.566884,-0.566884,-0.566884 +-0.555988,-0.555988,-0.555988,-0.555988,-0.555988,-0.555988 +-0.545199,-0.545199,-0.545199,-0.545199,-0.545199,-0.545199 +-0.534515,-0.534515,-0.534515,-0.534515,-0.534515,-0.534515 +-0.523939,-0.523939,-0.523939,-0.523939,-0.523939,-0.523939 +-0.513468,-0.513468,-0.513468,-0.513468,-0.513468,-0.513468 +-0.503104,-0.503104,-0.503104,-0.503104,-0.503104,-0.503104 +-0.492846,-0.492846,-0.492846,-0.492846,-0.492846,-0.492846 +-0.482694,-0.482694,-0.482694,-0.482694,-0.482694,-0.482694 +-0.472648,-0.472648,-0.472648,-0.472648,-0.472648,-0.472648 +-0.462709,-0.462709,-0.462709,-0.462709,-0.462709,-0.462709 +-0.452876,-0.452876,-0.452876,-0.452876,-0.452876,-0.452876 +-0.443149,-0.443149,-0.443149,-0.443149,-0.443149,-0.443149 +-0.433528,-0.433528,-0.433528,-0.433528,-0.433528,-0.433528 +-0.424014,-0.424014,-0.424014,-0.424014,-0.424014,-0.424014 +-0.414606,-0.414606,-0.414606,-0.414606,-0.414606,-0.414606 +-0.405304,-0.405304,-0.405304,-0.405304,-0.405304,-0.405304 +-0.396108,-0.396108,-0.396108,-0.396108,-0.396108,-0.396108 +-0.387019,-0.387019,-0.387019,-0.387019,-0.387019,-0.387019 +-0.378036,-0.378036,-0.378036,-0.378036,-0.378036,-0.378036 +-0.369159,-0.369159,-0.369159,-0.369159,-0.369159,-0.369159 +-0.360388,-0.360388,-0.360388,-0.360388,-0.360388,-0.360388 +-0.351724,-0.351724,-0.351724,-0.351724,-0.351724,-0.351724 +-0.343166,-0.343166,-0.343166,-0.343166,-0.343166,-0.343166 +-0.334714,-0.334714,-0.334714,-0.334714,-0.334714,-0.334714 +-0.326368,-0.326368,-0.326368,-0.326368,-0.326368,-0.326368 +-0.318129,-0.318129,-0.318129,-0.318129,-0.318129,-0.318129 +-0.309996,-0.309996,-0.309996,-0.309996,-0.309996,-0.309996 +-0.301969,-0.301969,-0.301969,-0.301969,-0.301969,-0.301969 +-0.294048,-0.294048,-0.294048,-0.294048,-0.294048,-0.294048 +-0.286234,-0.286234,-0.286234,-0.286234,-0.286234,-0.286234 +-0.278526,-0.278526,-0.278526,-0.278526,-0.278526,-0.278526 +-0.270924,-0.270924,-0.270924,-0.270924,-0.270924,-0.270924 +-0.263428,-0.263428,-0.263428,-0.263428,-0.263428,-0.263428 +-0.256039,-0.256039,-0.256039,-0.256039,-0.256039,-0.256039 +-0.248756,-0.248756,-0.248756,-0.248756,-0.248756,-0.248756 +-0.241579,-0.241579,-0.241579,-0.241579,-0.241579,-0.241579 +-0.234509,-0.234509,-0.234509,-0.234509,-0.234509,-0.234509 +-0.227544,-0.227544,-0.227544,-0.227544,-0.227544,-0.227544 +-0.220686,-0.220686,-0.220686,-0.220686,-0.220686,-0.220686 +-0.213934,-0.213934,-0.213934,-0.213934,-0.213934,-0.213934 +-0.207289,-0.207289,-0.207289,-0.207289,-0.207289,-0.207289 +-0.200749,-0.200749,-0.200749,-0.200749,-0.200749,-0.200749 +-0.194316,-0.194316,-0.194316,-0.194316,-0.194316,-0.194316 +-0.187989,-0.187989,-0.187989,-0.187989,-0.187989,-0.187989 +-0.181769,-0.181769,-0.181769,-0.181769,-0.181769,-0.181769 +-0.175654,-0.175654,-0.175654,-0.175654,-0.175654,-0.175654 +-0.169646,-0.169646,-0.169646,-0.169646,-0.169646,-0.169646 +-0.163744,-0.163744,-0.163744,-0.163744,-0.163744,-0.163744 +-0.157949,-0.157949,-0.157949,-0.157949,-0.157949,-0.157949 +-0.152259,-0.152259,-0.152259,-0.152259,-0.152259,-0.152259 +-0.146676,-0.146676,-0.146676,-0.146676,-0.146676,-0.146676 +-0.141199,-0.141199,-0.141199,-0.141199,-0.141199,-0.141199 +-0.135829,-0.135829,-0.135829,-0.135829,-0.135829,-0.135829 +-0.130564,-0.130564,-0.130564,-0.130564,-0.130564,-0.130564 +-0.125406,-0.125406,-0.125406,-0.125406,-0.125406,-0.125406 +-0.120354,-0.120354,-0.120354,-0.120354,-0.120354,-0.120354 +-0.115409,-0.115409,-0.115409,-0.115409,-0.115409,-0.115409 +-0.110569,-0.110569,-0.110569,-0.110569,-0.110569,-0.110569 +-0.105836,-0.105836,-0.105836,-0.105836,-0.105836,-0.105836 +-0.101209,-0.101209,-0.101209,-0.101209,-0.101209,-0.101209 +-0.096689,-0.096689,-0.096689,-0.096689,-0.096689,-0.096689 +-0.092275,-0.092275,-0.092275,-0.092275,-0.092275,-0.092275 +-0.087966,-0.087966,-0.087966,-0.087966,-0.087966,-0.087966 +-0.083765,-0.083765,-0.083765,-0.083765,-0.083765,-0.083765 +-0.079669,-0.079669,-0.079669,-0.079669,-0.079669,-0.079669 +-0.07568,-0.07568,-0.07568,-0.07568,-0.07568,-0.07568 +-0.071796,-0.071796,-0.071796,-0.071796,-0.071796,-0.071796 +-0.06802,-0.06802,-0.06802,-0.06802,-0.06802,-0.06802 +-0.064349,-0.064349,-0.064349,-0.064349,-0.064349,-0.064349 +-0.060785,-0.060785,-0.060785,-0.060785,-0.060785,-0.060785 +-0.057327,-0.057327,-0.057327,-0.057327,-0.057327,-0.057327 +-0.053975,-0.053975,-0.053975,-0.053975,-0.053975,-0.053975 +-0.050729,-0.050729,-0.050729,-0.050729,-0.050729,-0.050729 +-0.04759,-0.04759,-0.04759,-0.04759,-0.04759,-0.04759 +-0.044557,-0.044557,-0.044557,-0.044557,-0.044557,-0.044557 +-0.04163,-0.04163,-0.04163,-0.04163,-0.04163,-0.04163 +-0.038809,-0.038809,-0.038809,-0.038809,-0.038809,-0.038809 +-0.036095,-0.036095,-0.036095,-0.036095,-0.036095,-0.036095 +-0.033487,-0.033487,-0.033487,-0.033487,-0.033487,-0.033487 +-0.030985,-0.030985,-0.030985,-0.030985,-0.030985,-0.030985 +-0.028589,-0.028589,-0.028589,-0.028589,-0.028589,-0.028589 +-0.0263,-0.0263,-0.0263,-0.0263,-0.0263,-0.0263 +-0.024117,-0.024117,-0.024117,-0.024117,-0.024117,-0.024117 +-0.02204,-0.02204,-0.02204,-0.02204,-0.02204,-0.02204 +-0.020069,-0.020069,-0.020069,-0.020069,-0.020069,-0.020069 +-0.018205,-0.018205,-0.018205,-0.018205,-0.018205,-0.018205 +-0.016447,-0.016447,-0.016447,-0.016447,-0.016447,-0.016447 +-0.014795,-0.014795,-0.014795,-0.014795,-0.014795,-0.014795 +-0.013249,-0.013249,-0.013249,-0.013249,-0.013249,-0.013249 +-0.01181,-0.01181,-0.01181,-0.01181,-0.01181,-0.01181 +-0.010477,-0.010477,-0.010477,-0.010477,-0.010477,-0.010477 +-0.009248,-0.009248,-0.009248,-0.009248,-0.009248,-0.009248 +-0.008119,-0.008119,-0.008119,-0.008119,-0.008119,-0.008119 +-0.007086,-0.007086,-0.007086,-0.007086,-0.007086,-0.007086 +-0.006144,-0.006144,-0.006144,-0.006144,-0.006144,-0.006144 +-0.00529,-0.00529,-0.00529,-0.00529,-0.00529,-0.00529 +-0.004519,-0.004519,-0.004519,-0.004519,-0.004519,-0.004519 +-0.003827,-0.003827,-0.003827,-0.003827,-0.003827,-0.003827 +-0.003209,-0.003209,-0.003209,-0.003209,-0.003209,-0.003209 +-0.002662,-0.002662,-0.002662,-0.002662,-0.002662,-0.002662 +-0.00218,-0.00218,-0.00218,-0.00218,-0.00218,-0.00218 +-0.001761,-0.001761,-0.001761,-0.001761,-0.001761,-0.001761 +-0.001399,-0.001399,-0.001399,-0.001399,-0.001399,-0.001399 +-0.001091,-0.001091,-0.001091,-0.001091,-0.001091,-0.001091 +-0.000831,-0.000831,-0.000831,-0.000831,-0.000831,-0.000831 +-0.000616,-0.000616,-0.000616,-0.000616,-0.000616,-0.000616 +-0.000442,-0.000442,-0.000442,-0.000442,-0.000442,-0.000442 +-0.000304,-0.000304,-0.000304,-0.000304,-0.000304,-0.000304 +-0.000199,-0.000199,-0.000199,-0.000199,-0.000199,-0.000199 +-0.000121,-0.000121,-0.000121,-0.000121,-0.000121,-0.000121 +-0.000067,-0.000067,-0.000067,-0.000067,-0.000067,-0.000067 +-0.000032,-0.000032,-0.000032,-0.000032,-0.000032,-0.000032 +-0.000012,-0.000012,-0.000012,-0.000012,-0.000012,-0.000012 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0.000022,0.000022,0.000022,0.000022,0.000022,0.000022 +0.000053,0.000053,0.000053,0.000053,0.000053,0.000053 +0.000104,0.000104,0.000104,0.000104,0.000104,0.000104 +0.00018,0.00018,0.00018,0.00018,0.00018,0.00018 +0.000286,0.000286,0.000286,0.000286,0.000286,0.000286 +0.000427,0.000427,0.000427,0.000427,0.000427,0.000427 +0.000607,0.000607,0.000607,0.000607,0.000607,0.000607 +0.000833,0.000833,0.000833,0.000833,0.000833,0.000833 +0.001109,0.001109,0.001109,0.001109,0.001109,0.001109 +0.00144,0.00144,0.00144,0.00144,0.00144,0.00144 +0.001831,0.001831,0.001831,0.001831,0.001831,0.001831 +0.002287,0.002287,0.002287,0.002287,0.002287,0.002287 +0.002812,0.002812,0.002812,0.002812,0.002812,0.002812 +0.003413,0.003413,0.003413,0.003413,0.003413,0.003413 +0.004094,0.004094,0.004094,0.004094,0.004094,0.004094 +0.00486,0.00486,0.00486,0.00486,0.00486,0.00486 +0.005716,0.005716,0.005716,0.005716,0.005716,0.005716 +0.006667,0.006667,0.006667,0.006667,0.006667,0.006667 +0.007717,0.007717,0.007717,0.007717,0.007717,0.007717 +0.008873,0.008873,0.008873,0.008873,0.008873,0.008873 +0.010139,0.010139,0.010139,0.010139,0.010139,0.010139 +0.01152,0.01152,0.01152,0.01152,0.01152,0.01152 +0.013021,0.013021,0.013021,0.013021,0.013021,0.013021 +0.014646,0.014646,0.014646,0.014646,0.014646,0.014646 +0.016396,0.016396,0.016396,0.016396,0.016396,0.016396 +0.018271,0.018271,0.018271,0.018271,0.018271,0.018271 +0.020271,0.020271,0.020271,0.020271,0.020271,0.020271 +0.022396,0.022396,0.022396,0.022396,0.022396,0.022396 +0.024646,0.024646,0.024646,0.024646,0.024646,0.024646 +0.027021,0.027021,0.027021,0.027021,0.027021,0.027021 +0.029521,0.029521,0.029521,0.029521,0.029521,0.029521 +0.032146,0.032146,0.032146,0.032146,0.032146,0.032146 +0.034896,0.034896,0.034896,0.034896,0.034896,0.034896 +0.037771,0.037771,0.037771,0.037771,0.037771,0.037771 +0.040771,0.040771,0.040771,0.040771,0.040771,0.040771 +0.043896,0.043896,0.043896,0.043896,0.043896,0.043896 +0.047146,0.047146,0.047146,0.047146,0.047146,0.047146 +0.050521,0.050521,0.050521,0.050521,0.050521,0.050521 +0.054021,0.054021,0.054021,0.054021,0.054021,0.054021 +0.057646,0.057646,0.057646,0.057646,0.057646,0.057646 +0.061396,0.061396,0.061396,0.061396,0.061396,0.061396 +0.065271,0.065271,0.065271,0.065271,0.065271,0.065271 +0.069271,0.069271,0.069271,0.069271,0.069271,0.069271 +0.073396,0.073396,0.073396,0.073396,0.073396,0.073396 +0.077646,0.077646,0.077646,0.077646,0.077646,0.077646 +0.082021,0.082021,0.082021,0.082021,0.082021,0.082021 +0.086521,0.086521,0.086521,0.086521,0.086521,0.086521 +0.091146,0.091146,0.091146,0.091146,0.091146,0.091146 +0.095896,0.095896,0.095896,0.095896,0.095896,0.095896 +0.100771,0.100771,0.100771,0.100771,0.100771,0.100771 +0.105771,0.105771,0.105771,0.105771,0.105771,0.105771 +0.110896,0.110896,0.110896,0.110896,0.110896,0.110896 +0.116146,0.116146,0.116146,0.116146,0.116146,0.116146 +0.121521,0.121521,0.121521,0.121521,0.121521,0.121521 +0.127021,0.127021,0.127021,0.127021,0.127021,0.127021 +0.132646,0.132646,0.132646,0.132646,0.132646,0.132646 +0.138396,0.138396,0.138396,0.138396,0.138396,0.138396 +0.144271,0.144271,0.144271,0.144271,0.144271,0.144271 +0.150271,0.150271,0.150271,0.150271,0.150271,0.150271 +0.156396,0.156396,0.156396,0.156396,0.156396,0.156396 +0.162646,0.162646,0.162646,0.162646,0.162646,0.162646 +0.169021,0.169021,0.169021,0.169021,0.169021,0.169021 +0.175521,0.175521,0.175521,0.175521,0.175521,0.175521 +0.182146,0.182146,0.182146,0.182146,0.182146,0.182146 +0.188896,0.188896,0.188896,0.188896,0.188896,0.188896 +0.195771,0.195771,0.195771,0.195771,0.195771,0.195771 +0.202771,0.202771,0.202771,0.202771,0.202771,0.202771 +0.209896,0.209896,0.209896,0.209896,0.209896,0.209896 +0.217146,0.217146,0.217146,0.217146,0.217146,0.217146 +0.224521,0.224521,0.224521,0.224521,0.224521,0.224521 +0.232021,0.232021,0.232021,0.232021,0.232021,0.232021 +0.239646,0.239646,0.239646,0.239646,0.239646,0.239646 +0.247396,0.247396,0.247396,0.247396,0.247396,0.247396 +0.255271,0.255271,0.255271,0.255271,0.255271,0.255271 +0.263271,0.263271,0.263271,0.263271,0.263271,0.263271 +0.271396,0.271396,0.271396,0.271396,0.271396,0.271396 +0.279646,0.279646,0.279646,0.279646,0.279646,0.279646 +0.288021,0.288021,0.288021,0.288021,0.288021,0.288021 +0.296521,0.296521,0.296521,0.296521,0.296521,0.296521 +0.305146,0.305146,0.305146,0.305146,0.305146,0.305146 +0.313896,0.313896,0.313896,0.313896,0.313896,0.313896 +0.322771,0.322771,0.322771,0.322771,0.322771,0.322771 +0.331771,0.331771,0.331771,0.331771,0.331771,0.331771 +0.340896,0.340896,0.340896,0.340896,0.340896,0.340896 +0.350146,0.350146,0.350146,0.350146,0.350146,0.350146 +0.359521,0.359521,0.359521,0.359521,0.359521,0.359521 +0.369021,0.369021,0.369021,0.369021,0.369021,0.369021 +0.378646,0.378646,0.378646,0.378646,0.378646,0.378646 +0.388396,0.388396,0.388396,0.388396,0.388396,0.388396 +0.398271,0.398271,0.398271,0.398271,0.398271,0.398271 +0.408271,0.408271,0.408271,0.408271,0.408271,0.408271 +0.418396,0.418396,0.418396,0.418396,0.418396,0.418396 +0.428646,0.428646,0.428646,0.428646,0.428646,0.428646 +0.439021,0.439021,0.439021,0.439021,0.439021,0.439021 +0.449521,0.449521,0.449521,0.449521,0.449521,0.449521 +0.460146,0.460146,0.460146,0.460146,0.460146,0.460146 +0.470896,0.470896,0.470896,0.470896,0.470896,0.470896 +0.481771,0.481771,0.481771,0.481771,0.481771,0.481771 +0.492771,0.492771,0.492771,0.492771,0.492771,0.492771 +0.503896,0.503896,0.503896,0.503896,0.503896,0.503896 +0.515146,0.515146,0.515146,0.515146,0.515146,0.515146 +0.526521,0.526521,0.526521,0.526521,0.526521,0.526521 +0.538021,0.538021,0.538021,0.538021,0.538021,0.538021 +0.549646,0.549646,0.549646,0.549646,0.549646,0.549646 +0.561396,0.561396,0.561396,0.561396,0.561396,0.561396 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.585255,0.585255,0.585255,0.585255,0.585255,0.585255 +0.597354,0.597354,0.597354,0.597354,0.597354,0.597354 +0.609561,0.609561,0.609561,0.609561,0.609561,0.609561 +0.621868,0.621868,0.621868,0.621868,0.621868,0.621868 +0.634273,0.634273,0.634273,0.634273,0.634273,0.634273 +0.646769,0.646769,0.646769,0.646769,0.646769,0.646769 +0.659351,0.659351,0.659351,0.659351,0.659351,0.659351 +0.672015,0.672015,0.672015,0.672015,0.672015,0.672015 +0.684756,0.684756,0.684756,0.684756,0.684756,0.684756 +0.697569,0.697569,0.697569,0.697569,0.697569,0.697569 +0.710448,0.710448,0.710448,0.710448,0.710448,0.710448 +0.723388,0.723388,0.723388,0.723388,0.723388,0.723388 +0.736386,0.736386,0.736386,0.736386,0.736386,0.736386 +0.749434,0.749434,0.749434,0.749434,0.749434,0.749434 +0.76253,0.76253,0.76253,0.76253,0.76253,0.76253 +0.775667,0.775667,0.775667,0.775667,0.775667,0.775667 +0.788841,0.788841,0.788841,0.788841,0.788841,0.788841 +0.802046,0.802046,0.802046,0.802046,0.802046,0.802046 +0.815278,0.815278,0.815278,0.815278,0.815278,0.815278 +0.828531,0.828531,0.828531,0.828531,0.828531,0.828531 +0.841801,0.841801,0.841801,0.841801,0.841801,0.841801 +0.855083,0.855083,0.855083,0.855083,0.855083,0.855083 +0.868372,0.868372,0.868372,0.868372,0.868372,0.868372 +0.881662,0.881662,0.881662,0.881662,0.881662,0.881662 +0.894948,0.894948,0.894948,0.894948,0.894948,0.894948 +0.908226,0.908226,0.908226,0.908226,0.908226,0.908226 +0.921491,0.921491,0.921491,0.921491,0.921491,0.921491 +0.934737,0.934737,0.934737,0.934737,0.934737,0.934737 +0.94796,0.94796,0.94796,0.94796,0.94796,0.94796 +0.961155,0.961155,0.961155,0.961155,0.961155,0.961155 +0.974316,0.974316,0.974316,0.974316,0.974316,0.974316 +0.987439,0.987439,0.987439,0.987439,0.987439,0.987439 +1.000519,1.000519,1.000519,1.000519,1.000519,1.000519 +1.01355,1.01355,1.01355,1.01355,1.01355,1.01355 +1.026527,1.026527,1.026527,1.026527,1.026527,1.026527 +1.039447,1.039447,1.039447,1.039447,1.039447,1.039447 +1.052302,1.052302,1.052302,1.052302,1.052302,1.052302 +1.06509,1.06509,1.06509,1.06509,1.06509,1.06509 +1.077804,1.077804,1.077804,1.077804,1.077804,1.077804 +1.09044,1.09044,1.09044,1.09044,1.09044,1.09044 +1.102992,1.102992,1.102992,1.102992,1.102992,1.102992 +1.115456,1.115456,1.115456,1.115456,1.115456,1.115456 +1.127826,1.127826,1.127826,1.127826,1.127826,1.127826 +1.140099,1.140099,1.140099,1.140099,1.140099,1.140099 +1.152267,1.152267,1.152267,1.152267,1.152267,1.152267 +1.164328,1.164328,1.164328,1.164328,1.164328,1.164328 +1.176275,1.176275,1.176275,1.176275,1.176275,1.176275 +1.188103,1.188103,1.188103,1.188103,1.188103,1.188103 +1.199809,1.199809,1.199809,1.199809,1.199809,1.199809 +1.211389,1.211389,1.211389,1.211389,1.211389,1.211389 +1.222845,1.222845,1.222845,1.222845,1.222845,1.222845 +1.234175,1.234175,1.234175,1.234175,1.234175,1.234175 +1.245381,1.245381,1.245381,1.245381,1.245381,1.245381 +1.256461,1.256461,1.256461,1.256461,1.256461,1.256461 +1.267417,1.267417,1.267417,1.267417,1.267417,1.267417 +1.278247,1.278247,1.278247,1.278247,1.278247,1.278247 +1.288953,1.288953,1.288953,1.288953,1.288953,1.288953 +1.299533,1.299533,1.299533,1.299533,1.299533,1.299533 +1.309989,1.309989,1.309989,1.309989,1.309989,1.309989 +1.320319,1.320319,1.320319,1.320319,1.320319,1.320319 +1.330525,1.330525,1.330525,1.330525,1.330525,1.330525 +1.340605,1.340605,1.340605,1.340605,1.340605,1.340605 +1.35056,1.35056,1.35056,1.35056,1.35056,1.35056 +1.360391,1.360391,1.360391,1.360391,1.360391,1.360391 +1.370096,1.370096,1.370096,1.370096,1.370096,1.370096 +1.379677,1.379677,1.379677,1.379677,1.379677,1.379677 +1.389132,1.389132,1.389132,1.389132,1.389132,1.389132 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.407668,1.407668,1.407668,1.407668,1.407668,1.407668 +1.416749,1.416749,1.416749,1.416749,1.416749,1.416749 +1.425704,1.425704,1.425704,1.425704,1.425704,1.425704 +1.434535,1.434535,1.434535,1.434535,1.434535,1.434535 +1.44324,1.44324,1.44324,1.44324,1.44324,1.44324 +1.451821,1.451821,1.451821,1.451821,1.451821,1.451821 +1.460276,1.460276,1.460276,1.460276,1.460276,1.460276 +1.468607,1.468607,1.468607,1.468607,1.468607,1.468607 +1.476812,1.476812,1.476812,1.476812,1.476812,1.476812 +1.484893,1.484893,1.484893,1.484893,1.484893,1.484893 +1.492848,1.492848,1.492848,1.492848,1.492848,1.492848 +1.500679,1.500679,1.500679,1.500679,1.500679,1.500679 +1.508384,1.508384,1.508384,1.508384,1.508384,1.508384 +1.515965,1.515965,1.515965,1.515965,1.515965,1.515965 +1.52342,1.52342,1.52342,1.52342,1.52342,1.52342 +1.530751,1.530751,1.530751,1.530751,1.530751,1.530751 +1.537956,1.537956,1.537956,1.537956,1.537956,1.537956 +1.545037,1.545037,1.545037,1.545037,1.545037,1.545037 +1.551992,1.551992,1.551992,1.551992,1.551992,1.551992 +1.558823,1.558823,1.558823,1.558823,1.558823,1.558823 +1.565528,1.565528,1.565528,1.565528,1.565528,1.565528 +1.572108,1.572108,1.572108,1.572108,1.572108,1.572108 +1.578564,1.578564,1.578564,1.578564,1.578564,1.578564 +1.584894,1.584894,1.584894,1.584894,1.584894,1.584894 +1.5911,1.5911,1.5911,1.5911,1.5911,1.5911 +1.59718,1.59718,1.59718,1.59718,1.59718,1.59718 +1.603136,1.603136,1.603136,1.603136,1.603136,1.603136 +1.608966,1.608966,1.608966,1.608966,1.608966,1.608966 +1.614672,1.614672,1.614672,1.614672,1.614672,1.614672 +1.620252,1.620252,1.620252,1.620252,1.620252,1.620252 +1.625708,1.625708,1.625708,1.625708,1.625708,1.625708 +1.631038,1.631038,1.631038,1.631038,1.631038,1.631038 +1.636244,1.636244,1.636244,1.636244,1.636244,1.636244 +1.641324,1.641324,1.641324,1.641324,1.641324,1.641324 +1.64628,1.64628,1.64628,1.64628,1.64628,1.64628 +1.65111,1.65111,1.65111,1.65111,1.65111,1.65111 +1.655816,1.655816,1.655816,1.655816,1.655816,1.655816 +1.660396,1.660396,1.660396,1.660396,1.660396,1.660396 +1.664852,1.664852,1.664852,1.664852,1.664852,1.664852 +1.669182,1.669182,1.669182,1.669182,1.669182,1.669182 +1.673388,1.673388,1.673388,1.673388,1.673388,1.673388 +1.677468,1.677468,1.677468,1.677468,1.677468,1.677468 +1.681424,1.681424,1.681424,1.681424,1.681424,1.681424 +1.685254,1.685254,1.685254,1.685254,1.685254,1.685254 +1.68896,1.68896,1.68896,1.68896,1.68896,1.68896 +1.69254,1.69254,1.69254,1.69254,1.69254,1.69254 +1.695996,1.695996,1.695996,1.695996,1.695996,1.695996 +1.699326,1.699326,1.699326,1.699326,1.699326,1.699326 +1.702531,1.702531,1.702531,1.702531,1.702531,1.702531 +1.705612,1.705612,1.705612,1.705612,1.705612,1.705612 +1.708567,1.708567,1.708567,1.708567,1.708567,1.708567 +1.711398,1.711398,1.711398,1.711398,1.711398,1.711398 +1.714103,1.714103,1.714103,1.714103,1.714103,1.714103 +1.716684,1.716684,1.716684,1.716684,1.716684,1.716684 +1.719139,1.719139,1.719139,1.719139,1.719139,1.719139 +1.72147,1.72147,1.72147,1.72147,1.72147,1.72147 +1.723675,1.723675,1.723675,1.723675,1.723675,1.723675 +1.725756,1.725756,1.725756,1.725756,1.725756,1.725756 +1.727711,1.727711,1.727711,1.727711,1.727711,1.727711 +1.729542,1.729542,1.729542,1.729542,1.729542,1.729542 +1.731247,1.731247,1.731247,1.731247,1.731247,1.731247 +1.732828,1.732828,1.732828,1.732828,1.732828,1.732828 +1.734285,1.734285,1.734285,1.734285,1.734285,1.734285 +1.735625,1.735625,1.735625,1.735625,1.735625,1.735625 +1.736851,1.736851,1.736851,1.736851,1.736851,1.736851 +1.737969,1.737969,1.737969,1.737969,1.737969,1.737969 +1.738983,1.738983,1.738983,1.738983,1.738983,1.738983 +1.7399,1.7399,1.7399,1.7399,1.7399,1.7399 +1.740723,1.740723,1.740723,1.740723,1.740723,1.740723 +1.741458,1.741458,1.741458,1.741458,1.741458,1.741458 +1.74211,1.74211,1.74211,1.74211,1.74211,1.74211 +1.742683,1.742683,1.742683,1.742683,1.742683,1.742683 +1.743183,1.743183,1.743183,1.743183,1.743183,1.743183 +1.743616,1.743616,1.743616,1.743616,1.743616,1.743616 +1.743984,1.743984,1.743984,1.743984,1.743984,1.743984 +1.744295,1.744295,1.744295,1.744295,1.744295,1.744295 +1.744553,1.744553,1.744553,1.744553,1.744553,1.744553 +1.744762,1.744762,1.744762,1.744762,1.744762,1.744762 +1.744928,1.744928,1.744928,1.744928,1.744928,1.744928 +1.745056,1.745056,1.745056,1.745056,1.745056,1.745056 +1.74515,1.74515,1.74515,1.74515,1.74515,1.74515 +1.745217,1.745217,1.745217,1.745217,1.745217,1.745217 +1.74526,1.74526,1.74526,1.74526,1.74526,1.74526 +1.745285,1.745285,1.745285,1.745285,1.745285,1.745285 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.745278,1.745278,1.745278,1.745278,1.745278,1.745278 +1.745247,1.745247,1.745247,1.745247,1.745247,1.745247 +1.745196,1.745196,1.745196,1.745196,1.745196,1.745196 +1.74512,1.74512,1.74512,1.74512,1.74512,1.74512 +1.745014,1.745014,1.745014,1.745014,1.745014,1.745014 +1.744873,1.744873,1.744873,1.744873,1.744873,1.744873 +1.744693,1.744693,1.744693,1.744693,1.744693,1.744693 +1.744467,1.744467,1.744467,1.744467,1.744467,1.744467 +1.744191,1.744191,1.744191,1.744191,1.744191,1.744191 +1.74386,1.74386,1.74386,1.74386,1.74386,1.74386 +1.743469,1.743469,1.743469,1.743469,1.743469,1.743469 +1.743013,1.743013,1.743013,1.743013,1.743013,1.743013 +1.742488,1.742488,1.742488,1.742488,1.742488,1.742488 +1.741887,1.741887,1.741887,1.741887,1.741887,1.741887 +1.741206,1.741206,1.741206,1.741206,1.741206,1.741206 +1.74044,1.74044,1.74044,1.74044,1.74044,1.74044 +1.739584,1.739584,1.739584,1.739584,1.739584,1.739584 +1.738633,1.738633,1.738633,1.738633,1.738633,1.738633 +1.737583,1.737583,1.737583,1.737583,1.737583,1.737583 +1.736427,1.736427,1.736427,1.736427,1.736427,1.736427 +1.735161,1.735161,1.735161,1.735161,1.735161,1.735161 +1.73378,1.73378,1.73378,1.73378,1.73378,1.73378 +1.732279,1.732279,1.732279,1.732279,1.732279,1.732279 +1.730654,1.730654,1.730654,1.730654,1.730654,1.730654 +1.728904,1.728904,1.728904,1.728904,1.728904,1.728904 +1.727029,1.727029,1.727029,1.727029,1.727029,1.727029 +1.725029,1.725029,1.725029,1.725029,1.725029,1.725029 +1.722904,1.722904,1.722904,1.722904,1.722904,1.722904 +1.720654,1.720654,1.720654,1.720654,1.720654,1.720654 +1.718279,1.718279,1.718279,1.718279,1.718279,1.718279 +1.715779,1.715779,1.715779,1.715779,1.715779,1.715779 +1.713154,1.713154,1.713154,1.713154,1.713154,1.713154 +1.710404,1.710404,1.710404,1.710404,1.710404,1.710404 +1.707529,1.707529,1.707529,1.707529,1.707529,1.707529 +1.704529,1.704529,1.704529,1.704529,1.704529,1.704529 +1.701404,1.701404,1.701404,1.701404,1.701404,1.701404 +1.698154,1.698154,1.698154,1.698154,1.698154,1.698154 +1.694779,1.694779,1.694779,1.694779,1.694779,1.694779 +1.691279,1.691279,1.691279,1.691279,1.691279,1.691279 +1.687654,1.687654,1.687654,1.687654,1.687654,1.687654 +1.683904,1.683904,1.683904,1.683904,1.683904,1.683904 +1.680029,1.680029,1.680029,1.680029,1.680029,1.680029 +1.676029,1.676029,1.676029,1.676029,1.676029,1.676029 +1.671904,1.671904,1.671904,1.671904,1.671904,1.671904 +1.667654,1.667654,1.667654,1.667654,1.667654,1.667654 +1.663279,1.663279,1.663279,1.663279,1.663279,1.663279 +1.658779,1.658779,1.658779,1.658779,1.658779,1.658779 +1.654154,1.654154,1.654154,1.654154,1.654154,1.654154 +1.649404,1.649404,1.649404,1.649404,1.649404,1.649404 +1.644529,1.644529,1.644529,1.644529,1.644529,1.644529 +1.639529,1.639529,1.639529,1.639529,1.639529,1.639529 +1.634404,1.634404,1.634404,1.634404,1.634404,1.634404 +1.629154,1.629154,1.629154,1.629154,1.629154,1.629154 +1.623779,1.623779,1.623779,1.623779,1.623779,1.623779 +1.618279,1.618279,1.618279,1.618279,1.618279,1.618279 +1.612654,1.612654,1.612654,1.612654,1.612654,1.612654 +1.606904,1.606904,1.606904,1.606904,1.606904,1.606904 +1.601029,1.601029,1.601029,1.601029,1.601029,1.601029 +1.595029,1.595029,1.595029,1.595029,1.595029,1.595029 +1.588904,1.588904,1.588904,1.588904,1.588904,1.588904 +1.582654,1.582654,1.582654,1.582654,1.582654,1.582654 +1.576279,1.576279,1.576279,1.576279,1.576279,1.576279 +1.569779,1.569779,1.569779,1.569779,1.569779,1.569779 +1.563154,1.563154,1.563154,1.563154,1.563154,1.563154 +1.556404,1.556404,1.556404,1.556404,1.556404,1.556404 +1.549529,1.549529,1.549529,1.549529,1.549529,1.549529 +1.542529,1.542529,1.542529,1.542529,1.542529,1.542529 +1.535404,1.535404,1.535404,1.535404,1.535404,1.535404 +1.528154,1.528154,1.528154,1.528154,1.528154,1.528154 +1.520779,1.520779,1.520779,1.520779,1.520779,1.520779 +1.513279,1.513279,1.513279,1.513279,1.513279,1.513279 +1.505654,1.505654,1.505654,1.505654,1.505654,1.505654 +1.497904,1.497904,1.497904,1.497904,1.497904,1.497904 +1.490029,1.490029,1.490029,1.490029,1.490029,1.490029 +1.482029,1.482029,1.482029,1.482029,1.482029,1.482029 +1.473904,1.473904,1.473904,1.473904,1.473904,1.473904 +1.465654,1.465654,1.465654,1.465654,1.465654,1.465654 +1.457279,1.457279,1.457279,1.457279,1.457279,1.457279 +1.448779,1.448779,1.448779,1.448779,1.448779,1.448779 +1.440154,1.440154,1.440154,1.440154,1.440154,1.440154 +1.431404,1.431404,1.431404,1.431404,1.431404,1.431404 +1.422529,1.422529,1.422529,1.422529,1.422529,1.422529 +1.413529,1.413529,1.413529,1.413529,1.413529,1.413529 +1.404404,1.404404,1.404404,1.404404,1.404404,1.404404 +1.395154,1.395154,1.395154,1.395154,1.395154,1.395154 +1.385779,1.385779,1.385779,1.385779,1.385779,1.385779 +1.376279,1.376279,1.376279,1.376279,1.376279,1.376279 +1.366654,1.366654,1.366654,1.366654,1.366654,1.366654 +1.356904,1.356904,1.356904,1.356904,1.356904,1.356904 +1.347029,1.347029,1.347029,1.347029,1.347029,1.347029 +1.337029,1.337029,1.337029,1.337029,1.337029,1.337029 +1.326904,1.326904,1.326904,1.326904,1.326904,1.326904 +1.316654,1.316654,1.316654,1.316654,1.316654,1.316654 +1.306279,1.306279,1.306279,1.306279,1.306279,1.306279 +1.295779,1.295779,1.295779,1.295779,1.295779,1.295779 +1.285154,1.285154,1.285154,1.285154,1.285154,1.285154 +1.274404,1.274404,1.274404,1.274404,1.274404,1.274404 +1.263529,1.263529,1.263529,1.263529,1.263529,1.263529 +1.252529,1.252529,1.252529,1.252529,1.252529,1.252529 +1.241404,1.241404,1.241404,1.241404,1.241404,1.241404 +1.230154,1.230154,1.230154,1.230154,1.230154,1.230154 +1.218779,1.218779,1.218779,1.218779,1.218779,1.218779 +1.207279,1.207279,1.207279,1.207279,1.207279,1.207279 +1.195654,1.195654,1.195654,1.195654,1.195654,1.195654 +1.183904,1.183904,1.183904,1.183904,1.183904,1.183904 +1.172033,1.172033,1.172033,1.172033,1.172033,1.172033 +1.160045,1.160045,1.160045,1.160045,1.160045,1.160045 +1.147946,1.147946,1.147946,1.147946,1.147946,1.147946 +1.135739,1.135739,1.135739,1.135739,1.135739,1.135739 +1.123432,1.123432,1.123432,1.123432,1.123432,1.123432 +1.111027,1.111027,1.111027,1.111027,1.111027,1.111027 +1.098531,1.098531,1.098531,1.098531,1.098531,1.098531 +1.085949,1.085949,1.085949,1.085949,1.085949,1.085949 +1.073285,1.073285,1.073285,1.073285,1.073285,1.073285 +1.060544,1.060544,1.060544,1.060544,1.060544,1.060544 +1.047731,1.047731,1.047731,1.047731,1.047731,1.047731 +1.034852,1.034852,1.034852,1.034852,1.034852,1.034852 +1.021912,1.021912,1.021912,1.021912,1.021912,1.021912 +1.008914,1.008914,1.008914,1.008914,1.008914,1.008914 +0.995866,0.995866,0.995866,0.995866,0.995866,0.995866 +0.98277,0.98277,0.98277,0.98277,0.98277,0.98277 +0.969633,0.969633,0.969633,0.969633,0.969633,0.969633 +0.956459,0.956459,0.956459,0.956459,0.956459,0.956459 +0.943254,0.943254,0.943254,0.943254,0.943254,0.943254 +0.930022,0.930022,0.930022,0.930022,0.930022,0.930022 +0.916769,0.916769,0.916769,0.916769,0.916769,0.916769 +0.903499,0.903499,0.903499,0.903499,0.903499,0.903499 +0.890217,0.890217,0.890217,0.890217,0.890217,0.890217 +0.876928,0.876928,0.876928,0.876928,0.876928,0.876928 +0.863638,0.863638,0.863638,0.863638,0.863638,0.863638 +0.850352,0.850352,0.850352,0.850352,0.850352,0.850352 +0.837074,0.837074,0.837074,0.837074,0.837074,0.837074 +0.823809,0.823809,0.823809,0.823809,0.823809,0.823809 +0.810563,0.810563,0.810563,0.810563,0.810563,0.810563 +0.79734,0.79734,0.79734,0.79734,0.79734,0.79734 +0.784145,0.784145,0.784145,0.784145,0.784145,0.784145 +0.770984,0.770984,0.770984,0.770984,0.770984,0.770984 +0.757861,0.757861,0.757861,0.757861,0.757861,0.757861 +0.744781,0.744781,0.744781,0.744781,0.744781,0.744781 +0.73175,0.73175,0.73175,0.73175,0.73175,0.73175 +0.718773,0.718773,0.718773,0.718773,0.718773,0.718773 +0.705853,0.705853,0.705853,0.705853,0.705853,0.705853 +0.692998,0.692998,0.692998,0.692998,0.692998,0.692998 +0.68021,0.68021,0.68021,0.68021,0.68021,0.68021 +0.667496,0.667496,0.667496,0.667496,0.667496,0.667496 +0.65486,0.65486,0.65486,0.65486,0.65486,0.65486 +0.642308,0.642308,0.642308,0.642308,0.642308,0.642308 +0.629844,0.629844,0.629844,0.629844,0.629844,0.629844 +0.617474,0.617474,0.617474,0.617474,0.617474,0.617474 +0.605201,0.605201,0.605201,0.605201,0.605201,0.605201 +0.593033,0.593033,0.593033,0.593033,0.593033,0.593033 +0.580972,0.580972,0.580972,0.580972,0.580972,0.580972 +0.569025,0.569025,0.569025,0.569025,0.569025,0.569025 +0.557197,0.557197,0.557197,0.557197,0.557197,0.557197 +0.545491,0.545491,0.545491,0.545491,0.545491,0.545491 +0.533911,0.533911,0.533911,0.533911,0.533911,0.533911 +0.522455,0.522455,0.522455,0.522455,0.522455,0.522455 +0.511125,0.511125,0.511125,0.511125,0.511125,0.511125 +0.499919,0.499919,0.499919,0.499919,0.499919,0.499919 +0.488839,0.488839,0.488839,0.488839,0.488839,0.488839 +0.477883,0.477883,0.477883,0.477883,0.477883,0.477883 +0.467053,0.467053,0.467053,0.467053,0.467053,0.467053 +0.456347,0.456347,0.456347,0.456347,0.456347,0.456347 +0.445767,0.445767,0.445767,0.445767,0.445767,0.445767 +0.435311,0.435311,0.435311,0.435311,0.435311,0.435311 +0.424981,0.424981,0.424981,0.424981,0.424981,0.424981 +0.414775,0.414775,0.414775,0.414775,0.414775,0.414775 +0.404695,0.404695,0.404695,0.404695,0.404695,0.404695 +0.39474,0.39474,0.39474,0.39474,0.39474,0.39474 +0.384909,0.384909,0.384909,0.384909,0.384909,0.384909 +0.375204,0.375204,0.375204,0.375204,0.375204,0.375204 +0.365623,0.365623,0.365623,0.365623,0.365623,0.365623 +0.356168,0.356168,0.356168,0.356168,0.356168,0.356168 +0.346837,0.346837,0.346837,0.346837,0.346837,0.346837 +0.337632,0.337632,0.337632,0.337632,0.337632,0.337632 +0.328551,0.328551,0.328551,0.328551,0.328551,0.328551 +0.319596,0.319596,0.319596,0.319596,0.319596,0.319596 +0.310765,0.310765,0.310765,0.310765,0.310765,0.310765 +0.30206,0.30206,0.30206,0.30206,0.30206,0.30206 +0.293479,0.293479,0.293479,0.293479,0.293479,0.293479 +0.285024,0.285024,0.285024,0.285024,0.285024,0.285024 +0.276693,0.276693,0.276693,0.276693,0.276693,0.276693 +0.268488,0.268488,0.268488,0.268488,0.268488,0.268488 +0.260407,0.260407,0.260407,0.260407,0.260407,0.260407 +0.252452,0.252452,0.252452,0.252452,0.252452,0.252452 +0.244621,0.244621,0.244621,0.244621,0.244621,0.244621 +0.236916,0.236916,0.236916,0.236916,0.236916,0.236916 +0.229335,0.229335,0.229335,0.229335,0.229335,0.229335 +0.22188,0.22188,0.22188,0.22188,0.22188,0.22188 +0.214549,0.214549,0.214549,0.214549,0.214549,0.214549 +0.207344,0.207344,0.207344,0.207344,0.207344,0.207344 +0.200263,0.200263,0.200263,0.200263,0.200263,0.200263 +0.193308,0.193308,0.193308,0.193308,0.193308,0.193308 +0.186477,0.186477,0.186477,0.186477,0.186477,0.186477 +0.179772,0.179772,0.179772,0.179772,0.179772,0.179772 +0.173192,0.173192,0.173192,0.173192,0.173192,0.173192 +0.166736,0.166736,0.166736,0.166736,0.166736,0.166736 +0.160406,0.160406,0.160406,0.160406,0.160406,0.160406 +0.1542,0.1542,0.1542,0.1542,0.1542,0.1542 +0.14812,0.14812,0.14812,0.14812,0.14812,0.14812 +0.142164,0.142164,0.142164,0.142164,0.142164,0.142164 +0.136334,0.136334,0.136334,0.136334,0.136334,0.136334 +0.130628,0.130628,0.130628,0.130628,0.130628,0.130628 +0.125048,0.125048,0.125048,0.125048,0.125048,0.125048 +0.119592,0.119592,0.119592,0.119592,0.119592,0.119592 +0.114262,0.114262,0.114262,0.114262,0.114262,0.114262 +0.109056,0.109056,0.109056,0.109056,0.109056,0.109056 +0.103976,0.103976,0.103976,0.103976,0.103976,0.103976 +0.09902,0.09902,0.09902,0.09902,0.09902,0.09902 +0.09419,0.09419,0.09419,0.09419,0.09419,0.09419 +0.089484,0.089484,0.089484,0.089484,0.089484,0.089484 +0.084904,0.084904,0.084904,0.084904,0.084904,0.084904 +0.080448,0.080448,0.080448,0.080448,0.080448,0.080448 +0.076118,0.076118,0.076118,0.076118,0.076118,0.076118 +0.071912,0.071912,0.071912,0.071912,0.071912,0.071912 +0.067832,0.067832,0.067832,0.067832,0.067832,0.067832 +0.063876,0.063876,0.063876,0.063876,0.063876,0.063876 +0.060046,0.060046,0.060046,0.060046,0.060046,0.060046 +0.05634,0.05634,0.05634,0.05634,0.05634,0.05634 +0.05276,0.05276,0.05276,0.05276,0.05276,0.05276 +0.049304,0.049304,0.049304,0.049304,0.049304,0.049304 +0.045974,0.045974,0.045974,0.045974,0.045974,0.045974 +0.042769,0.042769,0.042769,0.042769,0.042769,0.042769 +0.039688,0.039688,0.039688,0.039688,0.039688,0.039688 +0.036733,0.036733,0.036733,0.036733,0.036733,0.036733 +0.033902,0.033902,0.033902,0.033902,0.033902,0.033902 +0.031197,0.031197,0.031197,0.031197,0.031197,0.031197 +0.028616,0.028616,0.028616,0.028616,0.028616,0.028616 +0.026161,0.026161,0.026161,0.026161,0.026161,0.026161 +0.02383,0.02383,0.02383,0.02383,0.02383,0.02383 +0.021625,0.021625,0.021625,0.021625,0.021625,0.021625 +0.019544,0.019544,0.019544,0.019544,0.019544,0.019544 +0.017589,0.017589,0.017589,0.017589,0.017589,0.017589 +0.015758,0.015758,0.015758,0.015758,0.015758,0.015758 +0.014053,0.014053,0.014053,0.014053,0.014053,0.014053 +0.012472,0.012472,0.012472,0.012472,0.012472,0.012472 +0.011015,0.011015,0.011015,0.011015,0.011015,0.011015 +0.009675,0.009675,0.009675,0.009675,0.009675,0.009675 +0.008449,0.008449,0.008449,0.008449,0.008449,0.008449 +0.007331,0.007331,0.007331,0.007331,0.007331,0.007331 +0.006317,0.006317,0.006317,0.006317,0.006317,0.006317 +0.0054,0.0054,0.0054,0.0054,0.0054,0.0054 +0.004577,0.004577,0.004577,0.004577,0.004577,0.004577 +0.003842,0.003842,0.003842,0.003842,0.003842,0.003842 +0.00319,0.00319,0.00319,0.00319,0.00319,0.00319 +0.002617,0.002617,0.002617,0.002617,0.002617,0.002617 +0.002117,0.002117,0.002117,0.002117,0.002117,0.002117 +0.001684,0.001684,0.001684,0.001684,0.001684,0.001684 +0.001316,0.001316,0.001316,0.001316,0.001316,0.001316 +0.001005,0.001005,0.001005,0.001005,0.001005,0.001005 +0.000747,0.000747,0.000747,0.000747,0.000747,0.000747 +0.000538,0.000538,0.000538,0.000538,0.000538,0.000538 +0.000372,0.000372,0.000372,0.000372,0.000372,0.000372 +0.000244,0.000244,0.000244,0.000244,0.000244,0.000244 +0.00015,0.00015,0.00015,0.00015,0.00015,0.00015 +0.000083,0.000083,0.000083,0.000083,0.000083,0.000083 +0.00004,0.00004,0.00004,0.00004,0.00004,0.00004 +0.000015,0.000015,0.000015,0.000015,0.000015,0.000015 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +-0.000022,-0.000022,-0.000022,-0.000022,-0.000022,-0.000022 +-0.000053,-0.000053,-0.000053,-0.000053,-0.000053,-0.000053 +-0.000104,-0.000104,-0.000104,-0.000104,-0.000104,-0.000104 +-0.00018,-0.00018,-0.00018,-0.00018,-0.00018,-0.00018 +-0.000286,-0.000286,-0.000286,-0.000286,-0.000286,-0.000286 +-0.000427,-0.000427,-0.000427,-0.000427,-0.000427,-0.000427 +-0.000607,-0.000607,-0.000607,-0.000607,-0.000607,-0.000607 +-0.000833,-0.000833,-0.000833,-0.000833,-0.000833,-0.000833 +-0.001109,-0.001109,-0.001109,-0.001109,-0.001109,-0.001109 +-0.00144,-0.00144,-0.00144,-0.00144,-0.00144,-0.00144 +-0.001831,-0.001831,-0.001831,-0.001831,-0.001831,-0.001831 +-0.002287,-0.002287,-0.002287,-0.002287,-0.002287,-0.002287 +-0.002812,-0.002812,-0.002812,-0.002812,-0.002812,-0.002812 +-0.003413,-0.003413,-0.003413,-0.003413,-0.003413,-0.003413 +-0.004094,-0.004094,-0.004094,-0.004094,-0.004094,-0.004094 +-0.00486,-0.00486,-0.00486,-0.00486,-0.00486,-0.00486 +-0.005716,-0.005716,-0.005716,-0.005716,-0.005716,-0.005716 +-0.006667,-0.006667,-0.006667,-0.006667,-0.006667,-0.006667 +-0.007717,-0.007717,-0.007717,-0.007717,-0.007717,-0.007717 +-0.008873,-0.008873,-0.008873,-0.008873,-0.008873,-0.008873 +-0.010139,-0.010139,-0.010139,-0.010139,-0.010139,-0.010139 +-0.01152,-0.01152,-0.01152,-0.01152,-0.01152,-0.01152 +-0.013021,-0.013021,-0.013021,-0.013021,-0.013021,-0.013021 +-0.014646,-0.014646,-0.014646,-0.014646,-0.014646,-0.014646 +-0.016396,-0.016396,-0.016396,-0.016396,-0.016396,-0.016396 +-0.018271,-0.018271,-0.018271,-0.018271,-0.018271,-0.018271 +-0.020271,-0.020271,-0.020271,-0.020271,-0.020271,-0.020271 +-0.022396,-0.022396,-0.022396,-0.022396,-0.022396,-0.022396 +-0.024646,-0.024646,-0.024646,-0.024646,-0.024646,-0.024646 +-0.027021,-0.027021,-0.027021,-0.027021,-0.027021,-0.027021 +-0.029521,-0.029521,-0.029521,-0.029521,-0.029521,-0.029521 +-0.032146,-0.032146,-0.032146,-0.032146,-0.032146,-0.032146 +-0.034896,-0.034896,-0.034896,-0.034896,-0.034896,-0.034896 +-0.037771,-0.037771,-0.037771,-0.037771,-0.037771,-0.037771 +-0.040771,-0.040771,-0.040771,-0.040771,-0.040771,-0.040771 +-0.043896,-0.043896,-0.043896,-0.043896,-0.043896,-0.043896 +-0.047146,-0.047146,-0.047146,-0.047146,-0.047146,-0.047146 +-0.050521,-0.050521,-0.050521,-0.050521,-0.050521,-0.050521 +-0.054021,-0.054021,-0.054021,-0.054021,-0.054021,-0.054021 +-0.057646,-0.057646,-0.057646,-0.057646,-0.057646,-0.057646 +-0.061396,-0.061396,-0.061396,-0.061396,-0.061396,-0.061396 +-0.065271,-0.065271,-0.065271,-0.065271,-0.065271,-0.065271 +-0.069271,-0.069271,-0.069271,-0.069271,-0.069271,-0.069271 +-0.073396,-0.073396,-0.073396,-0.073396,-0.073396,-0.073396 +-0.077646,-0.077646,-0.077646,-0.077646,-0.077646,-0.077646 +-0.082021,-0.082021,-0.082021,-0.082021,-0.082021,-0.082021 +-0.086521,-0.086521,-0.086521,-0.086521,-0.086521,-0.086521 +-0.091146,-0.091146,-0.091146,-0.091146,-0.091146,-0.091146 +-0.095896,-0.095896,-0.095896,-0.095896,-0.095896,-0.095896 +-0.100771,-0.100771,-0.100771,-0.100771,-0.100771,-0.100771 +-0.105771,-0.105771,-0.105771,-0.105771,-0.105771,-0.105771 +-0.110896,-0.110896,-0.110896,-0.110896,-0.110896,-0.110896 +-0.116146,-0.116146,-0.116146,-0.116146,-0.116146,-0.116146 +-0.121521,-0.121521,-0.121521,-0.121521,-0.121521,-0.121521 +-0.127021,-0.127021,-0.127021,-0.127021,-0.127021,-0.127021 +-0.132646,-0.132646,-0.132646,-0.132646,-0.132646,-0.132646 +-0.138396,-0.138396,-0.138396,-0.138396,-0.138396,-0.138396 +-0.144271,-0.144271,-0.144271,-0.144271,-0.144271,-0.144271 +-0.150271,-0.150271,-0.150271,-0.150271,-0.150271,-0.150271 +-0.156396,-0.156396,-0.156396,-0.156396,-0.156396,-0.156396 +-0.162646,-0.162646,-0.162646,-0.162646,-0.162646,-0.162646 +-0.169021,-0.169021,-0.169021,-0.169021,-0.169021,-0.169021 +-0.175521,-0.175521,-0.175521,-0.175521,-0.175521,-0.175521 +-0.182146,-0.182146,-0.182146,-0.182146,-0.182146,-0.182146 +-0.188896,-0.188896,-0.188896,-0.188896,-0.188896,-0.188896 +-0.195771,-0.195771,-0.195771,-0.195771,-0.195771,-0.195771 +-0.202771,-0.202771,-0.202771,-0.202771,-0.202771,-0.202771 +-0.209896,-0.209896,-0.209896,-0.209896,-0.209896,-0.209896 +-0.217146,-0.217146,-0.217146,-0.217146,-0.217146,-0.217146 +-0.224521,-0.224521,-0.224521,-0.224521,-0.224521,-0.224521 +-0.232021,-0.232021,-0.232021,-0.232021,-0.232021,-0.232021 +-0.239646,-0.239646,-0.239646,-0.239646,-0.239646,-0.239646 +-0.247396,-0.247396,-0.247396,-0.247396,-0.247396,-0.247396 +-0.255271,-0.255271,-0.255271,-0.255271,-0.255271,-0.255271 +-0.263271,-0.263271,-0.263271,-0.263271,-0.263271,-0.263271 +-0.271396,-0.271396,-0.271396,-0.271396,-0.271396,-0.271396 +-0.279646,-0.279646,-0.279646,-0.279646,-0.279646,-0.279646 +-0.288021,-0.288021,-0.288021,-0.288021,-0.288021,-0.288021 +-0.296521,-0.296521,-0.296521,-0.296521,-0.296521,-0.296521 +-0.305146,-0.305146,-0.305146,-0.305146,-0.305146,-0.305146 +-0.313896,-0.313896,-0.313896,-0.313896,-0.313896,-0.313896 +-0.322771,-0.322771,-0.322771,-0.322771,-0.322771,-0.322771 +-0.331771,-0.331771,-0.331771,-0.331771,-0.331771,-0.331771 +-0.340896,-0.340896,-0.340896,-0.340896,-0.340896,-0.340896 +-0.350146,-0.350146,-0.350146,-0.350146,-0.350146,-0.350146 +-0.359521,-0.359521,-0.359521,-0.359521,-0.359521,-0.359521 +-0.369021,-0.369021,-0.369021,-0.369021,-0.369021,-0.369021 +-0.378646,-0.378646,-0.378646,-0.378646,-0.378646,-0.378646 +-0.388396,-0.388396,-0.388396,-0.388396,-0.388396,-0.388396 +-0.398271,-0.398271,-0.398271,-0.398271,-0.398271,-0.398271 +-0.408271,-0.408271,-0.408271,-0.408271,-0.408271,-0.408271 +-0.418396,-0.418396,-0.418396,-0.418396,-0.418396,-0.418396 +-0.428646,-0.428646,-0.428646,-0.428646,-0.428646,-0.428646 +-0.439021,-0.439021,-0.439021,-0.439021,-0.439021,-0.439021 +-0.449521,-0.449521,-0.449521,-0.449521,-0.449521,-0.449521 +-0.460146,-0.460146,-0.460146,-0.460146,-0.460146,-0.460146 +-0.470896,-0.470896,-0.470896,-0.470896,-0.470896,-0.470896 +-0.481771,-0.481771,-0.481771,-0.481771,-0.481771,-0.481771 +-0.492771,-0.492771,-0.492771,-0.492771,-0.492771,-0.492771 +-0.503896,-0.503896,-0.503896,-0.503896,-0.503896,-0.503896 +-0.515146,-0.515146,-0.515146,-0.515146,-0.515146,-0.515146 +-0.526521,-0.526521,-0.526521,-0.526521,-0.526521,-0.526521 +-0.538021,-0.538021,-0.538021,-0.538021,-0.538021,-0.538021 +-0.549646,-0.549646,-0.549646,-0.549646,-0.549646,-0.549646 +-0.561396,-0.561396,-0.561396,-0.561396,-0.561396,-0.561396 +-0.573267,-0.573267,-0.573267,-0.573267,-0.573267,-0.573267 +-0.585255,-0.585255,-0.585255,-0.585255,-0.585255,-0.585255 +-0.597354,-0.597354,-0.597354,-0.597354,-0.597354,-0.597354 +-0.609561,-0.609561,-0.609561,-0.609561,-0.609561,-0.609561 +-0.621868,-0.621868,-0.621868,-0.621868,-0.621868,-0.621868 +-0.634273,-0.634273,-0.634273,-0.634273,-0.634273,-0.634273 +-0.646769,-0.646769,-0.646769,-0.646769,-0.646769,-0.646769 +-0.659351,-0.659351,-0.659351,-0.659351,-0.659351,-0.659351 +-0.672015,-0.672015,-0.672015,-0.672015,-0.672015,-0.672015 +-0.684756,-0.684756,-0.684756,-0.684756,-0.684756,-0.684756 +-0.697569,-0.697569,-0.697569,-0.697569,-0.697569,-0.697569 +-0.710448,-0.710448,-0.710448,-0.710448,-0.710448,-0.710448 +-0.723388,-0.723388,-0.723388,-0.723388,-0.723388,-0.723388 +-0.736386,-0.736386,-0.736386,-0.736386,-0.736386,-0.736386 +-0.749434,-0.749434,-0.749434,-0.749434,-0.749434,-0.749434 +-0.76253,-0.76253,-0.76253,-0.76253,-0.76253,-0.76253 +-0.775667,-0.775667,-0.775667,-0.775667,-0.775667,-0.775667 +-0.788841,-0.788841,-0.788841,-0.788841,-0.788841,-0.788841 +-0.802046,-0.802046,-0.802046,-0.802046,-0.802046,-0.802046 +-0.815278,-0.815278,-0.815278,-0.815278,-0.815278,-0.815278 +-0.828531,-0.828531,-0.828531,-0.828531,-0.828531,-0.828531 +-0.841801,-0.841801,-0.841801,-0.841801,-0.841801,-0.841801 +-0.855083,-0.855083,-0.855083,-0.855083,-0.855083,-0.855083 +-0.868372,-0.868372,-0.868372,-0.868372,-0.868372,-0.868372 +-0.881662,-0.881662,-0.881662,-0.881662,-0.881662,-0.881662 +-0.894948,-0.894948,-0.894948,-0.894948,-0.894948,-0.894948 +-0.908226,-0.908226,-0.908226,-0.908226,-0.908226,-0.908226 +-0.921491,-0.921491,-0.921491,-0.921491,-0.921491,-0.921491 +-0.934737,-0.934737,-0.934737,-0.934737,-0.934737,-0.934737 +-0.94796,-0.94796,-0.94796,-0.94796,-0.94796,-0.94796 +-0.961155,-0.961155,-0.961155,-0.961155,-0.961155,-0.961155 +-0.974316,-0.974316,-0.974316,-0.974316,-0.974316,-0.974316 +-0.987439,-0.987439,-0.987439,-0.987439,-0.987439,-0.987439 +-1.000519,-1.000519,-1.000519,-1.000519,-1.000519,-1.000519 +-1.01355,-1.01355,-1.01355,-1.01355,-1.01355,-1.01355 +-1.026527,-1.026527,-1.026527,-1.026527,-1.026527,-1.026527 +-1.039447,-1.039447,-1.039447,-1.039447,-1.039447,-1.039447 +-1.052302,-1.052302,-1.052302,-1.052302,-1.052302,-1.052302 +-1.06509,-1.06509,-1.06509,-1.06509,-1.06509,-1.06509 +-1.077804,-1.077804,-1.077804,-1.077804,-1.077804,-1.077804 +-1.09044,-1.09044,-1.09044,-1.09044,-1.09044,-1.09044 +-1.102992,-1.102992,-1.102992,-1.102992,-1.102992,-1.102992 +-1.115456,-1.115456,-1.115456,-1.115456,-1.115456,-1.115456 +-1.127826,-1.127826,-1.127826,-1.127826,-1.127826,-1.127826 +-1.140099,-1.140099,-1.140099,-1.140099,-1.140099,-1.140099 +-1.152267,-1.152267,-1.152267,-1.152267,-1.152267,-1.152267 +-1.164328,-1.164328,-1.164328,-1.164328,-1.164328,-1.164328 +-1.176275,-1.176275,-1.176275,-1.176275,-1.176275,-1.176275 +-1.188103,-1.188103,-1.188103,-1.188103,-1.188103,-1.188103 +-1.199809,-1.199809,-1.199809,-1.199809,-1.199809,-1.199809 +-1.211389,-1.211389,-1.211389,-1.211389,-1.211389,-1.211389 +-1.222845,-1.222845,-1.222845,-1.222845,-1.222845,-1.222845 +-1.234175,-1.234175,-1.234175,-1.234175,-1.234175,-1.234175 +-1.245381,-1.245381,-1.245381,-1.245381,-1.245381,-1.245381 +-1.256461,-1.256461,-1.256461,-1.256461,-1.256461,-1.256461 +-1.267417,-1.267417,-1.267417,-1.267417,-1.267417,-1.267417 +-1.278247,-1.278247,-1.278247,-1.278247,-1.278247,-1.278247 +-1.288953,-1.288953,-1.288953,-1.288953,-1.288953,-1.288953 +-1.299533,-1.299533,-1.299533,-1.299533,-1.299533,-1.299533 +-1.309989,-1.309989,-1.309989,-1.309989,-1.309989,-1.309989 +-1.320319,-1.320319,-1.320319,-1.320319,-1.320319,-1.320319 +-1.330525,-1.330525,-1.330525,-1.330525,-1.330525,-1.330525 +-1.340605,-1.340605,-1.340605,-1.340605,-1.340605,-1.340605 +-1.35056,-1.35056,-1.35056,-1.35056,-1.35056,-1.35056 +-1.360391,-1.360391,-1.360391,-1.360391,-1.360391,-1.360391 +-1.370096,-1.370096,-1.370096,-1.370096,-1.370096,-1.370096 +-1.379677,-1.379677,-1.379677,-1.379677,-1.379677,-1.379677 +-1.389132,-1.389132,-1.389132,-1.389132,-1.389132,-1.389132 +-1.398463,-1.398463,-1.398463,-1.398463,-1.398463,-1.398463 +-1.407668,-1.407668,-1.407668,-1.407668,-1.407668,-1.407668 +-1.416749,-1.416749,-1.416749,-1.416749,-1.416749,-1.416749 +-1.425704,-1.425704,-1.425704,-1.425704,-1.425704,-1.425704 +-1.434535,-1.434535,-1.434535,-1.434535,-1.434535,-1.434535 +-1.44324,-1.44324,-1.44324,-1.44324,-1.44324,-1.44324 +-1.451821,-1.451821,-1.451821,-1.451821,-1.451821,-1.451821 +-1.460276,-1.460276,-1.460276,-1.460276,-1.460276,-1.460276 +-1.468607,-1.468607,-1.468607,-1.468607,-1.468607,-1.468607 +-1.476812,-1.476812,-1.476812,-1.476812,-1.476812,-1.476812 +-1.484893,-1.484893,-1.484893,-1.484893,-1.484893,-1.484893 +-1.492848,-1.492848,-1.492848,-1.492848,-1.492848,-1.492848 +-1.500679,-1.500679,-1.500679,-1.500679,-1.500679,-1.500679 +-1.508384,-1.508384,-1.508384,-1.508384,-1.508384,-1.508384 +-1.515965,-1.515965,-1.515965,-1.515965,-1.515965,-1.515965 +-1.52342,-1.52342,-1.52342,-1.52342,-1.52342,-1.52342 +-1.530751,-1.530751,-1.530751,-1.530751,-1.530751,-1.530751 +-1.537956,-1.537956,-1.537956,-1.537956,-1.537956,-1.537956 +-1.545037,-1.545037,-1.545037,-1.545037,-1.545037,-1.545037 +-1.551992,-1.551992,-1.551992,-1.551992,-1.551992,-1.551992 +-1.558823,-1.558823,-1.558823,-1.558823,-1.558823,-1.558823 +-1.565528,-1.565528,-1.565528,-1.565528,-1.565528,-1.565528 +-1.572108,-1.572108,-1.572108,-1.572108,-1.572108,-1.572108 +-1.578564,-1.578564,-1.578564,-1.578564,-1.578564,-1.578564 +-1.584894,-1.584894,-1.584894,-1.584894,-1.584894,-1.584894 +-1.5911,-1.5911,-1.5911,-1.5911,-1.5911,-1.5911 +-1.59718,-1.59718,-1.59718,-1.59718,-1.59718,-1.59718 +-1.603136,-1.603136,-1.603136,-1.603136,-1.603136,-1.603136 +-1.608966,-1.608966,-1.608966,-1.608966,-1.608966,-1.608966 +-1.614672,-1.614672,-1.614672,-1.614672,-1.614672,-1.614672 +-1.620252,-1.620252,-1.620252,-1.620252,-1.620252,-1.620252 +-1.625708,-1.625708,-1.625708,-1.625708,-1.625708,-1.625708 +-1.631038,-1.631038,-1.631038,-1.631038,-1.631038,-1.631038 +-1.636244,-1.636244,-1.636244,-1.636244,-1.636244,-1.636244 +-1.641324,-1.641324,-1.641324,-1.641324,-1.641324,-1.641324 +-1.64628,-1.64628,-1.64628,-1.64628,-1.64628,-1.64628 +-1.65111,-1.65111,-1.65111,-1.65111,-1.65111,-1.65111 +-1.655816,-1.655816,-1.655816,-1.655816,-1.655816,-1.655816 +-1.660396,-1.660396,-1.660396,-1.660396,-1.660396,-1.660396 +-1.664852,-1.664852,-1.664852,-1.664852,-1.664852,-1.664852 +-1.669182,-1.669182,-1.669182,-1.669182,-1.669182,-1.669182 +-1.673388,-1.673388,-1.673388,-1.673388,-1.673388,-1.673388 +-1.677468,-1.677468,-1.677468,-1.677468,-1.677468,-1.677468 +-1.681424,-1.681424,-1.681424,-1.681424,-1.681424,-1.681424 +-1.685254,-1.685254,-1.685254,-1.685254,-1.685254,-1.685254 +-1.68896,-1.68896,-1.68896,-1.68896,-1.68896,-1.68896 +-1.69254,-1.69254,-1.69254,-1.69254,-1.69254,-1.69254 +-1.695996,-1.695996,-1.695996,-1.695996,-1.695996,-1.695996 +-1.699326,-1.699326,-1.699326,-1.699326,-1.699326,-1.699326 +-1.702531,-1.702531,-1.702531,-1.702531,-1.702531,-1.702531 +-1.705612,-1.705612,-1.705612,-1.705612,-1.705612,-1.705612 +-1.708567,-1.708567,-1.708567,-1.708567,-1.708567,-1.708567 +-1.711398,-1.711398,-1.711398,-1.711398,-1.711398,-1.711398 +-1.714103,-1.714103,-1.714103,-1.714103,-1.714103,-1.714103 +-1.716684,-1.716684,-1.716684,-1.716684,-1.716684,-1.716684 +-1.719139,-1.719139,-1.719139,-1.719139,-1.719139,-1.719139 +-1.72147,-1.72147,-1.72147,-1.72147,-1.72147,-1.72147 +-1.723675,-1.723675,-1.723675,-1.723675,-1.723675,-1.723675 +-1.725756,-1.725756,-1.725756,-1.725756,-1.725756,-1.725756 +-1.727711,-1.727711,-1.727711,-1.727711,-1.727711,-1.727711 +-1.729542,-1.729542,-1.729542,-1.729542,-1.729542,-1.729542 +-1.731247,-1.731247,-1.731247,-1.731247,-1.731247,-1.731247 +-1.732828,-1.732828,-1.732828,-1.732828,-1.732828,-1.732828 +-1.734285,-1.734285,-1.734285,-1.734285,-1.734285,-1.734285 +-1.735625,-1.735625,-1.735625,-1.735625,-1.735625,-1.735625 +-1.736851,-1.736851,-1.736851,-1.736851,-1.736851,-1.736851 +-1.737969,-1.737969,-1.737969,-1.737969,-1.737969,-1.737969 +-1.738983,-1.738983,-1.738983,-1.738983,-1.738983,-1.738983 +-1.7399,-1.7399,-1.7399,-1.7399,-1.7399,-1.7399 +-1.740723,-1.740723,-1.740723,-1.740723,-1.740723,-1.740723 +-1.741458,-1.741458,-1.741458,-1.741458,-1.741458,-1.741458 +-1.74211,-1.74211,-1.74211,-1.74211,-1.74211,-1.74211 +-1.742683,-1.742683,-1.742683,-1.742683,-1.742683,-1.742683 +-1.743183,-1.743183,-1.743183,-1.743183,-1.743183,-1.743183 +-1.743616,-1.743616,-1.743616,-1.743616,-1.743616,-1.743616 +-1.743984,-1.743984,-1.743984,-1.743984,-1.743984,-1.743984 +-1.744295,-1.744295,-1.744295,-1.744295,-1.744295,-1.744295 +-1.744553,-1.744553,-1.744553,-1.744553,-1.744553,-1.744553 +-1.744762,-1.744762,-1.744762,-1.744762,-1.744762,-1.744762 +-1.744928,-1.744928,-1.744928,-1.744928,-1.744928,-1.744928 +-1.745056,-1.745056,-1.745056,-1.745056,-1.745056,-1.745056 +-1.74515,-1.74515,-1.74515,-1.74515,-1.74515,-1.74515 +-1.745217,-1.745217,-1.745217,-1.745217,-1.745217,-1.745217 +-1.74526,-1.74526,-1.74526,-1.74526,-1.74526,-1.74526 +-1.745285,-1.745285,-1.745285,-1.745285,-1.745285,-1.745285 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.745278,-1.745278,-1.745278,-1.745278,-1.745278,-1.745278 +-1.745247,-1.745247,-1.745247,-1.745247,-1.745247,-1.745247 +-1.745196,-1.745196,-1.745196,-1.745196,-1.745196,-1.745196 +-1.74512,-1.74512,-1.74512,-1.74512,-1.74512,-1.74512 +-1.745014,-1.745014,-1.745014,-1.745014,-1.745014,-1.745014 +-1.744873,-1.744873,-1.744873,-1.744873,-1.744873,-1.744873 +-1.744693,-1.744693,-1.744693,-1.744693,-1.744693,-1.744693 +-1.744467,-1.744467,-1.744467,-1.744467,-1.744467,-1.744467 +-1.744191,-1.744191,-1.744191,-1.744191,-1.744191,-1.744191 +-1.74386,-1.74386,-1.74386,-1.74386,-1.74386,-1.74386 +-1.743469,-1.743469,-1.743469,-1.743469,-1.743469,-1.743469 +-1.743013,-1.743013,-1.743013,-1.743013,-1.743013,-1.743013 +-1.742488,-1.742488,-1.742488,-1.742488,-1.742488,-1.742488 +-1.741887,-1.741887,-1.741887,-1.741887,-1.741887,-1.741887 +-1.741206,-1.741206,-1.741206,-1.741206,-1.741206,-1.741206 +-1.74044,-1.74044,-1.74044,-1.74044,-1.74044,-1.74044 +-1.739584,-1.739584,-1.739584,-1.739584,-1.739584,-1.739584 +-1.738633,-1.738633,-1.738633,-1.738633,-1.738633,-1.738633 +-1.737583,-1.737583,-1.737583,-1.737583,-1.737583,-1.737583 +-1.736427,-1.736427,-1.736427,-1.736427,-1.736427,-1.736427 +-1.735161,-1.735161,-1.735161,-1.735161,-1.735161,-1.735161 +-1.73378,-1.73378,-1.73378,-1.73378,-1.73378,-1.73378 +-1.732279,-1.732279,-1.732279,-1.732279,-1.732279,-1.732279 +-1.730654,-1.730654,-1.730654,-1.730654,-1.730654,-1.730654 +-1.728904,-1.728904,-1.728904,-1.728904,-1.728904,-1.728904 +-1.727029,-1.727029,-1.727029,-1.727029,-1.727029,-1.727029 +-1.725029,-1.725029,-1.725029,-1.725029,-1.725029,-1.725029 +-1.722904,-1.722904,-1.722904,-1.722904,-1.722904,-1.722904 +-1.720654,-1.720654,-1.720654,-1.720654,-1.720654,-1.720654 +-1.718279,-1.718279,-1.718279,-1.718279,-1.718279,-1.718279 +-1.715779,-1.715779,-1.715779,-1.715779,-1.715779,-1.715779 +-1.713154,-1.713154,-1.713154,-1.713154,-1.713154,-1.713154 +-1.710404,-1.710404,-1.710404,-1.710404,-1.710404,-1.710404 +-1.707529,-1.707529,-1.707529,-1.707529,-1.707529,-1.707529 +-1.704529,-1.704529,-1.704529,-1.704529,-1.704529,-1.704529 +-1.701404,-1.701404,-1.701404,-1.701404,-1.701404,-1.701404 +-1.698154,-1.698154,-1.698154,-1.698154,-1.698154,-1.698154 +-1.694779,-1.694779,-1.694779,-1.694779,-1.694779,-1.694779 +-1.691279,-1.691279,-1.691279,-1.691279,-1.691279,-1.691279 +-1.687654,-1.687654,-1.687654,-1.687654,-1.687654,-1.687654 +-1.683904,-1.683904,-1.683904,-1.683904,-1.683904,-1.683904 +-1.680029,-1.680029,-1.680029,-1.680029,-1.680029,-1.680029 +-1.676029,-1.676029,-1.676029,-1.676029,-1.676029,-1.676029 +-1.671904,-1.671904,-1.671904,-1.671904,-1.671904,-1.671904 +-1.667654,-1.667654,-1.667654,-1.667654,-1.667654,-1.667654 +-1.663279,-1.663279,-1.663279,-1.663279,-1.663279,-1.663279 +-1.658779,-1.658779,-1.658779,-1.658779,-1.658779,-1.658779 +-1.654154,-1.654154,-1.654154,-1.654154,-1.654154,-1.654154 +-1.649404,-1.649404,-1.649404,-1.649404,-1.649404,-1.649404 +-1.644529,-1.644529,-1.644529,-1.644529,-1.644529,-1.644529 +-1.639529,-1.639529,-1.639529,-1.639529,-1.639529,-1.639529 +-1.634404,-1.634404,-1.634404,-1.634404,-1.634404,-1.634404 +-1.629154,-1.629154,-1.629154,-1.629154,-1.629154,-1.629154 +-1.623779,-1.623779,-1.623779,-1.623779,-1.623779,-1.623779 +-1.618279,-1.618279,-1.618279,-1.618279,-1.618279,-1.618279 +-1.612654,-1.612654,-1.612654,-1.612654,-1.612654,-1.612654 +-1.606904,-1.606904,-1.606904,-1.606904,-1.606904,-1.606904 +-1.601029,-1.601029,-1.601029,-1.601029,-1.601029,-1.601029 +-1.595029,-1.595029,-1.595029,-1.595029,-1.595029,-1.595029 +-1.588904,-1.588904,-1.588904,-1.588904,-1.588904,-1.588904 +-1.582654,-1.582654,-1.582654,-1.582654,-1.582654,-1.582654 +-1.576279,-1.576279,-1.576279,-1.576279,-1.576279,-1.576279 +-1.569779,-1.569779,-1.569779,-1.569779,-1.569779,-1.569779 +-1.563154,-1.563154,-1.563154,-1.563154,-1.563154,-1.563154 +-1.556404,-1.556404,-1.556404,-1.556404,-1.556404,-1.556404 +-1.549529,-1.549529,-1.549529,-1.549529,-1.549529,-1.549529 +-1.542529,-1.542529,-1.542529,-1.542529,-1.542529,-1.542529 +-1.535404,-1.535404,-1.535404,-1.535404,-1.535404,-1.535404 +-1.528154,-1.528154,-1.528154,-1.528154,-1.528154,-1.528154 +-1.520779,-1.520779,-1.520779,-1.520779,-1.520779,-1.520779 +-1.513279,-1.513279,-1.513279,-1.513279,-1.513279,-1.513279 +-1.505654,-1.505654,-1.505654,-1.505654,-1.505654,-1.505654 +-1.497904,-1.497904,-1.497904,-1.497904,-1.497904,-1.497904 +-1.490029,-1.490029,-1.490029,-1.490029,-1.490029,-1.490029 +-1.482029,-1.482029,-1.482029,-1.482029,-1.482029,-1.482029 +-1.473904,-1.473904,-1.473904,-1.473904,-1.473904,-1.473904 +-1.465654,-1.465654,-1.465654,-1.465654,-1.465654,-1.465654 +-1.457279,-1.457279,-1.457279,-1.457279,-1.457279,-1.457279 +-1.448779,-1.448779,-1.448779,-1.448779,-1.448779,-1.448779 +-1.440154,-1.440154,-1.440154,-1.440154,-1.440154,-1.440154 +-1.431404,-1.431404,-1.431404,-1.431404,-1.431404,-1.431404 +-1.422529,-1.422529,-1.422529,-1.422529,-1.422529,-1.422529 +-1.413529,-1.413529,-1.413529,-1.413529,-1.413529,-1.413529 +-1.404404,-1.404404,-1.404404,-1.404404,-1.404404,-1.404404 +-1.395154,-1.395154,-1.395154,-1.395154,-1.395154,-1.395154 +-1.385779,-1.385779,-1.385779,-1.385779,-1.385779,-1.385779 +-1.376279,-1.376279,-1.376279,-1.376279,-1.376279,-1.376279 +-1.366654,-1.366654,-1.366654,-1.366654,-1.366654,-1.366654 +-1.356904,-1.356904,-1.356904,-1.356904,-1.356904,-1.356904 +-1.347029,-1.347029,-1.347029,-1.347029,-1.347029,-1.347029 +-1.337029,-1.337029,-1.337029,-1.337029,-1.337029,-1.337029 +-1.326904,-1.326904,-1.326904,-1.326904,-1.326904,-1.326904 +-1.316654,-1.316654,-1.316654,-1.316654,-1.316654,-1.316654 +-1.306279,-1.306279,-1.306279,-1.306279,-1.306279,-1.306279 +-1.295779,-1.295779,-1.295779,-1.295779,-1.295779,-1.295779 +-1.285154,-1.285154,-1.285154,-1.285154,-1.285154,-1.285154 +-1.274404,-1.274404,-1.274404,-1.274404,-1.274404,-1.274404 +-1.263529,-1.263529,-1.263529,-1.263529,-1.263529,-1.263529 +-1.252529,-1.252529,-1.252529,-1.252529,-1.252529,-1.252529 +-1.241404,-1.241404,-1.241404,-1.241404,-1.241404,-1.241404 +-1.230154,-1.230154,-1.230154,-1.230154,-1.230154,-1.230154 +-1.218779,-1.218779,-1.218779,-1.218779,-1.218779,-1.218779 +-1.207279,-1.207279,-1.207279,-1.207279,-1.207279,-1.207279 +-1.195654,-1.195654,-1.195654,-1.195654,-1.195654,-1.195654 +-1.183904,-1.183904,-1.183904,-1.183904,-1.183904,-1.183904 +-1.172033,-1.172033,-1.172033,-1.172033,-1.172033,-1.172033 +-1.160045,-1.160045,-1.160045,-1.160045,-1.160045,-1.160045 +-1.147946,-1.147946,-1.147946,-1.147946,-1.147946,-1.147946 +-1.135739,-1.135739,-1.135739,-1.135739,-1.135739,-1.135739 +-1.123432,-1.123432,-1.123432,-1.123432,-1.123432,-1.123432 +-1.111027,-1.111027,-1.111027,-1.111027,-1.111027,-1.111027 +-1.098531,-1.098531,-1.098531,-1.098531,-1.098531,-1.098531 +-1.085949,-1.085949,-1.085949,-1.085949,-1.085949,-1.085949 +-1.073285,-1.073285,-1.073285,-1.073285,-1.073285,-1.073285 +-1.060544,-1.060544,-1.060544,-1.060544,-1.060544,-1.060544 +-1.047731,-1.047731,-1.047731,-1.047731,-1.047731,-1.047731 +-1.034852,-1.034852,-1.034852,-1.034852,-1.034852,-1.034852 +-1.021912,-1.021912,-1.021912,-1.021912,-1.021912,-1.021912 +-1.008914,-1.008914,-1.008914,-1.008914,-1.008914,-1.008914 +-0.995866,-0.995866,-0.995866,-0.995866,-0.995866,-0.995866 +-0.98277,-0.98277,-0.98277,-0.98277,-0.98277,-0.98277 +-0.969633,-0.969633,-0.969633,-0.969633,-0.969633,-0.969633 +-0.956459,-0.956459,-0.956459,-0.956459,-0.956459,-0.956459 +-0.943254,-0.943254,-0.943254,-0.943254,-0.943254,-0.943254 +-0.930022,-0.930022,-0.930022,-0.930022,-0.930022,-0.930022 +-0.916769,-0.916769,-0.916769,-0.916769,-0.916769,-0.916769 +-0.903499,-0.903499,-0.903499,-0.903499,-0.903499,-0.903499 +-0.890217,-0.890217,-0.890217,-0.890217,-0.890217,-0.890217 +-0.876928,-0.876928,-0.876928,-0.876928,-0.876928,-0.876928 +-0.863638,-0.863638,-0.863638,-0.863638,-0.863638,-0.863638 +-0.850352,-0.850352,-0.850352,-0.850352,-0.850352,-0.850352 +-0.837074,-0.837074,-0.837074,-0.837074,-0.837074,-0.837074 +-0.823809,-0.823809,-0.823809,-0.823809,-0.823809,-0.823809 +-0.810563,-0.810563,-0.810563,-0.810563,-0.810563,-0.810563 +-0.79734,-0.79734,-0.79734,-0.79734,-0.79734,-0.79734 +-0.784145,-0.784145,-0.784145,-0.784145,-0.784145,-0.784145 +-0.770984,-0.770984,-0.770984,-0.770984,-0.770984,-0.770984 +-0.757861,-0.757861,-0.757861,-0.757861,-0.757861,-0.757861 +-0.744781,-0.744781,-0.744781,-0.744781,-0.744781,-0.744781 +-0.73175,-0.73175,-0.73175,-0.73175,-0.73175,-0.73175 +-0.718773,-0.718773,-0.718773,-0.718773,-0.718773,-0.718773 +-0.705853,-0.705853,-0.705853,-0.705853,-0.705853,-0.705853 +-0.692998,-0.692998,-0.692998,-0.692998,-0.692998,-0.692998 +-0.68021,-0.68021,-0.68021,-0.68021,-0.68021,-0.68021 +-0.667496,-0.667496,-0.667496,-0.667496,-0.667496,-0.667496 +-0.65486,-0.65486,-0.65486,-0.65486,-0.65486,-0.65486 +-0.642308,-0.642308,-0.642308,-0.642308,-0.642308,-0.642308 +-0.629844,-0.629844,-0.629844,-0.629844,-0.629844,-0.629844 +-0.617474,-0.617474,-0.617474,-0.617474,-0.617474,-0.617474 +-0.605201,-0.605201,-0.605201,-0.605201,-0.605201,-0.605201 +-0.593033,-0.593033,-0.593033,-0.593033,-0.593033,-0.593033 +-0.580972,-0.580972,-0.580972,-0.580972,-0.580972,-0.580972 +-0.569025,-0.569025,-0.569025,-0.569025,-0.569025,-0.569025 +-0.557197,-0.557197,-0.557197,-0.557197,-0.557197,-0.557197 +-0.545491,-0.545491,-0.545491,-0.545491,-0.545491,-0.545491 +-0.533911,-0.533911,-0.533911,-0.533911,-0.533911,-0.533911 +-0.522455,-0.522455,-0.522455,-0.522455,-0.522455,-0.522455 +-0.511125,-0.511125,-0.511125,-0.511125,-0.511125,-0.511125 +-0.499919,-0.499919,-0.499919,-0.499919,-0.499919,-0.499919 +-0.488839,-0.488839,-0.488839,-0.488839,-0.488839,-0.488839 +-0.477883,-0.477883,-0.477883,-0.477883,-0.477883,-0.477883 +-0.467053,-0.467053,-0.467053,-0.467053,-0.467053,-0.467053 +-0.456347,-0.456347,-0.456347,-0.456347,-0.456347,-0.456347 +-0.445767,-0.445767,-0.445767,-0.445767,-0.445767,-0.445767 +-0.435311,-0.435311,-0.435311,-0.435311,-0.435311,-0.435311 +-0.424981,-0.424981,-0.424981,-0.424981,-0.424981,-0.424981 +-0.414775,-0.414775,-0.414775,-0.414775,-0.414775,-0.414775 +-0.404695,-0.404695,-0.404695,-0.404695,-0.404695,-0.404695 +-0.39474,-0.39474,-0.39474,-0.39474,-0.39474,-0.39474 +-0.384909,-0.384909,-0.384909,-0.384909,-0.384909,-0.384909 +-0.375204,-0.375204,-0.375204,-0.375204,-0.375204,-0.375204 +-0.365623,-0.365623,-0.365623,-0.365623,-0.365623,-0.365623 +-0.356168,-0.356168,-0.356168,-0.356168,-0.356168,-0.356168 +-0.346837,-0.346837,-0.346837,-0.346837,-0.346837,-0.346837 +-0.337632,-0.337632,-0.337632,-0.337632,-0.337632,-0.337632 +-0.328551,-0.328551,-0.328551,-0.328551,-0.328551,-0.328551 +-0.319596,-0.319596,-0.319596,-0.319596,-0.319596,-0.319596 +-0.310765,-0.310765,-0.310765,-0.310765,-0.310765,-0.310765 +-0.30206,-0.30206,-0.30206,-0.30206,-0.30206,-0.30206 +-0.293479,-0.293479,-0.293479,-0.293479,-0.293479,-0.293479 +-0.285024,-0.285024,-0.285024,-0.285024,-0.285024,-0.285024 +-0.276693,-0.276693,-0.276693,-0.276693,-0.276693,-0.276693 +-0.268488,-0.268488,-0.268488,-0.268488,-0.268488,-0.268488 +-0.260407,-0.260407,-0.260407,-0.260407,-0.260407,-0.260407 +-0.252452,-0.252452,-0.252452,-0.252452,-0.252452,-0.252452 +-0.244621,-0.244621,-0.244621,-0.244621,-0.244621,-0.244621 +-0.236916,-0.236916,-0.236916,-0.236916,-0.236916,-0.236916 +-0.229335,-0.229335,-0.229335,-0.229335,-0.229335,-0.229335 +-0.22188,-0.22188,-0.22188,-0.22188,-0.22188,-0.22188 +-0.214549,-0.214549,-0.214549,-0.214549,-0.214549,-0.214549 +-0.207344,-0.207344,-0.207344,-0.207344,-0.207344,-0.207344 +-0.200263,-0.200263,-0.200263,-0.200263,-0.200263,-0.200263 +-0.193308,-0.193308,-0.193308,-0.193308,-0.193308,-0.193308 +-0.186477,-0.186477,-0.186477,-0.186477,-0.186477,-0.186477 +-0.179772,-0.179772,-0.179772,-0.179772,-0.179772,-0.179772 +-0.173192,-0.173192,-0.173192,-0.173192,-0.173192,-0.173192 +-0.166736,-0.166736,-0.166736,-0.166736,-0.166736,-0.166736 +-0.160406,-0.160406,-0.160406,-0.160406,-0.160406,-0.160406 +-0.1542,-0.1542,-0.1542,-0.1542,-0.1542,-0.1542 +-0.14812,-0.14812,-0.14812,-0.14812,-0.14812,-0.14812 +-0.142164,-0.142164,-0.142164,-0.142164,-0.142164,-0.142164 +-0.136334,-0.136334,-0.136334,-0.136334,-0.136334,-0.136334 +-0.130628,-0.130628,-0.130628,-0.130628,-0.130628,-0.130628 +-0.125048,-0.125048,-0.125048,-0.125048,-0.125048,-0.125048 +-0.119592,-0.119592,-0.119592,-0.119592,-0.119592,-0.119592 +-0.114262,-0.114262,-0.114262,-0.114262,-0.114262,-0.114262 +-0.109056,-0.109056,-0.109056,-0.109056,-0.109056,-0.109056 +-0.103976,-0.103976,-0.103976,-0.103976,-0.103976,-0.103976 +-0.09902,-0.09902,-0.09902,-0.09902,-0.09902,-0.09902 +-0.09419,-0.09419,-0.09419,-0.09419,-0.09419,-0.09419 +-0.089484,-0.089484,-0.089484,-0.089484,-0.089484,-0.089484 +-0.084904,-0.084904,-0.084904,-0.084904,-0.084904,-0.084904 +-0.080448,-0.080448,-0.080448,-0.080448,-0.080448,-0.080448 +-0.076118,-0.076118,-0.076118,-0.076118,-0.076118,-0.076118 +-0.071912,-0.071912,-0.071912,-0.071912,-0.071912,-0.071912 +-0.067832,-0.067832,-0.067832,-0.067832,-0.067832,-0.067832 +-0.063876,-0.063876,-0.063876,-0.063876,-0.063876,-0.063876 +-0.060046,-0.060046,-0.060046,-0.060046,-0.060046,-0.060046 +-0.05634,-0.05634,-0.05634,-0.05634,-0.05634,-0.05634 +-0.05276,-0.05276,-0.05276,-0.05276,-0.05276,-0.05276 +-0.049304,-0.049304,-0.049304,-0.049304,-0.049304,-0.049304 +-0.045974,-0.045974,-0.045974,-0.045974,-0.045974,-0.045974 +-0.042769,-0.042769,-0.042769,-0.042769,-0.042769,-0.042769 +-0.039688,-0.039688,-0.039688,-0.039688,-0.039688,-0.039688 +-0.036733,-0.036733,-0.036733,-0.036733,-0.036733,-0.036733 +-0.033902,-0.033902,-0.033902,-0.033902,-0.033902,-0.033902 +-0.031197,-0.031197,-0.031197,-0.031197,-0.031197,-0.031197 +-0.028616,-0.028616,-0.028616,-0.028616,-0.028616,-0.028616 +-0.026161,-0.026161,-0.026161,-0.026161,-0.026161,-0.026161 +-0.02383,-0.02383,-0.02383,-0.02383,-0.02383,-0.02383 +-0.021625,-0.021625,-0.021625,-0.021625,-0.021625,-0.021625 +-0.019544,-0.019544,-0.019544,-0.019544,-0.019544,-0.019544 +-0.017589,-0.017589,-0.017589,-0.017589,-0.017589,-0.017589 +-0.015758,-0.015758,-0.015758,-0.015758,-0.015758,-0.015758 +-0.014053,-0.014053,-0.014053,-0.014053,-0.014053,-0.014053 +-0.012472,-0.012472,-0.012472,-0.012472,-0.012472,-0.012472 +-0.011015,-0.011015,-0.011015,-0.011015,-0.011015,-0.011015 +-0.009675,-0.009675,-0.009675,-0.009675,-0.009675,-0.009675 +-0.008449,-0.008449,-0.008449,-0.008449,-0.008449,-0.008449 +-0.007331,-0.007331,-0.007331,-0.007331,-0.007331,-0.007331 +-0.006317,-0.006317,-0.006317,-0.006317,-0.006317,-0.006317 +-0.0054,-0.0054,-0.0054,-0.0054,-0.0054,-0.0054 +-0.004577,-0.004577,-0.004577,-0.004577,-0.004577,-0.004577 +-0.003842,-0.003842,-0.003842,-0.003842,-0.003842,-0.003842 +-0.00319,-0.00319,-0.00319,-0.00319,-0.00319,-0.00319 +-0.002617,-0.002617,-0.002617,-0.002617,-0.002617,-0.002617 +-0.002117,-0.002117,-0.002117,-0.002117,-0.002117,-0.002117 +-0.001684,-0.001684,-0.001684,-0.001684,-0.001684,-0.001684 +-0.001316,-0.001316,-0.001316,-0.001316,-0.001316,-0.001316 +-0.001005,-0.001005,-0.001005,-0.001005,-0.001005,-0.001005 +-0.000747,-0.000747,-0.000747,-0.000747,-0.000747,-0.000747 +-0.000538,-0.000538,-0.000538,-0.000538,-0.000538,-0.000538 +-0.000372,-0.000372,-0.000372,-0.000372,-0.000372,-0.000372 +-0.000244,-0.000244,-0.000244,-0.000244,-0.000244,-0.000244 +-0.00015,-0.00015,-0.00015,-0.00015,-0.00015,-0.00015 +-0.000083,-0.000083,-0.000083,-0.000083,-0.000083,-0.000083 +-0.00004,-0.00004,-0.00004,-0.00004,-0.00004,-0.00004 +-0.000015,-0.000015,-0.000015,-0.000015,-0.000015,-0.000015 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000008,0.000008,0.000008,0.000008,0.000008,0.000008 +0.000028,0.000028,0.000028,0.000028,0.000028,0.000028 +0.000067,0.000067,0.000067,0.000067,0.000067,0.000067 +0.00013,0.00013,0.00013,0.00013,0.00013,0.00013 +0.000225,0.000225,0.000225,0.000225,0.000225,0.000225 +0.000357,0.000357,0.000357,0.000357,0.000357,0.000357 +0.000533,0.000533,0.000533,0.000533,0.000533,0.000533 +0.000759,0.000759,0.000759,0.000759,0.000759,0.000759 +0.001042,0.001042,0.001042,0.001042,0.001042,0.001042 +0.001386,0.001386,0.001386,0.001386,0.001386,0.001386 +0.0018,0.0018,0.0018,0.0018,0.0018,0.0018 +0.002289,0.002289,0.002289,0.002289,0.002289,0.002289 +0.002858,0.002858,0.002858,0.002858,0.002858,0.002858 +0.003516,0.003516,0.003516,0.003516,0.003516,0.003516 +0.004267,0.004267,0.004267,0.004267,0.004267,0.004267 +0.005118,0.005118,0.005118,0.005118,0.005118,0.005118 +0.006075,0.006075,0.006075,0.006075,0.006075,0.006075 +0.007145,0.007145,0.007145,0.007145,0.007145,0.007145 +0.008333,0.008333,0.008333,0.008333,0.008333,0.008333 +0.009647,0.009647,0.009647,0.009647,0.009647,0.009647 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012674,0.012674,0.012674,0.012674,0.012674,0.012674 +0.0144,0.0144,0.0144,0.0144,0.0144,0.0144 +0.016276,0.016276,0.016276,0.016276,0.016276,0.016276 +0.018307,0.018307,0.018307,0.018307,0.018307,0.018307 +0.020495,0.020495,0.020495,0.020495,0.020495,0.020495 +0.022839,0.022839,0.022839,0.022839,0.022839,0.022839 +0.025339,0.025339,0.025339,0.025339,0.025339,0.025339 +0.027995,0.027995,0.027995,0.027995,0.027995,0.027995 +0.030807,0.030807,0.030807,0.030807,0.030807,0.030807 +0.033776,0.033776,0.033776,0.033776,0.033776,0.033776 +0.036901,0.036901,0.036901,0.036901,0.036901,0.036901 +0.040182,0.040182,0.040182,0.040182,0.040182,0.040182 +0.04362,0.04362,0.04362,0.04362,0.04362,0.04362 +0.047214,0.047214,0.047214,0.047214,0.047214,0.047214 +0.050964,0.050964,0.050964,0.050964,0.050964,0.050964 +0.05487,0.05487,0.05487,0.05487,0.05487,0.05487 +0.058932,0.058932,0.058932,0.058932,0.058932,0.058932 +0.063151,0.063151,0.063151,0.063151,0.063151,0.063151 +0.067526,0.067526,0.067526,0.067526,0.067526,0.067526 +0.072057,0.072057,0.072057,0.072057,0.072057,0.072057 +0.076745,0.076745,0.076745,0.076745,0.076745,0.076745 +0.081589,0.081589,0.081589,0.081589,0.081589,0.081589 +0.086589,0.086589,0.086589,0.086589,0.086589,0.086589 +0.091745,0.091745,0.091745,0.091745,0.091745,0.091745 +0.097057,0.097057,0.097057,0.097057,0.097057,0.097057 +0.102526,0.102526,0.102526,0.102526,0.102526,0.102526 +0.108151,0.108151,0.108151,0.108151,0.108151,0.108151 +0.113932,0.113932,0.113932,0.113932,0.113932,0.113932 +0.11987,0.11987,0.11987,0.11987,0.11987,0.11987 +0.125964,0.125964,0.125964,0.125964,0.125964,0.125964 +0.132214,0.132214,0.132214,0.132214,0.132214,0.132214 +0.13862,0.13862,0.13862,0.13862,0.13862,0.13862 +0.145182,0.145182,0.145182,0.145182,0.145182,0.145182 +0.151901,0.151901,0.151901,0.151901,0.151901,0.151901 +0.158776,0.158776,0.158776,0.158776,0.158776,0.158776 +0.165807,0.165807,0.165807,0.165807,0.165807,0.165807 +0.172995,0.172995,0.172995,0.172995,0.172995,0.172995 +0.180339,0.180339,0.180339,0.180339,0.180339,0.180339 +0.187839,0.187839,0.187839,0.187839,0.187839,0.187839 +0.195495,0.195495,0.195495,0.195495,0.195495,0.195495 +0.203307,0.203307,0.203307,0.203307,0.203307,0.203307 +0.211276,0.211276,0.211276,0.211276,0.211276,0.211276 +0.219401,0.219401,0.219401,0.219401,0.219401,0.219401 +0.227682,0.227682,0.227682,0.227682,0.227682,0.227682 +0.23612,0.23612,0.23612,0.23612,0.23612,0.23612 +0.244714,0.244714,0.244714,0.244714,0.244714,0.244714 +0.253464,0.253464,0.253464,0.253464,0.253464,0.253464 +0.26237,0.26237,0.26237,0.26237,0.26237,0.26237 +0.271432,0.271432,0.271432,0.271432,0.271432,0.271432 +0.280651,0.280651,0.280651,0.280651,0.280651,0.280651 +0.290026,0.290026,0.290026,0.290026,0.290026,0.290026 +0.299557,0.299557,0.299557,0.299557,0.299557,0.299557 +0.309245,0.309245,0.309245,0.309245,0.309245,0.309245 +0.319089,0.319089,0.319089,0.319089,0.319089,0.319089 +0.329089,0.329089,0.329089,0.329089,0.329089,0.329089 +0.339245,0.339245,0.339245,0.339245,0.339245,0.339245 +0.349557,0.349557,0.349557,0.349557,0.349557,0.349557 +0.360026,0.360026,0.360026,0.360026,0.360026,0.360026 +0.370651,0.370651,0.370651,0.370651,0.370651,0.370651 +0.381432,0.381432,0.381432,0.381432,0.381432,0.381432 +0.39237,0.39237,0.39237,0.39237,0.39237,0.39237 +0.403464,0.403464,0.403464,0.403464,0.403464,0.403464 +0.414714,0.414714,0.414714,0.414714,0.414714,0.414714 +0.42612,0.42612,0.42612,0.42612,0.42612,0.42612 +0.437682,0.437682,0.437682,0.437682,0.437682,0.437682 +0.449401,0.449401,0.449401,0.449401,0.449401,0.449401 +0.461276,0.461276,0.461276,0.461276,0.461276,0.461276 +0.473307,0.473307,0.473307,0.473307,0.473307,0.473307 +0.485495,0.485495,0.485495,0.485495,0.485495,0.485495 +0.497839,0.497839,0.497839,0.497839,0.497839,0.497839 +0.510339,0.510339,0.510339,0.510339,0.510339,0.510339 +0.522995,0.522995,0.522995,0.522995,0.522995,0.522995 +0.535806,0.535806,0.535806,0.535806,0.535806,0.535806 +0.548767,0.548767,0.548767,0.548767,0.548767,0.548767 +0.561871,0.561871,0.561871,0.561871,0.561871,0.561871 +0.575112,0.575112,0.575112,0.575112,0.575112,0.575112 +0.588484,0.588484,0.588484,0.588484,0.588484,0.588484 +0.60198,0.60198,0.60198,0.60198,0.60198,0.60198 +0.615595,0.615595,0.615595,0.615595,0.615595,0.615595 +0.629321,0.629321,0.629321,0.629321,0.629321,0.629321 +0.643154,0.643154,0.643154,0.643154,0.643154,0.643154 +0.657086,0.657086,0.657086,0.657086,0.657086,0.657086 +0.671111,0.671111,0.671111,0.671111,0.671111,0.671111 +0.685223,0.685223,0.685223,0.685223,0.685223,0.685223 +0.699416,0.699416,0.699416,0.699416,0.699416,0.699416 +0.713684,0.713684,0.713684,0.713684,0.713684,0.713684 +0.72802,0.72802,0.72802,0.72802,0.72802,0.72802 +0.742417,0.742417,0.742417,0.742417,0.742417,0.742417 +0.756871,0.756871,0.756871,0.756871,0.756871,0.756871 +0.771374,0.771374,0.771374,0.771374,0.771374,0.771374 +0.785921,0.785921,0.785921,0.785921,0.785921,0.785921 +0.800504,0.800504,0.800504,0.800504,0.800504,0.800504 +0.815118,0.815118,0.815118,0.815118,0.815118,0.815118 +0.829757,0.829757,0.829757,0.829757,0.829757,0.829757 +0.844414,0.844414,0.844414,0.844414,0.844414,0.844414 +0.859083,0.859083,0.859083,0.859083,0.859083,0.859083 +0.873758,0.873758,0.873758,0.873758,0.873758,0.873758 +0.888433,0.888433,0.888433,0.888433,0.888433,0.888433 +0.9031,0.9031,0.9031,0.9031,0.9031,0.9031 +0.917755,0.917755,0.917755,0.917755,0.917755,0.917755 +0.932391,0.932391,0.932391,0.932391,0.932391,0.932391 +0.947001,0.947001,0.947001,0.947001,0.947001,0.947001 +0.961579,0.961579,0.961579,0.961579,0.961579,0.961579 +0.976119,0.976119,0.976119,0.976119,0.976119,0.976119 +0.990615,0.990615,0.990615,0.990615,0.990615,0.990615 +1.005061,1.005061,1.005061,1.005061,1.005061,1.005061 +1.01945,1.01945,1.01945,1.01945,1.01945,1.01945 +1.033776,1.033776,1.033776,1.033776,1.033776,1.033776 +1.048033,1.048033,1.048033,1.048033,1.048033,1.048033 +1.062214,1.062214,1.062214,1.062214,1.062214,1.062214 +1.076313,1.076313,1.076313,1.076313,1.076313,1.076313 +1.090325,1.090325,1.090325,1.090325,1.090325,1.090325 +1.104242,1.104242,1.104242,1.104242,1.104242,1.104242 +1.118059,1.118059,1.118059,1.118059,1.118059,1.118059 +1.131769,1.131769,1.131769,1.131769,1.131769,1.131769 +1.145366,1.145366,1.145366,1.145366,1.145366,1.145366 +1.158844,1.158844,1.158844,1.158844,1.158844,1.158844 +1.172197,1.172197,1.172197,1.172197,1.172197,1.172197 +1.185417,1.185417,1.185417,1.185417,1.185417,1.185417 +1.1985,1.1985,1.1985,1.1985,1.1985,1.1985 +1.211439,1.211439,1.211439,1.211439,1.211439,1.211439 +1.224227,1.224227,1.224227,1.224227,1.224227,1.224227 +1.236859,1.236859,1.236859,1.236859,1.236859,1.236859 +1.249336,1.249336,1.249336,1.249336,1.249336,1.249336 +1.261656,1.261656,1.261656,1.261656,1.261656,1.261656 +1.27382,1.27382,1.27382,1.27382,1.27382,1.27382 +1.285828,1.285828,1.285828,1.285828,1.285828,1.285828 +1.297679,1.297679,1.297679,1.297679,1.297679,1.297679 +1.309374,1.309374,1.309374,1.309374,1.309374,1.309374 +1.320913,1.320913,1.320913,1.320913,1.320913,1.320913 +1.332296,1.332296,1.332296,1.332296,1.332296,1.332296 +1.343522,1.343522,1.343522,1.343522,1.343522,1.343522 +1.354592,1.354592,1.354592,1.354592,1.354592,1.354592 +1.365506,1.365506,1.365506,1.365506,1.365506,1.365506 +1.376264,1.376264,1.376264,1.376264,1.376264,1.376264 +1.386865,1.386865,1.386865,1.386865,1.386865,1.386865 +1.39731,1.39731,1.39731,1.39731,1.39731,1.39731 +1.407599,1.407599,1.407599,1.407599,1.407599,1.407599 +1.417732,1.417732,1.417732,1.417732,1.417732,1.417732 +1.427708,1.427708,1.427708,1.427708,1.427708,1.427708 +1.437528,1.437528,1.437528,1.437528,1.437528,1.437528 +1.447192,1.447192,1.447192,1.447192,1.447192,1.447192 +1.4567,1.4567,1.4567,1.4567,1.4567,1.4567 +1.466051,1.466051,1.466051,1.466051,1.466051,1.466051 +1.475247,1.475247,1.475247,1.475247,1.475247,1.475247 +1.484285,1.484285,1.484285,1.484285,1.484285,1.484285 +1.493168,1.493168,1.493168,1.493168,1.493168,1.493168 +1.501894,1.501894,1.501894,1.501894,1.501894,1.501894 +1.510465,1.510465,1.510465,1.510465,1.510465,1.510465 +1.518879,1.518879,1.518879,1.518879,1.518879,1.518879 +1.527136,1.527136,1.527136,1.527136,1.527136,1.527136 +1.535238,1.535238,1.535238,1.535238,1.535238,1.535238 +1.543183,1.543183,1.543183,1.543183,1.543183,1.543183 +1.550972,1.550972,1.550972,1.550972,1.550972,1.550972 +1.558604,1.558604,1.558604,1.558604,1.558604,1.558604 +1.566081,1.566081,1.566081,1.566081,1.566081,1.566081 +1.573401,1.573401,1.573401,1.573401,1.573401,1.573401 +1.580565,1.580565,1.580565,1.580565,1.580565,1.580565 +1.587572,1.587572,1.587572,1.587572,1.587572,1.587572 +1.594424,1.594424,1.594424,1.594424,1.594424,1.594424 +1.601119,1.601119,1.601119,1.601119,1.601119,1.601119 +1.607658,1.607658,1.607658,1.607658,1.607658,1.607658 +1.61404,1.61404,1.61404,1.61404,1.61404,1.61404 +1.620267,1.620267,1.620267,1.620267,1.620267,1.620267 +1.626337,1.626337,1.626337,1.626337,1.626337,1.626337 +1.632251,1.632251,1.632251,1.632251,1.632251,1.632251 +1.638009,1.638009,1.638009,1.638009,1.638009,1.638009 +1.64361,1.64361,1.64361,1.64361,1.64361,1.64361 +1.649055,1.649055,1.649055,1.649055,1.649055,1.649055 +1.654344,1.654344,1.654344,1.654344,1.654344,1.654344 +1.659477,1.659477,1.659477,1.659477,1.659477,1.659477 +1.664453,1.664453,1.664453,1.664453,1.664453,1.664453 +1.669273,1.669273,1.669273,1.669273,1.669273,1.669273 +1.673937,1.673937,1.673937,1.673937,1.673937,1.673937 +1.678445,1.678445,1.678445,1.678445,1.678445,1.678445 +1.682796,1.682796,1.682796,1.682796,1.682796,1.682796 +1.686991,1.686991,1.686991,1.686991,1.686991,1.686991 +1.69103,1.69103,1.69103,1.69103,1.69103,1.69103 +1.694913,1.694913,1.694913,1.694913,1.694913,1.694913 +1.698639,1.698639,1.698639,1.698639,1.698639,1.698639 +1.702209,1.702209,1.702209,1.702209,1.702209,1.702209 +1.705623,1.705623,1.705623,1.705623,1.705623,1.705623 +1.708881,1.708881,1.708881,1.708881,1.708881,1.708881 +1.711982,1.711982,1.711982,1.711982,1.711982,1.711982 +1.714928,1.714928,1.714928,1.714928,1.714928,1.714928 +1.717716,1.717716,1.717716,1.717716,1.717716,1.717716 +1.720349,1.720349,1.720349,1.720349,1.720349,1.720349 +1.722825,1.722825,1.722825,1.722825,1.722825,1.722825 +1.725146,1.725146,1.725146,1.725146,1.725146,1.725146 +1.72731,1.72731,1.72731,1.72731,1.72731,1.72731 +1.729317,1.729317,1.729317,1.729317,1.729317,1.729317 +1.73117,1.73117,1.73117,1.73117,1.73117,1.73117 +1.732874,1.732874,1.732874,1.732874,1.732874,1.732874 +1.734435,1.734435,1.734435,1.734435,1.734435,1.734435 +1.73586,1.73586,1.73586,1.73586,1.73586,1.73586 +1.737154,1.737154,1.737154,1.737154,1.737154,1.737154 +1.738324,1.738324,1.738324,1.738324,1.738324,1.738324 +1.739377,1.739377,1.739377,1.739377,1.739377,1.739377 +1.740317,1.740317,1.740317,1.740317,1.740317,1.740317 +1.741153,1.741153,1.741153,1.741153,1.741153,1.741153 +1.74189,1.74189,1.74189,1.74189,1.74189,1.74189 +1.742533,1.742533,1.742533,1.742533,1.742533,1.742533 +1.74309,1.74309,1.74309,1.74309,1.74309,1.74309 +1.743567,1.743567,1.743567,1.743567,1.743567,1.743567 +1.74397,1.74397,1.74397,1.74397,1.74397,1.74397 +1.744305,1.744305,1.744305,1.744305,1.744305,1.744305 +1.744578,1.744578,1.744578,1.744578,1.744578,1.744578 +1.744796,1.744796,1.744796,1.744796,1.744796,1.744796 +1.744965,1.744965,1.744965,1.744965,1.744965,1.744965 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.745181,1.745181,1.745181,1.745181,1.745181,1.745181 +1.745241,1.745241,1.745241,1.745241,1.745241,1.745241 +1.745276,1.745276,1.745276,1.745276,1.745276,1.745276 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745292,1.745292,1.745292,1.745292,1.745292,1.745292 +1.745272,1.745272,1.745272,1.745272,1.745272,1.745272 +1.745233,1.745233,1.745233,1.745233,1.745233,1.745233 +1.74517,1.74517,1.74517,1.74517,1.74517,1.74517 +1.745075,1.745075,1.745075,1.745075,1.745075,1.745075 +1.744943,1.744943,1.744943,1.744943,1.744943,1.744943 +1.744767,1.744767,1.744767,1.744767,1.744767,1.744767 +1.744541,1.744541,1.744541,1.744541,1.744541,1.744541 +1.744258,1.744258,1.744258,1.744258,1.744258,1.744258 +1.743914,1.743914,1.743914,1.743914,1.743914,1.743914 +1.7435,1.7435,1.7435,1.7435,1.7435,1.7435 +1.743011,1.743011,1.743011,1.743011,1.743011,1.743011 +1.742442,1.742442,1.742442,1.742442,1.742442,1.742442 +1.741784,1.741784,1.741784,1.741784,1.741784,1.741784 +1.741033,1.741033,1.741033,1.741033,1.741033,1.741033 +1.740182,1.740182,1.740182,1.740182,1.740182,1.740182 +1.739225,1.739225,1.739225,1.739225,1.739225,1.739225 +1.738155,1.738155,1.738155,1.738155,1.738155,1.738155 +1.736967,1.736967,1.736967,1.736967,1.736967,1.736967 +1.735653,1.735653,1.735653,1.735653,1.735653,1.735653 +1.734208,1.734208,1.734208,1.734208,1.734208,1.734208 +1.732626,1.732626,1.732626,1.732626,1.732626,1.732626 +1.7309,1.7309,1.7309,1.7309,1.7309,1.7309 +1.729024,1.729024,1.729024,1.729024,1.729024,1.729024 +1.726993,1.726993,1.726993,1.726993,1.726993,1.726993 +1.724805,1.724805,1.724805,1.724805,1.724805,1.724805 +1.722461,1.722461,1.722461,1.722461,1.722461,1.722461 +1.719961,1.719961,1.719961,1.719961,1.719961,1.719961 +1.717305,1.717305,1.717305,1.717305,1.717305,1.717305 +1.714493,1.714493,1.714493,1.714493,1.714493,1.714493 +1.711524,1.711524,1.711524,1.711524,1.711524,1.711524 +1.708399,1.708399,1.708399,1.708399,1.708399,1.708399 +1.705118,1.705118,1.705118,1.705118,1.705118,1.705118 +1.70168,1.70168,1.70168,1.70168,1.70168,1.70168 +1.698086,1.698086,1.698086,1.698086,1.698086,1.698086 +1.694336,1.694336,1.694336,1.694336,1.694336,1.694336 +1.69043,1.69043,1.69043,1.69043,1.69043,1.69043 +1.686368,1.686368,1.686368,1.686368,1.686368,1.686368 +1.682149,1.682149,1.682149,1.682149,1.682149,1.682149 +1.677774,1.677774,1.677774,1.677774,1.677774,1.677774 +1.673243,1.673243,1.673243,1.673243,1.673243,1.673243 +1.668555,1.668555,1.668555,1.668555,1.668555,1.668555 +1.663711,1.663711,1.663711,1.663711,1.663711,1.663711 +1.658711,1.658711,1.658711,1.658711,1.658711,1.658711 +1.653555,1.653555,1.653555,1.653555,1.653555,1.653555 +1.648243,1.648243,1.648243,1.648243,1.648243,1.648243 +1.642774,1.642774,1.642774,1.642774,1.642774,1.642774 +1.637149,1.637149,1.637149,1.637149,1.637149,1.637149 +1.631368,1.631368,1.631368,1.631368,1.631368,1.631368 +1.62543,1.62543,1.62543,1.62543,1.62543,1.62543 +1.619336,1.619336,1.619336,1.619336,1.619336,1.619336 +1.613086,1.613086,1.613086,1.613086,1.613086,1.613086 +1.60668,1.60668,1.60668,1.60668,1.60668,1.60668 +1.600118,1.600118,1.600118,1.600118,1.600118,1.600118 +1.593399,1.593399,1.593399,1.593399,1.593399,1.593399 +1.586524,1.586524,1.586524,1.586524,1.586524,1.586524 +1.579493,1.579493,1.579493,1.579493,1.579493,1.579493 +1.572305,1.572305,1.572305,1.572305,1.572305,1.572305 +1.564961,1.564961,1.564961,1.564961,1.564961,1.564961 +1.557461,1.557461,1.557461,1.557461,1.557461,1.557461 +1.549805,1.549805,1.549805,1.549805,1.549805,1.549805 +1.541993,1.541993,1.541993,1.541993,1.541993,1.541993 +1.534024,1.534024,1.534024,1.534024,1.534024,1.534024 +1.525899,1.525899,1.525899,1.525899,1.525899,1.525899 +1.517618,1.517618,1.517618,1.517618,1.517618,1.517618 +1.50918,1.50918,1.50918,1.50918,1.50918,1.50918 +1.500586,1.500586,1.500586,1.500586,1.500586,1.500586 +1.491836,1.491836,1.491836,1.491836,1.491836,1.491836 +1.48293,1.48293,1.48293,1.48293,1.48293,1.48293 +1.473868,1.473868,1.473868,1.473868,1.473868,1.473868 +1.464649,1.464649,1.464649,1.464649,1.464649,1.464649 +1.455274,1.455274,1.455274,1.455274,1.455274,1.455274 +1.445743,1.445743,1.445743,1.445743,1.445743,1.445743 +1.436055,1.436055,1.436055,1.436055,1.436055,1.436055 +1.426211,1.426211,1.426211,1.426211,1.426211,1.426211 +1.416211,1.416211,1.416211,1.416211,1.416211,1.416211 +1.406055,1.406055,1.406055,1.406055,1.406055,1.406055 +1.395743,1.395743,1.395743,1.395743,1.395743,1.395743 +1.385274,1.385274,1.385274,1.385274,1.385274,1.385274 +1.374649,1.374649,1.374649,1.374649,1.374649,1.374649 +1.363868,1.363868,1.363868,1.363868,1.363868,1.363868 +1.35293,1.35293,1.35293,1.35293,1.35293,1.35293 +1.341836,1.341836,1.341836,1.341836,1.341836,1.341836 +1.330586,1.330586,1.330586,1.330586,1.330586,1.330586 +1.31918,1.31918,1.31918,1.31918,1.31918,1.31918 +1.307618,1.307618,1.307618,1.307618,1.307618,1.307618 +1.295899,1.295899,1.295899,1.295899,1.295899,1.295899 +1.284024,1.284024,1.284024,1.284024,1.284024,1.284024 +1.271993,1.271993,1.271993,1.271993,1.271993,1.271993 +1.259805,1.259805,1.259805,1.259805,1.259805,1.259805 +1.247461,1.247461,1.247461,1.247461,1.247461,1.247461 +1.234961,1.234961,1.234961,1.234961,1.234961,1.234961 +1.222305,1.222305,1.222305,1.222305,1.222305,1.222305 +1.209494,1.209494,1.209494,1.209494,1.209494,1.209494 +1.196533,1.196533,1.196533,1.196533,1.196533,1.196533 +1.183429,1.183429,1.183429,1.183429,1.183429,1.183429 +1.170188,1.170188,1.170188,1.170188,1.170188,1.170188 +1.156816,1.156816,1.156816,1.156816,1.156816,1.156816 +1.14332,1.14332,1.14332,1.14332,1.14332,1.14332 +1.129705,1.129705,1.129705,1.129705,1.129705,1.129705 +1.115979,1.115979,1.115979,1.115979,1.115979,1.115979 +1.102146,1.102146,1.102146,1.102146,1.102146,1.102146 +1.088214,1.088214,1.088214,1.088214,1.088214,1.088214 +1.074189,1.074189,1.074189,1.074189,1.074189,1.074189 +1.060077,1.060077,1.060077,1.060077,1.060077,1.060077 +1.045884,1.045884,1.045884,1.045884,1.045884,1.045884 +1.031616,1.031616,1.031616,1.031616,1.031616,1.031616 +1.01728,1.01728,1.01728,1.01728,1.01728,1.01728 +1.002883,1.002883,1.002883,1.002883,1.002883,1.002883 +0.988429,0.988429,0.988429,0.988429,0.988429,0.988429 +0.973926,0.973926,0.973926,0.973926,0.973926,0.973926 +0.959379,0.959379,0.959379,0.959379,0.959379,0.959379 +0.944796,0.944796,0.944796,0.944796,0.944796,0.944796 +0.930182,0.930182,0.930182,0.930182,0.930182,0.930182 +0.915543,0.915543,0.915543,0.915543,0.915543,0.915543 +0.900886,0.900886,0.900886,0.900886,0.900886,0.900886 +0.886217,0.886217,0.886217,0.886217,0.886217,0.886217 +0.871542,0.871542,0.871542,0.871542,0.871542,0.871542 +0.856867,0.856867,0.856867,0.856867,0.856867,0.856867 +0.8422,0.8422,0.8422,0.8422,0.8422,0.8422 +0.827545,0.827545,0.827545,0.827545,0.827545,0.827545 +0.812909,0.812909,0.812909,0.812909,0.812909,0.812909 +0.798299,0.798299,0.798299,0.798299,0.798299,0.798299 +0.783721,0.783721,0.783721,0.783721,0.783721,0.783721 +0.769181,0.769181,0.769181,0.769181,0.769181,0.769181 +0.754685,0.754685,0.754685,0.754685,0.754685,0.754685 +0.740239,0.740239,0.740239,0.740239,0.740239,0.740239 +0.72585,0.72585,0.72585,0.72585,0.72585,0.72585 +0.711524,0.711524,0.711524,0.711524,0.711524,0.711524 +0.697267,0.697267,0.697267,0.697267,0.697267,0.697267 +0.683086,0.683086,0.683086,0.683086,0.683086,0.683086 +0.668987,0.668987,0.668987,0.668987,0.668987,0.668987 +0.654975,0.654975,0.654975,0.654975,0.654975,0.654975 +0.641058,0.641058,0.641058,0.641058,0.641058,0.641058 +0.627241,0.627241,0.627241,0.627241,0.627241,0.627241 +0.613531,0.613531,0.613531,0.613531,0.613531,0.613531 +0.599934,0.599934,0.599934,0.599934,0.599934,0.599934 +0.586456,0.586456,0.586456,0.586456,0.586456,0.586456 +0.573103,0.573103,0.573103,0.573103,0.573103,0.573103 +0.559883,0.559883,0.559883,0.559883,0.559883,0.559883 +0.5468,0.5468,0.5468,0.5468,0.5468,0.5468 +0.533861,0.533861,0.533861,0.533861,0.533861,0.533861 +0.521073,0.521073,0.521073,0.521073,0.521073,0.521073 +0.508441,0.508441,0.508441,0.508441,0.508441,0.508441 +0.495964,0.495964,0.495964,0.495964,0.495964,0.495964 +0.483644,0.483644,0.483644,0.483644,0.483644,0.483644 +0.47148,0.47148,0.47148,0.47148,0.47148,0.47148 +0.459472,0.459472,0.459472,0.459472,0.459472,0.459472 +0.447621,0.447621,0.447621,0.447621,0.447621,0.447621 +0.435926,0.435926,0.435926,0.435926,0.435926,0.435926 +0.424387,0.424387,0.424387,0.424387,0.424387,0.424387 +0.413004,0.413004,0.413004,0.413004,0.413004,0.413004 +0.401778,0.401778,0.401778,0.401778,0.401778,0.401778 +0.390708,0.390708,0.390708,0.390708,0.390708,0.390708 +0.379794,0.379794,0.379794,0.379794,0.379794,0.379794 +0.369036,0.369036,0.369036,0.369036,0.369036,0.369036 +0.358435,0.358435,0.358435,0.358435,0.358435,0.358435 +0.34799,0.34799,0.34799,0.34799,0.34799,0.34799 +0.337701,0.337701,0.337701,0.337701,0.337701,0.337701 +0.327568,0.327568,0.327568,0.327568,0.327568,0.327568 +0.317592,0.317592,0.317592,0.317592,0.317592,0.317592 +0.307772,0.307772,0.307772,0.307772,0.307772,0.307772 +0.298108,0.298108,0.298108,0.298108,0.298108,0.298108 +0.2886,0.2886,0.2886,0.2886,0.2886,0.2886 +0.279249,0.279249,0.279249,0.279249,0.279249,0.279249 +0.270053,0.270053,0.270053,0.270053,0.270053,0.270053 +0.261015,0.261015,0.261015,0.261015,0.261015,0.261015 +0.252132,0.252132,0.252132,0.252132,0.252132,0.252132 +0.243406,0.243406,0.243406,0.243406,0.243406,0.243406 +0.234835,0.234835,0.234835,0.234835,0.234835,0.234835 +0.226421,0.226421,0.226421,0.226421,0.226421,0.226421 +0.218164,0.218164,0.218164,0.218164,0.218164,0.218164 +0.210062,0.210062,0.210062,0.210062,0.210062,0.210062 +0.202117,0.202117,0.202117,0.202117,0.202117,0.202117 +0.194328,0.194328,0.194328,0.194328,0.194328,0.194328 +0.186696,0.186696,0.186696,0.186696,0.186696,0.186696 +0.179219,0.179219,0.179219,0.179219,0.179219,0.179219 +0.171899,0.171899,0.171899,0.171899,0.171899,0.171899 +0.164735,0.164735,0.164735,0.164735,0.164735,0.164735 +0.157728,0.157728,0.157728,0.157728,0.157728,0.157728 +0.150876,0.150876,0.150876,0.150876,0.150876,0.150876 +0.144181,0.144181,0.144181,0.144181,0.144181,0.144181 +0.137642,0.137642,0.137642,0.137642,0.137642,0.137642 +0.13126,0.13126,0.13126,0.13126,0.13126,0.13126 +0.125033,0.125033,0.125033,0.125033,0.125033,0.125033 +0.118963,0.118963,0.118963,0.118963,0.118963,0.118963 +0.113049,0.113049,0.113049,0.113049,0.113049,0.113049 +0.107291,0.107291,0.107291,0.107291,0.107291,0.107291 +0.10169,0.10169,0.10169,0.10169,0.10169,0.10169 +0.096245,0.096245,0.096245,0.096245,0.096245,0.096245 +0.090956,0.090956,0.090956,0.090956,0.090956,0.090956 +0.085823,0.085823,0.085823,0.085823,0.085823,0.085823 +0.080847,0.080847,0.080847,0.080847,0.080847,0.080847 +0.076027,0.076027,0.076027,0.076027,0.076027,0.076027 +0.071363,0.071363,0.071363,0.071363,0.071363,0.071363 +0.066855,0.066855,0.066855,0.066855,0.066855,0.066855 +0.062504,0.062504,0.062504,0.062504,0.062504,0.062504 +0.058309,0.058309,0.058309,0.058309,0.058309,0.058309 +0.05427,0.05427,0.05427,0.05427,0.05427,0.05427 +0.050387,0.050387,0.050387,0.050387,0.050387,0.050387 +0.046661,0.046661,0.046661,0.046661,0.046661,0.046661 +0.043091,0.043091,0.043091,0.043091,0.043091,0.043091 +0.039677,0.039677,0.039677,0.039677,0.039677,0.039677 +0.036419,0.036419,0.036419,0.036419,0.036419,0.036419 +0.033318,0.033318,0.033318,0.033318,0.033318,0.033318 +0.030372,0.030372,0.030372,0.030372,0.030372,0.030372 +0.027584,0.027584,0.027584,0.027584,0.027584,0.027584 +0.024951,0.024951,0.024951,0.024951,0.024951,0.024951 +0.022475,0.022475,0.022475,0.022475,0.022475,0.022475 +0.020154,0.020154,0.020154,0.020154,0.020154,0.020154 +0.01799,0.01799,0.01799,0.01799,0.01799,0.01799 +0.015983,0.015983,0.015983,0.015983,0.015983,0.015983 +0.01413,0.01413,0.01413,0.01413,0.01413,0.01413 +0.012426,0.012426,0.012426,0.012426,0.012426,0.012426 +0.010865,0.010865,0.010865,0.010865,0.010865,0.010865 +0.00944,0.00944,0.00944,0.00944,0.00944,0.00944 +0.008146,0.008146,0.008146,0.008146,0.008146,0.008146 +0.006976,0.006976,0.006976,0.006976,0.006976,0.006976 +0.005923,0.005923,0.005923,0.005923,0.005923,0.005923 +0.004983,0.004983,0.004983,0.004983,0.004983,0.004983 +0.004147,0.004147,0.004147,0.004147,0.004147,0.004147 +0.00341,0.00341,0.00341,0.00341,0.00341,0.00341 +0.002767,0.002767,0.002767,0.002767,0.002767,0.002767 +0.00221,0.00221,0.00221,0.00221,0.00221,0.00221 +0.001733,0.001733,0.001733,0.001733,0.001733,0.001733 +0.00133,0.00133,0.00133,0.00133,0.00133,0.00133 +0.000995,0.000995,0.000995,0.000995,0.000995,0.000995 +0.000722,0.000722,0.000722,0.000722,0.000722,0.000722 +0.000504,0.000504,0.000504,0.000504,0.000504,0.000504 +0.000335,0.000335,0.000335,0.000335,0.000335,0.000335 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.000119,0.000119,0.000119,0.000119,0.000119,0.000119 +0.000059,0.000059,0.000059,0.000059,0.000059,0.000059 +0.000024,0.000024,0.000024,0.000024,0.000024,0.000024 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000008,-0.000008,-0.000008,-0.000008,-0.000008,-0.000008 +-0.000028,-0.000028,-0.000028,-0.000028,-0.000028,-0.000028 +-0.000067,-0.000067,-0.000067,-0.000067,-0.000067,-0.000067 +-0.00013,-0.00013,-0.00013,-0.00013,-0.00013,-0.00013 +-0.000225,-0.000225,-0.000225,-0.000225,-0.000225,-0.000225 +-0.000357,-0.000357,-0.000357,-0.000357,-0.000357,-0.000357 +-0.000533,-0.000533,-0.000533,-0.000533,-0.000533,-0.000533 +-0.000759,-0.000759,-0.000759,-0.000759,-0.000759,-0.000759 +-0.001042,-0.001042,-0.001042,-0.001042,-0.001042,-0.001042 +-0.001386,-0.001386,-0.001386,-0.001386,-0.001386,-0.001386 +-0.0018,-0.0018,-0.0018,-0.0018,-0.0018,-0.0018 +-0.002289,-0.002289,-0.002289,-0.002289,-0.002289,-0.002289 +-0.002858,-0.002858,-0.002858,-0.002858,-0.002858,-0.002858 +-0.003516,-0.003516,-0.003516,-0.003516,-0.003516,-0.003516 +-0.004267,-0.004267,-0.004267,-0.004267,-0.004267,-0.004267 +-0.005118,-0.005118,-0.005118,-0.005118,-0.005118,-0.005118 +-0.006075,-0.006075,-0.006075,-0.006075,-0.006075,-0.006075 +-0.007145,-0.007145,-0.007145,-0.007145,-0.007145,-0.007145 +-0.008333,-0.008333,-0.008333,-0.008333,-0.008333,-0.008333 +-0.009647,-0.009647,-0.009647,-0.009647,-0.009647,-0.009647 +-0.011092,-0.011092,-0.011092,-0.011092,-0.011092,-0.011092 +-0.012674,-0.012674,-0.012674,-0.012674,-0.012674,-0.012674 +-0.0144,-0.0144,-0.0144,-0.0144,-0.0144,-0.0144 +-0.016276,-0.016276,-0.016276,-0.016276,-0.016276,-0.016276 +-0.018307,-0.018307,-0.018307,-0.018307,-0.018307,-0.018307 +-0.020495,-0.020495,-0.020495,-0.020495,-0.020495,-0.020495 +-0.022839,-0.022839,-0.022839,-0.022839,-0.022839,-0.022839 +-0.025339,-0.025339,-0.025339,-0.025339,-0.025339,-0.025339 +-0.027995,-0.027995,-0.027995,-0.027995,-0.027995,-0.027995 +-0.030807,-0.030807,-0.030807,-0.030807,-0.030807,-0.030807 +-0.033776,-0.033776,-0.033776,-0.033776,-0.033776,-0.033776 +-0.036901,-0.036901,-0.036901,-0.036901,-0.036901,-0.036901 +-0.040182,-0.040182,-0.040182,-0.040182,-0.040182,-0.040182 +-0.04362,-0.04362,-0.04362,-0.04362,-0.04362,-0.04362 +-0.047214,-0.047214,-0.047214,-0.047214,-0.047214,-0.047214 +-0.050964,-0.050964,-0.050964,-0.050964,-0.050964,-0.050964 +-0.05487,-0.05487,-0.05487,-0.05487,-0.05487,-0.05487 +-0.058932,-0.058932,-0.058932,-0.058932,-0.058932,-0.058932 +-0.063151,-0.063151,-0.063151,-0.063151,-0.063151,-0.063151 +-0.067526,-0.067526,-0.067526,-0.067526,-0.067526,-0.067526 +-0.072057,-0.072057,-0.072057,-0.072057,-0.072057,-0.072057 +-0.076745,-0.076745,-0.076745,-0.076745,-0.076745,-0.076745 +-0.081589,-0.081589,-0.081589,-0.081589,-0.081589,-0.081589 +-0.086589,-0.086589,-0.086589,-0.086589,-0.086589,-0.086589 +-0.091745,-0.091745,-0.091745,-0.091745,-0.091745,-0.091745 +-0.097057,-0.097057,-0.097057,-0.097057,-0.097057,-0.097057 +-0.102526,-0.102526,-0.102526,-0.102526,-0.102526,-0.102526 +-0.108151,-0.108151,-0.108151,-0.108151,-0.108151,-0.108151 +-0.113932,-0.113932,-0.113932,-0.113932,-0.113932,-0.113932 +-0.11987,-0.11987,-0.11987,-0.11987,-0.11987,-0.11987 +-0.125964,-0.125964,-0.125964,-0.125964,-0.125964,-0.125964 +-0.132214,-0.132214,-0.132214,-0.132214,-0.132214,-0.132214 +-0.13862,-0.13862,-0.13862,-0.13862,-0.13862,-0.13862 +-0.145182,-0.145182,-0.145182,-0.145182,-0.145182,-0.145182 +-0.151901,-0.151901,-0.151901,-0.151901,-0.151901,-0.151901 +-0.158776,-0.158776,-0.158776,-0.158776,-0.158776,-0.158776 +-0.165807,-0.165807,-0.165807,-0.165807,-0.165807,-0.165807 +-0.172995,-0.172995,-0.172995,-0.172995,-0.172995,-0.172995 +-0.180339,-0.180339,-0.180339,-0.180339,-0.180339,-0.180339 +-0.187839,-0.187839,-0.187839,-0.187839,-0.187839,-0.187839 +-0.195495,-0.195495,-0.195495,-0.195495,-0.195495,-0.195495 +-0.203307,-0.203307,-0.203307,-0.203307,-0.203307,-0.203307 +-0.211276,-0.211276,-0.211276,-0.211276,-0.211276,-0.211276 +-0.219401,-0.219401,-0.219401,-0.219401,-0.219401,-0.219401 +-0.227682,-0.227682,-0.227682,-0.227682,-0.227682,-0.227682 +-0.23612,-0.23612,-0.23612,-0.23612,-0.23612,-0.23612 +-0.244714,-0.244714,-0.244714,-0.244714,-0.244714,-0.244714 +-0.253464,-0.253464,-0.253464,-0.253464,-0.253464,-0.253464 +-0.26237,-0.26237,-0.26237,-0.26237,-0.26237,-0.26237 +-0.271432,-0.271432,-0.271432,-0.271432,-0.271432,-0.271432 +-0.280651,-0.280651,-0.280651,-0.280651,-0.280651,-0.280651 +-0.290026,-0.290026,-0.290026,-0.290026,-0.290026,-0.290026 +-0.299557,-0.299557,-0.299557,-0.299557,-0.299557,-0.299557 +-0.309245,-0.309245,-0.309245,-0.309245,-0.309245,-0.309245 +-0.319089,-0.319089,-0.319089,-0.319089,-0.319089,-0.319089 +-0.329089,-0.329089,-0.329089,-0.329089,-0.329089,-0.329089 +-0.339245,-0.339245,-0.339245,-0.339245,-0.339245,-0.339245 +-0.349557,-0.349557,-0.349557,-0.349557,-0.349557,-0.349557 +-0.360026,-0.360026,-0.360026,-0.360026,-0.360026,-0.360026 +-0.370651,-0.370651,-0.370651,-0.370651,-0.370651,-0.370651 +-0.381432,-0.381432,-0.381432,-0.381432,-0.381432,-0.381432 +-0.39237,-0.39237,-0.39237,-0.39237,-0.39237,-0.39237 +-0.403464,-0.403464,-0.403464,-0.403464,-0.403464,-0.403464 +-0.414714,-0.414714,-0.414714,-0.414714,-0.414714,-0.414714 +-0.42612,-0.42612,-0.42612,-0.42612,-0.42612,-0.42612 +-0.437682,-0.437682,-0.437682,-0.437682,-0.437682,-0.437682 +-0.449401,-0.449401,-0.449401,-0.449401,-0.449401,-0.449401 +-0.461276,-0.461276,-0.461276,-0.461276,-0.461276,-0.461276 +-0.473307,-0.473307,-0.473307,-0.473307,-0.473307,-0.473307 +-0.485495,-0.485495,-0.485495,-0.485495,-0.485495,-0.485495 +-0.497839,-0.497839,-0.497839,-0.497839,-0.497839,-0.497839 +-0.510339,-0.510339,-0.510339,-0.510339,-0.510339,-0.510339 +-0.522995,-0.522995,-0.522995,-0.522995,-0.522995,-0.522995 +-0.535806,-0.535806,-0.535806,-0.535806,-0.535806,-0.535806 +-0.548767,-0.548767,-0.548767,-0.548767,-0.548767,-0.548767 +-0.561871,-0.561871,-0.561871,-0.561871,-0.561871,-0.561871 +-0.575112,-0.575112,-0.575112,-0.575112,-0.575112,-0.575112 +-0.588484,-0.588484,-0.588484,-0.588484,-0.588484,-0.588484 +-0.60198,-0.60198,-0.60198,-0.60198,-0.60198,-0.60198 +-0.615595,-0.615595,-0.615595,-0.615595,-0.615595,-0.615595 +-0.629321,-0.629321,-0.629321,-0.629321,-0.629321,-0.629321 +-0.643154,-0.643154,-0.643154,-0.643154,-0.643154,-0.643154 +-0.657086,-0.657086,-0.657086,-0.657086,-0.657086,-0.657086 +-0.671111,-0.671111,-0.671111,-0.671111,-0.671111,-0.671111 +-0.685223,-0.685223,-0.685223,-0.685223,-0.685223,-0.685223 +-0.699416,-0.699416,-0.699416,-0.699416,-0.699416,-0.699416 +-0.713684,-0.713684,-0.713684,-0.713684,-0.713684,-0.713684 +-0.72802,-0.72802,-0.72802,-0.72802,-0.72802,-0.72802 +-0.742417,-0.742417,-0.742417,-0.742417,-0.742417,-0.742417 +-0.756871,-0.756871,-0.756871,-0.756871,-0.756871,-0.756871 +-0.771374,-0.771374,-0.771374,-0.771374,-0.771374,-0.771374 +-0.785921,-0.785921,-0.785921,-0.785921,-0.785921,-0.785921 +-0.800504,-0.800504,-0.800504,-0.800504,-0.800504,-0.800504 +-0.815118,-0.815118,-0.815118,-0.815118,-0.815118,-0.815118 +-0.829757,-0.829757,-0.829757,-0.829757,-0.829757,-0.829757 +-0.844414,-0.844414,-0.844414,-0.844414,-0.844414,-0.844414 +-0.859083,-0.859083,-0.859083,-0.859083,-0.859083,-0.859083 +-0.873758,-0.873758,-0.873758,-0.873758,-0.873758,-0.873758 +-0.888433,-0.888433,-0.888433,-0.888433,-0.888433,-0.888433 +-0.9031,-0.9031,-0.9031,-0.9031,-0.9031,-0.9031 +-0.917755,-0.917755,-0.917755,-0.917755,-0.917755,-0.917755 +-0.932391,-0.932391,-0.932391,-0.932391,-0.932391,-0.932391 +-0.947001,-0.947001,-0.947001,-0.947001,-0.947001,-0.947001 +-0.961579,-0.961579,-0.961579,-0.961579,-0.961579,-0.961579 +-0.976119,-0.976119,-0.976119,-0.976119,-0.976119,-0.976119 +-0.990615,-0.990615,-0.990615,-0.990615,-0.990615,-0.990615 +-1.005061,-1.005061,-1.005061,-1.005061,-1.005061,-1.005061 +-1.01945,-1.01945,-1.01945,-1.01945,-1.01945,-1.01945 +-1.033776,-1.033776,-1.033776,-1.033776,-1.033776,-1.033776 +-1.048033,-1.048033,-1.048033,-1.048033,-1.048033,-1.048033 +-1.062214,-1.062214,-1.062214,-1.062214,-1.062214,-1.062214 +-1.076313,-1.076313,-1.076313,-1.076313,-1.076313,-1.076313 +-1.090325,-1.090325,-1.090325,-1.090325,-1.090325,-1.090325 +-1.104242,-1.104242,-1.104242,-1.104242,-1.104242,-1.104242 +-1.118059,-1.118059,-1.118059,-1.118059,-1.118059,-1.118059 +-1.131769,-1.131769,-1.131769,-1.131769,-1.131769,-1.131769 +-1.145366,-1.145366,-1.145366,-1.145366,-1.145366,-1.145366 +-1.158844,-1.158844,-1.158844,-1.158844,-1.158844,-1.158844 +-1.172197,-1.172197,-1.172197,-1.172197,-1.172197,-1.172197 +-1.185417,-1.185417,-1.185417,-1.185417,-1.185417,-1.185417 +-1.1985,-1.1985,-1.1985,-1.1985,-1.1985,-1.1985 +-1.211439,-1.211439,-1.211439,-1.211439,-1.211439,-1.211439 +-1.224227,-1.224227,-1.224227,-1.224227,-1.224227,-1.224227 +-1.236859,-1.236859,-1.236859,-1.236859,-1.236859,-1.236859 +-1.249336,-1.249336,-1.249336,-1.249336,-1.249336,-1.249336 +-1.261656,-1.261656,-1.261656,-1.261656,-1.261656,-1.261656 +-1.27382,-1.27382,-1.27382,-1.27382,-1.27382,-1.27382 +-1.285828,-1.285828,-1.285828,-1.285828,-1.285828,-1.285828 +-1.297679,-1.297679,-1.297679,-1.297679,-1.297679,-1.297679 +-1.309374,-1.309374,-1.309374,-1.309374,-1.309374,-1.309374 +-1.320913,-1.320913,-1.320913,-1.320913,-1.320913,-1.320913 +-1.332296,-1.332296,-1.332296,-1.332296,-1.332296,-1.332296 +-1.343522,-1.343522,-1.343522,-1.343522,-1.343522,-1.343522 +-1.354592,-1.354592,-1.354592,-1.354592,-1.354592,-1.354592 +-1.365506,-1.365506,-1.365506,-1.365506,-1.365506,-1.365506 +-1.376264,-1.376264,-1.376264,-1.376264,-1.376264,-1.376264 +-1.386865,-1.386865,-1.386865,-1.386865,-1.386865,-1.386865 +-1.39731,-1.39731,-1.39731,-1.39731,-1.39731,-1.39731 +-1.407599,-1.407599,-1.407599,-1.407599,-1.407599,-1.407599 +-1.417732,-1.417732,-1.417732,-1.417732,-1.417732,-1.417732 +-1.427708,-1.427708,-1.427708,-1.427708,-1.427708,-1.427708 +-1.437528,-1.437528,-1.437528,-1.437528,-1.437528,-1.437528 +-1.447192,-1.447192,-1.447192,-1.447192,-1.447192,-1.447192 +-1.4567,-1.4567,-1.4567,-1.4567,-1.4567,-1.4567 +-1.466051,-1.466051,-1.466051,-1.466051,-1.466051,-1.466051 +-1.475247,-1.475247,-1.475247,-1.475247,-1.475247,-1.475247 +-1.484285,-1.484285,-1.484285,-1.484285,-1.484285,-1.484285 +-1.493168,-1.493168,-1.493168,-1.493168,-1.493168,-1.493168 +-1.501894,-1.501894,-1.501894,-1.501894,-1.501894,-1.501894 +-1.510465,-1.510465,-1.510465,-1.510465,-1.510465,-1.510465 +-1.518879,-1.518879,-1.518879,-1.518879,-1.518879,-1.518879 +-1.527136,-1.527136,-1.527136,-1.527136,-1.527136,-1.527136 +-1.535238,-1.535238,-1.535238,-1.535238,-1.535238,-1.535238 +-1.543183,-1.543183,-1.543183,-1.543183,-1.543183,-1.543183 +-1.550972,-1.550972,-1.550972,-1.550972,-1.550972,-1.550972 +-1.558604,-1.558604,-1.558604,-1.558604,-1.558604,-1.558604 +-1.566081,-1.566081,-1.566081,-1.566081,-1.566081,-1.566081 +-1.573401,-1.573401,-1.573401,-1.573401,-1.573401,-1.573401 +-1.580565,-1.580565,-1.580565,-1.580565,-1.580565,-1.580565 +-1.587572,-1.587572,-1.587572,-1.587572,-1.587572,-1.587572 +-1.594424,-1.594424,-1.594424,-1.594424,-1.594424,-1.594424 +-1.601119,-1.601119,-1.601119,-1.601119,-1.601119,-1.601119 +-1.607658,-1.607658,-1.607658,-1.607658,-1.607658,-1.607658 +-1.61404,-1.61404,-1.61404,-1.61404,-1.61404,-1.61404 +-1.620267,-1.620267,-1.620267,-1.620267,-1.620267,-1.620267 +-1.626337,-1.626337,-1.626337,-1.626337,-1.626337,-1.626337 +-1.632251,-1.632251,-1.632251,-1.632251,-1.632251,-1.632251 +-1.638009,-1.638009,-1.638009,-1.638009,-1.638009,-1.638009 +-1.64361,-1.64361,-1.64361,-1.64361,-1.64361,-1.64361 +-1.649055,-1.649055,-1.649055,-1.649055,-1.649055,-1.649055 +-1.654344,-1.654344,-1.654344,-1.654344,-1.654344,-1.654344 +-1.659477,-1.659477,-1.659477,-1.659477,-1.659477,-1.659477 +-1.664453,-1.664453,-1.664453,-1.664453,-1.664453,-1.664453 +-1.669273,-1.669273,-1.669273,-1.669273,-1.669273,-1.669273 +-1.673937,-1.673937,-1.673937,-1.673937,-1.673937,-1.673937 +-1.678445,-1.678445,-1.678445,-1.678445,-1.678445,-1.678445 +-1.682796,-1.682796,-1.682796,-1.682796,-1.682796,-1.682796 +-1.686991,-1.686991,-1.686991,-1.686991,-1.686991,-1.686991 +-1.69103,-1.69103,-1.69103,-1.69103,-1.69103,-1.69103 +-1.694913,-1.694913,-1.694913,-1.694913,-1.694913,-1.694913 +-1.698639,-1.698639,-1.698639,-1.698639,-1.698639,-1.698639 +-1.702209,-1.702209,-1.702209,-1.702209,-1.702209,-1.702209 +-1.705623,-1.705623,-1.705623,-1.705623,-1.705623,-1.705623 +-1.708881,-1.708881,-1.708881,-1.708881,-1.708881,-1.708881 +-1.711982,-1.711982,-1.711982,-1.711982,-1.711982,-1.711982 +-1.714928,-1.714928,-1.714928,-1.714928,-1.714928,-1.714928 +-1.717716,-1.717716,-1.717716,-1.717716,-1.717716,-1.717716 +-1.720349,-1.720349,-1.720349,-1.720349,-1.720349,-1.720349 +-1.722825,-1.722825,-1.722825,-1.722825,-1.722825,-1.722825 +-1.725146,-1.725146,-1.725146,-1.725146,-1.725146,-1.725146 +-1.72731,-1.72731,-1.72731,-1.72731,-1.72731,-1.72731 +-1.729317,-1.729317,-1.729317,-1.729317,-1.729317,-1.729317 +-1.73117,-1.73117,-1.73117,-1.73117,-1.73117,-1.73117 +-1.732874,-1.732874,-1.732874,-1.732874,-1.732874,-1.732874 +-1.734435,-1.734435,-1.734435,-1.734435,-1.734435,-1.734435 +-1.73586,-1.73586,-1.73586,-1.73586,-1.73586,-1.73586 +-1.737154,-1.737154,-1.737154,-1.737154,-1.737154,-1.737154 +-1.738324,-1.738324,-1.738324,-1.738324,-1.738324,-1.738324 +-1.739377,-1.739377,-1.739377,-1.739377,-1.739377,-1.739377 +-1.740317,-1.740317,-1.740317,-1.740317,-1.740317,-1.740317 +-1.741153,-1.741153,-1.741153,-1.741153,-1.741153,-1.741153 +-1.74189,-1.74189,-1.74189,-1.74189,-1.74189,-1.74189 +-1.742533,-1.742533,-1.742533,-1.742533,-1.742533,-1.742533 +-1.74309,-1.74309,-1.74309,-1.74309,-1.74309,-1.74309 +-1.743567,-1.743567,-1.743567,-1.743567,-1.743567,-1.743567 +-1.74397,-1.74397,-1.74397,-1.74397,-1.74397,-1.74397 +-1.744305,-1.744305,-1.744305,-1.744305,-1.744305,-1.744305 +-1.744578,-1.744578,-1.744578,-1.744578,-1.744578,-1.744578 +-1.744796,-1.744796,-1.744796,-1.744796,-1.744796,-1.744796 +-1.744965,-1.744965,-1.744965,-1.744965,-1.744965,-1.744965 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.745181,-1.745181,-1.745181,-1.745181,-1.745181,-1.745181 +-1.745241,-1.745241,-1.745241,-1.745241,-1.745241,-1.745241 +-1.745276,-1.745276,-1.745276,-1.745276,-1.745276,-1.745276 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745292,-1.745292,-1.745292,-1.745292,-1.745292,-1.745292 +-1.745272,-1.745272,-1.745272,-1.745272,-1.745272,-1.745272 +-1.745233,-1.745233,-1.745233,-1.745233,-1.745233,-1.745233 +-1.74517,-1.74517,-1.74517,-1.74517,-1.74517,-1.74517 +-1.745075,-1.745075,-1.745075,-1.745075,-1.745075,-1.745075 +-1.744943,-1.744943,-1.744943,-1.744943,-1.744943,-1.744943 +-1.744767,-1.744767,-1.744767,-1.744767,-1.744767,-1.744767 +-1.744541,-1.744541,-1.744541,-1.744541,-1.744541,-1.744541 +-1.744258,-1.744258,-1.744258,-1.744258,-1.744258,-1.744258 +-1.743914,-1.743914,-1.743914,-1.743914,-1.743914,-1.743914 +-1.7435,-1.7435,-1.7435,-1.7435,-1.7435,-1.7435 +-1.743011,-1.743011,-1.743011,-1.743011,-1.743011,-1.743011 +-1.742442,-1.742442,-1.742442,-1.742442,-1.742442,-1.742442 +-1.741784,-1.741784,-1.741784,-1.741784,-1.741784,-1.741784 +-1.741033,-1.741033,-1.741033,-1.741033,-1.741033,-1.741033 +-1.740182,-1.740182,-1.740182,-1.740182,-1.740182,-1.740182 +-1.739225,-1.739225,-1.739225,-1.739225,-1.739225,-1.739225 +-1.738155,-1.738155,-1.738155,-1.738155,-1.738155,-1.738155 +-1.736967,-1.736967,-1.736967,-1.736967,-1.736967,-1.736967 +-1.735653,-1.735653,-1.735653,-1.735653,-1.735653,-1.735653 +-1.734208,-1.734208,-1.734208,-1.734208,-1.734208,-1.734208 +-1.732626,-1.732626,-1.732626,-1.732626,-1.732626,-1.732626 +-1.7309,-1.7309,-1.7309,-1.7309,-1.7309,-1.7309 +-1.729024,-1.729024,-1.729024,-1.729024,-1.729024,-1.729024 +-1.726993,-1.726993,-1.726993,-1.726993,-1.726993,-1.726993 +-1.724805,-1.724805,-1.724805,-1.724805,-1.724805,-1.724805 +-1.722461,-1.722461,-1.722461,-1.722461,-1.722461,-1.722461 +-1.719961,-1.719961,-1.719961,-1.719961,-1.719961,-1.719961 +-1.717305,-1.717305,-1.717305,-1.717305,-1.717305,-1.717305 +-1.714493,-1.714493,-1.714493,-1.714493,-1.714493,-1.714493 +-1.711524,-1.711524,-1.711524,-1.711524,-1.711524,-1.711524 +-1.708399,-1.708399,-1.708399,-1.708399,-1.708399,-1.708399 +-1.705118,-1.705118,-1.705118,-1.705118,-1.705118,-1.705118 +-1.70168,-1.70168,-1.70168,-1.70168,-1.70168,-1.70168 +-1.698086,-1.698086,-1.698086,-1.698086,-1.698086,-1.698086 +-1.694336,-1.694336,-1.694336,-1.694336,-1.694336,-1.694336 +-1.69043,-1.69043,-1.69043,-1.69043,-1.69043,-1.69043 +-1.686368,-1.686368,-1.686368,-1.686368,-1.686368,-1.686368 +-1.682149,-1.682149,-1.682149,-1.682149,-1.682149,-1.682149 +-1.677774,-1.677774,-1.677774,-1.677774,-1.677774,-1.677774 +-1.673243,-1.673243,-1.673243,-1.673243,-1.673243,-1.673243 +-1.668555,-1.668555,-1.668555,-1.668555,-1.668555,-1.668555 +-1.663711,-1.663711,-1.663711,-1.663711,-1.663711,-1.663711 +-1.658711,-1.658711,-1.658711,-1.658711,-1.658711,-1.658711 +-1.653555,-1.653555,-1.653555,-1.653555,-1.653555,-1.653555 +-1.648243,-1.648243,-1.648243,-1.648243,-1.648243,-1.648243 +-1.642774,-1.642774,-1.642774,-1.642774,-1.642774,-1.642774 +-1.637149,-1.637149,-1.637149,-1.637149,-1.637149,-1.637149 +-1.631368,-1.631368,-1.631368,-1.631368,-1.631368,-1.631368 +-1.62543,-1.62543,-1.62543,-1.62543,-1.62543,-1.62543 +-1.619336,-1.619336,-1.619336,-1.619336,-1.619336,-1.619336 +-1.613086,-1.613086,-1.613086,-1.613086,-1.613086,-1.613086 +-1.60668,-1.60668,-1.60668,-1.60668,-1.60668,-1.60668 +-1.600118,-1.600118,-1.600118,-1.600118,-1.600118,-1.600118 +-1.593399,-1.593399,-1.593399,-1.593399,-1.593399,-1.593399 +-1.586524,-1.586524,-1.586524,-1.586524,-1.586524,-1.586524 +-1.579493,-1.579493,-1.579493,-1.579493,-1.579493,-1.579493 +-1.572305,-1.572305,-1.572305,-1.572305,-1.572305,-1.572305 +-1.564961,-1.564961,-1.564961,-1.564961,-1.564961,-1.564961 +-1.557461,-1.557461,-1.557461,-1.557461,-1.557461,-1.557461 +-1.549805,-1.549805,-1.549805,-1.549805,-1.549805,-1.549805 +-1.541993,-1.541993,-1.541993,-1.541993,-1.541993,-1.541993 +-1.534024,-1.534024,-1.534024,-1.534024,-1.534024,-1.534024 +-1.525899,-1.525899,-1.525899,-1.525899,-1.525899,-1.525899 +-1.517618,-1.517618,-1.517618,-1.517618,-1.517618,-1.517618 +-1.50918,-1.50918,-1.50918,-1.50918,-1.50918,-1.50918 +-1.500586,-1.500586,-1.500586,-1.500586,-1.500586,-1.500586 +-1.491836,-1.491836,-1.491836,-1.491836,-1.491836,-1.491836 +-1.48293,-1.48293,-1.48293,-1.48293,-1.48293,-1.48293 +-1.473868,-1.473868,-1.473868,-1.473868,-1.473868,-1.473868 +-1.464649,-1.464649,-1.464649,-1.464649,-1.464649,-1.464649 +-1.455274,-1.455274,-1.455274,-1.455274,-1.455274,-1.455274 +-1.445743,-1.445743,-1.445743,-1.445743,-1.445743,-1.445743 +-1.436055,-1.436055,-1.436055,-1.436055,-1.436055,-1.436055 +-1.426211,-1.426211,-1.426211,-1.426211,-1.426211,-1.426211 +-1.416211,-1.416211,-1.416211,-1.416211,-1.416211,-1.416211 +-1.406055,-1.406055,-1.406055,-1.406055,-1.406055,-1.406055 +-1.395743,-1.395743,-1.395743,-1.395743,-1.395743,-1.395743 +-1.385274,-1.385274,-1.385274,-1.385274,-1.385274,-1.385274 +-1.374649,-1.374649,-1.374649,-1.374649,-1.374649,-1.374649 +-1.363868,-1.363868,-1.363868,-1.363868,-1.363868,-1.363868 +-1.35293,-1.35293,-1.35293,-1.35293,-1.35293,-1.35293 +-1.341836,-1.341836,-1.341836,-1.341836,-1.341836,-1.341836 +-1.330586,-1.330586,-1.330586,-1.330586,-1.330586,-1.330586 +-1.31918,-1.31918,-1.31918,-1.31918,-1.31918,-1.31918 +-1.307618,-1.307618,-1.307618,-1.307618,-1.307618,-1.307618 +-1.295899,-1.295899,-1.295899,-1.295899,-1.295899,-1.295899 +-1.284024,-1.284024,-1.284024,-1.284024,-1.284024,-1.284024 +-1.271993,-1.271993,-1.271993,-1.271993,-1.271993,-1.271993 +-1.259805,-1.259805,-1.259805,-1.259805,-1.259805,-1.259805 +-1.247461,-1.247461,-1.247461,-1.247461,-1.247461,-1.247461 +-1.234961,-1.234961,-1.234961,-1.234961,-1.234961,-1.234961 +-1.222305,-1.222305,-1.222305,-1.222305,-1.222305,-1.222305 +-1.209494,-1.209494,-1.209494,-1.209494,-1.209494,-1.209494 +-1.196533,-1.196533,-1.196533,-1.196533,-1.196533,-1.196533 +-1.183429,-1.183429,-1.183429,-1.183429,-1.183429,-1.183429 +-1.170188,-1.170188,-1.170188,-1.170188,-1.170188,-1.170188 +-1.156816,-1.156816,-1.156816,-1.156816,-1.156816,-1.156816 +-1.14332,-1.14332,-1.14332,-1.14332,-1.14332,-1.14332 +-1.129705,-1.129705,-1.129705,-1.129705,-1.129705,-1.129705 +-1.115979,-1.115979,-1.115979,-1.115979,-1.115979,-1.115979 +-1.102146,-1.102146,-1.102146,-1.102146,-1.102146,-1.102146 +-1.088214,-1.088214,-1.088214,-1.088214,-1.088214,-1.088214 +-1.074189,-1.074189,-1.074189,-1.074189,-1.074189,-1.074189 +-1.060077,-1.060077,-1.060077,-1.060077,-1.060077,-1.060077 +-1.045884,-1.045884,-1.045884,-1.045884,-1.045884,-1.045884 +-1.031616,-1.031616,-1.031616,-1.031616,-1.031616,-1.031616 +-1.01728,-1.01728,-1.01728,-1.01728,-1.01728,-1.01728 +-1.002883,-1.002883,-1.002883,-1.002883,-1.002883,-1.002883 +-0.988429,-0.988429,-0.988429,-0.988429,-0.988429,-0.988429 +-0.973926,-0.973926,-0.973926,-0.973926,-0.973926,-0.973926 +-0.959379,-0.959379,-0.959379,-0.959379,-0.959379,-0.959379 +-0.944796,-0.944796,-0.944796,-0.944796,-0.944796,-0.944796 +-0.930182,-0.930182,-0.930182,-0.930182,-0.930182,-0.930182 +-0.915543,-0.915543,-0.915543,-0.915543,-0.915543,-0.915543 +-0.900886,-0.900886,-0.900886,-0.900886,-0.900886,-0.900886 +-0.886217,-0.886217,-0.886217,-0.886217,-0.886217,-0.886217 +-0.871542,-0.871542,-0.871542,-0.871542,-0.871542,-0.871542 +-0.856867,-0.856867,-0.856867,-0.856867,-0.856867,-0.856867 +-0.8422,-0.8422,-0.8422,-0.8422,-0.8422,-0.8422 +-0.827545,-0.827545,-0.827545,-0.827545,-0.827545,-0.827545 +-0.812909,-0.812909,-0.812909,-0.812909,-0.812909,-0.812909 +-0.798299,-0.798299,-0.798299,-0.798299,-0.798299,-0.798299 +-0.783721,-0.783721,-0.783721,-0.783721,-0.783721,-0.783721 +-0.769181,-0.769181,-0.769181,-0.769181,-0.769181,-0.769181 +-0.754685,-0.754685,-0.754685,-0.754685,-0.754685,-0.754685 +-0.740239,-0.740239,-0.740239,-0.740239,-0.740239,-0.740239 +-0.72585,-0.72585,-0.72585,-0.72585,-0.72585,-0.72585 +-0.711524,-0.711524,-0.711524,-0.711524,-0.711524,-0.711524 +-0.697267,-0.697267,-0.697267,-0.697267,-0.697267,-0.697267 +-0.683086,-0.683086,-0.683086,-0.683086,-0.683086,-0.683086 +-0.668987,-0.668987,-0.668987,-0.668987,-0.668987,-0.668987 +-0.654975,-0.654975,-0.654975,-0.654975,-0.654975,-0.654975 +-0.641058,-0.641058,-0.641058,-0.641058,-0.641058,-0.641058 +-0.627241,-0.627241,-0.627241,-0.627241,-0.627241,-0.627241 +-0.613531,-0.613531,-0.613531,-0.613531,-0.613531,-0.613531 +-0.599934,-0.599934,-0.599934,-0.599934,-0.599934,-0.599934 +-0.586456,-0.586456,-0.586456,-0.586456,-0.586456,-0.586456 +-0.573103,-0.573103,-0.573103,-0.573103,-0.573103,-0.573103 +-0.559883,-0.559883,-0.559883,-0.559883,-0.559883,-0.559883 +-0.5468,-0.5468,-0.5468,-0.5468,-0.5468,-0.5468 +-0.533861,-0.533861,-0.533861,-0.533861,-0.533861,-0.533861 +-0.521073,-0.521073,-0.521073,-0.521073,-0.521073,-0.521073 +-0.508441,-0.508441,-0.508441,-0.508441,-0.508441,-0.508441 +-0.495964,-0.495964,-0.495964,-0.495964,-0.495964,-0.495964 +-0.483644,-0.483644,-0.483644,-0.483644,-0.483644,-0.483644 +-0.47148,-0.47148,-0.47148,-0.47148,-0.47148,-0.47148 +-0.459472,-0.459472,-0.459472,-0.459472,-0.459472,-0.459472 +-0.447621,-0.447621,-0.447621,-0.447621,-0.447621,-0.447621 +-0.435926,-0.435926,-0.435926,-0.435926,-0.435926,-0.435926 +-0.424387,-0.424387,-0.424387,-0.424387,-0.424387,-0.424387 +-0.413004,-0.413004,-0.413004,-0.413004,-0.413004,-0.413004 +-0.401778,-0.401778,-0.401778,-0.401778,-0.401778,-0.401778 +-0.390708,-0.390708,-0.390708,-0.390708,-0.390708,-0.390708 +-0.379794,-0.379794,-0.379794,-0.379794,-0.379794,-0.379794 +-0.369036,-0.369036,-0.369036,-0.369036,-0.369036,-0.369036 +-0.358435,-0.358435,-0.358435,-0.358435,-0.358435,-0.358435 +-0.34799,-0.34799,-0.34799,-0.34799,-0.34799,-0.34799 +-0.337701,-0.337701,-0.337701,-0.337701,-0.337701,-0.337701 +-0.327568,-0.327568,-0.327568,-0.327568,-0.327568,-0.327568 +-0.317592,-0.317592,-0.317592,-0.317592,-0.317592,-0.317592 +-0.307772,-0.307772,-0.307772,-0.307772,-0.307772,-0.307772 +-0.298108,-0.298108,-0.298108,-0.298108,-0.298108,-0.298108 +-0.2886,-0.2886,-0.2886,-0.2886,-0.2886,-0.2886 +-0.279249,-0.279249,-0.279249,-0.279249,-0.279249,-0.279249 +-0.270053,-0.270053,-0.270053,-0.270053,-0.270053,-0.270053 +-0.261015,-0.261015,-0.261015,-0.261015,-0.261015,-0.261015 +-0.252132,-0.252132,-0.252132,-0.252132,-0.252132,-0.252132 +-0.243406,-0.243406,-0.243406,-0.243406,-0.243406,-0.243406 +-0.234835,-0.234835,-0.234835,-0.234835,-0.234835,-0.234835 +-0.226421,-0.226421,-0.226421,-0.226421,-0.226421,-0.226421 +-0.218164,-0.218164,-0.218164,-0.218164,-0.218164,-0.218164 +-0.210062,-0.210062,-0.210062,-0.210062,-0.210062,-0.210062 +-0.202117,-0.202117,-0.202117,-0.202117,-0.202117,-0.202117 +-0.194328,-0.194328,-0.194328,-0.194328,-0.194328,-0.194328 +-0.186696,-0.186696,-0.186696,-0.186696,-0.186696,-0.186696 +-0.179219,-0.179219,-0.179219,-0.179219,-0.179219,-0.179219 +-0.171899,-0.171899,-0.171899,-0.171899,-0.171899,-0.171899 +-0.164735,-0.164735,-0.164735,-0.164735,-0.164735,-0.164735 +-0.157728,-0.157728,-0.157728,-0.157728,-0.157728,-0.157728 +-0.150876,-0.150876,-0.150876,-0.150876,-0.150876,-0.150876 +-0.144181,-0.144181,-0.144181,-0.144181,-0.144181,-0.144181 +-0.137642,-0.137642,-0.137642,-0.137642,-0.137642,-0.137642 +-0.13126,-0.13126,-0.13126,-0.13126,-0.13126,-0.13126 +-0.125033,-0.125033,-0.125033,-0.125033,-0.125033,-0.125033 +-0.118963,-0.118963,-0.118963,-0.118963,-0.118963,-0.118963 +-0.113049,-0.113049,-0.113049,-0.113049,-0.113049,-0.113049 +-0.107291,-0.107291,-0.107291,-0.107291,-0.107291,-0.107291 +-0.10169,-0.10169,-0.10169,-0.10169,-0.10169,-0.10169 +-0.096245,-0.096245,-0.096245,-0.096245,-0.096245,-0.096245 +-0.090956,-0.090956,-0.090956,-0.090956,-0.090956,-0.090956 +-0.085823,-0.085823,-0.085823,-0.085823,-0.085823,-0.085823 +-0.080847,-0.080847,-0.080847,-0.080847,-0.080847,-0.080847 +-0.076027,-0.076027,-0.076027,-0.076027,-0.076027,-0.076027 +-0.071363,-0.071363,-0.071363,-0.071363,-0.071363,-0.071363 +-0.066855,-0.066855,-0.066855,-0.066855,-0.066855,-0.066855 +-0.062504,-0.062504,-0.062504,-0.062504,-0.062504,-0.062504 +-0.058309,-0.058309,-0.058309,-0.058309,-0.058309,-0.058309 +-0.05427,-0.05427,-0.05427,-0.05427,-0.05427,-0.05427 +-0.050387,-0.050387,-0.050387,-0.050387,-0.050387,-0.050387 +-0.046661,-0.046661,-0.046661,-0.046661,-0.046661,-0.046661 +-0.043091,-0.043091,-0.043091,-0.043091,-0.043091,-0.043091 +-0.039677,-0.039677,-0.039677,-0.039677,-0.039677,-0.039677 +-0.036419,-0.036419,-0.036419,-0.036419,-0.036419,-0.036419 +-0.033318,-0.033318,-0.033318,-0.033318,-0.033318,-0.033318 +-0.030372,-0.030372,-0.030372,-0.030372,-0.030372,-0.030372 +-0.027584,-0.027584,-0.027584,-0.027584,-0.027584,-0.027584 +-0.024951,-0.024951,-0.024951,-0.024951,-0.024951,-0.024951 +-0.022475,-0.022475,-0.022475,-0.022475,-0.022475,-0.022475 +-0.020154,-0.020154,-0.020154,-0.020154,-0.020154,-0.020154 +-0.01799,-0.01799,-0.01799,-0.01799,-0.01799,-0.01799 +-0.015983,-0.015983,-0.015983,-0.015983,-0.015983,-0.015983 +-0.01413,-0.01413,-0.01413,-0.01413,-0.01413,-0.01413 +-0.012426,-0.012426,-0.012426,-0.012426,-0.012426,-0.012426 +-0.010865,-0.010865,-0.010865,-0.010865,-0.010865,-0.010865 +-0.00944,-0.00944,-0.00944,-0.00944,-0.00944,-0.00944 +-0.008146,-0.008146,-0.008146,-0.008146,-0.008146,-0.008146 +-0.006976,-0.006976,-0.006976,-0.006976,-0.006976,-0.006976 +-0.005923,-0.005923,-0.005923,-0.005923,-0.005923,-0.005923 +-0.004983,-0.004983,-0.004983,-0.004983,-0.004983,-0.004983 +-0.004147,-0.004147,-0.004147,-0.004147,-0.004147,-0.004147 +-0.00341,-0.00341,-0.00341,-0.00341,-0.00341,-0.00341 +-0.002767,-0.002767,-0.002767,-0.002767,-0.002767,-0.002767 +-0.00221,-0.00221,-0.00221,-0.00221,-0.00221,-0.00221 +-0.001733,-0.001733,-0.001733,-0.001733,-0.001733,-0.001733 +-0.00133,-0.00133,-0.00133,-0.00133,-0.00133,-0.00133 +-0.000995,-0.000995,-0.000995,-0.000995,-0.000995,-0.000995 +-0.000722,-0.000722,-0.000722,-0.000722,-0.000722,-0.000722 +-0.000504,-0.000504,-0.000504,-0.000504,-0.000504,-0.000504 +-0.000335,-0.000335,-0.000335,-0.000335,-0.000335,-0.000335 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000119,-0.000119,-0.000119,-0.000119,-0.000119,-0.000119 +-0.000059,-0.000059,-0.000059,-0.000059,-0.000059,-0.000059 +-0.000024,-0.000024,-0.000024,-0.000024,-0.000024,-0.000024 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0.000034,0.000034,0.000034,0.000034,0.000034,0.000034 +0.00008,0.00008,0.00008,0.00008,0.00008,0.00008 +0.000156,0.000156,0.000156,0.000156,0.000156,0.000156 +0.00027,0.00027,0.00027,0.00027,0.00027,0.00027 +0.000429,0.000429,0.000429,0.000429,0.000429,0.000429 +0.00064,0.00064,0.00064,0.00064,0.00064,0.00064 +0.000911,0.000911,0.000911,0.000911,0.000911,0.000911 +0.00125,0.00125,0.00125,0.00125,0.00125,0.00125 +0.001664,0.001664,0.001664,0.001664,0.001664,0.001664 +0.00216,0.00216,0.00216,0.00216,0.00216,0.00216 +0.002746,0.002746,0.002746,0.002746,0.002746,0.002746 +0.00343,0.00343,0.00343,0.00343,0.00343,0.00343 +0.004219,0.004219,0.004219,0.004219,0.004219,0.004219 +0.00512,0.00512,0.00512,0.00512,0.00512,0.00512 +0.006141,0.006141,0.006141,0.006141,0.006141,0.006141 +0.00729,0.00729,0.00729,0.00729,0.00729,0.00729 +0.008574,0.008574,0.008574,0.008574,0.008574,0.008574 +0.01,0.01,0.01,0.01,0.01,0.01 +0.011576,0.011576,0.011576,0.011576,0.011576,0.011576 +0.01331,0.01331,0.01331,0.01331,0.01331,0.01331 +0.015209,0.015209,0.015209,0.015209,0.015209,0.015209 +0.01728,0.01728,0.01728,0.01728,0.01728,0.01728 +0.019531,0.019531,0.019531,0.019531,0.019531,0.019531 +0.021969,0.021969,0.021969,0.021969,0.021969,0.021969 +0.024594,0.024594,0.024594,0.024594,0.024594,0.024594 +0.027406,0.027406,0.027406,0.027406,0.027406,0.027406 +0.030406,0.030406,0.030406,0.030406,0.030406,0.030406 +0.033594,0.033594,0.033594,0.033594,0.033594,0.033594 +0.036969,0.036969,0.036969,0.036969,0.036969,0.036969 +0.040531,0.040531,0.040531,0.040531,0.040531,0.040531 +0.044281,0.044281,0.044281,0.044281,0.044281,0.044281 +0.048219,0.048219,0.048219,0.048219,0.048219,0.048219 +0.052344,0.052344,0.052344,0.052344,0.052344,0.052344 +0.056656,0.056656,0.056656,0.056656,0.056656,0.056656 +0.061156,0.061156,0.061156,0.061156,0.061156,0.061156 +0.065844,0.065844,0.065844,0.065844,0.065844,0.065844 +0.070719,0.070719,0.070719,0.070719,0.070719,0.070719 +0.075781,0.075781,0.075781,0.075781,0.075781,0.075781 +0.081031,0.081031,0.081031,0.081031,0.081031,0.081031 +0.086469,0.086469,0.086469,0.086469,0.086469,0.086469 +0.092094,0.092094,0.092094,0.092094,0.092094,0.092094 +0.097906,0.097906,0.097906,0.097906,0.097906,0.097906 +0.103906,0.103906,0.103906,0.103906,0.103906,0.103906 +0.110094,0.110094,0.110094,0.110094,0.110094,0.110094 +0.116469,0.116469,0.116469,0.116469,0.116469,0.116469 +0.123031,0.123031,0.123031,0.123031,0.123031,0.123031 +0.129781,0.129781,0.129781,0.129781,0.129781,0.129781 +0.136719,0.136719,0.136719,0.136719,0.136719,0.136719 +0.143844,0.143844,0.143844,0.143844,0.143844,0.143844 +0.151156,0.151156,0.151156,0.151156,0.151156,0.151156 +0.158656,0.158656,0.158656,0.158656,0.158656,0.158656 +0.166344,0.166344,0.166344,0.166344,0.166344,0.166344 +0.174219,0.174219,0.174219,0.174219,0.174219,0.174219 +0.182281,0.182281,0.182281,0.182281,0.182281,0.182281 +0.190531,0.190531,0.190531,0.190531,0.190531,0.190531 +0.198969,0.198969,0.198969,0.198969,0.198969,0.198969 +0.207594,0.207594,0.207594,0.207594,0.207594,0.207594 +0.216406,0.216406,0.216406,0.216406,0.216406,0.216406 +0.225406,0.225406,0.225406,0.225406,0.225406,0.225406 +0.234594,0.234594,0.234594,0.234594,0.234594,0.234594 +0.243969,0.243969,0.243969,0.243969,0.243969,0.243969 +0.253531,0.253531,0.253531,0.253531,0.253531,0.253531 +0.263281,0.263281,0.263281,0.263281,0.263281,0.263281 +0.273219,0.273219,0.273219,0.273219,0.273219,0.273219 +0.283344,0.283344,0.283344,0.283344,0.283344,0.283344 +0.293656,0.293656,0.293656,0.293656,0.293656,0.293656 +0.304156,0.304156,0.304156,0.304156,0.304156,0.304156 +0.314844,0.314844,0.314844,0.314844,0.314844,0.314844 +0.325719,0.325719,0.325719,0.325719,0.325719,0.325719 +0.336781,0.336781,0.336781,0.336781,0.336781,0.336781 +0.348031,0.348031,0.348031,0.348031,0.348031,0.348031 +0.359469,0.359469,0.359469,0.359469,0.359469,0.359469 +0.371094,0.371094,0.371094,0.371094,0.371094,0.371094 +0.382906,0.382906,0.382906,0.382906,0.382906,0.382906 +0.394906,0.394906,0.394906,0.394906,0.394906,0.394906 +0.407094,0.407094,0.407094,0.407094,0.407094,0.407094 +0.419469,0.419469,0.419469,0.419469,0.419469,0.419469 +0.432031,0.432031,0.432031,0.432031,0.432031,0.432031 +0.444781,0.444781,0.444781,0.444781,0.444781,0.444781 +0.457719,0.457719,0.457719,0.457719,0.457719,0.457719 +0.470844,0.470844,0.470844,0.470844,0.470844,0.470844 +0.484156,0.484156,0.484156,0.484156,0.484156,0.484156 +0.49765,0.49765,0.49765,0.49765,0.49765,0.49765 +0.51132,0.51132,0.51132,0.51132,0.51132,0.51132 +0.525157,0.525157,0.525157,0.525157,0.525157,0.525157 +0.539154,0.539154,0.539154,0.539154,0.539154,0.539154 +0.553304,0.553304,0.553304,0.553304,0.553304,0.553304 +0.567598,0.567598,0.567598,0.567598,0.567598,0.567598 +0.58203,0.58203,0.58203,0.58203,0.58203,0.58203 +0.596593,0.596593,0.596593,0.596593,0.596593,0.596593 +0.611277,0.611277,0.611277,0.611277,0.611277,0.611277 +0.626077,0.626077,0.626077,0.626077,0.626077,0.626077 +0.640984,0.640984,0.640984,0.640984,0.640984,0.640984 +0.655991,0.655991,0.655991,0.655991,0.655991,0.655991 +0.67109,0.67109,0.67109,0.67109,0.67109,0.67109 +0.686275,0.686275,0.686275,0.686275,0.686275,0.686275 +0.701537,0.701537,0.701537,0.701537,0.701537,0.701537 +0.716869,0.716869,0.716869,0.716869,0.716869,0.716869 +0.732264,0.732264,0.732264,0.732264,0.732264,0.732264 +0.747713,0.747713,0.747713,0.747713,0.747713,0.747713 +0.76321,0.76321,0.76321,0.76321,0.76321,0.76321 +0.778748,0.778748,0.778748,0.778748,0.778748,0.778748 +0.794317,0.794317,0.794317,0.794317,0.794317,0.794317 +0.809912,0.809912,0.809912,0.809912,0.809912,0.809912 +0.825524,0.825524,0.825524,0.825524,0.825524,0.825524 +0.841146,0.841146,0.841146,0.841146,0.841146,0.841146 +0.856771,0.856771,0.856771,0.856771,0.856771,0.856771 +0.872396,0.872396,0.872396,0.872396,0.872396,0.872396 +0.888021,0.888021,0.888021,0.888021,0.888021,0.888021 +0.903646,0.903646,0.903646,0.903646,0.903646,0.903646 +0.919268,0.919268,0.919268,0.919268,0.919268,0.919268 +0.934881,0.934881,0.934881,0.934881,0.934881,0.934881 +0.950476,0.950476,0.950476,0.950476,0.950476,0.950476 +0.966046,0.966046,0.966046,0.966046,0.966046,0.966046 +0.981585,0.981585,0.981585,0.981585,0.981585,0.981585 +0.997083,0.997083,0.997083,0.997083,0.997083,0.997083 +1.012534,1.012534,1.012534,1.012534,1.012534,1.012534 +1.027931,1.027931,1.027931,1.027931,1.027931,1.027931 +1.043265,1.043265,1.043265,1.043265,1.043265,1.043265 +1.05853,1.05853,1.05853,1.05853,1.05853,1.05853 +1.073717,1.073717,1.073717,1.073717,1.073717,1.073717 +1.088819,1.088819,1.088819,1.088819,1.088819,1.088819 +1.10383,1.10383,1.10383,1.10383,1.10383,1.10383 +1.11874,1.11874,1.11874,1.11874,1.11874,1.11874 +1.133543,1.133543,1.133543,1.133543,1.133543,1.133543 +1.148232,1.148232,1.148232,1.148232,1.148232,1.148232 +1.162798,1.162798,1.162798,1.162798,1.162798,1.162798 +1.177234,1.177234,1.177234,1.177234,1.177234,1.177234 +1.191533,1.191533,1.191533,1.191533,1.191533,1.191533 +1.205688,1.205688,1.205688,1.205688,1.205688,1.205688 +1.21969,1.21969,1.21969,1.21969,1.21969,1.21969 +1.233532,1.233532,1.233532,1.233532,1.233532,1.233532 +1.247208,1.247208,1.247208,1.247208,1.247208,1.247208 +1.260708,1.260708,1.260708,1.260708,1.260708,1.260708 +1.274026,1.274026,1.274026,1.274026,1.274026,1.274026 +1.287157,1.287157,1.287157,1.287157,1.287157,1.287157 +1.300101,1.300101,1.300101,1.300101,1.300101,1.300101 +1.312857,1.312857,1.312857,1.312857,1.312857,1.312857 +1.325426,1.325426,1.325426,1.325426,1.325426,1.325426 +1.337807,1.337807,1.337807,1.337807,1.337807,1.337807 +1.35,1.35,1.35,1.35,1.35,1.35 +1.362006,1.362006,1.362006,1.362006,1.362006,1.362006 +1.373825,1.373825,1.373825,1.373825,1.373825,1.373825 +1.385456,1.385456,1.385456,1.385456,1.385456,1.385456 +1.3969,1.3969,1.3969,1.3969,1.3969,1.3969 +1.408156,1.408156,1.408156,1.408156,1.408156,1.408156 +1.419224,1.419224,1.419224,1.419224,1.419224,1.419224 +1.430105,1.430105,1.430105,1.430105,1.430105,1.430105 +1.440799,1.440799,1.440799,1.440799,1.440799,1.440799 +1.451305,1.451305,1.451305,1.451305,1.451305,1.451305 +1.461624,1.461624,1.461624,1.461624,1.461624,1.461624 +1.471755,1.471755,1.471755,1.471755,1.471755,1.471755 +1.481698,1.481698,1.481698,1.481698,1.481698,1.481698 +1.491455,1.491455,1.491455,1.491455,1.491455,1.491455 +1.501023,1.501023,1.501023,1.501023,1.501023,1.501023 +1.510404,1.510404,1.510404,1.510404,1.510404,1.510404 +1.519598,1.519598,1.519598,1.519598,1.519598,1.519598 +1.528604,1.528604,1.528604,1.528604,1.528604,1.528604 +1.537423,1.537423,1.537423,1.537423,1.537423,1.537423 +1.546054,1.546054,1.546054,1.546054,1.546054,1.546054 +1.554497,1.554497,1.554497,1.554497,1.554497,1.554497 +1.562753,1.562753,1.562753,1.562753,1.562753,1.562753 +1.570822,1.570822,1.570822,1.570822,1.570822,1.570822 +1.578703,1.578703,1.578703,1.578703,1.578703,1.578703 +1.586397,1.586397,1.586397,1.586397,1.586397,1.586397 +1.593903,1.593903,1.593903,1.593903,1.593903,1.593903 +1.601221,1.601221,1.601221,1.601221,1.601221,1.601221 +1.608352,1.608352,1.608352,1.608352,1.608352,1.608352 +1.615296,1.615296,1.615296,1.615296,1.615296,1.615296 +1.622052,1.622052,1.622052,1.622052,1.622052,1.622052 +1.628621,1.628621,1.628621,1.628621,1.628621,1.628621 +1.635002,1.635002,1.635002,1.635002,1.635002,1.635002 +1.641195,1.641195,1.641195,1.641195,1.641195,1.641195 +1.647202,1.647202,1.647202,1.647202,1.647202,1.647202 +1.65302,1.65302,1.65302,1.65302,1.65302,1.65302 +1.658651,1.658651,1.658651,1.658651,1.658651,1.658651 +1.664095,1.664095,1.664095,1.664095,1.664095,1.664095 +1.669351,1.669351,1.669351,1.669351,1.669351,1.669351 +1.67442,1.67442,1.67442,1.67442,1.67442,1.67442 +1.679301,1.679301,1.679301,1.679301,1.679301,1.679301 +1.683994,1.683994,1.683994,1.683994,1.683994,1.683994 +1.6885,1.6885,1.6885,1.6885,1.6885,1.6885 +1.692819,1.692819,1.692819,1.692819,1.692819,1.692819 +1.69695,1.69695,1.69695,1.69695,1.69695,1.69695 +1.700894,1.700894,1.700894,1.700894,1.700894,1.700894 +1.70465,1.70465,1.70465,1.70465,1.70465,1.70465 +1.708218,1.708218,1.708218,1.708218,1.708218,1.708218 +1.711599,1.711599,1.711599,1.711599,1.711599,1.711599 +1.714793,1.714793,1.714793,1.714793,1.714793,1.714793 +1.717799,1.717799,1.717799,1.717799,1.717799,1.717799 +1.720618,1.720618,1.720618,1.720618,1.720618,1.720618 +1.723249,1.723249,1.723249,1.723249,1.723249,1.723249 +1.725692,1.725692,1.725692,1.725692,1.725692,1.725692 +1.72795,1.72795,1.72795,1.72795,1.72795,1.72795 +1.730027,1.730027,1.730027,1.730027,1.730027,1.730027 +1.731931,1.731931,1.731931,1.731931,1.731931,1.731931 +1.73367,1.73367,1.73367,1.73367,1.73367,1.73367 +1.735251,1.735251,1.735251,1.735251,1.735251,1.735251 +1.736682,1.736682,1.736682,1.736682,1.736682,1.736682 +1.73797,1.73797,1.73797,1.73797,1.73797,1.73797 +1.739123,1.739123,1.739123,1.739123,1.739123,1.739123 +1.740149,1.740149,1.740149,1.740149,1.740149,1.740149 +1.741054,1.741054,1.741054,1.741054,1.741054,1.741054 +1.741846,1.741846,1.741846,1.741846,1.741846,1.741846 +1.742533,1.742533,1.742533,1.742533,1.742533,1.742533 +1.743122,1.743122,1.743122,1.743122,1.743122,1.743122 +1.743621,1.743621,1.743621,1.743621,1.743621,1.743621 +1.744038,1.744038,1.744038,1.744038,1.744038,1.744038 +1.744379,1.744379,1.744379,1.744379,1.744379,1.744379 +1.744652,1.744652,1.744652,1.744652,1.744652,1.744652 +1.744865,1.744865,1.744865,1.744865,1.744865,1.744865 +1.745026,1.745026,1.745026,1.745026,1.745026,1.745026 +1.745141,1.745141,1.745141,1.745141,1.745141,1.745141 +1.745218,1.745218,1.745218,1.745218,1.745218,1.745218 +1.745265,1.745265,1.745265,1.745265,1.745265,1.745265 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.745266,1.745266,1.745266,1.745266,1.745266,1.745266 +1.74522,1.74522,1.74522,1.74522,1.74522,1.74522 +1.745144,1.745144,1.745144,1.745144,1.745144,1.745144 +1.74503,1.74503,1.74503,1.74503,1.74503,1.74503 +1.744871,1.744871,1.744871,1.744871,1.744871,1.744871 +1.74466,1.74466,1.74466,1.74466,1.74466,1.74466 +1.744389,1.744389,1.744389,1.744389,1.744389,1.744389 +1.74405,1.74405,1.74405,1.74405,1.74405,1.74405 +1.743636,1.743636,1.743636,1.743636,1.743636,1.743636 +1.74314,1.74314,1.74314,1.74314,1.74314,1.74314 +1.742554,1.742554,1.742554,1.742554,1.742554,1.742554 +1.74187,1.74187,1.74187,1.74187,1.74187,1.74187 +1.741081,1.741081,1.741081,1.741081,1.741081,1.741081 +1.74018,1.74018,1.74018,1.74018,1.74018,1.74018 +1.739159,1.739159,1.739159,1.739159,1.739159,1.739159 +1.73801,1.73801,1.73801,1.73801,1.73801,1.73801 +1.736726,1.736726,1.736726,1.736726,1.736726,1.736726 +1.7353,1.7353,1.7353,1.7353,1.7353,1.7353 +1.733724,1.733724,1.733724,1.733724,1.733724,1.733724 +1.73199,1.73199,1.73199,1.73199,1.73199,1.73199 +1.730091,1.730091,1.730091,1.730091,1.730091,1.730091 +1.72802,1.72802,1.72802,1.72802,1.72802,1.72802 +1.725769,1.725769,1.725769,1.725769,1.725769,1.725769 +1.723331,1.723331,1.723331,1.723331,1.723331,1.723331 +1.720706,1.720706,1.720706,1.720706,1.720706,1.720706 +1.717894,1.717894,1.717894,1.717894,1.717894,1.717894 +1.714894,1.714894,1.714894,1.714894,1.714894,1.714894 +1.711706,1.711706,1.711706,1.711706,1.711706,1.711706 +1.708331,1.708331,1.708331,1.708331,1.708331,1.708331 +1.704769,1.704769,1.704769,1.704769,1.704769,1.704769 +1.701019,1.701019,1.701019,1.701019,1.701019,1.701019 +1.697081,1.697081,1.697081,1.697081,1.697081,1.697081 +1.692956,1.692956,1.692956,1.692956,1.692956,1.692956 +1.688644,1.688644,1.688644,1.688644,1.688644,1.688644 +1.684144,1.684144,1.684144,1.684144,1.684144,1.684144 +1.679456,1.679456,1.679456,1.679456,1.679456,1.679456 +1.674581,1.674581,1.674581,1.674581,1.674581,1.674581 +1.669519,1.669519,1.669519,1.669519,1.669519,1.669519 +1.664269,1.664269,1.664269,1.664269,1.664269,1.664269 +1.658831,1.658831,1.658831,1.658831,1.658831,1.658831 +1.653206,1.653206,1.653206,1.653206,1.653206,1.653206 +1.647394,1.647394,1.647394,1.647394,1.647394,1.647394 +1.641394,1.641394,1.641394,1.641394,1.641394,1.641394 +1.635206,1.635206,1.635206,1.635206,1.635206,1.635206 +1.628831,1.628831,1.628831,1.628831,1.628831,1.628831 +1.622269,1.622269,1.622269,1.622269,1.622269,1.622269 +1.615519,1.615519,1.615519,1.615519,1.615519,1.615519 +1.608581,1.608581,1.608581,1.608581,1.608581,1.608581 +1.601456,1.601456,1.601456,1.601456,1.601456,1.601456 +1.594144,1.594144,1.594144,1.594144,1.594144,1.594144 +1.586644,1.586644,1.586644,1.586644,1.586644,1.586644 +1.578956,1.578956,1.578956,1.578956,1.578956,1.578956 +1.571081,1.571081,1.571081,1.571081,1.571081,1.571081 +1.563019,1.563019,1.563019,1.563019,1.563019,1.563019 +1.554769,1.554769,1.554769,1.554769,1.554769,1.554769 +1.546331,1.546331,1.546331,1.546331,1.546331,1.546331 +1.537706,1.537706,1.537706,1.537706,1.537706,1.537706 +1.528894,1.528894,1.528894,1.528894,1.528894,1.528894 +1.519894,1.519894,1.519894,1.519894,1.519894,1.519894 +1.510706,1.510706,1.510706,1.510706,1.510706,1.510706 +1.501331,1.501331,1.501331,1.501331,1.501331,1.501331 +1.491769,1.491769,1.491769,1.491769,1.491769,1.491769 +1.482019,1.482019,1.482019,1.482019,1.482019,1.482019 +1.472081,1.472081,1.472081,1.472081,1.472081,1.472081 +1.461956,1.461956,1.461956,1.461956,1.461956,1.461956 +1.451644,1.451644,1.451644,1.451644,1.451644,1.451644 +1.441144,1.441144,1.441144,1.441144,1.441144,1.441144 +1.430456,1.430456,1.430456,1.430456,1.430456,1.430456 +1.419581,1.419581,1.419581,1.419581,1.419581,1.419581 +1.408519,1.408519,1.408519,1.408519,1.408519,1.408519 +1.397269,1.397269,1.397269,1.397269,1.397269,1.397269 +1.385831,1.385831,1.385831,1.385831,1.385831,1.385831 +1.374206,1.374206,1.374206,1.374206,1.374206,1.374206 +1.362394,1.362394,1.362394,1.362394,1.362394,1.362394 +1.350394,1.350394,1.350394,1.350394,1.350394,1.350394 +1.338206,1.338206,1.338206,1.338206,1.338206,1.338206 +1.325831,1.325831,1.325831,1.325831,1.325831,1.325831 +1.313269,1.313269,1.313269,1.313269,1.313269,1.313269 +1.300519,1.300519,1.300519,1.300519,1.300519,1.300519 +1.287581,1.287581,1.287581,1.287581,1.287581,1.287581 +1.274456,1.274456,1.274456,1.274456,1.274456,1.274456 +1.261144,1.261144,1.261144,1.261144,1.261144,1.261144 +1.24765,1.24765,1.24765,1.24765,1.24765,1.24765 +1.23398,1.23398,1.23398,1.23398,1.23398,1.23398 +1.220143,1.220143,1.220143,1.220143,1.220143,1.220143 +1.206146,1.206146,1.206146,1.206146,1.206146,1.206146 +1.191996,1.191996,1.191996,1.191996,1.191996,1.191996 +1.177702,1.177702,1.177702,1.177702,1.177702,1.177702 +1.16327,1.16327,1.16327,1.16327,1.16327,1.16327 +1.148707,1.148707,1.148707,1.148707,1.148707,1.148707 +1.134023,1.134023,1.134023,1.134023,1.134023,1.134023 +1.119223,1.119223,1.119223,1.119223,1.119223,1.119223 +1.104316,1.104316,1.104316,1.104316,1.104316,1.104316 +1.089309,1.089309,1.089309,1.089309,1.089309,1.089309 +1.07421,1.07421,1.07421,1.07421,1.07421,1.07421 +1.059025,1.059025,1.059025,1.059025,1.059025,1.059025 +1.043763,1.043763,1.043763,1.043763,1.043763,1.043763 +1.028431,1.028431,1.028431,1.028431,1.028431,1.028431 +1.013036,1.013036,1.013036,1.013036,1.013036,1.013036 +0.997587,0.997587,0.997587,0.997587,0.997587,0.997587 +0.98209,0.98209,0.98209,0.98209,0.98209,0.98209 +0.966552,0.966552,0.966552,0.966552,0.966552,0.966552 +0.950983,0.950983,0.950983,0.950983,0.950983,0.950983 +0.935388,0.935388,0.935388,0.935388,0.935388,0.935388 +0.919776,0.919776,0.919776,0.919776,0.919776,0.919776 +0.904154,0.904154,0.904154,0.904154,0.904154,0.904154 +0.888529,0.888529,0.888529,0.888529,0.888529,0.888529 +0.872904,0.872904,0.872904,0.872904,0.872904,0.872904 +0.857279,0.857279,0.857279,0.857279,0.857279,0.857279 +0.841654,0.841654,0.841654,0.841654,0.841654,0.841654 +0.826032,0.826032,0.826032,0.826032,0.826032,0.826032 +0.810419,0.810419,0.810419,0.810419,0.810419,0.810419 +0.794824,0.794824,0.794824,0.794824,0.794824,0.794824 +0.779254,0.779254,0.779254,0.779254,0.779254,0.779254 +0.763715,0.763715,0.763715,0.763715,0.763715,0.763715 +0.748217,0.748217,0.748217,0.748217,0.748217,0.748217 +0.732766,0.732766,0.732766,0.732766,0.732766,0.732766 +0.717369,0.717369,0.717369,0.717369,0.717369,0.717369 +0.702035,0.702035,0.702035,0.702035,0.702035,0.702035 +0.68677,0.68677,0.68677,0.68677,0.68677,0.68677 +0.671583,0.671583,0.671583,0.671583,0.671583,0.671583 +0.656481,0.656481,0.656481,0.656481,0.656481,0.656481 +0.64147,0.64147,0.64147,0.64147,0.64147,0.64147 +0.62656,0.62656,0.62656,0.62656,0.62656,0.62656 +0.611757,0.611757,0.611757,0.611757,0.611757,0.611757 +0.597068,0.597068,0.597068,0.597068,0.597068,0.597068 +0.582502,0.582502,0.582502,0.582502,0.582502,0.582502 +0.568066,0.568066,0.568066,0.568066,0.568066,0.568066 +0.553767,0.553767,0.553767,0.553767,0.553767,0.553767 +0.539612,0.539612,0.539612,0.539612,0.539612,0.539612 +0.52561,0.52561,0.52561,0.52561,0.52561,0.52561 +0.511768,0.511768,0.511768,0.511768,0.511768,0.511768 +0.498092,0.498092,0.498092,0.498092,0.498092,0.498092 +0.484592,0.484592,0.484592,0.484592,0.484592,0.484592 +0.471274,0.471274,0.471274,0.471274,0.471274,0.471274 +0.458143,0.458143,0.458143,0.458143,0.458143,0.458143 +0.445199,0.445199,0.445199,0.445199,0.445199,0.445199 +0.432443,0.432443,0.432443,0.432443,0.432443,0.432443 +0.419874,0.419874,0.419874,0.419874,0.419874,0.419874 +0.407493,0.407493,0.407493,0.407493,0.407493,0.407493 +0.3953,0.3953,0.3953,0.3953,0.3953,0.3953 +0.383294,0.383294,0.383294,0.383294,0.383294,0.383294 +0.371475,0.371475,0.371475,0.371475,0.371475,0.371475 +0.359844,0.359844,0.359844,0.359844,0.359844,0.359844 +0.3484,0.3484,0.3484,0.3484,0.3484,0.3484 +0.337144,0.337144,0.337144,0.337144,0.337144,0.337144 +0.326076,0.326076,0.326076,0.326076,0.326076,0.326076 +0.315195,0.315195,0.315195,0.315195,0.315195,0.315195 +0.304501,0.304501,0.304501,0.304501,0.304501,0.304501 +0.293995,0.293995,0.293995,0.293995,0.293995,0.293995 +0.283676,0.283676,0.283676,0.283676,0.283676,0.283676 +0.273545,0.273545,0.273545,0.273545,0.273545,0.273545 +0.263602,0.263602,0.263602,0.263602,0.263602,0.263602 +0.253845,0.253845,0.253845,0.253845,0.253845,0.253845 +0.244277,0.244277,0.244277,0.244277,0.244277,0.244277 +0.234896,0.234896,0.234896,0.234896,0.234896,0.234896 +0.225702,0.225702,0.225702,0.225702,0.225702,0.225702 +0.216696,0.216696,0.216696,0.216696,0.216696,0.216696 +0.207877,0.207877,0.207877,0.207877,0.207877,0.207877 +0.199246,0.199246,0.199246,0.199246,0.199246,0.199246 +0.190803,0.190803,0.190803,0.190803,0.190803,0.190803 +0.182547,0.182547,0.182547,0.182547,0.182547,0.182547 +0.174478,0.174478,0.174478,0.174478,0.174478,0.174478 +0.166597,0.166597,0.166597,0.166597,0.166597,0.166597 +0.158903,0.158903,0.158903,0.158903,0.158903,0.158903 +0.151397,0.151397,0.151397,0.151397,0.151397,0.151397 +0.144079,0.144079,0.144079,0.144079,0.144079,0.144079 +0.136948,0.136948,0.136948,0.136948,0.136948,0.136948 +0.130004,0.130004,0.130004,0.130004,0.130004,0.130004 +0.123248,0.123248,0.123248,0.123248,0.123248,0.123248 +0.116679,0.116679,0.116679,0.116679,0.116679,0.116679 +0.110298,0.110298,0.110298,0.110298,0.110298,0.110298 +0.104105,0.104105,0.104105,0.104105,0.104105,0.104105 +0.098098,0.098098,0.098098,0.098098,0.098098,0.098098 +0.09228,0.09228,0.09228,0.09228,0.09228,0.09228 +0.086649,0.086649,0.086649,0.086649,0.086649,0.086649 +0.081205,0.081205,0.081205,0.081205,0.081205,0.081205 +0.075949,0.075949,0.075949,0.075949,0.075949,0.075949 +0.07088,0.07088,0.07088,0.07088,0.07088,0.07088 +0.065999,0.065999,0.065999,0.065999,0.065999,0.065999 +0.061306,0.061306,0.061306,0.061306,0.061306,0.061306 +0.0568,0.0568,0.0568,0.0568,0.0568,0.0568 +0.052481,0.052481,0.052481,0.052481,0.052481,0.052481 +0.04835,0.04835,0.04835,0.04835,0.04835,0.04835 +0.044406,0.044406,0.044406,0.044406,0.044406,0.044406 +0.04065,0.04065,0.04065,0.04065,0.04065,0.04065 +0.037082,0.037082,0.037082,0.037082,0.037082,0.037082 +0.033701,0.033701,0.033701,0.033701,0.033701,0.033701 +0.030507,0.030507,0.030507,0.030507,0.030507,0.030507 +0.027501,0.027501,0.027501,0.027501,0.027501,0.027501 +0.024682,0.024682,0.024682,0.024682,0.024682,0.024682 +0.022051,0.022051,0.022051,0.022051,0.022051,0.022051 +0.019608,0.019608,0.019608,0.019608,0.019608,0.019608 +0.01735,0.01735,0.01735,0.01735,0.01735,0.01735 +0.015273,0.015273,0.015273,0.015273,0.015273,0.015273 +0.013369,0.013369,0.013369,0.013369,0.013369,0.013369 +0.01163,0.01163,0.01163,0.01163,0.01163,0.01163 +0.010049,0.010049,0.010049,0.010049,0.010049,0.010049 +0.008618,0.008618,0.008618,0.008618,0.008618,0.008618 +0.00733,0.00733,0.00733,0.00733,0.00733,0.00733 +0.006177,0.006177,0.006177,0.006177,0.006177,0.006177 +0.005151,0.005151,0.005151,0.005151,0.005151,0.005151 +0.004246,0.004246,0.004246,0.004246,0.004246,0.004246 +0.003454,0.003454,0.003454,0.003454,0.003454,0.003454 +0.002767,0.002767,0.002767,0.002767,0.002767,0.002767 +0.002178,0.002178,0.002178,0.002178,0.002178,0.002178 +0.001679,0.001679,0.001679,0.001679,0.001679,0.001679 +0.001262,0.001262,0.001262,0.001262,0.001262,0.001262 +0.000921,0.000921,0.000921,0.000921,0.000921,0.000921 +0.000648,0.000648,0.000648,0.000648,0.000648,0.000648 +0.000435,0.000435,0.000435,0.000435,0.000435,0.000435 +0.000274,0.000274,0.000274,0.000274,0.000274,0.000274 +0.000159,0.000159,0.000159,0.000159,0.000159,0.000159 +0.000082,0.000082,0.000082,0.000082,0.000082,0.000082 +0.000035,0.000035,0.000035,0.000035,0.000035,0.000035 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +-0.000034,-0.000034,-0.000034,-0.000034,-0.000034,-0.000034 +-0.00008,-0.00008,-0.00008,-0.00008,-0.00008,-0.00008 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.00027,-0.00027,-0.00027,-0.00027,-0.00027,-0.00027 +-0.000429,-0.000429,-0.000429,-0.000429,-0.000429,-0.000429 +-0.00064,-0.00064,-0.00064,-0.00064,-0.00064,-0.00064 +-0.000911,-0.000911,-0.000911,-0.000911,-0.000911,-0.000911 +-0.00125,-0.00125,-0.00125,-0.00125,-0.00125,-0.00125 +-0.001664,-0.001664,-0.001664,-0.001664,-0.001664,-0.001664 +-0.00216,-0.00216,-0.00216,-0.00216,-0.00216,-0.00216 +-0.002746,-0.002746,-0.002746,-0.002746,-0.002746,-0.002746 +-0.00343,-0.00343,-0.00343,-0.00343,-0.00343,-0.00343 +-0.004219,-0.004219,-0.004219,-0.004219,-0.004219,-0.004219 +-0.00512,-0.00512,-0.00512,-0.00512,-0.00512,-0.00512 +-0.006141,-0.006141,-0.006141,-0.006141,-0.006141,-0.006141 +-0.00729,-0.00729,-0.00729,-0.00729,-0.00729,-0.00729 +-0.008574,-0.008574,-0.008574,-0.008574,-0.008574,-0.008574 +-0.01,-0.01,-0.01,-0.01,-0.01,-0.01 +-0.011576,-0.011576,-0.011576,-0.011576,-0.011576,-0.011576 +-0.01331,-0.01331,-0.01331,-0.01331,-0.01331,-0.01331 +-0.015209,-0.015209,-0.015209,-0.015209,-0.015209,-0.015209 +-0.01728,-0.01728,-0.01728,-0.01728,-0.01728,-0.01728 +-0.019531,-0.019531,-0.019531,-0.019531,-0.019531,-0.019531 +-0.021969,-0.021969,-0.021969,-0.021969,-0.021969,-0.021969 +-0.024594,-0.024594,-0.024594,-0.024594,-0.024594,-0.024594 +-0.027406,-0.027406,-0.027406,-0.027406,-0.027406,-0.027406 +-0.030406,-0.030406,-0.030406,-0.030406,-0.030406,-0.030406 +-0.033594,-0.033594,-0.033594,-0.033594,-0.033594,-0.033594 +-0.036969,-0.036969,-0.036969,-0.036969,-0.036969,-0.036969 +-0.040531,-0.040531,-0.040531,-0.040531,-0.040531,-0.040531 +-0.044281,-0.044281,-0.044281,-0.044281,-0.044281,-0.044281 +-0.048219,-0.048219,-0.048219,-0.048219,-0.048219,-0.048219 +-0.052344,-0.052344,-0.052344,-0.052344,-0.052344,-0.052344 +-0.056656,-0.056656,-0.056656,-0.056656,-0.056656,-0.056656 +-0.061156,-0.061156,-0.061156,-0.061156,-0.061156,-0.061156 +-0.065844,-0.065844,-0.065844,-0.065844,-0.065844,-0.065844 +-0.070719,-0.070719,-0.070719,-0.070719,-0.070719,-0.070719 +-0.075781,-0.075781,-0.075781,-0.075781,-0.075781,-0.075781 +-0.081031,-0.081031,-0.081031,-0.081031,-0.081031,-0.081031 +-0.086469,-0.086469,-0.086469,-0.086469,-0.086469,-0.086469 +-0.092094,-0.092094,-0.092094,-0.092094,-0.092094,-0.092094 +-0.097906,-0.097906,-0.097906,-0.097906,-0.097906,-0.097906 +-0.103906,-0.103906,-0.103906,-0.103906,-0.103906,-0.103906 +-0.110094,-0.110094,-0.110094,-0.110094,-0.110094,-0.110094 +-0.116469,-0.116469,-0.116469,-0.116469,-0.116469,-0.116469 +-0.123031,-0.123031,-0.123031,-0.123031,-0.123031,-0.123031 +-0.129781,-0.129781,-0.129781,-0.129781,-0.129781,-0.129781 +-0.136719,-0.136719,-0.136719,-0.136719,-0.136719,-0.136719 +-0.143844,-0.143844,-0.143844,-0.143844,-0.143844,-0.143844 +-0.151156,-0.151156,-0.151156,-0.151156,-0.151156,-0.151156 +-0.158656,-0.158656,-0.158656,-0.158656,-0.158656,-0.158656 +-0.166344,-0.166344,-0.166344,-0.166344,-0.166344,-0.166344 +-0.174219,-0.174219,-0.174219,-0.174219,-0.174219,-0.174219 +-0.182281,-0.182281,-0.182281,-0.182281,-0.182281,-0.182281 +-0.190531,-0.190531,-0.190531,-0.190531,-0.190531,-0.190531 +-0.198969,-0.198969,-0.198969,-0.198969,-0.198969,-0.198969 +-0.207594,-0.207594,-0.207594,-0.207594,-0.207594,-0.207594 +-0.216406,-0.216406,-0.216406,-0.216406,-0.216406,-0.216406 +-0.225406,-0.225406,-0.225406,-0.225406,-0.225406,-0.225406 +-0.234594,-0.234594,-0.234594,-0.234594,-0.234594,-0.234594 +-0.243969,-0.243969,-0.243969,-0.243969,-0.243969,-0.243969 +-0.253531,-0.253531,-0.253531,-0.253531,-0.253531,-0.253531 +-0.263281,-0.263281,-0.263281,-0.263281,-0.263281,-0.263281 +-0.273219,-0.273219,-0.273219,-0.273219,-0.273219,-0.273219 +-0.283344,-0.283344,-0.283344,-0.283344,-0.283344,-0.283344 +-0.293656,-0.293656,-0.293656,-0.293656,-0.293656,-0.293656 +-0.304156,-0.304156,-0.304156,-0.304156,-0.304156,-0.304156 +-0.314844,-0.314844,-0.314844,-0.314844,-0.314844,-0.314844 +-0.325719,-0.325719,-0.325719,-0.325719,-0.325719,-0.325719 +-0.336781,-0.336781,-0.336781,-0.336781,-0.336781,-0.336781 +-0.348031,-0.348031,-0.348031,-0.348031,-0.348031,-0.348031 +-0.359469,-0.359469,-0.359469,-0.359469,-0.359469,-0.359469 +-0.371094,-0.371094,-0.371094,-0.371094,-0.371094,-0.371094 +-0.382906,-0.382906,-0.382906,-0.382906,-0.382906,-0.382906 +-0.394906,-0.394906,-0.394906,-0.394906,-0.394906,-0.394906 +-0.407094,-0.407094,-0.407094,-0.407094,-0.407094,-0.407094 +-0.419469,-0.419469,-0.419469,-0.419469,-0.419469,-0.419469 +-0.432031,-0.432031,-0.432031,-0.432031,-0.432031,-0.432031 +-0.444781,-0.444781,-0.444781,-0.444781,-0.444781,-0.444781 +-0.457719,-0.457719,-0.457719,-0.457719,-0.457719,-0.457719 +-0.470844,-0.470844,-0.470844,-0.470844,-0.470844,-0.470844 +-0.484156,-0.484156,-0.484156,-0.484156,-0.484156,-0.484156 +-0.49765,-0.49765,-0.49765,-0.49765,-0.49765,-0.49765 +-0.51132,-0.51132,-0.51132,-0.51132,-0.51132,-0.51132 +-0.525157,-0.525157,-0.525157,-0.525157,-0.525157,-0.525157 +-0.539154,-0.539154,-0.539154,-0.539154,-0.539154,-0.539154 +-0.553304,-0.553304,-0.553304,-0.553304,-0.553304,-0.553304 +-0.567598,-0.567598,-0.567598,-0.567598,-0.567598,-0.567598 +-0.58203,-0.58203,-0.58203,-0.58203,-0.58203,-0.58203 +-0.596593,-0.596593,-0.596593,-0.596593,-0.596593,-0.596593 +-0.611277,-0.611277,-0.611277,-0.611277,-0.611277,-0.611277 +-0.626077,-0.626077,-0.626077,-0.626077,-0.626077,-0.626077 +-0.640984,-0.640984,-0.640984,-0.640984,-0.640984,-0.640984 +-0.655991,-0.655991,-0.655991,-0.655991,-0.655991,-0.655991 +-0.67109,-0.67109,-0.67109,-0.67109,-0.67109,-0.67109 +-0.686275,-0.686275,-0.686275,-0.686275,-0.686275,-0.686275 +-0.701537,-0.701537,-0.701537,-0.701537,-0.701537,-0.701537 +-0.716869,-0.716869,-0.716869,-0.716869,-0.716869,-0.716869 +-0.732264,-0.732264,-0.732264,-0.732264,-0.732264,-0.732264 +-0.747713,-0.747713,-0.747713,-0.747713,-0.747713,-0.747713 +-0.76321,-0.76321,-0.76321,-0.76321,-0.76321,-0.76321 +-0.778748,-0.778748,-0.778748,-0.778748,-0.778748,-0.778748 +-0.794317,-0.794317,-0.794317,-0.794317,-0.794317,-0.794317 +-0.809912,-0.809912,-0.809912,-0.809912,-0.809912,-0.809912 +-0.825524,-0.825524,-0.825524,-0.825524,-0.825524,-0.825524 +-0.841146,-0.841146,-0.841146,-0.841146,-0.841146,-0.841146 +-0.856771,-0.856771,-0.856771,-0.856771,-0.856771,-0.856771 +-0.872396,-0.872396,-0.872396,-0.872396,-0.872396,-0.872396 +-0.888021,-0.888021,-0.888021,-0.888021,-0.888021,-0.888021 +-0.903646,-0.903646,-0.903646,-0.903646,-0.903646,-0.903646 +-0.919268,-0.919268,-0.919268,-0.919268,-0.919268,-0.919268 +-0.934881,-0.934881,-0.934881,-0.934881,-0.934881,-0.934881 +-0.950476,-0.950476,-0.950476,-0.950476,-0.950476,-0.950476 +-0.966046,-0.966046,-0.966046,-0.966046,-0.966046,-0.966046 +-0.981585,-0.981585,-0.981585,-0.981585,-0.981585,-0.981585 +-0.997083,-0.997083,-0.997083,-0.997083,-0.997083,-0.997083 +-1.012534,-1.012534,-1.012534,-1.012534,-1.012534,-1.012534 +-1.027931,-1.027931,-1.027931,-1.027931,-1.027931,-1.027931 +-1.043265,-1.043265,-1.043265,-1.043265,-1.043265,-1.043265 +-1.05853,-1.05853,-1.05853,-1.05853,-1.05853,-1.05853 +-1.073717,-1.073717,-1.073717,-1.073717,-1.073717,-1.073717 +-1.088819,-1.088819,-1.088819,-1.088819,-1.088819,-1.088819 +-1.10383,-1.10383,-1.10383,-1.10383,-1.10383,-1.10383 +-1.11874,-1.11874,-1.11874,-1.11874,-1.11874,-1.11874 +-1.133543,-1.133543,-1.133543,-1.133543,-1.133543,-1.133543 +-1.148232,-1.148232,-1.148232,-1.148232,-1.148232,-1.148232 +-1.162798,-1.162798,-1.162798,-1.162798,-1.162798,-1.162798 +-1.177234,-1.177234,-1.177234,-1.177234,-1.177234,-1.177234 +-1.191533,-1.191533,-1.191533,-1.191533,-1.191533,-1.191533 +-1.205688,-1.205688,-1.205688,-1.205688,-1.205688,-1.205688 +-1.21969,-1.21969,-1.21969,-1.21969,-1.21969,-1.21969 +-1.233532,-1.233532,-1.233532,-1.233532,-1.233532,-1.233532 +-1.247208,-1.247208,-1.247208,-1.247208,-1.247208,-1.247208 +-1.260708,-1.260708,-1.260708,-1.260708,-1.260708,-1.260708 +-1.274026,-1.274026,-1.274026,-1.274026,-1.274026,-1.274026 +-1.287157,-1.287157,-1.287157,-1.287157,-1.287157,-1.287157 +-1.300101,-1.300101,-1.300101,-1.300101,-1.300101,-1.300101 +-1.312857,-1.312857,-1.312857,-1.312857,-1.312857,-1.312857 +-1.325426,-1.325426,-1.325426,-1.325426,-1.325426,-1.325426 +-1.337807,-1.337807,-1.337807,-1.337807,-1.337807,-1.337807 +-1.35,-1.35,-1.35,-1.35,-1.35,-1.35 +-1.362006,-1.362006,-1.362006,-1.362006,-1.362006,-1.362006 +-1.373825,-1.373825,-1.373825,-1.373825,-1.373825,-1.373825 +-1.385456,-1.385456,-1.385456,-1.385456,-1.385456,-1.385456 +-1.3969,-1.3969,-1.3969,-1.3969,-1.3969,-1.3969 +-1.408156,-1.408156,-1.408156,-1.408156,-1.408156,-1.408156 +-1.419224,-1.419224,-1.419224,-1.419224,-1.419224,-1.419224 +-1.430105,-1.430105,-1.430105,-1.430105,-1.430105,-1.430105 +-1.440799,-1.440799,-1.440799,-1.440799,-1.440799,-1.440799 +-1.451305,-1.451305,-1.451305,-1.451305,-1.451305,-1.451305 +-1.461624,-1.461624,-1.461624,-1.461624,-1.461624,-1.461624 +-1.471755,-1.471755,-1.471755,-1.471755,-1.471755,-1.471755 +-1.481698,-1.481698,-1.481698,-1.481698,-1.481698,-1.481698 +-1.491455,-1.491455,-1.491455,-1.491455,-1.491455,-1.491455 +-1.501023,-1.501023,-1.501023,-1.501023,-1.501023,-1.501023 +-1.510404,-1.510404,-1.510404,-1.510404,-1.510404,-1.510404 +-1.519598,-1.519598,-1.519598,-1.519598,-1.519598,-1.519598 +-1.528604,-1.528604,-1.528604,-1.528604,-1.528604,-1.528604 +-1.537423,-1.537423,-1.537423,-1.537423,-1.537423,-1.537423 +-1.546054,-1.546054,-1.546054,-1.546054,-1.546054,-1.546054 +-1.554497,-1.554497,-1.554497,-1.554497,-1.554497,-1.554497 +-1.562753,-1.562753,-1.562753,-1.562753,-1.562753,-1.562753 +-1.570822,-1.570822,-1.570822,-1.570822,-1.570822,-1.570822 +-1.578703,-1.578703,-1.578703,-1.578703,-1.578703,-1.578703 +-1.586397,-1.586397,-1.586397,-1.586397,-1.586397,-1.586397 +-1.593903,-1.593903,-1.593903,-1.593903,-1.593903,-1.593903 +-1.601221,-1.601221,-1.601221,-1.601221,-1.601221,-1.601221 +-1.608352,-1.608352,-1.608352,-1.608352,-1.608352,-1.608352 +-1.615296,-1.615296,-1.615296,-1.615296,-1.615296,-1.615296 +-1.622052,-1.622052,-1.622052,-1.622052,-1.622052,-1.622052 +-1.628621,-1.628621,-1.628621,-1.628621,-1.628621,-1.628621 +-1.635002,-1.635002,-1.635002,-1.635002,-1.635002,-1.635002 +-1.641195,-1.641195,-1.641195,-1.641195,-1.641195,-1.641195 +-1.647202,-1.647202,-1.647202,-1.647202,-1.647202,-1.647202 +-1.65302,-1.65302,-1.65302,-1.65302,-1.65302,-1.65302 +-1.658651,-1.658651,-1.658651,-1.658651,-1.658651,-1.658651 +-1.664095,-1.664095,-1.664095,-1.664095,-1.664095,-1.664095 +-1.669351,-1.669351,-1.669351,-1.669351,-1.669351,-1.669351 +-1.67442,-1.67442,-1.67442,-1.67442,-1.67442,-1.67442 +-1.679301,-1.679301,-1.679301,-1.679301,-1.679301,-1.679301 +-1.683994,-1.683994,-1.683994,-1.683994,-1.683994,-1.683994 +-1.6885,-1.6885,-1.6885,-1.6885,-1.6885,-1.6885 +-1.692819,-1.692819,-1.692819,-1.692819,-1.692819,-1.692819 +-1.69695,-1.69695,-1.69695,-1.69695,-1.69695,-1.69695 +-1.700894,-1.700894,-1.700894,-1.700894,-1.700894,-1.700894 +-1.70465,-1.70465,-1.70465,-1.70465,-1.70465,-1.70465 +-1.708218,-1.708218,-1.708218,-1.708218,-1.708218,-1.708218 +-1.711599,-1.711599,-1.711599,-1.711599,-1.711599,-1.711599 +-1.714793,-1.714793,-1.714793,-1.714793,-1.714793,-1.714793 +-1.717799,-1.717799,-1.717799,-1.717799,-1.717799,-1.717799 +-1.720618,-1.720618,-1.720618,-1.720618,-1.720618,-1.720618 +-1.723249,-1.723249,-1.723249,-1.723249,-1.723249,-1.723249 +-1.725692,-1.725692,-1.725692,-1.725692,-1.725692,-1.725692 +-1.72795,-1.72795,-1.72795,-1.72795,-1.72795,-1.72795 +-1.730027,-1.730027,-1.730027,-1.730027,-1.730027,-1.730027 +-1.731931,-1.731931,-1.731931,-1.731931,-1.731931,-1.731931 +-1.73367,-1.73367,-1.73367,-1.73367,-1.73367,-1.73367 +-1.735251,-1.735251,-1.735251,-1.735251,-1.735251,-1.735251 +-1.736682,-1.736682,-1.736682,-1.736682,-1.736682,-1.736682 +-1.73797,-1.73797,-1.73797,-1.73797,-1.73797,-1.73797 +-1.739123,-1.739123,-1.739123,-1.739123,-1.739123,-1.739123 +-1.740149,-1.740149,-1.740149,-1.740149,-1.740149,-1.740149 +-1.741054,-1.741054,-1.741054,-1.741054,-1.741054,-1.741054 +-1.741846,-1.741846,-1.741846,-1.741846,-1.741846,-1.741846 +-1.742533,-1.742533,-1.742533,-1.742533,-1.742533,-1.742533 +-1.743122,-1.743122,-1.743122,-1.743122,-1.743122,-1.743122 +-1.743621,-1.743621,-1.743621,-1.743621,-1.743621,-1.743621 +-1.744038,-1.744038,-1.744038,-1.744038,-1.744038,-1.744038 +-1.744379,-1.744379,-1.744379,-1.744379,-1.744379,-1.744379 +-1.744652,-1.744652,-1.744652,-1.744652,-1.744652,-1.744652 +-1.744865,-1.744865,-1.744865,-1.744865,-1.744865,-1.744865 +-1.745026,-1.745026,-1.745026,-1.745026,-1.745026,-1.745026 +-1.745141,-1.745141,-1.745141,-1.745141,-1.745141,-1.745141 +-1.745218,-1.745218,-1.745218,-1.745218,-1.745218,-1.745218 +-1.745265,-1.745265,-1.745265,-1.745265,-1.745265,-1.745265 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.745266,-1.745266,-1.745266,-1.745266,-1.745266,-1.745266 +-1.74522,-1.74522,-1.74522,-1.74522,-1.74522,-1.74522 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.74503,-1.74503,-1.74503,-1.74503,-1.74503,-1.74503 +-1.744871,-1.744871,-1.744871,-1.744871,-1.744871,-1.744871 +-1.74466,-1.74466,-1.74466,-1.74466,-1.74466,-1.74466 +-1.744389,-1.744389,-1.744389,-1.744389,-1.744389,-1.744389 +-1.74405,-1.74405,-1.74405,-1.74405,-1.74405,-1.74405 +-1.743636,-1.743636,-1.743636,-1.743636,-1.743636,-1.743636 +-1.74314,-1.74314,-1.74314,-1.74314,-1.74314,-1.74314 +-1.742554,-1.742554,-1.742554,-1.742554,-1.742554,-1.742554 +-1.74187,-1.74187,-1.74187,-1.74187,-1.74187,-1.74187 +-1.741081,-1.741081,-1.741081,-1.741081,-1.741081,-1.741081 +-1.74018,-1.74018,-1.74018,-1.74018,-1.74018,-1.74018 +-1.739159,-1.739159,-1.739159,-1.739159,-1.739159,-1.739159 +-1.73801,-1.73801,-1.73801,-1.73801,-1.73801,-1.73801 +-1.736726,-1.736726,-1.736726,-1.736726,-1.736726,-1.736726 +-1.7353,-1.7353,-1.7353,-1.7353,-1.7353,-1.7353 +-1.733724,-1.733724,-1.733724,-1.733724,-1.733724,-1.733724 +-1.73199,-1.73199,-1.73199,-1.73199,-1.73199,-1.73199 +-1.730091,-1.730091,-1.730091,-1.730091,-1.730091,-1.730091 +-1.72802,-1.72802,-1.72802,-1.72802,-1.72802,-1.72802 +-1.725769,-1.725769,-1.725769,-1.725769,-1.725769,-1.725769 +-1.723331,-1.723331,-1.723331,-1.723331,-1.723331,-1.723331 +-1.720706,-1.720706,-1.720706,-1.720706,-1.720706,-1.720706 +-1.717894,-1.717894,-1.717894,-1.717894,-1.717894,-1.717894 +-1.714894,-1.714894,-1.714894,-1.714894,-1.714894,-1.714894 +-1.711706,-1.711706,-1.711706,-1.711706,-1.711706,-1.711706 +-1.708331,-1.708331,-1.708331,-1.708331,-1.708331,-1.708331 +-1.704769,-1.704769,-1.704769,-1.704769,-1.704769,-1.704769 +-1.701019,-1.701019,-1.701019,-1.701019,-1.701019,-1.701019 +-1.697081,-1.697081,-1.697081,-1.697081,-1.697081,-1.697081 +-1.692956,-1.692956,-1.692956,-1.692956,-1.692956,-1.692956 +-1.688644,-1.688644,-1.688644,-1.688644,-1.688644,-1.688644 +-1.684144,-1.684144,-1.684144,-1.684144,-1.684144,-1.684144 +-1.679456,-1.679456,-1.679456,-1.679456,-1.679456,-1.679456 +-1.674581,-1.674581,-1.674581,-1.674581,-1.674581,-1.674581 +-1.669519,-1.669519,-1.669519,-1.669519,-1.669519,-1.669519 +-1.664269,-1.664269,-1.664269,-1.664269,-1.664269,-1.664269 +-1.658831,-1.658831,-1.658831,-1.658831,-1.658831,-1.658831 +-1.653206,-1.653206,-1.653206,-1.653206,-1.653206,-1.653206 +-1.647394,-1.647394,-1.647394,-1.647394,-1.647394,-1.647394 +-1.641394,-1.641394,-1.641394,-1.641394,-1.641394,-1.641394 +-1.635206,-1.635206,-1.635206,-1.635206,-1.635206,-1.635206 +-1.628831,-1.628831,-1.628831,-1.628831,-1.628831,-1.628831 +-1.622269,-1.622269,-1.622269,-1.622269,-1.622269,-1.622269 +-1.615519,-1.615519,-1.615519,-1.615519,-1.615519,-1.615519 +-1.608581,-1.608581,-1.608581,-1.608581,-1.608581,-1.608581 +-1.601456,-1.601456,-1.601456,-1.601456,-1.601456,-1.601456 +-1.594144,-1.594144,-1.594144,-1.594144,-1.594144,-1.594144 +-1.586644,-1.586644,-1.586644,-1.586644,-1.586644,-1.586644 +-1.578956,-1.578956,-1.578956,-1.578956,-1.578956,-1.578956 +-1.571081,-1.571081,-1.571081,-1.571081,-1.571081,-1.571081 +-1.563019,-1.563019,-1.563019,-1.563019,-1.563019,-1.563019 +-1.554769,-1.554769,-1.554769,-1.554769,-1.554769,-1.554769 +-1.546331,-1.546331,-1.546331,-1.546331,-1.546331,-1.546331 +-1.537706,-1.537706,-1.537706,-1.537706,-1.537706,-1.537706 +-1.528894,-1.528894,-1.528894,-1.528894,-1.528894,-1.528894 +-1.519894,-1.519894,-1.519894,-1.519894,-1.519894,-1.519894 +-1.510706,-1.510706,-1.510706,-1.510706,-1.510706,-1.510706 +-1.501331,-1.501331,-1.501331,-1.501331,-1.501331,-1.501331 +-1.491769,-1.491769,-1.491769,-1.491769,-1.491769,-1.491769 +-1.482019,-1.482019,-1.482019,-1.482019,-1.482019,-1.482019 +-1.472081,-1.472081,-1.472081,-1.472081,-1.472081,-1.472081 +-1.461956,-1.461956,-1.461956,-1.461956,-1.461956,-1.461956 +-1.451644,-1.451644,-1.451644,-1.451644,-1.451644,-1.451644 +-1.441144,-1.441144,-1.441144,-1.441144,-1.441144,-1.441144 +-1.430456,-1.430456,-1.430456,-1.430456,-1.430456,-1.430456 +-1.419581,-1.419581,-1.419581,-1.419581,-1.419581,-1.419581 +-1.408519,-1.408519,-1.408519,-1.408519,-1.408519,-1.408519 +-1.397269,-1.397269,-1.397269,-1.397269,-1.397269,-1.397269 +-1.385831,-1.385831,-1.385831,-1.385831,-1.385831,-1.385831 +-1.374206,-1.374206,-1.374206,-1.374206,-1.374206,-1.374206 +-1.362394,-1.362394,-1.362394,-1.362394,-1.362394,-1.362394 +-1.350394,-1.350394,-1.350394,-1.350394,-1.350394,-1.350394 +-1.338206,-1.338206,-1.338206,-1.338206,-1.338206,-1.338206 +-1.325831,-1.325831,-1.325831,-1.325831,-1.325831,-1.325831 +-1.313269,-1.313269,-1.313269,-1.313269,-1.313269,-1.313269 +-1.300519,-1.300519,-1.300519,-1.300519,-1.300519,-1.300519 +-1.287581,-1.287581,-1.287581,-1.287581,-1.287581,-1.287581 +-1.274456,-1.274456,-1.274456,-1.274456,-1.274456,-1.274456 +-1.261144,-1.261144,-1.261144,-1.261144,-1.261144,-1.261144 +-1.24765,-1.24765,-1.24765,-1.24765,-1.24765,-1.24765 +-1.23398,-1.23398,-1.23398,-1.23398,-1.23398,-1.23398 +-1.220143,-1.220143,-1.220143,-1.220143,-1.220143,-1.220143 +-1.206146,-1.206146,-1.206146,-1.206146,-1.206146,-1.206146 +-1.191996,-1.191996,-1.191996,-1.191996,-1.191996,-1.191996 +-1.177702,-1.177702,-1.177702,-1.177702,-1.177702,-1.177702 +-1.16327,-1.16327,-1.16327,-1.16327,-1.16327,-1.16327 +-1.148707,-1.148707,-1.148707,-1.148707,-1.148707,-1.148707 +-1.134023,-1.134023,-1.134023,-1.134023,-1.134023,-1.134023 +-1.119223,-1.119223,-1.119223,-1.119223,-1.119223,-1.119223 +-1.104316,-1.104316,-1.104316,-1.104316,-1.104316,-1.104316 +-1.089309,-1.089309,-1.089309,-1.089309,-1.089309,-1.089309 +-1.07421,-1.07421,-1.07421,-1.07421,-1.07421,-1.07421 +-1.059025,-1.059025,-1.059025,-1.059025,-1.059025,-1.059025 +-1.043763,-1.043763,-1.043763,-1.043763,-1.043763,-1.043763 +-1.028431,-1.028431,-1.028431,-1.028431,-1.028431,-1.028431 +-1.013036,-1.013036,-1.013036,-1.013036,-1.013036,-1.013036 +-0.997587,-0.997587,-0.997587,-0.997587,-0.997587,-0.997587 +-0.98209,-0.98209,-0.98209,-0.98209,-0.98209,-0.98209 +-0.966552,-0.966552,-0.966552,-0.966552,-0.966552,-0.966552 +-0.950983,-0.950983,-0.950983,-0.950983,-0.950983,-0.950983 +-0.935388,-0.935388,-0.935388,-0.935388,-0.935388,-0.935388 +-0.919776,-0.919776,-0.919776,-0.919776,-0.919776,-0.919776 +-0.904154,-0.904154,-0.904154,-0.904154,-0.904154,-0.904154 +-0.888529,-0.888529,-0.888529,-0.888529,-0.888529,-0.888529 +-0.872904,-0.872904,-0.872904,-0.872904,-0.872904,-0.872904 +-0.857279,-0.857279,-0.857279,-0.857279,-0.857279,-0.857279 +-0.841654,-0.841654,-0.841654,-0.841654,-0.841654,-0.841654 +-0.826032,-0.826032,-0.826032,-0.826032,-0.826032,-0.826032 +-0.810419,-0.810419,-0.810419,-0.810419,-0.810419,-0.810419 +-0.794824,-0.794824,-0.794824,-0.794824,-0.794824,-0.794824 +-0.779254,-0.779254,-0.779254,-0.779254,-0.779254,-0.779254 +-0.763715,-0.763715,-0.763715,-0.763715,-0.763715,-0.763715 +-0.748217,-0.748217,-0.748217,-0.748217,-0.748217,-0.748217 +-0.732766,-0.732766,-0.732766,-0.732766,-0.732766,-0.732766 +-0.717369,-0.717369,-0.717369,-0.717369,-0.717369,-0.717369 +-0.702035,-0.702035,-0.702035,-0.702035,-0.702035,-0.702035 +-0.68677,-0.68677,-0.68677,-0.68677,-0.68677,-0.68677 +-0.671583,-0.671583,-0.671583,-0.671583,-0.671583,-0.671583 +-0.656481,-0.656481,-0.656481,-0.656481,-0.656481,-0.656481 +-0.64147,-0.64147,-0.64147,-0.64147,-0.64147,-0.64147 +-0.62656,-0.62656,-0.62656,-0.62656,-0.62656,-0.62656 +-0.611757,-0.611757,-0.611757,-0.611757,-0.611757,-0.611757 +-0.597068,-0.597068,-0.597068,-0.597068,-0.597068,-0.597068 +-0.582502,-0.582502,-0.582502,-0.582502,-0.582502,-0.582502 +-0.568066,-0.568066,-0.568066,-0.568066,-0.568066,-0.568066 +-0.553767,-0.553767,-0.553767,-0.553767,-0.553767,-0.553767 +-0.539612,-0.539612,-0.539612,-0.539612,-0.539612,-0.539612 +-0.52561,-0.52561,-0.52561,-0.52561,-0.52561,-0.52561 +-0.511768,-0.511768,-0.511768,-0.511768,-0.511768,-0.511768 +-0.498092,-0.498092,-0.498092,-0.498092,-0.498092,-0.498092 +-0.484592,-0.484592,-0.484592,-0.484592,-0.484592,-0.484592 +-0.471274,-0.471274,-0.471274,-0.471274,-0.471274,-0.471274 +-0.458143,-0.458143,-0.458143,-0.458143,-0.458143,-0.458143 +-0.445199,-0.445199,-0.445199,-0.445199,-0.445199,-0.445199 +-0.432443,-0.432443,-0.432443,-0.432443,-0.432443,-0.432443 +-0.419874,-0.419874,-0.419874,-0.419874,-0.419874,-0.419874 +-0.407493,-0.407493,-0.407493,-0.407493,-0.407493,-0.407493 +-0.3953,-0.3953,-0.3953,-0.3953,-0.3953,-0.3953 +-0.383294,-0.383294,-0.383294,-0.383294,-0.383294,-0.383294 +-0.371475,-0.371475,-0.371475,-0.371475,-0.371475,-0.371475 +-0.359844,-0.359844,-0.359844,-0.359844,-0.359844,-0.359844 +-0.3484,-0.3484,-0.3484,-0.3484,-0.3484,-0.3484 +-0.337144,-0.337144,-0.337144,-0.337144,-0.337144,-0.337144 +-0.326076,-0.326076,-0.326076,-0.326076,-0.326076,-0.326076 +-0.315195,-0.315195,-0.315195,-0.315195,-0.315195,-0.315195 +-0.304501,-0.304501,-0.304501,-0.304501,-0.304501,-0.304501 +-0.293995,-0.293995,-0.293995,-0.293995,-0.293995,-0.293995 +-0.283676,-0.283676,-0.283676,-0.283676,-0.283676,-0.283676 +-0.273545,-0.273545,-0.273545,-0.273545,-0.273545,-0.273545 +-0.263602,-0.263602,-0.263602,-0.263602,-0.263602,-0.263602 +-0.253845,-0.253845,-0.253845,-0.253845,-0.253845,-0.253845 +-0.244277,-0.244277,-0.244277,-0.244277,-0.244277,-0.244277 +-0.234896,-0.234896,-0.234896,-0.234896,-0.234896,-0.234896 +-0.225702,-0.225702,-0.225702,-0.225702,-0.225702,-0.225702 +-0.216696,-0.216696,-0.216696,-0.216696,-0.216696,-0.216696 +-0.207877,-0.207877,-0.207877,-0.207877,-0.207877,-0.207877 +-0.199246,-0.199246,-0.199246,-0.199246,-0.199246,-0.199246 +-0.190803,-0.190803,-0.190803,-0.190803,-0.190803,-0.190803 +-0.182547,-0.182547,-0.182547,-0.182547,-0.182547,-0.182547 +-0.174478,-0.174478,-0.174478,-0.174478,-0.174478,-0.174478 +-0.166597,-0.166597,-0.166597,-0.166597,-0.166597,-0.166597 +-0.158903,-0.158903,-0.158903,-0.158903,-0.158903,-0.158903 +-0.151397,-0.151397,-0.151397,-0.151397,-0.151397,-0.151397 +-0.144079,-0.144079,-0.144079,-0.144079,-0.144079,-0.144079 +-0.136948,-0.136948,-0.136948,-0.136948,-0.136948,-0.136948 +-0.130004,-0.130004,-0.130004,-0.130004,-0.130004,-0.130004 +-0.123248,-0.123248,-0.123248,-0.123248,-0.123248,-0.123248 +-0.116679,-0.116679,-0.116679,-0.116679,-0.116679,-0.116679 +-0.110298,-0.110298,-0.110298,-0.110298,-0.110298,-0.110298 +-0.104105,-0.104105,-0.104105,-0.104105,-0.104105,-0.104105 +-0.098098,-0.098098,-0.098098,-0.098098,-0.098098,-0.098098 +-0.09228,-0.09228,-0.09228,-0.09228,-0.09228,-0.09228 +-0.086649,-0.086649,-0.086649,-0.086649,-0.086649,-0.086649 +-0.081205,-0.081205,-0.081205,-0.081205,-0.081205,-0.081205 +-0.075949,-0.075949,-0.075949,-0.075949,-0.075949,-0.075949 +-0.07088,-0.07088,-0.07088,-0.07088,-0.07088,-0.07088 +-0.065999,-0.065999,-0.065999,-0.065999,-0.065999,-0.065999 +-0.061306,-0.061306,-0.061306,-0.061306,-0.061306,-0.061306 +-0.0568,-0.0568,-0.0568,-0.0568,-0.0568,-0.0568 +-0.052481,-0.052481,-0.052481,-0.052481,-0.052481,-0.052481 +-0.04835,-0.04835,-0.04835,-0.04835,-0.04835,-0.04835 +-0.044406,-0.044406,-0.044406,-0.044406,-0.044406,-0.044406 +-0.04065,-0.04065,-0.04065,-0.04065,-0.04065,-0.04065 +-0.037082,-0.037082,-0.037082,-0.037082,-0.037082,-0.037082 +-0.033701,-0.033701,-0.033701,-0.033701,-0.033701,-0.033701 +-0.030507,-0.030507,-0.030507,-0.030507,-0.030507,-0.030507 +-0.027501,-0.027501,-0.027501,-0.027501,-0.027501,-0.027501 +-0.024682,-0.024682,-0.024682,-0.024682,-0.024682,-0.024682 +-0.022051,-0.022051,-0.022051,-0.022051,-0.022051,-0.022051 +-0.019608,-0.019608,-0.019608,-0.019608,-0.019608,-0.019608 +-0.01735,-0.01735,-0.01735,-0.01735,-0.01735,-0.01735 +-0.015273,-0.015273,-0.015273,-0.015273,-0.015273,-0.015273 +-0.013369,-0.013369,-0.013369,-0.013369,-0.013369,-0.013369 +-0.01163,-0.01163,-0.01163,-0.01163,-0.01163,-0.01163 +-0.010049,-0.010049,-0.010049,-0.010049,-0.010049,-0.010049 +-0.008618,-0.008618,-0.008618,-0.008618,-0.008618,-0.008618 +-0.00733,-0.00733,-0.00733,-0.00733,-0.00733,-0.00733 +-0.006177,-0.006177,-0.006177,-0.006177,-0.006177,-0.006177 +-0.005151,-0.005151,-0.005151,-0.005151,-0.005151,-0.005151 +-0.004246,-0.004246,-0.004246,-0.004246,-0.004246,-0.004246 +-0.003454,-0.003454,-0.003454,-0.003454,-0.003454,-0.003454 +-0.002767,-0.002767,-0.002767,-0.002767,-0.002767,-0.002767 +-0.002178,-0.002178,-0.002178,-0.002178,-0.002178,-0.002178 +-0.001679,-0.001679,-0.001679,-0.001679,-0.001679,-0.001679 +-0.001262,-0.001262,-0.001262,-0.001262,-0.001262,-0.001262 +-0.000921,-0.000921,-0.000921,-0.000921,-0.000921,-0.000921 +-0.000648,-0.000648,-0.000648,-0.000648,-0.000648,-0.000648 +-0.000435,-0.000435,-0.000435,-0.000435,-0.000435,-0.000435 +-0.000274,-0.000274,-0.000274,-0.000274,-0.000274,-0.000274 +-0.000159,-0.000159,-0.000159,-0.000159,-0.000159,-0.000159 +-0.000082,-0.000082,-0.000082,-0.000082,-0.000082,-0.000082 +-0.000035,-0.000035,-0.000035,-0.000035,-0.000035,-0.000035 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/5.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/5.csv new file mode 100644 index 00000000..327dea09 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/5.csv @@ -0,0 +1,5465 @@ +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000011,0.000011,0.000011,0.000011,0.000011,0.000011 +0.000037,0.000037,0.000037,0.000037,0.000037,0.000037 +0.000088,0.000088,0.000088,0.000088,0.000088,0.000088 +0.000172,0.000172,0.000172,0.000172,0.000172,0.000172 +0.000297,0.000297,0.000297,0.000297,0.000297,0.000297 +0.000472,0.000472,0.000472,0.000472,0.000472,0.000472 +0.000704,0.000704,0.000704,0.000704,0.000704,0.000704 +0.001002,0.001002,0.001002,0.001002,0.001002,0.001002 +0.001375,0.001375,0.001375,0.001375,0.001375,0.001375 +0.00183,0.00183,0.00183,0.00183,0.00183,0.00183 +0.002376,0.002376,0.002376,0.002376,0.002376,0.002376 +0.003021,0.003021,0.003021,0.003021,0.003021,0.003021 +0.003773,0.003773,0.003773,0.003773,0.003773,0.003773 +0.004641,0.004641,0.004641,0.004641,0.004641,0.004641 +0.005632,0.005632,0.005632,0.005632,0.005632,0.005632 +0.006755,0.006755,0.006755,0.006755,0.006755,0.006755 +0.008019,0.008019,0.008019,0.008019,0.008019,0.008019 +0.009431,0.009431,0.009431,0.009431,0.009431,0.009431 +0.011,0.011,0.011,0.011,0.011,0.011 +0.012734,0.012734,0.012734,0.012734,0.012734,0.012734 +0.014641,0.014641,0.014641,0.014641,0.014641,0.014641 +0.01673,0.01673,0.01673,0.01673,0.01673,0.01673 +0.019008,0.019008,0.019008,0.019008,0.019008,0.019008 +0.021484,0.021484,0.021484,0.021484,0.021484,0.021484 +0.024166,0.024166,0.024166,0.024166,0.024166,0.024166 +0.027053,0.027053,0.027053,0.027053,0.027053,0.027053 +0.030147,0.030147,0.030147,0.030147,0.030147,0.030147 +0.033447,0.033447,0.033447,0.033447,0.033447,0.033447 +0.036953,0.036953,0.036953,0.036953,0.036953,0.036953 +0.040666,0.040666,0.040666,0.040666,0.040666,0.040666 +0.044584,0.044584,0.044584,0.044584,0.044584,0.044584 +0.048709,0.048709,0.048709,0.048709,0.048709,0.048709 +0.053041,0.053041,0.053041,0.053041,0.053041,0.053041 +0.057578,0.057578,0.057578,0.057578,0.057578,0.057578 +0.062322,0.062322,0.062322,0.062322,0.062322,0.062322 +0.067272,0.067272,0.067272,0.067272,0.067272,0.067272 +0.072428,0.072428,0.072428,0.072428,0.072428,0.072428 +0.077791,0.077791,0.077791,0.077791,0.077791,0.077791 +0.083359,0.083359,0.083359,0.083359,0.083359,0.083359 +0.089134,0.089134,0.089134,0.089134,0.089134,0.089134 +0.095116,0.095116,0.095116,0.095116,0.095116,0.095116 +0.101303,0.101303,0.101303,0.101303,0.101303,0.101303 +0.107697,0.107697,0.107697,0.107697,0.107697,0.107697 +0.114297,0.114297,0.114297,0.114297,0.114297,0.114297 +0.121103,0.121103,0.121103,0.121103,0.121103,0.121103 +0.128116,0.128116,0.128116,0.128116,0.128116,0.128116 +0.135334,0.135334,0.135334,0.135334,0.135334,0.135334 +0.142759,0.142759,0.142759,0.142759,0.142759,0.142759 +0.150391,0.150391,0.150391,0.150391,0.150391,0.150391 +0.158228,0.158228,0.158228,0.158228,0.158228,0.158228 +0.166272,0.166272,0.166272,0.166272,0.166272,0.166272 +0.174522,0.174522,0.174522,0.174522,0.174522,0.174522 +0.182978,0.182978,0.182978,0.182978,0.182978,0.182978 +0.191641,0.191641,0.191641,0.191641,0.191641,0.191641 +0.200509,0.200509,0.200509,0.200509,0.200509,0.200509 +0.209584,0.209584,0.209584,0.209584,0.209584,0.209584 +0.218866,0.218866,0.218866,0.218866,0.218866,0.218866 +0.228353,0.228353,0.228353,0.228353,0.228353,0.228353 +0.238047,0.238047,0.238047,0.238047,0.238047,0.238047 +0.247947,0.247947,0.247947,0.247947,0.247947,0.247947 +0.258053,0.258053,0.258053,0.258053,0.258053,0.258053 +0.268366,0.268366,0.268366,0.268366,0.268366,0.268366 +0.278884,0.278884,0.278884,0.278884,0.278884,0.278884 +0.289609,0.289609,0.289609,0.289609,0.289609,0.289609 +0.300541,0.300541,0.300541,0.300541,0.300541,0.300541 +0.311678,0.311678,0.311678,0.311678,0.311678,0.311678 +0.323022,0.323022,0.323022,0.323022,0.323022,0.323022 +0.334572,0.334572,0.334572,0.334572,0.334572,0.334572 +0.346328,0.346328,0.346328,0.346328,0.346328,0.346328 +0.358291,0.358291,0.358291,0.358291,0.358291,0.358291 +0.370459,0.370459,0.370459,0.370459,0.370459,0.370459 +0.382834,0.382834,0.382834,0.382834,0.382834,0.382834 +0.395416,0.395416,0.395416,0.395416,0.395416,0.395416 +0.408203,0.408203,0.408203,0.408203,0.408203,0.408203 +0.421197,0.421197,0.421197,0.421197,0.421197,0.421197 +0.434394,0.434394,0.434394,0.434394,0.434394,0.434394 +0.447788,0.447788,0.447788,0.447788,0.447788,0.447788 +0.461369,0.461369,0.461369,0.461369,0.461369,0.461369 +0.475129,0.475129,0.475129,0.475129,0.475129,0.475129 +0.489061,0.489061,0.489061,0.489061,0.489061,0.489061 +0.503156,0.503156,0.503156,0.503156,0.503156,0.503156 +0.517406,0.517406,0.517406,0.517406,0.517406,0.517406 +0.531802,0.531802,0.531802,0.531802,0.531802,0.531802 +0.546336,0.546336,0.546336,0.546336,0.546336,0.546336 +0.561001,0.561001,0.561001,0.561001,0.561001,0.561001 +0.575787,0.575787,0.575787,0.575787,0.575787,0.575787 +0.590686,0.590686,0.590686,0.590686,0.590686,0.590686 +0.605691,0.605691,0.605691,0.605691,0.605691,0.605691 +0.620793,0.620793,0.620793,0.620793,0.620793,0.620793 +0.635984,0.635984,0.635984,0.635984,0.635984,0.635984 +0.651255,0.651255,0.651255,0.651255,0.651255,0.651255 +0.666598,0.666598,0.666598,0.666598,0.666598,0.666598 +0.682006,0.682006,0.682006,0.682006,0.682006,0.682006 +0.697469,0.697469,0.697469,0.697469,0.697469,0.697469 +0.71298,0.71298,0.71298,0.71298,0.71298,0.71298 +0.728529,0.728529,0.728529,0.728529,0.728529,0.728529 +0.74411,0.74411,0.74411,0.74411,0.74411,0.74411 +0.759714,0.759714,0.759714,0.759714,0.759714,0.759714 +0.775332,0.775332,0.775332,0.775332,0.775332,0.775332 +0.790956,0.790956,0.790956,0.790956,0.790956,0.790956 +0.806581,0.806581,0.806581,0.806581,0.806581,0.806581 +0.822206,0.822206,0.822206,0.822206,0.822206,0.822206 +0.837831,0.837831,0.837831,0.837831,0.837831,0.837831 +0.853456,0.853456,0.853456,0.853456,0.853456,0.853456 +0.869081,0.869081,0.869081,0.869081,0.869081,0.869081 +0.884706,0.884706,0.884706,0.884706,0.884706,0.884706 +0.900331,0.900331,0.900331,0.900331,0.900331,0.900331 +0.915956,0.915956,0.915956,0.915956,0.915956,0.915956 +0.931581,0.931581,0.931581,0.931581,0.931581,0.931581 +0.947206,0.947206,0.947206,0.947206,0.947206,0.947206 +0.962831,0.962831,0.962831,0.962831,0.962831,0.962831 +0.978453,0.978453,0.978453,0.978453,0.978453,0.978453 +0.994065,0.994065,0.994065,0.994065,0.994065,0.994065 +1.009657,1.009657,1.009657,1.009657,1.009657,1.009657 +1.025222,1.025222,1.025222,1.025222,1.025222,1.025222 +1.040752,1.040752,1.040752,1.040752,1.040752,1.040752 +1.056237,1.056237,1.056237,1.056237,1.056237,1.056237 +1.071671,1.071671,1.071671,1.071671,1.071671,1.071671 +1.087045,1.087045,1.087045,1.087045,1.087045,1.087045 +1.10235,1.10235,1.10235,1.10235,1.10235,1.10235 +1.117579,1.117579,1.117579,1.117579,1.117579,1.117579 +1.132722,1.132722,1.132722,1.132722,1.132722,1.132722 +1.147772,1.147772,1.147772,1.147772,1.147772,1.147772 +1.162721,1.162721,1.162721,1.162721,1.162721,1.162721 +1.17756,1.17756,1.17756,1.17756,1.17756,1.17756 +1.192281,1.192281,1.192281,1.192281,1.192281,1.192281 +1.206876,1.206876,1.206876,1.206876,1.206876,1.206876 +1.221336,1.221336,1.221336,1.221336,1.221336,1.221336 +1.235654,1.235654,1.235654,1.235654,1.235654,1.235654 +1.24982,1.24982,1.24982,1.24982,1.24982,1.24982 +1.263828,1.263828,1.263828,1.263828,1.263828,1.263828 +1.277667,1.277667,1.277667,1.277667,1.277667,1.277667 +1.291332,1.291332,1.291332,1.291332,1.291332,1.291332 +1.304812,1.304812,1.304812,1.304812,1.304812,1.304812 +1.3181,1.3181,1.3181,1.3181,1.3181,1.3181 +1.331187,1.331187,1.331187,1.331187,1.331187,1.331187 +1.344069,1.344069,1.344069,1.344069,1.344069,1.344069 +1.356744,1.356744,1.356744,1.356744,1.356744,1.356744 +1.369214,1.369214,1.369214,1.369214,1.369214,1.369214 +1.381477,1.381477,1.381477,1.381477,1.381477,1.381477 +1.393533,1.393533,1.393533,1.393533,1.393533,1.393533 +1.405384,1.405384,1.405384,1.405384,1.405384,1.405384 +1.417028,1.417028,1.417028,1.417028,1.417028,1.417028 +1.428466,1.428466,1.428466,1.428466,1.428466,1.428466 +1.439698,1.439698,1.439698,1.439698,1.439698,1.439698 +1.450723,1.450723,1.450723,1.450723,1.450723,1.450723 +1.461542,1.461542,1.461542,1.461542,1.461542,1.461542 +1.472155,1.472155,1.472155,1.472155,1.472155,1.472155 +1.482562,1.482562,1.482562,1.482562,1.482562,1.482562 +1.492762,1.492762,1.492762,1.492762,1.492762,1.492762 +1.502757,1.502757,1.502757,1.502757,1.502757,1.502757 +1.512545,1.512545,1.512545,1.512545,1.512545,1.512545 +1.522126,1.522126,1.522126,1.522126,1.522126,1.522126 +1.531502,1.531502,1.531502,1.531502,1.531502,1.531502 +1.540671,1.540671,1.540671,1.540671,1.540671,1.540671 +1.549634,1.549634,1.549634,1.549634,1.549634,1.549634 +1.558391,1.558391,1.558391,1.558391,1.558391,1.558391 +1.566941,1.566941,1.566941,1.566941,1.566941,1.566941 +1.575285,1.575285,1.575285,1.575285,1.575285,1.575285 +1.583423,1.583423,1.583423,1.583423,1.583423,1.583423 +1.591355,1.591355,1.591355,1.591355,1.591355,1.591355 +1.59908,1.59908,1.59908,1.59908,1.59908,1.59908 +1.6066,1.6066,1.6066,1.6066,1.6066,1.6066 +1.613913,1.613913,1.613913,1.613913,1.613913,1.613913 +1.621019,1.621019,1.621019,1.621019,1.621019,1.621019 +1.62792,1.62792,1.62792,1.62792,1.62792,1.62792 +1.634614,1.634614,1.634614,1.634614,1.634614,1.634614 +1.641102,1.641102,1.641102,1.641102,1.641102,1.641102 +1.647384,1.647384,1.647384,1.647384,1.647384,1.647384 +1.653459,1.653459,1.653459,1.653459,1.653459,1.653459 +1.659328,1.659328,1.659328,1.659328,1.659328,1.659328 +1.664991,1.664991,1.664991,1.664991,1.664991,1.664991 +1.670448,1.670448,1.670448,1.670448,1.670448,1.670448 +1.675698,1.675698,1.675698,1.675698,1.675698,1.675698 +1.680743,1.680743,1.680743,1.680743,1.680743,1.680743 +1.685581,1.685581,1.685581,1.685581,1.685581,1.685581 +1.690212,1.690212,1.690212,1.690212,1.690212,1.690212 +1.694638,1.694638,1.694638,1.694638,1.694638,1.694638 +1.698857,1.698857,1.698857,1.698857,1.698857,1.698857 +1.70287,1.70287,1.70287,1.70287,1.70287,1.70287 +1.706677,1.706677,1.706677,1.706677,1.706677,1.706677 +1.710277,1.710277,1.710277,1.710277,1.710277,1.710277 +1.713671,1.713671,1.713671,1.713671,1.713671,1.713671 +1.716859,1.716859,1.716859,1.716859,1.716859,1.716859 +1.719841,1.719841,1.719841,1.719841,1.719841,1.719841 +1.722616,1.722616,1.722616,1.722616,1.722616,1.722616 +1.725186,1.725186,1.725186,1.725186,1.725186,1.725186 +1.727554,1.727554,1.727554,1.727554,1.727554,1.727554 +1.729728,1.729728,1.729728,1.729728,1.729728,1.729728 +1.731717,1.731717,1.731717,1.731717,1.731717,1.731717 +1.733529,1.733529,1.733529,1.733529,1.733529,1.733529 +1.735172,1.735172,1.735172,1.735172,1.735172,1.735172 +1.736655,1.736655,1.736655,1.736655,1.736655,1.736655 +1.737985,1.737985,1.737985,1.737985,1.737985,1.737985 +1.739172,1.739172,1.739172,1.739172,1.739172,1.739172 +1.740222,1.740222,1.740222,1.740222,1.740222,1.740222 +1.741146,1.741146,1.741146,1.741146,1.741146,1.741146 +1.741949,1.741949,1.741949,1.741949,1.741949,1.741949 +1.742642,1.742642,1.742642,1.742642,1.742642,1.742642 +1.743232,1.743232,1.743232,1.743232,1.743232,1.743232 +1.743728,1.743728,1.743728,1.743728,1.743728,1.743728 +1.744137,1.744137,1.744137,1.744137,1.744137,1.744137 +1.744468,1.744468,1.744468,1.744468,1.744468,1.744468 +1.74473,1.74473,1.74473,1.74473,1.74473,1.74473 +1.74493,1.74493,1.74493,1.74493,1.74493,1.74493 +1.745077,1.745077,1.745077,1.745077,1.745077,1.745077 +1.745178,1.745178,1.745178,1.745178,1.745178,1.745178 +1.745243,1.745243,1.745243,1.745243,1.745243,1.745243 +1.74528,1.74528,1.74528,1.74528,1.74528,1.74528 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745289,1.745289,1.745289,1.745289,1.745289,1.745289 +1.745263,1.745263,1.745263,1.745263,1.745263,1.745263 +1.745212,1.745212,1.745212,1.745212,1.745212,1.745212 +1.745128,1.745128,1.745128,1.745128,1.745128,1.745128 +1.745003,1.745003,1.745003,1.745003,1.745003,1.745003 +1.744828,1.744828,1.744828,1.744828,1.744828,1.744828 +1.744596,1.744596,1.744596,1.744596,1.744596,1.744596 +1.744298,1.744298,1.744298,1.744298,1.744298,1.744298 +1.743925,1.743925,1.743925,1.743925,1.743925,1.743925 +1.74347,1.74347,1.74347,1.74347,1.74347,1.74347 +1.742924,1.742924,1.742924,1.742924,1.742924,1.742924 +1.742279,1.742279,1.742279,1.742279,1.742279,1.742279 +1.741527,1.741527,1.741527,1.741527,1.741527,1.741527 +1.740659,1.740659,1.740659,1.740659,1.740659,1.740659 +1.739668,1.739668,1.739668,1.739668,1.739668,1.739668 +1.738545,1.738545,1.738545,1.738545,1.738545,1.738545 +1.737281,1.737281,1.737281,1.737281,1.737281,1.737281 +1.735869,1.735869,1.735869,1.735869,1.735869,1.735869 +1.7343,1.7343,1.7343,1.7343,1.7343,1.7343 +1.732566,1.732566,1.732566,1.732566,1.732566,1.732566 +1.730659,1.730659,1.730659,1.730659,1.730659,1.730659 +1.72857,1.72857,1.72857,1.72857,1.72857,1.72857 +1.726292,1.726292,1.726292,1.726292,1.726292,1.726292 +1.723816,1.723816,1.723816,1.723816,1.723816,1.723816 +1.721134,1.721134,1.721134,1.721134,1.721134,1.721134 +1.718247,1.718247,1.718247,1.718247,1.718247,1.718247 +1.715153,1.715153,1.715153,1.715153,1.715153,1.715153 +1.711853,1.711853,1.711853,1.711853,1.711853,1.711853 +1.708347,1.708347,1.708347,1.708347,1.708347,1.708347 +1.704634,1.704634,1.704634,1.704634,1.704634,1.704634 +1.700716,1.700716,1.700716,1.700716,1.700716,1.700716 +1.696591,1.696591,1.696591,1.696591,1.696591,1.696591 +1.692259,1.692259,1.692259,1.692259,1.692259,1.692259 +1.687722,1.687722,1.687722,1.687722,1.687722,1.687722 +1.682978,1.682978,1.682978,1.682978,1.682978,1.682978 +1.678028,1.678028,1.678028,1.678028,1.678028,1.678028 +1.672872,1.672872,1.672872,1.672872,1.672872,1.672872 +1.667509,1.667509,1.667509,1.667509,1.667509,1.667509 +1.661941,1.661941,1.661941,1.661941,1.661941,1.661941 +1.656166,1.656166,1.656166,1.656166,1.656166,1.656166 +1.650184,1.650184,1.650184,1.650184,1.650184,1.650184 +1.643997,1.643997,1.643997,1.643997,1.643997,1.643997 +1.637603,1.637603,1.637603,1.637603,1.637603,1.637603 +1.631003,1.631003,1.631003,1.631003,1.631003,1.631003 +1.624197,1.624197,1.624197,1.624197,1.624197,1.624197 +1.617184,1.617184,1.617184,1.617184,1.617184,1.617184 +1.609966,1.609966,1.609966,1.609966,1.609966,1.609966 +1.602541,1.602541,1.602541,1.602541,1.602541,1.602541 +1.594909,1.594909,1.594909,1.594909,1.594909,1.594909 +1.587072,1.587072,1.587072,1.587072,1.587072,1.587072 +1.579028,1.579028,1.579028,1.579028,1.579028,1.579028 +1.570778,1.570778,1.570778,1.570778,1.570778,1.570778 +1.562322,1.562322,1.562322,1.562322,1.562322,1.562322 +1.553659,1.553659,1.553659,1.553659,1.553659,1.553659 +1.544791,1.544791,1.544791,1.544791,1.544791,1.544791 +1.535716,1.535716,1.535716,1.535716,1.535716,1.535716 +1.526434,1.526434,1.526434,1.526434,1.526434,1.526434 +1.516947,1.516947,1.516947,1.516947,1.516947,1.516947 +1.507253,1.507253,1.507253,1.507253,1.507253,1.507253 +1.497353,1.497353,1.497353,1.497353,1.497353,1.497353 +1.487247,1.487247,1.487247,1.487247,1.487247,1.487247 +1.476934,1.476934,1.476934,1.476934,1.476934,1.476934 +1.466416,1.466416,1.466416,1.466416,1.466416,1.466416 +1.455691,1.455691,1.455691,1.455691,1.455691,1.455691 +1.444759,1.444759,1.444759,1.444759,1.444759,1.444759 +1.433622,1.433622,1.433622,1.433622,1.433622,1.433622 +1.422278,1.422278,1.422278,1.422278,1.422278,1.422278 +1.410728,1.410728,1.410728,1.410728,1.410728,1.410728 +1.398972,1.398972,1.398972,1.398972,1.398972,1.398972 +1.387009,1.387009,1.387009,1.387009,1.387009,1.387009 +1.374841,1.374841,1.374841,1.374841,1.374841,1.374841 +1.362466,1.362466,1.362466,1.362466,1.362466,1.362466 +1.349884,1.349884,1.349884,1.349884,1.349884,1.349884 +1.337097,1.337097,1.337097,1.337097,1.337097,1.337097 +1.324103,1.324103,1.324103,1.324103,1.324103,1.324103 +1.310906,1.310906,1.310906,1.310906,1.310906,1.310906 +1.297512,1.297512,1.297512,1.297512,1.297512,1.297512 +1.283931,1.283931,1.283931,1.283931,1.283931,1.283931 +1.270171,1.270171,1.270171,1.270171,1.270171,1.270171 +1.256239,1.256239,1.256239,1.256239,1.256239,1.256239 +1.242144,1.242144,1.242144,1.242144,1.242144,1.242144 +1.227894,1.227894,1.227894,1.227894,1.227894,1.227894 +1.213498,1.213498,1.213498,1.213498,1.213498,1.213498 +1.198964,1.198964,1.198964,1.198964,1.198964,1.198964 +1.184299,1.184299,1.184299,1.184299,1.184299,1.184299 +1.169513,1.169513,1.169513,1.169513,1.169513,1.169513 +1.154614,1.154614,1.154614,1.154614,1.154614,1.154614 +1.139609,1.139609,1.139609,1.139609,1.139609,1.139609 +1.124507,1.124507,1.124507,1.124507,1.124507,1.124507 +1.109316,1.109316,1.109316,1.109316,1.109316,1.109316 +1.094045,1.094045,1.094045,1.094045,1.094045,1.094045 +1.078702,1.078702,1.078702,1.078702,1.078702,1.078702 +1.063294,1.063294,1.063294,1.063294,1.063294,1.063294 +1.047831,1.047831,1.047831,1.047831,1.047831,1.047831 +1.03232,1.03232,1.03232,1.03232,1.03232,1.03232 +1.016771,1.016771,1.016771,1.016771,1.016771,1.016771 +1.00119,1.00119,1.00119,1.00119,1.00119,1.00119 +0.985586,0.985586,0.985586,0.985586,0.985586,0.985586 +0.969968,0.969968,0.969968,0.969968,0.969968,0.969968 +0.954344,0.954344,0.954344,0.954344,0.954344,0.954344 +0.938719,0.938719,0.938719,0.938719,0.938719,0.938719 +0.923094,0.923094,0.923094,0.923094,0.923094,0.923094 +0.907469,0.907469,0.907469,0.907469,0.907469,0.907469 +0.891844,0.891844,0.891844,0.891844,0.891844,0.891844 +0.876219,0.876219,0.876219,0.876219,0.876219,0.876219 +0.860594,0.860594,0.860594,0.860594,0.860594,0.860594 +0.844969,0.844969,0.844969,0.844969,0.844969,0.844969 +0.829344,0.829344,0.829344,0.829344,0.829344,0.829344 +0.813719,0.813719,0.813719,0.813719,0.813719,0.813719 +0.798094,0.798094,0.798094,0.798094,0.798094,0.798094 +0.782469,0.782469,0.782469,0.782469,0.782469,0.782469 +0.766847,0.766847,0.766847,0.766847,0.766847,0.766847 +0.751235,0.751235,0.751235,0.751235,0.751235,0.751235 +0.735643,0.735643,0.735643,0.735643,0.735643,0.735643 +0.720078,0.720078,0.720078,0.720078,0.720078,0.720078 +0.704548,0.704548,0.704548,0.704548,0.704548,0.704548 +0.689063,0.689063,0.689063,0.689063,0.689063,0.689063 +0.673629,0.673629,0.673629,0.673629,0.673629,0.673629 +0.658255,0.658255,0.658255,0.658255,0.658255,0.658255 +0.64295,0.64295,0.64295,0.64295,0.64295,0.64295 +0.627721,0.627721,0.627721,0.627721,0.627721,0.627721 +0.612578,0.612578,0.612578,0.612578,0.612578,0.612578 +0.597528,0.597528,0.597528,0.597528,0.597528,0.597528 +0.582579,0.582579,0.582579,0.582579,0.582579,0.582579 +0.56774,0.56774,0.56774,0.56774,0.56774,0.56774 +0.553019,0.553019,0.553019,0.553019,0.553019,0.553019 +0.538424,0.538424,0.538424,0.538424,0.538424,0.538424 +0.523964,0.523964,0.523964,0.523964,0.523964,0.523964 +0.509646,0.509646,0.509646,0.509646,0.509646,0.509646 +0.49548,0.49548,0.49548,0.49548,0.49548,0.49548 +0.481472,0.481472,0.481472,0.481472,0.481472,0.481472 +0.467633,0.467633,0.467633,0.467633,0.467633,0.467633 +0.453968,0.453968,0.453968,0.453968,0.453968,0.453968 +0.440488,0.440488,0.440488,0.440488,0.440488,0.440488 +0.4272,0.4272,0.4272,0.4272,0.4272,0.4272 +0.414113,0.414113,0.414113,0.414113,0.414113,0.414113 +0.401231,0.401231,0.401231,0.401231,0.401231,0.401231 +0.388556,0.388556,0.388556,0.388556,0.388556,0.388556 +0.376086,0.376086,0.376086,0.376086,0.376086,0.376086 +0.363823,0.363823,0.363823,0.363823,0.363823,0.363823 +0.351767,0.351767,0.351767,0.351767,0.351767,0.351767 +0.339916,0.339916,0.339916,0.339916,0.339916,0.339916 +0.328272,0.328272,0.328272,0.328272,0.328272,0.328272 +0.316834,0.316834,0.316834,0.316834,0.316834,0.316834 +0.305602,0.305602,0.305602,0.305602,0.305602,0.305602 +0.294577,0.294577,0.294577,0.294577,0.294577,0.294577 +0.283758,0.283758,0.283758,0.283758,0.283758,0.283758 +0.273145,0.273145,0.273145,0.273145,0.273145,0.273145 +0.262738,0.262738,0.262738,0.262738,0.262738,0.262738 +0.252538,0.252538,0.252538,0.252538,0.252538,0.252538 +0.242543,0.242543,0.242543,0.242543,0.242543,0.242543 +0.232755,0.232755,0.232755,0.232755,0.232755,0.232755 +0.223174,0.223174,0.223174,0.223174,0.223174,0.223174 +0.213798,0.213798,0.213798,0.213798,0.213798,0.213798 +0.204629,0.204629,0.204629,0.204629,0.204629,0.204629 +0.195666,0.195666,0.195666,0.195666,0.195666,0.195666 +0.186909,0.186909,0.186909,0.186909,0.186909,0.186909 +0.178359,0.178359,0.178359,0.178359,0.178359,0.178359 +0.170015,0.170015,0.170015,0.170015,0.170015,0.170015 +0.161877,0.161877,0.161877,0.161877,0.161877,0.161877 +0.153945,0.153945,0.153945,0.153945,0.153945,0.153945 +0.14622,0.14622,0.14622,0.14622,0.14622,0.14622 +0.1387,0.1387,0.1387,0.1387,0.1387,0.1387 +0.131387,0.131387,0.131387,0.131387,0.131387,0.131387 +0.124281,0.124281,0.124281,0.124281,0.124281,0.124281 +0.11738,0.11738,0.11738,0.11738,0.11738,0.11738 +0.110686,0.110686,0.110686,0.110686,0.110686,0.110686 +0.104198,0.104198,0.104198,0.104198,0.104198,0.104198 +0.097916,0.097916,0.097916,0.097916,0.097916,0.097916 +0.091841,0.091841,0.091841,0.091841,0.091841,0.091841 +0.085972,0.085972,0.085972,0.085972,0.085972,0.085972 +0.080309,0.080309,0.080309,0.080309,0.080309,0.080309 +0.074852,0.074852,0.074852,0.074852,0.074852,0.074852 +0.069602,0.069602,0.069602,0.069602,0.069602,0.069602 +0.064557,0.064557,0.064557,0.064557,0.064557,0.064557 +0.059719,0.059719,0.059719,0.059719,0.059719,0.059719 +0.055088,0.055088,0.055088,0.055088,0.055088,0.055088 +0.050662,0.050662,0.050662,0.050662,0.050662,0.050662 +0.046443,0.046443,0.046443,0.046443,0.046443,0.046443 +0.04243,0.04243,0.04243,0.04243,0.04243,0.04243 +0.038623,0.038623,0.038623,0.038623,0.038623,0.038623 +0.035023,0.035023,0.035023,0.035023,0.035023,0.035023 +0.031629,0.031629,0.031629,0.031629,0.031629,0.031629 +0.028441,0.028441,0.028441,0.028441,0.028441,0.028441 +0.025459,0.025459,0.025459,0.025459,0.025459,0.025459 +0.022684,0.022684,0.022684,0.022684,0.022684,0.022684 +0.020114,0.020114,0.020114,0.020114,0.020114,0.020114 +0.017746,0.017746,0.017746,0.017746,0.017746,0.017746 +0.015572,0.015572,0.015572,0.015572,0.015572,0.015572 +0.013583,0.013583,0.013583,0.013583,0.013583,0.013583 +0.011771,0.011771,0.011771,0.011771,0.011771,0.011771 +0.010128,0.010128,0.010128,0.010128,0.010128,0.010128 +0.008645,0.008645,0.008645,0.008645,0.008645,0.008645 +0.007315,0.007315,0.007315,0.007315,0.007315,0.007315 +0.006128,0.006128,0.006128,0.006128,0.006128,0.006128 +0.005078,0.005078,0.005078,0.005078,0.005078,0.005078 +0.004154,0.004154,0.004154,0.004154,0.004154,0.004154 +0.003351,0.003351,0.003351,0.003351,0.003351,0.003351 +0.002658,0.002658,0.002658,0.002658,0.002658,0.002658 +0.002068,0.002068,0.002068,0.002068,0.002068,0.002068 +0.001572,0.001572,0.001572,0.001572,0.001572,0.001572 +0.001163,0.001163,0.001163,0.001163,0.001163,0.001163 +0.000832,0.000832,0.000832,0.000832,0.000832,0.000832 +0.00057,0.00057,0.00057,0.00057,0.00057,0.00057 +0.00037,0.00037,0.00037,0.00037,0.00037,0.00037 +0.000223,0.000223,0.000223,0.000223,0.000223,0.000223 +0.000122,0.000122,0.000122,0.000122,0.000122,0.000122 +0.000057,0.000057,0.000057,0.000057,0.000057,0.000057 +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000011,-0.000011,-0.000011,-0.000011,-0.000011,-0.000011 +-0.000037,-0.000037,-0.000037,-0.000037,-0.000037,-0.000037 +-0.000088,-0.000088,-0.000088,-0.000088,-0.000088,-0.000088 +-0.000172,-0.000172,-0.000172,-0.000172,-0.000172,-0.000172 +-0.000297,-0.000297,-0.000297,-0.000297,-0.000297,-0.000297 +-0.000472,-0.000472,-0.000472,-0.000472,-0.000472,-0.000472 +-0.000704,-0.000704,-0.000704,-0.000704,-0.000704,-0.000704 +-0.001002,-0.001002,-0.001002,-0.001002,-0.001002,-0.001002 +-0.001375,-0.001375,-0.001375,-0.001375,-0.001375,-0.001375 +-0.00183,-0.00183,-0.00183,-0.00183,-0.00183,-0.00183 +-0.002376,-0.002376,-0.002376,-0.002376,-0.002376,-0.002376 +-0.003021,-0.003021,-0.003021,-0.003021,-0.003021,-0.003021 +-0.003773,-0.003773,-0.003773,-0.003773,-0.003773,-0.003773 +-0.004641,-0.004641,-0.004641,-0.004641,-0.004641,-0.004641 +-0.005632,-0.005632,-0.005632,-0.005632,-0.005632,-0.005632 +-0.006755,-0.006755,-0.006755,-0.006755,-0.006755,-0.006755 +-0.008019,-0.008019,-0.008019,-0.008019,-0.008019,-0.008019 +-0.009431,-0.009431,-0.009431,-0.009431,-0.009431,-0.009431 +-0.011,-0.011,-0.011,-0.011,-0.011,-0.011 +-0.012734,-0.012734,-0.012734,-0.012734,-0.012734,-0.012734 +-0.014641,-0.014641,-0.014641,-0.014641,-0.014641,-0.014641 +-0.01673,-0.01673,-0.01673,-0.01673,-0.01673,-0.01673 +-0.019008,-0.019008,-0.019008,-0.019008,-0.019008,-0.019008 +-0.021484,-0.021484,-0.021484,-0.021484,-0.021484,-0.021484 +-0.024166,-0.024166,-0.024166,-0.024166,-0.024166,-0.024166 +-0.027053,-0.027053,-0.027053,-0.027053,-0.027053,-0.027053 +-0.030147,-0.030147,-0.030147,-0.030147,-0.030147,-0.030147 +-0.033447,-0.033447,-0.033447,-0.033447,-0.033447,-0.033447 +-0.036953,-0.036953,-0.036953,-0.036953,-0.036953,-0.036953 +-0.040666,-0.040666,-0.040666,-0.040666,-0.040666,-0.040666 +-0.044584,-0.044584,-0.044584,-0.044584,-0.044584,-0.044584 +-0.048709,-0.048709,-0.048709,-0.048709,-0.048709,-0.048709 +-0.053041,-0.053041,-0.053041,-0.053041,-0.053041,-0.053041 +-0.057578,-0.057578,-0.057578,-0.057578,-0.057578,-0.057578 +-0.062322,-0.062322,-0.062322,-0.062322,-0.062322,-0.062322 +-0.067272,-0.067272,-0.067272,-0.067272,-0.067272,-0.067272 +-0.072428,-0.072428,-0.072428,-0.072428,-0.072428,-0.072428 +-0.077791,-0.077791,-0.077791,-0.077791,-0.077791,-0.077791 +-0.083359,-0.083359,-0.083359,-0.083359,-0.083359,-0.083359 +-0.089134,-0.089134,-0.089134,-0.089134,-0.089134,-0.089134 +-0.095116,-0.095116,-0.095116,-0.095116,-0.095116,-0.095116 +-0.101303,-0.101303,-0.101303,-0.101303,-0.101303,-0.101303 +-0.107697,-0.107697,-0.107697,-0.107697,-0.107697,-0.107697 +-0.114297,-0.114297,-0.114297,-0.114297,-0.114297,-0.114297 +-0.121103,-0.121103,-0.121103,-0.121103,-0.121103,-0.121103 +-0.128116,-0.128116,-0.128116,-0.128116,-0.128116,-0.128116 +-0.135334,-0.135334,-0.135334,-0.135334,-0.135334,-0.135334 +-0.142759,-0.142759,-0.142759,-0.142759,-0.142759,-0.142759 +-0.150391,-0.150391,-0.150391,-0.150391,-0.150391,-0.150391 +-0.158228,-0.158228,-0.158228,-0.158228,-0.158228,-0.158228 +-0.166272,-0.166272,-0.166272,-0.166272,-0.166272,-0.166272 +-0.174522,-0.174522,-0.174522,-0.174522,-0.174522,-0.174522 +-0.182978,-0.182978,-0.182978,-0.182978,-0.182978,-0.182978 +-0.191641,-0.191641,-0.191641,-0.191641,-0.191641,-0.191641 +-0.200509,-0.200509,-0.200509,-0.200509,-0.200509,-0.200509 +-0.209584,-0.209584,-0.209584,-0.209584,-0.209584,-0.209584 +-0.218866,-0.218866,-0.218866,-0.218866,-0.218866,-0.218866 +-0.228353,-0.228353,-0.228353,-0.228353,-0.228353,-0.228353 +-0.238047,-0.238047,-0.238047,-0.238047,-0.238047,-0.238047 +-0.247947,-0.247947,-0.247947,-0.247947,-0.247947,-0.247947 +-0.258053,-0.258053,-0.258053,-0.258053,-0.258053,-0.258053 +-0.268366,-0.268366,-0.268366,-0.268366,-0.268366,-0.268366 +-0.278884,-0.278884,-0.278884,-0.278884,-0.278884,-0.278884 +-0.289609,-0.289609,-0.289609,-0.289609,-0.289609,-0.289609 +-0.300541,-0.300541,-0.300541,-0.300541,-0.300541,-0.300541 +-0.311678,-0.311678,-0.311678,-0.311678,-0.311678,-0.311678 +-0.323022,-0.323022,-0.323022,-0.323022,-0.323022,-0.323022 +-0.334572,-0.334572,-0.334572,-0.334572,-0.334572,-0.334572 +-0.346328,-0.346328,-0.346328,-0.346328,-0.346328,-0.346328 +-0.358291,-0.358291,-0.358291,-0.358291,-0.358291,-0.358291 +-0.370459,-0.370459,-0.370459,-0.370459,-0.370459,-0.370459 +-0.382834,-0.382834,-0.382834,-0.382834,-0.382834,-0.382834 +-0.395416,-0.395416,-0.395416,-0.395416,-0.395416,-0.395416 +-0.408203,-0.408203,-0.408203,-0.408203,-0.408203,-0.408203 +-0.421197,-0.421197,-0.421197,-0.421197,-0.421197,-0.421197 +-0.434394,-0.434394,-0.434394,-0.434394,-0.434394,-0.434394 +-0.447788,-0.447788,-0.447788,-0.447788,-0.447788,-0.447788 +-0.461369,-0.461369,-0.461369,-0.461369,-0.461369,-0.461369 +-0.475129,-0.475129,-0.475129,-0.475129,-0.475129,-0.475129 +-0.489061,-0.489061,-0.489061,-0.489061,-0.489061,-0.489061 +-0.503156,-0.503156,-0.503156,-0.503156,-0.503156,-0.503156 +-0.517406,-0.517406,-0.517406,-0.517406,-0.517406,-0.517406 +-0.531802,-0.531802,-0.531802,-0.531802,-0.531802,-0.531802 +-0.546336,-0.546336,-0.546336,-0.546336,-0.546336,-0.546336 +-0.561001,-0.561001,-0.561001,-0.561001,-0.561001,-0.561001 +-0.575787,-0.575787,-0.575787,-0.575787,-0.575787,-0.575787 +-0.590686,-0.590686,-0.590686,-0.590686,-0.590686,-0.590686 +-0.605691,-0.605691,-0.605691,-0.605691,-0.605691,-0.605691 +-0.620793,-0.620793,-0.620793,-0.620793,-0.620793,-0.620793 +-0.635984,-0.635984,-0.635984,-0.635984,-0.635984,-0.635984 +-0.651255,-0.651255,-0.651255,-0.651255,-0.651255,-0.651255 +-0.666598,-0.666598,-0.666598,-0.666598,-0.666598,-0.666598 +-0.682006,-0.682006,-0.682006,-0.682006,-0.682006,-0.682006 +-0.697469,-0.697469,-0.697469,-0.697469,-0.697469,-0.697469 +-0.71298,-0.71298,-0.71298,-0.71298,-0.71298,-0.71298 +-0.728529,-0.728529,-0.728529,-0.728529,-0.728529,-0.728529 +-0.74411,-0.74411,-0.74411,-0.74411,-0.74411,-0.74411 +-0.759714,-0.759714,-0.759714,-0.759714,-0.759714,-0.759714 +-0.775332,-0.775332,-0.775332,-0.775332,-0.775332,-0.775332 +-0.790956,-0.790956,-0.790956,-0.790956,-0.790956,-0.790956 +-0.806581,-0.806581,-0.806581,-0.806581,-0.806581,-0.806581 +-0.822206,-0.822206,-0.822206,-0.822206,-0.822206,-0.822206 +-0.837831,-0.837831,-0.837831,-0.837831,-0.837831,-0.837831 +-0.853456,-0.853456,-0.853456,-0.853456,-0.853456,-0.853456 +-0.869081,-0.869081,-0.869081,-0.869081,-0.869081,-0.869081 +-0.884706,-0.884706,-0.884706,-0.884706,-0.884706,-0.884706 +-0.900331,-0.900331,-0.900331,-0.900331,-0.900331,-0.900331 +-0.915956,-0.915956,-0.915956,-0.915956,-0.915956,-0.915956 +-0.931581,-0.931581,-0.931581,-0.931581,-0.931581,-0.931581 +-0.947206,-0.947206,-0.947206,-0.947206,-0.947206,-0.947206 +-0.962831,-0.962831,-0.962831,-0.962831,-0.962831,-0.962831 +-0.978453,-0.978453,-0.978453,-0.978453,-0.978453,-0.978453 +-0.994065,-0.994065,-0.994065,-0.994065,-0.994065,-0.994065 +-1.009657,-1.009657,-1.009657,-1.009657,-1.009657,-1.009657 +-1.025222,-1.025222,-1.025222,-1.025222,-1.025222,-1.025222 +-1.040752,-1.040752,-1.040752,-1.040752,-1.040752,-1.040752 +-1.056237,-1.056237,-1.056237,-1.056237,-1.056237,-1.056237 +-1.071671,-1.071671,-1.071671,-1.071671,-1.071671,-1.071671 +-1.087045,-1.087045,-1.087045,-1.087045,-1.087045,-1.087045 +-1.10235,-1.10235,-1.10235,-1.10235,-1.10235,-1.10235 +-1.117579,-1.117579,-1.117579,-1.117579,-1.117579,-1.117579 +-1.132722,-1.132722,-1.132722,-1.132722,-1.132722,-1.132722 +-1.147772,-1.147772,-1.147772,-1.147772,-1.147772,-1.147772 +-1.162721,-1.162721,-1.162721,-1.162721,-1.162721,-1.162721 +-1.17756,-1.17756,-1.17756,-1.17756,-1.17756,-1.17756 +-1.192281,-1.192281,-1.192281,-1.192281,-1.192281,-1.192281 +-1.206876,-1.206876,-1.206876,-1.206876,-1.206876,-1.206876 +-1.221336,-1.221336,-1.221336,-1.221336,-1.221336,-1.221336 +-1.235654,-1.235654,-1.235654,-1.235654,-1.235654,-1.235654 +-1.24982,-1.24982,-1.24982,-1.24982,-1.24982,-1.24982 +-1.263828,-1.263828,-1.263828,-1.263828,-1.263828,-1.263828 +-1.277667,-1.277667,-1.277667,-1.277667,-1.277667,-1.277667 +-1.291332,-1.291332,-1.291332,-1.291332,-1.291332,-1.291332 +-1.304812,-1.304812,-1.304812,-1.304812,-1.304812,-1.304812 +-1.3181,-1.3181,-1.3181,-1.3181,-1.3181,-1.3181 +-1.331187,-1.331187,-1.331187,-1.331187,-1.331187,-1.331187 +-1.344069,-1.344069,-1.344069,-1.344069,-1.344069,-1.344069 +-1.356744,-1.356744,-1.356744,-1.356744,-1.356744,-1.356744 +-1.369214,-1.369214,-1.369214,-1.369214,-1.369214,-1.369214 +-1.381477,-1.381477,-1.381477,-1.381477,-1.381477,-1.381477 +-1.393533,-1.393533,-1.393533,-1.393533,-1.393533,-1.393533 +-1.405384,-1.405384,-1.405384,-1.405384,-1.405384,-1.405384 +-1.417028,-1.417028,-1.417028,-1.417028,-1.417028,-1.417028 +-1.428466,-1.428466,-1.428466,-1.428466,-1.428466,-1.428466 +-1.439698,-1.439698,-1.439698,-1.439698,-1.439698,-1.439698 +-1.450723,-1.450723,-1.450723,-1.450723,-1.450723,-1.450723 +-1.461542,-1.461542,-1.461542,-1.461542,-1.461542,-1.461542 +-1.472155,-1.472155,-1.472155,-1.472155,-1.472155,-1.472155 +-1.482562,-1.482562,-1.482562,-1.482562,-1.482562,-1.482562 +-1.492762,-1.492762,-1.492762,-1.492762,-1.492762,-1.492762 +-1.502757,-1.502757,-1.502757,-1.502757,-1.502757,-1.502757 +-1.512545,-1.512545,-1.512545,-1.512545,-1.512545,-1.512545 +-1.522126,-1.522126,-1.522126,-1.522126,-1.522126,-1.522126 +-1.531502,-1.531502,-1.531502,-1.531502,-1.531502,-1.531502 +-1.540671,-1.540671,-1.540671,-1.540671,-1.540671,-1.540671 +-1.549634,-1.549634,-1.549634,-1.549634,-1.549634,-1.549634 +-1.558391,-1.558391,-1.558391,-1.558391,-1.558391,-1.558391 +-1.566941,-1.566941,-1.566941,-1.566941,-1.566941,-1.566941 +-1.575285,-1.575285,-1.575285,-1.575285,-1.575285,-1.575285 +-1.583423,-1.583423,-1.583423,-1.583423,-1.583423,-1.583423 +-1.591355,-1.591355,-1.591355,-1.591355,-1.591355,-1.591355 +-1.59908,-1.59908,-1.59908,-1.59908,-1.59908,-1.59908 +-1.6066,-1.6066,-1.6066,-1.6066,-1.6066,-1.6066 +-1.613913,-1.613913,-1.613913,-1.613913,-1.613913,-1.613913 +-1.621019,-1.621019,-1.621019,-1.621019,-1.621019,-1.621019 +-1.62792,-1.62792,-1.62792,-1.62792,-1.62792,-1.62792 +-1.634614,-1.634614,-1.634614,-1.634614,-1.634614,-1.634614 +-1.641102,-1.641102,-1.641102,-1.641102,-1.641102,-1.641102 +-1.647384,-1.647384,-1.647384,-1.647384,-1.647384,-1.647384 +-1.653459,-1.653459,-1.653459,-1.653459,-1.653459,-1.653459 +-1.659328,-1.659328,-1.659328,-1.659328,-1.659328,-1.659328 +-1.664991,-1.664991,-1.664991,-1.664991,-1.664991,-1.664991 +-1.670448,-1.670448,-1.670448,-1.670448,-1.670448,-1.670448 +-1.675698,-1.675698,-1.675698,-1.675698,-1.675698,-1.675698 +-1.680743,-1.680743,-1.680743,-1.680743,-1.680743,-1.680743 +-1.685581,-1.685581,-1.685581,-1.685581,-1.685581,-1.685581 +-1.690212,-1.690212,-1.690212,-1.690212,-1.690212,-1.690212 +-1.694638,-1.694638,-1.694638,-1.694638,-1.694638,-1.694638 +-1.698857,-1.698857,-1.698857,-1.698857,-1.698857,-1.698857 +-1.70287,-1.70287,-1.70287,-1.70287,-1.70287,-1.70287 +-1.706677,-1.706677,-1.706677,-1.706677,-1.706677,-1.706677 +-1.710277,-1.710277,-1.710277,-1.710277,-1.710277,-1.710277 +-1.713671,-1.713671,-1.713671,-1.713671,-1.713671,-1.713671 +-1.716859,-1.716859,-1.716859,-1.716859,-1.716859,-1.716859 +-1.719841,-1.719841,-1.719841,-1.719841,-1.719841,-1.719841 +-1.722616,-1.722616,-1.722616,-1.722616,-1.722616,-1.722616 +-1.725186,-1.725186,-1.725186,-1.725186,-1.725186,-1.725186 +-1.727554,-1.727554,-1.727554,-1.727554,-1.727554,-1.727554 +-1.729728,-1.729728,-1.729728,-1.729728,-1.729728,-1.729728 +-1.731717,-1.731717,-1.731717,-1.731717,-1.731717,-1.731717 +-1.733529,-1.733529,-1.733529,-1.733529,-1.733529,-1.733529 +-1.735172,-1.735172,-1.735172,-1.735172,-1.735172,-1.735172 +-1.736655,-1.736655,-1.736655,-1.736655,-1.736655,-1.736655 +-1.737985,-1.737985,-1.737985,-1.737985,-1.737985,-1.737985 +-1.739172,-1.739172,-1.739172,-1.739172,-1.739172,-1.739172 +-1.740222,-1.740222,-1.740222,-1.740222,-1.740222,-1.740222 +-1.741146,-1.741146,-1.741146,-1.741146,-1.741146,-1.741146 +-1.741949,-1.741949,-1.741949,-1.741949,-1.741949,-1.741949 +-1.742642,-1.742642,-1.742642,-1.742642,-1.742642,-1.742642 +-1.743232,-1.743232,-1.743232,-1.743232,-1.743232,-1.743232 +-1.743728,-1.743728,-1.743728,-1.743728,-1.743728,-1.743728 +-1.744137,-1.744137,-1.744137,-1.744137,-1.744137,-1.744137 +-1.744468,-1.744468,-1.744468,-1.744468,-1.744468,-1.744468 +-1.74473,-1.74473,-1.74473,-1.74473,-1.74473,-1.74473 +-1.74493,-1.74493,-1.74493,-1.74493,-1.74493,-1.74493 +-1.745077,-1.745077,-1.745077,-1.745077,-1.745077,-1.745077 +-1.745178,-1.745178,-1.745178,-1.745178,-1.745178,-1.745178 +-1.745243,-1.745243,-1.745243,-1.745243,-1.745243,-1.745243 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745289,-1.745289,-1.745289,-1.745289,-1.745289,-1.745289 +-1.745263,-1.745263,-1.745263,-1.745263,-1.745263,-1.745263 +-1.745212,-1.745212,-1.745212,-1.745212,-1.745212,-1.745212 +-1.745128,-1.745128,-1.745128,-1.745128,-1.745128,-1.745128 +-1.745003,-1.745003,-1.745003,-1.745003,-1.745003,-1.745003 +-1.744828,-1.744828,-1.744828,-1.744828,-1.744828,-1.744828 +-1.744596,-1.744596,-1.744596,-1.744596,-1.744596,-1.744596 +-1.744298,-1.744298,-1.744298,-1.744298,-1.744298,-1.744298 +-1.743925,-1.743925,-1.743925,-1.743925,-1.743925,-1.743925 +-1.74347,-1.74347,-1.74347,-1.74347,-1.74347,-1.74347 +-1.742924,-1.742924,-1.742924,-1.742924,-1.742924,-1.742924 +-1.742279,-1.742279,-1.742279,-1.742279,-1.742279,-1.742279 +-1.741527,-1.741527,-1.741527,-1.741527,-1.741527,-1.741527 +-1.740659,-1.740659,-1.740659,-1.740659,-1.740659,-1.740659 +-1.739668,-1.739668,-1.739668,-1.739668,-1.739668,-1.739668 +-1.738545,-1.738545,-1.738545,-1.738545,-1.738545,-1.738545 +-1.737281,-1.737281,-1.737281,-1.737281,-1.737281,-1.737281 +-1.735869,-1.735869,-1.735869,-1.735869,-1.735869,-1.735869 +-1.7343,-1.7343,-1.7343,-1.7343,-1.7343,-1.7343 +-1.732566,-1.732566,-1.732566,-1.732566,-1.732566,-1.732566 +-1.730659,-1.730659,-1.730659,-1.730659,-1.730659,-1.730659 +-1.72857,-1.72857,-1.72857,-1.72857,-1.72857,-1.72857 +-1.726292,-1.726292,-1.726292,-1.726292,-1.726292,-1.726292 +-1.723816,-1.723816,-1.723816,-1.723816,-1.723816,-1.723816 +-1.721134,-1.721134,-1.721134,-1.721134,-1.721134,-1.721134 +-1.718247,-1.718247,-1.718247,-1.718247,-1.718247,-1.718247 +-1.715153,-1.715153,-1.715153,-1.715153,-1.715153,-1.715153 +-1.711853,-1.711853,-1.711853,-1.711853,-1.711853,-1.711853 +-1.708347,-1.708347,-1.708347,-1.708347,-1.708347,-1.708347 +-1.704634,-1.704634,-1.704634,-1.704634,-1.704634,-1.704634 +-1.700716,-1.700716,-1.700716,-1.700716,-1.700716,-1.700716 +-1.696591,-1.696591,-1.696591,-1.696591,-1.696591,-1.696591 +-1.692259,-1.692259,-1.692259,-1.692259,-1.692259,-1.692259 +-1.687722,-1.687722,-1.687722,-1.687722,-1.687722,-1.687722 +-1.682978,-1.682978,-1.682978,-1.682978,-1.682978,-1.682978 +-1.678028,-1.678028,-1.678028,-1.678028,-1.678028,-1.678028 +-1.672872,-1.672872,-1.672872,-1.672872,-1.672872,-1.672872 +-1.667509,-1.667509,-1.667509,-1.667509,-1.667509,-1.667509 +-1.661941,-1.661941,-1.661941,-1.661941,-1.661941,-1.661941 +-1.656166,-1.656166,-1.656166,-1.656166,-1.656166,-1.656166 +-1.650184,-1.650184,-1.650184,-1.650184,-1.650184,-1.650184 +-1.643997,-1.643997,-1.643997,-1.643997,-1.643997,-1.643997 +-1.637603,-1.637603,-1.637603,-1.637603,-1.637603,-1.637603 +-1.631003,-1.631003,-1.631003,-1.631003,-1.631003,-1.631003 +-1.624197,-1.624197,-1.624197,-1.624197,-1.624197,-1.624197 +-1.617184,-1.617184,-1.617184,-1.617184,-1.617184,-1.617184 +-1.609966,-1.609966,-1.609966,-1.609966,-1.609966,-1.609966 +-1.602541,-1.602541,-1.602541,-1.602541,-1.602541,-1.602541 +-1.594909,-1.594909,-1.594909,-1.594909,-1.594909,-1.594909 +-1.587072,-1.587072,-1.587072,-1.587072,-1.587072,-1.587072 +-1.579028,-1.579028,-1.579028,-1.579028,-1.579028,-1.579028 +-1.570778,-1.570778,-1.570778,-1.570778,-1.570778,-1.570778 +-1.562322,-1.562322,-1.562322,-1.562322,-1.562322,-1.562322 +-1.553659,-1.553659,-1.553659,-1.553659,-1.553659,-1.553659 +-1.544791,-1.544791,-1.544791,-1.544791,-1.544791,-1.544791 +-1.535716,-1.535716,-1.535716,-1.535716,-1.535716,-1.535716 +-1.526434,-1.526434,-1.526434,-1.526434,-1.526434,-1.526434 +-1.516947,-1.516947,-1.516947,-1.516947,-1.516947,-1.516947 +-1.507253,-1.507253,-1.507253,-1.507253,-1.507253,-1.507253 +-1.497353,-1.497353,-1.497353,-1.497353,-1.497353,-1.497353 +-1.487247,-1.487247,-1.487247,-1.487247,-1.487247,-1.487247 +-1.476934,-1.476934,-1.476934,-1.476934,-1.476934,-1.476934 +-1.466416,-1.466416,-1.466416,-1.466416,-1.466416,-1.466416 +-1.455691,-1.455691,-1.455691,-1.455691,-1.455691,-1.455691 +-1.444759,-1.444759,-1.444759,-1.444759,-1.444759,-1.444759 +-1.433622,-1.433622,-1.433622,-1.433622,-1.433622,-1.433622 +-1.422278,-1.422278,-1.422278,-1.422278,-1.422278,-1.422278 +-1.410728,-1.410728,-1.410728,-1.410728,-1.410728,-1.410728 +-1.398972,-1.398972,-1.398972,-1.398972,-1.398972,-1.398972 +-1.387009,-1.387009,-1.387009,-1.387009,-1.387009,-1.387009 +-1.374841,-1.374841,-1.374841,-1.374841,-1.374841,-1.374841 +-1.362466,-1.362466,-1.362466,-1.362466,-1.362466,-1.362466 +-1.349884,-1.349884,-1.349884,-1.349884,-1.349884,-1.349884 +-1.337097,-1.337097,-1.337097,-1.337097,-1.337097,-1.337097 +-1.324103,-1.324103,-1.324103,-1.324103,-1.324103,-1.324103 +-1.310906,-1.310906,-1.310906,-1.310906,-1.310906,-1.310906 +-1.297512,-1.297512,-1.297512,-1.297512,-1.297512,-1.297512 +-1.283931,-1.283931,-1.283931,-1.283931,-1.283931,-1.283931 +-1.270171,-1.270171,-1.270171,-1.270171,-1.270171,-1.270171 +-1.256239,-1.256239,-1.256239,-1.256239,-1.256239,-1.256239 +-1.242144,-1.242144,-1.242144,-1.242144,-1.242144,-1.242144 +-1.227894,-1.227894,-1.227894,-1.227894,-1.227894,-1.227894 +-1.213498,-1.213498,-1.213498,-1.213498,-1.213498,-1.213498 +-1.198964,-1.198964,-1.198964,-1.198964,-1.198964,-1.198964 +-1.184299,-1.184299,-1.184299,-1.184299,-1.184299,-1.184299 +-1.169513,-1.169513,-1.169513,-1.169513,-1.169513,-1.169513 +-1.154614,-1.154614,-1.154614,-1.154614,-1.154614,-1.154614 +-1.139609,-1.139609,-1.139609,-1.139609,-1.139609,-1.139609 +-1.124507,-1.124507,-1.124507,-1.124507,-1.124507,-1.124507 +-1.109316,-1.109316,-1.109316,-1.109316,-1.109316,-1.109316 +-1.094045,-1.094045,-1.094045,-1.094045,-1.094045,-1.094045 +-1.078702,-1.078702,-1.078702,-1.078702,-1.078702,-1.078702 +-1.063294,-1.063294,-1.063294,-1.063294,-1.063294,-1.063294 +-1.047831,-1.047831,-1.047831,-1.047831,-1.047831,-1.047831 +-1.03232,-1.03232,-1.03232,-1.03232,-1.03232,-1.03232 +-1.016771,-1.016771,-1.016771,-1.016771,-1.016771,-1.016771 +-1.00119,-1.00119,-1.00119,-1.00119,-1.00119,-1.00119 +-0.985586,-0.985586,-0.985586,-0.985586,-0.985586,-0.985586 +-0.969968,-0.969968,-0.969968,-0.969968,-0.969968,-0.969968 +-0.954344,-0.954344,-0.954344,-0.954344,-0.954344,-0.954344 +-0.938719,-0.938719,-0.938719,-0.938719,-0.938719,-0.938719 +-0.923094,-0.923094,-0.923094,-0.923094,-0.923094,-0.923094 +-0.907469,-0.907469,-0.907469,-0.907469,-0.907469,-0.907469 +-0.891844,-0.891844,-0.891844,-0.891844,-0.891844,-0.891844 +-0.876219,-0.876219,-0.876219,-0.876219,-0.876219,-0.876219 +-0.860594,-0.860594,-0.860594,-0.860594,-0.860594,-0.860594 +-0.844969,-0.844969,-0.844969,-0.844969,-0.844969,-0.844969 +-0.829344,-0.829344,-0.829344,-0.829344,-0.829344,-0.829344 +-0.813719,-0.813719,-0.813719,-0.813719,-0.813719,-0.813719 +-0.798094,-0.798094,-0.798094,-0.798094,-0.798094,-0.798094 +-0.782469,-0.782469,-0.782469,-0.782469,-0.782469,-0.782469 +-0.766847,-0.766847,-0.766847,-0.766847,-0.766847,-0.766847 +-0.751235,-0.751235,-0.751235,-0.751235,-0.751235,-0.751235 +-0.735643,-0.735643,-0.735643,-0.735643,-0.735643,-0.735643 +-0.720078,-0.720078,-0.720078,-0.720078,-0.720078,-0.720078 +-0.704548,-0.704548,-0.704548,-0.704548,-0.704548,-0.704548 +-0.689063,-0.689063,-0.689063,-0.689063,-0.689063,-0.689063 +-0.673629,-0.673629,-0.673629,-0.673629,-0.673629,-0.673629 +-0.658255,-0.658255,-0.658255,-0.658255,-0.658255,-0.658255 +-0.64295,-0.64295,-0.64295,-0.64295,-0.64295,-0.64295 +-0.627721,-0.627721,-0.627721,-0.627721,-0.627721,-0.627721 +-0.612578,-0.612578,-0.612578,-0.612578,-0.612578,-0.612578 +-0.597528,-0.597528,-0.597528,-0.597528,-0.597528,-0.597528 +-0.582579,-0.582579,-0.582579,-0.582579,-0.582579,-0.582579 +-0.56774,-0.56774,-0.56774,-0.56774,-0.56774,-0.56774 +-0.553019,-0.553019,-0.553019,-0.553019,-0.553019,-0.553019 +-0.538424,-0.538424,-0.538424,-0.538424,-0.538424,-0.538424 +-0.523964,-0.523964,-0.523964,-0.523964,-0.523964,-0.523964 +-0.509646,-0.509646,-0.509646,-0.509646,-0.509646,-0.509646 +-0.49548,-0.49548,-0.49548,-0.49548,-0.49548,-0.49548 +-0.481472,-0.481472,-0.481472,-0.481472,-0.481472,-0.481472 +-0.467633,-0.467633,-0.467633,-0.467633,-0.467633,-0.467633 +-0.453968,-0.453968,-0.453968,-0.453968,-0.453968,-0.453968 +-0.440488,-0.440488,-0.440488,-0.440488,-0.440488,-0.440488 +-0.4272,-0.4272,-0.4272,-0.4272,-0.4272,-0.4272 +-0.414113,-0.414113,-0.414113,-0.414113,-0.414113,-0.414113 +-0.401231,-0.401231,-0.401231,-0.401231,-0.401231,-0.401231 +-0.388556,-0.388556,-0.388556,-0.388556,-0.388556,-0.388556 +-0.376086,-0.376086,-0.376086,-0.376086,-0.376086,-0.376086 +-0.363823,-0.363823,-0.363823,-0.363823,-0.363823,-0.363823 +-0.351767,-0.351767,-0.351767,-0.351767,-0.351767,-0.351767 +-0.339916,-0.339916,-0.339916,-0.339916,-0.339916,-0.339916 +-0.328272,-0.328272,-0.328272,-0.328272,-0.328272,-0.328272 +-0.316834,-0.316834,-0.316834,-0.316834,-0.316834,-0.316834 +-0.305602,-0.305602,-0.305602,-0.305602,-0.305602,-0.305602 +-0.294577,-0.294577,-0.294577,-0.294577,-0.294577,-0.294577 +-0.283758,-0.283758,-0.283758,-0.283758,-0.283758,-0.283758 +-0.273145,-0.273145,-0.273145,-0.273145,-0.273145,-0.273145 +-0.262738,-0.262738,-0.262738,-0.262738,-0.262738,-0.262738 +-0.252538,-0.252538,-0.252538,-0.252538,-0.252538,-0.252538 +-0.242543,-0.242543,-0.242543,-0.242543,-0.242543,-0.242543 +-0.232755,-0.232755,-0.232755,-0.232755,-0.232755,-0.232755 +-0.223174,-0.223174,-0.223174,-0.223174,-0.223174,-0.223174 +-0.213798,-0.213798,-0.213798,-0.213798,-0.213798,-0.213798 +-0.204629,-0.204629,-0.204629,-0.204629,-0.204629,-0.204629 +-0.195666,-0.195666,-0.195666,-0.195666,-0.195666,-0.195666 +-0.186909,-0.186909,-0.186909,-0.186909,-0.186909,-0.186909 +-0.178359,-0.178359,-0.178359,-0.178359,-0.178359,-0.178359 +-0.170015,-0.170015,-0.170015,-0.170015,-0.170015,-0.170015 +-0.161877,-0.161877,-0.161877,-0.161877,-0.161877,-0.161877 +-0.153945,-0.153945,-0.153945,-0.153945,-0.153945,-0.153945 +-0.14622,-0.14622,-0.14622,-0.14622,-0.14622,-0.14622 +-0.1387,-0.1387,-0.1387,-0.1387,-0.1387,-0.1387 +-0.131387,-0.131387,-0.131387,-0.131387,-0.131387,-0.131387 +-0.124281,-0.124281,-0.124281,-0.124281,-0.124281,-0.124281 +-0.11738,-0.11738,-0.11738,-0.11738,-0.11738,-0.11738 +-0.110686,-0.110686,-0.110686,-0.110686,-0.110686,-0.110686 +-0.104198,-0.104198,-0.104198,-0.104198,-0.104198,-0.104198 +-0.097916,-0.097916,-0.097916,-0.097916,-0.097916,-0.097916 +-0.091841,-0.091841,-0.091841,-0.091841,-0.091841,-0.091841 +-0.085972,-0.085972,-0.085972,-0.085972,-0.085972,-0.085972 +-0.080309,-0.080309,-0.080309,-0.080309,-0.080309,-0.080309 +-0.074852,-0.074852,-0.074852,-0.074852,-0.074852,-0.074852 +-0.069602,-0.069602,-0.069602,-0.069602,-0.069602,-0.069602 +-0.064557,-0.064557,-0.064557,-0.064557,-0.064557,-0.064557 +-0.059719,-0.059719,-0.059719,-0.059719,-0.059719,-0.059719 +-0.055088,-0.055088,-0.055088,-0.055088,-0.055088,-0.055088 +-0.050662,-0.050662,-0.050662,-0.050662,-0.050662,-0.050662 +-0.046443,-0.046443,-0.046443,-0.046443,-0.046443,-0.046443 +-0.04243,-0.04243,-0.04243,-0.04243,-0.04243,-0.04243 +-0.038623,-0.038623,-0.038623,-0.038623,-0.038623,-0.038623 +-0.035023,-0.035023,-0.035023,-0.035023,-0.035023,-0.035023 +-0.031629,-0.031629,-0.031629,-0.031629,-0.031629,-0.031629 +-0.028441,-0.028441,-0.028441,-0.028441,-0.028441,-0.028441 +-0.025459,-0.025459,-0.025459,-0.025459,-0.025459,-0.025459 +-0.022684,-0.022684,-0.022684,-0.022684,-0.022684,-0.022684 +-0.020114,-0.020114,-0.020114,-0.020114,-0.020114,-0.020114 +-0.017746,-0.017746,-0.017746,-0.017746,-0.017746,-0.017746 +-0.015572,-0.015572,-0.015572,-0.015572,-0.015572,-0.015572 +-0.013583,-0.013583,-0.013583,-0.013583,-0.013583,-0.013583 +-0.011771,-0.011771,-0.011771,-0.011771,-0.011771,-0.011771 +-0.010128,-0.010128,-0.010128,-0.010128,-0.010128,-0.010128 +-0.008645,-0.008645,-0.008645,-0.008645,-0.008645,-0.008645 +-0.007315,-0.007315,-0.007315,-0.007315,-0.007315,-0.007315 +-0.006128,-0.006128,-0.006128,-0.006128,-0.006128,-0.006128 +-0.005078,-0.005078,-0.005078,-0.005078,-0.005078,-0.005078 +-0.004154,-0.004154,-0.004154,-0.004154,-0.004154,-0.004154 +-0.003351,-0.003351,-0.003351,-0.003351,-0.003351,-0.003351 +-0.002658,-0.002658,-0.002658,-0.002658,-0.002658,-0.002658 +-0.002068,-0.002068,-0.002068,-0.002068,-0.002068,-0.002068 +-0.001572,-0.001572,-0.001572,-0.001572,-0.001572,-0.001572 +-0.001163,-0.001163,-0.001163,-0.001163,-0.001163,-0.001163 +-0.000832,-0.000832,-0.000832,-0.000832,-0.000832,-0.000832 +-0.00057,-0.00057,-0.00057,-0.00057,-0.00057,-0.00057 +-0.00037,-0.00037,-0.00037,-0.00037,-0.00037,-0.00037 +-0.000223,-0.000223,-0.000223,-0.000223,-0.000223,-0.000223 +-0.000122,-0.000122,-0.000122,-0.000122,-0.000122,-0.000122 +-0.000057,-0.000057,-0.000057,-0.000057,-0.000057,-0.000057 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0.000012,0.000012,0.000012,0.000012,0.000012,0.000012 +0.000039,0.000039,0.000039,0.000039,0.000039,0.000039 +0.000093,0.000093,0.000093,0.000093,0.000093,0.000093 +0.000182,0.000182,0.000182,0.000182,0.000182,0.000182 +0.000315,0.000315,0.000315,0.000315,0.000315,0.000315 +0.0005,0.0005,0.0005,0.0005,0.0005,0.0005 +0.000747,0.000747,0.000747,0.000747,0.000747,0.000747 +0.001063,0.001063,0.001063,0.001063,0.001063,0.001063 +0.001458,0.001458,0.001458,0.001458,0.001458,0.001458 +0.001941,0.001941,0.001941,0.001941,0.001941,0.001941 +0.00252,0.00252,0.00252,0.00252,0.00252,0.00252 +0.003204,0.003204,0.003204,0.003204,0.003204,0.003204 +0.004002,0.004002,0.004002,0.004002,0.004002,0.004002 +0.004922,0.004922,0.004922,0.004922,0.004922,0.004922 +0.005973,0.005973,0.005973,0.005973,0.005973,0.005973 +0.007165,0.007165,0.007165,0.007165,0.007165,0.007165 +0.008505,0.008505,0.008505,0.008505,0.008505,0.008505 +0.010003,0.010003,0.010003,0.010003,0.010003,0.010003 +0.011667,0.011667,0.011667,0.011667,0.011667,0.011667 +0.013506,0.013506,0.013506,0.013506,0.013506,0.013506 +0.015528,0.015528,0.015528,0.015528,0.015528,0.015528 +0.017744,0.017744,0.017744,0.017744,0.017744,0.017744 +0.02016,0.02016,0.02016,0.02016,0.02016,0.02016 +0.022786,0.022786,0.022786,0.022786,0.022786,0.022786 +0.02563,0.02563,0.02563,0.02563,0.02563,0.02563 +0.028693,0.028693,0.028693,0.028693,0.028693,0.028693 +0.031974,0.031974,0.031974,0.031974,0.031974,0.031974 +0.035474,0.035474,0.035474,0.035474,0.035474,0.035474 +0.039193,0.039193,0.039193,0.039193,0.039193,0.039193 +0.04313,0.04313,0.04313,0.04313,0.04313,0.04313 +0.047286,0.047286,0.047286,0.047286,0.047286,0.047286 +0.051661,0.051661,0.051661,0.051661,0.051661,0.051661 +0.056255,0.056255,0.056255,0.056255,0.056255,0.056255 +0.061068,0.061068,0.061068,0.061068,0.061068,0.061068 +0.066099,0.066099,0.066099,0.066099,0.066099,0.066099 +0.071349,0.071349,0.071349,0.071349,0.071349,0.071349 +0.076818,0.076818,0.076818,0.076818,0.076818,0.076818 +0.082505,0.082505,0.082505,0.082505,0.082505,0.082505 +0.088411,0.088411,0.088411,0.088411,0.088411,0.088411 +0.094536,0.094536,0.094536,0.094536,0.094536,0.094536 +0.10088,0.10088,0.10088,0.10088,0.10088,0.10088 +0.107443,0.107443,0.107443,0.107443,0.107443,0.107443 +0.114224,0.114224,0.114224,0.114224,0.114224,0.114224 +0.121224,0.121224,0.121224,0.121224,0.121224,0.121224 +0.128443,0.128443,0.128443,0.128443,0.128443,0.128443 +0.13588,0.13588,0.13588,0.13588,0.13588,0.13588 +0.143536,0.143536,0.143536,0.143536,0.143536,0.143536 +0.151411,0.151411,0.151411,0.151411,0.151411,0.151411 +0.159505,0.159505,0.159505,0.159505,0.159505,0.159505 +0.167818,0.167818,0.167818,0.167818,0.167818,0.167818 +0.176349,0.176349,0.176349,0.176349,0.176349,0.176349 +0.185099,0.185099,0.185099,0.185099,0.185099,0.185099 +0.194068,0.194068,0.194068,0.194068,0.194068,0.194068 +0.203255,0.203255,0.203255,0.203255,0.203255,0.203255 +0.212661,0.212661,0.212661,0.212661,0.212661,0.212661 +0.222286,0.222286,0.222286,0.222286,0.222286,0.222286 +0.23213,0.23213,0.23213,0.23213,0.23213,0.23213 +0.242193,0.242193,0.242193,0.242193,0.242193,0.242193 +0.252474,0.252474,0.252474,0.252474,0.252474,0.252474 +0.262974,0.262974,0.262974,0.262974,0.262974,0.262974 +0.273693,0.273693,0.273693,0.273693,0.273693,0.273693 +0.28463,0.28463,0.28463,0.28463,0.28463,0.28463 +0.295786,0.295786,0.295786,0.295786,0.295786,0.295786 +0.307161,0.307161,0.307161,0.307161,0.307161,0.307161 +0.318755,0.318755,0.318755,0.318755,0.318755,0.318755 +0.330568,0.330568,0.330568,0.330568,0.330568,0.330568 +0.342599,0.342599,0.342599,0.342599,0.342599,0.342599 +0.354849,0.354849,0.354849,0.354849,0.354849,0.354849 +0.367318,0.367318,0.367318,0.367318,0.367318,0.367318 +0.380005,0.380005,0.380005,0.380005,0.380005,0.380005 +0.392911,0.392911,0.392911,0.392911,0.392911,0.392911 +0.406031,0.406031,0.406031,0.406031,0.406031,0.406031 +0.419355,0.419355,0.419355,0.419355,0.419355,0.419355 +0.432876,0.432876,0.432876,0.432876,0.432876,0.432876 +0.446585,0.446585,0.446585,0.446585,0.446585,0.446585 +0.460472,0.460472,0.460472,0.460472,0.460472,0.460472 +0.474529,0.474529,0.474529,0.474529,0.474529,0.474529 +0.488747,0.488747,0.488747,0.488747,0.488747,0.488747 +0.503118,0.503118,0.503118,0.503118,0.503118,0.503118 +0.517633,0.517633,0.517633,0.517633,0.517633,0.517633 +0.532282,0.532282,0.532282,0.532282,0.532282,0.532282 +0.547058,0.547058,0.547058,0.547058,0.547058,0.547058 +0.561952,0.561952,0.561952,0.561952,0.561952,0.561952 +0.576954,0.576954,0.576954,0.576954,0.576954,0.576954 +0.592056,0.592056,0.592056,0.592056,0.592056,0.592056 +0.607249,0.607249,0.607249,0.607249,0.607249,0.607249 +0.622525,0.622525,0.622525,0.622525,0.622525,0.622525 +0.637875,0.637875,0.637875,0.637875,0.637875,0.637875 +0.653289,0.653289,0.653289,0.653289,0.653289,0.653289 +0.66876,0.66876,0.66876,0.66876,0.66876,0.66876 +0.684278,0.684278,0.684278,0.684278,0.684278,0.684278 +0.699836,0.699836,0.699836,0.699836,0.699836,0.699836 +0.715423,0.715423,0.715423,0.715423,0.715423,0.715423 +0.731031,0.731031,0.731031,0.731031,0.731031,0.731031 +0.746652,0.746652,0.746652,0.746652,0.746652,0.746652 +0.762277,0.762277,0.762277,0.762277,0.762277,0.762277 +0.777902,0.777902,0.777902,0.777902,0.777902,0.777902 +0.793527,0.793527,0.793527,0.793527,0.793527,0.793527 +0.809152,0.809152,0.809152,0.809152,0.809152,0.809152 +0.824777,0.824777,0.824777,0.824777,0.824777,0.824777 +0.840402,0.840402,0.840402,0.840402,0.840402,0.840402 +0.856027,0.856027,0.856027,0.856027,0.856027,0.856027 +0.871652,0.871652,0.871652,0.871652,0.871652,0.871652 +0.887277,0.887277,0.887277,0.887277,0.887277,0.887277 +0.902902,0.902902,0.902902,0.902902,0.902902,0.902902 +0.918527,0.918527,0.918527,0.918527,0.918527,0.918527 +0.934152,0.934152,0.934152,0.934152,0.934152,0.934152 +0.949777,0.949777,0.949777,0.949777,0.949777,0.949777 +0.965402,0.965402,0.965402,0.965402,0.965402,0.965402 +0.981027,0.981027,0.981027,0.981027,0.981027,0.981027 +0.996652,0.996652,0.996652,0.996652,0.996652,0.996652 +1.012274,1.012274,1.012274,1.012274,1.012274,1.012274 +1.027884,1.027884,1.027884,1.027884,1.027884,1.027884 +1.043474,1.043474,1.043474,1.043474,1.043474,1.043474 +1.059036,1.059036,1.059036,1.059036,1.059036,1.059036 +1.07456,1.07456,1.07456,1.07456,1.07456,1.07456 +1.090037,1.090037,1.090037,1.090037,1.090037,1.090037 +1.105459,1.105459,1.105459,1.105459,1.105459,1.105459 +1.120818,1.120818,1.120818,1.120818,1.120818,1.120818 +1.136103,1.136103,1.136103,1.136103,1.136103,1.136103 +1.151308,1.151308,1.151308,1.151308,1.151308,1.151308 +1.166422,1.166422,1.166422,1.166422,1.166422,1.166422 +1.181437,1.181437,1.181437,1.181437,1.181437,1.181437 +1.196345,1.196345,1.196345,1.196345,1.196345,1.196345 +1.211137,1.211137,1.211137,1.211137,1.211137,1.211137 +1.225803,1.225803,1.225803,1.225803,1.225803,1.225803 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.254725,1.254725,1.254725,1.254725,1.254725,1.254725 +1.268963,1.268963,1.268963,1.268963,1.268963,1.268963 +1.283041,1.283041,1.283041,1.283041,1.283041,1.283041 +1.296951,1.296951,1.296951,1.296951,1.296951,1.296951 +1.310682,1.310682,1.310682,1.310682,1.310682,1.310682 +1.324228,1.324228,1.324228,1.324228,1.324228,1.324228 +1.337578,1.337578,1.337578,1.337578,1.337578,1.337578 +1.350724,1.350724,1.350724,1.350724,1.350724,1.350724 +1.363658,1.363658,1.363658,1.363658,1.363658,1.363658 +1.376373,1.376373,1.376373,1.376373,1.376373,1.376373 +1.38887,1.38887,1.38887,1.38887,1.38887,1.38887 +1.401148,1.401148,1.401148,1.401148,1.401148,1.401148 +1.413207,1.413207,1.413207,1.413207,1.413207,1.413207 +1.425048,1.425048,1.425048,1.425048,1.425048,1.425048 +1.436669,1.436669,1.436669,1.436669,1.436669,1.436669 +1.448072,1.448072,1.448072,1.448072,1.448072,1.448072 +1.459257,1.459257,1.459257,1.459257,1.459257,1.459257 +1.470222,1.470222,1.470222,1.470222,1.470222,1.470222 +1.480969,1.480969,1.480969,1.480969,1.480969,1.480969 +1.491497,1.491497,1.491497,1.491497,1.491497,1.491497 +1.501806,1.501806,1.501806,1.501806,1.501806,1.501806 +1.511896,1.511896,1.511896,1.511896,1.511896,1.511896 +1.521768,1.521768,1.521768,1.521768,1.521768,1.521768 +1.531421,1.531421,1.531421,1.531421,1.531421,1.531421 +1.540855,1.540855,1.540855,1.540855,1.540855,1.540855 +1.550071,1.550071,1.550071,1.550071,1.550071,1.550071 +1.559067,1.559067,1.559067,1.559067,1.559067,1.559067 +1.567845,1.567845,1.567845,1.567845,1.567845,1.567845 +1.576404,1.576404,1.576404,1.576404,1.576404,1.576404 +1.584745,1.584745,1.584745,1.584745,1.584745,1.584745 +1.592867,1.592867,1.592867,1.592867,1.592867,1.592867 +1.60077,1.60077,1.60077,1.60077,1.60077,1.60077 +1.608454,1.608454,1.608454,1.608454,1.608454,1.608454 +1.615919,1.615919,1.615919,1.615919,1.615919,1.615919 +1.623166,1.623166,1.623166,1.623166,1.623166,1.623166 +1.630194,1.630194,1.630194,1.630194,1.630194,1.630194 +1.637003,1.637003,1.637003,1.637003,1.637003,1.637003 +1.643593,1.643593,1.643593,1.643593,1.643593,1.643593 +1.649965,1.649965,1.649965,1.649965,1.649965,1.649965 +1.656118,1.656118,1.656118,1.656118,1.656118,1.656118 +1.662052,1.662052,1.662052,1.662052,1.662052,1.662052 +1.667768,1.667768,1.667768,1.667768,1.667768,1.667768 +1.673264,1.673264,1.673264,1.673264,1.673264,1.673264 +1.678542,1.678542,1.678542,1.678542,1.678542,1.678542 +1.683602,1.683602,1.683602,1.683602,1.683602,1.683602 +1.688442,1.688442,1.688442,1.688442,1.688442,1.688442 +1.693064,1.693064,1.693064,1.693064,1.693064,1.693064 +1.697467,1.697467,1.697467,1.697467,1.697467,1.697467 +1.701651,1.701651,1.701651,1.701651,1.701651,1.701651 +1.705616,1.705616,1.705616,1.705616,1.705616,1.705616 +1.709363,1.709363,1.709363,1.709363,1.709363,1.709363 +1.712891,1.712891,1.712891,1.712891,1.712891,1.712891 +1.7162,1.7162,1.7162,1.7162,1.7162,1.7162 +1.719291,1.719291,1.719291,1.719291,1.719291,1.719291 +1.722162,1.722162,1.722162,1.722162,1.722162,1.722162 +1.724816,1.724816,1.724816,1.724816,1.724816,1.724816 +1.727259,1.727259,1.727259,1.727259,1.727259,1.727259 +1.7295,1.7295,1.7295,1.7295,1.7295,1.7295 +1.731546,1.731546,1.731546,1.731546,1.731546,1.731546 +1.733408,1.733408,1.733408,1.733408,1.733408,1.733408 +1.735094,1.735094,1.735094,1.735094,1.735094,1.735094 +1.736613,1.736613,1.736613,1.736613,1.736613,1.736613 +1.737972,1.737972,1.737972,1.737972,1.737972,1.737972 +1.739182,1.739182,1.739182,1.739182,1.739182,1.739182 +1.740251,1.740251,1.740251,1.740251,1.740251,1.740251 +1.741188,1.741188,1.741188,1.741188,1.741188,1.741188 +1.742001,1.742001,1.742001,1.742001,1.742001,1.742001 +1.742699,1.742699,1.742699,1.742699,1.742699,1.742699 +1.743291,1.743291,1.743291,1.743291,1.743291,1.743291 +1.743785,1.743785,1.743785,1.743785,1.743785,1.743785 +1.744191,1.744191,1.744191,1.744191,1.744191,1.744191 +1.744517,1.744517,1.744517,1.744517,1.744517,1.744517 +1.744772,1.744772,1.744772,1.744772,1.744772,1.744772 +1.744964,1.744964,1.744964,1.744964,1.744964,1.744964 +1.745103,1.745103,1.745103,1.745103,1.745103,1.745103 +1.745197,1.745197,1.745197,1.745197,1.745197,1.745197 +1.745255,1.745255,1.745255,1.745255,1.745255,1.745255 +1.745286,1.745286,1.745286,1.745286,1.745286,1.745286 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.745288,1.745288,1.745288,1.745288,1.745288,1.745288 +1.745261,1.745261,1.745261,1.745261,1.745261,1.745261 +1.745207,1.745207,1.745207,1.745207,1.745207,1.745207 +1.745118,1.745118,1.745118,1.745118,1.745118,1.745118 +1.744985,1.744985,1.744985,1.744985,1.744985,1.744985 +1.7448,1.7448,1.7448,1.7448,1.7448,1.7448 +1.744553,1.744553,1.744553,1.744553,1.744553,1.744553 +1.744237,1.744237,1.744237,1.744237,1.744237,1.744237 +1.743842,1.743842,1.743842,1.743842,1.743842,1.743842 +1.743359,1.743359,1.743359,1.743359,1.743359,1.743359 +1.74278,1.74278,1.74278,1.74278,1.74278,1.74278 +1.742096,1.742096,1.742096,1.742096,1.742096,1.742096 +1.741298,1.741298,1.741298,1.741298,1.741298,1.741298 +1.740378,1.740378,1.740378,1.740378,1.740378,1.740378 +1.739327,1.739327,1.739327,1.739327,1.739327,1.739327 +1.738135,1.738135,1.738135,1.738135,1.738135,1.738135 +1.736795,1.736795,1.736795,1.736795,1.736795,1.736795 +1.735297,1.735297,1.735297,1.735297,1.735297,1.735297 +1.733633,1.733633,1.733633,1.733633,1.733633,1.733633 +1.731794,1.731794,1.731794,1.731794,1.731794,1.731794 +1.729772,1.729772,1.729772,1.729772,1.729772,1.729772 +1.727556,1.727556,1.727556,1.727556,1.727556,1.727556 +1.72514,1.72514,1.72514,1.72514,1.72514,1.72514 +1.722514,1.722514,1.722514,1.722514,1.722514,1.722514 +1.71967,1.71967,1.71967,1.71967,1.71967,1.71967 +1.716607,1.716607,1.716607,1.716607,1.716607,1.716607 +1.713326,1.713326,1.713326,1.713326,1.713326,1.713326 +1.709826,1.709826,1.709826,1.709826,1.709826,1.709826 +1.706107,1.706107,1.706107,1.706107,1.706107,1.706107 +1.70217,1.70217,1.70217,1.70217,1.70217,1.70217 +1.698014,1.698014,1.698014,1.698014,1.698014,1.698014 +1.693639,1.693639,1.693639,1.693639,1.693639,1.693639 +1.689045,1.689045,1.689045,1.689045,1.689045,1.689045 +1.684232,1.684232,1.684232,1.684232,1.684232,1.684232 +1.679201,1.679201,1.679201,1.679201,1.679201,1.679201 +1.673951,1.673951,1.673951,1.673951,1.673951,1.673951 +1.668482,1.668482,1.668482,1.668482,1.668482,1.668482 +1.662795,1.662795,1.662795,1.662795,1.662795,1.662795 +1.656889,1.656889,1.656889,1.656889,1.656889,1.656889 +1.650764,1.650764,1.650764,1.650764,1.650764,1.650764 +1.64442,1.64442,1.64442,1.64442,1.64442,1.64442 +1.637857,1.637857,1.637857,1.637857,1.637857,1.637857 +1.631076,1.631076,1.631076,1.631076,1.631076,1.631076 +1.624076,1.624076,1.624076,1.624076,1.624076,1.624076 +1.616857,1.616857,1.616857,1.616857,1.616857,1.616857 +1.60942,1.60942,1.60942,1.60942,1.60942,1.60942 +1.601764,1.601764,1.601764,1.601764,1.601764,1.601764 +1.593889,1.593889,1.593889,1.593889,1.593889,1.593889 +1.585795,1.585795,1.585795,1.585795,1.585795,1.585795 +1.577482,1.577482,1.577482,1.577482,1.577482,1.577482 +1.568951,1.568951,1.568951,1.568951,1.568951,1.568951 +1.560201,1.560201,1.560201,1.560201,1.560201,1.560201 +1.551232,1.551232,1.551232,1.551232,1.551232,1.551232 +1.542045,1.542045,1.542045,1.542045,1.542045,1.542045 +1.532639,1.532639,1.532639,1.532639,1.532639,1.532639 +1.523014,1.523014,1.523014,1.523014,1.523014,1.523014 +1.51317,1.51317,1.51317,1.51317,1.51317,1.51317 +1.503107,1.503107,1.503107,1.503107,1.503107,1.503107 +1.492826,1.492826,1.492826,1.492826,1.492826,1.492826 +1.482326,1.482326,1.482326,1.482326,1.482326,1.482326 +1.471607,1.471607,1.471607,1.471607,1.471607,1.471607 +1.46067,1.46067,1.46067,1.46067,1.46067,1.46067 +1.449514,1.449514,1.449514,1.449514,1.449514,1.449514 +1.438139,1.438139,1.438139,1.438139,1.438139,1.438139 +1.426545,1.426545,1.426545,1.426545,1.426545,1.426545 +1.414732,1.414732,1.414732,1.414732,1.414732,1.414732 +1.402701,1.402701,1.402701,1.402701,1.402701,1.402701 +1.390451,1.390451,1.390451,1.390451,1.390451,1.390451 +1.377982,1.377982,1.377982,1.377982,1.377982,1.377982 +1.365295,1.365295,1.365295,1.365295,1.365295,1.365295 +1.352389,1.352389,1.352389,1.352389,1.352389,1.352389 +1.339269,1.339269,1.339269,1.339269,1.339269,1.339269 +1.325945,1.325945,1.325945,1.325945,1.325945,1.325945 +1.312424,1.312424,1.312424,1.312424,1.312424,1.312424 +1.298715,1.298715,1.298715,1.298715,1.298715,1.298715 +1.284828,1.284828,1.284828,1.284828,1.284828,1.284828 +1.270771,1.270771,1.270771,1.270771,1.270771,1.270771 +1.256553,1.256553,1.256553,1.256553,1.256553,1.256553 +1.242182,1.242182,1.242182,1.242182,1.242182,1.242182 +1.227667,1.227667,1.227667,1.227667,1.227667,1.227667 +1.213018,1.213018,1.213018,1.213018,1.213018,1.213018 +1.198242,1.198242,1.198242,1.198242,1.198242,1.198242 +1.183348,1.183348,1.183348,1.183348,1.183348,1.183348 +1.168346,1.168346,1.168346,1.168346,1.168346,1.168346 +1.153244,1.153244,1.153244,1.153244,1.153244,1.153244 +1.138051,1.138051,1.138051,1.138051,1.138051,1.138051 +1.122775,1.122775,1.122775,1.122775,1.122775,1.122775 +1.107425,1.107425,1.107425,1.107425,1.107425,1.107425 +1.092011,1.092011,1.092011,1.092011,1.092011,1.092011 +1.07654,1.07654,1.07654,1.07654,1.07654,1.07654 +1.061022,1.061022,1.061022,1.061022,1.061022,1.061022 +1.045464,1.045464,1.045464,1.045464,1.045464,1.045464 +1.029877,1.029877,1.029877,1.029877,1.029877,1.029877 +1.014269,1.014269,1.014269,1.014269,1.014269,1.014269 +0.998648,0.998648,0.998648,0.998648,0.998648,0.998648 +0.983023,0.983023,0.983023,0.983023,0.983023,0.983023 +0.967398,0.967398,0.967398,0.967398,0.967398,0.967398 +0.951773,0.951773,0.951773,0.951773,0.951773,0.951773 +0.936148,0.936148,0.936148,0.936148,0.936148,0.936148 +0.920523,0.920523,0.920523,0.920523,0.920523,0.920523 +0.904898,0.904898,0.904898,0.904898,0.904898,0.904898 +0.889273,0.889273,0.889273,0.889273,0.889273,0.889273 +0.873648,0.873648,0.873648,0.873648,0.873648,0.873648 +0.858023,0.858023,0.858023,0.858023,0.858023,0.858023 +0.842398,0.842398,0.842398,0.842398,0.842398,0.842398 +0.826773,0.826773,0.826773,0.826773,0.826773,0.826773 +0.811148,0.811148,0.811148,0.811148,0.811148,0.811148 +0.795523,0.795523,0.795523,0.795523,0.795523,0.795523 +0.779898,0.779898,0.779898,0.779898,0.779898,0.779898 +0.764273,0.764273,0.764273,0.764273,0.764273,0.764273 +0.748648,0.748648,0.748648,0.748648,0.748648,0.748648 +0.733026,0.733026,0.733026,0.733026,0.733026,0.733026 +0.717416,0.717416,0.717416,0.717416,0.717416,0.717416 +0.701826,0.701826,0.701826,0.701826,0.701826,0.701826 +0.686264,0.686264,0.686264,0.686264,0.686264,0.686264 +0.67074,0.67074,0.67074,0.67074,0.67074,0.67074 +0.655263,0.655263,0.655263,0.655263,0.655263,0.655263 +0.639841,0.639841,0.639841,0.639841,0.639841,0.639841 +0.624482,0.624482,0.624482,0.624482,0.624482,0.624482 +0.609197,0.609197,0.609197,0.609197,0.609197,0.609197 +0.593992,0.593992,0.593992,0.593992,0.593992,0.593992 +0.578878,0.578878,0.578878,0.578878,0.578878,0.578878 +0.563863,0.563863,0.563863,0.563863,0.563863,0.563863 +0.548955,0.548955,0.548955,0.548955,0.548955,0.548955 +0.534163,0.534163,0.534163,0.534163,0.534163,0.534163 +0.519497,0.519497,0.519497,0.519497,0.519497,0.519497 +0.504965,0.504965,0.504965,0.504965,0.504965,0.504965 +0.490575,0.490575,0.490575,0.490575,0.490575,0.490575 +0.476337,0.476337,0.476337,0.476337,0.476337,0.476337 +0.462259,0.462259,0.462259,0.462259,0.462259,0.462259 +0.448349,0.448349,0.448349,0.448349,0.448349,0.448349 +0.434618,0.434618,0.434618,0.434618,0.434618,0.434618 +0.421072,0.421072,0.421072,0.421072,0.421072,0.421072 +0.407722,0.407722,0.407722,0.407722,0.407722,0.407722 +0.394576,0.394576,0.394576,0.394576,0.394576,0.394576 +0.381642,0.381642,0.381642,0.381642,0.381642,0.381642 +0.368927,0.368927,0.368927,0.368927,0.368927,0.368927 +0.35643,0.35643,0.35643,0.35643,0.35643,0.35643 +0.344152,0.344152,0.344152,0.344152,0.344152,0.344152 +0.332093,0.332093,0.332093,0.332093,0.332093,0.332093 +0.320252,0.320252,0.320252,0.320252,0.320252,0.320252 +0.308631,0.308631,0.308631,0.308631,0.308631,0.308631 +0.297228,0.297228,0.297228,0.297228,0.297228,0.297228 +0.286043,0.286043,0.286043,0.286043,0.286043,0.286043 +0.275078,0.275078,0.275078,0.275078,0.275078,0.275078 +0.264331,0.264331,0.264331,0.264331,0.264331,0.264331 +0.253803,0.253803,0.253803,0.253803,0.253803,0.253803 +0.243494,0.243494,0.243494,0.243494,0.243494,0.243494 +0.233404,0.233404,0.233404,0.233404,0.233404,0.233404 +0.223532,0.223532,0.223532,0.223532,0.223532,0.223532 +0.213879,0.213879,0.213879,0.213879,0.213879,0.213879 +0.204445,0.204445,0.204445,0.204445,0.204445,0.204445 +0.195229,0.195229,0.195229,0.195229,0.195229,0.195229 +0.186233,0.186233,0.186233,0.186233,0.186233,0.186233 +0.177455,0.177455,0.177455,0.177455,0.177455,0.177455 +0.168896,0.168896,0.168896,0.168896,0.168896,0.168896 +0.160555,0.160555,0.160555,0.160555,0.160555,0.160555 +0.152433,0.152433,0.152433,0.152433,0.152433,0.152433 +0.14453,0.14453,0.14453,0.14453,0.14453,0.14453 +0.136846,0.136846,0.136846,0.136846,0.136846,0.136846 +0.129381,0.129381,0.129381,0.129381,0.129381,0.129381 +0.122134,0.122134,0.122134,0.122134,0.122134,0.122134 +0.115106,0.115106,0.115106,0.115106,0.115106,0.115106 +0.108297,0.108297,0.108297,0.108297,0.108297,0.108297 +0.101707,0.101707,0.101707,0.101707,0.101707,0.101707 +0.095335,0.095335,0.095335,0.095335,0.095335,0.095335 +0.089182,0.089182,0.089182,0.089182,0.089182,0.089182 +0.083248,0.083248,0.083248,0.083248,0.083248,0.083248 +0.077532,0.077532,0.077532,0.077532,0.077532,0.077532 +0.072036,0.072036,0.072036,0.072036,0.072036,0.072036 +0.066758,0.066758,0.066758,0.066758,0.066758,0.066758 +0.061698,0.061698,0.061698,0.061698,0.061698,0.061698 +0.056858,0.056858,0.056858,0.056858,0.056858,0.056858 +0.052236,0.052236,0.052236,0.052236,0.052236,0.052236 +0.047833,0.047833,0.047833,0.047833,0.047833,0.047833 +0.043649,0.043649,0.043649,0.043649,0.043649,0.043649 +0.039684,0.039684,0.039684,0.039684,0.039684,0.039684 +0.035937,0.035937,0.035937,0.035937,0.035937,0.035937 +0.032409,0.032409,0.032409,0.032409,0.032409,0.032409 +0.0291,0.0291,0.0291,0.0291,0.0291,0.0291 +0.026009,0.026009,0.026009,0.026009,0.026009,0.026009 +0.023138,0.023138,0.023138,0.023138,0.023138,0.023138 +0.020484,0.020484,0.020484,0.020484,0.020484,0.020484 +0.018041,0.018041,0.018041,0.018041,0.018041,0.018041 +0.0158,0.0158,0.0158,0.0158,0.0158,0.0158 +0.013754,0.013754,0.013754,0.013754,0.013754,0.013754 +0.011892,0.011892,0.011892,0.011892,0.011892,0.011892 +0.010206,0.010206,0.010206,0.010206,0.010206,0.010206 +0.008687,0.008687,0.008687,0.008687,0.008687,0.008687 +0.007328,0.007328,0.007328,0.007328,0.007328,0.007328 +0.006118,0.006118,0.006118,0.006118,0.006118,0.006118 +0.005049,0.005049,0.005049,0.005049,0.005049,0.005049 +0.004112,0.004112,0.004112,0.004112,0.004112,0.004112 +0.003299,0.003299,0.003299,0.003299,0.003299,0.003299 +0.002601,0.002601,0.002601,0.002601,0.002601,0.002601 +0.002009,0.002009,0.002009,0.002009,0.002009,0.002009 +0.001515,0.001515,0.001515,0.001515,0.001515,0.001515 +0.001109,0.001109,0.001109,0.001109,0.001109,0.001109 +0.000783,0.000783,0.000783,0.000783,0.000783,0.000783 +0.000528,0.000528,0.000528,0.000528,0.000528,0.000528 +0.000336,0.000336,0.000336,0.000336,0.000336,0.000336 +0.000197,0.000197,0.000197,0.000197,0.000197,0.000197 +0.000103,0.000103,0.000103,0.000103,0.000103,0.000103 +0.000045,0.000045,0.000045,0.000045,0.000045,0.000045 +0.000014,0.000014,0.000014,0.000014,0.000014,0.000014 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +-0.000012,-0.000012,-0.000012,-0.000012,-0.000012,-0.000012 +-0.000039,-0.000039,-0.000039,-0.000039,-0.000039,-0.000039 +-0.000093,-0.000093,-0.000093,-0.000093,-0.000093,-0.000093 +-0.000182,-0.000182,-0.000182,-0.000182,-0.000182,-0.000182 +-0.000315,-0.000315,-0.000315,-0.000315,-0.000315,-0.000315 +-0.0005,-0.0005,-0.0005,-0.0005,-0.0005,-0.0005 +-0.000747,-0.000747,-0.000747,-0.000747,-0.000747,-0.000747 +-0.001063,-0.001063,-0.001063,-0.001063,-0.001063,-0.001063 +-0.001458,-0.001458,-0.001458,-0.001458,-0.001458,-0.001458 +-0.001941,-0.001941,-0.001941,-0.001941,-0.001941,-0.001941 +-0.00252,-0.00252,-0.00252,-0.00252,-0.00252,-0.00252 +-0.003204,-0.003204,-0.003204,-0.003204,-0.003204,-0.003204 +-0.004002,-0.004002,-0.004002,-0.004002,-0.004002,-0.004002 +-0.004922,-0.004922,-0.004922,-0.004922,-0.004922,-0.004922 +-0.005973,-0.005973,-0.005973,-0.005973,-0.005973,-0.005973 +-0.007165,-0.007165,-0.007165,-0.007165,-0.007165,-0.007165 +-0.008505,-0.008505,-0.008505,-0.008505,-0.008505,-0.008505 +-0.010003,-0.010003,-0.010003,-0.010003,-0.010003,-0.010003 +-0.011667,-0.011667,-0.011667,-0.011667,-0.011667,-0.011667 +-0.013506,-0.013506,-0.013506,-0.013506,-0.013506,-0.013506 +-0.015528,-0.015528,-0.015528,-0.015528,-0.015528,-0.015528 +-0.017744,-0.017744,-0.017744,-0.017744,-0.017744,-0.017744 +-0.02016,-0.02016,-0.02016,-0.02016,-0.02016,-0.02016 +-0.022786,-0.022786,-0.022786,-0.022786,-0.022786,-0.022786 +-0.02563,-0.02563,-0.02563,-0.02563,-0.02563,-0.02563 +-0.028693,-0.028693,-0.028693,-0.028693,-0.028693,-0.028693 +-0.031974,-0.031974,-0.031974,-0.031974,-0.031974,-0.031974 +-0.035474,-0.035474,-0.035474,-0.035474,-0.035474,-0.035474 +-0.039193,-0.039193,-0.039193,-0.039193,-0.039193,-0.039193 +-0.04313,-0.04313,-0.04313,-0.04313,-0.04313,-0.04313 +-0.047286,-0.047286,-0.047286,-0.047286,-0.047286,-0.047286 +-0.051661,-0.051661,-0.051661,-0.051661,-0.051661,-0.051661 +-0.056255,-0.056255,-0.056255,-0.056255,-0.056255,-0.056255 +-0.061068,-0.061068,-0.061068,-0.061068,-0.061068,-0.061068 +-0.066099,-0.066099,-0.066099,-0.066099,-0.066099,-0.066099 +-0.071349,-0.071349,-0.071349,-0.071349,-0.071349,-0.071349 +-0.076818,-0.076818,-0.076818,-0.076818,-0.076818,-0.076818 +-0.082505,-0.082505,-0.082505,-0.082505,-0.082505,-0.082505 +-0.088411,-0.088411,-0.088411,-0.088411,-0.088411,-0.088411 +-0.094536,-0.094536,-0.094536,-0.094536,-0.094536,-0.094536 +-0.10088,-0.10088,-0.10088,-0.10088,-0.10088,-0.10088 +-0.107443,-0.107443,-0.107443,-0.107443,-0.107443,-0.107443 +-0.114224,-0.114224,-0.114224,-0.114224,-0.114224,-0.114224 +-0.121224,-0.121224,-0.121224,-0.121224,-0.121224,-0.121224 +-0.128443,-0.128443,-0.128443,-0.128443,-0.128443,-0.128443 +-0.13588,-0.13588,-0.13588,-0.13588,-0.13588,-0.13588 +-0.143536,-0.143536,-0.143536,-0.143536,-0.143536,-0.143536 +-0.151411,-0.151411,-0.151411,-0.151411,-0.151411,-0.151411 +-0.159505,-0.159505,-0.159505,-0.159505,-0.159505,-0.159505 +-0.167818,-0.167818,-0.167818,-0.167818,-0.167818,-0.167818 +-0.176349,-0.176349,-0.176349,-0.176349,-0.176349,-0.176349 +-0.185099,-0.185099,-0.185099,-0.185099,-0.185099,-0.185099 +-0.194068,-0.194068,-0.194068,-0.194068,-0.194068,-0.194068 +-0.203255,-0.203255,-0.203255,-0.203255,-0.203255,-0.203255 +-0.212661,-0.212661,-0.212661,-0.212661,-0.212661,-0.212661 +-0.222286,-0.222286,-0.222286,-0.222286,-0.222286,-0.222286 +-0.23213,-0.23213,-0.23213,-0.23213,-0.23213,-0.23213 +-0.242193,-0.242193,-0.242193,-0.242193,-0.242193,-0.242193 +-0.252474,-0.252474,-0.252474,-0.252474,-0.252474,-0.252474 +-0.262974,-0.262974,-0.262974,-0.262974,-0.262974,-0.262974 +-0.273693,-0.273693,-0.273693,-0.273693,-0.273693,-0.273693 +-0.28463,-0.28463,-0.28463,-0.28463,-0.28463,-0.28463 +-0.295786,-0.295786,-0.295786,-0.295786,-0.295786,-0.295786 +-0.307161,-0.307161,-0.307161,-0.307161,-0.307161,-0.307161 +-0.318755,-0.318755,-0.318755,-0.318755,-0.318755,-0.318755 +-0.330568,-0.330568,-0.330568,-0.330568,-0.330568,-0.330568 +-0.342599,-0.342599,-0.342599,-0.342599,-0.342599,-0.342599 +-0.354849,-0.354849,-0.354849,-0.354849,-0.354849,-0.354849 +-0.367318,-0.367318,-0.367318,-0.367318,-0.367318,-0.367318 +-0.380005,-0.380005,-0.380005,-0.380005,-0.380005,-0.380005 +-0.392911,-0.392911,-0.392911,-0.392911,-0.392911,-0.392911 +-0.406031,-0.406031,-0.406031,-0.406031,-0.406031,-0.406031 +-0.419355,-0.419355,-0.419355,-0.419355,-0.419355,-0.419355 +-0.432876,-0.432876,-0.432876,-0.432876,-0.432876,-0.432876 +-0.446585,-0.446585,-0.446585,-0.446585,-0.446585,-0.446585 +-0.460472,-0.460472,-0.460472,-0.460472,-0.460472,-0.460472 +-0.474529,-0.474529,-0.474529,-0.474529,-0.474529,-0.474529 +-0.488747,-0.488747,-0.488747,-0.488747,-0.488747,-0.488747 +-0.503118,-0.503118,-0.503118,-0.503118,-0.503118,-0.503118 +-0.517633,-0.517633,-0.517633,-0.517633,-0.517633,-0.517633 +-0.532282,-0.532282,-0.532282,-0.532282,-0.532282,-0.532282 +-0.547058,-0.547058,-0.547058,-0.547058,-0.547058,-0.547058 +-0.561952,-0.561952,-0.561952,-0.561952,-0.561952,-0.561952 +-0.576954,-0.576954,-0.576954,-0.576954,-0.576954,-0.576954 +-0.592056,-0.592056,-0.592056,-0.592056,-0.592056,-0.592056 +-0.607249,-0.607249,-0.607249,-0.607249,-0.607249,-0.607249 +-0.622525,-0.622525,-0.622525,-0.622525,-0.622525,-0.622525 +-0.637875,-0.637875,-0.637875,-0.637875,-0.637875,-0.637875 +-0.653289,-0.653289,-0.653289,-0.653289,-0.653289,-0.653289 +-0.66876,-0.66876,-0.66876,-0.66876,-0.66876,-0.66876 +-0.684278,-0.684278,-0.684278,-0.684278,-0.684278,-0.684278 +-0.699836,-0.699836,-0.699836,-0.699836,-0.699836,-0.699836 +-0.715423,-0.715423,-0.715423,-0.715423,-0.715423,-0.715423 +-0.731031,-0.731031,-0.731031,-0.731031,-0.731031,-0.731031 +-0.746652,-0.746652,-0.746652,-0.746652,-0.746652,-0.746652 +-0.762277,-0.762277,-0.762277,-0.762277,-0.762277,-0.762277 +-0.777902,-0.777902,-0.777902,-0.777902,-0.777902,-0.777902 +-0.793527,-0.793527,-0.793527,-0.793527,-0.793527,-0.793527 +-0.809152,-0.809152,-0.809152,-0.809152,-0.809152,-0.809152 +-0.824777,-0.824777,-0.824777,-0.824777,-0.824777,-0.824777 +-0.840402,-0.840402,-0.840402,-0.840402,-0.840402,-0.840402 +-0.856027,-0.856027,-0.856027,-0.856027,-0.856027,-0.856027 +-0.871652,-0.871652,-0.871652,-0.871652,-0.871652,-0.871652 +-0.887277,-0.887277,-0.887277,-0.887277,-0.887277,-0.887277 +-0.902902,-0.902902,-0.902902,-0.902902,-0.902902,-0.902902 +-0.918527,-0.918527,-0.918527,-0.918527,-0.918527,-0.918527 +-0.934152,-0.934152,-0.934152,-0.934152,-0.934152,-0.934152 +-0.949777,-0.949777,-0.949777,-0.949777,-0.949777,-0.949777 +-0.965402,-0.965402,-0.965402,-0.965402,-0.965402,-0.965402 +-0.981027,-0.981027,-0.981027,-0.981027,-0.981027,-0.981027 +-0.996652,-0.996652,-0.996652,-0.996652,-0.996652,-0.996652 +-1.012274,-1.012274,-1.012274,-1.012274,-1.012274,-1.012274 +-1.027884,-1.027884,-1.027884,-1.027884,-1.027884,-1.027884 +-1.043474,-1.043474,-1.043474,-1.043474,-1.043474,-1.043474 +-1.059036,-1.059036,-1.059036,-1.059036,-1.059036,-1.059036 +-1.07456,-1.07456,-1.07456,-1.07456,-1.07456,-1.07456 +-1.090037,-1.090037,-1.090037,-1.090037,-1.090037,-1.090037 +-1.105459,-1.105459,-1.105459,-1.105459,-1.105459,-1.105459 +-1.120818,-1.120818,-1.120818,-1.120818,-1.120818,-1.120818 +-1.136103,-1.136103,-1.136103,-1.136103,-1.136103,-1.136103 +-1.151308,-1.151308,-1.151308,-1.151308,-1.151308,-1.151308 +-1.166422,-1.166422,-1.166422,-1.166422,-1.166422,-1.166422 +-1.181437,-1.181437,-1.181437,-1.181437,-1.181437,-1.181437 +-1.196345,-1.196345,-1.196345,-1.196345,-1.196345,-1.196345 +-1.211137,-1.211137,-1.211137,-1.211137,-1.211137,-1.211137 +-1.225803,-1.225803,-1.225803,-1.225803,-1.225803,-1.225803 +-1.240335,-1.240335,-1.240335,-1.240335,-1.240335,-1.240335 +-1.254725,-1.254725,-1.254725,-1.254725,-1.254725,-1.254725 +-1.268963,-1.268963,-1.268963,-1.268963,-1.268963,-1.268963 +-1.283041,-1.283041,-1.283041,-1.283041,-1.283041,-1.283041 +-1.296951,-1.296951,-1.296951,-1.296951,-1.296951,-1.296951 +-1.310682,-1.310682,-1.310682,-1.310682,-1.310682,-1.310682 +-1.324228,-1.324228,-1.324228,-1.324228,-1.324228,-1.324228 +-1.337578,-1.337578,-1.337578,-1.337578,-1.337578,-1.337578 +-1.350724,-1.350724,-1.350724,-1.350724,-1.350724,-1.350724 +-1.363658,-1.363658,-1.363658,-1.363658,-1.363658,-1.363658 +-1.376373,-1.376373,-1.376373,-1.376373,-1.376373,-1.376373 +-1.38887,-1.38887,-1.38887,-1.38887,-1.38887,-1.38887 +-1.401148,-1.401148,-1.401148,-1.401148,-1.401148,-1.401148 +-1.413207,-1.413207,-1.413207,-1.413207,-1.413207,-1.413207 +-1.425048,-1.425048,-1.425048,-1.425048,-1.425048,-1.425048 +-1.436669,-1.436669,-1.436669,-1.436669,-1.436669,-1.436669 +-1.448072,-1.448072,-1.448072,-1.448072,-1.448072,-1.448072 +-1.459257,-1.459257,-1.459257,-1.459257,-1.459257,-1.459257 +-1.470222,-1.470222,-1.470222,-1.470222,-1.470222,-1.470222 +-1.480969,-1.480969,-1.480969,-1.480969,-1.480969,-1.480969 +-1.491497,-1.491497,-1.491497,-1.491497,-1.491497,-1.491497 +-1.501806,-1.501806,-1.501806,-1.501806,-1.501806,-1.501806 +-1.511896,-1.511896,-1.511896,-1.511896,-1.511896,-1.511896 +-1.521768,-1.521768,-1.521768,-1.521768,-1.521768,-1.521768 +-1.531421,-1.531421,-1.531421,-1.531421,-1.531421,-1.531421 +-1.540855,-1.540855,-1.540855,-1.540855,-1.540855,-1.540855 +-1.550071,-1.550071,-1.550071,-1.550071,-1.550071,-1.550071 +-1.559067,-1.559067,-1.559067,-1.559067,-1.559067,-1.559067 +-1.567845,-1.567845,-1.567845,-1.567845,-1.567845,-1.567845 +-1.576404,-1.576404,-1.576404,-1.576404,-1.576404,-1.576404 +-1.584745,-1.584745,-1.584745,-1.584745,-1.584745,-1.584745 +-1.592867,-1.592867,-1.592867,-1.592867,-1.592867,-1.592867 +-1.60077,-1.60077,-1.60077,-1.60077,-1.60077,-1.60077 +-1.608454,-1.608454,-1.608454,-1.608454,-1.608454,-1.608454 +-1.615919,-1.615919,-1.615919,-1.615919,-1.615919,-1.615919 +-1.623166,-1.623166,-1.623166,-1.623166,-1.623166,-1.623166 +-1.630194,-1.630194,-1.630194,-1.630194,-1.630194,-1.630194 +-1.637003,-1.637003,-1.637003,-1.637003,-1.637003,-1.637003 +-1.643593,-1.643593,-1.643593,-1.643593,-1.643593,-1.643593 +-1.649965,-1.649965,-1.649965,-1.649965,-1.649965,-1.649965 +-1.656118,-1.656118,-1.656118,-1.656118,-1.656118,-1.656118 +-1.662052,-1.662052,-1.662052,-1.662052,-1.662052,-1.662052 +-1.667768,-1.667768,-1.667768,-1.667768,-1.667768,-1.667768 +-1.673264,-1.673264,-1.673264,-1.673264,-1.673264,-1.673264 +-1.678542,-1.678542,-1.678542,-1.678542,-1.678542,-1.678542 +-1.683602,-1.683602,-1.683602,-1.683602,-1.683602,-1.683602 +-1.688442,-1.688442,-1.688442,-1.688442,-1.688442,-1.688442 +-1.693064,-1.693064,-1.693064,-1.693064,-1.693064,-1.693064 +-1.697467,-1.697467,-1.697467,-1.697467,-1.697467,-1.697467 +-1.701651,-1.701651,-1.701651,-1.701651,-1.701651,-1.701651 +-1.705616,-1.705616,-1.705616,-1.705616,-1.705616,-1.705616 +-1.709363,-1.709363,-1.709363,-1.709363,-1.709363,-1.709363 +-1.712891,-1.712891,-1.712891,-1.712891,-1.712891,-1.712891 +-1.7162,-1.7162,-1.7162,-1.7162,-1.7162,-1.7162 +-1.719291,-1.719291,-1.719291,-1.719291,-1.719291,-1.719291 +-1.722162,-1.722162,-1.722162,-1.722162,-1.722162,-1.722162 +-1.724816,-1.724816,-1.724816,-1.724816,-1.724816,-1.724816 +-1.727259,-1.727259,-1.727259,-1.727259,-1.727259,-1.727259 +-1.7295,-1.7295,-1.7295,-1.7295,-1.7295,-1.7295 +-1.731546,-1.731546,-1.731546,-1.731546,-1.731546,-1.731546 +-1.733408,-1.733408,-1.733408,-1.733408,-1.733408,-1.733408 +-1.735094,-1.735094,-1.735094,-1.735094,-1.735094,-1.735094 +-1.736613,-1.736613,-1.736613,-1.736613,-1.736613,-1.736613 +-1.737972,-1.737972,-1.737972,-1.737972,-1.737972,-1.737972 +-1.739182,-1.739182,-1.739182,-1.739182,-1.739182,-1.739182 +-1.740251,-1.740251,-1.740251,-1.740251,-1.740251,-1.740251 +-1.741188,-1.741188,-1.741188,-1.741188,-1.741188,-1.741188 +-1.742001,-1.742001,-1.742001,-1.742001,-1.742001,-1.742001 +-1.742699,-1.742699,-1.742699,-1.742699,-1.742699,-1.742699 +-1.743291,-1.743291,-1.743291,-1.743291,-1.743291,-1.743291 +-1.743785,-1.743785,-1.743785,-1.743785,-1.743785,-1.743785 +-1.744191,-1.744191,-1.744191,-1.744191,-1.744191,-1.744191 +-1.744517,-1.744517,-1.744517,-1.744517,-1.744517,-1.744517 +-1.744772,-1.744772,-1.744772,-1.744772,-1.744772,-1.744772 +-1.744964,-1.744964,-1.744964,-1.744964,-1.744964,-1.744964 +-1.745103,-1.745103,-1.745103,-1.745103,-1.745103,-1.745103 +-1.745197,-1.745197,-1.745197,-1.745197,-1.745197,-1.745197 +-1.745255,-1.745255,-1.745255,-1.745255,-1.745255,-1.745255 +-1.745286,-1.745286,-1.745286,-1.745286,-1.745286,-1.745286 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.745288,-1.745288,-1.745288,-1.745288,-1.745288,-1.745288 +-1.745261,-1.745261,-1.745261,-1.745261,-1.745261,-1.745261 +-1.745207,-1.745207,-1.745207,-1.745207,-1.745207,-1.745207 +-1.745118,-1.745118,-1.745118,-1.745118,-1.745118,-1.745118 +-1.744985,-1.744985,-1.744985,-1.744985,-1.744985,-1.744985 +-1.7448,-1.7448,-1.7448,-1.7448,-1.7448,-1.7448 +-1.744553,-1.744553,-1.744553,-1.744553,-1.744553,-1.744553 +-1.744237,-1.744237,-1.744237,-1.744237,-1.744237,-1.744237 +-1.743842,-1.743842,-1.743842,-1.743842,-1.743842,-1.743842 +-1.743359,-1.743359,-1.743359,-1.743359,-1.743359,-1.743359 +-1.74278,-1.74278,-1.74278,-1.74278,-1.74278,-1.74278 +-1.742096,-1.742096,-1.742096,-1.742096,-1.742096,-1.742096 +-1.741298,-1.741298,-1.741298,-1.741298,-1.741298,-1.741298 +-1.740378,-1.740378,-1.740378,-1.740378,-1.740378,-1.740378 +-1.739327,-1.739327,-1.739327,-1.739327,-1.739327,-1.739327 +-1.738135,-1.738135,-1.738135,-1.738135,-1.738135,-1.738135 +-1.736795,-1.736795,-1.736795,-1.736795,-1.736795,-1.736795 +-1.735297,-1.735297,-1.735297,-1.735297,-1.735297,-1.735297 +-1.733633,-1.733633,-1.733633,-1.733633,-1.733633,-1.733633 +-1.731794,-1.731794,-1.731794,-1.731794,-1.731794,-1.731794 +-1.729772,-1.729772,-1.729772,-1.729772,-1.729772,-1.729772 +-1.727556,-1.727556,-1.727556,-1.727556,-1.727556,-1.727556 +-1.72514,-1.72514,-1.72514,-1.72514,-1.72514,-1.72514 +-1.722514,-1.722514,-1.722514,-1.722514,-1.722514,-1.722514 +-1.71967,-1.71967,-1.71967,-1.71967,-1.71967,-1.71967 +-1.716607,-1.716607,-1.716607,-1.716607,-1.716607,-1.716607 +-1.713326,-1.713326,-1.713326,-1.713326,-1.713326,-1.713326 +-1.709826,-1.709826,-1.709826,-1.709826,-1.709826,-1.709826 +-1.706107,-1.706107,-1.706107,-1.706107,-1.706107,-1.706107 +-1.70217,-1.70217,-1.70217,-1.70217,-1.70217,-1.70217 +-1.698014,-1.698014,-1.698014,-1.698014,-1.698014,-1.698014 +-1.693639,-1.693639,-1.693639,-1.693639,-1.693639,-1.693639 +-1.689045,-1.689045,-1.689045,-1.689045,-1.689045,-1.689045 +-1.684232,-1.684232,-1.684232,-1.684232,-1.684232,-1.684232 +-1.679201,-1.679201,-1.679201,-1.679201,-1.679201,-1.679201 +-1.673951,-1.673951,-1.673951,-1.673951,-1.673951,-1.673951 +-1.668482,-1.668482,-1.668482,-1.668482,-1.668482,-1.668482 +-1.662795,-1.662795,-1.662795,-1.662795,-1.662795,-1.662795 +-1.656889,-1.656889,-1.656889,-1.656889,-1.656889,-1.656889 +-1.650764,-1.650764,-1.650764,-1.650764,-1.650764,-1.650764 +-1.64442,-1.64442,-1.64442,-1.64442,-1.64442,-1.64442 +-1.637857,-1.637857,-1.637857,-1.637857,-1.637857,-1.637857 +-1.631076,-1.631076,-1.631076,-1.631076,-1.631076,-1.631076 +-1.624076,-1.624076,-1.624076,-1.624076,-1.624076,-1.624076 +-1.616857,-1.616857,-1.616857,-1.616857,-1.616857,-1.616857 +-1.60942,-1.60942,-1.60942,-1.60942,-1.60942,-1.60942 +-1.601764,-1.601764,-1.601764,-1.601764,-1.601764,-1.601764 +-1.593889,-1.593889,-1.593889,-1.593889,-1.593889,-1.593889 +-1.585795,-1.585795,-1.585795,-1.585795,-1.585795,-1.585795 +-1.577482,-1.577482,-1.577482,-1.577482,-1.577482,-1.577482 +-1.568951,-1.568951,-1.568951,-1.568951,-1.568951,-1.568951 +-1.560201,-1.560201,-1.560201,-1.560201,-1.560201,-1.560201 +-1.551232,-1.551232,-1.551232,-1.551232,-1.551232,-1.551232 +-1.542045,-1.542045,-1.542045,-1.542045,-1.542045,-1.542045 +-1.532639,-1.532639,-1.532639,-1.532639,-1.532639,-1.532639 +-1.523014,-1.523014,-1.523014,-1.523014,-1.523014,-1.523014 +-1.51317,-1.51317,-1.51317,-1.51317,-1.51317,-1.51317 +-1.503107,-1.503107,-1.503107,-1.503107,-1.503107,-1.503107 +-1.492826,-1.492826,-1.492826,-1.492826,-1.492826,-1.492826 +-1.482326,-1.482326,-1.482326,-1.482326,-1.482326,-1.482326 +-1.471607,-1.471607,-1.471607,-1.471607,-1.471607,-1.471607 +-1.46067,-1.46067,-1.46067,-1.46067,-1.46067,-1.46067 +-1.449514,-1.449514,-1.449514,-1.449514,-1.449514,-1.449514 +-1.438139,-1.438139,-1.438139,-1.438139,-1.438139,-1.438139 +-1.426545,-1.426545,-1.426545,-1.426545,-1.426545,-1.426545 +-1.414732,-1.414732,-1.414732,-1.414732,-1.414732,-1.414732 +-1.402701,-1.402701,-1.402701,-1.402701,-1.402701,-1.402701 +-1.390451,-1.390451,-1.390451,-1.390451,-1.390451,-1.390451 +-1.377982,-1.377982,-1.377982,-1.377982,-1.377982,-1.377982 +-1.365295,-1.365295,-1.365295,-1.365295,-1.365295,-1.365295 +-1.352389,-1.352389,-1.352389,-1.352389,-1.352389,-1.352389 +-1.339269,-1.339269,-1.339269,-1.339269,-1.339269,-1.339269 +-1.325945,-1.325945,-1.325945,-1.325945,-1.325945,-1.325945 +-1.312424,-1.312424,-1.312424,-1.312424,-1.312424,-1.312424 +-1.298715,-1.298715,-1.298715,-1.298715,-1.298715,-1.298715 +-1.284828,-1.284828,-1.284828,-1.284828,-1.284828,-1.284828 +-1.270771,-1.270771,-1.270771,-1.270771,-1.270771,-1.270771 +-1.256553,-1.256553,-1.256553,-1.256553,-1.256553,-1.256553 +-1.242182,-1.242182,-1.242182,-1.242182,-1.242182,-1.242182 +-1.227667,-1.227667,-1.227667,-1.227667,-1.227667,-1.227667 +-1.213018,-1.213018,-1.213018,-1.213018,-1.213018,-1.213018 +-1.198242,-1.198242,-1.198242,-1.198242,-1.198242,-1.198242 +-1.183348,-1.183348,-1.183348,-1.183348,-1.183348,-1.183348 +-1.168346,-1.168346,-1.168346,-1.168346,-1.168346,-1.168346 +-1.153244,-1.153244,-1.153244,-1.153244,-1.153244,-1.153244 +-1.138051,-1.138051,-1.138051,-1.138051,-1.138051,-1.138051 +-1.122775,-1.122775,-1.122775,-1.122775,-1.122775,-1.122775 +-1.107425,-1.107425,-1.107425,-1.107425,-1.107425,-1.107425 +-1.092011,-1.092011,-1.092011,-1.092011,-1.092011,-1.092011 +-1.07654,-1.07654,-1.07654,-1.07654,-1.07654,-1.07654 +-1.061022,-1.061022,-1.061022,-1.061022,-1.061022,-1.061022 +-1.045464,-1.045464,-1.045464,-1.045464,-1.045464,-1.045464 +-1.029877,-1.029877,-1.029877,-1.029877,-1.029877,-1.029877 +-1.014269,-1.014269,-1.014269,-1.014269,-1.014269,-1.014269 +-0.998648,-0.998648,-0.998648,-0.998648,-0.998648,-0.998648 +-0.983023,-0.983023,-0.983023,-0.983023,-0.983023,-0.983023 +-0.967398,-0.967398,-0.967398,-0.967398,-0.967398,-0.967398 +-0.951773,-0.951773,-0.951773,-0.951773,-0.951773,-0.951773 +-0.936148,-0.936148,-0.936148,-0.936148,-0.936148,-0.936148 +-0.920523,-0.920523,-0.920523,-0.920523,-0.920523,-0.920523 +-0.904898,-0.904898,-0.904898,-0.904898,-0.904898,-0.904898 +-0.889273,-0.889273,-0.889273,-0.889273,-0.889273,-0.889273 +-0.873648,-0.873648,-0.873648,-0.873648,-0.873648,-0.873648 +-0.858023,-0.858023,-0.858023,-0.858023,-0.858023,-0.858023 +-0.842398,-0.842398,-0.842398,-0.842398,-0.842398,-0.842398 +-0.826773,-0.826773,-0.826773,-0.826773,-0.826773,-0.826773 +-0.811148,-0.811148,-0.811148,-0.811148,-0.811148,-0.811148 +-0.795523,-0.795523,-0.795523,-0.795523,-0.795523,-0.795523 +-0.779898,-0.779898,-0.779898,-0.779898,-0.779898,-0.779898 +-0.764273,-0.764273,-0.764273,-0.764273,-0.764273,-0.764273 +-0.748648,-0.748648,-0.748648,-0.748648,-0.748648,-0.748648 +-0.733026,-0.733026,-0.733026,-0.733026,-0.733026,-0.733026 +-0.717416,-0.717416,-0.717416,-0.717416,-0.717416,-0.717416 +-0.701826,-0.701826,-0.701826,-0.701826,-0.701826,-0.701826 +-0.686264,-0.686264,-0.686264,-0.686264,-0.686264,-0.686264 +-0.67074,-0.67074,-0.67074,-0.67074,-0.67074,-0.67074 +-0.655263,-0.655263,-0.655263,-0.655263,-0.655263,-0.655263 +-0.639841,-0.639841,-0.639841,-0.639841,-0.639841,-0.639841 +-0.624482,-0.624482,-0.624482,-0.624482,-0.624482,-0.624482 +-0.609197,-0.609197,-0.609197,-0.609197,-0.609197,-0.609197 +-0.593992,-0.593992,-0.593992,-0.593992,-0.593992,-0.593992 +-0.578878,-0.578878,-0.578878,-0.578878,-0.578878,-0.578878 +-0.563863,-0.563863,-0.563863,-0.563863,-0.563863,-0.563863 +-0.548955,-0.548955,-0.548955,-0.548955,-0.548955,-0.548955 +-0.534163,-0.534163,-0.534163,-0.534163,-0.534163,-0.534163 +-0.519497,-0.519497,-0.519497,-0.519497,-0.519497,-0.519497 +-0.504965,-0.504965,-0.504965,-0.504965,-0.504965,-0.504965 +-0.490575,-0.490575,-0.490575,-0.490575,-0.490575,-0.490575 +-0.476337,-0.476337,-0.476337,-0.476337,-0.476337,-0.476337 +-0.462259,-0.462259,-0.462259,-0.462259,-0.462259,-0.462259 +-0.448349,-0.448349,-0.448349,-0.448349,-0.448349,-0.448349 +-0.434618,-0.434618,-0.434618,-0.434618,-0.434618,-0.434618 +-0.421072,-0.421072,-0.421072,-0.421072,-0.421072,-0.421072 +-0.407722,-0.407722,-0.407722,-0.407722,-0.407722,-0.407722 +-0.394576,-0.394576,-0.394576,-0.394576,-0.394576,-0.394576 +-0.381642,-0.381642,-0.381642,-0.381642,-0.381642,-0.381642 +-0.368927,-0.368927,-0.368927,-0.368927,-0.368927,-0.368927 +-0.35643,-0.35643,-0.35643,-0.35643,-0.35643,-0.35643 +-0.344152,-0.344152,-0.344152,-0.344152,-0.344152,-0.344152 +-0.332093,-0.332093,-0.332093,-0.332093,-0.332093,-0.332093 +-0.320252,-0.320252,-0.320252,-0.320252,-0.320252,-0.320252 +-0.308631,-0.308631,-0.308631,-0.308631,-0.308631,-0.308631 +-0.297228,-0.297228,-0.297228,-0.297228,-0.297228,-0.297228 +-0.286043,-0.286043,-0.286043,-0.286043,-0.286043,-0.286043 +-0.275078,-0.275078,-0.275078,-0.275078,-0.275078,-0.275078 +-0.264331,-0.264331,-0.264331,-0.264331,-0.264331,-0.264331 +-0.253803,-0.253803,-0.253803,-0.253803,-0.253803,-0.253803 +-0.243494,-0.243494,-0.243494,-0.243494,-0.243494,-0.243494 +-0.233404,-0.233404,-0.233404,-0.233404,-0.233404,-0.233404 +-0.223532,-0.223532,-0.223532,-0.223532,-0.223532,-0.223532 +-0.213879,-0.213879,-0.213879,-0.213879,-0.213879,-0.213879 +-0.204445,-0.204445,-0.204445,-0.204445,-0.204445,-0.204445 +-0.195229,-0.195229,-0.195229,-0.195229,-0.195229,-0.195229 +-0.186233,-0.186233,-0.186233,-0.186233,-0.186233,-0.186233 +-0.177455,-0.177455,-0.177455,-0.177455,-0.177455,-0.177455 +-0.168896,-0.168896,-0.168896,-0.168896,-0.168896,-0.168896 +-0.160555,-0.160555,-0.160555,-0.160555,-0.160555,-0.160555 +-0.152433,-0.152433,-0.152433,-0.152433,-0.152433,-0.152433 +-0.14453,-0.14453,-0.14453,-0.14453,-0.14453,-0.14453 +-0.136846,-0.136846,-0.136846,-0.136846,-0.136846,-0.136846 +-0.129381,-0.129381,-0.129381,-0.129381,-0.129381,-0.129381 +-0.122134,-0.122134,-0.122134,-0.122134,-0.122134,-0.122134 +-0.115106,-0.115106,-0.115106,-0.115106,-0.115106,-0.115106 +-0.108297,-0.108297,-0.108297,-0.108297,-0.108297,-0.108297 +-0.101707,-0.101707,-0.101707,-0.101707,-0.101707,-0.101707 +-0.095335,-0.095335,-0.095335,-0.095335,-0.095335,-0.095335 +-0.089182,-0.089182,-0.089182,-0.089182,-0.089182,-0.089182 +-0.083248,-0.083248,-0.083248,-0.083248,-0.083248,-0.083248 +-0.077532,-0.077532,-0.077532,-0.077532,-0.077532,-0.077532 +-0.072036,-0.072036,-0.072036,-0.072036,-0.072036,-0.072036 +-0.066758,-0.066758,-0.066758,-0.066758,-0.066758,-0.066758 +-0.061698,-0.061698,-0.061698,-0.061698,-0.061698,-0.061698 +-0.056858,-0.056858,-0.056858,-0.056858,-0.056858,-0.056858 +-0.052236,-0.052236,-0.052236,-0.052236,-0.052236,-0.052236 +-0.047833,-0.047833,-0.047833,-0.047833,-0.047833,-0.047833 +-0.043649,-0.043649,-0.043649,-0.043649,-0.043649,-0.043649 +-0.039684,-0.039684,-0.039684,-0.039684,-0.039684,-0.039684 +-0.035937,-0.035937,-0.035937,-0.035937,-0.035937,-0.035937 +-0.032409,-0.032409,-0.032409,-0.032409,-0.032409,-0.032409 +-0.0291,-0.0291,-0.0291,-0.0291,-0.0291,-0.0291 +-0.026009,-0.026009,-0.026009,-0.026009,-0.026009,-0.026009 +-0.023138,-0.023138,-0.023138,-0.023138,-0.023138,-0.023138 +-0.020484,-0.020484,-0.020484,-0.020484,-0.020484,-0.020484 +-0.018041,-0.018041,-0.018041,-0.018041,-0.018041,-0.018041 +-0.0158,-0.0158,-0.0158,-0.0158,-0.0158,-0.0158 +-0.013754,-0.013754,-0.013754,-0.013754,-0.013754,-0.013754 +-0.011892,-0.011892,-0.011892,-0.011892,-0.011892,-0.011892 +-0.010206,-0.010206,-0.010206,-0.010206,-0.010206,-0.010206 +-0.008687,-0.008687,-0.008687,-0.008687,-0.008687,-0.008687 +-0.007328,-0.007328,-0.007328,-0.007328,-0.007328,-0.007328 +-0.006118,-0.006118,-0.006118,-0.006118,-0.006118,-0.006118 +-0.005049,-0.005049,-0.005049,-0.005049,-0.005049,-0.005049 +-0.004112,-0.004112,-0.004112,-0.004112,-0.004112,-0.004112 +-0.003299,-0.003299,-0.003299,-0.003299,-0.003299,-0.003299 +-0.002601,-0.002601,-0.002601,-0.002601,-0.002601,-0.002601 +-0.002009,-0.002009,-0.002009,-0.002009,-0.002009,-0.002009 +-0.001515,-0.001515,-0.001515,-0.001515,-0.001515,-0.001515 +-0.001109,-0.001109,-0.001109,-0.001109,-0.001109,-0.001109 +-0.000783,-0.000783,-0.000783,-0.000783,-0.000783,-0.000783 +-0.000528,-0.000528,-0.000528,-0.000528,-0.000528,-0.000528 +-0.000336,-0.000336,-0.000336,-0.000336,-0.000336,-0.000336 +-0.000197,-0.000197,-0.000197,-0.000197,-0.000197,-0.000197 +-0.000103,-0.000103,-0.000103,-0.000103,-0.000103,-0.000103 +-0.000045,-0.000045,-0.000045,-0.000045,-0.000045,-0.000045 +-0.000014,-0.000014,-0.000014,-0.000014,-0.000014,-0.000014 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000013,0.000013,0.000013,0.000013,0.000013,0.000013 +0.000045,0.000045,0.000045,0.000045,0.000045,0.000045 +0.000107,0.000107,0.000107,0.000107,0.000107,0.000107 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.00036,0.00036,0.00036,0.00036,0.00036,0.00036 +0.000572,0.000572,0.000572,0.000572,0.000572,0.000572 +0.000853,0.000853,0.000853,0.000853,0.000853,0.000853 +0.001215,0.001215,0.001215,0.001215,0.001215,0.001215 +0.001667,0.001667,0.001667,0.001667,0.001667,0.001667 +0.002218,0.002218,0.002218,0.002218,0.002218,0.002218 +0.00288,0.00288,0.00288,0.00288,0.00288,0.00288 +0.003662,0.003662,0.003662,0.003662,0.003662,0.003662 +0.004573,0.004573,0.004573,0.004573,0.004573,0.004573 +0.005625,0.005625,0.005625,0.005625,0.005625,0.005625 +0.006827,0.006827,0.006827,0.006827,0.006827,0.006827 +0.008188,0.008188,0.008188,0.008188,0.008188,0.008188 +0.00972,0.00972,0.00972,0.00972,0.00972,0.00972 +0.011432,0.011432,0.011432,0.011432,0.011432,0.011432 +0.013333,0.013333,0.013333,0.013333,0.013333,0.013333 +0.015435,0.015435,0.015435,0.015435,0.015435,0.015435 +0.017747,0.017747,0.017747,0.017747,0.017747,0.017747 +0.020278,0.020278,0.020278,0.020278,0.020278,0.020278 +0.02304,0.02304,0.02304,0.02304,0.02304,0.02304 +0.026042,0.026042,0.026042,0.026042,0.026042,0.026042 +0.029292,0.029292,0.029292,0.029292,0.029292,0.029292 +0.032792,0.032792,0.032792,0.032792,0.032792,0.032792 +0.036542,0.036542,0.036542,0.036542,0.036542,0.036542 +0.040542,0.040542,0.040542,0.040542,0.040542,0.040542 +0.044792,0.044792,0.044792,0.044792,0.044792,0.044792 +0.049292,0.049292,0.049292,0.049292,0.049292,0.049292 +0.054042,0.054042,0.054042,0.054042,0.054042,0.054042 +0.059042,0.059042,0.059042,0.059042,0.059042,0.059042 +0.064292,0.064292,0.064292,0.064292,0.064292,0.064292 +0.069792,0.069792,0.069792,0.069792,0.069792,0.069792 +0.075542,0.075542,0.075542,0.075542,0.075542,0.075542 +0.081542,0.081542,0.081542,0.081542,0.081542,0.081542 +0.087792,0.087792,0.087792,0.087792,0.087792,0.087792 +0.094292,0.094292,0.094292,0.094292,0.094292,0.094292 +0.101042,0.101042,0.101042,0.101042,0.101042,0.101042 +0.108042,0.108042,0.108042,0.108042,0.108042,0.108042 +0.115292,0.115292,0.115292,0.115292,0.115292,0.115292 +0.122792,0.122792,0.122792,0.122792,0.122792,0.122792 +0.130542,0.130542,0.130542,0.130542,0.130542,0.130542 +0.138542,0.138542,0.138542,0.138542,0.138542,0.138542 +0.146792,0.146792,0.146792,0.146792,0.146792,0.146792 +0.155292,0.155292,0.155292,0.155292,0.155292,0.155292 +0.164042,0.164042,0.164042,0.164042,0.164042,0.164042 +0.173042,0.173042,0.173042,0.173042,0.173042,0.173042 +0.182292,0.182292,0.182292,0.182292,0.182292,0.182292 +0.191792,0.191792,0.191792,0.191792,0.191792,0.191792 +0.201542,0.201542,0.201542,0.201542,0.201542,0.201542 +0.211542,0.211542,0.211542,0.211542,0.211542,0.211542 +0.221792,0.221792,0.221792,0.221792,0.221792,0.221792 +0.232292,0.232292,0.232292,0.232292,0.232292,0.232292 +0.243042,0.243042,0.243042,0.243042,0.243042,0.243042 +0.254042,0.254042,0.254042,0.254042,0.254042,0.254042 +0.265292,0.265292,0.265292,0.265292,0.265292,0.265292 +0.276792,0.276792,0.276792,0.276792,0.276792,0.276792 +0.288542,0.288542,0.288542,0.288542,0.288542,0.288542 +0.300542,0.300542,0.300542,0.300542,0.300542,0.300542 +0.312792,0.312792,0.312792,0.312792,0.312792,0.312792 +0.325291,0.325291,0.325291,0.325291,0.325291,0.325291 +0.338036,0.338036,0.338036,0.338036,0.338036,0.338036 +0.351016,0.351016,0.351016,0.351016,0.351016,0.351016 +0.36422,0.36422,0.36422,0.36422,0.36422,0.36422 +0.37764,0.37764,0.37764,0.37764,0.37764,0.37764 +0.391264,0.391264,0.391264,0.391264,0.391264,0.391264 +0.405084,0.405084,0.405084,0.405084,0.405084,0.405084 +0.419089,0.419089,0.419089,0.419089,0.419089,0.419089 +0.433268,0.433268,0.433268,0.433268,0.433268,0.433268 +0.447613,0.447613,0.447613,0.447613,0.447613,0.447613 +0.462112,0.462112,0.462112,0.462112,0.462112,0.462112 +0.476757,0.476757,0.476757,0.476757,0.476757,0.476757 +0.491536,0.491536,0.491536,0.491536,0.491536,0.491536 +0.506441,0.506441,0.506441,0.506441,0.506441,0.506441 +0.521461,0.521461,0.521461,0.521461,0.521461,0.521461 +0.536585,0.536585,0.536585,0.536585,0.536585,0.536585 +0.551805,0.551805,0.551805,0.551805,0.551805,0.551805 +0.567109,0.567109,0.567109,0.567109,0.567109,0.567109 +0.582489,0.582489,0.582489,0.582489,0.582489,0.582489 +0.597934,0.597934,0.597934,0.597934,0.597934,0.597934 +0.613433,0.613433,0.613433,0.613433,0.613433,0.613433 +0.628978,0.628978,0.628978,0.628978,0.628978,0.628978 +0.644557,0.644557,0.644557,0.644557,0.644557,0.644557 +0.660162,0.660162,0.660162,0.660162,0.660162,0.660162 +0.675781,0.675781,0.675781,0.675781,0.675781,0.675781 +0.691406,0.691406,0.691406,0.691406,0.691406,0.691406 +0.707031,0.707031,0.707031,0.707031,0.707031,0.707031 +0.722656,0.722656,0.722656,0.722656,0.722656,0.722656 +0.738281,0.738281,0.738281,0.738281,0.738281,0.738281 +0.753906,0.753906,0.753906,0.753906,0.753906,0.753906 +0.769531,0.769531,0.769531,0.769531,0.769531,0.769531 +0.785156,0.785156,0.785156,0.785156,0.785156,0.785156 +0.800781,0.800781,0.800781,0.800781,0.800781,0.800781 +0.816406,0.816406,0.816406,0.816406,0.816406,0.816406 +0.832031,0.832031,0.832031,0.832031,0.832031,0.832031 +0.847656,0.847656,0.847656,0.847656,0.847656,0.847656 +0.863281,0.863281,0.863281,0.863281,0.863281,0.863281 +0.878906,0.878906,0.878906,0.878906,0.878906,0.878906 +0.894531,0.894531,0.894531,0.894531,0.894531,0.894531 +0.910156,0.910156,0.910156,0.910156,0.910156,0.910156 +0.925781,0.925781,0.925781,0.925781,0.925781,0.925781 +0.941406,0.941406,0.941406,0.941406,0.941406,0.941406 +0.957031,0.957031,0.957031,0.957031,0.957031,0.957031 +0.972656,0.972656,0.972656,0.972656,0.972656,0.972656 +0.988281,0.988281,0.988281,0.988281,0.988281,0.988281 +1.003906,1.003906,1.003906,1.003906,1.003906,1.003906 +1.019531,1.019531,1.019531,1.019531,1.019531,1.019531 +1.035156,1.035156,1.035156,1.035156,1.035156,1.035156 +1.050781,1.050781,1.050781,1.050781,1.050781,1.050781 +1.066406,1.066406,1.066406,1.066406,1.066406,1.066406 +1.082028,1.082028,1.082028,1.082028,1.082028,1.082028 +1.097636,1.097636,1.097636,1.097636,1.097636,1.097636 +1.113221,1.113221,1.113221,1.113221,1.113221,1.113221 +1.128774,1.128774,1.128774,1.128774,1.128774,1.128774 +1.144283,1.144283,1.144283,1.144283,1.144283,1.144283 +1.159739,1.159739,1.159739,1.159739,1.159739,1.159739 +1.175133,1.175133,1.175133,1.175133,1.175133,1.175133 +1.190453,1.190453,1.190453,1.190453,1.190453,1.190453 +1.20569,1.20569,1.20569,1.20569,1.20569,1.20569 +1.220835,1.220835,1.220835,1.220835,1.220835,1.220835 +1.235876,1.235876,1.235876,1.235876,1.235876,1.235876 +1.250804,1.250804,1.250804,1.250804,1.250804,1.250804 +1.265609,1.265609,1.265609,1.265609,1.265609,1.265609 +1.280282,1.280282,1.280282,1.280282,1.280282,1.280282 +1.294811,1.294811,1.294811,1.294811,1.294811,1.294811 +1.309187,1.309187,1.309187,1.309187,1.309187,1.309187 +1.323401,1.323401,1.323401,1.323401,1.323401,1.323401 +1.337441,1.337441,1.337441,1.337441,1.337441,1.337441 +1.351298,1.351298,1.351298,1.351298,1.351298,1.351298 +1.364962,1.364962,1.364962,1.364962,1.364962,1.364962 +1.378423,1.378423,1.378423,1.378423,1.378423,1.378423 +1.391672,1.391672,1.391672,1.391672,1.391672,1.391672 +1.404697,1.404697,1.404697,1.404697,1.404697,1.404697 +1.417489,1.417489,1.417489,1.417489,1.417489,1.417489 +1.430038,1.430038,1.430038,1.430038,1.430038,1.430038 +1.442338,1.442338,1.442338,1.442338,1.442338,1.442338 +1.454388,1.454388,1.454388,1.454388,1.454388,1.454388 +1.466188,1.466188,1.466188,1.466188,1.466188,1.466188 +1.477737,1.477737,1.477737,1.477737,1.477737,1.477737 +1.489037,1.489037,1.489037,1.489037,1.489037,1.489037 +1.500087,1.500087,1.500087,1.500087,1.500087,1.500087 +1.510887,1.510887,1.510887,1.510887,1.510887,1.510887 +1.521437,1.521437,1.521437,1.521437,1.521437,1.521437 +1.531736,1.531736,1.531736,1.531736,1.531736,1.531736 +1.541786,1.541786,1.541786,1.541786,1.541786,1.541786 +1.551586,1.551586,1.551586,1.551586,1.551586,1.551586 +1.561136,1.561136,1.561136,1.561136,1.561136,1.561136 +1.570436,1.570436,1.570436,1.570436,1.570436,1.570436 +1.579485,1.579485,1.579485,1.579485,1.579485,1.579485 +1.588285,1.588285,1.588285,1.588285,1.588285,1.588285 +1.596835,1.596835,1.596835,1.596835,1.596835,1.596835 +1.605135,1.605135,1.605135,1.605135,1.605135,1.605135 +1.613185,1.613185,1.613185,1.613185,1.613185,1.613185 +1.620984,1.620984,1.620984,1.620984,1.620984,1.620984 +1.628534,1.628534,1.628534,1.628534,1.628534,1.628534 +1.635834,1.635834,1.635834,1.635834,1.635834,1.635834 +1.642884,1.642884,1.642884,1.642884,1.642884,1.642884 +1.649684,1.649684,1.649684,1.649684,1.649684,1.649684 +1.656233,1.656233,1.656233,1.656233,1.656233,1.656233 +1.662533,1.662533,1.662533,1.662533,1.662533,1.662533 +1.668583,1.668583,1.668583,1.668583,1.668583,1.668583 +1.674383,1.674383,1.674383,1.674383,1.674383,1.674383 +1.679933,1.679933,1.679933,1.679933,1.679933,1.679933 +1.685232,1.685232,1.685232,1.685232,1.685232,1.685232 +1.690282,1.690282,1.690282,1.690282,1.690282,1.690282 +1.695082,1.695082,1.695082,1.695082,1.695082,1.695082 +1.699632,1.699632,1.699632,1.699632,1.699632,1.699632 +1.703932,1.703932,1.703932,1.703932,1.703932,1.703932 +1.707981,1.707981,1.707981,1.707981,1.707981,1.707981 +1.711781,1.711781,1.711781,1.711781,1.711781,1.711781 +1.715331,1.715331,1.715331,1.715331,1.715331,1.715331 +1.718631,1.718631,1.718631,1.718631,1.718631,1.718631 +1.721682,1.721682,1.721682,1.721682,1.721682,1.721682 +1.72449,1.72449,1.72449,1.72449,1.72449,1.72449 +1.727067,1.727067,1.727067,1.727067,1.727067,1.727067 +1.729422,1.729422,1.729422,1.729422,1.729422,1.729422 +1.731564,1.731564,1.731564,1.731564,1.731564,1.731564 +1.733505,1.733505,1.733505,1.733505,1.733505,1.733505 +1.735254,1.735254,1.735254,1.735254,1.735254,1.735254 +1.73682,1.73682,1.73682,1.73682,1.73682,1.73682 +1.738215,1.738215,1.738215,1.738215,1.738215,1.738215 +1.739448,1.739448,1.739448,1.739448,1.739448,1.739448 +1.740529,1.740529,1.740529,1.740529,1.740529,1.740529 +1.741467,1.741467,1.741467,1.741467,1.741467,1.741467 +1.742274,1.742274,1.742274,1.742274,1.742274,1.742274 +1.742959,1.742959,1.742959,1.742959,1.742959,1.742959 +1.743532,1.743532,1.743532,1.743532,1.743532,1.743532 +1.744003,1.744003,1.744003,1.744003,1.744003,1.744003 +1.744381,1.744381,1.744381,1.744381,1.744381,1.744381 +1.744678,1.744678,1.744678,1.744678,1.744678,1.744678 +1.744903,1.744903,1.744903,1.744903,1.744903,1.744903 +1.745066,1.745066,1.745066,1.745066,1.745066,1.745066 +1.745177,1.745177,1.745177,1.745177,1.745177,1.745177 +1.745245,1.745245,1.745245,1.745245,1.745245,1.745245 +1.745282,1.745282,1.745282,1.745282,1.745282,1.745282 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745287,1.745287,1.745287,1.745287,1.745287,1.745287 +1.745255,1.745255,1.745255,1.745255,1.745255,1.745255 +1.745193,1.745193,1.745193,1.745193,1.745193,1.745193 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.74494,1.74494,1.74494,1.74494,1.74494,1.74494 +1.744728,1.744728,1.744728,1.744728,1.744728,1.744728 +1.744447,1.744447,1.744447,1.744447,1.744447,1.744447 +1.744085,1.744085,1.744085,1.744085,1.744085,1.744085 +1.743633,1.743633,1.743633,1.743633,1.743633,1.743633 +1.743082,1.743082,1.743082,1.743082,1.743082,1.743082 +1.74242,1.74242,1.74242,1.74242,1.74242,1.74242 +1.741638,1.741638,1.741638,1.741638,1.741638,1.741638 +1.740727,1.740727,1.740727,1.740727,1.740727,1.740727 +1.739675,1.739675,1.739675,1.739675,1.739675,1.739675 +1.738473,1.738473,1.738473,1.738473,1.738473,1.738473 +1.737112,1.737112,1.737112,1.737112,1.737112,1.737112 +1.73558,1.73558,1.73558,1.73558,1.73558,1.73558 +1.733868,1.733868,1.733868,1.733868,1.733868,1.733868 +1.731967,1.731967,1.731967,1.731967,1.731967,1.731967 +1.729865,1.729865,1.729865,1.729865,1.729865,1.729865 +1.727553,1.727553,1.727553,1.727553,1.727553,1.727553 +1.725022,1.725022,1.725022,1.725022,1.725022,1.725022 +1.72226,1.72226,1.72226,1.72226,1.72226,1.72226 +1.719258,1.719258,1.719258,1.719258,1.719258,1.719258 +1.716008,1.716008,1.716008,1.716008,1.716008,1.716008 +1.712508,1.712508,1.712508,1.712508,1.712508,1.712508 +1.708758,1.708758,1.708758,1.708758,1.708758,1.708758 +1.704758,1.704758,1.704758,1.704758,1.704758,1.704758 +1.700508,1.700508,1.700508,1.700508,1.700508,1.700508 +1.696008,1.696008,1.696008,1.696008,1.696008,1.696008 +1.691258,1.691258,1.691258,1.691258,1.691258,1.691258 +1.686258,1.686258,1.686258,1.686258,1.686258,1.686258 +1.681008,1.681008,1.681008,1.681008,1.681008,1.681008 +1.675508,1.675508,1.675508,1.675508,1.675508,1.675508 +1.669758,1.669758,1.669758,1.669758,1.669758,1.669758 +1.663758,1.663758,1.663758,1.663758,1.663758,1.663758 +1.657508,1.657508,1.657508,1.657508,1.657508,1.657508 +1.651008,1.651008,1.651008,1.651008,1.651008,1.651008 +1.644258,1.644258,1.644258,1.644258,1.644258,1.644258 +1.637258,1.637258,1.637258,1.637258,1.637258,1.637258 +1.630008,1.630008,1.630008,1.630008,1.630008,1.630008 +1.622508,1.622508,1.622508,1.622508,1.622508,1.622508 +1.614758,1.614758,1.614758,1.614758,1.614758,1.614758 +1.606758,1.606758,1.606758,1.606758,1.606758,1.606758 +1.598508,1.598508,1.598508,1.598508,1.598508,1.598508 +1.590008,1.590008,1.590008,1.590008,1.590008,1.590008 +1.581258,1.581258,1.581258,1.581258,1.581258,1.581258 +1.572258,1.572258,1.572258,1.572258,1.572258,1.572258 +1.563008,1.563008,1.563008,1.563008,1.563008,1.563008 +1.553508,1.553508,1.553508,1.553508,1.553508,1.553508 +1.543758,1.543758,1.543758,1.543758,1.543758,1.543758 +1.533758,1.533758,1.533758,1.533758,1.533758,1.533758 +1.523508,1.523508,1.523508,1.523508,1.523508,1.523508 +1.513008,1.513008,1.513008,1.513008,1.513008,1.513008 +1.502258,1.502258,1.502258,1.502258,1.502258,1.502258 +1.491258,1.491258,1.491258,1.491258,1.491258,1.491258 +1.480008,1.480008,1.480008,1.480008,1.480008,1.480008 +1.468508,1.468508,1.468508,1.468508,1.468508,1.468508 +1.456758,1.456758,1.456758,1.456758,1.456758,1.456758 +1.444758,1.444758,1.444758,1.444758,1.444758,1.444758 +1.432508,1.432508,1.432508,1.432508,1.432508,1.432508 +1.420009,1.420009,1.420009,1.420009,1.420009,1.420009 +1.407264,1.407264,1.407264,1.407264,1.407264,1.407264 +1.394284,1.394284,1.394284,1.394284,1.394284,1.394284 +1.38108,1.38108,1.38108,1.38108,1.38108,1.38108 +1.36766,1.36766,1.36766,1.36766,1.36766,1.36766 +1.354036,1.354036,1.354036,1.354036,1.354036,1.354036 +1.340216,1.340216,1.340216,1.340216,1.340216,1.340216 +1.326211,1.326211,1.326211,1.326211,1.326211,1.326211 +1.312032,1.312032,1.312032,1.312032,1.312032,1.312032 +1.297687,1.297687,1.297687,1.297687,1.297687,1.297687 +1.283188,1.283188,1.283188,1.283188,1.283188,1.283188 +1.268543,1.268543,1.268543,1.268543,1.268543,1.268543 +1.253764,1.253764,1.253764,1.253764,1.253764,1.253764 +1.238859,1.238859,1.238859,1.238859,1.238859,1.238859 +1.223839,1.223839,1.223839,1.223839,1.223839,1.223839 +1.208715,1.208715,1.208715,1.208715,1.208715,1.208715 +1.193495,1.193495,1.193495,1.193495,1.193495,1.193495 +1.178191,1.178191,1.178191,1.178191,1.178191,1.178191 +1.162811,1.162811,1.162811,1.162811,1.162811,1.162811 +1.147366,1.147366,1.147366,1.147366,1.147366,1.147366 +1.131867,1.131867,1.131867,1.131867,1.131867,1.131867 +1.116322,1.116322,1.116322,1.116322,1.116322,1.116322 +1.100743,1.100743,1.100743,1.100743,1.100743,1.100743 +1.085138,1.085138,1.085138,1.085138,1.085138,1.085138 +1.069519,1.069519,1.069519,1.069519,1.069519,1.069519 +1.053894,1.053894,1.053894,1.053894,1.053894,1.053894 +1.038269,1.038269,1.038269,1.038269,1.038269,1.038269 +1.022644,1.022644,1.022644,1.022644,1.022644,1.022644 +1.007019,1.007019,1.007019,1.007019,1.007019,1.007019 +0.991394,0.991394,0.991394,0.991394,0.991394,0.991394 +0.975769,0.975769,0.975769,0.975769,0.975769,0.975769 +0.960144,0.960144,0.960144,0.960144,0.960144,0.960144 +0.944519,0.944519,0.944519,0.944519,0.944519,0.944519 +0.928894,0.928894,0.928894,0.928894,0.928894,0.928894 +0.913269,0.913269,0.913269,0.913269,0.913269,0.913269 +0.897644,0.897644,0.897644,0.897644,0.897644,0.897644 +0.882019,0.882019,0.882019,0.882019,0.882019,0.882019 +0.866394,0.866394,0.866394,0.866394,0.866394,0.866394 +0.850769,0.850769,0.850769,0.850769,0.850769,0.850769 +0.835144,0.835144,0.835144,0.835144,0.835144,0.835144 +0.819519,0.819519,0.819519,0.819519,0.819519,0.819519 +0.803894,0.803894,0.803894,0.803894,0.803894,0.803894 +0.788269,0.788269,0.788269,0.788269,0.788269,0.788269 +0.772644,0.772644,0.772644,0.772644,0.772644,0.772644 +0.757019,0.757019,0.757019,0.757019,0.757019,0.757019 +0.741394,0.741394,0.741394,0.741394,0.741394,0.741394 +0.725769,0.725769,0.725769,0.725769,0.725769,0.725769 +0.710144,0.710144,0.710144,0.710144,0.710144,0.710144 +0.694519,0.694519,0.694519,0.694519,0.694519,0.694519 +0.678894,0.678894,0.678894,0.678894,0.678894,0.678894 +0.663272,0.663272,0.663272,0.663272,0.663272,0.663272 +0.647664,0.647664,0.647664,0.647664,0.647664,0.647664 +0.632079,0.632079,0.632079,0.632079,0.632079,0.632079 +0.616526,0.616526,0.616526,0.616526,0.616526,0.616526 +0.601017,0.601017,0.601017,0.601017,0.601017,0.601017 +0.585561,0.585561,0.585561,0.585561,0.585561,0.585561 +0.570167,0.570167,0.570167,0.570167,0.570167,0.570167 +0.554847,0.554847,0.554847,0.554847,0.554847,0.554847 +0.53961,0.53961,0.53961,0.53961,0.53961,0.53961 +0.524465,0.524465,0.524465,0.524465,0.524465,0.524465 +0.509424,0.509424,0.509424,0.509424,0.509424,0.509424 +0.494496,0.494496,0.494496,0.494496,0.494496,0.494496 +0.479691,0.479691,0.479691,0.479691,0.479691,0.479691 +0.465018,0.465018,0.465018,0.465018,0.465018,0.465018 +0.450489,0.450489,0.450489,0.450489,0.450489,0.450489 +0.436113,0.436113,0.436113,0.436113,0.436113,0.436113 +0.421899,0.421899,0.421899,0.421899,0.421899,0.421899 +0.407859,0.407859,0.407859,0.407859,0.407859,0.407859 +0.394002,0.394002,0.394002,0.394002,0.394002,0.394002 +0.380338,0.380338,0.380338,0.380338,0.380338,0.380338 +0.366877,0.366877,0.366877,0.366877,0.366877,0.366877 +0.353628,0.353628,0.353628,0.353628,0.353628,0.353628 +0.340603,0.340603,0.340603,0.340603,0.340603,0.340603 +0.327811,0.327811,0.327811,0.327811,0.327811,0.327811 +0.315262,0.315262,0.315262,0.315262,0.315262,0.315262 +0.302962,0.302962,0.302962,0.302962,0.302962,0.302962 +0.290912,0.290912,0.290912,0.290912,0.290912,0.290912 +0.279112,0.279112,0.279112,0.279112,0.279112,0.279112 +0.267563,0.267563,0.267563,0.267563,0.267563,0.267563 +0.256263,0.256263,0.256263,0.256263,0.256263,0.256263 +0.245213,0.245213,0.245213,0.245213,0.245213,0.245213 +0.234413,0.234413,0.234413,0.234413,0.234413,0.234413 +0.223863,0.223863,0.223863,0.223863,0.223863,0.223863 +0.213564,0.213564,0.213564,0.213564,0.213564,0.213564 +0.203514,0.203514,0.203514,0.203514,0.203514,0.203514 +0.193714,0.193714,0.193714,0.193714,0.193714,0.193714 +0.184164,0.184164,0.184164,0.184164,0.184164,0.184164 +0.174864,0.174864,0.174864,0.174864,0.174864,0.174864 +0.165815,0.165815,0.165815,0.165815,0.165815,0.165815 +0.157015,0.157015,0.157015,0.157015,0.157015,0.157015 +0.148465,0.148465,0.148465,0.148465,0.148465,0.148465 +0.140165,0.140165,0.140165,0.140165,0.140165,0.140165 +0.132115,0.132115,0.132115,0.132115,0.132115,0.132115 +0.124316,0.124316,0.124316,0.124316,0.124316,0.124316 +0.116766,0.116766,0.116766,0.116766,0.116766,0.116766 +0.109466,0.109466,0.109466,0.109466,0.109466,0.109466 +0.102416,0.102416,0.102416,0.102416,0.102416,0.102416 +0.095616,0.095616,0.095616,0.095616,0.095616,0.095616 +0.089067,0.089067,0.089067,0.089067,0.089067,0.089067 +0.082767,0.082767,0.082767,0.082767,0.082767,0.082767 +0.076717,0.076717,0.076717,0.076717,0.076717,0.076717 +0.070917,0.070917,0.070917,0.070917,0.070917,0.070917 +0.065367,0.065367,0.065367,0.065367,0.065367,0.065367 +0.060068,0.060068,0.060068,0.060068,0.060068,0.060068 +0.055018,0.055018,0.055018,0.055018,0.055018,0.055018 +0.050218,0.050218,0.050218,0.050218,0.050218,0.050218 +0.045668,0.045668,0.045668,0.045668,0.045668,0.045668 +0.041368,0.041368,0.041368,0.041368,0.041368,0.041368 +0.037319,0.037319,0.037319,0.037319,0.037319,0.037319 +0.033519,0.033519,0.033519,0.033519,0.033519,0.033519 +0.029969,0.029969,0.029969,0.029969,0.029969,0.029969 +0.026669,0.026669,0.026669,0.026669,0.026669,0.026669 +0.023618,0.023618,0.023618,0.023618,0.023618,0.023618 +0.02081,0.02081,0.02081,0.02081,0.02081,0.02081 +0.018233,0.018233,0.018233,0.018233,0.018233,0.018233 +0.015878,0.015878,0.015878,0.015878,0.015878,0.015878 +0.013736,0.013736,0.013736,0.013736,0.013736,0.013736 +0.011795,0.011795,0.011795,0.011795,0.011795,0.011795 +0.010046,0.010046,0.010046,0.010046,0.010046,0.010046 +0.00848,0.00848,0.00848,0.00848,0.00848,0.00848 +0.007085,0.007085,0.007085,0.007085,0.007085,0.007085 +0.005852,0.005852,0.005852,0.005852,0.005852,0.005852 +0.004771,0.004771,0.004771,0.004771,0.004771,0.004771 +0.003833,0.003833,0.003833,0.003833,0.003833,0.003833 +0.003026,0.003026,0.003026,0.003026,0.003026,0.003026 +0.002341,0.002341,0.002341,0.002341,0.002341,0.002341 +0.001768,0.001768,0.001768,0.001768,0.001768,0.001768 +0.001297,0.001297,0.001297,0.001297,0.001297,0.001297 +0.000919,0.000919,0.000919,0.000919,0.000919,0.000919 +0.000622,0.000622,0.000622,0.000622,0.000622,0.000622 +0.000397,0.000397,0.000397,0.000397,0.000397,0.000397 +0.000234,0.000234,0.000234,0.000234,0.000234,0.000234 +0.000123,0.000123,0.000123,0.000123,0.000123,0.000123 +0.000055,0.000055,0.000055,0.000055,0.000055,0.000055 +0.000018,0.000018,0.000018,0.000018,0.000018,0.000018 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000013,-0.000013,-0.000013,-0.000013,-0.000013,-0.000013 +-0.000045,-0.000045,-0.000045,-0.000045,-0.000045,-0.000045 +-0.000107,-0.000107,-0.000107,-0.000107,-0.000107,-0.000107 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.00036,-0.00036,-0.00036,-0.00036,-0.00036,-0.00036 +-0.000572,-0.000572,-0.000572,-0.000572,-0.000572,-0.000572 +-0.000853,-0.000853,-0.000853,-0.000853,-0.000853,-0.000853 +-0.001215,-0.001215,-0.001215,-0.001215,-0.001215,-0.001215 +-0.001667,-0.001667,-0.001667,-0.001667,-0.001667,-0.001667 +-0.002218,-0.002218,-0.002218,-0.002218,-0.002218,-0.002218 +-0.00288,-0.00288,-0.00288,-0.00288,-0.00288,-0.00288 +-0.003662,-0.003662,-0.003662,-0.003662,-0.003662,-0.003662 +-0.004573,-0.004573,-0.004573,-0.004573,-0.004573,-0.004573 +-0.005625,-0.005625,-0.005625,-0.005625,-0.005625,-0.005625 +-0.006827,-0.006827,-0.006827,-0.006827,-0.006827,-0.006827 +-0.008188,-0.008188,-0.008188,-0.008188,-0.008188,-0.008188 +-0.00972,-0.00972,-0.00972,-0.00972,-0.00972,-0.00972 +-0.011432,-0.011432,-0.011432,-0.011432,-0.011432,-0.011432 +-0.013333,-0.013333,-0.013333,-0.013333,-0.013333,-0.013333 +-0.015435,-0.015435,-0.015435,-0.015435,-0.015435,-0.015435 +-0.017747,-0.017747,-0.017747,-0.017747,-0.017747,-0.017747 +-0.020278,-0.020278,-0.020278,-0.020278,-0.020278,-0.020278 +-0.02304,-0.02304,-0.02304,-0.02304,-0.02304,-0.02304 +-0.026042,-0.026042,-0.026042,-0.026042,-0.026042,-0.026042 +-0.029292,-0.029292,-0.029292,-0.029292,-0.029292,-0.029292 +-0.032792,-0.032792,-0.032792,-0.032792,-0.032792,-0.032792 +-0.036542,-0.036542,-0.036542,-0.036542,-0.036542,-0.036542 +-0.040542,-0.040542,-0.040542,-0.040542,-0.040542,-0.040542 +-0.044792,-0.044792,-0.044792,-0.044792,-0.044792,-0.044792 +-0.049292,-0.049292,-0.049292,-0.049292,-0.049292,-0.049292 +-0.054042,-0.054042,-0.054042,-0.054042,-0.054042,-0.054042 +-0.059042,-0.059042,-0.059042,-0.059042,-0.059042,-0.059042 +-0.064292,-0.064292,-0.064292,-0.064292,-0.064292,-0.064292 +-0.069792,-0.069792,-0.069792,-0.069792,-0.069792,-0.069792 +-0.075542,-0.075542,-0.075542,-0.075542,-0.075542,-0.075542 +-0.081542,-0.081542,-0.081542,-0.081542,-0.081542,-0.081542 +-0.087792,-0.087792,-0.087792,-0.087792,-0.087792,-0.087792 +-0.094292,-0.094292,-0.094292,-0.094292,-0.094292,-0.094292 +-0.101042,-0.101042,-0.101042,-0.101042,-0.101042,-0.101042 +-0.108042,-0.108042,-0.108042,-0.108042,-0.108042,-0.108042 +-0.115292,-0.115292,-0.115292,-0.115292,-0.115292,-0.115292 +-0.122792,-0.122792,-0.122792,-0.122792,-0.122792,-0.122792 +-0.130542,-0.130542,-0.130542,-0.130542,-0.130542,-0.130542 +-0.138542,-0.138542,-0.138542,-0.138542,-0.138542,-0.138542 +-0.146792,-0.146792,-0.146792,-0.146792,-0.146792,-0.146792 +-0.155292,-0.155292,-0.155292,-0.155292,-0.155292,-0.155292 +-0.164042,-0.164042,-0.164042,-0.164042,-0.164042,-0.164042 +-0.173042,-0.173042,-0.173042,-0.173042,-0.173042,-0.173042 +-0.182292,-0.182292,-0.182292,-0.182292,-0.182292,-0.182292 +-0.191792,-0.191792,-0.191792,-0.191792,-0.191792,-0.191792 +-0.201542,-0.201542,-0.201542,-0.201542,-0.201542,-0.201542 +-0.211542,-0.211542,-0.211542,-0.211542,-0.211542,-0.211542 +-0.221792,-0.221792,-0.221792,-0.221792,-0.221792,-0.221792 +-0.232292,-0.232292,-0.232292,-0.232292,-0.232292,-0.232292 +-0.243042,-0.243042,-0.243042,-0.243042,-0.243042,-0.243042 +-0.254042,-0.254042,-0.254042,-0.254042,-0.254042,-0.254042 +-0.265292,-0.265292,-0.265292,-0.265292,-0.265292,-0.265292 +-0.276792,-0.276792,-0.276792,-0.276792,-0.276792,-0.276792 +-0.288542,-0.288542,-0.288542,-0.288542,-0.288542,-0.288542 +-0.300542,-0.300542,-0.300542,-0.300542,-0.300542,-0.300542 +-0.312792,-0.312792,-0.312792,-0.312792,-0.312792,-0.312792 +-0.325291,-0.325291,-0.325291,-0.325291,-0.325291,-0.325291 +-0.338036,-0.338036,-0.338036,-0.338036,-0.338036,-0.338036 +-0.351016,-0.351016,-0.351016,-0.351016,-0.351016,-0.351016 +-0.36422,-0.36422,-0.36422,-0.36422,-0.36422,-0.36422 +-0.37764,-0.37764,-0.37764,-0.37764,-0.37764,-0.37764 +-0.391264,-0.391264,-0.391264,-0.391264,-0.391264,-0.391264 +-0.405084,-0.405084,-0.405084,-0.405084,-0.405084,-0.405084 +-0.419089,-0.419089,-0.419089,-0.419089,-0.419089,-0.419089 +-0.433268,-0.433268,-0.433268,-0.433268,-0.433268,-0.433268 +-0.447613,-0.447613,-0.447613,-0.447613,-0.447613,-0.447613 +-0.462112,-0.462112,-0.462112,-0.462112,-0.462112,-0.462112 +-0.476757,-0.476757,-0.476757,-0.476757,-0.476757,-0.476757 +-0.491536,-0.491536,-0.491536,-0.491536,-0.491536,-0.491536 +-0.506441,-0.506441,-0.506441,-0.506441,-0.506441,-0.506441 +-0.521461,-0.521461,-0.521461,-0.521461,-0.521461,-0.521461 +-0.536585,-0.536585,-0.536585,-0.536585,-0.536585,-0.536585 +-0.551805,-0.551805,-0.551805,-0.551805,-0.551805,-0.551805 +-0.567109,-0.567109,-0.567109,-0.567109,-0.567109,-0.567109 +-0.582489,-0.582489,-0.582489,-0.582489,-0.582489,-0.582489 +-0.597934,-0.597934,-0.597934,-0.597934,-0.597934,-0.597934 +-0.613433,-0.613433,-0.613433,-0.613433,-0.613433,-0.613433 +-0.628978,-0.628978,-0.628978,-0.628978,-0.628978,-0.628978 +-0.644557,-0.644557,-0.644557,-0.644557,-0.644557,-0.644557 +-0.660162,-0.660162,-0.660162,-0.660162,-0.660162,-0.660162 +-0.675781,-0.675781,-0.675781,-0.675781,-0.675781,-0.675781 +-0.691406,-0.691406,-0.691406,-0.691406,-0.691406,-0.691406 +-0.707031,-0.707031,-0.707031,-0.707031,-0.707031,-0.707031 +-0.722656,-0.722656,-0.722656,-0.722656,-0.722656,-0.722656 +-0.738281,-0.738281,-0.738281,-0.738281,-0.738281,-0.738281 +-0.753906,-0.753906,-0.753906,-0.753906,-0.753906,-0.753906 +-0.769531,-0.769531,-0.769531,-0.769531,-0.769531,-0.769531 +-0.785156,-0.785156,-0.785156,-0.785156,-0.785156,-0.785156 +-0.800781,-0.800781,-0.800781,-0.800781,-0.800781,-0.800781 +-0.816406,-0.816406,-0.816406,-0.816406,-0.816406,-0.816406 +-0.832031,-0.832031,-0.832031,-0.832031,-0.832031,-0.832031 +-0.847656,-0.847656,-0.847656,-0.847656,-0.847656,-0.847656 +-0.863281,-0.863281,-0.863281,-0.863281,-0.863281,-0.863281 +-0.878906,-0.878906,-0.878906,-0.878906,-0.878906,-0.878906 +-0.894531,-0.894531,-0.894531,-0.894531,-0.894531,-0.894531 +-0.910156,-0.910156,-0.910156,-0.910156,-0.910156,-0.910156 +-0.925781,-0.925781,-0.925781,-0.925781,-0.925781,-0.925781 +-0.941406,-0.941406,-0.941406,-0.941406,-0.941406,-0.941406 +-0.957031,-0.957031,-0.957031,-0.957031,-0.957031,-0.957031 +-0.972656,-0.972656,-0.972656,-0.972656,-0.972656,-0.972656 +-0.988281,-0.988281,-0.988281,-0.988281,-0.988281,-0.988281 +-1.003906,-1.003906,-1.003906,-1.003906,-1.003906,-1.003906 +-1.019531,-1.019531,-1.019531,-1.019531,-1.019531,-1.019531 +-1.035156,-1.035156,-1.035156,-1.035156,-1.035156,-1.035156 +-1.050781,-1.050781,-1.050781,-1.050781,-1.050781,-1.050781 +-1.066406,-1.066406,-1.066406,-1.066406,-1.066406,-1.066406 +-1.082028,-1.082028,-1.082028,-1.082028,-1.082028,-1.082028 +-1.097636,-1.097636,-1.097636,-1.097636,-1.097636,-1.097636 +-1.113221,-1.113221,-1.113221,-1.113221,-1.113221,-1.113221 +-1.128774,-1.128774,-1.128774,-1.128774,-1.128774,-1.128774 +-1.144283,-1.144283,-1.144283,-1.144283,-1.144283,-1.144283 +-1.159739,-1.159739,-1.159739,-1.159739,-1.159739,-1.159739 +-1.175133,-1.175133,-1.175133,-1.175133,-1.175133,-1.175133 +-1.190453,-1.190453,-1.190453,-1.190453,-1.190453,-1.190453 +-1.20569,-1.20569,-1.20569,-1.20569,-1.20569,-1.20569 +-1.220835,-1.220835,-1.220835,-1.220835,-1.220835,-1.220835 +-1.235876,-1.235876,-1.235876,-1.235876,-1.235876,-1.235876 +-1.250804,-1.250804,-1.250804,-1.250804,-1.250804,-1.250804 +-1.265609,-1.265609,-1.265609,-1.265609,-1.265609,-1.265609 +-1.280282,-1.280282,-1.280282,-1.280282,-1.280282,-1.280282 +-1.294811,-1.294811,-1.294811,-1.294811,-1.294811,-1.294811 +-1.309187,-1.309187,-1.309187,-1.309187,-1.309187,-1.309187 +-1.323401,-1.323401,-1.323401,-1.323401,-1.323401,-1.323401 +-1.337441,-1.337441,-1.337441,-1.337441,-1.337441,-1.337441 +-1.351298,-1.351298,-1.351298,-1.351298,-1.351298,-1.351298 +-1.364962,-1.364962,-1.364962,-1.364962,-1.364962,-1.364962 +-1.378423,-1.378423,-1.378423,-1.378423,-1.378423,-1.378423 +-1.391672,-1.391672,-1.391672,-1.391672,-1.391672,-1.391672 +-1.404697,-1.404697,-1.404697,-1.404697,-1.404697,-1.404697 +-1.417489,-1.417489,-1.417489,-1.417489,-1.417489,-1.417489 +-1.430038,-1.430038,-1.430038,-1.430038,-1.430038,-1.430038 +-1.442338,-1.442338,-1.442338,-1.442338,-1.442338,-1.442338 +-1.454388,-1.454388,-1.454388,-1.454388,-1.454388,-1.454388 +-1.466188,-1.466188,-1.466188,-1.466188,-1.466188,-1.466188 +-1.477737,-1.477737,-1.477737,-1.477737,-1.477737,-1.477737 +-1.489037,-1.489037,-1.489037,-1.489037,-1.489037,-1.489037 +-1.500087,-1.500087,-1.500087,-1.500087,-1.500087,-1.500087 +-1.510887,-1.510887,-1.510887,-1.510887,-1.510887,-1.510887 +-1.521437,-1.521437,-1.521437,-1.521437,-1.521437,-1.521437 +-1.531736,-1.531736,-1.531736,-1.531736,-1.531736,-1.531736 +-1.541786,-1.541786,-1.541786,-1.541786,-1.541786,-1.541786 +-1.551586,-1.551586,-1.551586,-1.551586,-1.551586,-1.551586 +-1.561136,-1.561136,-1.561136,-1.561136,-1.561136,-1.561136 +-1.570436,-1.570436,-1.570436,-1.570436,-1.570436,-1.570436 +-1.579485,-1.579485,-1.579485,-1.579485,-1.579485,-1.579485 +-1.588285,-1.588285,-1.588285,-1.588285,-1.588285,-1.588285 +-1.596835,-1.596835,-1.596835,-1.596835,-1.596835,-1.596835 +-1.605135,-1.605135,-1.605135,-1.605135,-1.605135,-1.605135 +-1.613185,-1.613185,-1.613185,-1.613185,-1.613185,-1.613185 +-1.620984,-1.620984,-1.620984,-1.620984,-1.620984,-1.620984 +-1.628534,-1.628534,-1.628534,-1.628534,-1.628534,-1.628534 +-1.635834,-1.635834,-1.635834,-1.635834,-1.635834,-1.635834 +-1.642884,-1.642884,-1.642884,-1.642884,-1.642884,-1.642884 +-1.649684,-1.649684,-1.649684,-1.649684,-1.649684,-1.649684 +-1.656233,-1.656233,-1.656233,-1.656233,-1.656233,-1.656233 +-1.662533,-1.662533,-1.662533,-1.662533,-1.662533,-1.662533 +-1.668583,-1.668583,-1.668583,-1.668583,-1.668583,-1.668583 +-1.674383,-1.674383,-1.674383,-1.674383,-1.674383,-1.674383 +-1.679933,-1.679933,-1.679933,-1.679933,-1.679933,-1.679933 +-1.685232,-1.685232,-1.685232,-1.685232,-1.685232,-1.685232 +-1.690282,-1.690282,-1.690282,-1.690282,-1.690282,-1.690282 +-1.695082,-1.695082,-1.695082,-1.695082,-1.695082,-1.695082 +-1.699632,-1.699632,-1.699632,-1.699632,-1.699632,-1.699632 +-1.703932,-1.703932,-1.703932,-1.703932,-1.703932,-1.703932 +-1.707981,-1.707981,-1.707981,-1.707981,-1.707981,-1.707981 +-1.711781,-1.711781,-1.711781,-1.711781,-1.711781,-1.711781 +-1.715331,-1.715331,-1.715331,-1.715331,-1.715331,-1.715331 +-1.718631,-1.718631,-1.718631,-1.718631,-1.718631,-1.718631 +-1.721682,-1.721682,-1.721682,-1.721682,-1.721682,-1.721682 +-1.72449,-1.72449,-1.72449,-1.72449,-1.72449,-1.72449 +-1.727067,-1.727067,-1.727067,-1.727067,-1.727067,-1.727067 +-1.729422,-1.729422,-1.729422,-1.729422,-1.729422,-1.729422 +-1.731564,-1.731564,-1.731564,-1.731564,-1.731564,-1.731564 +-1.733505,-1.733505,-1.733505,-1.733505,-1.733505,-1.733505 +-1.735254,-1.735254,-1.735254,-1.735254,-1.735254,-1.735254 +-1.73682,-1.73682,-1.73682,-1.73682,-1.73682,-1.73682 +-1.738215,-1.738215,-1.738215,-1.738215,-1.738215,-1.738215 +-1.739448,-1.739448,-1.739448,-1.739448,-1.739448,-1.739448 +-1.740529,-1.740529,-1.740529,-1.740529,-1.740529,-1.740529 +-1.741467,-1.741467,-1.741467,-1.741467,-1.741467,-1.741467 +-1.742274,-1.742274,-1.742274,-1.742274,-1.742274,-1.742274 +-1.742959,-1.742959,-1.742959,-1.742959,-1.742959,-1.742959 +-1.743532,-1.743532,-1.743532,-1.743532,-1.743532,-1.743532 +-1.744003,-1.744003,-1.744003,-1.744003,-1.744003,-1.744003 +-1.744381,-1.744381,-1.744381,-1.744381,-1.744381,-1.744381 +-1.744678,-1.744678,-1.744678,-1.744678,-1.744678,-1.744678 +-1.744903,-1.744903,-1.744903,-1.744903,-1.744903,-1.744903 +-1.745066,-1.745066,-1.745066,-1.745066,-1.745066,-1.745066 +-1.745177,-1.745177,-1.745177,-1.745177,-1.745177,-1.745177 +-1.745245,-1.745245,-1.745245,-1.745245,-1.745245,-1.745245 +-1.745282,-1.745282,-1.745282,-1.745282,-1.745282,-1.745282 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745287,-1.745287,-1.745287,-1.745287,-1.745287,-1.745287 +-1.745255,-1.745255,-1.745255,-1.745255,-1.745255,-1.745255 +-1.745193,-1.745193,-1.745193,-1.745193,-1.745193,-1.745193 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.74494,-1.74494,-1.74494,-1.74494,-1.74494,-1.74494 +-1.744728,-1.744728,-1.744728,-1.744728,-1.744728,-1.744728 +-1.744447,-1.744447,-1.744447,-1.744447,-1.744447,-1.744447 +-1.744085,-1.744085,-1.744085,-1.744085,-1.744085,-1.744085 +-1.743633,-1.743633,-1.743633,-1.743633,-1.743633,-1.743633 +-1.743082,-1.743082,-1.743082,-1.743082,-1.743082,-1.743082 +-1.74242,-1.74242,-1.74242,-1.74242,-1.74242,-1.74242 +-1.741638,-1.741638,-1.741638,-1.741638,-1.741638,-1.741638 +-1.740727,-1.740727,-1.740727,-1.740727,-1.740727,-1.740727 +-1.739675,-1.739675,-1.739675,-1.739675,-1.739675,-1.739675 +-1.738473,-1.738473,-1.738473,-1.738473,-1.738473,-1.738473 +-1.737112,-1.737112,-1.737112,-1.737112,-1.737112,-1.737112 +-1.73558,-1.73558,-1.73558,-1.73558,-1.73558,-1.73558 +-1.733868,-1.733868,-1.733868,-1.733868,-1.733868,-1.733868 +-1.731967,-1.731967,-1.731967,-1.731967,-1.731967,-1.731967 +-1.729865,-1.729865,-1.729865,-1.729865,-1.729865,-1.729865 +-1.727553,-1.727553,-1.727553,-1.727553,-1.727553,-1.727553 +-1.725022,-1.725022,-1.725022,-1.725022,-1.725022,-1.725022 +-1.72226,-1.72226,-1.72226,-1.72226,-1.72226,-1.72226 +-1.719258,-1.719258,-1.719258,-1.719258,-1.719258,-1.719258 +-1.716008,-1.716008,-1.716008,-1.716008,-1.716008,-1.716008 +-1.712508,-1.712508,-1.712508,-1.712508,-1.712508,-1.712508 +-1.708758,-1.708758,-1.708758,-1.708758,-1.708758,-1.708758 +-1.704758,-1.704758,-1.704758,-1.704758,-1.704758,-1.704758 +-1.700508,-1.700508,-1.700508,-1.700508,-1.700508,-1.700508 +-1.696008,-1.696008,-1.696008,-1.696008,-1.696008,-1.696008 +-1.691258,-1.691258,-1.691258,-1.691258,-1.691258,-1.691258 +-1.686258,-1.686258,-1.686258,-1.686258,-1.686258,-1.686258 +-1.681008,-1.681008,-1.681008,-1.681008,-1.681008,-1.681008 +-1.675508,-1.675508,-1.675508,-1.675508,-1.675508,-1.675508 +-1.669758,-1.669758,-1.669758,-1.669758,-1.669758,-1.669758 +-1.663758,-1.663758,-1.663758,-1.663758,-1.663758,-1.663758 +-1.657508,-1.657508,-1.657508,-1.657508,-1.657508,-1.657508 +-1.651008,-1.651008,-1.651008,-1.651008,-1.651008,-1.651008 +-1.644258,-1.644258,-1.644258,-1.644258,-1.644258,-1.644258 +-1.637258,-1.637258,-1.637258,-1.637258,-1.637258,-1.637258 +-1.630008,-1.630008,-1.630008,-1.630008,-1.630008,-1.630008 +-1.622508,-1.622508,-1.622508,-1.622508,-1.622508,-1.622508 +-1.614758,-1.614758,-1.614758,-1.614758,-1.614758,-1.614758 +-1.606758,-1.606758,-1.606758,-1.606758,-1.606758,-1.606758 +-1.598508,-1.598508,-1.598508,-1.598508,-1.598508,-1.598508 +-1.590008,-1.590008,-1.590008,-1.590008,-1.590008,-1.590008 +-1.581258,-1.581258,-1.581258,-1.581258,-1.581258,-1.581258 +-1.572258,-1.572258,-1.572258,-1.572258,-1.572258,-1.572258 +-1.563008,-1.563008,-1.563008,-1.563008,-1.563008,-1.563008 +-1.553508,-1.553508,-1.553508,-1.553508,-1.553508,-1.553508 +-1.543758,-1.543758,-1.543758,-1.543758,-1.543758,-1.543758 +-1.533758,-1.533758,-1.533758,-1.533758,-1.533758,-1.533758 +-1.523508,-1.523508,-1.523508,-1.523508,-1.523508,-1.523508 +-1.513008,-1.513008,-1.513008,-1.513008,-1.513008,-1.513008 +-1.502258,-1.502258,-1.502258,-1.502258,-1.502258,-1.502258 +-1.491258,-1.491258,-1.491258,-1.491258,-1.491258,-1.491258 +-1.480008,-1.480008,-1.480008,-1.480008,-1.480008,-1.480008 +-1.468508,-1.468508,-1.468508,-1.468508,-1.468508,-1.468508 +-1.456758,-1.456758,-1.456758,-1.456758,-1.456758,-1.456758 +-1.444758,-1.444758,-1.444758,-1.444758,-1.444758,-1.444758 +-1.432508,-1.432508,-1.432508,-1.432508,-1.432508,-1.432508 +-1.420009,-1.420009,-1.420009,-1.420009,-1.420009,-1.420009 +-1.407264,-1.407264,-1.407264,-1.407264,-1.407264,-1.407264 +-1.394284,-1.394284,-1.394284,-1.394284,-1.394284,-1.394284 +-1.38108,-1.38108,-1.38108,-1.38108,-1.38108,-1.38108 +-1.36766,-1.36766,-1.36766,-1.36766,-1.36766,-1.36766 +-1.354036,-1.354036,-1.354036,-1.354036,-1.354036,-1.354036 +-1.340216,-1.340216,-1.340216,-1.340216,-1.340216,-1.340216 +-1.326211,-1.326211,-1.326211,-1.326211,-1.326211,-1.326211 +-1.312032,-1.312032,-1.312032,-1.312032,-1.312032,-1.312032 +-1.297687,-1.297687,-1.297687,-1.297687,-1.297687,-1.297687 +-1.283188,-1.283188,-1.283188,-1.283188,-1.283188,-1.283188 +-1.268543,-1.268543,-1.268543,-1.268543,-1.268543,-1.268543 +-1.253764,-1.253764,-1.253764,-1.253764,-1.253764,-1.253764 +-1.238859,-1.238859,-1.238859,-1.238859,-1.238859,-1.238859 +-1.223839,-1.223839,-1.223839,-1.223839,-1.223839,-1.223839 +-1.208715,-1.208715,-1.208715,-1.208715,-1.208715,-1.208715 +-1.193495,-1.193495,-1.193495,-1.193495,-1.193495,-1.193495 +-1.178191,-1.178191,-1.178191,-1.178191,-1.178191,-1.178191 +-1.162811,-1.162811,-1.162811,-1.162811,-1.162811,-1.162811 +-1.147366,-1.147366,-1.147366,-1.147366,-1.147366,-1.147366 +-1.131867,-1.131867,-1.131867,-1.131867,-1.131867,-1.131867 +-1.116322,-1.116322,-1.116322,-1.116322,-1.116322,-1.116322 +-1.100743,-1.100743,-1.100743,-1.100743,-1.100743,-1.100743 +-1.085138,-1.085138,-1.085138,-1.085138,-1.085138,-1.085138 +-1.069519,-1.069519,-1.069519,-1.069519,-1.069519,-1.069519 +-1.053894,-1.053894,-1.053894,-1.053894,-1.053894,-1.053894 +-1.038269,-1.038269,-1.038269,-1.038269,-1.038269,-1.038269 +-1.022644,-1.022644,-1.022644,-1.022644,-1.022644,-1.022644 +-1.007019,-1.007019,-1.007019,-1.007019,-1.007019,-1.007019 +-0.991394,-0.991394,-0.991394,-0.991394,-0.991394,-0.991394 +-0.975769,-0.975769,-0.975769,-0.975769,-0.975769,-0.975769 +-0.960144,-0.960144,-0.960144,-0.960144,-0.960144,-0.960144 +-0.944519,-0.944519,-0.944519,-0.944519,-0.944519,-0.944519 +-0.928894,-0.928894,-0.928894,-0.928894,-0.928894,-0.928894 +-0.913269,-0.913269,-0.913269,-0.913269,-0.913269,-0.913269 +-0.897644,-0.897644,-0.897644,-0.897644,-0.897644,-0.897644 +-0.882019,-0.882019,-0.882019,-0.882019,-0.882019,-0.882019 +-0.866394,-0.866394,-0.866394,-0.866394,-0.866394,-0.866394 +-0.850769,-0.850769,-0.850769,-0.850769,-0.850769,-0.850769 +-0.835144,-0.835144,-0.835144,-0.835144,-0.835144,-0.835144 +-0.819519,-0.819519,-0.819519,-0.819519,-0.819519,-0.819519 +-0.803894,-0.803894,-0.803894,-0.803894,-0.803894,-0.803894 +-0.788269,-0.788269,-0.788269,-0.788269,-0.788269,-0.788269 +-0.772644,-0.772644,-0.772644,-0.772644,-0.772644,-0.772644 +-0.757019,-0.757019,-0.757019,-0.757019,-0.757019,-0.757019 +-0.741394,-0.741394,-0.741394,-0.741394,-0.741394,-0.741394 +-0.725769,-0.725769,-0.725769,-0.725769,-0.725769,-0.725769 +-0.710144,-0.710144,-0.710144,-0.710144,-0.710144,-0.710144 +-0.694519,-0.694519,-0.694519,-0.694519,-0.694519,-0.694519 +-0.678894,-0.678894,-0.678894,-0.678894,-0.678894,-0.678894 +-0.663272,-0.663272,-0.663272,-0.663272,-0.663272,-0.663272 +-0.647664,-0.647664,-0.647664,-0.647664,-0.647664,-0.647664 +-0.632079,-0.632079,-0.632079,-0.632079,-0.632079,-0.632079 +-0.616526,-0.616526,-0.616526,-0.616526,-0.616526,-0.616526 +-0.601017,-0.601017,-0.601017,-0.601017,-0.601017,-0.601017 +-0.585561,-0.585561,-0.585561,-0.585561,-0.585561,-0.585561 +-0.570167,-0.570167,-0.570167,-0.570167,-0.570167,-0.570167 +-0.554847,-0.554847,-0.554847,-0.554847,-0.554847,-0.554847 +-0.53961,-0.53961,-0.53961,-0.53961,-0.53961,-0.53961 +-0.524465,-0.524465,-0.524465,-0.524465,-0.524465,-0.524465 +-0.509424,-0.509424,-0.509424,-0.509424,-0.509424,-0.509424 +-0.494496,-0.494496,-0.494496,-0.494496,-0.494496,-0.494496 +-0.479691,-0.479691,-0.479691,-0.479691,-0.479691,-0.479691 +-0.465018,-0.465018,-0.465018,-0.465018,-0.465018,-0.465018 +-0.450489,-0.450489,-0.450489,-0.450489,-0.450489,-0.450489 +-0.436113,-0.436113,-0.436113,-0.436113,-0.436113,-0.436113 +-0.421899,-0.421899,-0.421899,-0.421899,-0.421899,-0.421899 +-0.407859,-0.407859,-0.407859,-0.407859,-0.407859,-0.407859 +-0.394002,-0.394002,-0.394002,-0.394002,-0.394002,-0.394002 +-0.380338,-0.380338,-0.380338,-0.380338,-0.380338,-0.380338 +-0.366877,-0.366877,-0.366877,-0.366877,-0.366877,-0.366877 +-0.353628,-0.353628,-0.353628,-0.353628,-0.353628,-0.353628 +-0.340603,-0.340603,-0.340603,-0.340603,-0.340603,-0.340603 +-0.327811,-0.327811,-0.327811,-0.327811,-0.327811,-0.327811 +-0.315262,-0.315262,-0.315262,-0.315262,-0.315262,-0.315262 +-0.302962,-0.302962,-0.302962,-0.302962,-0.302962,-0.302962 +-0.290912,-0.290912,-0.290912,-0.290912,-0.290912,-0.290912 +-0.279112,-0.279112,-0.279112,-0.279112,-0.279112,-0.279112 +-0.267563,-0.267563,-0.267563,-0.267563,-0.267563,-0.267563 +-0.256263,-0.256263,-0.256263,-0.256263,-0.256263,-0.256263 +-0.245213,-0.245213,-0.245213,-0.245213,-0.245213,-0.245213 +-0.234413,-0.234413,-0.234413,-0.234413,-0.234413,-0.234413 +-0.223863,-0.223863,-0.223863,-0.223863,-0.223863,-0.223863 +-0.213564,-0.213564,-0.213564,-0.213564,-0.213564,-0.213564 +-0.203514,-0.203514,-0.203514,-0.203514,-0.203514,-0.203514 +-0.193714,-0.193714,-0.193714,-0.193714,-0.193714,-0.193714 +-0.184164,-0.184164,-0.184164,-0.184164,-0.184164,-0.184164 +-0.174864,-0.174864,-0.174864,-0.174864,-0.174864,-0.174864 +-0.165815,-0.165815,-0.165815,-0.165815,-0.165815,-0.165815 +-0.157015,-0.157015,-0.157015,-0.157015,-0.157015,-0.157015 +-0.148465,-0.148465,-0.148465,-0.148465,-0.148465,-0.148465 +-0.140165,-0.140165,-0.140165,-0.140165,-0.140165,-0.140165 +-0.132115,-0.132115,-0.132115,-0.132115,-0.132115,-0.132115 +-0.124316,-0.124316,-0.124316,-0.124316,-0.124316,-0.124316 +-0.116766,-0.116766,-0.116766,-0.116766,-0.116766,-0.116766 +-0.109466,-0.109466,-0.109466,-0.109466,-0.109466,-0.109466 +-0.102416,-0.102416,-0.102416,-0.102416,-0.102416,-0.102416 +-0.095616,-0.095616,-0.095616,-0.095616,-0.095616,-0.095616 +-0.089067,-0.089067,-0.089067,-0.089067,-0.089067,-0.089067 +-0.082767,-0.082767,-0.082767,-0.082767,-0.082767,-0.082767 +-0.076717,-0.076717,-0.076717,-0.076717,-0.076717,-0.076717 +-0.070917,-0.070917,-0.070917,-0.070917,-0.070917,-0.070917 +-0.065367,-0.065367,-0.065367,-0.065367,-0.065367,-0.065367 +-0.060068,-0.060068,-0.060068,-0.060068,-0.060068,-0.060068 +-0.055018,-0.055018,-0.055018,-0.055018,-0.055018,-0.055018 +-0.050218,-0.050218,-0.050218,-0.050218,-0.050218,-0.050218 +-0.045668,-0.045668,-0.045668,-0.045668,-0.045668,-0.045668 +-0.041368,-0.041368,-0.041368,-0.041368,-0.041368,-0.041368 +-0.037319,-0.037319,-0.037319,-0.037319,-0.037319,-0.037319 +-0.033519,-0.033519,-0.033519,-0.033519,-0.033519,-0.033519 +-0.029969,-0.029969,-0.029969,-0.029969,-0.029969,-0.029969 +-0.026669,-0.026669,-0.026669,-0.026669,-0.026669,-0.026669 +-0.023618,-0.023618,-0.023618,-0.023618,-0.023618,-0.023618 +-0.02081,-0.02081,-0.02081,-0.02081,-0.02081,-0.02081 +-0.018233,-0.018233,-0.018233,-0.018233,-0.018233,-0.018233 +-0.015878,-0.015878,-0.015878,-0.015878,-0.015878,-0.015878 +-0.013736,-0.013736,-0.013736,-0.013736,-0.013736,-0.013736 +-0.011795,-0.011795,-0.011795,-0.011795,-0.011795,-0.011795 +-0.010046,-0.010046,-0.010046,-0.010046,-0.010046,-0.010046 +-0.00848,-0.00848,-0.00848,-0.00848,-0.00848,-0.00848 +-0.007085,-0.007085,-0.007085,-0.007085,-0.007085,-0.007085 +-0.005852,-0.005852,-0.005852,-0.005852,-0.005852,-0.005852 +-0.004771,-0.004771,-0.004771,-0.004771,-0.004771,-0.004771 +-0.003833,-0.003833,-0.003833,-0.003833,-0.003833,-0.003833 +-0.003026,-0.003026,-0.003026,-0.003026,-0.003026,-0.003026 +-0.002341,-0.002341,-0.002341,-0.002341,-0.002341,-0.002341 +-0.001768,-0.001768,-0.001768,-0.001768,-0.001768,-0.001768 +-0.001297,-0.001297,-0.001297,-0.001297,-0.001297,-0.001297 +-0.000919,-0.000919,-0.000919,-0.000919,-0.000919,-0.000919 +-0.000622,-0.000622,-0.000622,-0.000622,-0.000622,-0.000622 +-0.000397,-0.000397,-0.000397,-0.000397,-0.000397,-0.000397 +-0.000234,-0.000234,-0.000234,-0.000234,-0.000234,-0.000234 +-0.000123,-0.000123,-0.000123,-0.000123,-0.000123,-0.000123 +-0.000055,-0.000055,-0.000055,-0.000055,-0.000055,-0.000055 +-0.000018,-0.000018,-0.000018,-0.000018,-0.000018,-0.000018 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000015,0.000015,0.000015,0.000015,0.000015,0.000015 +0.000051,0.000051,0.000051,0.000051,0.000051,0.000051 +0.00012,0.00012,0.00012,0.00012,0.00012,0.00012 +0.000234,0.000234,0.000234,0.000234,0.000234,0.000234 +0.000405,0.000405,0.000405,0.000405,0.000405,0.000405 +0.000643,0.000643,0.000643,0.000643,0.000643,0.000643 +0.00096,0.00096,0.00096,0.00096,0.00096,0.00096 +0.001367,0.001367,0.001367,0.001367,0.001367,0.001367 +0.001875,0.001875,0.001875,0.001875,0.001875,0.001875 +0.002496,0.002496,0.002496,0.002496,0.002496,0.002496 +0.00324,0.00324,0.00324,0.00324,0.00324,0.00324 +0.004119,0.004119,0.004119,0.004119,0.004119,0.004119 +0.005145,0.005145,0.005145,0.005145,0.005145,0.005145 +0.006328,0.006328,0.006328,0.006328,0.006328,0.006328 +0.00768,0.00768,0.00768,0.00768,0.00768,0.00768 +0.009212,0.009212,0.009212,0.009212,0.009212,0.009212 +0.010935,0.010935,0.010935,0.010935,0.010935,0.010935 +0.012861,0.012861,0.012861,0.012861,0.012861,0.012861 +0.015,0.015,0.015,0.015,0.015,0.015 +0.017364,0.017364,0.017364,0.017364,0.017364,0.017364 +0.019965,0.019965,0.019965,0.019965,0.019965,0.019965 +0.022813,0.022813,0.022813,0.022813,0.022813,0.022813 +0.02592,0.02592,0.02592,0.02592,0.02592,0.02592 +0.029297,0.029297,0.029297,0.029297,0.029297,0.029297 +0.032953,0.032953,0.032953,0.032953,0.032953,0.032953 +0.036891,0.036891,0.036891,0.036891,0.036891,0.036891 +0.041109,0.041109,0.041109,0.041109,0.041109,0.041109 +0.045609,0.045609,0.045609,0.045609,0.045609,0.045609 +0.050391,0.050391,0.050391,0.050391,0.050391,0.050391 +0.055453,0.055453,0.055453,0.055453,0.055453,0.055453 +0.060797,0.060797,0.060797,0.060797,0.060797,0.060797 +0.066422,0.066422,0.066422,0.066422,0.066422,0.066422 +0.072328,0.072328,0.072328,0.072328,0.072328,0.072328 +0.078516,0.078516,0.078516,0.078516,0.078516,0.078516 +0.084984,0.084984,0.084984,0.084984,0.084984,0.084984 +0.091734,0.091734,0.091734,0.091734,0.091734,0.091734 +0.098766,0.098766,0.098766,0.098766,0.098766,0.098766 +0.106078,0.106078,0.106078,0.106078,0.106078,0.106078 +0.113672,0.113672,0.113672,0.113672,0.113672,0.113672 +0.121547,0.121547,0.121547,0.121547,0.121547,0.121547 +0.129703,0.129703,0.129703,0.129703,0.129703,0.129703 +0.138141,0.138141,0.138141,0.138141,0.138141,0.138141 +0.146859,0.146859,0.146859,0.146859,0.146859,0.146859 +0.155859,0.155859,0.155859,0.155859,0.155859,0.155859 +0.165141,0.165141,0.165141,0.165141,0.165141,0.165141 +0.174703,0.174703,0.174703,0.174703,0.174703,0.174703 +0.184547,0.184547,0.184547,0.184547,0.184547,0.184547 +0.194672,0.194672,0.194672,0.194672,0.194672,0.194672 +0.205078,0.205078,0.205078,0.205078,0.205078,0.205078 +0.215766,0.215766,0.215766,0.215766,0.215766,0.215766 +0.226734,0.226734,0.226734,0.226734,0.226734,0.226734 +0.237984,0.237984,0.237984,0.237984,0.237984,0.237984 +0.249516,0.249516,0.249516,0.249516,0.249516,0.249516 +0.261328,0.261328,0.261328,0.261328,0.261328,0.261328 +0.273422,0.273422,0.273422,0.273422,0.273422,0.273422 +0.285791,0.285791,0.285791,0.285791,0.285791,0.285791 +0.298426,0.298426,0.298426,0.298426,0.298426,0.298426 +0.311314,0.311314,0.311314,0.311314,0.311314,0.311314 +0.324445,0.324445,0.324445,0.324445,0.324445,0.324445 +0.337807,0.337807,0.337807,0.337807,0.337807,0.337807 +0.351389,0.351389,0.351389,0.351389,0.351389,0.351389 +0.36518,0.36518,0.36518,0.36518,0.36518,0.36518 +0.379168,0.379168,0.379168,0.379168,0.379168,0.379168 +0.393342,0.393342,0.393342,0.393342,0.393342,0.393342 +0.407692,0.407692,0.407692,0.407692,0.407692,0.407692 +0.422205,0.422205,0.422205,0.422205,0.422205,0.422205 +0.436871,0.436871,0.436871,0.436871,0.436871,0.436871 +0.451678,0.451678,0.451678,0.451678,0.451678,0.451678 +0.466615,0.466615,0.466615,0.466615,0.466615,0.466615 +0.481671,0.481671,0.481671,0.481671,0.481671,0.481671 +0.496834,0.496834,0.496834,0.496834,0.496834,0.496834 +0.512093,0.512093,0.512093,0.512093,0.512093,0.512093 +0.527438,0.527438,0.527438,0.527438,0.527438,0.527438 +0.542856,0.542856,0.542856,0.542856,0.542856,0.542856 +0.558337,0.558337,0.558337,0.558337,0.558337,0.558337 +0.573869,0.573869,0.573869,0.573869,0.573869,0.573869 +0.589441,0.589441,0.589441,0.589441,0.589441,0.589441 +0.605042,0.605042,0.605042,0.605042,0.605042,0.605042 +0.62066,0.62066,0.62066,0.62066,0.62066,0.62066 +0.636285,0.636285,0.636285,0.636285,0.636285,0.636285 +0.65191,0.65191,0.65191,0.65191,0.65191,0.65191 +0.667535,0.667535,0.667535,0.667535,0.667535,0.667535 +0.68316,0.68316,0.68316,0.68316,0.68316,0.68316 +0.698785,0.698785,0.698785,0.698785,0.698785,0.698785 +0.71441,0.71441,0.71441,0.71441,0.71441,0.71441 +0.730035,0.730035,0.730035,0.730035,0.730035,0.730035 +0.74566,0.74566,0.74566,0.74566,0.74566,0.74566 +0.761285,0.761285,0.761285,0.761285,0.761285,0.761285 +0.77691,0.77691,0.77691,0.77691,0.77691,0.77691 +0.792535,0.792535,0.792535,0.792535,0.792535,0.792535 +0.80816,0.80816,0.80816,0.80816,0.80816,0.80816 +0.823785,0.823785,0.823785,0.823785,0.823785,0.823785 +0.83941,0.83941,0.83941,0.83941,0.83941,0.83941 +0.855035,0.855035,0.855035,0.855035,0.855035,0.855035 +0.87066,0.87066,0.87066,0.87066,0.87066,0.87066 +0.886285,0.886285,0.886285,0.886285,0.886285,0.886285 +0.90191,0.90191,0.90191,0.90191,0.90191,0.90191 +0.917535,0.917535,0.917535,0.917535,0.917535,0.917535 +0.93316,0.93316,0.93316,0.93316,0.93316,0.93316 +0.948785,0.948785,0.948785,0.948785,0.948785,0.948785 +0.96441,0.96441,0.96441,0.96441,0.96441,0.96441 +0.980035,0.980035,0.980035,0.980035,0.980035,0.980035 +0.99566,0.99566,0.99566,0.99566,0.99566,0.99566 +1.011285,1.011285,1.011285,1.011285,1.011285,1.011285 +1.02691,1.02691,1.02691,1.02691,1.02691,1.02691 +1.042535,1.042535,1.042535,1.042535,1.042535,1.042535 +1.05816,1.05816,1.05816,1.05816,1.05816,1.05816 +1.073785,1.073785,1.073785,1.073785,1.073785,1.073785 +1.08941,1.08941,1.08941,1.08941,1.08941,1.08941 +1.105035,1.105035,1.105035,1.105035,1.105035,1.105035 +1.12066,1.12066,1.12066,1.12066,1.12066,1.12066 +1.136281,1.136281,1.136281,1.136281,1.136281,1.136281 +1.151887,1.151887,1.151887,1.151887,1.151887,1.151887 +1.167467,1.167467,1.167467,1.167467,1.167467,1.167467 +1.183011,1.183011,1.183011,1.183011,1.183011,1.183011 +1.198505,1.198505,1.198505,1.198505,1.198505,1.198505 +1.213941,1.213941,1.213941,1.213941,1.213941,1.213941 +1.229305,1.229305,1.229305,1.229305,1.229305,1.229305 +1.244587,1.244587,1.244587,1.244587,1.244587,1.244587 +1.259776,1.259776,1.259776,1.259776,1.259776,1.259776 +1.27486,1.27486,1.27486,1.27486,1.27486,1.27486 +1.289829,1.289829,1.289829,1.289829,1.289829,1.289829 +1.30467,1.30467,1.30467,1.30467,1.30467,1.30467 +1.319373,1.319373,1.319373,1.319373,1.319373,1.319373 +1.333926,1.333926,1.333926,1.333926,1.333926,1.333926 +1.348318,1.348318,1.348318,1.348318,1.348318,1.348318 +1.362538,1.362538,1.362538,1.362538,1.362538,1.362538 +1.376575,1.376575,1.376575,1.376575,1.376575,1.376575 +1.390417,1.390417,1.390417,1.390417,1.390417,1.390417 +1.404054,1.404054,1.404054,1.404054,1.404054,1.404054 +1.417473,1.417473,1.417473,1.417473,1.417473,1.417473 +1.430663,1.430663,1.430663,1.430663,1.430663,1.430663 +1.443615,1.443615,1.443615,1.443615,1.443615,1.443615 +1.456315,1.456315,1.456315,1.456315,1.456315,1.456315 +1.468753,1.468753,1.468753,1.468753,1.468753,1.468753 +1.480918,1.480918,1.480918,1.480918,1.480918,1.480918 +1.492802,1.492802,1.492802,1.492802,1.492802,1.492802 +1.504405,1.504405,1.504405,1.504405,1.504405,1.504405 +1.515726,1.515726,1.515726,1.515726,1.515726,1.515726 +1.526767,1.526767,1.526767,1.526767,1.526767,1.526767 +1.537526,1.537526,1.537526,1.537526,1.537526,1.537526 +1.548004,1.548004,1.548004,1.548004,1.548004,1.548004 +1.5582,1.5582,1.5582,1.5582,1.5582,1.5582 +1.568116,1.568116,1.568116,1.568116,1.568116,1.568116 +1.57775,1.57775,1.57775,1.57775,1.57775,1.57775 +1.587103,1.587103,1.587103,1.587103,1.587103,1.587103 +1.596175,1.596175,1.596175,1.596175,1.596175,1.596175 +1.604965,1.604965,1.604965,1.604965,1.604965,1.604965 +1.613474,1.613474,1.613474,1.613474,1.613474,1.613474 +1.621702,1.621702,1.621702,1.621702,1.621702,1.621702 +1.629649,1.629649,1.629649,1.629649,1.629649,1.629649 +1.637314,1.637314,1.637314,1.637314,1.637314,1.637314 +1.644698,1.644698,1.644698,1.644698,1.644698,1.644698 +1.651801,1.651801,1.651801,1.651801,1.651801,1.651801 +1.658623,1.658623,1.658623,1.658623,1.658623,1.658623 +1.665163,1.665163,1.665163,1.665163,1.665163,1.665163 +1.671422,1.671422,1.671422,1.671422,1.671422,1.671422 +1.6774,1.6774,1.6774,1.6774,1.6774,1.6774 +1.683097,1.683097,1.683097,1.683097,1.683097,1.683097 +1.688512,1.688512,1.688512,1.688512,1.688512,1.688512 +1.693646,1.693646,1.693646,1.693646,1.693646,1.693646 +1.698499,1.698499,1.698499,1.698499,1.698499,1.698499 +1.703071,1.703071,1.703071,1.703071,1.703071,1.703071 +1.707361,1.707361,1.707361,1.707361,1.707361,1.707361 +1.71137,1.71137,1.71137,1.71137,1.71137,1.71137 +1.715098,1.715098,1.715098,1.715098,1.715098,1.715098 +1.718546,1.718546,1.718546,1.718546,1.718546,1.718546 +1.72172,1.72172,1.72172,1.72172,1.72172,1.72172 +1.724633,1.724633,1.724633,1.724633,1.724633,1.724633 +1.727296,1.727296,1.727296,1.727296,1.727296,1.727296 +1.729719,1.729719,1.729719,1.729719,1.729719,1.729719 +1.731915,1.731915,1.731915,1.731915,1.731915,1.731915 +1.733894,1.733894,1.733894,1.733894,1.733894,1.733894 +1.735668,1.735668,1.735668,1.735668,1.735668,1.735668 +1.737247,1.737247,1.737247,1.737247,1.737247,1.737247 +1.738644,1.738644,1.738644,1.738644,1.738644,1.738644 +1.739869,1.739869,1.739869,1.739869,1.739869,1.739869 +1.740934,1.740934,1.740934,1.740934,1.740934,1.740934 +1.741849,1.741849,1.741849,1.741849,1.741849,1.741849 +1.742627,1.742627,1.742627,1.742627,1.742627,1.742627 +1.743278,1.743278,1.743278,1.743278,1.743278,1.743278 +1.743814,1.743814,1.743814,1.743814,1.743814,1.743814 +1.744245,1.744245,1.744245,1.744245,1.744245,1.744245 +1.744584,1.744584,1.744584,1.744584,1.744584,1.744584 +1.744841,1.744841,1.744841,1.744841,1.744841,1.744841 +1.745028,1.745028,1.745028,1.745028,1.745028,1.745028 +1.745156,1.745156,1.745156,1.745156,1.745156,1.745156 +1.745235,1.745235,1.745235,1.745235,1.745235,1.745235 +1.745279,1.745279,1.745279,1.745279,1.745279,1.745279 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745285,1.745285,1.745285,1.745285,1.745285,1.745285 +1.745249,1.745249,1.745249,1.745249,1.745249,1.745249 +1.74518,1.74518,1.74518,1.74518,1.74518,1.74518 +1.745066,1.745066,1.745066,1.745066,1.745066,1.745066 +1.744895,1.744895,1.744895,1.744895,1.744895,1.744895 +1.744657,1.744657,1.744657,1.744657,1.744657,1.744657 +1.74434,1.74434,1.74434,1.74434,1.74434,1.74434 +1.743933,1.743933,1.743933,1.743933,1.743933,1.743933 +1.743425,1.743425,1.743425,1.743425,1.743425,1.743425 +1.742804,1.742804,1.742804,1.742804,1.742804,1.742804 +1.74206,1.74206,1.74206,1.74206,1.74206,1.74206 +1.741181,1.741181,1.741181,1.741181,1.741181,1.741181 +1.740155,1.740155,1.740155,1.740155,1.740155,1.740155 +1.738972,1.738972,1.738972,1.738972,1.738972,1.738972 +1.73762,1.73762,1.73762,1.73762,1.73762,1.73762 +1.736088,1.736088,1.736088,1.736088,1.736088,1.736088 +1.734365,1.734365,1.734365,1.734365,1.734365,1.734365 +1.732439,1.732439,1.732439,1.732439,1.732439,1.732439 +1.7303,1.7303,1.7303,1.7303,1.7303,1.7303 +1.727936,1.727936,1.727936,1.727936,1.727936,1.727936 +1.725335,1.725335,1.725335,1.725335,1.725335,1.725335 +1.722487,1.722487,1.722487,1.722487,1.722487,1.722487 +1.71938,1.71938,1.71938,1.71938,1.71938,1.71938 +1.716003,1.716003,1.716003,1.716003,1.716003,1.716003 +1.712347,1.712347,1.712347,1.712347,1.712347,1.712347 +1.708409,1.708409,1.708409,1.708409,1.708409,1.708409 +1.704191,1.704191,1.704191,1.704191,1.704191,1.704191 +1.699691,1.699691,1.699691,1.699691,1.699691,1.699691 +1.694909,1.694909,1.694909,1.694909,1.694909,1.694909 +1.689847,1.689847,1.689847,1.689847,1.689847,1.689847 +1.684503,1.684503,1.684503,1.684503,1.684503,1.684503 +1.678878,1.678878,1.678878,1.678878,1.678878,1.678878 +1.672972,1.672972,1.672972,1.672972,1.672972,1.672972 +1.666784,1.666784,1.666784,1.666784,1.666784,1.666784 +1.660316,1.660316,1.660316,1.660316,1.660316,1.660316 +1.653566,1.653566,1.653566,1.653566,1.653566,1.653566 +1.646534,1.646534,1.646534,1.646534,1.646534,1.646534 +1.639222,1.639222,1.639222,1.639222,1.639222,1.639222 +1.631628,1.631628,1.631628,1.631628,1.631628,1.631628 +1.623753,1.623753,1.623753,1.623753,1.623753,1.623753 +1.615597,1.615597,1.615597,1.615597,1.615597,1.615597 +1.607159,1.607159,1.607159,1.607159,1.607159,1.607159 +1.598441,1.598441,1.598441,1.598441,1.598441,1.598441 +1.589441,1.589441,1.589441,1.589441,1.589441,1.589441 +1.580159,1.580159,1.580159,1.580159,1.580159,1.580159 +1.570597,1.570597,1.570597,1.570597,1.570597,1.570597 +1.560753,1.560753,1.560753,1.560753,1.560753,1.560753 +1.550628,1.550628,1.550628,1.550628,1.550628,1.550628 +1.540222,1.540222,1.540222,1.540222,1.540222,1.540222 +1.529534,1.529534,1.529534,1.529534,1.529534,1.529534 +1.518566,1.518566,1.518566,1.518566,1.518566,1.518566 +1.507316,1.507316,1.507316,1.507316,1.507316,1.507316 +1.495784,1.495784,1.495784,1.495784,1.495784,1.495784 +1.483972,1.483972,1.483972,1.483972,1.483972,1.483972 +1.471878,1.471878,1.471878,1.471878,1.471878,1.471878 +1.459509,1.459509,1.459509,1.459509,1.459509,1.459509 +1.446874,1.446874,1.446874,1.446874,1.446874,1.446874 +1.433986,1.433986,1.433986,1.433986,1.433986,1.433986 +1.420855,1.420855,1.420855,1.420855,1.420855,1.420855 +1.407493,1.407493,1.407493,1.407493,1.407493,1.407493 +1.393911,1.393911,1.393911,1.393911,1.393911,1.393911 +1.38012,1.38012,1.38012,1.38012,1.38012,1.38012 +1.366132,1.366132,1.366132,1.366132,1.366132,1.366132 +1.351958,1.351958,1.351958,1.351958,1.351958,1.351958 +1.337608,1.337608,1.337608,1.337608,1.337608,1.337608 +1.323095,1.323095,1.323095,1.323095,1.323095,1.323095 +1.308429,1.308429,1.308429,1.308429,1.308429,1.308429 +1.293622,1.293622,1.293622,1.293622,1.293622,1.293622 +1.278685,1.278685,1.278685,1.278685,1.278685,1.278685 +1.263629,1.263629,1.263629,1.263629,1.263629,1.263629 +1.248466,1.248466,1.248466,1.248466,1.248466,1.248466 +1.233207,1.233207,1.233207,1.233207,1.233207,1.233207 +1.217862,1.217862,1.217862,1.217862,1.217862,1.217862 +1.202444,1.202444,1.202444,1.202444,1.202444,1.202444 +1.186963,1.186963,1.186963,1.186963,1.186963,1.186963 +1.171431,1.171431,1.171431,1.171431,1.171431,1.171431 +1.155859,1.155859,1.155859,1.155859,1.155859,1.155859 +1.140258,1.140258,1.140258,1.140258,1.140258,1.140258 +1.12464,1.12464,1.12464,1.12464,1.12464,1.12464 +1.109015,1.109015,1.109015,1.109015,1.109015,1.109015 +1.09339,1.09339,1.09339,1.09339,1.09339,1.09339 +1.077765,1.077765,1.077765,1.077765,1.077765,1.077765 +1.06214,1.06214,1.06214,1.06214,1.06214,1.06214 +1.046515,1.046515,1.046515,1.046515,1.046515,1.046515 +1.03089,1.03089,1.03089,1.03089,1.03089,1.03089 +1.015265,1.015265,1.015265,1.015265,1.015265,1.015265 +0.99964,0.99964,0.99964,0.99964,0.99964,0.99964 +0.984015,0.984015,0.984015,0.984015,0.984015,0.984015 +0.96839,0.96839,0.96839,0.96839,0.96839,0.96839 +0.952765,0.952765,0.952765,0.952765,0.952765,0.952765 +0.93714,0.93714,0.93714,0.93714,0.93714,0.93714 +0.921515,0.921515,0.921515,0.921515,0.921515,0.921515 +0.90589,0.90589,0.90589,0.90589,0.90589,0.90589 +0.890265,0.890265,0.890265,0.890265,0.890265,0.890265 +0.87464,0.87464,0.87464,0.87464,0.87464,0.87464 +0.859015,0.859015,0.859015,0.859015,0.859015,0.859015 +0.84339,0.84339,0.84339,0.84339,0.84339,0.84339 +0.827765,0.827765,0.827765,0.827765,0.827765,0.827765 +0.81214,0.81214,0.81214,0.81214,0.81214,0.81214 +0.796515,0.796515,0.796515,0.796515,0.796515,0.796515 +0.78089,0.78089,0.78089,0.78089,0.78089,0.78089 +0.765265,0.765265,0.765265,0.765265,0.765265,0.765265 +0.74964,0.74964,0.74964,0.74964,0.74964,0.74964 +0.734015,0.734015,0.734015,0.734015,0.734015,0.734015 +0.71839,0.71839,0.71839,0.71839,0.71839,0.71839 +0.702765,0.702765,0.702765,0.702765,0.702765,0.702765 +0.68714,0.68714,0.68714,0.68714,0.68714,0.68714 +0.671515,0.671515,0.671515,0.671515,0.671515,0.671515 +0.65589,0.65589,0.65589,0.65589,0.65589,0.65589 +0.640265,0.640265,0.640265,0.640265,0.640265,0.640265 +0.62464,0.62464,0.62464,0.62464,0.62464,0.62464 +0.609019,0.609019,0.609019,0.609019,0.609019,0.609019 +0.593413,0.593413,0.593413,0.593413,0.593413,0.593413 +0.577833,0.577833,0.577833,0.577833,0.577833,0.577833 +0.562289,0.562289,0.562289,0.562289,0.562289,0.562289 +0.546795,0.546795,0.546795,0.546795,0.546795,0.546795 +0.531359,0.531359,0.531359,0.531359,0.531359,0.531359 +0.515995,0.515995,0.515995,0.515995,0.515995,0.515995 +0.500713,0.500713,0.500713,0.500713,0.500713,0.500713 +0.485524,0.485524,0.485524,0.485524,0.485524,0.485524 +0.47044,0.47044,0.47044,0.47044,0.47044,0.47044 +0.455471,0.455471,0.455471,0.455471,0.455471,0.455471 +0.44063,0.44063,0.44063,0.44063,0.44063,0.44063 +0.425927,0.425927,0.425927,0.425927,0.425927,0.425927 +0.411374,0.411374,0.411374,0.411374,0.411374,0.411374 +0.396982,0.396982,0.396982,0.396982,0.396982,0.396982 +0.382762,0.382762,0.382762,0.382762,0.382762,0.382762 +0.368725,0.368725,0.368725,0.368725,0.368725,0.368725 +0.354883,0.354883,0.354883,0.354883,0.354883,0.354883 +0.341246,0.341246,0.341246,0.341246,0.341246,0.341246 +0.327827,0.327827,0.327827,0.327827,0.327827,0.327827 +0.314637,0.314637,0.314637,0.314637,0.314637,0.314637 +0.301685,0.301685,0.301685,0.301685,0.301685,0.301685 +0.288985,0.288985,0.288985,0.288985,0.288985,0.288985 +0.276547,0.276547,0.276547,0.276547,0.276547,0.276547 +0.264382,0.264382,0.264382,0.264382,0.264382,0.264382 +0.252498,0.252498,0.252498,0.252498,0.252498,0.252498 +0.240895,0.240895,0.240895,0.240895,0.240895,0.240895 +0.229574,0.229574,0.229574,0.229574,0.229574,0.229574 +0.218533,0.218533,0.218533,0.218533,0.218533,0.218533 +0.207774,0.207774,0.207774,0.207774,0.207774,0.207774 +0.197296,0.197296,0.197296,0.197296,0.197296,0.197296 +0.1871,0.1871,0.1871,0.1871,0.1871,0.1871 +0.177184,0.177184,0.177184,0.177184,0.177184,0.177184 +0.16755,0.16755,0.16755,0.16755,0.16755,0.16755 +0.158197,0.158197,0.158197,0.158197,0.158197,0.158197 +0.149125,0.149125,0.149125,0.149125,0.149125,0.149125 +0.140335,0.140335,0.140335,0.140335,0.140335,0.140335 +0.131826,0.131826,0.131826,0.131826,0.131826,0.131826 +0.123598,0.123598,0.123598,0.123598,0.123598,0.123598 +0.115651,0.115651,0.115651,0.115651,0.115651,0.115651 +0.107986,0.107986,0.107986,0.107986,0.107986,0.107986 +0.100602,0.100602,0.100602,0.100602,0.100602,0.100602 +0.093499,0.093499,0.093499,0.093499,0.093499,0.093499 +0.086677,0.086677,0.086677,0.086677,0.086677,0.086677 +0.080137,0.080137,0.080137,0.080137,0.080137,0.080137 +0.073878,0.073878,0.073878,0.073878,0.073878,0.073878 +0.0679,0.0679,0.0679,0.0679,0.0679,0.0679 +0.062203,0.062203,0.062203,0.062203,0.062203,0.062203 +0.056788,0.056788,0.056788,0.056788,0.056788,0.056788 +0.051654,0.051654,0.051654,0.051654,0.051654,0.051654 +0.046801,0.046801,0.046801,0.046801,0.046801,0.046801 +0.042229,0.042229,0.042229,0.042229,0.042229,0.042229 +0.037939,0.037939,0.037939,0.037939,0.037939,0.037939 +0.03393,0.03393,0.03393,0.03393,0.03393,0.03393 +0.030202,0.030202,0.030202,0.030202,0.030202,0.030202 +0.026754,0.026754,0.026754,0.026754,0.026754,0.026754 +0.02358,0.02358,0.02358,0.02358,0.02358,0.02358 +0.020667,0.020667,0.020667,0.020667,0.020667,0.020667 +0.018004,0.018004,0.018004,0.018004,0.018004,0.018004 +0.015581,0.015581,0.015581,0.015581,0.015581,0.015581 +0.013385,0.013385,0.013385,0.013385,0.013385,0.013385 +0.011406,0.011406,0.011406,0.011406,0.011406,0.011406 +0.009632,0.009632,0.009632,0.009632,0.009632,0.009632 +0.008053,0.008053,0.008053,0.008053,0.008053,0.008053 +0.006656,0.006656,0.006656,0.006656,0.006656,0.006656 +0.005431,0.005431,0.005431,0.005431,0.005431,0.005431 +0.004366,0.004366,0.004366,0.004366,0.004366,0.004366 +0.003451,0.003451,0.003451,0.003451,0.003451,0.003451 +0.002673,0.002673,0.002673,0.002673,0.002673,0.002673 +0.002022,0.002022,0.002022,0.002022,0.002022,0.002022 +0.001486,0.001486,0.001486,0.001486,0.001486,0.001486 +0.001055,0.001055,0.001055,0.001055,0.001055,0.001055 +0.000716,0.000716,0.000716,0.000716,0.000716,0.000716 +0.000459,0.000459,0.000459,0.000459,0.000459,0.000459 +0.000272,0.000272,0.000272,0.000272,0.000272,0.000272 +0.000144,0.000144,0.000144,0.000144,0.000144,0.000144 +0.000065,0.000065,0.000065,0.000065,0.000065,0.000065 +0.000021,0.000021,0.000021,0.000021,0.000021,0.000021 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000015,-0.000015,-0.000015,-0.000015,-0.000015,-0.000015 +-0.000051,-0.000051,-0.000051,-0.000051,-0.000051,-0.000051 +-0.00012,-0.00012,-0.00012,-0.00012,-0.00012,-0.00012 +-0.000234,-0.000234,-0.000234,-0.000234,-0.000234,-0.000234 +-0.000405,-0.000405,-0.000405,-0.000405,-0.000405,-0.000405 +-0.000643,-0.000643,-0.000643,-0.000643,-0.000643,-0.000643 +-0.00096,-0.00096,-0.00096,-0.00096,-0.00096,-0.00096 +-0.001367,-0.001367,-0.001367,-0.001367,-0.001367,-0.001367 +-0.001875,-0.001875,-0.001875,-0.001875,-0.001875,-0.001875 +-0.002496,-0.002496,-0.002496,-0.002496,-0.002496,-0.002496 +-0.00324,-0.00324,-0.00324,-0.00324,-0.00324,-0.00324 +-0.004119,-0.004119,-0.004119,-0.004119,-0.004119,-0.004119 +-0.005145,-0.005145,-0.005145,-0.005145,-0.005145,-0.005145 +-0.006328,-0.006328,-0.006328,-0.006328,-0.006328,-0.006328 +-0.00768,-0.00768,-0.00768,-0.00768,-0.00768,-0.00768 +-0.009212,-0.009212,-0.009212,-0.009212,-0.009212,-0.009212 +-0.010935,-0.010935,-0.010935,-0.010935,-0.010935,-0.010935 +-0.012861,-0.012861,-0.012861,-0.012861,-0.012861,-0.012861 +-0.015,-0.015,-0.015,-0.015,-0.015,-0.015 +-0.017364,-0.017364,-0.017364,-0.017364,-0.017364,-0.017364 +-0.019965,-0.019965,-0.019965,-0.019965,-0.019965,-0.019965 +-0.022813,-0.022813,-0.022813,-0.022813,-0.022813,-0.022813 +-0.02592,-0.02592,-0.02592,-0.02592,-0.02592,-0.02592 +-0.029297,-0.029297,-0.029297,-0.029297,-0.029297,-0.029297 +-0.032953,-0.032953,-0.032953,-0.032953,-0.032953,-0.032953 +-0.036891,-0.036891,-0.036891,-0.036891,-0.036891,-0.036891 +-0.041109,-0.041109,-0.041109,-0.041109,-0.041109,-0.041109 +-0.045609,-0.045609,-0.045609,-0.045609,-0.045609,-0.045609 +-0.050391,-0.050391,-0.050391,-0.050391,-0.050391,-0.050391 +-0.055453,-0.055453,-0.055453,-0.055453,-0.055453,-0.055453 +-0.060797,-0.060797,-0.060797,-0.060797,-0.060797,-0.060797 +-0.066422,-0.066422,-0.066422,-0.066422,-0.066422,-0.066422 +-0.072328,-0.072328,-0.072328,-0.072328,-0.072328,-0.072328 +-0.078516,-0.078516,-0.078516,-0.078516,-0.078516,-0.078516 +-0.084984,-0.084984,-0.084984,-0.084984,-0.084984,-0.084984 +-0.091734,-0.091734,-0.091734,-0.091734,-0.091734,-0.091734 +-0.098766,-0.098766,-0.098766,-0.098766,-0.098766,-0.098766 +-0.106078,-0.106078,-0.106078,-0.106078,-0.106078,-0.106078 +-0.113672,-0.113672,-0.113672,-0.113672,-0.113672,-0.113672 +-0.121547,-0.121547,-0.121547,-0.121547,-0.121547,-0.121547 +-0.129703,-0.129703,-0.129703,-0.129703,-0.129703,-0.129703 +-0.138141,-0.138141,-0.138141,-0.138141,-0.138141,-0.138141 +-0.146859,-0.146859,-0.146859,-0.146859,-0.146859,-0.146859 +-0.155859,-0.155859,-0.155859,-0.155859,-0.155859,-0.155859 +-0.165141,-0.165141,-0.165141,-0.165141,-0.165141,-0.165141 +-0.174703,-0.174703,-0.174703,-0.174703,-0.174703,-0.174703 +-0.184547,-0.184547,-0.184547,-0.184547,-0.184547,-0.184547 +-0.194672,-0.194672,-0.194672,-0.194672,-0.194672,-0.194672 +-0.205078,-0.205078,-0.205078,-0.205078,-0.205078,-0.205078 +-0.215766,-0.215766,-0.215766,-0.215766,-0.215766,-0.215766 +-0.226734,-0.226734,-0.226734,-0.226734,-0.226734,-0.226734 +-0.237984,-0.237984,-0.237984,-0.237984,-0.237984,-0.237984 +-0.249516,-0.249516,-0.249516,-0.249516,-0.249516,-0.249516 +-0.261328,-0.261328,-0.261328,-0.261328,-0.261328,-0.261328 +-0.273422,-0.273422,-0.273422,-0.273422,-0.273422,-0.273422 +-0.285791,-0.285791,-0.285791,-0.285791,-0.285791,-0.285791 +-0.298426,-0.298426,-0.298426,-0.298426,-0.298426,-0.298426 +-0.311314,-0.311314,-0.311314,-0.311314,-0.311314,-0.311314 +-0.324445,-0.324445,-0.324445,-0.324445,-0.324445,-0.324445 +-0.337807,-0.337807,-0.337807,-0.337807,-0.337807,-0.337807 +-0.351389,-0.351389,-0.351389,-0.351389,-0.351389,-0.351389 +-0.36518,-0.36518,-0.36518,-0.36518,-0.36518,-0.36518 +-0.379168,-0.379168,-0.379168,-0.379168,-0.379168,-0.379168 +-0.393342,-0.393342,-0.393342,-0.393342,-0.393342,-0.393342 +-0.407692,-0.407692,-0.407692,-0.407692,-0.407692,-0.407692 +-0.422205,-0.422205,-0.422205,-0.422205,-0.422205,-0.422205 +-0.436871,-0.436871,-0.436871,-0.436871,-0.436871,-0.436871 +-0.451678,-0.451678,-0.451678,-0.451678,-0.451678,-0.451678 +-0.466615,-0.466615,-0.466615,-0.466615,-0.466615,-0.466615 +-0.481671,-0.481671,-0.481671,-0.481671,-0.481671,-0.481671 +-0.496834,-0.496834,-0.496834,-0.496834,-0.496834,-0.496834 +-0.512093,-0.512093,-0.512093,-0.512093,-0.512093,-0.512093 +-0.527438,-0.527438,-0.527438,-0.527438,-0.527438,-0.527438 +-0.542856,-0.542856,-0.542856,-0.542856,-0.542856,-0.542856 +-0.558337,-0.558337,-0.558337,-0.558337,-0.558337,-0.558337 +-0.573869,-0.573869,-0.573869,-0.573869,-0.573869,-0.573869 +-0.589441,-0.589441,-0.589441,-0.589441,-0.589441,-0.589441 +-0.605042,-0.605042,-0.605042,-0.605042,-0.605042,-0.605042 +-0.62066,-0.62066,-0.62066,-0.62066,-0.62066,-0.62066 +-0.636285,-0.636285,-0.636285,-0.636285,-0.636285,-0.636285 +-0.65191,-0.65191,-0.65191,-0.65191,-0.65191,-0.65191 +-0.667535,-0.667535,-0.667535,-0.667535,-0.667535,-0.667535 +-0.68316,-0.68316,-0.68316,-0.68316,-0.68316,-0.68316 +-0.698785,-0.698785,-0.698785,-0.698785,-0.698785,-0.698785 +-0.71441,-0.71441,-0.71441,-0.71441,-0.71441,-0.71441 +-0.730035,-0.730035,-0.730035,-0.730035,-0.730035,-0.730035 +-0.74566,-0.74566,-0.74566,-0.74566,-0.74566,-0.74566 +-0.761285,-0.761285,-0.761285,-0.761285,-0.761285,-0.761285 +-0.77691,-0.77691,-0.77691,-0.77691,-0.77691,-0.77691 +-0.792535,-0.792535,-0.792535,-0.792535,-0.792535,-0.792535 +-0.80816,-0.80816,-0.80816,-0.80816,-0.80816,-0.80816 +-0.823785,-0.823785,-0.823785,-0.823785,-0.823785,-0.823785 +-0.83941,-0.83941,-0.83941,-0.83941,-0.83941,-0.83941 +-0.855035,-0.855035,-0.855035,-0.855035,-0.855035,-0.855035 +-0.87066,-0.87066,-0.87066,-0.87066,-0.87066,-0.87066 +-0.886285,-0.886285,-0.886285,-0.886285,-0.886285,-0.886285 +-0.90191,-0.90191,-0.90191,-0.90191,-0.90191,-0.90191 +-0.917535,-0.917535,-0.917535,-0.917535,-0.917535,-0.917535 +-0.93316,-0.93316,-0.93316,-0.93316,-0.93316,-0.93316 +-0.948785,-0.948785,-0.948785,-0.948785,-0.948785,-0.948785 +-0.96441,-0.96441,-0.96441,-0.96441,-0.96441,-0.96441 +-0.980035,-0.980035,-0.980035,-0.980035,-0.980035,-0.980035 +-0.99566,-0.99566,-0.99566,-0.99566,-0.99566,-0.99566 +-1.011285,-1.011285,-1.011285,-1.011285,-1.011285,-1.011285 +-1.02691,-1.02691,-1.02691,-1.02691,-1.02691,-1.02691 +-1.042535,-1.042535,-1.042535,-1.042535,-1.042535,-1.042535 +-1.05816,-1.05816,-1.05816,-1.05816,-1.05816,-1.05816 +-1.073785,-1.073785,-1.073785,-1.073785,-1.073785,-1.073785 +-1.08941,-1.08941,-1.08941,-1.08941,-1.08941,-1.08941 +-1.105035,-1.105035,-1.105035,-1.105035,-1.105035,-1.105035 +-1.12066,-1.12066,-1.12066,-1.12066,-1.12066,-1.12066 +-1.136281,-1.136281,-1.136281,-1.136281,-1.136281,-1.136281 +-1.151887,-1.151887,-1.151887,-1.151887,-1.151887,-1.151887 +-1.167467,-1.167467,-1.167467,-1.167467,-1.167467,-1.167467 +-1.183011,-1.183011,-1.183011,-1.183011,-1.183011,-1.183011 +-1.198505,-1.198505,-1.198505,-1.198505,-1.198505,-1.198505 +-1.213941,-1.213941,-1.213941,-1.213941,-1.213941,-1.213941 +-1.229305,-1.229305,-1.229305,-1.229305,-1.229305,-1.229305 +-1.244587,-1.244587,-1.244587,-1.244587,-1.244587,-1.244587 +-1.259776,-1.259776,-1.259776,-1.259776,-1.259776,-1.259776 +-1.27486,-1.27486,-1.27486,-1.27486,-1.27486,-1.27486 +-1.289829,-1.289829,-1.289829,-1.289829,-1.289829,-1.289829 +-1.30467,-1.30467,-1.30467,-1.30467,-1.30467,-1.30467 +-1.319373,-1.319373,-1.319373,-1.319373,-1.319373,-1.319373 +-1.333926,-1.333926,-1.333926,-1.333926,-1.333926,-1.333926 +-1.348318,-1.348318,-1.348318,-1.348318,-1.348318,-1.348318 +-1.362538,-1.362538,-1.362538,-1.362538,-1.362538,-1.362538 +-1.376575,-1.376575,-1.376575,-1.376575,-1.376575,-1.376575 +-1.390417,-1.390417,-1.390417,-1.390417,-1.390417,-1.390417 +-1.404054,-1.404054,-1.404054,-1.404054,-1.404054,-1.404054 +-1.417473,-1.417473,-1.417473,-1.417473,-1.417473,-1.417473 +-1.430663,-1.430663,-1.430663,-1.430663,-1.430663,-1.430663 +-1.443615,-1.443615,-1.443615,-1.443615,-1.443615,-1.443615 +-1.456315,-1.456315,-1.456315,-1.456315,-1.456315,-1.456315 +-1.468753,-1.468753,-1.468753,-1.468753,-1.468753,-1.468753 +-1.480918,-1.480918,-1.480918,-1.480918,-1.480918,-1.480918 +-1.492802,-1.492802,-1.492802,-1.492802,-1.492802,-1.492802 +-1.504405,-1.504405,-1.504405,-1.504405,-1.504405,-1.504405 +-1.515726,-1.515726,-1.515726,-1.515726,-1.515726,-1.515726 +-1.526767,-1.526767,-1.526767,-1.526767,-1.526767,-1.526767 +-1.537526,-1.537526,-1.537526,-1.537526,-1.537526,-1.537526 +-1.548004,-1.548004,-1.548004,-1.548004,-1.548004,-1.548004 +-1.5582,-1.5582,-1.5582,-1.5582,-1.5582,-1.5582 +-1.568116,-1.568116,-1.568116,-1.568116,-1.568116,-1.568116 +-1.57775,-1.57775,-1.57775,-1.57775,-1.57775,-1.57775 +-1.587103,-1.587103,-1.587103,-1.587103,-1.587103,-1.587103 +-1.596175,-1.596175,-1.596175,-1.596175,-1.596175,-1.596175 +-1.604965,-1.604965,-1.604965,-1.604965,-1.604965,-1.604965 +-1.613474,-1.613474,-1.613474,-1.613474,-1.613474,-1.613474 +-1.621702,-1.621702,-1.621702,-1.621702,-1.621702,-1.621702 +-1.629649,-1.629649,-1.629649,-1.629649,-1.629649,-1.629649 +-1.637314,-1.637314,-1.637314,-1.637314,-1.637314,-1.637314 +-1.644698,-1.644698,-1.644698,-1.644698,-1.644698,-1.644698 +-1.651801,-1.651801,-1.651801,-1.651801,-1.651801,-1.651801 +-1.658623,-1.658623,-1.658623,-1.658623,-1.658623,-1.658623 +-1.665163,-1.665163,-1.665163,-1.665163,-1.665163,-1.665163 +-1.671422,-1.671422,-1.671422,-1.671422,-1.671422,-1.671422 +-1.6774,-1.6774,-1.6774,-1.6774,-1.6774,-1.6774 +-1.683097,-1.683097,-1.683097,-1.683097,-1.683097,-1.683097 +-1.688512,-1.688512,-1.688512,-1.688512,-1.688512,-1.688512 +-1.693646,-1.693646,-1.693646,-1.693646,-1.693646,-1.693646 +-1.698499,-1.698499,-1.698499,-1.698499,-1.698499,-1.698499 +-1.703071,-1.703071,-1.703071,-1.703071,-1.703071,-1.703071 +-1.707361,-1.707361,-1.707361,-1.707361,-1.707361,-1.707361 +-1.71137,-1.71137,-1.71137,-1.71137,-1.71137,-1.71137 +-1.715098,-1.715098,-1.715098,-1.715098,-1.715098,-1.715098 +-1.718546,-1.718546,-1.718546,-1.718546,-1.718546,-1.718546 +-1.72172,-1.72172,-1.72172,-1.72172,-1.72172,-1.72172 +-1.724633,-1.724633,-1.724633,-1.724633,-1.724633,-1.724633 +-1.727296,-1.727296,-1.727296,-1.727296,-1.727296,-1.727296 +-1.729719,-1.729719,-1.729719,-1.729719,-1.729719,-1.729719 +-1.731915,-1.731915,-1.731915,-1.731915,-1.731915,-1.731915 +-1.733894,-1.733894,-1.733894,-1.733894,-1.733894,-1.733894 +-1.735668,-1.735668,-1.735668,-1.735668,-1.735668,-1.735668 +-1.737247,-1.737247,-1.737247,-1.737247,-1.737247,-1.737247 +-1.738644,-1.738644,-1.738644,-1.738644,-1.738644,-1.738644 +-1.739869,-1.739869,-1.739869,-1.739869,-1.739869,-1.739869 +-1.740934,-1.740934,-1.740934,-1.740934,-1.740934,-1.740934 +-1.741849,-1.741849,-1.741849,-1.741849,-1.741849,-1.741849 +-1.742627,-1.742627,-1.742627,-1.742627,-1.742627,-1.742627 +-1.743278,-1.743278,-1.743278,-1.743278,-1.743278,-1.743278 +-1.743814,-1.743814,-1.743814,-1.743814,-1.743814,-1.743814 +-1.744245,-1.744245,-1.744245,-1.744245,-1.744245,-1.744245 +-1.744584,-1.744584,-1.744584,-1.744584,-1.744584,-1.744584 +-1.744841,-1.744841,-1.744841,-1.744841,-1.744841,-1.744841 +-1.745028,-1.745028,-1.745028,-1.745028,-1.745028,-1.745028 +-1.745156,-1.745156,-1.745156,-1.745156,-1.745156,-1.745156 +-1.745235,-1.745235,-1.745235,-1.745235,-1.745235,-1.745235 +-1.745279,-1.745279,-1.745279,-1.745279,-1.745279,-1.745279 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745285,-1.745285,-1.745285,-1.745285,-1.745285,-1.745285 +-1.745249,-1.745249,-1.745249,-1.745249,-1.745249,-1.745249 +-1.74518,-1.74518,-1.74518,-1.74518,-1.74518,-1.74518 +-1.745066,-1.745066,-1.745066,-1.745066,-1.745066,-1.745066 +-1.744895,-1.744895,-1.744895,-1.744895,-1.744895,-1.744895 +-1.744657,-1.744657,-1.744657,-1.744657,-1.744657,-1.744657 +-1.74434,-1.74434,-1.74434,-1.74434,-1.74434,-1.74434 +-1.743933,-1.743933,-1.743933,-1.743933,-1.743933,-1.743933 +-1.743425,-1.743425,-1.743425,-1.743425,-1.743425,-1.743425 +-1.742804,-1.742804,-1.742804,-1.742804,-1.742804,-1.742804 +-1.74206,-1.74206,-1.74206,-1.74206,-1.74206,-1.74206 +-1.741181,-1.741181,-1.741181,-1.741181,-1.741181,-1.741181 +-1.740155,-1.740155,-1.740155,-1.740155,-1.740155,-1.740155 +-1.738972,-1.738972,-1.738972,-1.738972,-1.738972,-1.738972 +-1.73762,-1.73762,-1.73762,-1.73762,-1.73762,-1.73762 +-1.736088,-1.736088,-1.736088,-1.736088,-1.736088,-1.736088 +-1.734365,-1.734365,-1.734365,-1.734365,-1.734365,-1.734365 +-1.732439,-1.732439,-1.732439,-1.732439,-1.732439,-1.732439 +-1.7303,-1.7303,-1.7303,-1.7303,-1.7303,-1.7303 +-1.727936,-1.727936,-1.727936,-1.727936,-1.727936,-1.727936 +-1.725335,-1.725335,-1.725335,-1.725335,-1.725335,-1.725335 +-1.722487,-1.722487,-1.722487,-1.722487,-1.722487,-1.722487 +-1.71938,-1.71938,-1.71938,-1.71938,-1.71938,-1.71938 +-1.716003,-1.716003,-1.716003,-1.716003,-1.716003,-1.716003 +-1.712347,-1.712347,-1.712347,-1.712347,-1.712347,-1.712347 +-1.708409,-1.708409,-1.708409,-1.708409,-1.708409,-1.708409 +-1.704191,-1.704191,-1.704191,-1.704191,-1.704191,-1.704191 +-1.699691,-1.699691,-1.699691,-1.699691,-1.699691,-1.699691 +-1.694909,-1.694909,-1.694909,-1.694909,-1.694909,-1.694909 +-1.689847,-1.689847,-1.689847,-1.689847,-1.689847,-1.689847 +-1.684503,-1.684503,-1.684503,-1.684503,-1.684503,-1.684503 +-1.678878,-1.678878,-1.678878,-1.678878,-1.678878,-1.678878 +-1.672972,-1.672972,-1.672972,-1.672972,-1.672972,-1.672972 +-1.666784,-1.666784,-1.666784,-1.666784,-1.666784,-1.666784 +-1.660316,-1.660316,-1.660316,-1.660316,-1.660316,-1.660316 +-1.653566,-1.653566,-1.653566,-1.653566,-1.653566,-1.653566 +-1.646534,-1.646534,-1.646534,-1.646534,-1.646534,-1.646534 +-1.639222,-1.639222,-1.639222,-1.639222,-1.639222,-1.639222 +-1.631628,-1.631628,-1.631628,-1.631628,-1.631628,-1.631628 +-1.623753,-1.623753,-1.623753,-1.623753,-1.623753,-1.623753 +-1.615597,-1.615597,-1.615597,-1.615597,-1.615597,-1.615597 +-1.607159,-1.607159,-1.607159,-1.607159,-1.607159,-1.607159 +-1.598441,-1.598441,-1.598441,-1.598441,-1.598441,-1.598441 +-1.589441,-1.589441,-1.589441,-1.589441,-1.589441,-1.589441 +-1.580159,-1.580159,-1.580159,-1.580159,-1.580159,-1.580159 +-1.570597,-1.570597,-1.570597,-1.570597,-1.570597,-1.570597 +-1.560753,-1.560753,-1.560753,-1.560753,-1.560753,-1.560753 +-1.550628,-1.550628,-1.550628,-1.550628,-1.550628,-1.550628 +-1.540222,-1.540222,-1.540222,-1.540222,-1.540222,-1.540222 +-1.529534,-1.529534,-1.529534,-1.529534,-1.529534,-1.529534 +-1.518566,-1.518566,-1.518566,-1.518566,-1.518566,-1.518566 +-1.507316,-1.507316,-1.507316,-1.507316,-1.507316,-1.507316 +-1.495784,-1.495784,-1.495784,-1.495784,-1.495784,-1.495784 +-1.483972,-1.483972,-1.483972,-1.483972,-1.483972,-1.483972 +-1.471878,-1.471878,-1.471878,-1.471878,-1.471878,-1.471878 +-1.459509,-1.459509,-1.459509,-1.459509,-1.459509,-1.459509 +-1.446874,-1.446874,-1.446874,-1.446874,-1.446874,-1.446874 +-1.433986,-1.433986,-1.433986,-1.433986,-1.433986,-1.433986 +-1.420855,-1.420855,-1.420855,-1.420855,-1.420855,-1.420855 +-1.407493,-1.407493,-1.407493,-1.407493,-1.407493,-1.407493 +-1.393911,-1.393911,-1.393911,-1.393911,-1.393911,-1.393911 +-1.38012,-1.38012,-1.38012,-1.38012,-1.38012,-1.38012 +-1.366132,-1.366132,-1.366132,-1.366132,-1.366132,-1.366132 +-1.351958,-1.351958,-1.351958,-1.351958,-1.351958,-1.351958 +-1.337608,-1.337608,-1.337608,-1.337608,-1.337608,-1.337608 +-1.323095,-1.323095,-1.323095,-1.323095,-1.323095,-1.323095 +-1.308429,-1.308429,-1.308429,-1.308429,-1.308429,-1.308429 +-1.293622,-1.293622,-1.293622,-1.293622,-1.293622,-1.293622 +-1.278685,-1.278685,-1.278685,-1.278685,-1.278685,-1.278685 +-1.263629,-1.263629,-1.263629,-1.263629,-1.263629,-1.263629 +-1.248466,-1.248466,-1.248466,-1.248466,-1.248466,-1.248466 +-1.233207,-1.233207,-1.233207,-1.233207,-1.233207,-1.233207 +-1.217862,-1.217862,-1.217862,-1.217862,-1.217862,-1.217862 +-1.202444,-1.202444,-1.202444,-1.202444,-1.202444,-1.202444 +-1.186963,-1.186963,-1.186963,-1.186963,-1.186963,-1.186963 +-1.171431,-1.171431,-1.171431,-1.171431,-1.171431,-1.171431 +-1.155859,-1.155859,-1.155859,-1.155859,-1.155859,-1.155859 +-1.140258,-1.140258,-1.140258,-1.140258,-1.140258,-1.140258 +-1.12464,-1.12464,-1.12464,-1.12464,-1.12464,-1.12464 +-1.109015,-1.109015,-1.109015,-1.109015,-1.109015,-1.109015 +-1.09339,-1.09339,-1.09339,-1.09339,-1.09339,-1.09339 +-1.077765,-1.077765,-1.077765,-1.077765,-1.077765,-1.077765 +-1.06214,-1.06214,-1.06214,-1.06214,-1.06214,-1.06214 +-1.046515,-1.046515,-1.046515,-1.046515,-1.046515,-1.046515 +-1.03089,-1.03089,-1.03089,-1.03089,-1.03089,-1.03089 +-1.015265,-1.015265,-1.015265,-1.015265,-1.015265,-1.015265 +-0.99964,-0.99964,-0.99964,-0.99964,-0.99964,-0.99964 +-0.984015,-0.984015,-0.984015,-0.984015,-0.984015,-0.984015 +-0.96839,-0.96839,-0.96839,-0.96839,-0.96839,-0.96839 +-0.952765,-0.952765,-0.952765,-0.952765,-0.952765,-0.952765 +-0.93714,-0.93714,-0.93714,-0.93714,-0.93714,-0.93714 +-0.921515,-0.921515,-0.921515,-0.921515,-0.921515,-0.921515 +-0.90589,-0.90589,-0.90589,-0.90589,-0.90589,-0.90589 +-0.890265,-0.890265,-0.890265,-0.890265,-0.890265,-0.890265 +-0.87464,-0.87464,-0.87464,-0.87464,-0.87464,-0.87464 +-0.859015,-0.859015,-0.859015,-0.859015,-0.859015,-0.859015 +-0.84339,-0.84339,-0.84339,-0.84339,-0.84339,-0.84339 +-0.827765,-0.827765,-0.827765,-0.827765,-0.827765,-0.827765 +-0.81214,-0.81214,-0.81214,-0.81214,-0.81214,-0.81214 +-0.796515,-0.796515,-0.796515,-0.796515,-0.796515,-0.796515 +-0.78089,-0.78089,-0.78089,-0.78089,-0.78089,-0.78089 +-0.765265,-0.765265,-0.765265,-0.765265,-0.765265,-0.765265 +-0.74964,-0.74964,-0.74964,-0.74964,-0.74964,-0.74964 +-0.734015,-0.734015,-0.734015,-0.734015,-0.734015,-0.734015 +-0.71839,-0.71839,-0.71839,-0.71839,-0.71839,-0.71839 +-0.702765,-0.702765,-0.702765,-0.702765,-0.702765,-0.702765 +-0.68714,-0.68714,-0.68714,-0.68714,-0.68714,-0.68714 +-0.671515,-0.671515,-0.671515,-0.671515,-0.671515,-0.671515 +-0.65589,-0.65589,-0.65589,-0.65589,-0.65589,-0.65589 +-0.640265,-0.640265,-0.640265,-0.640265,-0.640265,-0.640265 +-0.62464,-0.62464,-0.62464,-0.62464,-0.62464,-0.62464 +-0.609019,-0.609019,-0.609019,-0.609019,-0.609019,-0.609019 +-0.593413,-0.593413,-0.593413,-0.593413,-0.593413,-0.593413 +-0.577833,-0.577833,-0.577833,-0.577833,-0.577833,-0.577833 +-0.562289,-0.562289,-0.562289,-0.562289,-0.562289,-0.562289 +-0.546795,-0.546795,-0.546795,-0.546795,-0.546795,-0.546795 +-0.531359,-0.531359,-0.531359,-0.531359,-0.531359,-0.531359 +-0.515995,-0.515995,-0.515995,-0.515995,-0.515995,-0.515995 +-0.500713,-0.500713,-0.500713,-0.500713,-0.500713,-0.500713 +-0.485524,-0.485524,-0.485524,-0.485524,-0.485524,-0.485524 +-0.47044,-0.47044,-0.47044,-0.47044,-0.47044,-0.47044 +-0.455471,-0.455471,-0.455471,-0.455471,-0.455471,-0.455471 +-0.44063,-0.44063,-0.44063,-0.44063,-0.44063,-0.44063 +-0.425927,-0.425927,-0.425927,-0.425927,-0.425927,-0.425927 +-0.411374,-0.411374,-0.411374,-0.411374,-0.411374,-0.411374 +-0.396982,-0.396982,-0.396982,-0.396982,-0.396982,-0.396982 +-0.382762,-0.382762,-0.382762,-0.382762,-0.382762,-0.382762 +-0.368725,-0.368725,-0.368725,-0.368725,-0.368725,-0.368725 +-0.354883,-0.354883,-0.354883,-0.354883,-0.354883,-0.354883 +-0.341246,-0.341246,-0.341246,-0.341246,-0.341246,-0.341246 +-0.327827,-0.327827,-0.327827,-0.327827,-0.327827,-0.327827 +-0.314637,-0.314637,-0.314637,-0.314637,-0.314637,-0.314637 +-0.301685,-0.301685,-0.301685,-0.301685,-0.301685,-0.301685 +-0.288985,-0.288985,-0.288985,-0.288985,-0.288985,-0.288985 +-0.276547,-0.276547,-0.276547,-0.276547,-0.276547,-0.276547 +-0.264382,-0.264382,-0.264382,-0.264382,-0.264382,-0.264382 +-0.252498,-0.252498,-0.252498,-0.252498,-0.252498,-0.252498 +-0.240895,-0.240895,-0.240895,-0.240895,-0.240895,-0.240895 +-0.229574,-0.229574,-0.229574,-0.229574,-0.229574,-0.229574 +-0.218533,-0.218533,-0.218533,-0.218533,-0.218533,-0.218533 +-0.207774,-0.207774,-0.207774,-0.207774,-0.207774,-0.207774 +-0.197296,-0.197296,-0.197296,-0.197296,-0.197296,-0.197296 +-0.1871,-0.1871,-0.1871,-0.1871,-0.1871,-0.1871 +-0.177184,-0.177184,-0.177184,-0.177184,-0.177184,-0.177184 +-0.16755,-0.16755,-0.16755,-0.16755,-0.16755,-0.16755 +-0.158197,-0.158197,-0.158197,-0.158197,-0.158197,-0.158197 +-0.149125,-0.149125,-0.149125,-0.149125,-0.149125,-0.149125 +-0.140335,-0.140335,-0.140335,-0.140335,-0.140335,-0.140335 +-0.131826,-0.131826,-0.131826,-0.131826,-0.131826,-0.131826 +-0.123598,-0.123598,-0.123598,-0.123598,-0.123598,-0.123598 +-0.115651,-0.115651,-0.115651,-0.115651,-0.115651,-0.115651 +-0.107986,-0.107986,-0.107986,-0.107986,-0.107986,-0.107986 +-0.100602,-0.100602,-0.100602,-0.100602,-0.100602,-0.100602 +-0.093499,-0.093499,-0.093499,-0.093499,-0.093499,-0.093499 +-0.086677,-0.086677,-0.086677,-0.086677,-0.086677,-0.086677 +-0.080137,-0.080137,-0.080137,-0.080137,-0.080137,-0.080137 +-0.073878,-0.073878,-0.073878,-0.073878,-0.073878,-0.073878 +-0.0679,-0.0679,-0.0679,-0.0679,-0.0679,-0.0679 +-0.062203,-0.062203,-0.062203,-0.062203,-0.062203,-0.062203 +-0.056788,-0.056788,-0.056788,-0.056788,-0.056788,-0.056788 +-0.051654,-0.051654,-0.051654,-0.051654,-0.051654,-0.051654 +-0.046801,-0.046801,-0.046801,-0.046801,-0.046801,-0.046801 +-0.042229,-0.042229,-0.042229,-0.042229,-0.042229,-0.042229 +-0.037939,-0.037939,-0.037939,-0.037939,-0.037939,-0.037939 +-0.03393,-0.03393,-0.03393,-0.03393,-0.03393,-0.03393 +-0.030202,-0.030202,-0.030202,-0.030202,-0.030202,-0.030202 +-0.026754,-0.026754,-0.026754,-0.026754,-0.026754,-0.026754 +-0.02358,-0.02358,-0.02358,-0.02358,-0.02358,-0.02358 +-0.020667,-0.020667,-0.020667,-0.020667,-0.020667,-0.020667 +-0.018004,-0.018004,-0.018004,-0.018004,-0.018004,-0.018004 +-0.015581,-0.015581,-0.015581,-0.015581,-0.015581,-0.015581 +-0.013385,-0.013385,-0.013385,-0.013385,-0.013385,-0.013385 +-0.011406,-0.011406,-0.011406,-0.011406,-0.011406,-0.011406 +-0.009632,-0.009632,-0.009632,-0.009632,-0.009632,-0.009632 +-0.008053,-0.008053,-0.008053,-0.008053,-0.008053,-0.008053 +-0.006656,-0.006656,-0.006656,-0.006656,-0.006656,-0.006656 +-0.005431,-0.005431,-0.005431,-0.005431,-0.005431,-0.005431 +-0.004366,-0.004366,-0.004366,-0.004366,-0.004366,-0.004366 +-0.003451,-0.003451,-0.003451,-0.003451,-0.003451,-0.003451 +-0.002673,-0.002673,-0.002673,-0.002673,-0.002673,-0.002673 +-0.002022,-0.002022,-0.002022,-0.002022,-0.002022,-0.002022 +-0.001486,-0.001486,-0.001486,-0.001486,-0.001486,-0.001486 +-0.001055,-0.001055,-0.001055,-0.001055,-0.001055,-0.001055 +-0.000716,-0.000716,-0.000716,-0.000716,-0.000716,-0.000716 +-0.000459,-0.000459,-0.000459,-0.000459,-0.000459,-0.000459 +-0.000272,-0.000272,-0.000272,-0.000272,-0.000272,-0.000272 +-0.000144,-0.000144,-0.000144,-0.000144,-0.000144,-0.000144 +-0.000065,-0.000065,-0.000065,-0.000065,-0.000065,-0.000065 +-0.000021,-0.000021,-0.000021,-0.000021,-0.000021,-0.000021 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000017,0.000017,0.000017,0.000017,0.000017,0.000017 +0.000057,0.000057,0.000057,0.000057,0.000057,0.000057 +0.000136,0.000136,0.000136,0.000136,0.000136,0.000136 +0.000266,0.000266,0.000266,0.000266,0.000266,0.000266 +0.000459,0.000459,0.000459,0.000459,0.000459,0.000459 +0.000729,0.000729,0.000729,0.000729,0.000729,0.000729 +0.001088,0.001088,0.001088,0.001088,0.001088,0.001088 +0.001549,0.001549,0.001549,0.001549,0.001549,0.001549 +0.002125,0.002125,0.002125,0.002125,0.002125,0.002125 +0.002828,0.002828,0.002828,0.002828,0.002828,0.002828 +0.003672,0.003672,0.003672,0.003672,0.003672,0.003672 +0.004669,0.004669,0.004669,0.004669,0.004669,0.004669 +0.005831,0.005831,0.005831,0.005831,0.005831,0.005831 +0.007172,0.007172,0.007172,0.007172,0.007172,0.007172 +0.008704,0.008704,0.008704,0.008704,0.008704,0.008704 +0.01044,0.01044,0.01044,0.01044,0.01044,0.01044 +0.012393,0.012393,0.012393,0.012393,0.012393,0.012393 +0.014575,0.014575,0.014575,0.014575,0.014575,0.014575 +0.017,0.017,0.017,0.017,0.017,0.017 +0.01968,0.01968,0.01968,0.01968,0.01968,0.01968 +0.022627,0.022627,0.022627,0.022627,0.022627,0.022627 +0.025855,0.025855,0.025855,0.025855,0.025855,0.025855 +0.029376,0.029376,0.029376,0.029376,0.029376,0.029376 +0.033203,0.033203,0.033203,0.033203,0.033203,0.033203 +0.037347,0.037347,0.037347,0.037347,0.037347,0.037347 +0.041809,0.041809,0.041809,0.041809,0.041809,0.041809 +0.046591,0.046591,0.046591,0.046591,0.046591,0.046591 +0.051691,0.051691,0.051691,0.051691,0.051691,0.051691 +0.057109,0.057109,0.057109,0.057109,0.057109,0.057109 +0.062847,0.062847,0.062847,0.062847,0.062847,0.062847 +0.068903,0.068903,0.068903,0.068903,0.068903,0.068903 +0.075278,0.075278,0.075278,0.075278,0.075278,0.075278 +0.081972,0.081972,0.081972,0.081972,0.081972,0.081972 +0.088984,0.088984,0.088984,0.088984,0.088984,0.088984 +0.096316,0.096316,0.096316,0.096316,0.096316,0.096316 +0.103966,0.103966,0.103966,0.103966,0.103966,0.103966 +0.111934,0.111934,0.111934,0.111934,0.111934,0.111934 +0.120222,0.120222,0.120222,0.120222,0.120222,0.120222 +0.128828,0.128828,0.128828,0.128828,0.128828,0.128828 +0.137753,0.137753,0.137753,0.137753,0.137753,0.137753 +0.146997,0.146997,0.146997,0.146997,0.146997,0.146997 +0.156559,0.156559,0.156559,0.156559,0.156559,0.156559 +0.166441,0.166441,0.166441,0.166441,0.166441,0.166441 +0.176641,0.176641,0.176641,0.176641,0.176641,0.176641 +0.187159,0.187159,0.187159,0.187159,0.187159,0.187159 +0.197997,0.197997,0.197997,0.197997,0.197997,0.197997 +0.209153,0.209153,0.209153,0.209153,0.209153,0.209153 +0.220628,0.220628,0.220628,0.220628,0.220628,0.220628 +0.23242,0.23242,0.23242,0.23242,0.23242,0.23242 +0.244518,0.244518,0.244518,0.244518,0.244518,0.244518 +0.256909,0.256909,0.256909,0.256909,0.256909,0.256909 +0.269582,0.269582,0.269582,0.269582,0.269582,0.269582 +0.282522,0.282522,0.282522,0.282522,0.282522,0.282522 +0.295717,0.295717,0.295717,0.295717,0.295717,0.295717 +0.309155,0.309155,0.309155,0.309155,0.309155,0.309155 +0.322823,0.322823,0.322823,0.322823,0.322823,0.322823 +0.336708,0.336708,0.336708,0.336708,0.336708,0.336708 +0.350797,0.350797,0.350797,0.350797,0.350797,0.350797 +0.365077,0.365077,0.365077,0.365077,0.365077,0.365077 +0.379537,0.379537,0.379537,0.379537,0.379537,0.379537 +0.394162,0.394162,0.394162,0.394162,0.394162,0.394162 +0.40894,0.40894,0.40894,0.40894,0.40894,0.40894 +0.423859,0.423859,0.423859,0.423859,0.423859,0.423859 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.454068,0.454068,0.454068,0.454068,0.454068,0.454068 +0.469332,0.469332,0.469332,0.469332,0.469332,0.469332 +0.484685,0.484685,0.484685,0.484685,0.484685,0.484685 +0.500116,0.500116,0.500116,0.500116,0.500116,0.500116 +0.51561,0.51561,0.51561,0.51561,0.51561,0.51561 +0.531155,0.531155,0.531155,0.531155,0.531155,0.531155 +0.546739,0.546739,0.546739,0.546739,0.546739,0.546739 +0.562349,0.562349,0.562349,0.562349,0.562349,0.562349 +0.577972,0.577972,0.577972,0.577972,0.577972,0.577972 +0.593597,0.593597,0.593597,0.593597,0.593597,0.593597 +0.609222,0.609222,0.609222,0.609222,0.609222,0.609222 +0.624847,0.624847,0.624847,0.624847,0.624847,0.624847 +0.640472,0.640472,0.640472,0.640472,0.640472,0.640472 +0.656097,0.656097,0.656097,0.656097,0.656097,0.656097 +0.671722,0.671722,0.671722,0.671722,0.671722,0.671722 +0.687347,0.687347,0.687347,0.687347,0.687347,0.687347 +0.702972,0.702972,0.702972,0.702972,0.702972,0.702972 +0.718597,0.718597,0.718597,0.718597,0.718597,0.718597 +0.734222,0.734222,0.734222,0.734222,0.734222,0.734222 +0.749847,0.749847,0.749847,0.749847,0.749847,0.749847 +0.765472,0.765472,0.765472,0.765472,0.765472,0.765472 +0.781097,0.781097,0.781097,0.781097,0.781097,0.781097 +0.796722,0.796722,0.796722,0.796722,0.796722,0.796722 +0.812347,0.812347,0.812347,0.812347,0.812347,0.812347 +0.827972,0.827972,0.827972,0.827972,0.827972,0.827972 +0.843597,0.843597,0.843597,0.843597,0.843597,0.843597 +0.859222,0.859222,0.859222,0.859222,0.859222,0.859222 +0.874847,0.874847,0.874847,0.874847,0.874847,0.874847 +0.890472,0.890472,0.890472,0.890472,0.890472,0.890472 +0.906097,0.906097,0.906097,0.906097,0.906097,0.906097 +0.921722,0.921722,0.921722,0.921722,0.921722,0.921722 +0.937347,0.937347,0.937347,0.937347,0.937347,0.937347 +0.952972,0.952972,0.952972,0.952972,0.952972,0.952972 +0.968597,0.968597,0.968597,0.968597,0.968597,0.968597 +0.984222,0.984222,0.984222,0.984222,0.984222,0.984222 +0.999847,0.999847,0.999847,0.999847,0.999847,0.999847 +1.015472,1.015472,1.015472,1.015472,1.015472,1.015472 +1.031097,1.031097,1.031097,1.031097,1.031097,1.031097 +1.046722,1.046722,1.046722,1.046722,1.046722,1.046722 +1.062347,1.062347,1.062347,1.062347,1.062347,1.062347 +1.077972,1.077972,1.077972,1.077972,1.077972,1.077972 +1.093597,1.093597,1.093597,1.093597,1.093597,1.093597 +1.109222,1.109222,1.109222,1.109222,1.109222,1.109222 +1.124847,1.124847,1.124847,1.124847,1.124847,1.124847 +1.140472,1.140472,1.140472,1.140472,1.140472,1.140472 +1.156097,1.156097,1.156097,1.156097,1.156097,1.156097 +1.171722,1.171722,1.171722,1.171722,1.171722,1.171722 +1.187342,1.187342,1.187342,1.187342,1.187342,1.187342 +1.202946,1.202946,1.202946,1.202946,1.202946,1.202946 +1.21852,1.21852,1.21852,1.21852,1.21852,1.21852 +1.234053,1.234053,1.234053,1.234053,1.234053,1.234053 +1.24953,1.24953,1.24953,1.24953,1.24953,1.24953 +1.26494,1.26494,1.26494,1.26494,1.26494,1.26494 +1.28027,1.28027,1.28027,1.28027,1.28027,1.28027 +1.295506,1.295506,1.295506,1.295506,1.295506,1.295506 +1.310637,1.310637,1.310637,1.310637,1.310637,1.310637 +1.325649,1.325649,1.325649,1.325649,1.325649,1.325649 +1.34053,1.34053,1.34053,1.34053,1.34053,1.34053 +1.355267,1.355267,1.355267,1.355267,1.355267,1.355267 +1.369847,1.369847,1.369847,1.369847,1.369847,1.369847 +1.384257,1.384257,1.384257,1.384257,1.384257,1.384257 +1.398485,1.398485,1.398485,1.398485,1.398485,1.398485 +1.412518,1.412518,1.412518,1.412518,1.412518,1.412518 +1.426343,1.426343,1.426343,1.426343,1.426343,1.426343 +1.439947,1.439947,1.439947,1.439947,1.439947,1.439947 +1.453318,1.453318,1.453318,1.453318,1.453318,1.453318 +1.466443,1.466443,1.466443,1.466443,1.466443,1.466443 +1.479309,1.479309,1.479309,1.479309,1.479309,1.479309 +1.491904,1.491904,1.491904,1.491904,1.491904,1.491904 +1.504214,1.504214,1.504214,1.504214,1.504214,1.504214 +1.516227,1.516227,1.516227,1.516227,1.516227,1.516227 +1.527931,1.527931,1.527931,1.527931,1.527931,1.527931 +1.539316,1.539316,1.539316,1.539316,1.539316,1.539316 +1.550383,1.550383,1.550383,1.550383,1.550383,1.550383 +1.561131,1.561131,1.561131,1.561131,1.561131,1.561131 +1.57156,1.57156,1.57156,1.57156,1.57156,1.57156 +1.58167,1.58167,1.58167,1.58167,1.58167,1.58167 +1.591462,1.591462,1.591462,1.591462,1.591462,1.591462 +1.600935,1.600935,1.600935,1.600935,1.600935,1.600935 +1.610089,1.610089,1.610089,1.610089,1.610089,1.610089 +1.618924,1.618924,1.618924,1.618924,1.618924,1.618924 +1.627441,1.627441,1.627441,1.627441,1.627441,1.627441 +1.635639,1.635639,1.635639,1.635639,1.635639,1.635639 +1.643518,1.643518,1.643518,1.643518,1.643518,1.643518 +1.651078,1.651078,1.651078,1.651078,1.651078,1.651078 +1.65832,1.65832,1.65832,1.65832,1.65832,1.65832 +1.665243,1.665243,1.665243,1.665243,1.665243,1.665243 +1.671847,1.671847,1.671847,1.671847,1.671847,1.671847 +1.678132,1.678132,1.678132,1.678132,1.678132,1.678132 +1.684099,1.684099,1.684099,1.684099,1.684099,1.684099 +1.689747,1.689747,1.689747,1.689747,1.689747,1.689747 +1.695076,1.695076,1.695076,1.695076,1.695076,1.695076 +1.700086,1.700086,1.700086,1.700086,1.700086,1.700086 +1.704778,1.704778,1.704778,1.704778,1.704778,1.704778 +1.709151,1.709151,1.709151,1.709151,1.709151,1.709151 +1.713205,1.713205,1.713205,1.713205,1.713205,1.713205 +1.716944,1.716944,1.716944,1.716944,1.716944,1.716944 +1.720382,1.720382,1.720382,1.720382,1.720382,1.720382 +1.72353,1.72353,1.72353,1.72353,1.72353,1.72353 +1.7264,1.7264,1.7264,1.7264,1.7264,1.7264 +1.729007,1.729007,1.729007,1.729007,1.729007,1.729007 +1.731362,1.731362,1.731362,1.731362,1.731362,1.731362 +1.733479,1.733479,1.733479,1.733479,1.733479,1.733479 +1.735369,1.735369,1.735369,1.735369,1.735369,1.735369 +1.737047,1.737047,1.737047,1.737047,1.737047,1.737047 +1.738524,1.738524,1.738524,1.738524,1.738524,1.738524 +1.739813,1.739813,1.739813,1.739813,1.739813,1.739813 +1.740928,1.740928,1.740928,1.740928,1.740928,1.740928 +1.74188,1.74188,1.74188,1.74188,1.74188,1.74188 +1.742683,1.742683,1.742683,1.742683,1.742683,1.742683 +1.743349,1.743349,1.743349,1.743349,1.743349,1.743349 +1.743892,1.743892,1.743892,1.743892,1.743892,1.743892 +1.744323,1.744323,1.744323,1.744323,1.744323,1.744323 +1.744655,1.744655,1.744655,1.744655,1.744655,1.744655 +1.744903,1.744903,1.744903,1.744903,1.744903,1.744903 +1.745077,1.745077,1.745077,1.745077,1.745077,1.745077 +1.745191,1.745191,1.745191,1.745191,1.745191,1.745191 +1.745257,1.745257,1.745257,1.745257,1.745257,1.745257 +1.745289,1.745289,1.745289,1.745289,1.745289,1.745289 +1.745299,1.745299,1.745299,1.745299,1.745299,1.745299 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745283,1.745283,1.745283,1.745283,1.745283,1.745283 +1.745243,1.745243,1.745243,1.745243,1.745243,1.745243 +1.745164,1.745164,1.745164,1.745164,1.745164,1.745164 +1.745034,1.745034,1.745034,1.745034,1.745034,1.745034 +1.744841,1.744841,1.744841,1.744841,1.744841,1.744841 +1.744571,1.744571,1.744571,1.744571,1.744571,1.744571 +1.744212,1.744212,1.744212,1.744212,1.744212,1.744212 +1.743751,1.743751,1.743751,1.743751,1.743751,1.743751 +1.743175,1.743175,1.743175,1.743175,1.743175,1.743175 +1.742472,1.742472,1.742472,1.742472,1.742472,1.742472 +1.741628,1.741628,1.741628,1.741628,1.741628,1.741628 +1.740631,1.740631,1.740631,1.740631,1.740631,1.740631 +1.739469,1.739469,1.739469,1.739469,1.739469,1.739469 +1.738128,1.738128,1.738128,1.738128,1.738128,1.738128 +1.736596,1.736596,1.736596,1.736596,1.736596,1.736596 +1.73486,1.73486,1.73486,1.73486,1.73486,1.73486 +1.732907,1.732907,1.732907,1.732907,1.732907,1.732907 +1.730725,1.730725,1.730725,1.730725,1.730725,1.730725 +1.7283,1.7283,1.7283,1.7283,1.7283,1.7283 +1.72562,1.72562,1.72562,1.72562,1.72562,1.72562 +1.722673,1.722673,1.722673,1.722673,1.722673,1.722673 +1.719445,1.719445,1.719445,1.719445,1.719445,1.719445 +1.715924,1.715924,1.715924,1.715924,1.715924,1.715924 +1.712097,1.712097,1.712097,1.712097,1.712097,1.712097 +1.707953,1.707953,1.707953,1.707953,1.707953,1.707953 +1.703491,1.703491,1.703491,1.703491,1.703491,1.703491 +1.698709,1.698709,1.698709,1.698709,1.698709,1.698709 +1.693609,1.693609,1.693609,1.693609,1.693609,1.693609 +1.688191,1.688191,1.688191,1.688191,1.688191,1.688191 +1.682453,1.682453,1.682453,1.682453,1.682453,1.682453 +1.676397,1.676397,1.676397,1.676397,1.676397,1.676397 +1.670022,1.670022,1.670022,1.670022,1.670022,1.670022 +1.663328,1.663328,1.663328,1.663328,1.663328,1.663328 +1.656316,1.656316,1.656316,1.656316,1.656316,1.656316 +1.648984,1.648984,1.648984,1.648984,1.648984,1.648984 +1.641334,1.641334,1.641334,1.641334,1.641334,1.641334 +1.633366,1.633366,1.633366,1.633366,1.633366,1.633366 +1.625078,1.625078,1.625078,1.625078,1.625078,1.625078 +1.616472,1.616472,1.616472,1.616472,1.616472,1.616472 +1.607547,1.607547,1.607547,1.607547,1.607547,1.607547 +1.598303,1.598303,1.598303,1.598303,1.598303,1.598303 +1.588741,1.588741,1.588741,1.588741,1.588741,1.588741 +1.578859,1.578859,1.578859,1.578859,1.578859,1.578859 +1.568659,1.568659,1.568659,1.568659,1.568659,1.568659 +1.558141,1.558141,1.558141,1.558141,1.558141,1.558141 +1.547303,1.547303,1.547303,1.547303,1.547303,1.547303 +1.536147,1.536147,1.536147,1.536147,1.536147,1.536147 +1.524672,1.524672,1.524672,1.524672,1.524672,1.524672 +1.51288,1.51288,1.51288,1.51288,1.51288,1.51288 +1.500782,1.500782,1.500782,1.500782,1.500782,1.500782 +1.488391,1.488391,1.488391,1.488391,1.488391,1.488391 +1.475718,1.475718,1.475718,1.475718,1.475718,1.475718 +1.462778,1.462778,1.462778,1.462778,1.462778,1.462778 +1.449583,1.449583,1.449583,1.449583,1.449583,1.449583 +1.436145,1.436145,1.436145,1.436145,1.436145,1.436145 +1.422477,1.422477,1.422477,1.422477,1.422477,1.422477 +1.408592,1.408592,1.408592,1.408592,1.408592,1.408592 +1.394503,1.394503,1.394503,1.394503,1.394503,1.394503 +1.380223,1.380223,1.380223,1.380223,1.380223,1.380223 +1.365763,1.365763,1.365763,1.365763,1.365763,1.365763 +1.351138,1.351138,1.351138,1.351138,1.351138,1.351138 +1.33636,1.33636,1.33636,1.33636,1.33636,1.33636 +1.321441,1.321441,1.321441,1.321441,1.321441,1.321441 +1.306394,1.306394,1.306394,1.306394,1.306394,1.306394 +1.291232,1.291232,1.291232,1.291232,1.291232,1.291232 +1.275968,1.275968,1.275968,1.275968,1.275968,1.275968 +1.260615,1.260615,1.260615,1.260615,1.260615,1.260615 +1.245184,1.245184,1.245184,1.245184,1.245184,1.245184 +1.22969,1.22969,1.22969,1.22969,1.22969,1.22969 +1.214145,1.214145,1.214145,1.214145,1.214145,1.214145 +1.198561,1.198561,1.198561,1.198561,1.198561,1.198561 +1.182951,1.182951,1.182951,1.182951,1.182951,1.182951 +1.167328,1.167328,1.167328,1.167328,1.167328,1.167328 +1.151703,1.151703,1.151703,1.151703,1.151703,1.151703 +1.136078,1.136078,1.136078,1.136078,1.136078,1.136078 +1.120453,1.120453,1.120453,1.120453,1.120453,1.120453 +1.104828,1.104828,1.104828,1.104828,1.104828,1.104828 +1.089203,1.089203,1.089203,1.089203,1.089203,1.089203 +1.073578,1.073578,1.073578,1.073578,1.073578,1.073578 +1.057953,1.057953,1.057953,1.057953,1.057953,1.057953 +1.042328,1.042328,1.042328,1.042328,1.042328,1.042328 +1.026703,1.026703,1.026703,1.026703,1.026703,1.026703 +1.011078,1.011078,1.011078,1.011078,1.011078,1.011078 +0.995453,0.995453,0.995453,0.995453,0.995453,0.995453 +0.979828,0.979828,0.979828,0.979828,0.979828,0.979828 +0.964203,0.964203,0.964203,0.964203,0.964203,0.964203 +0.948578,0.948578,0.948578,0.948578,0.948578,0.948578 +0.932953,0.932953,0.932953,0.932953,0.932953,0.932953 +0.917328,0.917328,0.917328,0.917328,0.917328,0.917328 +0.901703,0.901703,0.901703,0.901703,0.901703,0.901703 +0.886078,0.886078,0.886078,0.886078,0.886078,0.886078 +0.870453,0.870453,0.870453,0.870453,0.870453,0.870453 +0.854828,0.854828,0.854828,0.854828,0.854828,0.854828 +0.839203,0.839203,0.839203,0.839203,0.839203,0.839203 +0.823578,0.823578,0.823578,0.823578,0.823578,0.823578 +0.807953,0.807953,0.807953,0.807953,0.807953,0.807953 +0.792328,0.792328,0.792328,0.792328,0.792328,0.792328 +0.776703,0.776703,0.776703,0.776703,0.776703,0.776703 +0.761078,0.761078,0.761078,0.761078,0.761078,0.761078 +0.745453,0.745453,0.745453,0.745453,0.745453,0.745453 +0.729828,0.729828,0.729828,0.729828,0.729828,0.729828 +0.714203,0.714203,0.714203,0.714203,0.714203,0.714203 +0.698578,0.698578,0.698578,0.698578,0.698578,0.698578 +0.682953,0.682953,0.682953,0.682953,0.682953,0.682953 +0.667328,0.667328,0.667328,0.667328,0.667328,0.667328 +0.651703,0.651703,0.651703,0.651703,0.651703,0.651703 +0.636078,0.636078,0.636078,0.636078,0.636078,0.636078 +0.620453,0.620453,0.620453,0.620453,0.620453,0.620453 +0.604828,0.604828,0.604828,0.604828,0.604828,0.604828 +0.589203,0.589203,0.589203,0.589203,0.589203,0.589203 +0.573578,0.573578,0.573578,0.573578,0.573578,0.573578 +0.557958,0.557958,0.557958,0.557958,0.557958,0.557958 +0.542354,0.542354,0.542354,0.542354,0.542354,0.542354 +0.52678,0.52678,0.52678,0.52678,0.52678,0.52678 +0.511247,0.511247,0.511247,0.511247,0.511247,0.511247 +0.49577,0.49577,0.49577,0.49577,0.49577,0.49577 +0.48036,0.48036,0.48036,0.48036,0.48036,0.48036 +0.46503,0.46503,0.46503,0.46503,0.46503,0.46503 +0.449794,0.449794,0.449794,0.449794,0.449794,0.449794 +0.434663,0.434663,0.434663,0.434663,0.434663,0.434663 +0.419651,0.419651,0.419651,0.419651,0.419651,0.419651 +0.40477,0.40477,0.40477,0.40477,0.40477,0.40477 +0.390033,0.390033,0.390033,0.390033,0.390033,0.390033 +0.375453,0.375453,0.375453,0.375453,0.375453,0.375453 +0.361043,0.361043,0.361043,0.361043,0.361043,0.361043 +0.346815,0.346815,0.346815,0.346815,0.346815,0.346815 +0.332782,0.332782,0.332782,0.332782,0.332782,0.332782 +0.318957,0.318957,0.318957,0.318957,0.318957,0.318957 +0.305353,0.305353,0.305353,0.305353,0.305353,0.305353 +0.291982,0.291982,0.291982,0.291982,0.291982,0.291982 +0.278857,0.278857,0.278857,0.278857,0.278857,0.278857 +0.265991,0.265991,0.265991,0.265991,0.265991,0.265991 +0.253396,0.253396,0.253396,0.253396,0.253396,0.253396 +0.241086,0.241086,0.241086,0.241086,0.241086,0.241086 +0.229073,0.229073,0.229073,0.229073,0.229073,0.229073 +0.217369,0.217369,0.217369,0.217369,0.217369,0.217369 +0.205984,0.205984,0.205984,0.205984,0.205984,0.205984 +0.194917,0.194917,0.194917,0.194917,0.194917,0.194917 +0.184169,0.184169,0.184169,0.184169,0.184169,0.184169 +0.17374,0.17374,0.17374,0.17374,0.17374,0.17374 +0.16363,0.16363,0.16363,0.16363,0.16363,0.16363 +0.153838,0.153838,0.153838,0.153838,0.153838,0.153838 +0.144365,0.144365,0.144365,0.144365,0.144365,0.144365 +0.135211,0.135211,0.135211,0.135211,0.135211,0.135211 +0.126376,0.126376,0.126376,0.126376,0.126376,0.126376 +0.117859,0.117859,0.117859,0.117859,0.117859,0.117859 +0.109661,0.109661,0.109661,0.109661,0.109661,0.109661 +0.101782,0.101782,0.101782,0.101782,0.101782,0.101782 +0.094222,0.094222,0.094222,0.094222,0.094222,0.094222 +0.08698,0.08698,0.08698,0.08698,0.08698,0.08698 +0.080057,0.080057,0.080057,0.080057,0.080057,0.080057 +0.073453,0.073453,0.073453,0.073453,0.073453,0.073453 +0.067168,0.067168,0.067168,0.067168,0.067168,0.067168 +0.061201,0.061201,0.061201,0.061201,0.061201,0.061201 +0.055553,0.055553,0.055553,0.055553,0.055553,0.055553 +0.050224,0.050224,0.050224,0.050224,0.050224,0.050224 +0.045214,0.045214,0.045214,0.045214,0.045214,0.045214 +0.040522,0.040522,0.040522,0.040522,0.040522,0.040522 +0.036149,0.036149,0.036149,0.036149,0.036149,0.036149 +0.032095,0.032095,0.032095,0.032095,0.032095,0.032095 +0.028356,0.028356,0.028356,0.028356,0.028356,0.028356 +0.024918,0.024918,0.024918,0.024918,0.024918,0.024918 +0.02177,0.02177,0.02177,0.02177,0.02177,0.02177 +0.0189,0.0189,0.0189,0.0189,0.0189,0.0189 +0.016293,0.016293,0.016293,0.016293,0.016293,0.016293 +0.013938,0.013938,0.013938,0.013938,0.013938,0.013938 +0.011821,0.011821,0.011821,0.011821,0.011821,0.011821 +0.009931,0.009931,0.009931,0.009931,0.009931,0.009931 +0.008253,0.008253,0.008253,0.008253,0.008253,0.008253 +0.006776,0.006776,0.006776,0.006776,0.006776,0.006776 +0.005487,0.005487,0.005487,0.005487,0.005487,0.005487 +0.004372,0.004372,0.004372,0.004372,0.004372,0.004372 +0.00342,0.00342,0.00342,0.00342,0.00342,0.00342 +0.002617,0.002617,0.002617,0.002617,0.002617,0.002617 +0.001951,0.001951,0.001951,0.001951,0.001951,0.001951 +0.001408,0.001408,0.001408,0.001408,0.001408,0.001408 +0.000977,0.000977,0.000977,0.000977,0.000977,0.000977 +0.000645,0.000645,0.000645,0.000645,0.000645,0.000645 +0.000397,0.000397,0.000397,0.000397,0.000397,0.000397 +0.000223,0.000223,0.000223,0.000223,0.000223,0.000223 +0.000109,0.000109,0.000109,0.000109,0.000109,0.000109 +0.000043,0.000043,0.000043,0.000043,0.000043,0.000043 +0.000011,0.000011,0.000011,0.000011,0.000011,0.000011 +0.000001,0.000001,0.000001,0.000001,0.000001,0.000001 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.000057,-0.000057,-0.000057,-0.000057,-0.000057,-0.000057 +-0.000136,-0.000136,-0.000136,-0.000136,-0.000136,-0.000136 +-0.000266,-0.000266,-0.000266,-0.000266,-0.000266,-0.000266 +-0.000459,-0.000459,-0.000459,-0.000459,-0.000459,-0.000459 +-0.000729,-0.000729,-0.000729,-0.000729,-0.000729,-0.000729 +-0.001088,-0.001088,-0.001088,-0.001088,-0.001088,-0.001088 +-0.001549,-0.001549,-0.001549,-0.001549,-0.001549,-0.001549 +-0.002125,-0.002125,-0.002125,-0.002125,-0.002125,-0.002125 +-0.002828,-0.002828,-0.002828,-0.002828,-0.002828,-0.002828 +-0.003672,-0.003672,-0.003672,-0.003672,-0.003672,-0.003672 +-0.004669,-0.004669,-0.004669,-0.004669,-0.004669,-0.004669 +-0.005831,-0.005831,-0.005831,-0.005831,-0.005831,-0.005831 +-0.007172,-0.007172,-0.007172,-0.007172,-0.007172,-0.007172 +-0.008704,-0.008704,-0.008704,-0.008704,-0.008704,-0.008704 +-0.01044,-0.01044,-0.01044,-0.01044,-0.01044,-0.01044 +-0.012393,-0.012393,-0.012393,-0.012393,-0.012393,-0.012393 +-0.014575,-0.014575,-0.014575,-0.014575,-0.014575,-0.014575 +-0.017,-0.017,-0.017,-0.017,-0.017,-0.017 +-0.01968,-0.01968,-0.01968,-0.01968,-0.01968,-0.01968 +-0.022627,-0.022627,-0.022627,-0.022627,-0.022627,-0.022627 +-0.025855,-0.025855,-0.025855,-0.025855,-0.025855,-0.025855 +-0.029376,-0.029376,-0.029376,-0.029376,-0.029376,-0.029376 +-0.033203,-0.033203,-0.033203,-0.033203,-0.033203,-0.033203 +-0.037347,-0.037347,-0.037347,-0.037347,-0.037347,-0.037347 +-0.041809,-0.041809,-0.041809,-0.041809,-0.041809,-0.041809 +-0.046591,-0.046591,-0.046591,-0.046591,-0.046591,-0.046591 +-0.051691,-0.051691,-0.051691,-0.051691,-0.051691,-0.051691 +-0.057109,-0.057109,-0.057109,-0.057109,-0.057109,-0.057109 +-0.062847,-0.062847,-0.062847,-0.062847,-0.062847,-0.062847 +-0.068903,-0.068903,-0.068903,-0.068903,-0.068903,-0.068903 +-0.075278,-0.075278,-0.075278,-0.075278,-0.075278,-0.075278 +-0.081972,-0.081972,-0.081972,-0.081972,-0.081972,-0.081972 +-0.088984,-0.088984,-0.088984,-0.088984,-0.088984,-0.088984 +-0.096316,-0.096316,-0.096316,-0.096316,-0.096316,-0.096316 +-0.103966,-0.103966,-0.103966,-0.103966,-0.103966,-0.103966 +-0.111934,-0.111934,-0.111934,-0.111934,-0.111934,-0.111934 +-0.120222,-0.120222,-0.120222,-0.120222,-0.120222,-0.120222 +-0.128828,-0.128828,-0.128828,-0.128828,-0.128828,-0.128828 +-0.137753,-0.137753,-0.137753,-0.137753,-0.137753,-0.137753 +-0.146997,-0.146997,-0.146997,-0.146997,-0.146997,-0.146997 +-0.156559,-0.156559,-0.156559,-0.156559,-0.156559,-0.156559 +-0.166441,-0.166441,-0.166441,-0.166441,-0.166441,-0.166441 +-0.176641,-0.176641,-0.176641,-0.176641,-0.176641,-0.176641 +-0.187159,-0.187159,-0.187159,-0.187159,-0.187159,-0.187159 +-0.197997,-0.197997,-0.197997,-0.197997,-0.197997,-0.197997 +-0.209153,-0.209153,-0.209153,-0.209153,-0.209153,-0.209153 +-0.220628,-0.220628,-0.220628,-0.220628,-0.220628,-0.220628 +-0.23242,-0.23242,-0.23242,-0.23242,-0.23242,-0.23242 +-0.244518,-0.244518,-0.244518,-0.244518,-0.244518,-0.244518 +-0.256909,-0.256909,-0.256909,-0.256909,-0.256909,-0.256909 +-0.269582,-0.269582,-0.269582,-0.269582,-0.269582,-0.269582 +-0.282522,-0.282522,-0.282522,-0.282522,-0.282522,-0.282522 +-0.295717,-0.295717,-0.295717,-0.295717,-0.295717,-0.295717 +-0.309155,-0.309155,-0.309155,-0.309155,-0.309155,-0.309155 +-0.322823,-0.322823,-0.322823,-0.322823,-0.322823,-0.322823 +-0.336708,-0.336708,-0.336708,-0.336708,-0.336708,-0.336708 +-0.350797,-0.350797,-0.350797,-0.350797,-0.350797,-0.350797 +-0.365077,-0.365077,-0.365077,-0.365077,-0.365077,-0.365077 +-0.379537,-0.379537,-0.379537,-0.379537,-0.379537,-0.379537 +-0.394162,-0.394162,-0.394162,-0.394162,-0.394162,-0.394162 +-0.40894,-0.40894,-0.40894,-0.40894,-0.40894,-0.40894 +-0.423859,-0.423859,-0.423859,-0.423859,-0.423859,-0.423859 +-0.438906,-0.438906,-0.438906,-0.438906,-0.438906,-0.438906 +-0.454068,-0.454068,-0.454068,-0.454068,-0.454068,-0.454068 +-0.469332,-0.469332,-0.469332,-0.469332,-0.469332,-0.469332 +-0.484685,-0.484685,-0.484685,-0.484685,-0.484685,-0.484685 +-0.500116,-0.500116,-0.500116,-0.500116,-0.500116,-0.500116 +-0.51561,-0.51561,-0.51561,-0.51561,-0.51561,-0.51561 +-0.531155,-0.531155,-0.531155,-0.531155,-0.531155,-0.531155 +-0.546739,-0.546739,-0.546739,-0.546739,-0.546739,-0.546739 +-0.562349,-0.562349,-0.562349,-0.562349,-0.562349,-0.562349 +-0.577972,-0.577972,-0.577972,-0.577972,-0.577972,-0.577972 +-0.593597,-0.593597,-0.593597,-0.593597,-0.593597,-0.593597 +-0.609222,-0.609222,-0.609222,-0.609222,-0.609222,-0.609222 +-0.624847,-0.624847,-0.624847,-0.624847,-0.624847,-0.624847 +-0.640472,-0.640472,-0.640472,-0.640472,-0.640472,-0.640472 +-0.656097,-0.656097,-0.656097,-0.656097,-0.656097,-0.656097 +-0.671722,-0.671722,-0.671722,-0.671722,-0.671722,-0.671722 +-0.687347,-0.687347,-0.687347,-0.687347,-0.687347,-0.687347 +-0.702972,-0.702972,-0.702972,-0.702972,-0.702972,-0.702972 +-0.718597,-0.718597,-0.718597,-0.718597,-0.718597,-0.718597 +-0.734222,-0.734222,-0.734222,-0.734222,-0.734222,-0.734222 +-0.749847,-0.749847,-0.749847,-0.749847,-0.749847,-0.749847 +-0.765472,-0.765472,-0.765472,-0.765472,-0.765472,-0.765472 +-0.781097,-0.781097,-0.781097,-0.781097,-0.781097,-0.781097 +-0.796722,-0.796722,-0.796722,-0.796722,-0.796722,-0.796722 +-0.812347,-0.812347,-0.812347,-0.812347,-0.812347,-0.812347 +-0.827972,-0.827972,-0.827972,-0.827972,-0.827972,-0.827972 +-0.843597,-0.843597,-0.843597,-0.843597,-0.843597,-0.843597 +-0.859222,-0.859222,-0.859222,-0.859222,-0.859222,-0.859222 +-0.874847,-0.874847,-0.874847,-0.874847,-0.874847,-0.874847 +-0.890472,-0.890472,-0.890472,-0.890472,-0.890472,-0.890472 +-0.906097,-0.906097,-0.906097,-0.906097,-0.906097,-0.906097 +-0.921722,-0.921722,-0.921722,-0.921722,-0.921722,-0.921722 +-0.937347,-0.937347,-0.937347,-0.937347,-0.937347,-0.937347 +-0.952972,-0.952972,-0.952972,-0.952972,-0.952972,-0.952972 +-0.968597,-0.968597,-0.968597,-0.968597,-0.968597,-0.968597 +-0.984222,-0.984222,-0.984222,-0.984222,-0.984222,-0.984222 +-0.999847,-0.999847,-0.999847,-0.999847,-0.999847,-0.999847 +-1.015472,-1.015472,-1.015472,-1.015472,-1.015472,-1.015472 +-1.031097,-1.031097,-1.031097,-1.031097,-1.031097,-1.031097 +-1.046722,-1.046722,-1.046722,-1.046722,-1.046722,-1.046722 +-1.062347,-1.062347,-1.062347,-1.062347,-1.062347,-1.062347 +-1.077972,-1.077972,-1.077972,-1.077972,-1.077972,-1.077972 +-1.093597,-1.093597,-1.093597,-1.093597,-1.093597,-1.093597 +-1.109222,-1.109222,-1.109222,-1.109222,-1.109222,-1.109222 +-1.124847,-1.124847,-1.124847,-1.124847,-1.124847,-1.124847 +-1.140472,-1.140472,-1.140472,-1.140472,-1.140472,-1.140472 +-1.156097,-1.156097,-1.156097,-1.156097,-1.156097,-1.156097 +-1.171722,-1.171722,-1.171722,-1.171722,-1.171722,-1.171722 +-1.187342,-1.187342,-1.187342,-1.187342,-1.187342,-1.187342 +-1.202946,-1.202946,-1.202946,-1.202946,-1.202946,-1.202946 +-1.21852,-1.21852,-1.21852,-1.21852,-1.21852,-1.21852 +-1.234053,-1.234053,-1.234053,-1.234053,-1.234053,-1.234053 +-1.24953,-1.24953,-1.24953,-1.24953,-1.24953,-1.24953 +-1.26494,-1.26494,-1.26494,-1.26494,-1.26494,-1.26494 +-1.28027,-1.28027,-1.28027,-1.28027,-1.28027,-1.28027 +-1.295506,-1.295506,-1.295506,-1.295506,-1.295506,-1.295506 +-1.310637,-1.310637,-1.310637,-1.310637,-1.310637,-1.310637 +-1.325649,-1.325649,-1.325649,-1.325649,-1.325649,-1.325649 +-1.34053,-1.34053,-1.34053,-1.34053,-1.34053,-1.34053 +-1.355267,-1.355267,-1.355267,-1.355267,-1.355267,-1.355267 +-1.369847,-1.369847,-1.369847,-1.369847,-1.369847,-1.369847 +-1.384257,-1.384257,-1.384257,-1.384257,-1.384257,-1.384257 +-1.398485,-1.398485,-1.398485,-1.398485,-1.398485,-1.398485 +-1.412518,-1.412518,-1.412518,-1.412518,-1.412518,-1.412518 +-1.426343,-1.426343,-1.426343,-1.426343,-1.426343,-1.426343 +-1.439947,-1.439947,-1.439947,-1.439947,-1.439947,-1.439947 +-1.453318,-1.453318,-1.453318,-1.453318,-1.453318,-1.453318 +-1.466443,-1.466443,-1.466443,-1.466443,-1.466443,-1.466443 +-1.479309,-1.479309,-1.479309,-1.479309,-1.479309,-1.479309 +-1.491904,-1.491904,-1.491904,-1.491904,-1.491904,-1.491904 +-1.504214,-1.504214,-1.504214,-1.504214,-1.504214,-1.504214 +-1.516227,-1.516227,-1.516227,-1.516227,-1.516227,-1.516227 +-1.527931,-1.527931,-1.527931,-1.527931,-1.527931,-1.527931 +-1.539316,-1.539316,-1.539316,-1.539316,-1.539316,-1.539316 +-1.550383,-1.550383,-1.550383,-1.550383,-1.550383,-1.550383 +-1.561131,-1.561131,-1.561131,-1.561131,-1.561131,-1.561131 +-1.57156,-1.57156,-1.57156,-1.57156,-1.57156,-1.57156 +-1.58167,-1.58167,-1.58167,-1.58167,-1.58167,-1.58167 +-1.591462,-1.591462,-1.591462,-1.591462,-1.591462,-1.591462 +-1.600935,-1.600935,-1.600935,-1.600935,-1.600935,-1.600935 +-1.610089,-1.610089,-1.610089,-1.610089,-1.610089,-1.610089 +-1.618924,-1.618924,-1.618924,-1.618924,-1.618924,-1.618924 +-1.627441,-1.627441,-1.627441,-1.627441,-1.627441,-1.627441 +-1.635639,-1.635639,-1.635639,-1.635639,-1.635639,-1.635639 +-1.643518,-1.643518,-1.643518,-1.643518,-1.643518,-1.643518 +-1.651078,-1.651078,-1.651078,-1.651078,-1.651078,-1.651078 +-1.65832,-1.65832,-1.65832,-1.65832,-1.65832,-1.65832 +-1.665243,-1.665243,-1.665243,-1.665243,-1.665243,-1.665243 +-1.671847,-1.671847,-1.671847,-1.671847,-1.671847,-1.671847 +-1.678132,-1.678132,-1.678132,-1.678132,-1.678132,-1.678132 +-1.684099,-1.684099,-1.684099,-1.684099,-1.684099,-1.684099 +-1.689747,-1.689747,-1.689747,-1.689747,-1.689747,-1.689747 +-1.695076,-1.695076,-1.695076,-1.695076,-1.695076,-1.695076 +-1.700086,-1.700086,-1.700086,-1.700086,-1.700086,-1.700086 +-1.704778,-1.704778,-1.704778,-1.704778,-1.704778,-1.704778 +-1.709151,-1.709151,-1.709151,-1.709151,-1.709151,-1.709151 +-1.713205,-1.713205,-1.713205,-1.713205,-1.713205,-1.713205 +-1.716944,-1.716944,-1.716944,-1.716944,-1.716944,-1.716944 +-1.720382,-1.720382,-1.720382,-1.720382,-1.720382,-1.720382 +-1.72353,-1.72353,-1.72353,-1.72353,-1.72353,-1.72353 +-1.7264,-1.7264,-1.7264,-1.7264,-1.7264,-1.7264 +-1.729007,-1.729007,-1.729007,-1.729007,-1.729007,-1.729007 +-1.731362,-1.731362,-1.731362,-1.731362,-1.731362,-1.731362 +-1.733479,-1.733479,-1.733479,-1.733479,-1.733479,-1.733479 +-1.735369,-1.735369,-1.735369,-1.735369,-1.735369,-1.735369 +-1.737047,-1.737047,-1.737047,-1.737047,-1.737047,-1.737047 +-1.738524,-1.738524,-1.738524,-1.738524,-1.738524,-1.738524 +-1.739813,-1.739813,-1.739813,-1.739813,-1.739813,-1.739813 +-1.740928,-1.740928,-1.740928,-1.740928,-1.740928,-1.740928 +-1.74188,-1.74188,-1.74188,-1.74188,-1.74188,-1.74188 +-1.742683,-1.742683,-1.742683,-1.742683,-1.742683,-1.742683 +-1.743349,-1.743349,-1.743349,-1.743349,-1.743349,-1.743349 +-1.743892,-1.743892,-1.743892,-1.743892,-1.743892,-1.743892 +-1.744323,-1.744323,-1.744323,-1.744323,-1.744323,-1.744323 +-1.744655,-1.744655,-1.744655,-1.744655,-1.744655,-1.744655 +-1.744903,-1.744903,-1.744903,-1.744903,-1.744903,-1.744903 +-1.745077,-1.745077,-1.745077,-1.745077,-1.745077,-1.745077 +-1.745191,-1.745191,-1.745191,-1.745191,-1.745191,-1.745191 +-1.745257,-1.745257,-1.745257,-1.745257,-1.745257,-1.745257 +-1.745289,-1.745289,-1.745289,-1.745289,-1.745289,-1.745289 +-1.745299,-1.745299,-1.745299,-1.745299,-1.745299,-1.745299 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.745243,-1.745243,-1.745243,-1.745243,-1.745243,-1.745243 +-1.745164,-1.745164,-1.745164,-1.745164,-1.745164,-1.745164 +-1.745034,-1.745034,-1.745034,-1.745034,-1.745034,-1.745034 +-1.744841,-1.744841,-1.744841,-1.744841,-1.744841,-1.744841 +-1.744571,-1.744571,-1.744571,-1.744571,-1.744571,-1.744571 +-1.744212,-1.744212,-1.744212,-1.744212,-1.744212,-1.744212 +-1.743751,-1.743751,-1.743751,-1.743751,-1.743751,-1.743751 +-1.743175,-1.743175,-1.743175,-1.743175,-1.743175,-1.743175 +-1.742472,-1.742472,-1.742472,-1.742472,-1.742472,-1.742472 +-1.741628,-1.741628,-1.741628,-1.741628,-1.741628,-1.741628 +-1.740631,-1.740631,-1.740631,-1.740631,-1.740631,-1.740631 +-1.739469,-1.739469,-1.739469,-1.739469,-1.739469,-1.739469 +-1.738128,-1.738128,-1.738128,-1.738128,-1.738128,-1.738128 +-1.736596,-1.736596,-1.736596,-1.736596,-1.736596,-1.736596 +-1.73486,-1.73486,-1.73486,-1.73486,-1.73486,-1.73486 +-1.732907,-1.732907,-1.732907,-1.732907,-1.732907,-1.732907 +-1.730725,-1.730725,-1.730725,-1.730725,-1.730725,-1.730725 +-1.7283,-1.7283,-1.7283,-1.7283,-1.7283,-1.7283 +-1.72562,-1.72562,-1.72562,-1.72562,-1.72562,-1.72562 +-1.722673,-1.722673,-1.722673,-1.722673,-1.722673,-1.722673 +-1.719445,-1.719445,-1.719445,-1.719445,-1.719445,-1.719445 +-1.715924,-1.715924,-1.715924,-1.715924,-1.715924,-1.715924 +-1.712097,-1.712097,-1.712097,-1.712097,-1.712097,-1.712097 +-1.707953,-1.707953,-1.707953,-1.707953,-1.707953,-1.707953 +-1.703491,-1.703491,-1.703491,-1.703491,-1.703491,-1.703491 +-1.698709,-1.698709,-1.698709,-1.698709,-1.698709,-1.698709 +-1.693609,-1.693609,-1.693609,-1.693609,-1.693609,-1.693609 +-1.688191,-1.688191,-1.688191,-1.688191,-1.688191,-1.688191 +-1.682453,-1.682453,-1.682453,-1.682453,-1.682453,-1.682453 +-1.676397,-1.676397,-1.676397,-1.676397,-1.676397,-1.676397 +-1.670022,-1.670022,-1.670022,-1.670022,-1.670022,-1.670022 +-1.663328,-1.663328,-1.663328,-1.663328,-1.663328,-1.663328 +-1.656316,-1.656316,-1.656316,-1.656316,-1.656316,-1.656316 +-1.648984,-1.648984,-1.648984,-1.648984,-1.648984,-1.648984 +-1.641334,-1.641334,-1.641334,-1.641334,-1.641334,-1.641334 +-1.633366,-1.633366,-1.633366,-1.633366,-1.633366,-1.633366 +-1.625078,-1.625078,-1.625078,-1.625078,-1.625078,-1.625078 +-1.616472,-1.616472,-1.616472,-1.616472,-1.616472,-1.616472 +-1.607547,-1.607547,-1.607547,-1.607547,-1.607547,-1.607547 +-1.598303,-1.598303,-1.598303,-1.598303,-1.598303,-1.598303 +-1.588741,-1.588741,-1.588741,-1.588741,-1.588741,-1.588741 +-1.578859,-1.578859,-1.578859,-1.578859,-1.578859,-1.578859 +-1.568659,-1.568659,-1.568659,-1.568659,-1.568659,-1.568659 +-1.558141,-1.558141,-1.558141,-1.558141,-1.558141,-1.558141 +-1.547303,-1.547303,-1.547303,-1.547303,-1.547303,-1.547303 +-1.536147,-1.536147,-1.536147,-1.536147,-1.536147,-1.536147 +-1.524672,-1.524672,-1.524672,-1.524672,-1.524672,-1.524672 +-1.51288,-1.51288,-1.51288,-1.51288,-1.51288,-1.51288 +-1.500782,-1.500782,-1.500782,-1.500782,-1.500782,-1.500782 +-1.488391,-1.488391,-1.488391,-1.488391,-1.488391,-1.488391 +-1.475718,-1.475718,-1.475718,-1.475718,-1.475718,-1.475718 +-1.462778,-1.462778,-1.462778,-1.462778,-1.462778,-1.462778 +-1.449583,-1.449583,-1.449583,-1.449583,-1.449583,-1.449583 +-1.436145,-1.436145,-1.436145,-1.436145,-1.436145,-1.436145 +-1.422477,-1.422477,-1.422477,-1.422477,-1.422477,-1.422477 +-1.408592,-1.408592,-1.408592,-1.408592,-1.408592,-1.408592 +-1.394503,-1.394503,-1.394503,-1.394503,-1.394503,-1.394503 +-1.380223,-1.380223,-1.380223,-1.380223,-1.380223,-1.380223 +-1.365763,-1.365763,-1.365763,-1.365763,-1.365763,-1.365763 +-1.351138,-1.351138,-1.351138,-1.351138,-1.351138,-1.351138 +-1.33636,-1.33636,-1.33636,-1.33636,-1.33636,-1.33636 +-1.321441,-1.321441,-1.321441,-1.321441,-1.321441,-1.321441 +-1.306394,-1.306394,-1.306394,-1.306394,-1.306394,-1.306394 +-1.291232,-1.291232,-1.291232,-1.291232,-1.291232,-1.291232 +-1.275968,-1.275968,-1.275968,-1.275968,-1.275968,-1.275968 +-1.260615,-1.260615,-1.260615,-1.260615,-1.260615,-1.260615 +-1.245184,-1.245184,-1.245184,-1.245184,-1.245184,-1.245184 +-1.22969,-1.22969,-1.22969,-1.22969,-1.22969,-1.22969 +-1.214145,-1.214145,-1.214145,-1.214145,-1.214145,-1.214145 +-1.198561,-1.198561,-1.198561,-1.198561,-1.198561,-1.198561 +-1.182951,-1.182951,-1.182951,-1.182951,-1.182951,-1.182951 +-1.167328,-1.167328,-1.167328,-1.167328,-1.167328,-1.167328 +-1.151703,-1.151703,-1.151703,-1.151703,-1.151703,-1.151703 +-1.136078,-1.136078,-1.136078,-1.136078,-1.136078,-1.136078 +-1.120453,-1.120453,-1.120453,-1.120453,-1.120453,-1.120453 +-1.104828,-1.104828,-1.104828,-1.104828,-1.104828,-1.104828 +-1.089203,-1.089203,-1.089203,-1.089203,-1.089203,-1.089203 +-1.073578,-1.073578,-1.073578,-1.073578,-1.073578,-1.073578 +-1.057953,-1.057953,-1.057953,-1.057953,-1.057953,-1.057953 +-1.042328,-1.042328,-1.042328,-1.042328,-1.042328,-1.042328 +-1.026703,-1.026703,-1.026703,-1.026703,-1.026703,-1.026703 +-1.011078,-1.011078,-1.011078,-1.011078,-1.011078,-1.011078 +-0.995453,-0.995453,-0.995453,-0.995453,-0.995453,-0.995453 +-0.979828,-0.979828,-0.979828,-0.979828,-0.979828,-0.979828 +-0.964203,-0.964203,-0.964203,-0.964203,-0.964203,-0.964203 +-0.948578,-0.948578,-0.948578,-0.948578,-0.948578,-0.948578 +-0.932953,-0.932953,-0.932953,-0.932953,-0.932953,-0.932953 +-0.917328,-0.917328,-0.917328,-0.917328,-0.917328,-0.917328 +-0.901703,-0.901703,-0.901703,-0.901703,-0.901703,-0.901703 +-0.886078,-0.886078,-0.886078,-0.886078,-0.886078,-0.886078 +-0.870453,-0.870453,-0.870453,-0.870453,-0.870453,-0.870453 +-0.854828,-0.854828,-0.854828,-0.854828,-0.854828,-0.854828 +-0.839203,-0.839203,-0.839203,-0.839203,-0.839203,-0.839203 +-0.823578,-0.823578,-0.823578,-0.823578,-0.823578,-0.823578 +-0.807953,-0.807953,-0.807953,-0.807953,-0.807953,-0.807953 +-0.792328,-0.792328,-0.792328,-0.792328,-0.792328,-0.792328 +-0.776703,-0.776703,-0.776703,-0.776703,-0.776703,-0.776703 +-0.761078,-0.761078,-0.761078,-0.761078,-0.761078,-0.761078 +-0.745453,-0.745453,-0.745453,-0.745453,-0.745453,-0.745453 +-0.729828,-0.729828,-0.729828,-0.729828,-0.729828,-0.729828 +-0.714203,-0.714203,-0.714203,-0.714203,-0.714203,-0.714203 +-0.698578,-0.698578,-0.698578,-0.698578,-0.698578,-0.698578 +-0.682953,-0.682953,-0.682953,-0.682953,-0.682953,-0.682953 +-0.667328,-0.667328,-0.667328,-0.667328,-0.667328,-0.667328 +-0.651703,-0.651703,-0.651703,-0.651703,-0.651703,-0.651703 +-0.636078,-0.636078,-0.636078,-0.636078,-0.636078,-0.636078 +-0.620453,-0.620453,-0.620453,-0.620453,-0.620453,-0.620453 +-0.604828,-0.604828,-0.604828,-0.604828,-0.604828,-0.604828 +-0.589203,-0.589203,-0.589203,-0.589203,-0.589203,-0.589203 +-0.573578,-0.573578,-0.573578,-0.573578,-0.573578,-0.573578 +-0.557958,-0.557958,-0.557958,-0.557958,-0.557958,-0.557958 +-0.542354,-0.542354,-0.542354,-0.542354,-0.542354,-0.542354 +-0.52678,-0.52678,-0.52678,-0.52678,-0.52678,-0.52678 +-0.511247,-0.511247,-0.511247,-0.511247,-0.511247,-0.511247 +-0.49577,-0.49577,-0.49577,-0.49577,-0.49577,-0.49577 +-0.48036,-0.48036,-0.48036,-0.48036,-0.48036,-0.48036 +-0.46503,-0.46503,-0.46503,-0.46503,-0.46503,-0.46503 +-0.449794,-0.449794,-0.449794,-0.449794,-0.449794,-0.449794 +-0.434663,-0.434663,-0.434663,-0.434663,-0.434663,-0.434663 +-0.419651,-0.419651,-0.419651,-0.419651,-0.419651,-0.419651 +-0.40477,-0.40477,-0.40477,-0.40477,-0.40477,-0.40477 +-0.390033,-0.390033,-0.390033,-0.390033,-0.390033,-0.390033 +-0.375453,-0.375453,-0.375453,-0.375453,-0.375453,-0.375453 +-0.361043,-0.361043,-0.361043,-0.361043,-0.361043,-0.361043 +-0.346815,-0.346815,-0.346815,-0.346815,-0.346815,-0.346815 +-0.332782,-0.332782,-0.332782,-0.332782,-0.332782,-0.332782 +-0.318957,-0.318957,-0.318957,-0.318957,-0.318957,-0.318957 +-0.305353,-0.305353,-0.305353,-0.305353,-0.305353,-0.305353 +-0.291982,-0.291982,-0.291982,-0.291982,-0.291982,-0.291982 +-0.278857,-0.278857,-0.278857,-0.278857,-0.278857,-0.278857 +-0.265991,-0.265991,-0.265991,-0.265991,-0.265991,-0.265991 +-0.253396,-0.253396,-0.253396,-0.253396,-0.253396,-0.253396 +-0.241086,-0.241086,-0.241086,-0.241086,-0.241086,-0.241086 +-0.229073,-0.229073,-0.229073,-0.229073,-0.229073,-0.229073 +-0.217369,-0.217369,-0.217369,-0.217369,-0.217369,-0.217369 +-0.205984,-0.205984,-0.205984,-0.205984,-0.205984,-0.205984 +-0.194917,-0.194917,-0.194917,-0.194917,-0.194917,-0.194917 +-0.184169,-0.184169,-0.184169,-0.184169,-0.184169,-0.184169 +-0.17374,-0.17374,-0.17374,-0.17374,-0.17374,-0.17374 +-0.16363,-0.16363,-0.16363,-0.16363,-0.16363,-0.16363 +-0.153838,-0.153838,-0.153838,-0.153838,-0.153838,-0.153838 +-0.144365,-0.144365,-0.144365,-0.144365,-0.144365,-0.144365 +-0.135211,-0.135211,-0.135211,-0.135211,-0.135211,-0.135211 +-0.126376,-0.126376,-0.126376,-0.126376,-0.126376,-0.126376 +-0.117859,-0.117859,-0.117859,-0.117859,-0.117859,-0.117859 +-0.109661,-0.109661,-0.109661,-0.109661,-0.109661,-0.109661 +-0.101782,-0.101782,-0.101782,-0.101782,-0.101782,-0.101782 +-0.094222,-0.094222,-0.094222,-0.094222,-0.094222,-0.094222 +-0.08698,-0.08698,-0.08698,-0.08698,-0.08698,-0.08698 +-0.080057,-0.080057,-0.080057,-0.080057,-0.080057,-0.080057 +-0.073453,-0.073453,-0.073453,-0.073453,-0.073453,-0.073453 +-0.067168,-0.067168,-0.067168,-0.067168,-0.067168,-0.067168 +-0.061201,-0.061201,-0.061201,-0.061201,-0.061201,-0.061201 +-0.055553,-0.055553,-0.055553,-0.055553,-0.055553,-0.055553 +-0.050224,-0.050224,-0.050224,-0.050224,-0.050224,-0.050224 +-0.045214,-0.045214,-0.045214,-0.045214,-0.045214,-0.045214 +-0.040522,-0.040522,-0.040522,-0.040522,-0.040522,-0.040522 +-0.036149,-0.036149,-0.036149,-0.036149,-0.036149,-0.036149 +-0.032095,-0.032095,-0.032095,-0.032095,-0.032095,-0.032095 +-0.028356,-0.028356,-0.028356,-0.028356,-0.028356,-0.028356 +-0.024918,-0.024918,-0.024918,-0.024918,-0.024918,-0.024918 +-0.02177,-0.02177,-0.02177,-0.02177,-0.02177,-0.02177 +-0.0189,-0.0189,-0.0189,-0.0189,-0.0189,-0.0189 +-0.016293,-0.016293,-0.016293,-0.016293,-0.016293,-0.016293 +-0.013938,-0.013938,-0.013938,-0.013938,-0.013938,-0.013938 +-0.011821,-0.011821,-0.011821,-0.011821,-0.011821,-0.011821 +-0.009931,-0.009931,-0.009931,-0.009931,-0.009931,-0.009931 +-0.008253,-0.008253,-0.008253,-0.008253,-0.008253,-0.008253 +-0.006776,-0.006776,-0.006776,-0.006776,-0.006776,-0.006776 +-0.005487,-0.005487,-0.005487,-0.005487,-0.005487,-0.005487 +-0.004372,-0.004372,-0.004372,-0.004372,-0.004372,-0.004372 +-0.00342,-0.00342,-0.00342,-0.00342,-0.00342,-0.00342 +-0.002617,-0.002617,-0.002617,-0.002617,-0.002617,-0.002617 +-0.001951,-0.001951,-0.001951,-0.001951,-0.001951,-0.001951 +-0.001408,-0.001408,-0.001408,-0.001408,-0.001408,-0.001408 +-0.000977,-0.000977,-0.000977,-0.000977,-0.000977,-0.000977 +-0.000645,-0.000645,-0.000645,-0.000645,-0.000645,-0.000645 +-0.000397,-0.000397,-0.000397,-0.000397,-0.000397,-0.000397 +-0.000223,-0.000223,-0.000223,-0.000223,-0.000223,-0.000223 +-0.000109,-0.000109,-0.000109,-0.000109,-0.000109,-0.000109 +-0.000043,-0.000043,-0.000043,-0.000043,-0.000043,-0.000043 +-0.000011,-0.000011,-0.000011,-0.000011,-0.000011,-0.000011 +-0.000001,-0.000001,-0.000001,-0.000001,-0.000001,-0.000001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/6.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/6.csv new file mode 100644 index 00000000..b3bd38f5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/6.csv @@ -0,0 +1,4731 @@ +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000018,0.000018,0.000018,0.000018,0.000018,0.000018 +0.000061,0.000061,0.000061,0.000061,0.000061,0.000061 +0.000144,0.000144,0.000144,0.000144,0.000144,0.000144 +0.000281,0.000281,0.000281,0.000281,0.000281,0.000281 +0.000486,0.000486,0.000486,0.000486,0.000486,0.000486 +0.000772,0.000772,0.000772,0.000772,0.000772,0.000772 +0.001152,0.001152,0.001152,0.001152,0.001152,0.001152 +0.00164,0.00164,0.00164,0.00164,0.00164,0.00164 +0.00225,0.00225,0.00225,0.00225,0.00225,0.00225 +0.002995,0.002995,0.002995,0.002995,0.002995,0.002995 +0.003888,0.003888,0.003888,0.003888,0.003888,0.003888 +0.004943,0.004943,0.004943,0.004943,0.004943,0.004943 +0.006174,0.006174,0.006174,0.006174,0.006174,0.006174 +0.007594,0.007594,0.007594,0.007594,0.007594,0.007594 +0.009216,0.009216,0.009216,0.009216,0.009216,0.009216 +0.011054,0.011054,0.011054,0.011054,0.011054,0.011054 +0.013122,0.013122,0.013122,0.013122,0.013122,0.013122 +0.015433,0.015433,0.015433,0.015433,0.015433,0.015433 +0.018,0.018,0.018,0.018,0.018,0.018 +0.020837,0.020837,0.020837,0.020837,0.020837,0.020837 +0.023958,0.023958,0.023958,0.023958,0.023958,0.023958 +0.027376,0.027376,0.027376,0.027376,0.027376,0.027376 +0.031104,0.031104,0.031104,0.031104,0.031104,0.031104 +0.035156,0.035156,0.035156,0.035156,0.035156,0.035156 +0.039544,0.039544,0.039544,0.039544,0.039544,0.039544 +0.044269,0.044269,0.044269,0.044269,0.044269,0.044269 +0.049331,0.049331,0.049331,0.049331,0.049331,0.049331 +0.054731,0.054731,0.054731,0.054731,0.054731,0.054731 +0.060469,0.060469,0.060469,0.060469,0.060469,0.060469 +0.066544,0.066544,0.066544,0.066544,0.066544,0.066544 +0.072956,0.072956,0.072956,0.072956,0.072956,0.072956 +0.079706,0.079706,0.079706,0.079706,0.079706,0.079706 +0.086794,0.086794,0.086794,0.086794,0.086794,0.086794 +0.094219,0.094219,0.094219,0.094219,0.094219,0.094219 +0.101981,0.101981,0.101981,0.101981,0.101981,0.101981 +0.110081,0.110081,0.110081,0.110081,0.110081,0.110081 +0.118519,0.118519,0.118519,0.118519,0.118519,0.118519 +0.127294,0.127294,0.127294,0.127294,0.127294,0.127294 +0.136406,0.136406,0.136406,0.136406,0.136406,0.136406 +0.145856,0.145856,0.145856,0.145856,0.145856,0.145856 +0.155644,0.155644,0.155644,0.155644,0.155644,0.155644 +0.165769,0.165769,0.165769,0.165769,0.165769,0.165769 +0.176231,0.176231,0.176231,0.176231,0.176231,0.176231 +0.187031,0.187031,0.187031,0.187031,0.187031,0.187031 +0.198169,0.198169,0.198169,0.198169,0.198169,0.198169 +0.209643,0.209643,0.209643,0.209643,0.209643,0.209643 +0.221445,0.221445,0.221445,0.221445,0.221445,0.221445 +0.233562,0.233562,0.233562,0.233562,0.233562,0.233562 +0.245979,0.245979,0.245979,0.245979,0.245979,0.245979 +0.258685,0.258685,0.258685,0.258685,0.258685,0.258685 +0.271664,0.271664,0.271664,0.271664,0.271664,0.271664 +0.284903,0.284903,0.284903,0.284903,0.284903,0.284903 +0.29839,0.29839,0.29839,0.29839,0.29839,0.29839 +0.31211,0.31211,0.31211,0.31211,0.31211,0.31211 +0.32605,0.32605,0.32605,0.32605,0.32605,0.32605 +0.340197,0.340197,0.340197,0.340197,0.340197,0.340197 +0.354537,0.354537,0.354537,0.354537,0.354537,0.354537 +0.369056,0.369056,0.369056,0.369056,0.369056,0.369056 +0.383741,0.383741,0.383741,0.383741,0.383741,0.383741 +0.398579,0.398579,0.398579,0.398579,0.398579,0.398579 +0.413555,0.413555,0.413555,0.413555,0.413555,0.413555 +0.428657,0.428657,0.428657,0.428657,0.428657,0.428657 +0.443872,0.443872,0.443872,0.443872,0.443872,0.443872 +0.459184,0.459184,0.459184,0.459184,0.459184,0.459184 +0.474582,0.474582,0.474582,0.474582,0.474582,0.474582 +0.490051,0.490051,0.490051,0.490051,0.490051,0.490051 +0.505578,0.505578,0.505578,0.505578,0.505578,0.505578 +0.52115,0.52115,0.52115,0.52115,0.52115,0.52115 +0.536753,0.536753,0.536753,0.536753,0.536753,0.536753 +0.552373,0.552373,0.552373,0.552373,0.552373,0.552373 +0.567998,0.567998,0.567998,0.567998,0.567998,0.567998 +0.583623,0.583623,0.583623,0.583623,0.583623,0.583623 +0.599248,0.599248,0.599248,0.599248,0.599248,0.599248 +0.614873,0.614873,0.614873,0.614873,0.614873,0.614873 +0.630498,0.630498,0.630498,0.630498,0.630498,0.630498 +0.646123,0.646123,0.646123,0.646123,0.646123,0.646123 +0.661748,0.661748,0.661748,0.661748,0.661748,0.661748 +0.677373,0.677373,0.677373,0.677373,0.677373,0.677373 +0.692998,0.692998,0.692998,0.692998,0.692998,0.692998 +0.708623,0.708623,0.708623,0.708623,0.708623,0.708623 +0.724248,0.724248,0.724248,0.724248,0.724248,0.724248 +0.739873,0.739873,0.739873,0.739873,0.739873,0.739873 +0.755498,0.755498,0.755498,0.755498,0.755498,0.755498 +0.771123,0.771123,0.771123,0.771123,0.771123,0.771123 +0.786748,0.786748,0.786748,0.786748,0.786748,0.786748 +0.802373,0.802373,0.802373,0.802373,0.802373,0.802373 +0.817998,0.817998,0.817998,0.817998,0.817998,0.817998 +0.833623,0.833623,0.833623,0.833623,0.833623,0.833623 +0.849248,0.849248,0.849248,0.849248,0.849248,0.849248 +0.864873,0.864873,0.864873,0.864873,0.864873,0.864873 +0.880498,0.880498,0.880498,0.880498,0.880498,0.880498 +0.896123,0.896123,0.896123,0.896123,0.896123,0.896123 +0.911748,0.911748,0.911748,0.911748,0.911748,0.911748 +0.927373,0.927373,0.927373,0.927373,0.927373,0.927373 +0.942998,0.942998,0.942998,0.942998,0.942998,0.942998 +0.958623,0.958623,0.958623,0.958623,0.958623,0.958623 +0.974248,0.974248,0.974248,0.974248,0.974248,0.974248 +0.989873,0.989873,0.989873,0.989873,0.989873,0.989873 +1.005498,1.005498,1.005498,1.005498,1.005498,1.005498 +1.021123,1.021123,1.021123,1.021123,1.021123,1.021123 +1.036748,1.036748,1.036748,1.036748,1.036748,1.036748 +1.052373,1.052373,1.052373,1.052373,1.052373,1.052373 +1.067998,1.067998,1.067998,1.067998,1.067998,1.067998 +1.083623,1.083623,1.083623,1.083623,1.083623,1.083623 +1.099248,1.099248,1.099248,1.099248,1.099248,1.099248 +1.114873,1.114873,1.114873,1.114873,1.114873,1.114873 +1.130498,1.130498,1.130498,1.130498,1.130498,1.130498 +1.146123,1.146123,1.146123,1.146123,1.146123,1.146123 +1.161748,1.161748,1.161748,1.161748,1.161748,1.161748 +1.177373,1.177373,1.177373,1.177373,1.177373,1.177373 +1.192998,1.192998,1.192998,1.192998,1.192998,1.192998 +1.208618,1.208618,1.208618,1.208618,1.208618,1.208618 +1.22422,1.22422,1.22422,1.22422,1.22422,1.22422 +1.239792,1.239792,1.239792,1.239792,1.239792,1.239792 +1.255319,1.255319,1.255319,1.255319,1.255319,1.255319 +1.270788,1.270788,1.270788,1.270788,1.270788,1.270788 +1.286185,1.286185,1.286185,1.286185,1.286185,1.286185 +1.301497,1.301497,1.301497,1.301497,1.301497,1.301497 +1.316711,1.316711,1.316711,1.316711,1.316711,1.316711 +1.331812,1.331812,1.331812,1.331812,1.331812,1.331812 +1.346788,1.346788,1.346788,1.346788,1.346788,1.346788 +1.361625,1.361625,1.361625,1.361625,1.361625,1.361625 +1.37631,1.37631,1.37631,1.37631,1.37631,1.37631 +1.390828,1.390828,1.390828,1.390828,1.390828,1.390828 +1.405167,1.405167,1.405167,1.405167,1.405167,1.405167 +1.419313,1.419313,1.419313,1.419313,1.419313,1.419313 +1.433252,1.433252,1.433252,1.433252,1.433252,1.433252 +1.446971,1.446971,1.446971,1.446971,1.446971,1.446971 +1.460457,1.460457,1.460457,1.460457,1.460457,1.460457 +1.473695,1.473695,1.473695,1.473695,1.473695,1.473695 +1.486673,1.486673,1.486673,1.486673,1.486673,1.486673 +1.499377,1.499377,1.499377,1.499377,1.499377,1.499377 +1.511793,1.511793,1.511793,1.511793,1.511793,1.511793 +1.523909,1.523909,1.523909,1.523909,1.523909,1.523909 +1.535709,1.535709,1.535709,1.535709,1.535709,1.535709 +1.547182,1.547182,1.547182,1.547182,1.547182,1.547182 +1.558318,1.558318,1.558318,1.558318,1.558318,1.558318 +1.569117,1.569117,1.569117,1.569117,1.569117,1.569117 +1.579578,1.579578,1.579578,1.579578,1.579578,1.579578 +1.589701,1.589701,1.589701,1.589701,1.589701,1.589701 +1.599487,1.599487,1.599487,1.599487,1.599487,1.599487 +1.608936,1.608936,1.608936,1.608936,1.608936,1.608936 +1.618047,1.618047,1.618047,1.618047,1.618047,1.618047 +1.62682,1.62682,1.62682,1.62682,1.62682,1.62682 +1.635256,1.635256,1.635256,1.635256,1.635256,1.635256 +1.643354,1.643354,1.643354,1.643354,1.643354,1.643354 +1.651115,1.651115,1.651115,1.651115,1.651115,1.651115 +1.658539,1.658539,1.658539,1.658539,1.658539,1.658539 +1.665625,1.665625,1.665625,1.665625,1.665625,1.665625 +1.672373,1.672373,1.672373,1.672373,1.672373,1.672373 +1.678784,1.678784,1.678784,1.678784,1.678784,1.678784 +1.684858,1.684858,1.684858,1.684858,1.684858,1.684858 +1.690594,1.690594,1.690594,1.690594,1.690594,1.690594 +1.695992,1.695992,1.695992,1.695992,1.695992,1.695992 +1.701053,1.701053,1.701053,1.701053,1.701053,1.701053 +1.705777,1.705777,1.705777,1.705777,1.705777,1.705777 +1.710163,1.710163,1.710163,1.710163,1.710163,1.710163 +1.714214,1.714214,1.714214,1.714214,1.714214,1.714214 +1.71794,1.71794,1.71794,1.71794,1.71794,1.71794 +1.721357,1.721357,1.721357,1.721357,1.721357,1.721357 +1.724476,1.724476,1.724476,1.724476,1.724476,1.724476 +1.727312,1.727312,1.727312,1.727312,1.727312,1.727312 +1.729878,1.729878,1.729878,1.729878,1.729878,1.729878 +1.732188,1.732188,1.732188,1.732188,1.732188,1.732188 +1.734255,1.734255,1.734255,1.734255,1.734255,1.734255 +1.736092,1.736092,1.736092,1.736092,1.736092,1.736092 +1.737713,1.737713,1.737713,1.737713,1.737713,1.737713 +1.739132,1.739132,1.739132,1.739132,1.739132,1.739132 +1.740362,1.740362,1.740362,1.740362,1.740362,1.740362 +1.741416,1.741416,1.741416,1.741416,1.741416,1.741416 +1.742309,1.742309,1.742309,1.742309,1.742309,1.742309 +1.743053,1.743053,1.743053,1.743053,1.743053,1.743053 +1.743662,1.743662,1.743662,1.743662,1.743662,1.743662 +1.74415,1.74415,1.74415,1.74415,1.74415,1.74415 +1.74453,1.74453,1.74453,1.74453,1.74453,1.74453 +1.744815,1.744815,1.744815,1.744815,1.744815,1.744815 +1.74502,1.74502,1.74502,1.74502,1.74502,1.74502 +1.745156,1.745156,1.745156,1.745156,1.745156,1.745156 +1.74524,1.74524,1.74524,1.74524,1.74524,1.74524 +1.745282,1.745282,1.745282,1.745282,1.745282,1.745282 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745282,1.745282,1.745282,1.745282,1.745282,1.745282 +1.745239,1.745239,1.745239,1.745239,1.745239,1.745239 +1.745156,1.745156,1.745156,1.745156,1.745156,1.745156 +1.745019,1.745019,1.745019,1.745019,1.745019,1.745019 +1.744814,1.744814,1.744814,1.744814,1.744814,1.744814 +1.744528,1.744528,1.744528,1.744528,1.744528,1.744528 +1.744148,1.744148,1.744148,1.744148,1.744148,1.744148 +1.74366,1.74366,1.74366,1.74366,1.74366,1.74366 +1.74305,1.74305,1.74305,1.74305,1.74305,1.74305 +1.742305,1.742305,1.742305,1.742305,1.742305,1.742305 +1.741412,1.741412,1.741412,1.741412,1.741412,1.741412 +1.740357,1.740357,1.740357,1.740357,1.740357,1.740357 +1.739126,1.739126,1.739126,1.739126,1.739126,1.739126 +1.737706,1.737706,1.737706,1.737706,1.737706,1.737706 +1.736084,1.736084,1.736084,1.736084,1.736084,1.736084 +1.734246,1.734246,1.734246,1.734246,1.734246,1.734246 +1.732178,1.732178,1.732178,1.732178,1.732178,1.732178 +1.729867,1.729867,1.729867,1.729867,1.729867,1.729867 +1.7273,1.7273,1.7273,1.7273,1.7273,1.7273 +1.724463,1.724463,1.724463,1.724463,1.724463,1.724463 +1.721342,1.721342,1.721342,1.721342,1.721342,1.721342 +1.717924,1.717924,1.717924,1.717924,1.717924,1.717924 +1.714196,1.714196,1.714196,1.714196,1.714196,1.714196 +1.710144,1.710144,1.710144,1.710144,1.710144,1.710144 +1.705756,1.705756,1.705756,1.705756,1.705756,1.705756 +1.701031,1.701031,1.701031,1.701031,1.701031,1.701031 +1.695969,1.695969,1.695969,1.695969,1.695969,1.695969 +1.690569,1.690569,1.690569,1.690569,1.690569,1.690569 +1.684831,1.684831,1.684831,1.684831,1.684831,1.684831 +1.678756,1.678756,1.678756,1.678756,1.678756,1.678756 +1.672344,1.672344,1.672344,1.672344,1.672344,1.672344 +1.665594,1.665594,1.665594,1.665594,1.665594,1.665594 +1.658506,1.658506,1.658506,1.658506,1.658506,1.658506 +1.651081,1.651081,1.651081,1.651081,1.651081,1.651081 +1.643319,1.643319,1.643319,1.643319,1.643319,1.643319 +1.635219,1.635219,1.635219,1.635219,1.635219,1.635219 +1.626781,1.626781,1.626781,1.626781,1.626781,1.626781 +1.618006,1.618006,1.618006,1.618006,1.618006,1.618006 +1.608894,1.608894,1.608894,1.608894,1.608894,1.608894 +1.599444,1.599444,1.599444,1.599444,1.599444,1.599444 +1.589656,1.589656,1.589656,1.589656,1.589656,1.589656 +1.579531,1.579531,1.579531,1.579531,1.579531,1.579531 +1.569069,1.569069,1.569069,1.569069,1.569069,1.569069 +1.558269,1.558269,1.558269,1.558269,1.558269,1.558269 +1.547131,1.547131,1.547131,1.547131,1.547131,1.547131 +1.535657,1.535657,1.535657,1.535657,1.535657,1.535657 +1.523855,1.523855,1.523855,1.523855,1.523855,1.523855 +1.511738,1.511738,1.511738,1.511738,1.511738,1.511738 +1.499321,1.499321,1.499321,1.499321,1.499321,1.499321 +1.486615,1.486615,1.486615,1.486615,1.486615,1.486615 +1.473636,1.473636,1.473636,1.473636,1.473636,1.473636 +1.460397,1.460397,1.460397,1.460397,1.460397,1.460397 +1.44691,1.44691,1.44691,1.44691,1.44691,1.44691 +1.43319,1.43319,1.43319,1.43319,1.43319,1.43319 +1.41925,1.41925,1.41925,1.41925,1.41925,1.41925 +1.405103,1.405103,1.405103,1.405103,1.405103,1.405103 +1.390763,1.390763,1.390763,1.390763,1.390763,1.390763 +1.376244,1.376244,1.376244,1.376244,1.376244,1.376244 +1.361559,1.361559,1.361559,1.361559,1.361559,1.361559 +1.346721,1.346721,1.346721,1.346721,1.346721,1.346721 +1.331745,1.331745,1.331745,1.331745,1.331745,1.331745 +1.316643,1.316643,1.316643,1.316643,1.316643,1.316643 +1.301428,1.301428,1.301428,1.301428,1.301428,1.301428 +1.286116,1.286116,1.286116,1.286116,1.286116,1.286116 +1.270718,1.270718,1.270718,1.270718,1.270718,1.270718 +1.255249,1.255249,1.255249,1.255249,1.255249,1.255249 +1.239722,1.239722,1.239722,1.239722,1.239722,1.239722 +1.22415,1.22415,1.22415,1.22415,1.22415,1.22415 +1.208547,1.208547,1.208547,1.208547,1.208547,1.208547 +1.192927,1.192927,1.192927,1.192927,1.192927,1.192927 +1.177302,1.177302,1.177302,1.177302,1.177302,1.177302 +1.161677,1.161677,1.161677,1.161677,1.161677,1.161677 +1.146052,1.146052,1.146052,1.146052,1.146052,1.146052 +1.130427,1.130427,1.130427,1.130427,1.130427,1.130427 +1.114802,1.114802,1.114802,1.114802,1.114802,1.114802 +1.099177,1.099177,1.099177,1.099177,1.099177,1.099177 +1.083552,1.083552,1.083552,1.083552,1.083552,1.083552 +1.067927,1.067927,1.067927,1.067927,1.067927,1.067927 +1.052302,1.052302,1.052302,1.052302,1.052302,1.052302 +1.036677,1.036677,1.036677,1.036677,1.036677,1.036677 +1.021052,1.021052,1.021052,1.021052,1.021052,1.021052 +1.005427,1.005427,1.005427,1.005427,1.005427,1.005427 +0.989802,0.989802,0.989802,0.989802,0.989802,0.989802 +0.974177,0.974177,0.974177,0.974177,0.974177,0.974177 +0.958552,0.958552,0.958552,0.958552,0.958552,0.958552 +0.942927,0.942927,0.942927,0.942927,0.942927,0.942927 +0.927302,0.927302,0.927302,0.927302,0.927302,0.927302 +0.911677,0.911677,0.911677,0.911677,0.911677,0.911677 +0.896052,0.896052,0.896052,0.896052,0.896052,0.896052 +0.880427,0.880427,0.880427,0.880427,0.880427,0.880427 +0.864802,0.864802,0.864802,0.864802,0.864802,0.864802 +0.849177,0.849177,0.849177,0.849177,0.849177,0.849177 +0.833552,0.833552,0.833552,0.833552,0.833552,0.833552 +0.817927,0.817927,0.817927,0.817927,0.817927,0.817927 +0.802302,0.802302,0.802302,0.802302,0.802302,0.802302 +0.786677,0.786677,0.786677,0.786677,0.786677,0.786677 +0.771052,0.771052,0.771052,0.771052,0.771052,0.771052 +0.755427,0.755427,0.755427,0.755427,0.755427,0.755427 +0.739802,0.739802,0.739802,0.739802,0.739802,0.739802 +0.724177,0.724177,0.724177,0.724177,0.724177,0.724177 +0.708552,0.708552,0.708552,0.708552,0.708552,0.708552 +0.692927,0.692927,0.692927,0.692927,0.692927,0.692927 +0.677302,0.677302,0.677302,0.677302,0.677302,0.677302 +0.661677,0.661677,0.661677,0.661677,0.661677,0.661677 +0.646052,0.646052,0.646052,0.646052,0.646052,0.646052 +0.630427,0.630427,0.630427,0.630427,0.630427,0.630427 +0.614802,0.614802,0.614802,0.614802,0.614802,0.614802 +0.599177,0.599177,0.599177,0.599177,0.599177,0.599177 +0.583552,0.583552,0.583552,0.583552,0.583552,0.583552 +0.567927,0.567927,0.567927,0.567927,0.567927,0.567927 +0.552302,0.552302,0.552302,0.552302,0.552302,0.552302 +0.536682,0.536682,0.536682,0.536682,0.536682,0.536682 +0.52108,0.52108,0.52108,0.52108,0.52108,0.52108 +0.505508,0.505508,0.505508,0.505508,0.505508,0.505508 +0.489981,0.489981,0.489981,0.489981,0.489981,0.489981 +0.474512,0.474512,0.474512,0.474512,0.474512,0.474512 +0.459115,0.459115,0.459115,0.459115,0.459115,0.459115 +0.443803,0.443803,0.443803,0.443803,0.443803,0.443803 +0.428589,0.428589,0.428589,0.428589,0.428589,0.428589 +0.413488,0.413488,0.413488,0.413488,0.413488,0.413488 +0.398512,0.398512,0.398512,0.398512,0.398512,0.398512 +0.383675,0.383675,0.383675,0.383675,0.383675,0.383675 +0.36899,0.36899,0.36899,0.36899,0.36899,0.36899 +0.354472,0.354472,0.354472,0.354472,0.354472,0.354472 +0.340133,0.340133,0.340133,0.340133,0.340133,0.340133 +0.325987,0.325987,0.325987,0.325987,0.325987,0.325987 +0.312048,0.312048,0.312048,0.312048,0.312048,0.312048 +0.298329,0.298329,0.298329,0.298329,0.298329,0.298329 +0.284843,0.284843,0.284843,0.284843,0.284843,0.284843 +0.271605,0.271605,0.271605,0.271605,0.271605,0.271605 +0.258627,0.258627,0.258627,0.258627,0.258627,0.258627 +0.245923,0.245923,0.245923,0.245923,0.245923,0.245923 +0.233507,0.233507,0.233507,0.233507,0.233507,0.233507 +0.221391,0.221391,0.221391,0.221391,0.221391,0.221391 +0.209591,0.209591,0.209591,0.209591,0.209591,0.209591 +0.198118,0.198118,0.198118,0.198118,0.198118,0.198118 +0.186982,0.186982,0.186982,0.186982,0.186982,0.186982 +0.176183,0.176183,0.176183,0.176183,0.176183,0.176183 +0.165722,0.165722,0.165722,0.165722,0.165722,0.165722 +0.155599,0.155599,0.155599,0.155599,0.155599,0.155599 +0.145813,0.145813,0.145813,0.145813,0.145813,0.145813 +0.136364,0.136364,0.136364,0.136364,0.136364,0.136364 +0.127253,0.127253,0.127253,0.127253,0.127253,0.127253 +0.11848,0.11848,0.11848,0.11848,0.11848,0.11848 +0.110044,0.110044,0.110044,0.110044,0.110044,0.110044 +0.101946,0.101946,0.101946,0.101946,0.101946,0.101946 +0.094185,0.094185,0.094185,0.094185,0.094185,0.094185 +0.086761,0.086761,0.086761,0.086761,0.086761,0.086761 +0.079675,0.079675,0.079675,0.079675,0.079675,0.079675 +0.072927,0.072927,0.072927,0.072927,0.072927,0.072927 +0.066516,0.066516,0.066516,0.066516,0.066516,0.066516 +0.060442,0.060442,0.060442,0.060442,0.060442,0.060442 +0.054706,0.054706,0.054706,0.054706,0.054706,0.054706 +0.049308,0.049308,0.049308,0.049308,0.049308,0.049308 +0.044247,0.044247,0.044247,0.044247,0.044247,0.044247 +0.039523,0.039523,0.039523,0.039523,0.039523,0.039523 +0.035137,0.035137,0.035137,0.035137,0.035137,0.035137 +0.031086,0.031086,0.031086,0.031086,0.031086,0.031086 +0.02736,0.02736,0.02736,0.02736,0.02736,0.02736 +0.023943,0.023943,0.023943,0.023943,0.023943,0.023943 +0.020824,0.020824,0.020824,0.020824,0.020824,0.020824 +0.017988,0.017988,0.017988,0.017988,0.017988,0.017988 +0.015422,0.015422,0.015422,0.015422,0.015422,0.015422 +0.013112,0.013112,0.013112,0.013112,0.013112,0.013112 +0.011045,0.011045,0.011045,0.011045,0.011045,0.011045 +0.009208,0.009208,0.009208,0.009208,0.009208,0.009208 +0.007587,0.007587,0.007587,0.007587,0.007587,0.007587 +0.006168,0.006168,0.006168,0.006168,0.006168,0.006168 +0.004938,0.004938,0.004938,0.004938,0.004938,0.004938 +0.003884,0.003884,0.003884,0.003884,0.003884,0.003884 +0.002991,0.002991,0.002991,0.002991,0.002991,0.002991 +0.002247,0.002247,0.002247,0.002247,0.002247,0.002247 +0.001638,0.001638,0.001638,0.001638,0.001638,0.001638 +0.00115,0.00115,0.00115,0.00115,0.00115,0.00115 +0.00077,0.00077,0.00077,0.00077,0.00077,0.00077 +0.000485,0.000485,0.000485,0.000485,0.000485,0.000485 +0.00028,0.00028,0.00028,0.00028,0.00028,0.00028 +0.000144,0.000144,0.000144,0.000144,0.000144,0.000144 +0.00006,0.00006,0.00006,0.00006,0.00006,0.00006 +0.000018,0.000018,0.000018,0.000018,0.000018,0.000018 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000018,-0.000018,-0.000018,-0.000018,-0.000018,-0.000018 +-0.000061,-0.000061,-0.000061,-0.000061,-0.000061,-0.000061 +-0.000144,-0.000144,-0.000144,-0.000144,-0.000144,-0.000144 +-0.000281,-0.000281,-0.000281,-0.000281,-0.000281,-0.000281 +-0.000486,-0.000486,-0.000486,-0.000486,-0.000486,-0.000486 +-0.000772,-0.000772,-0.000772,-0.000772,-0.000772,-0.000772 +-0.001152,-0.001152,-0.001152,-0.001152,-0.001152,-0.001152 +-0.00164,-0.00164,-0.00164,-0.00164,-0.00164,-0.00164 +-0.00225,-0.00225,-0.00225,-0.00225,-0.00225,-0.00225 +-0.002995,-0.002995,-0.002995,-0.002995,-0.002995,-0.002995 +-0.003888,-0.003888,-0.003888,-0.003888,-0.003888,-0.003888 +-0.004943,-0.004943,-0.004943,-0.004943,-0.004943,-0.004943 +-0.006174,-0.006174,-0.006174,-0.006174,-0.006174,-0.006174 +-0.007594,-0.007594,-0.007594,-0.007594,-0.007594,-0.007594 +-0.009216,-0.009216,-0.009216,-0.009216,-0.009216,-0.009216 +-0.011054,-0.011054,-0.011054,-0.011054,-0.011054,-0.011054 +-0.013122,-0.013122,-0.013122,-0.013122,-0.013122,-0.013122 +-0.015433,-0.015433,-0.015433,-0.015433,-0.015433,-0.015433 +-0.018,-0.018,-0.018,-0.018,-0.018,-0.018 +-0.020837,-0.020837,-0.020837,-0.020837,-0.020837,-0.020837 +-0.023958,-0.023958,-0.023958,-0.023958,-0.023958,-0.023958 +-0.027376,-0.027376,-0.027376,-0.027376,-0.027376,-0.027376 +-0.031104,-0.031104,-0.031104,-0.031104,-0.031104,-0.031104 +-0.035156,-0.035156,-0.035156,-0.035156,-0.035156,-0.035156 +-0.039544,-0.039544,-0.039544,-0.039544,-0.039544,-0.039544 +-0.044269,-0.044269,-0.044269,-0.044269,-0.044269,-0.044269 +-0.049331,-0.049331,-0.049331,-0.049331,-0.049331,-0.049331 +-0.054731,-0.054731,-0.054731,-0.054731,-0.054731,-0.054731 +-0.060469,-0.060469,-0.060469,-0.060469,-0.060469,-0.060469 +-0.066544,-0.066544,-0.066544,-0.066544,-0.066544,-0.066544 +-0.072956,-0.072956,-0.072956,-0.072956,-0.072956,-0.072956 +-0.079706,-0.079706,-0.079706,-0.079706,-0.079706,-0.079706 +-0.086794,-0.086794,-0.086794,-0.086794,-0.086794,-0.086794 +-0.094219,-0.094219,-0.094219,-0.094219,-0.094219,-0.094219 +-0.101981,-0.101981,-0.101981,-0.101981,-0.101981,-0.101981 +-0.110081,-0.110081,-0.110081,-0.110081,-0.110081,-0.110081 +-0.118519,-0.118519,-0.118519,-0.118519,-0.118519,-0.118519 +-0.127294,-0.127294,-0.127294,-0.127294,-0.127294,-0.127294 +-0.136406,-0.136406,-0.136406,-0.136406,-0.136406,-0.136406 +-0.145856,-0.145856,-0.145856,-0.145856,-0.145856,-0.145856 +-0.155644,-0.155644,-0.155644,-0.155644,-0.155644,-0.155644 +-0.165769,-0.165769,-0.165769,-0.165769,-0.165769,-0.165769 +-0.176231,-0.176231,-0.176231,-0.176231,-0.176231,-0.176231 +-0.187031,-0.187031,-0.187031,-0.187031,-0.187031,-0.187031 +-0.198169,-0.198169,-0.198169,-0.198169,-0.198169,-0.198169 +-0.209643,-0.209643,-0.209643,-0.209643,-0.209643,-0.209643 +-0.221445,-0.221445,-0.221445,-0.221445,-0.221445,-0.221445 +-0.233562,-0.233562,-0.233562,-0.233562,-0.233562,-0.233562 +-0.245979,-0.245979,-0.245979,-0.245979,-0.245979,-0.245979 +-0.258685,-0.258685,-0.258685,-0.258685,-0.258685,-0.258685 +-0.271664,-0.271664,-0.271664,-0.271664,-0.271664,-0.271664 +-0.284903,-0.284903,-0.284903,-0.284903,-0.284903,-0.284903 +-0.29839,-0.29839,-0.29839,-0.29839,-0.29839,-0.29839 +-0.31211,-0.31211,-0.31211,-0.31211,-0.31211,-0.31211 +-0.32605,-0.32605,-0.32605,-0.32605,-0.32605,-0.32605 +-0.340197,-0.340197,-0.340197,-0.340197,-0.340197,-0.340197 +-0.354537,-0.354537,-0.354537,-0.354537,-0.354537,-0.354537 +-0.369056,-0.369056,-0.369056,-0.369056,-0.369056,-0.369056 +-0.383741,-0.383741,-0.383741,-0.383741,-0.383741,-0.383741 +-0.398579,-0.398579,-0.398579,-0.398579,-0.398579,-0.398579 +-0.413555,-0.413555,-0.413555,-0.413555,-0.413555,-0.413555 +-0.428657,-0.428657,-0.428657,-0.428657,-0.428657,-0.428657 +-0.443872,-0.443872,-0.443872,-0.443872,-0.443872,-0.443872 +-0.459184,-0.459184,-0.459184,-0.459184,-0.459184,-0.459184 +-0.474582,-0.474582,-0.474582,-0.474582,-0.474582,-0.474582 +-0.490051,-0.490051,-0.490051,-0.490051,-0.490051,-0.490051 +-0.505578,-0.505578,-0.505578,-0.505578,-0.505578,-0.505578 +-0.52115,-0.52115,-0.52115,-0.52115,-0.52115,-0.52115 +-0.536753,-0.536753,-0.536753,-0.536753,-0.536753,-0.536753 +-0.552373,-0.552373,-0.552373,-0.552373,-0.552373,-0.552373 +-0.567998,-0.567998,-0.567998,-0.567998,-0.567998,-0.567998 +-0.583623,-0.583623,-0.583623,-0.583623,-0.583623,-0.583623 +-0.599248,-0.599248,-0.599248,-0.599248,-0.599248,-0.599248 +-0.614873,-0.614873,-0.614873,-0.614873,-0.614873,-0.614873 +-0.630498,-0.630498,-0.630498,-0.630498,-0.630498,-0.630498 +-0.646123,-0.646123,-0.646123,-0.646123,-0.646123,-0.646123 +-0.661748,-0.661748,-0.661748,-0.661748,-0.661748,-0.661748 +-0.677373,-0.677373,-0.677373,-0.677373,-0.677373,-0.677373 +-0.692998,-0.692998,-0.692998,-0.692998,-0.692998,-0.692998 +-0.708623,-0.708623,-0.708623,-0.708623,-0.708623,-0.708623 +-0.724248,-0.724248,-0.724248,-0.724248,-0.724248,-0.724248 +-0.739873,-0.739873,-0.739873,-0.739873,-0.739873,-0.739873 +-0.755498,-0.755498,-0.755498,-0.755498,-0.755498,-0.755498 +-0.771123,-0.771123,-0.771123,-0.771123,-0.771123,-0.771123 +-0.786748,-0.786748,-0.786748,-0.786748,-0.786748,-0.786748 +-0.802373,-0.802373,-0.802373,-0.802373,-0.802373,-0.802373 +-0.817998,-0.817998,-0.817998,-0.817998,-0.817998,-0.817998 +-0.833623,-0.833623,-0.833623,-0.833623,-0.833623,-0.833623 +-0.849248,-0.849248,-0.849248,-0.849248,-0.849248,-0.849248 +-0.864873,-0.864873,-0.864873,-0.864873,-0.864873,-0.864873 +-0.880498,-0.880498,-0.880498,-0.880498,-0.880498,-0.880498 +-0.896123,-0.896123,-0.896123,-0.896123,-0.896123,-0.896123 +-0.911748,-0.911748,-0.911748,-0.911748,-0.911748,-0.911748 +-0.927373,-0.927373,-0.927373,-0.927373,-0.927373,-0.927373 +-0.942998,-0.942998,-0.942998,-0.942998,-0.942998,-0.942998 +-0.958623,-0.958623,-0.958623,-0.958623,-0.958623,-0.958623 +-0.974248,-0.974248,-0.974248,-0.974248,-0.974248,-0.974248 +-0.989873,-0.989873,-0.989873,-0.989873,-0.989873,-0.989873 +-1.005498,-1.005498,-1.005498,-1.005498,-1.005498,-1.005498 +-1.021123,-1.021123,-1.021123,-1.021123,-1.021123,-1.021123 +-1.036748,-1.036748,-1.036748,-1.036748,-1.036748,-1.036748 +-1.052373,-1.052373,-1.052373,-1.052373,-1.052373,-1.052373 +-1.067998,-1.067998,-1.067998,-1.067998,-1.067998,-1.067998 +-1.083623,-1.083623,-1.083623,-1.083623,-1.083623,-1.083623 +-1.099248,-1.099248,-1.099248,-1.099248,-1.099248,-1.099248 +-1.114873,-1.114873,-1.114873,-1.114873,-1.114873,-1.114873 +-1.130498,-1.130498,-1.130498,-1.130498,-1.130498,-1.130498 +-1.146123,-1.146123,-1.146123,-1.146123,-1.146123,-1.146123 +-1.161748,-1.161748,-1.161748,-1.161748,-1.161748,-1.161748 +-1.177373,-1.177373,-1.177373,-1.177373,-1.177373,-1.177373 +-1.192998,-1.192998,-1.192998,-1.192998,-1.192998,-1.192998 +-1.208618,-1.208618,-1.208618,-1.208618,-1.208618,-1.208618 +-1.22422,-1.22422,-1.22422,-1.22422,-1.22422,-1.22422 +-1.239792,-1.239792,-1.239792,-1.239792,-1.239792,-1.239792 +-1.255319,-1.255319,-1.255319,-1.255319,-1.255319,-1.255319 +-1.270788,-1.270788,-1.270788,-1.270788,-1.270788,-1.270788 +-1.286185,-1.286185,-1.286185,-1.286185,-1.286185,-1.286185 +-1.301497,-1.301497,-1.301497,-1.301497,-1.301497,-1.301497 +-1.316711,-1.316711,-1.316711,-1.316711,-1.316711,-1.316711 +-1.331812,-1.331812,-1.331812,-1.331812,-1.331812,-1.331812 +-1.346788,-1.346788,-1.346788,-1.346788,-1.346788,-1.346788 +-1.361625,-1.361625,-1.361625,-1.361625,-1.361625,-1.361625 +-1.37631,-1.37631,-1.37631,-1.37631,-1.37631,-1.37631 +-1.390828,-1.390828,-1.390828,-1.390828,-1.390828,-1.390828 +-1.405167,-1.405167,-1.405167,-1.405167,-1.405167,-1.405167 +-1.419313,-1.419313,-1.419313,-1.419313,-1.419313,-1.419313 +-1.433252,-1.433252,-1.433252,-1.433252,-1.433252,-1.433252 +-1.446971,-1.446971,-1.446971,-1.446971,-1.446971,-1.446971 +-1.460457,-1.460457,-1.460457,-1.460457,-1.460457,-1.460457 +-1.473695,-1.473695,-1.473695,-1.473695,-1.473695,-1.473695 +-1.486673,-1.486673,-1.486673,-1.486673,-1.486673,-1.486673 +-1.499377,-1.499377,-1.499377,-1.499377,-1.499377,-1.499377 +-1.511793,-1.511793,-1.511793,-1.511793,-1.511793,-1.511793 +-1.523909,-1.523909,-1.523909,-1.523909,-1.523909,-1.523909 +-1.535709,-1.535709,-1.535709,-1.535709,-1.535709,-1.535709 +-1.547182,-1.547182,-1.547182,-1.547182,-1.547182,-1.547182 +-1.558318,-1.558318,-1.558318,-1.558318,-1.558318,-1.558318 +-1.569117,-1.569117,-1.569117,-1.569117,-1.569117,-1.569117 +-1.579578,-1.579578,-1.579578,-1.579578,-1.579578,-1.579578 +-1.589701,-1.589701,-1.589701,-1.589701,-1.589701,-1.589701 +-1.599487,-1.599487,-1.599487,-1.599487,-1.599487,-1.599487 +-1.608936,-1.608936,-1.608936,-1.608936,-1.608936,-1.608936 +-1.618047,-1.618047,-1.618047,-1.618047,-1.618047,-1.618047 +-1.62682,-1.62682,-1.62682,-1.62682,-1.62682,-1.62682 +-1.635256,-1.635256,-1.635256,-1.635256,-1.635256,-1.635256 +-1.643354,-1.643354,-1.643354,-1.643354,-1.643354,-1.643354 +-1.651115,-1.651115,-1.651115,-1.651115,-1.651115,-1.651115 +-1.658539,-1.658539,-1.658539,-1.658539,-1.658539,-1.658539 +-1.665625,-1.665625,-1.665625,-1.665625,-1.665625,-1.665625 +-1.672373,-1.672373,-1.672373,-1.672373,-1.672373,-1.672373 +-1.678784,-1.678784,-1.678784,-1.678784,-1.678784,-1.678784 +-1.684858,-1.684858,-1.684858,-1.684858,-1.684858,-1.684858 +-1.690594,-1.690594,-1.690594,-1.690594,-1.690594,-1.690594 +-1.695992,-1.695992,-1.695992,-1.695992,-1.695992,-1.695992 +-1.701053,-1.701053,-1.701053,-1.701053,-1.701053,-1.701053 +-1.705777,-1.705777,-1.705777,-1.705777,-1.705777,-1.705777 +-1.710163,-1.710163,-1.710163,-1.710163,-1.710163,-1.710163 +-1.714214,-1.714214,-1.714214,-1.714214,-1.714214,-1.714214 +-1.71794,-1.71794,-1.71794,-1.71794,-1.71794,-1.71794 +-1.721357,-1.721357,-1.721357,-1.721357,-1.721357,-1.721357 +-1.724476,-1.724476,-1.724476,-1.724476,-1.724476,-1.724476 +-1.727312,-1.727312,-1.727312,-1.727312,-1.727312,-1.727312 +-1.729878,-1.729878,-1.729878,-1.729878,-1.729878,-1.729878 +-1.732188,-1.732188,-1.732188,-1.732188,-1.732188,-1.732188 +-1.734255,-1.734255,-1.734255,-1.734255,-1.734255,-1.734255 +-1.736092,-1.736092,-1.736092,-1.736092,-1.736092,-1.736092 +-1.737713,-1.737713,-1.737713,-1.737713,-1.737713,-1.737713 +-1.739132,-1.739132,-1.739132,-1.739132,-1.739132,-1.739132 +-1.740362,-1.740362,-1.740362,-1.740362,-1.740362,-1.740362 +-1.741416,-1.741416,-1.741416,-1.741416,-1.741416,-1.741416 +-1.742309,-1.742309,-1.742309,-1.742309,-1.742309,-1.742309 +-1.743053,-1.743053,-1.743053,-1.743053,-1.743053,-1.743053 +-1.743662,-1.743662,-1.743662,-1.743662,-1.743662,-1.743662 +-1.74415,-1.74415,-1.74415,-1.74415,-1.74415,-1.74415 +-1.74453,-1.74453,-1.74453,-1.74453,-1.74453,-1.74453 +-1.744815,-1.744815,-1.744815,-1.744815,-1.744815,-1.744815 +-1.74502,-1.74502,-1.74502,-1.74502,-1.74502,-1.74502 +-1.745156,-1.745156,-1.745156,-1.745156,-1.745156,-1.745156 +-1.74524,-1.74524,-1.74524,-1.74524,-1.74524,-1.74524 +-1.745282,-1.745282,-1.745282,-1.745282,-1.745282,-1.745282 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745282,-1.745282,-1.745282,-1.745282,-1.745282,-1.745282 +-1.745239,-1.745239,-1.745239,-1.745239,-1.745239,-1.745239 +-1.745156,-1.745156,-1.745156,-1.745156,-1.745156,-1.745156 +-1.745019,-1.745019,-1.745019,-1.745019,-1.745019,-1.745019 +-1.744814,-1.744814,-1.744814,-1.744814,-1.744814,-1.744814 +-1.744528,-1.744528,-1.744528,-1.744528,-1.744528,-1.744528 +-1.744148,-1.744148,-1.744148,-1.744148,-1.744148,-1.744148 +-1.74366,-1.74366,-1.74366,-1.74366,-1.74366,-1.74366 +-1.74305,-1.74305,-1.74305,-1.74305,-1.74305,-1.74305 +-1.742305,-1.742305,-1.742305,-1.742305,-1.742305,-1.742305 +-1.741412,-1.741412,-1.741412,-1.741412,-1.741412,-1.741412 +-1.740357,-1.740357,-1.740357,-1.740357,-1.740357,-1.740357 +-1.739126,-1.739126,-1.739126,-1.739126,-1.739126,-1.739126 +-1.737706,-1.737706,-1.737706,-1.737706,-1.737706,-1.737706 +-1.736084,-1.736084,-1.736084,-1.736084,-1.736084,-1.736084 +-1.734246,-1.734246,-1.734246,-1.734246,-1.734246,-1.734246 +-1.732178,-1.732178,-1.732178,-1.732178,-1.732178,-1.732178 +-1.729867,-1.729867,-1.729867,-1.729867,-1.729867,-1.729867 +-1.7273,-1.7273,-1.7273,-1.7273,-1.7273,-1.7273 +-1.724463,-1.724463,-1.724463,-1.724463,-1.724463,-1.724463 +-1.721342,-1.721342,-1.721342,-1.721342,-1.721342,-1.721342 +-1.717924,-1.717924,-1.717924,-1.717924,-1.717924,-1.717924 +-1.714196,-1.714196,-1.714196,-1.714196,-1.714196,-1.714196 +-1.710144,-1.710144,-1.710144,-1.710144,-1.710144,-1.710144 +-1.705756,-1.705756,-1.705756,-1.705756,-1.705756,-1.705756 +-1.701031,-1.701031,-1.701031,-1.701031,-1.701031,-1.701031 +-1.695969,-1.695969,-1.695969,-1.695969,-1.695969,-1.695969 +-1.690569,-1.690569,-1.690569,-1.690569,-1.690569,-1.690569 +-1.684831,-1.684831,-1.684831,-1.684831,-1.684831,-1.684831 +-1.678756,-1.678756,-1.678756,-1.678756,-1.678756,-1.678756 +-1.672344,-1.672344,-1.672344,-1.672344,-1.672344,-1.672344 +-1.665594,-1.665594,-1.665594,-1.665594,-1.665594,-1.665594 +-1.658506,-1.658506,-1.658506,-1.658506,-1.658506,-1.658506 +-1.651081,-1.651081,-1.651081,-1.651081,-1.651081,-1.651081 +-1.643319,-1.643319,-1.643319,-1.643319,-1.643319,-1.643319 +-1.635219,-1.635219,-1.635219,-1.635219,-1.635219,-1.635219 +-1.626781,-1.626781,-1.626781,-1.626781,-1.626781,-1.626781 +-1.618006,-1.618006,-1.618006,-1.618006,-1.618006,-1.618006 +-1.608894,-1.608894,-1.608894,-1.608894,-1.608894,-1.608894 +-1.599444,-1.599444,-1.599444,-1.599444,-1.599444,-1.599444 +-1.589656,-1.589656,-1.589656,-1.589656,-1.589656,-1.589656 +-1.579531,-1.579531,-1.579531,-1.579531,-1.579531,-1.579531 +-1.569069,-1.569069,-1.569069,-1.569069,-1.569069,-1.569069 +-1.558269,-1.558269,-1.558269,-1.558269,-1.558269,-1.558269 +-1.547131,-1.547131,-1.547131,-1.547131,-1.547131,-1.547131 +-1.535657,-1.535657,-1.535657,-1.535657,-1.535657,-1.535657 +-1.523855,-1.523855,-1.523855,-1.523855,-1.523855,-1.523855 +-1.511738,-1.511738,-1.511738,-1.511738,-1.511738,-1.511738 +-1.499321,-1.499321,-1.499321,-1.499321,-1.499321,-1.499321 +-1.486615,-1.486615,-1.486615,-1.486615,-1.486615,-1.486615 +-1.473636,-1.473636,-1.473636,-1.473636,-1.473636,-1.473636 +-1.460397,-1.460397,-1.460397,-1.460397,-1.460397,-1.460397 +-1.44691,-1.44691,-1.44691,-1.44691,-1.44691,-1.44691 +-1.43319,-1.43319,-1.43319,-1.43319,-1.43319,-1.43319 +-1.41925,-1.41925,-1.41925,-1.41925,-1.41925,-1.41925 +-1.405103,-1.405103,-1.405103,-1.405103,-1.405103,-1.405103 +-1.390763,-1.390763,-1.390763,-1.390763,-1.390763,-1.390763 +-1.376244,-1.376244,-1.376244,-1.376244,-1.376244,-1.376244 +-1.361559,-1.361559,-1.361559,-1.361559,-1.361559,-1.361559 +-1.346721,-1.346721,-1.346721,-1.346721,-1.346721,-1.346721 +-1.331745,-1.331745,-1.331745,-1.331745,-1.331745,-1.331745 +-1.316643,-1.316643,-1.316643,-1.316643,-1.316643,-1.316643 +-1.301428,-1.301428,-1.301428,-1.301428,-1.301428,-1.301428 +-1.286116,-1.286116,-1.286116,-1.286116,-1.286116,-1.286116 +-1.270718,-1.270718,-1.270718,-1.270718,-1.270718,-1.270718 +-1.255249,-1.255249,-1.255249,-1.255249,-1.255249,-1.255249 +-1.239722,-1.239722,-1.239722,-1.239722,-1.239722,-1.239722 +-1.22415,-1.22415,-1.22415,-1.22415,-1.22415,-1.22415 +-1.208547,-1.208547,-1.208547,-1.208547,-1.208547,-1.208547 +-1.192927,-1.192927,-1.192927,-1.192927,-1.192927,-1.192927 +-1.177302,-1.177302,-1.177302,-1.177302,-1.177302,-1.177302 +-1.161677,-1.161677,-1.161677,-1.161677,-1.161677,-1.161677 +-1.146052,-1.146052,-1.146052,-1.146052,-1.146052,-1.146052 +-1.130427,-1.130427,-1.130427,-1.130427,-1.130427,-1.130427 +-1.114802,-1.114802,-1.114802,-1.114802,-1.114802,-1.114802 +-1.099177,-1.099177,-1.099177,-1.099177,-1.099177,-1.099177 +-1.083552,-1.083552,-1.083552,-1.083552,-1.083552,-1.083552 +-1.067927,-1.067927,-1.067927,-1.067927,-1.067927,-1.067927 +-1.052302,-1.052302,-1.052302,-1.052302,-1.052302,-1.052302 +-1.036677,-1.036677,-1.036677,-1.036677,-1.036677,-1.036677 +-1.021052,-1.021052,-1.021052,-1.021052,-1.021052,-1.021052 +-1.005427,-1.005427,-1.005427,-1.005427,-1.005427,-1.005427 +-0.989802,-0.989802,-0.989802,-0.989802,-0.989802,-0.989802 +-0.974177,-0.974177,-0.974177,-0.974177,-0.974177,-0.974177 +-0.958552,-0.958552,-0.958552,-0.958552,-0.958552,-0.958552 +-0.942927,-0.942927,-0.942927,-0.942927,-0.942927,-0.942927 +-0.927302,-0.927302,-0.927302,-0.927302,-0.927302,-0.927302 +-0.911677,-0.911677,-0.911677,-0.911677,-0.911677,-0.911677 +-0.896052,-0.896052,-0.896052,-0.896052,-0.896052,-0.896052 +-0.880427,-0.880427,-0.880427,-0.880427,-0.880427,-0.880427 +-0.864802,-0.864802,-0.864802,-0.864802,-0.864802,-0.864802 +-0.849177,-0.849177,-0.849177,-0.849177,-0.849177,-0.849177 +-0.833552,-0.833552,-0.833552,-0.833552,-0.833552,-0.833552 +-0.817927,-0.817927,-0.817927,-0.817927,-0.817927,-0.817927 +-0.802302,-0.802302,-0.802302,-0.802302,-0.802302,-0.802302 +-0.786677,-0.786677,-0.786677,-0.786677,-0.786677,-0.786677 +-0.771052,-0.771052,-0.771052,-0.771052,-0.771052,-0.771052 +-0.755427,-0.755427,-0.755427,-0.755427,-0.755427,-0.755427 +-0.739802,-0.739802,-0.739802,-0.739802,-0.739802,-0.739802 +-0.724177,-0.724177,-0.724177,-0.724177,-0.724177,-0.724177 +-0.708552,-0.708552,-0.708552,-0.708552,-0.708552,-0.708552 +-0.692927,-0.692927,-0.692927,-0.692927,-0.692927,-0.692927 +-0.677302,-0.677302,-0.677302,-0.677302,-0.677302,-0.677302 +-0.661677,-0.661677,-0.661677,-0.661677,-0.661677,-0.661677 +-0.646052,-0.646052,-0.646052,-0.646052,-0.646052,-0.646052 +-0.630427,-0.630427,-0.630427,-0.630427,-0.630427,-0.630427 +-0.614802,-0.614802,-0.614802,-0.614802,-0.614802,-0.614802 +-0.599177,-0.599177,-0.599177,-0.599177,-0.599177,-0.599177 +-0.583552,-0.583552,-0.583552,-0.583552,-0.583552,-0.583552 +-0.567927,-0.567927,-0.567927,-0.567927,-0.567927,-0.567927 +-0.552302,-0.552302,-0.552302,-0.552302,-0.552302,-0.552302 +-0.536682,-0.536682,-0.536682,-0.536682,-0.536682,-0.536682 +-0.52108,-0.52108,-0.52108,-0.52108,-0.52108,-0.52108 +-0.505508,-0.505508,-0.505508,-0.505508,-0.505508,-0.505508 +-0.489981,-0.489981,-0.489981,-0.489981,-0.489981,-0.489981 +-0.474512,-0.474512,-0.474512,-0.474512,-0.474512,-0.474512 +-0.459115,-0.459115,-0.459115,-0.459115,-0.459115,-0.459115 +-0.443803,-0.443803,-0.443803,-0.443803,-0.443803,-0.443803 +-0.428589,-0.428589,-0.428589,-0.428589,-0.428589,-0.428589 +-0.413488,-0.413488,-0.413488,-0.413488,-0.413488,-0.413488 +-0.398512,-0.398512,-0.398512,-0.398512,-0.398512,-0.398512 +-0.383675,-0.383675,-0.383675,-0.383675,-0.383675,-0.383675 +-0.36899,-0.36899,-0.36899,-0.36899,-0.36899,-0.36899 +-0.354472,-0.354472,-0.354472,-0.354472,-0.354472,-0.354472 +-0.340133,-0.340133,-0.340133,-0.340133,-0.340133,-0.340133 +-0.325987,-0.325987,-0.325987,-0.325987,-0.325987,-0.325987 +-0.312048,-0.312048,-0.312048,-0.312048,-0.312048,-0.312048 +-0.298329,-0.298329,-0.298329,-0.298329,-0.298329,-0.298329 +-0.284843,-0.284843,-0.284843,-0.284843,-0.284843,-0.284843 +-0.271605,-0.271605,-0.271605,-0.271605,-0.271605,-0.271605 +-0.258627,-0.258627,-0.258627,-0.258627,-0.258627,-0.258627 +-0.245923,-0.245923,-0.245923,-0.245923,-0.245923,-0.245923 +-0.233507,-0.233507,-0.233507,-0.233507,-0.233507,-0.233507 +-0.221391,-0.221391,-0.221391,-0.221391,-0.221391,-0.221391 +-0.209591,-0.209591,-0.209591,-0.209591,-0.209591,-0.209591 +-0.198118,-0.198118,-0.198118,-0.198118,-0.198118,-0.198118 +-0.186982,-0.186982,-0.186982,-0.186982,-0.186982,-0.186982 +-0.176183,-0.176183,-0.176183,-0.176183,-0.176183,-0.176183 +-0.165722,-0.165722,-0.165722,-0.165722,-0.165722,-0.165722 +-0.155599,-0.155599,-0.155599,-0.155599,-0.155599,-0.155599 +-0.145813,-0.145813,-0.145813,-0.145813,-0.145813,-0.145813 +-0.136364,-0.136364,-0.136364,-0.136364,-0.136364,-0.136364 +-0.127253,-0.127253,-0.127253,-0.127253,-0.127253,-0.127253 +-0.11848,-0.11848,-0.11848,-0.11848,-0.11848,-0.11848 +-0.110044,-0.110044,-0.110044,-0.110044,-0.110044,-0.110044 +-0.101946,-0.101946,-0.101946,-0.101946,-0.101946,-0.101946 +-0.094185,-0.094185,-0.094185,-0.094185,-0.094185,-0.094185 +-0.086761,-0.086761,-0.086761,-0.086761,-0.086761,-0.086761 +-0.079675,-0.079675,-0.079675,-0.079675,-0.079675,-0.079675 +-0.072927,-0.072927,-0.072927,-0.072927,-0.072927,-0.072927 +-0.066516,-0.066516,-0.066516,-0.066516,-0.066516,-0.066516 +-0.060442,-0.060442,-0.060442,-0.060442,-0.060442,-0.060442 +-0.054706,-0.054706,-0.054706,-0.054706,-0.054706,-0.054706 +-0.049308,-0.049308,-0.049308,-0.049308,-0.049308,-0.049308 +-0.044247,-0.044247,-0.044247,-0.044247,-0.044247,-0.044247 +-0.039523,-0.039523,-0.039523,-0.039523,-0.039523,-0.039523 +-0.035137,-0.035137,-0.035137,-0.035137,-0.035137,-0.035137 +-0.031086,-0.031086,-0.031086,-0.031086,-0.031086,-0.031086 +-0.02736,-0.02736,-0.02736,-0.02736,-0.02736,-0.02736 +-0.023943,-0.023943,-0.023943,-0.023943,-0.023943,-0.023943 +-0.020824,-0.020824,-0.020824,-0.020824,-0.020824,-0.020824 +-0.017988,-0.017988,-0.017988,-0.017988,-0.017988,-0.017988 +-0.015422,-0.015422,-0.015422,-0.015422,-0.015422,-0.015422 +-0.013112,-0.013112,-0.013112,-0.013112,-0.013112,-0.013112 +-0.011045,-0.011045,-0.011045,-0.011045,-0.011045,-0.011045 +-0.009208,-0.009208,-0.009208,-0.009208,-0.009208,-0.009208 +-0.007587,-0.007587,-0.007587,-0.007587,-0.007587,-0.007587 +-0.006168,-0.006168,-0.006168,-0.006168,-0.006168,-0.006168 +-0.004938,-0.004938,-0.004938,-0.004938,-0.004938,-0.004938 +-0.003884,-0.003884,-0.003884,-0.003884,-0.003884,-0.003884 +-0.002991,-0.002991,-0.002991,-0.002991,-0.002991,-0.002991 +-0.002247,-0.002247,-0.002247,-0.002247,-0.002247,-0.002247 +-0.001638,-0.001638,-0.001638,-0.001638,-0.001638,-0.001638 +-0.00115,-0.00115,-0.00115,-0.00115,-0.00115,-0.00115 +-0.00077,-0.00077,-0.00077,-0.00077,-0.00077,-0.00077 +-0.000485,-0.000485,-0.000485,-0.000485,-0.000485,-0.000485 +-0.00028,-0.00028,-0.00028,-0.00028,-0.00028,-0.00028 +-0.000144,-0.000144,-0.000144,-0.000144,-0.000144,-0.000144 +-0.00006,-0.00006,-0.00006,-0.00006,-0.00006,-0.00006 +-0.000018,-0.000018,-0.000018,-0.000018,-0.000018,-0.000018 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000019,0.000019,0.000019,0.000019,0.000019,0.000019 +0.000064,0.000064,0.000064,0.000064,0.000064,0.000064 +0.000152,0.000152,0.000152,0.000152,0.000152,0.000152 +0.000297,0.000297,0.000297,0.000297,0.000297,0.000297 +0.000513,0.000513,0.000513,0.000513,0.000513,0.000513 +0.000815,0.000815,0.000815,0.000815,0.000815,0.000815 +0.001216,0.001216,0.001216,0.001216,0.001216,0.001216 +0.001731,0.001731,0.001731,0.001731,0.001731,0.001731 +0.002375,0.002375,0.002375,0.002375,0.002375,0.002375 +0.003161,0.003161,0.003161,0.003161,0.003161,0.003161 +0.004104,0.004104,0.004104,0.004104,0.004104,0.004104 +0.005218,0.005218,0.005218,0.005218,0.005218,0.005218 +0.006517,0.006517,0.006517,0.006517,0.006517,0.006517 +0.008016,0.008016,0.008016,0.008016,0.008016,0.008016 +0.009728,0.009728,0.009728,0.009728,0.009728,0.009728 +0.011668,0.011668,0.011668,0.011668,0.011668,0.011668 +0.013851,0.013851,0.013851,0.013851,0.013851,0.013851 +0.01629,0.01629,0.01629,0.01629,0.01629,0.01629 +0.019,0.019,0.019,0.019,0.019,0.019 +0.021995,0.021995,0.021995,0.021995,0.021995,0.021995 +0.025289,0.025289,0.025289,0.025289,0.025289,0.025289 +0.028897,0.028897,0.028897,0.028897,0.028897,0.028897 +0.032832,0.032832,0.032832,0.032832,0.032832,0.032832 +0.037109,0.037109,0.037109,0.037109,0.037109,0.037109 +0.041741,0.041741,0.041741,0.041741,0.041741,0.041741 +0.046728,0.046728,0.046728,0.046728,0.046728,0.046728 +0.052072,0.052072,0.052072,0.052072,0.052072,0.052072 +0.057772,0.057772,0.057772,0.057772,0.057772,0.057772 +0.063828,0.063828,0.063828,0.063828,0.063828,0.063828 +0.070241,0.070241,0.070241,0.070241,0.070241,0.070241 +0.077009,0.077009,0.077009,0.077009,0.077009,0.077009 +0.084134,0.084134,0.084134,0.084134,0.084134,0.084134 +0.091616,0.091616,0.091616,0.091616,0.091616,0.091616 +0.099453,0.099453,0.099453,0.099453,0.099453,0.099453 +0.107647,0.107647,0.107647,0.107647,0.107647,0.107647 +0.116197,0.116197,0.116197,0.116197,0.116197,0.116197 +0.125103,0.125103,0.125103,0.125103,0.125103,0.125103 +0.134366,0.134366,0.134366,0.134366,0.134366,0.134366 +0.143984,0.143984,0.143984,0.143984,0.143984,0.143984 +0.153959,0.153959,0.153959,0.153959,0.153959,0.153959 +0.164291,0.164291,0.164291,0.164291,0.164291,0.164291 +0.174978,0.174978,0.174978,0.174978,0.174978,0.174978 +0.186022,0.186022,0.186022,0.186022,0.186022,0.186022 +0.197418,0.197418,0.197418,0.197418,0.197418,0.197418 +0.209155,0.209155,0.209155,0.209155,0.209155,0.209155 +0.221217,0.221217,0.221217,0.221217,0.221217,0.221217 +0.233591,0.233591,0.233591,0.233591,0.233591,0.233591 +0.246262,0.246262,0.246262,0.246262,0.246262,0.246262 +0.259216,0.259216,0.259216,0.259216,0.259216,0.259216 +0.272439,0.272439,0.272439,0.272439,0.272439,0.272439 +0.285916,0.285916,0.285916,0.285916,0.285916,0.285916 +0.299633,0.299633,0.299633,0.299633,0.299633,0.299633 +0.313577,0.313577,0.313577,0.313577,0.313577,0.313577 +0.327732,0.327732,0.327732,0.327732,0.327732,0.327732 +0.342085,0.342085,0.342085,0.342085,0.342085,0.342085 +0.356621,0.356621,0.356621,0.356621,0.356621,0.356621 +0.371326,0.371326,0.371326,0.371326,0.371326,0.371326 +0.386185,0.386185,0.386185,0.386185,0.386185,0.386185 +0.401186,0.401186,0.401186,0.401186,0.401186,0.401186 +0.416312,0.416312,0.416312,0.416312,0.416312,0.416312 +0.431551,0.431551,0.431551,0.431551,0.431551,0.431551 +0.446887,0.446887,0.446887,0.446887,0.446887,0.446887 +0.462307,0.462307,0.462307,0.462307,0.462307,0.462307 +0.477796,0.477796,0.477796,0.477796,0.477796,0.477796 +0.49334,0.49334,0.49334,0.49334,0.49334,0.49334 +0.508924,0.508924,0.508924,0.508924,0.508924,0.508924 +0.524536,0.524536,0.524536,0.524536,0.524536,0.524536 +0.540159,0.540159,0.540159,0.540159,0.540159,0.540159 +0.555784,0.555784,0.555784,0.555784,0.555784,0.555784 +0.571409,0.571409,0.571409,0.571409,0.571409,0.571409 +0.587034,0.587034,0.587034,0.587034,0.587034,0.587034 +0.602659,0.602659,0.602659,0.602659,0.602659,0.602659 +0.618284,0.618284,0.618284,0.618284,0.618284,0.618284 +0.633909,0.633909,0.633909,0.633909,0.633909,0.633909 +0.649534,0.649534,0.649534,0.649534,0.649534,0.649534 +0.665159,0.665159,0.665159,0.665159,0.665159,0.665159 +0.680784,0.680784,0.680784,0.680784,0.680784,0.680784 +0.696409,0.696409,0.696409,0.696409,0.696409,0.696409 +0.712034,0.712034,0.712034,0.712034,0.712034,0.712034 +0.727659,0.727659,0.727659,0.727659,0.727659,0.727659 +0.743284,0.743284,0.743284,0.743284,0.743284,0.743284 +0.758909,0.758909,0.758909,0.758909,0.758909,0.758909 +0.774534,0.774534,0.774534,0.774534,0.774534,0.774534 +0.790159,0.790159,0.790159,0.790159,0.790159,0.790159 +0.805784,0.805784,0.805784,0.805784,0.805784,0.805784 +0.821409,0.821409,0.821409,0.821409,0.821409,0.821409 +0.837034,0.837034,0.837034,0.837034,0.837034,0.837034 +0.852659,0.852659,0.852659,0.852659,0.852659,0.852659 +0.868284,0.868284,0.868284,0.868284,0.868284,0.868284 +0.883909,0.883909,0.883909,0.883909,0.883909,0.883909 +0.899534,0.899534,0.899534,0.899534,0.899534,0.899534 +0.915159,0.915159,0.915159,0.915159,0.915159,0.915159 +0.930784,0.930784,0.930784,0.930784,0.930784,0.930784 +0.946409,0.946409,0.946409,0.946409,0.946409,0.946409 +0.962034,0.962034,0.962034,0.962034,0.962034,0.962034 +0.977659,0.977659,0.977659,0.977659,0.977659,0.977659 +0.993284,0.993284,0.993284,0.993284,0.993284,0.993284 +1.008909,1.008909,1.008909,1.008909,1.008909,1.008909 +1.024534,1.024534,1.024534,1.024534,1.024534,1.024534 +1.040159,1.040159,1.040159,1.040159,1.040159,1.040159 +1.055784,1.055784,1.055784,1.055784,1.055784,1.055784 +1.071409,1.071409,1.071409,1.071409,1.071409,1.071409 +1.087034,1.087034,1.087034,1.087034,1.087034,1.087034 +1.102659,1.102659,1.102659,1.102659,1.102659,1.102659 +1.118284,1.118284,1.118284,1.118284,1.118284,1.118284 +1.133909,1.133909,1.133909,1.133909,1.133909,1.133909 +1.149534,1.149534,1.149534,1.149534,1.149534,1.149534 +1.165159,1.165159,1.165159,1.165159,1.165159,1.165159 +1.180784,1.180784,1.180784,1.180784,1.180784,1.180784 +1.196409,1.196409,1.196409,1.196409,1.196409,1.196409 +1.212034,1.212034,1.212034,1.212034,1.212034,1.212034 +1.227654,1.227654,1.227654,1.227654,1.227654,1.227654 +1.243255,1.243255,1.243255,1.243255,1.243255,1.243255 +1.258824,1.258824,1.258824,1.258824,1.258824,1.258824 +1.274345,1.274345,1.274345,1.274345,1.274345,1.274345 +1.289805,1.289805,1.289805,1.289805,1.289805,1.289805 +1.30519,1.30519,1.30519,1.30519,1.30519,1.30519 +1.320485,1.320485,1.320485,1.320485,1.320485,1.320485 +1.335676,1.335676,1.335676,1.335676,1.335676,1.335676 +1.350748,1.350748,1.350748,1.350748,1.350748,1.350748 +1.365688,1.365688,1.365688,1.365688,1.365688,1.365688 +1.380481,1.380481,1.380481,1.380481,1.380481,1.380481 +1.395114,1.395114,1.395114,1.395114,1.395114,1.395114 +1.40957,1.40957,1.40957,1.40957,1.40957,1.40957 +1.423838,1.423838,1.423838,1.423838,1.423838,1.423838 +1.437901,1.437901,1.437901,1.437901,1.437901,1.437901 +1.451747,1.451747,1.451747,1.451747,1.451747,1.451747 +1.46536,1.46536,1.46536,1.46536,1.46536,1.46536 +1.478727,1.478727,1.478727,1.478727,1.478727,1.478727 +1.491833,1.491833,1.491833,1.491833,1.491833,1.491833 +1.504664,1.504664,1.504664,1.504664,1.504664,1.504664 +1.517205,1.517205,1.517205,1.517205,1.517205,1.517205 +1.529443,1.529443,1.529443,1.529443,1.529443,1.529443 +1.541364,1.541364,1.541364,1.541364,1.541364,1.541364 +1.552952,1.552952,1.552952,1.552952,1.552952,1.552952 +1.564194,1.564194,1.564194,1.564194,1.564194,1.564194 +1.575081,1.575081,1.575081,1.575081,1.575081,1.575081 +1.585611,1.585611,1.585611,1.585611,1.585611,1.585611 +1.595785,1.595785,1.595785,1.595785,1.595785,1.595785 +1.605603,1.605603,1.605603,1.605603,1.605603,1.605603 +1.615064,1.615064,1.615064,1.615064,1.615064,1.615064 +1.62417,1.62417,1.62417,1.62417,1.62417,1.62417 +1.632919,1.632919,1.632919,1.632919,1.632919,1.632919 +1.641312,1.641312,1.641312,1.641312,1.641312,1.641312 +1.649348,1.649348,1.649348,1.649348,1.649348,1.649348 +1.657029,1.657029,1.657029,1.657029,1.657029,1.657029 +1.664353,1.664353,1.664353,1.664353,1.664353,1.664353 +1.671321,1.671321,1.671321,1.671321,1.671321,1.671321 +1.677932,1.677932,1.677932,1.677932,1.677932,1.677932 +1.684188,1.684188,1.684188,1.684188,1.684188,1.684188 +1.690087,1.690087,1.690087,1.690087,1.690087,1.690087 +1.695629,1.695629,1.695629,1.695629,1.695629,1.695629 +1.700816,1.700816,1.700816,1.700816,1.700816,1.700816 +1.705646,1.705646,1.705646,1.705646,1.705646,1.705646 +1.710121,1.710121,1.710121,1.710121,1.710121,1.710121 +1.714245,1.714245,1.714245,1.714245,1.714245,1.714245 +1.718034,1.718034,1.718034,1.718034,1.718034,1.718034 +1.721502,1.721502,1.721502,1.721502,1.721502,1.721502 +1.724662,1.724662,1.724662,1.724662,1.724662,1.724662 +1.72753,1.72753,1.72753,1.72753,1.72753,1.72753 +1.730118,1.730118,1.730118,1.730118,1.730118,1.730118 +1.732443,1.732443,1.732443,1.732443,1.732443,1.732443 +1.734517,1.734517,1.734517,1.734517,1.734517,1.734517 +1.736355,1.736355,1.736355,1.736355,1.736355,1.736355 +1.737971,1.737971,1.737971,1.737971,1.737971,1.737971 +1.73938,1.73938,1.73938,1.73938,1.73938,1.73938 +1.740596,1.740596,1.740596,1.740596,1.740596,1.740596 +1.741632,1.741632,1.741632,1.741632,1.741632,1.741632 +1.742504,1.742504,1.742504,1.742504,1.742504,1.742504 +1.743226,1.743226,1.743226,1.743226,1.743226,1.743226 +1.743811,1.743811,1.743811,1.743811,1.743811,1.743811 +1.744274,1.744274,1.744274,1.744274,1.744274,1.744274 +1.74463,1.74463,1.74463,1.74463,1.74463,1.74463 +1.744892,1.744892,1.744892,1.744892,1.744892,1.744892 +1.745075,1.745075,1.745075,1.745075,1.745075,1.745075 +1.745193,1.745193,1.745193,1.745193,1.745193,1.745193 +1.74526,1.74526,1.74526,1.74526,1.74526,1.74526 +1.745291,1.745291,1.745291,1.745291,1.745291,1.745291 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745281,1.745281,1.745281,1.745281,1.745281,1.745281 +1.745236,1.745236,1.745236,1.745236,1.745236,1.745236 +1.745148,1.745148,1.745148,1.745148,1.745148,1.745148 +1.745003,1.745003,1.745003,1.745003,1.745003,1.745003 +1.744787,1.744787,1.744787,1.744787,1.744787,1.744787 +1.744485,1.744485,1.744485,1.744485,1.744485,1.744485 +1.744084,1.744084,1.744084,1.744084,1.744084,1.744084 +1.743569,1.743569,1.743569,1.743569,1.743569,1.743569 +1.742925,1.742925,1.742925,1.742925,1.742925,1.742925 +1.742139,1.742139,1.742139,1.742139,1.742139,1.742139 +1.741196,1.741196,1.741196,1.741196,1.741196,1.741196 +1.740082,1.740082,1.740082,1.740082,1.740082,1.740082 +1.738783,1.738783,1.738783,1.738783,1.738783,1.738783 +1.737284,1.737284,1.737284,1.737284,1.737284,1.737284 +1.735572,1.735572,1.735572,1.735572,1.735572,1.735572 +1.733632,1.733632,1.733632,1.733632,1.733632,1.733632 +1.731449,1.731449,1.731449,1.731449,1.731449,1.731449 +1.72901,1.72901,1.72901,1.72901,1.72901,1.72901 +1.7263,1.7263,1.7263,1.7263,1.7263,1.7263 +1.723305,1.723305,1.723305,1.723305,1.723305,1.723305 +1.720011,1.720011,1.720011,1.720011,1.720011,1.720011 +1.716403,1.716403,1.716403,1.716403,1.716403,1.716403 +1.712468,1.712468,1.712468,1.712468,1.712468,1.712468 +1.708191,1.708191,1.708191,1.708191,1.708191,1.708191 +1.703559,1.703559,1.703559,1.703559,1.703559,1.703559 +1.698572,1.698572,1.698572,1.698572,1.698572,1.698572 +1.693228,1.693228,1.693228,1.693228,1.693228,1.693228 +1.687528,1.687528,1.687528,1.687528,1.687528,1.687528 +1.681472,1.681472,1.681472,1.681472,1.681472,1.681472 +1.675059,1.675059,1.675059,1.675059,1.675059,1.675059 +1.668291,1.668291,1.668291,1.668291,1.668291,1.668291 +1.661166,1.661166,1.661166,1.661166,1.661166,1.661166 +1.653684,1.653684,1.653684,1.653684,1.653684,1.653684 +1.645847,1.645847,1.645847,1.645847,1.645847,1.645847 +1.637653,1.637653,1.637653,1.637653,1.637653,1.637653 +1.629103,1.629103,1.629103,1.629103,1.629103,1.629103 +1.620197,1.620197,1.620197,1.620197,1.620197,1.620197 +1.610934,1.610934,1.610934,1.610934,1.610934,1.610934 +1.601316,1.601316,1.601316,1.601316,1.601316,1.601316 +1.591341,1.591341,1.591341,1.591341,1.591341,1.591341 +1.581009,1.581009,1.581009,1.581009,1.581009,1.581009 +1.570322,1.570322,1.570322,1.570322,1.570322,1.570322 +1.559278,1.559278,1.559278,1.559278,1.559278,1.559278 +1.547882,1.547882,1.547882,1.547882,1.547882,1.547882 +1.536145,1.536145,1.536145,1.536145,1.536145,1.536145 +1.524083,1.524083,1.524083,1.524083,1.524083,1.524083 +1.511709,1.511709,1.511709,1.511709,1.511709,1.511709 +1.499038,1.499038,1.499038,1.499038,1.499038,1.499038 +1.486084,1.486084,1.486084,1.486084,1.486084,1.486084 +1.472861,1.472861,1.472861,1.472861,1.472861,1.472861 +1.459384,1.459384,1.459384,1.459384,1.459384,1.459384 +1.445667,1.445667,1.445667,1.445667,1.445667,1.445667 +1.431723,1.431723,1.431723,1.431723,1.431723,1.431723 +1.417568,1.417568,1.417568,1.417568,1.417568,1.417568 +1.403215,1.403215,1.403215,1.403215,1.403215,1.403215 +1.388679,1.388679,1.388679,1.388679,1.388679,1.388679 +1.373974,1.373974,1.373974,1.373974,1.373974,1.373974 +1.359115,1.359115,1.359115,1.359115,1.359115,1.359115 +1.344114,1.344114,1.344114,1.344114,1.344114,1.344114 +1.328988,1.328988,1.328988,1.328988,1.328988,1.328988 +1.313749,1.313749,1.313749,1.313749,1.313749,1.313749 +1.298413,1.298413,1.298413,1.298413,1.298413,1.298413 +1.282993,1.282993,1.282993,1.282993,1.282993,1.282993 +1.267504,1.267504,1.267504,1.267504,1.267504,1.267504 +1.25196,1.25196,1.25196,1.25196,1.25196,1.25196 +1.236376,1.236376,1.236376,1.236376,1.236376,1.236376 +1.220764,1.220764,1.220764,1.220764,1.220764,1.220764 +1.205141,1.205141,1.205141,1.205141,1.205141,1.205141 +1.189516,1.189516,1.189516,1.189516,1.189516,1.189516 +1.173891,1.173891,1.173891,1.173891,1.173891,1.173891 +1.158266,1.158266,1.158266,1.158266,1.158266,1.158266 +1.142641,1.142641,1.142641,1.142641,1.142641,1.142641 +1.127016,1.127016,1.127016,1.127016,1.127016,1.127016 +1.111391,1.111391,1.111391,1.111391,1.111391,1.111391 +1.095766,1.095766,1.095766,1.095766,1.095766,1.095766 +1.080141,1.080141,1.080141,1.080141,1.080141,1.080141 +1.064516,1.064516,1.064516,1.064516,1.064516,1.064516 +1.048891,1.048891,1.048891,1.048891,1.048891,1.048891 +1.033266,1.033266,1.033266,1.033266,1.033266,1.033266 +1.017641,1.017641,1.017641,1.017641,1.017641,1.017641 +1.002016,1.002016,1.002016,1.002016,1.002016,1.002016 +0.986391,0.986391,0.986391,0.986391,0.986391,0.986391 +0.970766,0.970766,0.970766,0.970766,0.970766,0.970766 +0.955141,0.955141,0.955141,0.955141,0.955141,0.955141 +0.939516,0.939516,0.939516,0.939516,0.939516,0.939516 +0.923891,0.923891,0.923891,0.923891,0.923891,0.923891 +0.908266,0.908266,0.908266,0.908266,0.908266,0.908266 +0.892641,0.892641,0.892641,0.892641,0.892641,0.892641 +0.877016,0.877016,0.877016,0.877016,0.877016,0.877016 +0.861391,0.861391,0.861391,0.861391,0.861391,0.861391 +0.845766,0.845766,0.845766,0.845766,0.845766,0.845766 +0.830141,0.830141,0.830141,0.830141,0.830141,0.830141 +0.814516,0.814516,0.814516,0.814516,0.814516,0.814516 +0.798891,0.798891,0.798891,0.798891,0.798891,0.798891 +0.783266,0.783266,0.783266,0.783266,0.783266,0.783266 +0.767641,0.767641,0.767641,0.767641,0.767641,0.767641 +0.752016,0.752016,0.752016,0.752016,0.752016,0.752016 +0.736391,0.736391,0.736391,0.736391,0.736391,0.736391 +0.720766,0.720766,0.720766,0.720766,0.720766,0.720766 +0.705141,0.705141,0.705141,0.705141,0.705141,0.705141 +0.689516,0.689516,0.689516,0.689516,0.689516,0.689516 +0.673891,0.673891,0.673891,0.673891,0.673891,0.673891 +0.658266,0.658266,0.658266,0.658266,0.658266,0.658266 +0.642641,0.642641,0.642641,0.642641,0.642641,0.642641 +0.627016,0.627016,0.627016,0.627016,0.627016,0.627016 +0.611391,0.611391,0.611391,0.611391,0.611391,0.611391 +0.595766,0.595766,0.595766,0.595766,0.595766,0.595766 +0.580141,0.580141,0.580141,0.580141,0.580141,0.580141 +0.564516,0.564516,0.564516,0.564516,0.564516,0.564516 +0.548891,0.548891,0.548891,0.548891,0.548891,0.548891 +0.533266,0.533266,0.533266,0.533266,0.533266,0.533266 +0.517646,0.517646,0.517646,0.517646,0.517646,0.517646 +0.502045,0.502045,0.502045,0.502045,0.502045,0.502045 +0.486476,0.486476,0.486476,0.486476,0.486476,0.486476 +0.470955,0.470955,0.470955,0.470955,0.470955,0.470955 +0.455495,0.455495,0.455495,0.455495,0.455495,0.455495 +0.44011,0.44011,0.44011,0.44011,0.44011,0.44011 +0.424815,0.424815,0.424815,0.424815,0.424815,0.424815 +0.409624,0.409624,0.409624,0.409624,0.409624,0.409624 +0.394552,0.394552,0.394552,0.394552,0.394552,0.394552 +0.379612,0.379612,0.379612,0.379612,0.379612,0.379612 +0.364819,0.364819,0.364819,0.364819,0.364819,0.364819 +0.350186,0.350186,0.350186,0.350186,0.350186,0.350186 +0.33573,0.33573,0.33573,0.33573,0.33573,0.33573 +0.321462,0.321462,0.321462,0.321462,0.321462,0.321462 +0.307399,0.307399,0.307399,0.307399,0.307399,0.307399 +0.293553,0.293553,0.293553,0.293553,0.293553,0.293553 +0.27994,0.27994,0.27994,0.27994,0.27994,0.27994 +0.266573,0.266573,0.266573,0.266573,0.266573,0.266573 +0.253467,0.253467,0.253467,0.253467,0.253467,0.253467 +0.240636,0.240636,0.240636,0.240636,0.240636,0.240636 +0.228095,0.228095,0.228095,0.228095,0.228095,0.228095 +0.215857,0.215857,0.215857,0.215857,0.215857,0.215857 +0.203936,0.203936,0.203936,0.203936,0.203936,0.203936 +0.192348,0.192348,0.192348,0.192348,0.192348,0.192348 +0.181106,0.181106,0.181106,0.181106,0.181106,0.181106 +0.170219,0.170219,0.170219,0.170219,0.170219,0.170219 +0.159689,0.159689,0.159689,0.159689,0.159689,0.159689 +0.149515,0.149515,0.149515,0.149515,0.149515,0.149515 +0.139697,0.139697,0.139697,0.139697,0.139697,0.139697 +0.130236,0.130236,0.130236,0.130236,0.130236,0.130236 +0.12113,0.12113,0.12113,0.12113,0.12113,0.12113 +0.112381,0.112381,0.112381,0.112381,0.112381,0.112381 +0.103988,0.103988,0.103988,0.103988,0.103988,0.103988 +0.095952,0.095952,0.095952,0.095952,0.095952,0.095952 +0.088271,0.088271,0.088271,0.088271,0.088271,0.088271 +0.080947,0.080947,0.080947,0.080947,0.080947,0.080947 +0.073979,0.073979,0.073979,0.073979,0.073979,0.073979 +0.067368,0.067368,0.067368,0.067368,0.067368,0.067368 +0.061112,0.061112,0.061112,0.061112,0.061112,0.061112 +0.055213,0.055213,0.055213,0.055213,0.055213,0.055213 +0.049671,0.049671,0.049671,0.049671,0.049671,0.049671 +0.044484,0.044484,0.044484,0.044484,0.044484,0.044484 +0.039654,0.039654,0.039654,0.039654,0.039654,0.039654 +0.035179,0.035179,0.035179,0.035179,0.035179,0.035179 +0.031055,0.031055,0.031055,0.031055,0.031055,0.031055 +0.027266,0.027266,0.027266,0.027266,0.027266,0.027266 +0.023798,0.023798,0.023798,0.023798,0.023798,0.023798 +0.020638,0.020638,0.020638,0.020638,0.020638,0.020638 +0.01777,0.01777,0.01777,0.01777,0.01777,0.01777 +0.015182,0.015182,0.015182,0.015182,0.015182,0.015182 +0.012857,0.012857,0.012857,0.012857,0.012857,0.012857 +0.010783,0.010783,0.010783,0.010783,0.010783,0.010783 +0.008945,0.008945,0.008945,0.008945,0.008945,0.008945 +0.007329,0.007329,0.007329,0.007329,0.007329,0.007329 +0.00592,0.00592,0.00592,0.00592,0.00592,0.00592 +0.004704,0.004704,0.004704,0.004704,0.004704,0.004704 +0.003668,0.003668,0.003668,0.003668,0.003668,0.003668 +0.002796,0.002796,0.002796,0.002796,0.002796,0.002796 +0.002074,0.002074,0.002074,0.002074,0.002074,0.002074 +0.001489,0.001489,0.001489,0.001489,0.001489,0.001489 +0.001026,0.001026,0.001026,0.001026,0.001026,0.001026 +0.00067,0.00067,0.00067,0.00067,0.00067,0.00067 +0.000408,0.000408,0.000408,0.000408,0.000408,0.000408 +0.000225,0.000225,0.000225,0.000225,0.000225,0.000225 +0.000107,0.000107,0.000107,0.000107,0.000107,0.000107 +0.00004,0.00004,0.00004,0.00004,0.00004,0.00004 +0.000009,0.000009,0.000009,0.000009,0.000009,0.000009 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000019,-0.000019,-0.000019,-0.000019,-0.000019,-0.000019 +-0.000064,-0.000064,-0.000064,-0.000064,-0.000064,-0.000064 +-0.000152,-0.000152,-0.000152,-0.000152,-0.000152,-0.000152 +-0.000297,-0.000297,-0.000297,-0.000297,-0.000297,-0.000297 +-0.000513,-0.000513,-0.000513,-0.000513,-0.000513,-0.000513 +-0.000815,-0.000815,-0.000815,-0.000815,-0.000815,-0.000815 +-0.001216,-0.001216,-0.001216,-0.001216,-0.001216,-0.001216 +-0.001731,-0.001731,-0.001731,-0.001731,-0.001731,-0.001731 +-0.002375,-0.002375,-0.002375,-0.002375,-0.002375,-0.002375 +-0.003161,-0.003161,-0.003161,-0.003161,-0.003161,-0.003161 +-0.004104,-0.004104,-0.004104,-0.004104,-0.004104,-0.004104 +-0.005218,-0.005218,-0.005218,-0.005218,-0.005218,-0.005218 +-0.006517,-0.006517,-0.006517,-0.006517,-0.006517,-0.006517 +-0.008016,-0.008016,-0.008016,-0.008016,-0.008016,-0.008016 +-0.009728,-0.009728,-0.009728,-0.009728,-0.009728,-0.009728 +-0.011668,-0.011668,-0.011668,-0.011668,-0.011668,-0.011668 +-0.013851,-0.013851,-0.013851,-0.013851,-0.013851,-0.013851 +-0.01629,-0.01629,-0.01629,-0.01629,-0.01629,-0.01629 +-0.019,-0.019,-0.019,-0.019,-0.019,-0.019 +-0.021995,-0.021995,-0.021995,-0.021995,-0.021995,-0.021995 +-0.025289,-0.025289,-0.025289,-0.025289,-0.025289,-0.025289 +-0.028897,-0.028897,-0.028897,-0.028897,-0.028897,-0.028897 +-0.032832,-0.032832,-0.032832,-0.032832,-0.032832,-0.032832 +-0.037109,-0.037109,-0.037109,-0.037109,-0.037109,-0.037109 +-0.041741,-0.041741,-0.041741,-0.041741,-0.041741,-0.041741 +-0.046728,-0.046728,-0.046728,-0.046728,-0.046728,-0.046728 +-0.052072,-0.052072,-0.052072,-0.052072,-0.052072,-0.052072 +-0.057772,-0.057772,-0.057772,-0.057772,-0.057772,-0.057772 +-0.063828,-0.063828,-0.063828,-0.063828,-0.063828,-0.063828 +-0.070241,-0.070241,-0.070241,-0.070241,-0.070241,-0.070241 +-0.077009,-0.077009,-0.077009,-0.077009,-0.077009,-0.077009 +-0.084134,-0.084134,-0.084134,-0.084134,-0.084134,-0.084134 +-0.091616,-0.091616,-0.091616,-0.091616,-0.091616,-0.091616 +-0.099453,-0.099453,-0.099453,-0.099453,-0.099453,-0.099453 +-0.107647,-0.107647,-0.107647,-0.107647,-0.107647,-0.107647 +-0.116197,-0.116197,-0.116197,-0.116197,-0.116197,-0.116197 +-0.125103,-0.125103,-0.125103,-0.125103,-0.125103,-0.125103 +-0.134366,-0.134366,-0.134366,-0.134366,-0.134366,-0.134366 +-0.143984,-0.143984,-0.143984,-0.143984,-0.143984,-0.143984 +-0.153959,-0.153959,-0.153959,-0.153959,-0.153959,-0.153959 +-0.164291,-0.164291,-0.164291,-0.164291,-0.164291,-0.164291 +-0.174978,-0.174978,-0.174978,-0.174978,-0.174978,-0.174978 +-0.186022,-0.186022,-0.186022,-0.186022,-0.186022,-0.186022 +-0.197418,-0.197418,-0.197418,-0.197418,-0.197418,-0.197418 +-0.209155,-0.209155,-0.209155,-0.209155,-0.209155,-0.209155 +-0.221217,-0.221217,-0.221217,-0.221217,-0.221217,-0.221217 +-0.233591,-0.233591,-0.233591,-0.233591,-0.233591,-0.233591 +-0.246262,-0.246262,-0.246262,-0.246262,-0.246262,-0.246262 +-0.259216,-0.259216,-0.259216,-0.259216,-0.259216,-0.259216 +-0.272439,-0.272439,-0.272439,-0.272439,-0.272439,-0.272439 +-0.285916,-0.285916,-0.285916,-0.285916,-0.285916,-0.285916 +-0.299633,-0.299633,-0.299633,-0.299633,-0.299633,-0.299633 +-0.313577,-0.313577,-0.313577,-0.313577,-0.313577,-0.313577 +-0.327732,-0.327732,-0.327732,-0.327732,-0.327732,-0.327732 +-0.342085,-0.342085,-0.342085,-0.342085,-0.342085,-0.342085 +-0.356621,-0.356621,-0.356621,-0.356621,-0.356621,-0.356621 +-0.371326,-0.371326,-0.371326,-0.371326,-0.371326,-0.371326 +-0.386185,-0.386185,-0.386185,-0.386185,-0.386185,-0.386185 +-0.401186,-0.401186,-0.401186,-0.401186,-0.401186,-0.401186 +-0.416312,-0.416312,-0.416312,-0.416312,-0.416312,-0.416312 +-0.431551,-0.431551,-0.431551,-0.431551,-0.431551,-0.431551 +-0.446887,-0.446887,-0.446887,-0.446887,-0.446887,-0.446887 +-0.462307,-0.462307,-0.462307,-0.462307,-0.462307,-0.462307 +-0.477796,-0.477796,-0.477796,-0.477796,-0.477796,-0.477796 +-0.49334,-0.49334,-0.49334,-0.49334,-0.49334,-0.49334 +-0.508924,-0.508924,-0.508924,-0.508924,-0.508924,-0.508924 +-0.524536,-0.524536,-0.524536,-0.524536,-0.524536,-0.524536 +-0.540159,-0.540159,-0.540159,-0.540159,-0.540159,-0.540159 +-0.555784,-0.555784,-0.555784,-0.555784,-0.555784,-0.555784 +-0.571409,-0.571409,-0.571409,-0.571409,-0.571409,-0.571409 +-0.587034,-0.587034,-0.587034,-0.587034,-0.587034,-0.587034 +-0.602659,-0.602659,-0.602659,-0.602659,-0.602659,-0.602659 +-0.618284,-0.618284,-0.618284,-0.618284,-0.618284,-0.618284 +-0.633909,-0.633909,-0.633909,-0.633909,-0.633909,-0.633909 +-0.649534,-0.649534,-0.649534,-0.649534,-0.649534,-0.649534 +-0.665159,-0.665159,-0.665159,-0.665159,-0.665159,-0.665159 +-0.680784,-0.680784,-0.680784,-0.680784,-0.680784,-0.680784 +-0.696409,-0.696409,-0.696409,-0.696409,-0.696409,-0.696409 +-0.712034,-0.712034,-0.712034,-0.712034,-0.712034,-0.712034 +-0.727659,-0.727659,-0.727659,-0.727659,-0.727659,-0.727659 +-0.743284,-0.743284,-0.743284,-0.743284,-0.743284,-0.743284 +-0.758909,-0.758909,-0.758909,-0.758909,-0.758909,-0.758909 +-0.774534,-0.774534,-0.774534,-0.774534,-0.774534,-0.774534 +-0.790159,-0.790159,-0.790159,-0.790159,-0.790159,-0.790159 +-0.805784,-0.805784,-0.805784,-0.805784,-0.805784,-0.805784 +-0.821409,-0.821409,-0.821409,-0.821409,-0.821409,-0.821409 +-0.837034,-0.837034,-0.837034,-0.837034,-0.837034,-0.837034 +-0.852659,-0.852659,-0.852659,-0.852659,-0.852659,-0.852659 +-0.868284,-0.868284,-0.868284,-0.868284,-0.868284,-0.868284 +-0.883909,-0.883909,-0.883909,-0.883909,-0.883909,-0.883909 +-0.899534,-0.899534,-0.899534,-0.899534,-0.899534,-0.899534 +-0.915159,-0.915159,-0.915159,-0.915159,-0.915159,-0.915159 +-0.930784,-0.930784,-0.930784,-0.930784,-0.930784,-0.930784 +-0.946409,-0.946409,-0.946409,-0.946409,-0.946409,-0.946409 +-0.962034,-0.962034,-0.962034,-0.962034,-0.962034,-0.962034 +-0.977659,-0.977659,-0.977659,-0.977659,-0.977659,-0.977659 +-0.993284,-0.993284,-0.993284,-0.993284,-0.993284,-0.993284 +-1.008909,-1.008909,-1.008909,-1.008909,-1.008909,-1.008909 +-1.024534,-1.024534,-1.024534,-1.024534,-1.024534,-1.024534 +-1.040159,-1.040159,-1.040159,-1.040159,-1.040159,-1.040159 +-1.055784,-1.055784,-1.055784,-1.055784,-1.055784,-1.055784 +-1.071409,-1.071409,-1.071409,-1.071409,-1.071409,-1.071409 +-1.087034,-1.087034,-1.087034,-1.087034,-1.087034,-1.087034 +-1.102659,-1.102659,-1.102659,-1.102659,-1.102659,-1.102659 +-1.118284,-1.118284,-1.118284,-1.118284,-1.118284,-1.118284 +-1.133909,-1.133909,-1.133909,-1.133909,-1.133909,-1.133909 +-1.149534,-1.149534,-1.149534,-1.149534,-1.149534,-1.149534 +-1.165159,-1.165159,-1.165159,-1.165159,-1.165159,-1.165159 +-1.180784,-1.180784,-1.180784,-1.180784,-1.180784,-1.180784 +-1.196409,-1.196409,-1.196409,-1.196409,-1.196409,-1.196409 +-1.212034,-1.212034,-1.212034,-1.212034,-1.212034,-1.212034 +-1.227654,-1.227654,-1.227654,-1.227654,-1.227654,-1.227654 +-1.243255,-1.243255,-1.243255,-1.243255,-1.243255,-1.243255 +-1.258824,-1.258824,-1.258824,-1.258824,-1.258824,-1.258824 +-1.274345,-1.274345,-1.274345,-1.274345,-1.274345,-1.274345 +-1.289805,-1.289805,-1.289805,-1.289805,-1.289805,-1.289805 +-1.30519,-1.30519,-1.30519,-1.30519,-1.30519,-1.30519 +-1.320485,-1.320485,-1.320485,-1.320485,-1.320485,-1.320485 +-1.335676,-1.335676,-1.335676,-1.335676,-1.335676,-1.335676 +-1.350748,-1.350748,-1.350748,-1.350748,-1.350748,-1.350748 +-1.365688,-1.365688,-1.365688,-1.365688,-1.365688,-1.365688 +-1.380481,-1.380481,-1.380481,-1.380481,-1.380481,-1.380481 +-1.395114,-1.395114,-1.395114,-1.395114,-1.395114,-1.395114 +-1.40957,-1.40957,-1.40957,-1.40957,-1.40957,-1.40957 +-1.423838,-1.423838,-1.423838,-1.423838,-1.423838,-1.423838 +-1.437901,-1.437901,-1.437901,-1.437901,-1.437901,-1.437901 +-1.451747,-1.451747,-1.451747,-1.451747,-1.451747,-1.451747 +-1.46536,-1.46536,-1.46536,-1.46536,-1.46536,-1.46536 +-1.478727,-1.478727,-1.478727,-1.478727,-1.478727,-1.478727 +-1.491833,-1.491833,-1.491833,-1.491833,-1.491833,-1.491833 +-1.504664,-1.504664,-1.504664,-1.504664,-1.504664,-1.504664 +-1.517205,-1.517205,-1.517205,-1.517205,-1.517205,-1.517205 +-1.529443,-1.529443,-1.529443,-1.529443,-1.529443,-1.529443 +-1.541364,-1.541364,-1.541364,-1.541364,-1.541364,-1.541364 +-1.552952,-1.552952,-1.552952,-1.552952,-1.552952,-1.552952 +-1.564194,-1.564194,-1.564194,-1.564194,-1.564194,-1.564194 +-1.575081,-1.575081,-1.575081,-1.575081,-1.575081,-1.575081 +-1.585611,-1.585611,-1.585611,-1.585611,-1.585611,-1.585611 +-1.595785,-1.595785,-1.595785,-1.595785,-1.595785,-1.595785 +-1.605603,-1.605603,-1.605603,-1.605603,-1.605603,-1.605603 +-1.615064,-1.615064,-1.615064,-1.615064,-1.615064,-1.615064 +-1.62417,-1.62417,-1.62417,-1.62417,-1.62417,-1.62417 +-1.632919,-1.632919,-1.632919,-1.632919,-1.632919,-1.632919 +-1.641312,-1.641312,-1.641312,-1.641312,-1.641312,-1.641312 +-1.649348,-1.649348,-1.649348,-1.649348,-1.649348,-1.649348 +-1.657029,-1.657029,-1.657029,-1.657029,-1.657029,-1.657029 +-1.664353,-1.664353,-1.664353,-1.664353,-1.664353,-1.664353 +-1.671321,-1.671321,-1.671321,-1.671321,-1.671321,-1.671321 +-1.677932,-1.677932,-1.677932,-1.677932,-1.677932,-1.677932 +-1.684188,-1.684188,-1.684188,-1.684188,-1.684188,-1.684188 +-1.690087,-1.690087,-1.690087,-1.690087,-1.690087,-1.690087 +-1.695629,-1.695629,-1.695629,-1.695629,-1.695629,-1.695629 +-1.700816,-1.700816,-1.700816,-1.700816,-1.700816,-1.700816 +-1.705646,-1.705646,-1.705646,-1.705646,-1.705646,-1.705646 +-1.710121,-1.710121,-1.710121,-1.710121,-1.710121,-1.710121 +-1.714245,-1.714245,-1.714245,-1.714245,-1.714245,-1.714245 +-1.718034,-1.718034,-1.718034,-1.718034,-1.718034,-1.718034 +-1.721502,-1.721502,-1.721502,-1.721502,-1.721502,-1.721502 +-1.724662,-1.724662,-1.724662,-1.724662,-1.724662,-1.724662 +-1.72753,-1.72753,-1.72753,-1.72753,-1.72753,-1.72753 +-1.730118,-1.730118,-1.730118,-1.730118,-1.730118,-1.730118 +-1.732443,-1.732443,-1.732443,-1.732443,-1.732443,-1.732443 +-1.734517,-1.734517,-1.734517,-1.734517,-1.734517,-1.734517 +-1.736355,-1.736355,-1.736355,-1.736355,-1.736355,-1.736355 +-1.737971,-1.737971,-1.737971,-1.737971,-1.737971,-1.737971 +-1.73938,-1.73938,-1.73938,-1.73938,-1.73938,-1.73938 +-1.740596,-1.740596,-1.740596,-1.740596,-1.740596,-1.740596 +-1.741632,-1.741632,-1.741632,-1.741632,-1.741632,-1.741632 +-1.742504,-1.742504,-1.742504,-1.742504,-1.742504,-1.742504 +-1.743226,-1.743226,-1.743226,-1.743226,-1.743226,-1.743226 +-1.743811,-1.743811,-1.743811,-1.743811,-1.743811,-1.743811 +-1.744274,-1.744274,-1.744274,-1.744274,-1.744274,-1.744274 +-1.74463,-1.74463,-1.74463,-1.74463,-1.74463,-1.74463 +-1.744892,-1.744892,-1.744892,-1.744892,-1.744892,-1.744892 +-1.745075,-1.745075,-1.745075,-1.745075,-1.745075,-1.745075 +-1.745193,-1.745193,-1.745193,-1.745193,-1.745193,-1.745193 +-1.74526,-1.74526,-1.74526,-1.74526,-1.74526,-1.74526 +-1.745291,-1.745291,-1.745291,-1.745291,-1.745291,-1.745291 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745281,-1.745281,-1.745281,-1.745281,-1.745281,-1.745281 +-1.745236,-1.745236,-1.745236,-1.745236,-1.745236,-1.745236 +-1.745148,-1.745148,-1.745148,-1.745148,-1.745148,-1.745148 +-1.745003,-1.745003,-1.745003,-1.745003,-1.745003,-1.745003 +-1.744787,-1.744787,-1.744787,-1.744787,-1.744787,-1.744787 +-1.744485,-1.744485,-1.744485,-1.744485,-1.744485,-1.744485 +-1.744084,-1.744084,-1.744084,-1.744084,-1.744084,-1.744084 +-1.743569,-1.743569,-1.743569,-1.743569,-1.743569,-1.743569 +-1.742925,-1.742925,-1.742925,-1.742925,-1.742925,-1.742925 +-1.742139,-1.742139,-1.742139,-1.742139,-1.742139,-1.742139 +-1.741196,-1.741196,-1.741196,-1.741196,-1.741196,-1.741196 +-1.740082,-1.740082,-1.740082,-1.740082,-1.740082,-1.740082 +-1.738783,-1.738783,-1.738783,-1.738783,-1.738783,-1.738783 +-1.737284,-1.737284,-1.737284,-1.737284,-1.737284,-1.737284 +-1.735572,-1.735572,-1.735572,-1.735572,-1.735572,-1.735572 +-1.733632,-1.733632,-1.733632,-1.733632,-1.733632,-1.733632 +-1.731449,-1.731449,-1.731449,-1.731449,-1.731449,-1.731449 +-1.72901,-1.72901,-1.72901,-1.72901,-1.72901,-1.72901 +-1.7263,-1.7263,-1.7263,-1.7263,-1.7263,-1.7263 +-1.723305,-1.723305,-1.723305,-1.723305,-1.723305,-1.723305 +-1.720011,-1.720011,-1.720011,-1.720011,-1.720011,-1.720011 +-1.716403,-1.716403,-1.716403,-1.716403,-1.716403,-1.716403 +-1.712468,-1.712468,-1.712468,-1.712468,-1.712468,-1.712468 +-1.708191,-1.708191,-1.708191,-1.708191,-1.708191,-1.708191 +-1.703559,-1.703559,-1.703559,-1.703559,-1.703559,-1.703559 +-1.698572,-1.698572,-1.698572,-1.698572,-1.698572,-1.698572 +-1.693228,-1.693228,-1.693228,-1.693228,-1.693228,-1.693228 +-1.687528,-1.687528,-1.687528,-1.687528,-1.687528,-1.687528 +-1.681472,-1.681472,-1.681472,-1.681472,-1.681472,-1.681472 +-1.675059,-1.675059,-1.675059,-1.675059,-1.675059,-1.675059 +-1.668291,-1.668291,-1.668291,-1.668291,-1.668291,-1.668291 +-1.661166,-1.661166,-1.661166,-1.661166,-1.661166,-1.661166 +-1.653684,-1.653684,-1.653684,-1.653684,-1.653684,-1.653684 +-1.645847,-1.645847,-1.645847,-1.645847,-1.645847,-1.645847 +-1.637653,-1.637653,-1.637653,-1.637653,-1.637653,-1.637653 +-1.629103,-1.629103,-1.629103,-1.629103,-1.629103,-1.629103 +-1.620197,-1.620197,-1.620197,-1.620197,-1.620197,-1.620197 +-1.610934,-1.610934,-1.610934,-1.610934,-1.610934,-1.610934 +-1.601316,-1.601316,-1.601316,-1.601316,-1.601316,-1.601316 +-1.591341,-1.591341,-1.591341,-1.591341,-1.591341,-1.591341 +-1.581009,-1.581009,-1.581009,-1.581009,-1.581009,-1.581009 +-1.570322,-1.570322,-1.570322,-1.570322,-1.570322,-1.570322 +-1.559278,-1.559278,-1.559278,-1.559278,-1.559278,-1.559278 +-1.547882,-1.547882,-1.547882,-1.547882,-1.547882,-1.547882 +-1.536145,-1.536145,-1.536145,-1.536145,-1.536145,-1.536145 +-1.524083,-1.524083,-1.524083,-1.524083,-1.524083,-1.524083 +-1.511709,-1.511709,-1.511709,-1.511709,-1.511709,-1.511709 +-1.499038,-1.499038,-1.499038,-1.499038,-1.499038,-1.499038 +-1.486084,-1.486084,-1.486084,-1.486084,-1.486084,-1.486084 +-1.472861,-1.472861,-1.472861,-1.472861,-1.472861,-1.472861 +-1.459384,-1.459384,-1.459384,-1.459384,-1.459384,-1.459384 +-1.445667,-1.445667,-1.445667,-1.445667,-1.445667,-1.445667 +-1.431723,-1.431723,-1.431723,-1.431723,-1.431723,-1.431723 +-1.417568,-1.417568,-1.417568,-1.417568,-1.417568,-1.417568 +-1.403215,-1.403215,-1.403215,-1.403215,-1.403215,-1.403215 +-1.388679,-1.388679,-1.388679,-1.388679,-1.388679,-1.388679 +-1.373974,-1.373974,-1.373974,-1.373974,-1.373974,-1.373974 +-1.359115,-1.359115,-1.359115,-1.359115,-1.359115,-1.359115 +-1.344114,-1.344114,-1.344114,-1.344114,-1.344114,-1.344114 +-1.328988,-1.328988,-1.328988,-1.328988,-1.328988,-1.328988 +-1.313749,-1.313749,-1.313749,-1.313749,-1.313749,-1.313749 +-1.298413,-1.298413,-1.298413,-1.298413,-1.298413,-1.298413 +-1.282993,-1.282993,-1.282993,-1.282993,-1.282993,-1.282993 +-1.267504,-1.267504,-1.267504,-1.267504,-1.267504,-1.267504 +-1.25196,-1.25196,-1.25196,-1.25196,-1.25196,-1.25196 +-1.236376,-1.236376,-1.236376,-1.236376,-1.236376,-1.236376 +-1.220764,-1.220764,-1.220764,-1.220764,-1.220764,-1.220764 +-1.205141,-1.205141,-1.205141,-1.205141,-1.205141,-1.205141 +-1.189516,-1.189516,-1.189516,-1.189516,-1.189516,-1.189516 +-1.173891,-1.173891,-1.173891,-1.173891,-1.173891,-1.173891 +-1.158266,-1.158266,-1.158266,-1.158266,-1.158266,-1.158266 +-1.142641,-1.142641,-1.142641,-1.142641,-1.142641,-1.142641 +-1.127016,-1.127016,-1.127016,-1.127016,-1.127016,-1.127016 +-1.111391,-1.111391,-1.111391,-1.111391,-1.111391,-1.111391 +-1.095766,-1.095766,-1.095766,-1.095766,-1.095766,-1.095766 +-1.080141,-1.080141,-1.080141,-1.080141,-1.080141,-1.080141 +-1.064516,-1.064516,-1.064516,-1.064516,-1.064516,-1.064516 +-1.048891,-1.048891,-1.048891,-1.048891,-1.048891,-1.048891 +-1.033266,-1.033266,-1.033266,-1.033266,-1.033266,-1.033266 +-1.017641,-1.017641,-1.017641,-1.017641,-1.017641,-1.017641 +-1.002016,-1.002016,-1.002016,-1.002016,-1.002016,-1.002016 +-0.986391,-0.986391,-0.986391,-0.986391,-0.986391,-0.986391 +-0.970766,-0.970766,-0.970766,-0.970766,-0.970766,-0.970766 +-0.955141,-0.955141,-0.955141,-0.955141,-0.955141,-0.955141 +-0.939516,-0.939516,-0.939516,-0.939516,-0.939516,-0.939516 +-0.923891,-0.923891,-0.923891,-0.923891,-0.923891,-0.923891 +-0.908266,-0.908266,-0.908266,-0.908266,-0.908266,-0.908266 +-0.892641,-0.892641,-0.892641,-0.892641,-0.892641,-0.892641 +-0.877016,-0.877016,-0.877016,-0.877016,-0.877016,-0.877016 +-0.861391,-0.861391,-0.861391,-0.861391,-0.861391,-0.861391 +-0.845766,-0.845766,-0.845766,-0.845766,-0.845766,-0.845766 +-0.830141,-0.830141,-0.830141,-0.830141,-0.830141,-0.830141 +-0.814516,-0.814516,-0.814516,-0.814516,-0.814516,-0.814516 +-0.798891,-0.798891,-0.798891,-0.798891,-0.798891,-0.798891 +-0.783266,-0.783266,-0.783266,-0.783266,-0.783266,-0.783266 +-0.767641,-0.767641,-0.767641,-0.767641,-0.767641,-0.767641 +-0.752016,-0.752016,-0.752016,-0.752016,-0.752016,-0.752016 +-0.736391,-0.736391,-0.736391,-0.736391,-0.736391,-0.736391 +-0.720766,-0.720766,-0.720766,-0.720766,-0.720766,-0.720766 +-0.705141,-0.705141,-0.705141,-0.705141,-0.705141,-0.705141 +-0.689516,-0.689516,-0.689516,-0.689516,-0.689516,-0.689516 +-0.673891,-0.673891,-0.673891,-0.673891,-0.673891,-0.673891 +-0.658266,-0.658266,-0.658266,-0.658266,-0.658266,-0.658266 +-0.642641,-0.642641,-0.642641,-0.642641,-0.642641,-0.642641 +-0.627016,-0.627016,-0.627016,-0.627016,-0.627016,-0.627016 +-0.611391,-0.611391,-0.611391,-0.611391,-0.611391,-0.611391 +-0.595766,-0.595766,-0.595766,-0.595766,-0.595766,-0.595766 +-0.580141,-0.580141,-0.580141,-0.580141,-0.580141,-0.580141 +-0.564516,-0.564516,-0.564516,-0.564516,-0.564516,-0.564516 +-0.548891,-0.548891,-0.548891,-0.548891,-0.548891,-0.548891 +-0.533266,-0.533266,-0.533266,-0.533266,-0.533266,-0.533266 +-0.517646,-0.517646,-0.517646,-0.517646,-0.517646,-0.517646 +-0.502045,-0.502045,-0.502045,-0.502045,-0.502045,-0.502045 +-0.486476,-0.486476,-0.486476,-0.486476,-0.486476,-0.486476 +-0.470955,-0.470955,-0.470955,-0.470955,-0.470955,-0.470955 +-0.455495,-0.455495,-0.455495,-0.455495,-0.455495,-0.455495 +-0.44011,-0.44011,-0.44011,-0.44011,-0.44011,-0.44011 +-0.424815,-0.424815,-0.424815,-0.424815,-0.424815,-0.424815 +-0.409624,-0.409624,-0.409624,-0.409624,-0.409624,-0.409624 +-0.394552,-0.394552,-0.394552,-0.394552,-0.394552,-0.394552 +-0.379612,-0.379612,-0.379612,-0.379612,-0.379612,-0.379612 +-0.364819,-0.364819,-0.364819,-0.364819,-0.364819,-0.364819 +-0.350186,-0.350186,-0.350186,-0.350186,-0.350186,-0.350186 +-0.33573,-0.33573,-0.33573,-0.33573,-0.33573,-0.33573 +-0.321462,-0.321462,-0.321462,-0.321462,-0.321462,-0.321462 +-0.307399,-0.307399,-0.307399,-0.307399,-0.307399,-0.307399 +-0.293553,-0.293553,-0.293553,-0.293553,-0.293553,-0.293553 +-0.27994,-0.27994,-0.27994,-0.27994,-0.27994,-0.27994 +-0.266573,-0.266573,-0.266573,-0.266573,-0.266573,-0.266573 +-0.253467,-0.253467,-0.253467,-0.253467,-0.253467,-0.253467 +-0.240636,-0.240636,-0.240636,-0.240636,-0.240636,-0.240636 +-0.228095,-0.228095,-0.228095,-0.228095,-0.228095,-0.228095 +-0.215857,-0.215857,-0.215857,-0.215857,-0.215857,-0.215857 +-0.203936,-0.203936,-0.203936,-0.203936,-0.203936,-0.203936 +-0.192348,-0.192348,-0.192348,-0.192348,-0.192348,-0.192348 +-0.181106,-0.181106,-0.181106,-0.181106,-0.181106,-0.181106 +-0.170219,-0.170219,-0.170219,-0.170219,-0.170219,-0.170219 +-0.159689,-0.159689,-0.159689,-0.159689,-0.159689,-0.159689 +-0.149515,-0.149515,-0.149515,-0.149515,-0.149515,-0.149515 +-0.139697,-0.139697,-0.139697,-0.139697,-0.139697,-0.139697 +-0.130236,-0.130236,-0.130236,-0.130236,-0.130236,-0.130236 +-0.12113,-0.12113,-0.12113,-0.12113,-0.12113,-0.12113 +-0.112381,-0.112381,-0.112381,-0.112381,-0.112381,-0.112381 +-0.103988,-0.103988,-0.103988,-0.103988,-0.103988,-0.103988 +-0.095952,-0.095952,-0.095952,-0.095952,-0.095952,-0.095952 +-0.088271,-0.088271,-0.088271,-0.088271,-0.088271,-0.088271 +-0.080947,-0.080947,-0.080947,-0.080947,-0.080947,-0.080947 +-0.073979,-0.073979,-0.073979,-0.073979,-0.073979,-0.073979 +-0.067368,-0.067368,-0.067368,-0.067368,-0.067368,-0.067368 +-0.061112,-0.061112,-0.061112,-0.061112,-0.061112,-0.061112 +-0.055213,-0.055213,-0.055213,-0.055213,-0.055213,-0.055213 +-0.049671,-0.049671,-0.049671,-0.049671,-0.049671,-0.049671 +-0.044484,-0.044484,-0.044484,-0.044484,-0.044484,-0.044484 +-0.039654,-0.039654,-0.039654,-0.039654,-0.039654,-0.039654 +-0.035179,-0.035179,-0.035179,-0.035179,-0.035179,-0.035179 +-0.031055,-0.031055,-0.031055,-0.031055,-0.031055,-0.031055 +-0.027266,-0.027266,-0.027266,-0.027266,-0.027266,-0.027266 +-0.023798,-0.023798,-0.023798,-0.023798,-0.023798,-0.023798 +-0.020638,-0.020638,-0.020638,-0.020638,-0.020638,-0.020638 +-0.01777,-0.01777,-0.01777,-0.01777,-0.01777,-0.01777 +-0.015182,-0.015182,-0.015182,-0.015182,-0.015182,-0.015182 +-0.012857,-0.012857,-0.012857,-0.012857,-0.012857,-0.012857 +-0.010783,-0.010783,-0.010783,-0.010783,-0.010783,-0.010783 +-0.008945,-0.008945,-0.008945,-0.008945,-0.008945,-0.008945 +-0.007329,-0.007329,-0.007329,-0.007329,-0.007329,-0.007329 +-0.00592,-0.00592,-0.00592,-0.00592,-0.00592,-0.00592 +-0.004704,-0.004704,-0.004704,-0.004704,-0.004704,-0.004704 +-0.003668,-0.003668,-0.003668,-0.003668,-0.003668,-0.003668 +-0.002796,-0.002796,-0.002796,-0.002796,-0.002796,-0.002796 +-0.002074,-0.002074,-0.002074,-0.002074,-0.002074,-0.002074 +-0.001489,-0.001489,-0.001489,-0.001489,-0.001489,-0.001489 +-0.001026,-0.001026,-0.001026,-0.001026,-0.001026,-0.001026 +-0.00067,-0.00067,-0.00067,-0.00067,-0.00067,-0.00067 +-0.000408,-0.000408,-0.000408,-0.000408,-0.000408,-0.000408 +-0.000225,-0.000225,-0.000225,-0.000225,-0.000225,-0.000225 +-0.000107,-0.000107,-0.000107,-0.000107,-0.000107,-0.000107 +-0.00004,-0.00004,-0.00004,-0.00004,-0.00004,-0.00004 +-0.000009,-0.000009,-0.000009,-0.000009,-0.000009,-0.000009 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000068,0.000068,0.000068,0.000068,0.000068,0.000068 +0.00016,0.00016,0.00016,0.00016,0.00016,0.00016 +0.000313,0.000313,0.000313,0.000313,0.000313,0.000313 +0.00054,0.00054,0.00054,0.00054,0.00054,0.00054 +0.000858,0.000858,0.000858,0.000858,0.000858,0.000858 +0.00128,0.00128,0.00128,0.00128,0.00128,0.00128 +0.001823,0.001823,0.001823,0.001823,0.001823,0.001823 +0.0025,0.0025,0.0025,0.0025,0.0025,0.0025 +0.003328,0.003328,0.003328,0.003328,0.003328,0.003328 +0.00432,0.00432,0.00432,0.00432,0.00432,0.00432 +0.005493,0.005493,0.005493,0.005493,0.005493,0.005493 +0.00686,0.00686,0.00686,0.00686,0.00686,0.00686 +0.008438,0.008438,0.008438,0.008438,0.008438,0.008438 +0.01024,0.01024,0.01024,0.01024,0.01024,0.01024 +0.012283,0.012283,0.012283,0.012283,0.012283,0.012283 +0.01458,0.01458,0.01458,0.01458,0.01458,0.01458 +0.017148,0.017148,0.017148,0.017148,0.017148,0.017148 +0.02,0.02,0.02,0.02,0.02,0.02 +0.023153,0.023153,0.023153,0.023153,0.023153,0.023153 +0.02662,0.02662,0.02662,0.02662,0.02662,0.02662 +0.030418,0.030418,0.030418,0.030418,0.030418,0.030418 +0.03456,0.03456,0.03456,0.03456,0.03456,0.03456 +0.039063,0.039063,0.039063,0.039063,0.039063,0.039063 +0.043938,0.043938,0.043938,0.043938,0.043938,0.043938 +0.049188,0.049188,0.049188,0.049188,0.049188,0.049188 +0.054813,0.054813,0.054813,0.054813,0.054813,0.054813 +0.060812,0.060812,0.060812,0.060812,0.060812,0.060812 +0.067187,0.067187,0.067187,0.067187,0.067187,0.067187 +0.073937,0.073937,0.073937,0.073937,0.073937,0.073937 +0.081062,0.081062,0.081062,0.081062,0.081062,0.081062 +0.088562,0.088562,0.088562,0.088562,0.088562,0.088562 +0.096437,0.096437,0.096437,0.096437,0.096437,0.096437 +0.104687,0.104687,0.104687,0.104687,0.104687,0.104687 +0.113312,0.113312,0.113312,0.113312,0.113312,0.113312 +0.122312,0.122312,0.122312,0.122312,0.122312,0.122312 +0.131687,0.131687,0.131687,0.131687,0.131687,0.131687 +0.141437,0.141437,0.141437,0.141437,0.141437,0.141437 +0.151562,0.151562,0.151562,0.151562,0.151562,0.151562 +0.162062,0.162062,0.162062,0.162062,0.162062,0.162062 +0.172937,0.172937,0.172937,0.172937,0.172937,0.172937 +0.184182,0.184182,0.184182,0.184182,0.184182,0.184182 +0.195781,0.195781,0.195781,0.195781,0.195781,0.195781 +0.20772,0.20772,0.20772,0.20772,0.20772,0.20772 +0.219984,0.219984,0.219984,0.219984,0.219984,0.219984 +0.232558,0.232558,0.232558,0.232558,0.232558,0.232558 +0.245427,0.245427,0.245427,0.245427,0.245427,0.245427 +0.258577,0.258577,0.258577,0.258577,0.258577,0.258577 +0.271991,0.271991,0.271991,0.271991,0.271991,0.271991 +0.285655,0.285655,0.285655,0.285655,0.285655,0.285655 +0.299554,0.299554,0.299554,0.299554,0.299554,0.299554 +0.313673,0.313673,0.313673,0.313673,0.313673,0.313673 +0.327997,0.327997,0.327997,0.327997,0.327997,0.327997 +0.342512,0.342512,0.342512,0.342512,0.342512,0.342512 +0.357201,0.357201,0.357201,0.357201,0.357201,0.357201 +0.37205,0.37205,0.37205,0.37205,0.37205,0.37205 +0.387044,0.387044,0.387044,0.387044,0.387044,0.387044 +0.402168,0.402168,0.402168,0.402168,0.402168,0.402168 +0.417407,0.417407,0.417407,0.417407,0.417407,0.417407 +0.432747,0.432747,0.432747,0.432747,0.432747,0.432747 +0.448171,0.448171,0.448171,0.448171,0.448171,0.448171 +0.463665,0.463665,0.463665,0.463665,0.463665,0.463665 +0.479214,0.479214,0.479214,0.479214,0.479214,0.479214 +0.494803,0.494803,0.494803,0.494803,0.494803,0.494803 +0.510417,0.510417,0.510417,0.510417,0.510417,0.510417 +0.526042,0.526042,0.526042,0.526042,0.526042,0.526042 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.557292,0.557292,0.557292,0.557292,0.557292,0.557292 +0.572917,0.572917,0.572917,0.572917,0.572917,0.572917 +0.588542,0.588542,0.588542,0.588542,0.588542,0.588542 +0.604167,0.604167,0.604167,0.604167,0.604167,0.604167 +0.619792,0.619792,0.619792,0.619792,0.619792,0.619792 +0.635417,0.635417,0.635417,0.635417,0.635417,0.635417 +0.651042,0.651042,0.651042,0.651042,0.651042,0.651042 +0.666667,0.666667,0.666667,0.666667,0.666667,0.666667 +0.682292,0.682292,0.682292,0.682292,0.682292,0.682292 +0.697917,0.697917,0.697917,0.697917,0.697917,0.697917 +0.713542,0.713542,0.713542,0.713542,0.713542,0.713542 +0.729167,0.729167,0.729167,0.729167,0.729167,0.729167 +0.744792,0.744792,0.744792,0.744792,0.744792,0.744792 +0.760417,0.760417,0.760417,0.760417,0.760417,0.760417 +0.776042,0.776042,0.776042,0.776042,0.776042,0.776042 +0.791667,0.791667,0.791667,0.791667,0.791667,0.791667 +0.807292,0.807292,0.807292,0.807292,0.807292,0.807292 +0.822917,0.822917,0.822917,0.822917,0.822917,0.822917 +0.838542,0.838542,0.838542,0.838542,0.838542,0.838542 +0.854167,0.854167,0.854167,0.854167,0.854167,0.854167 +0.869792,0.869792,0.869792,0.869792,0.869792,0.869792 +0.885417,0.885417,0.885417,0.885417,0.885417,0.885417 +0.901042,0.901042,0.901042,0.901042,0.901042,0.901042 +0.916667,0.916667,0.916667,0.916667,0.916667,0.916667 +0.932292,0.932292,0.932292,0.932292,0.932292,0.932292 +0.947917,0.947917,0.947917,0.947917,0.947917,0.947917 +0.963542,0.963542,0.963542,0.963542,0.963542,0.963542 +0.979167,0.979167,0.979167,0.979167,0.979167,0.979167 +0.994792,0.994792,0.994792,0.994792,0.994792,0.994792 +1.010417,1.010417,1.010417,1.010417,1.010417,1.010417 +1.026042,1.026042,1.026042,1.026042,1.026042,1.026042 +1.041667,1.041667,1.041667,1.041667,1.041667,1.041667 +1.057292,1.057292,1.057292,1.057292,1.057292,1.057292 +1.072917,1.072917,1.072917,1.072917,1.072917,1.072917 +1.088542,1.088542,1.088542,1.088542,1.088542,1.088542 +1.104167,1.104167,1.104167,1.104167,1.104167,1.104167 +1.119792,1.119792,1.119792,1.119792,1.119792,1.119792 +1.135417,1.135417,1.135417,1.135417,1.135417,1.135417 +1.151042,1.151042,1.151042,1.151042,1.151042,1.151042 +1.166667,1.166667,1.166667,1.166667,1.166667,1.166667 +1.182292,1.182292,1.182292,1.182292,1.182292,1.182292 +1.197917,1.197917,1.197917,1.197917,1.197917,1.197917 +1.213542,1.213542,1.213542,1.213542,1.213542,1.213542 +1.229167,1.229167,1.229167,1.229167,1.229167,1.229167 +1.244786,1.244786,1.244786,1.244786,1.244786,1.244786 +1.260386,1.260386,1.260386,1.260386,1.260386,1.260386 +1.275952,1.275952,1.275952,1.275952,1.275952,1.275952 +1.291468,1.291468,1.291468,1.291468,1.291468,1.291468 +1.306919,1.306919,1.306919,1.306919,1.306919,1.306919 +1.322291,1.322291,1.322291,1.322291,1.322291,1.322291 +1.337569,1.337569,1.337569,1.337569,1.337569,1.337569 +1.352737,1.352737,1.352737,1.352737,1.352737,1.352737 +1.36778,1.36778,1.36778,1.36778,1.36778,1.36778 +1.382684,1.382684,1.382684,1.382684,1.382684,1.382684 +1.397434,1.397434,1.397434,1.397434,1.397434,1.397434 +1.412014,1.412014,1.412014,1.412014,1.412014,1.412014 +1.426409,1.426409,1.426409,1.426409,1.426409,1.426409 +1.440605,1.440605,1.440605,1.440605,1.440605,1.440605 +1.454586,1.454586,1.454586,1.454586,1.454586,1.454586 +1.468338,1.468338,1.468338,1.468338,1.468338,1.468338 +1.481846,1.481846,1.481846,1.481846,1.481846,1.481846 +1.495093,1.495093,1.495093,1.495093,1.495093,1.495093 +1.508067,1.508067,1.508067,1.508067,1.508067,1.508067 +1.520751,1.520751,1.520751,1.520751,1.520751,1.520751 +1.53313,1.53313,1.53313,1.53313,1.53313,1.53313 +1.54519,1.54519,1.54519,1.54519,1.54519,1.54519 +1.556915,1.556915,1.556915,1.556915,1.556915,1.556915 +1.568291,1.568291,1.568291,1.568291,1.568291,1.568291 +1.579302,1.579302,1.579302,1.579302,1.579302,1.579302 +1.589939,1.589939,1.589939,1.589939,1.589939,1.589939 +1.600202,1.600202,1.600202,1.600202,1.600202,1.600202 +1.610089,1.610089,1.610089,1.610089,1.610089,1.610089 +1.619601,1.619601,1.619601,1.619601,1.619601,1.619601 +1.628738,1.628738,1.628738,1.628738,1.628738,1.628738 +1.6375,1.6375,1.6375,1.6375,1.6375,1.6375 +1.645888,1.645888,1.645888,1.645888,1.645888,1.645888 +1.6539,1.6539,1.6539,1.6539,1.6539,1.6539 +1.661537,1.661537,1.661537,1.661537,1.661537,1.661537 +1.668799,1.668799,1.668799,1.668799,1.668799,1.668799 +1.675686,1.675686,1.675686,1.675686,1.675686,1.675686 +1.682199,1.682199,1.682199,1.682199,1.682199,1.682199 +1.688336,1.688336,1.688336,1.688336,1.688336,1.688336 +1.694098,1.694098,1.694098,1.694098,1.694098,1.694098 +1.699485,1.699485,1.699485,1.699485,1.699485,1.699485 +1.704497,1.704497,1.704497,1.704497,1.704497,1.704497 +1.709135,1.709135,1.709135,1.709135,1.709135,1.709135 +1.713408,1.713408,1.713408,1.713408,1.713408,1.713408 +1.71733,1.71733,1.71733,1.71733,1.71733,1.71733 +1.720916,1.720916,1.720916,1.720916,1.720916,1.720916 +1.724182,1.724182,1.724182,1.724182,1.724182,1.724182 +1.727143,1.727143,1.727143,1.727143,1.727143,1.727143 +1.729813,1.729813,1.729813,1.729813,1.729813,1.729813 +1.732207,1.732207,1.732207,1.732207,1.732207,1.732207 +1.734341,1.734341,1.734341,1.734341,1.734341,1.734341 +1.73623,1.73623,1.73623,1.73623,1.73623,1.73623 +1.737888,1.737888,1.737888,1.737888,1.737888,1.737888 +1.739331,1.739331,1.739331,1.739331,1.739331,1.739331 +1.740573,1.740573,1.740573,1.740573,1.740573,1.740573 +1.741629,1.741629,1.741629,1.741629,1.741629,1.741629 +1.742515,1.742515,1.742515,1.742515,1.742515,1.742515 +1.743246,1.743246,1.743246,1.743246,1.743246,1.743246 +1.743836,1.743836,1.743836,1.743836,1.743836,1.743836 +1.744301,1.744301,1.744301,1.744301,1.744301,1.744301 +1.744655,1.744655,1.744655,1.744655,1.744655,1.744655 +1.744914,1.744914,1.744914,1.744914,1.744914,1.744914 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.745205,1.745205,1.745205,1.745205,1.745205,1.745205 +1.745267,1.745267,1.745267,1.745267,1.745267,1.745267 +1.745294,1.745294,1.745294,1.745294,1.745294,1.745294 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.74528,1.74528,1.74528,1.74528,1.74528,1.74528 +1.745232,1.745232,1.745232,1.745232,1.745232,1.745232 +1.74514,1.74514,1.74514,1.74514,1.74514,1.74514 +1.744988,1.744988,1.744988,1.744988,1.744988,1.744988 +1.74476,1.74476,1.74476,1.74476,1.74476,1.74476 +1.744443,1.744443,1.744443,1.744443,1.744443,1.744443 +1.74402,1.74402,1.74402,1.74402,1.74402,1.74402 +1.743478,1.743478,1.743478,1.743478,1.743478,1.743478 +1.7428,1.7428,1.7428,1.7428,1.7428,1.7428 +1.741972,1.741972,1.741972,1.741972,1.741972,1.741972 +1.74098,1.74098,1.74098,1.74098,1.74098,1.74098 +1.739807,1.739807,1.739807,1.739807,1.739807,1.739807 +1.73844,1.73844,1.73844,1.73844,1.73844,1.73844 +1.736862,1.736862,1.736862,1.736862,1.736862,1.736862 +1.73506,1.73506,1.73506,1.73506,1.73506,1.73506 +1.733017,1.733017,1.733017,1.733017,1.733017,1.733017 +1.73072,1.73072,1.73072,1.73072,1.73072,1.73072 +1.728152,1.728152,1.728152,1.728152,1.728152,1.728152 +1.7253,1.7253,1.7253,1.7253,1.7253,1.7253 +1.722147,1.722147,1.722147,1.722147,1.722147,1.722147 +1.71868,1.71868,1.71868,1.71868,1.71868,1.71868 +1.714882,1.714882,1.714882,1.714882,1.714882,1.714882 +1.71074,1.71074,1.71074,1.71074,1.71074,1.71074 +1.706237,1.706237,1.706237,1.706237,1.706237,1.706237 +1.701362,1.701362,1.701362,1.701362,1.701362,1.701362 +1.696112,1.696112,1.696112,1.696112,1.696112,1.696112 +1.690487,1.690487,1.690487,1.690487,1.690487,1.690487 +1.684488,1.684488,1.684488,1.684488,1.684488,1.684488 +1.678113,1.678113,1.678113,1.678113,1.678113,1.678113 +1.671363,1.671363,1.671363,1.671363,1.671363,1.671363 +1.664238,1.664238,1.664238,1.664238,1.664238,1.664238 +1.656738,1.656738,1.656738,1.656738,1.656738,1.656738 +1.648863,1.648863,1.648863,1.648863,1.648863,1.648863 +1.640613,1.640613,1.640613,1.640613,1.640613,1.640613 +1.631988,1.631988,1.631988,1.631988,1.631988,1.631988 +1.622988,1.622988,1.622988,1.622988,1.622988,1.622988 +1.613613,1.613613,1.613613,1.613613,1.613613,1.613613 +1.603863,1.603863,1.603863,1.603863,1.603863,1.603863 +1.593738,1.593738,1.593738,1.593738,1.593738,1.593738 +1.583238,1.583238,1.583238,1.583238,1.583238,1.583238 +1.572363,1.572363,1.572363,1.572363,1.572363,1.572363 +1.561118,1.561118,1.561118,1.561118,1.561118,1.561118 +1.549519,1.549519,1.549519,1.549519,1.549519,1.549519 +1.53758,1.53758,1.53758,1.53758,1.53758,1.53758 +1.525316,1.525316,1.525316,1.525316,1.525316,1.525316 +1.512742,1.512742,1.512742,1.512742,1.512742,1.512742 +1.499873,1.499873,1.499873,1.499873,1.499873,1.499873 +1.486723,1.486723,1.486723,1.486723,1.486723,1.486723 +1.473309,1.473309,1.473309,1.473309,1.473309,1.473309 +1.459645,1.459645,1.459645,1.459645,1.459645,1.459645 +1.445746,1.445746,1.445746,1.445746,1.445746,1.445746 +1.431627,1.431627,1.431627,1.431627,1.431627,1.431627 +1.417303,1.417303,1.417303,1.417303,1.417303,1.417303 +1.402788,1.402788,1.402788,1.402788,1.402788,1.402788 +1.388099,1.388099,1.388099,1.388099,1.388099,1.388099 +1.37325,1.37325,1.37325,1.37325,1.37325,1.37325 +1.358256,1.358256,1.358256,1.358256,1.358256,1.358256 +1.343132,1.343132,1.343132,1.343132,1.343132,1.343132 +1.327893,1.327893,1.327893,1.327893,1.327893,1.327893 +1.312553,1.312553,1.312553,1.312553,1.312553,1.312553 +1.297129,1.297129,1.297129,1.297129,1.297129,1.297129 +1.281635,1.281635,1.281635,1.281635,1.281635,1.281635 +1.266086,1.266086,1.266086,1.266086,1.266086,1.266086 +1.250497,1.250497,1.250497,1.250497,1.250497,1.250497 +1.234883,1.234883,1.234883,1.234883,1.234883,1.234883 +1.219258,1.219258,1.219258,1.219258,1.219258,1.219258 +1.203633,1.203633,1.203633,1.203633,1.203633,1.203633 +1.188008,1.188008,1.188008,1.188008,1.188008,1.188008 +1.172383,1.172383,1.172383,1.172383,1.172383,1.172383 +1.156758,1.156758,1.156758,1.156758,1.156758,1.156758 +1.141133,1.141133,1.141133,1.141133,1.141133,1.141133 +1.125508,1.125508,1.125508,1.125508,1.125508,1.125508 +1.109883,1.109883,1.109883,1.109883,1.109883,1.109883 +1.094258,1.094258,1.094258,1.094258,1.094258,1.094258 +1.078633,1.078633,1.078633,1.078633,1.078633,1.078633 +1.063008,1.063008,1.063008,1.063008,1.063008,1.063008 +1.047383,1.047383,1.047383,1.047383,1.047383,1.047383 +1.031758,1.031758,1.031758,1.031758,1.031758,1.031758 +1.016133,1.016133,1.016133,1.016133,1.016133,1.016133 +1.000508,1.000508,1.000508,1.000508,1.000508,1.000508 +0.984883,0.984883,0.984883,0.984883,0.984883,0.984883 +0.969258,0.969258,0.969258,0.969258,0.969258,0.969258 +0.953633,0.953633,0.953633,0.953633,0.953633,0.953633 +0.938008,0.938008,0.938008,0.938008,0.938008,0.938008 +0.922383,0.922383,0.922383,0.922383,0.922383,0.922383 +0.906758,0.906758,0.906758,0.906758,0.906758,0.906758 +0.891133,0.891133,0.891133,0.891133,0.891133,0.891133 +0.875508,0.875508,0.875508,0.875508,0.875508,0.875508 +0.859883,0.859883,0.859883,0.859883,0.859883,0.859883 +0.844258,0.844258,0.844258,0.844258,0.844258,0.844258 +0.828633,0.828633,0.828633,0.828633,0.828633,0.828633 +0.813008,0.813008,0.813008,0.813008,0.813008,0.813008 +0.797383,0.797383,0.797383,0.797383,0.797383,0.797383 +0.781758,0.781758,0.781758,0.781758,0.781758,0.781758 +0.766133,0.766133,0.766133,0.766133,0.766133,0.766133 +0.750508,0.750508,0.750508,0.750508,0.750508,0.750508 +0.734883,0.734883,0.734883,0.734883,0.734883,0.734883 +0.719258,0.719258,0.719258,0.719258,0.719258,0.719258 +0.703633,0.703633,0.703633,0.703633,0.703633,0.703633 +0.688008,0.688008,0.688008,0.688008,0.688008,0.688008 +0.672383,0.672383,0.672383,0.672383,0.672383,0.672383 +0.656758,0.656758,0.656758,0.656758,0.656758,0.656758 +0.641133,0.641133,0.641133,0.641133,0.641133,0.641133 +0.625508,0.625508,0.625508,0.625508,0.625508,0.625508 +0.609883,0.609883,0.609883,0.609883,0.609883,0.609883 +0.594258,0.594258,0.594258,0.594258,0.594258,0.594258 +0.578633,0.578633,0.578633,0.578633,0.578633,0.578633 +0.563008,0.563008,0.563008,0.563008,0.563008,0.563008 +0.547383,0.547383,0.547383,0.547383,0.547383,0.547383 +0.531758,0.531758,0.531758,0.531758,0.531758,0.531758 +0.516133,0.516133,0.516133,0.516133,0.516133,0.516133 +0.500514,0.500514,0.500514,0.500514,0.500514,0.500514 +0.484914,0.484914,0.484914,0.484914,0.484914,0.484914 +0.469348,0.469348,0.469348,0.469348,0.469348,0.469348 +0.453832,0.453832,0.453832,0.453832,0.453832,0.453832 +0.438381,0.438381,0.438381,0.438381,0.438381,0.438381 +0.423009,0.423009,0.423009,0.423009,0.423009,0.423009 +0.407731,0.407731,0.407731,0.407731,0.407731,0.407731 +0.392563,0.392563,0.392563,0.392563,0.392563,0.392563 +0.37752,0.37752,0.37752,0.37752,0.37752,0.37752 +0.362616,0.362616,0.362616,0.362616,0.362616,0.362616 +0.347866,0.347866,0.347866,0.347866,0.347866,0.347866 +0.333286,0.333286,0.333286,0.333286,0.333286,0.333286 +0.318891,0.318891,0.318891,0.318891,0.318891,0.318891 +0.304695,0.304695,0.304695,0.304695,0.304695,0.304695 +0.290714,0.290714,0.290714,0.290714,0.290714,0.290714 +0.276962,0.276962,0.276962,0.276962,0.276962,0.276962 +0.263454,0.263454,0.263454,0.263454,0.263454,0.263454 +0.250207,0.250207,0.250207,0.250207,0.250207,0.250207 +0.237233,0.237233,0.237233,0.237233,0.237233,0.237233 +0.224549,0.224549,0.224549,0.224549,0.224549,0.224549 +0.21217,0.21217,0.21217,0.21217,0.21217,0.21217 +0.20011,0.20011,0.20011,0.20011,0.20011,0.20011 +0.188385,0.188385,0.188385,0.188385,0.188385,0.188385 +0.177009,0.177009,0.177009,0.177009,0.177009,0.177009 +0.165998,0.165998,0.165998,0.165998,0.165998,0.165998 +0.155361,0.155361,0.155361,0.155361,0.155361,0.155361 +0.145098,0.145098,0.145098,0.145098,0.145098,0.145098 +0.135211,0.135211,0.135211,0.135211,0.135211,0.135211 +0.125699,0.125699,0.125699,0.125699,0.125699,0.125699 +0.116562,0.116562,0.116562,0.116562,0.116562,0.116562 +0.1078,0.1078,0.1078,0.1078,0.1078,0.1078 +0.099412,0.099412,0.099412,0.099412,0.099412,0.099412 +0.0914,0.0914,0.0914,0.0914,0.0914,0.0914 +0.083763,0.083763,0.083763,0.083763,0.083763,0.083763 +0.076501,0.076501,0.076501,0.076501,0.076501,0.076501 +0.069614,0.069614,0.069614,0.069614,0.069614,0.069614 +0.063101,0.063101,0.063101,0.063101,0.063101,0.063101 +0.056964,0.056964,0.056964,0.056964,0.056964,0.056964 +0.051202,0.051202,0.051202,0.051202,0.051202,0.051202 +0.045815,0.045815,0.045815,0.045815,0.045815,0.045815 +0.040803,0.040803,0.040803,0.040803,0.040803,0.040803 +0.036165,0.036165,0.036165,0.036165,0.036165,0.036165 +0.031892,0.031892,0.031892,0.031892,0.031892,0.031892 +0.02797,0.02797,0.02797,0.02797,0.02797,0.02797 +0.024384,0.024384,0.024384,0.024384,0.024384,0.024384 +0.021118,0.021118,0.021118,0.021118,0.021118,0.021118 +0.018157,0.018157,0.018157,0.018157,0.018157,0.018157 +0.015487,0.015487,0.015487,0.015487,0.015487,0.015487 +0.013093,0.013093,0.013093,0.013093,0.013093,0.013093 +0.010959,0.010959,0.010959,0.010959,0.010959,0.010959 +0.00907,0.00907,0.00907,0.00907,0.00907,0.00907 +0.007412,0.007412,0.007412,0.007412,0.007412,0.007412 +0.005969,0.005969,0.005969,0.005969,0.005969,0.005969 +0.004727,0.004727,0.004727,0.004727,0.004727,0.004727 +0.003671,0.003671,0.003671,0.003671,0.003671,0.003671 +0.002785,0.002785,0.002785,0.002785,0.002785,0.002785 +0.002054,0.002054,0.002054,0.002054,0.002054,0.002054 +0.001464,0.001464,0.001464,0.001464,0.001464,0.001464 +0.000999,0.000999,0.000999,0.000999,0.000999,0.000999 +0.000645,0.000645,0.000645,0.000645,0.000645,0.000645 +0.000386,0.000386,0.000386,0.000386,0.000386,0.000386 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.000095,0.000095,0.000095,0.000095,0.000095,0.000095 +0.000033,0.000033,0.000033,0.000033,0.000033,0.000033 +0.000006,0.000006,0.000006,0.000006,0.000006,0.000006 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000068,-0.000068,-0.000068,-0.000068,-0.000068,-0.000068 +-0.00016,-0.00016,-0.00016,-0.00016,-0.00016,-0.00016 +-0.000313,-0.000313,-0.000313,-0.000313,-0.000313,-0.000313 +-0.00054,-0.00054,-0.00054,-0.00054,-0.00054,-0.00054 +-0.000858,-0.000858,-0.000858,-0.000858,-0.000858,-0.000858 +-0.00128,-0.00128,-0.00128,-0.00128,-0.00128,-0.00128 +-0.001823,-0.001823,-0.001823,-0.001823,-0.001823,-0.001823 +-0.0025,-0.0025,-0.0025,-0.0025,-0.0025,-0.0025 +-0.003328,-0.003328,-0.003328,-0.003328,-0.003328,-0.003328 +-0.00432,-0.00432,-0.00432,-0.00432,-0.00432,-0.00432 +-0.005493,-0.005493,-0.005493,-0.005493,-0.005493,-0.005493 +-0.00686,-0.00686,-0.00686,-0.00686,-0.00686,-0.00686 +-0.008438,-0.008438,-0.008438,-0.008438,-0.008438,-0.008438 +-0.01024,-0.01024,-0.01024,-0.01024,-0.01024,-0.01024 +-0.012283,-0.012283,-0.012283,-0.012283,-0.012283,-0.012283 +-0.01458,-0.01458,-0.01458,-0.01458,-0.01458,-0.01458 +-0.017148,-0.017148,-0.017148,-0.017148,-0.017148,-0.017148 +-0.02,-0.02,-0.02,-0.02,-0.02,-0.02 +-0.023153,-0.023153,-0.023153,-0.023153,-0.023153,-0.023153 +-0.02662,-0.02662,-0.02662,-0.02662,-0.02662,-0.02662 +-0.030418,-0.030418,-0.030418,-0.030418,-0.030418,-0.030418 +-0.03456,-0.03456,-0.03456,-0.03456,-0.03456,-0.03456 +-0.039063,-0.039063,-0.039063,-0.039063,-0.039063,-0.039063 +-0.043938,-0.043938,-0.043938,-0.043938,-0.043938,-0.043938 +-0.049188,-0.049188,-0.049188,-0.049188,-0.049188,-0.049188 +-0.054813,-0.054813,-0.054813,-0.054813,-0.054813,-0.054813 +-0.060812,-0.060812,-0.060812,-0.060812,-0.060812,-0.060812 +-0.067187,-0.067187,-0.067187,-0.067187,-0.067187,-0.067187 +-0.073937,-0.073937,-0.073937,-0.073937,-0.073937,-0.073937 +-0.081062,-0.081062,-0.081062,-0.081062,-0.081062,-0.081062 +-0.088562,-0.088562,-0.088562,-0.088562,-0.088562,-0.088562 +-0.096437,-0.096437,-0.096437,-0.096437,-0.096437,-0.096437 +-0.104687,-0.104687,-0.104687,-0.104687,-0.104687,-0.104687 +-0.113312,-0.113312,-0.113312,-0.113312,-0.113312,-0.113312 +-0.122312,-0.122312,-0.122312,-0.122312,-0.122312,-0.122312 +-0.131687,-0.131687,-0.131687,-0.131687,-0.131687,-0.131687 +-0.141437,-0.141437,-0.141437,-0.141437,-0.141437,-0.141437 +-0.151562,-0.151562,-0.151562,-0.151562,-0.151562,-0.151562 +-0.162062,-0.162062,-0.162062,-0.162062,-0.162062,-0.162062 +-0.172937,-0.172937,-0.172937,-0.172937,-0.172937,-0.172937 +-0.184182,-0.184182,-0.184182,-0.184182,-0.184182,-0.184182 +-0.195781,-0.195781,-0.195781,-0.195781,-0.195781,-0.195781 +-0.20772,-0.20772,-0.20772,-0.20772,-0.20772,-0.20772 +-0.219984,-0.219984,-0.219984,-0.219984,-0.219984,-0.219984 +-0.232558,-0.232558,-0.232558,-0.232558,-0.232558,-0.232558 +-0.245427,-0.245427,-0.245427,-0.245427,-0.245427,-0.245427 +-0.258577,-0.258577,-0.258577,-0.258577,-0.258577,-0.258577 +-0.271991,-0.271991,-0.271991,-0.271991,-0.271991,-0.271991 +-0.285655,-0.285655,-0.285655,-0.285655,-0.285655,-0.285655 +-0.299554,-0.299554,-0.299554,-0.299554,-0.299554,-0.299554 +-0.313673,-0.313673,-0.313673,-0.313673,-0.313673,-0.313673 +-0.327997,-0.327997,-0.327997,-0.327997,-0.327997,-0.327997 +-0.342512,-0.342512,-0.342512,-0.342512,-0.342512,-0.342512 +-0.357201,-0.357201,-0.357201,-0.357201,-0.357201,-0.357201 +-0.37205,-0.37205,-0.37205,-0.37205,-0.37205,-0.37205 +-0.387044,-0.387044,-0.387044,-0.387044,-0.387044,-0.387044 +-0.402168,-0.402168,-0.402168,-0.402168,-0.402168,-0.402168 +-0.417407,-0.417407,-0.417407,-0.417407,-0.417407,-0.417407 +-0.432747,-0.432747,-0.432747,-0.432747,-0.432747,-0.432747 +-0.448171,-0.448171,-0.448171,-0.448171,-0.448171,-0.448171 +-0.463665,-0.463665,-0.463665,-0.463665,-0.463665,-0.463665 +-0.479214,-0.479214,-0.479214,-0.479214,-0.479214,-0.479214 +-0.494803,-0.494803,-0.494803,-0.494803,-0.494803,-0.494803 +-0.510417,-0.510417,-0.510417,-0.510417,-0.510417,-0.510417 +-0.526042,-0.526042,-0.526042,-0.526042,-0.526042,-0.526042 +-0.541667,-0.541667,-0.541667,-0.541667,-0.541667,-0.541667 +-0.557292,-0.557292,-0.557292,-0.557292,-0.557292,-0.557292 +-0.572917,-0.572917,-0.572917,-0.572917,-0.572917,-0.572917 +-0.588542,-0.588542,-0.588542,-0.588542,-0.588542,-0.588542 +-0.604167,-0.604167,-0.604167,-0.604167,-0.604167,-0.604167 +-0.619792,-0.619792,-0.619792,-0.619792,-0.619792,-0.619792 +-0.635417,-0.635417,-0.635417,-0.635417,-0.635417,-0.635417 +-0.651042,-0.651042,-0.651042,-0.651042,-0.651042,-0.651042 +-0.666667,-0.666667,-0.666667,-0.666667,-0.666667,-0.666667 +-0.682292,-0.682292,-0.682292,-0.682292,-0.682292,-0.682292 +-0.697917,-0.697917,-0.697917,-0.697917,-0.697917,-0.697917 +-0.713542,-0.713542,-0.713542,-0.713542,-0.713542,-0.713542 +-0.729167,-0.729167,-0.729167,-0.729167,-0.729167,-0.729167 +-0.744792,-0.744792,-0.744792,-0.744792,-0.744792,-0.744792 +-0.760417,-0.760417,-0.760417,-0.760417,-0.760417,-0.760417 +-0.776042,-0.776042,-0.776042,-0.776042,-0.776042,-0.776042 +-0.791667,-0.791667,-0.791667,-0.791667,-0.791667,-0.791667 +-0.807292,-0.807292,-0.807292,-0.807292,-0.807292,-0.807292 +-0.822917,-0.822917,-0.822917,-0.822917,-0.822917,-0.822917 +-0.838542,-0.838542,-0.838542,-0.838542,-0.838542,-0.838542 +-0.854167,-0.854167,-0.854167,-0.854167,-0.854167,-0.854167 +-0.869792,-0.869792,-0.869792,-0.869792,-0.869792,-0.869792 +-0.885417,-0.885417,-0.885417,-0.885417,-0.885417,-0.885417 +-0.901042,-0.901042,-0.901042,-0.901042,-0.901042,-0.901042 +-0.916667,-0.916667,-0.916667,-0.916667,-0.916667,-0.916667 +-0.932292,-0.932292,-0.932292,-0.932292,-0.932292,-0.932292 +-0.947917,-0.947917,-0.947917,-0.947917,-0.947917,-0.947917 +-0.963542,-0.963542,-0.963542,-0.963542,-0.963542,-0.963542 +-0.979167,-0.979167,-0.979167,-0.979167,-0.979167,-0.979167 +-0.994792,-0.994792,-0.994792,-0.994792,-0.994792,-0.994792 +-1.010417,-1.010417,-1.010417,-1.010417,-1.010417,-1.010417 +-1.026042,-1.026042,-1.026042,-1.026042,-1.026042,-1.026042 +-1.041667,-1.041667,-1.041667,-1.041667,-1.041667,-1.041667 +-1.057292,-1.057292,-1.057292,-1.057292,-1.057292,-1.057292 +-1.072917,-1.072917,-1.072917,-1.072917,-1.072917,-1.072917 +-1.088542,-1.088542,-1.088542,-1.088542,-1.088542,-1.088542 +-1.104167,-1.104167,-1.104167,-1.104167,-1.104167,-1.104167 +-1.119792,-1.119792,-1.119792,-1.119792,-1.119792,-1.119792 +-1.135417,-1.135417,-1.135417,-1.135417,-1.135417,-1.135417 +-1.151042,-1.151042,-1.151042,-1.151042,-1.151042,-1.151042 +-1.166667,-1.166667,-1.166667,-1.166667,-1.166667,-1.166667 +-1.182292,-1.182292,-1.182292,-1.182292,-1.182292,-1.182292 +-1.197917,-1.197917,-1.197917,-1.197917,-1.197917,-1.197917 +-1.213542,-1.213542,-1.213542,-1.213542,-1.213542,-1.213542 +-1.229167,-1.229167,-1.229167,-1.229167,-1.229167,-1.229167 +-1.244786,-1.244786,-1.244786,-1.244786,-1.244786,-1.244786 +-1.260386,-1.260386,-1.260386,-1.260386,-1.260386,-1.260386 +-1.275952,-1.275952,-1.275952,-1.275952,-1.275952,-1.275952 +-1.291468,-1.291468,-1.291468,-1.291468,-1.291468,-1.291468 +-1.306919,-1.306919,-1.306919,-1.306919,-1.306919,-1.306919 +-1.322291,-1.322291,-1.322291,-1.322291,-1.322291,-1.322291 +-1.337569,-1.337569,-1.337569,-1.337569,-1.337569,-1.337569 +-1.352737,-1.352737,-1.352737,-1.352737,-1.352737,-1.352737 +-1.36778,-1.36778,-1.36778,-1.36778,-1.36778,-1.36778 +-1.382684,-1.382684,-1.382684,-1.382684,-1.382684,-1.382684 +-1.397434,-1.397434,-1.397434,-1.397434,-1.397434,-1.397434 +-1.412014,-1.412014,-1.412014,-1.412014,-1.412014,-1.412014 +-1.426409,-1.426409,-1.426409,-1.426409,-1.426409,-1.426409 +-1.440605,-1.440605,-1.440605,-1.440605,-1.440605,-1.440605 +-1.454586,-1.454586,-1.454586,-1.454586,-1.454586,-1.454586 +-1.468338,-1.468338,-1.468338,-1.468338,-1.468338,-1.468338 +-1.481846,-1.481846,-1.481846,-1.481846,-1.481846,-1.481846 +-1.495093,-1.495093,-1.495093,-1.495093,-1.495093,-1.495093 +-1.508067,-1.508067,-1.508067,-1.508067,-1.508067,-1.508067 +-1.520751,-1.520751,-1.520751,-1.520751,-1.520751,-1.520751 +-1.53313,-1.53313,-1.53313,-1.53313,-1.53313,-1.53313 +-1.54519,-1.54519,-1.54519,-1.54519,-1.54519,-1.54519 +-1.556915,-1.556915,-1.556915,-1.556915,-1.556915,-1.556915 +-1.568291,-1.568291,-1.568291,-1.568291,-1.568291,-1.568291 +-1.579302,-1.579302,-1.579302,-1.579302,-1.579302,-1.579302 +-1.589939,-1.589939,-1.589939,-1.589939,-1.589939,-1.589939 +-1.600202,-1.600202,-1.600202,-1.600202,-1.600202,-1.600202 +-1.610089,-1.610089,-1.610089,-1.610089,-1.610089,-1.610089 +-1.619601,-1.619601,-1.619601,-1.619601,-1.619601,-1.619601 +-1.628738,-1.628738,-1.628738,-1.628738,-1.628738,-1.628738 +-1.6375,-1.6375,-1.6375,-1.6375,-1.6375,-1.6375 +-1.645888,-1.645888,-1.645888,-1.645888,-1.645888,-1.645888 +-1.6539,-1.6539,-1.6539,-1.6539,-1.6539,-1.6539 +-1.661537,-1.661537,-1.661537,-1.661537,-1.661537,-1.661537 +-1.668799,-1.668799,-1.668799,-1.668799,-1.668799,-1.668799 +-1.675686,-1.675686,-1.675686,-1.675686,-1.675686,-1.675686 +-1.682199,-1.682199,-1.682199,-1.682199,-1.682199,-1.682199 +-1.688336,-1.688336,-1.688336,-1.688336,-1.688336,-1.688336 +-1.694098,-1.694098,-1.694098,-1.694098,-1.694098,-1.694098 +-1.699485,-1.699485,-1.699485,-1.699485,-1.699485,-1.699485 +-1.704497,-1.704497,-1.704497,-1.704497,-1.704497,-1.704497 +-1.709135,-1.709135,-1.709135,-1.709135,-1.709135,-1.709135 +-1.713408,-1.713408,-1.713408,-1.713408,-1.713408,-1.713408 +-1.71733,-1.71733,-1.71733,-1.71733,-1.71733,-1.71733 +-1.720916,-1.720916,-1.720916,-1.720916,-1.720916,-1.720916 +-1.724182,-1.724182,-1.724182,-1.724182,-1.724182,-1.724182 +-1.727143,-1.727143,-1.727143,-1.727143,-1.727143,-1.727143 +-1.729813,-1.729813,-1.729813,-1.729813,-1.729813,-1.729813 +-1.732207,-1.732207,-1.732207,-1.732207,-1.732207,-1.732207 +-1.734341,-1.734341,-1.734341,-1.734341,-1.734341,-1.734341 +-1.73623,-1.73623,-1.73623,-1.73623,-1.73623,-1.73623 +-1.737888,-1.737888,-1.737888,-1.737888,-1.737888,-1.737888 +-1.739331,-1.739331,-1.739331,-1.739331,-1.739331,-1.739331 +-1.740573,-1.740573,-1.740573,-1.740573,-1.740573,-1.740573 +-1.741629,-1.741629,-1.741629,-1.741629,-1.741629,-1.741629 +-1.742515,-1.742515,-1.742515,-1.742515,-1.742515,-1.742515 +-1.743246,-1.743246,-1.743246,-1.743246,-1.743246,-1.743246 +-1.743836,-1.743836,-1.743836,-1.743836,-1.743836,-1.743836 +-1.744301,-1.744301,-1.744301,-1.744301,-1.744301,-1.744301 +-1.744655,-1.744655,-1.744655,-1.744655,-1.744655,-1.744655 +-1.744914,-1.744914,-1.744914,-1.744914,-1.744914,-1.744914 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.745205,-1.745205,-1.745205,-1.745205,-1.745205,-1.745205 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745294,-1.745294,-1.745294,-1.745294,-1.745294,-1.745294 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745232,-1.745232,-1.745232,-1.745232,-1.745232,-1.745232 +-1.74514,-1.74514,-1.74514,-1.74514,-1.74514,-1.74514 +-1.744988,-1.744988,-1.744988,-1.744988,-1.744988,-1.744988 +-1.74476,-1.74476,-1.74476,-1.74476,-1.74476,-1.74476 +-1.744443,-1.744443,-1.744443,-1.744443,-1.744443,-1.744443 +-1.74402,-1.74402,-1.74402,-1.74402,-1.74402,-1.74402 +-1.743478,-1.743478,-1.743478,-1.743478,-1.743478,-1.743478 +-1.7428,-1.7428,-1.7428,-1.7428,-1.7428,-1.7428 +-1.741972,-1.741972,-1.741972,-1.741972,-1.741972,-1.741972 +-1.74098,-1.74098,-1.74098,-1.74098,-1.74098,-1.74098 +-1.739807,-1.739807,-1.739807,-1.739807,-1.739807,-1.739807 +-1.73844,-1.73844,-1.73844,-1.73844,-1.73844,-1.73844 +-1.736862,-1.736862,-1.736862,-1.736862,-1.736862,-1.736862 +-1.73506,-1.73506,-1.73506,-1.73506,-1.73506,-1.73506 +-1.733017,-1.733017,-1.733017,-1.733017,-1.733017,-1.733017 +-1.73072,-1.73072,-1.73072,-1.73072,-1.73072,-1.73072 +-1.728152,-1.728152,-1.728152,-1.728152,-1.728152,-1.728152 +-1.7253,-1.7253,-1.7253,-1.7253,-1.7253,-1.7253 +-1.722147,-1.722147,-1.722147,-1.722147,-1.722147,-1.722147 +-1.71868,-1.71868,-1.71868,-1.71868,-1.71868,-1.71868 +-1.714882,-1.714882,-1.714882,-1.714882,-1.714882,-1.714882 +-1.71074,-1.71074,-1.71074,-1.71074,-1.71074,-1.71074 +-1.706237,-1.706237,-1.706237,-1.706237,-1.706237,-1.706237 +-1.701362,-1.701362,-1.701362,-1.701362,-1.701362,-1.701362 +-1.696112,-1.696112,-1.696112,-1.696112,-1.696112,-1.696112 +-1.690487,-1.690487,-1.690487,-1.690487,-1.690487,-1.690487 +-1.684488,-1.684488,-1.684488,-1.684488,-1.684488,-1.684488 +-1.678113,-1.678113,-1.678113,-1.678113,-1.678113,-1.678113 +-1.671363,-1.671363,-1.671363,-1.671363,-1.671363,-1.671363 +-1.664238,-1.664238,-1.664238,-1.664238,-1.664238,-1.664238 +-1.656738,-1.656738,-1.656738,-1.656738,-1.656738,-1.656738 +-1.648863,-1.648863,-1.648863,-1.648863,-1.648863,-1.648863 +-1.640613,-1.640613,-1.640613,-1.640613,-1.640613,-1.640613 +-1.631988,-1.631988,-1.631988,-1.631988,-1.631988,-1.631988 +-1.622988,-1.622988,-1.622988,-1.622988,-1.622988,-1.622988 +-1.613613,-1.613613,-1.613613,-1.613613,-1.613613,-1.613613 +-1.603863,-1.603863,-1.603863,-1.603863,-1.603863,-1.603863 +-1.593738,-1.593738,-1.593738,-1.593738,-1.593738,-1.593738 +-1.583238,-1.583238,-1.583238,-1.583238,-1.583238,-1.583238 +-1.572363,-1.572363,-1.572363,-1.572363,-1.572363,-1.572363 +-1.561118,-1.561118,-1.561118,-1.561118,-1.561118,-1.561118 +-1.549519,-1.549519,-1.549519,-1.549519,-1.549519,-1.549519 +-1.53758,-1.53758,-1.53758,-1.53758,-1.53758,-1.53758 +-1.525316,-1.525316,-1.525316,-1.525316,-1.525316,-1.525316 +-1.512742,-1.512742,-1.512742,-1.512742,-1.512742,-1.512742 +-1.499873,-1.499873,-1.499873,-1.499873,-1.499873,-1.499873 +-1.486723,-1.486723,-1.486723,-1.486723,-1.486723,-1.486723 +-1.473309,-1.473309,-1.473309,-1.473309,-1.473309,-1.473309 +-1.459645,-1.459645,-1.459645,-1.459645,-1.459645,-1.459645 +-1.445746,-1.445746,-1.445746,-1.445746,-1.445746,-1.445746 +-1.431627,-1.431627,-1.431627,-1.431627,-1.431627,-1.431627 +-1.417303,-1.417303,-1.417303,-1.417303,-1.417303,-1.417303 +-1.402788,-1.402788,-1.402788,-1.402788,-1.402788,-1.402788 +-1.388099,-1.388099,-1.388099,-1.388099,-1.388099,-1.388099 +-1.37325,-1.37325,-1.37325,-1.37325,-1.37325,-1.37325 +-1.358256,-1.358256,-1.358256,-1.358256,-1.358256,-1.358256 +-1.343132,-1.343132,-1.343132,-1.343132,-1.343132,-1.343132 +-1.327893,-1.327893,-1.327893,-1.327893,-1.327893,-1.327893 +-1.312553,-1.312553,-1.312553,-1.312553,-1.312553,-1.312553 +-1.297129,-1.297129,-1.297129,-1.297129,-1.297129,-1.297129 +-1.281635,-1.281635,-1.281635,-1.281635,-1.281635,-1.281635 +-1.266086,-1.266086,-1.266086,-1.266086,-1.266086,-1.266086 +-1.250497,-1.250497,-1.250497,-1.250497,-1.250497,-1.250497 +-1.234883,-1.234883,-1.234883,-1.234883,-1.234883,-1.234883 +-1.219258,-1.219258,-1.219258,-1.219258,-1.219258,-1.219258 +-1.203633,-1.203633,-1.203633,-1.203633,-1.203633,-1.203633 +-1.188008,-1.188008,-1.188008,-1.188008,-1.188008,-1.188008 +-1.172383,-1.172383,-1.172383,-1.172383,-1.172383,-1.172383 +-1.156758,-1.156758,-1.156758,-1.156758,-1.156758,-1.156758 +-1.141133,-1.141133,-1.141133,-1.141133,-1.141133,-1.141133 +-1.125508,-1.125508,-1.125508,-1.125508,-1.125508,-1.125508 +-1.109883,-1.109883,-1.109883,-1.109883,-1.109883,-1.109883 +-1.094258,-1.094258,-1.094258,-1.094258,-1.094258,-1.094258 +-1.078633,-1.078633,-1.078633,-1.078633,-1.078633,-1.078633 +-1.063008,-1.063008,-1.063008,-1.063008,-1.063008,-1.063008 +-1.047383,-1.047383,-1.047383,-1.047383,-1.047383,-1.047383 +-1.031758,-1.031758,-1.031758,-1.031758,-1.031758,-1.031758 +-1.016133,-1.016133,-1.016133,-1.016133,-1.016133,-1.016133 +-1.000508,-1.000508,-1.000508,-1.000508,-1.000508,-1.000508 +-0.984883,-0.984883,-0.984883,-0.984883,-0.984883,-0.984883 +-0.969258,-0.969258,-0.969258,-0.969258,-0.969258,-0.969258 +-0.953633,-0.953633,-0.953633,-0.953633,-0.953633,-0.953633 +-0.938008,-0.938008,-0.938008,-0.938008,-0.938008,-0.938008 +-0.922383,-0.922383,-0.922383,-0.922383,-0.922383,-0.922383 +-0.906758,-0.906758,-0.906758,-0.906758,-0.906758,-0.906758 +-0.891133,-0.891133,-0.891133,-0.891133,-0.891133,-0.891133 +-0.875508,-0.875508,-0.875508,-0.875508,-0.875508,-0.875508 +-0.859883,-0.859883,-0.859883,-0.859883,-0.859883,-0.859883 +-0.844258,-0.844258,-0.844258,-0.844258,-0.844258,-0.844258 +-0.828633,-0.828633,-0.828633,-0.828633,-0.828633,-0.828633 +-0.813008,-0.813008,-0.813008,-0.813008,-0.813008,-0.813008 +-0.797383,-0.797383,-0.797383,-0.797383,-0.797383,-0.797383 +-0.781758,-0.781758,-0.781758,-0.781758,-0.781758,-0.781758 +-0.766133,-0.766133,-0.766133,-0.766133,-0.766133,-0.766133 +-0.750508,-0.750508,-0.750508,-0.750508,-0.750508,-0.750508 +-0.734883,-0.734883,-0.734883,-0.734883,-0.734883,-0.734883 +-0.719258,-0.719258,-0.719258,-0.719258,-0.719258,-0.719258 +-0.703633,-0.703633,-0.703633,-0.703633,-0.703633,-0.703633 +-0.688008,-0.688008,-0.688008,-0.688008,-0.688008,-0.688008 +-0.672383,-0.672383,-0.672383,-0.672383,-0.672383,-0.672383 +-0.656758,-0.656758,-0.656758,-0.656758,-0.656758,-0.656758 +-0.641133,-0.641133,-0.641133,-0.641133,-0.641133,-0.641133 +-0.625508,-0.625508,-0.625508,-0.625508,-0.625508,-0.625508 +-0.609883,-0.609883,-0.609883,-0.609883,-0.609883,-0.609883 +-0.594258,-0.594258,-0.594258,-0.594258,-0.594258,-0.594258 +-0.578633,-0.578633,-0.578633,-0.578633,-0.578633,-0.578633 +-0.563008,-0.563008,-0.563008,-0.563008,-0.563008,-0.563008 +-0.547383,-0.547383,-0.547383,-0.547383,-0.547383,-0.547383 +-0.531758,-0.531758,-0.531758,-0.531758,-0.531758,-0.531758 +-0.516133,-0.516133,-0.516133,-0.516133,-0.516133,-0.516133 +-0.500514,-0.500514,-0.500514,-0.500514,-0.500514,-0.500514 +-0.484914,-0.484914,-0.484914,-0.484914,-0.484914,-0.484914 +-0.469348,-0.469348,-0.469348,-0.469348,-0.469348,-0.469348 +-0.453832,-0.453832,-0.453832,-0.453832,-0.453832,-0.453832 +-0.438381,-0.438381,-0.438381,-0.438381,-0.438381,-0.438381 +-0.423009,-0.423009,-0.423009,-0.423009,-0.423009,-0.423009 +-0.407731,-0.407731,-0.407731,-0.407731,-0.407731,-0.407731 +-0.392563,-0.392563,-0.392563,-0.392563,-0.392563,-0.392563 +-0.37752,-0.37752,-0.37752,-0.37752,-0.37752,-0.37752 +-0.362616,-0.362616,-0.362616,-0.362616,-0.362616,-0.362616 +-0.347866,-0.347866,-0.347866,-0.347866,-0.347866,-0.347866 +-0.333286,-0.333286,-0.333286,-0.333286,-0.333286,-0.333286 +-0.318891,-0.318891,-0.318891,-0.318891,-0.318891,-0.318891 +-0.304695,-0.304695,-0.304695,-0.304695,-0.304695,-0.304695 +-0.290714,-0.290714,-0.290714,-0.290714,-0.290714,-0.290714 +-0.276962,-0.276962,-0.276962,-0.276962,-0.276962,-0.276962 +-0.263454,-0.263454,-0.263454,-0.263454,-0.263454,-0.263454 +-0.250207,-0.250207,-0.250207,-0.250207,-0.250207,-0.250207 +-0.237233,-0.237233,-0.237233,-0.237233,-0.237233,-0.237233 +-0.224549,-0.224549,-0.224549,-0.224549,-0.224549,-0.224549 +-0.21217,-0.21217,-0.21217,-0.21217,-0.21217,-0.21217 +-0.20011,-0.20011,-0.20011,-0.20011,-0.20011,-0.20011 +-0.188385,-0.188385,-0.188385,-0.188385,-0.188385,-0.188385 +-0.177009,-0.177009,-0.177009,-0.177009,-0.177009,-0.177009 +-0.165998,-0.165998,-0.165998,-0.165998,-0.165998,-0.165998 +-0.155361,-0.155361,-0.155361,-0.155361,-0.155361,-0.155361 +-0.145098,-0.145098,-0.145098,-0.145098,-0.145098,-0.145098 +-0.135211,-0.135211,-0.135211,-0.135211,-0.135211,-0.135211 +-0.125699,-0.125699,-0.125699,-0.125699,-0.125699,-0.125699 +-0.116562,-0.116562,-0.116562,-0.116562,-0.116562,-0.116562 +-0.1078,-0.1078,-0.1078,-0.1078,-0.1078,-0.1078 +-0.099412,-0.099412,-0.099412,-0.099412,-0.099412,-0.099412 +-0.0914,-0.0914,-0.0914,-0.0914,-0.0914,-0.0914 +-0.083763,-0.083763,-0.083763,-0.083763,-0.083763,-0.083763 +-0.076501,-0.076501,-0.076501,-0.076501,-0.076501,-0.076501 +-0.069614,-0.069614,-0.069614,-0.069614,-0.069614,-0.069614 +-0.063101,-0.063101,-0.063101,-0.063101,-0.063101,-0.063101 +-0.056964,-0.056964,-0.056964,-0.056964,-0.056964,-0.056964 +-0.051202,-0.051202,-0.051202,-0.051202,-0.051202,-0.051202 +-0.045815,-0.045815,-0.045815,-0.045815,-0.045815,-0.045815 +-0.040803,-0.040803,-0.040803,-0.040803,-0.040803,-0.040803 +-0.036165,-0.036165,-0.036165,-0.036165,-0.036165,-0.036165 +-0.031892,-0.031892,-0.031892,-0.031892,-0.031892,-0.031892 +-0.02797,-0.02797,-0.02797,-0.02797,-0.02797,-0.02797 +-0.024384,-0.024384,-0.024384,-0.024384,-0.024384,-0.024384 +-0.021118,-0.021118,-0.021118,-0.021118,-0.021118,-0.021118 +-0.018157,-0.018157,-0.018157,-0.018157,-0.018157,-0.018157 +-0.015487,-0.015487,-0.015487,-0.015487,-0.015487,-0.015487 +-0.013093,-0.013093,-0.013093,-0.013093,-0.013093,-0.013093 +-0.010959,-0.010959,-0.010959,-0.010959,-0.010959,-0.010959 +-0.00907,-0.00907,-0.00907,-0.00907,-0.00907,-0.00907 +-0.007412,-0.007412,-0.007412,-0.007412,-0.007412,-0.007412 +-0.005969,-0.005969,-0.005969,-0.005969,-0.005969,-0.005969 +-0.004727,-0.004727,-0.004727,-0.004727,-0.004727,-0.004727 +-0.003671,-0.003671,-0.003671,-0.003671,-0.003671,-0.003671 +-0.002785,-0.002785,-0.002785,-0.002785,-0.002785,-0.002785 +-0.002054,-0.002054,-0.002054,-0.002054,-0.002054,-0.002054 +-0.001464,-0.001464,-0.001464,-0.001464,-0.001464,-0.001464 +-0.000999,-0.000999,-0.000999,-0.000999,-0.000999,-0.000999 +-0.000645,-0.000645,-0.000645,-0.000645,-0.000645,-0.000645 +-0.000386,-0.000386,-0.000386,-0.000386,-0.000386,-0.000386 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000095,-0.000095,-0.000095,-0.000095,-0.000095,-0.000095 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000006,-0.000006,-0.000006,-0.000006,-0.000006,-0.000006 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000021,0.000021,0.000021,0.000021,0.000021,0.000021 +0.000071,0.000071,0.000071,0.000071,0.000071,0.000071 +0.000168,0.000168,0.000168,0.000168,0.000168,0.000168 +0.000328,0.000328,0.000328,0.000328,0.000328,0.000328 +0.000567,0.000567,0.000567,0.000567,0.000567,0.000567 +0.0009,0.0009,0.0009,0.0009,0.0009,0.0009 +0.001344,0.001344,0.001344,0.001344,0.001344,0.001344 +0.001914,0.001914,0.001914,0.001914,0.001914,0.001914 +0.002625,0.002625,0.002625,0.002625,0.002625,0.002625 +0.003494,0.003494,0.003494,0.003494,0.003494,0.003494 +0.004536,0.004536,0.004536,0.004536,0.004536,0.004536 +0.005767,0.005767,0.005767,0.005767,0.005767,0.005767 +0.007203,0.007203,0.007203,0.007203,0.007203,0.007203 +0.008859,0.008859,0.008859,0.008859,0.008859,0.008859 +0.010752,0.010752,0.010752,0.010752,0.010752,0.010752 +0.012897,0.012897,0.012897,0.012897,0.012897,0.012897 +0.015309,0.015309,0.015309,0.015309,0.015309,0.015309 +0.018005,0.018005,0.018005,0.018005,0.018005,0.018005 +0.021,0.021,0.021,0.021,0.021,0.021 +0.02431,0.02431,0.02431,0.02431,0.02431,0.02431 +0.027951,0.027951,0.027951,0.027951,0.027951,0.027951 +0.031938,0.031938,0.031938,0.031938,0.031938,0.031938 +0.036288,0.036288,0.036288,0.036288,0.036288,0.036288 +0.041016,0.041016,0.041016,0.041016,0.041016,0.041016 +0.046134,0.046134,0.046134,0.046134,0.046134,0.046134 +0.051647,0.051647,0.051647,0.051647,0.051647,0.051647 +0.057553,0.057553,0.057553,0.057553,0.057553,0.057553 +0.063853,0.063853,0.063853,0.063853,0.063853,0.063853 +0.070547,0.070547,0.070547,0.070547,0.070547,0.070547 +0.077634,0.077634,0.077634,0.077634,0.077634,0.077634 +0.085116,0.085116,0.085116,0.085116,0.085116,0.085116 +0.092991,0.092991,0.092991,0.092991,0.092991,0.092991 +0.101259,0.101259,0.101259,0.101259,0.101259,0.101259 +0.109922,0.109922,0.109922,0.109922,0.109922,0.109922 +0.118978,0.118978,0.118978,0.118978,0.118978,0.118978 +0.128428,0.128428,0.128428,0.128428,0.128428,0.128428 +0.138272,0.138272,0.138272,0.138272,0.138272,0.138272 +0.148509,0.148509,0.148509,0.148509,0.148509,0.148509 +0.159141,0.159141,0.159141,0.159141,0.159141,0.159141 +0.17016,0.17016,0.17016,0.17016,0.17016,0.17016 +0.181552,0.181552,0.181552,0.181552,0.181552,0.181552 +0.193301,0.193301,0.193301,0.193301,0.193301,0.193301 +0.205392,0.205392,0.205392,0.205392,0.205392,0.205392 +0.217808,0.217808,0.217808,0.217808,0.217808,0.217808 +0.230535,0.230535,0.230535,0.230535,0.230535,0.230535 +0.243556,0.243556,0.243556,0.243556,0.243556,0.243556 +0.256855,0.256855,0.256855,0.256855,0.256855,0.256855 +0.270417,0.270417,0.270417,0.270417,0.270417,0.270417 +0.284226,0.284226,0.284226,0.284226,0.284226,0.284226 +0.298267,0.298267,0.298267,0.298267,0.298267,0.298267 +0.312523,0.312523,0.312523,0.312523,0.312523,0.312523 +0.326978,0.326978,0.326978,0.326978,0.326978,0.326978 +0.341618,0.341618,0.341618,0.341618,0.341618,0.341618 +0.356426,0.356426,0.356426,0.356426,0.356426,0.356426 +0.371386,0.371386,0.371386,0.371386,0.371386,0.371386 +0.386483,0.386483,0.386483,0.386483,0.386483,0.386483 +0.401701,0.401701,0.401701,0.401701,0.401701,0.401701 +0.417024,0.417024,0.417024,0.417024,0.417024,0.417024 +0.432437,0.432437,0.432437,0.432437,0.432437,0.432437 +0.447924,0.447924,0.447924,0.447924,0.447924,0.447924 +0.463468,0.463468,0.463468,0.463468,0.463468,0.463468 +0.479055,0.479055,0.479055,0.479055,0.479055,0.479055 +0.494668,0.494668,0.494668,0.494668,0.494668,0.494668 +0.510293,0.510293,0.510293,0.510293,0.510293,0.510293 +0.525918,0.525918,0.525918,0.525918,0.525918,0.525918 +0.541543,0.541543,0.541543,0.541543,0.541543,0.541543 +0.557168,0.557168,0.557168,0.557168,0.557168,0.557168 +0.572793,0.572793,0.572793,0.572793,0.572793,0.572793 +0.588418,0.588418,0.588418,0.588418,0.588418,0.588418 +0.604043,0.604043,0.604043,0.604043,0.604043,0.604043 +0.619668,0.619668,0.619668,0.619668,0.619668,0.619668 +0.635293,0.635293,0.635293,0.635293,0.635293,0.635293 +0.650918,0.650918,0.650918,0.650918,0.650918,0.650918 +0.666543,0.666543,0.666543,0.666543,0.666543,0.666543 +0.682168,0.682168,0.682168,0.682168,0.682168,0.682168 +0.697793,0.697793,0.697793,0.697793,0.697793,0.697793 +0.713418,0.713418,0.713418,0.713418,0.713418,0.713418 +0.729043,0.729043,0.729043,0.729043,0.729043,0.729043 +0.744668,0.744668,0.744668,0.744668,0.744668,0.744668 +0.760293,0.760293,0.760293,0.760293,0.760293,0.760293 +0.775918,0.775918,0.775918,0.775918,0.775918,0.775918 +0.791543,0.791543,0.791543,0.791543,0.791543,0.791543 +0.807168,0.807168,0.807168,0.807168,0.807168,0.807168 +0.822793,0.822793,0.822793,0.822793,0.822793,0.822793 +0.838418,0.838418,0.838418,0.838418,0.838418,0.838418 +0.854043,0.854043,0.854043,0.854043,0.854043,0.854043 +0.869668,0.869668,0.869668,0.869668,0.869668,0.869668 +0.885293,0.885293,0.885293,0.885293,0.885293,0.885293 +0.900918,0.900918,0.900918,0.900918,0.900918,0.900918 +0.916543,0.916543,0.916543,0.916543,0.916543,0.916543 +0.932168,0.932168,0.932168,0.932168,0.932168,0.932168 +0.947793,0.947793,0.947793,0.947793,0.947793,0.947793 +0.963418,0.963418,0.963418,0.963418,0.963418,0.963418 +0.979043,0.979043,0.979043,0.979043,0.979043,0.979043 +0.994668,0.994668,0.994668,0.994668,0.994668,0.994668 +1.010293,1.010293,1.010293,1.010293,1.010293,1.010293 +1.025918,1.025918,1.025918,1.025918,1.025918,1.025918 +1.041543,1.041543,1.041543,1.041543,1.041543,1.041543 +1.057168,1.057168,1.057168,1.057168,1.057168,1.057168 +1.072793,1.072793,1.072793,1.072793,1.072793,1.072793 +1.088418,1.088418,1.088418,1.088418,1.088418,1.088418 +1.104043,1.104043,1.104043,1.104043,1.104043,1.104043 +1.119668,1.119668,1.119668,1.119668,1.119668,1.119668 +1.135293,1.135293,1.135293,1.135293,1.135293,1.135293 +1.150918,1.150918,1.150918,1.150918,1.150918,1.150918 +1.166543,1.166543,1.166543,1.166543,1.166543,1.166543 +1.182168,1.182168,1.182168,1.182168,1.182168,1.182168 +1.197793,1.197793,1.197793,1.197793,1.197793,1.197793 +1.213418,1.213418,1.213418,1.213418,1.213418,1.213418 +1.229043,1.229043,1.229043,1.229043,1.229043,1.229043 +1.244668,1.244668,1.244668,1.244668,1.244668,1.244668 +1.260287,1.260287,1.260287,1.260287,1.260287,1.260287 +1.275886,1.275886,1.275886,1.275886,1.275886,1.275886 +1.291448,1.291448,1.291448,1.291448,1.291448,1.291448 +1.306959,1.306959,1.306959,1.306959,1.306959,1.306959 +1.322402,1.322402,1.322402,1.322402,1.322402,1.322402 +1.337761,1.337761,1.337761,1.337761,1.337761,1.337761 +1.353021,1.353021,1.353021,1.353021,1.353021,1.353021 +1.368166,1.368166,1.368166,1.368166,1.368166,1.368166 +1.383181,1.383181,1.383181,1.383181,1.383181,1.383181 +1.398049,1.398049,1.398049,1.398049,1.398049,1.398049 +1.412754,1.412754,1.412754,1.412754,1.412754,1.412754 +1.427282,1.427282,1.427282,1.427282,1.427282,1.427282 +1.441616,1.441616,1.441616,1.441616,1.441616,1.441616 +1.45574,1.45574,1.45574,1.45574,1.45574,1.45574 +1.46964,1.46964,1.46964,1.46964,1.46964,1.46964 +1.483298,1.483298,1.483298,1.483298,1.483298,1.483298 +1.496699,1.496699,1.496699,1.496699,1.496699,1.496699 +1.509828,1.509828,1.509828,1.509828,1.509828,1.509828 +1.522669,1.522669,1.522669,1.522669,1.522669,1.522669 +1.535206,1.535206,1.535206,1.535206,1.535206,1.535206 +1.547423,1.547423,1.547423,1.547423,1.547423,1.547423 +1.559304,1.559304,1.559304,1.559304,1.559304,1.559304 +1.570835,1.570835,1.570835,1.570835,1.570835,1.570835 +1.581998,1.581998,1.581998,1.581998,1.581998,1.581998 +1.592779,1.592779,1.592779,1.592779,1.592779,1.592779 +1.603167,1.603167,1.603167,1.603167,1.603167,1.603167 +1.613161,1.613161,1.613161,1.613161,1.613161,1.613161 +1.622761,1.622761,1.622761,1.622761,1.622761,1.622761 +1.631967,1.631967,1.631967,1.631967,1.631967,1.631967 +1.64078,1.64078,1.64078,1.64078,1.64078,1.64078 +1.649199,1.649199,1.649199,1.649199,1.649199,1.649199 +1.657225,1.657225,1.657225,1.657225,1.657225,1.657225 +1.664856,1.664856,1.664856,1.664856,1.664856,1.664856 +1.672094,1.672094,1.672094,1.672094,1.672094,1.672094 +1.678938,1.678938,1.678938,1.678938,1.678938,1.678938 +1.685388,1.685388,1.685388,1.685388,1.685388,1.685388 +1.691445,1.691445,1.691445,1.691445,1.691445,1.691445 +1.697108,1.697108,1.697108,1.697108,1.697108,1.697108 +1.702377,1.702377,1.702377,1.702377,1.702377,1.702377 +1.707253,1.707253,1.707253,1.707253,1.707253,1.707253 +1.711745,1.711745,1.711745,1.711745,1.711745,1.711745 +1.715869,1.715869,1.715869,1.715869,1.715869,1.715869 +1.71964,1.71964,1.71964,1.71964,1.71964,1.71964 +1.723074,1.723074,1.723074,1.723074,1.723074,1.723074 +1.726188,1.726188,1.726188,1.726188,1.726188,1.726188 +1.728996,1.728996,1.728996,1.728996,1.728996,1.728996 +1.731515,1.731515,1.731515,1.731515,1.731515,1.731515 +1.73376,1.73376,1.73376,1.73376,1.73376,1.73376 +1.735747,1.735747,1.735747,1.735747,1.735747,1.735747 +1.737492,1.737492,1.737492,1.737492,1.737492,1.737492 +1.73901,1.73901,1.73901,1.73901,1.73901,1.73901 +1.740317,1.740317,1.740317,1.740317,1.740317,1.740317 +1.74143,1.74143,1.74143,1.74143,1.74143,1.74143 +1.742363,1.742363,1.742363,1.742363,1.742363,1.742363 +1.743132,1.743132,1.743132,1.743132,1.743132,1.743132 +1.743754,1.743754,1.743754,1.743754,1.743754,1.743754 +1.744244,1.744244,1.744244,1.744244,1.744244,1.744244 +1.744618,1.744618,1.744618,1.744618,1.744618,1.744618 +1.744891,1.744891,1.744891,1.744891,1.744891,1.744891 +1.745079,1.745079,1.745079,1.745079,1.745079,1.745079 +1.745198,1.745198,1.745198,1.745198,1.745198,1.745198 +1.745265,1.745265,1.745265,1.745265,1.745265,1.745265 +1.745293,1.745293,1.745293,1.745293,1.745293,1.745293 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745279,1.745279,1.745279,1.745279,1.745279,1.745279 +1.745229,1.745229,1.745229,1.745229,1.745229,1.745229 +1.745132,1.745132,1.745132,1.745132,1.745132,1.745132 +1.744972,1.744972,1.744972,1.744972,1.744972,1.744972 +1.744733,1.744733,1.744733,1.744733,1.744733,1.744733 +1.7444,1.7444,1.7444,1.7444,1.7444,1.7444 +1.743956,1.743956,1.743956,1.743956,1.743956,1.743956 +1.743386,1.743386,1.743386,1.743386,1.743386,1.743386 +1.742675,1.742675,1.742675,1.742675,1.742675,1.742675 +1.741806,1.741806,1.741806,1.741806,1.741806,1.741806 +1.740764,1.740764,1.740764,1.740764,1.740764,1.740764 +1.739533,1.739533,1.739533,1.739533,1.739533,1.739533 +1.738097,1.738097,1.738097,1.738097,1.738097,1.738097 +1.736441,1.736441,1.736441,1.736441,1.736441,1.736441 +1.734548,1.734548,1.734548,1.734548,1.734548,1.734548 +1.732403,1.732403,1.732403,1.732403,1.732403,1.732403 +1.729991,1.729991,1.729991,1.729991,1.729991,1.729991 +1.727295,1.727295,1.727295,1.727295,1.727295,1.727295 +1.7243,1.7243,1.7243,1.7243,1.7243,1.7243 +1.72099,1.72099,1.72099,1.72099,1.72099,1.72099 +1.717349,1.717349,1.717349,1.717349,1.717349,1.717349 +1.713362,1.713362,1.713362,1.713362,1.713362,1.713362 +1.709012,1.709012,1.709012,1.709012,1.709012,1.709012 +1.704284,1.704284,1.704284,1.704284,1.704284,1.704284 +1.699166,1.699166,1.699166,1.699166,1.699166,1.699166 +1.693653,1.693653,1.693653,1.693653,1.693653,1.693653 +1.687747,1.687747,1.687747,1.687747,1.687747,1.687747 +1.681447,1.681447,1.681447,1.681447,1.681447,1.681447 +1.674753,1.674753,1.674753,1.674753,1.674753,1.674753 +1.667666,1.667666,1.667666,1.667666,1.667666,1.667666 +1.660184,1.660184,1.660184,1.660184,1.660184,1.660184 +1.652309,1.652309,1.652309,1.652309,1.652309,1.652309 +1.644041,1.644041,1.644041,1.644041,1.644041,1.644041 +1.635378,1.635378,1.635378,1.635378,1.635378,1.635378 +1.626322,1.626322,1.626322,1.626322,1.626322,1.626322 +1.616872,1.616872,1.616872,1.616872,1.616872,1.616872 +1.607028,1.607028,1.607028,1.607028,1.607028,1.607028 +1.596791,1.596791,1.596791,1.596791,1.596791,1.596791 +1.586159,1.586159,1.586159,1.586159,1.586159,1.586159 +1.57514,1.57514,1.57514,1.57514,1.57514,1.57514 +1.563748,1.563748,1.563748,1.563748,1.563748,1.563748 +1.551999,1.551999,1.551999,1.551999,1.551999,1.551999 +1.539908,1.539908,1.539908,1.539908,1.539908,1.539908 +1.527492,1.527492,1.527492,1.527492,1.527492,1.527492 +1.514765,1.514765,1.514765,1.514765,1.514765,1.514765 +1.501744,1.501744,1.501744,1.501744,1.501744,1.501744 +1.488445,1.488445,1.488445,1.488445,1.488445,1.488445 +1.474883,1.474883,1.474883,1.474883,1.474883,1.474883 +1.461074,1.461074,1.461074,1.461074,1.461074,1.461074 +1.447033,1.447033,1.447033,1.447033,1.447033,1.447033 +1.432777,1.432777,1.432777,1.432777,1.432777,1.432777 +1.418322,1.418322,1.418322,1.418322,1.418322,1.418322 +1.403682,1.403682,1.403682,1.403682,1.403682,1.403682 +1.388874,1.388874,1.388874,1.388874,1.388874,1.388874 +1.373914,1.373914,1.373914,1.373914,1.373914,1.373914 +1.358817,1.358817,1.358817,1.358817,1.358817,1.358817 +1.343599,1.343599,1.343599,1.343599,1.343599,1.343599 +1.328276,1.328276,1.328276,1.328276,1.328276,1.328276 +1.312863,1.312863,1.312863,1.312863,1.312863,1.312863 +1.297376,1.297376,1.297376,1.297376,1.297376,1.297376 +1.281832,1.281832,1.281832,1.281832,1.281832,1.281832 +1.266245,1.266245,1.266245,1.266245,1.266245,1.266245 +1.250632,1.250632,1.250632,1.250632,1.250632,1.250632 +1.235007,1.235007,1.235007,1.235007,1.235007,1.235007 +1.219382,1.219382,1.219382,1.219382,1.219382,1.219382 +1.203757,1.203757,1.203757,1.203757,1.203757,1.203757 +1.188132,1.188132,1.188132,1.188132,1.188132,1.188132 +1.172507,1.172507,1.172507,1.172507,1.172507,1.172507 +1.156882,1.156882,1.156882,1.156882,1.156882,1.156882 +1.141257,1.141257,1.141257,1.141257,1.141257,1.141257 +1.125632,1.125632,1.125632,1.125632,1.125632,1.125632 +1.110007,1.110007,1.110007,1.110007,1.110007,1.110007 +1.094382,1.094382,1.094382,1.094382,1.094382,1.094382 +1.078757,1.078757,1.078757,1.078757,1.078757,1.078757 +1.063132,1.063132,1.063132,1.063132,1.063132,1.063132 +1.047507,1.047507,1.047507,1.047507,1.047507,1.047507 +1.031882,1.031882,1.031882,1.031882,1.031882,1.031882 +1.016257,1.016257,1.016257,1.016257,1.016257,1.016257 +1.000632,1.000632,1.000632,1.000632,1.000632,1.000632 +0.985007,0.985007,0.985007,0.985007,0.985007,0.985007 +0.969382,0.969382,0.969382,0.969382,0.969382,0.969382 +0.953757,0.953757,0.953757,0.953757,0.953757,0.953757 +0.938132,0.938132,0.938132,0.938132,0.938132,0.938132 +0.922507,0.922507,0.922507,0.922507,0.922507,0.922507 +0.906882,0.906882,0.906882,0.906882,0.906882,0.906882 +0.891257,0.891257,0.891257,0.891257,0.891257,0.891257 +0.875632,0.875632,0.875632,0.875632,0.875632,0.875632 +0.860007,0.860007,0.860007,0.860007,0.860007,0.860007 +0.844382,0.844382,0.844382,0.844382,0.844382,0.844382 +0.828757,0.828757,0.828757,0.828757,0.828757,0.828757 +0.813132,0.813132,0.813132,0.813132,0.813132,0.813132 +0.797507,0.797507,0.797507,0.797507,0.797507,0.797507 +0.781882,0.781882,0.781882,0.781882,0.781882,0.781882 +0.766257,0.766257,0.766257,0.766257,0.766257,0.766257 +0.750632,0.750632,0.750632,0.750632,0.750632,0.750632 +0.735007,0.735007,0.735007,0.735007,0.735007,0.735007 +0.719382,0.719382,0.719382,0.719382,0.719382,0.719382 +0.703757,0.703757,0.703757,0.703757,0.703757,0.703757 +0.688132,0.688132,0.688132,0.688132,0.688132,0.688132 +0.672507,0.672507,0.672507,0.672507,0.672507,0.672507 +0.656882,0.656882,0.656882,0.656882,0.656882,0.656882 +0.641257,0.641257,0.641257,0.641257,0.641257,0.641257 +0.625632,0.625632,0.625632,0.625632,0.625632,0.625632 +0.610007,0.610007,0.610007,0.610007,0.610007,0.610007 +0.594382,0.594382,0.594382,0.594382,0.594382,0.594382 +0.578757,0.578757,0.578757,0.578757,0.578757,0.578757 +0.563132,0.563132,0.563132,0.563132,0.563132,0.563132 +0.547507,0.547507,0.547507,0.547507,0.547507,0.547507 +0.531882,0.531882,0.531882,0.531882,0.531882,0.531882 +0.516257,0.516257,0.516257,0.516257,0.516257,0.516257 +0.500632,0.500632,0.500632,0.500632,0.500632,0.500632 +0.485013,0.485013,0.485013,0.485013,0.485013,0.485013 +0.469414,0.469414,0.469414,0.469414,0.469414,0.469414 +0.453852,0.453852,0.453852,0.453852,0.453852,0.453852 +0.438341,0.438341,0.438341,0.438341,0.438341,0.438341 +0.422898,0.422898,0.422898,0.422898,0.422898,0.422898 +0.407539,0.407539,0.407539,0.407539,0.407539,0.407539 +0.392279,0.392279,0.392279,0.392279,0.392279,0.392279 +0.377134,0.377134,0.377134,0.377134,0.377134,0.377134 +0.362119,0.362119,0.362119,0.362119,0.362119,0.362119 +0.347251,0.347251,0.347251,0.347251,0.347251,0.347251 +0.332546,0.332546,0.332546,0.332546,0.332546,0.332546 +0.318018,0.318018,0.318018,0.318018,0.318018,0.318018 +0.303684,0.303684,0.303684,0.303684,0.303684,0.303684 +0.28956,0.28956,0.28956,0.28956,0.28956,0.28956 +0.27566,0.27566,0.27566,0.27566,0.27566,0.27566 +0.262002,0.262002,0.262002,0.262002,0.262002,0.262002 +0.248601,0.248601,0.248601,0.248601,0.248601,0.248601 +0.235472,0.235472,0.235472,0.235472,0.235472,0.235472 +0.222631,0.222631,0.222631,0.222631,0.222631,0.222631 +0.210094,0.210094,0.210094,0.210094,0.210094,0.210094 +0.197877,0.197877,0.197877,0.197877,0.197877,0.197877 +0.185996,0.185996,0.185996,0.185996,0.185996,0.185996 +0.174465,0.174465,0.174465,0.174465,0.174465,0.174465 +0.163302,0.163302,0.163302,0.163302,0.163302,0.163302 +0.152521,0.152521,0.152521,0.152521,0.152521,0.152521 +0.142133,0.142133,0.142133,0.142133,0.142133,0.142133 +0.132139,0.132139,0.132139,0.132139,0.132139,0.132139 +0.122539,0.122539,0.122539,0.122539,0.122539,0.122539 +0.113333,0.113333,0.113333,0.113333,0.113333,0.113333 +0.10452,0.10452,0.10452,0.10452,0.10452,0.10452 +0.096101,0.096101,0.096101,0.096101,0.096101,0.096101 +0.088075,0.088075,0.088075,0.088075,0.088075,0.088075 +0.080444,0.080444,0.080444,0.080444,0.080444,0.080444 +0.073206,0.073206,0.073206,0.073206,0.073206,0.073206 +0.066362,0.066362,0.066362,0.066362,0.066362,0.066362 +0.059912,0.059912,0.059912,0.059912,0.059912,0.059912 +0.053855,0.053855,0.053855,0.053855,0.053855,0.053855 +0.048192,0.048192,0.048192,0.048192,0.048192,0.048192 +0.042923,0.042923,0.042923,0.042923,0.042923,0.042923 +0.038047,0.038047,0.038047,0.038047,0.038047,0.038047 +0.033555,0.033555,0.033555,0.033555,0.033555,0.033555 +0.029431,0.029431,0.029431,0.029431,0.029431,0.029431 +0.02566,0.02566,0.02566,0.02566,0.02566,0.02566 +0.022226,0.022226,0.022226,0.022226,0.022226,0.022226 +0.019112,0.019112,0.019112,0.019112,0.019112,0.019112 +0.016304,0.016304,0.016304,0.016304,0.016304,0.016304 +0.013785,0.013785,0.013785,0.013785,0.013785,0.013785 +0.01154,0.01154,0.01154,0.01154,0.01154,0.01154 +0.009553,0.009553,0.009553,0.009553,0.009553,0.009553 +0.007808,0.007808,0.007808,0.007808,0.007808,0.007808 +0.00629,0.00629,0.00629,0.00629,0.00629,0.00629 +0.004983,0.004983,0.004983,0.004983,0.004983,0.004983 +0.00387,0.00387,0.00387,0.00387,0.00387,0.00387 +0.002937,0.002937,0.002937,0.002937,0.002937,0.002937 +0.002168,0.002168,0.002168,0.002168,0.002168,0.002168 +0.001546,0.001546,0.001546,0.001546,0.001546,0.001546 +0.001056,0.001056,0.001056,0.001056,0.001056,0.001056 +0.000682,0.000682,0.000682,0.000682,0.000682,0.000682 +0.000409,0.000409,0.000409,0.000409,0.000409,0.000409 +0.000221,0.000221,0.000221,0.000221,0.000221,0.000221 +0.000102,0.000102,0.000102,0.000102,0.000102,0.000102 +0.000035,0.000035,0.000035,0.000035,0.000035,0.000035 +0.000007,0.000007,0.000007,0.000007,0.000007,0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000021,-0.000021,-0.000021,-0.000021,-0.000021,-0.000021 +-0.000071,-0.000071,-0.000071,-0.000071,-0.000071,-0.000071 +-0.000168,-0.000168,-0.000168,-0.000168,-0.000168,-0.000168 +-0.000328,-0.000328,-0.000328,-0.000328,-0.000328,-0.000328 +-0.000567,-0.000567,-0.000567,-0.000567,-0.000567,-0.000567 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001344,-0.001344,-0.001344,-0.001344,-0.001344,-0.001344 +-0.001914,-0.001914,-0.001914,-0.001914,-0.001914,-0.001914 +-0.002625,-0.002625,-0.002625,-0.002625,-0.002625,-0.002625 +-0.003494,-0.003494,-0.003494,-0.003494,-0.003494,-0.003494 +-0.004536,-0.004536,-0.004536,-0.004536,-0.004536,-0.004536 +-0.005767,-0.005767,-0.005767,-0.005767,-0.005767,-0.005767 +-0.007203,-0.007203,-0.007203,-0.007203,-0.007203,-0.007203 +-0.008859,-0.008859,-0.008859,-0.008859,-0.008859,-0.008859 +-0.010752,-0.010752,-0.010752,-0.010752,-0.010752,-0.010752 +-0.012897,-0.012897,-0.012897,-0.012897,-0.012897,-0.012897 +-0.015309,-0.015309,-0.015309,-0.015309,-0.015309,-0.015309 +-0.018005,-0.018005,-0.018005,-0.018005,-0.018005,-0.018005 +-0.021,-0.021,-0.021,-0.021,-0.021,-0.021 +-0.02431,-0.02431,-0.02431,-0.02431,-0.02431,-0.02431 +-0.027951,-0.027951,-0.027951,-0.027951,-0.027951,-0.027951 +-0.031938,-0.031938,-0.031938,-0.031938,-0.031938,-0.031938 +-0.036288,-0.036288,-0.036288,-0.036288,-0.036288,-0.036288 +-0.041016,-0.041016,-0.041016,-0.041016,-0.041016,-0.041016 +-0.046134,-0.046134,-0.046134,-0.046134,-0.046134,-0.046134 +-0.051647,-0.051647,-0.051647,-0.051647,-0.051647,-0.051647 +-0.057553,-0.057553,-0.057553,-0.057553,-0.057553,-0.057553 +-0.063853,-0.063853,-0.063853,-0.063853,-0.063853,-0.063853 +-0.070547,-0.070547,-0.070547,-0.070547,-0.070547,-0.070547 +-0.077634,-0.077634,-0.077634,-0.077634,-0.077634,-0.077634 +-0.085116,-0.085116,-0.085116,-0.085116,-0.085116,-0.085116 +-0.092991,-0.092991,-0.092991,-0.092991,-0.092991,-0.092991 +-0.101259,-0.101259,-0.101259,-0.101259,-0.101259,-0.101259 +-0.109922,-0.109922,-0.109922,-0.109922,-0.109922,-0.109922 +-0.118978,-0.118978,-0.118978,-0.118978,-0.118978,-0.118978 +-0.128428,-0.128428,-0.128428,-0.128428,-0.128428,-0.128428 +-0.138272,-0.138272,-0.138272,-0.138272,-0.138272,-0.138272 +-0.148509,-0.148509,-0.148509,-0.148509,-0.148509,-0.148509 +-0.159141,-0.159141,-0.159141,-0.159141,-0.159141,-0.159141 +-0.17016,-0.17016,-0.17016,-0.17016,-0.17016,-0.17016 +-0.181552,-0.181552,-0.181552,-0.181552,-0.181552,-0.181552 +-0.193301,-0.193301,-0.193301,-0.193301,-0.193301,-0.193301 +-0.205392,-0.205392,-0.205392,-0.205392,-0.205392,-0.205392 +-0.217808,-0.217808,-0.217808,-0.217808,-0.217808,-0.217808 +-0.230535,-0.230535,-0.230535,-0.230535,-0.230535,-0.230535 +-0.243556,-0.243556,-0.243556,-0.243556,-0.243556,-0.243556 +-0.256855,-0.256855,-0.256855,-0.256855,-0.256855,-0.256855 +-0.270417,-0.270417,-0.270417,-0.270417,-0.270417,-0.270417 +-0.284226,-0.284226,-0.284226,-0.284226,-0.284226,-0.284226 +-0.298267,-0.298267,-0.298267,-0.298267,-0.298267,-0.298267 +-0.312523,-0.312523,-0.312523,-0.312523,-0.312523,-0.312523 +-0.326978,-0.326978,-0.326978,-0.326978,-0.326978,-0.326978 +-0.341618,-0.341618,-0.341618,-0.341618,-0.341618,-0.341618 +-0.356426,-0.356426,-0.356426,-0.356426,-0.356426,-0.356426 +-0.371386,-0.371386,-0.371386,-0.371386,-0.371386,-0.371386 +-0.386483,-0.386483,-0.386483,-0.386483,-0.386483,-0.386483 +-0.401701,-0.401701,-0.401701,-0.401701,-0.401701,-0.401701 +-0.417024,-0.417024,-0.417024,-0.417024,-0.417024,-0.417024 +-0.432437,-0.432437,-0.432437,-0.432437,-0.432437,-0.432437 +-0.447924,-0.447924,-0.447924,-0.447924,-0.447924,-0.447924 +-0.463468,-0.463468,-0.463468,-0.463468,-0.463468,-0.463468 +-0.479055,-0.479055,-0.479055,-0.479055,-0.479055,-0.479055 +-0.494668,-0.494668,-0.494668,-0.494668,-0.494668,-0.494668 +-0.510293,-0.510293,-0.510293,-0.510293,-0.510293,-0.510293 +-0.525918,-0.525918,-0.525918,-0.525918,-0.525918,-0.525918 +-0.541543,-0.541543,-0.541543,-0.541543,-0.541543,-0.541543 +-0.557168,-0.557168,-0.557168,-0.557168,-0.557168,-0.557168 +-0.572793,-0.572793,-0.572793,-0.572793,-0.572793,-0.572793 +-0.588418,-0.588418,-0.588418,-0.588418,-0.588418,-0.588418 +-0.604043,-0.604043,-0.604043,-0.604043,-0.604043,-0.604043 +-0.619668,-0.619668,-0.619668,-0.619668,-0.619668,-0.619668 +-0.635293,-0.635293,-0.635293,-0.635293,-0.635293,-0.635293 +-0.650918,-0.650918,-0.650918,-0.650918,-0.650918,-0.650918 +-0.666543,-0.666543,-0.666543,-0.666543,-0.666543,-0.666543 +-0.682168,-0.682168,-0.682168,-0.682168,-0.682168,-0.682168 +-0.697793,-0.697793,-0.697793,-0.697793,-0.697793,-0.697793 +-0.713418,-0.713418,-0.713418,-0.713418,-0.713418,-0.713418 +-0.729043,-0.729043,-0.729043,-0.729043,-0.729043,-0.729043 +-0.744668,-0.744668,-0.744668,-0.744668,-0.744668,-0.744668 +-0.760293,-0.760293,-0.760293,-0.760293,-0.760293,-0.760293 +-0.775918,-0.775918,-0.775918,-0.775918,-0.775918,-0.775918 +-0.791543,-0.791543,-0.791543,-0.791543,-0.791543,-0.791543 +-0.807168,-0.807168,-0.807168,-0.807168,-0.807168,-0.807168 +-0.822793,-0.822793,-0.822793,-0.822793,-0.822793,-0.822793 +-0.838418,-0.838418,-0.838418,-0.838418,-0.838418,-0.838418 +-0.854043,-0.854043,-0.854043,-0.854043,-0.854043,-0.854043 +-0.869668,-0.869668,-0.869668,-0.869668,-0.869668,-0.869668 +-0.885293,-0.885293,-0.885293,-0.885293,-0.885293,-0.885293 +-0.900918,-0.900918,-0.900918,-0.900918,-0.900918,-0.900918 +-0.916543,-0.916543,-0.916543,-0.916543,-0.916543,-0.916543 +-0.932168,-0.932168,-0.932168,-0.932168,-0.932168,-0.932168 +-0.947793,-0.947793,-0.947793,-0.947793,-0.947793,-0.947793 +-0.963418,-0.963418,-0.963418,-0.963418,-0.963418,-0.963418 +-0.979043,-0.979043,-0.979043,-0.979043,-0.979043,-0.979043 +-0.994668,-0.994668,-0.994668,-0.994668,-0.994668,-0.994668 +-1.010293,-1.010293,-1.010293,-1.010293,-1.010293,-1.010293 +-1.025918,-1.025918,-1.025918,-1.025918,-1.025918,-1.025918 +-1.041543,-1.041543,-1.041543,-1.041543,-1.041543,-1.041543 +-1.057168,-1.057168,-1.057168,-1.057168,-1.057168,-1.057168 +-1.072793,-1.072793,-1.072793,-1.072793,-1.072793,-1.072793 +-1.088418,-1.088418,-1.088418,-1.088418,-1.088418,-1.088418 +-1.104043,-1.104043,-1.104043,-1.104043,-1.104043,-1.104043 +-1.119668,-1.119668,-1.119668,-1.119668,-1.119668,-1.119668 +-1.135293,-1.135293,-1.135293,-1.135293,-1.135293,-1.135293 +-1.150918,-1.150918,-1.150918,-1.150918,-1.150918,-1.150918 +-1.166543,-1.166543,-1.166543,-1.166543,-1.166543,-1.166543 +-1.182168,-1.182168,-1.182168,-1.182168,-1.182168,-1.182168 +-1.197793,-1.197793,-1.197793,-1.197793,-1.197793,-1.197793 +-1.213418,-1.213418,-1.213418,-1.213418,-1.213418,-1.213418 +-1.229043,-1.229043,-1.229043,-1.229043,-1.229043,-1.229043 +-1.244668,-1.244668,-1.244668,-1.244668,-1.244668,-1.244668 +-1.260287,-1.260287,-1.260287,-1.260287,-1.260287,-1.260287 +-1.275886,-1.275886,-1.275886,-1.275886,-1.275886,-1.275886 +-1.291448,-1.291448,-1.291448,-1.291448,-1.291448,-1.291448 +-1.306959,-1.306959,-1.306959,-1.306959,-1.306959,-1.306959 +-1.322402,-1.322402,-1.322402,-1.322402,-1.322402,-1.322402 +-1.337761,-1.337761,-1.337761,-1.337761,-1.337761,-1.337761 +-1.353021,-1.353021,-1.353021,-1.353021,-1.353021,-1.353021 +-1.368166,-1.368166,-1.368166,-1.368166,-1.368166,-1.368166 +-1.383181,-1.383181,-1.383181,-1.383181,-1.383181,-1.383181 +-1.398049,-1.398049,-1.398049,-1.398049,-1.398049,-1.398049 +-1.412754,-1.412754,-1.412754,-1.412754,-1.412754,-1.412754 +-1.427282,-1.427282,-1.427282,-1.427282,-1.427282,-1.427282 +-1.441616,-1.441616,-1.441616,-1.441616,-1.441616,-1.441616 +-1.45574,-1.45574,-1.45574,-1.45574,-1.45574,-1.45574 +-1.46964,-1.46964,-1.46964,-1.46964,-1.46964,-1.46964 +-1.483298,-1.483298,-1.483298,-1.483298,-1.483298,-1.483298 +-1.496699,-1.496699,-1.496699,-1.496699,-1.496699,-1.496699 +-1.509828,-1.509828,-1.509828,-1.509828,-1.509828,-1.509828 +-1.522669,-1.522669,-1.522669,-1.522669,-1.522669,-1.522669 +-1.535206,-1.535206,-1.535206,-1.535206,-1.535206,-1.535206 +-1.547423,-1.547423,-1.547423,-1.547423,-1.547423,-1.547423 +-1.559304,-1.559304,-1.559304,-1.559304,-1.559304,-1.559304 +-1.570835,-1.570835,-1.570835,-1.570835,-1.570835,-1.570835 +-1.581998,-1.581998,-1.581998,-1.581998,-1.581998,-1.581998 +-1.592779,-1.592779,-1.592779,-1.592779,-1.592779,-1.592779 +-1.603167,-1.603167,-1.603167,-1.603167,-1.603167,-1.603167 +-1.613161,-1.613161,-1.613161,-1.613161,-1.613161,-1.613161 +-1.622761,-1.622761,-1.622761,-1.622761,-1.622761,-1.622761 +-1.631967,-1.631967,-1.631967,-1.631967,-1.631967,-1.631967 +-1.64078,-1.64078,-1.64078,-1.64078,-1.64078,-1.64078 +-1.649199,-1.649199,-1.649199,-1.649199,-1.649199,-1.649199 +-1.657225,-1.657225,-1.657225,-1.657225,-1.657225,-1.657225 +-1.664856,-1.664856,-1.664856,-1.664856,-1.664856,-1.664856 +-1.672094,-1.672094,-1.672094,-1.672094,-1.672094,-1.672094 +-1.678938,-1.678938,-1.678938,-1.678938,-1.678938,-1.678938 +-1.685388,-1.685388,-1.685388,-1.685388,-1.685388,-1.685388 +-1.691445,-1.691445,-1.691445,-1.691445,-1.691445,-1.691445 +-1.697108,-1.697108,-1.697108,-1.697108,-1.697108,-1.697108 +-1.702377,-1.702377,-1.702377,-1.702377,-1.702377,-1.702377 +-1.707253,-1.707253,-1.707253,-1.707253,-1.707253,-1.707253 +-1.711745,-1.711745,-1.711745,-1.711745,-1.711745,-1.711745 +-1.715869,-1.715869,-1.715869,-1.715869,-1.715869,-1.715869 +-1.71964,-1.71964,-1.71964,-1.71964,-1.71964,-1.71964 +-1.723074,-1.723074,-1.723074,-1.723074,-1.723074,-1.723074 +-1.726188,-1.726188,-1.726188,-1.726188,-1.726188,-1.726188 +-1.728996,-1.728996,-1.728996,-1.728996,-1.728996,-1.728996 +-1.731515,-1.731515,-1.731515,-1.731515,-1.731515,-1.731515 +-1.73376,-1.73376,-1.73376,-1.73376,-1.73376,-1.73376 +-1.735747,-1.735747,-1.735747,-1.735747,-1.735747,-1.735747 +-1.737492,-1.737492,-1.737492,-1.737492,-1.737492,-1.737492 +-1.73901,-1.73901,-1.73901,-1.73901,-1.73901,-1.73901 +-1.740317,-1.740317,-1.740317,-1.740317,-1.740317,-1.740317 +-1.74143,-1.74143,-1.74143,-1.74143,-1.74143,-1.74143 +-1.742363,-1.742363,-1.742363,-1.742363,-1.742363,-1.742363 +-1.743132,-1.743132,-1.743132,-1.743132,-1.743132,-1.743132 +-1.743754,-1.743754,-1.743754,-1.743754,-1.743754,-1.743754 +-1.744244,-1.744244,-1.744244,-1.744244,-1.744244,-1.744244 +-1.744618,-1.744618,-1.744618,-1.744618,-1.744618,-1.744618 +-1.744891,-1.744891,-1.744891,-1.744891,-1.744891,-1.744891 +-1.745079,-1.745079,-1.745079,-1.745079,-1.745079,-1.745079 +-1.745198,-1.745198,-1.745198,-1.745198,-1.745198,-1.745198 +-1.745265,-1.745265,-1.745265,-1.745265,-1.745265,-1.745265 +-1.745293,-1.745293,-1.745293,-1.745293,-1.745293,-1.745293 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745279,-1.745279,-1.745279,-1.745279,-1.745279,-1.745279 +-1.745229,-1.745229,-1.745229,-1.745229,-1.745229,-1.745229 +-1.745132,-1.745132,-1.745132,-1.745132,-1.745132,-1.745132 +-1.744972,-1.744972,-1.744972,-1.744972,-1.744972,-1.744972 +-1.744733,-1.744733,-1.744733,-1.744733,-1.744733,-1.744733 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743956,-1.743956,-1.743956,-1.743956,-1.743956,-1.743956 +-1.743386,-1.743386,-1.743386,-1.743386,-1.743386,-1.743386 +-1.742675,-1.742675,-1.742675,-1.742675,-1.742675,-1.742675 +-1.741806,-1.741806,-1.741806,-1.741806,-1.741806,-1.741806 +-1.740764,-1.740764,-1.740764,-1.740764,-1.740764,-1.740764 +-1.739533,-1.739533,-1.739533,-1.739533,-1.739533,-1.739533 +-1.738097,-1.738097,-1.738097,-1.738097,-1.738097,-1.738097 +-1.736441,-1.736441,-1.736441,-1.736441,-1.736441,-1.736441 +-1.734548,-1.734548,-1.734548,-1.734548,-1.734548,-1.734548 +-1.732403,-1.732403,-1.732403,-1.732403,-1.732403,-1.732403 +-1.729991,-1.729991,-1.729991,-1.729991,-1.729991,-1.729991 +-1.727295,-1.727295,-1.727295,-1.727295,-1.727295,-1.727295 +-1.7243,-1.7243,-1.7243,-1.7243,-1.7243,-1.7243 +-1.72099,-1.72099,-1.72099,-1.72099,-1.72099,-1.72099 +-1.717349,-1.717349,-1.717349,-1.717349,-1.717349,-1.717349 +-1.713362,-1.713362,-1.713362,-1.713362,-1.713362,-1.713362 +-1.709012,-1.709012,-1.709012,-1.709012,-1.709012,-1.709012 +-1.704284,-1.704284,-1.704284,-1.704284,-1.704284,-1.704284 +-1.699166,-1.699166,-1.699166,-1.699166,-1.699166,-1.699166 +-1.693653,-1.693653,-1.693653,-1.693653,-1.693653,-1.693653 +-1.687747,-1.687747,-1.687747,-1.687747,-1.687747,-1.687747 +-1.681447,-1.681447,-1.681447,-1.681447,-1.681447,-1.681447 +-1.674753,-1.674753,-1.674753,-1.674753,-1.674753,-1.674753 +-1.667666,-1.667666,-1.667666,-1.667666,-1.667666,-1.667666 +-1.660184,-1.660184,-1.660184,-1.660184,-1.660184,-1.660184 +-1.652309,-1.652309,-1.652309,-1.652309,-1.652309,-1.652309 +-1.644041,-1.644041,-1.644041,-1.644041,-1.644041,-1.644041 +-1.635378,-1.635378,-1.635378,-1.635378,-1.635378,-1.635378 +-1.626322,-1.626322,-1.626322,-1.626322,-1.626322,-1.626322 +-1.616872,-1.616872,-1.616872,-1.616872,-1.616872,-1.616872 +-1.607028,-1.607028,-1.607028,-1.607028,-1.607028,-1.607028 +-1.596791,-1.596791,-1.596791,-1.596791,-1.596791,-1.596791 +-1.586159,-1.586159,-1.586159,-1.586159,-1.586159,-1.586159 +-1.57514,-1.57514,-1.57514,-1.57514,-1.57514,-1.57514 +-1.563748,-1.563748,-1.563748,-1.563748,-1.563748,-1.563748 +-1.551999,-1.551999,-1.551999,-1.551999,-1.551999,-1.551999 +-1.539908,-1.539908,-1.539908,-1.539908,-1.539908,-1.539908 +-1.527492,-1.527492,-1.527492,-1.527492,-1.527492,-1.527492 +-1.514765,-1.514765,-1.514765,-1.514765,-1.514765,-1.514765 +-1.501744,-1.501744,-1.501744,-1.501744,-1.501744,-1.501744 +-1.488445,-1.488445,-1.488445,-1.488445,-1.488445,-1.488445 +-1.474883,-1.474883,-1.474883,-1.474883,-1.474883,-1.474883 +-1.461074,-1.461074,-1.461074,-1.461074,-1.461074,-1.461074 +-1.447033,-1.447033,-1.447033,-1.447033,-1.447033,-1.447033 +-1.432777,-1.432777,-1.432777,-1.432777,-1.432777,-1.432777 +-1.418322,-1.418322,-1.418322,-1.418322,-1.418322,-1.418322 +-1.403682,-1.403682,-1.403682,-1.403682,-1.403682,-1.403682 +-1.388874,-1.388874,-1.388874,-1.388874,-1.388874,-1.388874 +-1.373914,-1.373914,-1.373914,-1.373914,-1.373914,-1.373914 +-1.358817,-1.358817,-1.358817,-1.358817,-1.358817,-1.358817 +-1.343599,-1.343599,-1.343599,-1.343599,-1.343599,-1.343599 +-1.328276,-1.328276,-1.328276,-1.328276,-1.328276,-1.328276 +-1.312863,-1.312863,-1.312863,-1.312863,-1.312863,-1.312863 +-1.297376,-1.297376,-1.297376,-1.297376,-1.297376,-1.297376 +-1.281832,-1.281832,-1.281832,-1.281832,-1.281832,-1.281832 +-1.266245,-1.266245,-1.266245,-1.266245,-1.266245,-1.266245 +-1.250632,-1.250632,-1.250632,-1.250632,-1.250632,-1.250632 +-1.235007,-1.235007,-1.235007,-1.235007,-1.235007,-1.235007 +-1.219382,-1.219382,-1.219382,-1.219382,-1.219382,-1.219382 +-1.203757,-1.203757,-1.203757,-1.203757,-1.203757,-1.203757 +-1.188132,-1.188132,-1.188132,-1.188132,-1.188132,-1.188132 +-1.172507,-1.172507,-1.172507,-1.172507,-1.172507,-1.172507 +-1.156882,-1.156882,-1.156882,-1.156882,-1.156882,-1.156882 +-1.141257,-1.141257,-1.141257,-1.141257,-1.141257,-1.141257 +-1.125632,-1.125632,-1.125632,-1.125632,-1.125632,-1.125632 +-1.110007,-1.110007,-1.110007,-1.110007,-1.110007,-1.110007 +-1.094382,-1.094382,-1.094382,-1.094382,-1.094382,-1.094382 +-1.078757,-1.078757,-1.078757,-1.078757,-1.078757,-1.078757 +-1.063132,-1.063132,-1.063132,-1.063132,-1.063132,-1.063132 +-1.047507,-1.047507,-1.047507,-1.047507,-1.047507,-1.047507 +-1.031882,-1.031882,-1.031882,-1.031882,-1.031882,-1.031882 +-1.016257,-1.016257,-1.016257,-1.016257,-1.016257,-1.016257 +-1.000632,-1.000632,-1.000632,-1.000632,-1.000632,-1.000632 +-0.985007,-0.985007,-0.985007,-0.985007,-0.985007,-0.985007 +-0.969382,-0.969382,-0.969382,-0.969382,-0.969382,-0.969382 +-0.953757,-0.953757,-0.953757,-0.953757,-0.953757,-0.953757 +-0.938132,-0.938132,-0.938132,-0.938132,-0.938132,-0.938132 +-0.922507,-0.922507,-0.922507,-0.922507,-0.922507,-0.922507 +-0.906882,-0.906882,-0.906882,-0.906882,-0.906882,-0.906882 +-0.891257,-0.891257,-0.891257,-0.891257,-0.891257,-0.891257 +-0.875632,-0.875632,-0.875632,-0.875632,-0.875632,-0.875632 +-0.860007,-0.860007,-0.860007,-0.860007,-0.860007,-0.860007 +-0.844382,-0.844382,-0.844382,-0.844382,-0.844382,-0.844382 +-0.828757,-0.828757,-0.828757,-0.828757,-0.828757,-0.828757 +-0.813132,-0.813132,-0.813132,-0.813132,-0.813132,-0.813132 +-0.797507,-0.797507,-0.797507,-0.797507,-0.797507,-0.797507 +-0.781882,-0.781882,-0.781882,-0.781882,-0.781882,-0.781882 +-0.766257,-0.766257,-0.766257,-0.766257,-0.766257,-0.766257 +-0.750632,-0.750632,-0.750632,-0.750632,-0.750632,-0.750632 +-0.735007,-0.735007,-0.735007,-0.735007,-0.735007,-0.735007 +-0.719382,-0.719382,-0.719382,-0.719382,-0.719382,-0.719382 +-0.703757,-0.703757,-0.703757,-0.703757,-0.703757,-0.703757 +-0.688132,-0.688132,-0.688132,-0.688132,-0.688132,-0.688132 +-0.672507,-0.672507,-0.672507,-0.672507,-0.672507,-0.672507 +-0.656882,-0.656882,-0.656882,-0.656882,-0.656882,-0.656882 +-0.641257,-0.641257,-0.641257,-0.641257,-0.641257,-0.641257 +-0.625632,-0.625632,-0.625632,-0.625632,-0.625632,-0.625632 +-0.610007,-0.610007,-0.610007,-0.610007,-0.610007,-0.610007 +-0.594382,-0.594382,-0.594382,-0.594382,-0.594382,-0.594382 +-0.578757,-0.578757,-0.578757,-0.578757,-0.578757,-0.578757 +-0.563132,-0.563132,-0.563132,-0.563132,-0.563132,-0.563132 +-0.547507,-0.547507,-0.547507,-0.547507,-0.547507,-0.547507 +-0.531882,-0.531882,-0.531882,-0.531882,-0.531882,-0.531882 +-0.516257,-0.516257,-0.516257,-0.516257,-0.516257,-0.516257 +-0.500632,-0.500632,-0.500632,-0.500632,-0.500632,-0.500632 +-0.485013,-0.485013,-0.485013,-0.485013,-0.485013,-0.485013 +-0.469414,-0.469414,-0.469414,-0.469414,-0.469414,-0.469414 +-0.453852,-0.453852,-0.453852,-0.453852,-0.453852,-0.453852 +-0.438341,-0.438341,-0.438341,-0.438341,-0.438341,-0.438341 +-0.422898,-0.422898,-0.422898,-0.422898,-0.422898,-0.422898 +-0.407539,-0.407539,-0.407539,-0.407539,-0.407539,-0.407539 +-0.392279,-0.392279,-0.392279,-0.392279,-0.392279,-0.392279 +-0.377134,-0.377134,-0.377134,-0.377134,-0.377134,-0.377134 +-0.362119,-0.362119,-0.362119,-0.362119,-0.362119,-0.362119 +-0.347251,-0.347251,-0.347251,-0.347251,-0.347251,-0.347251 +-0.332546,-0.332546,-0.332546,-0.332546,-0.332546,-0.332546 +-0.318018,-0.318018,-0.318018,-0.318018,-0.318018,-0.318018 +-0.303684,-0.303684,-0.303684,-0.303684,-0.303684,-0.303684 +-0.28956,-0.28956,-0.28956,-0.28956,-0.28956,-0.28956 +-0.27566,-0.27566,-0.27566,-0.27566,-0.27566,-0.27566 +-0.262002,-0.262002,-0.262002,-0.262002,-0.262002,-0.262002 +-0.248601,-0.248601,-0.248601,-0.248601,-0.248601,-0.248601 +-0.235472,-0.235472,-0.235472,-0.235472,-0.235472,-0.235472 +-0.222631,-0.222631,-0.222631,-0.222631,-0.222631,-0.222631 +-0.210094,-0.210094,-0.210094,-0.210094,-0.210094,-0.210094 +-0.197877,-0.197877,-0.197877,-0.197877,-0.197877,-0.197877 +-0.185996,-0.185996,-0.185996,-0.185996,-0.185996,-0.185996 +-0.174465,-0.174465,-0.174465,-0.174465,-0.174465,-0.174465 +-0.163302,-0.163302,-0.163302,-0.163302,-0.163302,-0.163302 +-0.152521,-0.152521,-0.152521,-0.152521,-0.152521,-0.152521 +-0.142133,-0.142133,-0.142133,-0.142133,-0.142133,-0.142133 +-0.132139,-0.132139,-0.132139,-0.132139,-0.132139,-0.132139 +-0.122539,-0.122539,-0.122539,-0.122539,-0.122539,-0.122539 +-0.113333,-0.113333,-0.113333,-0.113333,-0.113333,-0.113333 +-0.10452,-0.10452,-0.10452,-0.10452,-0.10452,-0.10452 +-0.096101,-0.096101,-0.096101,-0.096101,-0.096101,-0.096101 +-0.088075,-0.088075,-0.088075,-0.088075,-0.088075,-0.088075 +-0.080444,-0.080444,-0.080444,-0.080444,-0.080444,-0.080444 +-0.073206,-0.073206,-0.073206,-0.073206,-0.073206,-0.073206 +-0.066362,-0.066362,-0.066362,-0.066362,-0.066362,-0.066362 +-0.059912,-0.059912,-0.059912,-0.059912,-0.059912,-0.059912 +-0.053855,-0.053855,-0.053855,-0.053855,-0.053855,-0.053855 +-0.048192,-0.048192,-0.048192,-0.048192,-0.048192,-0.048192 +-0.042923,-0.042923,-0.042923,-0.042923,-0.042923,-0.042923 +-0.038047,-0.038047,-0.038047,-0.038047,-0.038047,-0.038047 +-0.033555,-0.033555,-0.033555,-0.033555,-0.033555,-0.033555 +-0.029431,-0.029431,-0.029431,-0.029431,-0.029431,-0.029431 +-0.02566,-0.02566,-0.02566,-0.02566,-0.02566,-0.02566 +-0.022226,-0.022226,-0.022226,-0.022226,-0.022226,-0.022226 +-0.019112,-0.019112,-0.019112,-0.019112,-0.019112,-0.019112 +-0.016304,-0.016304,-0.016304,-0.016304,-0.016304,-0.016304 +-0.013785,-0.013785,-0.013785,-0.013785,-0.013785,-0.013785 +-0.01154,-0.01154,-0.01154,-0.01154,-0.01154,-0.01154 +-0.009553,-0.009553,-0.009553,-0.009553,-0.009553,-0.009553 +-0.007808,-0.007808,-0.007808,-0.007808,-0.007808,-0.007808 +-0.00629,-0.00629,-0.00629,-0.00629,-0.00629,-0.00629 +-0.004983,-0.004983,-0.004983,-0.004983,-0.004983,-0.004983 +-0.00387,-0.00387,-0.00387,-0.00387,-0.00387,-0.00387 +-0.002937,-0.002937,-0.002937,-0.002937,-0.002937,-0.002937 +-0.002168,-0.002168,-0.002168,-0.002168,-0.002168,-0.002168 +-0.001546,-0.001546,-0.001546,-0.001546,-0.001546,-0.001546 +-0.001056,-0.001056,-0.001056,-0.001056,-0.001056,-0.001056 +-0.000682,-0.000682,-0.000682,-0.000682,-0.000682,-0.000682 +-0.000409,-0.000409,-0.000409,-0.000409,-0.000409,-0.000409 +-0.000221,-0.000221,-0.000221,-0.000221,-0.000221,-0.000221 +-0.000102,-0.000102,-0.000102,-0.000102,-0.000102,-0.000102 +-0.000035,-0.000035,-0.000035,-0.000035,-0.000035,-0.000035 +-0.000007,-0.000007,-0.000007,-0.000007,-0.000007,-0.000007 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000022,0.000022,0.000022,0.000022,0.000022,0.000022 +0.000073,0.000073,0.000073,0.000073,0.000073,0.000073 +0.000173,0.000173,0.000173,0.000173,0.000173,0.000173 +0.000339,0.000339,0.000339,0.000339,0.000339,0.000339 +0.000585,0.000585,0.000585,0.000585,0.000585,0.000585 +0.000929,0.000929,0.000929,0.000929,0.000929,0.000929 +0.001387,0.001387,0.001387,0.001387,0.001387,0.001387 +0.001974,0.001974,0.001974,0.001974,0.001974,0.001974 +0.002708,0.002708,0.002708,0.002708,0.002708,0.002708 +0.003605,0.003605,0.003605,0.003605,0.003605,0.003605 +0.00468,0.00468,0.00468,0.00468,0.00468,0.00468 +0.00595,0.00595,0.00595,0.00595,0.00595,0.00595 +0.007432,0.007432,0.007432,0.007432,0.007432,0.007432 +0.009141,0.009141,0.009141,0.009141,0.009141,0.009141 +0.011093,0.011093,0.011093,0.011093,0.011093,0.011093 +0.013306,0.013306,0.013306,0.013306,0.013306,0.013306 +0.015795,0.015795,0.015795,0.015795,0.015795,0.015795 +0.018576,0.018576,0.018576,0.018576,0.018576,0.018576 +0.021667,0.021667,0.021667,0.021667,0.021667,0.021667 +0.025082,0.025082,0.025082,0.025082,0.025082,0.025082 +0.028838,0.028838,0.028838,0.028838,0.028838,0.028838 +0.032952,0.032952,0.032952,0.032952,0.032952,0.032952 +0.03744,0.03744,0.03744,0.03744,0.03744,0.03744 +0.042318,0.042318,0.042318,0.042318,0.042318,0.042318 +0.047599,0.047599,0.047599,0.047599,0.047599,0.047599 +0.053286,0.053286,0.053286,0.053286,0.053286,0.053286 +0.05938,0.05938,0.05938,0.05938,0.05938,0.05938 +0.06588,0.06588,0.06588,0.06588,0.06588,0.06588 +0.072786,0.072786,0.072786,0.072786,0.072786,0.072786 +0.080099,0.080099,0.080099,0.080099,0.080099,0.080099 +0.087818,0.087818,0.087818,0.087818,0.087818,0.087818 +0.095943,0.095943,0.095943,0.095943,0.095943,0.095943 +0.104474,0.104474,0.104474,0.104474,0.104474,0.104474 +0.113411,0.113411,0.113411,0.113411,0.113411,0.113411 +0.122755,0.122755,0.122755,0.122755,0.122755,0.122755 +0.132505,0.132505,0.132505,0.132505,0.132505,0.132505 +0.142661,0.142661,0.142661,0.142661,0.142661,0.142661 +0.153224,0.153224,0.153224,0.153224,0.153224,0.153224 +0.164183,0.164183,0.164183,0.164183,0.164183,0.164183 +0.175523,0.175523,0.175523,0.175523,0.175523,0.175523 +0.187229,0.187229,0.187229,0.187229,0.187229,0.187229 +0.199283,0.199283,0.199283,0.199283,0.199283,0.199283 +0.21167,0.21167,0.21167,0.21167,0.21167,0.21167 +0.224373,0.224373,0.224373,0.224373,0.224373,0.224373 +0.237376,0.237376,0.237376,0.237376,0.237376,0.237376 +0.250663,0.250663,0.250663,0.250663,0.250663,0.250663 +0.264217,0.264217,0.264217,0.264217,0.264217,0.264217 +0.278023,0.278023,0.278023,0.278023,0.278023,0.278023 +0.292063,0.292063,0.292063,0.292063,0.292063,0.292063 +0.306323,0.306323,0.306323,0.306323,0.306323,0.306323 +0.320785,0.320785,0.320785,0.320785,0.320785,0.320785 +0.335433,0.335433,0.335433,0.335433,0.335433,0.335433 +0.350251,0.350251,0.350251,0.350251,0.350251,0.350251 +0.365223,0.365223,0.365223,0.365223,0.365223,0.365223 +0.380332,0.380332,0.380332,0.380332,0.380332,0.380332 +0.395562,0.395562,0.395562,0.395562,0.395562,0.395562 +0.410898,0.410898,0.410898,0.410898,0.410898,0.410898 +0.426322,0.426322,0.426322,0.426322,0.426322,0.426322 +0.441819,0.441819,0.441819,0.441819,0.441819,0.441819 +0.457372,0.457372,0.457372,0.457372,0.457372,0.457372 +0.472965,0.472965,0.472965,0.472965,0.472965,0.472965 +0.488582,0.488582,0.488582,0.488582,0.488582,0.488582 +0.504207,0.504207,0.504207,0.504207,0.504207,0.504207 +0.519832,0.519832,0.519832,0.519832,0.519832,0.519832 +0.535457,0.535457,0.535457,0.535457,0.535457,0.535457 +0.551082,0.551082,0.551082,0.551082,0.551082,0.551082 +0.566707,0.566707,0.566707,0.566707,0.566707,0.566707 +0.582332,0.582332,0.582332,0.582332,0.582332,0.582332 +0.597957,0.597957,0.597957,0.597957,0.597957,0.597957 +0.613582,0.613582,0.613582,0.613582,0.613582,0.613582 +0.629207,0.629207,0.629207,0.629207,0.629207,0.629207 +0.644832,0.644832,0.644832,0.644832,0.644832,0.644832 +0.660457,0.660457,0.660457,0.660457,0.660457,0.660457 +0.676082,0.676082,0.676082,0.676082,0.676082,0.676082 +0.691707,0.691707,0.691707,0.691707,0.691707,0.691707 +0.707332,0.707332,0.707332,0.707332,0.707332,0.707332 +0.722957,0.722957,0.722957,0.722957,0.722957,0.722957 +0.738582,0.738582,0.738582,0.738582,0.738582,0.738582 +0.754207,0.754207,0.754207,0.754207,0.754207,0.754207 +0.769832,0.769832,0.769832,0.769832,0.769832,0.769832 +0.785457,0.785457,0.785457,0.785457,0.785457,0.785457 +0.801082,0.801082,0.801082,0.801082,0.801082,0.801082 +0.816707,0.816707,0.816707,0.816707,0.816707,0.816707 +0.832332,0.832332,0.832332,0.832332,0.832332,0.832332 +0.847957,0.847957,0.847957,0.847957,0.847957,0.847957 +0.863582,0.863582,0.863582,0.863582,0.863582,0.863582 +0.879207,0.879207,0.879207,0.879207,0.879207,0.879207 +0.894832,0.894832,0.894832,0.894832,0.894832,0.894832 +0.910457,0.910457,0.910457,0.910457,0.910457,0.910457 +0.926082,0.926082,0.926082,0.926082,0.926082,0.926082 +0.941707,0.941707,0.941707,0.941707,0.941707,0.941707 +0.957332,0.957332,0.957332,0.957332,0.957332,0.957332 +0.972957,0.972957,0.972957,0.972957,0.972957,0.972957 +0.988582,0.988582,0.988582,0.988582,0.988582,0.988582 +1.004207,1.004207,1.004207,1.004207,1.004207,1.004207 +1.019832,1.019832,1.019832,1.019832,1.019832,1.019832 +1.035457,1.035457,1.035457,1.035457,1.035457,1.035457 +1.051082,1.051082,1.051082,1.051082,1.051082,1.051082 +1.066707,1.066707,1.066707,1.066707,1.066707,1.066707 +1.082332,1.082332,1.082332,1.082332,1.082332,1.082332 +1.097957,1.097957,1.097957,1.097957,1.097957,1.097957 +1.113582,1.113582,1.113582,1.113582,1.113582,1.113582 +1.129207,1.129207,1.129207,1.129207,1.129207,1.129207 +1.144832,1.144832,1.144832,1.144832,1.144832,1.144832 +1.160457,1.160457,1.160457,1.160457,1.160457,1.160457 +1.176082,1.176082,1.176082,1.176082,1.176082,1.176082 +1.191707,1.191707,1.191707,1.191707,1.191707,1.191707 +1.207332,1.207332,1.207332,1.207332,1.207332,1.207332 +1.222957,1.222957,1.222957,1.222957,1.222957,1.222957 +1.238582,1.238582,1.238582,1.238582,1.238582,1.238582 +1.254207,1.254207,1.254207,1.254207,1.254207,1.254207 +1.269826,1.269826,1.269826,1.269826,1.269826,1.269826 +1.285424,1.285424,1.285424,1.285424,1.285424,1.285424 +1.300984,1.300984,1.300984,1.300984,1.300984,1.300984 +1.316491,1.316491,1.316491,1.316491,1.316491,1.316491 +1.331928,1.331928,1.331928,1.331928,1.331928,1.331928 +1.347279,1.347279,1.347279,1.347279,1.347279,1.347279 +1.362528,1.362528,1.362528,1.362528,1.362528,1.362528 +1.377658,1.377658,1.377658,1.377658,1.377658,1.377658 +1.392653,1.392653,1.392653,1.392653,1.392653,1.392653 +1.407497,1.407497,1.407497,1.407497,1.407497,1.407497 +1.422173,1.422173,1.422173,1.422173,1.422173,1.422173 +1.436666,1.436666,1.436666,1.436666,1.436666,1.436666 +1.450959,1.450959,1.450959,1.450959,1.450959,1.450959 +1.465036,1.465036,1.465036,1.465036,1.465036,1.465036 +1.47888,1.47888,1.47888,1.47888,1.47888,1.47888 +1.492476,1.492476,1.492476,1.492476,1.492476,1.492476 +1.505807,1.505807,1.505807,1.505807,1.505807,1.505807 +1.518857,1.518857,1.518857,1.518857,1.518857,1.518857 +1.531609,1.531609,1.531609,1.531609,1.531609,1.531609 +1.544048,1.544048,1.544048,1.544048,1.544048,1.544048 +1.556157,1.556157,1.556157,1.556157,1.556157,1.556157 +1.567919,1.567919,1.567919,1.567919,1.567919,1.567919 +1.57932,1.57932,1.57932,1.57932,1.57932,1.57932 +1.590341,1.590341,1.590341,1.590341,1.590341,1.590341 +1.600968,1.600968,1.600968,1.600968,1.600968,1.600968 +1.61119,1.61119,1.61119,1.61119,1.61119,1.61119 +1.621005,1.621005,1.621005,1.621005,1.621005,1.621005 +1.630414,1.630414,1.630414,1.630414,1.630414,1.630414 +1.639417,1.639417,1.639417,1.639417,1.639417,1.639417 +1.648013,1.648013,1.648013,1.648013,1.648013,1.648013 +1.656204,1.656204,1.656204,1.656204,1.656204,1.656204 +1.663988,1.663988,1.663988,1.663988,1.663988,1.663988 +1.671366,1.671366,1.671366,1.671366,1.671366,1.671366 +1.678337,1.678337,1.678337,1.678337,1.678337,1.678337 +1.684902,1.684902,1.684902,1.684902,1.684902,1.684902 +1.691061,1.691061,1.691061,1.691061,1.691061,1.691061 +1.696814,1.696814,1.696814,1.696814,1.696814,1.696814 +1.702161,1.702161,1.702161,1.702161,1.702161,1.702161 +1.707103,1.707103,1.707103,1.707103,1.707103,1.707103 +1.711652,1.711652,1.711652,1.711652,1.711652,1.711652 +1.715825,1.715825,1.715825,1.715825,1.715825,1.715825 +1.719638,1.719638,1.719638,1.719638,1.719638,1.719638 +1.723107,1.723107,1.723107,1.723107,1.723107,1.723107 +1.726248,1.726248,1.726248,1.726248,1.726248,1.726248 +1.729078,1.729078,1.729078,1.729078,1.729078,1.729078 +1.731613,1.731613,1.731613,1.731613,1.731613,1.731613 +1.733869,1.733869,1.733869,1.733869,1.733869,1.733869 +1.735862,1.735862,1.735862,1.735862,1.735862,1.735862 +1.737609,1.737609,1.737609,1.737609,1.737609,1.737609 +1.739126,1.739126,1.739126,1.739126,1.739126,1.739126 +1.740429,1.740429,1.740429,1.740429,1.740429,1.740429 +1.741535,1.741535,1.741535,1.741535,1.741535,1.741535 +1.742459,1.742459,1.742459,1.742459,1.742459,1.742459 +1.743218,1.743218,1.743218,1.743218,1.743218,1.743218 +1.743828,1.743828,1.743828,1.743828,1.743828,1.743828 +1.744306,1.744306,1.744306,1.744306,1.744306,1.744306 +1.744667,1.744667,1.744667,1.744667,1.744667,1.744667 +1.744928,1.744928,1.744928,1.744928,1.744928,1.744928 +1.745105,1.745105,1.745105,1.745105,1.745105,1.745105 +1.745214,1.745214,1.745214,1.745214,1.745214,1.745214 +1.745273,1.745273,1.745273,1.745273,1.745273,1.745273 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745278,1.745278,1.745278,1.745278,1.745278,1.745278 +1.745227,1.745227,1.745227,1.745227,1.745227,1.745227 +1.745127,1.745127,1.745127,1.745127,1.745127,1.745127 +1.744961,1.744961,1.744961,1.744961,1.744961,1.744961 +1.744715,1.744715,1.744715,1.744715,1.744715,1.744715 +1.744371,1.744371,1.744371,1.744371,1.744371,1.744371 +1.743913,1.743913,1.743913,1.743913,1.743913,1.743913 +1.743326,1.743326,1.743326,1.743326,1.743326,1.743326 +1.742592,1.742592,1.742592,1.742592,1.742592,1.742592 +1.741695,1.741695,1.741695,1.741695,1.741695,1.741695 +1.74062,1.74062,1.74062,1.74062,1.74062,1.74062 +1.73935,1.73935,1.73935,1.73935,1.73935,1.73935 +1.737868,1.737868,1.737868,1.737868,1.737868,1.737868 +1.736159,1.736159,1.736159,1.736159,1.736159,1.736159 +1.734207,1.734207,1.734207,1.734207,1.734207,1.734207 +1.731994,1.731994,1.731994,1.731994,1.731994,1.731994 +1.729505,1.729505,1.729505,1.729505,1.729505,1.729505 +1.726724,1.726724,1.726724,1.726724,1.726724,1.726724 +1.723633,1.723633,1.723633,1.723633,1.723633,1.723633 +1.720218,1.720218,1.720218,1.720218,1.720218,1.720218 +1.716462,1.716462,1.716462,1.716462,1.716462,1.716462 +1.712348,1.712348,1.712348,1.712348,1.712348,1.712348 +1.70786,1.70786,1.70786,1.70786,1.70786,1.70786 +1.702982,1.702982,1.702982,1.702982,1.702982,1.702982 +1.697701,1.697701,1.697701,1.697701,1.697701,1.697701 +1.692014,1.692014,1.692014,1.692014,1.692014,1.692014 +1.68592,1.68592,1.68592,1.68592,1.68592,1.68592 +1.67942,1.67942,1.67942,1.67942,1.67942,1.67942 +1.672514,1.672514,1.672514,1.672514,1.672514,1.672514 +1.665201,1.665201,1.665201,1.665201,1.665201,1.665201 +1.657482,1.657482,1.657482,1.657482,1.657482,1.657482 +1.649357,1.649357,1.649357,1.649357,1.649357,1.649357 +1.640826,1.640826,1.640826,1.640826,1.640826,1.640826 +1.631889,1.631889,1.631889,1.631889,1.631889,1.631889 +1.622545,1.622545,1.622545,1.622545,1.622545,1.622545 +1.612795,1.612795,1.612795,1.612795,1.612795,1.612795 +1.602639,1.602639,1.602639,1.602639,1.602639,1.602639 +1.592076,1.592076,1.592076,1.592076,1.592076,1.592076 +1.581117,1.581117,1.581117,1.581117,1.581117,1.581117 +1.569777,1.569777,1.569777,1.569777,1.569777,1.569777 +1.558071,1.558071,1.558071,1.558071,1.558071,1.558071 +1.546017,1.546017,1.546017,1.546017,1.546017,1.546017 +1.53363,1.53363,1.53363,1.53363,1.53363,1.53363 +1.520927,1.520927,1.520927,1.520927,1.520927,1.520927 +1.507924,1.507924,1.507924,1.507924,1.507924,1.507924 +1.494637,1.494637,1.494637,1.494637,1.494637,1.494637 +1.481083,1.481083,1.481083,1.481083,1.481083,1.481083 +1.467277,1.467277,1.467277,1.467277,1.467277,1.467277 +1.453237,1.453237,1.453237,1.453237,1.453237,1.453237 +1.438977,1.438977,1.438977,1.438977,1.438977,1.438977 +1.424515,1.424515,1.424515,1.424515,1.424515,1.424515 +1.409867,1.409867,1.409867,1.409867,1.409867,1.409867 +1.395049,1.395049,1.395049,1.395049,1.395049,1.395049 +1.380077,1.380077,1.380077,1.380077,1.380077,1.380077 +1.364968,1.364968,1.364968,1.364968,1.364968,1.364968 +1.349738,1.349738,1.349738,1.349738,1.349738,1.349738 +1.334402,1.334402,1.334402,1.334402,1.334402,1.334402 +1.318978,1.318978,1.318978,1.318978,1.318978,1.318978 +1.303481,1.303481,1.303481,1.303481,1.303481,1.303481 +1.287928,1.287928,1.287928,1.287928,1.287928,1.287928 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.256718,1.256718,1.256718,1.256718,1.256718,1.256718 +1.241093,1.241093,1.241093,1.241093,1.241093,1.241093 +1.225468,1.225468,1.225468,1.225468,1.225468,1.225468 +1.209843,1.209843,1.209843,1.209843,1.209843,1.209843 +1.194218,1.194218,1.194218,1.194218,1.194218,1.194218 +1.178593,1.178593,1.178593,1.178593,1.178593,1.178593 +1.162968,1.162968,1.162968,1.162968,1.162968,1.162968 +1.147343,1.147343,1.147343,1.147343,1.147343,1.147343 +1.131718,1.131718,1.131718,1.131718,1.131718,1.131718 +1.116093,1.116093,1.116093,1.116093,1.116093,1.116093 +1.100468,1.100468,1.100468,1.100468,1.100468,1.100468 +1.084843,1.084843,1.084843,1.084843,1.084843,1.084843 +1.069218,1.069218,1.069218,1.069218,1.069218,1.069218 +1.053593,1.053593,1.053593,1.053593,1.053593,1.053593 +1.037968,1.037968,1.037968,1.037968,1.037968,1.037968 +1.022343,1.022343,1.022343,1.022343,1.022343,1.022343 +1.006718,1.006718,1.006718,1.006718,1.006718,1.006718 +0.991093,0.991093,0.991093,0.991093,0.991093,0.991093 +0.975468,0.975468,0.975468,0.975468,0.975468,0.975468 +0.959843,0.959843,0.959843,0.959843,0.959843,0.959843 +0.944218,0.944218,0.944218,0.944218,0.944218,0.944218 +0.928593,0.928593,0.928593,0.928593,0.928593,0.928593 +0.912968,0.912968,0.912968,0.912968,0.912968,0.912968 +0.897343,0.897343,0.897343,0.897343,0.897343,0.897343 +0.881718,0.881718,0.881718,0.881718,0.881718,0.881718 +0.866093,0.866093,0.866093,0.866093,0.866093,0.866093 +0.850468,0.850468,0.850468,0.850468,0.850468,0.850468 +0.834843,0.834843,0.834843,0.834843,0.834843,0.834843 +0.819218,0.819218,0.819218,0.819218,0.819218,0.819218 +0.803593,0.803593,0.803593,0.803593,0.803593,0.803593 +0.787968,0.787968,0.787968,0.787968,0.787968,0.787968 +0.772343,0.772343,0.772343,0.772343,0.772343,0.772343 +0.756718,0.756718,0.756718,0.756718,0.756718,0.756718 +0.741093,0.741093,0.741093,0.741093,0.741093,0.741093 +0.725468,0.725468,0.725468,0.725468,0.725468,0.725468 +0.709843,0.709843,0.709843,0.709843,0.709843,0.709843 +0.694218,0.694218,0.694218,0.694218,0.694218,0.694218 +0.678593,0.678593,0.678593,0.678593,0.678593,0.678593 +0.662968,0.662968,0.662968,0.662968,0.662968,0.662968 +0.647343,0.647343,0.647343,0.647343,0.647343,0.647343 +0.631718,0.631718,0.631718,0.631718,0.631718,0.631718 +0.616093,0.616093,0.616093,0.616093,0.616093,0.616093 +0.600468,0.600468,0.600468,0.600468,0.600468,0.600468 +0.584843,0.584843,0.584843,0.584843,0.584843,0.584843 +0.569218,0.569218,0.569218,0.569218,0.569218,0.569218 +0.553593,0.553593,0.553593,0.553593,0.553593,0.553593 +0.537968,0.537968,0.537968,0.537968,0.537968,0.537968 +0.522343,0.522343,0.522343,0.522343,0.522343,0.522343 +0.506718,0.506718,0.506718,0.506718,0.506718,0.506718 +0.491093,0.491093,0.491093,0.491093,0.491093,0.491093 +0.475474,0.475474,0.475474,0.475474,0.475474,0.475474 +0.459876,0.459876,0.459876,0.459876,0.459876,0.459876 +0.444316,0.444316,0.444316,0.444316,0.444316,0.444316 +0.428809,0.428809,0.428809,0.428809,0.428809,0.428809 +0.413372,0.413372,0.413372,0.413372,0.413372,0.413372 +0.398021,0.398021,0.398021,0.398021,0.398021,0.398021 +0.382772,0.382772,0.382772,0.382772,0.382772,0.382772 +0.367642,0.367642,0.367642,0.367642,0.367642,0.367642 +0.352647,0.352647,0.352647,0.352647,0.352647,0.352647 +0.337803,0.337803,0.337803,0.337803,0.337803,0.337803 +0.323127,0.323127,0.323127,0.323127,0.323127,0.323127 +0.308634,0.308634,0.308634,0.308634,0.308634,0.308634 +0.294341,0.294341,0.294341,0.294341,0.294341,0.294341 +0.280264,0.280264,0.280264,0.280264,0.280264,0.280264 +0.26642,0.26642,0.26642,0.26642,0.26642,0.26642 +0.252824,0.252824,0.252824,0.252824,0.252824,0.252824 +0.239493,0.239493,0.239493,0.239493,0.239493,0.239493 +0.226443,0.226443,0.226443,0.226443,0.226443,0.226443 +0.213691,0.213691,0.213691,0.213691,0.213691,0.213691 +0.201252,0.201252,0.201252,0.201252,0.201252,0.201252 +0.189143,0.189143,0.189143,0.189143,0.189143,0.189143 +0.177381,0.177381,0.177381,0.177381,0.177381,0.177381 +0.16598,0.16598,0.16598,0.16598,0.16598,0.16598 +0.154959,0.154959,0.154959,0.154959,0.154959,0.154959 +0.144332,0.144332,0.144332,0.144332,0.144332,0.144332 +0.13411,0.13411,0.13411,0.13411,0.13411,0.13411 +0.124295,0.124295,0.124295,0.124295,0.124295,0.124295 +0.114886,0.114886,0.114886,0.114886,0.114886,0.114886 +0.105883,0.105883,0.105883,0.105883,0.105883,0.105883 +0.097287,0.097287,0.097287,0.097287,0.097287,0.097287 +0.089096,0.089096,0.089096,0.089096,0.089096,0.089096 +0.081312,0.081312,0.081312,0.081312,0.081312,0.081312 +0.073934,0.073934,0.073934,0.073934,0.073934,0.073934 +0.066963,0.066963,0.066963,0.066963,0.066963,0.066963 +0.060398,0.060398,0.060398,0.060398,0.060398,0.060398 +0.054239,0.054239,0.054239,0.054239,0.054239,0.054239 +0.048486,0.048486,0.048486,0.048486,0.048486,0.048486 +0.043139,0.043139,0.043139,0.043139,0.043139,0.043139 +0.038197,0.038197,0.038197,0.038197,0.038197,0.038197 +0.033648,0.033648,0.033648,0.033648,0.033648,0.033648 +0.029475,0.029475,0.029475,0.029475,0.029475,0.029475 +0.025662,0.025662,0.025662,0.025662,0.025662,0.025662 +0.022193,0.022193,0.022193,0.022193,0.022193,0.022193 +0.019052,0.019052,0.019052,0.019052,0.019052,0.019052 +0.016222,0.016222,0.016222,0.016222,0.016222,0.016222 +0.013687,0.013687,0.013687,0.013687,0.013687,0.013687 +0.011431,0.011431,0.011431,0.011431,0.011431,0.011431 +0.009438,0.009438,0.009438,0.009438,0.009438,0.009438 +0.007691,0.007691,0.007691,0.007691,0.007691,0.007691 +0.006174,0.006174,0.006174,0.006174,0.006174,0.006174 +0.004871,0.004871,0.004871,0.004871,0.004871,0.004871 +0.003765,0.003765,0.003765,0.003765,0.003765,0.003765 +0.002841,0.002841,0.002841,0.002841,0.002841,0.002841 +0.002082,0.002082,0.002082,0.002082,0.002082,0.002082 +0.001472,0.001472,0.001472,0.001472,0.001472,0.001472 +0.000994,0.000994,0.000994,0.000994,0.000994,0.000994 +0.000633,0.000633,0.000633,0.000633,0.000633,0.000633 +0.000372,0.000372,0.000372,0.000372,0.000372,0.000372 +0.000195,0.000195,0.000195,0.000195,0.000195,0.000195 +0.000086,0.000086,0.000086,0.000086,0.000086,0.000086 +0.000027,0.000027,0.000027,0.000027,0.000027,0.000027 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000022,-0.000022,-0.000022,-0.000022,-0.000022,-0.000022 +-0.000073,-0.000073,-0.000073,-0.000073,-0.000073,-0.000073 +-0.000173,-0.000173,-0.000173,-0.000173,-0.000173,-0.000173 +-0.000339,-0.000339,-0.000339,-0.000339,-0.000339,-0.000339 +-0.000585,-0.000585,-0.000585,-0.000585,-0.000585,-0.000585 +-0.000929,-0.000929,-0.000929,-0.000929,-0.000929,-0.000929 +-0.001387,-0.001387,-0.001387,-0.001387,-0.001387,-0.001387 +-0.001974,-0.001974,-0.001974,-0.001974,-0.001974,-0.001974 +-0.002708,-0.002708,-0.002708,-0.002708,-0.002708,-0.002708 +-0.003605,-0.003605,-0.003605,-0.003605,-0.003605,-0.003605 +-0.00468,-0.00468,-0.00468,-0.00468,-0.00468,-0.00468 +-0.00595,-0.00595,-0.00595,-0.00595,-0.00595,-0.00595 +-0.007432,-0.007432,-0.007432,-0.007432,-0.007432,-0.007432 +-0.009141,-0.009141,-0.009141,-0.009141,-0.009141,-0.009141 +-0.011093,-0.011093,-0.011093,-0.011093,-0.011093,-0.011093 +-0.013306,-0.013306,-0.013306,-0.013306,-0.013306,-0.013306 +-0.015795,-0.015795,-0.015795,-0.015795,-0.015795,-0.015795 +-0.018576,-0.018576,-0.018576,-0.018576,-0.018576,-0.018576 +-0.021667,-0.021667,-0.021667,-0.021667,-0.021667,-0.021667 +-0.025082,-0.025082,-0.025082,-0.025082,-0.025082,-0.025082 +-0.028838,-0.028838,-0.028838,-0.028838,-0.028838,-0.028838 +-0.032952,-0.032952,-0.032952,-0.032952,-0.032952,-0.032952 +-0.03744,-0.03744,-0.03744,-0.03744,-0.03744,-0.03744 +-0.042318,-0.042318,-0.042318,-0.042318,-0.042318,-0.042318 +-0.047599,-0.047599,-0.047599,-0.047599,-0.047599,-0.047599 +-0.053286,-0.053286,-0.053286,-0.053286,-0.053286,-0.053286 +-0.05938,-0.05938,-0.05938,-0.05938,-0.05938,-0.05938 +-0.06588,-0.06588,-0.06588,-0.06588,-0.06588,-0.06588 +-0.072786,-0.072786,-0.072786,-0.072786,-0.072786,-0.072786 +-0.080099,-0.080099,-0.080099,-0.080099,-0.080099,-0.080099 +-0.087818,-0.087818,-0.087818,-0.087818,-0.087818,-0.087818 +-0.095943,-0.095943,-0.095943,-0.095943,-0.095943,-0.095943 +-0.104474,-0.104474,-0.104474,-0.104474,-0.104474,-0.104474 +-0.113411,-0.113411,-0.113411,-0.113411,-0.113411,-0.113411 +-0.122755,-0.122755,-0.122755,-0.122755,-0.122755,-0.122755 +-0.132505,-0.132505,-0.132505,-0.132505,-0.132505,-0.132505 +-0.142661,-0.142661,-0.142661,-0.142661,-0.142661,-0.142661 +-0.153224,-0.153224,-0.153224,-0.153224,-0.153224,-0.153224 +-0.164183,-0.164183,-0.164183,-0.164183,-0.164183,-0.164183 +-0.175523,-0.175523,-0.175523,-0.175523,-0.175523,-0.175523 +-0.187229,-0.187229,-0.187229,-0.187229,-0.187229,-0.187229 +-0.199283,-0.199283,-0.199283,-0.199283,-0.199283,-0.199283 +-0.21167,-0.21167,-0.21167,-0.21167,-0.21167,-0.21167 +-0.224373,-0.224373,-0.224373,-0.224373,-0.224373,-0.224373 +-0.237376,-0.237376,-0.237376,-0.237376,-0.237376,-0.237376 +-0.250663,-0.250663,-0.250663,-0.250663,-0.250663,-0.250663 +-0.264217,-0.264217,-0.264217,-0.264217,-0.264217,-0.264217 +-0.278023,-0.278023,-0.278023,-0.278023,-0.278023,-0.278023 +-0.292063,-0.292063,-0.292063,-0.292063,-0.292063,-0.292063 +-0.306323,-0.306323,-0.306323,-0.306323,-0.306323,-0.306323 +-0.320785,-0.320785,-0.320785,-0.320785,-0.320785,-0.320785 +-0.335433,-0.335433,-0.335433,-0.335433,-0.335433,-0.335433 +-0.350251,-0.350251,-0.350251,-0.350251,-0.350251,-0.350251 +-0.365223,-0.365223,-0.365223,-0.365223,-0.365223,-0.365223 +-0.380332,-0.380332,-0.380332,-0.380332,-0.380332,-0.380332 +-0.395562,-0.395562,-0.395562,-0.395562,-0.395562,-0.395562 +-0.410898,-0.410898,-0.410898,-0.410898,-0.410898,-0.410898 +-0.426322,-0.426322,-0.426322,-0.426322,-0.426322,-0.426322 +-0.441819,-0.441819,-0.441819,-0.441819,-0.441819,-0.441819 +-0.457372,-0.457372,-0.457372,-0.457372,-0.457372,-0.457372 +-0.472965,-0.472965,-0.472965,-0.472965,-0.472965,-0.472965 +-0.488582,-0.488582,-0.488582,-0.488582,-0.488582,-0.488582 +-0.504207,-0.504207,-0.504207,-0.504207,-0.504207,-0.504207 +-0.519832,-0.519832,-0.519832,-0.519832,-0.519832,-0.519832 +-0.535457,-0.535457,-0.535457,-0.535457,-0.535457,-0.535457 +-0.551082,-0.551082,-0.551082,-0.551082,-0.551082,-0.551082 +-0.566707,-0.566707,-0.566707,-0.566707,-0.566707,-0.566707 +-0.582332,-0.582332,-0.582332,-0.582332,-0.582332,-0.582332 +-0.597957,-0.597957,-0.597957,-0.597957,-0.597957,-0.597957 +-0.613582,-0.613582,-0.613582,-0.613582,-0.613582,-0.613582 +-0.629207,-0.629207,-0.629207,-0.629207,-0.629207,-0.629207 +-0.644832,-0.644832,-0.644832,-0.644832,-0.644832,-0.644832 +-0.660457,-0.660457,-0.660457,-0.660457,-0.660457,-0.660457 +-0.676082,-0.676082,-0.676082,-0.676082,-0.676082,-0.676082 +-0.691707,-0.691707,-0.691707,-0.691707,-0.691707,-0.691707 +-0.707332,-0.707332,-0.707332,-0.707332,-0.707332,-0.707332 +-0.722957,-0.722957,-0.722957,-0.722957,-0.722957,-0.722957 +-0.738582,-0.738582,-0.738582,-0.738582,-0.738582,-0.738582 +-0.754207,-0.754207,-0.754207,-0.754207,-0.754207,-0.754207 +-0.769832,-0.769832,-0.769832,-0.769832,-0.769832,-0.769832 +-0.785457,-0.785457,-0.785457,-0.785457,-0.785457,-0.785457 +-0.801082,-0.801082,-0.801082,-0.801082,-0.801082,-0.801082 +-0.816707,-0.816707,-0.816707,-0.816707,-0.816707,-0.816707 +-0.832332,-0.832332,-0.832332,-0.832332,-0.832332,-0.832332 +-0.847957,-0.847957,-0.847957,-0.847957,-0.847957,-0.847957 +-0.863582,-0.863582,-0.863582,-0.863582,-0.863582,-0.863582 +-0.879207,-0.879207,-0.879207,-0.879207,-0.879207,-0.879207 +-0.894832,-0.894832,-0.894832,-0.894832,-0.894832,-0.894832 +-0.910457,-0.910457,-0.910457,-0.910457,-0.910457,-0.910457 +-0.926082,-0.926082,-0.926082,-0.926082,-0.926082,-0.926082 +-0.941707,-0.941707,-0.941707,-0.941707,-0.941707,-0.941707 +-0.957332,-0.957332,-0.957332,-0.957332,-0.957332,-0.957332 +-0.972957,-0.972957,-0.972957,-0.972957,-0.972957,-0.972957 +-0.988582,-0.988582,-0.988582,-0.988582,-0.988582,-0.988582 +-1.004207,-1.004207,-1.004207,-1.004207,-1.004207,-1.004207 +-1.019832,-1.019832,-1.019832,-1.019832,-1.019832,-1.019832 +-1.035457,-1.035457,-1.035457,-1.035457,-1.035457,-1.035457 +-1.051082,-1.051082,-1.051082,-1.051082,-1.051082,-1.051082 +-1.066707,-1.066707,-1.066707,-1.066707,-1.066707,-1.066707 +-1.082332,-1.082332,-1.082332,-1.082332,-1.082332,-1.082332 +-1.097957,-1.097957,-1.097957,-1.097957,-1.097957,-1.097957 +-1.113582,-1.113582,-1.113582,-1.113582,-1.113582,-1.113582 +-1.129207,-1.129207,-1.129207,-1.129207,-1.129207,-1.129207 +-1.144832,-1.144832,-1.144832,-1.144832,-1.144832,-1.144832 +-1.160457,-1.160457,-1.160457,-1.160457,-1.160457,-1.160457 +-1.176082,-1.176082,-1.176082,-1.176082,-1.176082,-1.176082 +-1.191707,-1.191707,-1.191707,-1.191707,-1.191707,-1.191707 +-1.207332,-1.207332,-1.207332,-1.207332,-1.207332,-1.207332 +-1.222957,-1.222957,-1.222957,-1.222957,-1.222957,-1.222957 +-1.238582,-1.238582,-1.238582,-1.238582,-1.238582,-1.238582 +-1.254207,-1.254207,-1.254207,-1.254207,-1.254207,-1.254207 +-1.269826,-1.269826,-1.269826,-1.269826,-1.269826,-1.269826 +-1.285424,-1.285424,-1.285424,-1.285424,-1.285424,-1.285424 +-1.300984,-1.300984,-1.300984,-1.300984,-1.300984,-1.300984 +-1.316491,-1.316491,-1.316491,-1.316491,-1.316491,-1.316491 +-1.331928,-1.331928,-1.331928,-1.331928,-1.331928,-1.331928 +-1.347279,-1.347279,-1.347279,-1.347279,-1.347279,-1.347279 +-1.362528,-1.362528,-1.362528,-1.362528,-1.362528,-1.362528 +-1.377658,-1.377658,-1.377658,-1.377658,-1.377658,-1.377658 +-1.392653,-1.392653,-1.392653,-1.392653,-1.392653,-1.392653 +-1.407497,-1.407497,-1.407497,-1.407497,-1.407497,-1.407497 +-1.422173,-1.422173,-1.422173,-1.422173,-1.422173,-1.422173 +-1.436666,-1.436666,-1.436666,-1.436666,-1.436666,-1.436666 +-1.450959,-1.450959,-1.450959,-1.450959,-1.450959,-1.450959 +-1.465036,-1.465036,-1.465036,-1.465036,-1.465036,-1.465036 +-1.47888,-1.47888,-1.47888,-1.47888,-1.47888,-1.47888 +-1.492476,-1.492476,-1.492476,-1.492476,-1.492476,-1.492476 +-1.505807,-1.505807,-1.505807,-1.505807,-1.505807,-1.505807 +-1.518857,-1.518857,-1.518857,-1.518857,-1.518857,-1.518857 +-1.531609,-1.531609,-1.531609,-1.531609,-1.531609,-1.531609 +-1.544048,-1.544048,-1.544048,-1.544048,-1.544048,-1.544048 +-1.556157,-1.556157,-1.556157,-1.556157,-1.556157,-1.556157 +-1.567919,-1.567919,-1.567919,-1.567919,-1.567919,-1.567919 +-1.57932,-1.57932,-1.57932,-1.57932,-1.57932,-1.57932 +-1.590341,-1.590341,-1.590341,-1.590341,-1.590341,-1.590341 +-1.600968,-1.600968,-1.600968,-1.600968,-1.600968,-1.600968 +-1.61119,-1.61119,-1.61119,-1.61119,-1.61119,-1.61119 +-1.621005,-1.621005,-1.621005,-1.621005,-1.621005,-1.621005 +-1.630414,-1.630414,-1.630414,-1.630414,-1.630414,-1.630414 +-1.639417,-1.639417,-1.639417,-1.639417,-1.639417,-1.639417 +-1.648013,-1.648013,-1.648013,-1.648013,-1.648013,-1.648013 +-1.656204,-1.656204,-1.656204,-1.656204,-1.656204,-1.656204 +-1.663988,-1.663988,-1.663988,-1.663988,-1.663988,-1.663988 +-1.671366,-1.671366,-1.671366,-1.671366,-1.671366,-1.671366 +-1.678337,-1.678337,-1.678337,-1.678337,-1.678337,-1.678337 +-1.684902,-1.684902,-1.684902,-1.684902,-1.684902,-1.684902 +-1.691061,-1.691061,-1.691061,-1.691061,-1.691061,-1.691061 +-1.696814,-1.696814,-1.696814,-1.696814,-1.696814,-1.696814 +-1.702161,-1.702161,-1.702161,-1.702161,-1.702161,-1.702161 +-1.707103,-1.707103,-1.707103,-1.707103,-1.707103,-1.707103 +-1.711652,-1.711652,-1.711652,-1.711652,-1.711652,-1.711652 +-1.715825,-1.715825,-1.715825,-1.715825,-1.715825,-1.715825 +-1.719638,-1.719638,-1.719638,-1.719638,-1.719638,-1.719638 +-1.723107,-1.723107,-1.723107,-1.723107,-1.723107,-1.723107 +-1.726248,-1.726248,-1.726248,-1.726248,-1.726248,-1.726248 +-1.729078,-1.729078,-1.729078,-1.729078,-1.729078,-1.729078 +-1.731613,-1.731613,-1.731613,-1.731613,-1.731613,-1.731613 +-1.733869,-1.733869,-1.733869,-1.733869,-1.733869,-1.733869 +-1.735862,-1.735862,-1.735862,-1.735862,-1.735862,-1.735862 +-1.737609,-1.737609,-1.737609,-1.737609,-1.737609,-1.737609 +-1.739126,-1.739126,-1.739126,-1.739126,-1.739126,-1.739126 +-1.740429,-1.740429,-1.740429,-1.740429,-1.740429,-1.740429 +-1.741535,-1.741535,-1.741535,-1.741535,-1.741535,-1.741535 +-1.742459,-1.742459,-1.742459,-1.742459,-1.742459,-1.742459 +-1.743218,-1.743218,-1.743218,-1.743218,-1.743218,-1.743218 +-1.743828,-1.743828,-1.743828,-1.743828,-1.743828,-1.743828 +-1.744306,-1.744306,-1.744306,-1.744306,-1.744306,-1.744306 +-1.744667,-1.744667,-1.744667,-1.744667,-1.744667,-1.744667 +-1.744928,-1.744928,-1.744928,-1.744928,-1.744928,-1.744928 +-1.745105,-1.745105,-1.745105,-1.745105,-1.745105,-1.745105 +-1.745214,-1.745214,-1.745214,-1.745214,-1.745214,-1.745214 +-1.745273,-1.745273,-1.745273,-1.745273,-1.745273,-1.745273 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745278,-1.745278,-1.745278,-1.745278,-1.745278,-1.745278 +-1.745227,-1.745227,-1.745227,-1.745227,-1.745227,-1.745227 +-1.745127,-1.745127,-1.745127,-1.745127,-1.745127,-1.745127 +-1.744961,-1.744961,-1.744961,-1.744961,-1.744961,-1.744961 +-1.744715,-1.744715,-1.744715,-1.744715,-1.744715,-1.744715 +-1.744371,-1.744371,-1.744371,-1.744371,-1.744371,-1.744371 +-1.743913,-1.743913,-1.743913,-1.743913,-1.743913,-1.743913 +-1.743326,-1.743326,-1.743326,-1.743326,-1.743326,-1.743326 +-1.742592,-1.742592,-1.742592,-1.742592,-1.742592,-1.742592 +-1.741695,-1.741695,-1.741695,-1.741695,-1.741695,-1.741695 +-1.74062,-1.74062,-1.74062,-1.74062,-1.74062,-1.74062 +-1.73935,-1.73935,-1.73935,-1.73935,-1.73935,-1.73935 +-1.737868,-1.737868,-1.737868,-1.737868,-1.737868,-1.737868 +-1.736159,-1.736159,-1.736159,-1.736159,-1.736159,-1.736159 +-1.734207,-1.734207,-1.734207,-1.734207,-1.734207,-1.734207 +-1.731994,-1.731994,-1.731994,-1.731994,-1.731994,-1.731994 +-1.729505,-1.729505,-1.729505,-1.729505,-1.729505,-1.729505 +-1.726724,-1.726724,-1.726724,-1.726724,-1.726724,-1.726724 +-1.723633,-1.723633,-1.723633,-1.723633,-1.723633,-1.723633 +-1.720218,-1.720218,-1.720218,-1.720218,-1.720218,-1.720218 +-1.716462,-1.716462,-1.716462,-1.716462,-1.716462,-1.716462 +-1.712348,-1.712348,-1.712348,-1.712348,-1.712348,-1.712348 +-1.70786,-1.70786,-1.70786,-1.70786,-1.70786,-1.70786 +-1.702982,-1.702982,-1.702982,-1.702982,-1.702982,-1.702982 +-1.697701,-1.697701,-1.697701,-1.697701,-1.697701,-1.697701 +-1.692014,-1.692014,-1.692014,-1.692014,-1.692014,-1.692014 +-1.68592,-1.68592,-1.68592,-1.68592,-1.68592,-1.68592 +-1.67942,-1.67942,-1.67942,-1.67942,-1.67942,-1.67942 +-1.672514,-1.672514,-1.672514,-1.672514,-1.672514,-1.672514 +-1.665201,-1.665201,-1.665201,-1.665201,-1.665201,-1.665201 +-1.657482,-1.657482,-1.657482,-1.657482,-1.657482,-1.657482 +-1.649357,-1.649357,-1.649357,-1.649357,-1.649357,-1.649357 +-1.640826,-1.640826,-1.640826,-1.640826,-1.640826,-1.640826 +-1.631889,-1.631889,-1.631889,-1.631889,-1.631889,-1.631889 +-1.622545,-1.622545,-1.622545,-1.622545,-1.622545,-1.622545 +-1.612795,-1.612795,-1.612795,-1.612795,-1.612795,-1.612795 +-1.602639,-1.602639,-1.602639,-1.602639,-1.602639,-1.602639 +-1.592076,-1.592076,-1.592076,-1.592076,-1.592076,-1.592076 +-1.581117,-1.581117,-1.581117,-1.581117,-1.581117,-1.581117 +-1.569777,-1.569777,-1.569777,-1.569777,-1.569777,-1.569777 +-1.558071,-1.558071,-1.558071,-1.558071,-1.558071,-1.558071 +-1.546017,-1.546017,-1.546017,-1.546017,-1.546017,-1.546017 +-1.53363,-1.53363,-1.53363,-1.53363,-1.53363,-1.53363 +-1.520927,-1.520927,-1.520927,-1.520927,-1.520927,-1.520927 +-1.507924,-1.507924,-1.507924,-1.507924,-1.507924,-1.507924 +-1.494637,-1.494637,-1.494637,-1.494637,-1.494637,-1.494637 +-1.481083,-1.481083,-1.481083,-1.481083,-1.481083,-1.481083 +-1.467277,-1.467277,-1.467277,-1.467277,-1.467277,-1.467277 +-1.453237,-1.453237,-1.453237,-1.453237,-1.453237,-1.453237 +-1.438977,-1.438977,-1.438977,-1.438977,-1.438977,-1.438977 +-1.424515,-1.424515,-1.424515,-1.424515,-1.424515,-1.424515 +-1.409867,-1.409867,-1.409867,-1.409867,-1.409867,-1.409867 +-1.395049,-1.395049,-1.395049,-1.395049,-1.395049,-1.395049 +-1.380077,-1.380077,-1.380077,-1.380077,-1.380077,-1.380077 +-1.364968,-1.364968,-1.364968,-1.364968,-1.364968,-1.364968 +-1.349738,-1.349738,-1.349738,-1.349738,-1.349738,-1.349738 +-1.334402,-1.334402,-1.334402,-1.334402,-1.334402,-1.334402 +-1.318978,-1.318978,-1.318978,-1.318978,-1.318978,-1.318978 +-1.303481,-1.303481,-1.303481,-1.303481,-1.303481,-1.303481 +-1.287928,-1.287928,-1.287928,-1.287928,-1.287928,-1.287928 +-1.272335,-1.272335,-1.272335,-1.272335,-1.272335,-1.272335 +-1.256718,-1.256718,-1.256718,-1.256718,-1.256718,-1.256718 +-1.241093,-1.241093,-1.241093,-1.241093,-1.241093,-1.241093 +-1.225468,-1.225468,-1.225468,-1.225468,-1.225468,-1.225468 +-1.209843,-1.209843,-1.209843,-1.209843,-1.209843,-1.209843 +-1.194218,-1.194218,-1.194218,-1.194218,-1.194218,-1.194218 +-1.178593,-1.178593,-1.178593,-1.178593,-1.178593,-1.178593 +-1.162968,-1.162968,-1.162968,-1.162968,-1.162968,-1.162968 +-1.147343,-1.147343,-1.147343,-1.147343,-1.147343,-1.147343 +-1.131718,-1.131718,-1.131718,-1.131718,-1.131718,-1.131718 +-1.116093,-1.116093,-1.116093,-1.116093,-1.116093,-1.116093 +-1.100468,-1.100468,-1.100468,-1.100468,-1.100468,-1.100468 +-1.084843,-1.084843,-1.084843,-1.084843,-1.084843,-1.084843 +-1.069218,-1.069218,-1.069218,-1.069218,-1.069218,-1.069218 +-1.053593,-1.053593,-1.053593,-1.053593,-1.053593,-1.053593 +-1.037968,-1.037968,-1.037968,-1.037968,-1.037968,-1.037968 +-1.022343,-1.022343,-1.022343,-1.022343,-1.022343,-1.022343 +-1.006718,-1.006718,-1.006718,-1.006718,-1.006718,-1.006718 +-0.991093,-0.991093,-0.991093,-0.991093,-0.991093,-0.991093 +-0.975468,-0.975468,-0.975468,-0.975468,-0.975468,-0.975468 +-0.959843,-0.959843,-0.959843,-0.959843,-0.959843,-0.959843 +-0.944218,-0.944218,-0.944218,-0.944218,-0.944218,-0.944218 +-0.928593,-0.928593,-0.928593,-0.928593,-0.928593,-0.928593 +-0.912968,-0.912968,-0.912968,-0.912968,-0.912968,-0.912968 +-0.897343,-0.897343,-0.897343,-0.897343,-0.897343,-0.897343 +-0.881718,-0.881718,-0.881718,-0.881718,-0.881718,-0.881718 +-0.866093,-0.866093,-0.866093,-0.866093,-0.866093,-0.866093 +-0.850468,-0.850468,-0.850468,-0.850468,-0.850468,-0.850468 +-0.834843,-0.834843,-0.834843,-0.834843,-0.834843,-0.834843 +-0.819218,-0.819218,-0.819218,-0.819218,-0.819218,-0.819218 +-0.803593,-0.803593,-0.803593,-0.803593,-0.803593,-0.803593 +-0.787968,-0.787968,-0.787968,-0.787968,-0.787968,-0.787968 +-0.772343,-0.772343,-0.772343,-0.772343,-0.772343,-0.772343 +-0.756718,-0.756718,-0.756718,-0.756718,-0.756718,-0.756718 +-0.741093,-0.741093,-0.741093,-0.741093,-0.741093,-0.741093 +-0.725468,-0.725468,-0.725468,-0.725468,-0.725468,-0.725468 +-0.709843,-0.709843,-0.709843,-0.709843,-0.709843,-0.709843 +-0.694218,-0.694218,-0.694218,-0.694218,-0.694218,-0.694218 +-0.678593,-0.678593,-0.678593,-0.678593,-0.678593,-0.678593 +-0.662968,-0.662968,-0.662968,-0.662968,-0.662968,-0.662968 +-0.647343,-0.647343,-0.647343,-0.647343,-0.647343,-0.647343 +-0.631718,-0.631718,-0.631718,-0.631718,-0.631718,-0.631718 +-0.616093,-0.616093,-0.616093,-0.616093,-0.616093,-0.616093 +-0.600468,-0.600468,-0.600468,-0.600468,-0.600468,-0.600468 +-0.584843,-0.584843,-0.584843,-0.584843,-0.584843,-0.584843 +-0.569218,-0.569218,-0.569218,-0.569218,-0.569218,-0.569218 +-0.553593,-0.553593,-0.553593,-0.553593,-0.553593,-0.553593 +-0.537968,-0.537968,-0.537968,-0.537968,-0.537968,-0.537968 +-0.522343,-0.522343,-0.522343,-0.522343,-0.522343,-0.522343 +-0.506718,-0.506718,-0.506718,-0.506718,-0.506718,-0.506718 +-0.491093,-0.491093,-0.491093,-0.491093,-0.491093,-0.491093 +-0.475474,-0.475474,-0.475474,-0.475474,-0.475474,-0.475474 +-0.459876,-0.459876,-0.459876,-0.459876,-0.459876,-0.459876 +-0.444316,-0.444316,-0.444316,-0.444316,-0.444316,-0.444316 +-0.428809,-0.428809,-0.428809,-0.428809,-0.428809,-0.428809 +-0.413372,-0.413372,-0.413372,-0.413372,-0.413372,-0.413372 +-0.398021,-0.398021,-0.398021,-0.398021,-0.398021,-0.398021 +-0.382772,-0.382772,-0.382772,-0.382772,-0.382772,-0.382772 +-0.367642,-0.367642,-0.367642,-0.367642,-0.367642,-0.367642 +-0.352647,-0.352647,-0.352647,-0.352647,-0.352647,-0.352647 +-0.337803,-0.337803,-0.337803,-0.337803,-0.337803,-0.337803 +-0.323127,-0.323127,-0.323127,-0.323127,-0.323127,-0.323127 +-0.308634,-0.308634,-0.308634,-0.308634,-0.308634,-0.308634 +-0.294341,-0.294341,-0.294341,-0.294341,-0.294341,-0.294341 +-0.280264,-0.280264,-0.280264,-0.280264,-0.280264,-0.280264 +-0.26642,-0.26642,-0.26642,-0.26642,-0.26642,-0.26642 +-0.252824,-0.252824,-0.252824,-0.252824,-0.252824,-0.252824 +-0.239493,-0.239493,-0.239493,-0.239493,-0.239493,-0.239493 +-0.226443,-0.226443,-0.226443,-0.226443,-0.226443,-0.226443 +-0.213691,-0.213691,-0.213691,-0.213691,-0.213691,-0.213691 +-0.201252,-0.201252,-0.201252,-0.201252,-0.201252,-0.201252 +-0.189143,-0.189143,-0.189143,-0.189143,-0.189143,-0.189143 +-0.177381,-0.177381,-0.177381,-0.177381,-0.177381,-0.177381 +-0.16598,-0.16598,-0.16598,-0.16598,-0.16598,-0.16598 +-0.154959,-0.154959,-0.154959,-0.154959,-0.154959,-0.154959 +-0.144332,-0.144332,-0.144332,-0.144332,-0.144332,-0.144332 +-0.13411,-0.13411,-0.13411,-0.13411,-0.13411,-0.13411 +-0.124295,-0.124295,-0.124295,-0.124295,-0.124295,-0.124295 +-0.114886,-0.114886,-0.114886,-0.114886,-0.114886,-0.114886 +-0.105883,-0.105883,-0.105883,-0.105883,-0.105883,-0.105883 +-0.097287,-0.097287,-0.097287,-0.097287,-0.097287,-0.097287 +-0.089096,-0.089096,-0.089096,-0.089096,-0.089096,-0.089096 +-0.081312,-0.081312,-0.081312,-0.081312,-0.081312,-0.081312 +-0.073934,-0.073934,-0.073934,-0.073934,-0.073934,-0.073934 +-0.066963,-0.066963,-0.066963,-0.066963,-0.066963,-0.066963 +-0.060398,-0.060398,-0.060398,-0.060398,-0.060398,-0.060398 +-0.054239,-0.054239,-0.054239,-0.054239,-0.054239,-0.054239 +-0.048486,-0.048486,-0.048486,-0.048486,-0.048486,-0.048486 +-0.043139,-0.043139,-0.043139,-0.043139,-0.043139,-0.043139 +-0.038197,-0.038197,-0.038197,-0.038197,-0.038197,-0.038197 +-0.033648,-0.033648,-0.033648,-0.033648,-0.033648,-0.033648 +-0.029475,-0.029475,-0.029475,-0.029475,-0.029475,-0.029475 +-0.025662,-0.025662,-0.025662,-0.025662,-0.025662,-0.025662 +-0.022193,-0.022193,-0.022193,-0.022193,-0.022193,-0.022193 +-0.019052,-0.019052,-0.019052,-0.019052,-0.019052,-0.019052 +-0.016222,-0.016222,-0.016222,-0.016222,-0.016222,-0.016222 +-0.013687,-0.013687,-0.013687,-0.013687,-0.013687,-0.013687 +-0.011431,-0.011431,-0.011431,-0.011431,-0.011431,-0.011431 +-0.009438,-0.009438,-0.009438,-0.009438,-0.009438,-0.009438 +-0.007691,-0.007691,-0.007691,-0.007691,-0.007691,-0.007691 +-0.006174,-0.006174,-0.006174,-0.006174,-0.006174,-0.006174 +-0.004871,-0.004871,-0.004871,-0.004871,-0.004871,-0.004871 +-0.003765,-0.003765,-0.003765,-0.003765,-0.003765,-0.003765 +-0.002841,-0.002841,-0.002841,-0.002841,-0.002841,-0.002841 +-0.002082,-0.002082,-0.002082,-0.002082,-0.002082,-0.002082 +-0.001472,-0.001472,-0.001472,-0.001472,-0.001472,-0.001472 +-0.000994,-0.000994,-0.000994,-0.000994,-0.000994,-0.000994 +-0.000633,-0.000633,-0.000633,-0.000633,-0.000633,-0.000633 +-0.000372,-0.000372,-0.000372,-0.000372,-0.000372,-0.000372 +-0.000195,-0.000195,-0.000195,-0.000195,-0.000195,-0.000195 +-0.000086,-0.000086,-0.000086,-0.000086,-0.000086,-0.000086 +-0.000027,-0.000027,-0.000027,-0.000027,-0.000027,-0.000027 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/7.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/7.csv new file mode 100644 index 00000000..8578bbc7 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/7.csv @@ -0,0 +1,3786 @@ +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.000056,-0.000056,-0.000056,-0.000056,-0.000056,-0.000056 +-0.000133,-0.000133,-0.000133,-0.000133,-0.000133,-0.000133 +-0.00026,-0.00026,-0.00026,-0.00026,-0.00026,-0.00026 +-0.00045,-0.00045,-0.00045,-0.00045,-0.00045,-0.00045 +-0.000715,-0.000715,-0.000715,-0.000715,-0.000715,-0.000715 +-0.001067,-0.001067,-0.001067,-0.001067,-0.001067,-0.001067 +-0.001519,-0.001519,-0.001519,-0.001519,-0.001519,-0.001519 +-0.002083,-0.002083,-0.002083,-0.002083,-0.002083,-0.002083 +-0.002773,-0.002773,-0.002773,-0.002773,-0.002773,-0.002773 +-0.0036,-0.0036,-0.0036,-0.0036,-0.0036,-0.0036 +-0.004577,-0.004577,-0.004577,-0.004577,-0.004577,-0.004577 +-0.005717,-0.005717,-0.005717,-0.005717,-0.005717,-0.005717 +-0.007031,-0.007031,-0.007031,-0.007031,-0.007031,-0.007031 +-0.008533,-0.008533,-0.008533,-0.008533,-0.008533,-0.008533 +-0.010228,-0.010228,-0.010228,-0.010228,-0.010228,-0.010228 +-0.012106,-0.012106,-0.012106,-0.012106,-0.012106,-0.012106 +-0.014155,-0.014155,-0.014155,-0.014155,-0.014155,-0.014155 +-0.01636,-0.01636,-0.01636,-0.01636,-0.01636,-0.01636 +-0.018712,-0.018712,-0.018712,-0.018712,-0.018712,-0.018712 +-0.021196,-0.021196,-0.021196,-0.021196,-0.021196,-0.021196 +-0.0238,-0.0238,-0.0238,-0.0238,-0.0238,-0.0238 +-0.026512,-0.026512,-0.026512,-0.026512,-0.026512,-0.026512 +-0.02932,-0.02932,-0.02932,-0.02932,-0.02932,-0.02932 +-0.03221,-0.03221,-0.03221,-0.03221,-0.03221,-0.03221 +-0.03517,-0.03517,-0.03517,-0.03517,-0.03517,-0.03517 +-0.038188,-0.038188,-0.038188,-0.038188,-0.038188,-0.038188 +-0.041252,-0.041252,-0.041252,-0.041252,-0.041252,-0.041252 +-0.044348,-0.044348,-0.044348,-0.044348,-0.044348,-0.044348 +-0.047465,-0.047465,-0.047465,-0.047465,-0.047465,-0.047465 +-0.050589,-0.050589,-0.050589,-0.050589,-0.050589,-0.050589 +-0.053714,-0.053714,-0.053714,-0.053714,-0.053714,-0.053714 +-0.056839,-0.056839,-0.056839,-0.056839,-0.056839,-0.056839 +-0.059964,-0.059964,-0.059964,-0.059964,-0.059964,-0.059964 +-0.063089,-0.063089,-0.063089,-0.063089,-0.063089,-0.063089 +-0.066214,-0.066214,-0.066214,-0.066214,-0.066214,-0.066214 +-0.069339,-0.069339,-0.069339,-0.069339,-0.069339,-0.069339 +-0.072464,-0.072464,-0.072464,-0.072464,-0.072464,-0.072464 +-0.075589,-0.075589,-0.075589,-0.075589,-0.075589,-0.075589 +-0.078714,-0.078714,-0.078714,-0.078714,-0.078714,-0.078714 +-0.081839,-0.081839,-0.081839,-0.081839,-0.081839,-0.081839 +-0.084964,-0.084964,-0.084964,-0.084964,-0.084964,-0.084964 +-0.088089,-0.088089,-0.088089,-0.088089,-0.088089,-0.088089 +-0.091214,-0.091214,-0.091214,-0.091214,-0.091214,-0.091214 +-0.094339,-0.094339,-0.094339,-0.094339,-0.094339,-0.094339 +-0.097464,-0.097464,-0.097464,-0.097464,-0.097464,-0.097464 +-0.100589,-0.100589,-0.100589,-0.100589,-0.100589,-0.100589 +-0.103714,-0.103714,-0.103714,-0.103714,-0.103714,-0.103714 +-0.106839,-0.106839,-0.106839,-0.106839,-0.106839,-0.106839 +-0.109964,-0.109964,-0.109964,-0.109964,-0.109964,-0.109964 +-0.113089,-0.113089,-0.113089,-0.113089,-0.113089,-0.113089 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.119339,-0.119339,-0.119339,-0.119339,-0.119339,-0.119339 +-0.122464,-0.122464,-0.122464,-0.122464,-0.122464,-0.122464 +-0.125589,-0.125589,-0.125589,-0.125589,-0.125589,-0.125589 +-0.128714,-0.128714,-0.128714,-0.128714,-0.128714,-0.128714 +-0.131839,-0.131839,-0.131839,-0.131839,-0.131839,-0.131839 +-0.134964,-0.134964,-0.134964,-0.134964,-0.134964,-0.134964 +-0.138089,-0.138089,-0.138089,-0.138089,-0.138089,-0.138089 +-0.141214,-0.141214,-0.141214,-0.141214,-0.141214,-0.141214 +-0.144339,-0.144339,-0.144339,-0.144339,-0.144339,-0.144339 +-0.147464,-0.147464,-0.147464,-0.147464,-0.147464,-0.147464 +-0.150589,-0.150589,-0.150589,-0.150589,-0.150589,-0.150589 +-0.153714,-0.153714,-0.153714,-0.153714,-0.153714,-0.153714 +-0.156839,-0.156839,-0.156839,-0.156839,-0.156839,-0.156839 +-0.159964,-0.159964,-0.159964,-0.159964,-0.159964,-0.159964 +-0.163089,-0.163089,-0.163089,-0.163089,-0.163089,-0.163089 +-0.166214,-0.166214,-0.166214,-0.166214,-0.166214,-0.166214 +-0.169339,-0.169339,-0.169339,-0.169339,-0.169339,-0.169339 +-0.172464,-0.172464,-0.172464,-0.172464,-0.172464,-0.172464 +-0.175589,-0.175589,-0.175589,-0.175589,-0.175589,-0.175589 +-0.178714,-0.178714,-0.178714,-0.178714,-0.178714,-0.178714 +-0.181839,-0.181839,-0.181839,-0.181839,-0.181839,-0.181839 +-0.184964,-0.184964,-0.184964,-0.184964,-0.184964,-0.184964 +-0.188089,-0.188089,-0.188089,-0.188089,-0.188089,-0.188089 +-0.191214,-0.191214,-0.191214,-0.191214,-0.191214,-0.191214 +-0.194339,-0.194339,-0.194339,-0.194339,-0.194339,-0.194339 +-0.197464,-0.197464,-0.197464,-0.197464,-0.197464,-0.197464 +-0.200589,-0.200589,-0.200589,-0.200589,-0.200589,-0.200589 +-0.203714,-0.203714,-0.203714,-0.203714,-0.203714,-0.203714 +-0.206839,-0.206839,-0.206839,-0.206839,-0.206839,-0.206839 +-0.209964,-0.209964,-0.209964,-0.209964,-0.209964,-0.209964 +-0.213089,-0.213089,-0.213089,-0.213089,-0.213089,-0.213089 +-0.216214,-0.216214,-0.216214,-0.216214,-0.216214,-0.216214 +-0.219339,-0.219339,-0.219339,-0.219339,-0.219339,-0.219339 +-0.222464,-0.222464,-0.222464,-0.222464,-0.222464,-0.222464 +-0.225589,-0.225589,-0.225589,-0.225589,-0.225589,-0.225589 +-0.228714,-0.228714,-0.228714,-0.228714,-0.228714,-0.228714 +-0.231839,-0.231839,-0.231839,-0.231839,-0.231839,-0.231839 +-0.234964,-0.234964,-0.234964,-0.234964,-0.234964,-0.234964 +-0.238089,-0.238089,-0.238089,-0.238089,-0.238089,-0.238089 +-0.241214,-0.241214,-0.241214,-0.241214,-0.241214,-0.241214 +-0.244339,-0.244339,-0.244339,-0.244339,-0.244339,-0.244339 +-0.247464,-0.247464,-0.247464,-0.247464,-0.247464,-0.247464 +-0.250589,-0.250589,-0.250589,-0.250589,-0.250589,-0.250589 +-0.253714,-0.253714,-0.253714,-0.253714,-0.253714,-0.253714 +-0.256839,-0.256839,-0.256839,-0.256839,-0.256839,-0.256839 +-0.259964,-0.259964,-0.259964,-0.259964,-0.259964,-0.259964 +-0.263089,-0.263089,-0.263089,-0.263089,-0.263089,-0.263089 +-0.266214,-0.266214,-0.266214,-0.266214,-0.266214,-0.266214 +-0.269339,-0.269339,-0.269339,-0.269339,-0.269339,-0.269339 +-0.272464,-0.272464,-0.272464,-0.272464,-0.272464,-0.272464 +-0.275589,-0.275589,-0.275589,-0.275589,-0.275589,-0.275589 +-0.278714,-0.278714,-0.278714,-0.278714,-0.278714,-0.278714 +-0.281839,-0.281839,-0.281839,-0.281839,-0.281839,-0.281839 +-0.284964,-0.284964,-0.284964,-0.284964,-0.284964,-0.284964 +-0.288089,-0.288089,-0.288089,-0.288089,-0.288089,-0.288089 +-0.291214,-0.291214,-0.291214,-0.291214,-0.291214,-0.291214 +-0.294339,-0.294339,-0.294339,-0.294339,-0.294339,-0.294339 +-0.297464,-0.297464,-0.297464,-0.297464,-0.297464,-0.297464 +-0.300589,-0.300589,-0.300589,-0.300589,-0.300589,-0.300589 +-0.303714,-0.303714,-0.303714,-0.303714,-0.303714,-0.303714 +-0.306839,-0.306839,-0.306839,-0.306839,-0.306839,-0.306839 +-0.309964,-0.309964,-0.309964,-0.309964,-0.309964,-0.309964 +-0.313089,-0.313089,-0.313089,-0.313089,-0.313089,-0.313089 +-0.316214,-0.316214,-0.316214,-0.316214,-0.316214,-0.316214 +-0.319339,-0.319339,-0.319339,-0.319339,-0.319339,-0.319339 +-0.322464,-0.322464,-0.322464,-0.322464,-0.322464,-0.322464 +-0.325589,-0.325589,-0.325589,-0.325589,-0.325589,-0.325589 +-0.328714,-0.328714,-0.328714,-0.328714,-0.328714,-0.328714 +-0.331839,-0.331839,-0.331839,-0.331839,-0.331839,-0.331839 +-0.334964,-0.334964,-0.334964,-0.334964,-0.334964,-0.334964 +-0.338089,-0.338089,-0.338089,-0.338089,-0.338089,-0.338089 +-0.341214,-0.341214,-0.341214,-0.341214,-0.341214,-0.341214 +-0.344339,-0.344339,-0.344339,-0.344339,-0.344339,-0.344339 +-0.347464,-0.347464,-0.347464,-0.347464,-0.347464,-0.347464 +-0.350589,-0.350589,-0.350589,-0.350589,-0.350589,-0.350589 +-0.353714,-0.353714,-0.353714,-0.353714,-0.353714,-0.353714 +-0.356839,-0.356839,-0.356839,-0.356839,-0.356839,-0.356839 +-0.359964,-0.359964,-0.359964,-0.359964,-0.359964,-0.359964 +-0.363089,-0.363089,-0.363089,-0.363089,-0.363089,-0.363089 +-0.366214,-0.366214,-0.366214,-0.366214,-0.366214,-0.366214 +-0.369339,-0.369339,-0.369339,-0.369339,-0.369339,-0.369339 +-0.372464,-0.372464,-0.372464,-0.372464,-0.372464,-0.372464 +-0.375589,-0.375589,-0.375589,-0.375589,-0.375589,-0.375589 +-0.378714,-0.378714,-0.378714,-0.378714,-0.378714,-0.378714 +-0.381839,-0.381839,-0.381839,-0.381839,-0.381839,-0.381839 +-0.384964,-0.384964,-0.384964,-0.384964,-0.384964,-0.384964 +-0.388089,-0.388089,-0.388089,-0.388089,-0.388089,-0.388089 +-0.391214,-0.391214,-0.391214,-0.391214,-0.391214,-0.391214 +-0.394339,-0.394339,-0.394339,-0.394339,-0.394339,-0.394339 +-0.397464,-0.397464,-0.397464,-0.397464,-0.397464,-0.397464 +-0.400589,-0.400589,-0.400589,-0.400589,-0.400589,-0.400589 +-0.403714,-0.403714,-0.403714,-0.403714,-0.403714,-0.403714 +-0.406839,-0.406839,-0.406839,-0.406839,-0.406839,-0.406839 +-0.409964,-0.409964,-0.409964,-0.409964,-0.409964,-0.409964 +-0.413089,-0.413089,-0.413089,-0.413089,-0.413089,-0.413089 +-0.416214,-0.416214,-0.416214,-0.416214,-0.416214,-0.416214 +-0.419339,-0.419339,-0.419339,-0.419339,-0.419339,-0.419339 +-0.422464,-0.422464,-0.422464,-0.422464,-0.422464,-0.422464 +-0.425589,-0.425589,-0.425589,-0.425589,-0.425589,-0.425589 +-0.428714,-0.428714,-0.428714,-0.428714,-0.428714,-0.428714 +-0.431839,-0.431839,-0.431839,-0.431839,-0.431839,-0.431839 +-0.434964,-0.434964,-0.434964,-0.434964,-0.434964,-0.434964 +-0.438089,-0.438089,-0.438089,-0.438089,-0.438089,-0.438089 +-0.441214,-0.441214,-0.441214,-0.441214,-0.441214,-0.441214 +-0.444339,-0.444339,-0.444339,-0.444339,-0.444339,-0.444339 +-0.447464,-0.447464,-0.447464,-0.447464,-0.447464,-0.447464 +-0.450589,-0.450589,-0.450589,-0.450589,-0.450589,-0.450589 +-0.453714,-0.453714,-0.453714,-0.453714,-0.453714,-0.453714 +-0.456839,-0.456839,-0.456839,-0.456839,-0.456839,-0.456839 +-0.459964,-0.459964,-0.459964,-0.459964,-0.459964,-0.459964 +-0.463089,-0.463089,-0.463089,-0.463089,-0.463089,-0.463089 +-0.466214,-0.466214,-0.466214,-0.466214,-0.466214,-0.466214 +-0.469339,-0.469339,-0.469339,-0.469339,-0.469339,-0.469339 +-0.472464,-0.472464,-0.472464,-0.472464,-0.472464,-0.472464 +-0.475589,-0.475589,-0.475589,-0.475589,-0.475589,-0.475589 +-0.478714,-0.478714,-0.478714,-0.478714,-0.478714,-0.478714 +-0.481839,-0.481839,-0.481839,-0.481839,-0.481839,-0.481839 +-0.484964,-0.484964,-0.484964,-0.484964,-0.484964,-0.484964 +-0.488089,-0.488089,-0.488089,-0.488089,-0.488089,-0.488089 +-0.491214,-0.491214,-0.491214,-0.491214,-0.491214,-0.491214 +-0.494339,-0.494339,-0.494339,-0.494339,-0.494339,-0.494339 +-0.497464,-0.497464,-0.497464,-0.497464,-0.497464,-0.497464 +-0.500589,-0.500589,-0.500589,-0.500589,-0.500589,-0.500589 +-0.503714,-0.503714,-0.503714,-0.503714,-0.503714,-0.503714 +-0.506839,-0.506839,-0.506839,-0.506839,-0.506839,-0.506839 +-0.509964,-0.509964,-0.509964,-0.509964,-0.509964,-0.509964 +-0.513089,-0.513089,-0.513089,-0.513089,-0.513089,-0.513089 +-0.516214,-0.516214,-0.516214,-0.516214,-0.516214,-0.516214 +-0.519339,-0.519339,-0.519339,-0.519339,-0.519339,-0.519339 +-0.522464,-0.522464,-0.522464,-0.522464,-0.522464,-0.522464 +-0.525589,-0.525589,-0.525589,-0.525589,-0.525589,-0.525589 +-0.528714,-0.528714,-0.528714,-0.528714,-0.528714,-0.528714 +-0.531839,-0.531839,-0.531839,-0.531839,-0.531839,-0.531839 +-0.534964,-0.534964,-0.534964,-0.534964,-0.534964,-0.534964 +-0.538089,-0.538089,-0.538089,-0.538089,-0.538089,-0.538089 +-0.541214,-0.541214,-0.541214,-0.541214,-0.541214,-0.541214 +-0.544339,-0.544339,-0.544339,-0.544339,-0.544339,-0.544339 +-0.547464,-0.547464,-0.547464,-0.547464,-0.547464,-0.547464 +-0.550589,-0.550589,-0.550589,-0.550589,-0.550589,-0.550589 +-0.553714,-0.553714,-0.553714,-0.553714,-0.553714,-0.553714 +-0.556839,-0.556839,-0.556839,-0.556839,-0.556839,-0.556839 +-0.559964,-0.559964,-0.559964,-0.559964,-0.559964,-0.559964 +-0.563089,-0.563089,-0.563089,-0.563089,-0.563089,-0.563089 +-0.566214,-0.566214,-0.566214,-0.566214,-0.566214,-0.566214 +-0.569339,-0.569339,-0.569339,-0.569339,-0.569339,-0.569339 +-0.572464,-0.572464,-0.572464,-0.572464,-0.572464,-0.572464 +-0.575589,-0.575589,-0.575589,-0.575589,-0.575589,-0.575589 +-0.578714,-0.578714,-0.578714,-0.578714,-0.578714,-0.578714 +-0.581839,-0.581839,-0.581839,-0.581839,-0.581839,-0.581839 +-0.584964,-0.584964,-0.584964,-0.584964,-0.584964,-0.584964 +-0.588089,-0.588089,-0.588089,-0.588089,-0.588089,-0.588089 +-0.591214,-0.591214,-0.591214,-0.591214,-0.591214,-0.591214 +-0.594339,-0.594339,-0.594339,-0.594339,-0.594339,-0.594339 +-0.597464,-0.597464,-0.597464,-0.597464,-0.597464,-0.597464 +-0.600589,-0.600589,-0.600589,-0.600589,-0.600589,-0.600589 +-0.603714,-0.603714,-0.603714,-0.603714,-0.603714,-0.603714 +-0.606839,-0.606839,-0.606839,-0.606839,-0.606839,-0.606839 +-0.609964,-0.609964,-0.609964,-0.609964,-0.609964,-0.609964 +-0.613089,-0.613089,-0.613089,-0.613089,-0.613089,-0.613089 +-0.616214,-0.616214,-0.616214,-0.616214,-0.616214,-0.616214 +-0.619339,-0.619339,-0.619339,-0.619339,-0.619339,-0.619339 +-0.622464,-0.622464,-0.622464,-0.622464,-0.622464,-0.622464 +-0.625589,-0.625589,-0.625589,-0.625589,-0.625589,-0.625589 +-0.628714,-0.628714,-0.628714,-0.628714,-0.628714,-0.628714 +-0.631839,-0.631839,-0.631839,-0.631839,-0.631839,-0.631839 +-0.634964,-0.634964,-0.634964,-0.634964,-0.634964,-0.634964 +-0.638089,-0.638089,-0.638089,-0.638089,-0.638089,-0.638089 +-0.641214,-0.641214,-0.641214,-0.641214,-0.641214,-0.641214 +-0.644339,-0.644339,-0.644339,-0.644339,-0.644339,-0.644339 +-0.647464,-0.647464,-0.647464,-0.647464,-0.647464,-0.647464 +-0.650589,-0.650589,-0.650589,-0.650589,-0.650589,-0.650589 +-0.653714,-0.653714,-0.653714,-0.653714,-0.653714,-0.653714 +-0.656839,-0.656839,-0.656839,-0.656839,-0.656839,-0.656839 +-0.659964,-0.659964,-0.659964,-0.659964,-0.659964,-0.659964 +-0.663089,-0.663089,-0.663089,-0.663089,-0.663089,-0.663089 +-0.666214,-0.666214,-0.666214,-0.666214,-0.666214,-0.666214 +-0.669339,-0.669339,-0.669339,-0.669339,-0.669339,-0.669339 +-0.672464,-0.672464,-0.672464,-0.672464,-0.672464,-0.672464 +-0.675589,-0.675589,-0.675589,-0.675589,-0.675589,-0.675589 +-0.678714,-0.678714,-0.678714,-0.678714,-0.678714,-0.678714 +-0.681839,-0.681839,-0.681839,-0.681839,-0.681839,-0.681839 +-0.684964,-0.684964,-0.684964,-0.684964,-0.684964,-0.684964 +-0.688089,-0.688089,-0.688089,-0.688089,-0.688089,-0.688089 +-0.691214,-0.691214,-0.691214,-0.691214,-0.691214,-0.691214 +-0.694339,-0.694339,-0.694339,-0.694339,-0.694339,-0.694339 +-0.697464,-0.697464,-0.697464,-0.697464,-0.697464,-0.697464 +-0.700589,-0.700589,-0.700589,-0.700589,-0.700589,-0.700589 +-0.703714,-0.703714,-0.703714,-0.703714,-0.703714,-0.703714 +-0.706839,-0.706839,-0.706839,-0.706839,-0.706839,-0.706839 +-0.709964,-0.709964,-0.709964,-0.709964,-0.709964,-0.709964 +-0.713089,-0.713089,-0.713089,-0.713089,-0.713089,-0.713089 +-0.716214,-0.716214,-0.716214,-0.716214,-0.716214,-0.716214 +-0.719339,-0.719339,-0.719339,-0.719339,-0.719339,-0.719339 +-0.722464,-0.722464,-0.722464,-0.722464,-0.722464,-0.722464 +-0.725589,-0.725589,-0.725589,-0.725589,-0.725589,-0.725589 +-0.728714,-0.728714,-0.728714,-0.728714,-0.728714,-0.728714 +-0.731839,-0.731839,-0.731839,-0.731839,-0.731839,-0.731839 +-0.734964,-0.734964,-0.734964,-0.734964,-0.734964,-0.734964 +-0.738089,-0.738089,-0.738089,-0.738089,-0.738089,-0.738089 +-0.741214,-0.741214,-0.741214,-0.741214,-0.741214,-0.741214 +-0.744339,-0.744339,-0.744339,-0.744339,-0.744339,-0.744339 +-0.747464,-0.747464,-0.747464,-0.747464,-0.747464,-0.747464 +-0.750589,-0.750589,-0.750589,-0.750589,-0.750589,-0.750589 +-0.753714,-0.753714,-0.753714,-0.753714,-0.753714,-0.753714 +-0.756839,-0.756839,-0.756839,-0.756839,-0.756839,-0.756839 +-0.759964,-0.759964,-0.759964,-0.759964,-0.759964,-0.759964 +-0.763089,-0.763089,-0.763089,-0.763089,-0.763089,-0.763089 +-0.766214,-0.766214,-0.766214,-0.766214,-0.766214,-0.766214 +-0.769339,-0.769339,-0.769339,-0.769339,-0.769339,-0.769339 +-0.772464,-0.772464,-0.772464,-0.772464,-0.772464,-0.772464 +-0.775589,-0.775589,-0.775589,-0.775589,-0.775589,-0.775589 +-0.778714,-0.778714,-0.778714,-0.778714,-0.778714,-0.778714 +-0.781839,-0.781839,-0.781839,-0.781839,-0.781839,-0.781839 +-0.784964,-0.784964,-0.784964,-0.784964,-0.784964,-0.784964 +-0.788089,-0.788089,-0.788089,-0.788089,-0.788089,-0.788089 +-0.791214,-0.791214,-0.791214,-0.791214,-0.791214,-0.791214 +-0.794339,-0.794339,-0.794339,-0.794339,-0.794339,-0.794339 +-0.797464,-0.797464,-0.797464,-0.797464,-0.797464,-0.797464 +-0.800589,-0.800589,-0.800589,-0.800589,-0.800589,-0.800589 +-0.803714,-0.803714,-0.803714,-0.803714,-0.803714,-0.803714 +-0.806839,-0.806839,-0.806839,-0.806839,-0.806839,-0.806839 +-0.809964,-0.809964,-0.809964,-0.809964,-0.809964,-0.809964 +-0.813089,-0.813089,-0.813089,-0.813089,-0.813089,-0.813089 +-0.816214,-0.816214,-0.816214,-0.816214,-0.816214,-0.816214 +-0.819339,-0.819339,-0.819339,-0.819339,-0.819339,-0.819339 +-0.822464,-0.822464,-0.822464,-0.822464,-0.822464,-0.822464 +-0.825589,-0.825589,-0.825589,-0.825589,-0.825589,-0.825589 +-0.828714,-0.828714,-0.828714,-0.828714,-0.828714,-0.828714 +-0.831839,-0.831839,-0.831839,-0.831839,-0.831839,-0.831839 +-0.834964,-0.834964,-0.834964,-0.834964,-0.834964,-0.834964 +-0.838089,-0.838089,-0.838089,-0.838089,-0.838089,-0.838089 +-0.841214,-0.841214,-0.841214,-0.841214,-0.841214,-0.841214 +-0.844339,-0.844339,-0.844339,-0.844339,-0.844339,-0.844339 +-0.847464,-0.847464,-0.847464,-0.847464,-0.847464,-0.847464 +-0.850589,-0.850589,-0.850589,-0.850589,-0.850589,-0.850589 +-0.853714,-0.853714,-0.853714,-0.853714,-0.853714,-0.853714 +-0.856839,-0.856839,-0.856839,-0.856839,-0.856839,-0.856839 +-0.859964,-0.859964,-0.859964,-0.859964,-0.859964,-0.859964 +-0.863089,-0.863089,-0.863089,-0.863089,-0.863089,-0.863089 +-0.866214,-0.866214,-0.866214,-0.866214,-0.866214,-0.866214 +-0.869339,-0.869339,-0.869339,-0.869339,-0.869339,-0.869339 +-0.872464,-0.872464,-0.872464,-0.872464,-0.872464,-0.872464 +-0.875589,-0.875589,-0.875589,-0.875589,-0.875589,-0.875589 +-0.878714,-0.878714,-0.878714,-0.878714,-0.878714,-0.878714 +-0.881839,-0.881839,-0.881839,-0.881839,-0.881839,-0.881839 +-0.884964,-0.884964,-0.884964,-0.884964,-0.884964,-0.884964 +-0.888089,-0.888089,-0.888089,-0.888089,-0.888089,-0.888089 +-0.891214,-0.891214,-0.891214,-0.891214,-0.891214,-0.891214 +-0.894339,-0.894339,-0.894339,-0.894339,-0.894339,-0.894339 +-0.897464,-0.897464,-0.897464,-0.897464,-0.897464,-0.897464 +-0.900589,-0.900589,-0.900589,-0.900589,-0.900589,-0.900589 +-0.903714,-0.903714,-0.903714,-0.903714,-0.903714,-0.903714 +-0.906839,-0.906839,-0.906839,-0.906839,-0.906839,-0.906839 +-0.909964,-0.909964,-0.909964,-0.909964,-0.909964,-0.909964 +-0.913089,-0.913089,-0.913089,-0.913089,-0.913089,-0.913089 +-0.916214,-0.916214,-0.916214,-0.916214,-0.916214,-0.916214 +-0.919339,-0.919339,-0.919339,-0.919339,-0.919339,-0.919339 +-0.922464,-0.922464,-0.922464,-0.922464,-0.922464,-0.922464 +-0.925589,-0.925589,-0.925589,-0.925589,-0.925589,-0.925589 +-0.928714,-0.928714,-0.928714,-0.928714,-0.928714,-0.928714 +-0.931839,-0.931839,-0.931839,-0.931839,-0.931839,-0.931839 +-0.934964,-0.934964,-0.934964,-0.934964,-0.934964,-0.934964 +-0.938089,-0.938089,-0.938089,-0.938089,-0.938089,-0.938089 +-0.941214,-0.941214,-0.941214,-0.941214,-0.941214,-0.941214 +-0.944339,-0.944339,-0.944339,-0.944339,-0.944339,-0.944339 +-0.947464,-0.947464,-0.947464,-0.947464,-0.947464,-0.947464 +-0.950589,-0.950589,-0.950589,-0.950589,-0.950589,-0.950589 +-0.953714,-0.953714,-0.953714,-0.953714,-0.953714,-0.953714 +-0.956839,-0.956839,-0.956839,-0.956839,-0.956839,-0.956839 +-0.959964,-0.959964,-0.959964,-0.959964,-0.959964,-0.959964 +-0.963089,-0.963089,-0.963089,-0.963089,-0.963089,-0.963089 +-0.966214,-0.966214,-0.966214,-0.966214,-0.966214,-0.966214 +-0.969339,-0.969339,-0.969339,-0.969339,-0.969339,-0.969339 +-0.972464,-0.972464,-0.972464,-0.972464,-0.972464,-0.972464 +-0.975589,-0.975589,-0.975589,-0.975589,-0.975589,-0.975589 +-0.978714,-0.978714,-0.978714,-0.978714,-0.978714,-0.978714 +-0.981839,-0.981839,-0.981839,-0.981839,-0.981839,-0.981839 +-0.984964,-0.984964,-0.984964,-0.984964,-0.984964,-0.984964 +-0.988089,-0.988089,-0.988089,-0.988089,-0.988089,-0.988089 +-0.991214,-0.991214,-0.991214,-0.991214,-0.991214,-0.991214 +-0.994339,-0.994339,-0.994339,-0.994339,-0.994339,-0.994339 +-0.997464,-0.997464,-0.997464,-0.997464,-0.997464,-0.997464 +-1.000589,-1.000589,-1.000589,-1.000589,-1.000589,-1.000589 +-1.003714,-1.003714,-1.003714,-1.003714,-1.003714,-1.003714 +-1.006839,-1.006839,-1.006839,-1.006839,-1.006839,-1.006839 +-1.009964,-1.009964,-1.009964,-1.009964,-1.009964,-1.009964 +-1.013089,-1.013089,-1.013089,-1.013089,-1.013089,-1.013089 +-1.016214,-1.016214,-1.016214,-1.016214,-1.016214,-1.016214 +-1.019339,-1.019339,-1.019339,-1.019339,-1.019339,-1.019339 +-1.022464,-1.022464,-1.022464,-1.022464,-1.022464,-1.022464 +-1.025589,-1.025589,-1.025589,-1.025589,-1.025589,-1.025589 +-1.028714,-1.028714,-1.028714,-1.028714,-1.028714,-1.028714 +-1.031839,-1.031839,-1.031839,-1.031839,-1.031839,-1.031839 +-1.034964,-1.034964,-1.034964,-1.034964,-1.034964,-1.034964 +-1.038089,-1.038089,-1.038089,-1.038089,-1.038089,-1.038089 +-1.041214,-1.041214,-1.041214,-1.041214,-1.041214,-1.041214 +-1.044339,-1.044339,-1.044339,-1.044339,-1.044339,-1.044339 +-1.047464,-1.047464,-1.047464,-1.047464,-1.047464,-1.047464 +-1.050589,-1.050589,-1.050589,-1.050589,-1.050589,-1.050589 +-1.053714,-1.053714,-1.053714,-1.053714,-1.053714,-1.053714 +-1.056839,-1.056839,-1.056839,-1.056839,-1.056839,-1.056839 +-1.059964,-1.059964,-1.059964,-1.059964,-1.059964,-1.059964 +-1.063089,-1.063089,-1.063089,-1.063089,-1.063089,-1.063089 +-1.066214,-1.066214,-1.066214,-1.066214,-1.066214,-1.066214 +-1.069339,-1.069339,-1.069339,-1.069339,-1.069339,-1.069339 +-1.072464,-1.072464,-1.072464,-1.072464,-1.072464,-1.072464 +-1.075589,-1.075589,-1.075589,-1.075589,-1.075589,-1.075589 +-1.078714,-1.078714,-1.078714,-1.078714,-1.078714,-1.078714 +-1.081839,-1.081839,-1.081839,-1.081839,-1.081839,-1.081839 +-1.084964,-1.084964,-1.084964,-1.084964,-1.084964,-1.084964 +-1.088089,-1.088089,-1.088089,-1.088089,-1.088089,-1.088089 +-1.091214,-1.091214,-1.091214,-1.091214,-1.091214,-1.091214 +-1.094339,-1.094339,-1.094339,-1.094339,-1.094339,-1.094339 +-1.097464,-1.097464,-1.097464,-1.097464,-1.097464,-1.097464 +-1.100589,-1.100589,-1.100589,-1.100589,-1.100589,-1.100589 +-1.103714,-1.103714,-1.103714,-1.103714,-1.103714,-1.103714 +-1.106839,-1.106839,-1.106839,-1.106839,-1.106839,-1.106839 +-1.109964,-1.109964,-1.109964,-1.109964,-1.109964,-1.109964 +-1.113089,-1.113089,-1.113089,-1.113089,-1.113089,-1.113089 +-1.116214,-1.116214,-1.116214,-1.116214,-1.116214,-1.116214 +-1.119339,-1.119339,-1.119339,-1.119339,-1.119339,-1.119339 +-1.122464,-1.122464,-1.122464,-1.122464,-1.122464,-1.122464 +-1.125589,-1.125589,-1.125589,-1.125589,-1.125589,-1.125589 +-1.128714,-1.128714,-1.128714,-1.128714,-1.128714,-1.128714 +-1.131839,-1.131839,-1.131839,-1.131839,-1.131839,-1.131839 +-1.134964,-1.134964,-1.134964,-1.134964,-1.134964,-1.134964 +-1.138089,-1.138089,-1.138089,-1.138089,-1.138089,-1.138089 +-1.141214,-1.141214,-1.141214,-1.141214,-1.141214,-1.141214 +-1.144339,-1.144339,-1.144339,-1.144339,-1.144339,-1.144339 +-1.147464,-1.147464,-1.147464,-1.147464,-1.147464,-1.147464 +-1.150589,-1.150589,-1.150589,-1.150589,-1.150589,-1.150589 +-1.153714,-1.153714,-1.153714,-1.153714,-1.153714,-1.153714 +-1.156839,-1.156839,-1.156839,-1.156839,-1.156839,-1.156839 +-1.159964,-1.159964,-1.159964,-1.159964,-1.159964,-1.159964 +-1.163089,-1.163089,-1.163089,-1.163089,-1.163089,-1.163089 +-1.166214,-1.166214,-1.166214,-1.166214,-1.166214,-1.166214 +-1.169339,-1.169339,-1.169339,-1.169339,-1.169339,-1.169339 +-1.172464,-1.172464,-1.172464,-1.172464,-1.172464,-1.172464 +-1.175589,-1.175589,-1.175589,-1.175589,-1.175589,-1.175589 +-1.178714,-1.178714,-1.178714,-1.178714,-1.178714,-1.178714 +-1.181839,-1.181839,-1.181839,-1.181839,-1.181839,-1.181839 +-1.184964,-1.184964,-1.184964,-1.184964,-1.184964,-1.184964 +-1.188089,-1.188089,-1.188089,-1.188089,-1.188089,-1.188089 +-1.191214,-1.191214,-1.191214,-1.191214,-1.191214,-1.191214 +-1.194339,-1.194339,-1.194339,-1.194339,-1.194339,-1.194339 +-1.197464,-1.197464,-1.197464,-1.197464,-1.197464,-1.197464 +-1.200589,-1.200589,-1.200589,-1.200589,-1.200589,-1.200589 +-1.203714,-1.203714,-1.203714,-1.203714,-1.203714,-1.203714 +-1.206839,-1.206839,-1.206839,-1.206839,-1.206839,-1.206839 +-1.209964,-1.209964,-1.209964,-1.209964,-1.209964,-1.209964 +-1.213089,-1.213089,-1.213089,-1.213089,-1.213089,-1.213089 +-1.216214,-1.216214,-1.216214,-1.216214,-1.216214,-1.216214 +-1.219339,-1.219339,-1.219339,-1.219339,-1.219339,-1.219339 +-1.222464,-1.222464,-1.222464,-1.222464,-1.222464,-1.222464 +-1.225589,-1.225589,-1.225589,-1.225589,-1.225589,-1.225589 +-1.228714,-1.228714,-1.228714,-1.228714,-1.228714,-1.228714 +-1.231839,-1.231839,-1.231839,-1.231839,-1.231839,-1.231839 +-1.234964,-1.234964,-1.234964,-1.234964,-1.234964,-1.234964 +-1.238089,-1.238089,-1.238089,-1.238089,-1.238089,-1.238089 +-1.241214,-1.241214,-1.241214,-1.241214,-1.241214,-1.241214 +-1.244339,-1.244339,-1.244339,-1.244339,-1.244339,-1.244339 +-1.247464,-1.247464,-1.247464,-1.247464,-1.247464,-1.247464 +-1.250589,-1.250589,-1.250589,-1.250589,-1.250589,-1.250589 +-1.253714,-1.253714,-1.253714,-1.253714,-1.253714,-1.253714 +-1.256839,-1.256839,-1.256839,-1.256839,-1.256839,-1.256839 +-1.259964,-1.259964,-1.259964,-1.259964,-1.259964,-1.259964 +-1.263089,-1.263089,-1.263089,-1.263089,-1.263089,-1.263089 +-1.266214,-1.266214,-1.266214,-1.266214,-1.266214,-1.266214 +-1.269339,-1.269339,-1.269339,-1.269339,-1.269339,-1.269339 +-1.272464,-1.272464,-1.272464,-1.272464,-1.272464,-1.272464 +-1.275589,-1.275589,-1.275589,-1.275589,-1.275589,-1.275589 +-1.278714,-1.278714,-1.278714,-1.278714,-1.278714,-1.278714 +-1.281839,-1.281839,-1.281839,-1.281839,-1.281839,-1.281839 +-1.284964,-1.284964,-1.284964,-1.284964,-1.284964,-1.284964 +-1.288089,-1.288089,-1.288089,-1.288089,-1.288089,-1.288089 +-1.291214,-1.291214,-1.291214,-1.291214,-1.291214,-1.291214 +-1.294339,-1.294339,-1.294339,-1.294339,-1.294339,-1.294339 +-1.297464,-1.297464,-1.297464,-1.297464,-1.297464,-1.297464 +-1.300589,-1.300589,-1.300589,-1.300589,-1.300589,-1.300589 +-1.303714,-1.303714,-1.303714,-1.303714,-1.303714,-1.303714 +-1.306839,-1.306839,-1.306839,-1.306839,-1.306839,-1.306839 +-1.309964,-1.309964,-1.309964,-1.309964,-1.309964,-1.309964 +-1.313089,-1.313089,-1.313089,-1.313089,-1.313089,-1.313089 +-1.316214,-1.316214,-1.316214,-1.316214,-1.316214,-1.316214 +-1.319339,-1.319339,-1.319339,-1.319339,-1.319339,-1.319339 +-1.322464,-1.322464,-1.322464,-1.322464,-1.322464,-1.322464 +-1.325589,-1.325589,-1.325589,-1.325589,-1.325589,-1.325589 +-1.328714,-1.328714,-1.328714,-1.328714,-1.328714,-1.328714 +-1.331839,-1.331839,-1.331839,-1.331839,-1.331839,-1.331839 +-1.334964,-1.334964,-1.334964,-1.334964,-1.334964,-1.334964 +-1.338089,-1.338089,-1.338089,-1.338089,-1.338089,-1.338089 +-1.341214,-1.341214,-1.341214,-1.341214,-1.341214,-1.341214 +-1.344339,-1.344339,-1.344339,-1.344339,-1.344339,-1.344339 +-1.347464,-1.347464,-1.347464,-1.347464,-1.347464,-1.347464 +-1.350589,-1.350589,-1.350589,-1.350589,-1.350589,-1.350589 +-1.353714,-1.353714,-1.353714,-1.353714,-1.353714,-1.353714 +-1.356839,-1.356839,-1.356839,-1.356839,-1.356839,-1.356839 +-1.359964,-1.359964,-1.359964,-1.359964,-1.359964,-1.359964 +-1.363089,-1.363089,-1.363089,-1.363089,-1.363089,-1.363089 +-1.366214,-1.366214,-1.366214,-1.366214,-1.366214,-1.366214 +-1.369339,-1.369339,-1.369339,-1.369339,-1.369339,-1.369339 +-1.372464,-1.372464,-1.372464,-1.372464,-1.372464,-1.372464 +-1.375589,-1.375589,-1.375589,-1.375589,-1.375589,-1.375589 +-1.378714,-1.378714,-1.378714,-1.378714,-1.378714,-1.378714 +-1.381839,-1.381839,-1.381839,-1.381839,-1.381839,-1.381839 +-1.384964,-1.384964,-1.384964,-1.384964,-1.384964,-1.384964 +-1.388089,-1.388089,-1.388089,-1.388089,-1.388089,-1.388089 +-1.391214,-1.391214,-1.391214,-1.391214,-1.391214,-1.391214 +-1.394339,-1.394339,-1.394339,-1.394339,-1.394339,-1.394339 +-1.397464,-1.397464,-1.397464,-1.397464,-1.397464,-1.397464 +-1.400589,-1.400589,-1.400589,-1.400589,-1.400589,-1.400589 +-1.403714,-1.403714,-1.403714,-1.403714,-1.403714,-1.403714 +-1.406839,-1.406839,-1.406839,-1.406839,-1.406839,-1.406839 +-1.409964,-1.409964,-1.409964,-1.409964,-1.409964,-1.409964 +-1.413089,-1.413089,-1.413089,-1.413089,-1.413089,-1.413089 +-1.416214,-1.416214,-1.416214,-1.416214,-1.416214,-1.416214 +-1.419339,-1.419339,-1.419339,-1.419339,-1.419339,-1.419339 +-1.422464,-1.422464,-1.422464,-1.422464,-1.422464,-1.422464 +-1.425589,-1.425589,-1.425589,-1.425589,-1.425589,-1.425589 +-1.428714,-1.428714,-1.428714,-1.428714,-1.428714,-1.428714 +-1.431839,-1.431839,-1.431839,-1.431839,-1.431839,-1.431839 +-1.434964,-1.434964,-1.434964,-1.434964,-1.434964,-1.434964 +-1.438089,-1.438089,-1.438089,-1.438089,-1.438089,-1.438089 +-1.441214,-1.441214,-1.441214,-1.441214,-1.441214,-1.441214 +-1.444339,-1.444339,-1.444339,-1.444339,-1.444339,-1.444339 +-1.447464,-1.447464,-1.447464,-1.447464,-1.447464,-1.447464 +-1.450589,-1.450589,-1.450589,-1.450589,-1.450589,-1.450589 +-1.453714,-1.453714,-1.453714,-1.453714,-1.453714,-1.453714 +-1.456839,-1.456839,-1.456839,-1.456839,-1.456839,-1.456839 +-1.459964,-1.459964,-1.459964,-1.459964,-1.459964,-1.459964 +-1.463089,-1.463089,-1.463089,-1.463089,-1.463089,-1.463089 +-1.466214,-1.466214,-1.466214,-1.466214,-1.466214,-1.466214 +-1.469339,-1.469339,-1.469339,-1.469339,-1.469339,-1.469339 +-1.472464,-1.472464,-1.472464,-1.472464,-1.472464,-1.472464 +-1.475589,-1.475589,-1.475589,-1.475589,-1.475589,-1.475589 +-1.478714,-1.478714,-1.478714,-1.478714,-1.478714,-1.478714 +-1.481839,-1.481839,-1.481839,-1.481839,-1.481839,-1.481839 +-1.484964,-1.484964,-1.484964,-1.484964,-1.484964,-1.484964 +-1.488089,-1.488089,-1.488089,-1.488089,-1.488089,-1.488089 +-1.491214,-1.491214,-1.491214,-1.491214,-1.491214,-1.491214 +-1.494339,-1.494339,-1.494339,-1.494339,-1.494339,-1.494339 +-1.497464,-1.497464,-1.497464,-1.497464,-1.497464,-1.497464 +-1.500589,-1.500589,-1.500589,-1.500589,-1.500589,-1.500589 +-1.503714,-1.503714,-1.503714,-1.503714,-1.503714,-1.503714 +-1.506839,-1.506839,-1.506839,-1.506839,-1.506839,-1.506839 +-1.509964,-1.509964,-1.509964,-1.509964,-1.509964,-1.509964 +-1.513089,-1.513089,-1.513089,-1.513089,-1.513089,-1.513089 +-1.516214,-1.516214,-1.516214,-1.516214,-1.516214,-1.516214 +-1.519339,-1.519339,-1.519339,-1.519339,-1.519339,-1.519339 +-1.522464,-1.522464,-1.522464,-1.522464,-1.522464,-1.522464 +-1.525589,-1.525589,-1.525589,-1.525589,-1.525589,-1.525589 +-1.528714,-1.528714,-1.528714,-1.528714,-1.528714,-1.528714 +-1.531839,-1.531839,-1.531839,-1.531839,-1.531839,-1.531839 +-1.534964,-1.534964,-1.534964,-1.534964,-1.534964,-1.534964 +-1.538089,-1.538089,-1.538089,-1.538089,-1.538089,-1.538089 +-1.541214,-1.541214,-1.541214,-1.541214,-1.541214,-1.541214 +-1.544339,-1.544339,-1.544339,-1.544339,-1.544339,-1.544339 +-1.547464,-1.547464,-1.547464,-1.547464,-1.547464,-1.547464 +-1.550589,-1.550589,-1.550589,-1.550589,-1.550589,-1.550589 +-1.553714,-1.553714,-1.553714,-1.553714,-1.553714,-1.553714 +-1.556839,-1.556839,-1.556839,-1.556839,-1.556839,-1.556839 +-1.559964,-1.559964,-1.559964,-1.559964,-1.559964,-1.559964 +-1.563089,-1.563089,-1.563089,-1.563089,-1.563089,-1.563089 +-1.566214,-1.566214,-1.566214,-1.566214,-1.566214,-1.566214 +-1.569339,-1.569339,-1.569339,-1.569339,-1.569339,-1.569339 +-1.572464,-1.572464,-1.572464,-1.572464,-1.572464,-1.572464 +-1.575589,-1.575589,-1.575589,-1.575589,-1.575589,-1.575589 +-1.578714,-1.578714,-1.578714,-1.578714,-1.578714,-1.578714 +-1.581839,-1.581839,-1.581839,-1.581839,-1.581839,-1.581839 +-1.584964,-1.584964,-1.584964,-1.584964,-1.584964,-1.584964 +-1.588089,-1.588089,-1.588089,-1.588089,-1.588089,-1.588089 +-1.591214,-1.591214,-1.591214,-1.591214,-1.591214,-1.591214 +-1.594339,-1.594339,-1.594339,-1.594339,-1.594339,-1.594339 +-1.597464,-1.597464,-1.597464,-1.597464,-1.597464,-1.597464 +-1.600589,-1.600589,-1.600589,-1.600589,-1.600589,-1.600589 +-1.603714,-1.603714,-1.603714,-1.603714,-1.603714,-1.603714 +-1.606839,-1.606839,-1.606839,-1.606839,-1.606839,-1.606839 +-1.609964,-1.609964,-1.609964,-1.609964,-1.609964,-1.609964 +-1.613089,-1.613089,-1.613089,-1.613089,-1.613089,-1.613089 +-1.616214,-1.616214,-1.616214,-1.616214,-1.616214,-1.616214 +-1.619339,-1.619339,-1.619339,-1.619339,-1.619339,-1.619339 +-1.622464,-1.622464,-1.622464,-1.622464,-1.622464,-1.622464 +-1.625589,-1.625589,-1.625589,-1.625589,-1.625589,-1.625589 +-1.628714,-1.628714,-1.628714,-1.628714,-1.628714,-1.628714 +-1.631839,-1.631839,-1.631839,-1.631839,-1.631839,-1.631839 +-1.634964,-1.634964,-1.634964,-1.634964,-1.634964,-1.634964 +-1.638089,-1.638089,-1.638089,-1.638089,-1.638089,-1.638089 +-1.641214,-1.641214,-1.641214,-1.641214,-1.641214,-1.641214 +-1.644339,-1.644339,-1.644339,-1.644339,-1.644339,-1.644339 +-1.647464,-1.647464,-1.647464,-1.647464,-1.647464,-1.647464 +-1.650589,-1.650589,-1.650589,-1.650589,-1.650589,-1.650589 +-1.653714,-1.653714,-1.653714,-1.653714,-1.653714,-1.653714 +-1.656839,-1.656839,-1.656839,-1.656839,-1.656839,-1.656839 +-1.659964,-1.659964,-1.659964,-1.659964,-1.659964,-1.659964 +-1.663089,-1.663089,-1.663089,-1.663089,-1.663089,-1.663089 +-1.666214,-1.666214,-1.666214,-1.666214,-1.666214,-1.666214 +-1.669339,-1.669339,-1.669339,-1.669339,-1.669339,-1.669339 +-1.672464,-1.672464,-1.672464,-1.672464,-1.672464,-1.672464 +-1.675589,-1.675589,-1.675589,-1.675589,-1.675589,-1.675589 +-1.678714,-1.678714,-1.678714,-1.678714,-1.678714,-1.678714 +-1.681839,-1.681839,-1.681839,-1.681839,-1.681839,-1.681839 +-1.684964,-1.684964,-1.684964,-1.684964,-1.684964,-1.684964 +-1.688089,-1.688089,-1.688089,-1.688089,-1.688089,-1.688089 +-1.691214,-1.691214,-1.691214,-1.691214,-1.691214,-1.691214 +-1.694339,-1.694339,-1.694339,-1.694339,-1.694339,-1.694339 +-1.697464,-1.697464,-1.697464,-1.697464,-1.697464,-1.697464 +-1.700582,-1.700582,-1.700582,-1.700582,-1.700582,-1.700582 +-1.703682,-1.703682,-1.703682,-1.703682,-1.703682,-1.703682 +-1.70675,-1.70675,-1.70675,-1.70675,-1.70675,-1.70675 +-1.709774,-1.709774,-1.709774,-1.709774,-1.709774,-1.709774 +-1.712742,-1.712742,-1.712742,-1.712742,-1.712742,-1.712742 +-1.715641,-1.715641,-1.715641,-1.715641,-1.715641,-1.715641 +-1.718459,-1.718459,-1.718459,-1.718459,-1.718459,-1.718459 +-1.721183,-1.721183,-1.721183,-1.721183,-1.721183,-1.721183 +-1.723801,-1.723801,-1.723801,-1.723801,-1.723801,-1.723801 +-1.7263,-1.7263,-1.7263,-1.7263,-1.7263,-1.7263 +-1.728668,-1.728668,-1.728668,-1.728668,-1.728668,-1.728668 +-1.730891,-1.730891,-1.730891,-1.730891,-1.730891,-1.730891 +-1.732959,-1.732959,-1.732959,-1.732959,-1.732959,-1.732959 +-1.734858,-1.734858,-1.734858,-1.734858,-1.734858,-1.734858 +-1.736575,-1.736575,-1.736575,-1.736575,-1.736575,-1.736575 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.739437,-1.739437,-1.739437,-1.739437,-1.739437,-1.739437 +-1.740596,-1.740596,-1.740596,-1.740596,-1.740596,-1.740596 +-1.741592,-1.741592,-1.741592,-1.741592,-1.741592,-1.741592 +-1.742436,-1.742436,-1.742436,-1.742436,-1.742436,-1.742436 +-1.743142,-1.743142,-1.743142,-1.743142,-1.743142,-1.743142 +-1.74372,-1.74372,-1.74372,-1.74372,-1.74372,-1.74372 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.744548,-1.744548,-1.744548,-1.744548,-1.744548,-1.744548 +-1.744823,-1.744823,-1.744823,-1.744823,-1.744823,-1.744823 +-1.745021,-1.745021,-1.745021,-1.745021,-1.745021,-1.745021 +-1.745154,-1.745154,-1.745154,-1.745154,-1.745154,-1.745154 +-1.745237,-1.745237,-1.745237,-1.745237,-1.745237,-1.745237 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.745244,-1.745244,-1.745244,-1.745244,-1.745244,-1.745244 +-1.745167,-1.745167,-1.745167,-1.745167,-1.745167,-1.745167 +-1.74504,-1.74504,-1.74504,-1.74504,-1.74504,-1.74504 +-1.74485,-1.74485,-1.74485,-1.74485,-1.74485,-1.74485 +-1.744585,-1.744585,-1.744585,-1.744585,-1.744585,-1.744585 +-1.744233,-1.744233,-1.744233,-1.744233,-1.744233,-1.744233 +-1.743781,-1.743781,-1.743781,-1.743781,-1.743781,-1.743781 +-1.743217,-1.743217,-1.743217,-1.743217,-1.743217,-1.743217 +-1.742527,-1.742527,-1.742527,-1.742527,-1.742527,-1.742527 +-1.7417,-1.7417,-1.7417,-1.7417,-1.7417,-1.7417 +-1.740723,-1.740723,-1.740723,-1.740723,-1.740723,-1.740723 +-1.739583,-1.739583,-1.739583,-1.739583,-1.739583,-1.739583 +-1.738269,-1.738269,-1.738269,-1.738269,-1.738269,-1.738269 +-1.736767,-1.736767,-1.736767,-1.736767,-1.736767,-1.736767 +-1.735072,-1.735072,-1.735072,-1.735072,-1.735072,-1.735072 +-1.733194,-1.733194,-1.733194,-1.733194,-1.733194,-1.733194 +-1.731145,-1.731145,-1.731145,-1.731145,-1.731145,-1.731145 +-1.72894,-1.72894,-1.72894,-1.72894,-1.72894,-1.72894 +-1.726588,-1.726588,-1.726588,-1.726588,-1.726588,-1.726588 +-1.724104,-1.724104,-1.724104,-1.724104,-1.724104,-1.724104 +-1.7215,-1.7215,-1.7215,-1.7215,-1.7215,-1.7215 +-1.718788,-1.718788,-1.718788,-1.718788,-1.718788,-1.718788 +-1.71598,-1.71598,-1.71598,-1.71598,-1.71598,-1.71598 +-1.71309,-1.71309,-1.71309,-1.71309,-1.71309,-1.71309 +-1.71013,-1.71013,-1.71013,-1.71013,-1.71013,-1.71013 +-1.707112,-1.707112,-1.707112,-1.707112,-1.707112,-1.707112 +-1.704048,-1.704048,-1.704048,-1.704048,-1.704048,-1.704048 +-1.700952,-1.700952,-1.700952,-1.700952,-1.700952,-1.700952 +-1.697835,-1.697835,-1.697835,-1.697835,-1.697835,-1.697835 +-1.694711,-1.694711,-1.694711,-1.694711,-1.694711,-1.694711 +-1.691586,-1.691586,-1.691586,-1.691586,-1.691586,-1.691586 +-1.688461,-1.688461,-1.688461,-1.688461,-1.688461,-1.688461 +-1.685336,-1.685336,-1.685336,-1.685336,-1.685336,-1.685336 +-1.682211,-1.682211,-1.682211,-1.682211,-1.682211,-1.682211 +-1.679086,-1.679086,-1.679086,-1.679086,-1.679086,-1.679086 +-1.675961,-1.675961,-1.675961,-1.675961,-1.675961,-1.675961 +-1.672836,-1.672836,-1.672836,-1.672836,-1.672836,-1.672836 +-1.669711,-1.669711,-1.669711,-1.669711,-1.669711,-1.669711 +-1.666586,-1.666586,-1.666586,-1.666586,-1.666586,-1.666586 +-1.663461,-1.663461,-1.663461,-1.663461,-1.663461,-1.663461 +-1.660336,-1.660336,-1.660336,-1.660336,-1.660336,-1.660336 +-1.657211,-1.657211,-1.657211,-1.657211,-1.657211,-1.657211 +-1.654086,-1.654086,-1.654086,-1.654086,-1.654086,-1.654086 +-1.650961,-1.650961,-1.650961,-1.650961,-1.650961,-1.650961 +-1.647836,-1.647836,-1.647836,-1.647836,-1.647836,-1.647836 +-1.644711,-1.644711,-1.644711,-1.644711,-1.644711,-1.644711 +-1.641586,-1.641586,-1.641586,-1.641586,-1.641586,-1.641586 +-1.638461,-1.638461,-1.638461,-1.638461,-1.638461,-1.638461 +-1.635336,-1.635336,-1.635336,-1.635336,-1.635336,-1.635336 +-1.632211,-1.632211,-1.632211,-1.632211,-1.632211,-1.632211 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.625961,-1.625961,-1.625961,-1.625961,-1.625961,-1.625961 +-1.622836,-1.622836,-1.622836,-1.622836,-1.622836,-1.622836 +-1.619711,-1.619711,-1.619711,-1.619711,-1.619711,-1.619711 +-1.616586,-1.616586,-1.616586,-1.616586,-1.616586,-1.616586 +-1.613461,-1.613461,-1.613461,-1.613461,-1.613461,-1.613461 +-1.610336,-1.610336,-1.610336,-1.610336,-1.610336,-1.610336 +-1.607211,-1.607211,-1.607211,-1.607211,-1.607211,-1.607211 +-1.604086,-1.604086,-1.604086,-1.604086,-1.604086,-1.604086 +-1.600961,-1.600961,-1.600961,-1.600961,-1.600961,-1.600961 +-1.597836,-1.597836,-1.597836,-1.597836,-1.597836,-1.597836 +-1.594711,-1.594711,-1.594711,-1.594711,-1.594711,-1.594711 +-1.591586,-1.591586,-1.591586,-1.591586,-1.591586,-1.591586 +-1.588461,-1.588461,-1.588461,-1.588461,-1.588461,-1.588461 +-1.585336,-1.585336,-1.585336,-1.585336,-1.585336,-1.585336 +-1.582211,-1.582211,-1.582211,-1.582211,-1.582211,-1.582211 +-1.579086,-1.579086,-1.579086,-1.579086,-1.579086,-1.579086 +-1.575961,-1.575961,-1.575961,-1.575961,-1.575961,-1.575961 +-1.572836,-1.572836,-1.572836,-1.572836,-1.572836,-1.572836 +-1.569711,-1.569711,-1.569711,-1.569711,-1.569711,-1.569711 +-1.566586,-1.566586,-1.566586,-1.566586,-1.566586,-1.566586 +-1.563461,-1.563461,-1.563461,-1.563461,-1.563461,-1.563461 +-1.560336,-1.560336,-1.560336,-1.560336,-1.560336,-1.560336 +-1.557211,-1.557211,-1.557211,-1.557211,-1.557211,-1.557211 +-1.554086,-1.554086,-1.554086,-1.554086,-1.554086,-1.554086 +-1.550961,-1.550961,-1.550961,-1.550961,-1.550961,-1.550961 +-1.547836,-1.547836,-1.547836,-1.547836,-1.547836,-1.547836 +-1.544711,-1.544711,-1.544711,-1.544711,-1.544711,-1.544711 +-1.541586,-1.541586,-1.541586,-1.541586,-1.541586,-1.541586 +-1.538461,-1.538461,-1.538461,-1.538461,-1.538461,-1.538461 +-1.535336,-1.535336,-1.535336,-1.535336,-1.535336,-1.535336 +-1.532211,-1.532211,-1.532211,-1.532211,-1.532211,-1.532211 +-1.529086,-1.529086,-1.529086,-1.529086,-1.529086,-1.529086 +-1.525961,-1.525961,-1.525961,-1.525961,-1.525961,-1.525961 +-1.522836,-1.522836,-1.522836,-1.522836,-1.522836,-1.522836 +-1.519711,-1.519711,-1.519711,-1.519711,-1.519711,-1.519711 +-1.516586,-1.516586,-1.516586,-1.516586,-1.516586,-1.516586 +-1.513461,-1.513461,-1.513461,-1.513461,-1.513461,-1.513461 +-1.510336,-1.510336,-1.510336,-1.510336,-1.510336,-1.510336 +-1.507211,-1.507211,-1.507211,-1.507211,-1.507211,-1.507211 +-1.504086,-1.504086,-1.504086,-1.504086,-1.504086,-1.504086 +-1.500961,-1.500961,-1.500961,-1.500961,-1.500961,-1.500961 +-1.497836,-1.497836,-1.497836,-1.497836,-1.497836,-1.497836 +-1.494711,-1.494711,-1.494711,-1.494711,-1.494711,-1.494711 +-1.491586,-1.491586,-1.491586,-1.491586,-1.491586,-1.491586 +-1.488461,-1.488461,-1.488461,-1.488461,-1.488461,-1.488461 +-1.485336,-1.485336,-1.485336,-1.485336,-1.485336,-1.485336 +-1.482211,-1.482211,-1.482211,-1.482211,-1.482211,-1.482211 +-1.479086,-1.479086,-1.479086,-1.479086,-1.479086,-1.479086 +-1.475961,-1.475961,-1.475961,-1.475961,-1.475961,-1.475961 +-1.472836,-1.472836,-1.472836,-1.472836,-1.472836,-1.472836 +-1.469711,-1.469711,-1.469711,-1.469711,-1.469711,-1.469711 +-1.466586,-1.466586,-1.466586,-1.466586,-1.466586,-1.466586 +-1.463461,-1.463461,-1.463461,-1.463461,-1.463461,-1.463461 +-1.460336,-1.460336,-1.460336,-1.460336,-1.460336,-1.460336 +-1.457211,-1.457211,-1.457211,-1.457211,-1.457211,-1.457211 +-1.454086,-1.454086,-1.454086,-1.454086,-1.454086,-1.454086 +-1.450961,-1.450961,-1.450961,-1.450961,-1.450961,-1.450961 +-1.447836,-1.447836,-1.447836,-1.447836,-1.447836,-1.447836 +-1.444711,-1.444711,-1.444711,-1.444711,-1.444711,-1.444711 +-1.441586,-1.441586,-1.441586,-1.441586,-1.441586,-1.441586 +-1.438461,-1.438461,-1.438461,-1.438461,-1.438461,-1.438461 +-1.435336,-1.435336,-1.435336,-1.435336,-1.435336,-1.435336 +-1.432211,-1.432211,-1.432211,-1.432211,-1.432211,-1.432211 +-1.429086,-1.429086,-1.429086,-1.429086,-1.429086,-1.429086 +-1.425961,-1.425961,-1.425961,-1.425961,-1.425961,-1.425961 +-1.422836,-1.422836,-1.422836,-1.422836,-1.422836,-1.422836 +-1.419711,-1.419711,-1.419711,-1.419711,-1.419711,-1.419711 +-1.416586,-1.416586,-1.416586,-1.416586,-1.416586,-1.416586 +-1.413461,-1.413461,-1.413461,-1.413461,-1.413461,-1.413461 +-1.410336,-1.410336,-1.410336,-1.410336,-1.410336,-1.410336 +-1.407211,-1.407211,-1.407211,-1.407211,-1.407211,-1.407211 +-1.404086,-1.404086,-1.404086,-1.404086,-1.404086,-1.404086 +-1.400961,-1.400961,-1.400961,-1.400961,-1.400961,-1.400961 +-1.397836,-1.397836,-1.397836,-1.397836,-1.397836,-1.397836 +-1.394711,-1.394711,-1.394711,-1.394711,-1.394711,-1.394711 +-1.391586,-1.391586,-1.391586,-1.391586,-1.391586,-1.391586 +-1.388461,-1.388461,-1.388461,-1.388461,-1.388461,-1.388461 +-1.385336,-1.385336,-1.385336,-1.385336,-1.385336,-1.385336 +-1.382211,-1.382211,-1.382211,-1.382211,-1.382211,-1.382211 +-1.379086,-1.379086,-1.379086,-1.379086,-1.379086,-1.379086 +-1.375961,-1.375961,-1.375961,-1.375961,-1.375961,-1.375961 +-1.372836,-1.372836,-1.372836,-1.372836,-1.372836,-1.372836 +-1.369711,-1.369711,-1.369711,-1.369711,-1.369711,-1.369711 +-1.366586,-1.366586,-1.366586,-1.366586,-1.366586,-1.366586 +-1.363461,-1.363461,-1.363461,-1.363461,-1.363461,-1.363461 +-1.360336,-1.360336,-1.360336,-1.360336,-1.360336,-1.360336 +-1.357211,-1.357211,-1.357211,-1.357211,-1.357211,-1.357211 +-1.354086,-1.354086,-1.354086,-1.354086,-1.354086,-1.354086 +-1.350961,-1.350961,-1.350961,-1.350961,-1.350961,-1.350961 +-1.347836,-1.347836,-1.347836,-1.347836,-1.347836,-1.347836 +-1.344711,-1.344711,-1.344711,-1.344711,-1.344711,-1.344711 +-1.341586,-1.341586,-1.341586,-1.341586,-1.341586,-1.341586 +-1.338461,-1.338461,-1.338461,-1.338461,-1.338461,-1.338461 +-1.335336,-1.335336,-1.335336,-1.335336,-1.335336,-1.335336 +-1.332211,-1.332211,-1.332211,-1.332211,-1.332211,-1.332211 +-1.329086,-1.329086,-1.329086,-1.329086,-1.329086,-1.329086 +-1.325961,-1.325961,-1.325961,-1.325961,-1.325961,-1.325961 +-1.322836,-1.322836,-1.322836,-1.322836,-1.322836,-1.322836 +-1.319711,-1.319711,-1.319711,-1.319711,-1.319711,-1.319711 +-1.316586,-1.316586,-1.316586,-1.316586,-1.316586,-1.316586 +-1.313461,-1.313461,-1.313461,-1.313461,-1.313461,-1.313461 +-1.310336,-1.310336,-1.310336,-1.310336,-1.310336,-1.310336 +-1.307211,-1.307211,-1.307211,-1.307211,-1.307211,-1.307211 +-1.304086,-1.304086,-1.304086,-1.304086,-1.304086,-1.304086 +-1.300961,-1.300961,-1.300961,-1.300961,-1.300961,-1.300961 +-1.297836,-1.297836,-1.297836,-1.297836,-1.297836,-1.297836 +-1.294711,-1.294711,-1.294711,-1.294711,-1.294711,-1.294711 +-1.291586,-1.291586,-1.291586,-1.291586,-1.291586,-1.291586 +-1.288461,-1.288461,-1.288461,-1.288461,-1.288461,-1.288461 +-1.285336,-1.285336,-1.285336,-1.285336,-1.285336,-1.285336 +-1.282211,-1.282211,-1.282211,-1.282211,-1.282211,-1.282211 +-1.279086,-1.279086,-1.279086,-1.279086,-1.279086,-1.279086 +-1.275961,-1.275961,-1.275961,-1.275961,-1.275961,-1.275961 +-1.272836,-1.272836,-1.272836,-1.272836,-1.272836,-1.272836 +-1.269711,-1.269711,-1.269711,-1.269711,-1.269711,-1.269711 +-1.266586,-1.266586,-1.266586,-1.266586,-1.266586,-1.266586 +-1.263461,-1.263461,-1.263461,-1.263461,-1.263461,-1.263461 +-1.260336,-1.260336,-1.260336,-1.260336,-1.260336,-1.260336 +-1.257211,-1.257211,-1.257211,-1.257211,-1.257211,-1.257211 +-1.254086,-1.254086,-1.254086,-1.254086,-1.254086,-1.254086 +-1.250961,-1.250961,-1.250961,-1.250961,-1.250961,-1.250961 +-1.247836,-1.247836,-1.247836,-1.247836,-1.247836,-1.247836 +-1.244711,-1.244711,-1.244711,-1.244711,-1.244711,-1.244711 +-1.241586,-1.241586,-1.241586,-1.241586,-1.241586,-1.241586 +-1.238461,-1.238461,-1.238461,-1.238461,-1.238461,-1.238461 +-1.235336,-1.235336,-1.235336,-1.235336,-1.235336,-1.235336 +-1.232211,-1.232211,-1.232211,-1.232211,-1.232211,-1.232211 +-1.229086,-1.229086,-1.229086,-1.229086,-1.229086,-1.229086 +-1.225961,-1.225961,-1.225961,-1.225961,-1.225961,-1.225961 +-1.222836,-1.222836,-1.222836,-1.222836,-1.222836,-1.222836 +-1.219711,-1.219711,-1.219711,-1.219711,-1.219711,-1.219711 +-1.216586,-1.216586,-1.216586,-1.216586,-1.216586,-1.216586 +-1.213461,-1.213461,-1.213461,-1.213461,-1.213461,-1.213461 +-1.210336,-1.210336,-1.210336,-1.210336,-1.210336,-1.210336 +-1.207211,-1.207211,-1.207211,-1.207211,-1.207211,-1.207211 +-1.204086,-1.204086,-1.204086,-1.204086,-1.204086,-1.204086 +-1.200961,-1.200961,-1.200961,-1.200961,-1.200961,-1.200961 +-1.197836,-1.197836,-1.197836,-1.197836,-1.197836,-1.197836 +-1.194711,-1.194711,-1.194711,-1.194711,-1.194711,-1.194711 +-1.191586,-1.191586,-1.191586,-1.191586,-1.191586,-1.191586 +-1.188461,-1.188461,-1.188461,-1.188461,-1.188461,-1.188461 +-1.185336,-1.185336,-1.185336,-1.185336,-1.185336,-1.185336 +-1.182211,-1.182211,-1.182211,-1.182211,-1.182211,-1.182211 +-1.179086,-1.179086,-1.179086,-1.179086,-1.179086,-1.179086 +-1.175961,-1.175961,-1.175961,-1.175961,-1.175961,-1.175961 +-1.172836,-1.172836,-1.172836,-1.172836,-1.172836,-1.172836 +-1.169711,-1.169711,-1.169711,-1.169711,-1.169711,-1.169711 +-1.166586,-1.166586,-1.166586,-1.166586,-1.166586,-1.166586 +-1.163461,-1.163461,-1.163461,-1.163461,-1.163461,-1.163461 +-1.160336,-1.160336,-1.160336,-1.160336,-1.160336,-1.160336 +-1.157211,-1.157211,-1.157211,-1.157211,-1.157211,-1.157211 +-1.154086,-1.154086,-1.154086,-1.154086,-1.154086,-1.154086 +-1.150961,-1.150961,-1.150961,-1.150961,-1.150961,-1.150961 +-1.147836,-1.147836,-1.147836,-1.147836,-1.147836,-1.147836 +-1.144711,-1.144711,-1.144711,-1.144711,-1.144711,-1.144711 +-1.141586,-1.141586,-1.141586,-1.141586,-1.141586,-1.141586 +-1.138461,-1.138461,-1.138461,-1.138461,-1.138461,-1.138461 +-1.135336,-1.135336,-1.135336,-1.135336,-1.135336,-1.135336 +-1.132211,-1.132211,-1.132211,-1.132211,-1.132211,-1.132211 +-1.129086,-1.129086,-1.129086,-1.129086,-1.129086,-1.129086 +-1.125961,-1.125961,-1.125961,-1.125961,-1.125961,-1.125961 +-1.122836,-1.122836,-1.122836,-1.122836,-1.122836,-1.122836 +-1.119711,-1.119711,-1.119711,-1.119711,-1.119711,-1.119711 +-1.116586,-1.116586,-1.116586,-1.116586,-1.116586,-1.116586 +-1.113461,-1.113461,-1.113461,-1.113461,-1.113461,-1.113461 +-1.110336,-1.110336,-1.110336,-1.110336,-1.110336,-1.110336 +-1.107211,-1.107211,-1.107211,-1.107211,-1.107211,-1.107211 +-1.104086,-1.104086,-1.104086,-1.104086,-1.104086,-1.104086 +-1.100961,-1.100961,-1.100961,-1.100961,-1.100961,-1.100961 +-1.097836,-1.097836,-1.097836,-1.097836,-1.097836,-1.097836 +-1.094711,-1.094711,-1.094711,-1.094711,-1.094711,-1.094711 +-1.091586,-1.091586,-1.091586,-1.091586,-1.091586,-1.091586 +-1.088461,-1.088461,-1.088461,-1.088461,-1.088461,-1.088461 +-1.085336,-1.085336,-1.085336,-1.085336,-1.085336,-1.085336 +-1.082211,-1.082211,-1.082211,-1.082211,-1.082211,-1.082211 +-1.079086,-1.079086,-1.079086,-1.079086,-1.079086,-1.079086 +-1.075961,-1.075961,-1.075961,-1.075961,-1.075961,-1.075961 +-1.072836,-1.072836,-1.072836,-1.072836,-1.072836,-1.072836 +-1.069711,-1.069711,-1.069711,-1.069711,-1.069711,-1.069711 +-1.066586,-1.066586,-1.066586,-1.066586,-1.066586,-1.066586 +-1.063461,-1.063461,-1.063461,-1.063461,-1.063461,-1.063461 +-1.060336,-1.060336,-1.060336,-1.060336,-1.060336,-1.060336 +-1.057211,-1.057211,-1.057211,-1.057211,-1.057211,-1.057211 +-1.054086,-1.054086,-1.054086,-1.054086,-1.054086,-1.054086 +-1.050961,-1.050961,-1.050961,-1.050961,-1.050961,-1.050961 +-1.047836,-1.047836,-1.047836,-1.047836,-1.047836,-1.047836 +-1.044711,-1.044711,-1.044711,-1.044711,-1.044711,-1.044711 +-1.041586,-1.041586,-1.041586,-1.041586,-1.041586,-1.041586 +-1.038461,-1.038461,-1.038461,-1.038461,-1.038461,-1.038461 +-1.035336,-1.035336,-1.035336,-1.035336,-1.035336,-1.035336 +-1.032211,-1.032211,-1.032211,-1.032211,-1.032211,-1.032211 +-1.029086,-1.029086,-1.029086,-1.029086,-1.029086,-1.029086 +-1.025961,-1.025961,-1.025961,-1.025961,-1.025961,-1.025961 +-1.022836,-1.022836,-1.022836,-1.022836,-1.022836,-1.022836 +-1.019711,-1.019711,-1.019711,-1.019711,-1.019711,-1.019711 +-1.016586,-1.016586,-1.016586,-1.016586,-1.016586,-1.016586 +-1.013461,-1.013461,-1.013461,-1.013461,-1.013461,-1.013461 +-1.010336,-1.010336,-1.010336,-1.010336,-1.010336,-1.010336 +-1.007211,-1.007211,-1.007211,-1.007211,-1.007211,-1.007211 +-1.004086,-1.004086,-1.004086,-1.004086,-1.004086,-1.004086 +-1.000961,-1.000961,-1.000961,-1.000961,-1.000961,-1.000961 +-0.997836,-0.997836,-0.997836,-0.997836,-0.997836,-0.997836 +-0.994711,-0.994711,-0.994711,-0.994711,-0.994711,-0.994711 +-0.991586,-0.991586,-0.991586,-0.991586,-0.991586,-0.991586 +-0.988461,-0.988461,-0.988461,-0.988461,-0.988461,-0.988461 +-0.985336,-0.985336,-0.985336,-0.985336,-0.985336,-0.985336 +-0.982211,-0.982211,-0.982211,-0.982211,-0.982211,-0.982211 +-0.979086,-0.979086,-0.979086,-0.979086,-0.979086,-0.979086 +-0.975961,-0.975961,-0.975961,-0.975961,-0.975961,-0.975961 +-0.972836,-0.972836,-0.972836,-0.972836,-0.972836,-0.972836 +-0.969711,-0.969711,-0.969711,-0.969711,-0.969711,-0.969711 +-0.966586,-0.966586,-0.966586,-0.966586,-0.966586,-0.966586 +-0.963461,-0.963461,-0.963461,-0.963461,-0.963461,-0.963461 +-0.960336,-0.960336,-0.960336,-0.960336,-0.960336,-0.960336 +-0.957211,-0.957211,-0.957211,-0.957211,-0.957211,-0.957211 +-0.954086,-0.954086,-0.954086,-0.954086,-0.954086,-0.954086 +-0.950961,-0.950961,-0.950961,-0.950961,-0.950961,-0.950961 +-0.947836,-0.947836,-0.947836,-0.947836,-0.947836,-0.947836 +-0.944711,-0.944711,-0.944711,-0.944711,-0.944711,-0.944711 +-0.941586,-0.941586,-0.941586,-0.941586,-0.941586,-0.941586 +-0.938461,-0.938461,-0.938461,-0.938461,-0.938461,-0.938461 +-0.935336,-0.935336,-0.935336,-0.935336,-0.935336,-0.935336 +-0.932211,-0.932211,-0.932211,-0.932211,-0.932211,-0.932211 +-0.929086,-0.929086,-0.929086,-0.929086,-0.929086,-0.929086 +-0.925961,-0.925961,-0.925961,-0.925961,-0.925961,-0.925961 +-0.922836,-0.922836,-0.922836,-0.922836,-0.922836,-0.922836 +-0.919711,-0.919711,-0.919711,-0.919711,-0.919711,-0.919711 +-0.916586,-0.916586,-0.916586,-0.916586,-0.916586,-0.916586 +-0.913461,-0.913461,-0.913461,-0.913461,-0.913461,-0.913461 +-0.910336,-0.910336,-0.910336,-0.910336,-0.910336,-0.910336 +-0.907211,-0.907211,-0.907211,-0.907211,-0.907211,-0.907211 +-0.904086,-0.904086,-0.904086,-0.904086,-0.904086,-0.904086 +-0.900961,-0.900961,-0.900961,-0.900961,-0.900961,-0.900961 +-0.897836,-0.897836,-0.897836,-0.897836,-0.897836,-0.897836 +-0.894711,-0.894711,-0.894711,-0.894711,-0.894711,-0.894711 +-0.891586,-0.891586,-0.891586,-0.891586,-0.891586,-0.891586 +-0.888461,-0.888461,-0.888461,-0.888461,-0.888461,-0.888461 +-0.885336,-0.885336,-0.885336,-0.885336,-0.885336,-0.885336 +-0.882211,-0.882211,-0.882211,-0.882211,-0.882211,-0.882211 +-0.879086,-0.879086,-0.879086,-0.879086,-0.879086,-0.879086 +-0.875961,-0.875961,-0.875961,-0.875961,-0.875961,-0.875961 +-0.872836,-0.872836,-0.872836,-0.872836,-0.872836,-0.872836 +-0.869711,-0.869711,-0.869711,-0.869711,-0.869711,-0.869711 +-0.866586,-0.866586,-0.866586,-0.866586,-0.866586,-0.866586 +-0.863461,-0.863461,-0.863461,-0.863461,-0.863461,-0.863461 +-0.860336,-0.860336,-0.860336,-0.860336,-0.860336,-0.860336 +-0.857211,-0.857211,-0.857211,-0.857211,-0.857211,-0.857211 +-0.854086,-0.854086,-0.854086,-0.854086,-0.854086,-0.854086 +-0.850961,-0.850961,-0.850961,-0.850961,-0.850961,-0.850961 +-0.847836,-0.847836,-0.847836,-0.847836,-0.847836,-0.847836 +-0.844711,-0.844711,-0.844711,-0.844711,-0.844711,-0.844711 +-0.841586,-0.841586,-0.841586,-0.841586,-0.841586,-0.841586 +-0.838461,-0.838461,-0.838461,-0.838461,-0.838461,-0.838461 +-0.835336,-0.835336,-0.835336,-0.835336,-0.835336,-0.835336 +-0.832211,-0.832211,-0.832211,-0.832211,-0.832211,-0.832211 +-0.829086,-0.829086,-0.829086,-0.829086,-0.829086,-0.829086 +-0.825961,-0.825961,-0.825961,-0.825961,-0.825961,-0.825961 +-0.822836,-0.822836,-0.822836,-0.822836,-0.822836,-0.822836 +-0.819711,-0.819711,-0.819711,-0.819711,-0.819711,-0.819711 +-0.816586,-0.816586,-0.816586,-0.816586,-0.816586,-0.816586 +-0.813461,-0.813461,-0.813461,-0.813461,-0.813461,-0.813461 +-0.810336,-0.810336,-0.810336,-0.810336,-0.810336,-0.810336 +-0.807211,-0.807211,-0.807211,-0.807211,-0.807211,-0.807211 +-0.804086,-0.804086,-0.804086,-0.804086,-0.804086,-0.804086 +-0.800961,-0.800961,-0.800961,-0.800961,-0.800961,-0.800961 +-0.797836,-0.797836,-0.797836,-0.797836,-0.797836,-0.797836 +-0.794711,-0.794711,-0.794711,-0.794711,-0.794711,-0.794711 +-0.791586,-0.791586,-0.791586,-0.791586,-0.791586,-0.791586 +-0.788461,-0.788461,-0.788461,-0.788461,-0.788461,-0.788461 +-0.785336,-0.785336,-0.785336,-0.785336,-0.785336,-0.785336 +-0.782211,-0.782211,-0.782211,-0.782211,-0.782211,-0.782211 +-0.779086,-0.779086,-0.779086,-0.779086,-0.779086,-0.779086 +-0.775961,-0.775961,-0.775961,-0.775961,-0.775961,-0.775961 +-0.772836,-0.772836,-0.772836,-0.772836,-0.772836,-0.772836 +-0.769711,-0.769711,-0.769711,-0.769711,-0.769711,-0.769711 +-0.766586,-0.766586,-0.766586,-0.766586,-0.766586,-0.766586 +-0.763461,-0.763461,-0.763461,-0.763461,-0.763461,-0.763461 +-0.760336,-0.760336,-0.760336,-0.760336,-0.760336,-0.760336 +-0.757211,-0.757211,-0.757211,-0.757211,-0.757211,-0.757211 +-0.754086,-0.754086,-0.754086,-0.754086,-0.754086,-0.754086 +-0.750961,-0.750961,-0.750961,-0.750961,-0.750961,-0.750961 +-0.747836,-0.747836,-0.747836,-0.747836,-0.747836,-0.747836 +-0.744711,-0.744711,-0.744711,-0.744711,-0.744711,-0.744711 +-0.741586,-0.741586,-0.741586,-0.741586,-0.741586,-0.741586 +-0.738461,-0.738461,-0.738461,-0.738461,-0.738461,-0.738461 +-0.735336,-0.735336,-0.735336,-0.735336,-0.735336,-0.735336 +-0.732211,-0.732211,-0.732211,-0.732211,-0.732211,-0.732211 +-0.729086,-0.729086,-0.729086,-0.729086,-0.729086,-0.729086 +-0.725961,-0.725961,-0.725961,-0.725961,-0.725961,-0.725961 +-0.722836,-0.722836,-0.722836,-0.722836,-0.722836,-0.722836 +-0.719711,-0.719711,-0.719711,-0.719711,-0.719711,-0.719711 +-0.716586,-0.716586,-0.716586,-0.716586,-0.716586,-0.716586 +-0.713461,-0.713461,-0.713461,-0.713461,-0.713461,-0.713461 +-0.710336,-0.710336,-0.710336,-0.710336,-0.710336,-0.710336 +-0.707211,-0.707211,-0.707211,-0.707211,-0.707211,-0.707211 +-0.704086,-0.704086,-0.704086,-0.704086,-0.704086,-0.704086 +-0.700961,-0.700961,-0.700961,-0.700961,-0.700961,-0.700961 +-0.697836,-0.697836,-0.697836,-0.697836,-0.697836,-0.697836 +-0.694711,-0.694711,-0.694711,-0.694711,-0.694711,-0.694711 +-0.691586,-0.691586,-0.691586,-0.691586,-0.691586,-0.691586 +-0.688461,-0.688461,-0.688461,-0.688461,-0.688461,-0.688461 +-0.685336,-0.685336,-0.685336,-0.685336,-0.685336,-0.685336 +-0.682211,-0.682211,-0.682211,-0.682211,-0.682211,-0.682211 +-0.679086,-0.679086,-0.679086,-0.679086,-0.679086,-0.679086 +-0.675961,-0.675961,-0.675961,-0.675961,-0.675961,-0.675961 +-0.672836,-0.672836,-0.672836,-0.672836,-0.672836,-0.672836 +-0.669711,-0.669711,-0.669711,-0.669711,-0.669711,-0.669711 +-0.666586,-0.666586,-0.666586,-0.666586,-0.666586,-0.666586 +-0.663461,-0.663461,-0.663461,-0.663461,-0.663461,-0.663461 +-0.660336,-0.660336,-0.660336,-0.660336,-0.660336,-0.660336 +-0.657211,-0.657211,-0.657211,-0.657211,-0.657211,-0.657211 +-0.654086,-0.654086,-0.654086,-0.654086,-0.654086,-0.654086 +-0.650961,-0.650961,-0.650961,-0.650961,-0.650961,-0.650961 +-0.647836,-0.647836,-0.647836,-0.647836,-0.647836,-0.647836 +-0.644711,-0.644711,-0.644711,-0.644711,-0.644711,-0.644711 +-0.641586,-0.641586,-0.641586,-0.641586,-0.641586,-0.641586 +-0.638461,-0.638461,-0.638461,-0.638461,-0.638461,-0.638461 +-0.635336,-0.635336,-0.635336,-0.635336,-0.635336,-0.635336 +-0.632211,-0.632211,-0.632211,-0.632211,-0.632211,-0.632211 +-0.629086,-0.629086,-0.629086,-0.629086,-0.629086,-0.629086 +-0.625961,-0.625961,-0.625961,-0.625961,-0.625961,-0.625961 +-0.622836,-0.622836,-0.622836,-0.622836,-0.622836,-0.622836 +-0.619711,-0.619711,-0.619711,-0.619711,-0.619711,-0.619711 +-0.616586,-0.616586,-0.616586,-0.616586,-0.616586,-0.616586 +-0.613461,-0.613461,-0.613461,-0.613461,-0.613461,-0.613461 +-0.610336,-0.610336,-0.610336,-0.610336,-0.610336,-0.610336 +-0.607211,-0.607211,-0.607211,-0.607211,-0.607211,-0.607211 +-0.604086,-0.604086,-0.604086,-0.604086,-0.604086,-0.604086 +-0.600961,-0.600961,-0.600961,-0.600961,-0.600961,-0.600961 +-0.597836,-0.597836,-0.597836,-0.597836,-0.597836,-0.597836 +-0.594711,-0.594711,-0.594711,-0.594711,-0.594711,-0.594711 +-0.591586,-0.591586,-0.591586,-0.591586,-0.591586,-0.591586 +-0.588461,-0.588461,-0.588461,-0.588461,-0.588461,-0.588461 +-0.585336,-0.585336,-0.585336,-0.585336,-0.585336,-0.585336 +-0.582211,-0.582211,-0.582211,-0.582211,-0.582211,-0.582211 +-0.579086,-0.579086,-0.579086,-0.579086,-0.579086,-0.579086 +-0.575961,-0.575961,-0.575961,-0.575961,-0.575961,-0.575961 +-0.572836,-0.572836,-0.572836,-0.572836,-0.572836,-0.572836 +-0.569711,-0.569711,-0.569711,-0.569711,-0.569711,-0.569711 +-0.566586,-0.566586,-0.566586,-0.566586,-0.566586,-0.566586 +-0.563461,-0.563461,-0.563461,-0.563461,-0.563461,-0.563461 +-0.560336,-0.560336,-0.560336,-0.560336,-0.560336,-0.560336 +-0.557211,-0.557211,-0.557211,-0.557211,-0.557211,-0.557211 +-0.554086,-0.554086,-0.554086,-0.554086,-0.554086,-0.554086 +-0.550961,-0.550961,-0.550961,-0.550961,-0.550961,-0.550961 +-0.547836,-0.547836,-0.547836,-0.547836,-0.547836,-0.547836 +-0.544711,-0.544711,-0.544711,-0.544711,-0.544711,-0.544711 +-0.541586,-0.541586,-0.541586,-0.541586,-0.541586,-0.541586 +-0.538461,-0.538461,-0.538461,-0.538461,-0.538461,-0.538461 +-0.535336,-0.535336,-0.535336,-0.535336,-0.535336,-0.535336 +-0.532211,-0.532211,-0.532211,-0.532211,-0.532211,-0.532211 +-0.529086,-0.529086,-0.529086,-0.529086,-0.529086,-0.529086 +-0.525961,-0.525961,-0.525961,-0.525961,-0.525961,-0.525961 +-0.522836,-0.522836,-0.522836,-0.522836,-0.522836,-0.522836 +-0.519711,-0.519711,-0.519711,-0.519711,-0.519711,-0.519711 +-0.516586,-0.516586,-0.516586,-0.516586,-0.516586,-0.516586 +-0.513461,-0.513461,-0.513461,-0.513461,-0.513461,-0.513461 +-0.510336,-0.510336,-0.510336,-0.510336,-0.510336,-0.510336 +-0.507211,-0.507211,-0.507211,-0.507211,-0.507211,-0.507211 +-0.504086,-0.504086,-0.504086,-0.504086,-0.504086,-0.504086 +-0.500961,-0.500961,-0.500961,-0.500961,-0.500961,-0.500961 +-0.497836,-0.497836,-0.497836,-0.497836,-0.497836,-0.497836 +-0.494711,-0.494711,-0.494711,-0.494711,-0.494711,-0.494711 +-0.491586,-0.491586,-0.491586,-0.491586,-0.491586,-0.491586 +-0.488461,-0.488461,-0.488461,-0.488461,-0.488461,-0.488461 +-0.485336,-0.485336,-0.485336,-0.485336,-0.485336,-0.485336 +-0.482211,-0.482211,-0.482211,-0.482211,-0.482211,-0.482211 +-0.479086,-0.479086,-0.479086,-0.479086,-0.479086,-0.479086 +-0.475961,-0.475961,-0.475961,-0.475961,-0.475961,-0.475961 +-0.472836,-0.472836,-0.472836,-0.472836,-0.472836,-0.472836 +-0.469711,-0.469711,-0.469711,-0.469711,-0.469711,-0.469711 +-0.466586,-0.466586,-0.466586,-0.466586,-0.466586,-0.466586 +-0.463461,-0.463461,-0.463461,-0.463461,-0.463461,-0.463461 +-0.460336,-0.460336,-0.460336,-0.460336,-0.460336,-0.460336 +-0.457211,-0.457211,-0.457211,-0.457211,-0.457211,-0.457211 +-0.454086,-0.454086,-0.454086,-0.454086,-0.454086,-0.454086 +-0.450961,-0.450961,-0.450961,-0.450961,-0.450961,-0.450961 +-0.447836,-0.447836,-0.447836,-0.447836,-0.447836,-0.447836 +-0.444711,-0.444711,-0.444711,-0.444711,-0.444711,-0.444711 +-0.441586,-0.441586,-0.441586,-0.441586,-0.441586,-0.441586 +-0.438461,-0.438461,-0.438461,-0.438461,-0.438461,-0.438461 +-0.435336,-0.435336,-0.435336,-0.435336,-0.435336,-0.435336 +-0.432211,-0.432211,-0.432211,-0.432211,-0.432211,-0.432211 +-0.429086,-0.429086,-0.429086,-0.429086,-0.429086,-0.429086 +-0.425961,-0.425961,-0.425961,-0.425961,-0.425961,-0.425961 +-0.422836,-0.422836,-0.422836,-0.422836,-0.422836,-0.422836 +-0.419711,-0.419711,-0.419711,-0.419711,-0.419711,-0.419711 +-0.416586,-0.416586,-0.416586,-0.416586,-0.416586,-0.416586 +-0.413461,-0.413461,-0.413461,-0.413461,-0.413461,-0.413461 +-0.410336,-0.410336,-0.410336,-0.410336,-0.410336,-0.410336 +-0.407211,-0.407211,-0.407211,-0.407211,-0.407211,-0.407211 +-0.404086,-0.404086,-0.404086,-0.404086,-0.404086,-0.404086 +-0.400961,-0.400961,-0.400961,-0.400961,-0.400961,-0.400961 +-0.397836,-0.397836,-0.397836,-0.397836,-0.397836,-0.397836 +-0.394711,-0.394711,-0.394711,-0.394711,-0.394711,-0.394711 +-0.391586,-0.391586,-0.391586,-0.391586,-0.391586,-0.391586 +-0.388461,-0.388461,-0.388461,-0.388461,-0.388461,-0.388461 +-0.385336,-0.385336,-0.385336,-0.385336,-0.385336,-0.385336 +-0.382211,-0.382211,-0.382211,-0.382211,-0.382211,-0.382211 +-0.379086,-0.379086,-0.379086,-0.379086,-0.379086,-0.379086 +-0.375961,-0.375961,-0.375961,-0.375961,-0.375961,-0.375961 +-0.372836,-0.372836,-0.372836,-0.372836,-0.372836,-0.372836 +-0.369711,-0.369711,-0.369711,-0.369711,-0.369711,-0.369711 +-0.366586,-0.366586,-0.366586,-0.366586,-0.366586,-0.366586 +-0.363461,-0.363461,-0.363461,-0.363461,-0.363461,-0.363461 +-0.360336,-0.360336,-0.360336,-0.360336,-0.360336,-0.360336 +-0.357211,-0.357211,-0.357211,-0.357211,-0.357211,-0.357211 +-0.354086,-0.354086,-0.354086,-0.354086,-0.354086,-0.354086 +-0.350961,-0.350961,-0.350961,-0.350961,-0.350961,-0.350961 +-0.347836,-0.347836,-0.347836,-0.347836,-0.347836,-0.347836 +-0.344711,-0.344711,-0.344711,-0.344711,-0.344711,-0.344711 +-0.341586,-0.341586,-0.341586,-0.341586,-0.341586,-0.341586 +-0.338461,-0.338461,-0.338461,-0.338461,-0.338461,-0.338461 +-0.335336,-0.335336,-0.335336,-0.335336,-0.335336,-0.335336 +-0.332211,-0.332211,-0.332211,-0.332211,-0.332211,-0.332211 +-0.329086,-0.329086,-0.329086,-0.329086,-0.329086,-0.329086 +-0.325961,-0.325961,-0.325961,-0.325961,-0.325961,-0.325961 +-0.322836,-0.322836,-0.322836,-0.322836,-0.322836,-0.322836 +-0.319711,-0.319711,-0.319711,-0.319711,-0.319711,-0.319711 +-0.316586,-0.316586,-0.316586,-0.316586,-0.316586,-0.316586 +-0.313461,-0.313461,-0.313461,-0.313461,-0.313461,-0.313461 +-0.310336,-0.310336,-0.310336,-0.310336,-0.310336,-0.310336 +-0.307211,-0.307211,-0.307211,-0.307211,-0.307211,-0.307211 +-0.304086,-0.304086,-0.304086,-0.304086,-0.304086,-0.304086 +-0.300961,-0.300961,-0.300961,-0.300961,-0.300961,-0.300961 +-0.297836,-0.297836,-0.297836,-0.297836,-0.297836,-0.297836 +-0.294711,-0.294711,-0.294711,-0.294711,-0.294711,-0.294711 +-0.291586,-0.291586,-0.291586,-0.291586,-0.291586,-0.291586 +-0.288461,-0.288461,-0.288461,-0.288461,-0.288461,-0.288461 +-0.285336,-0.285336,-0.285336,-0.285336,-0.285336,-0.285336 +-0.282211,-0.282211,-0.282211,-0.282211,-0.282211,-0.282211 +-0.279086,-0.279086,-0.279086,-0.279086,-0.279086,-0.279086 +-0.275961,-0.275961,-0.275961,-0.275961,-0.275961,-0.275961 +-0.272836,-0.272836,-0.272836,-0.272836,-0.272836,-0.272836 +-0.269711,-0.269711,-0.269711,-0.269711,-0.269711,-0.269711 +-0.266586,-0.266586,-0.266586,-0.266586,-0.266586,-0.266586 +-0.263461,-0.263461,-0.263461,-0.263461,-0.263461,-0.263461 +-0.260336,-0.260336,-0.260336,-0.260336,-0.260336,-0.260336 +-0.257211,-0.257211,-0.257211,-0.257211,-0.257211,-0.257211 +-0.254086,-0.254086,-0.254086,-0.254086,-0.254086,-0.254086 +-0.250961,-0.250961,-0.250961,-0.250961,-0.250961,-0.250961 +-0.247836,-0.247836,-0.247836,-0.247836,-0.247836,-0.247836 +-0.244711,-0.244711,-0.244711,-0.244711,-0.244711,-0.244711 +-0.241586,-0.241586,-0.241586,-0.241586,-0.241586,-0.241586 +-0.238461,-0.238461,-0.238461,-0.238461,-0.238461,-0.238461 +-0.235336,-0.235336,-0.235336,-0.235336,-0.235336,-0.235336 +-0.232211,-0.232211,-0.232211,-0.232211,-0.232211,-0.232211 +-0.229086,-0.229086,-0.229086,-0.229086,-0.229086,-0.229086 +-0.225961,-0.225961,-0.225961,-0.225961,-0.225961,-0.225961 +-0.222836,-0.222836,-0.222836,-0.222836,-0.222836,-0.222836 +-0.219711,-0.219711,-0.219711,-0.219711,-0.219711,-0.219711 +-0.216586,-0.216586,-0.216586,-0.216586,-0.216586,-0.216586 +-0.213461,-0.213461,-0.213461,-0.213461,-0.213461,-0.213461 +-0.210336,-0.210336,-0.210336,-0.210336,-0.210336,-0.210336 +-0.207211,-0.207211,-0.207211,-0.207211,-0.207211,-0.207211 +-0.204086,-0.204086,-0.204086,-0.204086,-0.204086,-0.204086 +-0.200961,-0.200961,-0.200961,-0.200961,-0.200961,-0.200961 +-0.197836,-0.197836,-0.197836,-0.197836,-0.197836,-0.197836 +-0.194711,-0.194711,-0.194711,-0.194711,-0.194711,-0.194711 +-0.191586,-0.191586,-0.191586,-0.191586,-0.191586,-0.191586 +-0.188461,-0.188461,-0.188461,-0.188461,-0.188461,-0.188461 +-0.185336,-0.185336,-0.185336,-0.185336,-0.185336,-0.185336 +-0.182211,-0.182211,-0.182211,-0.182211,-0.182211,-0.182211 +-0.179086,-0.179086,-0.179086,-0.179086,-0.179086,-0.179086 +-0.175961,-0.175961,-0.175961,-0.175961,-0.175961,-0.175961 +-0.172836,-0.172836,-0.172836,-0.172836,-0.172836,-0.172836 +-0.169711,-0.169711,-0.169711,-0.169711,-0.169711,-0.169711 +-0.166586,-0.166586,-0.166586,-0.166586,-0.166586,-0.166586 +-0.163461,-0.163461,-0.163461,-0.163461,-0.163461,-0.163461 +-0.160336,-0.160336,-0.160336,-0.160336,-0.160336,-0.160336 +-0.157211,-0.157211,-0.157211,-0.157211,-0.157211,-0.157211 +-0.154086,-0.154086,-0.154086,-0.154086,-0.154086,-0.154086 +-0.150961,-0.150961,-0.150961,-0.150961,-0.150961,-0.150961 +-0.147836,-0.147836,-0.147836,-0.147836,-0.147836,-0.147836 +-0.144711,-0.144711,-0.144711,-0.144711,-0.144711,-0.144711 +-0.141586,-0.141586,-0.141586,-0.141586,-0.141586,-0.141586 +-0.138461,-0.138461,-0.138461,-0.138461,-0.138461,-0.138461 +-0.135336,-0.135336,-0.135336,-0.135336,-0.135336,-0.135336 +-0.132211,-0.132211,-0.132211,-0.132211,-0.132211,-0.132211 +-0.129086,-0.129086,-0.129086,-0.129086,-0.129086,-0.129086 +-0.125961,-0.125961,-0.125961,-0.125961,-0.125961,-0.125961 +-0.122836,-0.122836,-0.122836,-0.122836,-0.122836,-0.122836 +-0.119711,-0.119711,-0.119711,-0.119711,-0.119711,-0.119711 +-0.116586,-0.116586,-0.116586,-0.116586,-0.116586,-0.116586 +-0.113461,-0.113461,-0.113461,-0.113461,-0.113461,-0.113461 +-0.110336,-0.110336,-0.110336,-0.110336,-0.110336,-0.110336 +-0.107211,-0.107211,-0.107211,-0.107211,-0.107211,-0.107211 +-0.104086,-0.104086,-0.104086,-0.104086,-0.104086,-0.104086 +-0.100961,-0.100961,-0.100961,-0.100961,-0.100961,-0.100961 +-0.097836,-0.097836,-0.097836,-0.097836,-0.097836,-0.097836 +-0.094711,-0.094711,-0.094711,-0.094711,-0.094711,-0.094711 +-0.091586,-0.091586,-0.091586,-0.091586,-0.091586,-0.091586 +-0.088461,-0.088461,-0.088461,-0.088461,-0.088461,-0.088461 +-0.085336,-0.085336,-0.085336,-0.085336,-0.085336,-0.085336 +-0.082211,-0.082211,-0.082211,-0.082211,-0.082211,-0.082211 +-0.079086,-0.079086,-0.079086,-0.079086,-0.079086,-0.079086 +-0.075961,-0.075961,-0.075961,-0.075961,-0.075961,-0.075961 +-0.072836,-0.072836,-0.072836,-0.072836,-0.072836,-0.072836 +-0.069711,-0.069711,-0.069711,-0.069711,-0.069711,-0.069711 +-0.066586,-0.066586,-0.066586,-0.066586,-0.066586,-0.066586 +-0.063461,-0.063461,-0.063461,-0.063461,-0.063461,-0.063461 +-0.060336,-0.060336,-0.060336,-0.060336,-0.060336,-0.060336 +-0.057211,-0.057211,-0.057211,-0.057211,-0.057211,-0.057211 +-0.054086,-0.054086,-0.054086,-0.054086,-0.054086,-0.054086 +-0.050961,-0.050961,-0.050961,-0.050961,-0.050961,-0.050961 +-0.047836,-0.047836,-0.047836,-0.047836,-0.047836,-0.047836 +-0.044718,-0.044718,-0.044718,-0.044718,-0.044718,-0.044718 +-0.041618,-0.041618,-0.041618,-0.041618,-0.041618,-0.041618 +-0.03855,-0.03855,-0.03855,-0.03855,-0.03855,-0.03855 +-0.035526,-0.035526,-0.035526,-0.035526,-0.035526,-0.035526 +-0.032558,-0.032558,-0.032558,-0.032558,-0.032558,-0.032558 +-0.029659,-0.029659,-0.029659,-0.029659,-0.029659,-0.029659 +-0.026841,-0.026841,-0.026841,-0.026841,-0.026841,-0.026841 +-0.024117,-0.024117,-0.024117,-0.024117,-0.024117,-0.024117 +-0.021499,-0.021499,-0.021499,-0.021499,-0.021499,-0.021499 +-0.019,-0.019,-0.019,-0.019,-0.019,-0.019 +-0.016632,-0.016632,-0.016632,-0.016632,-0.016632,-0.016632 +-0.014409,-0.014409,-0.014409,-0.014409,-0.014409,-0.014409 +-0.012341,-0.012341,-0.012341,-0.012341,-0.012341,-0.012341 +-0.010442,-0.010442,-0.010442,-0.010442,-0.010442,-0.010442 +-0.008725,-0.008725,-0.008725,-0.008725,-0.008725,-0.008725 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.005863,-0.005863,-0.005863,-0.005863,-0.005863,-0.005863 +-0.004704,-0.004704,-0.004704,-0.004704,-0.004704,-0.004704 +-0.003708,-0.003708,-0.003708,-0.003708,-0.003708,-0.003708 +-0.002864,-0.002864,-0.002864,-0.002864,-0.002864,-0.002864 +-0.002158,-0.002158,-0.002158,-0.002158,-0.002158,-0.002158 +-0.00158,-0.00158,-0.00158,-0.00158,-0.00158,-0.00158 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.000752,-0.000752,-0.000752,-0.000752,-0.000752,-0.000752 +-0.000477,-0.000477,-0.000477,-0.000477,-0.000477,-0.000477 +-0.000279,-0.000279,-0.000279,-0.000279,-0.000279,-0.000279 +-0.000146,-0.000146,-0.000146,-0.000146,-0.000146,-0.000146 +-0.000063,-0.000063,-0.000063,-0.000063,-0.000063,-0.000063 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000002,0.000002,0.000002,0.000002,0.000002,0.000002 +0.000017,0.000017,0.000017,0.000017,0.000017,0.000017 +0.000056,0.000056,0.000056,0.000056,0.000056,0.000056 +0.000133,0.000133,0.000133,0.000133,0.000133,0.000133 +0.00026,0.00026,0.00026,0.00026,0.00026,0.00026 +0.00045,0.00045,0.00045,0.00045,0.00045,0.00045 +0.000715,0.000715,0.000715,0.000715,0.000715,0.000715 +0.001067,0.001067,0.001067,0.001067,0.001067,0.001067 +0.001519,0.001519,0.001519,0.001519,0.001519,0.001519 +0.002083,0.002083,0.002083,0.002083,0.002083,0.002083 +0.002773,0.002773,0.002773,0.002773,0.002773,0.002773 +0.0036,0.0036,0.0036,0.0036,0.0036,0.0036 +0.004577,0.004577,0.004577,0.004577,0.004577,0.004577 +0.005717,0.005717,0.005717,0.005717,0.005717,0.005717 +0.007031,0.007031,0.007031,0.007031,0.007031,0.007031 +0.008533,0.008533,0.008533,0.008533,0.008533,0.008533 +0.010228,0.010228,0.010228,0.010228,0.010228,0.010228 +0.012106,0.012106,0.012106,0.012106,0.012106,0.012106 +0.014155,0.014155,0.014155,0.014155,0.014155,0.014155 +0.01636,0.01636,0.01636,0.01636,0.01636,0.01636 +0.018712,0.018712,0.018712,0.018712,0.018712,0.018712 +0.021196,0.021196,0.021196,0.021196,0.021196,0.021196 +0.0238,0.0238,0.0238,0.0238,0.0238,0.0238 +0.026512,0.026512,0.026512,0.026512,0.026512,0.026512 +0.02932,0.02932,0.02932,0.02932,0.02932,0.02932 +0.03221,0.03221,0.03221,0.03221,0.03221,0.03221 +0.03517,0.03517,0.03517,0.03517,0.03517,0.03517 +0.038188,0.038188,0.038188,0.038188,0.038188,0.038188 +0.041252,0.041252,0.041252,0.041252,0.041252,0.041252 +0.044348,0.044348,0.044348,0.044348,0.044348,0.044348 +0.047465,0.047465,0.047465,0.047465,0.047465,0.047465 +0.050589,0.050589,0.050589,0.050589,0.050589,0.050589 +0.053714,0.053714,0.053714,0.053714,0.053714,0.053714 +0.056839,0.056839,0.056839,0.056839,0.056839,0.056839 +0.059964,0.059964,0.059964,0.059964,0.059964,0.059964 +0.063089,0.063089,0.063089,0.063089,0.063089,0.063089 +0.066214,0.066214,0.066214,0.066214,0.066214,0.066214 +0.069339,0.069339,0.069339,0.069339,0.069339,0.069339 +0.072464,0.072464,0.072464,0.072464,0.072464,0.072464 +0.075589,0.075589,0.075589,0.075589,0.075589,0.075589 +0.078714,0.078714,0.078714,0.078714,0.078714,0.078714 +0.081839,0.081839,0.081839,0.081839,0.081839,0.081839 +0.084964,0.084964,0.084964,0.084964,0.084964,0.084964 +0.088089,0.088089,0.088089,0.088089,0.088089,0.088089 +0.091214,0.091214,0.091214,0.091214,0.091214,0.091214 +0.094339,0.094339,0.094339,0.094339,0.094339,0.094339 +0.097464,0.097464,0.097464,0.097464,0.097464,0.097464 +0.100589,0.100589,0.100589,0.100589,0.100589,0.100589 +0.103714,0.103714,0.103714,0.103714,0.103714,0.103714 +0.106839,0.106839,0.106839,0.106839,0.106839,0.106839 +0.109964,0.109964,0.109964,0.109964,0.109964,0.109964 +0.113089,0.113089,0.113089,0.113089,0.113089,0.113089 +0.116214,0.116214,0.116214,0.116214,0.116214,0.116214 +0.119339,0.119339,0.119339,0.119339,0.119339,0.119339 +0.122464,0.122464,0.122464,0.122464,0.122464,0.122464 +0.125589,0.125589,0.125589,0.125589,0.125589,0.125589 +0.128714,0.128714,0.128714,0.128714,0.128714,0.128714 +0.131839,0.131839,0.131839,0.131839,0.131839,0.131839 +0.134964,0.134964,0.134964,0.134964,0.134964,0.134964 +0.138089,0.138089,0.138089,0.138089,0.138089,0.138089 +0.141214,0.141214,0.141214,0.141214,0.141214,0.141214 +0.144339,0.144339,0.144339,0.144339,0.144339,0.144339 +0.147464,0.147464,0.147464,0.147464,0.147464,0.147464 +0.150589,0.150589,0.150589,0.150589,0.150589,0.150589 +0.153714,0.153714,0.153714,0.153714,0.153714,0.153714 +0.156839,0.156839,0.156839,0.156839,0.156839,0.156839 +0.159964,0.159964,0.159964,0.159964,0.159964,0.159964 +0.163089,0.163089,0.163089,0.163089,0.163089,0.163089 +0.166214,0.166214,0.166214,0.166214,0.166214,0.166214 +0.169339,0.169339,0.169339,0.169339,0.169339,0.169339 +0.172464,0.172464,0.172464,0.172464,0.172464,0.172464 +0.175589,0.175589,0.175589,0.175589,0.175589,0.175589 +0.178714,0.178714,0.178714,0.178714,0.178714,0.178714 +0.181839,0.181839,0.181839,0.181839,0.181839,0.181839 +0.184964,0.184964,0.184964,0.184964,0.184964,0.184964 +0.188089,0.188089,0.188089,0.188089,0.188089,0.188089 +0.191214,0.191214,0.191214,0.191214,0.191214,0.191214 +0.194339,0.194339,0.194339,0.194339,0.194339,0.194339 +0.197464,0.197464,0.197464,0.197464,0.197464,0.197464 +0.200589,0.200589,0.200589,0.200589,0.200589,0.200589 +0.203714,0.203714,0.203714,0.203714,0.203714,0.203714 +0.206839,0.206839,0.206839,0.206839,0.206839,0.206839 +0.209964,0.209964,0.209964,0.209964,0.209964,0.209964 +0.213089,0.213089,0.213089,0.213089,0.213089,0.213089 +0.216214,0.216214,0.216214,0.216214,0.216214,0.216214 +0.219339,0.219339,0.219339,0.219339,0.219339,0.219339 +0.222464,0.222464,0.222464,0.222464,0.222464,0.222464 +0.225589,0.225589,0.225589,0.225589,0.225589,0.225589 +0.228714,0.228714,0.228714,0.228714,0.228714,0.228714 +0.231839,0.231839,0.231839,0.231839,0.231839,0.231839 +0.234964,0.234964,0.234964,0.234964,0.234964,0.234964 +0.238089,0.238089,0.238089,0.238089,0.238089,0.238089 +0.241214,0.241214,0.241214,0.241214,0.241214,0.241214 +0.244339,0.244339,0.244339,0.244339,0.244339,0.244339 +0.247464,0.247464,0.247464,0.247464,0.247464,0.247464 +0.250589,0.250589,0.250589,0.250589,0.250589,0.250589 +0.253714,0.253714,0.253714,0.253714,0.253714,0.253714 +0.256839,0.256839,0.256839,0.256839,0.256839,0.256839 +0.259964,0.259964,0.259964,0.259964,0.259964,0.259964 +0.263089,0.263089,0.263089,0.263089,0.263089,0.263089 +0.266214,0.266214,0.266214,0.266214,0.266214,0.266214 +0.269339,0.269339,0.269339,0.269339,0.269339,0.269339 +0.272464,0.272464,0.272464,0.272464,0.272464,0.272464 +0.275589,0.275589,0.275589,0.275589,0.275589,0.275589 +0.278714,0.278714,0.278714,0.278714,0.278714,0.278714 +0.281839,0.281839,0.281839,0.281839,0.281839,0.281839 +0.284964,0.284964,0.284964,0.284964,0.284964,0.284964 +0.288089,0.288089,0.288089,0.288089,0.288089,0.288089 +0.291214,0.291214,0.291214,0.291214,0.291214,0.291214 +0.294339,0.294339,0.294339,0.294339,0.294339,0.294339 +0.297464,0.297464,0.297464,0.297464,0.297464,0.297464 +0.300589,0.300589,0.300589,0.300589,0.300589,0.300589 +0.303714,0.303714,0.303714,0.303714,0.303714,0.303714 +0.306839,0.306839,0.306839,0.306839,0.306839,0.306839 +0.309964,0.309964,0.309964,0.309964,0.309964,0.309964 +0.313089,0.313089,0.313089,0.313089,0.313089,0.313089 +0.316214,0.316214,0.316214,0.316214,0.316214,0.316214 +0.319339,0.319339,0.319339,0.319339,0.319339,0.319339 +0.322464,0.322464,0.322464,0.322464,0.322464,0.322464 +0.325589,0.325589,0.325589,0.325589,0.325589,0.325589 +0.328714,0.328714,0.328714,0.328714,0.328714,0.328714 +0.331839,0.331839,0.331839,0.331839,0.331839,0.331839 +0.334964,0.334964,0.334964,0.334964,0.334964,0.334964 +0.338089,0.338089,0.338089,0.338089,0.338089,0.338089 +0.341214,0.341214,0.341214,0.341214,0.341214,0.341214 +0.344339,0.344339,0.344339,0.344339,0.344339,0.344339 +0.347464,0.347464,0.347464,0.347464,0.347464,0.347464 +0.350589,0.350589,0.350589,0.350589,0.350589,0.350589 +0.353714,0.353714,0.353714,0.353714,0.353714,0.353714 +0.356839,0.356839,0.356839,0.356839,0.356839,0.356839 +0.359964,0.359964,0.359964,0.359964,0.359964,0.359964 +0.363089,0.363089,0.363089,0.363089,0.363089,0.363089 +0.366214,0.366214,0.366214,0.366214,0.366214,0.366214 +0.369339,0.369339,0.369339,0.369339,0.369339,0.369339 +0.372464,0.372464,0.372464,0.372464,0.372464,0.372464 +0.375589,0.375589,0.375589,0.375589,0.375589,0.375589 +0.378714,0.378714,0.378714,0.378714,0.378714,0.378714 +0.381839,0.381839,0.381839,0.381839,0.381839,0.381839 +0.384964,0.384964,0.384964,0.384964,0.384964,0.384964 +0.388089,0.388089,0.388089,0.388089,0.388089,0.388089 +0.391214,0.391214,0.391214,0.391214,0.391214,0.391214 +0.394339,0.394339,0.394339,0.394339,0.394339,0.394339 +0.397464,0.397464,0.397464,0.397464,0.397464,0.397464 +0.400589,0.400589,0.400589,0.400589,0.400589,0.400589 +0.403714,0.403714,0.403714,0.403714,0.403714,0.403714 +0.406839,0.406839,0.406839,0.406839,0.406839,0.406839 +0.409964,0.409964,0.409964,0.409964,0.409964,0.409964 +0.413089,0.413089,0.413089,0.413089,0.413089,0.413089 +0.416214,0.416214,0.416214,0.416214,0.416214,0.416214 +0.419339,0.419339,0.419339,0.419339,0.419339,0.419339 +0.422464,0.422464,0.422464,0.422464,0.422464,0.422464 +0.425589,0.425589,0.425589,0.425589,0.425589,0.425589 +0.428714,0.428714,0.428714,0.428714,0.428714,0.428714 +0.431839,0.431839,0.431839,0.431839,0.431839,0.431839 +0.434964,0.434964,0.434964,0.434964,0.434964,0.434964 +0.438089,0.438089,0.438089,0.438089,0.438089,0.438089 +0.441214,0.441214,0.441214,0.441214,0.441214,0.441214 +0.444339,0.444339,0.444339,0.444339,0.444339,0.444339 +0.447464,0.447464,0.447464,0.447464,0.447464,0.447464 +0.450589,0.450589,0.450589,0.450589,0.450589,0.450589 +0.453714,0.453714,0.453714,0.453714,0.453714,0.453714 +0.456839,0.456839,0.456839,0.456839,0.456839,0.456839 +0.459964,0.459964,0.459964,0.459964,0.459964,0.459964 +0.463089,0.463089,0.463089,0.463089,0.463089,0.463089 +0.466214,0.466214,0.466214,0.466214,0.466214,0.466214 +0.469339,0.469339,0.469339,0.469339,0.469339,0.469339 +0.472464,0.472464,0.472464,0.472464,0.472464,0.472464 +0.475589,0.475589,0.475589,0.475589,0.475589,0.475589 +0.478714,0.478714,0.478714,0.478714,0.478714,0.478714 +0.481839,0.481839,0.481839,0.481839,0.481839,0.481839 +0.484964,0.484964,0.484964,0.484964,0.484964,0.484964 +0.488089,0.488089,0.488089,0.488089,0.488089,0.488089 +0.491214,0.491214,0.491214,0.491214,0.491214,0.491214 +0.494339,0.494339,0.494339,0.494339,0.494339,0.494339 +0.497464,0.497464,0.497464,0.497464,0.497464,0.497464 +0.500589,0.500589,0.500589,0.500589,0.500589,0.500589 +0.503714,0.503714,0.503714,0.503714,0.503714,0.503714 +0.506839,0.506839,0.506839,0.506839,0.506839,0.506839 +0.509964,0.509964,0.509964,0.509964,0.509964,0.509964 +0.513089,0.513089,0.513089,0.513089,0.513089,0.513089 +0.516214,0.516214,0.516214,0.516214,0.516214,0.516214 +0.519339,0.519339,0.519339,0.519339,0.519339,0.519339 +0.522464,0.522464,0.522464,0.522464,0.522464,0.522464 +0.525589,0.525589,0.525589,0.525589,0.525589,0.525589 +0.528714,0.528714,0.528714,0.528714,0.528714,0.528714 +0.531839,0.531839,0.531839,0.531839,0.531839,0.531839 +0.534964,0.534964,0.534964,0.534964,0.534964,0.534964 +0.538089,0.538089,0.538089,0.538089,0.538089,0.538089 +0.541214,0.541214,0.541214,0.541214,0.541214,0.541214 +0.544339,0.544339,0.544339,0.544339,0.544339,0.544339 +0.547464,0.547464,0.547464,0.547464,0.547464,0.547464 +0.550589,0.550589,0.550589,0.550589,0.550589,0.550589 +0.553714,0.553714,0.553714,0.553714,0.553714,0.553714 +0.556839,0.556839,0.556839,0.556839,0.556839,0.556839 +0.559964,0.559964,0.559964,0.559964,0.559964,0.559964 +0.563089,0.563089,0.563089,0.563089,0.563089,0.563089 +0.566214,0.566214,0.566214,0.566214,0.566214,0.566214 +0.569339,0.569339,0.569339,0.569339,0.569339,0.569339 +0.572464,0.572464,0.572464,0.572464,0.572464,0.572464 +0.575589,0.575589,0.575589,0.575589,0.575589,0.575589 +0.578714,0.578714,0.578714,0.578714,0.578714,0.578714 +0.581839,0.581839,0.581839,0.581839,0.581839,0.581839 +0.584964,0.584964,0.584964,0.584964,0.584964,0.584964 +0.588089,0.588089,0.588089,0.588089,0.588089,0.588089 +0.591214,0.591214,0.591214,0.591214,0.591214,0.591214 +0.594339,0.594339,0.594339,0.594339,0.594339,0.594339 +0.597464,0.597464,0.597464,0.597464,0.597464,0.597464 +0.600589,0.600589,0.600589,0.600589,0.600589,0.600589 +0.603714,0.603714,0.603714,0.603714,0.603714,0.603714 +0.606839,0.606839,0.606839,0.606839,0.606839,0.606839 +0.609964,0.609964,0.609964,0.609964,0.609964,0.609964 +0.613089,0.613089,0.613089,0.613089,0.613089,0.613089 +0.616214,0.616214,0.616214,0.616214,0.616214,0.616214 +0.619339,0.619339,0.619339,0.619339,0.619339,0.619339 +0.622464,0.622464,0.622464,0.622464,0.622464,0.622464 +0.625589,0.625589,0.625589,0.625589,0.625589,0.625589 +0.628714,0.628714,0.628714,0.628714,0.628714,0.628714 +0.631839,0.631839,0.631839,0.631839,0.631839,0.631839 +0.634964,0.634964,0.634964,0.634964,0.634964,0.634964 +0.638089,0.638089,0.638089,0.638089,0.638089,0.638089 +0.641214,0.641214,0.641214,0.641214,0.641214,0.641214 +0.644339,0.644339,0.644339,0.644339,0.644339,0.644339 +0.647464,0.647464,0.647464,0.647464,0.647464,0.647464 +0.650589,0.650589,0.650589,0.650589,0.650589,0.650589 +0.653714,0.653714,0.653714,0.653714,0.653714,0.653714 +0.656839,0.656839,0.656839,0.656839,0.656839,0.656839 +0.659964,0.659964,0.659964,0.659964,0.659964,0.659964 +0.663089,0.663089,0.663089,0.663089,0.663089,0.663089 +0.666214,0.666214,0.666214,0.666214,0.666214,0.666214 +0.669339,0.669339,0.669339,0.669339,0.669339,0.669339 +0.672464,0.672464,0.672464,0.672464,0.672464,0.672464 +0.675589,0.675589,0.675589,0.675589,0.675589,0.675589 +0.678714,0.678714,0.678714,0.678714,0.678714,0.678714 +0.681839,0.681839,0.681839,0.681839,0.681839,0.681839 +0.684964,0.684964,0.684964,0.684964,0.684964,0.684964 +0.688089,0.688089,0.688089,0.688089,0.688089,0.688089 +0.691214,0.691214,0.691214,0.691214,0.691214,0.691214 +0.694339,0.694339,0.694339,0.694339,0.694339,0.694339 +0.697464,0.697464,0.697464,0.697464,0.697464,0.697464 +0.700589,0.700589,0.700589,0.700589,0.700589,0.700589 +0.703714,0.703714,0.703714,0.703714,0.703714,0.703714 +0.706839,0.706839,0.706839,0.706839,0.706839,0.706839 +0.709964,0.709964,0.709964,0.709964,0.709964,0.709964 +0.713089,0.713089,0.713089,0.713089,0.713089,0.713089 +0.716214,0.716214,0.716214,0.716214,0.716214,0.716214 +0.719339,0.719339,0.719339,0.719339,0.719339,0.719339 +0.722464,0.722464,0.722464,0.722464,0.722464,0.722464 +0.725589,0.725589,0.725589,0.725589,0.725589,0.725589 +0.728714,0.728714,0.728714,0.728714,0.728714,0.728714 +0.731839,0.731839,0.731839,0.731839,0.731839,0.731839 +0.734964,0.734964,0.734964,0.734964,0.734964,0.734964 +0.738089,0.738089,0.738089,0.738089,0.738089,0.738089 +0.741214,0.741214,0.741214,0.741214,0.741214,0.741214 +0.744339,0.744339,0.744339,0.744339,0.744339,0.744339 +0.747464,0.747464,0.747464,0.747464,0.747464,0.747464 +0.750589,0.750589,0.750589,0.750589,0.750589,0.750589 +0.753714,0.753714,0.753714,0.753714,0.753714,0.753714 +0.756839,0.756839,0.756839,0.756839,0.756839,0.756839 +0.759964,0.759964,0.759964,0.759964,0.759964,0.759964 +0.763089,0.763089,0.763089,0.763089,0.763089,0.763089 +0.766214,0.766214,0.766214,0.766214,0.766214,0.766214 +0.769339,0.769339,0.769339,0.769339,0.769339,0.769339 +0.772464,0.772464,0.772464,0.772464,0.772464,0.772464 +0.775589,0.775589,0.775589,0.775589,0.775589,0.775589 +0.778714,0.778714,0.778714,0.778714,0.778714,0.778714 +0.781839,0.781839,0.781839,0.781839,0.781839,0.781839 +0.784964,0.784964,0.784964,0.784964,0.784964,0.784964 +0.788089,0.788089,0.788089,0.788089,0.788089,0.788089 +0.791214,0.791214,0.791214,0.791214,0.791214,0.791214 +0.794339,0.794339,0.794339,0.794339,0.794339,0.794339 +0.797464,0.797464,0.797464,0.797464,0.797464,0.797464 +0.800589,0.800589,0.800589,0.800589,0.800589,0.800589 +0.803714,0.803714,0.803714,0.803714,0.803714,0.803714 +0.806839,0.806839,0.806839,0.806839,0.806839,0.806839 +0.809964,0.809964,0.809964,0.809964,0.809964,0.809964 +0.813089,0.813089,0.813089,0.813089,0.813089,0.813089 +0.816214,0.816214,0.816214,0.816214,0.816214,0.816214 +0.819339,0.819339,0.819339,0.819339,0.819339,0.819339 +0.822464,0.822464,0.822464,0.822464,0.822464,0.822464 +0.825589,0.825589,0.825589,0.825589,0.825589,0.825589 +0.828714,0.828714,0.828714,0.828714,0.828714,0.828714 +0.831839,0.831839,0.831839,0.831839,0.831839,0.831839 +0.834964,0.834964,0.834964,0.834964,0.834964,0.834964 +0.838089,0.838089,0.838089,0.838089,0.838089,0.838089 +0.841214,0.841214,0.841214,0.841214,0.841214,0.841214 +0.844339,0.844339,0.844339,0.844339,0.844339,0.844339 +0.847464,0.847464,0.847464,0.847464,0.847464,0.847464 +0.850589,0.850589,0.850589,0.850589,0.850589,0.850589 +0.853714,0.853714,0.853714,0.853714,0.853714,0.853714 +0.856839,0.856839,0.856839,0.856839,0.856839,0.856839 +0.859964,0.859964,0.859964,0.859964,0.859964,0.859964 +0.863089,0.863089,0.863089,0.863089,0.863089,0.863089 +0.866214,0.866214,0.866214,0.866214,0.866214,0.866214 +0.869339,0.869339,0.869339,0.869339,0.869339,0.869339 +0.872464,0.872464,0.872464,0.872464,0.872464,0.872464 +0.875589,0.875589,0.875589,0.875589,0.875589,0.875589 +0.878714,0.878714,0.878714,0.878714,0.878714,0.878714 +0.881839,0.881839,0.881839,0.881839,0.881839,0.881839 +0.884964,0.884964,0.884964,0.884964,0.884964,0.884964 +0.888089,0.888089,0.888089,0.888089,0.888089,0.888089 +0.891214,0.891214,0.891214,0.891214,0.891214,0.891214 +0.894339,0.894339,0.894339,0.894339,0.894339,0.894339 +0.897464,0.897464,0.897464,0.897464,0.897464,0.897464 +0.900589,0.900589,0.900589,0.900589,0.900589,0.900589 +0.903714,0.903714,0.903714,0.903714,0.903714,0.903714 +0.906839,0.906839,0.906839,0.906839,0.906839,0.906839 +0.909964,0.909964,0.909964,0.909964,0.909964,0.909964 +0.913089,0.913089,0.913089,0.913089,0.913089,0.913089 +0.916214,0.916214,0.916214,0.916214,0.916214,0.916214 +0.919339,0.919339,0.919339,0.919339,0.919339,0.919339 +0.922464,0.922464,0.922464,0.922464,0.922464,0.922464 +0.925589,0.925589,0.925589,0.925589,0.925589,0.925589 +0.928714,0.928714,0.928714,0.928714,0.928714,0.928714 +0.931839,0.931839,0.931839,0.931839,0.931839,0.931839 +0.934964,0.934964,0.934964,0.934964,0.934964,0.934964 +0.938089,0.938089,0.938089,0.938089,0.938089,0.938089 +0.941214,0.941214,0.941214,0.941214,0.941214,0.941214 +0.944339,0.944339,0.944339,0.944339,0.944339,0.944339 +0.947464,0.947464,0.947464,0.947464,0.947464,0.947464 +0.950589,0.950589,0.950589,0.950589,0.950589,0.950589 +0.953714,0.953714,0.953714,0.953714,0.953714,0.953714 +0.956839,0.956839,0.956839,0.956839,0.956839,0.956839 +0.959964,0.959964,0.959964,0.959964,0.959964,0.959964 +0.963089,0.963089,0.963089,0.963089,0.963089,0.963089 +0.966214,0.966214,0.966214,0.966214,0.966214,0.966214 +0.969339,0.969339,0.969339,0.969339,0.969339,0.969339 +0.972464,0.972464,0.972464,0.972464,0.972464,0.972464 +0.975589,0.975589,0.975589,0.975589,0.975589,0.975589 +0.978714,0.978714,0.978714,0.978714,0.978714,0.978714 +0.981839,0.981839,0.981839,0.981839,0.981839,0.981839 +0.984964,0.984964,0.984964,0.984964,0.984964,0.984964 +0.988089,0.988089,0.988089,0.988089,0.988089,0.988089 +0.991214,0.991214,0.991214,0.991214,0.991214,0.991214 +0.994339,0.994339,0.994339,0.994339,0.994339,0.994339 +0.997464,0.997464,0.997464,0.997464,0.997464,0.997464 +1.000589,1.000589,1.000589,1.000589,1.000589,1.000589 +1.003714,1.003714,1.003714,1.003714,1.003714,1.003714 +1.006839,1.006839,1.006839,1.006839,1.006839,1.006839 +1.009964,1.009964,1.009964,1.009964,1.009964,1.009964 +1.013089,1.013089,1.013089,1.013089,1.013089,1.013089 +1.016214,1.016214,1.016214,1.016214,1.016214,1.016214 +1.019339,1.019339,1.019339,1.019339,1.019339,1.019339 +1.022464,1.022464,1.022464,1.022464,1.022464,1.022464 +1.025589,1.025589,1.025589,1.025589,1.025589,1.025589 +1.028714,1.028714,1.028714,1.028714,1.028714,1.028714 +1.031839,1.031839,1.031839,1.031839,1.031839,1.031839 +1.034964,1.034964,1.034964,1.034964,1.034964,1.034964 +1.038089,1.038089,1.038089,1.038089,1.038089,1.038089 +1.041214,1.041214,1.041214,1.041214,1.041214,1.041214 +1.044339,1.044339,1.044339,1.044339,1.044339,1.044339 +1.047464,1.047464,1.047464,1.047464,1.047464,1.047464 +1.050589,1.050589,1.050589,1.050589,1.050589,1.050589 +1.053714,1.053714,1.053714,1.053714,1.053714,1.053714 +1.056839,1.056839,1.056839,1.056839,1.056839,1.056839 +1.059964,1.059964,1.059964,1.059964,1.059964,1.059964 +1.063089,1.063089,1.063089,1.063089,1.063089,1.063089 +1.066214,1.066214,1.066214,1.066214,1.066214,1.066214 +1.069339,1.069339,1.069339,1.069339,1.069339,1.069339 +1.072464,1.072464,1.072464,1.072464,1.072464,1.072464 +1.075589,1.075589,1.075589,1.075589,1.075589,1.075589 +1.078714,1.078714,1.078714,1.078714,1.078714,1.078714 +1.081839,1.081839,1.081839,1.081839,1.081839,1.081839 +1.084964,1.084964,1.084964,1.084964,1.084964,1.084964 +1.088089,1.088089,1.088089,1.088089,1.088089,1.088089 +1.091214,1.091214,1.091214,1.091214,1.091214,1.091214 +1.094339,1.094339,1.094339,1.094339,1.094339,1.094339 +1.097464,1.097464,1.097464,1.097464,1.097464,1.097464 +1.100589,1.100589,1.100589,1.100589,1.100589,1.100589 +1.103714,1.103714,1.103714,1.103714,1.103714,1.103714 +1.106839,1.106839,1.106839,1.106839,1.106839,1.106839 +1.109964,1.109964,1.109964,1.109964,1.109964,1.109964 +1.113089,1.113089,1.113089,1.113089,1.113089,1.113089 +1.116214,1.116214,1.116214,1.116214,1.116214,1.116214 +1.119339,1.119339,1.119339,1.119339,1.119339,1.119339 +1.122464,1.122464,1.122464,1.122464,1.122464,1.122464 +1.125589,1.125589,1.125589,1.125589,1.125589,1.125589 +1.128714,1.128714,1.128714,1.128714,1.128714,1.128714 +1.131839,1.131839,1.131839,1.131839,1.131839,1.131839 +1.134964,1.134964,1.134964,1.134964,1.134964,1.134964 +1.138089,1.138089,1.138089,1.138089,1.138089,1.138089 +1.141214,1.141214,1.141214,1.141214,1.141214,1.141214 +1.144339,1.144339,1.144339,1.144339,1.144339,1.144339 +1.147464,1.147464,1.147464,1.147464,1.147464,1.147464 +1.150589,1.150589,1.150589,1.150589,1.150589,1.150589 +1.153714,1.153714,1.153714,1.153714,1.153714,1.153714 +1.156839,1.156839,1.156839,1.156839,1.156839,1.156839 +1.159964,1.159964,1.159964,1.159964,1.159964,1.159964 +1.163089,1.163089,1.163089,1.163089,1.163089,1.163089 +1.166214,1.166214,1.166214,1.166214,1.166214,1.166214 +1.169339,1.169339,1.169339,1.169339,1.169339,1.169339 +1.172464,1.172464,1.172464,1.172464,1.172464,1.172464 +1.175589,1.175589,1.175589,1.175589,1.175589,1.175589 +1.178714,1.178714,1.178714,1.178714,1.178714,1.178714 +1.181839,1.181839,1.181839,1.181839,1.181839,1.181839 +1.184964,1.184964,1.184964,1.184964,1.184964,1.184964 +1.188089,1.188089,1.188089,1.188089,1.188089,1.188089 +1.191214,1.191214,1.191214,1.191214,1.191214,1.191214 +1.194339,1.194339,1.194339,1.194339,1.194339,1.194339 +1.197464,1.197464,1.197464,1.197464,1.197464,1.197464 +1.200589,1.200589,1.200589,1.200589,1.200589,1.200589 +1.203714,1.203714,1.203714,1.203714,1.203714,1.203714 +1.206839,1.206839,1.206839,1.206839,1.206839,1.206839 +1.209964,1.209964,1.209964,1.209964,1.209964,1.209964 +1.213089,1.213089,1.213089,1.213089,1.213089,1.213089 +1.216214,1.216214,1.216214,1.216214,1.216214,1.216214 +1.219339,1.219339,1.219339,1.219339,1.219339,1.219339 +1.222464,1.222464,1.222464,1.222464,1.222464,1.222464 +1.225589,1.225589,1.225589,1.225589,1.225589,1.225589 +1.228714,1.228714,1.228714,1.228714,1.228714,1.228714 +1.231839,1.231839,1.231839,1.231839,1.231839,1.231839 +1.234964,1.234964,1.234964,1.234964,1.234964,1.234964 +1.238089,1.238089,1.238089,1.238089,1.238089,1.238089 +1.241214,1.241214,1.241214,1.241214,1.241214,1.241214 +1.244339,1.244339,1.244339,1.244339,1.244339,1.244339 +1.247464,1.247464,1.247464,1.247464,1.247464,1.247464 +1.250589,1.250589,1.250589,1.250589,1.250589,1.250589 +1.253714,1.253714,1.253714,1.253714,1.253714,1.253714 +1.256839,1.256839,1.256839,1.256839,1.256839,1.256839 +1.259964,1.259964,1.259964,1.259964,1.259964,1.259964 +1.263089,1.263089,1.263089,1.263089,1.263089,1.263089 +1.266214,1.266214,1.266214,1.266214,1.266214,1.266214 +1.269339,1.269339,1.269339,1.269339,1.269339,1.269339 +1.272464,1.272464,1.272464,1.272464,1.272464,1.272464 +1.275589,1.275589,1.275589,1.275589,1.275589,1.275589 +1.278714,1.278714,1.278714,1.278714,1.278714,1.278714 +1.281839,1.281839,1.281839,1.281839,1.281839,1.281839 +1.284964,1.284964,1.284964,1.284964,1.284964,1.284964 +1.288089,1.288089,1.288089,1.288089,1.288089,1.288089 +1.291214,1.291214,1.291214,1.291214,1.291214,1.291214 +1.294339,1.294339,1.294339,1.294339,1.294339,1.294339 +1.297464,1.297464,1.297464,1.297464,1.297464,1.297464 +1.300589,1.300589,1.300589,1.300589,1.300589,1.300589 +1.303714,1.303714,1.303714,1.303714,1.303714,1.303714 +1.306839,1.306839,1.306839,1.306839,1.306839,1.306839 +1.309964,1.309964,1.309964,1.309964,1.309964,1.309964 +1.313089,1.313089,1.313089,1.313089,1.313089,1.313089 +1.316214,1.316214,1.316214,1.316214,1.316214,1.316214 +1.319339,1.319339,1.319339,1.319339,1.319339,1.319339 +1.322464,1.322464,1.322464,1.322464,1.322464,1.322464 +1.325589,1.325589,1.325589,1.325589,1.325589,1.325589 +1.328714,1.328714,1.328714,1.328714,1.328714,1.328714 +1.331839,1.331839,1.331839,1.331839,1.331839,1.331839 +1.334964,1.334964,1.334964,1.334964,1.334964,1.334964 +1.338089,1.338089,1.338089,1.338089,1.338089,1.338089 +1.341214,1.341214,1.341214,1.341214,1.341214,1.341214 +1.344339,1.344339,1.344339,1.344339,1.344339,1.344339 +1.347464,1.347464,1.347464,1.347464,1.347464,1.347464 +1.350589,1.350589,1.350589,1.350589,1.350589,1.350589 +1.353714,1.353714,1.353714,1.353714,1.353714,1.353714 +1.356839,1.356839,1.356839,1.356839,1.356839,1.356839 +1.359964,1.359964,1.359964,1.359964,1.359964,1.359964 +1.363089,1.363089,1.363089,1.363089,1.363089,1.363089 +1.366214,1.366214,1.366214,1.366214,1.366214,1.366214 +1.369339,1.369339,1.369339,1.369339,1.369339,1.369339 +1.372464,1.372464,1.372464,1.372464,1.372464,1.372464 +1.375589,1.375589,1.375589,1.375589,1.375589,1.375589 +1.378714,1.378714,1.378714,1.378714,1.378714,1.378714 +1.381839,1.381839,1.381839,1.381839,1.381839,1.381839 +1.384964,1.384964,1.384964,1.384964,1.384964,1.384964 +1.388089,1.388089,1.388089,1.388089,1.388089,1.388089 +1.391214,1.391214,1.391214,1.391214,1.391214,1.391214 +1.394339,1.394339,1.394339,1.394339,1.394339,1.394339 +1.397464,1.397464,1.397464,1.397464,1.397464,1.397464 +1.400589,1.400589,1.400589,1.400589,1.400589,1.400589 +1.403714,1.403714,1.403714,1.403714,1.403714,1.403714 +1.406839,1.406839,1.406839,1.406839,1.406839,1.406839 +1.409964,1.409964,1.409964,1.409964,1.409964,1.409964 +1.413089,1.413089,1.413089,1.413089,1.413089,1.413089 +1.416214,1.416214,1.416214,1.416214,1.416214,1.416214 +1.419339,1.419339,1.419339,1.419339,1.419339,1.419339 +1.422464,1.422464,1.422464,1.422464,1.422464,1.422464 +1.425589,1.425589,1.425589,1.425589,1.425589,1.425589 +1.428714,1.428714,1.428714,1.428714,1.428714,1.428714 +1.431839,1.431839,1.431839,1.431839,1.431839,1.431839 +1.434964,1.434964,1.434964,1.434964,1.434964,1.434964 +1.438089,1.438089,1.438089,1.438089,1.438089,1.438089 +1.441214,1.441214,1.441214,1.441214,1.441214,1.441214 +1.444339,1.444339,1.444339,1.444339,1.444339,1.444339 +1.447464,1.447464,1.447464,1.447464,1.447464,1.447464 +1.450589,1.450589,1.450589,1.450589,1.450589,1.450589 +1.453714,1.453714,1.453714,1.453714,1.453714,1.453714 +1.456839,1.456839,1.456839,1.456839,1.456839,1.456839 +1.459964,1.459964,1.459964,1.459964,1.459964,1.459964 +1.463089,1.463089,1.463089,1.463089,1.463089,1.463089 +1.466214,1.466214,1.466214,1.466214,1.466214,1.466214 +1.469339,1.469339,1.469339,1.469339,1.469339,1.469339 +1.472464,1.472464,1.472464,1.472464,1.472464,1.472464 +1.475589,1.475589,1.475589,1.475589,1.475589,1.475589 +1.478714,1.478714,1.478714,1.478714,1.478714,1.478714 +1.481839,1.481839,1.481839,1.481839,1.481839,1.481839 +1.484964,1.484964,1.484964,1.484964,1.484964,1.484964 +1.488089,1.488089,1.488089,1.488089,1.488089,1.488089 +1.491214,1.491214,1.491214,1.491214,1.491214,1.491214 +1.494339,1.494339,1.494339,1.494339,1.494339,1.494339 +1.497464,1.497464,1.497464,1.497464,1.497464,1.497464 +1.500589,1.500589,1.500589,1.500589,1.500589,1.500589 +1.503714,1.503714,1.503714,1.503714,1.503714,1.503714 +1.506839,1.506839,1.506839,1.506839,1.506839,1.506839 +1.509964,1.509964,1.509964,1.509964,1.509964,1.509964 +1.513089,1.513089,1.513089,1.513089,1.513089,1.513089 +1.516214,1.516214,1.516214,1.516214,1.516214,1.516214 +1.519339,1.519339,1.519339,1.519339,1.519339,1.519339 +1.522464,1.522464,1.522464,1.522464,1.522464,1.522464 +1.525589,1.525589,1.525589,1.525589,1.525589,1.525589 +1.528714,1.528714,1.528714,1.528714,1.528714,1.528714 +1.531839,1.531839,1.531839,1.531839,1.531839,1.531839 +1.534964,1.534964,1.534964,1.534964,1.534964,1.534964 +1.538089,1.538089,1.538089,1.538089,1.538089,1.538089 +1.541214,1.541214,1.541214,1.541214,1.541214,1.541214 +1.544339,1.544339,1.544339,1.544339,1.544339,1.544339 +1.547464,1.547464,1.547464,1.547464,1.547464,1.547464 +1.550589,1.550589,1.550589,1.550589,1.550589,1.550589 +1.553714,1.553714,1.553714,1.553714,1.553714,1.553714 +1.556839,1.556839,1.556839,1.556839,1.556839,1.556839 +1.559964,1.559964,1.559964,1.559964,1.559964,1.559964 +1.563089,1.563089,1.563089,1.563089,1.563089,1.563089 +1.566214,1.566214,1.566214,1.566214,1.566214,1.566214 +1.569339,1.569339,1.569339,1.569339,1.569339,1.569339 +1.572464,1.572464,1.572464,1.572464,1.572464,1.572464 +1.575589,1.575589,1.575589,1.575589,1.575589,1.575589 +1.578714,1.578714,1.578714,1.578714,1.578714,1.578714 +1.581839,1.581839,1.581839,1.581839,1.581839,1.581839 +1.584964,1.584964,1.584964,1.584964,1.584964,1.584964 +1.588089,1.588089,1.588089,1.588089,1.588089,1.588089 +1.591214,1.591214,1.591214,1.591214,1.591214,1.591214 +1.594339,1.594339,1.594339,1.594339,1.594339,1.594339 +1.597464,1.597464,1.597464,1.597464,1.597464,1.597464 +1.600589,1.600589,1.600589,1.600589,1.600589,1.600589 +1.603714,1.603714,1.603714,1.603714,1.603714,1.603714 +1.606839,1.606839,1.606839,1.606839,1.606839,1.606839 +1.609964,1.609964,1.609964,1.609964,1.609964,1.609964 +1.613089,1.613089,1.613089,1.613089,1.613089,1.613089 +1.616214,1.616214,1.616214,1.616214,1.616214,1.616214 +1.619339,1.619339,1.619339,1.619339,1.619339,1.619339 +1.622464,1.622464,1.622464,1.622464,1.622464,1.622464 +1.625589,1.625589,1.625589,1.625589,1.625589,1.625589 +1.628714,1.628714,1.628714,1.628714,1.628714,1.628714 +1.631839,1.631839,1.631839,1.631839,1.631839,1.631839 +1.634964,1.634964,1.634964,1.634964,1.634964,1.634964 +1.638089,1.638089,1.638089,1.638089,1.638089,1.638089 +1.641214,1.641214,1.641214,1.641214,1.641214,1.641214 +1.644339,1.644339,1.644339,1.644339,1.644339,1.644339 +1.647464,1.647464,1.647464,1.647464,1.647464,1.647464 +1.650589,1.650589,1.650589,1.650589,1.650589,1.650589 +1.653714,1.653714,1.653714,1.653714,1.653714,1.653714 +1.656839,1.656839,1.656839,1.656839,1.656839,1.656839 +1.659964,1.659964,1.659964,1.659964,1.659964,1.659964 +1.663089,1.663089,1.663089,1.663089,1.663089,1.663089 +1.666214,1.666214,1.666214,1.666214,1.666214,1.666214 +1.669339,1.669339,1.669339,1.669339,1.669339,1.669339 +1.672464,1.672464,1.672464,1.672464,1.672464,1.672464 +1.675589,1.675589,1.675589,1.675589,1.675589,1.675589 +1.678714,1.678714,1.678714,1.678714,1.678714,1.678714 +1.681839,1.681839,1.681839,1.681839,1.681839,1.681839 +1.684964,1.684964,1.684964,1.684964,1.684964,1.684964 +1.688089,1.688089,1.688089,1.688089,1.688089,1.688089 +1.691214,1.691214,1.691214,1.691214,1.691214,1.691214 +1.694339,1.694339,1.694339,1.694339,1.694339,1.694339 +1.697464,1.697464,1.697464,1.697464,1.697464,1.697464 +1.700582,1.700582,1.700582,1.700582,1.700582,1.700582 +1.703682,1.703682,1.703682,1.703682,1.703682,1.703682 +1.70675,1.70675,1.70675,1.70675,1.70675,1.70675 +1.709774,1.709774,1.709774,1.709774,1.709774,1.709774 +1.712742,1.712742,1.712742,1.712742,1.712742,1.712742 +1.715641,1.715641,1.715641,1.715641,1.715641,1.715641 +1.718459,1.718459,1.718459,1.718459,1.718459,1.718459 +1.721183,1.721183,1.721183,1.721183,1.721183,1.721183 +1.723801,1.723801,1.723801,1.723801,1.723801,1.723801 +1.7263,1.7263,1.7263,1.7263,1.7263,1.7263 +1.728668,1.728668,1.728668,1.728668,1.728668,1.728668 +1.730891,1.730891,1.730891,1.730891,1.730891,1.730891 +1.732959,1.732959,1.732959,1.732959,1.732959,1.732959 +1.734858,1.734858,1.734858,1.734858,1.734858,1.734858 +1.736575,1.736575,1.736575,1.736575,1.736575,1.736575 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.739437,1.739437,1.739437,1.739437,1.739437,1.739437 +1.740596,1.740596,1.740596,1.740596,1.740596,1.740596 +1.741592,1.741592,1.741592,1.741592,1.741592,1.741592 +1.742436,1.742436,1.742436,1.742436,1.742436,1.742436 +1.743142,1.743142,1.743142,1.743142,1.743142,1.743142 +1.74372,1.74372,1.74372,1.74372,1.74372,1.74372 +1.744185,1.744185,1.744185,1.744185,1.744185,1.744185 +1.744548,1.744548,1.744548,1.744548,1.744548,1.744548 +1.744823,1.744823,1.744823,1.744823,1.744823,1.744823 +1.745021,1.745021,1.745021,1.745021,1.745021,1.745021 +1.745154,1.745154,1.745154,1.745154,1.745154,1.745154 +1.745237,1.745237,1.745237,1.745237,1.745237,1.745237 +1.74528,1.74528,1.74528,1.74528,1.74528,1.74528 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745298,1.745298,1.745298,1.745298,1.745298,1.745298 +1.745283,1.745283,1.745283,1.745283,1.745283,1.745283 +1.745244,1.745244,1.745244,1.745244,1.745244,1.745244 +1.745167,1.745167,1.745167,1.745167,1.745167,1.745167 +1.74504,1.74504,1.74504,1.74504,1.74504,1.74504 +1.74485,1.74485,1.74485,1.74485,1.74485,1.74485 +1.744585,1.744585,1.744585,1.744585,1.744585,1.744585 +1.744233,1.744233,1.744233,1.744233,1.744233,1.744233 +1.743781,1.743781,1.743781,1.743781,1.743781,1.743781 +1.743217,1.743217,1.743217,1.743217,1.743217,1.743217 +1.742527,1.742527,1.742527,1.742527,1.742527,1.742527 +1.7417,1.7417,1.7417,1.7417,1.7417,1.7417 +1.740723,1.740723,1.740723,1.740723,1.740723,1.740723 +1.739583,1.739583,1.739583,1.739583,1.739583,1.739583 +1.738269,1.738269,1.738269,1.738269,1.738269,1.738269 +1.736767,1.736767,1.736767,1.736767,1.736767,1.736767 +1.735072,1.735072,1.735072,1.735072,1.735072,1.735072 +1.733194,1.733194,1.733194,1.733194,1.733194,1.733194 +1.731145,1.731145,1.731145,1.731145,1.731145,1.731145 +1.72894,1.72894,1.72894,1.72894,1.72894,1.72894 +1.726588,1.726588,1.726588,1.726588,1.726588,1.726588 +1.724104,1.724104,1.724104,1.724104,1.724104,1.724104 +1.7215,1.7215,1.7215,1.7215,1.7215,1.7215 +1.718788,1.718788,1.718788,1.718788,1.718788,1.718788 +1.71598,1.71598,1.71598,1.71598,1.71598,1.71598 +1.71309,1.71309,1.71309,1.71309,1.71309,1.71309 +1.71013,1.71013,1.71013,1.71013,1.71013,1.71013 +1.707112,1.707112,1.707112,1.707112,1.707112,1.707112 +1.704048,1.704048,1.704048,1.704048,1.704048,1.704048 +1.700952,1.700952,1.700952,1.700952,1.700952,1.700952 +1.697835,1.697835,1.697835,1.697835,1.697835,1.697835 +1.694711,1.694711,1.694711,1.694711,1.694711,1.694711 +1.691586,1.691586,1.691586,1.691586,1.691586,1.691586 +1.688461,1.688461,1.688461,1.688461,1.688461,1.688461 +1.685336,1.685336,1.685336,1.685336,1.685336,1.685336 +1.682211,1.682211,1.682211,1.682211,1.682211,1.682211 +1.679086,1.679086,1.679086,1.679086,1.679086,1.679086 +1.675961,1.675961,1.675961,1.675961,1.675961,1.675961 +1.672836,1.672836,1.672836,1.672836,1.672836,1.672836 +1.669711,1.669711,1.669711,1.669711,1.669711,1.669711 +1.666586,1.666586,1.666586,1.666586,1.666586,1.666586 +1.663461,1.663461,1.663461,1.663461,1.663461,1.663461 +1.660336,1.660336,1.660336,1.660336,1.660336,1.660336 +1.657211,1.657211,1.657211,1.657211,1.657211,1.657211 +1.654086,1.654086,1.654086,1.654086,1.654086,1.654086 +1.650961,1.650961,1.650961,1.650961,1.650961,1.650961 +1.647836,1.647836,1.647836,1.647836,1.647836,1.647836 +1.644711,1.644711,1.644711,1.644711,1.644711,1.644711 +1.641586,1.641586,1.641586,1.641586,1.641586,1.641586 +1.638461,1.638461,1.638461,1.638461,1.638461,1.638461 +1.635336,1.635336,1.635336,1.635336,1.635336,1.635336 +1.632211,1.632211,1.632211,1.632211,1.632211,1.632211 +1.629086,1.629086,1.629086,1.629086,1.629086,1.629086 +1.625961,1.625961,1.625961,1.625961,1.625961,1.625961 +1.622836,1.622836,1.622836,1.622836,1.622836,1.622836 +1.619711,1.619711,1.619711,1.619711,1.619711,1.619711 +1.616586,1.616586,1.616586,1.616586,1.616586,1.616586 +1.613461,1.613461,1.613461,1.613461,1.613461,1.613461 +1.610336,1.610336,1.610336,1.610336,1.610336,1.610336 +1.607211,1.607211,1.607211,1.607211,1.607211,1.607211 +1.604086,1.604086,1.604086,1.604086,1.604086,1.604086 +1.600961,1.600961,1.600961,1.600961,1.600961,1.600961 +1.597836,1.597836,1.597836,1.597836,1.597836,1.597836 +1.594711,1.594711,1.594711,1.594711,1.594711,1.594711 +1.591586,1.591586,1.591586,1.591586,1.591586,1.591586 +1.588461,1.588461,1.588461,1.588461,1.588461,1.588461 +1.585336,1.585336,1.585336,1.585336,1.585336,1.585336 +1.582211,1.582211,1.582211,1.582211,1.582211,1.582211 +1.579086,1.579086,1.579086,1.579086,1.579086,1.579086 +1.575961,1.575961,1.575961,1.575961,1.575961,1.575961 +1.572836,1.572836,1.572836,1.572836,1.572836,1.572836 +1.569711,1.569711,1.569711,1.569711,1.569711,1.569711 +1.566586,1.566586,1.566586,1.566586,1.566586,1.566586 +1.563461,1.563461,1.563461,1.563461,1.563461,1.563461 +1.560336,1.560336,1.560336,1.560336,1.560336,1.560336 +1.557211,1.557211,1.557211,1.557211,1.557211,1.557211 +1.554086,1.554086,1.554086,1.554086,1.554086,1.554086 +1.550961,1.550961,1.550961,1.550961,1.550961,1.550961 +1.547836,1.547836,1.547836,1.547836,1.547836,1.547836 +1.544711,1.544711,1.544711,1.544711,1.544711,1.544711 +1.541586,1.541586,1.541586,1.541586,1.541586,1.541586 +1.538461,1.538461,1.538461,1.538461,1.538461,1.538461 +1.535336,1.535336,1.535336,1.535336,1.535336,1.535336 +1.532211,1.532211,1.532211,1.532211,1.532211,1.532211 +1.529086,1.529086,1.529086,1.529086,1.529086,1.529086 +1.525961,1.525961,1.525961,1.525961,1.525961,1.525961 +1.522836,1.522836,1.522836,1.522836,1.522836,1.522836 +1.519711,1.519711,1.519711,1.519711,1.519711,1.519711 +1.516586,1.516586,1.516586,1.516586,1.516586,1.516586 +1.513461,1.513461,1.513461,1.513461,1.513461,1.513461 +1.510336,1.510336,1.510336,1.510336,1.510336,1.510336 +1.507211,1.507211,1.507211,1.507211,1.507211,1.507211 +1.504086,1.504086,1.504086,1.504086,1.504086,1.504086 +1.500961,1.500961,1.500961,1.500961,1.500961,1.500961 +1.497836,1.497836,1.497836,1.497836,1.497836,1.497836 +1.494711,1.494711,1.494711,1.494711,1.494711,1.494711 +1.491586,1.491586,1.491586,1.491586,1.491586,1.491586 +1.488461,1.488461,1.488461,1.488461,1.488461,1.488461 +1.485336,1.485336,1.485336,1.485336,1.485336,1.485336 +1.482211,1.482211,1.482211,1.482211,1.482211,1.482211 +1.479086,1.479086,1.479086,1.479086,1.479086,1.479086 +1.475961,1.475961,1.475961,1.475961,1.475961,1.475961 +1.472836,1.472836,1.472836,1.472836,1.472836,1.472836 +1.469711,1.469711,1.469711,1.469711,1.469711,1.469711 +1.466586,1.466586,1.466586,1.466586,1.466586,1.466586 +1.463461,1.463461,1.463461,1.463461,1.463461,1.463461 +1.460336,1.460336,1.460336,1.460336,1.460336,1.460336 +1.457211,1.457211,1.457211,1.457211,1.457211,1.457211 +1.454086,1.454086,1.454086,1.454086,1.454086,1.454086 +1.450961,1.450961,1.450961,1.450961,1.450961,1.450961 +1.447836,1.447836,1.447836,1.447836,1.447836,1.447836 +1.444711,1.444711,1.444711,1.444711,1.444711,1.444711 +1.441586,1.441586,1.441586,1.441586,1.441586,1.441586 +1.438461,1.438461,1.438461,1.438461,1.438461,1.438461 +1.435336,1.435336,1.435336,1.435336,1.435336,1.435336 +1.432211,1.432211,1.432211,1.432211,1.432211,1.432211 +1.429086,1.429086,1.429086,1.429086,1.429086,1.429086 +1.425961,1.425961,1.425961,1.425961,1.425961,1.425961 +1.422836,1.422836,1.422836,1.422836,1.422836,1.422836 +1.419711,1.419711,1.419711,1.419711,1.419711,1.419711 +1.416586,1.416586,1.416586,1.416586,1.416586,1.416586 +1.413461,1.413461,1.413461,1.413461,1.413461,1.413461 +1.410336,1.410336,1.410336,1.410336,1.410336,1.410336 +1.407211,1.407211,1.407211,1.407211,1.407211,1.407211 +1.404086,1.404086,1.404086,1.404086,1.404086,1.404086 +1.400961,1.400961,1.400961,1.400961,1.400961,1.400961 +1.397836,1.397836,1.397836,1.397836,1.397836,1.397836 +1.394711,1.394711,1.394711,1.394711,1.394711,1.394711 +1.391586,1.391586,1.391586,1.391586,1.391586,1.391586 +1.388461,1.388461,1.388461,1.388461,1.388461,1.388461 +1.385336,1.385336,1.385336,1.385336,1.385336,1.385336 +1.382211,1.382211,1.382211,1.382211,1.382211,1.382211 +1.379086,1.379086,1.379086,1.379086,1.379086,1.379086 +1.375961,1.375961,1.375961,1.375961,1.375961,1.375961 +1.372836,1.372836,1.372836,1.372836,1.372836,1.372836 +1.369711,1.369711,1.369711,1.369711,1.369711,1.369711 +1.366586,1.366586,1.366586,1.366586,1.366586,1.366586 +1.363461,1.363461,1.363461,1.363461,1.363461,1.363461 +1.360336,1.360336,1.360336,1.360336,1.360336,1.360336 +1.357211,1.357211,1.357211,1.357211,1.357211,1.357211 +1.354086,1.354086,1.354086,1.354086,1.354086,1.354086 +1.350961,1.350961,1.350961,1.350961,1.350961,1.350961 +1.347836,1.347836,1.347836,1.347836,1.347836,1.347836 +1.344711,1.344711,1.344711,1.344711,1.344711,1.344711 +1.341586,1.341586,1.341586,1.341586,1.341586,1.341586 +1.338461,1.338461,1.338461,1.338461,1.338461,1.338461 +1.335336,1.335336,1.335336,1.335336,1.335336,1.335336 +1.332211,1.332211,1.332211,1.332211,1.332211,1.332211 +1.329086,1.329086,1.329086,1.329086,1.329086,1.329086 +1.325961,1.325961,1.325961,1.325961,1.325961,1.325961 +1.322836,1.322836,1.322836,1.322836,1.322836,1.322836 +1.319711,1.319711,1.319711,1.319711,1.319711,1.319711 +1.316586,1.316586,1.316586,1.316586,1.316586,1.316586 +1.313461,1.313461,1.313461,1.313461,1.313461,1.313461 +1.310336,1.310336,1.310336,1.310336,1.310336,1.310336 +1.307211,1.307211,1.307211,1.307211,1.307211,1.307211 +1.304086,1.304086,1.304086,1.304086,1.304086,1.304086 +1.300961,1.300961,1.300961,1.300961,1.300961,1.300961 +1.297836,1.297836,1.297836,1.297836,1.297836,1.297836 +1.294711,1.294711,1.294711,1.294711,1.294711,1.294711 +1.291586,1.291586,1.291586,1.291586,1.291586,1.291586 +1.288461,1.288461,1.288461,1.288461,1.288461,1.288461 +1.285336,1.285336,1.285336,1.285336,1.285336,1.285336 +1.282211,1.282211,1.282211,1.282211,1.282211,1.282211 +1.279086,1.279086,1.279086,1.279086,1.279086,1.279086 +1.275961,1.275961,1.275961,1.275961,1.275961,1.275961 +1.272836,1.272836,1.272836,1.272836,1.272836,1.272836 +1.269711,1.269711,1.269711,1.269711,1.269711,1.269711 +1.266586,1.266586,1.266586,1.266586,1.266586,1.266586 +1.263461,1.263461,1.263461,1.263461,1.263461,1.263461 +1.260336,1.260336,1.260336,1.260336,1.260336,1.260336 +1.257211,1.257211,1.257211,1.257211,1.257211,1.257211 +1.254086,1.254086,1.254086,1.254086,1.254086,1.254086 +1.250961,1.250961,1.250961,1.250961,1.250961,1.250961 +1.247836,1.247836,1.247836,1.247836,1.247836,1.247836 +1.244711,1.244711,1.244711,1.244711,1.244711,1.244711 +1.241586,1.241586,1.241586,1.241586,1.241586,1.241586 +1.238461,1.238461,1.238461,1.238461,1.238461,1.238461 +1.235336,1.235336,1.235336,1.235336,1.235336,1.235336 +1.232211,1.232211,1.232211,1.232211,1.232211,1.232211 +1.229086,1.229086,1.229086,1.229086,1.229086,1.229086 +1.225961,1.225961,1.225961,1.225961,1.225961,1.225961 +1.222836,1.222836,1.222836,1.222836,1.222836,1.222836 +1.219711,1.219711,1.219711,1.219711,1.219711,1.219711 +1.216586,1.216586,1.216586,1.216586,1.216586,1.216586 +1.213461,1.213461,1.213461,1.213461,1.213461,1.213461 +1.210336,1.210336,1.210336,1.210336,1.210336,1.210336 +1.207211,1.207211,1.207211,1.207211,1.207211,1.207211 +1.204086,1.204086,1.204086,1.204086,1.204086,1.204086 +1.200961,1.200961,1.200961,1.200961,1.200961,1.200961 +1.197836,1.197836,1.197836,1.197836,1.197836,1.197836 +1.194711,1.194711,1.194711,1.194711,1.194711,1.194711 +1.191586,1.191586,1.191586,1.191586,1.191586,1.191586 +1.188461,1.188461,1.188461,1.188461,1.188461,1.188461 +1.185336,1.185336,1.185336,1.185336,1.185336,1.185336 +1.182211,1.182211,1.182211,1.182211,1.182211,1.182211 +1.179086,1.179086,1.179086,1.179086,1.179086,1.179086 +1.175961,1.175961,1.175961,1.175961,1.175961,1.175961 +1.172836,1.172836,1.172836,1.172836,1.172836,1.172836 +1.169711,1.169711,1.169711,1.169711,1.169711,1.169711 +1.166586,1.166586,1.166586,1.166586,1.166586,1.166586 +1.163461,1.163461,1.163461,1.163461,1.163461,1.163461 +1.160336,1.160336,1.160336,1.160336,1.160336,1.160336 +1.157211,1.157211,1.157211,1.157211,1.157211,1.157211 +1.154086,1.154086,1.154086,1.154086,1.154086,1.154086 +1.150961,1.150961,1.150961,1.150961,1.150961,1.150961 +1.147836,1.147836,1.147836,1.147836,1.147836,1.147836 +1.144711,1.144711,1.144711,1.144711,1.144711,1.144711 +1.141586,1.141586,1.141586,1.141586,1.141586,1.141586 +1.138461,1.138461,1.138461,1.138461,1.138461,1.138461 +1.135336,1.135336,1.135336,1.135336,1.135336,1.135336 +1.132211,1.132211,1.132211,1.132211,1.132211,1.132211 +1.129086,1.129086,1.129086,1.129086,1.129086,1.129086 +1.125961,1.125961,1.125961,1.125961,1.125961,1.125961 +1.122836,1.122836,1.122836,1.122836,1.122836,1.122836 +1.119711,1.119711,1.119711,1.119711,1.119711,1.119711 +1.116586,1.116586,1.116586,1.116586,1.116586,1.116586 +1.113461,1.113461,1.113461,1.113461,1.113461,1.113461 +1.110336,1.110336,1.110336,1.110336,1.110336,1.110336 +1.107211,1.107211,1.107211,1.107211,1.107211,1.107211 +1.104086,1.104086,1.104086,1.104086,1.104086,1.104086 +1.100961,1.100961,1.100961,1.100961,1.100961,1.100961 +1.097836,1.097836,1.097836,1.097836,1.097836,1.097836 +1.094711,1.094711,1.094711,1.094711,1.094711,1.094711 +1.091586,1.091586,1.091586,1.091586,1.091586,1.091586 +1.088461,1.088461,1.088461,1.088461,1.088461,1.088461 +1.085336,1.085336,1.085336,1.085336,1.085336,1.085336 +1.082211,1.082211,1.082211,1.082211,1.082211,1.082211 +1.079086,1.079086,1.079086,1.079086,1.079086,1.079086 +1.075961,1.075961,1.075961,1.075961,1.075961,1.075961 +1.072836,1.072836,1.072836,1.072836,1.072836,1.072836 +1.069711,1.069711,1.069711,1.069711,1.069711,1.069711 +1.066586,1.066586,1.066586,1.066586,1.066586,1.066586 +1.063461,1.063461,1.063461,1.063461,1.063461,1.063461 +1.060336,1.060336,1.060336,1.060336,1.060336,1.060336 +1.057211,1.057211,1.057211,1.057211,1.057211,1.057211 +1.054086,1.054086,1.054086,1.054086,1.054086,1.054086 +1.050961,1.050961,1.050961,1.050961,1.050961,1.050961 +1.047836,1.047836,1.047836,1.047836,1.047836,1.047836 +1.044711,1.044711,1.044711,1.044711,1.044711,1.044711 +1.041586,1.041586,1.041586,1.041586,1.041586,1.041586 +1.038461,1.038461,1.038461,1.038461,1.038461,1.038461 +1.035336,1.035336,1.035336,1.035336,1.035336,1.035336 +1.032211,1.032211,1.032211,1.032211,1.032211,1.032211 +1.029086,1.029086,1.029086,1.029086,1.029086,1.029086 +1.025961,1.025961,1.025961,1.025961,1.025961,1.025961 +1.022836,1.022836,1.022836,1.022836,1.022836,1.022836 +1.019711,1.019711,1.019711,1.019711,1.019711,1.019711 +1.016586,1.016586,1.016586,1.016586,1.016586,1.016586 +1.013461,1.013461,1.013461,1.013461,1.013461,1.013461 +1.010336,1.010336,1.010336,1.010336,1.010336,1.010336 +1.007211,1.007211,1.007211,1.007211,1.007211,1.007211 +1.004086,1.004086,1.004086,1.004086,1.004086,1.004086 +1.000961,1.000961,1.000961,1.000961,1.000961,1.000961 +0.997836,0.997836,0.997836,0.997836,0.997836,0.997836 +0.994711,0.994711,0.994711,0.994711,0.994711,0.994711 +0.991586,0.991586,0.991586,0.991586,0.991586,0.991586 +0.988461,0.988461,0.988461,0.988461,0.988461,0.988461 +0.985336,0.985336,0.985336,0.985336,0.985336,0.985336 +0.982211,0.982211,0.982211,0.982211,0.982211,0.982211 +0.979086,0.979086,0.979086,0.979086,0.979086,0.979086 +0.975961,0.975961,0.975961,0.975961,0.975961,0.975961 +0.972836,0.972836,0.972836,0.972836,0.972836,0.972836 +0.969711,0.969711,0.969711,0.969711,0.969711,0.969711 +0.966586,0.966586,0.966586,0.966586,0.966586,0.966586 +0.963461,0.963461,0.963461,0.963461,0.963461,0.963461 +0.960336,0.960336,0.960336,0.960336,0.960336,0.960336 +0.957211,0.957211,0.957211,0.957211,0.957211,0.957211 +0.954086,0.954086,0.954086,0.954086,0.954086,0.954086 +0.950961,0.950961,0.950961,0.950961,0.950961,0.950961 +0.947836,0.947836,0.947836,0.947836,0.947836,0.947836 +0.944711,0.944711,0.944711,0.944711,0.944711,0.944711 +0.941586,0.941586,0.941586,0.941586,0.941586,0.941586 +0.938461,0.938461,0.938461,0.938461,0.938461,0.938461 +0.935336,0.935336,0.935336,0.935336,0.935336,0.935336 +0.932211,0.932211,0.932211,0.932211,0.932211,0.932211 +0.929086,0.929086,0.929086,0.929086,0.929086,0.929086 +0.925961,0.925961,0.925961,0.925961,0.925961,0.925961 +0.922836,0.922836,0.922836,0.922836,0.922836,0.922836 +0.919711,0.919711,0.919711,0.919711,0.919711,0.919711 +0.916586,0.916586,0.916586,0.916586,0.916586,0.916586 +0.913461,0.913461,0.913461,0.913461,0.913461,0.913461 +0.910336,0.910336,0.910336,0.910336,0.910336,0.910336 +0.907211,0.907211,0.907211,0.907211,0.907211,0.907211 +0.904086,0.904086,0.904086,0.904086,0.904086,0.904086 +0.900961,0.900961,0.900961,0.900961,0.900961,0.900961 +0.897836,0.897836,0.897836,0.897836,0.897836,0.897836 +0.894711,0.894711,0.894711,0.894711,0.894711,0.894711 +0.891586,0.891586,0.891586,0.891586,0.891586,0.891586 +0.888461,0.888461,0.888461,0.888461,0.888461,0.888461 +0.885336,0.885336,0.885336,0.885336,0.885336,0.885336 +0.882211,0.882211,0.882211,0.882211,0.882211,0.882211 +0.879086,0.879086,0.879086,0.879086,0.879086,0.879086 +0.875961,0.875961,0.875961,0.875961,0.875961,0.875961 +0.872836,0.872836,0.872836,0.872836,0.872836,0.872836 +0.869711,0.869711,0.869711,0.869711,0.869711,0.869711 +0.866586,0.866586,0.866586,0.866586,0.866586,0.866586 +0.863461,0.863461,0.863461,0.863461,0.863461,0.863461 +0.860336,0.860336,0.860336,0.860336,0.860336,0.860336 +0.857211,0.857211,0.857211,0.857211,0.857211,0.857211 +0.854086,0.854086,0.854086,0.854086,0.854086,0.854086 +0.850961,0.850961,0.850961,0.850961,0.850961,0.850961 +0.847836,0.847836,0.847836,0.847836,0.847836,0.847836 +0.844711,0.844711,0.844711,0.844711,0.844711,0.844711 +0.841586,0.841586,0.841586,0.841586,0.841586,0.841586 +0.838461,0.838461,0.838461,0.838461,0.838461,0.838461 +0.835336,0.835336,0.835336,0.835336,0.835336,0.835336 +0.832211,0.832211,0.832211,0.832211,0.832211,0.832211 +0.829086,0.829086,0.829086,0.829086,0.829086,0.829086 +0.825961,0.825961,0.825961,0.825961,0.825961,0.825961 +0.822836,0.822836,0.822836,0.822836,0.822836,0.822836 +0.819711,0.819711,0.819711,0.819711,0.819711,0.819711 +0.816586,0.816586,0.816586,0.816586,0.816586,0.816586 +0.813461,0.813461,0.813461,0.813461,0.813461,0.813461 +0.810336,0.810336,0.810336,0.810336,0.810336,0.810336 +0.807211,0.807211,0.807211,0.807211,0.807211,0.807211 +0.804086,0.804086,0.804086,0.804086,0.804086,0.804086 +0.800961,0.800961,0.800961,0.800961,0.800961,0.800961 +0.797836,0.797836,0.797836,0.797836,0.797836,0.797836 +0.794711,0.794711,0.794711,0.794711,0.794711,0.794711 +0.791586,0.791586,0.791586,0.791586,0.791586,0.791586 +0.788461,0.788461,0.788461,0.788461,0.788461,0.788461 +0.785336,0.785336,0.785336,0.785336,0.785336,0.785336 +0.782211,0.782211,0.782211,0.782211,0.782211,0.782211 +0.779086,0.779086,0.779086,0.779086,0.779086,0.779086 +0.775961,0.775961,0.775961,0.775961,0.775961,0.775961 +0.772836,0.772836,0.772836,0.772836,0.772836,0.772836 +0.769711,0.769711,0.769711,0.769711,0.769711,0.769711 +0.766586,0.766586,0.766586,0.766586,0.766586,0.766586 +0.763461,0.763461,0.763461,0.763461,0.763461,0.763461 +0.760336,0.760336,0.760336,0.760336,0.760336,0.760336 +0.757211,0.757211,0.757211,0.757211,0.757211,0.757211 +0.754086,0.754086,0.754086,0.754086,0.754086,0.754086 +0.750961,0.750961,0.750961,0.750961,0.750961,0.750961 +0.747836,0.747836,0.747836,0.747836,0.747836,0.747836 +0.744711,0.744711,0.744711,0.744711,0.744711,0.744711 +0.741586,0.741586,0.741586,0.741586,0.741586,0.741586 +0.738461,0.738461,0.738461,0.738461,0.738461,0.738461 +0.735336,0.735336,0.735336,0.735336,0.735336,0.735336 +0.732211,0.732211,0.732211,0.732211,0.732211,0.732211 +0.729086,0.729086,0.729086,0.729086,0.729086,0.729086 +0.725961,0.725961,0.725961,0.725961,0.725961,0.725961 +0.722836,0.722836,0.722836,0.722836,0.722836,0.722836 +0.719711,0.719711,0.719711,0.719711,0.719711,0.719711 +0.716586,0.716586,0.716586,0.716586,0.716586,0.716586 +0.713461,0.713461,0.713461,0.713461,0.713461,0.713461 +0.710336,0.710336,0.710336,0.710336,0.710336,0.710336 +0.707211,0.707211,0.707211,0.707211,0.707211,0.707211 +0.704086,0.704086,0.704086,0.704086,0.704086,0.704086 +0.700961,0.700961,0.700961,0.700961,0.700961,0.700961 +0.697836,0.697836,0.697836,0.697836,0.697836,0.697836 +0.694711,0.694711,0.694711,0.694711,0.694711,0.694711 +0.691586,0.691586,0.691586,0.691586,0.691586,0.691586 +0.688461,0.688461,0.688461,0.688461,0.688461,0.688461 +0.685336,0.685336,0.685336,0.685336,0.685336,0.685336 +0.682211,0.682211,0.682211,0.682211,0.682211,0.682211 +0.679086,0.679086,0.679086,0.679086,0.679086,0.679086 +0.675961,0.675961,0.675961,0.675961,0.675961,0.675961 +0.672836,0.672836,0.672836,0.672836,0.672836,0.672836 +0.669711,0.669711,0.669711,0.669711,0.669711,0.669711 +0.666586,0.666586,0.666586,0.666586,0.666586,0.666586 +0.663461,0.663461,0.663461,0.663461,0.663461,0.663461 +0.660336,0.660336,0.660336,0.660336,0.660336,0.660336 +0.657211,0.657211,0.657211,0.657211,0.657211,0.657211 +0.654086,0.654086,0.654086,0.654086,0.654086,0.654086 +0.650961,0.650961,0.650961,0.650961,0.650961,0.650961 +0.647836,0.647836,0.647836,0.647836,0.647836,0.647836 +0.644711,0.644711,0.644711,0.644711,0.644711,0.644711 +0.641586,0.641586,0.641586,0.641586,0.641586,0.641586 +0.638461,0.638461,0.638461,0.638461,0.638461,0.638461 +0.635336,0.635336,0.635336,0.635336,0.635336,0.635336 +0.632211,0.632211,0.632211,0.632211,0.632211,0.632211 +0.629086,0.629086,0.629086,0.629086,0.629086,0.629086 +0.625961,0.625961,0.625961,0.625961,0.625961,0.625961 +0.622836,0.622836,0.622836,0.622836,0.622836,0.622836 +0.619711,0.619711,0.619711,0.619711,0.619711,0.619711 +0.616586,0.616586,0.616586,0.616586,0.616586,0.616586 +0.613461,0.613461,0.613461,0.613461,0.613461,0.613461 +0.610336,0.610336,0.610336,0.610336,0.610336,0.610336 +0.607211,0.607211,0.607211,0.607211,0.607211,0.607211 +0.604086,0.604086,0.604086,0.604086,0.604086,0.604086 +0.600961,0.600961,0.600961,0.600961,0.600961,0.600961 +0.597836,0.597836,0.597836,0.597836,0.597836,0.597836 +0.594711,0.594711,0.594711,0.594711,0.594711,0.594711 +0.591586,0.591586,0.591586,0.591586,0.591586,0.591586 +0.588461,0.588461,0.588461,0.588461,0.588461,0.588461 +0.585336,0.585336,0.585336,0.585336,0.585336,0.585336 +0.582211,0.582211,0.582211,0.582211,0.582211,0.582211 +0.579086,0.579086,0.579086,0.579086,0.579086,0.579086 +0.575961,0.575961,0.575961,0.575961,0.575961,0.575961 +0.572836,0.572836,0.572836,0.572836,0.572836,0.572836 +0.569711,0.569711,0.569711,0.569711,0.569711,0.569711 +0.566586,0.566586,0.566586,0.566586,0.566586,0.566586 +0.563461,0.563461,0.563461,0.563461,0.563461,0.563461 +0.560336,0.560336,0.560336,0.560336,0.560336,0.560336 +0.557211,0.557211,0.557211,0.557211,0.557211,0.557211 +0.554086,0.554086,0.554086,0.554086,0.554086,0.554086 +0.550961,0.550961,0.550961,0.550961,0.550961,0.550961 +0.547836,0.547836,0.547836,0.547836,0.547836,0.547836 +0.544711,0.544711,0.544711,0.544711,0.544711,0.544711 +0.541586,0.541586,0.541586,0.541586,0.541586,0.541586 +0.538461,0.538461,0.538461,0.538461,0.538461,0.538461 +0.535336,0.535336,0.535336,0.535336,0.535336,0.535336 +0.532211,0.532211,0.532211,0.532211,0.532211,0.532211 +0.529086,0.529086,0.529086,0.529086,0.529086,0.529086 +0.525961,0.525961,0.525961,0.525961,0.525961,0.525961 +0.522836,0.522836,0.522836,0.522836,0.522836,0.522836 +0.519711,0.519711,0.519711,0.519711,0.519711,0.519711 +0.516586,0.516586,0.516586,0.516586,0.516586,0.516586 +0.513461,0.513461,0.513461,0.513461,0.513461,0.513461 +0.510336,0.510336,0.510336,0.510336,0.510336,0.510336 +0.507211,0.507211,0.507211,0.507211,0.507211,0.507211 +0.504086,0.504086,0.504086,0.504086,0.504086,0.504086 +0.500961,0.500961,0.500961,0.500961,0.500961,0.500961 +0.497836,0.497836,0.497836,0.497836,0.497836,0.497836 +0.494711,0.494711,0.494711,0.494711,0.494711,0.494711 +0.491586,0.491586,0.491586,0.491586,0.491586,0.491586 +0.488461,0.488461,0.488461,0.488461,0.488461,0.488461 +0.485336,0.485336,0.485336,0.485336,0.485336,0.485336 +0.482211,0.482211,0.482211,0.482211,0.482211,0.482211 +0.479086,0.479086,0.479086,0.479086,0.479086,0.479086 +0.475961,0.475961,0.475961,0.475961,0.475961,0.475961 +0.472836,0.472836,0.472836,0.472836,0.472836,0.472836 +0.469711,0.469711,0.469711,0.469711,0.469711,0.469711 +0.466586,0.466586,0.466586,0.466586,0.466586,0.466586 +0.463461,0.463461,0.463461,0.463461,0.463461,0.463461 +0.460336,0.460336,0.460336,0.460336,0.460336,0.460336 +0.457211,0.457211,0.457211,0.457211,0.457211,0.457211 +0.454086,0.454086,0.454086,0.454086,0.454086,0.454086 +0.450961,0.450961,0.450961,0.450961,0.450961,0.450961 +0.447836,0.447836,0.447836,0.447836,0.447836,0.447836 +0.444711,0.444711,0.444711,0.444711,0.444711,0.444711 +0.441586,0.441586,0.441586,0.441586,0.441586,0.441586 +0.438461,0.438461,0.438461,0.438461,0.438461,0.438461 +0.435336,0.435336,0.435336,0.435336,0.435336,0.435336 +0.432211,0.432211,0.432211,0.432211,0.432211,0.432211 +0.429086,0.429086,0.429086,0.429086,0.429086,0.429086 +0.425961,0.425961,0.425961,0.425961,0.425961,0.425961 +0.422836,0.422836,0.422836,0.422836,0.422836,0.422836 +0.419711,0.419711,0.419711,0.419711,0.419711,0.419711 +0.416586,0.416586,0.416586,0.416586,0.416586,0.416586 +0.413461,0.413461,0.413461,0.413461,0.413461,0.413461 +0.410336,0.410336,0.410336,0.410336,0.410336,0.410336 +0.407211,0.407211,0.407211,0.407211,0.407211,0.407211 +0.404086,0.404086,0.404086,0.404086,0.404086,0.404086 +0.400961,0.400961,0.400961,0.400961,0.400961,0.400961 +0.397836,0.397836,0.397836,0.397836,0.397836,0.397836 +0.394711,0.394711,0.394711,0.394711,0.394711,0.394711 +0.391586,0.391586,0.391586,0.391586,0.391586,0.391586 +0.388461,0.388461,0.388461,0.388461,0.388461,0.388461 +0.385336,0.385336,0.385336,0.385336,0.385336,0.385336 +0.382211,0.382211,0.382211,0.382211,0.382211,0.382211 +0.379086,0.379086,0.379086,0.379086,0.379086,0.379086 +0.375961,0.375961,0.375961,0.375961,0.375961,0.375961 +0.372836,0.372836,0.372836,0.372836,0.372836,0.372836 +0.369711,0.369711,0.369711,0.369711,0.369711,0.369711 +0.366586,0.366586,0.366586,0.366586,0.366586,0.366586 +0.363461,0.363461,0.363461,0.363461,0.363461,0.363461 +0.360336,0.360336,0.360336,0.360336,0.360336,0.360336 +0.357211,0.357211,0.357211,0.357211,0.357211,0.357211 +0.354086,0.354086,0.354086,0.354086,0.354086,0.354086 +0.350961,0.350961,0.350961,0.350961,0.350961,0.350961 +0.347836,0.347836,0.347836,0.347836,0.347836,0.347836 +0.344711,0.344711,0.344711,0.344711,0.344711,0.344711 +0.341586,0.341586,0.341586,0.341586,0.341586,0.341586 +0.338461,0.338461,0.338461,0.338461,0.338461,0.338461 +0.335336,0.335336,0.335336,0.335336,0.335336,0.335336 +0.332211,0.332211,0.332211,0.332211,0.332211,0.332211 +0.329086,0.329086,0.329086,0.329086,0.329086,0.329086 +0.325961,0.325961,0.325961,0.325961,0.325961,0.325961 +0.322836,0.322836,0.322836,0.322836,0.322836,0.322836 +0.319711,0.319711,0.319711,0.319711,0.319711,0.319711 +0.316586,0.316586,0.316586,0.316586,0.316586,0.316586 +0.313461,0.313461,0.313461,0.313461,0.313461,0.313461 +0.310336,0.310336,0.310336,0.310336,0.310336,0.310336 +0.307211,0.307211,0.307211,0.307211,0.307211,0.307211 +0.304086,0.304086,0.304086,0.304086,0.304086,0.304086 +0.300961,0.300961,0.300961,0.300961,0.300961,0.300961 +0.297836,0.297836,0.297836,0.297836,0.297836,0.297836 +0.294711,0.294711,0.294711,0.294711,0.294711,0.294711 +0.291586,0.291586,0.291586,0.291586,0.291586,0.291586 +0.288461,0.288461,0.288461,0.288461,0.288461,0.288461 +0.285336,0.285336,0.285336,0.285336,0.285336,0.285336 +0.282211,0.282211,0.282211,0.282211,0.282211,0.282211 +0.279086,0.279086,0.279086,0.279086,0.279086,0.279086 +0.275961,0.275961,0.275961,0.275961,0.275961,0.275961 +0.272836,0.272836,0.272836,0.272836,0.272836,0.272836 +0.269711,0.269711,0.269711,0.269711,0.269711,0.269711 +0.266586,0.266586,0.266586,0.266586,0.266586,0.266586 +0.263461,0.263461,0.263461,0.263461,0.263461,0.263461 +0.260336,0.260336,0.260336,0.260336,0.260336,0.260336 +0.257211,0.257211,0.257211,0.257211,0.257211,0.257211 +0.254086,0.254086,0.254086,0.254086,0.254086,0.254086 +0.250961,0.250961,0.250961,0.250961,0.250961,0.250961 +0.247836,0.247836,0.247836,0.247836,0.247836,0.247836 +0.244711,0.244711,0.244711,0.244711,0.244711,0.244711 +0.241586,0.241586,0.241586,0.241586,0.241586,0.241586 +0.238461,0.238461,0.238461,0.238461,0.238461,0.238461 +0.235336,0.235336,0.235336,0.235336,0.235336,0.235336 +0.232211,0.232211,0.232211,0.232211,0.232211,0.232211 +0.229086,0.229086,0.229086,0.229086,0.229086,0.229086 +0.225961,0.225961,0.225961,0.225961,0.225961,0.225961 +0.222836,0.222836,0.222836,0.222836,0.222836,0.222836 +0.219711,0.219711,0.219711,0.219711,0.219711,0.219711 +0.216586,0.216586,0.216586,0.216586,0.216586,0.216586 +0.213461,0.213461,0.213461,0.213461,0.213461,0.213461 +0.210336,0.210336,0.210336,0.210336,0.210336,0.210336 +0.207211,0.207211,0.207211,0.207211,0.207211,0.207211 +0.204086,0.204086,0.204086,0.204086,0.204086,0.204086 +0.200961,0.200961,0.200961,0.200961,0.200961,0.200961 +0.197836,0.197836,0.197836,0.197836,0.197836,0.197836 +0.194711,0.194711,0.194711,0.194711,0.194711,0.194711 +0.191586,0.191586,0.191586,0.191586,0.191586,0.191586 +0.188461,0.188461,0.188461,0.188461,0.188461,0.188461 +0.185336,0.185336,0.185336,0.185336,0.185336,0.185336 +0.182211,0.182211,0.182211,0.182211,0.182211,0.182211 +0.179086,0.179086,0.179086,0.179086,0.179086,0.179086 +0.175961,0.175961,0.175961,0.175961,0.175961,0.175961 +0.172836,0.172836,0.172836,0.172836,0.172836,0.172836 +0.169711,0.169711,0.169711,0.169711,0.169711,0.169711 +0.166586,0.166586,0.166586,0.166586,0.166586,0.166586 +0.163461,0.163461,0.163461,0.163461,0.163461,0.163461 +0.160336,0.160336,0.160336,0.160336,0.160336,0.160336 +0.157211,0.157211,0.157211,0.157211,0.157211,0.157211 +0.154086,0.154086,0.154086,0.154086,0.154086,0.154086 +0.150961,0.150961,0.150961,0.150961,0.150961,0.150961 +0.147836,0.147836,0.147836,0.147836,0.147836,0.147836 +0.144711,0.144711,0.144711,0.144711,0.144711,0.144711 +0.141586,0.141586,0.141586,0.141586,0.141586,0.141586 +0.138461,0.138461,0.138461,0.138461,0.138461,0.138461 +0.135336,0.135336,0.135336,0.135336,0.135336,0.135336 +0.132211,0.132211,0.132211,0.132211,0.132211,0.132211 +0.129086,0.129086,0.129086,0.129086,0.129086,0.129086 +0.125961,0.125961,0.125961,0.125961,0.125961,0.125961 +0.122836,0.122836,0.122836,0.122836,0.122836,0.122836 +0.119711,0.119711,0.119711,0.119711,0.119711,0.119711 +0.116586,0.116586,0.116586,0.116586,0.116586,0.116586 +0.113461,0.113461,0.113461,0.113461,0.113461,0.113461 +0.110336,0.110336,0.110336,0.110336,0.110336,0.110336 +0.107211,0.107211,0.107211,0.107211,0.107211,0.107211 +0.104086,0.104086,0.104086,0.104086,0.104086,0.104086 +0.100961,0.100961,0.100961,0.100961,0.100961,0.100961 +0.097836,0.097836,0.097836,0.097836,0.097836,0.097836 +0.094711,0.094711,0.094711,0.094711,0.094711,0.094711 +0.091586,0.091586,0.091586,0.091586,0.091586,0.091586 +0.088461,0.088461,0.088461,0.088461,0.088461,0.088461 +0.085336,0.085336,0.085336,0.085336,0.085336,0.085336 +0.082211,0.082211,0.082211,0.082211,0.082211,0.082211 +0.079086,0.079086,0.079086,0.079086,0.079086,0.079086 +0.075961,0.075961,0.075961,0.075961,0.075961,0.075961 +0.072836,0.072836,0.072836,0.072836,0.072836,0.072836 +0.069711,0.069711,0.069711,0.069711,0.069711,0.069711 +0.066586,0.066586,0.066586,0.066586,0.066586,0.066586 +0.063461,0.063461,0.063461,0.063461,0.063461,0.063461 +0.060336,0.060336,0.060336,0.060336,0.060336,0.060336 +0.057211,0.057211,0.057211,0.057211,0.057211,0.057211 +0.054086,0.054086,0.054086,0.054086,0.054086,0.054086 +0.050961,0.050961,0.050961,0.050961,0.050961,0.050961 +0.047836,0.047836,0.047836,0.047836,0.047836,0.047836 +0.044718,0.044718,0.044718,0.044718,0.044718,0.044718 +0.041618,0.041618,0.041618,0.041618,0.041618,0.041618 +0.03855,0.03855,0.03855,0.03855,0.03855,0.03855 +0.035526,0.035526,0.035526,0.035526,0.035526,0.035526 +0.032558,0.032558,0.032558,0.032558,0.032558,0.032558 +0.029659,0.029659,0.029659,0.029659,0.029659,0.029659 +0.026841,0.026841,0.026841,0.026841,0.026841,0.026841 +0.024117,0.024117,0.024117,0.024117,0.024117,0.024117 +0.021499,0.021499,0.021499,0.021499,0.021499,0.021499 +0.019,0.019,0.019,0.019,0.019,0.019 +0.016632,0.016632,0.016632,0.016632,0.016632,0.016632 +0.014409,0.014409,0.014409,0.014409,0.014409,0.014409 +0.012341,0.012341,0.012341,0.012341,0.012341,0.012341 +0.010442,0.010442,0.010442,0.010442,0.010442,0.010442 +0.008725,0.008725,0.008725,0.008725,0.008725,0.008725 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.005863,0.005863,0.005863,0.005863,0.005863,0.005863 +0.004704,0.004704,0.004704,0.004704,0.004704,0.004704 +0.003708,0.003708,0.003708,0.003708,0.003708,0.003708 +0.002864,0.002864,0.002864,0.002864,0.002864,0.002864 +0.002158,0.002158,0.002158,0.002158,0.002158,0.002158 +0.00158,0.00158,0.00158,0.00158,0.00158,0.00158 +0.001115,0.001115,0.001115,0.001115,0.001115,0.001115 +0.000752,0.000752,0.000752,0.000752,0.000752,0.000752 +0.000477,0.000477,0.000477,0.000477,0.000477,0.000477 +0.000279,0.000279,0.000279,0.000279,0.000279,0.000279 +0.000146,0.000146,0.000146,0.000146,0.000146,0.000146 +0.000063,0.000063,0.000063,0.000063,0.000063,0.000063 +0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000002,-0.000002,-0.000002,-0.000002,-0.000002,-0.000002 +-0.000017,-0.000017,-0.000017,-0.000017,-0.000017,-0.000017 +-0.000056,-0.000056,-0.000056,-0.000056,-0.000056,-0.000056 +-0.000133,-0.000133,-0.000133,-0.000133,-0.000133,-0.000133 +-0.00026,-0.00026,-0.00026,-0.00026,-0.00026,-0.00026 +-0.00045,-0.00045,-0.00045,-0.00045,-0.00045,-0.00045 +-0.000715,-0.000715,-0.000715,-0.000715,-0.000715,-0.000715 +-0.001067,-0.001067,-0.001067,-0.001067,-0.001067,-0.001067 +-0.001519,-0.001519,-0.001519,-0.001519,-0.001519,-0.001519 +-0.002083,-0.002083,-0.002083,-0.002083,-0.002083,-0.002083 +-0.002773,-0.002773,-0.002773,-0.002773,-0.002773,-0.002773 +-0.0036,-0.0036,-0.0036,-0.0036,-0.0036,-0.0036 +-0.004577,-0.004577,-0.004577,-0.004577,-0.004577,-0.004577 +-0.005717,-0.005717,-0.005717,-0.005717,-0.005717,-0.005717 +-0.007031,-0.007031,-0.007031,-0.007031,-0.007031,-0.007031 +-0.008533,-0.008533,-0.008533,-0.008533,-0.008533,-0.008533 +-0.010228,-0.010228,-0.010228,-0.010228,-0.010228,-0.010228 +-0.012106,-0.012106,-0.012106,-0.012106,-0.012106,-0.012106 +-0.014155,-0.014155,-0.014155,-0.014155,-0.014155,-0.014155 +-0.01636,-0.01636,-0.01636,-0.01636,-0.01636,-0.01636 +-0.018712,-0.018712,-0.018712,-0.018712,-0.018712,-0.018712 +-0.021196,-0.021196,-0.021196,-0.021196,-0.021196,-0.021196 +-0.0238,-0.0238,-0.0238,-0.0238,-0.0238,-0.0238 +-0.026512,-0.026512,-0.026512,-0.026512,-0.026512,-0.026512 +-0.02932,-0.02932,-0.02932,-0.02932,-0.02932,-0.02932 +-0.03221,-0.03221,-0.03221,-0.03221,-0.03221,-0.03221 +-0.03517,-0.03517,-0.03517,-0.03517,-0.03517,-0.03517 +-0.038188,-0.038188,-0.038188,-0.038188,-0.038188,-0.038188 +-0.041252,-0.041252,-0.041252,-0.041252,-0.041252,-0.041252 +-0.044348,-0.044348,-0.044348,-0.044348,-0.044348,-0.044348 +-0.047465,-0.047465,-0.047465,-0.047465,-0.047465,-0.047465 +-0.050589,-0.050589,-0.050589,-0.050589,-0.050589,-0.050589 +-0.053714,-0.053714,-0.053714,-0.053714,-0.053714,-0.053714 +-0.056839,-0.056839,-0.056839,-0.056839,-0.056839,-0.056839 +-0.059964,-0.059964,-0.059964,-0.059964,-0.059964,-0.059964 +-0.063089,-0.063089,-0.063089,-0.063089,-0.063089,-0.063089 +-0.066214,-0.066214,-0.066214,-0.066214,-0.066214,-0.066214 +-0.069339,-0.069339,-0.069339,-0.069339,-0.069339,-0.069339 +-0.072464,-0.072464,-0.072464,-0.072464,-0.072464,-0.072464 +-0.075589,-0.075589,-0.075589,-0.075589,-0.075589,-0.075589 +-0.078714,-0.078714,-0.078714,-0.078714,-0.078714,-0.078714 +-0.081839,-0.081839,-0.081839,-0.081839,-0.081839,-0.081839 +-0.084964,-0.084964,-0.084964,-0.084964,-0.084964,-0.084964 +-0.088089,-0.088089,-0.088089,-0.088089,-0.088089,-0.088089 +-0.091214,-0.091214,-0.091214,-0.091214,-0.091214,-0.091214 +-0.094339,-0.094339,-0.094339,-0.094339,-0.094339,-0.094339 +-0.097464,-0.097464,-0.097464,-0.097464,-0.097464,-0.097464 +-0.100589,-0.100589,-0.100589,-0.100589,-0.100589,-0.100589 +-0.103714,-0.103714,-0.103714,-0.103714,-0.103714,-0.103714 +-0.106839,-0.106839,-0.106839,-0.106839,-0.106839,-0.106839 +-0.109964,-0.109964,-0.109964,-0.109964,-0.109964,-0.109964 +-0.113089,-0.113089,-0.113089,-0.113089,-0.113089,-0.113089 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.119339,-0.119339,-0.119339,-0.119339,-0.119339,-0.119339 +-0.122464,-0.122464,-0.122464,-0.122464,-0.122464,-0.122464 +-0.125589,-0.125589,-0.125589,-0.125589,-0.125589,-0.125589 +-0.128714,-0.128714,-0.128714,-0.128714,-0.128714,-0.128714 +-0.131839,-0.131839,-0.131839,-0.131839,-0.131839,-0.131839 +-0.134964,-0.134964,-0.134964,-0.134964,-0.134964,-0.134964 +-0.138089,-0.138089,-0.138089,-0.138089,-0.138089,-0.138089 +-0.141214,-0.141214,-0.141214,-0.141214,-0.141214,-0.141214 +-0.144339,-0.144339,-0.144339,-0.144339,-0.144339,-0.144339 +-0.147464,-0.147464,-0.147464,-0.147464,-0.147464,-0.147464 +-0.150589,-0.150589,-0.150589,-0.150589,-0.150589,-0.150589 +-0.153714,-0.153714,-0.153714,-0.153714,-0.153714,-0.153714 +-0.156839,-0.156839,-0.156839,-0.156839,-0.156839,-0.156839 +-0.159964,-0.159964,-0.159964,-0.159964,-0.159964,-0.159964 +-0.163089,-0.163089,-0.163089,-0.163089,-0.163089,-0.163089 +-0.166214,-0.166214,-0.166214,-0.166214,-0.166214,-0.166214 +-0.169339,-0.169339,-0.169339,-0.169339,-0.169339,-0.169339 +-0.172464,-0.172464,-0.172464,-0.172464,-0.172464,-0.172464 +-0.175589,-0.175589,-0.175589,-0.175589,-0.175589,-0.175589 +-0.178714,-0.178714,-0.178714,-0.178714,-0.178714,-0.178714 +-0.181839,-0.181839,-0.181839,-0.181839,-0.181839,-0.181839 +-0.184964,-0.184964,-0.184964,-0.184964,-0.184964,-0.184964 +-0.188089,-0.188089,-0.188089,-0.188089,-0.188089,-0.188089 +-0.191214,-0.191214,-0.191214,-0.191214,-0.191214,-0.191214 +-0.194339,-0.194339,-0.194339,-0.194339,-0.194339,-0.194339 +-0.197464,-0.197464,-0.197464,-0.197464,-0.197464,-0.197464 +-0.200589,-0.200589,-0.200589,-0.200589,-0.200589,-0.200589 +-0.203714,-0.203714,-0.203714,-0.203714,-0.203714,-0.203714 +-0.206839,-0.206839,-0.206839,-0.206839,-0.206839,-0.206839 +-0.209964,-0.209964,-0.209964,-0.209964,-0.209964,-0.209964 +-0.213089,-0.213089,-0.213089,-0.213089,-0.213089,-0.213089 +-0.216214,-0.216214,-0.216214,-0.216214,-0.216214,-0.216214 +-0.219339,-0.219339,-0.219339,-0.219339,-0.219339,-0.219339 +-0.222464,-0.222464,-0.222464,-0.222464,-0.222464,-0.222464 +-0.225589,-0.225589,-0.225589,-0.225589,-0.225589,-0.225589 +-0.228714,-0.228714,-0.228714,-0.228714,-0.228714,-0.228714 +-0.231839,-0.231839,-0.231839,-0.231839,-0.231839,-0.231839 +-0.234964,-0.234964,-0.234964,-0.234964,-0.234964,-0.234964 +-0.238089,-0.238089,-0.238089,-0.238089,-0.238089,-0.238089 +-0.241214,-0.241214,-0.241214,-0.241214,-0.241214,-0.241214 +-0.244339,-0.244339,-0.244339,-0.244339,-0.244339,-0.244339 +-0.247464,-0.247464,-0.247464,-0.247464,-0.247464,-0.247464 +-0.250589,-0.250589,-0.250589,-0.250589,-0.250589,-0.250589 +-0.253714,-0.253714,-0.253714,-0.253714,-0.253714,-0.253714 +-0.256839,-0.256839,-0.256839,-0.256839,-0.256839,-0.256839 +-0.259964,-0.259964,-0.259964,-0.259964,-0.259964,-0.259964 +-0.263089,-0.263089,-0.263089,-0.263089,-0.263089,-0.263089 +-0.266214,-0.266214,-0.266214,-0.266214,-0.266214,-0.266214 +-0.269339,-0.269339,-0.269339,-0.269339,-0.269339,-0.269339 +-0.272464,-0.272464,-0.272464,-0.272464,-0.272464,-0.272464 +-0.275589,-0.275589,-0.275589,-0.275589,-0.275589,-0.275589 +-0.278714,-0.278714,-0.278714,-0.278714,-0.278714,-0.278714 +-0.281839,-0.281839,-0.281839,-0.281839,-0.281839,-0.281839 +-0.284964,-0.284964,-0.284964,-0.284964,-0.284964,-0.284964 +-0.288089,-0.288089,-0.288089,-0.288089,-0.288089,-0.288089 +-0.291214,-0.291214,-0.291214,-0.291214,-0.291214,-0.291214 +-0.294339,-0.294339,-0.294339,-0.294339,-0.294339,-0.294339 +-0.297464,-0.297464,-0.297464,-0.297464,-0.297464,-0.297464 +-0.300589,-0.300589,-0.300589,-0.300589,-0.300589,-0.300589 +-0.303714,-0.303714,-0.303714,-0.303714,-0.303714,-0.303714 +-0.306839,-0.306839,-0.306839,-0.306839,-0.306839,-0.306839 +-0.309964,-0.309964,-0.309964,-0.309964,-0.309964,-0.309964 +-0.313089,-0.313089,-0.313089,-0.313089,-0.313089,-0.313089 +-0.316214,-0.316214,-0.316214,-0.316214,-0.316214,-0.316214 +-0.319339,-0.319339,-0.319339,-0.319339,-0.319339,-0.319339 +-0.322464,-0.322464,-0.322464,-0.322464,-0.322464,-0.322464 +-0.325589,-0.325589,-0.325589,-0.325589,-0.325589,-0.325589 +-0.328714,-0.328714,-0.328714,-0.328714,-0.328714,-0.328714 +-0.331839,-0.331839,-0.331839,-0.331839,-0.331839,-0.331839 +-0.334964,-0.334964,-0.334964,-0.334964,-0.334964,-0.334964 +-0.338089,-0.338089,-0.338089,-0.338089,-0.338089,-0.338089 +-0.341214,-0.341214,-0.341214,-0.341214,-0.341214,-0.341214 +-0.344339,-0.344339,-0.344339,-0.344339,-0.344339,-0.344339 +-0.347464,-0.347464,-0.347464,-0.347464,-0.347464,-0.347464 +-0.350589,-0.350589,-0.350589,-0.350589,-0.350589,-0.350589 +-0.353714,-0.353714,-0.353714,-0.353714,-0.353714,-0.353714 +-0.356839,-0.356839,-0.356839,-0.356839,-0.356839,-0.356839 +-0.359964,-0.359964,-0.359964,-0.359964,-0.359964,-0.359964 +-0.363089,-0.363089,-0.363089,-0.363089,-0.363089,-0.363089 +-0.366214,-0.366214,-0.366214,-0.366214,-0.366214,-0.366214 +-0.369339,-0.369339,-0.369339,-0.369339,-0.369339,-0.369339 +-0.372464,-0.372464,-0.372464,-0.372464,-0.372464,-0.372464 +-0.375589,-0.375589,-0.375589,-0.375589,-0.375589,-0.375589 +-0.378714,-0.378714,-0.378714,-0.378714,-0.378714,-0.378714 +-0.381839,-0.381839,-0.381839,-0.381839,-0.381839,-0.381839 +-0.384964,-0.384964,-0.384964,-0.384964,-0.384964,-0.384964 +-0.388089,-0.388089,-0.388089,-0.388089,-0.388089,-0.388089 +-0.391214,-0.391214,-0.391214,-0.391214,-0.391214,-0.391214 +-0.394339,-0.394339,-0.394339,-0.394339,-0.394339,-0.394339 +-0.397464,-0.397464,-0.397464,-0.397464,-0.397464,-0.397464 +-0.400589,-0.400589,-0.400589,-0.400589,-0.400589,-0.400589 +-0.403714,-0.403714,-0.403714,-0.403714,-0.403714,-0.403714 +-0.406839,-0.406839,-0.406839,-0.406839,-0.406839,-0.406839 +-0.409964,-0.409964,-0.409964,-0.409964,-0.409964,-0.409964 +-0.413089,-0.413089,-0.413089,-0.413089,-0.413089,-0.413089 +-0.416214,-0.416214,-0.416214,-0.416214,-0.416214,-0.416214 +-0.419339,-0.419339,-0.419339,-0.419339,-0.419339,-0.419339 +-0.422464,-0.422464,-0.422464,-0.422464,-0.422464,-0.422464 +-0.425589,-0.425589,-0.425589,-0.425589,-0.425589,-0.425589 +-0.428714,-0.428714,-0.428714,-0.428714,-0.428714,-0.428714 +-0.431839,-0.431839,-0.431839,-0.431839,-0.431839,-0.431839 +-0.434964,-0.434964,-0.434964,-0.434964,-0.434964,-0.434964 +-0.438089,-0.438089,-0.438089,-0.438089,-0.438089,-0.438089 +-0.441214,-0.441214,-0.441214,-0.441214,-0.441214,-0.441214 +-0.444339,-0.444339,-0.444339,-0.444339,-0.444339,-0.444339 +-0.447464,-0.447464,-0.447464,-0.447464,-0.447464,-0.447464 +-0.450589,-0.450589,-0.450589,-0.450589,-0.450589,-0.450589 +-0.453714,-0.453714,-0.453714,-0.453714,-0.453714,-0.453714 +-0.456839,-0.456839,-0.456839,-0.456839,-0.456839,-0.456839 +-0.459964,-0.459964,-0.459964,-0.459964,-0.459964,-0.459964 +-0.463089,-0.463089,-0.463089,-0.463089,-0.463089,-0.463089 +-0.466214,-0.466214,-0.466214,-0.466214,-0.466214,-0.466214 +-0.469339,-0.469339,-0.469339,-0.469339,-0.469339,-0.469339 +-0.472464,-0.472464,-0.472464,-0.472464,-0.472464,-0.472464 +-0.475589,-0.475589,-0.475589,-0.475589,-0.475589,-0.475589 +-0.478714,-0.478714,-0.478714,-0.478714,-0.478714,-0.478714 +-0.481839,-0.481839,-0.481839,-0.481839,-0.481839,-0.481839 +-0.484964,-0.484964,-0.484964,-0.484964,-0.484964,-0.484964 +-0.488089,-0.488089,-0.488089,-0.488089,-0.488089,-0.488089 +-0.491214,-0.491214,-0.491214,-0.491214,-0.491214,-0.491214 +-0.494339,-0.494339,-0.494339,-0.494339,-0.494339,-0.494339 +-0.497464,-0.497464,-0.497464,-0.497464,-0.497464,-0.497464 +-0.500589,-0.500589,-0.500589,-0.500589,-0.500589,-0.500589 +-0.503714,-0.503714,-0.503714,-0.503714,-0.503714,-0.503714 +-0.506839,-0.506839,-0.506839,-0.506839,-0.506839,-0.506839 +-0.509964,-0.509964,-0.509964,-0.509964,-0.509964,-0.509964 +-0.513089,-0.513089,-0.513089,-0.513089,-0.513089,-0.513089 +-0.516214,-0.516214,-0.516214,-0.516214,-0.516214,-0.516214 +-0.519339,-0.519339,-0.519339,-0.519339,-0.519339,-0.519339 +-0.522464,-0.522464,-0.522464,-0.522464,-0.522464,-0.522464 +-0.525589,-0.525589,-0.525589,-0.525589,-0.525589,-0.525589 +-0.528714,-0.528714,-0.528714,-0.528714,-0.528714,-0.528714 +-0.531839,-0.531839,-0.531839,-0.531839,-0.531839,-0.531839 +-0.534964,-0.534964,-0.534964,-0.534964,-0.534964,-0.534964 +-0.538089,-0.538089,-0.538089,-0.538089,-0.538089,-0.538089 +-0.541214,-0.541214,-0.541214,-0.541214,-0.541214,-0.541214 +-0.544339,-0.544339,-0.544339,-0.544339,-0.544339,-0.544339 +-0.547464,-0.547464,-0.547464,-0.547464,-0.547464,-0.547464 +-0.550589,-0.550589,-0.550589,-0.550589,-0.550589,-0.550589 +-0.553714,-0.553714,-0.553714,-0.553714,-0.553714,-0.553714 +-0.556839,-0.556839,-0.556839,-0.556839,-0.556839,-0.556839 +-0.559964,-0.559964,-0.559964,-0.559964,-0.559964,-0.559964 +-0.563089,-0.563089,-0.563089,-0.563089,-0.563089,-0.563089 +-0.566214,-0.566214,-0.566214,-0.566214,-0.566214,-0.566214 +-0.569339,-0.569339,-0.569339,-0.569339,-0.569339,-0.569339 +-0.572464,-0.572464,-0.572464,-0.572464,-0.572464,-0.572464 +-0.575589,-0.575589,-0.575589,-0.575589,-0.575589,-0.575589 +-0.578714,-0.578714,-0.578714,-0.578714,-0.578714,-0.578714 +-0.581839,-0.581839,-0.581839,-0.581839,-0.581839,-0.581839 +-0.584964,-0.584964,-0.584964,-0.584964,-0.584964,-0.584964 +-0.588089,-0.588089,-0.588089,-0.588089,-0.588089,-0.588089 +-0.591214,-0.591214,-0.591214,-0.591214,-0.591214,-0.591214 +-0.594339,-0.594339,-0.594339,-0.594339,-0.594339,-0.594339 +-0.597464,-0.597464,-0.597464,-0.597464,-0.597464,-0.597464 +-0.600589,-0.600589,-0.600589,-0.600589,-0.600589,-0.600589 +-0.603714,-0.603714,-0.603714,-0.603714,-0.603714,-0.603714 +-0.606839,-0.606839,-0.606839,-0.606839,-0.606839,-0.606839 +-0.609964,-0.609964,-0.609964,-0.609964,-0.609964,-0.609964 +-0.613089,-0.613089,-0.613089,-0.613089,-0.613089,-0.613089 +-0.616214,-0.616214,-0.616214,-0.616214,-0.616214,-0.616214 +-0.619339,-0.619339,-0.619339,-0.619339,-0.619339,-0.619339 +-0.622464,-0.622464,-0.622464,-0.622464,-0.622464,-0.622464 +-0.625589,-0.625589,-0.625589,-0.625589,-0.625589,-0.625589 +-0.628714,-0.628714,-0.628714,-0.628714,-0.628714,-0.628714 +-0.631839,-0.631839,-0.631839,-0.631839,-0.631839,-0.631839 +-0.634964,-0.634964,-0.634964,-0.634964,-0.634964,-0.634964 +-0.638089,-0.638089,-0.638089,-0.638089,-0.638089,-0.638089 +-0.641214,-0.641214,-0.641214,-0.641214,-0.641214,-0.641214 +-0.644339,-0.644339,-0.644339,-0.644339,-0.644339,-0.644339 +-0.647464,-0.647464,-0.647464,-0.647464,-0.647464,-0.647464 +-0.650589,-0.650589,-0.650589,-0.650589,-0.650589,-0.650589 +-0.653714,-0.653714,-0.653714,-0.653714,-0.653714,-0.653714 +-0.656839,-0.656839,-0.656839,-0.656839,-0.656839,-0.656839 +-0.659964,-0.659964,-0.659964,-0.659964,-0.659964,-0.659964 +-0.663089,-0.663089,-0.663089,-0.663089,-0.663089,-0.663089 +-0.666214,-0.666214,-0.666214,-0.666214,-0.666214,-0.666214 +-0.669339,-0.669339,-0.669339,-0.669339,-0.669339,-0.669339 +-0.672464,-0.672464,-0.672464,-0.672464,-0.672464,-0.672464 +-0.675589,-0.675589,-0.675589,-0.675589,-0.675589,-0.675589 +-0.678714,-0.678714,-0.678714,-0.678714,-0.678714,-0.678714 +-0.681839,-0.681839,-0.681839,-0.681839,-0.681839,-0.681839 +-0.684964,-0.684964,-0.684964,-0.684964,-0.684964,-0.684964 +-0.688089,-0.688089,-0.688089,-0.688089,-0.688089,-0.688089 +-0.691214,-0.691214,-0.691214,-0.691214,-0.691214,-0.691214 +-0.694339,-0.694339,-0.694339,-0.694339,-0.694339,-0.694339 +-0.697464,-0.697464,-0.697464,-0.697464,-0.697464,-0.697464 +-0.700589,-0.700589,-0.700589,-0.700589,-0.700589,-0.700589 +-0.703714,-0.703714,-0.703714,-0.703714,-0.703714,-0.703714 +-0.706839,-0.706839,-0.706839,-0.706839,-0.706839,-0.706839 +-0.709964,-0.709964,-0.709964,-0.709964,-0.709964,-0.709964 +-0.713089,-0.713089,-0.713089,-0.713089,-0.713089,-0.713089 +-0.716214,-0.716214,-0.716214,-0.716214,-0.716214,-0.716214 +-0.719339,-0.719339,-0.719339,-0.719339,-0.719339,-0.719339 +-0.722464,-0.722464,-0.722464,-0.722464,-0.722464,-0.722464 +-0.725589,-0.725589,-0.725589,-0.725589,-0.725589,-0.725589 +-0.728714,-0.728714,-0.728714,-0.728714,-0.728714,-0.728714 +-0.731839,-0.731839,-0.731839,-0.731839,-0.731839,-0.731839 +-0.734964,-0.734964,-0.734964,-0.734964,-0.734964,-0.734964 +-0.738089,-0.738089,-0.738089,-0.738089,-0.738089,-0.738089 +-0.741214,-0.741214,-0.741214,-0.741214,-0.741214,-0.741214 +-0.744339,-0.744339,-0.744339,-0.744339,-0.744339,-0.744339 +-0.747464,-0.747464,-0.747464,-0.747464,-0.747464,-0.747464 +-0.750589,-0.750589,-0.750589,-0.750589,-0.750589,-0.750589 +-0.753714,-0.753714,-0.753714,-0.753714,-0.753714,-0.753714 +-0.756839,-0.756839,-0.756839,-0.756839,-0.756839,-0.756839 +-0.759964,-0.759964,-0.759964,-0.759964,-0.759964,-0.759964 +-0.763089,-0.763089,-0.763089,-0.763089,-0.763089,-0.763089 +-0.766214,-0.766214,-0.766214,-0.766214,-0.766214,-0.766214 +-0.769339,-0.769339,-0.769339,-0.769339,-0.769339,-0.769339 +-0.772464,-0.772464,-0.772464,-0.772464,-0.772464,-0.772464 +-0.775589,-0.775589,-0.775589,-0.775589,-0.775589,-0.775589 +-0.778714,-0.778714,-0.778714,-0.778714,-0.778714,-0.778714 +-0.781839,-0.781839,-0.781839,-0.781839,-0.781839,-0.781839 +-0.784964,-0.784964,-0.784964,-0.784964,-0.784964,-0.784964 +-0.788089,-0.788089,-0.788089,-0.788089,-0.788089,-0.788089 +-0.791214,-0.791214,-0.791214,-0.791214,-0.791214,-0.791214 +-0.794339,-0.794339,-0.794339,-0.794339,-0.794339,-0.794339 +-0.797464,-0.797464,-0.797464,-0.797464,-0.797464,-0.797464 +-0.800589,-0.800589,-0.800589,-0.800589,-0.800589,-0.800589 +-0.803714,-0.803714,-0.803714,-0.803714,-0.803714,-0.803714 +-0.806839,-0.806839,-0.806839,-0.806839,-0.806839,-0.806839 +-0.809964,-0.809964,-0.809964,-0.809964,-0.809964,-0.809964 +-0.813089,-0.813089,-0.813089,-0.813089,-0.813089,-0.813089 +-0.816214,-0.816214,-0.816214,-0.816214,-0.816214,-0.816214 +-0.819339,-0.819339,-0.819339,-0.819339,-0.819339,-0.819339 +-0.822464,-0.822464,-0.822464,-0.822464,-0.822464,-0.822464 +-0.825589,-0.825589,-0.825589,-0.825589,-0.825589,-0.825589 +-0.828714,-0.828714,-0.828714,-0.828714,-0.828714,-0.828714 +-0.831839,-0.831839,-0.831839,-0.831839,-0.831839,-0.831839 +-0.834964,-0.834964,-0.834964,-0.834964,-0.834964,-0.834964 +-0.838089,-0.838089,-0.838089,-0.838089,-0.838089,-0.838089 +-0.841214,-0.841214,-0.841214,-0.841214,-0.841214,-0.841214 +-0.844339,-0.844339,-0.844339,-0.844339,-0.844339,-0.844339 +-0.847464,-0.847464,-0.847464,-0.847464,-0.847464,-0.847464 +-0.850589,-0.850589,-0.850589,-0.850589,-0.850589,-0.850589 +-0.853714,-0.853714,-0.853714,-0.853714,-0.853714,-0.853714 +-0.856839,-0.856839,-0.856839,-0.856839,-0.856839,-0.856839 +-0.859964,-0.859964,-0.859964,-0.859964,-0.859964,-0.859964 +-0.863089,-0.863089,-0.863089,-0.863089,-0.863089,-0.863089 +-0.866214,-0.866214,-0.866214,-0.866214,-0.866214,-0.866214 +-0.869339,-0.869339,-0.869339,-0.869339,-0.869339,-0.869339 +-0.872464,-0.872464,-0.872464,-0.872464,-0.872464,-0.872464 +-0.875589,-0.875589,-0.875589,-0.875589,-0.875589,-0.875589 +-0.878714,-0.878714,-0.878714,-0.878714,-0.878714,-0.878714 +-0.881839,-0.881839,-0.881839,-0.881839,-0.881839,-0.881839 +-0.884964,-0.884964,-0.884964,-0.884964,-0.884964,-0.884964 +-0.888089,-0.888089,-0.888089,-0.888089,-0.888089,-0.888089 +-0.891214,-0.891214,-0.891214,-0.891214,-0.891214,-0.891214 +-0.894339,-0.894339,-0.894339,-0.894339,-0.894339,-0.894339 +-0.897464,-0.897464,-0.897464,-0.897464,-0.897464,-0.897464 +-0.900589,-0.900589,-0.900589,-0.900589,-0.900589,-0.900589 +-0.903714,-0.903714,-0.903714,-0.903714,-0.903714,-0.903714 +-0.906839,-0.906839,-0.906839,-0.906839,-0.906839,-0.906839 +-0.909964,-0.909964,-0.909964,-0.909964,-0.909964,-0.909964 +-0.913089,-0.913089,-0.913089,-0.913089,-0.913089,-0.913089 +-0.916214,-0.916214,-0.916214,-0.916214,-0.916214,-0.916214 +-0.919339,-0.919339,-0.919339,-0.919339,-0.919339,-0.919339 +-0.922464,-0.922464,-0.922464,-0.922464,-0.922464,-0.922464 +-0.925589,-0.925589,-0.925589,-0.925589,-0.925589,-0.925589 +-0.928714,-0.928714,-0.928714,-0.928714,-0.928714,-0.928714 +-0.931839,-0.931839,-0.931839,-0.931839,-0.931839,-0.931839 +-0.934964,-0.934964,-0.934964,-0.934964,-0.934964,-0.934964 +-0.938089,-0.938089,-0.938089,-0.938089,-0.938089,-0.938089 +-0.941214,-0.941214,-0.941214,-0.941214,-0.941214,-0.941214 +-0.944339,-0.944339,-0.944339,-0.944339,-0.944339,-0.944339 +-0.947464,-0.947464,-0.947464,-0.947464,-0.947464,-0.947464 +-0.950589,-0.950589,-0.950589,-0.950589,-0.950589,-0.950589 +-0.953714,-0.953714,-0.953714,-0.953714,-0.953714,-0.953714 +-0.956839,-0.956839,-0.956839,-0.956839,-0.956839,-0.956839 +-0.959964,-0.959964,-0.959964,-0.959964,-0.959964,-0.959964 +-0.963089,-0.963089,-0.963089,-0.963089,-0.963089,-0.963089 +-0.966214,-0.966214,-0.966214,-0.966214,-0.966214,-0.966214 +-0.969339,-0.969339,-0.969339,-0.969339,-0.969339,-0.969339 +-0.972464,-0.972464,-0.972464,-0.972464,-0.972464,-0.972464 +-0.975589,-0.975589,-0.975589,-0.975589,-0.975589,-0.975589 +-0.978714,-0.978714,-0.978714,-0.978714,-0.978714,-0.978714 +-0.981839,-0.981839,-0.981839,-0.981839,-0.981839,-0.981839 +-0.984964,-0.984964,-0.984964,-0.984964,-0.984964,-0.984964 +-0.988089,-0.988089,-0.988089,-0.988089,-0.988089,-0.988089 +-0.991214,-0.991214,-0.991214,-0.991214,-0.991214,-0.991214 +-0.994339,-0.994339,-0.994339,-0.994339,-0.994339,-0.994339 +-0.997464,-0.997464,-0.997464,-0.997464,-0.997464,-0.997464 +-1.000589,-1.000589,-1.000589,-1.000589,-1.000589,-1.000589 +-1.003714,-1.003714,-1.003714,-1.003714,-1.003714,-1.003714 +-1.006839,-1.006839,-1.006839,-1.006839,-1.006839,-1.006839 +-1.009964,-1.009964,-1.009964,-1.009964,-1.009964,-1.009964 +-1.013089,-1.013089,-1.013089,-1.013089,-1.013089,-1.013089 +-1.016214,-1.016214,-1.016214,-1.016214,-1.016214,-1.016214 +-1.019339,-1.019339,-1.019339,-1.019339,-1.019339,-1.019339 +-1.022464,-1.022464,-1.022464,-1.022464,-1.022464,-1.022464 +-1.025589,-1.025589,-1.025589,-1.025589,-1.025589,-1.025589 +-1.028714,-1.028714,-1.028714,-1.028714,-1.028714,-1.028714 +-1.031839,-1.031839,-1.031839,-1.031839,-1.031839,-1.031839 +-1.034964,-1.034964,-1.034964,-1.034964,-1.034964,-1.034964 +-1.038089,-1.038089,-1.038089,-1.038089,-1.038089,-1.038089 +-1.041214,-1.041214,-1.041214,-1.041214,-1.041214,-1.041214 +-1.044339,-1.044339,-1.044339,-1.044339,-1.044339,-1.044339 +-1.047464,-1.047464,-1.047464,-1.047464,-1.047464,-1.047464 +-1.050589,-1.050589,-1.050589,-1.050589,-1.050589,-1.050589 +-1.053714,-1.053714,-1.053714,-1.053714,-1.053714,-1.053714 +-1.056839,-1.056839,-1.056839,-1.056839,-1.056839,-1.056839 +-1.059964,-1.059964,-1.059964,-1.059964,-1.059964,-1.059964 +-1.063089,-1.063089,-1.063089,-1.063089,-1.063089,-1.063089 +-1.066214,-1.066214,-1.066214,-1.066214,-1.066214,-1.066214 +-1.069339,-1.069339,-1.069339,-1.069339,-1.069339,-1.069339 +-1.072464,-1.072464,-1.072464,-1.072464,-1.072464,-1.072464 +-1.075589,-1.075589,-1.075589,-1.075589,-1.075589,-1.075589 +-1.078714,-1.078714,-1.078714,-1.078714,-1.078714,-1.078714 +-1.081839,-1.081839,-1.081839,-1.081839,-1.081839,-1.081839 +-1.084964,-1.084964,-1.084964,-1.084964,-1.084964,-1.084964 +-1.088089,-1.088089,-1.088089,-1.088089,-1.088089,-1.088089 +-1.091214,-1.091214,-1.091214,-1.091214,-1.091214,-1.091214 +-1.094339,-1.094339,-1.094339,-1.094339,-1.094339,-1.094339 +-1.097464,-1.097464,-1.097464,-1.097464,-1.097464,-1.097464 +-1.100589,-1.100589,-1.100589,-1.100589,-1.100589,-1.100589 +-1.103714,-1.103714,-1.103714,-1.103714,-1.103714,-1.103714 +-1.106839,-1.106839,-1.106839,-1.106839,-1.106839,-1.106839 +-1.109964,-1.109964,-1.109964,-1.109964,-1.109964,-1.109964 +-1.113089,-1.113089,-1.113089,-1.113089,-1.113089,-1.113089 +-1.116214,-1.116214,-1.116214,-1.116214,-1.116214,-1.116214 +-1.119339,-1.119339,-1.119339,-1.119339,-1.119339,-1.119339 +-1.122464,-1.122464,-1.122464,-1.122464,-1.122464,-1.122464 +-1.125589,-1.125589,-1.125589,-1.125589,-1.125589,-1.125589 +-1.128714,-1.128714,-1.128714,-1.128714,-1.128714,-1.128714 +-1.131839,-1.131839,-1.131839,-1.131839,-1.131839,-1.131839 +-1.134964,-1.134964,-1.134964,-1.134964,-1.134964,-1.134964 +-1.138089,-1.138089,-1.138089,-1.138089,-1.138089,-1.138089 +-1.141214,-1.141214,-1.141214,-1.141214,-1.141214,-1.141214 +-1.144339,-1.144339,-1.144339,-1.144339,-1.144339,-1.144339 +-1.147464,-1.147464,-1.147464,-1.147464,-1.147464,-1.147464 +-1.150589,-1.150589,-1.150589,-1.150589,-1.150589,-1.150589 +-1.153714,-1.153714,-1.153714,-1.153714,-1.153714,-1.153714 +-1.156839,-1.156839,-1.156839,-1.156839,-1.156839,-1.156839 +-1.159964,-1.159964,-1.159964,-1.159964,-1.159964,-1.159964 +-1.163089,-1.163089,-1.163089,-1.163089,-1.163089,-1.163089 +-1.166214,-1.166214,-1.166214,-1.166214,-1.166214,-1.166214 +-1.169339,-1.169339,-1.169339,-1.169339,-1.169339,-1.169339 +-1.172464,-1.172464,-1.172464,-1.172464,-1.172464,-1.172464 +-1.175589,-1.175589,-1.175589,-1.175589,-1.175589,-1.175589 +-1.178714,-1.178714,-1.178714,-1.178714,-1.178714,-1.178714 +-1.181839,-1.181839,-1.181839,-1.181839,-1.181839,-1.181839 +-1.184964,-1.184964,-1.184964,-1.184964,-1.184964,-1.184964 +-1.188089,-1.188089,-1.188089,-1.188089,-1.188089,-1.188089 +-1.191214,-1.191214,-1.191214,-1.191214,-1.191214,-1.191214 +-1.194339,-1.194339,-1.194339,-1.194339,-1.194339,-1.194339 +-1.197464,-1.197464,-1.197464,-1.197464,-1.197464,-1.197464 +-1.200589,-1.200589,-1.200589,-1.200589,-1.200589,-1.200589 +-1.203714,-1.203714,-1.203714,-1.203714,-1.203714,-1.203714 +-1.206839,-1.206839,-1.206839,-1.206839,-1.206839,-1.206839 +-1.209964,-1.209964,-1.209964,-1.209964,-1.209964,-1.209964 +-1.213089,-1.213089,-1.213089,-1.213089,-1.213089,-1.213089 +-1.216214,-1.216214,-1.216214,-1.216214,-1.216214,-1.216214 +-1.219339,-1.219339,-1.219339,-1.219339,-1.219339,-1.219339 +-1.222464,-1.222464,-1.222464,-1.222464,-1.222464,-1.222464 +-1.225589,-1.225589,-1.225589,-1.225589,-1.225589,-1.225589 +-1.228714,-1.228714,-1.228714,-1.228714,-1.228714,-1.228714 +-1.231839,-1.231839,-1.231839,-1.231839,-1.231839,-1.231839 +-1.234964,-1.234964,-1.234964,-1.234964,-1.234964,-1.234964 +-1.238089,-1.238089,-1.238089,-1.238089,-1.238089,-1.238089 +-1.241214,-1.241214,-1.241214,-1.241214,-1.241214,-1.241214 +-1.244339,-1.244339,-1.244339,-1.244339,-1.244339,-1.244339 +-1.247464,-1.247464,-1.247464,-1.247464,-1.247464,-1.247464 +-1.250589,-1.250589,-1.250589,-1.250589,-1.250589,-1.250589 +-1.253714,-1.253714,-1.253714,-1.253714,-1.253714,-1.253714 +-1.256839,-1.256839,-1.256839,-1.256839,-1.256839,-1.256839 +-1.259964,-1.259964,-1.259964,-1.259964,-1.259964,-1.259964 +-1.263089,-1.263089,-1.263089,-1.263089,-1.263089,-1.263089 +-1.266214,-1.266214,-1.266214,-1.266214,-1.266214,-1.266214 +-1.269339,-1.269339,-1.269339,-1.269339,-1.269339,-1.269339 +-1.272464,-1.272464,-1.272464,-1.272464,-1.272464,-1.272464 +-1.275589,-1.275589,-1.275589,-1.275589,-1.275589,-1.275589 +-1.278714,-1.278714,-1.278714,-1.278714,-1.278714,-1.278714 +-1.281839,-1.281839,-1.281839,-1.281839,-1.281839,-1.281839 +-1.284964,-1.284964,-1.284964,-1.284964,-1.284964,-1.284964 +-1.288089,-1.288089,-1.288089,-1.288089,-1.288089,-1.288089 +-1.291214,-1.291214,-1.291214,-1.291214,-1.291214,-1.291214 +-1.294339,-1.294339,-1.294339,-1.294339,-1.294339,-1.294339 +-1.297464,-1.297464,-1.297464,-1.297464,-1.297464,-1.297464 +-1.300589,-1.300589,-1.300589,-1.300589,-1.300589,-1.300589 +-1.303714,-1.303714,-1.303714,-1.303714,-1.303714,-1.303714 +-1.306839,-1.306839,-1.306839,-1.306839,-1.306839,-1.306839 +-1.309964,-1.309964,-1.309964,-1.309964,-1.309964,-1.309964 +-1.313089,-1.313089,-1.313089,-1.313089,-1.313089,-1.313089 +-1.316214,-1.316214,-1.316214,-1.316214,-1.316214,-1.316214 +-1.319339,-1.319339,-1.319339,-1.319339,-1.319339,-1.319339 +-1.322464,-1.322464,-1.322464,-1.322464,-1.322464,-1.322464 +-1.325589,-1.325589,-1.325589,-1.325589,-1.325589,-1.325589 +-1.328714,-1.328714,-1.328714,-1.328714,-1.328714,-1.328714 +-1.331839,-1.331839,-1.331839,-1.331839,-1.331839,-1.331839 +-1.334964,-1.334964,-1.334964,-1.334964,-1.334964,-1.334964 +-1.338089,-1.338089,-1.338089,-1.338089,-1.338089,-1.338089 +-1.341214,-1.341214,-1.341214,-1.341214,-1.341214,-1.341214 +-1.344339,-1.344339,-1.344339,-1.344339,-1.344339,-1.344339 +-1.347464,-1.347464,-1.347464,-1.347464,-1.347464,-1.347464 +-1.350589,-1.350589,-1.350589,-1.350589,-1.350589,-1.350589 +-1.353714,-1.353714,-1.353714,-1.353714,-1.353714,-1.353714 +-1.356839,-1.356839,-1.356839,-1.356839,-1.356839,-1.356839 +-1.359964,-1.359964,-1.359964,-1.359964,-1.359964,-1.359964 +-1.363089,-1.363089,-1.363089,-1.363089,-1.363089,-1.363089 +-1.366214,-1.366214,-1.366214,-1.366214,-1.366214,-1.366214 +-1.369339,-1.369339,-1.369339,-1.369339,-1.369339,-1.369339 +-1.372464,-1.372464,-1.372464,-1.372464,-1.372464,-1.372464 +-1.375589,-1.375589,-1.375589,-1.375589,-1.375589,-1.375589 +-1.378714,-1.378714,-1.378714,-1.378714,-1.378714,-1.378714 +-1.381839,-1.381839,-1.381839,-1.381839,-1.381839,-1.381839 +-1.384964,-1.384964,-1.384964,-1.384964,-1.384964,-1.384964 +-1.388089,-1.388089,-1.388089,-1.388089,-1.388089,-1.388089 +-1.391214,-1.391214,-1.391214,-1.391214,-1.391214,-1.391214 +-1.394339,-1.394339,-1.394339,-1.394339,-1.394339,-1.394339 +-1.397464,-1.397464,-1.397464,-1.397464,-1.397464,-1.397464 +-1.400589,-1.400589,-1.400589,-1.400589,-1.400589,-1.400589 +-1.403714,-1.403714,-1.403714,-1.403714,-1.403714,-1.403714 +-1.406839,-1.406839,-1.406839,-1.406839,-1.406839,-1.406839 +-1.409964,-1.409964,-1.409964,-1.409964,-1.409964,-1.409964 +-1.413089,-1.413089,-1.413089,-1.413089,-1.413089,-1.413089 +-1.416214,-1.416214,-1.416214,-1.416214,-1.416214,-1.416214 +-1.419339,-1.419339,-1.419339,-1.419339,-1.419339,-1.419339 +-1.422464,-1.422464,-1.422464,-1.422464,-1.422464,-1.422464 +-1.425589,-1.425589,-1.425589,-1.425589,-1.425589,-1.425589 +-1.428714,-1.428714,-1.428714,-1.428714,-1.428714,-1.428714 +-1.431839,-1.431839,-1.431839,-1.431839,-1.431839,-1.431839 +-1.434964,-1.434964,-1.434964,-1.434964,-1.434964,-1.434964 +-1.438089,-1.438089,-1.438089,-1.438089,-1.438089,-1.438089 +-1.441214,-1.441214,-1.441214,-1.441214,-1.441214,-1.441214 +-1.444339,-1.444339,-1.444339,-1.444339,-1.444339,-1.444339 +-1.447464,-1.447464,-1.447464,-1.447464,-1.447464,-1.447464 +-1.450589,-1.450589,-1.450589,-1.450589,-1.450589,-1.450589 +-1.453714,-1.453714,-1.453714,-1.453714,-1.453714,-1.453714 +-1.456839,-1.456839,-1.456839,-1.456839,-1.456839,-1.456839 +-1.459964,-1.459964,-1.459964,-1.459964,-1.459964,-1.459964 +-1.463089,-1.463089,-1.463089,-1.463089,-1.463089,-1.463089 +-1.466214,-1.466214,-1.466214,-1.466214,-1.466214,-1.466214 +-1.469339,-1.469339,-1.469339,-1.469339,-1.469339,-1.469339 +-1.472464,-1.472464,-1.472464,-1.472464,-1.472464,-1.472464 +-1.475589,-1.475589,-1.475589,-1.475589,-1.475589,-1.475589 +-1.478714,-1.478714,-1.478714,-1.478714,-1.478714,-1.478714 +-1.481839,-1.481839,-1.481839,-1.481839,-1.481839,-1.481839 +-1.484964,-1.484964,-1.484964,-1.484964,-1.484964,-1.484964 +-1.488089,-1.488089,-1.488089,-1.488089,-1.488089,-1.488089 +-1.491214,-1.491214,-1.491214,-1.491214,-1.491214,-1.491214 +-1.494339,-1.494339,-1.494339,-1.494339,-1.494339,-1.494339 +-1.497464,-1.497464,-1.497464,-1.497464,-1.497464,-1.497464 +-1.500589,-1.500589,-1.500589,-1.500589,-1.500589,-1.500589 +-1.503714,-1.503714,-1.503714,-1.503714,-1.503714,-1.503714 +-1.506839,-1.506839,-1.506839,-1.506839,-1.506839,-1.506839 +-1.509964,-1.509964,-1.509964,-1.509964,-1.509964,-1.509964 +-1.513089,-1.513089,-1.513089,-1.513089,-1.513089,-1.513089 +-1.516214,-1.516214,-1.516214,-1.516214,-1.516214,-1.516214 +-1.519339,-1.519339,-1.519339,-1.519339,-1.519339,-1.519339 +-1.522464,-1.522464,-1.522464,-1.522464,-1.522464,-1.522464 +-1.525589,-1.525589,-1.525589,-1.525589,-1.525589,-1.525589 +-1.528714,-1.528714,-1.528714,-1.528714,-1.528714,-1.528714 +-1.531839,-1.531839,-1.531839,-1.531839,-1.531839,-1.531839 +-1.534964,-1.534964,-1.534964,-1.534964,-1.534964,-1.534964 +-1.538089,-1.538089,-1.538089,-1.538089,-1.538089,-1.538089 +-1.541214,-1.541214,-1.541214,-1.541214,-1.541214,-1.541214 +-1.544339,-1.544339,-1.544339,-1.544339,-1.544339,-1.544339 +-1.547464,-1.547464,-1.547464,-1.547464,-1.547464,-1.547464 +-1.550589,-1.550589,-1.550589,-1.550589,-1.550589,-1.550589 +-1.553714,-1.553714,-1.553714,-1.553714,-1.553714,-1.553714 +-1.556839,-1.556839,-1.556839,-1.556839,-1.556839,-1.556839 +-1.559964,-1.559964,-1.559964,-1.559964,-1.559964,-1.559964 +-1.563089,-1.563089,-1.563089,-1.563089,-1.563089,-1.563089 +-1.566214,-1.566214,-1.566214,-1.566214,-1.566214,-1.566214 +-1.569339,-1.569339,-1.569339,-1.569339,-1.569339,-1.569339 +-1.572464,-1.572464,-1.572464,-1.572464,-1.572464,-1.572464 +-1.575589,-1.575589,-1.575589,-1.575589,-1.575589,-1.575589 +-1.578714,-1.578714,-1.578714,-1.578714,-1.578714,-1.578714 +-1.581839,-1.581839,-1.581839,-1.581839,-1.581839,-1.581839 +-1.584964,-1.584964,-1.584964,-1.584964,-1.584964,-1.584964 +-1.588089,-1.588089,-1.588089,-1.588089,-1.588089,-1.588089 +-1.591214,-1.591214,-1.591214,-1.591214,-1.591214,-1.591214 +-1.594339,-1.594339,-1.594339,-1.594339,-1.594339,-1.594339 +-1.597464,-1.597464,-1.597464,-1.597464,-1.597464,-1.597464 +-1.600589,-1.600589,-1.600589,-1.600589,-1.600589,-1.600589 +-1.603714,-1.603714,-1.603714,-1.603714,-1.603714,-1.603714 +-1.606839,-1.606839,-1.606839,-1.606839,-1.606839,-1.606839 +-1.609964,-1.609964,-1.609964,-1.609964,-1.609964,-1.609964 +-1.613089,-1.613089,-1.613089,-1.613089,-1.613089,-1.613089 +-1.616214,-1.616214,-1.616214,-1.616214,-1.616214,-1.616214 +-1.619339,-1.619339,-1.619339,-1.619339,-1.619339,-1.619339 +-1.622464,-1.622464,-1.622464,-1.622464,-1.622464,-1.622464 +-1.625589,-1.625589,-1.625589,-1.625589,-1.625589,-1.625589 +-1.628714,-1.628714,-1.628714,-1.628714,-1.628714,-1.628714 +-1.631839,-1.631839,-1.631839,-1.631839,-1.631839,-1.631839 +-1.634964,-1.634964,-1.634964,-1.634964,-1.634964,-1.634964 +-1.638089,-1.638089,-1.638089,-1.638089,-1.638089,-1.638089 +-1.641214,-1.641214,-1.641214,-1.641214,-1.641214,-1.641214 +-1.644339,-1.644339,-1.644339,-1.644339,-1.644339,-1.644339 +-1.647464,-1.647464,-1.647464,-1.647464,-1.647464,-1.647464 +-1.650589,-1.650589,-1.650589,-1.650589,-1.650589,-1.650589 +-1.653714,-1.653714,-1.653714,-1.653714,-1.653714,-1.653714 +-1.656839,-1.656839,-1.656839,-1.656839,-1.656839,-1.656839 +-1.659964,-1.659964,-1.659964,-1.659964,-1.659964,-1.659964 +-1.663089,-1.663089,-1.663089,-1.663089,-1.663089,-1.663089 +-1.666214,-1.666214,-1.666214,-1.666214,-1.666214,-1.666214 +-1.669339,-1.669339,-1.669339,-1.669339,-1.669339,-1.669339 +-1.672464,-1.672464,-1.672464,-1.672464,-1.672464,-1.672464 +-1.675589,-1.675589,-1.675589,-1.675589,-1.675589,-1.675589 +-1.678714,-1.678714,-1.678714,-1.678714,-1.678714,-1.678714 +-1.681839,-1.681839,-1.681839,-1.681839,-1.681839,-1.681839 +-1.684964,-1.684964,-1.684964,-1.684964,-1.684964,-1.684964 +-1.688089,-1.688089,-1.688089,-1.688089,-1.688089,-1.688089 +-1.691214,-1.691214,-1.691214,-1.691214,-1.691214,-1.691214 +-1.694339,-1.694339,-1.694339,-1.694339,-1.694339,-1.694339 +-1.697464,-1.697464,-1.697464,-1.697464,-1.697464,-1.697464 +-1.700582,-1.700582,-1.700582,-1.700582,-1.700582,-1.700582 +-1.703682,-1.703682,-1.703682,-1.703682,-1.703682,-1.703682 +-1.70675,-1.70675,-1.70675,-1.70675,-1.70675,-1.70675 +-1.709774,-1.709774,-1.709774,-1.709774,-1.709774,-1.709774 +-1.712742,-1.712742,-1.712742,-1.712742,-1.712742,-1.712742 +-1.715641,-1.715641,-1.715641,-1.715641,-1.715641,-1.715641 +-1.718459,-1.718459,-1.718459,-1.718459,-1.718459,-1.718459 +-1.721183,-1.721183,-1.721183,-1.721183,-1.721183,-1.721183 +-1.723801,-1.723801,-1.723801,-1.723801,-1.723801,-1.723801 +-1.7263,-1.7263,-1.7263,-1.7263,-1.7263,-1.7263 +-1.728668,-1.728668,-1.728668,-1.728668,-1.728668,-1.728668 +-1.730891,-1.730891,-1.730891,-1.730891,-1.730891,-1.730891 +-1.732959,-1.732959,-1.732959,-1.732959,-1.732959,-1.732959 +-1.734858,-1.734858,-1.734858,-1.734858,-1.734858,-1.734858 +-1.736575,-1.736575,-1.736575,-1.736575,-1.736575,-1.736575 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.739437,-1.739437,-1.739437,-1.739437,-1.739437,-1.739437 +-1.740596,-1.740596,-1.740596,-1.740596,-1.740596,-1.740596 +-1.741592,-1.741592,-1.741592,-1.741592,-1.741592,-1.741592 +-1.742436,-1.742436,-1.742436,-1.742436,-1.742436,-1.742436 +-1.743142,-1.743142,-1.743142,-1.743142,-1.743142,-1.743142 +-1.74372,-1.74372,-1.74372,-1.74372,-1.74372,-1.74372 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.744548,-1.744548,-1.744548,-1.744548,-1.744548,-1.744548 +-1.744823,-1.744823,-1.744823,-1.744823,-1.744823,-1.744823 +-1.745021,-1.745021,-1.745021,-1.745021,-1.745021,-1.745021 +-1.745154,-1.745154,-1.745154,-1.745154,-1.745154,-1.745154 +-1.745237,-1.745237,-1.745237,-1.745237,-1.745237,-1.745237 +-1.74528,-1.74528,-1.74528,-1.74528,-1.74528,-1.74528 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745298,-1.745298,-1.745298,-1.745298,-1.745298,-1.745298 +-1.745283,-1.745283,-1.745283,-1.745283,-1.745283,-1.745283 +-1.745244,-1.745244,-1.745244,-1.745244,-1.745244,-1.745244 +-1.745167,-1.745167,-1.745167,-1.745167,-1.745167,-1.745167 +-1.74504,-1.74504,-1.74504,-1.74504,-1.74504,-1.74504 +-1.74485,-1.74485,-1.74485,-1.74485,-1.74485,-1.74485 +-1.744585,-1.744585,-1.744585,-1.744585,-1.744585,-1.744585 +-1.744233,-1.744233,-1.744233,-1.744233,-1.744233,-1.744233 +-1.743781,-1.743781,-1.743781,-1.743781,-1.743781,-1.743781 +-1.743217,-1.743217,-1.743217,-1.743217,-1.743217,-1.743217 +-1.742527,-1.742527,-1.742527,-1.742527,-1.742527,-1.742527 +-1.7417,-1.7417,-1.7417,-1.7417,-1.7417,-1.7417 +-1.740723,-1.740723,-1.740723,-1.740723,-1.740723,-1.740723 +-1.739583,-1.739583,-1.739583,-1.739583,-1.739583,-1.739583 +-1.738269,-1.738269,-1.738269,-1.738269,-1.738269,-1.738269 +-1.736767,-1.736767,-1.736767,-1.736767,-1.736767,-1.736767 +-1.735072,-1.735072,-1.735072,-1.735072,-1.735072,-1.735072 +-1.733194,-1.733194,-1.733194,-1.733194,-1.733194,-1.733194 +-1.731145,-1.731145,-1.731145,-1.731145,-1.731145,-1.731145 +-1.72894,-1.72894,-1.72894,-1.72894,-1.72894,-1.72894 +-1.726588,-1.726588,-1.726588,-1.726588,-1.726588,-1.726588 +-1.724104,-1.724104,-1.724104,-1.724104,-1.724104,-1.724104 +-1.7215,-1.7215,-1.7215,-1.7215,-1.7215,-1.7215 +-1.718788,-1.718788,-1.718788,-1.718788,-1.718788,-1.718788 +-1.71598,-1.71598,-1.71598,-1.71598,-1.71598,-1.71598 +-1.71309,-1.71309,-1.71309,-1.71309,-1.71309,-1.71309 +-1.71013,-1.71013,-1.71013,-1.71013,-1.71013,-1.71013 +-1.707112,-1.707112,-1.707112,-1.707112,-1.707112,-1.707112 +-1.704048,-1.704048,-1.704048,-1.704048,-1.704048,-1.704048 +-1.700952,-1.700952,-1.700952,-1.700952,-1.700952,-1.700952 +-1.697835,-1.697835,-1.697835,-1.697835,-1.697835,-1.697835 +-1.694711,-1.694711,-1.694711,-1.694711,-1.694711,-1.694711 +-1.691586,-1.691586,-1.691586,-1.691586,-1.691586,-1.691586 +-1.688461,-1.688461,-1.688461,-1.688461,-1.688461,-1.688461 +-1.685336,-1.685336,-1.685336,-1.685336,-1.685336,-1.685336 +-1.682211,-1.682211,-1.682211,-1.682211,-1.682211,-1.682211 +-1.679086,-1.679086,-1.679086,-1.679086,-1.679086,-1.679086 +-1.675961,-1.675961,-1.675961,-1.675961,-1.675961,-1.675961 +-1.672836,-1.672836,-1.672836,-1.672836,-1.672836,-1.672836 +-1.669711,-1.669711,-1.669711,-1.669711,-1.669711,-1.669711 +-1.666586,-1.666586,-1.666586,-1.666586,-1.666586,-1.666586 +-1.663461,-1.663461,-1.663461,-1.663461,-1.663461,-1.663461 +-1.660336,-1.660336,-1.660336,-1.660336,-1.660336,-1.660336 +-1.657211,-1.657211,-1.657211,-1.657211,-1.657211,-1.657211 +-1.654086,-1.654086,-1.654086,-1.654086,-1.654086,-1.654086 +-1.650961,-1.650961,-1.650961,-1.650961,-1.650961,-1.650961 +-1.647836,-1.647836,-1.647836,-1.647836,-1.647836,-1.647836 +-1.644711,-1.644711,-1.644711,-1.644711,-1.644711,-1.644711 +-1.641586,-1.641586,-1.641586,-1.641586,-1.641586,-1.641586 +-1.638461,-1.638461,-1.638461,-1.638461,-1.638461,-1.638461 +-1.635336,-1.635336,-1.635336,-1.635336,-1.635336,-1.635336 +-1.632211,-1.632211,-1.632211,-1.632211,-1.632211,-1.632211 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.625961,-1.625961,-1.625961,-1.625961,-1.625961,-1.625961 +-1.622836,-1.622836,-1.622836,-1.622836,-1.622836,-1.622836 +-1.619711,-1.619711,-1.619711,-1.619711,-1.619711,-1.619711 +-1.616586,-1.616586,-1.616586,-1.616586,-1.616586,-1.616586 +-1.613461,-1.613461,-1.613461,-1.613461,-1.613461,-1.613461 +-1.610336,-1.610336,-1.610336,-1.610336,-1.610336,-1.610336 +-1.607211,-1.607211,-1.607211,-1.607211,-1.607211,-1.607211 +-1.604086,-1.604086,-1.604086,-1.604086,-1.604086,-1.604086 +-1.600961,-1.600961,-1.600961,-1.600961,-1.600961,-1.600961 +-1.597836,-1.597836,-1.597836,-1.597836,-1.597836,-1.597836 +-1.594711,-1.594711,-1.594711,-1.594711,-1.594711,-1.594711 +-1.591586,-1.591586,-1.591586,-1.591586,-1.591586,-1.591586 +-1.588461,-1.588461,-1.588461,-1.588461,-1.588461,-1.588461 +-1.585336,-1.585336,-1.585336,-1.585336,-1.585336,-1.585336 +-1.582211,-1.582211,-1.582211,-1.582211,-1.582211,-1.582211 +-1.579086,-1.579086,-1.579086,-1.579086,-1.579086,-1.579086 +-1.575961,-1.575961,-1.575961,-1.575961,-1.575961,-1.575961 +-1.572836,-1.572836,-1.572836,-1.572836,-1.572836,-1.572836 +-1.569711,-1.569711,-1.569711,-1.569711,-1.569711,-1.569711 +-1.566586,-1.566586,-1.566586,-1.566586,-1.566586,-1.566586 +-1.563461,-1.563461,-1.563461,-1.563461,-1.563461,-1.563461 +-1.560336,-1.560336,-1.560336,-1.560336,-1.560336,-1.560336 +-1.557211,-1.557211,-1.557211,-1.557211,-1.557211,-1.557211 +-1.554086,-1.554086,-1.554086,-1.554086,-1.554086,-1.554086 +-1.550961,-1.550961,-1.550961,-1.550961,-1.550961,-1.550961 +-1.547836,-1.547836,-1.547836,-1.547836,-1.547836,-1.547836 +-1.544711,-1.544711,-1.544711,-1.544711,-1.544711,-1.544711 +-1.541586,-1.541586,-1.541586,-1.541586,-1.541586,-1.541586 +-1.538461,-1.538461,-1.538461,-1.538461,-1.538461,-1.538461 +-1.535336,-1.535336,-1.535336,-1.535336,-1.535336,-1.535336 +-1.532211,-1.532211,-1.532211,-1.532211,-1.532211,-1.532211 +-1.529086,-1.529086,-1.529086,-1.529086,-1.529086,-1.529086 +-1.525961,-1.525961,-1.525961,-1.525961,-1.525961,-1.525961 +-1.522836,-1.522836,-1.522836,-1.522836,-1.522836,-1.522836 +-1.519711,-1.519711,-1.519711,-1.519711,-1.519711,-1.519711 +-1.516586,-1.516586,-1.516586,-1.516586,-1.516586,-1.516586 +-1.513461,-1.513461,-1.513461,-1.513461,-1.513461,-1.513461 +-1.510336,-1.510336,-1.510336,-1.510336,-1.510336,-1.510336 +-1.507211,-1.507211,-1.507211,-1.507211,-1.507211,-1.507211 +-1.504086,-1.504086,-1.504086,-1.504086,-1.504086,-1.504086 +-1.500961,-1.500961,-1.500961,-1.500961,-1.500961,-1.500961 +-1.497836,-1.497836,-1.497836,-1.497836,-1.497836,-1.497836 +-1.494711,-1.494711,-1.494711,-1.494711,-1.494711,-1.494711 +-1.491586,-1.491586,-1.491586,-1.491586,-1.491586,-1.491586 +-1.488461,-1.488461,-1.488461,-1.488461,-1.488461,-1.488461 +-1.485336,-1.485336,-1.485336,-1.485336,-1.485336,-1.485336 +-1.482211,-1.482211,-1.482211,-1.482211,-1.482211,-1.482211 +-1.479086,-1.479086,-1.479086,-1.479086,-1.479086,-1.479086 +-1.475961,-1.475961,-1.475961,-1.475961,-1.475961,-1.475961 +-1.472836,-1.472836,-1.472836,-1.472836,-1.472836,-1.472836 +-1.469711,-1.469711,-1.469711,-1.469711,-1.469711,-1.469711 +-1.466586,-1.466586,-1.466586,-1.466586,-1.466586,-1.466586 +-1.463461,-1.463461,-1.463461,-1.463461,-1.463461,-1.463461 +-1.460336,-1.460336,-1.460336,-1.460336,-1.460336,-1.460336 +-1.457211,-1.457211,-1.457211,-1.457211,-1.457211,-1.457211 +-1.454086,-1.454086,-1.454086,-1.454086,-1.454086,-1.454086 +-1.450961,-1.450961,-1.450961,-1.450961,-1.450961,-1.450961 +-1.447836,-1.447836,-1.447836,-1.447836,-1.447836,-1.447836 +-1.444711,-1.444711,-1.444711,-1.444711,-1.444711,-1.444711 +-1.441586,-1.441586,-1.441586,-1.441586,-1.441586,-1.441586 +-1.438461,-1.438461,-1.438461,-1.438461,-1.438461,-1.438461 +-1.435336,-1.435336,-1.435336,-1.435336,-1.435336,-1.435336 +-1.432211,-1.432211,-1.432211,-1.432211,-1.432211,-1.432211 +-1.429086,-1.429086,-1.429086,-1.429086,-1.429086,-1.429086 +-1.425961,-1.425961,-1.425961,-1.425961,-1.425961,-1.425961 +-1.422836,-1.422836,-1.422836,-1.422836,-1.422836,-1.422836 +-1.419711,-1.419711,-1.419711,-1.419711,-1.419711,-1.419711 +-1.416586,-1.416586,-1.416586,-1.416586,-1.416586,-1.416586 +-1.413461,-1.413461,-1.413461,-1.413461,-1.413461,-1.413461 +-1.410336,-1.410336,-1.410336,-1.410336,-1.410336,-1.410336 +-1.407211,-1.407211,-1.407211,-1.407211,-1.407211,-1.407211 +-1.404086,-1.404086,-1.404086,-1.404086,-1.404086,-1.404086 +-1.400961,-1.400961,-1.400961,-1.400961,-1.400961,-1.400961 +-1.397836,-1.397836,-1.397836,-1.397836,-1.397836,-1.397836 +-1.394711,-1.394711,-1.394711,-1.394711,-1.394711,-1.394711 +-1.391586,-1.391586,-1.391586,-1.391586,-1.391586,-1.391586 +-1.388461,-1.388461,-1.388461,-1.388461,-1.388461,-1.388461 +-1.385336,-1.385336,-1.385336,-1.385336,-1.385336,-1.385336 +-1.382211,-1.382211,-1.382211,-1.382211,-1.382211,-1.382211 +-1.379086,-1.379086,-1.379086,-1.379086,-1.379086,-1.379086 +-1.375961,-1.375961,-1.375961,-1.375961,-1.375961,-1.375961 +-1.372836,-1.372836,-1.372836,-1.372836,-1.372836,-1.372836 +-1.369711,-1.369711,-1.369711,-1.369711,-1.369711,-1.369711 +-1.366586,-1.366586,-1.366586,-1.366586,-1.366586,-1.366586 +-1.363461,-1.363461,-1.363461,-1.363461,-1.363461,-1.363461 +-1.360336,-1.360336,-1.360336,-1.360336,-1.360336,-1.360336 +-1.357211,-1.357211,-1.357211,-1.357211,-1.357211,-1.357211 +-1.354086,-1.354086,-1.354086,-1.354086,-1.354086,-1.354086 +-1.350961,-1.350961,-1.350961,-1.350961,-1.350961,-1.350961 +-1.347836,-1.347836,-1.347836,-1.347836,-1.347836,-1.347836 +-1.344711,-1.344711,-1.344711,-1.344711,-1.344711,-1.344711 +-1.341586,-1.341586,-1.341586,-1.341586,-1.341586,-1.341586 +-1.338461,-1.338461,-1.338461,-1.338461,-1.338461,-1.338461 +-1.335336,-1.335336,-1.335336,-1.335336,-1.335336,-1.335336 +-1.332211,-1.332211,-1.332211,-1.332211,-1.332211,-1.332211 +-1.329086,-1.329086,-1.329086,-1.329086,-1.329086,-1.329086 +-1.325961,-1.325961,-1.325961,-1.325961,-1.325961,-1.325961 +-1.322836,-1.322836,-1.322836,-1.322836,-1.322836,-1.322836 +-1.319711,-1.319711,-1.319711,-1.319711,-1.319711,-1.319711 +-1.316586,-1.316586,-1.316586,-1.316586,-1.316586,-1.316586 +-1.313461,-1.313461,-1.313461,-1.313461,-1.313461,-1.313461 +-1.310336,-1.310336,-1.310336,-1.310336,-1.310336,-1.310336 +-1.307211,-1.307211,-1.307211,-1.307211,-1.307211,-1.307211 +-1.304086,-1.304086,-1.304086,-1.304086,-1.304086,-1.304086 +-1.300961,-1.300961,-1.300961,-1.300961,-1.300961,-1.300961 +-1.297836,-1.297836,-1.297836,-1.297836,-1.297836,-1.297836 +-1.294711,-1.294711,-1.294711,-1.294711,-1.294711,-1.294711 +-1.291586,-1.291586,-1.291586,-1.291586,-1.291586,-1.291586 +-1.288461,-1.288461,-1.288461,-1.288461,-1.288461,-1.288461 +-1.285336,-1.285336,-1.285336,-1.285336,-1.285336,-1.285336 +-1.282211,-1.282211,-1.282211,-1.282211,-1.282211,-1.282211 +-1.279086,-1.279086,-1.279086,-1.279086,-1.279086,-1.279086 +-1.275961,-1.275961,-1.275961,-1.275961,-1.275961,-1.275961 +-1.272836,-1.272836,-1.272836,-1.272836,-1.272836,-1.272836 +-1.269711,-1.269711,-1.269711,-1.269711,-1.269711,-1.269711 +-1.266586,-1.266586,-1.266586,-1.266586,-1.266586,-1.266586 +-1.263461,-1.263461,-1.263461,-1.263461,-1.263461,-1.263461 +-1.260336,-1.260336,-1.260336,-1.260336,-1.260336,-1.260336 +-1.257211,-1.257211,-1.257211,-1.257211,-1.257211,-1.257211 +-1.254086,-1.254086,-1.254086,-1.254086,-1.254086,-1.254086 +-1.250961,-1.250961,-1.250961,-1.250961,-1.250961,-1.250961 +-1.247836,-1.247836,-1.247836,-1.247836,-1.247836,-1.247836 +-1.244711,-1.244711,-1.244711,-1.244711,-1.244711,-1.244711 +-1.241586,-1.241586,-1.241586,-1.241586,-1.241586,-1.241586 +-1.238461,-1.238461,-1.238461,-1.238461,-1.238461,-1.238461 +-1.235336,-1.235336,-1.235336,-1.235336,-1.235336,-1.235336 +-1.232211,-1.232211,-1.232211,-1.232211,-1.232211,-1.232211 +-1.229086,-1.229086,-1.229086,-1.229086,-1.229086,-1.229086 +-1.225961,-1.225961,-1.225961,-1.225961,-1.225961,-1.225961 +-1.222836,-1.222836,-1.222836,-1.222836,-1.222836,-1.222836 +-1.219711,-1.219711,-1.219711,-1.219711,-1.219711,-1.219711 +-1.216586,-1.216586,-1.216586,-1.216586,-1.216586,-1.216586 +-1.213461,-1.213461,-1.213461,-1.213461,-1.213461,-1.213461 +-1.210336,-1.210336,-1.210336,-1.210336,-1.210336,-1.210336 +-1.207211,-1.207211,-1.207211,-1.207211,-1.207211,-1.207211 +-1.204086,-1.204086,-1.204086,-1.204086,-1.204086,-1.204086 +-1.200961,-1.200961,-1.200961,-1.200961,-1.200961,-1.200961 +-1.197836,-1.197836,-1.197836,-1.197836,-1.197836,-1.197836 +-1.194711,-1.194711,-1.194711,-1.194711,-1.194711,-1.194711 +-1.191586,-1.191586,-1.191586,-1.191586,-1.191586,-1.191586 +-1.188461,-1.188461,-1.188461,-1.188461,-1.188461,-1.188461 +-1.185336,-1.185336,-1.185336,-1.185336,-1.185336,-1.185336 +-1.182211,-1.182211,-1.182211,-1.182211,-1.182211,-1.182211 +-1.179086,-1.179086,-1.179086,-1.179086,-1.179086,-1.179086 +-1.175961,-1.175961,-1.175961,-1.175961,-1.175961,-1.175961 +-1.172836,-1.172836,-1.172836,-1.172836,-1.172836,-1.172836 +-1.169711,-1.169711,-1.169711,-1.169711,-1.169711,-1.169711 +-1.166586,-1.166586,-1.166586,-1.166586,-1.166586,-1.166586 +-1.163461,-1.163461,-1.163461,-1.163461,-1.163461,-1.163461 +-1.160336,-1.160336,-1.160336,-1.160336,-1.160336,-1.160336 +-1.157211,-1.157211,-1.157211,-1.157211,-1.157211,-1.157211 +-1.154086,-1.154086,-1.154086,-1.154086,-1.154086,-1.154086 +-1.150961,-1.150961,-1.150961,-1.150961,-1.150961,-1.150961 +-1.147836,-1.147836,-1.147836,-1.147836,-1.147836,-1.147836 +-1.144711,-1.144711,-1.144711,-1.144711,-1.144711,-1.144711 +-1.141586,-1.141586,-1.141586,-1.141586,-1.141586,-1.141586 +-1.138461,-1.138461,-1.138461,-1.138461,-1.138461,-1.138461 +-1.135336,-1.135336,-1.135336,-1.135336,-1.135336,-1.135336 +-1.132211,-1.132211,-1.132211,-1.132211,-1.132211,-1.132211 +-1.129086,-1.129086,-1.129086,-1.129086,-1.129086,-1.129086 +-1.125961,-1.125961,-1.125961,-1.125961,-1.125961,-1.125961 +-1.122836,-1.122836,-1.122836,-1.122836,-1.122836,-1.122836 +-1.119711,-1.119711,-1.119711,-1.119711,-1.119711,-1.119711 +-1.116586,-1.116586,-1.116586,-1.116586,-1.116586,-1.116586 +-1.113461,-1.113461,-1.113461,-1.113461,-1.113461,-1.113461 +-1.110336,-1.110336,-1.110336,-1.110336,-1.110336,-1.110336 +-1.107211,-1.107211,-1.107211,-1.107211,-1.107211,-1.107211 +-1.104086,-1.104086,-1.104086,-1.104086,-1.104086,-1.104086 +-1.100961,-1.100961,-1.100961,-1.100961,-1.100961,-1.100961 +-1.097836,-1.097836,-1.097836,-1.097836,-1.097836,-1.097836 +-1.094711,-1.094711,-1.094711,-1.094711,-1.094711,-1.094711 +-1.091586,-1.091586,-1.091586,-1.091586,-1.091586,-1.091586 +-1.088461,-1.088461,-1.088461,-1.088461,-1.088461,-1.088461 +-1.085336,-1.085336,-1.085336,-1.085336,-1.085336,-1.085336 +-1.082211,-1.082211,-1.082211,-1.082211,-1.082211,-1.082211 +-1.079086,-1.079086,-1.079086,-1.079086,-1.079086,-1.079086 +-1.075961,-1.075961,-1.075961,-1.075961,-1.075961,-1.075961 +-1.072836,-1.072836,-1.072836,-1.072836,-1.072836,-1.072836 +-1.069711,-1.069711,-1.069711,-1.069711,-1.069711,-1.069711 +-1.066586,-1.066586,-1.066586,-1.066586,-1.066586,-1.066586 +-1.063461,-1.063461,-1.063461,-1.063461,-1.063461,-1.063461 +-1.060336,-1.060336,-1.060336,-1.060336,-1.060336,-1.060336 +-1.057211,-1.057211,-1.057211,-1.057211,-1.057211,-1.057211 +-1.054086,-1.054086,-1.054086,-1.054086,-1.054086,-1.054086 +-1.050961,-1.050961,-1.050961,-1.050961,-1.050961,-1.050961 +-1.047836,-1.047836,-1.047836,-1.047836,-1.047836,-1.047836 +-1.044711,-1.044711,-1.044711,-1.044711,-1.044711,-1.044711 +-1.041586,-1.041586,-1.041586,-1.041586,-1.041586,-1.041586 +-1.038461,-1.038461,-1.038461,-1.038461,-1.038461,-1.038461 +-1.035336,-1.035336,-1.035336,-1.035336,-1.035336,-1.035336 +-1.032211,-1.032211,-1.032211,-1.032211,-1.032211,-1.032211 +-1.029086,-1.029086,-1.029086,-1.029086,-1.029086,-1.029086 +-1.025961,-1.025961,-1.025961,-1.025961,-1.025961,-1.025961 +-1.022836,-1.022836,-1.022836,-1.022836,-1.022836,-1.022836 +-1.019711,-1.019711,-1.019711,-1.019711,-1.019711,-1.019711 +-1.016586,-1.016586,-1.016586,-1.016586,-1.016586,-1.016586 +-1.013461,-1.013461,-1.013461,-1.013461,-1.013461,-1.013461 +-1.010336,-1.010336,-1.010336,-1.010336,-1.010336,-1.010336 +-1.007211,-1.007211,-1.007211,-1.007211,-1.007211,-1.007211 +-1.004086,-1.004086,-1.004086,-1.004086,-1.004086,-1.004086 +-1.000961,-1.000961,-1.000961,-1.000961,-1.000961,-1.000961 +-0.997836,-0.997836,-0.997836,-0.997836,-0.997836,-0.997836 +-0.994711,-0.994711,-0.994711,-0.994711,-0.994711,-0.994711 +-0.991586,-0.991586,-0.991586,-0.991586,-0.991586,-0.991586 +-0.988461,-0.988461,-0.988461,-0.988461,-0.988461,-0.988461 +-0.985336,-0.985336,-0.985336,-0.985336,-0.985336,-0.985336 +-0.982211,-0.982211,-0.982211,-0.982211,-0.982211,-0.982211 +-0.979086,-0.979086,-0.979086,-0.979086,-0.979086,-0.979086 +-0.975961,-0.975961,-0.975961,-0.975961,-0.975961,-0.975961 +-0.972836,-0.972836,-0.972836,-0.972836,-0.972836,-0.972836 +-0.969711,-0.969711,-0.969711,-0.969711,-0.969711,-0.969711 +-0.966586,-0.966586,-0.966586,-0.966586,-0.966586,-0.966586 +-0.963461,-0.963461,-0.963461,-0.963461,-0.963461,-0.963461 +-0.960336,-0.960336,-0.960336,-0.960336,-0.960336,-0.960336 +-0.957211,-0.957211,-0.957211,-0.957211,-0.957211,-0.957211 +-0.954086,-0.954086,-0.954086,-0.954086,-0.954086,-0.954086 +-0.950961,-0.950961,-0.950961,-0.950961,-0.950961,-0.950961 +-0.947836,-0.947836,-0.947836,-0.947836,-0.947836,-0.947836 +-0.944711,-0.944711,-0.944711,-0.944711,-0.944711,-0.944711 +-0.941586,-0.941586,-0.941586,-0.941586,-0.941586,-0.941586 +-0.938461,-0.938461,-0.938461,-0.938461,-0.938461,-0.938461 +-0.935336,-0.935336,-0.935336,-0.935336,-0.935336,-0.935336 +-0.932211,-0.932211,-0.932211,-0.932211,-0.932211,-0.932211 +-0.929086,-0.929086,-0.929086,-0.929086,-0.929086,-0.929086 +-0.925961,-0.925961,-0.925961,-0.925961,-0.925961,-0.925961 +-0.922836,-0.922836,-0.922836,-0.922836,-0.922836,-0.922836 +-0.919711,-0.919711,-0.919711,-0.919711,-0.919711,-0.919711 +-0.916586,-0.916586,-0.916586,-0.916586,-0.916586,-0.916586 +-0.913461,-0.913461,-0.913461,-0.913461,-0.913461,-0.913461 +-0.910336,-0.910336,-0.910336,-0.910336,-0.910336,-0.910336 +-0.907211,-0.907211,-0.907211,-0.907211,-0.907211,-0.907211 +-0.904086,-0.904086,-0.904086,-0.904086,-0.904086,-0.904086 +-0.900961,-0.900961,-0.900961,-0.900961,-0.900961,-0.900961 +-0.897836,-0.897836,-0.897836,-0.897836,-0.897836,-0.897836 +-0.894711,-0.894711,-0.894711,-0.894711,-0.894711,-0.894711 +-0.891586,-0.891586,-0.891586,-0.891586,-0.891586,-0.891586 +-0.888461,-0.888461,-0.888461,-0.888461,-0.888461,-0.888461 +-0.885336,-0.885336,-0.885336,-0.885336,-0.885336,-0.885336 +-0.882211,-0.882211,-0.882211,-0.882211,-0.882211,-0.882211 +-0.879086,-0.879086,-0.879086,-0.879086,-0.879086,-0.879086 +-0.875961,-0.875961,-0.875961,-0.875961,-0.875961,-0.875961 +-0.872836,-0.872836,-0.872836,-0.872836,-0.872836,-0.872836 +-0.869711,-0.869711,-0.869711,-0.869711,-0.869711,-0.869711 +-0.866586,-0.866586,-0.866586,-0.866586,-0.866586,-0.866586 +-0.863461,-0.863461,-0.863461,-0.863461,-0.863461,-0.863461 +-0.860336,-0.860336,-0.860336,-0.860336,-0.860336,-0.860336 +-0.857211,-0.857211,-0.857211,-0.857211,-0.857211,-0.857211 +-0.854086,-0.854086,-0.854086,-0.854086,-0.854086,-0.854086 +-0.850961,-0.850961,-0.850961,-0.850961,-0.850961,-0.850961 +-0.847836,-0.847836,-0.847836,-0.847836,-0.847836,-0.847836 +-0.844711,-0.844711,-0.844711,-0.844711,-0.844711,-0.844711 +-0.841586,-0.841586,-0.841586,-0.841586,-0.841586,-0.841586 +-0.838461,-0.838461,-0.838461,-0.838461,-0.838461,-0.838461 +-0.835336,-0.835336,-0.835336,-0.835336,-0.835336,-0.835336 +-0.832211,-0.832211,-0.832211,-0.832211,-0.832211,-0.832211 +-0.829086,-0.829086,-0.829086,-0.829086,-0.829086,-0.829086 +-0.825961,-0.825961,-0.825961,-0.825961,-0.825961,-0.825961 +-0.822836,-0.822836,-0.822836,-0.822836,-0.822836,-0.822836 +-0.819711,-0.819711,-0.819711,-0.819711,-0.819711,-0.819711 +-0.816586,-0.816586,-0.816586,-0.816586,-0.816586,-0.816586 +-0.813461,-0.813461,-0.813461,-0.813461,-0.813461,-0.813461 +-0.810336,-0.810336,-0.810336,-0.810336,-0.810336,-0.810336 +-0.807211,-0.807211,-0.807211,-0.807211,-0.807211,-0.807211 +-0.804086,-0.804086,-0.804086,-0.804086,-0.804086,-0.804086 +-0.800961,-0.800961,-0.800961,-0.800961,-0.800961,-0.800961 +-0.797836,-0.797836,-0.797836,-0.797836,-0.797836,-0.797836 +-0.794711,-0.794711,-0.794711,-0.794711,-0.794711,-0.794711 +-0.791586,-0.791586,-0.791586,-0.791586,-0.791586,-0.791586 +-0.788461,-0.788461,-0.788461,-0.788461,-0.788461,-0.788461 +-0.785336,-0.785336,-0.785336,-0.785336,-0.785336,-0.785336 +-0.782211,-0.782211,-0.782211,-0.782211,-0.782211,-0.782211 +-0.779086,-0.779086,-0.779086,-0.779086,-0.779086,-0.779086 +-0.775961,-0.775961,-0.775961,-0.775961,-0.775961,-0.775961 +-0.772836,-0.772836,-0.772836,-0.772836,-0.772836,-0.772836 +-0.769711,-0.769711,-0.769711,-0.769711,-0.769711,-0.769711 +-0.766586,-0.766586,-0.766586,-0.766586,-0.766586,-0.766586 +-0.763461,-0.763461,-0.763461,-0.763461,-0.763461,-0.763461 +-0.760336,-0.760336,-0.760336,-0.760336,-0.760336,-0.760336 +-0.757211,-0.757211,-0.757211,-0.757211,-0.757211,-0.757211 +-0.754086,-0.754086,-0.754086,-0.754086,-0.754086,-0.754086 +-0.750961,-0.750961,-0.750961,-0.750961,-0.750961,-0.750961 +-0.747836,-0.747836,-0.747836,-0.747836,-0.747836,-0.747836 +-0.744711,-0.744711,-0.744711,-0.744711,-0.744711,-0.744711 +-0.741586,-0.741586,-0.741586,-0.741586,-0.741586,-0.741586 +-0.738461,-0.738461,-0.738461,-0.738461,-0.738461,-0.738461 +-0.735336,-0.735336,-0.735336,-0.735336,-0.735336,-0.735336 +-0.732211,-0.732211,-0.732211,-0.732211,-0.732211,-0.732211 +-0.729086,-0.729086,-0.729086,-0.729086,-0.729086,-0.729086 +-0.725961,-0.725961,-0.725961,-0.725961,-0.725961,-0.725961 +-0.722836,-0.722836,-0.722836,-0.722836,-0.722836,-0.722836 +-0.719711,-0.719711,-0.719711,-0.719711,-0.719711,-0.719711 +-0.716586,-0.716586,-0.716586,-0.716586,-0.716586,-0.716586 +-0.713461,-0.713461,-0.713461,-0.713461,-0.713461,-0.713461 +-0.710336,-0.710336,-0.710336,-0.710336,-0.710336,-0.710336 +-0.707211,-0.707211,-0.707211,-0.707211,-0.707211,-0.707211 +-0.704086,-0.704086,-0.704086,-0.704086,-0.704086,-0.704086 +-0.700961,-0.700961,-0.700961,-0.700961,-0.700961,-0.700961 +-0.697836,-0.697836,-0.697836,-0.697836,-0.697836,-0.697836 +-0.694711,-0.694711,-0.694711,-0.694711,-0.694711,-0.694711 +-0.691586,-0.691586,-0.691586,-0.691586,-0.691586,-0.691586 +-0.688461,-0.688461,-0.688461,-0.688461,-0.688461,-0.688461 +-0.685336,-0.685336,-0.685336,-0.685336,-0.685336,-0.685336 +-0.682211,-0.682211,-0.682211,-0.682211,-0.682211,-0.682211 +-0.679086,-0.679086,-0.679086,-0.679086,-0.679086,-0.679086 +-0.675961,-0.675961,-0.675961,-0.675961,-0.675961,-0.675961 +-0.672836,-0.672836,-0.672836,-0.672836,-0.672836,-0.672836 +-0.669711,-0.669711,-0.669711,-0.669711,-0.669711,-0.669711 +-0.666586,-0.666586,-0.666586,-0.666586,-0.666586,-0.666586 +-0.663461,-0.663461,-0.663461,-0.663461,-0.663461,-0.663461 +-0.660336,-0.660336,-0.660336,-0.660336,-0.660336,-0.660336 +-0.657211,-0.657211,-0.657211,-0.657211,-0.657211,-0.657211 +-0.654086,-0.654086,-0.654086,-0.654086,-0.654086,-0.654086 +-0.650961,-0.650961,-0.650961,-0.650961,-0.650961,-0.650961 +-0.647836,-0.647836,-0.647836,-0.647836,-0.647836,-0.647836 +-0.644711,-0.644711,-0.644711,-0.644711,-0.644711,-0.644711 +-0.641586,-0.641586,-0.641586,-0.641586,-0.641586,-0.641586 +-0.638461,-0.638461,-0.638461,-0.638461,-0.638461,-0.638461 +-0.635336,-0.635336,-0.635336,-0.635336,-0.635336,-0.635336 +-0.632211,-0.632211,-0.632211,-0.632211,-0.632211,-0.632211 +-0.629086,-0.629086,-0.629086,-0.629086,-0.629086,-0.629086 +-0.625961,-0.625961,-0.625961,-0.625961,-0.625961,-0.625961 +-0.622836,-0.622836,-0.622836,-0.622836,-0.622836,-0.622836 +-0.619711,-0.619711,-0.619711,-0.619711,-0.619711,-0.619711 +-0.616586,-0.616586,-0.616586,-0.616586,-0.616586,-0.616586 +-0.613461,-0.613461,-0.613461,-0.613461,-0.613461,-0.613461 +-0.610336,-0.610336,-0.610336,-0.610336,-0.610336,-0.610336 +-0.607211,-0.607211,-0.607211,-0.607211,-0.607211,-0.607211 +-0.604086,-0.604086,-0.604086,-0.604086,-0.604086,-0.604086 +-0.600961,-0.600961,-0.600961,-0.600961,-0.600961,-0.600961 +-0.597836,-0.597836,-0.597836,-0.597836,-0.597836,-0.597836 +-0.594711,-0.594711,-0.594711,-0.594711,-0.594711,-0.594711 +-0.591586,-0.591586,-0.591586,-0.591586,-0.591586,-0.591586 +-0.588461,-0.588461,-0.588461,-0.588461,-0.588461,-0.588461 +-0.585336,-0.585336,-0.585336,-0.585336,-0.585336,-0.585336 +-0.582211,-0.582211,-0.582211,-0.582211,-0.582211,-0.582211 +-0.579086,-0.579086,-0.579086,-0.579086,-0.579086,-0.579086 +-0.575961,-0.575961,-0.575961,-0.575961,-0.575961,-0.575961 +-0.572836,-0.572836,-0.572836,-0.572836,-0.572836,-0.572836 +-0.569711,-0.569711,-0.569711,-0.569711,-0.569711,-0.569711 +-0.566586,-0.566586,-0.566586,-0.566586,-0.566586,-0.566586 +-0.563461,-0.563461,-0.563461,-0.563461,-0.563461,-0.563461 +-0.560336,-0.560336,-0.560336,-0.560336,-0.560336,-0.560336 +-0.557211,-0.557211,-0.557211,-0.557211,-0.557211,-0.557211 +-0.554086,-0.554086,-0.554086,-0.554086,-0.554086,-0.554086 +-0.550961,-0.550961,-0.550961,-0.550961,-0.550961,-0.550961 +-0.547836,-0.547836,-0.547836,-0.547836,-0.547836,-0.547836 +-0.544711,-0.544711,-0.544711,-0.544711,-0.544711,-0.544711 +-0.541586,-0.541586,-0.541586,-0.541586,-0.541586,-0.541586 +-0.538461,-0.538461,-0.538461,-0.538461,-0.538461,-0.538461 +-0.535336,-0.535336,-0.535336,-0.535336,-0.535336,-0.535336 +-0.532211,-0.532211,-0.532211,-0.532211,-0.532211,-0.532211 +-0.529086,-0.529086,-0.529086,-0.529086,-0.529086,-0.529086 +-0.525961,-0.525961,-0.525961,-0.525961,-0.525961,-0.525961 +-0.522836,-0.522836,-0.522836,-0.522836,-0.522836,-0.522836 +-0.519711,-0.519711,-0.519711,-0.519711,-0.519711,-0.519711 +-0.516586,-0.516586,-0.516586,-0.516586,-0.516586,-0.516586 +-0.513461,-0.513461,-0.513461,-0.513461,-0.513461,-0.513461 +-0.510336,-0.510336,-0.510336,-0.510336,-0.510336,-0.510336 +-0.507211,-0.507211,-0.507211,-0.507211,-0.507211,-0.507211 +-0.504086,-0.504086,-0.504086,-0.504086,-0.504086,-0.504086 +-0.500961,-0.500961,-0.500961,-0.500961,-0.500961,-0.500961 +-0.497836,-0.497836,-0.497836,-0.497836,-0.497836,-0.497836 +-0.494711,-0.494711,-0.494711,-0.494711,-0.494711,-0.494711 +-0.491586,-0.491586,-0.491586,-0.491586,-0.491586,-0.491586 +-0.488461,-0.488461,-0.488461,-0.488461,-0.488461,-0.488461 +-0.485336,-0.485336,-0.485336,-0.485336,-0.485336,-0.485336 +-0.482211,-0.482211,-0.482211,-0.482211,-0.482211,-0.482211 +-0.479086,-0.479086,-0.479086,-0.479086,-0.479086,-0.479086 +-0.475961,-0.475961,-0.475961,-0.475961,-0.475961,-0.475961 +-0.472836,-0.472836,-0.472836,-0.472836,-0.472836,-0.472836 +-0.469711,-0.469711,-0.469711,-0.469711,-0.469711,-0.469711 +-0.466586,-0.466586,-0.466586,-0.466586,-0.466586,-0.466586 +-0.463461,-0.463461,-0.463461,-0.463461,-0.463461,-0.463461 +-0.460336,-0.460336,-0.460336,-0.460336,-0.460336,-0.460336 +-0.457211,-0.457211,-0.457211,-0.457211,-0.457211,-0.457211 +-0.454086,-0.454086,-0.454086,-0.454086,-0.454086,-0.454086 +-0.450961,-0.450961,-0.450961,-0.450961,-0.450961,-0.450961 +-0.447836,-0.447836,-0.447836,-0.447836,-0.447836,-0.447836 +-0.444711,-0.444711,-0.444711,-0.444711,-0.444711,-0.444711 +-0.441586,-0.441586,-0.441586,-0.441586,-0.441586,-0.441586 +-0.438461,-0.438461,-0.438461,-0.438461,-0.438461,-0.438461 +-0.435336,-0.435336,-0.435336,-0.435336,-0.435336,-0.435336 +-0.432211,-0.432211,-0.432211,-0.432211,-0.432211,-0.432211 +-0.429086,-0.429086,-0.429086,-0.429086,-0.429086,-0.429086 +-0.425961,-0.425961,-0.425961,-0.425961,-0.425961,-0.425961 +-0.422836,-0.422836,-0.422836,-0.422836,-0.422836,-0.422836 +-0.419711,-0.419711,-0.419711,-0.419711,-0.419711,-0.419711 +-0.416586,-0.416586,-0.416586,-0.416586,-0.416586,-0.416586 +-0.413461,-0.413461,-0.413461,-0.413461,-0.413461,-0.413461 +-0.410336,-0.410336,-0.410336,-0.410336,-0.410336,-0.410336 +-0.407211,-0.407211,-0.407211,-0.407211,-0.407211,-0.407211 +-0.404086,-0.404086,-0.404086,-0.404086,-0.404086,-0.404086 +-0.400961,-0.400961,-0.400961,-0.400961,-0.400961,-0.400961 +-0.397836,-0.397836,-0.397836,-0.397836,-0.397836,-0.397836 +-0.394711,-0.394711,-0.394711,-0.394711,-0.394711,-0.394711 +-0.391586,-0.391586,-0.391586,-0.391586,-0.391586,-0.391586 +-0.388461,-0.388461,-0.388461,-0.388461,-0.388461,-0.388461 +-0.385336,-0.385336,-0.385336,-0.385336,-0.385336,-0.385336 +-0.382211,-0.382211,-0.382211,-0.382211,-0.382211,-0.382211 +-0.379086,-0.379086,-0.379086,-0.379086,-0.379086,-0.379086 +-0.375961,-0.375961,-0.375961,-0.375961,-0.375961,-0.375961 +-0.372836,-0.372836,-0.372836,-0.372836,-0.372836,-0.372836 +-0.369711,-0.369711,-0.369711,-0.369711,-0.369711,-0.369711 +-0.366586,-0.366586,-0.366586,-0.366586,-0.366586,-0.366586 +-0.363461,-0.363461,-0.363461,-0.363461,-0.363461,-0.363461 +-0.360336,-0.360336,-0.360336,-0.360336,-0.360336,-0.360336 +-0.357211,-0.357211,-0.357211,-0.357211,-0.357211,-0.357211 +-0.354086,-0.354086,-0.354086,-0.354086,-0.354086,-0.354086 +-0.350961,-0.350961,-0.350961,-0.350961,-0.350961,-0.350961 +-0.347836,-0.347836,-0.347836,-0.347836,-0.347836,-0.347836 +-0.344711,-0.344711,-0.344711,-0.344711,-0.344711,-0.344711 +-0.341586,-0.341586,-0.341586,-0.341586,-0.341586,-0.341586 +-0.338461,-0.338461,-0.338461,-0.338461,-0.338461,-0.338461 +-0.335336,-0.335336,-0.335336,-0.335336,-0.335336,-0.335336 +-0.332211,-0.332211,-0.332211,-0.332211,-0.332211,-0.332211 +-0.329086,-0.329086,-0.329086,-0.329086,-0.329086,-0.329086 +-0.325961,-0.325961,-0.325961,-0.325961,-0.325961,-0.325961 +-0.322836,-0.322836,-0.322836,-0.322836,-0.322836,-0.322836 +-0.319711,-0.319711,-0.319711,-0.319711,-0.319711,-0.319711 +-0.316586,-0.316586,-0.316586,-0.316586,-0.316586,-0.316586 +-0.313461,-0.313461,-0.313461,-0.313461,-0.313461,-0.313461 +-0.310336,-0.310336,-0.310336,-0.310336,-0.310336,-0.310336 +-0.307211,-0.307211,-0.307211,-0.307211,-0.307211,-0.307211 +-0.304086,-0.304086,-0.304086,-0.304086,-0.304086,-0.304086 +-0.300961,-0.300961,-0.300961,-0.300961,-0.300961,-0.300961 +-0.297836,-0.297836,-0.297836,-0.297836,-0.297836,-0.297836 +-0.294711,-0.294711,-0.294711,-0.294711,-0.294711,-0.294711 +-0.291586,-0.291586,-0.291586,-0.291586,-0.291586,-0.291586 +-0.288461,-0.288461,-0.288461,-0.288461,-0.288461,-0.288461 +-0.285336,-0.285336,-0.285336,-0.285336,-0.285336,-0.285336 +-0.282211,-0.282211,-0.282211,-0.282211,-0.282211,-0.282211 +-0.279086,-0.279086,-0.279086,-0.279086,-0.279086,-0.279086 +-0.275961,-0.275961,-0.275961,-0.275961,-0.275961,-0.275961 +-0.272836,-0.272836,-0.272836,-0.272836,-0.272836,-0.272836 +-0.269711,-0.269711,-0.269711,-0.269711,-0.269711,-0.269711 +-0.266586,-0.266586,-0.266586,-0.266586,-0.266586,-0.266586 +-0.263461,-0.263461,-0.263461,-0.263461,-0.263461,-0.263461 +-0.260336,-0.260336,-0.260336,-0.260336,-0.260336,-0.260336 +-0.257211,-0.257211,-0.257211,-0.257211,-0.257211,-0.257211 +-0.254086,-0.254086,-0.254086,-0.254086,-0.254086,-0.254086 +-0.250961,-0.250961,-0.250961,-0.250961,-0.250961,-0.250961 +-0.247836,-0.247836,-0.247836,-0.247836,-0.247836,-0.247836 +-0.244711,-0.244711,-0.244711,-0.244711,-0.244711,-0.244711 +-0.241586,-0.241586,-0.241586,-0.241586,-0.241586,-0.241586 +-0.238461,-0.238461,-0.238461,-0.238461,-0.238461,-0.238461 +-0.235336,-0.235336,-0.235336,-0.235336,-0.235336,-0.235336 +-0.232211,-0.232211,-0.232211,-0.232211,-0.232211,-0.232211 +-0.229086,-0.229086,-0.229086,-0.229086,-0.229086,-0.229086 +-0.225961,-0.225961,-0.225961,-0.225961,-0.225961,-0.225961 +-0.222836,-0.222836,-0.222836,-0.222836,-0.222836,-0.222836 +-0.219711,-0.219711,-0.219711,-0.219711,-0.219711,-0.219711 +-0.216586,-0.216586,-0.216586,-0.216586,-0.216586,-0.216586 +-0.213461,-0.213461,-0.213461,-0.213461,-0.213461,-0.213461 +-0.210336,-0.210336,-0.210336,-0.210336,-0.210336,-0.210336 +-0.207211,-0.207211,-0.207211,-0.207211,-0.207211,-0.207211 +-0.204086,-0.204086,-0.204086,-0.204086,-0.204086,-0.204086 +-0.200961,-0.200961,-0.200961,-0.200961,-0.200961,-0.200961 +-0.197836,-0.197836,-0.197836,-0.197836,-0.197836,-0.197836 +-0.194711,-0.194711,-0.194711,-0.194711,-0.194711,-0.194711 +-0.191586,-0.191586,-0.191586,-0.191586,-0.191586,-0.191586 +-0.188461,-0.188461,-0.188461,-0.188461,-0.188461,-0.188461 +-0.185336,-0.185336,-0.185336,-0.185336,-0.185336,-0.185336 +-0.182211,-0.182211,-0.182211,-0.182211,-0.182211,-0.182211 +-0.179086,-0.179086,-0.179086,-0.179086,-0.179086,-0.179086 +-0.175961,-0.175961,-0.175961,-0.175961,-0.175961,-0.175961 +-0.172836,-0.172836,-0.172836,-0.172836,-0.172836,-0.172836 +-0.169711,-0.169711,-0.169711,-0.169711,-0.169711,-0.169711 +-0.166586,-0.166586,-0.166586,-0.166586,-0.166586,-0.166586 +-0.163461,-0.163461,-0.163461,-0.163461,-0.163461,-0.163461 +-0.160336,-0.160336,-0.160336,-0.160336,-0.160336,-0.160336 +-0.157211,-0.157211,-0.157211,-0.157211,-0.157211,-0.157211 +-0.154086,-0.154086,-0.154086,-0.154086,-0.154086,-0.154086 +-0.150961,-0.150961,-0.150961,-0.150961,-0.150961,-0.150961 +-0.147836,-0.147836,-0.147836,-0.147836,-0.147836,-0.147836 +-0.144711,-0.144711,-0.144711,-0.144711,-0.144711,-0.144711 +-0.141586,-0.141586,-0.141586,-0.141586,-0.141586,-0.141586 +-0.138461,-0.138461,-0.138461,-0.138461,-0.138461,-0.138461 +-0.135336,-0.135336,-0.135336,-0.135336,-0.135336,-0.135336 +-0.132211,-0.132211,-0.132211,-0.132211,-0.132211,-0.132211 +-0.129086,-0.129086,-0.129086,-0.129086,-0.129086,-0.129086 +-0.125961,-0.125961,-0.125961,-0.125961,-0.125961,-0.125961 +-0.122836,-0.122836,-0.122836,-0.122836,-0.122836,-0.122836 +-0.119711,-0.119711,-0.119711,-0.119711,-0.119711,-0.119711 +-0.116586,-0.116586,-0.116586,-0.116586,-0.116586,-0.116586 +-0.113461,-0.113461,-0.113461,-0.113461,-0.113461,-0.113461 +-0.110336,-0.110336,-0.110336,-0.110336,-0.110336,-0.110336 +-0.107211,-0.107211,-0.107211,-0.107211,-0.107211,-0.107211 +-0.104086,-0.104086,-0.104086,-0.104086,-0.104086,-0.104086 +-0.100961,-0.100961,-0.100961,-0.100961,-0.100961,-0.100961 +-0.097836,-0.097836,-0.097836,-0.097836,-0.097836,-0.097836 +-0.094711,-0.094711,-0.094711,-0.094711,-0.094711,-0.094711 +-0.091586,-0.091586,-0.091586,-0.091586,-0.091586,-0.091586 +-0.088461,-0.088461,-0.088461,-0.088461,-0.088461,-0.088461 +-0.085336,-0.085336,-0.085336,-0.085336,-0.085336,-0.085336 +-0.082211,-0.082211,-0.082211,-0.082211,-0.082211,-0.082211 +-0.079086,-0.079086,-0.079086,-0.079086,-0.079086,-0.079086 +-0.075961,-0.075961,-0.075961,-0.075961,-0.075961,-0.075961 +-0.072836,-0.072836,-0.072836,-0.072836,-0.072836,-0.072836 +-0.069711,-0.069711,-0.069711,-0.069711,-0.069711,-0.069711 +-0.066586,-0.066586,-0.066586,-0.066586,-0.066586,-0.066586 +-0.063461,-0.063461,-0.063461,-0.063461,-0.063461,-0.063461 +-0.060336,-0.060336,-0.060336,-0.060336,-0.060336,-0.060336 +-0.057211,-0.057211,-0.057211,-0.057211,-0.057211,-0.057211 +-0.054086,-0.054086,-0.054086,-0.054086,-0.054086,-0.054086 +-0.050961,-0.050961,-0.050961,-0.050961,-0.050961,-0.050961 +-0.047836,-0.047836,-0.047836,-0.047836,-0.047836,-0.047836 +-0.044718,-0.044718,-0.044718,-0.044718,-0.044718,-0.044718 +-0.041618,-0.041618,-0.041618,-0.041618,-0.041618,-0.041618 +-0.03855,-0.03855,-0.03855,-0.03855,-0.03855,-0.03855 +-0.035526,-0.035526,-0.035526,-0.035526,-0.035526,-0.035526 +-0.032558,-0.032558,-0.032558,-0.032558,-0.032558,-0.032558 +-0.029659,-0.029659,-0.029659,-0.029659,-0.029659,-0.029659 +-0.026841,-0.026841,-0.026841,-0.026841,-0.026841,-0.026841 +-0.024117,-0.024117,-0.024117,-0.024117,-0.024117,-0.024117 +-0.021499,-0.021499,-0.021499,-0.021499,-0.021499,-0.021499 +-0.019,-0.019,-0.019,-0.019,-0.019,-0.019 +-0.016632,-0.016632,-0.016632,-0.016632,-0.016632,-0.016632 +-0.014409,-0.014409,-0.014409,-0.014409,-0.014409,-0.014409 +-0.012341,-0.012341,-0.012341,-0.012341,-0.012341,-0.012341 +-0.010442,-0.010442,-0.010442,-0.010442,-0.010442,-0.010442 +-0.008725,-0.008725,-0.008725,-0.008725,-0.008725,-0.008725 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.005863,-0.005863,-0.005863,-0.005863,-0.005863,-0.005863 +-0.004704,-0.004704,-0.004704,-0.004704,-0.004704,-0.004704 +-0.003708,-0.003708,-0.003708,-0.003708,-0.003708,-0.003708 +-0.002864,-0.002864,-0.002864,-0.002864,-0.002864,-0.002864 +-0.002158,-0.002158,-0.002158,-0.002158,-0.002158,-0.002158 +-0.00158,-0.00158,-0.00158,-0.00158,-0.00158,-0.00158 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.000752,-0.000752,-0.000752,-0.000752,-0.000752,-0.000752 +-0.000477,-0.000477,-0.000477,-0.000477,-0.000477,-0.000477 +-0.000279,-0.000279,-0.000279,-0.000279,-0.000279,-0.000279 +-0.000146,-0.000146,-0.000146,-0.000146,-0.000146,-0.000146 +-0.000063,-0.000063,-0.000063,-0.000063,-0.000063,-0.000063 +-0.00002,-0.00002,-0.00002,-0.00002,-0.00002,-0.00002 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/8.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/8.csv new file mode 100644 index 00000000..52ad87ac --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/8.csv @@ -0,0 +1,3936 @@ +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000088,-0.000088,-0.000088,-0.000088,-0.000088,-0.000088 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000406,-0.000406,-0.000406,-0.000406,-0.000406,-0.000406 +-0.000702,-0.000702,-0.000702,-0.000702,-0.000702,-0.000702 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.001664,-0.001664,-0.001664,-0.001664,-0.001664,-0.001664 +-0.002369,-0.002369,-0.002369,-0.002369,-0.002369,-0.002369 +-0.00325,-0.00325,-0.00325,-0.00325,-0.00325,-0.00325 +-0.004326,-0.004326,-0.004326,-0.004326,-0.004326,-0.004326 +-0.005616,-0.005616,-0.005616,-0.005616,-0.005616,-0.005616 +-0.00714,-0.00714,-0.00714,-0.00714,-0.00714,-0.00714 +-0.008918,-0.008918,-0.008918,-0.008918,-0.008918,-0.008918 +-0.010969,-0.010969,-0.010969,-0.010969,-0.010969,-0.010969 +-0.013312,-0.013312,-0.013312,-0.013312,-0.013312,-0.013312 +-0.015967,-0.015967,-0.015967,-0.015967,-0.015967,-0.015967 +-0.018954,-0.018954,-0.018954,-0.018954,-0.018954,-0.018954 +-0.022292,-0.022292,-0.022292,-0.022292,-0.022292,-0.022292 +-0.026,-0.026,-0.026,-0.026,-0.026,-0.026 +-0.030086,-0.030086,-0.030086,-0.030086,-0.030086,-0.030086 +-0.034532,-0.034532,-0.034532,-0.034532,-0.034532,-0.034532 +-0.039319,-0.039319,-0.039319,-0.039319,-0.039319,-0.039319 +-0.044428,-0.044428,-0.044428,-0.044428,-0.044428,-0.044428 +-0.04984,-0.04984,-0.04984,-0.04984,-0.04984,-0.04984 +-0.055534,-0.055534,-0.055534,-0.055534,-0.055534,-0.055534 +-0.061491,-0.061491,-0.061491,-0.061491,-0.061491,-0.061491 +-0.067692,-0.067692,-0.067692,-0.067692,-0.067692,-0.067692 +-0.074117,-0.074117,-0.074117,-0.074117,-0.074117,-0.074117 +-0.080747,-0.080747,-0.080747,-0.080747,-0.080747,-0.080747 +-0.087562,-0.087562,-0.087562,-0.087562,-0.087562,-0.087562 +-0.094543,-0.094543,-0.094543,-0.094543,-0.094543,-0.094543 +-0.10167,-0.10167,-0.10167,-0.10167,-0.10167,-0.10167 +-0.108923,-0.108923,-0.108923,-0.108923,-0.108923,-0.108923 +-0.116284,-0.116284,-0.116284,-0.116284,-0.116284,-0.116284 +-0.123732,-0.123732,-0.123732,-0.123732,-0.123732,-0.123732 +-0.131249,-0.131249,-0.131249,-0.131249,-0.131249,-0.131249 +-0.138814,-0.138814,-0.138814,-0.138814,-0.138814,-0.138814 +-0.146409,-0.146409,-0.146409,-0.146409,-0.146409,-0.146409 +-0.154013,-0.154013,-0.154013,-0.154013,-0.154013,-0.154013 +-0.161618,-0.161618,-0.161618,-0.161618,-0.161618,-0.161618 +-0.169223,-0.169223,-0.169223,-0.169223,-0.169223,-0.169223 +-0.176828,-0.176828,-0.176828,-0.176828,-0.176828,-0.176828 +-0.184433,-0.184433,-0.184433,-0.184433,-0.184433,-0.184433 +-0.192038,-0.192038,-0.192038,-0.192038,-0.192038,-0.192038 +-0.199643,-0.199643,-0.199643,-0.199643,-0.199643,-0.199643 +-0.207248,-0.207248,-0.207248,-0.207248,-0.207248,-0.207248 +-0.214853,-0.214853,-0.214853,-0.214853,-0.214853,-0.214853 +-0.222458,-0.222458,-0.222458,-0.222458,-0.222458,-0.222458 +-0.230063,-0.230063,-0.230063,-0.230063,-0.230063,-0.230063 +-0.237668,-0.237668,-0.237668,-0.237668,-0.237668,-0.237668 +-0.245273,-0.245273,-0.245273,-0.245273,-0.245273,-0.245273 +-0.252878,-0.252878,-0.252878,-0.252878,-0.252878,-0.252878 +-0.260483,-0.260483,-0.260483,-0.260483,-0.260483,-0.260483 +-0.268088,-0.268088,-0.268088,-0.268088,-0.268088,-0.268088 +-0.275693,-0.275693,-0.275693,-0.275693,-0.275693,-0.275693 +-0.283298,-0.283298,-0.283298,-0.283298,-0.283298,-0.283298 +-0.290903,-0.290903,-0.290903,-0.290903,-0.290903,-0.290903 +-0.298508,-0.298508,-0.298508,-0.298508,-0.298508,-0.298508 +-0.306113,-0.306113,-0.306113,-0.306113,-0.306113,-0.306113 +-0.313718,-0.313718,-0.313718,-0.313718,-0.313718,-0.313718 +-0.321323,-0.321323,-0.321323,-0.321323,-0.321323,-0.321323 +-0.328928,-0.328928,-0.328928,-0.328928,-0.328928,-0.328928 +-0.336533,-0.336533,-0.336533,-0.336533,-0.336533,-0.336533 +-0.344138,-0.344138,-0.344138,-0.344138,-0.344138,-0.344138 +-0.351743,-0.351743,-0.351743,-0.351743,-0.351743,-0.351743 +-0.359348,-0.359348,-0.359348,-0.359348,-0.359348,-0.359348 +-0.366953,-0.366953,-0.366953,-0.366953,-0.366953,-0.366953 +-0.374558,-0.374558,-0.374558,-0.374558,-0.374558,-0.374558 +-0.382163,-0.382163,-0.382163,-0.382163,-0.382163,-0.382163 +-0.389768,-0.389768,-0.389768,-0.389768,-0.389768,-0.389768 +-0.397373,-0.397373,-0.397373,-0.397373,-0.397373,-0.397373 +-0.404978,-0.404978,-0.404978,-0.404978,-0.404978,-0.404978 +-0.412583,-0.412583,-0.412583,-0.412583,-0.412583,-0.412583 +-0.420188,-0.420188,-0.420188,-0.420188,-0.420188,-0.420188 +-0.427793,-0.427793,-0.427793,-0.427793,-0.427793,-0.427793 +-0.435398,-0.435398,-0.435398,-0.435398,-0.435398,-0.435398 +-0.443003,-0.443003,-0.443003,-0.443003,-0.443003,-0.443003 +-0.450608,-0.450608,-0.450608,-0.450608,-0.450608,-0.450608 +-0.458213,-0.458213,-0.458213,-0.458213,-0.458213,-0.458213 +-0.465818,-0.465818,-0.465818,-0.465818,-0.465818,-0.465818 +-0.473423,-0.473423,-0.473423,-0.473423,-0.473423,-0.473423 +-0.481028,-0.481028,-0.481028,-0.481028,-0.481028,-0.481028 +-0.488633,-0.488633,-0.488633,-0.488633,-0.488633,-0.488633 +-0.496238,-0.496238,-0.496238,-0.496238,-0.496238,-0.496238 +-0.503843,-0.503843,-0.503843,-0.503843,-0.503843,-0.503843 +-0.511448,-0.511448,-0.511448,-0.511448,-0.511448,-0.511448 +-0.519053,-0.519053,-0.519053,-0.519053,-0.519053,-0.519053 +-0.526658,-0.526658,-0.526658,-0.526658,-0.526658,-0.526658 +-0.534263,-0.534263,-0.534263,-0.534263,-0.534263,-0.534263 +-0.541868,-0.541868,-0.541868,-0.541868,-0.541868,-0.541868 +-0.549473,-0.549473,-0.549473,-0.549473,-0.549473,-0.549473 +-0.557078,-0.557078,-0.557078,-0.557078,-0.557078,-0.557078 +-0.564683,-0.564683,-0.564683,-0.564683,-0.564683,-0.564683 +-0.572288,-0.572288,-0.572288,-0.572288,-0.572288,-0.572288 +-0.579893,-0.579893,-0.579893,-0.579893,-0.579893,-0.579893 +-0.587498,-0.587498,-0.587498,-0.587498,-0.587498,-0.587498 +-0.595103,-0.595103,-0.595103,-0.595103,-0.595103,-0.595103 +-0.602708,-0.602708,-0.602708,-0.602708,-0.602708,-0.602708 +-0.610313,-0.610313,-0.610313,-0.610313,-0.610313,-0.610313 +-0.617918,-0.617918,-0.617918,-0.617918,-0.617918,-0.617918 +-0.625523,-0.625523,-0.625523,-0.625523,-0.625523,-0.625523 +-0.633128,-0.633128,-0.633128,-0.633128,-0.633128,-0.633128 +-0.640733,-0.640733,-0.640733,-0.640733,-0.640733,-0.640733 +-0.648338,-0.648338,-0.648338,-0.648338,-0.648338,-0.648338 +-0.655943,-0.655943,-0.655943,-0.655943,-0.655943,-0.655943 +-0.663548,-0.663548,-0.663548,-0.663548,-0.663548,-0.663548 +-0.671153,-0.671153,-0.671153,-0.671153,-0.671153,-0.671153 +-0.678758,-0.678758,-0.678758,-0.678758,-0.678758,-0.678758 +-0.686363,-0.686363,-0.686363,-0.686363,-0.686363,-0.686363 +-0.693968,-0.693968,-0.693968,-0.693968,-0.693968,-0.693968 +-0.701573,-0.701573,-0.701573,-0.701573,-0.701573,-0.701573 +-0.709178,-0.709178,-0.709178,-0.709178,-0.709178,-0.709178 +-0.716783,-0.716783,-0.716783,-0.716783,-0.716783,-0.716783 +-0.724388,-0.724388,-0.724388,-0.724388,-0.724388,-0.724388 +-0.731993,-0.731993,-0.731993,-0.731993,-0.731993,-0.731993 +-0.739598,-0.739598,-0.739598,-0.739598,-0.739598,-0.739598 +-0.747203,-0.747203,-0.747203,-0.747203,-0.747203,-0.747203 +-0.754808,-0.754808,-0.754808,-0.754808,-0.754808,-0.754808 +-0.762413,-0.762413,-0.762413,-0.762413,-0.762413,-0.762413 +-0.770018,-0.770018,-0.770018,-0.770018,-0.770018,-0.770018 +-0.777623,-0.777623,-0.777623,-0.777623,-0.777623,-0.777623 +-0.785228,-0.785228,-0.785228,-0.785228,-0.785228,-0.785228 +-0.792833,-0.792833,-0.792833,-0.792833,-0.792833,-0.792833 +-0.800438,-0.800438,-0.800438,-0.800438,-0.800438,-0.800438 +-0.808043,-0.808043,-0.808043,-0.808043,-0.808043,-0.808043 +-0.815648,-0.815648,-0.815648,-0.815648,-0.815648,-0.815648 +-0.823253,-0.823253,-0.823253,-0.823253,-0.823253,-0.823253 +-0.830858,-0.830858,-0.830858,-0.830858,-0.830858,-0.830858 +-0.838463,-0.838463,-0.838463,-0.838463,-0.838463,-0.838463 +-0.846068,-0.846068,-0.846068,-0.846068,-0.846068,-0.846068 +-0.853673,-0.853673,-0.853673,-0.853673,-0.853673,-0.853673 +-0.861278,-0.861278,-0.861278,-0.861278,-0.861278,-0.861278 +-0.868883,-0.868883,-0.868883,-0.868883,-0.868883,-0.868883 +-0.876488,-0.876488,-0.876488,-0.876488,-0.876488,-0.876488 +-0.884093,-0.884093,-0.884093,-0.884093,-0.884093,-0.884093 +-0.891698,-0.891698,-0.891698,-0.891698,-0.891698,-0.891698 +-0.899303,-0.899303,-0.899303,-0.899303,-0.899303,-0.899303 +-0.906908,-0.906908,-0.906908,-0.906908,-0.906908,-0.906908 +-0.914513,-0.914513,-0.914513,-0.914513,-0.914513,-0.914513 +-0.922118,-0.922118,-0.922118,-0.922118,-0.922118,-0.922118 +-0.929723,-0.929723,-0.929723,-0.929723,-0.929723,-0.929723 +-0.937328,-0.937328,-0.937328,-0.937328,-0.937328,-0.937328 +-0.944933,-0.944933,-0.944933,-0.944933,-0.944933,-0.944933 +-0.952538,-0.952538,-0.952538,-0.952538,-0.952538,-0.952538 +-0.960143,-0.960143,-0.960143,-0.960143,-0.960143,-0.960143 +-0.967748,-0.967748,-0.967748,-0.967748,-0.967748,-0.967748 +-0.975353,-0.975353,-0.975353,-0.975353,-0.975353,-0.975353 +-0.982958,-0.982958,-0.982958,-0.982958,-0.982958,-0.982958 +-0.990563,-0.990563,-0.990563,-0.990563,-0.990563,-0.990563 +-0.998168,-0.998168,-0.998168,-0.998168,-0.998168,-0.998168 +-1.005773,-1.005773,-1.005773,-1.005773,-1.005773,-1.005773 +-1.013378,-1.013378,-1.013378,-1.013378,-1.013378,-1.013378 +-1.020983,-1.020983,-1.020983,-1.020983,-1.020983,-1.020983 +-1.028588,-1.028588,-1.028588,-1.028588,-1.028588,-1.028588 +-1.036193,-1.036193,-1.036193,-1.036193,-1.036193,-1.036193 +-1.043798,-1.043798,-1.043798,-1.043798,-1.043798,-1.043798 +-1.051403,-1.051403,-1.051403,-1.051403,-1.051403,-1.051403 +-1.059008,-1.059008,-1.059008,-1.059008,-1.059008,-1.059008 +-1.066613,-1.066613,-1.066613,-1.066613,-1.066613,-1.066613 +-1.074218,-1.074218,-1.074218,-1.074218,-1.074218,-1.074218 +-1.081823,-1.081823,-1.081823,-1.081823,-1.081823,-1.081823 +-1.089428,-1.089428,-1.089428,-1.089428,-1.089428,-1.089428 +-1.097033,-1.097033,-1.097033,-1.097033,-1.097033,-1.097033 +-1.104638,-1.104638,-1.104638,-1.104638,-1.104638,-1.104638 +-1.112243,-1.112243,-1.112243,-1.112243,-1.112243,-1.112243 +-1.119848,-1.119848,-1.119848,-1.119848,-1.119848,-1.119848 +-1.127453,-1.127453,-1.127453,-1.127453,-1.127453,-1.127453 +-1.135058,-1.135058,-1.135058,-1.135058,-1.135058,-1.135058 +-1.142663,-1.142663,-1.142663,-1.142663,-1.142663,-1.142663 +-1.150268,-1.150268,-1.150268,-1.150268,-1.150268,-1.150268 +-1.157873,-1.157873,-1.157873,-1.157873,-1.157873,-1.157873 +-1.165478,-1.165478,-1.165478,-1.165478,-1.165478,-1.165478 +-1.173083,-1.173083,-1.173083,-1.173083,-1.173083,-1.173083 +-1.180688,-1.180688,-1.180688,-1.180688,-1.180688,-1.180688 +-1.188293,-1.188293,-1.188293,-1.188293,-1.188293,-1.188293 +-1.195898,-1.195898,-1.195898,-1.195898,-1.195898,-1.195898 +-1.203503,-1.203503,-1.203503,-1.203503,-1.203503,-1.203503 +-1.211108,-1.211108,-1.211108,-1.211108,-1.211108,-1.211108 +-1.218713,-1.218713,-1.218713,-1.218713,-1.218713,-1.218713 +-1.226318,-1.226318,-1.226318,-1.226318,-1.226318,-1.226318 +-1.233923,-1.233923,-1.233923,-1.233923,-1.233923,-1.233923 +-1.241528,-1.241528,-1.241528,-1.241528,-1.241528,-1.241528 +-1.249133,-1.249133,-1.249133,-1.249133,-1.249133,-1.249133 +-1.256738,-1.256738,-1.256738,-1.256738,-1.256738,-1.256738 +-1.264343,-1.264343,-1.264343,-1.264343,-1.264343,-1.264343 +-1.271948,-1.271948,-1.271948,-1.271948,-1.271948,-1.271948 +-1.279553,-1.279553,-1.279553,-1.279553,-1.279553,-1.279553 +-1.287158,-1.287158,-1.287158,-1.287158,-1.287158,-1.287158 +-1.294763,-1.294763,-1.294763,-1.294763,-1.294763,-1.294763 +-1.302368,-1.302368,-1.302368,-1.302368,-1.302368,-1.302368 +-1.309973,-1.309973,-1.309973,-1.309973,-1.309973,-1.309973 +-1.317578,-1.317578,-1.317578,-1.317578,-1.317578,-1.317578 +-1.325183,-1.325183,-1.325183,-1.325183,-1.325183,-1.325183 +-1.332788,-1.332788,-1.332788,-1.332788,-1.332788,-1.332788 +-1.340393,-1.340393,-1.340393,-1.340393,-1.340393,-1.340393 +-1.347998,-1.347998,-1.347998,-1.347998,-1.347998,-1.347998 +-1.355603,-1.355603,-1.355603,-1.355603,-1.355603,-1.355603 +-1.363208,-1.363208,-1.363208,-1.363208,-1.363208,-1.363208 +-1.370813,-1.370813,-1.370813,-1.370813,-1.370813,-1.370813 +-1.378418,-1.378418,-1.378418,-1.378418,-1.378418,-1.378418 +-1.386023,-1.386023,-1.386023,-1.386023,-1.386023,-1.386023 +-1.393628,-1.393628,-1.393628,-1.393628,-1.393628,-1.393628 +-1.401233,-1.401233,-1.401233,-1.401233,-1.401233,-1.401233 +-1.408838,-1.408838,-1.408838,-1.408838,-1.408838,-1.408838 +-1.416443,-1.416443,-1.416443,-1.416443,-1.416443,-1.416443 +-1.424048,-1.424048,-1.424048,-1.424048,-1.424048,-1.424048 +-1.431653,-1.431653,-1.431653,-1.431653,-1.431653,-1.431653 +-1.439258,-1.439258,-1.439258,-1.439258,-1.439258,-1.439258 +-1.446863,-1.446863,-1.446863,-1.446863,-1.446863,-1.446863 +-1.454468,-1.454468,-1.454468,-1.454468,-1.454468,-1.454468 +-1.462073,-1.462073,-1.462073,-1.462073,-1.462073,-1.462073 +-1.469678,-1.469678,-1.469678,-1.469678,-1.469678,-1.469678 +-1.477283,-1.477283,-1.477283,-1.477283,-1.477283,-1.477283 +-1.484888,-1.484888,-1.484888,-1.484888,-1.484888,-1.484888 +-1.492493,-1.492493,-1.492493,-1.492493,-1.492493,-1.492493 +-1.500098,-1.500098,-1.500098,-1.500098,-1.500098,-1.500098 +-1.507703,-1.507703,-1.507703,-1.507703,-1.507703,-1.507703 +-1.515308,-1.515308,-1.515308,-1.515308,-1.515308,-1.515308 +-1.522913,-1.522913,-1.522913,-1.522913,-1.522913,-1.522913 +-1.530518,-1.530518,-1.530518,-1.530518,-1.530518,-1.530518 +-1.538123,-1.538123,-1.538123,-1.538123,-1.538123,-1.538123 +-1.545728,-1.545728,-1.545728,-1.545728,-1.545728,-1.545728 +-1.553333,-1.553333,-1.553333,-1.553333,-1.553333,-1.553333 +-1.560938,-1.560938,-1.560938,-1.560938,-1.560938,-1.560938 +-1.568543,-1.568543,-1.568543,-1.568543,-1.568543,-1.568543 +-1.576148,-1.576148,-1.576148,-1.576148,-1.576148,-1.576148 +-1.583753,-1.583753,-1.583753,-1.583753,-1.583753,-1.583753 +-1.591358,-1.591358,-1.591358,-1.591358,-1.591358,-1.591358 +-1.598963,-1.598963,-1.598963,-1.598963,-1.598963,-1.598963 +-1.606557,-1.606557,-1.606557,-1.606557,-1.606557,-1.606557 +-1.614122,-1.614122,-1.614122,-1.614122,-1.614122,-1.614122 +-1.621638,-1.621638,-1.621638,-1.621638,-1.621638,-1.621638 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.636446,-1.636446,-1.636446,-1.636446,-1.636446,-1.636446 +-1.643698,-1.643698,-1.643698,-1.643698,-1.643698,-1.643698 +-1.650824,-1.650824,-1.650824,-1.650824,-1.650824,-1.650824 +-1.657803,-1.657803,-1.657803,-1.657803,-1.657803,-1.657803 +-1.664616,-1.664616,-1.664616,-1.664616,-1.664616,-1.664616 +-1.671244,-1.671244,-1.671244,-1.671244,-1.671244,-1.671244 +-1.677667,-1.677667,-1.677667,-1.677667,-1.677667,-1.677667 +-1.683866,-1.683866,-1.683866,-1.683866,-1.683866,-1.683866 +-1.689821,-1.689821,-1.689821,-1.689821,-1.689821,-1.689821 +-1.695512,-1.695512,-1.695512,-1.695512,-1.695512,-1.695512 +-1.700921,-1.700921,-1.700921,-1.700921,-1.700921,-1.700921 +-1.706027,-1.706027,-1.706027,-1.706027,-1.706027,-1.706027 +-1.710812,-1.710812,-1.710812,-1.710812,-1.710812,-1.710812 +-1.715255,-1.715255,-1.715255,-1.715255,-1.715255,-1.715255 +-1.719337,-1.719337,-1.719337,-1.719337,-1.719337,-1.719337 +-1.723041,-1.723041,-1.723041,-1.723041,-1.723041,-1.723041 +-1.726376,-1.726376,-1.726376,-1.726376,-1.726376,-1.726376 +-1.729359,-1.729359,-1.729359,-1.729359,-1.729359,-1.729359 +-1.732011,-1.732011,-1.732011,-1.732011,-1.732011,-1.732011 +-1.734352,-1.734352,-1.734352,-1.734352,-1.734352,-1.734352 +-1.7364,-1.7364,-1.7364,-1.7364,-1.7364,-1.7364 +-1.738175,-1.738175,-1.738175,-1.738175,-1.738175,-1.738175 +-1.739697,-1.739697,-1.739697,-1.739697,-1.739697,-1.739697 +-1.740985,-1.740985,-1.740985,-1.740985,-1.740985,-1.740985 +-1.742059,-1.742059,-1.742059,-1.742059,-1.742059,-1.742059 +-1.742938,-1.742938,-1.742938,-1.742938,-1.742938,-1.742938 +-1.743642,-1.743642,-1.743642,-1.743642,-1.743642,-1.743642 +-1.74419,-1.74419,-1.74419,-1.74419,-1.74419,-1.74419 +-1.744601,-1.744601,-1.744601,-1.744601,-1.744601,-1.744601 +-1.744896,-1.744896,-1.744896,-1.744896,-1.744896,-1.744896 +-1.745093,-1.745093,-1.745093,-1.745093,-1.745093,-1.745093 +-1.745213,-1.745213,-1.745213,-1.745213,-1.745213,-1.745213 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745212,-1.745212,-1.745212,-1.745212,-1.745212,-1.745212 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.744894,-1.744894,-1.744894,-1.744894,-1.744894,-1.744894 +-1.744598,-1.744598,-1.744598,-1.744598,-1.744598,-1.744598 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.743636,-1.743636,-1.743636,-1.743636,-1.743636,-1.743636 +-1.742931,-1.742931,-1.742931,-1.742931,-1.742931,-1.742931 +-1.74205,-1.74205,-1.74205,-1.74205,-1.74205,-1.74205 +-1.740974,-1.740974,-1.740974,-1.740974,-1.740974,-1.740974 +-1.739684,-1.739684,-1.739684,-1.739684,-1.739684,-1.739684 +-1.73816,-1.73816,-1.73816,-1.73816,-1.73816,-1.73816 +-1.736382,-1.736382,-1.736382,-1.736382,-1.736382,-1.736382 +-1.734331,-1.734331,-1.734331,-1.734331,-1.734331,-1.734331 +-1.731988,-1.731988,-1.731988,-1.731988,-1.731988,-1.731988 +-1.729333,-1.729333,-1.729333,-1.729333,-1.729333,-1.729333 +-1.726346,-1.726346,-1.726346,-1.726346,-1.726346,-1.726346 +-1.723008,-1.723008,-1.723008,-1.723008,-1.723008,-1.723008 +-1.7193,-1.7193,-1.7193,-1.7193,-1.7193,-1.7193 +-1.715214,-1.715214,-1.715214,-1.715214,-1.715214,-1.715214 +-1.710768,-1.710768,-1.710768,-1.710768,-1.710768,-1.710768 +-1.705981,-1.705981,-1.705981,-1.705981,-1.705981,-1.705981 +-1.700872,-1.700872,-1.700872,-1.700872,-1.700872,-1.700872 +-1.69546,-1.69546,-1.69546,-1.69546,-1.69546,-1.69546 +-1.689766,-1.689766,-1.689766,-1.689766,-1.689766,-1.689766 +-1.683809,-1.683809,-1.683809,-1.683809,-1.683809,-1.683809 +-1.677608,-1.677608,-1.677608,-1.677608,-1.677608,-1.677608 +-1.671183,-1.671183,-1.671183,-1.671183,-1.671183,-1.671183 +-1.664553,-1.664553,-1.664553,-1.664553,-1.664553,-1.664553 +-1.657738,-1.657738,-1.657738,-1.657738,-1.657738,-1.657738 +-1.650757,-1.650757,-1.650757,-1.650757,-1.650757,-1.650757 +-1.64363,-1.64363,-1.64363,-1.64363,-1.64363,-1.64363 +-1.636377,-1.636377,-1.636377,-1.636377,-1.636377,-1.636377 +-1.629016,-1.629016,-1.629016,-1.629016,-1.629016,-1.629016 +-1.621568,-1.621568,-1.621568,-1.621568,-1.621568,-1.621568 +-1.614051,-1.614051,-1.614051,-1.614051,-1.614051,-1.614051 +-1.606486,-1.606486,-1.606486,-1.606486,-1.606486,-1.606486 +-1.598891,-1.598891,-1.598891,-1.598891,-1.598891,-1.598891 +-1.591287,-1.591287,-1.591287,-1.591287,-1.591287,-1.591287 +-1.583682,-1.583682,-1.583682,-1.583682,-1.583682,-1.583682 +-1.576077,-1.576077,-1.576077,-1.576077,-1.576077,-1.576077 +-1.568472,-1.568472,-1.568472,-1.568472,-1.568472,-1.568472 +-1.560867,-1.560867,-1.560867,-1.560867,-1.560867,-1.560867 +-1.553262,-1.553262,-1.553262,-1.553262,-1.553262,-1.553262 +-1.545657,-1.545657,-1.545657,-1.545657,-1.545657,-1.545657 +-1.538052,-1.538052,-1.538052,-1.538052,-1.538052,-1.538052 +-1.530447,-1.530447,-1.530447,-1.530447,-1.530447,-1.530447 +-1.522842,-1.522842,-1.522842,-1.522842,-1.522842,-1.522842 +-1.515237,-1.515237,-1.515237,-1.515237,-1.515237,-1.515237 +-1.507632,-1.507632,-1.507632,-1.507632,-1.507632,-1.507632 +-1.500027,-1.500027,-1.500027,-1.500027,-1.500027,-1.500027 +-1.492422,-1.492422,-1.492422,-1.492422,-1.492422,-1.492422 +-1.484817,-1.484817,-1.484817,-1.484817,-1.484817,-1.484817 +-1.477212,-1.477212,-1.477212,-1.477212,-1.477212,-1.477212 +-1.469607,-1.469607,-1.469607,-1.469607,-1.469607,-1.469607 +-1.462002,-1.462002,-1.462002,-1.462002,-1.462002,-1.462002 +-1.454397,-1.454397,-1.454397,-1.454397,-1.454397,-1.454397 +-1.446792,-1.446792,-1.446792,-1.446792,-1.446792,-1.446792 +-1.439187,-1.439187,-1.439187,-1.439187,-1.439187,-1.439187 +-1.431582,-1.431582,-1.431582,-1.431582,-1.431582,-1.431582 +-1.423977,-1.423977,-1.423977,-1.423977,-1.423977,-1.423977 +-1.416372,-1.416372,-1.416372,-1.416372,-1.416372,-1.416372 +-1.408767,-1.408767,-1.408767,-1.408767,-1.408767,-1.408767 +-1.401162,-1.401162,-1.401162,-1.401162,-1.401162,-1.401162 +-1.393557,-1.393557,-1.393557,-1.393557,-1.393557,-1.393557 +-1.385952,-1.385952,-1.385952,-1.385952,-1.385952,-1.385952 +-1.378347,-1.378347,-1.378347,-1.378347,-1.378347,-1.378347 +-1.370742,-1.370742,-1.370742,-1.370742,-1.370742,-1.370742 +-1.363137,-1.363137,-1.363137,-1.363137,-1.363137,-1.363137 +-1.355532,-1.355532,-1.355532,-1.355532,-1.355532,-1.355532 +-1.347927,-1.347927,-1.347927,-1.347927,-1.347927,-1.347927 +-1.340322,-1.340322,-1.340322,-1.340322,-1.340322,-1.340322 +-1.332717,-1.332717,-1.332717,-1.332717,-1.332717,-1.332717 +-1.325112,-1.325112,-1.325112,-1.325112,-1.325112,-1.325112 +-1.317507,-1.317507,-1.317507,-1.317507,-1.317507,-1.317507 +-1.309902,-1.309902,-1.309902,-1.309902,-1.309902,-1.309902 +-1.302297,-1.302297,-1.302297,-1.302297,-1.302297,-1.302297 +-1.294692,-1.294692,-1.294692,-1.294692,-1.294692,-1.294692 +-1.287087,-1.287087,-1.287087,-1.287087,-1.287087,-1.287087 +-1.279482,-1.279482,-1.279482,-1.279482,-1.279482,-1.279482 +-1.271877,-1.271877,-1.271877,-1.271877,-1.271877,-1.271877 +-1.264272,-1.264272,-1.264272,-1.264272,-1.264272,-1.264272 +-1.256667,-1.256667,-1.256667,-1.256667,-1.256667,-1.256667 +-1.249062,-1.249062,-1.249062,-1.249062,-1.249062,-1.249062 +-1.241457,-1.241457,-1.241457,-1.241457,-1.241457,-1.241457 +-1.233852,-1.233852,-1.233852,-1.233852,-1.233852,-1.233852 +-1.226247,-1.226247,-1.226247,-1.226247,-1.226247,-1.226247 +-1.218642,-1.218642,-1.218642,-1.218642,-1.218642,-1.218642 +-1.211037,-1.211037,-1.211037,-1.211037,-1.211037,-1.211037 +-1.203432,-1.203432,-1.203432,-1.203432,-1.203432,-1.203432 +-1.195827,-1.195827,-1.195827,-1.195827,-1.195827,-1.195827 +-1.188222,-1.188222,-1.188222,-1.188222,-1.188222,-1.188222 +-1.180617,-1.180617,-1.180617,-1.180617,-1.180617,-1.180617 +-1.173012,-1.173012,-1.173012,-1.173012,-1.173012,-1.173012 +-1.165407,-1.165407,-1.165407,-1.165407,-1.165407,-1.165407 +-1.157802,-1.157802,-1.157802,-1.157802,-1.157802,-1.157802 +-1.150197,-1.150197,-1.150197,-1.150197,-1.150197,-1.150197 +-1.142592,-1.142592,-1.142592,-1.142592,-1.142592,-1.142592 +-1.134987,-1.134987,-1.134987,-1.134987,-1.134987,-1.134987 +-1.127382,-1.127382,-1.127382,-1.127382,-1.127382,-1.127382 +-1.119777,-1.119777,-1.119777,-1.119777,-1.119777,-1.119777 +-1.112172,-1.112172,-1.112172,-1.112172,-1.112172,-1.112172 +-1.104567,-1.104567,-1.104567,-1.104567,-1.104567,-1.104567 +-1.096962,-1.096962,-1.096962,-1.096962,-1.096962,-1.096962 +-1.089357,-1.089357,-1.089357,-1.089357,-1.089357,-1.089357 +-1.081752,-1.081752,-1.081752,-1.081752,-1.081752,-1.081752 +-1.074147,-1.074147,-1.074147,-1.074147,-1.074147,-1.074147 +-1.066542,-1.066542,-1.066542,-1.066542,-1.066542,-1.066542 +-1.058937,-1.058937,-1.058937,-1.058937,-1.058937,-1.058937 +-1.051332,-1.051332,-1.051332,-1.051332,-1.051332,-1.051332 +-1.043727,-1.043727,-1.043727,-1.043727,-1.043727,-1.043727 +-1.036122,-1.036122,-1.036122,-1.036122,-1.036122,-1.036122 +-1.028517,-1.028517,-1.028517,-1.028517,-1.028517,-1.028517 +-1.020912,-1.020912,-1.020912,-1.020912,-1.020912,-1.020912 +-1.013307,-1.013307,-1.013307,-1.013307,-1.013307,-1.013307 +-1.005702,-1.005702,-1.005702,-1.005702,-1.005702,-1.005702 +-0.998097,-0.998097,-0.998097,-0.998097,-0.998097,-0.998097 +-0.990492,-0.990492,-0.990492,-0.990492,-0.990492,-0.990492 +-0.982887,-0.982887,-0.982887,-0.982887,-0.982887,-0.982887 +-0.975282,-0.975282,-0.975282,-0.975282,-0.975282,-0.975282 +-0.967677,-0.967677,-0.967677,-0.967677,-0.967677,-0.967677 +-0.960072,-0.960072,-0.960072,-0.960072,-0.960072,-0.960072 +-0.952467,-0.952467,-0.952467,-0.952467,-0.952467,-0.952467 +-0.944862,-0.944862,-0.944862,-0.944862,-0.944862,-0.944862 +-0.937257,-0.937257,-0.937257,-0.937257,-0.937257,-0.937257 +-0.929652,-0.929652,-0.929652,-0.929652,-0.929652,-0.929652 +-0.922047,-0.922047,-0.922047,-0.922047,-0.922047,-0.922047 +-0.914442,-0.914442,-0.914442,-0.914442,-0.914442,-0.914442 +-0.906837,-0.906837,-0.906837,-0.906837,-0.906837,-0.906837 +-0.899232,-0.899232,-0.899232,-0.899232,-0.899232,-0.899232 +-0.891627,-0.891627,-0.891627,-0.891627,-0.891627,-0.891627 +-0.884022,-0.884022,-0.884022,-0.884022,-0.884022,-0.884022 +-0.876417,-0.876417,-0.876417,-0.876417,-0.876417,-0.876417 +-0.868812,-0.868812,-0.868812,-0.868812,-0.868812,-0.868812 +-0.861207,-0.861207,-0.861207,-0.861207,-0.861207,-0.861207 +-0.853602,-0.853602,-0.853602,-0.853602,-0.853602,-0.853602 +-0.845997,-0.845997,-0.845997,-0.845997,-0.845997,-0.845997 +-0.838392,-0.838392,-0.838392,-0.838392,-0.838392,-0.838392 +-0.830787,-0.830787,-0.830787,-0.830787,-0.830787,-0.830787 +-0.823182,-0.823182,-0.823182,-0.823182,-0.823182,-0.823182 +-0.815577,-0.815577,-0.815577,-0.815577,-0.815577,-0.815577 +-0.807972,-0.807972,-0.807972,-0.807972,-0.807972,-0.807972 +-0.800367,-0.800367,-0.800367,-0.800367,-0.800367,-0.800367 +-0.792762,-0.792762,-0.792762,-0.792762,-0.792762,-0.792762 +-0.785157,-0.785157,-0.785157,-0.785157,-0.785157,-0.785157 +-0.777552,-0.777552,-0.777552,-0.777552,-0.777552,-0.777552 +-0.769947,-0.769947,-0.769947,-0.769947,-0.769947,-0.769947 +-0.762342,-0.762342,-0.762342,-0.762342,-0.762342,-0.762342 +-0.754737,-0.754737,-0.754737,-0.754737,-0.754737,-0.754737 +-0.747132,-0.747132,-0.747132,-0.747132,-0.747132,-0.747132 +-0.739527,-0.739527,-0.739527,-0.739527,-0.739527,-0.739527 +-0.731922,-0.731922,-0.731922,-0.731922,-0.731922,-0.731922 +-0.724317,-0.724317,-0.724317,-0.724317,-0.724317,-0.724317 +-0.716712,-0.716712,-0.716712,-0.716712,-0.716712,-0.716712 +-0.709107,-0.709107,-0.709107,-0.709107,-0.709107,-0.709107 +-0.701502,-0.701502,-0.701502,-0.701502,-0.701502,-0.701502 +-0.693897,-0.693897,-0.693897,-0.693897,-0.693897,-0.693897 +-0.686292,-0.686292,-0.686292,-0.686292,-0.686292,-0.686292 +-0.678687,-0.678687,-0.678687,-0.678687,-0.678687,-0.678687 +-0.671082,-0.671082,-0.671082,-0.671082,-0.671082,-0.671082 +-0.663477,-0.663477,-0.663477,-0.663477,-0.663477,-0.663477 +-0.655872,-0.655872,-0.655872,-0.655872,-0.655872,-0.655872 +-0.648267,-0.648267,-0.648267,-0.648267,-0.648267,-0.648267 +-0.640662,-0.640662,-0.640662,-0.640662,-0.640662,-0.640662 +-0.633057,-0.633057,-0.633057,-0.633057,-0.633057,-0.633057 +-0.625452,-0.625452,-0.625452,-0.625452,-0.625452,-0.625452 +-0.617847,-0.617847,-0.617847,-0.617847,-0.617847,-0.617847 +-0.610242,-0.610242,-0.610242,-0.610242,-0.610242,-0.610242 +-0.602637,-0.602637,-0.602637,-0.602637,-0.602637,-0.602637 +-0.595032,-0.595032,-0.595032,-0.595032,-0.595032,-0.595032 +-0.587427,-0.587427,-0.587427,-0.587427,-0.587427,-0.587427 +-0.579822,-0.579822,-0.579822,-0.579822,-0.579822,-0.579822 +-0.572217,-0.572217,-0.572217,-0.572217,-0.572217,-0.572217 +-0.564612,-0.564612,-0.564612,-0.564612,-0.564612,-0.564612 +-0.557007,-0.557007,-0.557007,-0.557007,-0.557007,-0.557007 +-0.549402,-0.549402,-0.549402,-0.549402,-0.549402,-0.549402 +-0.541797,-0.541797,-0.541797,-0.541797,-0.541797,-0.541797 +-0.534192,-0.534192,-0.534192,-0.534192,-0.534192,-0.534192 +-0.526587,-0.526587,-0.526587,-0.526587,-0.526587,-0.526587 +-0.518982,-0.518982,-0.518982,-0.518982,-0.518982,-0.518982 +-0.511377,-0.511377,-0.511377,-0.511377,-0.511377,-0.511377 +-0.503772,-0.503772,-0.503772,-0.503772,-0.503772,-0.503772 +-0.496167,-0.496167,-0.496167,-0.496167,-0.496167,-0.496167 +-0.488562,-0.488562,-0.488562,-0.488562,-0.488562,-0.488562 +-0.480957,-0.480957,-0.480957,-0.480957,-0.480957,-0.480957 +-0.473352,-0.473352,-0.473352,-0.473352,-0.473352,-0.473352 +-0.465747,-0.465747,-0.465747,-0.465747,-0.465747,-0.465747 +-0.458142,-0.458142,-0.458142,-0.458142,-0.458142,-0.458142 +-0.450537,-0.450537,-0.450537,-0.450537,-0.450537,-0.450537 +-0.442932,-0.442932,-0.442932,-0.442932,-0.442932,-0.442932 +-0.435327,-0.435327,-0.435327,-0.435327,-0.435327,-0.435327 +-0.427722,-0.427722,-0.427722,-0.427722,-0.427722,-0.427722 +-0.420117,-0.420117,-0.420117,-0.420117,-0.420117,-0.420117 +-0.412512,-0.412512,-0.412512,-0.412512,-0.412512,-0.412512 +-0.404907,-0.404907,-0.404907,-0.404907,-0.404907,-0.404907 +-0.397302,-0.397302,-0.397302,-0.397302,-0.397302,-0.397302 +-0.389697,-0.389697,-0.389697,-0.389697,-0.389697,-0.389697 +-0.382092,-0.382092,-0.382092,-0.382092,-0.382092,-0.382092 +-0.374487,-0.374487,-0.374487,-0.374487,-0.374487,-0.374487 +-0.366882,-0.366882,-0.366882,-0.366882,-0.366882,-0.366882 +-0.359277,-0.359277,-0.359277,-0.359277,-0.359277,-0.359277 +-0.351672,-0.351672,-0.351672,-0.351672,-0.351672,-0.351672 +-0.344067,-0.344067,-0.344067,-0.344067,-0.344067,-0.344067 +-0.336462,-0.336462,-0.336462,-0.336462,-0.336462,-0.336462 +-0.328857,-0.328857,-0.328857,-0.328857,-0.328857,-0.328857 +-0.321252,-0.321252,-0.321252,-0.321252,-0.321252,-0.321252 +-0.313647,-0.313647,-0.313647,-0.313647,-0.313647,-0.313647 +-0.306042,-0.306042,-0.306042,-0.306042,-0.306042,-0.306042 +-0.298437,-0.298437,-0.298437,-0.298437,-0.298437,-0.298437 +-0.290832,-0.290832,-0.290832,-0.290832,-0.290832,-0.290832 +-0.283227,-0.283227,-0.283227,-0.283227,-0.283227,-0.283227 +-0.275622,-0.275622,-0.275622,-0.275622,-0.275622,-0.275622 +-0.268017,-0.268017,-0.268017,-0.268017,-0.268017,-0.268017 +-0.260412,-0.260412,-0.260412,-0.260412,-0.260412,-0.260412 +-0.252807,-0.252807,-0.252807,-0.252807,-0.252807,-0.252807 +-0.245202,-0.245202,-0.245202,-0.245202,-0.245202,-0.245202 +-0.237597,-0.237597,-0.237597,-0.237597,-0.237597,-0.237597 +-0.229992,-0.229992,-0.229992,-0.229992,-0.229992,-0.229992 +-0.222387,-0.222387,-0.222387,-0.222387,-0.222387,-0.222387 +-0.214782,-0.214782,-0.214782,-0.214782,-0.214782,-0.214782 +-0.207177,-0.207177,-0.207177,-0.207177,-0.207177,-0.207177 +-0.199572,-0.199572,-0.199572,-0.199572,-0.199572,-0.199572 +-0.191967,-0.191967,-0.191967,-0.191967,-0.191967,-0.191967 +-0.184362,-0.184362,-0.184362,-0.184362,-0.184362,-0.184362 +-0.176757,-0.176757,-0.176757,-0.176757,-0.176757,-0.176757 +-0.169152,-0.169152,-0.169152,-0.169152,-0.169152,-0.169152 +-0.161547,-0.161547,-0.161547,-0.161547,-0.161547,-0.161547 +-0.153942,-0.153942,-0.153942,-0.153942,-0.153942,-0.153942 +-0.146337,-0.146337,-0.146337,-0.146337,-0.146337,-0.146337 +-0.138743,-0.138743,-0.138743,-0.138743,-0.138743,-0.138743 +-0.131178,-0.131178,-0.131178,-0.131178,-0.131178,-0.131178 +-0.123662,-0.123662,-0.123662,-0.123662,-0.123662,-0.123662 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.108854,-0.108854,-0.108854,-0.108854,-0.108854,-0.108854 +-0.101602,-0.101602,-0.101602,-0.101602,-0.101602,-0.101602 +-0.094476,-0.094476,-0.094476,-0.094476,-0.094476,-0.094476 +-0.087497,-0.087497,-0.087497,-0.087497,-0.087497,-0.087497 +-0.080684,-0.080684,-0.080684,-0.080684,-0.080684,-0.080684 +-0.074056,-0.074056,-0.074056,-0.074056,-0.074056,-0.074056 +-0.067633,-0.067633,-0.067633,-0.067633,-0.067633,-0.067633 +-0.061434,-0.061434,-0.061434,-0.061434,-0.061434,-0.061434 +-0.055479,-0.055479,-0.055479,-0.055479,-0.055479,-0.055479 +-0.049788,-0.049788,-0.049788,-0.049788,-0.049788,-0.049788 +-0.044379,-0.044379,-0.044379,-0.044379,-0.044379,-0.044379 +-0.039273,-0.039273,-0.039273,-0.039273,-0.039273,-0.039273 +-0.034488,-0.034488,-0.034488,-0.034488,-0.034488,-0.034488 +-0.030045,-0.030045,-0.030045,-0.030045,-0.030045,-0.030045 +-0.025963,-0.025963,-0.025963,-0.025963,-0.025963,-0.025963 +-0.022259,-0.022259,-0.022259,-0.022259,-0.022259,-0.022259 +-0.018924,-0.018924,-0.018924,-0.018924,-0.018924,-0.018924 +-0.015941,-0.015941,-0.015941,-0.015941,-0.015941,-0.015941 +-0.013289,-0.013289,-0.013289,-0.013289,-0.013289,-0.013289 +-0.010948,-0.010948,-0.010948,-0.010948,-0.010948,-0.010948 +-0.0089,-0.0089,-0.0089,-0.0089,-0.0089,-0.0089 +-0.007125,-0.007125,-0.007125,-0.007125,-0.007125,-0.007125 +-0.005603,-0.005603,-0.005603,-0.005603,-0.005603,-0.005603 +-0.004315,-0.004315,-0.004315,-0.004315,-0.004315,-0.004315 +-0.003241,-0.003241,-0.003241,-0.003241,-0.003241,-0.003241 +-0.002362,-0.002362,-0.002362,-0.002362,-0.002362,-0.002362 +-0.001658,-0.001658,-0.001658,-0.001658,-0.001658,-0.001658 +-0.00111,-0.00111,-0.00111,-0.00111,-0.00111,-0.00111 +-0.000699,-0.000699,-0.000699,-0.000699,-0.000699,-0.000699 +-0.000404,-0.000404,-0.000404,-0.000404,-0.000404,-0.000404 +-0.000207,-0.000207,-0.000207,-0.000207,-0.000207,-0.000207 +-0.000087,-0.000087,-0.000087,-0.000087,-0.000087,-0.000087 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000088,0.000088,0.000088,0.000088,0.000088,0.000088 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.000406,0.000406,0.000406,0.000406,0.000406,0.000406 +0.000702,0.000702,0.000702,0.000702,0.000702,0.000702 +0.001115,0.001115,0.001115,0.001115,0.001115,0.001115 +0.001664,0.001664,0.001664,0.001664,0.001664,0.001664 +0.002369,0.002369,0.002369,0.002369,0.002369,0.002369 +0.00325,0.00325,0.00325,0.00325,0.00325,0.00325 +0.004326,0.004326,0.004326,0.004326,0.004326,0.004326 +0.005616,0.005616,0.005616,0.005616,0.005616,0.005616 +0.00714,0.00714,0.00714,0.00714,0.00714,0.00714 +0.008918,0.008918,0.008918,0.008918,0.008918,0.008918 +0.010969,0.010969,0.010969,0.010969,0.010969,0.010969 +0.013312,0.013312,0.013312,0.013312,0.013312,0.013312 +0.015967,0.015967,0.015967,0.015967,0.015967,0.015967 +0.018954,0.018954,0.018954,0.018954,0.018954,0.018954 +0.022292,0.022292,0.022292,0.022292,0.022292,0.022292 +0.026,0.026,0.026,0.026,0.026,0.026 +0.030086,0.030086,0.030086,0.030086,0.030086,0.030086 +0.034532,0.034532,0.034532,0.034532,0.034532,0.034532 +0.039319,0.039319,0.039319,0.039319,0.039319,0.039319 +0.044428,0.044428,0.044428,0.044428,0.044428,0.044428 +0.04984,0.04984,0.04984,0.04984,0.04984,0.04984 +0.055534,0.055534,0.055534,0.055534,0.055534,0.055534 +0.061491,0.061491,0.061491,0.061491,0.061491,0.061491 +0.067692,0.067692,0.067692,0.067692,0.067692,0.067692 +0.074117,0.074117,0.074117,0.074117,0.074117,0.074117 +0.080747,0.080747,0.080747,0.080747,0.080747,0.080747 +0.087562,0.087562,0.087562,0.087562,0.087562,0.087562 +0.094543,0.094543,0.094543,0.094543,0.094543,0.094543 +0.10167,0.10167,0.10167,0.10167,0.10167,0.10167 +0.108923,0.108923,0.108923,0.108923,0.108923,0.108923 +0.116284,0.116284,0.116284,0.116284,0.116284,0.116284 +0.123732,0.123732,0.123732,0.123732,0.123732,0.123732 +0.131249,0.131249,0.131249,0.131249,0.131249,0.131249 +0.138814,0.138814,0.138814,0.138814,0.138814,0.138814 +0.146409,0.146409,0.146409,0.146409,0.146409,0.146409 +0.154013,0.154013,0.154013,0.154013,0.154013,0.154013 +0.161618,0.161618,0.161618,0.161618,0.161618,0.161618 +0.169223,0.169223,0.169223,0.169223,0.169223,0.169223 +0.176828,0.176828,0.176828,0.176828,0.176828,0.176828 +0.184433,0.184433,0.184433,0.184433,0.184433,0.184433 +0.192038,0.192038,0.192038,0.192038,0.192038,0.192038 +0.199643,0.199643,0.199643,0.199643,0.199643,0.199643 +0.207248,0.207248,0.207248,0.207248,0.207248,0.207248 +0.214853,0.214853,0.214853,0.214853,0.214853,0.214853 +0.222458,0.222458,0.222458,0.222458,0.222458,0.222458 +0.230063,0.230063,0.230063,0.230063,0.230063,0.230063 +0.237668,0.237668,0.237668,0.237668,0.237668,0.237668 +0.245273,0.245273,0.245273,0.245273,0.245273,0.245273 +0.252878,0.252878,0.252878,0.252878,0.252878,0.252878 +0.260483,0.260483,0.260483,0.260483,0.260483,0.260483 +0.268088,0.268088,0.268088,0.268088,0.268088,0.268088 +0.275693,0.275693,0.275693,0.275693,0.275693,0.275693 +0.283298,0.283298,0.283298,0.283298,0.283298,0.283298 +0.290903,0.290903,0.290903,0.290903,0.290903,0.290903 +0.298508,0.298508,0.298508,0.298508,0.298508,0.298508 +0.306113,0.306113,0.306113,0.306113,0.306113,0.306113 +0.313718,0.313718,0.313718,0.313718,0.313718,0.313718 +0.321323,0.321323,0.321323,0.321323,0.321323,0.321323 +0.328928,0.328928,0.328928,0.328928,0.328928,0.328928 +0.336533,0.336533,0.336533,0.336533,0.336533,0.336533 +0.344138,0.344138,0.344138,0.344138,0.344138,0.344138 +0.351743,0.351743,0.351743,0.351743,0.351743,0.351743 +0.359348,0.359348,0.359348,0.359348,0.359348,0.359348 +0.366953,0.366953,0.366953,0.366953,0.366953,0.366953 +0.374558,0.374558,0.374558,0.374558,0.374558,0.374558 +0.382163,0.382163,0.382163,0.382163,0.382163,0.382163 +0.389768,0.389768,0.389768,0.389768,0.389768,0.389768 +0.397373,0.397373,0.397373,0.397373,0.397373,0.397373 +0.404978,0.404978,0.404978,0.404978,0.404978,0.404978 +0.412583,0.412583,0.412583,0.412583,0.412583,0.412583 +0.420188,0.420188,0.420188,0.420188,0.420188,0.420188 +0.427793,0.427793,0.427793,0.427793,0.427793,0.427793 +0.435398,0.435398,0.435398,0.435398,0.435398,0.435398 +0.443003,0.443003,0.443003,0.443003,0.443003,0.443003 +0.450608,0.450608,0.450608,0.450608,0.450608,0.450608 +0.458213,0.458213,0.458213,0.458213,0.458213,0.458213 +0.465818,0.465818,0.465818,0.465818,0.465818,0.465818 +0.473423,0.473423,0.473423,0.473423,0.473423,0.473423 +0.481028,0.481028,0.481028,0.481028,0.481028,0.481028 +0.488633,0.488633,0.488633,0.488633,0.488633,0.488633 +0.496238,0.496238,0.496238,0.496238,0.496238,0.496238 +0.503843,0.503843,0.503843,0.503843,0.503843,0.503843 +0.511448,0.511448,0.511448,0.511448,0.511448,0.511448 +0.519053,0.519053,0.519053,0.519053,0.519053,0.519053 +0.526658,0.526658,0.526658,0.526658,0.526658,0.526658 +0.534263,0.534263,0.534263,0.534263,0.534263,0.534263 +0.541868,0.541868,0.541868,0.541868,0.541868,0.541868 +0.549473,0.549473,0.549473,0.549473,0.549473,0.549473 +0.557078,0.557078,0.557078,0.557078,0.557078,0.557078 +0.564683,0.564683,0.564683,0.564683,0.564683,0.564683 +0.572288,0.572288,0.572288,0.572288,0.572288,0.572288 +0.579893,0.579893,0.579893,0.579893,0.579893,0.579893 +0.587498,0.587498,0.587498,0.587498,0.587498,0.587498 +0.595103,0.595103,0.595103,0.595103,0.595103,0.595103 +0.602708,0.602708,0.602708,0.602708,0.602708,0.602708 +0.610313,0.610313,0.610313,0.610313,0.610313,0.610313 +0.617918,0.617918,0.617918,0.617918,0.617918,0.617918 +0.625523,0.625523,0.625523,0.625523,0.625523,0.625523 +0.633128,0.633128,0.633128,0.633128,0.633128,0.633128 +0.640733,0.640733,0.640733,0.640733,0.640733,0.640733 +0.648338,0.648338,0.648338,0.648338,0.648338,0.648338 +0.655943,0.655943,0.655943,0.655943,0.655943,0.655943 +0.663548,0.663548,0.663548,0.663548,0.663548,0.663548 +0.671153,0.671153,0.671153,0.671153,0.671153,0.671153 +0.678758,0.678758,0.678758,0.678758,0.678758,0.678758 +0.686363,0.686363,0.686363,0.686363,0.686363,0.686363 +0.693968,0.693968,0.693968,0.693968,0.693968,0.693968 +0.701573,0.701573,0.701573,0.701573,0.701573,0.701573 +0.709178,0.709178,0.709178,0.709178,0.709178,0.709178 +0.716783,0.716783,0.716783,0.716783,0.716783,0.716783 +0.724388,0.724388,0.724388,0.724388,0.724388,0.724388 +0.731993,0.731993,0.731993,0.731993,0.731993,0.731993 +0.739598,0.739598,0.739598,0.739598,0.739598,0.739598 +0.747203,0.747203,0.747203,0.747203,0.747203,0.747203 +0.754808,0.754808,0.754808,0.754808,0.754808,0.754808 +0.762413,0.762413,0.762413,0.762413,0.762413,0.762413 +0.770018,0.770018,0.770018,0.770018,0.770018,0.770018 +0.777623,0.777623,0.777623,0.777623,0.777623,0.777623 +0.785228,0.785228,0.785228,0.785228,0.785228,0.785228 +0.792833,0.792833,0.792833,0.792833,0.792833,0.792833 +0.800438,0.800438,0.800438,0.800438,0.800438,0.800438 +0.808043,0.808043,0.808043,0.808043,0.808043,0.808043 +0.815648,0.815648,0.815648,0.815648,0.815648,0.815648 +0.823253,0.823253,0.823253,0.823253,0.823253,0.823253 +0.830858,0.830858,0.830858,0.830858,0.830858,0.830858 +0.838463,0.838463,0.838463,0.838463,0.838463,0.838463 +0.846068,0.846068,0.846068,0.846068,0.846068,0.846068 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.861278,0.861278,0.861278,0.861278,0.861278,0.861278 +0.868883,0.868883,0.868883,0.868883,0.868883,0.868883 +0.876488,0.876488,0.876488,0.876488,0.876488,0.876488 +0.884093,0.884093,0.884093,0.884093,0.884093,0.884093 +0.891698,0.891698,0.891698,0.891698,0.891698,0.891698 +0.899303,0.899303,0.899303,0.899303,0.899303,0.899303 +0.906908,0.906908,0.906908,0.906908,0.906908,0.906908 +0.914513,0.914513,0.914513,0.914513,0.914513,0.914513 +0.922118,0.922118,0.922118,0.922118,0.922118,0.922118 +0.929723,0.929723,0.929723,0.929723,0.929723,0.929723 +0.937328,0.937328,0.937328,0.937328,0.937328,0.937328 +0.944933,0.944933,0.944933,0.944933,0.944933,0.944933 +0.952538,0.952538,0.952538,0.952538,0.952538,0.952538 +0.960143,0.960143,0.960143,0.960143,0.960143,0.960143 +0.967748,0.967748,0.967748,0.967748,0.967748,0.967748 +0.975353,0.975353,0.975353,0.975353,0.975353,0.975353 +0.982958,0.982958,0.982958,0.982958,0.982958,0.982958 +0.990563,0.990563,0.990563,0.990563,0.990563,0.990563 +0.998168,0.998168,0.998168,0.998168,0.998168,0.998168 +1.005773,1.005773,1.005773,1.005773,1.005773,1.005773 +1.013378,1.013378,1.013378,1.013378,1.013378,1.013378 +1.020983,1.020983,1.020983,1.020983,1.020983,1.020983 +1.028588,1.028588,1.028588,1.028588,1.028588,1.028588 +1.036193,1.036193,1.036193,1.036193,1.036193,1.036193 +1.043798,1.043798,1.043798,1.043798,1.043798,1.043798 +1.051403,1.051403,1.051403,1.051403,1.051403,1.051403 +1.059008,1.059008,1.059008,1.059008,1.059008,1.059008 +1.066613,1.066613,1.066613,1.066613,1.066613,1.066613 +1.074218,1.074218,1.074218,1.074218,1.074218,1.074218 +1.081823,1.081823,1.081823,1.081823,1.081823,1.081823 +1.089428,1.089428,1.089428,1.089428,1.089428,1.089428 +1.097033,1.097033,1.097033,1.097033,1.097033,1.097033 +1.104638,1.104638,1.104638,1.104638,1.104638,1.104638 +1.112243,1.112243,1.112243,1.112243,1.112243,1.112243 +1.119848,1.119848,1.119848,1.119848,1.119848,1.119848 +1.127453,1.127453,1.127453,1.127453,1.127453,1.127453 +1.135058,1.135058,1.135058,1.135058,1.135058,1.135058 +1.142663,1.142663,1.142663,1.142663,1.142663,1.142663 +1.150268,1.150268,1.150268,1.150268,1.150268,1.150268 +1.157873,1.157873,1.157873,1.157873,1.157873,1.157873 +1.165478,1.165478,1.165478,1.165478,1.165478,1.165478 +1.173083,1.173083,1.173083,1.173083,1.173083,1.173083 +1.180688,1.180688,1.180688,1.180688,1.180688,1.180688 +1.188293,1.188293,1.188293,1.188293,1.188293,1.188293 +1.195898,1.195898,1.195898,1.195898,1.195898,1.195898 +1.203503,1.203503,1.203503,1.203503,1.203503,1.203503 +1.211108,1.211108,1.211108,1.211108,1.211108,1.211108 +1.218713,1.218713,1.218713,1.218713,1.218713,1.218713 +1.226318,1.226318,1.226318,1.226318,1.226318,1.226318 +1.233923,1.233923,1.233923,1.233923,1.233923,1.233923 +1.241528,1.241528,1.241528,1.241528,1.241528,1.241528 +1.249133,1.249133,1.249133,1.249133,1.249133,1.249133 +1.256738,1.256738,1.256738,1.256738,1.256738,1.256738 +1.264343,1.264343,1.264343,1.264343,1.264343,1.264343 +1.271948,1.271948,1.271948,1.271948,1.271948,1.271948 +1.279553,1.279553,1.279553,1.279553,1.279553,1.279553 +1.287158,1.287158,1.287158,1.287158,1.287158,1.287158 +1.294763,1.294763,1.294763,1.294763,1.294763,1.294763 +1.302368,1.302368,1.302368,1.302368,1.302368,1.302368 +1.309973,1.309973,1.309973,1.309973,1.309973,1.309973 +1.317578,1.317578,1.317578,1.317578,1.317578,1.317578 +1.325183,1.325183,1.325183,1.325183,1.325183,1.325183 +1.332788,1.332788,1.332788,1.332788,1.332788,1.332788 +1.340393,1.340393,1.340393,1.340393,1.340393,1.340393 +1.347998,1.347998,1.347998,1.347998,1.347998,1.347998 +1.355603,1.355603,1.355603,1.355603,1.355603,1.355603 +1.363208,1.363208,1.363208,1.363208,1.363208,1.363208 +1.370813,1.370813,1.370813,1.370813,1.370813,1.370813 +1.378418,1.378418,1.378418,1.378418,1.378418,1.378418 +1.386023,1.386023,1.386023,1.386023,1.386023,1.386023 +1.393628,1.393628,1.393628,1.393628,1.393628,1.393628 +1.401233,1.401233,1.401233,1.401233,1.401233,1.401233 +1.408838,1.408838,1.408838,1.408838,1.408838,1.408838 +1.416443,1.416443,1.416443,1.416443,1.416443,1.416443 +1.424048,1.424048,1.424048,1.424048,1.424048,1.424048 +1.431653,1.431653,1.431653,1.431653,1.431653,1.431653 +1.439258,1.439258,1.439258,1.439258,1.439258,1.439258 +1.446863,1.446863,1.446863,1.446863,1.446863,1.446863 +1.454468,1.454468,1.454468,1.454468,1.454468,1.454468 +1.462073,1.462073,1.462073,1.462073,1.462073,1.462073 +1.469678,1.469678,1.469678,1.469678,1.469678,1.469678 +1.477283,1.477283,1.477283,1.477283,1.477283,1.477283 +1.484888,1.484888,1.484888,1.484888,1.484888,1.484888 +1.492493,1.492493,1.492493,1.492493,1.492493,1.492493 +1.500098,1.500098,1.500098,1.500098,1.500098,1.500098 +1.507703,1.507703,1.507703,1.507703,1.507703,1.507703 +1.515308,1.515308,1.515308,1.515308,1.515308,1.515308 +1.522913,1.522913,1.522913,1.522913,1.522913,1.522913 +1.530518,1.530518,1.530518,1.530518,1.530518,1.530518 +1.538123,1.538123,1.538123,1.538123,1.538123,1.538123 +1.545728,1.545728,1.545728,1.545728,1.545728,1.545728 +1.553333,1.553333,1.553333,1.553333,1.553333,1.553333 +1.560938,1.560938,1.560938,1.560938,1.560938,1.560938 +1.568543,1.568543,1.568543,1.568543,1.568543,1.568543 +1.576148,1.576148,1.576148,1.576148,1.576148,1.576148 +1.583753,1.583753,1.583753,1.583753,1.583753,1.583753 +1.591358,1.591358,1.591358,1.591358,1.591358,1.591358 +1.598963,1.598963,1.598963,1.598963,1.598963,1.598963 +1.606557,1.606557,1.606557,1.606557,1.606557,1.606557 +1.614122,1.614122,1.614122,1.614122,1.614122,1.614122 +1.621638,1.621638,1.621638,1.621638,1.621638,1.621638 +1.629086,1.629086,1.629086,1.629086,1.629086,1.629086 +1.636446,1.636446,1.636446,1.636446,1.636446,1.636446 +1.643698,1.643698,1.643698,1.643698,1.643698,1.643698 +1.650824,1.650824,1.650824,1.650824,1.650824,1.650824 +1.657803,1.657803,1.657803,1.657803,1.657803,1.657803 +1.664616,1.664616,1.664616,1.664616,1.664616,1.664616 +1.671244,1.671244,1.671244,1.671244,1.671244,1.671244 +1.677667,1.677667,1.677667,1.677667,1.677667,1.677667 +1.683866,1.683866,1.683866,1.683866,1.683866,1.683866 +1.689821,1.689821,1.689821,1.689821,1.689821,1.689821 +1.695512,1.695512,1.695512,1.695512,1.695512,1.695512 +1.700921,1.700921,1.700921,1.700921,1.700921,1.700921 +1.706027,1.706027,1.706027,1.706027,1.706027,1.706027 +1.710812,1.710812,1.710812,1.710812,1.710812,1.710812 +1.715255,1.715255,1.715255,1.715255,1.715255,1.715255 +1.719337,1.719337,1.719337,1.719337,1.719337,1.719337 +1.723041,1.723041,1.723041,1.723041,1.723041,1.723041 +1.726376,1.726376,1.726376,1.726376,1.726376,1.726376 +1.729359,1.729359,1.729359,1.729359,1.729359,1.729359 +1.732011,1.732011,1.732011,1.732011,1.732011,1.732011 +1.734352,1.734352,1.734352,1.734352,1.734352,1.734352 +1.7364,1.7364,1.7364,1.7364,1.7364,1.7364 +1.738175,1.738175,1.738175,1.738175,1.738175,1.738175 +1.739697,1.739697,1.739697,1.739697,1.739697,1.739697 +1.740985,1.740985,1.740985,1.740985,1.740985,1.740985 +1.742059,1.742059,1.742059,1.742059,1.742059,1.742059 +1.742938,1.742938,1.742938,1.742938,1.742938,1.742938 +1.743642,1.743642,1.743642,1.743642,1.743642,1.743642 +1.74419,1.74419,1.74419,1.74419,1.74419,1.74419 +1.744601,1.744601,1.744601,1.744601,1.744601,1.744601 +1.744896,1.744896,1.744896,1.744896,1.744896,1.744896 +1.745093,1.745093,1.745093,1.745093,1.745093,1.745093 +1.745213,1.745213,1.745213,1.745213,1.745213,1.745213 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745212,1.745212,1.745212,1.745212,1.745212,1.745212 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.744894,1.744894,1.744894,1.744894,1.744894,1.744894 +1.744598,1.744598,1.744598,1.744598,1.744598,1.744598 +1.744185,1.744185,1.744185,1.744185,1.744185,1.744185 +1.743636,1.743636,1.743636,1.743636,1.743636,1.743636 +1.742931,1.742931,1.742931,1.742931,1.742931,1.742931 +1.74205,1.74205,1.74205,1.74205,1.74205,1.74205 +1.740974,1.740974,1.740974,1.740974,1.740974,1.740974 +1.739684,1.739684,1.739684,1.739684,1.739684,1.739684 +1.73816,1.73816,1.73816,1.73816,1.73816,1.73816 +1.736382,1.736382,1.736382,1.736382,1.736382,1.736382 +1.734331,1.734331,1.734331,1.734331,1.734331,1.734331 +1.731988,1.731988,1.731988,1.731988,1.731988,1.731988 +1.729333,1.729333,1.729333,1.729333,1.729333,1.729333 +1.726346,1.726346,1.726346,1.726346,1.726346,1.726346 +1.723008,1.723008,1.723008,1.723008,1.723008,1.723008 +1.7193,1.7193,1.7193,1.7193,1.7193,1.7193 +1.715214,1.715214,1.715214,1.715214,1.715214,1.715214 +1.710768,1.710768,1.710768,1.710768,1.710768,1.710768 +1.705981,1.705981,1.705981,1.705981,1.705981,1.705981 +1.700872,1.700872,1.700872,1.700872,1.700872,1.700872 +1.69546,1.69546,1.69546,1.69546,1.69546,1.69546 +1.689766,1.689766,1.689766,1.689766,1.689766,1.689766 +1.683809,1.683809,1.683809,1.683809,1.683809,1.683809 +1.677608,1.677608,1.677608,1.677608,1.677608,1.677608 +1.671183,1.671183,1.671183,1.671183,1.671183,1.671183 +1.664553,1.664553,1.664553,1.664553,1.664553,1.664553 +1.657738,1.657738,1.657738,1.657738,1.657738,1.657738 +1.650757,1.650757,1.650757,1.650757,1.650757,1.650757 +1.64363,1.64363,1.64363,1.64363,1.64363,1.64363 +1.636377,1.636377,1.636377,1.636377,1.636377,1.636377 +1.629016,1.629016,1.629016,1.629016,1.629016,1.629016 +1.621568,1.621568,1.621568,1.621568,1.621568,1.621568 +1.614051,1.614051,1.614051,1.614051,1.614051,1.614051 +1.606486,1.606486,1.606486,1.606486,1.606486,1.606486 +1.598891,1.598891,1.598891,1.598891,1.598891,1.598891 +1.591287,1.591287,1.591287,1.591287,1.591287,1.591287 +1.583682,1.583682,1.583682,1.583682,1.583682,1.583682 +1.576077,1.576077,1.576077,1.576077,1.576077,1.576077 +1.568472,1.568472,1.568472,1.568472,1.568472,1.568472 +1.560867,1.560867,1.560867,1.560867,1.560867,1.560867 +1.553262,1.553262,1.553262,1.553262,1.553262,1.553262 +1.545657,1.545657,1.545657,1.545657,1.545657,1.545657 +1.538052,1.538052,1.538052,1.538052,1.538052,1.538052 +1.530447,1.530447,1.530447,1.530447,1.530447,1.530447 +1.522842,1.522842,1.522842,1.522842,1.522842,1.522842 +1.515237,1.515237,1.515237,1.515237,1.515237,1.515237 +1.507632,1.507632,1.507632,1.507632,1.507632,1.507632 +1.500027,1.500027,1.500027,1.500027,1.500027,1.500027 +1.492422,1.492422,1.492422,1.492422,1.492422,1.492422 +1.484817,1.484817,1.484817,1.484817,1.484817,1.484817 +1.477212,1.477212,1.477212,1.477212,1.477212,1.477212 +1.469607,1.469607,1.469607,1.469607,1.469607,1.469607 +1.462002,1.462002,1.462002,1.462002,1.462002,1.462002 +1.454397,1.454397,1.454397,1.454397,1.454397,1.454397 +1.446792,1.446792,1.446792,1.446792,1.446792,1.446792 +1.439187,1.439187,1.439187,1.439187,1.439187,1.439187 +1.431582,1.431582,1.431582,1.431582,1.431582,1.431582 +1.423977,1.423977,1.423977,1.423977,1.423977,1.423977 +1.416372,1.416372,1.416372,1.416372,1.416372,1.416372 +1.408767,1.408767,1.408767,1.408767,1.408767,1.408767 +1.401162,1.401162,1.401162,1.401162,1.401162,1.401162 +1.393557,1.393557,1.393557,1.393557,1.393557,1.393557 +1.385952,1.385952,1.385952,1.385952,1.385952,1.385952 +1.378347,1.378347,1.378347,1.378347,1.378347,1.378347 +1.370742,1.370742,1.370742,1.370742,1.370742,1.370742 +1.363137,1.363137,1.363137,1.363137,1.363137,1.363137 +1.355532,1.355532,1.355532,1.355532,1.355532,1.355532 +1.347927,1.347927,1.347927,1.347927,1.347927,1.347927 +1.340322,1.340322,1.340322,1.340322,1.340322,1.340322 +1.332717,1.332717,1.332717,1.332717,1.332717,1.332717 +1.325112,1.325112,1.325112,1.325112,1.325112,1.325112 +1.317507,1.317507,1.317507,1.317507,1.317507,1.317507 +1.309902,1.309902,1.309902,1.309902,1.309902,1.309902 +1.302297,1.302297,1.302297,1.302297,1.302297,1.302297 +1.294692,1.294692,1.294692,1.294692,1.294692,1.294692 +1.287087,1.287087,1.287087,1.287087,1.287087,1.287087 +1.279482,1.279482,1.279482,1.279482,1.279482,1.279482 +1.271877,1.271877,1.271877,1.271877,1.271877,1.271877 +1.264272,1.264272,1.264272,1.264272,1.264272,1.264272 +1.256667,1.256667,1.256667,1.256667,1.256667,1.256667 +1.249062,1.249062,1.249062,1.249062,1.249062,1.249062 +1.241457,1.241457,1.241457,1.241457,1.241457,1.241457 +1.233852,1.233852,1.233852,1.233852,1.233852,1.233852 +1.226247,1.226247,1.226247,1.226247,1.226247,1.226247 +1.218642,1.218642,1.218642,1.218642,1.218642,1.218642 +1.211037,1.211037,1.211037,1.211037,1.211037,1.211037 +1.203432,1.203432,1.203432,1.203432,1.203432,1.203432 +1.195827,1.195827,1.195827,1.195827,1.195827,1.195827 +1.188222,1.188222,1.188222,1.188222,1.188222,1.188222 +1.180617,1.180617,1.180617,1.180617,1.180617,1.180617 +1.173012,1.173012,1.173012,1.173012,1.173012,1.173012 +1.165407,1.165407,1.165407,1.165407,1.165407,1.165407 +1.157802,1.157802,1.157802,1.157802,1.157802,1.157802 +1.150197,1.150197,1.150197,1.150197,1.150197,1.150197 +1.142592,1.142592,1.142592,1.142592,1.142592,1.142592 +1.134987,1.134987,1.134987,1.134987,1.134987,1.134987 +1.127382,1.127382,1.127382,1.127382,1.127382,1.127382 +1.119777,1.119777,1.119777,1.119777,1.119777,1.119777 +1.112172,1.112172,1.112172,1.112172,1.112172,1.112172 +1.104567,1.104567,1.104567,1.104567,1.104567,1.104567 +1.096962,1.096962,1.096962,1.096962,1.096962,1.096962 +1.089357,1.089357,1.089357,1.089357,1.089357,1.089357 +1.081752,1.081752,1.081752,1.081752,1.081752,1.081752 +1.074147,1.074147,1.074147,1.074147,1.074147,1.074147 +1.066542,1.066542,1.066542,1.066542,1.066542,1.066542 +1.058937,1.058937,1.058937,1.058937,1.058937,1.058937 +1.051332,1.051332,1.051332,1.051332,1.051332,1.051332 +1.043727,1.043727,1.043727,1.043727,1.043727,1.043727 +1.036122,1.036122,1.036122,1.036122,1.036122,1.036122 +1.028517,1.028517,1.028517,1.028517,1.028517,1.028517 +1.020912,1.020912,1.020912,1.020912,1.020912,1.020912 +1.013307,1.013307,1.013307,1.013307,1.013307,1.013307 +1.005702,1.005702,1.005702,1.005702,1.005702,1.005702 +0.998097,0.998097,0.998097,0.998097,0.998097,0.998097 +0.990492,0.990492,0.990492,0.990492,0.990492,0.990492 +0.982887,0.982887,0.982887,0.982887,0.982887,0.982887 +0.975282,0.975282,0.975282,0.975282,0.975282,0.975282 +0.967677,0.967677,0.967677,0.967677,0.967677,0.967677 +0.960072,0.960072,0.960072,0.960072,0.960072,0.960072 +0.952467,0.952467,0.952467,0.952467,0.952467,0.952467 +0.944862,0.944862,0.944862,0.944862,0.944862,0.944862 +0.937257,0.937257,0.937257,0.937257,0.937257,0.937257 +0.929652,0.929652,0.929652,0.929652,0.929652,0.929652 +0.922047,0.922047,0.922047,0.922047,0.922047,0.922047 +0.914442,0.914442,0.914442,0.914442,0.914442,0.914442 +0.906837,0.906837,0.906837,0.906837,0.906837,0.906837 +0.899232,0.899232,0.899232,0.899232,0.899232,0.899232 +0.891627,0.891627,0.891627,0.891627,0.891627,0.891627 +0.884022,0.884022,0.884022,0.884022,0.884022,0.884022 +0.876417,0.876417,0.876417,0.876417,0.876417,0.876417 +0.868812,0.868812,0.868812,0.868812,0.868812,0.868812 +0.861207,0.861207,0.861207,0.861207,0.861207,0.861207 +0.853602,0.853602,0.853602,0.853602,0.853602,0.853602 +0.845997,0.845997,0.845997,0.845997,0.845997,0.845997 +0.838392,0.838392,0.838392,0.838392,0.838392,0.838392 +0.830787,0.830787,0.830787,0.830787,0.830787,0.830787 +0.823182,0.823182,0.823182,0.823182,0.823182,0.823182 +0.815577,0.815577,0.815577,0.815577,0.815577,0.815577 +0.807972,0.807972,0.807972,0.807972,0.807972,0.807972 +0.800367,0.800367,0.800367,0.800367,0.800367,0.800367 +0.792762,0.792762,0.792762,0.792762,0.792762,0.792762 +0.785157,0.785157,0.785157,0.785157,0.785157,0.785157 +0.777552,0.777552,0.777552,0.777552,0.777552,0.777552 +0.769947,0.769947,0.769947,0.769947,0.769947,0.769947 +0.762342,0.762342,0.762342,0.762342,0.762342,0.762342 +0.754737,0.754737,0.754737,0.754737,0.754737,0.754737 +0.747132,0.747132,0.747132,0.747132,0.747132,0.747132 +0.739527,0.739527,0.739527,0.739527,0.739527,0.739527 +0.731922,0.731922,0.731922,0.731922,0.731922,0.731922 +0.724317,0.724317,0.724317,0.724317,0.724317,0.724317 +0.716712,0.716712,0.716712,0.716712,0.716712,0.716712 +0.709107,0.709107,0.709107,0.709107,0.709107,0.709107 +0.701502,0.701502,0.701502,0.701502,0.701502,0.701502 +0.693897,0.693897,0.693897,0.693897,0.693897,0.693897 +0.686292,0.686292,0.686292,0.686292,0.686292,0.686292 +0.678687,0.678687,0.678687,0.678687,0.678687,0.678687 +0.671082,0.671082,0.671082,0.671082,0.671082,0.671082 +0.663477,0.663477,0.663477,0.663477,0.663477,0.663477 +0.655872,0.655872,0.655872,0.655872,0.655872,0.655872 +0.648267,0.648267,0.648267,0.648267,0.648267,0.648267 +0.640662,0.640662,0.640662,0.640662,0.640662,0.640662 +0.633057,0.633057,0.633057,0.633057,0.633057,0.633057 +0.625452,0.625452,0.625452,0.625452,0.625452,0.625452 +0.617847,0.617847,0.617847,0.617847,0.617847,0.617847 +0.610242,0.610242,0.610242,0.610242,0.610242,0.610242 +0.602637,0.602637,0.602637,0.602637,0.602637,0.602637 +0.595032,0.595032,0.595032,0.595032,0.595032,0.595032 +0.587427,0.587427,0.587427,0.587427,0.587427,0.587427 +0.579822,0.579822,0.579822,0.579822,0.579822,0.579822 +0.572217,0.572217,0.572217,0.572217,0.572217,0.572217 +0.564612,0.564612,0.564612,0.564612,0.564612,0.564612 +0.557007,0.557007,0.557007,0.557007,0.557007,0.557007 +0.549402,0.549402,0.549402,0.549402,0.549402,0.549402 +0.541797,0.541797,0.541797,0.541797,0.541797,0.541797 +0.534192,0.534192,0.534192,0.534192,0.534192,0.534192 +0.526587,0.526587,0.526587,0.526587,0.526587,0.526587 +0.518982,0.518982,0.518982,0.518982,0.518982,0.518982 +0.511377,0.511377,0.511377,0.511377,0.511377,0.511377 +0.503772,0.503772,0.503772,0.503772,0.503772,0.503772 +0.496167,0.496167,0.496167,0.496167,0.496167,0.496167 +0.488562,0.488562,0.488562,0.488562,0.488562,0.488562 +0.480957,0.480957,0.480957,0.480957,0.480957,0.480957 +0.473352,0.473352,0.473352,0.473352,0.473352,0.473352 +0.465747,0.465747,0.465747,0.465747,0.465747,0.465747 +0.458142,0.458142,0.458142,0.458142,0.458142,0.458142 +0.450537,0.450537,0.450537,0.450537,0.450537,0.450537 +0.442932,0.442932,0.442932,0.442932,0.442932,0.442932 +0.435327,0.435327,0.435327,0.435327,0.435327,0.435327 +0.427722,0.427722,0.427722,0.427722,0.427722,0.427722 +0.420117,0.420117,0.420117,0.420117,0.420117,0.420117 +0.412512,0.412512,0.412512,0.412512,0.412512,0.412512 +0.404907,0.404907,0.404907,0.404907,0.404907,0.404907 +0.397302,0.397302,0.397302,0.397302,0.397302,0.397302 +0.389697,0.389697,0.389697,0.389697,0.389697,0.389697 +0.382092,0.382092,0.382092,0.382092,0.382092,0.382092 +0.374487,0.374487,0.374487,0.374487,0.374487,0.374487 +0.366882,0.366882,0.366882,0.366882,0.366882,0.366882 +0.359277,0.359277,0.359277,0.359277,0.359277,0.359277 +0.351672,0.351672,0.351672,0.351672,0.351672,0.351672 +0.344067,0.344067,0.344067,0.344067,0.344067,0.344067 +0.336462,0.336462,0.336462,0.336462,0.336462,0.336462 +0.328857,0.328857,0.328857,0.328857,0.328857,0.328857 +0.321252,0.321252,0.321252,0.321252,0.321252,0.321252 +0.313647,0.313647,0.313647,0.313647,0.313647,0.313647 +0.306042,0.306042,0.306042,0.306042,0.306042,0.306042 +0.298437,0.298437,0.298437,0.298437,0.298437,0.298437 +0.290832,0.290832,0.290832,0.290832,0.290832,0.290832 +0.283227,0.283227,0.283227,0.283227,0.283227,0.283227 +0.275622,0.275622,0.275622,0.275622,0.275622,0.275622 +0.268017,0.268017,0.268017,0.268017,0.268017,0.268017 +0.260412,0.260412,0.260412,0.260412,0.260412,0.260412 +0.252807,0.252807,0.252807,0.252807,0.252807,0.252807 +0.245202,0.245202,0.245202,0.245202,0.245202,0.245202 +0.237597,0.237597,0.237597,0.237597,0.237597,0.237597 +0.229992,0.229992,0.229992,0.229992,0.229992,0.229992 +0.222387,0.222387,0.222387,0.222387,0.222387,0.222387 +0.214782,0.214782,0.214782,0.214782,0.214782,0.214782 +0.207177,0.207177,0.207177,0.207177,0.207177,0.207177 +0.199572,0.199572,0.199572,0.199572,0.199572,0.199572 +0.191967,0.191967,0.191967,0.191967,0.191967,0.191967 +0.184362,0.184362,0.184362,0.184362,0.184362,0.184362 +0.176757,0.176757,0.176757,0.176757,0.176757,0.176757 +0.169152,0.169152,0.169152,0.169152,0.169152,0.169152 +0.161547,0.161547,0.161547,0.161547,0.161547,0.161547 +0.153942,0.153942,0.153942,0.153942,0.153942,0.153942 +0.146337,0.146337,0.146337,0.146337,0.146337,0.146337 +0.138743,0.138743,0.138743,0.138743,0.138743,0.138743 +0.131178,0.131178,0.131178,0.131178,0.131178,0.131178 +0.123662,0.123662,0.123662,0.123662,0.123662,0.123662 +0.116214,0.116214,0.116214,0.116214,0.116214,0.116214 +0.108854,0.108854,0.108854,0.108854,0.108854,0.108854 +0.101602,0.101602,0.101602,0.101602,0.101602,0.101602 +0.094476,0.094476,0.094476,0.094476,0.094476,0.094476 +0.087497,0.087497,0.087497,0.087497,0.087497,0.087497 +0.080684,0.080684,0.080684,0.080684,0.080684,0.080684 +0.074056,0.074056,0.074056,0.074056,0.074056,0.074056 +0.067633,0.067633,0.067633,0.067633,0.067633,0.067633 +0.061434,0.061434,0.061434,0.061434,0.061434,0.061434 +0.055479,0.055479,0.055479,0.055479,0.055479,0.055479 +0.049788,0.049788,0.049788,0.049788,0.049788,0.049788 +0.044379,0.044379,0.044379,0.044379,0.044379,0.044379 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.034488,0.034488,0.034488,0.034488,0.034488,0.034488 +0.030045,0.030045,0.030045,0.030045,0.030045,0.030045 +0.025963,0.025963,0.025963,0.025963,0.025963,0.025963 +0.022259,0.022259,0.022259,0.022259,0.022259,0.022259 +0.018924,0.018924,0.018924,0.018924,0.018924,0.018924 +0.015941,0.015941,0.015941,0.015941,0.015941,0.015941 +0.013289,0.013289,0.013289,0.013289,0.013289,0.013289 +0.010948,0.010948,0.010948,0.010948,0.010948,0.010948 +0.0089,0.0089,0.0089,0.0089,0.0089,0.0089 +0.007125,0.007125,0.007125,0.007125,0.007125,0.007125 +0.005603,0.005603,0.005603,0.005603,0.005603,0.005603 +0.004315,0.004315,0.004315,0.004315,0.004315,0.004315 +0.003241,0.003241,0.003241,0.003241,0.003241,0.003241 +0.002362,0.002362,0.002362,0.002362,0.002362,0.002362 +0.001658,0.001658,0.001658,0.001658,0.001658,0.001658 +0.00111,0.00111,0.00111,0.00111,0.00111,0.00111 +0.000699,0.000699,0.000699,0.000699,0.000699,0.000699 +0.000404,0.000404,0.000404,0.000404,0.000404,0.000404 +0.000207,0.000207,0.000207,0.000207,0.000207,0.000207 +0.000087,0.000087,0.000087,0.000087,0.000087,0.000087 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000088,-0.000088,-0.000088,-0.000088,-0.000088,-0.000088 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000406,-0.000406,-0.000406,-0.000406,-0.000406,-0.000406 +-0.000702,-0.000702,-0.000702,-0.000702,-0.000702,-0.000702 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.001664,-0.001664,-0.001664,-0.001664,-0.001664,-0.001664 +-0.002369,-0.002369,-0.002369,-0.002369,-0.002369,-0.002369 +-0.00325,-0.00325,-0.00325,-0.00325,-0.00325,-0.00325 +-0.004326,-0.004326,-0.004326,-0.004326,-0.004326,-0.004326 +-0.005616,-0.005616,-0.005616,-0.005616,-0.005616,-0.005616 +-0.00714,-0.00714,-0.00714,-0.00714,-0.00714,-0.00714 +-0.008918,-0.008918,-0.008918,-0.008918,-0.008918,-0.008918 +-0.010969,-0.010969,-0.010969,-0.010969,-0.010969,-0.010969 +-0.013312,-0.013312,-0.013312,-0.013312,-0.013312,-0.013312 +-0.015967,-0.015967,-0.015967,-0.015967,-0.015967,-0.015967 +-0.018954,-0.018954,-0.018954,-0.018954,-0.018954,-0.018954 +-0.022292,-0.022292,-0.022292,-0.022292,-0.022292,-0.022292 +-0.026,-0.026,-0.026,-0.026,-0.026,-0.026 +-0.030086,-0.030086,-0.030086,-0.030086,-0.030086,-0.030086 +-0.034532,-0.034532,-0.034532,-0.034532,-0.034532,-0.034532 +-0.039319,-0.039319,-0.039319,-0.039319,-0.039319,-0.039319 +-0.044428,-0.044428,-0.044428,-0.044428,-0.044428,-0.044428 +-0.04984,-0.04984,-0.04984,-0.04984,-0.04984,-0.04984 +-0.055534,-0.055534,-0.055534,-0.055534,-0.055534,-0.055534 +-0.061491,-0.061491,-0.061491,-0.061491,-0.061491,-0.061491 +-0.067692,-0.067692,-0.067692,-0.067692,-0.067692,-0.067692 +-0.074117,-0.074117,-0.074117,-0.074117,-0.074117,-0.074117 +-0.080747,-0.080747,-0.080747,-0.080747,-0.080747,-0.080747 +-0.087562,-0.087562,-0.087562,-0.087562,-0.087562,-0.087562 +-0.094543,-0.094543,-0.094543,-0.094543,-0.094543,-0.094543 +-0.10167,-0.10167,-0.10167,-0.10167,-0.10167,-0.10167 +-0.108923,-0.108923,-0.108923,-0.108923,-0.108923,-0.108923 +-0.116284,-0.116284,-0.116284,-0.116284,-0.116284,-0.116284 +-0.123732,-0.123732,-0.123732,-0.123732,-0.123732,-0.123732 +-0.131249,-0.131249,-0.131249,-0.131249,-0.131249,-0.131249 +-0.138814,-0.138814,-0.138814,-0.138814,-0.138814,-0.138814 +-0.146409,-0.146409,-0.146409,-0.146409,-0.146409,-0.146409 +-0.154013,-0.154013,-0.154013,-0.154013,-0.154013,-0.154013 +-0.161618,-0.161618,-0.161618,-0.161618,-0.161618,-0.161618 +-0.169223,-0.169223,-0.169223,-0.169223,-0.169223,-0.169223 +-0.176828,-0.176828,-0.176828,-0.176828,-0.176828,-0.176828 +-0.184433,-0.184433,-0.184433,-0.184433,-0.184433,-0.184433 +-0.192038,-0.192038,-0.192038,-0.192038,-0.192038,-0.192038 +-0.199643,-0.199643,-0.199643,-0.199643,-0.199643,-0.199643 +-0.207248,-0.207248,-0.207248,-0.207248,-0.207248,-0.207248 +-0.214853,-0.214853,-0.214853,-0.214853,-0.214853,-0.214853 +-0.222458,-0.222458,-0.222458,-0.222458,-0.222458,-0.222458 +-0.230063,-0.230063,-0.230063,-0.230063,-0.230063,-0.230063 +-0.237668,-0.237668,-0.237668,-0.237668,-0.237668,-0.237668 +-0.245273,-0.245273,-0.245273,-0.245273,-0.245273,-0.245273 +-0.252878,-0.252878,-0.252878,-0.252878,-0.252878,-0.252878 +-0.260483,-0.260483,-0.260483,-0.260483,-0.260483,-0.260483 +-0.268088,-0.268088,-0.268088,-0.268088,-0.268088,-0.268088 +-0.275693,-0.275693,-0.275693,-0.275693,-0.275693,-0.275693 +-0.283298,-0.283298,-0.283298,-0.283298,-0.283298,-0.283298 +-0.290903,-0.290903,-0.290903,-0.290903,-0.290903,-0.290903 +-0.298508,-0.298508,-0.298508,-0.298508,-0.298508,-0.298508 +-0.306113,-0.306113,-0.306113,-0.306113,-0.306113,-0.306113 +-0.313718,-0.313718,-0.313718,-0.313718,-0.313718,-0.313718 +-0.321323,-0.321323,-0.321323,-0.321323,-0.321323,-0.321323 +-0.328928,-0.328928,-0.328928,-0.328928,-0.328928,-0.328928 +-0.336533,-0.336533,-0.336533,-0.336533,-0.336533,-0.336533 +-0.344138,-0.344138,-0.344138,-0.344138,-0.344138,-0.344138 +-0.351743,-0.351743,-0.351743,-0.351743,-0.351743,-0.351743 +-0.359348,-0.359348,-0.359348,-0.359348,-0.359348,-0.359348 +-0.366953,-0.366953,-0.366953,-0.366953,-0.366953,-0.366953 +-0.374558,-0.374558,-0.374558,-0.374558,-0.374558,-0.374558 +-0.382163,-0.382163,-0.382163,-0.382163,-0.382163,-0.382163 +-0.389768,-0.389768,-0.389768,-0.389768,-0.389768,-0.389768 +-0.397373,-0.397373,-0.397373,-0.397373,-0.397373,-0.397373 +-0.404978,-0.404978,-0.404978,-0.404978,-0.404978,-0.404978 +-0.412583,-0.412583,-0.412583,-0.412583,-0.412583,-0.412583 +-0.420188,-0.420188,-0.420188,-0.420188,-0.420188,-0.420188 +-0.427793,-0.427793,-0.427793,-0.427793,-0.427793,-0.427793 +-0.435398,-0.435398,-0.435398,-0.435398,-0.435398,-0.435398 +-0.443003,-0.443003,-0.443003,-0.443003,-0.443003,-0.443003 +-0.450608,-0.450608,-0.450608,-0.450608,-0.450608,-0.450608 +-0.458213,-0.458213,-0.458213,-0.458213,-0.458213,-0.458213 +-0.465818,-0.465818,-0.465818,-0.465818,-0.465818,-0.465818 +-0.473423,-0.473423,-0.473423,-0.473423,-0.473423,-0.473423 +-0.481028,-0.481028,-0.481028,-0.481028,-0.481028,-0.481028 +-0.488633,-0.488633,-0.488633,-0.488633,-0.488633,-0.488633 +-0.496238,-0.496238,-0.496238,-0.496238,-0.496238,-0.496238 +-0.503843,-0.503843,-0.503843,-0.503843,-0.503843,-0.503843 +-0.511448,-0.511448,-0.511448,-0.511448,-0.511448,-0.511448 +-0.519053,-0.519053,-0.519053,-0.519053,-0.519053,-0.519053 +-0.526658,-0.526658,-0.526658,-0.526658,-0.526658,-0.526658 +-0.534263,-0.534263,-0.534263,-0.534263,-0.534263,-0.534263 +-0.541868,-0.541868,-0.541868,-0.541868,-0.541868,-0.541868 +-0.549473,-0.549473,-0.549473,-0.549473,-0.549473,-0.549473 +-0.557078,-0.557078,-0.557078,-0.557078,-0.557078,-0.557078 +-0.564683,-0.564683,-0.564683,-0.564683,-0.564683,-0.564683 +-0.572288,-0.572288,-0.572288,-0.572288,-0.572288,-0.572288 +-0.579893,-0.579893,-0.579893,-0.579893,-0.579893,-0.579893 +-0.587498,-0.587498,-0.587498,-0.587498,-0.587498,-0.587498 +-0.595103,-0.595103,-0.595103,-0.595103,-0.595103,-0.595103 +-0.602708,-0.602708,-0.602708,-0.602708,-0.602708,-0.602708 +-0.610313,-0.610313,-0.610313,-0.610313,-0.610313,-0.610313 +-0.617918,-0.617918,-0.617918,-0.617918,-0.617918,-0.617918 +-0.625523,-0.625523,-0.625523,-0.625523,-0.625523,-0.625523 +-0.633128,-0.633128,-0.633128,-0.633128,-0.633128,-0.633128 +-0.640733,-0.640733,-0.640733,-0.640733,-0.640733,-0.640733 +-0.648338,-0.648338,-0.648338,-0.648338,-0.648338,-0.648338 +-0.655943,-0.655943,-0.655943,-0.655943,-0.655943,-0.655943 +-0.663548,-0.663548,-0.663548,-0.663548,-0.663548,-0.663548 +-0.671153,-0.671153,-0.671153,-0.671153,-0.671153,-0.671153 +-0.678758,-0.678758,-0.678758,-0.678758,-0.678758,-0.678758 +-0.686363,-0.686363,-0.686363,-0.686363,-0.686363,-0.686363 +-0.693968,-0.693968,-0.693968,-0.693968,-0.693968,-0.693968 +-0.701573,-0.701573,-0.701573,-0.701573,-0.701573,-0.701573 +-0.709178,-0.709178,-0.709178,-0.709178,-0.709178,-0.709178 +-0.716783,-0.716783,-0.716783,-0.716783,-0.716783,-0.716783 +-0.724388,-0.724388,-0.724388,-0.724388,-0.724388,-0.724388 +-0.731993,-0.731993,-0.731993,-0.731993,-0.731993,-0.731993 +-0.739598,-0.739598,-0.739598,-0.739598,-0.739598,-0.739598 +-0.747203,-0.747203,-0.747203,-0.747203,-0.747203,-0.747203 +-0.754808,-0.754808,-0.754808,-0.754808,-0.754808,-0.754808 +-0.762413,-0.762413,-0.762413,-0.762413,-0.762413,-0.762413 +-0.770018,-0.770018,-0.770018,-0.770018,-0.770018,-0.770018 +-0.777623,-0.777623,-0.777623,-0.777623,-0.777623,-0.777623 +-0.785228,-0.785228,-0.785228,-0.785228,-0.785228,-0.785228 +-0.792833,-0.792833,-0.792833,-0.792833,-0.792833,-0.792833 +-0.800438,-0.800438,-0.800438,-0.800438,-0.800438,-0.800438 +-0.808043,-0.808043,-0.808043,-0.808043,-0.808043,-0.808043 +-0.815648,-0.815648,-0.815648,-0.815648,-0.815648,-0.815648 +-0.823253,-0.823253,-0.823253,-0.823253,-0.823253,-0.823253 +-0.830858,-0.830858,-0.830858,-0.830858,-0.830858,-0.830858 +-0.838463,-0.838463,-0.838463,-0.838463,-0.838463,-0.838463 +-0.846068,-0.846068,-0.846068,-0.846068,-0.846068,-0.846068 +-0.853673,-0.853673,-0.853673,-0.853673,-0.853673,-0.853673 +-0.861278,-0.861278,-0.861278,-0.861278,-0.861278,-0.861278 +-0.868883,-0.868883,-0.868883,-0.868883,-0.868883,-0.868883 +-0.876488,-0.876488,-0.876488,-0.876488,-0.876488,-0.876488 +-0.884093,-0.884093,-0.884093,-0.884093,-0.884093,-0.884093 +-0.891698,-0.891698,-0.891698,-0.891698,-0.891698,-0.891698 +-0.899303,-0.899303,-0.899303,-0.899303,-0.899303,-0.899303 +-0.906908,-0.906908,-0.906908,-0.906908,-0.906908,-0.906908 +-0.914513,-0.914513,-0.914513,-0.914513,-0.914513,-0.914513 +-0.922118,-0.922118,-0.922118,-0.922118,-0.922118,-0.922118 +-0.929723,-0.929723,-0.929723,-0.929723,-0.929723,-0.929723 +-0.937328,-0.937328,-0.937328,-0.937328,-0.937328,-0.937328 +-0.944933,-0.944933,-0.944933,-0.944933,-0.944933,-0.944933 +-0.952538,-0.952538,-0.952538,-0.952538,-0.952538,-0.952538 +-0.960143,-0.960143,-0.960143,-0.960143,-0.960143,-0.960143 +-0.967748,-0.967748,-0.967748,-0.967748,-0.967748,-0.967748 +-0.975353,-0.975353,-0.975353,-0.975353,-0.975353,-0.975353 +-0.982958,-0.982958,-0.982958,-0.982958,-0.982958,-0.982958 +-0.990563,-0.990563,-0.990563,-0.990563,-0.990563,-0.990563 +-0.998168,-0.998168,-0.998168,-0.998168,-0.998168,-0.998168 +-1.005773,-1.005773,-1.005773,-1.005773,-1.005773,-1.005773 +-1.013378,-1.013378,-1.013378,-1.013378,-1.013378,-1.013378 +-1.020983,-1.020983,-1.020983,-1.020983,-1.020983,-1.020983 +-1.028588,-1.028588,-1.028588,-1.028588,-1.028588,-1.028588 +-1.036193,-1.036193,-1.036193,-1.036193,-1.036193,-1.036193 +-1.043798,-1.043798,-1.043798,-1.043798,-1.043798,-1.043798 +-1.051403,-1.051403,-1.051403,-1.051403,-1.051403,-1.051403 +-1.059008,-1.059008,-1.059008,-1.059008,-1.059008,-1.059008 +-1.066613,-1.066613,-1.066613,-1.066613,-1.066613,-1.066613 +-1.074218,-1.074218,-1.074218,-1.074218,-1.074218,-1.074218 +-1.081823,-1.081823,-1.081823,-1.081823,-1.081823,-1.081823 +-1.089428,-1.089428,-1.089428,-1.089428,-1.089428,-1.089428 +-1.097033,-1.097033,-1.097033,-1.097033,-1.097033,-1.097033 +-1.104638,-1.104638,-1.104638,-1.104638,-1.104638,-1.104638 +-1.112243,-1.112243,-1.112243,-1.112243,-1.112243,-1.112243 +-1.119848,-1.119848,-1.119848,-1.119848,-1.119848,-1.119848 +-1.127453,-1.127453,-1.127453,-1.127453,-1.127453,-1.127453 +-1.135058,-1.135058,-1.135058,-1.135058,-1.135058,-1.135058 +-1.142663,-1.142663,-1.142663,-1.142663,-1.142663,-1.142663 +-1.150268,-1.150268,-1.150268,-1.150268,-1.150268,-1.150268 +-1.157873,-1.157873,-1.157873,-1.157873,-1.157873,-1.157873 +-1.165478,-1.165478,-1.165478,-1.165478,-1.165478,-1.165478 +-1.173083,-1.173083,-1.173083,-1.173083,-1.173083,-1.173083 +-1.180688,-1.180688,-1.180688,-1.180688,-1.180688,-1.180688 +-1.188293,-1.188293,-1.188293,-1.188293,-1.188293,-1.188293 +-1.195898,-1.195898,-1.195898,-1.195898,-1.195898,-1.195898 +-1.203503,-1.203503,-1.203503,-1.203503,-1.203503,-1.203503 +-1.211108,-1.211108,-1.211108,-1.211108,-1.211108,-1.211108 +-1.218713,-1.218713,-1.218713,-1.218713,-1.218713,-1.218713 +-1.226318,-1.226318,-1.226318,-1.226318,-1.226318,-1.226318 +-1.233923,-1.233923,-1.233923,-1.233923,-1.233923,-1.233923 +-1.241528,-1.241528,-1.241528,-1.241528,-1.241528,-1.241528 +-1.249133,-1.249133,-1.249133,-1.249133,-1.249133,-1.249133 +-1.256738,-1.256738,-1.256738,-1.256738,-1.256738,-1.256738 +-1.264343,-1.264343,-1.264343,-1.264343,-1.264343,-1.264343 +-1.271948,-1.271948,-1.271948,-1.271948,-1.271948,-1.271948 +-1.279553,-1.279553,-1.279553,-1.279553,-1.279553,-1.279553 +-1.287158,-1.287158,-1.287158,-1.287158,-1.287158,-1.287158 +-1.294763,-1.294763,-1.294763,-1.294763,-1.294763,-1.294763 +-1.302368,-1.302368,-1.302368,-1.302368,-1.302368,-1.302368 +-1.309973,-1.309973,-1.309973,-1.309973,-1.309973,-1.309973 +-1.317578,-1.317578,-1.317578,-1.317578,-1.317578,-1.317578 +-1.325183,-1.325183,-1.325183,-1.325183,-1.325183,-1.325183 +-1.332788,-1.332788,-1.332788,-1.332788,-1.332788,-1.332788 +-1.340393,-1.340393,-1.340393,-1.340393,-1.340393,-1.340393 +-1.347998,-1.347998,-1.347998,-1.347998,-1.347998,-1.347998 +-1.355603,-1.355603,-1.355603,-1.355603,-1.355603,-1.355603 +-1.363208,-1.363208,-1.363208,-1.363208,-1.363208,-1.363208 +-1.370813,-1.370813,-1.370813,-1.370813,-1.370813,-1.370813 +-1.378418,-1.378418,-1.378418,-1.378418,-1.378418,-1.378418 +-1.386023,-1.386023,-1.386023,-1.386023,-1.386023,-1.386023 +-1.393628,-1.393628,-1.393628,-1.393628,-1.393628,-1.393628 +-1.401233,-1.401233,-1.401233,-1.401233,-1.401233,-1.401233 +-1.408838,-1.408838,-1.408838,-1.408838,-1.408838,-1.408838 +-1.416443,-1.416443,-1.416443,-1.416443,-1.416443,-1.416443 +-1.424048,-1.424048,-1.424048,-1.424048,-1.424048,-1.424048 +-1.431653,-1.431653,-1.431653,-1.431653,-1.431653,-1.431653 +-1.439258,-1.439258,-1.439258,-1.439258,-1.439258,-1.439258 +-1.446863,-1.446863,-1.446863,-1.446863,-1.446863,-1.446863 +-1.454468,-1.454468,-1.454468,-1.454468,-1.454468,-1.454468 +-1.462073,-1.462073,-1.462073,-1.462073,-1.462073,-1.462073 +-1.469678,-1.469678,-1.469678,-1.469678,-1.469678,-1.469678 +-1.477283,-1.477283,-1.477283,-1.477283,-1.477283,-1.477283 +-1.484888,-1.484888,-1.484888,-1.484888,-1.484888,-1.484888 +-1.492493,-1.492493,-1.492493,-1.492493,-1.492493,-1.492493 +-1.500098,-1.500098,-1.500098,-1.500098,-1.500098,-1.500098 +-1.507703,-1.507703,-1.507703,-1.507703,-1.507703,-1.507703 +-1.515308,-1.515308,-1.515308,-1.515308,-1.515308,-1.515308 +-1.522913,-1.522913,-1.522913,-1.522913,-1.522913,-1.522913 +-1.530518,-1.530518,-1.530518,-1.530518,-1.530518,-1.530518 +-1.538123,-1.538123,-1.538123,-1.538123,-1.538123,-1.538123 +-1.545728,-1.545728,-1.545728,-1.545728,-1.545728,-1.545728 +-1.553333,-1.553333,-1.553333,-1.553333,-1.553333,-1.553333 +-1.560938,-1.560938,-1.560938,-1.560938,-1.560938,-1.560938 +-1.568543,-1.568543,-1.568543,-1.568543,-1.568543,-1.568543 +-1.576148,-1.576148,-1.576148,-1.576148,-1.576148,-1.576148 +-1.583753,-1.583753,-1.583753,-1.583753,-1.583753,-1.583753 +-1.591358,-1.591358,-1.591358,-1.591358,-1.591358,-1.591358 +-1.598963,-1.598963,-1.598963,-1.598963,-1.598963,-1.598963 +-1.606557,-1.606557,-1.606557,-1.606557,-1.606557,-1.606557 +-1.614122,-1.614122,-1.614122,-1.614122,-1.614122,-1.614122 +-1.621638,-1.621638,-1.621638,-1.621638,-1.621638,-1.621638 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.636446,-1.636446,-1.636446,-1.636446,-1.636446,-1.636446 +-1.643698,-1.643698,-1.643698,-1.643698,-1.643698,-1.643698 +-1.650824,-1.650824,-1.650824,-1.650824,-1.650824,-1.650824 +-1.657803,-1.657803,-1.657803,-1.657803,-1.657803,-1.657803 +-1.664616,-1.664616,-1.664616,-1.664616,-1.664616,-1.664616 +-1.671244,-1.671244,-1.671244,-1.671244,-1.671244,-1.671244 +-1.677667,-1.677667,-1.677667,-1.677667,-1.677667,-1.677667 +-1.683866,-1.683866,-1.683866,-1.683866,-1.683866,-1.683866 +-1.689821,-1.689821,-1.689821,-1.689821,-1.689821,-1.689821 +-1.695512,-1.695512,-1.695512,-1.695512,-1.695512,-1.695512 +-1.700921,-1.700921,-1.700921,-1.700921,-1.700921,-1.700921 +-1.706027,-1.706027,-1.706027,-1.706027,-1.706027,-1.706027 +-1.710812,-1.710812,-1.710812,-1.710812,-1.710812,-1.710812 +-1.715255,-1.715255,-1.715255,-1.715255,-1.715255,-1.715255 +-1.719337,-1.719337,-1.719337,-1.719337,-1.719337,-1.719337 +-1.723041,-1.723041,-1.723041,-1.723041,-1.723041,-1.723041 +-1.726376,-1.726376,-1.726376,-1.726376,-1.726376,-1.726376 +-1.729359,-1.729359,-1.729359,-1.729359,-1.729359,-1.729359 +-1.732011,-1.732011,-1.732011,-1.732011,-1.732011,-1.732011 +-1.734352,-1.734352,-1.734352,-1.734352,-1.734352,-1.734352 +-1.7364,-1.7364,-1.7364,-1.7364,-1.7364,-1.7364 +-1.738175,-1.738175,-1.738175,-1.738175,-1.738175,-1.738175 +-1.739697,-1.739697,-1.739697,-1.739697,-1.739697,-1.739697 +-1.740985,-1.740985,-1.740985,-1.740985,-1.740985,-1.740985 +-1.742059,-1.742059,-1.742059,-1.742059,-1.742059,-1.742059 +-1.742938,-1.742938,-1.742938,-1.742938,-1.742938,-1.742938 +-1.743642,-1.743642,-1.743642,-1.743642,-1.743642,-1.743642 +-1.74419,-1.74419,-1.74419,-1.74419,-1.74419,-1.74419 +-1.744601,-1.744601,-1.744601,-1.744601,-1.744601,-1.744601 +-1.744896,-1.744896,-1.744896,-1.744896,-1.744896,-1.744896 +-1.745093,-1.745093,-1.745093,-1.745093,-1.745093,-1.745093 +-1.745213,-1.745213,-1.745213,-1.745213,-1.745213,-1.745213 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745212,-1.745212,-1.745212,-1.745212,-1.745212,-1.745212 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.744894,-1.744894,-1.744894,-1.744894,-1.744894,-1.744894 +-1.744598,-1.744598,-1.744598,-1.744598,-1.744598,-1.744598 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.743636,-1.743636,-1.743636,-1.743636,-1.743636,-1.743636 +-1.742931,-1.742931,-1.742931,-1.742931,-1.742931,-1.742931 +-1.74205,-1.74205,-1.74205,-1.74205,-1.74205,-1.74205 +-1.740974,-1.740974,-1.740974,-1.740974,-1.740974,-1.740974 +-1.739684,-1.739684,-1.739684,-1.739684,-1.739684,-1.739684 +-1.73816,-1.73816,-1.73816,-1.73816,-1.73816,-1.73816 +-1.736382,-1.736382,-1.736382,-1.736382,-1.736382,-1.736382 +-1.734331,-1.734331,-1.734331,-1.734331,-1.734331,-1.734331 +-1.731988,-1.731988,-1.731988,-1.731988,-1.731988,-1.731988 +-1.729333,-1.729333,-1.729333,-1.729333,-1.729333,-1.729333 +-1.726346,-1.726346,-1.726346,-1.726346,-1.726346,-1.726346 +-1.723008,-1.723008,-1.723008,-1.723008,-1.723008,-1.723008 +-1.7193,-1.7193,-1.7193,-1.7193,-1.7193,-1.7193 +-1.715214,-1.715214,-1.715214,-1.715214,-1.715214,-1.715214 +-1.710768,-1.710768,-1.710768,-1.710768,-1.710768,-1.710768 +-1.705981,-1.705981,-1.705981,-1.705981,-1.705981,-1.705981 +-1.700872,-1.700872,-1.700872,-1.700872,-1.700872,-1.700872 +-1.69546,-1.69546,-1.69546,-1.69546,-1.69546,-1.69546 +-1.689766,-1.689766,-1.689766,-1.689766,-1.689766,-1.689766 +-1.683809,-1.683809,-1.683809,-1.683809,-1.683809,-1.683809 +-1.677608,-1.677608,-1.677608,-1.677608,-1.677608,-1.677608 +-1.671183,-1.671183,-1.671183,-1.671183,-1.671183,-1.671183 +-1.664553,-1.664553,-1.664553,-1.664553,-1.664553,-1.664553 +-1.657738,-1.657738,-1.657738,-1.657738,-1.657738,-1.657738 +-1.650757,-1.650757,-1.650757,-1.650757,-1.650757,-1.650757 +-1.64363,-1.64363,-1.64363,-1.64363,-1.64363,-1.64363 +-1.636377,-1.636377,-1.636377,-1.636377,-1.636377,-1.636377 +-1.629016,-1.629016,-1.629016,-1.629016,-1.629016,-1.629016 +-1.621568,-1.621568,-1.621568,-1.621568,-1.621568,-1.621568 +-1.614051,-1.614051,-1.614051,-1.614051,-1.614051,-1.614051 +-1.606486,-1.606486,-1.606486,-1.606486,-1.606486,-1.606486 +-1.598891,-1.598891,-1.598891,-1.598891,-1.598891,-1.598891 +-1.591287,-1.591287,-1.591287,-1.591287,-1.591287,-1.591287 +-1.583682,-1.583682,-1.583682,-1.583682,-1.583682,-1.583682 +-1.576077,-1.576077,-1.576077,-1.576077,-1.576077,-1.576077 +-1.568472,-1.568472,-1.568472,-1.568472,-1.568472,-1.568472 +-1.560867,-1.560867,-1.560867,-1.560867,-1.560867,-1.560867 +-1.553262,-1.553262,-1.553262,-1.553262,-1.553262,-1.553262 +-1.545657,-1.545657,-1.545657,-1.545657,-1.545657,-1.545657 +-1.538052,-1.538052,-1.538052,-1.538052,-1.538052,-1.538052 +-1.530447,-1.530447,-1.530447,-1.530447,-1.530447,-1.530447 +-1.522842,-1.522842,-1.522842,-1.522842,-1.522842,-1.522842 +-1.515237,-1.515237,-1.515237,-1.515237,-1.515237,-1.515237 +-1.507632,-1.507632,-1.507632,-1.507632,-1.507632,-1.507632 +-1.500027,-1.500027,-1.500027,-1.500027,-1.500027,-1.500027 +-1.492422,-1.492422,-1.492422,-1.492422,-1.492422,-1.492422 +-1.484817,-1.484817,-1.484817,-1.484817,-1.484817,-1.484817 +-1.477212,-1.477212,-1.477212,-1.477212,-1.477212,-1.477212 +-1.469607,-1.469607,-1.469607,-1.469607,-1.469607,-1.469607 +-1.462002,-1.462002,-1.462002,-1.462002,-1.462002,-1.462002 +-1.454397,-1.454397,-1.454397,-1.454397,-1.454397,-1.454397 +-1.446792,-1.446792,-1.446792,-1.446792,-1.446792,-1.446792 +-1.439187,-1.439187,-1.439187,-1.439187,-1.439187,-1.439187 +-1.431582,-1.431582,-1.431582,-1.431582,-1.431582,-1.431582 +-1.423977,-1.423977,-1.423977,-1.423977,-1.423977,-1.423977 +-1.416372,-1.416372,-1.416372,-1.416372,-1.416372,-1.416372 +-1.408767,-1.408767,-1.408767,-1.408767,-1.408767,-1.408767 +-1.401162,-1.401162,-1.401162,-1.401162,-1.401162,-1.401162 +-1.393557,-1.393557,-1.393557,-1.393557,-1.393557,-1.393557 +-1.385952,-1.385952,-1.385952,-1.385952,-1.385952,-1.385952 +-1.378347,-1.378347,-1.378347,-1.378347,-1.378347,-1.378347 +-1.370742,-1.370742,-1.370742,-1.370742,-1.370742,-1.370742 +-1.363137,-1.363137,-1.363137,-1.363137,-1.363137,-1.363137 +-1.355532,-1.355532,-1.355532,-1.355532,-1.355532,-1.355532 +-1.347927,-1.347927,-1.347927,-1.347927,-1.347927,-1.347927 +-1.340322,-1.340322,-1.340322,-1.340322,-1.340322,-1.340322 +-1.332717,-1.332717,-1.332717,-1.332717,-1.332717,-1.332717 +-1.325112,-1.325112,-1.325112,-1.325112,-1.325112,-1.325112 +-1.317507,-1.317507,-1.317507,-1.317507,-1.317507,-1.317507 +-1.309902,-1.309902,-1.309902,-1.309902,-1.309902,-1.309902 +-1.302297,-1.302297,-1.302297,-1.302297,-1.302297,-1.302297 +-1.294692,-1.294692,-1.294692,-1.294692,-1.294692,-1.294692 +-1.287087,-1.287087,-1.287087,-1.287087,-1.287087,-1.287087 +-1.279482,-1.279482,-1.279482,-1.279482,-1.279482,-1.279482 +-1.271877,-1.271877,-1.271877,-1.271877,-1.271877,-1.271877 +-1.264272,-1.264272,-1.264272,-1.264272,-1.264272,-1.264272 +-1.256667,-1.256667,-1.256667,-1.256667,-1.256667,-1.256667 +-1.249062,-1.249062,-1.249062,-1.249062,-1.249062,-1.249062 +-1.241457,-1.241457,-1.241457,-1.241457,-1.241457,-1.241457 +-1.233852,-1.233852,-1.233852,-1.233852,-1.233852,-1.233852 +-1.226247,-1.226247,-1.226247,-1.226247,-1.226247,-1.226247 +-1.218642,-1.218642,-1.218642,-1.218642,-1.218642,-1.218642 +-1.211037,-1.211037,-1.211037,-1.211037,-1.211037,-1.211037 +-1.203432,-1.203432,-1.203432,-1.203432,-1.203432,-1.203432 +-1.195827,-1.195827,-1.195827,-1.195827,-1.195827,-1.195827 +-1.188222,-1.188222,-1.188222,-1.188222,-1.188222,-1.188222 +-1.180617,-1.180617,-1.180617,-1.180617,-1.180617,-1.180617 +-1.173012,-1.173012,-1.173012,-1.173012,-1.173012,-1.173012 +-1.165407,-1.165407,-1.165407,-1.165407,-1.165407,-1.165407 +-1.157802,-1.157802,-1.157802,-1.157802,-1.157802,-1.157802 +-1.150197,-1.150197,-1.150197,-1.150197,-1.150197,-1.150197 +-1.142592,-1.142592,-1.142592,-1.142592,-1.142592,-1.142592 +-1.134987,-1.134987,-1.134987,-1.134987,-1.134987,-1.134987 +-1.127382,-1.127382,-1.127382,-1.127382,-1.127382,-1.127382 +-1.119777,-1.119777,-1.119777,-1.119777,-1.119777,-1.119777 +-1.112172,-1.112172,-1.112172,-1.112172,-1.112172,-1.112172 +-1.104567,-1.104567,-1.104567,-1.104567,-1.104567,-1.104567 +-1.096962,-1.096962,-1.096962,-1.096962,-1.096962,-1.096962 +-1.089357,-1.089357,-1.089357,-1.089357,-1.089357,-1.089357 +-1.081752,-1.081752,-1.081752,-1.081752,-1.081752,-1.081752 +-1.074147,-1.074147,-1.074147,-1.074147,-1.074147,-1.074147 +-1.066542,-1.066542,-1.066542,-1.066542,-1.066542,-1.066542 +-1.058937,-1.058937,-1.058937,-1.058937,-1.058937,-1.058937 +-1.051332,-1.051332,-1.051332,-1.051332,-1.051332,-1.051332 +-1.043727,-1.043727,-1.043727,-1.043727,-1.043727,-1.043727 +-1.036122,-1.036122,-1.036122,-1.036122,-1.036122,-1.036122 +-1.028517,-1.028517,-1.028517,-1.028517,-1.028517,-1.028517 +-1.020912,-1.020912,-1.020912,-1.020912,-1.020912,-1.020912 +-1.013307,-1.013307,-1.013307,-1.013307,-1.013307,-1.013307 +-1.005702,-1.005702,-1.005702,-1.005702,-1.005702,-1.005702 +-0.998097,-0.998097,-0.998097,-0.998097,-0.998097,-0.998097 +-0.990492,-0.990492,-0.990492,-0.990492,-0.990492,-0.990492 +-0.982887,-0.982887,-0.982887,-0.982887,-0.982887,-0.982887 +-0.975282,-0.975282,-0.975282,-0.975282,-0.975282,-0.975282 +-0.967677,-0.967677,-0.967677,-0.967677,-0.967677,-0.967677 +-0.960072,-0.960072,-0.960072,-0.960072,-0.960072,-0.960072 +-0.952467,-0.952467,-0.952467,-0.952467,-0.952467,-0.952467 +-0.944862,-0.944862,-0.944862,-0.944862,-0.944862,-0.944862 +-0.937257,-0.937257,-0.937257,-0.937257,-0.937257,-0.937257 +-0.929652,-0.929652,-0.929652,-0.929652,-0.929652,-0.929652 +-0.922047,-0.922047,-0.922047,-0.922047,-0.922047,-0.922047 +-0.914442,-0.914442,-0.914442,-0.914442,-0.914442,-0.914442 +-0.906837,-0.906837,-0.906837,-0.906837,-0.906837,-0.906837 +-0.899232,-0.899232,-0.899232,-0.899232,-0.899232,-0.899232 +-0.891627,-0.891627,-0.891627,-0.891627,-0.891627,-0.891627 +-0.884022,-0.884022,-0.884022,-0.884022,-0.884022,-0.884022 +-0.876417,-0.876417,-0.876417,-0.876417,-0.876417,-0.876417 +-0.868812,-0.868812,-0.868812,-0.868812,-0.868812,-0.868812 +-0.861207,-0.861207,-0.861207,-0.861207,-0.861207,-0.861207 +-0.853602,-0.853602,-0.853602,-0.853602,-0.853602,-0.853602 +-0.845997,-0.845997,-0.845997,-0.845997,-0.845997,-0.845997 +-0.838392,-0.838392,-0.838392,-0.838392,-0.838392,-0.838392 +-0.830787,-0.830787,-0.830787,-0.830787,-0.830787,-0.830787 +-0.823182,-0.823182,-0.823182,-0.823182,-0.823182,-0.823182 +-0.815577,-0.815577,-0.815577,-0.815577,-0.815577,-0.815577 +-0.807972,-0.807972,-0.807972,-0.807972,-0.807972,-0.807972 +-0.800367,-0.800367,-0.800367,-0.800367,-0.800367,-0.800367 +-0.792762,-0.792762,-0.792762,-0.792762,-0.792762,-0.792762 +-0.785157,-0.785157,-0.785157,-0.785157,-0.785157,-0.785157 +-0.777552,-0.777552,-0.777552,-0.777552,-0.777552,-0.777552 +-0.769947,-0.769947,-0.769947,-0.769947,-0.769947,-0.769947 +-0.762342,-0.762342,-0.762342,-0.762342,-0.762342,-0.762342 +-0.754737,-0.754737,-0.754737,-0.754737,-0.754737,-0.754737 +-0.747132,-0.747132,-0.747132,-0.747132,-0.747132,-0.747132 +-0.739527,-0.739527,-0.739527,-0.739527,-0.739527,-0.739527 +-0.731922,-0.731922,-0.731922,-0.731922,-0.731922,-0.731922 +-0.724317,-0.724317,-0.724317,-0.724317,-0.724317,-0.724317 +-0.716712,-0.716712,-0.716712,-0.716712,-0.716712,-0.716712 +-0.709107,-0.709107,-0.709107,-0.709107,-0.709107,-0.709107 +-0.701502,-0.701502,-0.701502,-0.701502,-0.701502,-0.701502 +-0.693897,-0.693897,-0.693897,-0.693897,-0.693897,-0.693897 +-0.686292,-0.686292,-0.686292,-0.686292,-0.686292,-0.686292 +-0.678687,-0.678687,-0.678687,-0.678687,-0.678687,-0.678687 +-0.671082,-0.671082,-0.671082,-0.671082,-0.671082,-0.671082 +-0.663477,-0.663477,-0.663477,-0.663477,-0.663477,-0.663477 +-0.655872,-0.655872,-0.655872,-0.655872,-0.655872,-0.655872 +-0.648267,-0.648267,-0.648267,-0.648267,-0.648267,-0.648267 +-0.640662,-0.640662,-0.640662,-0.640662,-0.640662,-0.640662 +-0.633057,-0.633057,-0.633057,-0.633057,-0.633057,-0.633057 +-0.625452,-0.625452,-0.625452,-0.625452,-0.625452,-0.625452 +-0.617847,-0.617847,-0.617847,-0.617847,-0.617847,-0.617847 +-0.610242,-0.610242,-0.610242,-0.610242,-0.610242,-0.610242 +-0.602637,-0.602637,-0.602637,-0.602637,-0.602637,-0.602637 +-0.595032,-0.595032,-0.595032,-0.595032,-0.595032,-0.595032 +-0.587427,-0.587427,-0.587427,-0.587427,-0.587427,-0.587427 +-0.579822,-0.579822,-0.579822,-0.579822,-0.579822,-0.579822 +-0.572217,-0.572217,-0.572217,-0.572217,-0.572217,-0.572217 +-0.564612,-0.564612,-0.564612,-0.564612,-0.564612,-0.564612 +-0.557007,-0.557007,-0.557007,-0.557007,-0.557007,-0.557007 +-0.549402,-0.549402,-0.549402,-0.549402,-0.549402,-0.549402 +-0.541797,-0.541797,-0.541797,-0.541797,-0.541797,-0.541797 +-0.534192,-0.534192,-0.534192,-0.534192,-0.534192,-0.534192 +-0.526587,-0.526587,-0.526587,-0.526587,-0.526587,-0.526587 +-0.518982,-0.518982,-0.518982,-0.518982,-0.518982,-0.518982 +-0.511377,-0.511377,-0.511377,-0.511377,-0.511377,-0.511377 +-0.503772,-0.503772,-0.503772,-0.503772,-0.503772,-0.503772 +-0.496167,-0.496167,-0.496167,-0.496167,-0.496167,-0.496167 +-0.488562,-0.488562,-0.488562,-0.488562,-0.488562,-0.488562 +-0.480957,-0.480957,-0.480957,-0.480957,-0.480957,-0.480957 +-0.473352,-0.473352,-0.473352,-0.473352,-0.473352,-0.473352 +-0.465747,-0.465747,-0.465747,-0.465747,-0.465747,-0.465747 +-0.458142,-0.458142,-0.458142,-0.458142,-0.458142,-0.458142 +-0.450537,-0.450537,-0.450537,-0.450537,-0.450537,-0.450537 +-0.442932,-0.442932,-0.442932,-0.442932,-0.442932,-0.442932 +-0.435327,-0.435327,-0.435327,-0.435327,-0.435327,-0.435327 +-0.427722,-0.427722,-0.427722,-0.427722,-0.427722,-0.427722 +-0.420117,-0.420117,-0.420117,-0.420117,-0.420117,-0.420117 +-0.412512,-0.412512,-0.412512,-0.412512,-0.412512,-0.412512 +-0.404907,-0.404907,-0.404907,-0.404907,-0.404907,-0.404907 +-0.397302,-0.397302,-0.397302,-0.397302,-0.397302,-0.397302 +-0.389697,-0.389697,-0.389697,-0.389697,-0.389697,-0.389697 +-0.382092,-0.382092,-0.382092,-0.382092,-0.382092,-0.382092 +-0.374487,-0.374487,-0.374487,-0.374487,-0.374487,-0.374487 +-0.366882,-0.366882,-0.366882,-0.366882,-0.366882,-0.366882 +-0.359277,-0.359277,-0.359277,-0.359277,-0.359277,-0.359277 +-0.351672,-0.351672,-0.351672,-0.351672,-0.351672,-0.351672 +-0.344067,-0.344067,-0.344067,-0.344067,-0.344067,-0.344067 +-0.336462,-0.336462,-0.336462,-0.336462,-0.336462,-0.336462 +-0.328857,-0.328857,-0.328857,-0.328857,-0.328857,-0.328857 +-0.321252,-0.321252,-0.321252,-0.321252,-0.321252,-0.321252 +-0.313647,-0.313647,-0.313647,-0.313647,-0.313647,-0.313647 +-0.306042,-0.306042,-0.306042,-0.306042,-0.306042,-0.306042 +-0.298437,-0.298437,-0.298437,-0.298437,-0.298437,-0.298437 +-0.290832,-0.290832,-0.290832,-0.290832,-0.290832,-0.290832 +-0.283227,-0.283227,-0.283227,-0.283227,-0.283227,-0.283227 +-0.275622,-0.275622,-0.275622,-0.275622,-0.275622,-0.275622 +-0.268017,-0.268017,-0.268017,-0.268017,-0.268017,-0.268017 +-0.260412,-0.260412,-0.260412,-0.260412,-0.260412,-0.260412 +-0.252807,-0.252807,-0.252807,-0.252807,-0.252807,-0.252807 +-0.245202,-0.245202,-0.245202,-0.245202,-0.245202,-0.245202 +-0.237597,-0.237597,-0.237597,-0.237597,-0.237597,-0.237597 +-0.229992,-0.229992,-0.229992,-0.229992,-0.229992,-0.229992 +-0.222387,-0.222387,-0.222387,-0.222387,-0.222387,-0.222387 +-0.214782,-0.214782,-0.214782,-0.214782,-0.214782,-0.214782 +-0.207177,-0.207177,-0.207177,-0.207177,-0.207177,-0.207177 +-0.199572,-0.199572,-0.199572,-0.199572,-0.199572,-0.199572 +-0.191967,-0.191967,-0.191967,-0.191967,-0.191967,-0.191967 +-0.184362,-0.184362,-0.184362,-0.184362,-0.184362,-0.184362 +-0.176757,-0.176757,-0.176757,-0.176757,-0.176757,-0.176757 +-0.169152,-0.169152,-0.169152,-0.169152,-0.169152,-0.169152 +-0.161547,-0.161547,-0.161547,-0.161547,-0.161547,-0.161547 +-0.153942,-0.153942,-0.153942,-0.153942,-0.153942,-0.153942 +-0.146337,-0.146337,-0.146337,-0.146337,-0.146337,-0.146337 +-0.138743,-0.138743,-0.138743,-0.138743,-0.138743,-0.138743 +-0.131178,-0.131178,-0.131178,-0.131178,-0.131178,-0.131178 +-0.123662,-0.123662,-0.123662,-0.123662,-0.123662,-0.123662 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.108854,-0.108854,-0.108854,-0.108854,-0.108854,-0.108854 +-0.101602,-0.101602,-0.101602,-0.101602,-0.101602,-0.101602 +-0.094476,-0.094476,-0.094476,-0.094476,-0.094476,-0.094476 +-0.087497,-0.087497,-0.087497,-0.087497,-0.087497,-0.087497 +-0.080684,-0.080684,-0.080684,-0.080684,-0.080684,-0.080684 +-0.074056,-0.074056,-0.074056,-0.074056,-0.074056,-0.074056 +-0.067633,-0.067633,-0.067633,-0.067633,-0.067633,-0.067633 +-0.061434,-0.061434,-0.061434,-0.061434,-0.061434,-0.061434 +-0.055479,-0.055479,-0.055479,-0.055479,-0.055479,-0.055479 +-0.049788,-0.049788,-0.049788,-0.049788,-0.049788,-0.049788 +-0.044379,-0.044379,-0.044379,-0.044379,-0.044379,-0.044379 +-0.039273,-0.039273,-0.039273,-0.039273,-0.039273,-0.039273 +-0.034488,-0.034488,-0.034488,-0.034488,-0.034488,-0.034488 +-0.030045,-0.030045,-0.030045,-0.030045,-0.030045,-0.030045 +-0.025963,-0.025963,-0.025963,-0.025963,-0.025963,-0.025963 +-0.022259,-0.022259,-0.022259,-0.022259,-0.022259,-0.022259 +-0.018924,-0.018924,-0.018924,-0.018924,-0.018924,-0.018924 +-0.015941,-0.015941,-0.015941,-0.015941,-0.015941,-0.015941 +-0.013289,-0.013289,-0.013289,-0.013289,-0.013289,-0.013289 +-0.010948,-0.010948,-0.010948,-0.010948,-0.010948,-0.010948 +-0.0089,-0.0089,-0.0089,-0.0089,-0.0089,-0.0089 +-0.007125,-0.007125,-0.007125,-0.007125,-0.007125,-0.007125 +-0.005603,-0.005603,-0.005603,-0.005603,-0.005603,-0.005603 +-0.004315,-0.004315,-0.004315,-0.004315,-0.004315,-0.004315 +-0.003241,-0.003241,-0.003241,-0.003241,-0.003241,-0.003241 +-0.002362,-0.002362,-0.002362,-0.002362,-0.002362,-0.002362 +-0.001658,-0.001658,-0.001658,-0.001658,-0.001658,-0.001658 +-0.00111,-0.00111,-0.00111,-0.00111,-0.00111,-0.00111 +-0.000699,-0.000699,-0.000699,-0.000699,-0.000699,-0.000699 +-0.000404,-0.000404,-0.000404,-0.000404,-0.000404,-0.000404 +-0.000207,-0.000207,-0.000207,-0.000207,-0.000207,-0.000207 +-0.000087,-0.000087,-0.000087,-0.000087,-0.000087,-0.000087 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000088,0.000088,0.000088,0.000088,0.000088,0.000088 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.000406,0.000406,0.000406,0.000406,0.000406,0.000406 +0.000702,0.000702,0.000702,0.000702,0.000702,0.000702 +0.001115,0.001115,0.001115,0.001115,0.001115,0.001115 +0.001664,0.001664,0.001664,0.001664,0.001664,0.001664 +0.002369,0.002369,0.002369,0.002369,0.002369,0.002369 +0.00325,0.00325,0.00325,0.00325,0.00325,0.00325 +0.004326,0.004326,0.004326,0.004326,0.004326,0.004326 +0.005616,0.005616,0.005616,0.005616,0.005616,0.005616 +0.00714,0.00714,0.00714,0.00714,0.00714,0.00714 +0.008918,0.008918,0.008918,0.008918,0.008918,0.008918 +0.010969,0.010969,0.010969,0.010969,0.010969,0.010969 +0.013312,0.013312,0.013312,0.013312,0.013312,0.013312 +0.015967,0.015967,0.015967,0.015967,0.015967,0.015967 +0.018954,0.018954,0.018954,0.018954,0.018954,0.018954 +0.022292,0.022292,0.022292,0.022292,0.022292,0.022292 +0.026,0.026,0.026,0.026,0.026,0.026 +0.030086,0.030086,0.030086,0.030086,0.030086,0.030086 +0.034532,0.034532,0.034532,0.034532,0.034532,0.034532 +0.039319,0.039319,0.039319,0.039319,0.039319,0.039319 +0.044428,0.044428,0.044428,0.044428,0.044428,0.044428 +0.04984,0.04984,0.04984,0.04984,0.04984,0.04984 +0.055534,0.055534,0.055534,0.055534,0.055534,0.055534 +0.061491,0.061491,0.061491,0.061491,0.061491,0.061491 +0.067692,0.067692,0.067692,0.067692,0.067692,0.067692 +0.074117,0.074117,0.074117,0.074117,0.074117,0.074117 +0.080747,0.080747,0.080747,0.080747,0.080747,0.080747 +0.087562,0.087562,0.087562,0.087562,0.087562,0.087562 +0.094543,0.094543,0.094543,0.094543,0.094543,0.094543 +0.10167,0.10167,0.10167,0.10167,0.10167,0.10167 +0.108923,0.108923,0.108923,0.108923,0.108923,0.108923 +0.116284,0.116284,0.116284,0.116284,0.116284,0.116284 +0.123732,0.123732,0.123732,0.123732,0.123732,0.123732 +0.131249,0.131249,0.131249,0.131249,0.131249,0.131249 +0.138814,0.138814,0.138814,0.138814,0.138814,0.138814 +0.146409,0.146409,0.146409,0.146409,0.146409,0.146409 +0.154013,0.154013,0.154013,0.154013,0.154013,0.154013 +0.161618,0.161618,0.161618,0.161618,0.161618,0.161618 +0.169223,0.169223,0.169223,0.169223,0.169223,0.169223 +0.176828,0.176828,0.176828,0.176828,0.176828,0.176828 +0.184433,0.184433,0.184433,0.184433,0.184433,0.184433 +0.192038,0.192038,0.192038,0.192038,0.192038,0.192038 +0.199643,0.199643,0.199643,0.199643,0.199643,0.199643 +0.207248,0.207248,0.207248,0.207248,0.207248,0.207248 +0.214853,0.214853,0.214853,0.214853,0.214853,0.214853 +0.222458,0.222458,0.222458,0.222458,0.222458,0.222458 +0.230063,0.230063,0.230063,0.230063,0.230063,0.230063 +0.237668,0.237668,0.237668,0.237668,0.237668,0.237668 +0.245273,0.245273,0.245273,0.245273,0.245273,0.245273 +0.252878,0.252878,0.252878,0.252878,0.252878,0.252878 +0.260483,0.260483,0.260483,0.260483,0.260483,0.260483 +0.268088,0.268088,0.268088,0.268088,0.268088,0.268088 +0.275693,0.275693,0.275693,0.275693,0.275693,0.275693 +0.283298,0.283298,0.283298,0.283298,0.283298,0.283298 +0.290903,0.290903,0.290903,0.290903,0.290903,0.290903 +0.298508,0.298508,0.298508,0.298508,0.298508,0.298508 +0.306113,0.306113,0.306113,0.306113,0.306113,0.306113 +0.313718,0.313718,0.313718,0.313718,0.313718,0.313718 +0.321323,0.321323,0.321323,0.321323,0.321323,0.321323 +0.328928,0.328928,0.328928,0.328928,0.328928,0.328928 +0.336533,0.336533,0.336533,0.336533,0.336533,0.336533 +0.344138,0.344138,0.344138,0.344138,0.344138,0.344138 +0.351743,0.351743,0.351743,0.351743,0.351743,0.351743 +0.359348,0.359348,0.359348,0.359348,0.359348,0.359348 +0.366953,0.366953,0.366953,0.366953,0.366953,0.366953 +0.374558,0.374558,0.374558,0.374558,0.374558,0.374558 +0.382163,0.382163,0.382163,0.382163,0.382163,0.382163 +0.389768,0.389768,0.389768,0.389768,0.389768,0.389768 +0.397373,0.397373,0.397373,0.397373,0.397373,0.397373 +0.404978,0.404978,0.404978,0.404978,0.404978,0.404978 +0.412583,0.412583,0.412583,0.412583,0.412583,0.412583 +0.420188,0.420188,0.420188,0.420188,0.420188,0.420188 +0.427793,0.427793,0.427793,0.427793,0.427793,0.427793 +0.435398,0.435398,0.435398,0.435398,0.435398,0.435398 +0.443003,0.443003,0.443003,0.443003,0.443003,0.443003 +0.450608,0.450608,0.450608,0.450608,0.450608,0.450608 +0.458213,0.458213,0.458213,0.458213,0.458213,0.458213 +0.465818,0.465818,0.465818,0.465818,0.465818,0.465818 +0.473423,0.473423,0.473423,0.473423,0.473423,0.473423 +0.481028,0.481028,0.481028,0.481028,0.481028,0.481028 +0.488633,0.488633,0.488633,0.488633,0.488633,0.488633 +0.496238,0.496238,0.496238,0.496238,0.496238,0.496238 +0.503843,0.503843,0.503843,0.503843,0.503843,0.503843 +0.511448,0.511448,0.511448,0.511448,0.511448,0.511448 +0.519053,0.519053,0.519053,0.519053,0.519053,0.519053 +0.526658,0.526658,0.526658,0.526658,0.526658,0.526658 +0.534263,0.534263,0.534263,0.534263,0.534263,0.534263 +0.541868,0.541868,0.541868,0.541868,0.541868,0.541868 +0.549473,0.549473,0.549473,0.549473,0.549473,0.549473 +0.557078,0.557078,0.557078,0.557078,0.557078,0.557078 +0.564683,0.564683,0.564683,0.564683,0.564683,0.564683 +0.572288,0.572288,0.572288,0.572288,0.572288,0.572288 +0.579893,0.579893,0.579893,0.579893,0.579893,0.579893 +0.587498,0.587498,0.587498,0.587498,0.587498,0.587498 +0.595103,0.595103,0.595103,0.595103,0.595103,0.595103 +0.602708,0.602708,0.602708,0.602708,0.602708,0.602708 +0.610313,0.610313,0.610313,0.610313,0.610313,0.610313 +0.617918,0.617918,0.617918,0.617918,0.617918,0.617918 +0.625523,0.625523,0.625523,0.625523,0.625523,0.625523 +0.633128,0.633128,0.633128,0.633128,0.633128,0.633128 +0.640733,0.640733,0.640733,0.640733,0.640733,0.640733 +0.648338,0.648338,0.648338,0.648338,0.648338,0.648338 +0.655943,0.655943,0.655943,0.655943,0.655943,0.655943 +0.663548,0.663548,0.663548,0.663548,0.663548,0.663548 +0.671153,0.671153,0.671153,0.671153,0.671153,0.671153 +0.678758,0.678758,0.678758,0.678758,0.678758,0.678758 +0.686363,0.686363,0.686363,0.686363,0.686363,0.686363 +0.693968,0.693968,0.693968,0.693968,0.693968,0.693968 +0.701573,0.701573,0.701573,0.701573,0.701573,0.701573 +0.709178,0.709178,0.709178,0.709178,0.709178,0.709178 +0.716783,0.716783,0.716783,0.716783,0.716783,0.716783 +0.724388,0.724388,0.724388,0.724388,0.724388,0.724388 +0.731993,0.731993,0.731993,0.731993,0.731993,0.731993 +0.739598,0.739598,0.739598,0.739598,0.739598,0.739598 +0.747203,0.747203,0.747203,0.747203,0.747203,0.747203 +0.754808,0.754808,0.754808,0.754808,0.754808,0.754808 +0.762413,0.762413,0.762413,0.762413,0.762413,0.762413 +0.770018,0.770018,0.770018,0.770018,0.770018,0.770018 +0.777623,0.777623,0.777623,0.777623,0.777623,0.777623 +0.785228,0.785228,0.785228,0.785228,0.785228,0.785228 +0.792833,0.792833,0.792833,0.792833,0.792833,0.792833 +0.800438,0.800438,0.800438,0.800438,0.800438,0.800438 +0.808043,0.808043,0.808043,0.808043,0.808043,0.808043 +0.815648,0.815648,0.815648,0.815648,0.815648,0.815648 +0.823253,0.823253,0.823253,0.823253,0.823253,0.823253 +0.830858,0.830858,0.830858,0.830858,0.830858,0.830858 +0.838463,0.838463,0.838463,0.838463,0.838463,0.838463 +0.846068,0.846068,0.846068,0.846068,0.846068,0.846068 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.861278,0.861278,0.861278,0.861278,0.861278,0.861278 +0.868883,0.868883,0.868883,0.868883,0.868883,0.868883 +0.876488,0.876488,0.876488,0.876488,0.876488,0.876488 +0.884093,0.884093,0.884093,0.884093,0.884093,0.884093 +0.891698,0.891698,0.891698,0.891698,0.891698,0.891698 +0.899303,0.899303,0.899303,0.899303,0.899303,0.899303 +0.906908,0.906908,0.906908,0.906908,0.906908,0.906908 +0.914513,0.914513,0.914513,0.914513,0.914513,0.914513 +0.922118,0.922118,0.922118,0.922118,0.922118,0.922118 +0.929723,0.929723,0.929723,0.929723,0.929723,0.929723 +0.937328,0.937328,0.937328,0.937328,0.937328,0.937328 +0.944933,0.944933,0.944933,0.944933,0.944933,0.944933 +0.952538,0.952538,0.952538,0.952538,0.952538,0.952538 +0.960143,0.960143,0.960143,0.960143,0.960143,0.960143 +0.967748,0.967748,0.967748,0.967748,0.967748,0.967748 +0.975353,0.975353,0.975353,0.975353,0.975353,0.975353 +0.982958,0.982958,0.982958,0.982958,0.982958,0.982958 +0.990563,0.990563,0.990563,0.990563,0.990563,0.990563 +0.998168,0.998168,0.998168,0.998168,0.998168,0.998168 +1.005773,1.005773,1.005773,1.005773,1.005773,1.005773 +1.013378,1.013378,1.013378,1.013378,1.013378,1.013378 +1.020983,1.020983,1.020983,1.020983,1.020983,1.020983 +1.028588,1.028588,1.028588,1.028588,1.028588,1.028588 +1.036193,1.036193,1.036193,1.036193,1.036193,1.036193 +1.043798,1.043798,1.043798,1.043798,1.043798,1.043798 +1.051403,1.051403,1.051403,1.051403,1.051403,1.051403 +1.059008,1.059008,1.059008,1.059008,1.059008,1.059008 +1.066613,1.066613,1.066613,1.066613,1.066613,1.066613 +1.074218,1.074218,1.074218,1.074218,1.074218,1.074218 +1.081823,1.081823,1.081823,1.081823,1.081823,1.081823 +1.089428,1.089428,1.089428,1.089428,1.089428,1.089428 +1.097033,1.097033,1.097033,1.097033,1.097033,1.097033 +1.104638,1.104638,1.104638,1.104638,1.104638,1.104638 +1.112243,1.112243,1.112243,1.112243,1.112243,1.112243 +1.119848,1.119848,1.119848,1.119848,1.119848,1.119848 +1.127453,1.127453,1.127453,1.127453,1.127453,1.127453 +1.135058,1.135058,1.135058,1.135058,1.135058,1.135058 +1.142663,1.142663,1.142663,1.142663,1.142663,1.142663 +1.150268,1.150268,1.150268,1.150268,1.150268,1.150268 +1.157873,1.157873,1.157873,1.157873,1.157873,1.157873 +1.165478,1.165478,1.165478,1.165478,1.165478,1.165478 +1.173083,1.173083,1.173083,1.173083,1.173083,1.173083 +1.180688,1.180688,1.180688,1.180688,1.180688,1.180688 +1.188293,1.188293,1.188293,1.188293,1.188293,1.188293 +1.195898,1.195898,1.195898,1.195898,1.195898,1.195898 +1.203503,1.203503,1.203503,1.203503,1.203503,1.203503 +1.211108,1.211108,1.211108,1.211108,1.211108,1.211108 +1.218713,1.218713,1.218713,1.218713,1.218713,1.218713 +1.226318,1.226318,1.226318,1.226318,1.226318,1.226318 +1.233923,1.233923,1.233923,1.233923,1.233923,1.233923 +1.241528,1.241528,1.241528,1.241528,1.241528,1.241528 +1.249133,1.249133,1.249133,1.249133,1.249133,1.249133 +1.256738,1.256738,1.256738,1.256738,1.256738,1.256738 +1.264343,1.264343,1.264343,1.264343,1.264343,1.264343 +1.271948,1.271948,1.271948,1.271948,1.271948,1.271948 +1.279553,1.279553,1.279553,1.279553,1.279553,1.279553 +1.287158,1.287158,1.287158,1.287158,1.287158,1.287158 +1.294763,1.294763,1.294763,1.294763,1.294763,1.294763 +1.302368,1.302368,1.302368,1.302368,1.302368,1.302368 +1.309973,1.309973,1.309973,1.309973,1.309973,1.309973 +1.317578,1.317578,1.317578,1.317578,1.317578,1.317578 +1.325183,1.325183,1.325183,1.325183,1.325183,1.325183 +1.332788,1.332788,1.332788,1.332788,1.332788,1.332788 +1.340393,1.340393,1.340393,1.340393,1.340393,1.340393 +1.347998,1.347998,1.347998,1.347998,1.347998,1.347998 +1.355603,1.355603,1.355603,1.355603,1.355603,1.355603 +1.363208,1.363208,1.363208,1.363208,1.363208,1.363208 +1.370813,1.370813,1.370813,1.370813,1.370813,1.370813 +1.378418,1.378418,1.378418,1.378418,1.378418,1.378418 +1.386023,1.386023,1.386023,1.386023,1.386023,1.386023 +1.393628,1.393628,1.393628,1.393628,1.393628,1.393628 +1.401233,1.401233,1.401233,1.401233,1.401233,1.401233 +1.408838,1.408838,1.408838,1.408838,1.408838,1.408838 +1.416443,1.416443,1.416443,1.416443,1.416443,1.416443 +1.424048,1.424048,1.424048,1.424048,1.424048,1.424048 +1.431653,1.431653,1.431653,1.431653,1.431653,1.431653 +1.439258,1.439258,1.439258,1.439258,1.439258,1.439258 +1.446863,1.446863,1.446863,1.446863,1.446863,1.446863 +1.454468,1.454468,1.454468,1.454468,1.454468,1.454468 +1.462073,1.462073,1.462073,1.462073,1.462073,1.462073 +1.469678,1.469678,1.469678,1.469678,1.469678,1.469678 +1.477283,1.477283,1.477283,1.477283,1.477283,1.477283 +1.484888,1.484888,1.484888,1.484888,1.484888,1.484888 +1.492493,1.492493,1.492493,1.492493,1.492493,1.492493 +1.500098,1.500098,1.500098,1.500098,1.500098,1.500098 +1.507703,1.507703,1.507703,1.507703,1.507703,1.507703 +1.515308,1.515308,1.515308,1.515308,1.515308,1.515308 +1.522913,1.522913,1.522913,1.522913,1.522913,1.522913 +1.530518,1.530518,1.530518,1.530518,1.530518,1.530518 +1.538123,1.538123,1.538123,1.538123,1.538123,1.538123 +1.545728,1.545728,1.545728,1.545728,1.545728,1.545728 +1.553333,1.553333,1.553333,1.553333,1.553333,1.553333 +1.560938,1.560938,1.560938,1.560938,1.560938,1.560938 +1.568543,1.568543,1.568543,1.568543,1.568543,1.568543 +1.576148,1.576148,1.576148,1.576148,1.576148,1.576148 +1.583753,1.583753,1.583753,1.583753,1.583753,1.583753 +1.591358,1.591358,1.591358,1.591358,1.591358,1.591358 +1.598963,1.598963,1.598963,1.598963,1.598963,1.598963 +1.606557,1.606557,1.606557,1.606557,1.606557,1.606557 +1.614122,1.614122,1.614122,1.614122,1.614122,1.614122 +1.621638,1.621638,1.621638,1.621638,1.621638,1.621638 +1.629086,1.629086,1.629086,1.629086,1.629086,1.629086 +1.636446,1.636446,1.636446,1.636446,1.636446,1.636446 +1.643698,1.643698,1.643698,1.643698,1.643698,1.643698 +1.650824,1.650824,1.650824,1.650824,1.650824,1.650824 +1.657803,1.657803,1.657803,1.657803,1.657803,1.657803 +1.664616,1.664616,1.664616,1.664616,1.664616,1.664616 +1.671244,1.671244,1.671244,1.671244,1.671244,1.671244 +1.677667,1.677667,1.677667,1.677667,1.677667,1.677667 +1.683866,1.683866,1.683866,1.683866,1.683866,1.683866 +1.689821,1.689821,1.689821,1.689821,1.689821,1.689821 +1.695512,1.695512,1.695512,1.695512,1.695512,1.695512 +1.700921,1.700921,1.700921,1.700921,1.700921,1.700921 +1.706027,1.706027,1.706027,1.706027,1.706027,1.706027 +1.710812,1.710812,1.710812,1.710812,1.710812,1.710812 +1.715255,1.715255,1.715255,1.715255,1.715255,1.715255 +1.719337,1.719337,1.719337,1.719337,1.719337,1.719337 +1.723041,1.723041,1.723041,1.723041,1.723041,1.723041 +1.726376,1.726376,1.726376,1.726376,1.726376,1.726376 +1.729359,1.729359,1.729359,1.729359,1.729359,1.729359 +1.732011,1.732011,1.732011,1.732011,1.732011,1.732011 +1.734352,1.734352,1.734352,1.734352,1.734352,1.734352 +1.7364,1.7364,1.7364,1.7364,1.7364,1.7364 +1.738175,1.738175,1.738175,1.738175,1.738175,1.738175 +1.739697,1.739697,1.739697,1.739697,1.739697,1.739697 +1.740985,1.740985,1.740985,1.740985,1.740985,1.740985 +1.742059,1.742059,1.742059,1.742059,1.742059,1.742059 +1.742938,1.742938,1.742938,1.742938,1.742938,1.742938 +1.743642,1.743642,1.743642,1.743642,1.743642,1.743642 +1.74419,1.74419,1.74419,1.74419,1.74419,1.74419 +1.744601,1.744601,1.744601,1.744601,1.744601,1.744601 +1.744896,1.744896,1.744896,1.744896,1.744896,1.744896 +1.745093,1.745093,1.745093,1.745093,1.745093,1.745093 +1.745213,1.745213,1.745213,1.745213,1.745213,1.745213 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745212,1.745212,1.745212,1.745212,1.745212,1.745212 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.744894,1.744894,1.744894,1.744894,1.744894,1.744894 +1.744598,1.744598,1.744598,1.744598,1.744598,1.744598 +1.744185,1.744185,1.744185,1.744185,1.744185,1.744185 +1.743636,1.743636,1.743636,1.743636,1.743636,1.743636 +1.742931,1.742931,1.742931,1.742931,1.742931,1.742931 +1.74205,1.74205,1.74205,1.74205,1.74205,1.74205 +1.740974,1.740974,1.740974,1.740974,1.740974,1.740974 +1.739684,1.739684,1.739684,1.739684,1.739684,1.739684 +1.73816,1.73816,1.73816,1.73816,1.73816,1.73816 +1.736382,1.736382,1.736382,1.736382,1.736382,1.736382 +1.734331,1.734331,1.734331,1.734331,1.734331,1.734331 +1.731988,1.731988,1.731988,1.731988,1.731988,1.731988 +1.729333,1.729333,1.729333,1.729333,1.729333,1.729333 +1.726346,1.726346,1.726346,1.726346,1.726346,1.726346 +1.723008,1.723008,1.723008,1.723008,1.723008,1.723008 +1.7193,1.7193,1.7193,1.7193,1.7193,1.7193 +1.715214,1.715214,1.715214,1.715214,1.715214,1.715214 +1.710768,1.710768,1.710768,1.710768,1.710768,1.710768 +1.705981,1.705981,1.705981,1.705981,1.705981,1.705981 +1.700872,1.700872,1.700872,1.700872,1.700872,1.700872 +1.69546,1.69546,1.69546,1.69546,1.69546,1.69546 +1.689766,1.689766,1.689766,1.689766,1.689766,1.689766 +1.683809,1.683809,1.683809,1.683809,1.683809,1.683809 +1.677608,1.677608,1.677608,1.677608,1.677608,1.677608 +1.671183,1.671183,1.671183,1.671183,1.671183,1.671183 +1.664553,1.664553,1.664553,1.664553,1.664553,1.664553 +1.657738,1.657738,1.657738,1.657738,1.657738,1.657738 +1.650757,1.650757,1.650757,1.650757,1.650757,1.650757 +1.64363,1.64363,1.64363,1.64363,1.64363,1.64363 +1.636377,1.636377,1.636377,1.636377,1.636377,1.636377 +1.629016,1.629016,1.629016,1.629016,1.629016,1.629016 +1.621568,1.621568,1.621568,1.621568,1.621568,1.621568 +1.614051,1.614051,1.614051,1.614051,1.614051,1.614051 +1.606486,1.606486,1.606486,1.606486,1.606486,1.606486 +1.598891,1.598891,1.598891,1.598891,1.598891,1.598891 +1.591287,1.591287,1.591287,1.591287,1.591287,1.591287 +1.583682,1.583682,1.583682,1.583682,1.583682,1.583682 +1.576077,1.576077,1.576077,1.576077,1.576077,1.576077 +1.568472,1.568472,1.568472,1.568472,1.568472,1.568472 +1.560867,1.560867,1.560867,1.560867,1.560867,1.560867 +1.553262,1.553262,1.553262,1.553262,1.553262,1.553262 +1.545657,1.545657,1.545657,1.545657,1.545657,1.545657 +1.538052,1.538052,1.538052,1.538052,1.538052,1.538052 +1.530447,1.530447,1.530447,1.530447,1.530447,1.530447 +1.522842,1.522842,1.522842,1.522842,1.522842,1.522842 +1.515237,1.515237,1.515237,1.515237,1.515237,1.515237 +1.507632,1.507632,1.507632,1.507632,1.507632,1.507632 +1.500027,1.500027,1.500027,1.500027,1.500027,1.500027 +1.492422,1.492422,1.492422,1.492422,1.492422,1.492422 +1.484817,1.484817,1.484817,1.484817,1.484817,1.484817 +1.477212,1.477212,1.477212,1.477212,1.477212,1.477212 +1.469607,1.469607,1.469607,1.469607,1.469607,1.469607 +1.462002,1.462002,1.462002,1.462002,1.462002,1.462002 +1.454397,1.454397,1.454397,1.454397,1.454397,1.454397 +1.446792,1.446792,1.446792,1.446792,1.446792,1.446792 +1.439187,1.439187,1.439187,1.439187,1.439187,1.439187 +1.431582,1.431582,1.431582,1.431582,1.431582,1.431582 +1.423977,1.423977,1.423977,1.423977,1.423977,1.423977 +1.416372,1.416372,1.416372,1.416372,1.416372,1.416372 +1.408767,1.408767,1.408767,1.408767,1.408767,1.408767 +1.401162,1.401162,1.401162,1.401162,1.401162,1.401162 +1.393557,1.393557,1.393557,1.393557,1.393557,1.393557 +1.385952,1.385952,1.385952,1.385952,1.385952,1.385952 +1.378347,1.378347,1.378347,1.378347,1.378347,1.378347 +1.370742,1.370742,1.370742,1.370742,1.370742,1.370742 +1.363137,1.363137,1.363137,1.363137,1.363137,1.363137 +1.355532,1.355532,1.355532,1.355532,1.355532,1.355532 +1.347927,1.347927,1.347927,1.347927,1.347927,1.347927 +1.340322,1.340322,1.340322,1.340322,1.340322,1.340322 +1.332717,1.332717,1.332717,1.332717,1.332717,1.332717 +1.325112,1.325112,1.325112,1.325112,1.325112,1.325112 +1.317507,1.317507,1.317507,1.317507,1.317507,1.317507 +1.309902,1.309902,1.309902,1.309902,1.309902,1.309902 +1.302297,1.302297,1.302297,1.302297,1.302297,1.302297 +1.294692,1.294692,1.294692,1.294692,1.294692,1.294692 +1.287087,1.287087,1.287087,1.287087,1.287087,1.287087 +1.279482,1.279482,1.279482,1.279482,1.279482,1.279482 +1.271877,1.271877,1.271877,1.271877,1.271877,1.271877 +1.264272,1.264272,1.264272,1.264272,1.264272,1.264272 +1.256667,1.256667,1.256667,1.256667,1.256667,1.256667 +1.249062,1.249062,1.249062,1.249062,1.249062,1.249062 +1.241457,1.241457,1.241457,1.241457,1.241457,1.241457 +1.233852,1.233852,1.233852,1.233852,1.233852,1.233852 +1.226247,1.226247,1.226247,1.226247,1.226247,1.226247 +1.218642,1.218642,1.218642,1.218642,1.218642,1.218642 +1.211037,1.211037,1.211037,1.211037,1.211037,1.211037 +1.203432,1.203432,1.203432,1.203432,1.203432,1.203432 +1.195827,1.195827,1.195827,1.195827,1.195827,1.195827 +1.188222,1.188222,1.188222,1.188222,1.188222,1.188222 +1.180617,1.180617,1.180617,1.180617,1.180617,1.180617 +1.173012,1.173012,1.173012,1.173012,1.173012,1.173012 +1.165407,1.165407,1.165407,1.165407,1.165407,1.165407 +1.157802,1.157802,1.157802,1.157802,1.157802,1.157802 +1.150197,1.150197,1.150197,1.150197,1.150197,1.150197 +1.142592,1.142592,1.142592,1.142592,1.142592,1.142592 +1.134987,1.134987,1.134987,1.134987,1.134987,1.134987 +1.127382,1.127382,1.127382,1.127382,1.127382,1.127382 +1.119777,1.119777,1.119777,1.119777,1.119777,1.119777 +1.112172,1.112172,1.112172,1.112172,1.112172,1.112172 +1.104567,1.104567,1.104567,1.104567,1.104567,1.104567 +1.096962,1.096962,1.096962,1.096962,1.096962,1.096962 +1.089357,1.089357,1.089357,1.089357,1.089357,1.089357 +1.081752,1.081752,1.081752,1.081752,1.081752,1.081752 +1.074147,1.074147,1.074147,1.074147,1.074147,1.074147 +1.066542,1.066542,1.066542,1.066542,1.066542,1.066542 +1.058937,1.058937,1.058937,1.058937,1.058937,1.058937 +1.051332,1.051332,1.051332,1.051332,1.051332,1.051332 +1.043727,1.043727,1.043727,1.043727,1.043727,1.043727 +1.036122,1.036122,1.036122,1.036122,1.036122,1.036122 +1.028517,1.028517,1.028517,1.028517,1.028517,1.028517 +1.020912,1.020912,1.020912,1.020912,1.020912,1.020912 +1.013307,1.013307,1.013307,1.013307,1.013307,1.013307 +1.005702,1.005702,1.005702,1.005702,1.005702,1.005702 +0.998097,0.998097,0.998097,0.998097,0.998097,0.998097 +0.990492,0.990492,0.990492,0.990492,0.990492,0.990492 +0.982887,0.982887,0.982887,0.982887,0.982887,0.982887 +0.975282,0.975282,0.975282,0.975282,0.975282,0.975282 +0.967677,0.967677,0.967677,0.967677,0.967677,0.967677 +0.960072,0.960072,0.960072,0.960072,0.960072,0.960072 +0.952467,0.952467,0.952467,0.952467,0.952467,0.952467 +0.944862,0.944862,0.944862,0.944862,0.944862,0.944862 +0.937257,0.937257,0.937257,0.937257,0.937257,0.937257 +0.929652,0.929652,0.929652,0.929652,0.929652,0.929652 +0.922047,0.922047,0.922047,0.922047,0.922047,0.922047 +0.914442,0.914442,0.914442,0.914442,0.914442,0.914442 +0.906837,0.906837,0.906837,0.906837,0.906837,0.906837 +0.899232,0.899232,0.899232,0.899232,0.899232,0.899232 +0.891627,0.891627,0.891627,0.891627,0.891627,0.891627 +0.884022,0.884022,0.884022,0.884022,0.884022,0.884022 +0.876417,0.876417,0.876417,0.876417,0.876417,0.876417 +0.868812,0.868812,0.868812,0.868812,0.868812,0.868812 +0.861207,0.861207,0.861207,0.861207,0.861207,0.861207 +0.853602,0.853602,0.853602,0.853602,0.853602,0.853602 +0.845997,0.845997,0.845997,0.845997,0.845997,0.845997 +0.838392,0.838392,0.838392,0.838392,0.838392,0.838392 +0.830787,0.830787,0.830787,0.830787,0.830787,0.830787 +0.823182,0.823182,0.823182,0.823182,0.823182,0.823182 +0.815577,0.815577,0.815577,0.815577,0.815577,0.815577 +0.807972,0.807972,0.807972,0.807972,0.807972,0.807972 +0.800367,0.800367,0.800367,0.800367,0.800367,0.800367 +0.792762,0.792762,0.792762,0.792762,0.792762,0.792762 +0.785157,0.785157,0.785157,0.785157,0.785157,0.785157 +0.777552,0.777552,0.777552,0.777552,0.777552,0.777552 +0.769947,0.769947,0.769947,0.769947,0.769947,0.769947 +0.762342,0.762342,0.762342,0.762342,0.762342,0.762342 +0.754737,0.754737,0.754737,0.754737,0.754737,0.754737 +0.747132,0.747132,0.747132,0.747132,0.747132,0.747132 +0.739527,0.739527,0.739527,0.739527,0.739527,0.739527 +0.731922,0.731922,0.731922,0.731922,0.731922,0.731922 +0.724317,0.724317,0.724317,0.724317,0.724317,0.724317 +0.716712,0.716712,0.716712,0.716712,0.716712,0.716712 +0.709107,0.709107,0.709107,0.709107,0.709107,0.709107 +0.701502,0.701502,0.701502,0.701502,0.701502,0.701502 +0.693897,0.693897,0.693897,0.693897,0.693897,0.693897 +0.686292,0.686292,0.686292,0.686292,0.686292,0.686292 +0.678687,0.678687,0.678687,0.678687,0.678687,0.678687 +0.671082,0.671082,0.671082,0.671082,0.671082,0.671082 +0.663477,0.663477,0.663477,0.663477,0.663477,0.663477 +0.655872,0.655872,0.655872,0.655872,0.655872,0.655872 +0.648267,0.648267,0.648267,0.648267,0.648267,0.648267 +0.640662,0.640662,0.640662,0.640662,0.640662,0.640662 +0.633057,0.633057,0.633057,0.633057,0.633057,0.633057 +0.625452,0.625452,0.625452,0.625452,0.625452,0.625452 +0.617847,0.617847,0.617847,0.617847,0.617847,0.617847 +0.610242,0.610242,0.610242,0.610242,0.610242,0.610242 +0.602637,0.602637,0.602637,0.602637,0.602637,0.602637 +0.595032,0.595032,0.595032,0.595032,0.595032,0.595032 +0.587427,0.587427,0.587427,0.587427,0.587427,0.587427 +0.579822,0.579822,0.579822,0.579822,0.579822,0.579822 +0.572217,0.572217,0.572217,0.572217,0.572217,0.572217 +0.564612,0.564612,0.564612,0.564612,0.564612,0.564612 +0.557007,0.557007,0.557007,0.557007,0.557007,0.557007 +0.549402,0.549402,0.549402,0.549402,0.549402,0.549402 +0.541797,0.541797,0.541797,0.541797,0.541797,0.541797 +0.534192,0.534192,0.534192,0.534192,0.534192,0.534192 +0.526587,0.526587,0.526587,0.526587,0.526587,0.526587 +0.518982,0.518982,0.518982,0.518982,0.518982,0.518982 +0.511377,0.511377,0.511377,0.511377,0.511377,0.511377 +0.503772,0.503772,0.503772,0.503772,0.503772,0.503772 +0.496167,0.496167,0.496167,0.496167,0.496167,0.496167 +0.488562,0.488562,0.488562,0.488562,0.488562,0.488562 +0.480957,0.480957,0.480957,0.480957,0.480957,0.480957 +0.473352,0.473352,0.473352,0.473352,0.473352,0.473352 +0.465747,0.465747,0.465747,0.465747,0.465747,0.465747 +0.458142,0.458142,0.458142,0.458142,0.458142,0.458142 +0.450537,0.450537,0.450537,0.450537,0.450537,0.450537 +0.442932,0.442932,0.442932,0.442932,0.442932,0.442932 +0.435327,0.435327,0.435327,0.435327,0.435327,0.435327 +0.427722,0.427722,0.427722,0.427722,0.427722,0.427722 +0.420117,0.420117,0.420117,0.420117,0.420117,0.420117 +0.412512,0.412512,0.412512,0.412512,0.412512,0.412512 +0.404907,0.404907,0.404907,0.404907,0.404907,0.404907 +0.397302,0.397302,0.397302,0.397302,0.397302,0.397302 +0.389697,0.389697,0.389697,0.389697,0.389697,0.389697 +0.382092,0.382092,0.382092,0.382092,0.382092,0.382092 +0.374487,0.374487,0.374487,0.374487,0.374487,0.374487 +0.366882,0.366882,0.366882,0.366882,0.366882,0.366882 +0.359277,0.359277,0.359277,0.359277,0.359277,0.359277 +0.351672,0.351672,0.351672,0.351672,0.351672,0.351672 +0.344067,0.344067,0.344067,0.344067,0.344067,0.344067 +0.336462,0.336462,0.336462,0.336462,0.336462,0.336462 +0.328857,0.328857,0.328857,0.328857,0.328857,0.328857 +0.321252,0.321252,0.321252,0.321252,0.321252,0.321252 +0.313647,0.313647,0.313647,0.313647,0.313647,0.313647 +0.306042,0.306042,0.306042,0.306042,0.306042,0.306042 +0.298437,0.298437,0.298437,0.298437,0.298437,0.298437 +0.290832,0.290832,0.290832,0.290832,0.290832,0.290832 +0.283227,0.283227,0.283227,0.283227,0.283227,0.283227 +0.275622,0.275622,0.275622,0.275622,0.275622,0.275622 +0.268017,0.268017,0.268017,0.268017,0.268017,0.268017 +0.260412,0.260412,0.260412,0.260412,0.260412,0.260412 +0.252807,0.252807,0.252807,0.252807,0.252807,0.252807 +0.245202,0.245202,0.245202,0.245202,0.245202,0.245202 +0.237597,0.237597,0.237597,0.237597,0.237597,0.237597 +0.229992,0.229992,0.229992,0.229992,0.229992,0.229992 +0.222387,0.222387,0.222387,0.222387,0.222387,0.222387 +0.214782,0.214782,0.214782,0.214782,0.214782,0.214782 +0.207177,0.207177,0.207177,0.207177,0.207177,0.207177 +0.199572,0.199572,0.199572,0.199572,0.199572,0.199572 +0.191967,0.191967,0.191967,0.191967,0.191967,0.191967 +0.184362,0.184362,0.184362,0.184362,0.184362,0.184362 +0.176757,0.176757,0.176757,0.176757,0.176757,0.176757 +0.169152,0.169152,0.169152,0.169152,0.169152,0.169152 +0.161547,0.161547,0.161547,0.161547,0.161547,0.161547 +0.153942,0.153942,0.153942,0.153942,0.153942,0.153942 +0.146337,0.146337,0.146337,0.146337,0.146337,0.146337 +0.138743,0.138743,0.138743,0.138743,0.138743,0.138743 +0.131178,0.131178,0.131178,0.131178,0.131178,0.131178 +0.123662,0.123662,0.123662,0.123662,0.123662,0.123662 +0.116214,0.116214,0.116214,0.116214,0.116214,0.116214 +0.108854,0.108854,0.108854,0.108854,0.108854,0.108854 +0.101602,0.101602,0.101602,0.101602,0.101602,0.101602 +0.094476,0.094476,0.094476,0.094476,0.094476,0.094476 +0.087497,0.087497,0.087497,0.087497,0.087497,0.087497 +0.080684,0.080684,0.080684,0.080684,0.080684,0.080684 +0.074056,0.074056,0.074056,0.074056,0.074056,0.074056 +0.067633,0.067633,0.067633,0.067633,0.067633,0.067633 +0.061434,0.061434,0.061434,0.061434,0.061434,0.061434 +0.055479,0.055479,0.055479,0.055479,0.055479,0.055479 +0.049788,0.049788,0.049788,0.049788,0.049788,0.049788 +0.044379,0.044379,0.044379,0.044379,0.044379,0.044379 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.034488,0.034488,0.034488,0.034488,0.034488,0.034488 +0.030045,0.030045,0.030045,0.030045,0.030045,0.030045 +0.025963,0.025963,0.025963,0.025963,0.025963,0.025963 +0.022259,0.022259,0.022259,0.022259,0.022259,0.022259 +0.018924,0.018924,0.018924,0.018924,0.018924,0.018924 +0.015941,0.015941,0.015941,0.015941,0.015941,0.015941 +0.013289,0.013289,0.013289,0.013289,0.013289,0.013289 +0.010948,0.010948,0.010948,0.010948,0.010948,0.010948 +0.0089,0.0089,0.0089,0.0089,0.0089,0.0089 +0.007125,0.007125,0.007125,0.007125,0.007125,0.007125 +0.005603,0.005603,0.005603,0.005603,0.005603,0.005603 +0.004315,0.004315,0.004315,0.004315,0.004315,0.004315 +0.003241,0.003241,0.003241,0.003241,0.003241,0.003241 +0.002362,0.002362,0.002362,0.002362,0.002362,0.002362 +0.001658,0.001658,0.001658,0.001658,0.001658,0.001658 +0.00111,0.00111,0.00111,0.00111,0.00111,0.00111 +0.000699,0.000699,0.000699,0.000699,0.000699,0.000699 +0.000404,0.000404,0.000404,0.000404,0.000404,0.000404 +0.000207,0.000207,0.000207,0.000207,0.000207,0.000207 +0.000087,0.000087,0.000087,0.000087,0.000087,0.000087 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000088,-0.000088,-0.000088,-0.000088,-0.000088,-0.000088 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000406,-0.000406,-0.000406,-0.000406,-0.000406,-0.000406 +-0.000702,-0.000702,-0.000702,-0.000702,-0.000702,-0.000702 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.001664,-0.001664,-0.001664,-0.001664,-0.001664,-0.001664 +-0.002369,-0.002369,-0.002369,-0.002369,-0.002369,-0.002369 +-0.00325,-0.00325,-0.00325,-0.00325,-0.00325,-0.00325 +-0.004326,-0.004326,-0.004326,-0.004326,-0.004326,-0.004326 +-0.005616,-0.005616,-0.005616,-0.005616,-0.005616,-0.005616 +-0.00714,-0.00714,-0.00714,-0.00714,-0.00714,-0.00714 +-0.008918,-0.008918,-0.008918,-0.008918,-0.008918,-0.008918 +-0.010969,-0.010969,-0.010969,-0.010969,-0.010969,-0.010969 +-0.013312,-0.013312,-0.013312,-0.013312,-0.013312,-0.013312 +-0.015967,-0.015967,-0.015967,-0.015967,-0.015967,-0.015967 +-0.018954,-0.018954,-0.018954,-0.018954,-0.018954,-0.018954 +-0.022292,-0.022292,-0.022292,-0.022292,-0.022292,-0.022292 +-0.026,-0.026,-0.026,-0.026,-0.026,-0.026 +-0.030086,-0.030086,-0.030086,-0.030086,-0.030086,-0.030086 +-0.034532,-0.034532,-0.034532,-0.034532,-0.034532,-0.034532 +-0.039319,-0.039319,-0.039319,-0.039319,-0.039319,-0.039319 +-0.044428,-0.044428,-0.044428,-0.044428,-0.044428,-0.044428 +-0.04984,-0.04984,-0.04984,-0.04984,-0.04984,-0.04984 +-0.055534,-0.055534,-0.055534,-0.055534,-0.055534,-0.055534 +-0.061491,-0.061491,-0.061491,-0.061491,-0.061491,-0.061491 +-0.067692,-0.067692,-0.067692,-0.067692,-0.067692,-0.067692 +-0.074117,-0.074117,-0.074117,-0.074117,-0.074117,-0.074117 +-0.080747,-0.080747,-0.080747,-0.080747,-0.080747,-0.080747 +-0.087562,-0.087562,-0.087562,-0.087562,-0.087562,-0.087562 +-0.094543,-0.094543,-0.094543,-0.094543,-0.094543,-0.094543 +-0.10167,-0.10167,-0.10167,-0.10167,-0.10167,-0.10167 +-0.108923,-0.108923,-0.108923,-0.108923,-0.108923,-0.108923 +-0.116284,-0.116284,-0.116284,-0.116284,-0.116284,-0.116284 +-0.123732,-0.123732,-0.123732,-0.123732,-0.123732,-0.123732 +-0.131249,-0.131249,-0.131249,-0.131249,-0.131249,-0.131249 +-0.138814,-0.138814,-0.138814,-0.138814,-0.138814,-0.138814 +-0.146409,-0.146409,-0.146409,-0.146409,-0.146409,-0.146409 +-0.154013,-0.154013,-0.154013,-0.154013,-0.154013,-0.154013 +-0.161618,-0.161618,-0.161618,-0.161618,-0.161618,-0.161618 +-0.169223,-0.169223,-0.169223,-0.169223,-0.169223,-0.169223 +-0.176828,-0.176828,-0.176828,-0.176828,-0.176828,-0.176828 +-0.184433,-0.184433,-0.184433,-0.184433,-0.184433,-0.184433 +-0.192038,-0.192038,-0.192038,-0.192038,-0.192038,-0.192038 +-0.199643,-0.199643,-0.199643,-0.199643,-0.199643,-0.199643 +-0.207248,-0.207248,-0.207248,-0.207248,-0.207248,-0.207248 +-0.214853,-0.214853,-0.214853,-0.214853,-0.214853,-0.214853 +-0.222458,-0.222458,-0.222458,-0.222458,-0.222458,-0.222458 +-0.230063,-0.230063,-0.230063,-0.230063,-0.230063,-0.230063 +-0.237668,-0.237668,-0.237668,-0.237668,-0.237668,-0.237668 +-0.245273,-0.245273,-0.245273,-0.245273,-0.245273,-0.245273 +-0.252878,-0.252878,-0.252878,-0.252878,-0.252878,-0.252878 +-0.260483,-0.260483,-0.260483,-0.260483,-0.260483,-0.260483 +-0.268088,-0.268088,-0.268088,-0.268088,-0.268088,-0.268088 +-0.275693,-0.275693,-0.275693,-0.275693,-0.275693,-0.275693 +-0.283298,-0.283298,-0.283298,-0.283298,-0.283298,-0.283298 +-0.290903,-0.290903,-0.290903,-0.290903,-0.290903,-0.290903 +-0.298508,-0.298508,-0.298508,-0.298508,-0.298508,-0.298508 +-0.306113,-0.306113,-0.306113,-0.306113,-0.306113,-0.306113 +-0.313718,-0.313718,-0.313718,-0.313718,-0.313718,-0.313718 +-0.321323,-0.321323,-0.321323,-0.321323,-0.321323,-0.321323 +-0.328928,-0.328928,-0.328928,-0.328928,-0.328928,-0.328928 +-0.336533,-0.336533,-0.336533,-0.336533,-0.336533,-0.336533 +-0.344138,-0.344138,-0.344138,-0.344138,-0.344138,-0.344138 +-0.351743,-0.351743,-0.351743,-0.351743,-0.351743,-0.351743 +-0.359348,-0.359348,-0.359348,-0.359348,-0.359348,-0.359348 +-0.366953,-0.366953,-0.366953,-0.366953,-0.366953,-0.366953 +-0.374558,-0.374558,-0.374558,-0.374558,-0.374558,-0.374558 +-0.382163,-0.382163,-0.382163,-0.382163,-0.382163,-0.382163 +-0.389768,-0.389768,-0.389768,-0.389768,-0.389768,-0.389768 +-0.397373,-0.397373,-0.397373,-0.397373,-0.397373,-0.397373 +-0.404978,-0.404978,-0.404978,-0.404978,-0.404978,-0.404978 +-0.412583,-0.412583,-0.412583,-0.412583,-0.412583,-0.412583 +-0.420188,-0.420188,-0.420188,-0.420188,-0.420188,-0.420188 +-0.427793,-0.427793,-0.427793,-0.427793,-0.427793,-0.427793 +-0.435398,-0.435398,-0.435398,-0.435398,-0.435398,-0.435398 +-0.443003,-0.443003,-0.443003,-0.443003,-0.443003,-0.443003 +-0.450608,-0.450608,-0.450608,-0.450608,-0.450608,-0.450608 +-0.458213,-0.458213,-0.458213,-0.458213,-0.458213,-0.458213 +-0.465818,-0.465818,-0.465818,-0.465818,-0.465818,-0.465818 +-0.473423,-0.473423,-0.473423,-0.473423,-0.473423,-0.473423 +-0.481028,-0.481028,-0.481028,-0.481028,-0.481028,-0.481028 +-0.488633,-0.488633,-0.488633,-0.488633,-0.488633,-0.488633 +-0.496238,-0.496238,-0.496238,-0.496238,-0.496238,-0.496238 +-0.503843,-0.503843,-0.503843,-0.503843,-0.503843,-0.503843 +-0.511448,-0.511448,-0.511448,-0.511448,-0.511448,-0.511448 +-0.519053,-0.519053,-0.519053,-0.519053,-0.519053,-0.519053 +-0.526658,-0.526658,-0.526658,-0.526658,-0.526658,-0.526658 +-0.534263,-0.534263,-0.534263,-0.534263,-0.534263,-0.534263 +-0.541868,-0.541868,-0.541868,-0.541868,-0.541868,-0.541868 +-0.549473,-0.549473,-0.549473,-0.549473,-0.549473,-0.549473 +-0.557078,-0.557078,-0.557078,-0.557078,-0.557078,-0.557078 +-0.564683,-0.564683,-0.564683,-0.564683,-0.564683,-0.564683 +-0.572288,-0.572288,-0.572288,-0.572288,-0.572288,-0.572288 +-0.579893,-0.579893,-0.579893,-0.579893,-0.579893,-0.579893 +-0.587498,-0.587498,-0.587498,-0.587498,-0.587498,-0.587498 +-0.595103,-0.595103,-0.595103,-0.595103,-0.595103,-0.595103 +-0.602708,-0.602708,-0.602708,-0.602708,-0.602708,-0.602708 +-0.610313,-0.610313,-0.610313,-0.610313,-0.610313,-0.610313 +-0.617918,-0.617918,-0.617918,-0.617918,-0.617918,-0.617918 +-0.625523,-0.625523,-0.625523,-0.625523,-0.625523,-0.625523 +-0.633128,-0.633128,-0.633128,-0.633128,-0.633128,-0.633128 +-0.640733,-0.640733,-0.640733,-0.640733,-0.640733,-0.640733 +-0.648338,-0.648338,-0.648338,-0.648338,-0.648338,-0.648338 +-0.655943,-0.655943,-0.655943,-0.655943,-0.655943,-0.655943 +-0.663548,-0.663548,-0.663548,-0.663548,-0.663548,-0.663548 +-0.671153,-0.671153,-0.671153,-0.671153,-0.671153,-0.671153 +-0.678758,-0.678758,-0.678758,-0.678758,-0.678758,-0.678758 +-0.686363,-0.686363,-0.686363,-0.686363,-0.686363,-0.686363 +-0.693968,-0.693968,-0.693968,-0.693968,-0.693968,-0.693968 +-0.701573,-0.701573,-0.701573,-0.701573,-0.701573,-0.701573 +-0.709178,-0.709178,-0.709178,-0.709178,-0.709178,-0.709178 +-0.716783,-0.716783,-0.716783,-0.716783,-0.716783,-0.716783 +-0.724388,-0.724388,-0.724388,-0.724388,-0.724388,-0.724388 +-0.731993,-0.731993,-0.731993,-0.731993,-0.731993,-0.731993 +-0.739598,-0.739598,-0.739598,-0.739598,-0.739598,-0.739598 +-0.747203,-0.747203,-0.747203,-0.747203,-0.747203,-0.747203 +-0.754808,-0.754808,-0.754808,-0.754808,-0.754808,-0.754808 +-0.762413,-0.762413,-0.762413,-0.762413,-0.762413,-0.762413 +-0.770018,-0.770018,-0.770018,-0.770018,-0.770018,-0.770018 +-0.777623,-0.777623,-0.777623,-0.777623,-0.777623,-0.777623 +-0.785228,-0.785228,-0.785228,-0.785228,-0.785228,-0.785228 +-0.792833,-0.792833,-0.792833,-0.792833,-0.792833,-0.792833 +-0.800438,-0.800438,-0.800438,-0.800438,-0.800438,-0.800438 +-0.808043,-0.808043,-0.808043,-0.808043,-0.808043,-0.808043 +-0.815648,-0.815648,-0.815648,-0.815648,-0.815648,-0.815648 +-0.823253,-0.823253,-0.823253,-0.823253,-0.823253,-0.823253 +-0.830858,-0.830858,-0.830858,-0.830858,-0.830858,-0.830858 +-0.838463,-0.838463,-0.838463,-0.838463,-0.838463,-0.838463 +-0.846068,-0.846068,-0.846068,-0.846068,-0.846068,-0.846068 +-0.853673,-0.853673,-0.853673,-0.853673,-0.853673,-0.853673 +-0.861278,-0.861278,-0.861278,-0.861278,-0.861278,-0.861278 +-0.868883,-0.868883,-0.868883,-0.868883,-0.868883,-0.868883 +-0.876488,-0.876488,-0.876488,-0.876488,-0.876488,-0.876488 +-0.884093,-0.884093,-0.884093,-0.884093,-0.884093,-0.884093 +-0.891698,-0.891698,-0.891698,-0.891698,-0.891698,-0.891698 +-0.899303,-0.899303,-0.899303,-0.899303,-0.899303,-0.899303 +-0.906908,-0.906908,-0.906908,-0.906908,-0.906908,-0.906908 +-0.914513,-0.914513,-0.914513,-0.914513,-0.914513,-0.914513 +-0.922118,-0.922118,-0.922118,-0.922118,-0.922118,-0.922118 +-0.929723,-0.929723,-0.929723,-0.929723,-0.929723,-0.929723 +-0.937328,-0.937328,-0.937328,-0.937328,-0.937328,-0.937328 +-0.944933,-0.944933,-0.944933,-0.944933,-0.944933,-0.944933 +-0.952538,-0.952538,-0.952538,-0.952538,-0.952538,-0.952538 +-0.960143,-0.960143,-0.960143,-0.960143,-0.960143,-0.960143 +-0.967748,-0.967748,-0.967748,-0.967748,-0.967748,-0.967748 +-0.975353,-0.975353,-0.975353,-0.975353,-0.975353,-0.975353 +-0.982958,-0.982958,-0.982958,-0.982958,-0.982958,-0.982958 +-0.990563,-0.990563,-0.990563,-0.990563,-0.990563,-0.990563 +-0.998168,-0.998168,-0.998168,-0.998168,-0.998168,-0.998168 +-1.005773,-1.005773,-1.005773,-1.005773,-1.005773,-1.005773 +-1.013378,-1.013378,-1.013378,-1.013378,-1.013378,-1.013378 +-1.020983,-1.020983,-1.020983,-1.020983,-1.020983,-1.020983 +-1.028588,-1.028588,-1.028588,-1.028588,-1.028588,-1.028588 +-1.036193,-1.036193,-1.036193,-1.036193,-1.036193,-1.036193 +-1.043798,-1.043798,-1.043798,-1.043798,-1.043798,-1.043798 +-1.051403,-1.051403,-1.051403,-1.051403,-1.051403,-1.051403 +-1.059008,-1.059008,-1.059008,-1.059008,-1.059008,-1.059008 +-1.066613,-1.066613,-1.066613,-1.066613,-1.066613,-1.066613 +-1.074218,-1.074218,-1.074218,-1.074218,-1.074218,-1.074218 +-1.081823,-1.081823,-1.081823,-1.081823,-1.081823,-1.081823 +-1.089428,-1.089428,-1.089428,-1.089428,-1.089428,-1.089428 +-1.097033,-1.097033,-1.097033,-1.097033,-1.097033,-1.097033 +-1.104638,-1.104638,-1.104638,-1.104638,-1.104638,-1.104638 +-1.112243,-1.112243,-1.112243,-1.112243,-1.112243,-1.112243 +-1.119848,-1.119848,-1.119848,-1.119848,-1.119848,-1.119848 +-1.127453,-1.127453,-1.127453,-1.127453,-1.127453,-1.127453 +-1.135058,-1.135058,-1.135058,-1.135058,-1.135058,-1.135058 +-1.142663,-1.142663,-1.142663,-1.142663,-1.142663,-1.142663 +-1.150268,-1.150268,-1.150268,-1.150268,-1.150268,-1.150268 +-1.157873,-1.157873,-1.157873,-1.157873,-1.157873,-1.157873 +-1.165478,-1.165478,-1.165478,-1.165478,-1.165478,-1.165478 +-1.173083,-1.173083,-1.173083,-1.173083,-1.173083,-1.173083 +-1.180688,-1.180688,-1.180688,-1.180688,-1.180688,-1.180688 +-1.188293,-1.188293,-1.188293,-1.188293,-1.188293,-1.188293 +-1.195898,-1.195898,-1.195898,-1.195898,-1.195898,-1.195898 +-1.203503,-1.203503,-1.203503,-1.203503,-1.203503,-1.203503 +-1.211108,-1.211108,-1.211108,-1.211108,-1.211108,-1.211108 +-1.218713,-1.218713,-1.218713,-1.218713,-1.218713,-1.218713 +-1.226318,-1.226318,-1.226318,-1.226318,-1.226318,-1.226318 +-1.233923,-1.233923,-1.233923,-1.233923,-1.233923,-1.233923 +-1.241528,-1.241528,-1.241528,-1.241528,-1.241528,-1.241528 +-1.249133,-1.249133,-1.249133,-1.249133,-1.249133,-1.249133 +-1.256738,-1.256738,-1.256738,-1.256738,-1.256738,-1.256738 +-1.264343,-1.264343,-1.264343,-1.264343,-1.264343,-1.264343 +-1.271948,-1.271948,-1.271948,-1.271948,-1.271948,-1.271948 +-1.279553,-1.279553,-1.279553,-1.279553,-1.279553,-1.279553 +-1.287158,-1.287158,-1.287158,-1.287158,-1.287158,-1.287158 +-1.294763,-1.294763,-1.294763,-1.294763,-1.294763,-1.294763 +-1.302368,-1.302368,-1.302368,-1.302368,-1.302368,-1.302368 +-1.309973,-1.309973,-1.309973,-1.309973,-1.309973,-1.309973 +-1.317578,-1.317578,-1.317578,-1.317578,-1.317578,-1.317578 +-1.325183,-1.325183,-1.325183,-1.325183,-1.325183,-1.325183 +-1.332788,-1.332788,-1.332788,-1.332788,-1.332788,-1.332788 +-1.340393,-1.340393,-1.340393,-1.340393,-1.340393,-1.340393 +-1.347998,-1.347998,-1.347998,-1.347998,-1.347998,-1.347998 +-1.355603,-1.355603,-1.355603,-1.355603,-1.355603,-1.355603 +-1.363208,-1.363208,-1.363208,-1.363208,-1.363208,-1.363208 +-1.370813,-1.370813,-1.370813,-1.370813,-1.370813,-1.370813 +-1.378418,-1.378418,-1.378418,-1.378418,-1.378418,-1.378418 +-1.386023,-1.386023,-1.386023,-1.386023,-1.386023,-1.386023 +-1.393628,-1.393628,-1.393628,-1.393628,-1.393628,-1.393628 +-1.401233,-1.401233,-1.401233,-1.401233,-1.401233,-1.401233 +-1.408838,-1.408838,-1.408838,-1.408838,-1.408838,-1.408838 +-1.416443,-1.416443,-1.416443,-1.416443,-1.416443,-1.416443 +-1.424048,-1.424048,-1.424048,-1.424048,-1.424048,-1.424048 +-1.431653,-1.431653,-1.431653,-1.431653,-1.431653,-1.431653 +-1.439258,-1.439258,-1.439258,-1.439258,-1.439258,-1.439258 +-1.446863,-1.446863,-1.446863,-1.446863,-1.446863,-1.446863 +-1.454468,-1.454468,-1.454468,-1.454468,-1.454468,-1.454468 +-1.462073,-1.462073,-1.462073,-1.462073,-1.462073,-1.462073 +-1.469678,-1.469678,-1.469678,-1.469678,-1.469678,-1.469678 +-1.477283,-1.477283,-1.477283,-1.477283,-1.477283,-1.477283 +-1.484888,-1.484888,-1.484888,-1.484888,-1.484888,-1.484888 +-1.492493,-1.492493,-1.492493,-1.492493,-1.492493,-1.492493 +-1.500098,-1.500098,-1.500098,-1.500098,-1.500098,-1.500098 +-1.507703,-1.507703,-1.507703,-1.507703,-1.507703,-1.507703 +-1.515308,-1.515308,-1.515308,-1.515308,-1.515308,-1.515308 +-1.522913,-1.522913,-1.522913,-1.522913,-1.522913,-1.522913 +-1.530518,-1.530518,-1.530518,-1.530518,-1.530518,-1.530518 +-1.538123,-1.538123,-1.538123,-1.538123,-1.538123,-1.538123 +-1.545728,-1.545728,-1.545728,-1.545728,-1.545728,-1.545728 +-1.553333,-1.553333,-1.553333,-1.553333,-1.553333,-1.553333 +-1.560938,-1.560938,-1.560938,-1.560938,-1.560938,-1.560938 +-1.568543,-1.568543,-1.568543,-1.568543,-1.568543,-1.568543 +-1.576148,-1.576148,-1.576148,-1.576148,-1.576148,-1.576148 +-1.583753,-1.583753,-1.583753,-1.583753,-1.583753,-1.583753 +-1.591358,-1.591358,-1.591358,-1.591358,-1.591358,-1.591358 +-1.598963,-1.598963,-1.598963,-1.598963,-1.598963,-1.598963 +-1.606557,-1.606557,-1.606557,-1.606557,-1.606557,-1.606557 +-1.614122,-1.614122,-1.614122,-1.614122,-1.614122,-1.614122 +-1.621638,-1.621638,-1.621638,-1.621638,-1.621638,-1.621638 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.636446,-1.636446,-1.636446,-1.636446,-1.636446,-1.636446 +-1.643698,-1.643698,-1.643698,-1.643698,-1.643698,-1.643698 +-1.650824,-1.650824,-1.650824,-1.650824,-1.650824,-1.650824 +-1.657803,-1.657803,-1.657803,-1.657803,-1.657803,-1.657803 +-1.664616,-1.664616,-1.664616,-1.664616,-1.664616,-1.664616 +-1.671244,-1.671244,-1.671244,-1.671244,-1.671244,-1.671244 +-1.677667,-1.677667,-1.677667,-1.677667,-1.677667,-1.677667 +-1.683866,-1.683866,-1.683866,-1.683866,-1.683866,-1.683866 +-1.689821,-1.689821,-1.689821,-1.689821,-1.689821,-1.689821 +-1.695512,-1.695512,-1.695512,-1.695512,-1.695512,-1.695512 +-1.700921,-1.700921,-1.700921,-1.700921,-1.700921,-1.700921 +-1.706027,-1.706027,-1.706027,-1.706027,-1.706027,-1.706027 +-1.710812,-1.710812,-1.710812,-1.710812,-1.710812,-1.710812 +-1.715255,-1.715255,-1.715255,-1.715255,-1.715255,-1.715255 +-1.719337,-1.719337,-1.719337,-1.719337,-1.719337,-1.719337 +-1.723041,-1.723041,-1.723041,-1.723041,-1.723041,-1.723041 +-1.726376,-1.726376,-1.726376,-1.726376,-1.726376,-1.726376 +-1.729359,-1.729359,-1.729359,-1.729359,-1.729359,-1.729359 +-1.732011,-1.732011,-1.732011,-1.732011,-1.732011,-1.732011 +-1.734352,-1.734352,-1.734352,-1.734352,-1.734352,-1.734352 +-1.7364,-1.7364,-1.7364,-1.7364,-1.7364,-1.7364 +-1.738175,-1.738175,-1.738175,-1.738175,-1.738175,-1.738175 +-1.739697,-1.739697,-1.739697,-1.739697,-1.739697,-1.739697 +-1.740985,-1.740985,-1.740985,-1.740985,-1.740985,-1.740985 +-1.742059,-1.742059,-1.742059,-1.742059,-1.742059,-1.742059 +-1.742938,-1.742938,-1.742938,-1.742938,-1.742938,-1.742938 +-1.743642,-1.743642,-1.743642,-1.743642,-1.743642,-1.743642 +-1.74419,-1.74419,-1.74419,-1.74419,-1.74419,-1.74419 +-1.744601,-1.744601,-1.744601,-1.744601,-1.744601,-1.744601 +-1.744896,-1.744896,-1.744896,-1.744896,-1.744896,-1.744896 +-1.745093,-1.745093,-1.745093,-1.745093,-1.745093,-1.745093 +-1.745213,-1.745213,-1.745213,-1.745213,-1.745213,-1.745213 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745212,-1.745212,-1.745212,-1.745212,-1.745212,-1.745212 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.744894,-1.744894,-1.744894,-1.744894,-1.744894,-1.744894 +-1.744598,-1.744598,-1.744598,-1.744598,-1.744598,-1.744598 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.743636,-1.743636,-1.743636,-1.743636,-1.743636,-1.743636 +-1.742931,-1.742931,-1.742931,-1.742931,-1.742931,-1.742931 +-1.74205,-1.74205,-1.74205,-1.74205,-1.74205,-1.74205 +-1.740974,-1.740974,-1.740974,-1.740974,-1.740974,-1.740974 +-1.739684,-1.739684,-1.739684,-1.739684,-1.739684,-1.739684 +-1.73816,-1.73816,-1.73816,-1.73816,-1.73816,-1.73816 +-1.736382,-1.736382,-1.736382,-1.736382,-1.736382,-1.736382 +-1.734331,-1.734331,-1.734331,-1.734331,-1.734331,-1.734331 +-1.731988,-1.731988,-1.731988,-1.731988,-1.731988,-1.731988 +-1.729333,-1.729333,-1.729333,-1.729333,-1.729333,-1.729333 +-1.726346,-1.726346,-1.726346,-1.726346,-1.726346,-1.726346 +-1.723008,-1.723008,-1.723008,-1.723008,-1.723008,-1.723008 +-1.7193,-1.7193,-1.7193,-1.7193,-1.7193,-1.7193 +-1.715214,-1.715214,-1.715214,-1.715214,-1.715214,-1.715214 +-1.710768,-1.710768,-1.710768,-1.710768,-1.710768,-1.710768 +-1.705981,-1.705981,-1.705981,-1.705981,-1.705981,-1.705981 +-1.700872,-1.700872,-1.700872,-1.700872,-1.700872,-1.700872 +-1.69546,-1.69546,-1.69546,-1.69546,-1.69546,-1.69546 +-1.689766,-1.689766,-1.689766,-1.689766,-1.689766,-1.689766 +-1.683809,-1.683809,-1.683809,-1.683809,-1.683809,-1.683809 +-1.677608,-1.677608,-1.677608,-1.677608,-1.677608,-1.677608 +-1.671183,-1.671183,-1.671183,-1.671183,-1.671183,-1.671183 +-1.664553,-1.664553,-1.664553,-1.664553,-1.664553,-1.664553 +-1.657738,-1.657738,-1.657738,-1.657738,-1.657738,-1.657738 +-1.650757,-1.650757,-1.650757,-1.650757,-1.650757,-1.650757 +-1.64363,-1.64363,-1.64363,-1.64363,-1.64363,-1.64363 +-1.636377,-1.636377,-1.636377,-1.636377,-1.636377,-1.636377 +-1.629016,-1.629016,-1.629016,-1.629016,-1.629016,-1.629016 +-1.621568,-1.621568,-1.621568,-1.621568,-1.621568,-1.621568 +-1.614051,-1.614051,-1.614051,-1.614051,-1.614051,-1.614051 +-1.606486,-1.606486,-1.606486,-1.606486,-1.606486,-1.606486 +-1.598891,-1.598891,-1.598891,-1.598891,-1.598891,-1.598891 +-1.591287,-1.591287,-1.591287,-1.591287,-1.591287,-1.591287 +-1.583682,-1.583682,-1.583682,-1.583682,-1.583682,-1.583682 +-1.576077,-1.576077,-1.576077,-1.576077,-1.576077,-1.576077 +-1.568472,-1.568472,-1.568472,-1.568472,-1.568472,-1.568472 +-1.560867,-1.560867,-1.560867,-1.560867,-1.560867,-1.560867 +-1.553262,-1.553262,-1.553262,-1.553262,-1.553262,-1.553262 +-1.545657,-1.545657,-1.545657,-1.545657,-1.545657,-1.545657 +-1.538052,-1.538052,-1.538052,-1.538052,-1.538052,-1.538052 +-1.530447,-1.530447,-1.530447,-1.530447,-1.530447,-1.530447 +-1.522842,-1.522842,-1.522842,-1.522842,-1.522842,-1.522842 +-1.515237,-1.515237,-1.515237,-1.515237,-1.515237,-1.515237 +-1.507632,-1.507632,-1.507632,-1.507632,-1.507632,-1.507632 +-1.500027,-1.500027,-1.500027,-1.500027,-1.500027,-1.500027 +-1.492422,-1.492422,-1.492422,-1.492422,-1.492422,-1.492422 +-1.484817,-1.484817,-1.484817,-1.484817,-1.484817,-1.484817 +-1.477212,-1.477212,-1.477212,-1.477212,-1.477212,-1.477212 +-1.469607,-1.469607,-1.469607,-1.469607,-1.469607,-1.469607 +-1.462002,-1.462002,-1.462002,-1.462002,-1.462002,-1.462002 +-1.454397,-1.454397,-1.454397,-1.454397,-1.454397,-1.454397 +-1.446792,-1.446792,-1.446792,-1.446792,-1.446792,-1.446792 +-1.439187,-1.439187,-1.439187,-1.439187,-1.439187,-1.439187 +-1.431582,-1.431582,-1.431582,-1.431582,-1.431582,-1.431582 +-1.423977,-1.423977,-1.423977,-1.423977,-1.423977,-1.423977 +-1.416372,-1.416372,-1.416372,-1.416372,-1.416372,-1.416372 +-1.408767,-1.408767,-1.408767,-1.408767,-1.408767,-1.408767 +-1.401162,-1.401162,-1.401162,-1.401162,-1.401162,-1.401162 +-1.393557,-1.393557,-1.393557,-1.393557,-1.393557,-1.393557 +-1.385952,-1.385952,-1.385952,-1.385952,-1.385952,-1.385952 +-1.378347,-1.378347,-1.378347,-1.378347,-1.378347,-1.378347 +-1.370742,-1.370742,-1.370742,-1.370742,-1.370742,-1.370742 +-1.363137,-1.363137,-1.363137,-1.363137,-1.363137,-1.363137 +-1.355532,-1.355532,-1.355532,-1.355532,-1.355532,-1.355532 +-1.347927,-1.347927,-1.347927,-1.347927,-1.347927,-1.347927 +-1.340322,-1.340322,-1.340322,-1.340322,-1.340322,-1.340322 +-1.332717,-1.332717,-1.332717,-1.332717,-1.332717,-1.332717 +-1.325112,-1.325112,-1.325112,-1.325112,-1.325112,-1.325112 +-1.317507,-1.317507,-1.317507,-1.317507,-1.317507,-1.317507 +-1.309902,-1.309902,-1.309902,-1.309902,-1.309902,-1.309902 +-1.302297,-1.302297,-1.302297,-1.302297,-1.302297,-1.302297 +-1.294692,-1.294692,-1.294692,-1.294692,-1.294692,-1.294692 +-1.287087,-1.287087,-1.287087,-1.287087,-1.287087,-1.287087 +-1.279482,-1.279482,-1.279482,-1.279482,-1.279482,-1.279482 +-1.271877,-1.271877,-1.271877,-1.271877,-1.271877,-1.271877 +-1.264272,-1.264272,-1.264272,-1.264272,-1.264272,-1.264272 +-1.256667,-1.256667,-1.256667,-1.256667,-1.256667,-1.256667 +-1.249062,-1.249062,-1.249062,-1.249062,-1.249062,-1.249062 +-1.241457,-1.241457,-1.241457,-1.241457,-1.241457,-1.241457 +-1.233852,-1.233852,-1.233852,-1.233852,-1.233852,-1.233852 +-1.226247,-1.226247,-1.226247,-1.226247,-1.226247,-1.226247 +-1.218642,-1.218642,-1.218642,-1.218642,-1.218642,-1.218642 +-1.211037,-1.211037,-1.211037,-1.211037,-1.211037,-1.211037 +-1.203432,-1.203432,-1.203432,-1.203432,-1.203432,-1.203432 +-1.195827,-1.195827,-1.195827,-1.195827,-1.195827,-1.195827 +-1.188222,-1.188222,-1.188222,-1.188222,-1.188222,-1.188222 +-1.180617,-1.180617,-1.180617,-1.180617,-1.180617,-1.180617 +-1.173012,-1.173012,-1.173012,-1.173012,-1.173012,-1.173012 +-1.165407,-1.165407,-1.165407,-1.165407,-1.165407,-1.165407 +-1.157802,-1.157802,-1.157802,-1.157802,-1.157802,-1.157802 +-1.150197,-1.150197,-1.150197,-1.150197,-1.150197,-1.150197 +-1.142592,-1.142592,-1.142592,-1.142592,-1.142592,-1.142592 +-1.134987,-1.134987,-1.134987,-1.134987,-1.134987,-1.134987 +-1.127382,-1.127382,-1.127382,-1.127382,-1.127382,-1.127382 +-1.119777,-1.119777,-1.119777,-1.119777,-1.119777,-1.119777 +-1.112172,-1.112172,-1.112172,-1.112172,-1.112172,-1.112172 +-1.104567,-1.104567,-1.104567,-1.104567,-1.104567,-1.104567 +-1.096962,-1.096962,-1.096962,-1.096962,-1.096962,-1.096962 +-1.089357,-1.089357,-1.089357,-1.089357,-1.089357,-1.089357 +-1.081752,-1.081752,-1.081752,-1.081752,-1.081752,-1.081752 +-1.074147,-1.074147,-1.074147,-1.074147,-1.074147,-1.074147 +-1.066542,-1.066542,-1.066542,-1.066542,-1.066542,-1.066542 +-1.058937,-1.058937,-1.058937,-1.058937,-1.058937,-1.058937 +-1.051332,-1.051332,-1.051332,-1.051332,-1.051332,-1.051332 +-1.043727,-1.043727,-1.043727,-1.043727,-1.043727,-1.043727 +-1.036122,-1.036122,-1.036122,-1.036122,-1.036122,-1.036122 +-1.028517,-1.028517,-1.028517,-1.028517,-1.028517,-1.028517 +-1.020912,-1.020912,-1.020912,-1.020912,-1.020912,-1.020912 +-1.013307,-1.013307,-1.013307,-1.013307,-1.013307,-1.013307 +-1.005702,-1.005702,-1.005702,-1.005702,-1.005702,-1.005702 +-0.998097,-0.998097,-0.998097,-0.998097,-0.998097,-0.998097 +-0.990492,-0.990492,-0.990492,-0.990492,-0.990492,-0.990492 +-0.982887,-0.982887,-0.982887,-0.982887,-0.982887,-0.982887 +-0.975282,-0.975282,-0.975282,-0.975282,-0.975282,-0.975282 +-0.967677,-0.967677,-0.967677,-0.967677,-0.967677,-0.967677 +-0.960072,-0.960072,-0.960072,-0.960072,-0.960072,-0.960072 +-0.952467,-0.952467,-0.952467,-0.952467,-0.952467,-0.952467 +-0.944862,-0.944862,-0.944862,-0.944862,-0.944862,-0.944862 +-0.937257,-0.937257,-0.937257,-0.937257,-0.937257,-0.937257 +-0.929652,-0.929652,-0.929652,-0.929652,-0.929652,-0.929652 +-0.922047,-0.922047,-0.922047,-0.922047,-0.922047,-0.922047 +-0.914442,-0.914442,-0.914442,-0.914442,-0.914442,-0.914442 +-0.906837,-0.906837,-0.906837,-0.906837,-0.906837,-0.906837 +-0.899232,-0.899232,-0.899232,-0.899232,-0.899232,-0.899232 +-0.891627,-0.891627,-0.891627,-0.891627,-0.891627,-0.891627 +-0.884022,-0.884022,-0.884022,-0.884022,-0.884022,-0.884022 +-0.876417,-0.876417,-0.876417,-0.876417,-0.876417,-0.876417 +-0.868812,-0.868812,-0.868812,-0.868812,-0.868812,-0.868812 +-0.861207,-0.861207,-0.861207,-0.861207,-0.861207,-0.861207 +-0.853602,-0.853602,-0.853602,-0.853602,-0.853602,-0.853602 +-0.845997,-0.845997,-0.845997,-0.845997,-0.845997,-0.845997 +-0.838392,-0.838392,-0.838392,-0.838392,-0.838392,-0.838392 +-0.830787,-0.830787,-0.830787,-0.830787,-0.830787,-0.830787 +-0.823182,-0.823182,-0.823182,-0.823182,-0.823182,-0.823182 +-0.815577,-0.815577,-0.815577,-0.815577,-0.815577,-0.815577 +-0.807972,-0.807972,-0.807972,-0.807972,-0.807972,-0.807972 +-0.800367,-0.800367,-0.800367,-0.800367,-0.800367,-0.800367 +-0.792762,-0.792762,-0.792762,-0.792762,-0.792762,-0.792762 +-0.785157,-0.785157,-0.785157,-0.785157,-0.785157,-0.785157 +-0.777552,-0.777552,-0.777552,-0.777552,-0.777552,-0.777552 +-0.769947,-0.769947,-0.769947,-0.769947,-0.769947,-0.769947 +-0.762342,-0.762342,-0.762342,-0.762342,-0.762342,-0.762342 +-0.754737,-0.754737,-0.754737,-0.754737,-0.754737,-0.754737 +-0.747132,-0.747132,-0.747132,-0.747132,-0.747132,-0.747132 +-0.739527,-0.739527,-0.739527,-0.739527,-0.739527,-0.739527 +-0.731922,-0.731922,-0.731922,-0.731922,-0.731922,-0.731922 +-0.724317,-0.724317,-0.724317,-0.724317,-0.724317,-0.724317 +-0.716712,-0.716712,-0.716712,-0.716712,-0.716712,-0.716712 +-0.709107,-0.709107,-0.709107,-0.709107,-0.709107,-0.709107 +-0.701502,-0.701502,-0.701502,-0.701502,-0.701502,-0.701502 +-0.693897,-0.693897,-0.693897,-0.693897,-0.693897,-0.693897 +-0.686292,-0.686292,-0.686292,-0.686292,-0.686292,-0.686292 +-0.678687,-0.678687,-0.678687,-0.678687,-0.678687,-0.678687 +-0.671082,-0.671082,-0.671082,-0.671082,-0.671082,-0.671082 +-0.663477,-0.663477,-0.663477,-0.663477,-0.663477,-0.663477 +-0.655872,-0.655872,-0.655872,-0.655872,-0.655872,-0.655872 +-0.648267,-0.648267,-0.648267,-0.648267,-0.648267,-0.648267 +-0.640662,-0.640662,-0.640662,-0.640662,-0.640662,-0.640662 +-0.633057,-0.633057,-0.633057,-0.633057,-0.633057,-0.633057 +-0.625452,-0.625452,-0.625452,-0.625452,-0.625452,-0.625452 +-0.617847,-0.617847,-0.617847,-0.617847,-0.617847,-0.617847 +-0.610242,-0.610242,-0.610242,-0.610242,-0.610242,-0.610242 +-0.602637,-0.602637,-0.602637,-0.602637,-0.602637,-0.602637 +-0.595032,-0.595032,-0.595032,-0.595032,-0.595032,-0.595032 +-0.587427,-0.587427,-0.587427,-0.587427,-0.587427,-0.587427 +-0.579822,-0.579822,-0.579822,-0.579822,-0.579822,-0.579822 +-0.572217,-0.572217,-0.572217,-0.572217,-0.572217,-0.572217 +-0.564612,-0.564612,-0.564612,-0.564612,-0.564612,-0.564612 +-0.557007,-0.557007,-0.557007,-0.557007,-0.557007,-0.557007 +-0.549402,-0.549402,-0.549402,-0.549402,-0.549402,-0.549402 +-0.541797,-0.541797,-0.541797,-0.541797,-0.541797,-0.541797 +-0.534192,-0.534192,-0.534192,-0.534192,-0.534192,-0.534192 +-0.526587,-0.526587,-0.526587,-0.526587,-0.526587,-0.526587 +-0.518982,-0.518982,-0.518982,-0.518982,-0.518982,-0.518982 +-0.511377,-0.511377,-0.511377,-0.511377,-0.511377,-0.511377 +-0.503772,-0.503772,-0.503772,-0.503772,-0.503772,-0.503772 +-0.496167,-0.496167,-0.496167,-0.496167,-0.496167,-0.496167 +-0.488562,-0.488562,-0.488562,-0.488562,-0.488562,-0.488562 +-0.480957,-0.480957,-0.480957,-0.480957,-0.480957,-0.480957 +-0.473352,-0.473352,-0.473352,-0.473352,-0.473352,-0.473352 +-0.465747,-0.465747,-0.465747,-0.465747,-0.465747,-0.465747 +-0.458142,-0.458142,-0.458142,-0.458142,-0.458142,-0.458142 +-0.450537,-0.450537,-0.450537,-0.450537,-0.450537,-0.450537 +-0.442932,-0.442932,-0.442932,-0.442932,-0.442932,-0.442932 +-0.435327,-0.435327,-0.435327,-0.435327,-0.435327,-0.435327 +-0.427722,-0.427722,-0.427722,-0.427722,-0.427722,-0.427722 +-0.420117,-0.420117,-0.420117,-0.420117,-0.420117,-0.420117 +-0.412512,-0.412512,-0.412512,-0.412512,-0.412512,-0.412512 +-0.404907,-0.404907,-0.404907,-0.404907,-0.404907,-0.404907 +-0.397302,-0.397302,-0.397302,-0.397302,-0.397302,-0.397302 +-0.389697,-0.389697,-0.389697,-0.389697,-0.389697,-0.389697 +-0.382092,-0.382092,-0.382092,-0.382092,-0.382092,-0.382092 +-0.374487,-0.374487,-0.374487,-0.374487,-0.374487,-0.374487 +-0.366882,-0.366882,-0.366882,-0.366882,-0.366882,-0.366882 +-0.359277,-0.359277,-0.359277,-0.359277,-0.359277,-0.359277 +-0.351672,-0.351672,-0.351672,-0.351672,-0.351672,-0.351672 +-0.344067,-0.344067,-0.344067,-0.344067,-0.344067,-0.344067 +-0.336462,-0.336462,-0.336462,-0.336462,-0.336462,-0.336462 +-0.328857,-0.328857,-0.328857,-0.328857,-0.328857,-0.328857 +-0.321252,-0.321252,-0.321252,-0.321252,-0.321252,-0.321252 +-0.313647,-0.313647,-0.313647,-0.313647,-0.313647,-0.313647 +-0.306042,-0.306042,-0.306042,-0.306042,-0.306042,-0.306042 +-0.298437,-0.298437,-0.298437,-0.298437,-0.298437,-0.298437 +-0.290832,-0.290832,-0.290832,-0.290832,-0.290832,-0.290832 +-0.283227,-0.283227,-0.283227,-0.283227,-0.283227,-0.283227 +-0.275622,-0.275622,-0.275622,-0.275622,-0.275622,-0.275622 +-0.268017,-0.268017,-0.268017,-0.268017,-0.268017,-0.268017 +-0.260412,-0.260412,-0.260412,-0.260412,-0.260412,-0.260412 +-0.252807,-0.252807,-0.252807,-0.252807,-0.252807,-0.252807 +-0.245202,-0.245202,-0.245202,-0.245202,-0.245202,-0.245202 +-0.237597,-0.237597,-0.237597,-0.237597,-0.237597,-0.237597 +-0.229992,-0.229992,-0.229992,-0.229992,-0.229992,-0.229992 +-0.222387,-0.222387,-0.222387,-0.222387,-0.222387,-0.222387 +-0.214782,-0.214782,-0.214782,-0.214782,-0.214782,-0.214782 +-0.207177,-0.207177,-0.207177,-0.207177,-0.207177,-0.207177 +-0.199572,-0.199572,-0.199572,-0.199572,-0.199572,-0.199572 +-0.191967,-0.191967,-0.191967,-0.191967,-0.191967,-0.191967 +-0.184362,-0.184362,-0.184362,-0.184362,-0.184362,-0.184362 +-0.176757,-0.176757,-0.176757,-0.176757,-0.176757,-0.176757 +-0.169152,-0.169152,-0.169152,-0.169152,-0.169152,-0.169152 +-0.161547,-0.161547,-0.161547,-0.161547,-0.161547,-0.161547 +-0.153942,-0.153942,-0.153942,-0.153942,-0.153942,-0.153942 +-0.146337,-0.146337,-0.146337,-0.146337,-0.146337,-0.146337 +-0.138743,-0.138743,-0.138743,-0.138743,-0.138743,-0.138743 +-0.131178,-0.131178,-0.131178,-0.131178,-0.131178,-0.131178 +-0.123662,-0.123662,-0.123662,-0.123662,-0.123662,-0.123662 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.108854,-0.108854,-0.108854,-0.108854,-0.108854,-0.108854 +-0.101602,-0.101602,-0.101602,-0.101602,-0.101602,-0.101602 +-0.094476,-0.094476,-0.094476,-0.094476,-0.094476,-0.094476 +-0.087497,-0.087497,-0.087497,-0.087497,-0.087497,-0.087497 +-0.080684,-0.080684,-0.080684,-0.080684,-0.080684,-0.080684 +-0.074056,-0.074056,-0.074056,-0.074056,-0.074056,-0.074056 +-0.067633,-0.067633,-0.067633,-0.067633,-0.067633,-0.067633 +-0.061434,-0.061434,-0.061434,-0.061434,-0.061434,-0.061434 +-0.055479,-0.055479,-0.055479,-0.055479,-0.055479,-0.055479 +-0.049788,-0.049788,-0.049788,-0.049788,-0.049788,-0.049788 +-0.044379,-0.044379,-0.044379,-0.044379,-0.044379,-0.044379 +-0.039273,-0.039273,-0.039273,-0.039273,-0.039273,-0.039273 +-0.034488,-0.034488,-0.034488,-0.034488,-0.034488,-0.034488 +-0.030045,-0.030045,-0.030045,-0.030045,-0.030045,-0.030045 +-0.025963,-0.025963,-0.025963,-0.025963,-0.025963,-0.025963 +-0.022259,-0.022259,-0.022259,-0.022259,-0.022259,-0.022259 +-0.018924,-0.018924,-0.018924,-0.018924,-0.018924,-0.018924 +-0.015941,-0.015941,-0.015941,-0.015941,-0.015941,-0.015941 +-0.013289,-0.013289,-0.013289,-0.013289,-0.013289,-0.013289 +-0.010948,-0.010948,-0.010948,-0.010948,-0.010948,-0.010948 +-0.0089,-0.0089,-0.0089,-0.0089,-0.0089,-0.0089 +-0.007125,-0.007125,-0.007125,-0.007125,-0.007125,-0.007125 +-0.005603,-0.005603,-0.005603,-0.005603,-0.005603,-0.005603 +-0.004315,-0.004315,-0.004315,-0.004315,-0.004315,-0.004315 +-0.003241,-0.003241,-0.003241,-0.003241,-0.003241,-0.003241 +-0.002362,-0.002362,-0.002362,-0.002362,-0.002362,-0.002362 +-0.001658,-0.001658,-0.001658,-0.001658,-0.001658,-0.001658 +-0.00111,-0.00111,-0.00111,-0.00111,-0.00111,-0.00111 +-0.000699,-0.000699,-0.000699,-0.000699,-0.000699,-0.000699 +-0.000404,-0.000404,-0.000404,-0.000404,-0.000404,-0.000404 +-0.000207,-0.000207,-0.000207,-0.000207,-0.000207,-0.000207 +-0.000087,-0.000087,-0.000087,-0.000087,-0.000087,-0.000087 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000088,0.000088,0.000088,0.000088,0.000088,0.000088 +0.000208,0.000208,0.000208,0.000208,0.000208,0.000208 +0.000406,0.000406,0.000406,0.000406,0.000406,0.000406 +0.000702,0.000702,0.000702,0.000702,0.000702,0.000702 +0.001115,0.001115,0.001115,0.001115,0.001115,0.001115 +0.001664,0.001664,0.001664,0.001664,0.001664,0.001664 +0.002369,0.002369,0.002369,0.002369,0.002369,0.002369 +0.00325,0.00325,0.00325,0.00325,0.00325,0.00325 +0.004326,0.004326,0.004326,0.004326,0.004326,0.004326 +0.005616,0.005616,0.005616,0.005616,0.005616,0.005616 +0.00714,0.00714,0.00714,0.00714,0.00714,0.00714 +0.008918,0.008918,0.008918,0.008918,0.008918,0.008918 +0.010969,0.010969,0.010969,0.010969,0.010969,0.010969 +0.013312,0.013312,0.013312,0.013312,0.013312,0.013312 +0.015967,0.015967,0.015967,0.015967,0.015967,0.015967 +0.018954,0.018954,0.018954,0.018954,0.018954,0.018954 +0.022292,0.022292,0.022292,0.022292,0.022292,0.022292 +0.026,0.026,0.026,0.026,0.026,0.026 +0.030086,0.030086,0.030086,0.030086,0.030086,0.030086 +0.034532,0.034532,0.034532,0.034532,0.034532,0.034532 +0.039319,0.039319,0.039319,0.039319,0.039319,0.039319 +0.044428,0.044428,0.044428,0.044428,0.044428,0.044428 +0.04984,0.04984,0.04984,0.04984,0.04984,0.04984 +0.055534,0.055534,0.055534,0.055534,0.055534,0.055534 +0.061491,0.061491,0.061491,0.061491,0.061491,0.061491 +0.067692,0.067692,0.067692,0.067692,0.067692,0.067692 +0.074117,0.074117,0.074117,0.074117,0.074117,0.074117 +0.080747,0.080747,0.080747,0.080747,0.080747,0.080747 +0.087562,0.087562,0.087562,0.087562,0.087562,0.087562 +0.094543,0.094543,0.094543,0.094543,0.094543,0.094543 +0.10167,0.10167,0.10167,0.10167,0.10167,0.10167 +0.108923,0.108923,0.108923,0.108923,0.108923,0.108923 +0.116284,0.116284,0.116284,0.116284,0.116284,0.116284 +0.123732,0.123732,0.123732,0.123732,0.123732,0.123732 +0.131249,0.131249,0.131249,0.131249,0.131249,0.131249 +0.138814,0.138814,0.138814,0.138814,0.138814,0.138814 +0.146409,0.146409,0.146409,0.146409,0.146409,0.146409 +0.154013,0.154013,0.154013,0.154013,0.154013,0.154013 +0.161618,0.161618,0.161618,0.161618,0.161618,0.161618 +0.169223,0.169223,0.169223,0.169223,0.169223,0.169223 +0.176828,0.176828,0.176828,0.176828,0.176828,0.176828 +0.184433,0.184433,0.184433,0.184433,0.184433,0.184433 +0.192038,0.192038,0.192038,0.192038,0.192038,0.192038 +0.199643,0.199643,0.199643,0.199643,0.199643,0.199643 +0.207248,0.207248,0.207248,0.207248,0.207248,0.207248 +0.214853,0.214853,0.214853,0.214853,0.214853,0.214853 +0.222458,0.222458,0.222458,0.222458,0.222458,0.222458 +0.230063,0.230063,0.230063,0.230063,0.230063,0.230063 +0.237668,0.237668,0.237668,0.237668,0.237668,0.237668 +0.245273,0.245273,0.245273,0.245273,0.245273,0.245273 +0.252878,0.252878,0.252878,0.252878,0.252878,0.252878 +0.260483,0.260483,0.260483,0.260483,0.260483,0.260483 +0.268088,0.268088,0.268088,0.268088,0.268088,0.268088 +0.275693,0.275693,0.275693,0.275693,0.275693,0.275693 +0.283298,0.283298,0.283298,0.283298,0.283298,0.283298 +0.290903,0.290903,0.290903,0.290903,0.290903,0.290903 +0.298508,0.298508,0.298508,0.298508,0.298508,0.298508 +0.306113,0.306113,0.306113,0.306113,0.306113,0.306113 +0.313718,0.313718,0.313718,0.313718,0.313718,0.313718 +0.321323,0.321323,0.321323,0.321323,0.321323,0.321323 +0.328928,0.328928,0.328928,0.328928,0.328928,0.328928 +0.336533,0.336533,0.336533,0.336533,0.336533,0.336533 +0.344138,0.344138,0.344138,0.344138,0.344138,0.344138 +0.351743,0.351743,0.351743,0.351743,0.351743,0.351743 +0.359348,0.359348,0.359348,0.359348,0.359348,0.359348 +0.366953,0.366953,0.366953,0.366953,0.366953,0.366953 +0.374558,0.374558,0.374558,0.374558,0.374558,0.374558 +0.382163,0.382163,0.382163,0.382163,0.382163,0.382163 +0.389768,0.389768,0.389768,0.389768,0.389768,0.389768 +0.397373,0.397373,0.397373,0.397373,0.397373,0.397373 +0.404978,0.404978,0.404978,0.404978,0.404978,0.404978 +0.412583,0.412583,0.412583,0.412583,0.412583,0.412583 +0.420188,0.420188,0.420188,0.420188,0.420188,0.420188 +0.427793,0.427793,0.427793,0.427793,0.427793,0.427793 +0.435398,0.435398,0.435398,0.435398,0.435398,0.435398 +0.443003,0.443003,0.443003,0.443003,0.443003,0.443003 +0.450608,0.450608,0.450608,0.450608,0.450608,0.450608 +0.458213,0.458213,0.458213,0.458213,0.458213,0.458213 +0.465818,0.465818,0.465818,0.465818,0.465818,0.465818 +0.473423,0.473423,0.473423,0.473423,0.473423,0.473423 +0.481028,0.481028,0.481028,0.481028,0.481028,0.481028 +0.488633,0.488633,0.488633,0.488633,0.488633,0.488633 +0.496238,0.496238,0.496238,0.496238,0.496238,0.496238 +0.503843,0.503843,0.503843,0.503843,0.503843,0.503843 +0.511448,0.511448,0.511448,0.511448,0.511448,0.511448 +0.519053,0.519053,0.519053,0.519053,0.519053,0.519053 +0.526658,0.526658,0.526658,0.526658,0.526658,0.526658 +0.534263,0.534263,0.534263,0.534263,0.534263,0.534263 +0.541868,0.541868,0.541868,0.541868,0.541868,0.541868 +0.549473,0.549473,0.549473,0.549473,0.549473,0.549473 +0.557078,0.557078,0.557078,0.557078,0.557078,0.557078 +0.564683,0.564683,0.564683,0.564683,0.564683,0.564683 +0.572288,0.572288,0.572288,0.572288,0.572288,0.572288 +0.579893,0.579893,0.579893,0.579893,0.579893,0.579893 +0.587498,0.587498,0.587498,0.587498,0.587498,0.587498 +0.595103,0.595103,0.595103,0.595103,0.595103,0.595103 +0.602708,0.602708,0.602708,0.602708,0.602708,0.602708 +0.610313,0.610313,0.610313,0.610313,0.610313,0.610313 +0.617918,0.617918,0.617918,0.617918,0.617918,0.617918 +0.625523,0.625523,0.625523,0.625523,0.625523,0.625523 +0.633128,0.633128,0.633128,0.633128,0.633128,0.633128 +0.640733,0.640733,0.640733,0.640733,0.640733,0.640733 +0.648338,0.648338,0.648338,0.648338,0.648338,0.648338 +0.655943,0.655943,0.655943,0.655943,0.655943,0.655943 +0.663548,0.663548,0.663548,0.663548,0.663548,0.663548 +0.671153,0.671153,0.671153,0.671153,0.671153,0.671153 +0.678758,0.678758,0.678758,0.678758,0.678758,0.678758 +0.686363,0.686363,0.686363,0.686363,0.686363,0.686363 +0.693968,0.693968,0.693968,0.693968,0.693968,0.693968 +0.701573,0.701573,0.701573,0.701573,0.701573,0.701573 +0.709178,0.709178,0.709178,0.709178,0.709178,0.709178 +0.716783,0.716783,0.716783,0.716783,0.716783,0.716783 +0.724388,0.724388,0.724388,0.724388,0.724388,0.724388 +0.731993,0.731993,0.731993,0.731993,0.731993,0.731993 +0.739598,0.739598,0.739598,0.739598,0.739598,0.739598 +0.747203,0.747203,0.747203,0.747203,0.747203,0.747203 +0.754808,0.754808,0.754808,0.754808,0.754808,0.754808 +0.762413,0.762413,0.762413,0.762413,0.762413,0.762413 +0.770018,0.770018,0.770018,0.770018,0.770018,0.770018 +0.777623,0.777623,0.777623,0.777623,0.777623,0.777623 +0.785228,0.785228,0.785228,0.785228,0.785228,0.785228 +0.792833,0.792833,0.792833,0.792833,0.792833,0.792833 +0.800438,0.800438,0.800438,0.800438,0.800438,0.800438 +0.808043,0.808043,0.808043,0.808043,0.808043,0.808043 +0.815648,0.815648,0.815648,0.815648,0.815648,0.815648 +0.823253,0.823253,0.823253,0.823253,0.823253,0.823253 +0.830858,0.830858,0.830858,0.830858,0.830858,0.830858 +0.838463,0.838463,0.838463,0.838463,0.838463,0.838463 +0.846068,0.846068,0.846068,0.846068,0.846068,0.846068 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.861278,0.861278,0.861278,0.861278,0.861278,0.861278 +0.868883,0.868883,0.868883,0.868883,0.868883,0.868883 +0.876488,0.876488,0.876488,0.876488,0.876488,0.876488 +0.884093,0.884093,0.884093,0.884093,0.884093,0.884093 +0.891698,0.891698,0.891698,0.891698,0.891698,0.891698 +0.899303,0.899303,0.899303,0.899303,0.899303,0.899303 +0.906908,0.906908,0.906908,0.906908,0.906908,0.906908 +0.914513,0.914513,0.914513,0.914513,0.914513,0.914513 +0.922118,0.922118,0.922118,0.922118,0.922118,0.922118 +0.929723,0.929723,0.929723,0.929723,0.929723,0.929723 +0.937328,0.937328,0.937328,0.937328,0.937328,0.937328 +0.944933,0.944933,0.944933,0.944933,0.944933,0.944933 +0.952538,0.952538,0.952538,0.952538,0.952538,0.952538 +0.960143,0.960143,0.960143,0.960143,0.960143,0.960143 +0.967748,0.967748,0.967748,0.967748,0.967748,0.967748 +0.975353,0.975353,0.975353,0.975353,0.975353,0.975353 +0.982958,0.982958,0.982958,0.982958,0.982958,0.982958 +0.990563,0.990563,0.990563,0.990563,0.990563,0.990563 +0.998168,0.998168,0.998168,0.998168,0.998168,0.998168 +1.005773,1.005773,1.005773,1.005773,1.005773,1.005773 +1.013378,1.013378,1.013378,1.013378,1.013378,1.013378 +1.020983,1.020983,1.020983,1.020983,1.020983,1.020983 +1.028588,1.028588,1.028588,1.028588,1.028588,1.028588 +1.036193,1.036193,1.036193,1.036193,1.036193,1.036193 +1.043798,1.043798,1.043798,1.043798,1.043798,1.043798 +1.051403,1.051403,1.051403,1.051403,1.051403,1.051403 +1.059008,1.059008,1.059008,1.059008,1.059008,1.059008 +1.066613,1.066613,1.066613,1.066613,1.066613,1.066613 +1.074218,1.074218,1.074218,1.074218,1.074218,1.074218 +1.081823,1.081823,1.081823,1.081823,1.081823,1.081823 +1.089428,1.089428,1.089428,1.089428,1.089428,1.089428 +1.097033,1.097033,1.097033,1.097033,1.097033,1.097033 +1.104638,1.104638,1.104638,1.104638,1.104638,1.104638 +1.112243,1.112243,1.112243,1.112243,1.112243,1.112243 +1.119848,1.119848,1.119848,1.119848,1.119848,1.119848 +1.127453,1.127453,1.127453,1.127453,1.127453,1.127453 +1.135058,1.135058,1.135058,1.135058,1.135058,1.135058 +1.142663,1.142663,1.142663,1.142663,1.142663,1.142663 +1.150268,1.150268,1.150268,1.150268,1.150268,1.150268 +1.157873,1.157873,1.157873,1.157873,1.157873,1.157873 +1.165478,1.165478,1.165478,1.165478,1.165478,1.165478 +1.173083,1.173083,1.173083,1.173083,1.173083,1.173083 +1.180688,1.180688,1.180688,1.180688,1.180688,1.180688 +1.188293,1.188293,1.188293,1.188293,1.188293,1.188293 +1.195898,1.195898,1.195898,1.195898,1.195898,1.195898 +1.203503,1.203503,1.203503,1.203503,1.203503,1.203503 +1.211108,1.211108,1.211108,1.211108,1.211108,1.211108 +1.218713,1.218713,1.218713,1.218713,1.218713,1.218713 +1.226318,1.226318,1.226318,1.226318,1.226318,1.226318 +1.233923,1.233923,1.233923,1.233923,1.233923,1.233923 +1.241528,1.241528,1.241528,1.241528,1.241528,1.241528 +1.249133,1.249133,1.249133,1.249133,1.249133,1.249133 +1.256738,1.256738,1.256738,1.256738,1.256738,1.256738 +1.264343,1.264343,1.264343,1.264343,1.264343,1.264343 +1.271948,1.271948,1.271948,1.271948,1.271948,1.271948 +1.279553,1.279553,1.279553,1.279553,1.279553,1.279553 +1.287158,1.287158,1.287158,1.287158,1.287158,1.287158 +1.294763,1.294763,1.294763,1.294763,1.294763,1.294763 +1.302368,1.302368,1.302368,1.302368,1.302368,1.302368 +1.309973,1.309973,1.309973,1.309973,1.309973,1.309973 +1.317578,1.317578,1.317578,1.317578,1.317578,1.317578 +1.325183,1.325183,1.325183,1.325183,1.325183,1.325183 +1.332788,1.332788,1.332788,1.332788,1.332788,1.332788 +1.340393,1.340393,1.340393,1.340393,1.340393,1.340393 +1.347998,1.347998,1.347998,1.347998,1.347998,1.347998 +1.355603,1.355603,1.355603,1.355603,1.355603,1.355603 +1.363208,1.363208,1.363208,1.363208,1.363208,1.363208 +1.370813,1.370813,1.370813,1.370813,1.370813,1.370813 +1.378418,1.378418,1.378418,1.378418,1.378418,1.378418 +1.386023,1.386023,1.386023,1.386023,1.386023,1.386023 +1.393628,1.393628,1.393628,1.393628,1.393628,1.393628 +1.401233,1.401233,1.401233,1.401233,1.401233,1.401233 +1.408838,1.408838,1.408838,1.408838,1.408838,1.408838 +1.416443,1.416443,1.416443,1.416443,1.416443,1.416443 +1.424048,1.424048,1.424048,1.424048,1.424048,1.424048 +1.431653,1.431653,1.431653,1.431653,1.431653,1.431653 +1.439258,1.439258,1.439258,1.439258,1.439258,1.439258 +1.446863,1.446863,1.446863,1.446863,1.446863,1.446863 +1.454468,1.454468,1.454468,1.454468,1.454468,1.454468 +1.462073,1.462073,1.462073,1.462073,1.462073,1.462073 +1.469678,1.469678,1.469678,1.469678,1.469678,1.469678 +1.477283,1.477283,1.477283,1.477283,1.477283,1.477283 +1.484888,1.484888,1.484888,1.484888,1.484888,1.484888 +1.492493,1.492493,1.492493,1.492493,1.492493,1.492493 +1.500098,1.500098,1.500098,1.500098,1.500098,1.500098 +1.507703,1.507703,1.507703,1.507703,1.507703,1.507703 +1.515308,1.515308,1.515308,1.515308,1.515308,1.515308 +1.522913,1.522913,1.522913,1.522913,1.522913,1.522913 +1.530518,1.530518,1.530518,1.530518,1.530518,1.530518 +1.538123,1.538123,1.538123,1.538123,1.538123,1.538123 +1.545728,1.545728,1.545728,1.545728,1.545728,1.545728 +1.553333,1.553333,1.553333,1.553333,1.553333,1.553333 +1.560938,1.560938,1.560938,1.560938,1.560938,1.560938 +1.568543,1.568543,1.568543,1.568543,1.568543,1.568543 +1.576148,1.576148,1.576148,1.576148,1.576148,1.576148 +1.583753,1.583753,1.583753,1.583753,1.583753,1.583753 +1.591358,1.591358,1.591358,1.591358,1.591358,1.591358 +1.598963,1.598963,1.598963,1.598963,1.598963,1.598963 +1.606557,1.606557,1.606557,1.606557,1.606557,1.606557 +1.614122,1.614122,1.614122,1.614122,1.614122,1.614122 +1.621638,1.621638,1.621638,1.621638,1.621638,1.621638 +1.629086,1.629086,1.629086,1.629086,1.629086,1.629086 +1.636446,1.636446,1.636446,1.636446,1.636446,1.636446 +1.643698,1.643698,1.643698,1.643698,1.643698,1.643698 +1.650824,1.650824,1.650824,1.650824,1.650824,1.650824 +1.657803,1.657803,1.657803,1.657803,1.657803,1.657803 +1.664616,1.664616,1.664616,1.664616,1.664616,1.664616 +1.671244,1.671244,1.671244,1.671244,1.671244,1.671244 +1.677667,1.677667,1.677667,1.677667,1.677667,1.677667 +1.683866,1.683866,1.683866,1.683866,1.683866,1.683866 +1.689821,1.689821,1.689821,1.689821,1.689821,1.689821 +1.695512,1.695512,1.695512,1.695512,1.695512,1.695512 +1.700921,1.700921,1.700921,1.700921,1.700921,1.700921 +1.706027,1.706027,1.706027,1.706027,1.706027,1.706027 +1.710812,1.710812,1.710812,1.710812,1.710812,1.710812 +1.715255,1.715255,1.715255,1.715255,1.715255,1.715255 +1.719337,1.719337,1.719337,1.719337,1.719337,1.719337 +1.723041,1.723041,1.723041,1.723041,1.723041,1.723041 +1.726376,1.726376,1.726376,1.726376,1.726376,1.726376 +1.729359,1.729359,1.729359,1.729359,1.729359,1.729359 +1.732011,1.732011,1.732011,1.732011,1.732011,1.732011 +1.734352,1.734352,1.734352,1.734352,1.734352,1.734352 +1.7364,1.7364,1.7364,1.7364,1.7364,1.7364 +1.738175,1.738175,1.738175,1.738175,1.738175,1.738175 +1.739697,1.739697,1.739697,1.739697,1.739697,1.739697 +1.740985,1.740985,1.740985,1.740985,1.740985,1.740985 +1.742059,1.742059,1.742059,1.742059,1.742059,1.742059 +1.742938,1.742938,1.742938,1.742938,1.742938,1.742938 +1.743642,1.743642,1.743642,1.743642,1.743642,1.743642 +1.74419,1.74419,1.74419,1.74419,1.74419,1.74419 +1.744601,1.744601,1.744601,1.744601,1.744601,1.744601 +1.744896,1.744896,1.744896,1.744896,1.744896,1.744896 +1.745093,1.745093,1.745093,1.745093,1.745093,1.745093 +1.745213,1.745213,1.745213,1.745213,1.745213,1.745213 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745297,1.745297,1.745297,1.745297,1.745297,1.745297 +1.745274,1.745274,1.745274,1.745274,1.745274,1.745274 +1.745212,1.745212,1.745212,1.745212,1.745212,1.745212 +1.745092,1.745092,1.745092,1.745092,1.745092,1.745092 +1.744894,1.744894,1.744894,1.744894,1.744894,1.744894 +1.744598,1.744598,1.744598,1.744598,1.744598,1.744598 +1.744185,1.744185,1.744185,1.744185,1.744185,1.744185 +1.743636,1.743636,1.743636,1.743636,1.743636,1.743636 +1.742931,1.742931,1.742931,1.742931,1.742931,1.742931 +1.74205,1.74205,1.74205,1.74205,1.74205,1.74205 +1.740974,1.740974,1.740974,1.740974,1.740974,1.740974 +1.739684,1.739684,1.739684,1.739684,1.739684,1.739684 +1.73816,1.73816,1.73816,1.73816,1.73816,1.73816 +1.736382,1.736382,1.736382,1.736382,1.736382,1.736382 +1.734331,1.734331,1.734331,1.734331,1.734331,1.734331 +1.731988,1.731988,1.731988,1.731988,1.731988,1.731988 +1.729333,1.729333,1.729333,1.729333,1.729333,1.729333 +1.726346,1.726346,1.726346,1.726346,1.726346,1.726346 +1.723008,1.723008,1.723008,1.723008,1.723008,1.723008 +1.7193,1.7193,1.7193,1.7193,1.7193,1.7193 +1.715214,1.715214,1.715214,1.715214,1.715214,1.715214 +1.710768,1.710768,1.710768,1.710768,1.710768,1.710768 +1.705981,1.705981,1.705981,1.705981,1.705981,1.705981 +1.700872,1.700872,1.700872,1.700872,1.700872,1.700872 +1.69546,1.69546,1.69546,1.69546,1.69546,1.69546 +1.689766,1.689766,1.689766,1.689766,1.689766,1.689766 +1.683809,1.683809,1.683809,1.683809,1.683809,1.683809 +1.677608,1.677608,1.677608,1.677608,1.677608,1.677608 +1.671183,1.671183,1.671183,1.671183,1.671183,1.671183 +1.664553,1.664553,1.664553,1.664553,1.664553,1.664553 +1.657738,1.657738,1.657738,1.657738,1.657738,1.657738 +1.650757,1.650757,1.650757,1.650757,1.650757,1.650757 +1.64363,1.64363,1.64363,1.64363,1.64363,1.64363 +1.636377,1.636377,1.636377,1.636377,1.636377,1.636377 +1.629016,1.629016,1.629016,1.629016,1.629016,1.629016 +1.621568,1.621568,1.621568,1.621568,1.621568,1.621568 +1.614051,1.614051,1.614051,1.614051,1.614051,1.614051 +1.606486,1.606486,1.606486,1.606486,1.606486,1.606486 +1.598891,1.598891,1.598891,1.598891,1.598891,1.598891 +1.591287,1.591287,1.591287,1.591287,1.591287,1.591287 +1.583682,1.583682,1.583682,1.583682,1.583682,1.583682 +1.576077,1.576077,1.576077,1.576077,1.576077,1.576077 +1.568472,1.568472,1.568472,1.568472,1.568472,1.568472 +1.560867,1.560867,1.560867,1.560867,1.560867,1.560867 +1.553262,1.553262,1.553262,1.553262,1.553262,1.553262 +1.545657,1.545657,1.545657,1.545657,1.545657,1.545657 +1.538052,1.538052,1.538052,1.538052,1.538052,1.538052 +1.530447,1.530447,1.530447,1.530447,1.530447,1.530447 +1.522842,1.522842,1.522842,1.522842,1.522842,1.522842 +1.515237,1.515237,1.515237,1.515237,1.515237,1.515237 +1.507632,1.507632,1.507632,1.507632,1.507632,1.507632 +1.500027,1.500027,1.500027,1.500027,1.500027,1.500027 +1.492422,1.492422,1.492422,1.492422,1.492422,1.492422 +1.484817,1.484817,1.484817,1.484817,1.484817,1.484817 +1.477212,1.477212,1.477212,1.477212,1.477212,1.477212 +1.469607,1.469607,1.469607,1.469607,1.469607,1.469607 +1.462002,1.462002,1.462002,1.462002,1.462002,1.462002 +1.454397,1.454397,1.454397,1.454397,1.454397,1.454397 +1.446792,1.446792,1.446792,1.446792,1.446792,1.446792 +1.439187,1.439187,1.439187,1.439187,1.439187,1.439187 +1.431582,1.431582,1.431582,1.431582,1.431582,1.431582 +1.423977,1.423977,1.423977,1.423977,1.423977,1.423977 +1.416372,1.416372,1.416372,1.416372,1.416372,1.416372 +1.408767,1.408767,1.408767,1.408767,1.408767,1.408767 +1.401162,1.401162,1.401162,1.401162,1.401162,1.401162 +1.393557,1.393557,1.393557,1.393557,1.393557,1.393557 +1.385952,1.385952,1.385952,1.385952,1.385952,1.385952 +1.378347,1.378347,1.378347,1.378347,1.378347,1.378347 +1.370742,1.370742,1.370742,1.370742,1.370742,1.370742 +1.363137,1.363137,1.363137,1.363137,1.363137,1.363137 +1.355532,1.355532,1.355532,1.355532,1.355532,1.355532 +1.347927,1.347927,1.347927,1.347927,1.347927,1.347927 +1.340322,1.340322,1.340322,1.340322,1.340322,1.340322 +1.332717,1.332717,1.332717,1.332717,1.332717,1.332717 +1.325112,1.325112,1.325112,1.325112,1.325112,1.325112 +1.317507,1.317507,1.317507,1.317507,1.317507,1.317507 +1.309902,1.309902,1.309902,1.309902,1.309902,1.309902 +1.302297,1.302297,1.302297,1.302297,1.302297,1.302297 +1.294692,1.294692,1.294692,1.294692,1.294692,1.294692 +1.287087,1.287087,1.287087,1.287087,1.287087,1.287087 +1.279482,1.279482,1.279482,1.279482,1.279482,1.279482 +1.271877,1.271877,1.271877,1.271877,1.271877,1.271877 +1.264272,1.264272,1.264272,1.264272,1.264272,1.264272 +1.256667,1.256667,1.256667,1.256667,1.256667,1.256667 +1.249062,1.249062,1.249062,1.249062,1.249062,1.249062 +1.241457,1.241457,1.241457,1.241457,1.241457,1.241457 +1.233852,1.233852,1.233852,1.233852,1.233852,1.233852 +1.226247,1.226247,1.226247,1.226247,1.226247,1.226247 +1.218642,1.218642,1.218642,1.218642,1.218642,1.218642 +1.211037,1.211037,1.211037,1.211037,1.211037,1.211037 +1.203432,1.203432,1.203432,1.203432,1.203432,1.203432 +1.195827,1.195827,1.195827,1.195827,1.195827,1.195827 +1.188222,1.188222,1.188222,1.188222,1.188222,1.188222 +1.180617,1.180617,1.180617,1.180617,1.180617,1.180617 +1.173012,1.173012,1.173012,1.173012,1.173012,1.173012 +1.165407,1.165407,1.165407,1.165407,1.165407,1.165407 +1.157802,1.157802,1.157802,1.157802,1.157802,1.157802 +1.150197,1.150197,1.150197,1.150197,1.150197,1.150197 +1.142592,1.142592,1.142592,1.142592,1.142592,1.142592 +1.134987,1.134987,1.134987,1.134987,1.134987,1.134987 +1.127382,1.127382,1.127382,1.127382,1.127382,1.127382 +1.119777,1.119777,1.119777,1.119777,1.119777,1.119777 +1.112172,1.112172,1.112172,1.112172,1.112172,1.112172 +1.104567,1.104567,1.104567,1.104567,1.104567,1.104567 +1.096962,1.096962,1.096962,1.096962,1.096962,1.096962 +1.089357,1.089357,1.089357,1.089357,1.089357,1.089357 +1.081752,1.081752,1.081752,1.081752,1.081752,1.081752 +1.074147,1.074147,1.074147,1.074147,1.074147,1.074147 +1.066542,1.066542,1.066542,1.066542,1.066542,1.066542 +1.058937,1.058937,1.058937,1.058937,1.058937,1.058937 +1.051332,1.051332,1.051332,1.051332,1.051332,1.051332 +1.043727,1.043727,1.043727,1.043727,1.043727,1.043727 +1.036122,1.036122,1.036122,1.036122,1.036122,1.036122 +1.028517,1.028517,1.028517,1.028517,1.028517,1.028517 +1.020912,1.020912,1.020912,1.020912,1.020912,1.020912 +1.013307,1.013307,1.013307,1.013307,1.013307,1.013307 +1.005702,1.005702,1.005702,1.005702,1.005702,1.005702 +0.998097,0.998097,0.998097,0.998097,0.998097,0.998097 +0.990492,0.990492,0.990492,0.990492,0.990492,0.990492 +0.982887,0.982887,0.982887,0.982887,0.982887,0.982887 +0.975282,0.975282,0.975282,0.975282,0.975282,0.975282 +0.967677,0.967677,0.967677,0.967677,0.967677,0.967677 +0.960072,0.960072,0.960072,0.960072,0.960072,0.960072 +0.952467,0.952467,0.952467,0.952467,0.952467,0.952467 +0.944862,0.944862,0.944862,0.944862,0.944862,0.944862 +0.937257,0.937257,0.937257,0.937257,0.937257,0.937257 +0.929652,0.929652,0.929652,0.929652,0.929652,0.929652 +0.922047,0.922047,0.922047,0.922047,0.922047,0.922047 +0.914442,0.914442,0.914442,0.914442,0.914442,0.914442 +0.906837,0.906837,0.906837,0.906837,0.906837,0.906837 +0.899232,0.899232,0.899232,0.899232,0.899232,0.899232 +0.891627,0.891627,0.891627,0.891627,0.891627,0.891627 +0.884022,0.884022,0.884022,0.884022,0.884022,0.884022 +0.876417,0.876417,0.876417,0.876417,0.876417,0.876417 +0.868812,0.868812,0.868812,0.868812,0.868812,0.868812 +0.861207,0.861207,0.861207,0.861207,0.861207,0.861207 +0.853602,0.853602,0.853602,0.853602,0.853602,0.853602 +0.845997,0.845997,0.845997,0.845997,0.845997,0.845997 +0.838392,0.838392,0.838392,0.838392,0.838392,0.838392 +0.830787,0.830787,0.830787,0.830787,0.830787,0.830787 +0.823182,0.823182,0.823182,0.823182,0.823182,0.823182 +0.815577,0.815577,0.815577,0.815577,0.815577,0.815577 +0.807972,0.807972,0.807972,0.807972,0.807972,0.807972 +0.800367,0.800367,0.800367,0.800367,0.800367,0.800367 +0.792762,0.792762,0.792762,0.792762,0.792762,0.792762 +0.785157,0.785157,0.785157,0.785157,0.785157,0.785157 +0.777552,0.777552,0.777552,0.777552,0.777552,0.777552 +0.769947,0.769947,0.769947,0.769947,0.769947,0.769947 +0.762342,0.762342,0.762342,0.762342,0.762342,0.762342 +0.754737,0.754737,0.754737,0.754737,0.754737,0.754737 +0.747132,0.747132,0.747132,0.747132,0.747132,0.747132 +0.739527,0.739527,0.739527,0.739527,0.739527,0.739527 +0.731922,0.731922,0.731922,0.731922,0.731922,0.731922 +0.724317,0.724317,0.724317,0.724317,0.724317,0.724317 +0.716712,0.716712,0.716712,0.716712,0.716712,0.716712 +0.709107,0.709107,0.709107,0.709107,0.709107,0.709107 +0.701502,0.701502,0.701502,0.701502,0.701502,0.701502 +0.693897,0.693897,0.693897,0.693897,0.693897,0.693897 +0.686292,0.686292,0.686292,0.686292,0.686292,0.686292 +0.678687,0.678687,0.678687,0.678687,0.678687,0.678687 +0.671082,0.671082,0.671082,0.671082,0.671082,0.671082 +0.663477,0.663477,0.663477,0.663477,0.663477,0.663477 +0.655872,0.655872,0.655872,0.655872,0.655872,0.655872 +0.648267,0.648267,0.648267,0.648267,0.648267,0.648267 +0.640662,0.640662,0.640662,0.640662,0.640662,0.640662 +0.633057,0.633057,0.633057,0.633057,0.633057,0.633057 +0.625452,0.625452,0.625452,0.625452,0.625452,0.625452 +0.617847,0.617847,0.617847,0.617847,0.617847,0.617847 +0.610242,0.610242,0.610242,0.610242,0.610242,0.610242 +0.602637,0.602637,0.602637,0.602637,0.602637,0.602637 +0.595032,0.595032,0.595032,0.595032,0.595032,0.595032 +0.587427,0.587427,0.587427,0.587427,0.587427,0.587427 +0.579822,0.579822,0.579822,0.579822,0.579822,0.579822 +0.572217,0.572217,0.572217,0.572217,0.572217,0.572217 +0.564612,0.564612,0.564612,0.564612,0.564612,0.564612 +0.557007,0.557007,0.557007,0.557007,0.557007,0.557007 +0.549402,0.549402,0.549402,0.549402,0.549402,0.549402 +0.541797,0.541797,0.541797,0.541797,0.541797,0.541797 +0.534192,0.534192,0.534192,0.534192,0.534192,0.534192 +0.526587,0.526587,0.526587,0.526587,0.526587,0.526587 +0.518982,0.518982,0.518982,0.518982,0.518982,0.518982 +0.511377,0.511377,0.511377,0.511377,0.511377,0.511377 +0.503772,0.503772,0.503772,0.503772,0.503772,0.503772 +0.496167,0.496167,0.496167,0.496167,0.496167,0.496167 +0.488562,0.488562,0.488562,0.488562,0.488562,0.488562 +0.480957,0.480957,0.480957,0.480957,0.480957,0.480957 +0.473352,0.473352,0.473352,0.473352,0.473352,0.473352 +0.465747,0.465747,0.465747,0.465747,0.465747,0.465747 +0.458142,0.458142,0.458142,0.458142,0.458142,0.458142 +0.450537,0.450537,0.450537,0.450537,0.450537,0.450537 +0.442932,0.442932,0.442932,0.442932,0.442932,0.442932 +0.435327,0.435327,0.435327,0.435327,0.435327,0.435327 +0.427722,0.427722,0.427722,0.427722,0.427722,0.427722 +0.420117,0.420117,0.420117,0.420117,0.420117,0.420117 +0.412512,0.412512,0.412512,0.412512,0.412512,0.412512 +0.404907,0.404907,0.404907,0.404907,0.404907,0.404907 +0.397302,0.397302,0.397302,0.397302,0.397302,0.397302 +0.389697,0.389697,0.389697,0.389697,0.389697,0.389697 +0.382092,0.382092,0.382092,0.382092,0.382092,0.382092 +0.374487,0.374487,0.374487,0.374487,0.374487,0.374487 +0.366882,0.366882,0.366882,0.366882,0.366882,0.366882 +0.359277,0.359277,0.359277,0.359277,0.359277,0.359277 +0.351672,0.351672,0.351672,0.351672,0.351672,0.351672 +0.344067,0.344067,0.344067,0.344067,0.344067,0.344067 +0.336462,0.336462,0.336462,0.336462,0.336462,0.336462 +0.328857,0.328857,0.328857,0.328857,0.328857,0.328857 +0.321252,0.321252,0.321252,0.321252,0.321252,0.321252 +0.313647,0.313647,0.313647,0.313647,0.313647,0.313647 +0.306042,0.306042,0.306042,0.306042,0.306042,0.306042 +0.298437,0.298437,0.298437,0.298437,0.298437,0.298437 +0.290832,0.290832,0.290832,0.290832,0.290832,0.290832 +0.283227,0.283227,0.283227,0.283227,0.283227,0.283227 +0.275622,0.275622,0.275622,0.275622,0.275622,0.275622 +0.268017,0.268017,0.268017,0.268017,0.268017,0.268017 +0.260412,0.260412,0.260412,0.260412,0.260412,0.260412 +0.252807,0.252807,0.252807,0.252807,0.252807,0.252807 +0.245202,0.245202,0.245202,0.245202,0.245202,0.245202 +0.237597,0.237597,0.237597,0.237597,0.237597,0.237597 +0.229992,0.229992,0.229992,0.229992,0.229992,0.229992 +0.222387,0.222387,0.222387,0.222387,0.222387,0.222387 +0.214782,0.214782,0.214782,0.214782,0.214782,0.214782 +0.207177,0.207177,0.207177,0.207177,0.207177,0.207177 +0.199572,0.199572,0.199572,0.199572,0.199572,0.199572 +0.191967,0.191967,0.191967,0.191967,0.191967,0.191967 +0.184362,0.184362,0.184362,0.184362,0.184362,0.184362 +0.176757,0.176757,0.176757,0.176757,0.176757,0.176757 +0.169152,0.169152,0.169152,0.169152,0.169152,0.169152 +0.161547,0.161547,0.161547,0.161547,0.161547,0.161547 +0.153942,0.153942,0.153942,0.153942,0.153942,0.153942 +0.146337,0.146337,0.146337,0.146337,0.146337,0.146337 +0.138743,0.138743,0.138743,0.138743,0.138743,0.138743 +0.131178,0.131178,0.131178,0.131178,0.131178,0.131178 +0.123662,0.123662,0.123662,0.123662,0.123662,0.123662 +0.116214,0.116214,0.116214,0.116214,0.116214,0.116214 +0.108854,0.108854,0.108854,0.108854,0.108854,0.108854 +0.101602,0.101602,0.101602,0.101602,0.101602,0.101602 +0.094476,0.094476,0.094476,0.094476,0.094476,0.094476 +0.087497,0.087497,0.087497,0.087497,0.087497,0.087497 +0.080684,0.080684,0.080684,0.080684,0.080684,0.080684 +0.074056,0.074056,0.074056,0.074056,0.074056,0.074056 +0.067633,0.067633,0.067633,0.067633,0.067633,0.067633 +0.061434,0.061434,0.061434,0.061434,0.061434,0.061434 +0.055479,0.055479,0.055479,0.055479,0.055479,0.055479 +0.049788,0.049788,0.049788,0.049788,0.049788,0.049788 +0.044379,0.044379,0.044379,0.044379,0.044379,0.044379 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.034488,0.034488,0.034488,0.034488,0.034488,0.034488 +0.030045,0.030045,0.030045,0.030045,0.030045,0.030045 +0.025963,0.025963,0.025963,0.025963,0.025963,0.025963 +0.022259,0.022259,0.022259,0.022259,0.022259,0.022259 +0.018924,0.018924,0.018924,0.018924,0.018924,0.018924 +0.015941,0.015941,0.015941,0.015941,0.015941,0.015941 +0.013289,0.013289,0.013289,0.013289,0.013289,0.013289 +0.010948,0.010948,0.010948,0.010948,0.010948,0.010948 +0.0089,0.0089,0.0089,0.0089,0.0089,0.0089 +0.007125,0.007125,0.007125,0.007125,0.007125,0.007125 +0.005603,0.005603,0.005603,0.005603,0.005603,0.005603 +0.004315,0.004315,0.004315,0.004315,0.004315,0.004315 +0.003241,0.003241,0.003241,0.003241,0.003241,0.003241 +0.002362,0.002362,0.002362,0.002362,0.002362,0.002362 +0.001658,0.001658,0.001658,0.001658,0.001658,0.001658 +0.00111,0.00111,0.00111,0.00111,0.00111,0.00111 +0.000699,0.000699,0.000699,0.000699,0.000699,0.000699 +0.000404,0.000404,0.000404,0.000404,0.000404,0.000404 +0.000207,0.000207,0.000207,0.000207,0.000207,0.000207 +0.000087,0.000087,0.000087,0.000087,0.000087,0.000087 +0.000026,0.000026,0.000026,0.000026,0.000026,0.000026 +0.000003,0.000003,0.000003,0.000003,0.000003,0.000003 +0,0,0,0,0,0 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000088,-0.000088,-0.000088,-0.000088,-0.000088,-0.000088 +-0.000208,-0.000208,-0.000208,-0.000208,-0.000208,-0.000208 +-0.000406,-0.000406,-0.000406,-0.000406,-0.000406,-0.000406 +-0.000702,-0.000702,-0.000702,-0.000702,-0.000702,-0.000702 +-0.001115,-0.001115,-0.001115,-0.001115,-0.001115,-0.001115 +-0.001664,-0.001664,-0.001664,-0.001664,-0.001664,-0.001664 +-0.002369,-0.002369,-0.002369,-0.002369,-0.002369,-0.002369 +-0.00325,-0.00325,-0.00325,-0.00325,-0.00325,-0.00325 +-0.004326,-0.004326,-0.004326,-0.004326,-0.004326,-0.004326 +-0.005616,-0.005616,-0.005616,-0.005616,-0.005616,-0.005616 +-0.00714,-0.00714,-0.00714,-0.00714,-0.00714,-0.00714 +-0.008918,-0.008918,-0.008918,-0.008918,-0.008918,-0.008918 +-0.010969,-0.010969,-0.010969,-0.010969,-0.010969,-0.010969 +-0.013312,-0.013312,-0.013312,-0.013312,-0.013312,-0.013312 +-0.015967,-0.015967,-0.015967,-0.015967,-0.015967,-0.015967 +-0.018954,-0.018954,-0.018954,-0.018954,-0.018954,-0.018954 +-0.022292,-0.022292,-0.022292,-0.022292,-0.022292,-0.022292 +-0.026,-0.026,-0.026,-0.026,-0.026,-0.026 +-0.030086,-0.030086,-0.030086,-0.030086,-0.030086,-0.030086 +-0.034532,-0.034532,-0.034532,-0.034532,-0.034532,-0.034532 +-0.039319,-0.039319,-0.039319,-0.039319,-0.039319,-0.039319 +-0.044428,-0.044428,-0.044428,-0.044428,-0.044428,-0.044428 +-0.04984,-0.04984,-0.04984,-0.04984,-0.04984,-0.04984 +-0.055534,-0.055534,-0.055534,-0.055534,-0.055534,-0.055534 +-0.061491,-0.061491,-0.061491,-0.061491,-0.061491,-0.061491 +-0.067692,-0.067692,-0.067692,-0.067692,-0.067692,-0.067692 +-0.074117,-0.074117,-0.074117,-0.074117,-0.074117,-0.074117 +-0.080747,-0.080747,-0.080747,-0.080747,-0.080747,-0.080747 +-0.087562,-0.087562,-0.087562,-0.087562,-0.087562,-0.087562 +-0.094543,-0.094543,-0.094543,-0.094543,-0.094543,-0.094543 +-0.10167,-0.10167,-0.10167,-0.10167,-0.10167,-0.10167 +-0.108923,-0.108923,-0.108923,-0.108923,-0.108923,-0.108923 +-0.116284,-0.116284,-0.116284,-0.116284,-0.116284,-0.116284 +-0.123732,-0.123732,-0.123732,-0.123732,-0.123732,-0.123732 +-0.131249,-0.131249,-0.131249,-0.131249,-0.131249,-0.131249 +-0.138814,-0.138814,-0.138814,-0.138814,-0.138814,-0.138814 +-0.146409,-0.146409,-0.146409,-0.146409,-0.146409,-0.146409 +-0.154013,-0.154013,-0.154013,-0.154013,-0.154013,-0.154013 +-0.161618,-0.161618,-0.161618,-0.161618,-0.161618,-0.161618 +-0.169223,-0.169223,-0.169223,-0.169223,-0.169223,-0.169223 +-0.176828,-0.176828,-0.176828,-0.176828,-0.176828,-0.176828 +-0.184433,-0.184433,-0.184433,-0.184433,-0.184433,-0.184433 +-0.192038,-0.192038,-0.192038,-0.192038,-0.192038,-0.192038 +-0.199643,-0.199643,-0.199643,-0.199643,-0.199643,-0.199643 +-0.207248,-0.207248,-0.207248,-0.207248,-0.207248,-0.207248 +-0.214853,-0.214853,-0.214853,-0.214853,-0.214853,-0.214853 +-0.222458,-0.222458,-0.222458,-0.222458,-0.222458,-0.222458 +-0.230063,-0.230063,-0.230063,-0.230063,-0.230063,-0.230063 +-0.237668,-0.237668,-0.237668,-0.237668,-0.237668,-0.237668 +-0.245273,-0.245273,-0.245273,-0.245273,-0.245273,-0.245273 +-0.252878,-0.252878,-0.252878,-0.252878,-0.252878,-0.252878 +-0.260483,-0.260483,-0.260483,-0.260483,-0.260483,-0.260483 +-0.268088,-0.268088,-0.268088,-0.268088,-0.268088,-0.268088 +-0.275693,-0.275693,-0.275693,-0.275693,-0.275693,-0.275693 +-0.283298,-0.283298,-0.283298,-0.283298,-0.283298,-0.283298 +-0.290903,-0.290903,-0.290903,-0.290903,-0.290903,-0.290903 +-0.298508,-0.298508,-0.298508,-0.298508,-0.298508,-0.298508 +-0.306113,-0.306113,-0.306113,-0.306113,-0.306113,-0.306113 +-0.313718,-0.313718,-0.313718,-0.313718,-0.313718,-0.313718 +-0.321323,-0.321323,-0.321323,-0.321323,-0.321323,-0.321323 +-0.328928,-0.328928,-0.328928,-0.328928,-0.328928,-0.328928 +-0.336533,-0.336533,-0.336533,-0.336533,-0.336533,-0.336533 +-0.344138,-0.344138,-0.344138,-0.344138,-0.344138,-0.344138 +-0.351743,-0.351743,-0.351743,-0.351743,-0.351743,-0.351743 +-0.359348,-0.359348,-0.359348,-0.359348,-0.359348,-0.359348 +-0.366953,-0.366953,-0.366953,-0.366953,-0.366953,-0.366953 +-0.374558,-0.374558,-0.374558,-0.374558,-0.374558,-0.374558 +-0.382163,-0.382163,-0.382163,-0.382163,-0.382163,-0.382163 +-0.389768,-0.389768,-0.389768,-0.389768,-0.389768,-0.389768 +-0.397373,-0.397373,-0.397373,-0.397373,-0.397373,-0.397373 +-0.404978,-0.404978,-0.404978,-0.404978,-0.404978,-0.404978 +-0.412583,-0.412583,-0.412583,-0.412583,-0.412583,-0.412583 +-0.420188,-0.420188,-0.420188,-0.420188,-0.420188,-0.420188 +-0.427793,-0.427793,-0.427793,-0.427793,-0.427793,-0.427793 +-0.435398,-0.435398,-0.435398,-0.435398,-0.435398,-0.435398 +-0.443003,-0.443003,-0.443003,-0.443003,-0.443003,-0.443003 +-0.450608,-0.450608,-0.450608,-0.450608,-0.450608,-0.450608 +-0.458213,-0.458213,-0.458213,-0.458213,-0.458213,-0.458213 +-0.465818,-0.465818,-0.465818,-0.465818,-0.465818,-0.465818 +-0.473423,-0.473423,-0.473423,-0.473423,-0.473423,-0.473423 +-0.481028,-0.481028,-0.481028,-0.481028,-0.481028,-0.481028 +-0.488633,-0.488633,-0.488633,-0.488633,-0.488633,-0.488633 +-0.496238,-0.496238,-0.496238,-0.496238,-0.496238,-0.496238 +-0.503843,-0.503843,-0.503843,-0.503843,-0.503843,-0.503843 +-0.511448,-0.511448,-0.511448,-0.511448,-0.511448,-0.511448 +-0.519053,-0.519053,-0.519053,-0.519053,-0.519053,-0.519053 +-0.526658,-0.526658,-0.526658,-0.526658,-0.526658,-0.526658 +-0.534263,-0.534263,-0.534263,-0.534263,-0.534263,-0.534263 +-0.541868,-0.541868,-0.541868,-0.541868,-0.541868,-0.541868 +-0.549473,-0.549473,-0.549473,-0.549473,-0.549473,-0.549473 +-0.557078,-0.557078,-0.557078,-0.557078,-0.557078,-0.557078 +-0.564683,-0.564683,-0.564683,-0.564683,-0.564683,-0.564683 +-0.572288,-0.572288,-0.572288,-0.572288,-0.572288,-0.572288 +-0.579893,-0.579893,-0.579893,-0.579893,-0.579893,-0.579893 +-0.587498,-0.587498,-0.587498,-0.587498,-0.587498,-0.587498 +-0.595103,-0.595103,-0.595103,-0.595103,-0.595103,-0.595103 +-0.602708,-0.602708,-0.602708,-0.602708,-0.602708,-0.602708 +-0.610313,-0.610313,-0.610313,-0.610313,-0.610313,-0.610313 +-0.617918,-0.617918,-0.617918,-0.617918,-0.617918,-0.617918 +-0.625523,-0.625523,-0.625523,-0.625523,-0.625523,-0.625523 +-0.633128,-0.633128,-0.633128,-0.633128,-0.633128,-0.633128 +-0.640733,-0.640733,-0.640733,-0.640733,-0.640733,-0.640733 +-0.648338,-0.648338,-0.648338,-0.648338,-0.648338,-0.648338 +-0.655943,-0.655943,-0.655943,-0.655943,-0.655943,-0.655943 +-0.663548,-0.663548,-0.663548,-0.663548,-0.663548,-0.663548 +-0.671153,-0.671153,-0.671153,-0.671153,-0.671153,-0.671153 +-0.678758,-0.678758,-0.678758,-0.678758,-0.678758,-0.678758 +-0.686363,-0.686363,-0.686363,-0.686363,-0.686363,-0.686363 +-0.693968,-0.693968,-0.693968,-0.693968,-0.693968,-0.693968 +-0.701573,-0.701573,-0.701573,-0.701573,-0.701573,-0.701573 +-0.709178,-0.709178,-0.709178,-0.709178,-0.709178,-0.709178 +-0.716783,-0.716783,-0.716783,-0.716783,-0.716783,-0.716783 +-0.724388,-0.724388,-0.724388,-0.724388,-0.724388,-0.724388 +-0.731993,-0.731993,-0.731993,-0.731993,-0.731993,-0.731993 +-0.739598,-0.739598,-0.739598,-0.739598,-0.739598,-0.739598 +-0.747203,-0.747203,-0.747203,-0.747203,-0.747203,-0.747203 +-0.754808,-0.754808,-0.754808,-0.754808,-0.754808,-0.754808 +-0.762413,-0.762413,-0.762413,-0.762413,-0.762413,-0.762413 +-0.770018,-0.770018,-0.770018,-0.770018,-0.770018,-0.770018 +-0.777623,-0.777623,-0.777623,-0.777623,-0.777623,-0.777623 +-0.785228,-0.785228,-0.785228,-0.785228,-0.785228,-0.785228 +-0.792833,-0.792833,-0.792833,-0.792833,-0.792833,-0.792833 +-0.800438,-0.800438,-0.800438,-0.800438,-0.800438,-0.800438 +-0.808043,-0.808043,-0.808043,-0.808043,-0.808043,-0.808043 +-0.815648,-0.815648,-0.815648,-0.815648,-0.815648,-0.815648 +-0.823253,-0.823253,-0.823253,-0.823253,-0.823253,-0.823253 +-0.830858,-0.830858,-0.830858,-0.830858,-0.830858,-0.830858 +-0.838463,-0.838463,-0.838463,-0.838463,-0.838463,-0.838463 +-0.846068,-0.846068,-0.846068,-0.846068,-0.846068,-0.846068 +-0.853673,-0.853673,-0.853673,-0.853673,-0.853673,-0.853673 +-0.861278,-0.861278,-0.861278,-0.861278,-0.861278,-0.861278 +-0.868883,-0.868883,-0.868883,-0.868883,-0.868883,-0.868883 +-0.876488,-0.876488,-0.876488,-0.876488,-0.876488,-0.876488 +-0.884093,-0.884093,-0.884093,-0.884093,-0.884093,-0.884093 +-0.891698,-0.891698,-0.891698,-0.891698,-0.891698,-0.891698 +-0.899303,-0.899303,-0.899303,-0.899303,-0.899303,-0.899303 +-0.906908,-0.906908,-0.906908,-0.906908,-0.906908,-0.906908 +-0.914513,-0.914513,-0.914513,-0.914513,-0.914513,-0.914513 +-0.922118,-0.922118,-0.922118,-0.922118,-0.922118,-0.922118 +-0.929723,-0.929723,-0.929723,-0.929723,-0.929723,-0.929723 +-0.937328,-0.937328,-0.937328,-0.937328,-0.937328,-0.937328 +-0.944933,-0.944933,-0.944933,-0.944933,-0.944933,-0.944933 +-0.952538,-0.952538,-0.952538,-0.952538,-0.952538,-0.952538 +-0.960143,-0.960143,-0.960143,-0.960143,-0.960143,-0.960143 +-0.967748,-0.967748,-0.967748,-0.967748,-0.967748,-0.967748 +-0.975353,-0.975353,-0.975353,-0.975353,-0.975353,-0.975353 +-0.982958,-0.982958,-0.982958,-0.982958,-0.982958,-0.982958 +-0.990563,-0.990563,-0.990563,-0.990563,-0.990563,-0.990563 +-0.998168,-0.998168,-0.998168,-0.998168,-0.998168,-0.998168 +-1.005773,-1.005773,-1.005773,-1.005773,-1.005773,-1.005773 +-1.013378,-1.013378,-1.013378,-1.013378,-1.013378,-1.013378 +-1.020983,-1.020983,-1.020983,-1.020983,-1.020983,-1.020983 +-1.028588,-1.028588,-1.028588,-1.028588,-1.028588,-1.028588 +-1.036193,-1.036193,-1.036193,-1.036193,-1.036193,-1.036193 +-1.043798,-1.043798,-1.043798,-1.043798,-1.043798,-1.043798 +-1.051403,-1.051403,-1.051403,-1.051403,-1.051403,-1.051403 +-1.059008,-1.059008,-1.059008,-1.059008,-1.059008,-1.059008 +-1.066613,-1.066613,-1.066613,-1.066613,-1.066613,-1.066613 +-1.074218,-1.074218,-1.074218,-1.074218,-1.074218,-1.074218 +-1.081823,-1.081823,-1.081823,-1.081823,-1.081823,-1.081823 +-1.089428,-1.089428,-1.089428,-1.089428,-1.089428,-1.089428 +-1.097033,-1.097033,-1.097033,-1.097033,-1.097033,-1.097033 +-1.104638,-1.104638,-1.104638,-1.104638,-1.104638,-1.104638 +-1.112243,-1.112243,-1.112243,-1.112243,-1.112243,-1.112243 +-1.119848,-1.119848,-1.119848,-1.119848,-1.119848,-1.119848 +-1.127453,-1.127453,-1.127453,-1.127453,-1.127453,-1.127453 +-1.135058,-1.135058,-1.135058,-1.135058,-1.135058,-1.135058 +-1.142663,-1.142663,-1.142663,-1.142663,-1.142663,-1.142663 +-1.150268,-1.150268,-1.150268,-1.150268,-1.150268,-1.150268 +-1.157873,-1.157873,-1.157873,-1.157873,-1.157873,-1.157873 +-1.165478,-1.165478,-1.165478,-1.165478,-1.165478,-1.165478 +-1.173083,-1.173083,-1.173083,-1.173083,-1.173083,-1.173083 +-1.180688,-1.180688,-1.180688,-1.180688,-1.180688,-1.180688 +-1.188293,-1.188293,-1.188293,-1.188293,-1.188293,-1.188293 +-1.195898,-1.195898,-1.195898,-1.195898,-1.195898,-1.195898 +-1.203503,-1.203503,-1.203503,-1.203503,-1.203503,-1.203503 +-1.211108,-1.211108,-1.211108,-1.211108,-1.211108,-1.211108 +-1.218713,-1.218713,-1.218713,-1.218713,-1.218713,-1.218713 +-1.226318,-1.226318,-1.226318,-1.226318,-1.226318,-1.226318 +-1.233923,-1.233923,-1.233923,-1.233923,-1.233923,-1.233923 +-1.241528,-1.241528,-1.241528,-1.241528,-1.241528,-1.241528 +-1.249133,-1.249133,-1.249133,-1.249133,-1.249133,-1.249133 +-1.256738,-1.256738,-1.256738,-1.256738,-1.256738,-1.256738 +-1.264343,-1.264343,-1.264343,-1.264343,-1.264343,-1.264343 +-1.271948,-1.271948,-1.271948,-1.271948,-1.271948,-1.271948 +-1.279553,-1.279553,-1.279553,-1.279553,-1.279553,-1.279553 +-1.287158,-1.287158,-1.287158,-1.287158,-1.287158,-1.287158 +-1.294763,-1.294763,-1.294763,-1.294763,-1.294763,-1.294763 +-1.302368,-1.302368,-1.302368,-1.302368,-1.302368,-1.302368 +-1.309973,-1.309973,-1.309973,-1.309973,-1.309973,-1.309973 +-1.317578,-1.317578,-1.317578,-1.317578,-1.317578,-1.317578 +-1.325183,-1.325183,-1.325183,-1.325183,-1.325183,-1.325183 +-1.332788,-1.332788,-1.332788,-1.332788,-1.332788,-1.332788 +-1.340393,-1.340393,-1.340393,-1.340393,-1.340393,-1.340393 +-1.347998,-1.347998,-1.347998,-1.347998,-1.347998,-1.347998 +-1.355603,-1.355603,-1.355603,-1.355603,-1.355603,-1.355603 +-1.363208,-1.363208,-1.363208,-1.363208,-1.363208,-1.363208 +-1.370813,-1.370813,-1.370813,-1.370813,-1.370813,-1.370813 +-1.378418,-1.378418,-1.378418,-1.378418,-1.378418,-1.378418 +-1.386023,-1.386023,-1.386023,-1.386023,-1.386023,-1.386023 +-1.393628,-1.393628,-1.393628,-1.393628,-1.393628,-1.393628 +-1.401233,-1.401233,-1.401233,-1.401233,-1.401233,-1.401233 +-1.408838,-1.408838,-1.408838,-1.408838,-1.408838,-1.408838 +-1.416443,-1.416443,-1.416443,-1.416443,-1.416443,-1.416443 +-1.424048,-1.424048,-1.424048,-1.424048,-1.424048,-1.424048 +-1.431653,-1.431653,-1.431653,-1.431653,-1.431653,-1.431653 +-1.439258,-1.439258,-1.439258,-1.439258,-1.439258,-1.439258 +-1.446863,-1.446863,-1.446863,-1.446863,-1.446863,-1.446863 +-1.454468,-1.454468,-1.454468,-1.454468,-1.454468,-1.454468 +-1.462073,-1.462073,-1.462073,-1.462073,-1.462073,-1.462073 +-1.469678,-1.469678,-1.469678,-1.469678,-1.469678,-1.469678 +-1.477283,-1.477283,-1.477283,-1.477283,-1.477283,-1.477283 +-1.484888,-1.484888,-1.484888,-1.484888,-1.484888,-1.484888 +-1.492493,-1.492493,-1.492493,-1.492493,-1.492493,-1.492493 +-1.500098,-1.500098,-1.500098,-1.500098,-1.500098,-1.500098 +-1.507703,-1.507703,-1.507703,-1.507703,-1.507703,-1.507703 +-1.515308,-1.515308,-1.515308,-1.515308,-1.515308,-1.515308 +-1.522913,-1.522913,-1.522913,-1.522913,-1.522913,-1.522913 +-1.530518,-1.530518,-1.530518,-1.530518,-1.530518,-1.530518 +-1.538123,-1.538123,-1.538123,-1.538123,-1.538123,-1.538123 +-1.545728,-1.545728,-1.545728,-1.545728,-1.545728,-1.545728 +-1.553333,-1.553333,-1.553333,-1.553333,-1.553333,-1.553333 +-1.560938,-1.560938,-1.560938,-1.560938,-1.560938,-1.560938 +-1.568543,-1.568543,-1.568543,-1.568543,-1.568543,-1.568543 +-1.576148,-1.576148,-1.576148,-1.576148,-1.576148,-1.576148 +-1.583753,-1.583753,-1.583753,-1.583753,-1.583753,-1.583753 +-1.591358,-1.591358,-1.591358,-1.591358,-1.591358,-1.591358 +-1.598963,-1.598963,-1.598963,-1.598963,-1.598963,-1.598963 +-1.606557,-1.606557,-1.606557,-1.606557,-1.606557,-1.606557 +-1.614122,-1.614122,-1.614122,-1.614122,-1.614122,-1.614122 +-1.621638,-1.621638,-1.621638,-1.621638,-1.621638,-1.621638 +-1.629086,-1.629086,-1.629086,-1.629086,-1.629086,-1.629086 +-1.636446,-1.636446,-1.636446,-1.636446,-1.636446,-1.636446 +-1.643698,-1.643698,-1.643698,-1.643698,-1.643698,-1.643698 +-1.650824,-1.650824,-1.650824,-1.650824,-1.650824,-1.650824 +-1.657803,-1.657803,-1.657803,-1.657803,-1.657803,-1.657803 +-1.664616,-1.664616,-1.664616,-1.664616,-1.664616,-1.664616 +-1.671244,-1.671244,-1.671244,-1.671244,-1.671244,-1.671244 +-1.677667,-1.677667,-1.677667,-1.677667,-1.677667,-1.677667 +-1.683866,-1.683866,-1.683866,-1.683866,-1.683866,-1.683866 +-1.689821,-1.689821,-1.689821,-1.689821,-1.689821,-1.689821 +-1.695512,-1.695512,-1.695512,-1.695512,-1.695512,-1.695512 +-1.700921,-1.700921,-1.700921,-1.700921,-1.700921,-1.700921 +-1.706027,-1.706027,-1.706027,-1.706027,-1.706027,-1.706027 +-1.710812,-1.710812,-1.710812,-1.710812,-1.710812,-1.710812 +-1.715255,-1.715255,-1.715255,-1.715255,-1.715255,-1.715255 +-1.719337,-1.719337,-1.719337,-1.719337,-1.719337,-1.719337 +-1.723041,-1.723041,-1.723041,-1.723041,-1.723041,-1.723041 +-1.726376,-1.726376,-1.726376,-1.726376,-1.726376,-1.726376 +-1.729359,-1.729359,-1.729359,-1.729359,-1.729359,-1.729359 +-1.732011,-1.732011,-1.732011,-1.732011,-1.732011,-1.732011 +-1.734352,-1.734352,-1.734352,-1.734352,-1.734352,-1.734352 +-1.7364,-1.7364,-1.7364,-1.7364,-1.7364,-1.7364 +-1.738175,-1.738175,-1.738175,-1.738175,-1.738175,-1.738175 +-1.739697,-1.739697,-1.739697,-1.739697,-1.739697,-1.739697 +-1.740985,-1.740985,-1.740985,-1.740985,-1.740985,-1.740985 +-1.742059,-1.742059,-1.742059,-1.742059,-1.742059,-1.742059 +-1.742938,-1.742938,-1.742938,-1.742938,-1.742938,-1.742938 +-1.743642,-1.743642,-1.743642,-1.743642,-1.743642,-1.743642 +-1.74419,-1.74419,-1.74419,-1.74419,-1.74419,-1.74419 +-1.744601,-1.744601,-1.744601,-1.744601,-1.744601,-1.744601 +-1.744896,-1.744896,-1.744896,-1.744896,-1.744896,-1.744896 +-1.745093,-1.745093,-1.745093,-1.745093,-1.745093,-1.745093 +-1.745213,-1.745213,-1.745213,-1.745213,-1.745213,-1.745213 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745297,-1.745297,-1.745297,-1.745297,-1.745297,-1.745297 +-1.745274,-1.745274,-1.745274,-1.745274,-1.745274,-1.745274 +-1.745212,-1.745212,-1.745212,-1.745212,-1.745212,-1.745212 +-1.745092,-1.745092,-1.745092,-1.745092,-1.745092,-1.745092 +-1.744894,-1.744894,-1.744894,-1.744894,-1.744894,-1.744894 +-1.744598,-1.744598,-1.744598,-1.744598,-1.744598,-1.744598 +-1.744185,-1.744185,-1.744185,-1.744185,-1.744185,-1.744185 +-1.743636,-1.743636,-1.743636,-1.743636,-1.743636,-1.743636 +-1.742931,-1.742931,-1.742931,-1.742931,-1.742931,-1.742931 +-1.74205,-1.74205,-1.74205,-1.74205,-1.74205,-1.74205 +-1.740974,-1.740974,-1.740974,-1.740974,-1.740974,-1.740974 +-1.739684,-1.739684,-1.739684,-1.739684,-1.739684,-1.739684 +-1.73816,-1.73816,-1.73816,-1.73816,-1.73816,-1.73816 +-1.736382,-1.736382,-1.736382,-1.736382,-1.736382,-1.736382 +-1.734331,-1.734331,-1.734331,-1.734331,-1.734331,-1.734331 +-1.731988,-1.731988,-1.731988,-1.731988,-1.731988,-1.731988 +-1.729333,-1.729333,-1.729333,-1.729333,-1.729333,-1.729333 +-1.726346,-1.726346,-1.726346,-1.726346,-1.726346,-1.726346 +-1.723008,-1.723008,-1.723008,-1.723008,-1.723008,-1.723008 +-1.7193,-1.7193,-1.7193,-1.7193,-1.7193,-1.7193 +-1.715214,-1.715214,-1.715214,-1.715214,-1.715214,-1.715214 +-1.710768,-1.710768,-1.710768,-1.710768,-1.710768,-1.710768 +-1.705981,-1.705981,-1.705981,-1.705981,-1.705981,-1.705981 +-1.700872,-1.700872,-1.700872,-1.700872,-1.700872,-1.700872 +-1.69546,-1.69546,-1.69546,-1.69546,-1.69546,-1.69546 +-1.689766,-1.689766,-1.689766,-1.689766,-1.689766,-1.689766 +-1.683809,-1.683809,-1.683809,-1.683809,-1.683809,-1.683809 +-1.677608,-1.677608,-1.677608,-1.677608,-1.677608,-1.677608 +-1.671183,-1.671183,-1.671183,-1.671183,-1.671183,-1.671183 +-1.664553,-1.664553,-1.664553,-1.664553,-1.664553,-1.664553 +-1.657738,-1.657738,-1.657738,-1.657738,-1.657738,-1.657738 +-1.650757,-1.650757,-1.650757,-1.650757,-1.650757,-1.650757 +-1.64363,-1.64363,-1.64363,-1.64363,-1.64363,-1.64363 +-1.636377,-1.636377,-1.636377,-1.636377,-1.636377,-1.636377 +-1.629016,-1.629016,-1.629016,-1.629016,-1.629016,-1.629016 +-1.621568,-1.621568,-1.621568,-1.621568,-1.621568,-1.621568 +-1.614051,-1.614051,-1.614051,-1.614051,-1.614051,-1.614051 +-1.606486,-1.606486,-1.606486,-1.606486,-1.606486,-1.606486 +-1.598891,-1.598891,-1.598891,-1.598891,-1.598891,-1.598891 +-1.591287,-1.591287,-1.591287,-1.591287,-1.591287,-1.591287 +-1.583682,-1.583682,-1.583682,-1.583682,-1.583682,-1.583682 +-1.576077,-1.576077,-1.576077,-1.576077,-1.576077,-1.576077 +-1.568472,-1.568472,-1.568472,-1.568472,-1.568472,-1.568472 +-1.560867,-1.560867,-1.560867,-1.560867,-1.560867,-1.560867 +-1.553262,-1.553262,-1.553262,-1.553262,-1.553262,-1.553262 +-1.545657,-1.545657,-1.545657,-1.545657,-1.545657,-1.545657 +-1.538052,-1.538052,-1.538052,-1.538052,-1.538052,-1.538052 +-1.530447,-1.530447,-1.530447,-1.530447,-1.530447,-1.530447 +-1.522842,-1.522842,-1.522842,-1.522842,-1.522842,-1.522842 +-1.515237,-1.515237,-1.515237,-1.515237,-1.515237,-1.515237 +-1.507632,-1.507632,-1.507632,-1.507632,-1.507632,-1.507632 +-1.500027,-1.500027,-1.500027,-1.500027,-1.500027,-1.500027 +-1.492422,-1.492422,-1.492422,-1.492422,-1.492422,-1.492422 +-1.484817,-1.484817,-1.484817,-1.484817,-1.484817,-1.484817 +-1.477212,-1.477212,-1.477212,-1.477212,-1.477212,-1.477212 +-1.469607,-1.469607,-1.469607,-1.469607,-1.469607,-1.469607 +-1.462002,-1.462002,-1.462002,-1.462002,-1.462002,-1.462002 +-1.454397,-1.454397,-1.454397,-1.454397,-1.454397,-1.454397 +-1.446792,-1.446792,-1.446792,-1.446792,-1.446792,-1.446792 +-1.439187,-1.439187,-1.439187,-1.439187,-1.439187,-1.439187 +-1.431582,-1.431582,-1.431582,-1.431582,-1.431582,-1.431582 +-1.423977,-1.423977,-1.423977,-1.423977,-1.423977,-1.423977 +-1.416372,-1.416372,-1.416372,-1.416372,-1.416372,-1.416372 +-1.408767,-1.408767,-1.408767,-1.408767,-1.408767,-1.408767 +-1.401162,-1.401162,-1.401162,-1.401162,-1.401162,-1.401162 +-1.393557,-1.393557,-1.393557,-1.393557,-1.393557,-1.393557 +-1.385952,-1.385952,-1.385952,-1.385952,-1.385952,-1.385952 +-1.378347,-1.378347,-1.378347,-1.378347,-1.378347,-1.378347 +-1.370742,-1.370742,-1.370742,-1.370742,-1.370742,-1.370742 +-1.363137,-1.363137,-1.363137,-1.363137,-1.363137,-1.363137 +-1.355532,-1.355532,-1.355532,-1.355532,-1.355532,-1.355532 +-1.347927,-1.347927,-1.347927,-1.347927,-1.347927,-1.347927 +-1.340322,-1.340322,-1.340322,-1.340322,-1.340322,-1.340322 +-1.332717,-1.332717,-1.332717,-1.332717,-1.332717,-1.332717 +-1.325112,-1.325112,-1.325112,-1.325112,-1.325112,-1.325112 +-1.317507,-1.317507,-1.317507,-1.317507,-1.317507,-1.317507 +-1.309902,-1.309902,-1.309902,-1.309902,-1.309902,-1.309902 +-1.302297,-1.302297,-1.302297,-1.302297,-1.302297,-1.302297 +-1.294692,-1.294692,-1.294692,-1.294692,-1.294692,-1.294692 +-1.287087,-1.287087,-1.287087,-1.287087,-1.287087,-1.287087 +-1.279482,-1.279482,-1.279482,-1.279482,-1.279482,-1.279482 +-1.271877,-1.271877,-1.271877,-1.271877,-1.271877,-1.271877 +-1.264272,-1.264272,-1.264272,-1.264272,-1.264272,-1.264272 +-1.256667,-1.256667,-1.256667,-1.256667,-1.256667,-1.256667 +-1.249062,-1.249062,-1.249062,-1.249062,-1.249062,-1.249062 +-1.241457,-1.241457,-1.241457,-1.241457,-1.241457,-1.241457 +-1.233852,-1.233852,-1.233852,-1.233852,-1.233852,-1.233852 +-1.226247,-1.226247,-1.226247,-1.226247,-1.226247,-1.226247 +-1.218642,-1.218642,-1.218642,-1.218642,-1.218642,-1.218642 +-1.211037,-1.211037,-1.211037,-1.211037,-1.211037,-1.211037 +-1.203432,-1.203432,-1.203432,-1.203432,-1.203432,-1.203432 +-1.195827,-1.195827,-1.195827,-1.195827,-1.195827,-1.195827 +-1.188222,-1.188222,-1.188222,-1.188222,-1.188222,-1.188222 +-1.180617,-1.180617,-1.180617,-1.180617,-1.180617,-1.180617 +-1.173012,-1.173012,-1.173012,-1.173012,-1.173012,-1.173012 +-1.165407,-1.165407,-1.165407,-1.165407,-1.165407,-1.165407 +-1.157802,-1.157802,-1.157802,-1.157802,-1.157802,-1.157802 +-1.150197,-1.150197,-1.150197,-1.150197,-1.150197,-1.150197 +-1.142592,-1.142592,-1.142592,-1.142592,-1.142592,-1.142592 +-1.134987,-1.134987,-1.134987,-1.134987,-1.134987,-1.134987 +-1.127382,-1.127382,-1.127382,-1.127382,-1.127382,-1.127382 +-1.119777,-1.119777,-1.119777,-1.119777,-1.119777,-1.119777 +-1.112172,-1.112172,-1.112172,-1.112172,-1.112172,-1.112172 +-1.104567,-1.104567,-1.104567,-1.104567,-1.104567,-1.104567 +-1.096962,-1.096962,-1.096962,-1.096962,-1.096962,-1.096962 +-1.089357,-1.089357,-1.089357,-1.089357,-1.089357,-1.089357 +-1.081752,-1.081752,-1.081752,-1.081752,-1.081752,-1.081752 +-1.074147,-1.074147,-1.074147,-1.074147,-1.074147,-1.074147 +-1.066542,-1.066542,-1.066542,-1.066542,-1.066542,-1.066542 +-1.058937,-1.058937,-1.058937,-1.058937,-1.058937,-1.058937 +-1.051332,-1.051332,-1.051332,-1.051332,-1.051332,-1.051332 +-1.043727,-1.043727,-1.043727,-1.043727,-1.043727,-1.043727 +-1.036122,-1.036122,-1.036122,-1.036122,-1.036122,-1.036122 +-1.028517,-1.028517,-1.028517,-1.028517,-1.028517,-1.028517 +-1.020912,-1.020912,-1.020912,-1.020912,-1.020912,-1.020912 +-1.013307,-1.013307,-1.013307,-1.013307,-1.013307,-1.013307 +-1.005702,-1.005702,-1.005702,-1.005702,-1.005702,-1.005702 +-0.998097,-0.998097,-0.998097,-0.998097,-0.998097,-0.998097 +-0.990492,-0.990492,-0.990492,-0.990492,-0.990492,-0.990492 +-0.982887,-0.982887,-0.982887,-0.982887,-0.982887,-0.982887 +-0.975282,-0.975282,-0.975282,-0.975282,-0.975282,-0.975282 +-0.967677,-0.967677,-0.967677,-0.967677,-0.967677,-0.967677 +-0.960072,-0.960072,-0.960072,-0.960072,-0.960072,-0.960072 +-0.952467,-0.952467,-0.952467,-0.952467,-0.952467,-0.952467 +-0.944862,-0.944862,-0.944862,-0.944862,-0.944862,-0.944862 +-0.937257,-0.937257,-0.937257,-0.937257,-0.937257,-0.937257 +-0.929652,-0.929652,-0.929652,-0.929652,-0.929652,-0.929652 +-0.922047,-0.922047,-0.922047,-0.922047,-0.922047,-0.922047 +-0.914442,-0.914442,-0.914442,-0.914442,-0.914442,-0.914442 +-0.906837,-0.906837,-0.906837,-0.906837,-0.906837,-0.906837 +-0.899232,-0.899232,-0.899232,-0.899232,-0.899232,-0.899232 +-0.891627,-0.891627,-0.891627,-0.891627,-0.891627,-0.891627 +-0.884022,-0.884022,-0.884022,-0.884022,-0.884022,-0.884022 +-0.876417,-0.876417,-0.876417,-0.876417,-0.876417,-0.876417 +-0.868812,-0.868812,-0.868812,-0.868812,-0.868812,-0.868812 +-0.861207,-0.861207,-0.861207,-0.861207,-0.861207,-0.861207 +-0.853602,-0.853602,-0.853602,-0.853602,-0.853602,-0.853602 +-0.845997,-0.845997,-0.845997,-0.845997,-0.845997,-0.845997 +-0.838392,-0.838392,-0.838392,-0.838392,-0.838392,-0.838392 +-0.830787,-0.830787,-0.830787,-0.830787,-0.830787,-0.830787 +-0.823182,-0.823182,-0.823182,-0.823182,-0.823182,-0.823182 +-0.815577,-0.815577,-0.815577,-0.815577,-0.815577,-0.815577 +-0.807972,-0.807972,-0.807972,-0.807972,-0.807972,-0.807972 +-0.800367,-0.800367,-0.800367,-0.800367,-0.800367,-0.800367 +-0.792762,-0.792762,-0.792762,-0.792762,-0.792762,-0.792762 +-0.785157,-0.785157,-0.785157,-0.785157,-0.785157,-0.785157 +-0.777552,-0.777552,-0.777552,-0.777552,-0.777552,-0.777552 +-0.769947,-0.769947,-0.769947,-0.769947,-0.769947,-0.769947 +-0.762342,-0.762342,-0.762342,-0.762342,-0.762342,-0.762342 +-0.754737,-0.754737,-0.754737,-0.754737,-0.754737,-0.754737 +-0.747132,-0.747132,-0.747132,-0.747132,-0.747132,-0.747132 +-0.739527,-0.739527,-0.739527,-0.739527,-0.739527,-0.739527 +-0.731922,-0.731922,-0.731922,-0.731922,-0.731922,-0.731922 +-0.724317,-0.724317,-0.724317,-0.724317,-0.724317,-0.724317 +-0.716712,-0.716712,-0.716712,-0.716712,-0.716712,-0.716712 +-0.709107,-0.709107,-0.709107,-0.709107,-0.709107,-0.709107 +-0.701502,-0.701502,-0.701502,-0.701502,-0.701502,-0.701502 +-0.693897,-0.693897,-0.693897,-0.693897,-0.693897,-0.693897 +-0.686292,-0.686292,-0.686292,-0.686292,-0.686292,-0.686292 +-0.678687,-0.678687,-0.678687,-0.678687,-0.678687,-0.678687 +-0.671082,-0.671082,-0.671082,-0.671082,-0.671082,-0.671082 +-0.663477,-0.663477,-0.663477,-0.663477,-0.663477,-0.663477 +-0.655872,-0.655872,-0.655872,-0.655872,-0.655872,-0.655872 +-0.648267,-0.648267,-0.648267,-0.648267,-0.648267,-0.648267 +-0.640662,-0.640662,-0.640662,-0.640662,-0.640662,-0.640662 +-0.633057,-0.633057,-0.633057,-0.633057,-0.633057,-0.633057 +-0.625452,-0.625452,-0.625452,-0.625452,-0.625452,-0.625452 +-0.617847,-0.617847,-0.617847,-0.617847,-0.617847,-0.617847 +-0.610242,-0.610242,-0.610242,-0.610242,-0.610242,-0.610242 +-0.602637,-0.602637,-0.602637,-0.602637,-0.602637,-0.602637 +-0.595032,-0.595032,-0.595032,-0.595032,-0.595032,-0.595032 +-0.587427,-0.587427,-0.587427,-0.587427,-0.587427,-0.587427 +-0.579822,-0.579822,-0.579822,-0.579822,-0.579822,-0.579822 +-0.572217,-0.572217,-0.572217,-0.572217,-0.572217,-0.572217 +-0.564612,-0.564612,-0.564612,-0.564612,-0.564612,-0.564612 +-0.557007,-0.557007,-0.557007,-0.557007,-0.557007,-0.557007 +-0.549402,-0.549402,-0.549402,-0.549402,-0.549402,-0.549402 +-0.541797,-0.541797,-0.541797,-0.541797,-0.541797,-0.541797 +-0.534192,-0.534192,-0.534192,-0.534192,-0.534192,-0.534192 +-0.526587,-0.526587,-0.526587,-0.526587,-0.526587,-0.526587 +-0.518982,-0.518982,-0.518982,-0.518982,-0.518982,-0.518982 +-0.511377,-0.511377,-0.511377,-0.511377,-0.511377,-0.511377 +-0.503772,-0.503772,-0.503772,-0.503772,-0.503772,-0.503772 +-0.496167,-0.496167,-0.496167,-0.496167,-0.496167,-0.496167 +-0.488562,-0.488562,-0.488562,-0.488562,-0.488562,-0.488562 +-0.480957,-0.480957,-0.480957,-0.480957,-0.480957,-0.480957 +-0.473352,-0.473352,-0.473352,-0.473352,-0.473352,-0.473352 +-0.465747,-0.465747,-0.465747,-0.465747,-0.465747,-0.465747 +-0.458142,-0.458142,-0.458142,-0.458142,-0.458142,-0.458142 +-0.450537,-0.450537,-0.450537,-0.450537,-0.450537,-0.450537 +-0.442932,-0.442932,-0.442932,-0.442932,-0.442932,-0.442932 +-0.435327,-0.435327,-0.435327,-0.435327,-0.435327,-0.435327 +-0.427722,-0.427722,-0.427722,-0.427722,-0.427722,-0.427722 +-0.420117,-0.420117,-0.420117,-0.420117,-0.420117,-0.420117 +-0.412512,-0.412512,-0.412512,-0.412512,-0.412512,-0.412512 +-0.404907,-0.404907,-0.404907,-0.404907,-0.404907,-0.404907 +-0.397302,-0.397302,-0.397302,-0.397302,-0.397302,-0.397302 +-0.389697,-0.389697,-0.389697,-0.389697,-0.389697,-0.389697 +-0.382092,-0.382092,-0.382092,-0.382092,-0.382092,-0.382092 +-0.374487,-0.374487,-0.374487,-0.374487,-0.374487,-0.374487 +-0.366882,-0.366882,-0.366882,-0.366882,-0.366882,-0.366882 +-0.359277,-0.359277,-0.359277,-0.359277,-0.359277,-0.359277 +-0.351672,-0.351672,-0.351672,-0.351672,-0.351672,-0.351672 +-0.344067,-0.344067,-0.344067,-0.344067,-0.344067,-0.344067 +-0.336462,-0.336462,-0.336462,-0.336462,-0.336462,-0.336462 +-0.328857,-0.328857,-0.328857,-0.328857,-0.328857,-0.328857 +-0.321252,-0.321252,-0.321252,-0.321252,-0.321252,-0.321252 +-0.313647,-0.313647,-0.313647,-0.313647,-0.313647,-0.313647 +-0.306042,-0.306042,-0.306042,-0.306042,-0.306042,-0.306042 +-0.298437,-0.298437,-0.298437,-0.298437,-0.298437,-0.298437 +-0.290832,-0.290832,-0.290832,-0.290832,-0.290832,-0.290832 +-0.283227,-0.283227,-0.283227,-0.283227,-0.283227,-0.283227 +-0.275622,-0.275622,-0.275622,-0.275622,-0.275622,-0.275622 +-0.268017,-0.268017,-0.268017,-0.268017,-0.268017,-0.268017 +-0.260412,-0.260412,-0.260412,-0.260412,-0.260412,-0.260412 +-0.252807,-0.252807,-0.252807,-0.252807,-0.252807,-0.252807 +-0.245202,-0.245202,-0.245202,-0.245202,-0.245202,-0.245202 +-0.237597,-0.237597,-0.237597,-0.237597,-0.237597,-0.237597 +-0.229992,-0.229992,-0.229992,-0.229992,-0.229992,-0.229992 +-0.222387,-0.222387,-0.222387,-0.222387,-0.222387,-0.222387 +-0.214782,-0.214782,-0.214782,-0.214782,-0.214782,-0.214782 +-0.207177,-0.207177,-0.207177,-0.207177,-0.207177,-0.207177 +-0.199572,-0.199572,-0.199572,-0.199572,-0.199572,-0.199572 +-0.191967,-0.191967,-0.191967,-0.191967,-0.191967,-0.191967 +-0.184362,-0.184362,-0.184362,-0.184362,-0.184362,-0.184362 +-0.176757,-0.176757,-0.176757,-0.176757,-0.176757,-0.176757 +-0.169152,-0.169152,-0.169152,-0.169152,-0.169152,-0.169152 +-0.161547,-0.161547,-0.161547,-0.161547,-0.161547,-0.161547 +-0.153942,-0.153942,-0.153942,-0.153942,-0.153942,-0.153942 +-0.146337,-0.146337,-0.146337,-0.146337,-0.146337,-0.146337 +-0.138743,-0.138743,-0.138743,-0.138743,-0.138743,-0.138743 +-0.131178,-0.131178,-0.131178,-0.131178,-0.131178,-0.131178 +-0.123662,-0.123662,-0.123662,-0.123662,-0.123662,-0.123662 +-0.116214,-0.116214,-0.116214,-0.116214,-0.116214,-0.116214 +-0.108854,-0.108854,-0.108854,-0.108854,-0.108854,-0.108854 +-0.101602,-0.101602,-0.101602,-0.101602,-0.101602,-0.101602 +-0.094476,-0.094476,-0.094476,-0.094476,-0.094476,-0.094476 +-0.087497,-0.087497,-0.087497,-0.087497,-0.087497,-0.087497 +-0.080684,-0.080684,-0.080684,-0.080684,-0.080684,-0.080684 +-0.074056,-0.074056,-0.074056,-0.074056,-0.074056,-0.074056 +-0.067633,-0.067633,-0.067633,-0.067633,-0.067633,-0.067633 +-0.061434,-0.061434,-0.061434,-0.061434,-0.061434,-0.061434 +-0.055479,-0.055479,-0.055479,-0.055479,-0.055479,-0.055479 +-0.049788,-0.049788,-0.049788,-0.049788,-0.049788,-0.049788 +-0.044379,-0.044379,-0.044379,-0.044379,-0.044379,-0.044379 +-0.039273,-0.039273,-0.039273,-0.039273,-0.039273,-0.039273 +-0.034488,-0.034488,-0.034488,-0.034488,-0.034488,-0.034488 +-0.030045,-0.030045,-0.030045,-0.030045,-0.030045,-0.030045 +-0.025963,-0.025963,-0.025963,-0.025963,-0.025963,-0.025963 +-0.022259,-0.022259,-0.022259,-0.022259,-0.022259,-0.022259 +-0.018924,-0.018924,-0.018924,-0.018924,-0.018924,-0.018924 +-0.015941,-0.015941,-0.015941,-0.015941,-0.015941,-0.015941 +-0.013289,-0.013289,-0.013289,-0.013289,-0.013289,-0.013289 +-0.010948,-0.010948,-0.010948,-0.010948,-0.010948,-0.010948 +-0.0089,-0.0089,-0.0089,-0.0089,-0.0089,-0.0089 +-0.007125,-0.007125,-0.007125,-0.007125,-0.007125,-0.007125 +-0.005603,-0.005603,-0.005603,-0.005603,-0.005603,-0.005603 +-0.004315,-0.004315,-0.004315,-0.004315,-0.004315,-0.004315 +-0.003241,-0.003241,-0.003241,-0.003241,-0.003241,-0.003241 +-0.002362,-0.002362,-0.002362,-0.002362,-0.002362,-0.002362 +-0.001658,-0.001658,-0.001658,-0.001658,-0.001658,-0.001658 +-0.00111,-0.00111,-0.00111,-0.00111,-0.00111,-0.00111 +-0.000699,-0.000699,-0.000699,-0.000699,-0.000699,-0.000699 +-0.000404,-0.000404,-0.000404,-0.000404,-0.000404,-0.000404 +-0.000207,-0.000207,-0.000207,-0.000207,-0.000207,-0.000207 +-0.000087,-0.000087,-0.000087,-0.000087,-0.000087,-0.000087 +-0.000026,-0.000026,-0.000026,-0.000026,-0.000026,-0.000026 +-0.000003,-0.000003,-0.000003,-0.000003,-0.000003,-0.000003 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/9.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/9.csv new file mode 100644 index 00000000..62a9d4d5 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/collision_traj/9.csv @@ -0,0 +1,3812 @@ +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000267,-0.000267,-0.000267,-0.000267,-0.000267,-0.000267 +-0.000521,-0.000521,-0.000521,-0.000521,-0.000521,-0.000521 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001429,-0.001429,-0.001429,-0.001429,-0.001429,-0.001429 +-0.002133,-0.002133,-0.002133,-0.002133,-0.002133,-0.002133 +-0.003037,-0.003037,-0.003037,-0.003037,-0.003037,-0.003037 +-0.004167,-0.004167,-0.004167,-0.004167,-0.004167,-0.004167 +-0.005546,-0.005546,-0.005546,-0.005546,-0.005546,-0.005546 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.009154,-0.009154,-0.009154,-0.009154,-0.009154,-0.009154 +-0.011433,-0.011433,-0.011433,-0.011433,-0.011433,-0.011433 +-0.014062,-0.014062,-0.014062,-0.014062,-0.014062,-0.014062 +-0.017067,-0.017067,-0.017067,-0.017067,-0.017067,-0.017067 +-0.020471,-0.020471,-0.020471,-0.020471,-0.020471,-0.020471 +-0.0243,-0.0243,-0.0243,-0.0243,-0.0243,-0.0243 +-0.028579,-0.028579,-0.028579,-0.028579,-0.028579,-0.028579 +-0.033333,-0.033333,-0.033333,-0.033333,-0.033333,-0.033333 +-0.038587,-0.038587,-0.038587,-0.038587,-0.038587,-0.038587 +-0.044367,-0.044367,-0.044367,-0.044367,-0.044367,-0.044367 +-0.050694,-0.050694,-0.050694,-0.050694,-0.050694,-0.050694 +-0.057563,-0.057563,-0.057563,-0.057563,-0.057563,-0.057563 +-0.064951,-0.064951,-0.064951,-0.064951,-0.064951,-0.064951 +-0.072832,-0.072832,-0.072832,-0.072832,-0.072832,-0.072832 +-0.08118,-0.08118,-0.08118,-0.08118,-0.08118,-0.08118 +-0.089972,-0.089972,-0.089972,-0.089972,-0.089972,-0.089972 +-0.099182,-0.099182,-0.099182,-0.099182,-0.099182,-0.099182 +-0.108785,-0.108785,-0.108785,-0.108785,-0.108785,-0.108785 +-0.118756,-0.118756,-0.118756,-0.118756,-0.118756,-0.118756 +-0.12907,-0.12907,-0.12907,-0.12907,-0.12907,-0.12907 +-0.139702,-0.139702,-0.139702,-0.139702,-0.139702,-0.139702 +-0.150626,-0.150626,-0.150626,-0.150626,-0.150626,-0.150626 +-0.161819,-0.161819,-0.161819,-0.161819,-0.161819,-0.161819 +-0.173256,-0.173256,-0.173256,-0.173256,-0.173256,-0.173256 +-0.18491,-0.18491,-0.18491,-0.18491,-0.18491,-0.18491 +-0.196757,-0.196757,-0.196757,-0.196757,-0.196757,-0.196757 +-0.208772,-0.208772,-0.208772,-0.208772,-0.208772,-0.208772 +-0.22093,-0.22093,-0.22093,-0.22093,-0.22093,-0.22093 +-0.233206,-0.233206,-0.233206,-0.233206,-0.233206,-0.233206 +-0.245575,-0.245575,-0.245575,-0.245575,-0.245575,-0.245575 +-0.258013,-0.258013,-0.258013,-0.258013,-0.258013,-0.258013 +-0.270493,-0.270493,-0.270493,-0.270493,-0.270493,-0.270493 +-0.282992,-0.282992,-0.282992,-0.282992,-0.282992,-0.282992 +-0.295492,-0.295492,-0.295492,-0.295492,-0.295492,-0.295492 +-0.307992,-0.307992,-0.307992,-0.307992,-0.307992,-0.307992 +-0.320492,-0.320492,-0.320492,-0.320492,-0.320492,-0.320492 +-0.332992,-0.332992,-0.332992,-0.332992,-0.332992,-0.332992 +-0.345492,-0.345492,-0.345492,-0.345492,-0.345492,-0.345492 +-0.357992,-0.357992,-0.357992,-0.357992,-0.357992,-0.357992 +-0.370492,-0.370492,-0.370492,-0.370492,-0.370492,-0.370492 +-0.382992,-0.382992,-0.382992,-0.382992,-0.382992,-0.382992 +-0.395492,-0.395492,-0.395492,-0.395492,-0.395492,-0.395492 +-0.407992,-0.407992,-0.407992,-0.407992,-0.407992,-0.407992 +-0.420492,-0.420492,-0.420492,-0.420492,-0.420492,-0.420492 +-0.432992,-0.432992,-0.432992,-0.432992,-0.432992,-0.432992 +-0.445492,-0.445492,-0.445492,-0.445492,-0.445492,-0.445492 +-0.457992,-0.457992,-0.457992,-0.457992,-0.457992,-0.457992 +-0.470492,-0.470492,-0.470492,-0.470492,-0.470492,-0.470492 +-0.482992,-0.482992,-0.482992,-0.482992,-0.482992,-0.482992 +-0.495492,-0.495492,-0.495492,-0.495492,-0.495492,-0.495492 +-0.507992,-0.507992,-0.507992,-0.507992,-0.507992,-0.507992 +-0.520492,-0.520492,-0.520492,-0.520492,-0.520492,-0.520492 +-0.532992,-0.532992,-0.532992,-0.532992,-0.532992,-0.532992 +-0.545492,-0.545492,-0.545492,-0.545492,-0.545492,-0.545492 +-0.557992,-0.557992,-0.557992,-0.557992,-0.557992,-0.557992 +-0.570492,-0.570492,-0.570492,-0.570492,-0.570492,-0.570492 +-0.582992,-0.582992,-0.582992,-0.582992,-0.582992,-0.582992 +-0.595492,-0.595492,-0.595492,-0.595492,-0.595492,-0.595492 +-0.607992,-0.607992,-0.607992,-0.607992,-0.607992,-0.607992 +-0.620492,-0.620492,-0.620492,-0.620492,-0.620492,-0.620492 +-0.632992,-0.632992,-0.632992,-0.632992,-0.632992,-0.632992 +-0.645492,-0.645492,-0.645492,-0.645492,-0.645492,-0.645492 +-0.657992,-0.657992,-0.657992,-0.657992,-0.657992,-0.657992 +-0.670492,-0.670492,-0.670492,-0.670492,-0.670492,-0.670492 +-0.682992,-0.682992,-0.682992,-0.682992,-0.682992,-0.682992 +-0.695492,-0.695492,-0.695492,-0.695492,-0.695492,-0.695492 +-0.707992,-0.707992,-0.707992,-0.707992,-0.707992,-0.707992 +-0.720492,-0.720492,-0.720492,-0.720492,-0.720492,-0.720492 +-0.732992,-0.732992,-0.732992,-0.732992,-0.732992,-0.732992 +-0.745492,-0.745492,-0.745492,-0.745492,-0.745492,-0.745492 +-0.757992,-0.757992,-0.757992,-0.757992,-0.757992,-0.757992 +-0.770492,-0.770492,-0.770492,-0.770492,-0.770492,-0.770492 +-0.782992,-0.782992,-0.782992,-0.782992,-0.782992,-0.782992 +-0.795492,-0.795492,-0.795492,-0.795492,-0.795492,-0.795492 +-0.807992,-0.807992,-0.807992,-0.807992,-0.807992,-0.807992 +-0.820492,-0.820492,-0.820492,-0.820492,-0.820492,-0.820492 +-0.832992,-0.832992,-0.832992,-0.832992,-0.832992,-0.832992 +-0.845492,-0.845492,-0.845492,-0.845492,-0.845492,-0.845492 +-0.857992,-0.857992,-0.857992,-0.857992,-0.857992,-0.857992 +-0.870492,-0.870492,-0.870492,-0.870492,-0.870492,-0.870492 +-0.882992,-0.882992,-0.882992,-0.882992,-0.882992,-0.882992 +-0.895492,-0.895492,-0.895492,-0.895492,-0.895492,-0.895492 +-0.907992,-0.907992,-0.907992,-0.907992,-0.907992,-0.907992 +-0.920492,-0.920492,-0.920492,-0.920492,-0.920492,-0.920492 +-0.932992,-0.932992,-0.932992,-0.932992,-0.932992,-0.932992 +-0.945492,-0.945492,-0.945492,-0.945492,-0.945492,-0.945492 +-0.957992,-0.957992,-0.957992,-0.957992,-0.957992,-0.957992 +-0.970492,-0.970492,-0.970492,-0.970492,-0.970492,-0.970492 +-0.982992,-0.982992,-0.982992,-0.982992,-0.982992,-0.982992 +-0.995492,-0.995492,-0.995492,-0.995492,-0.995492,-0.995492 +-1.007992,-1.007992,-1.007992,-1.007992,-1.007992,-1.007992 +-1.020492,-1.020492,-1.020492,-1.020492,-1.020492,-1.020492 +-1.032992,-1.032992,-1.032992,-1.032992,-1.032992,-1.032992 +-1.045492,-1.045492,-1.045492,-1.045492,-1.045492,-1.045492 +-1.057992,-1.057992,-1.057992,-1.057992,-1.057992,-1.057992 +-1.070492,-1.070492,-1.070492,-1.070492,-1.070492,-1.070492 +-1.082992,-1.082992,-1.082992,-1.082992,-1.082992,-1.082992 +-1.095492,-1.095492,-1.095492,-1.095492,-1.095492,-1.095492 +-1.107992,-1.107992,-1.107992,-1.107992,-1.107992,-1.107992 +-1.120492,-1.120492,-1.120492,-1.120492,-1.120492,-1.120492 +-1.132992,-1.132992,-1.132992,-1.132992,-1.132992,-1.132992 +-1.145492,-1.145492,-1.145492,-1.145492,-1.145492,-1.145492 +-1.157992,-1.157992,-1.157992,-1.157992,-1.157992,-1.157992 +-1.170492,-1.170492,-1.170492,-1.170492,-1.170492,-1.170492 +-1.182992,-1.182992,-1.182992,-1.182992,-1.182992,-1.182992 +-1.195492,-1.195492,-1.195492,-1.195492,-1.195492,-1.195492 +-1.207992,-1.207992,-1.207992,-1.207992,-1.207992,-1.207992 +-1.220492,-1.220492,-1.220492,-1.220492,-1.220492,-1.220492 +-1.232992,-1.232992,-1.232992,-1.232992,-1.232992,-1.232992 +-1.245492,-1.245492,-1.245492,-1.245492,-1.245492,-1.245492 +-1.257992,-1.257992,-1.257992,-1.257992,-1.257992,-1.257992 +-1.270492,-1.270492,-1.270492,-1.270492,-1.270492,-1.270492 +-1.282992,-1.282992,-1.282992,-1.282992,-1.282992,-1.282992 +-1.295492,-1.295492,-1.295492,-1.295492,-1.295492,-1.295492 +-1.307992,-1.307992,-1.307992,-1.307992,-1.307992,-1.307992 +-1.320492,-1.320492,-1.320492,-1.320492,-1.320492,-1.320492 +-1.332992,-1.332992,-1.332992,-1.332992,-1.332992,-1.332992 +-1.345492,-1.345492,-1.345492,-1.345492,-1.345492,-1.345492 +-1.357992,-1.357992,-1.357992,-1.357992,-1.357992,-1.357992 +-1.370492,-1.370492,-1.370492,-1.370492,-1.370492,-1.370492 +-1.382992,-1.382992,-1.382992,-1.382992,-1.382992,-1.382992 +-1.395492,-1.395492,-1.395492,-1.395492,-1.395492,-1.395492 +-1.407992,-1.407992,-1.407992,-1.407992,-1.407992,-1.407992 +-1.420492,-1.420492,-1.420492,-1.420492,-1.420492,-1.420492 +-1.432992,-1.432992,-1.432992,-1.432992,-1.432992,-1.432992 +-1.445492,-1.445492,-1.445492,-1.445492,-1.445492,-1.445492 +-1.457992,-1.457992,-1.457992,-1.457992,-1.457992,-1.457992 +-1.470491,-1.470491,-1.470491,-1.470491,-1.470491,-1.470491 +-1.482981,-1.482981,-1.482981,-1.482981,-1.482981,-1.482981 +-1.495436,-1.495436,-1.495436,-1.495436,-1.495436,-1.495436 +-1.507831,-1.507831,-1.507831,-1.507831,-1.507831,-1.507831 +-1.520142,-1.520142,-1.520142,-1.520142,-1.520142,-1.520142 +-1.532344,-1.532344,-1.532344,-1.532344,-1.532344,-1.532344 +-1.544411,-1.544411,-1.544411,-1.544411,-1.544411,-1.544411 +-1.556319,-1.556319,-1.556319,-1.556319,-1.556319,-1.556319 +-1.568043,-1.568043,-1.568043,-1.568043,-1.568043,-1.568043 +-1.579557,-1.579557,-1.579557,-1.579557,-1.579557,-1.579557 +-1.590837,-1.590837,-1.590837,-1.590837,-1.590837,-1.590837 +-1.601857,-1.601857,-1.601857,-1.601857,-1.601857,-1.601857 +-1.612593,-1.612593,-1.612593,-1.612593,-1.612593,-1.612593 +-1.62302,-1.62302,-1.62302,-1.62302,-1.62302,-1.62302 +-1.633112,-1.633112,-1.633112,-1.633112,-1.633112,-1.633112 +-1.642845,-1.642845,-1.642845,-1.642845,-1.642845,-1.642845 +-1.652193,-1.652193,-1.652193,-1.652193,-1.652193,-1.652193 +-1.661132,-1.661132,-1.661132,-1.661132,-1.661132,-1.661132 +-1.669637,-1.669637,-1.669637,-1.669637,-1.669637,-1.669637 +-1.677682,-1.677682,-1.677682,-1.677682,-1.677682,-1.677682 +-1.685243,-1.685243,-1.685243,-1.685243,-1.685243,-1.685243 +-1.692294,-1.692294,-1.692294,-1.692294,-1.692294,-1.692294 +-1.698811,-1.698811,-1.698811,-1.698811,-1.698811,-1.698811 +-1.704777,-1.704777,-1.704777,-1.704777,-1.704777,-1.704777 +-1.71021,-1.71021,-1.71021,-1.71021,-1.71021,-1.71021 +-1.715134,-1.715134,-1.715134,-1.715134,-1.715134,-1.715134 +-1.719574,-1.719574,-1.719574,-1.719574,-1.719574,-1.719574 +-1.723556,-1.723556,-1.723556,-1.723556,-1.723556,-1.723556 +-1.727104,-1.727104,-1.727104,-1.727104,-1.727104,-1.727104 +-1.730244,-1.730244,-1.730244,-1.730244,-1.730244,-1.730244 +-1.732999,-1.732999,-1.732999,-1.732999,-1.732999,-1.732999 +-1.735397,-1.735397,-1.735397,-1.735397,-1.735397,-1.735397 +-1.73746,-1.73746,-1.73746,-1.73746,-1.73746,-1.73746 +-1.739215,-1.739215,-1.739215,-1.739215,-1.739215,-1.739215 +-1.740687,-1.740687,-1.740687,-1.740687,-1.740687,-1.740687 +-1.741899,-1.741899,-1.741899,-1.741899,-1.741899,-1.741899 +-1.742878,-1.742878,-1.742878,-1.742878,-1.742878,-1.742878 +-1.743649,-1.743649,-1.743649,-1.743649,-1.743649,-1.743649 +-1.744235,-1.744235,-1.744235,-1.744235,-1.744235,-1.744235 +-1.744664,-1.744664,-1.744664,-1.744664,-1.744664,-1.744664 +-1.744958,-1.744958,-1.744958,-1.744958,-1.744958,-1.744958 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745033,-1.745033,-1.745033,-1.745033,-1.745033,-1.745033 +-1.744779,-1.744779,-1.744779,-1.744779,-1.744779,-1.744779 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743871,-1.743871,-1.743871,-1.743871,-1.743871,-1.743871 +-1.743167,-1.743167,-1.743167,-1.743167,-1.743167,-1.743167 +-1.742263,-1.742263,-1.742263,-1.742263,-1.742263,-1.742263 +-1.741133,-1.741133,-1.741133,-1.741133,-1.741133,-1.741133 +-1.739754,-1.739754,-1.739754,-1.739754,-1.739754,-1.739754 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.736146,-1.736146,-1.736146,-1.736146,-1.736146,-1.736146 +-1.733867,-1.733867,-1.733867,-1.733867,-1.733867,-1.733867 +-1.731238,-1.731238,-1.731238,-1.731238,-1.731238,-1.731238 +-1.728233,-1.728233,-1.728233,-1.728233,-1.728233,-1.728233 +-1.724829,-1.724829,-1.724829,-1.724829,-1.724829,-1.724829 +-1.721,-1.721,-1.721,-1.721,-1.721,-1.721 +-1.716721,-1.716721,-1.716721,-1.716721,-1.716721,-1.716721 +-1.711967,-1.711967,-1.711967,-1.711967,-1.711967,-1.711967 +-1.706713,-1.706713,-1.706713,-1.706713,-1.706713,-1.706713 +-1.700933,-1.700933,-1.700933,-1.700933,-1.700933,-1.700933 +-1.694606,-1.694606,-1.694606,-1.694606,-1.694606,-1.694606 +-1.687737,-1.687737,-1.687737,-1.687737,-1.687737,-1.687737 +-1.680349,-1.680349,-1.680349,-1.680349,-1.680349,-1.680349 +-1.672468,-1.672468,-1.672468,-1.672468,-1.672468,-1.672468 +-1.66412,-1.66412,-1.66412,-1.66412,-1.66412,-1.66412 +-1.655328,-1.655328,-1.655328,-1.655328,-1.655328,-1.655328 +-1.646118,-1.646118,-1.646118,-1.646118,-1.646118,-1.646118 +-1.636515,-1.636515,-1.636515,-1.636515,-1.636515,-1.636515 +-1.626544,-1.626544,-1.626544,-1.626544,-1.626544,-1.626544 +-1.61623,-1.61623,-1.61623,-1.61623,-1.61623,-1.61623 +-1.605598,-1.605598,-1.605598,-1.605598,-1.605598,-1.605598 +-1.594674,-1.594674,-1.594674,-1.594674,-1.594674,-1.594674 +-1.583481,-1.583481,-1.583481,-1.583481,-1.583481,-1.583481 +-1.572044,-1.572044,-1.572044,-1.572044,-1.572044,-1.572044 +-1.56039,-1.56039,-1.56039,-1.56039,-1.56039,-1.56039 +-1.548543,-1.548543,-1.548543,-1.548543,-1.548543,-1.548543 +-1.536528,-1.536528,-1.536528,-1.536528,-1.536528,-1.536528 +-1.52437,-1.52437,-1.52437,-1.52437,-1.52437,-1.52437 +-1.512094,-1.512094,-1.512094,-1.512094,-1.512094,-1.512094 +-1.499725,-1.499725,-1.499725,-1.499725,-1.499725,-1.499725 +-1.487287,-1.487287,-1.487287,-1.487287,-1.487287,-1.487287 +-1.474807,-1.474807,-1.474807,-1.474807,-1.474807,-1.474807 +-1.462308,-1.462308,-1.462308,-1.462308,-1.462308,-1.462308 +-1.449808,-1.449808,-1.449808,-1.449808,-1.449808,-1.449808 +-1.437308,-1.437308,-1.437308,-1.437308,-1.437308,-1.437308 +-1.424808,-1.424808,-1.424808,-1.424808,-1.424808,-1.424808 +-1.412308,-1.412308,-1.412308,-1.412308,-1.412308,-1.412308 +-1.399808,-1.399808,-1.399808,-1.399808,-1.399808,-1.399808 +-1.387308,-1.387308,-1.387308,-1.387308,-1.387308,-1.387308 +-1.374808,-1.374808,-1.374808,-1.374808,-1.374808,-1.374808 +-1.362308,-1.362308,-1.362308,-1.362308,-1.362308,-1.362308 +-1.349808,-1.349808,-1.349808,-1.349808,-1.349808,-1.349808 +-1.337308,-1.337308,-1.337308,-1.337308,-1.337308,-1.337308 +-1.324808,-1.324808,-1.324808,-1.324808,-1.324808,-1.324808 +-1.312308,-1.312308,-1.312308,-1.312308,-1.312308,-1.312308 +-1.299808,-1.299808,-1.299808,-1.299808,-1.299808,-1.299808 +-1.287308,-1.287308,-1.287308,-1.287308,-1.287308,-1.287308 +-1.274808,-1.274808,-1.274808,-1.274808,-1.274808,-1.274808 +-1.262308,-1.262308,-1.262308,-1.262308,-1.262308,-1.262308 +-1.249808,-1.249808,-1.249808,-1.249808,-1.249808,-1.249808 +-1.237308,-1.237308,-1.237308,-1.237308,-1.237308,-1.237308 +-1.224808,-1.224808,-1.224808,-1.224808,-1.224808,-1.224808 +-1.212308,-1.212308,-1.212308,-1.212308,-1.212308,-1.212308 +-1.199808,-1.199808,-1.199808,-1.199808,-1.199808,-1.199808 +-1.187308,-1.187308,-1.187308,-1.187308,-1.187308,-1.187308 +-1.174808,-1.174808,-1.174808,-1.174808,-1.174808,-1.174808 +-1.162308,-1.162308,-1.162308,-1.162308,-1.162308,-1.162308 +-1.149808,-1.149808,-1.149808,-1.149808,-1.149808,-1.149808 +-1.137308,-1.137308,-1.137308,-1.137308,-1.137308,-1.137308 +-1.124808,-1.124808,-1.124808,-1.124808,-1.124808,-1.124808 +-1.112308,-1.112308,-1.112308,-1.112308,-1.112308,-1.112308 +-1.099808,-1.099808,-1.099808,-1.099808,-1.099808,-1.099808 +-1.087308,-1.087308,-1.087308,-1.087308,-1.087308,-1.087308 +-1.074808,-1.074808,-1.074808,-1.074808,-1.074808,-1.074808 +-1.062308,-1.062308,-1.062308,-1.062308,-1.062308,-1.062308 +-1.049808,-1.049808,-1.049808,-1.049808,-1.049808,-1.049808 +-1.037308,-1.037308,-1.037308,-1.037308,-1.037308,-1.037308 +-1.024808,-1.024808,-1.024808,-1.024808,-1.024808,-1.024808 +-1.012308,-1.012308,-1.012308,-1.012308,-1.012308,-1.012308 +-0.999808,-0.999808,-0.999808,-0.999808,-0.999808,-0.999808 +-0.987308,-0.987308,-0.987308,-0.987308,-0.987308,-0.987308 +-0.974808,-0.974808,-0.974808,-0.974808,-0.974808,-0.974808 +-0.962308,-0.962308,-0.962308,-0.962308,-0.962308,-0.962308 +-0.949808,-0.949808,-0.949808,-0.949808,-0.949808,-0.949808 +-0.937308,-0.937308,-0.937308,-0.937308,-0.937308,-0.937308 +-0.924808,-0.924808,-0.924808,-0.924808,-0.924808,-0.924808 +-0.912308,-0.912308,-0.912308,-0.912308,-0.912308,-0.912308 +-0.899808,-0.899808,-0.899808,-0.899808,-0.899808,-0.899808 +-0.887308,-0.887308,-0.887308,-0.887308,-0.887308,-0.887308 +-0.874808,-0.874808,-0.874808,-0.874808,-0.874808,-0.874808 +-0.862308,-0.862308,-0.862308,-0.862308,-0.862308,-0.862308 +-0.849808,-0.849808,-0.849808,-0.849808,-0.849808,-0.849808 +-0.837308,-0.837308,-0.837308,-0.837308,-0.837308,-0.837308 +-0.824808,-0.824808,-0.824808,-0.824808,-0.824808,-0.824808 +-0.812308,-0.812308,-0.812308,-0.812308,-0.812308,-0.812308 +-0.799808,-0.799808,-0.799808,-0.799808,-0.799808,-0.799808 +-0.787308,-0.787308,-0.787308,-0.787308,-0.787308,-0.787308 +-0.774808,-0.774808,-0.774808,-0.774808,-0.774808,-0.774808 +-0.762308,-0.762308,-0.762308,-0.762308,-0.762308,-0.762308 +-0.749808,-0.749808,-0.749808,-0.749808,-0.749808,-0.749808 +-0.737308,-0.737308,-0.737308,-0.737308,-0.737308,-0.737308 +-0.724808,-0.724808,-0.724808,-0.724808,-0.724808,-0.724808 +-0.712308,-0.712308,-0.712308,-0.712308,-0.712308,-0.712308 +-0.699808,-0.699808,-0.699808,-0.699808,-0.699808,-0.699808 +-0.687308,-0.687308,-0.687308,-0.687308,-0.687308,-0.687308 +-0.674808,-0.674808,-0.674808,-0.674808,-0.674808,-0.674808 +-0.662308,-0.662308,-0.662308,-0.662308,-0.662308,-0.662308 +-0.649808,-0.649808,-0.649808,-0.649808,-0.649808,-0.649808 +-0.637308,-0.637308,-0.637308,-0.637308,-0.637308,-0.637308 +-0.624808,-0.624808,-0.624808,-0.624808,-0.624808,-0.624808 +-0.612308,-0.612308,-0.612308,-0.612308,-0.612308,-0.612308 +-0.599808,-0.599808,-0.599808,-0.599808,-0.599808,-0.599808 +-0.587308,-0.587308,-0.587308,-0.587308,-0.587308,-0.587308 +-0.574808,-0.574808,-0.574808,-0.574808,-0.574808,-0.574808 +-0.562308,-0.562308,-0.562308,-0.562308,-0.562308,-0.562308 +-0.549808,-0.549808,-0.549808,-0.549808,-0.549808,-0.549808 +-0.537308,-0.537308,-0.537308,-0.537308,-0.537308,-0.537308 +-0.524808,-0.524808,-0.524808,-0.524808,-0.524808,-0.524808 +-0.512308,-0.512308,-0.512308,-0.512308,-0.512308,-0.512308 +-0.499808,-0.499808,-0.499808,-0.499808,-0.499808,-0.499808 +-0.487308,-0.487308,-0.487308,-0.487308,-0.487308,-0.487308 +-0.474808,-0.474808,-0.474808,-0.474808,-0.474808,-0.474808 +-0.462308,-0.462308,-0.462308,-0.462308,-0.462308,-0.462308 +-0.449808,-0.449808,-0.449808,-0.449808,-0.449808,-0.449808 +-0.437308,-0.437308,-0.437308,-0.437308,-0.437308,-0.437308 +-0.424808,-0.424808,-0.424808,-0.424808,-0.424808,-0.424808 +-0.412308,-0.412308,-0.412308,-0.412308,-0.412308,-0.412308 +-0.399808,-0.399808,-0.399808,-0.399808,-0.399808,-0.399808 +-0.387308,-0.387308,-0.387308,-0.387308,-0.387308,-0.387308 +-0.374808,-0.374808,-0.374808,-0.374808,-0.374808,-0.374808 +-0.362308,-0.362308,-0.362308,-0.362308,-0.362308,-0.362308 +-0.349808,-0.349808,-0.349808,-0.349808,-0.349808,-0.349808 +-0.337308,-0.337308,-0.337308,-0.337308,-0.337308,-0.337308 +-0.324808,-0.324808,-0.324808,-0.324808,-0.324808,-0.324808 +-0.312308,-0.312308,-0.312308,-0.312308,-0.312308,-0.312308 +-0.299808,-0.299808,-0.299808,-0.299808,-0.299808,-0.299808 +-0.287308,-0.287308,-0.287308,-0.287308,-0.287308,-0.287308 +-0.274809,-0.274809,-0.274809,-0.274809,-0.274809,-0.274809 +-0.262319,-0.262319,-0.262319,-0.262319,-0.262319,-0.262319 +-0.249864,-0.249864,-0.249864,-0.249864,-0.249864,-0.249864 +-0.237469,-0.237469,-0.237469,-0.237469,-0.237469,-0.237469 +-0.225158,-0.225158,-0.225158,-0.225158,-0.225158,-0.225158 +-0.212956,-0.212956,-0.212956,-0.212956,-0.212956,-0.212956 +-0.200889,-0.200889,-0.200889,-0.200889,-0.200889,-0.200889 +-0.188981,-0.188981,-0.188981,-0.188981,-0.188981,-0.188981 +-0.177257,-0.177257,-0.177257,-0.177257,-0.177257,-0.177257 +-0.165743,-0.165743,-0.165743,-0.165743,-0.165743,-0.165743 +-0.154463,-0.154463,-0.154463,-0.154463,-0.154463,-0.154463 +-0.143443,-0.143443,-0.143443,-0.143443,-0.143443,-0.143443 +-0.132707,-0.132707,-0.132707,-0.132707,-0.132707,-0.132707 +-0.12228,-0.12228,-0.12228,-0.12228,-0.12228,-0.12228 +-0.112188,-0.112188,-0.112188,-0.112188,-0.112188,-0.112188 +-0.102455,-0.102455,-0.102455,-0.102455,-0.102455,-0.102455 +-0.093107,-0.093107,-0.093107,-0.093107,-0.093107,-0.093107 +-0.084168,-0.084168,-0.084168,-0.084168,-0.084168,-0.084168 +-0.075663,-0.075663,-0.075663,-0.075663,-0.075663,-0.075663 +-0.067618,-0.067618,-0.067618,-0.067618,-0.067618,-0.067618 +-0.060057,-0.060057,-0.060057,-0.060057,-0.060057,-0.060057 +-0.053006,-0.053006,-0.053006,-0.053006,-0.053006,-0.053006 +-0.046489,-0.046489,-0.046489,-0.046489,-0.046489,-0.046489 +-0.040523,-0.040523,-0.040523,-0.040523,-0.040523,-0.040523 +-0.03509,-0.03509,-0.03509,-0.03509,-0.03509,-0.03509 +-0.030166,-0.030166,-0.030166,-0.030166,-0.030166,-0.030166 +-0.025726,-0.025726,-0.025726,-0.025726,-0.025726,-0.025726 +-0.021744,-0.021744,-0.021744,-0.021744,-0.021744,-0.021744 +-0.018196,-0.018196,-0.018196,-0.018196,-0.018196,-0.018196 +-0.015056,-0.015056,-0.015056,-0.015056,-0.015056,-0.015056 +-0.012301,-0.012301,-0.012301,-0.012301,-0.012301,-0.012301 +-0.009903,-0.009903,-0.009903,-0.009903,-0.009903,-0.009903 +-0.00784,-0.00784,-0.00784,-0.00784,-0.00784,-0.00784 +-0.006085,-0.006085,-0.006085,-0.006085,-0.006085,-0.006085 +-0.004613,-0.004613,-0.004613,-0.004613,-0.004613,-0.004613 +-0.003401,-0.003401,-0.003401,-0.003401,-0.003401,-0.003401 +-0.002422,-0.002422,-0.002422,-0.002422,-0.002422,-0.002422 +-0.001651,-0.001651,-0.001651,-0.001651,-0.001651,-0.001651 +-0.001065,-0.001065,-0.001065,-0.001065,-0.001065,-0.001065 +-0.000636,-0.000636,-0.000636,-0.000636,-0.000636,-0.000636 +-0.000342,-0.000342,-0.000342,-0.000342,-0.000342,-0.000342 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000033,0.000033,0.000033,0.000033,0.000033,0.000033 +0.000112,0.000112,0.000112,0.000112,0.000112,0.000112 +0.000267,0.000267,0.000267,0.000267,0.000267,0.000267 +0.000521,0.000521,0.000521,0.000521,0.000521,0.000521 +0.0009,0.0009,0.0009,0.0009,0.0009,0.0009 +0.001429,0.001429,0.001429,0.001429,0.001429,0.001429 +0.002133,0.002133,0.002133,0.002133,0.002133,0.002133 +0.003037,0.003037,0.003037,0.003037,0.003037,0.003037 +0.004167,0.004167,0.004167,0.004167,0.004167,0.004167 +0.005546,0.005546,0.005546,0.005546,0.005546,0.005546 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.009154,0.009154,0.009154,0.009154,0.009154,0.009154 +0.011433,0.011433,0.011433,0.011433,0.011433,0.011433 +0.014062,0.014062,0.014062,0.014062,0.014062,0.014062 +0.017067,0.017067,0.017067,0.017067,0.017067,0.017067 +0.020471,0.020471,0.020471,0.020471,0.020471,0.020471 +0.0243,0.0243,0.0243,0.0243,0.0243,0.0243 +0.028579,0.028579,0.028579,0.028579,0.028579,0.028579 +0.033333,0.033333,0.033333,0.033333,0.033333,0.033333 +0.038587,0.038587,0.038587,0.038587,0.038587,0.038587 +0.044367,0.044367,0.044367,0.044367,0.044367,0.044367 +0.050694,0.050694,0.050694,0.050694,0.050694,0.050694 +0.057563,0.057563,0.057563,0.057563,0.057563,0.057563 +0.064951,0.064951,0.064951,0.064951,0.064951,0.064951 +0.072832,0.072832,0.072832,0.072832,0.072832,0.072832 +0.08118,0.08118,0.08118,0.08118,0.08118,0.08118 +0.089972,0.089972,0.089972,0.089972,0.089972,0.089972 +0.099182,0.099182,0.099182,0.099182,0.099182,0.099182 +0.108785,0.108785,0.108785,0.108785,0.108785,0.108785 +0.118756,0.118756,0.118756,0.118756,0.118756,0.118756 +0.12907,0.12907,0.12907,0.12907,0.12907,0.12907 +0.139702,0.139702,0.139702,0.139702,0.139702,0.139702 +0.150626,0.150626,0.150626,0.150626,0.150626,0.150626 +0.161819,0.161819,0.161819,0.161819,0.161819,0.161819 +0.173256,0.173256,0.173256,0.173256,0.173256,0.173256 +0.18491,0.18491,0.18491,0.18491,0.18491,0.18491 +0.196757,0.196757,0.196757,0.196757,0.196757,0.196757 +0.208772,0.208772,0.208772,0.208772,0.208772,0.208772 +0.22093,0.22093,0.22093,0.22093,0.22093,0.22093 +0.233206,0.233206,0.233206,0.233206,0.233206,0.233206 +0.245575,0.245575,0.245575,0.245575,0.245575,0.245575 +0.258013,0.258013,0.258013,0.258013,0.258013,0.258013 +0.270493,0.270493,0.270493,0.270493,0.270493,0.270493 +0.282992,0.282992,0.282992,0.282992,0.282992,0.282992 +0.295492,0.295492,0.295492,0.295492,0.295492,0.295492 +0.307992,0.307992,0.307992,0.307992,0.307992,0.307992 +0.320492,0.320492,0.320492,0.320492,0.320492,0.320492 +0.332992,0.332992,0.332992,0.332992,0.332992,0.332992 +0.345492,0.345492,0.345492,0.345492,0.345492,0.345492 +0.357992,0.357992,0.357992,0.357992,0.357992,0.357992 +0.370492,0.370492,0.370492,0.370492,0.370492,0.370492 +0.382992,0.382992,0.382992,0.382992,0.382992,0.382992 +0.395492,0.395492,0.395492,0.395492,0.395492,0.395492 +0.407992,0.407992,0.407992,0.407992,0.407992,0.407992 +0.420492,0.420492,0.420492,0.420492,0.420492,0.420492 +0.432992,0.432992,0.432992,0.432992,0.432992,0.432992 +0.445492,0.445492,0.445492,0.445492,0.445492,0.445492 +0.457992,0.457992,0.457992,0.457992,0.457992,0.457992 +0.470492,0.470492,0.470492,0.470492,0.470492,0.470492 +0.482992,0.482992,0.482992,0.482992,0.482992,0.482992 +0.495492,0.495492,0.495492,0.495492,0.495492,0.495492 +0.507992,0.507992,0.507992,0.507992,0.507992,0.507992 +0.520492,0.520492,0.520492,0.520492,0.520492,0.520492 +0.532992,0.532992,0.532992,0.532992,0.532992,0.532992 +0.545492,0.545492,0.545492,0.545492,0.545492,0.545492 +0.557992,0.557992,0.557992,0.557992,0.557992,0.557992 +0.570492,0.570492,0.570492,0.570492,0.570492,0.570492 +0.582992,0.582992,0.582992,0.582992,0.582992,0.582992 +0.595492,0.595492,0.595492,0.595492,0.595492,0.595492 +0.607992,0.607992,0.607992,0.607992,0.607992,0.607992 +0.620492,0.620492,0.620492,0.620492,0.620492,0.620492 +0.632992,0.632992,0.632992,0.632992,0.632992,0.632992 +0.645492,0.645492,0.645492,0.645492,0.645492,0.645492 +0.657992,0.657992,0.657992,0.657992,0.657992,0.657992 +0.670492,0.670492,0.670492,0.670492,0.670492,0.670492 +0.682992,0.682992,0.682992,0.682992,0.682992,0.682992 +0.695492,0.695492,0.695492,0.695492,0.695492,0.695492 +0.707992,0.707992,0.707992,0.707992,0.707992,0.707992 +0.720492,0.720492,0.720492,0.720492,0.720492,0.720492 +0.732992,0.732992,0.732992,0.732992,0.732992,0.732992 +0.745492,0.745492,0.745492,0.745492,0.745492,0.745492 +0.757992,0.757992,0.757992,0.757992,0.757992,0.757992 +0.770492,0.770492,0.770492,0.770492,0.770492,0.770492 +0.782992,0.782992,0.782992,0.782992,0.782992,0.782992 +0.795492,0.795492,0.795492,0.795492,0.795492,0.795492 +0.807992,0.807992,0.807992,0.807992,0.807992,0.807992 +0.820492,0.820492,0.820492,0.820492,0.820492,0.820492 +0.832992,0.832992,0.832992,0.832992,0.832992,0.832992 +0.845492,0.845492,0.845492,0.845492,0.845492,0.845492 +0.857992,0.857992,0.857992,0.857992,0.857992,0.857992 +0.870492,0.870492,0.870492,0.870492,0.870492,0.870492 +0.882992,0.882992,0.882992,0.882992,0.882992,0.882992 +0.895492,0.895492,0.895492,0.895492,0.895492,0.895492 +0.907992,0.907992,0.907992,0.907992,0.907992,0.907992 +0.920492,0.920492,0.920492,0.920492,0.920492,0.920492 +0.932992,0.932992,0.932992,0.932992,0.932992,0.932992 +0.945492,0.945492,0.945492,0.945492,0.945492,0.945492 +0.957992,0.957992,0.957992,0.957992,0.957992,0.957992 +0.970492,0.970492,0.970492,0.970492,0.970492,0.970492 +0.982992,0.982992,0.982992,0.982992,0.982992,0.982992 +0.995492,0.995492,0.995492,0.995492,0.995492,0.995492 +1.007992,1.007992,1.007992,1.007992,1.007992,1.007992 +1.020492,1.020492,1.020492,1.020492,1.020492,1.020492 +1.032992,1.032992,1.032992,1.032992,1.032992,1.032992 +1.045492,1.045492,1.045492,1.045492,1.045492,1.045492 +1.057992,1.057992,1.057992,1.057992,1.057992,1.057992 +1.070492,1.070492,1.070492,1.070492,1.070492,1.070492 +1.082992,1.082992,1.082992,1.082992,1.082992,1.082992 +1.095492,1.095492,1.095492,1.095492,1.095492,1.095492 +1.107992,1.107992,1.107992,1.107992,1.107992,1.107992 +1.120492,1.120492,1.120492,1.120492,1.120492,1.120492 +1.132992,1.132992,1.132992,1.132992,1.132992,1.132992 +1.145492,1.145492,1.145492,1.145492,1.145492,1.145492 +1.157992,1.157992,1.157992,1.157992,1.157992,1.157992 +1.170492,1.170492,1.170492,1.170492,1.170492,1.170492 +1.182992,1.182992,1.182992,1.182992,1.182992,1.182992 +1.195492,1.195492,1.195492,1.195492,1.195492,1.195492 +1.207992,1.207992,1.207992,1.207992,1.207992,1.207992 +1.220492,1.220492,1.220492,1.220492,1.220492,1.220492 +1.232992,1.232992,1.232992,1.232992,1.232992,1.232992 +1.245492,1.245492,1.245492,1.245492,1.245492,1.245492 +1.257992,1.257992,1.257992,1.257992,1.257992,1.257992 +1.270492,1.270492,1.270492,1.270492,1.270492,1.270492 +1.282992,1.282992,1.282992,1.282992,1.282992,1.282992 +1.295492,1.295492,1.295492,1.295492,1.295492,1.295492 +1.307992,1.307992,1.307992,1.307992,1.307992,1.307992 +1.320492,1.320492,1.320492,1.320492,1.320492,1.320492 +1.332992,1.332992,1.332992,1.332992,1.332992,1.332992 +1.345492,1.345492,1.345492,1.345492,1.345492,1.345492 +1.357992,1.357992,1.357992,1.357992,1.357992,1.357992 +1.370492,1.370492,1.370492,1.370492,1.370492,1.370492 +1.382992,1.382992,1.382992,1.382992,1.382992,1.382992 +1.395492,1.395492,1.395492,1.395492,1.395492,1.395492 +1.407992,1.407992,1.407992,1.407992,1.407992,1.407992 +1.420492,1.420492,1.420492,1.420492,1.420492,1.420492 +1.432992,1.432992,1.432992,1.432992,1.432992,1.432992 +1.445492,1.445492,1.445492,1.445492,1.445492,1.445492 +1.457992,1.457992,1.457992,1.457992,1.457992,1.457992 +1.470491,1.470491,1.470491,1.470491,1.470491,1.470491 +1.482981,1.482981,1.482981,1.482981,1.482981,1.482981 +1.495436,1.495436,1.495436,1.495436,1.495436,1.495436 +1.507831,1.507831,1.507831,1.507831,1.507831,1.507831 +1.520142,1.520142,1.520142,1.520142,1.520142,1.520142 +1.532344,1.532344,1.532344,1.532344,1.532344,1.532344 +1.544411,1.544411,1.544411,1.544411,1.544411,1.544411 +1.556319,1.556319,1.556319,1.556319,1.556319,1.556319 +1.568043,1.568043,1.568043,1.568043,1.568043,1.568043 +1.579557,1.579557,1.579557,1.579557,1.579557,1.579557 +1.590837,1.590837,1.590837,1.590837,1.590837,1.590837 +1.601857,1.601857,1.601857,1.601857,1.601857,1.601857 +1.612593,1.612593,1.612593,1.612593,1.612593,1.612593 +1.62302,1.62302,1.62302,1.62302,1.62302,1.62302 +1.633112,1.633112,1.633112,1.633112,1.633112,1.633112 +1.642845,1.642845,1.642845,1.642845,1.642845,1.642845 +1.652193,1.652193,1.652193,1.652193,1.652193,1.652193 +1.661132,1.661132,1.661132,1.661132,1.661132,1.661132 +1.669637,1.669637,1.669637,1.669637,1.669637,1.669637 +1.677682,1.677682,1.677682,1.677682,1.677682,1.677682 +1.685243,1.685243,1.685243,1.685243,1.685243,1.685243 +1.692294,1.692294,1.692294,1.692294,1.692294,1.692294 +1.698811,1.698811,1.698811,1.698811,1.698811,1.698811 +1.704777,1.704777,1.704777,1.704777,1.704777,1.704777 +1.71021,1.71021,1.71021,1.71021,1.71021,1.71021 +1.715134,1.715134,1.715134,1.715134,1.715134,1.715134 +1.719574,1.719574,1.719574,1.719574,1.719574,1.719574 +1.723556,1.723556,1.723556,1.723556,1.723556,1.723556 +1.727104,1.727104,1.727104,1.727104,1.727104,1.727104 +1.730244,1.730244,1.730244,1.730244,1.730244,1.730244 +1.732999,1.732999,1.732999,1.732999,1.732999,1.732999 +1.735397,1.735397,1.735397,1.735397,1.735397,1.735397 +1.73746,1.73746,1.73746,1.73746,1.73746,1.73746 +1.739215,1.739215,1.739215,1.739215,1.739215,1.739215 +1.740687,1.740687,1.740687,1.740687,1.740687,1.740687 +1.741899,1.741899,1.741899,1.741899,1.741899,1.741899 +1.742878,1.742878,1.742878,1.742878,1.742878,1.742878 +1.743649,1.743649,1.743649,1.743649,1.743649,1.743649 +1.744235,1.744235,1.744235,1.744235,1.744235,1.744235 +1.744664,1.744664,1.744664,1.744664,1.744664,1.744664 +1.744958,1.744958,1.744958,1.744958,1.744958,1.744958 +1.745144,1.745144,1.745144,1.745144,1.745144,1.745144 +1.745246,1.745246,1.745246,1.745246,1.745246,1.745246 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745267,1.745267,1.745267,1.745267,1.745267,1.745267 +1.745188,1.745188,1.745188,1.745188,1.745188,1.745188 +1.745033,1.745033,1.745033,1.745033,1.745033,1.745033 +1.744779,1.744779,1.744779,1.744779,1.744779,1.744779 +1.7444,1.7444,1.7444,1.7444,1.7444,1.7444 +1.743871,1.743871,1.743871,1.743871,1.743871,1.743871 +1.743167,1.743167,1.743167,1.743167,1.743167,1.743167 +1.742263,1.742263,1.742263,1.742263,1.742263,1.742263 +1.741133,1.741133,1.741133,1.741133,1.741133,1.741133 +1.739754,1.739754,1.739754,1.739754,1.739754,1.739754 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.736146,1.736146,1.736146,1.736146,1.736146,1.736146 +1.733867,1.733867,1.733867,1.733867,1.733867,1.733867 +1.731238,1.731238,1.731238,1.731238,1.731238,1.731238 +1.728233,1.728233,1.728233,1.728233,1.728233,1.728233 +1.724829,1.724829,1.724829,1.724829,1.724829,1.724829 +1.721,1.721,1.721,1.721,1.721,1.721 +1.716721,1.716721,1.716721,1.716721,1.716721,1.716721 +1.711967,1.711967,1.711967,1.711967,1.711967,1.711967 +1.706713,1.706713,1.706713,1.706713,1.706713,1.706713 +1.700933,1.700933,1.700933,1.700933,1.700933,1.700933 +1.694606,1.694606,1.694606,1.694606,1.694606,1.694606 +1.687737,1.687737,1.687737,1.687737,1.687737,1.687737 +1.680349,1.680349,1.680349,1.680349,1.680349,1.680349 +1.672468,1.672468,1.672468,1.672468,1.672468,1.672468 +1.66412,1.66412,1.66412,1.66412,1.66412,1.66412 +1.655328,1.655328,1.655328,1.655328,1.655328,1.655328 +1.646118,1.646118,1.646118,1.646118,1.646118,1.646118 +1.636515,1.636515,1.636515,1.636515,1.636515,1.636515 +1.626544,1.626544,1.626544,1.626544,1.626544,1.626544 +1.61623,1.61623,1.61623,1.61623,1.61623,1.61623 +1.605598,1.605598,1.605598,1.605598,1.605598,1.605598 +1.594674,1.594674,1.594674,1.594674,1.594674,1.594674 +1.583481,1.583481,1.583481,1.583481,1.583481,1.583481 +1.572044,1.572044,1.572044,1.572044,1.572044,1.572044 +1.56039,1.56039,1.56039,1.56039,1.56039,1.56039 +1.548543,1.548543,1.548543,1.548543,1.548543,1.548543 +1.536528,1.536528,1.536528,1.536528,1.536528,1.536528 +1.52437,1.52437,1.52437,1.52437,1.52437,1.52437 +1.512094,1.512094,1.512094,1.512094,1.512094,1.512094 +1.499725,1.499725,1.499725,1.499725,1.499725,1.499725 +1.487287,1.487287,1.487287,1.487287,1.487287,1.487287 +1.474807,1.474807,1.474807,1.474807,1.474807,1.474807 +1.462308,1.462308,1.462308,1.462308,1.462308,1.462308 +1.449808,1.449808,1.449808,1.449808,1.449808,1.449808 +1.437308,1.437308,1.437308,1.437308,1.437308,1.437308 +1.424808,1.424808,1.424808,1.424808,1.424808,1.424808 +1.412308,1.412308,1.412308,1.412308,1.412308,1.412308 +1.399808,1.399808,1.399808,1.399808,1.399808,1.399808 +1.387308,1.387308,1.387308,1.387308,1.387308,1.387308 +1.374808,1.374808,1.374808,1.374808,1.374808,1.374808 +1.362308,1.362308,1.362308,1.362308,1.362308,1.362308 +1.349808,1.349808,1.349808,1.349808,1.349808,1.349808 +1.337308,1.337308,1.337308,1.337308,1.337308,1.337308 +1.324808,1.324808,1.324808,1.324808,1.324808,1.324808 +1.312308,1.312308,1.312308,1.312308,1.312308,1.312308 +1.299808,1.299808,1.299808,1.299808,1.299808,1.299808 +1.287308,1.287308,1.287308,1.287308,1.287308,1.287308 +1.274808,1.274808,1.274808,1.274808,1.274808,1.274808 +1.262308,1.262308,1.262308,1.262308,1.262308,1.262308 +1.249808,1.249808,1.249808,1.249808,1.249808,1.249808 +1.237308,1.237308,1.237308,1.237308,1.237308,1.237308 +1.224808,1.224808,1.224808,1.224808,1.224808,1.224808 +1.212308,1.212308,1.212308,1.212308,1.212308,1.212308 +1.199808,1.199808,1.199808,1.199808,1.199808,1.199808 +1.187308,1.187308,1.187308,1.187308,1.187308,1.187308 +1.174808,1.174808,1.174808,1.174808,1.174808,1.174808 +1.162308,1.162308,1.162308,1.162308,1.162308,1.162308 +1.149808,1.149808,1.149808,1.149808,1.149808,1.149808 +1.137308,1.137308,1.137308,1.137308,1.137308,1.137308 +1.124808,1.124808,1.124808,1.124808,1.124808,1.124808 +1.112308,1.112308,1.112308,1.112308,1.112308,1.112308 +1.099808,1.099808,1.099808,1.099808,1.099808,1.099808 +1.087308,1.087308,1.087308,1.087308,1.087308,1.087308 +1.074808,1.074808,1.074808,1.074808,1.074808,1.074808 +1.062308,1.062308,1.062308,1.062308,1.062308,1.062308 +1.049808,1.049808,1.049808,1.049808,1.049808,1.049808 +1.037308,1.037308,1.037308,1.037308,1.037308,1.037308 +1.024808,1.024808,1.024808,1.024808,1.024808,1.024808 +1.012308,1.012308,1.012308,1.012308,1.012308,1.012308 +0.999808,0.999808,0.999808,0.999808,0.999808,0.999808 +0.987308,0.987308,0.987308,0.987308,0.987308,0.987308 +0.974808,0.974808,0.974808,0.974808,0.974808,0.974808 +0.962308,0.962308,0.962308,0.962308,0.962308,0.962308 +0.949808,0.949808,0.949808,0.949808,0.949808,0.949808 +0.937308,0.937308,0.937308,0.937308,0.937308,0.937308 +0.924808,0.924808,0.924808,0.924808,0.924808,0.924808 +0.912308,0.912308,0.912308,0.912308,0.912308,0.912308 +0.899808,0.899808,0.899808,0.899808,0.899808,0.899808 +0.887308,0.887308,0.887308,0.887308,0.887308,0.887308 +0.874808,0.874808,0.874808,0.874808,0.874808,0.874808 +0.862308,0.862308,0.862308,0.862308,0.862308,0.862308 +0.849808,0.849808,0.849808,0.849808,0.849808,0.849808 +0.837308,0.837308,0.837308,0.837308,0.837308,0.837308 +0.824808,0.824808,0.824808,0.824808,0.824808,0.824808 +0.812308,0.812308,0.812308,0.812308,0.812308,0.812308 +0.799808,0.799808,0.799808,0.799808,0.799808,0.799808 +0.787308,0.787308,0.787308,0.787308,0.787308,0.787308 +0.774808,0.774808,0.774808,0.774808,0.774808,0.774808 +0.762308,0.762308,0.762308,0.762308,0.762308,0.762308 +0.749808,0.749808,0.749808,0.749808,0.749808,0.749808 +0.737308,0.737308,0.737308,0.737308,0.737308,0.737308 +0.724808,0.724808,0.724808,0.724808,0.724808,0.724808 +0.712308,0.712308,0.712308,0.712308,0.712308,0.712308 +0.699808,0.699808,0.699808,0.699808,0.699808,0.699808 +0.687308,0.687308,0.687308,0.687308,0.687308,0.687308 +0.674808,0.674808,0.674808,0.674808,0.674808,0.674808 +0.662308,0.662308,0.662308,0.662308,0.662308,0.662308 +0.649808,0.649808,0.649808,0.649808,0.649808,0.649808 +0.637308,0.637308,0.637308,0.637308,0.637308,0.637308 +0.624808,0.624808,0.624808,0.624808,0.624808,0.624808 +0.612308,0.612308,0.612308,0.612308,0.612308,0.612308 +0.599808,0.599808,0.599808,0.599808,0.599808,0.599808 +0.587308,0.587308,0.587308,0.587308,0.587308,0.587308 +0.574808,0.574808,0.574808,0.574808,0.574808,0.574808 +0.562308,0.562308,0.562308,0.562308,0.562308,0.562308 +0.549808,0.549808,0.549808,0.549808,0.549808,0.549808 +0.537308,0.537308,0.537308,0.537308,0.537308,0.537308 +0.524808,0.524808,0.524808,0.524808,0.524808,0.524808 +0.512308,0.512308,0.512308,0.512308,0.512308,0.512308 +0.499808,0.499808,0.499808,0.499808,0.499808,0.499808 +0.487308,0.487308,0.487308,0.487308,0.487308,0.487308 +0.474808,0.474808,0.474808,0.474808,0.474808,0.474808 +0.462308,0.462308,0.462308,0.462308,0.462308,0.462308 +0.449808,0.449808,0.449808,0.449808,0.449808,0.449808 +0.437308,0.437308,0.437308,0.437308,0.437308,0.437308 +0.424808,0.424808,0.424808,0.424808,0.424808,0.424808 +0.412308,0.412308,0.412308,0.412308,0.412308,0.412308 +0.399808,0.399808,0.399808,0.399808,0.399808,0.399808 +0.387308,0.387308,0.387308,0.387308,0.387308,0.387308 +0.374808,0.374808,0.374808,0.374808,0.374808,0.374808 +0.362308,0.362308,0.362308,0.362308,0.362308,0.362308 +0.349808,0.349808,0.349808,0.349808,0.349808,0.349808 +0.337308,0.337308,0.337308,0.337308,0.337308,0.337308 +0.324808,0.324808,0.324808,0.324808,0.324808,0.324808 +0.312308,0.312308,0.312308,0.312308,0.312308,0.312308 +0.299808,0.299808,0.299808,0.299808,0.299808,0.299808 +0.287308,0.287308,0.287308,0.287308,0.287308,0.287308 +0.274809,0.274809,0.274809,0.274809,0.274809,0.274809 +0.262319,0.262319,0.262319,0.262319,0.262319,0.262319 +0.249864,0.249864,0.249864,0.249864,0.249864,0.249864 +0.237469,0.237469,0.237469,0.237469,0.237469,0.237469 +0.225158,0.225158,0.225158,0.225158,0.225158,0.225158 +0.212956,0.212956,0.212956,0.212956,0.212956,0.212956 +0.200889,0.200889,0.200889,0.200889,0.200889,0.200889 +0.188981,0.188981,0.188981,0.188981,0.188981,0.188981 +0.177257,0.177257,0.177257,0.177257,0.177257,0.177257 +0.165743,0.165743,0.165743,0.165743,0.165743,0.165743 +0.154463,0.154463,0.154463,0.154463,0.154463,0.154463 +0.143443,0.143443,0.143443,0.143443,0.143443,0.143443 +0.132707,0.132707,0.132707,0.132707,0.132707,0.132707 +0.12228,0.12228,0.12228,0.12228,0.12228,0.12228 +0.112188,0.112188,0.112188,0.112188,0.112188,0.112188 +0.102455,0.102455,0.102455,0.102455,0.102455,0.102455 +0.093107,0.093107,0.093107,0.093107,0.093107,0.093107 +0.084168,0.084168,0.084168,0.084168,0.084168,0.084168 +0.075663,0.075663,0.075663,0.075663,0.075663,0.075663 +0.067618,0.067618,0.067618,0.067618,0.067618,0.067618 +0.060057,0.060057,0.060057,0.060057,0.060057,0.060057 +0.053006,0.053006,0.053006,0.053006,0.053006,0.053006 +0.046489,0.046489,0.046489,0.046489,0.046489,0.046489 +0.040523,0.040523,0.040523,0.040523,0.040523,0.040523 +0.03509,0.03509,0.03509,0.03509,0.03509,0.03509 +0.030166,0.030166,0.030166,0.030166,0.030166,0.030166 +0.025726,0.025726,0.025726,0.025726,0.025726,0.025726 +0.021744,0.021744,0.021744,0.021744,0.021744,0.021744 +0.018196,0.018196,0.018196,0.018196,0.018196,0.018196 +0.015056,0.015056,0.015056,0.015056,0.015056,0.015056 +0.012301,0.012301,0.012301,0.012301,0.012301,0.012301 +0.009903,0.009903,0.009903,0.009903,0.009903,0.009903 +0.00784,0.00784,0.00784,0.00784,0.00784,0.00784 +0.006085,0.006085,0.006085,0.006085,0.006085,0.006085 +0.004613,0.004613,0.004613,0.004613,0.004613,0.004613 +0.003401,0.003401,0.003401,0.003401,0.003401,0.003401 +0.002422,0.002422,0.002422,0.002422,0.002422,0.002422 +0.001651,0.001651,0.001651,0.001651,0.001651,0.001651 +0.001065,0.001065,0.001065,0.001065,0.001065,0.001065 +0.000636,0.000636,0.000636,0.000636,0.000636,0.000636 +0.000342,0.000342,0.000342,0.000342,0.000342,0.000342 +0.000156,0.000156,0.000156,0.000156,0.000156,0.000156 +0.000054,0.000054,0.000054,0.000054,0.000054,0.000054 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000267,-0.000267,-0.000267,-0.000267,-0.000267,-0.000267 +-0.000521,-0.000521,-0.000521,-0.000521,-0.000521,-0.000521 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001429,-0.001429,-0.001429,-0.001429,-0.001429,-0.001429 +-0.002133,-0.002133,-0.002133,-0.002133,-0.002133,-0.002133 +-0.003037,-0.003037,-0.003037,-0.003037,-0.003037,-0.003037 +-0.004167,-0.004167,-0.004167,-0.004167,-0.004167,-0.004167 +-0.005546,-0.005546,-0.005546,-0.005546,-0.005546,-0.005546 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.009154,-0.009154,-0.009154,-0.009154,-0.009154,-0.009154 +-0.011433,-0.011433,-0.011433,-0.011433,-0.011433,-0.011433 +-0.014062,-0.014062,-0.014062,-0.014062,-0.014062,-0.014062 +-0.017067,-0.017067,-0.017067,-0.017067,-0.017067,-0.017067 +-0.020471,-0.020471,-0.020471,-0.020471,-0.020471,-0.020471 +-0.0243,-0.0243,-0.0243,-0.0243,-0.0243,-0.0243 +-0.028579,-0.028579,-0.028579,-0.028579,-0.028579,-0.028579 +-0.033333,-0.033333,-0.033333,-0.033333,-0.033333,-0.033333 +-0.038587,-0.038587,-0.038587,-0.038587,-0.038587,-0.038587 +-0.044367,-0.044367,-0.044367,-0.044367,-0.044367,-0.044367 +-0.050694,-0.050694,-0.050694,-0.050694,-0.050694,-0.050694 +-0.057563,-0.057563,-0.057563,-0.057563,-0.057563,-0.057563 +-0.064951,-0.064951,-0.064951,-0.064951,-0.064951,-0.064951 +-0.072832,-0.072832,-0.072832,-0.072832,-0.072832,-0.072832 +-0.08118,-0.08118,-0.08118,-0.08118,-0.08118,-0.08118 +-0.089972,-0.089972,-0.089972,-0.089972,-0.089972,-0.089972 +-0.099182,-0.099182,-0.099182,-0.099182,-0.099182,-0.099182 +-0.108785,-0.108785,-0.108785,-0.108785,-0.108785,-0.108785 +-0.118756,-0.118756,-0.118756,-0.118756,-0.118756,-0.118756 +-0.12907,-0.12907,-0.12907,-0.12907,-0.12907,-0.12907 +-0.139702,-0.139702,-0.139702,-0.139702,-0.139702,-0.139702 +-0.150626,-0.150626,-0.150626,-0.150626,-0.150626,-0.150626 +-0.161819,-0.161819,-0.161819,-0.161819,-0.161819,-0.161819 +-0.173256,-0.173256,-0.173256,-0.173256,-0.173256,-0.173256 +-0.18491,-0.18491,-0.18491,-0.18491,-0.18491,-0.18491 +-0.196757,-0.196757,-0.196757,-0.196757,-0.196757,-0.196757 +-0.208772,-0.208772,-0.208772,-0.208772,-0.208772,-0.208772 +-0.22093,-0.22093,-0.22093,-0.22093,-0.22093,-0.22093 +-0.233206,-0.233206,-0.233206,-0.233206,-0.233206,-0.233206 +-0.245575,-0.245575,-0.245575,-0.245575,-0.245575,-0.245575 +-0.258013,-0.258013,-0.258013,-0.258013,-0.258013,-0.258013 +-0.270493,-0.270493,-0.270493,-0.270493,-0.270493,-0.270493 +-0.282992,-0.282992,-0.282992,-0.282992,-0.282992,-0.282992 +-0.295492,-0.295492,-0.295492,-0.295492,-0.295492,-0.295492 +-0.307992,-0.307992,-0.307992,-0.307992,-0.307992,-0.307992 +-0.320492,-0.320492,-0.320492,-0.320492,-0.320492,-0.320492 +-0.332992,-0.332992,-0.332992,-0.332992,-0.332992,-0.332992 +-0.345492,-0.345492,-0.345492,-0.345492,-0.345492,-0.345492 +-0.357992,-0.357992,-0.357992,-0.357992,-0.357992,-0.357992 +-0.370492,-0.370492,-0.370492,-0.370492,-0.370492,-0.370492 +-0.382992,-0.382992,-0.382992,-0.382992,-0.382992,-0.382992 +-0.395492,-0.395492,-0.395492,-0.395492,-0.395492,-0.395492 +-0.407992,-0.407992,-0.407992,-0.407992,-0.407992,-0.407992 +-0.420492,-0.420492,-0.420492,-0.420492,-0.420492,-0.420492 +-0.432992,-0.432992,-0.432992,-0.432992,-0.432992,-0.432992 +-0.445492,-0.445492,-0.445492,-0.445492,-0.445492,-0.445492 +-0.457992,-0.457992,-0.457992,-0.457992,-0.457992,-0.457992 +-0.470492,-0.470492,-0.470492,-0.470492,-0.470492,-0.470492 +-0.482992,-0.482992,-0.482992,-0.482992,-0.482992,-0.482992 +-0.495492,-0.495492,-0.495492,-0.495492,-0.495492,-0.495492 +-0.507992,-0.507992,-0.507992,-0.507992,-0.507992,-0.507992 +-0.520492,-0.520492,-0.520492,-0.520492,-0.520492,-0.520492 +-0.532992,-0.532992,-0.532992,-0.532992,-0.532992,-0.532992 +-0.545492,-0.545492,-0.545492,-0.545492,-0.545492,-0.545492 +-0.557992,-0.557992,-0.557992,-0.557992,-0.557992,-0.557992 +-0.570492,-0.570492,-0.570492,-0.570492,-0.570492,-0.570492 +-0.582992,-0.582992,-0.582992,-0.582992,-0.582992,-0.582992 +-0.595492,-0.595492,-0.595492,-0.595492,-0.595492,-0.595492 +-0.607992,-0.607992,-0.607992,-0.607992,-0.607992,-0.607992 +-0.620492,-0.620492,-0.620492,-0.620492,-0.620492,-0.620492 +-0.632992,-0.632992,-0.632992,-0.632992,-0.632992,-0.632992 +-0.645492,-0.645492,-0.645492,-0.645492,-0.645492,-0.645492 +-0.657992,-0.657992,-0.657992,-0.657992,-0.657992,-0.657992 +-0.670492,-0.670492,-0.670492,-0.670492,-0.670492,-0.670492 +-0.682992,-0.682992,-0.682992,-0.682992,-0.682992,-0.682992 +-0.695492,-0.695492,-0.695492,-0.695492,-0.695492,-0.695492 +-0.707992,-0.707992,-0.707992,-0.707992,-0.707992,-0.707992 +-0.720492,-0.720492,-0.720492,-0.720492,-0.720492,-0.720492 +-0.732992,-0.732992,-0.732992,-0.732992,-0.732992,-0.732992 +-0.745492,-0.745492,-0.745492,-0.745492,-0.745492,-0.745492 +-0.757992,-0.757992,-0.757992,-0.757992,-0.757992,-0.757992 +-0.770492,-0.770492,-0.770492,-0.770492,-0.770492,-0.770492 +-0.782992,-0.782992,-0.782992,-0.782992,-0.782992,-0.782992 +-0.795492,-0.795492,-0.795492,-0.795492,-0.795492,-0.795492 +-0.807992,-0.807992,-0.807992,-0.807992,-0.807992,-0.807992 +-0.820492,-0.820492,-0.820492,-0.820492,-0.820492,-0.820492 +-0.832992,-0.832992,-0.832992,-0.832992,-0.832992,-0.832992 +-0.845492,-0.845492,-0.845492,-0.845492,-0.845492,-0.845492 +-0.857992,-0.857992,-0.857992,-0.857992,-0.857992,-0.857992 +-0.870492,-0.870492,-0.870492,-0.870492,-0.870492,-0.870492 +-0.882992,-0.882992,-0.882992,-0.882992,-0.882992,-0.882992 +-0.895492,-0.895492,-0.895492,-0.895492,-0.895492,-0.895492 +-0.907992,-0.907992,-0.907992,-0.907992,-0.907992,-0.907992 +-0.920492,-0.920492,-0.920492,-0.920492,-0.920492,-0.920492 +-0.932992,-0.932992,-0.932992,-0.932992,-0.932992,-0.932992 +-0.945492,-0.945492,-0.945492,-0.945492,-0.945492,-0.945492 +-0.957992,-0.957992,-0.957992,-0.957992,-0.957992,-0.957992 +-0.970492,-0.970492,-0.970492,-0.970492,-0.970492,-0.970492 +-0.982992,-0.982992,-0.982992,-0.982992,-0.982992,-0.982992 +-0.995492,-0.995492,-0.995492,-0.995492,-0.995492,-0.995492 +-1.007992,-1.007992,-1.007992,-1.007992,-1.007992,-1.007992 +-1.020492,-1.020492,-1.020492,-1.020492,-1.020492,-1.020492 +-1.032992,-1.032992,-1.032992,-1.032992,-1.032992,-1.032992 +-1.045492,-1.045492,-1.045492,-1.045492,-1.045492,-1.045492 +-1.057992,-1.057992,-1.057992,-1.057992,-1.057992,-1.057992 +-1.070492,-1.070492,-1.070492,-1.070492,-1.070492,-1.070492 +-1.082992,-1.082992,-1.082992,-1.082992,-1.082992,-1.082992 +-1.095492,-1.095492,-1.095492,-1.095492,-1.095492,-1.095492 +-1.107992,-1.107992,-1.107992,-1.107992,-1.107992,-1.107992 +-1.120492,-1.120492,-1.120492,-1.120492,-1.120492,-1.120492 +-1.132992,-1.132992,-1.132992,-1.132992,-1.132992,-1.132992 +-1.145492,-1.145492,-1.145492,-1.145492,-1.145492,-1.145492 +-1.157992,-1.157992,-1.157992,-1.157992,-1.157992,-1.157992 +-1.170492,-1.170492,-1.170492,-1.170492,-1.170492,-1.170492 +-1.182992,-1.182992,-1.182992,-1.182992,-1.182992,-1.182992 +-1.195492,-1.195492,-1.195492,-1.195492,-1.195492,-1.195492 +-1.207992,-1.207992,-1.207992,-1.207992,-1.207992,-1.207992 +-1.220492,-1.220492,-1.220492,-1.220492,-1.220492,-1.220492 +-1.232992,-1.232992,-1.232992,-1.232992,-1.232992,-1.232992 +-1.245492,-1.245492,-1.245492,-1.245492,-1.245492,-1.245492 +-1.257992,-1.257992,-1.257992,-1.257992,-1.257992,-1.257992 +-1.270492,-1.270492,-1.270492,-1.270492,-1.270492,-1.270492 +-1.282992,-1.282992,-1.282992,-1.282992,-1.282992,-1.282992 +-1.295492,-1.295492,-1.295492,-1.295492,-1.295492,-1.295492 +-1.307992,-1.307992,-1.307992,-1.307992,-1.307992,-1.307992 +-1.320492,-1.320492,-1.320492,-1.320492,-1.320492,-1.320492 +-1.332992,-1.332992,-1.332992,-1.332992,-1.332992,-1.332992 +-1.345492,-1.345492,-1.345492,-1.345492,-1.345492,-1.345492 +-1.357992,-1.357992,-1.357992,-1.357992,-1.357992,-1.357992 +-1.370492,-1.370492,-1.370492,-1.370492,-1.370492,-1.370492 +-1.382992,-1.382992,-1.382992,-1.382992,-1.382992,-1.382992 +-1.395492,-1.395492,-1.395492,-1.395492,-1.395492,-1.395492 +-1.407992,-1.407992,-1.407992,-1.407992,-1.407992,-1.407992 +-1.420492,-1.420492,-1.420492,-1.420492,-1.420492,-1.420492 +-1.432992,-1.432992,-1.432992,-1.432992,-1.432992,-1.432992 +-1.445492,-1.445492,-1.445492,-1.445492,-1.445492,-1.445492 +-1.457992,-1.457992,-1.457992,-1.457992,-1.457992,-1.457992 +-1.470491,-1.470491,-1.470491,-1.470491,-1.470491,-1.470491 +-1.482981,-1.482981,-1.482981,-1.482981,-1.482981,-1.482981 +-1.495436,-1.495436,-1.495436,-1.495436,-1.495436,-1.495436 +-1.507831,-1.507831,-1.507831,-1.507831,-1.507831,-1.507831 +-1.520142,-1.520142,-1.520142,-1.520142,-1.520142,-1.520142 +-1.532344,-1.532344,-1.532344,-1.532344,-1.532344,-1.532344 +-1.544411,-1.544411,-1.544411,-1.544411,-1.544411,-1.544411 +-1.556319,-1.556319,-1.556319,-1.556319,-1.556319,-1.556319 +-1.568043,-1.568043,-1.568043,-1.568043,-1.568043,-1.568043 +-1.579557,-1.579557,-1.579557,-1.579557,-1.579557,-1.579557 +-1.590837,-1.590837,-1.590837,-1.590837,-1.590837,-1.590837 +-1.601857,-1.601857,-1.601857,-1.601857,-1.601857,-1.601857 +-1.612593,-1.612593,-1.612593,-1.612593,-1.612593,-1.612593 +-1.62302,-1.62302,-1.62302,-1.62302,-1.62302,-1.62302 +-1.633112,-1.633112,-1.633112,-1.633112,-1.633112,-1.633112 +-1.642845,-1.642845,-1.642845,-1.642845,-1.642845,-1.642845 +-1.652193,-1.652193,-1.652193,-1.652193,-1.652193,-1.652193 +-1.661132,-1.661132,-1.661132,-1.661132,-1.661132,-1.661132 +-1.669637,-1.669637,-1.669637,-1.669637,-1.669637,-1.669637 +-1.677682,-1.677682,-1.677682,-1.677682,-1.677682,-1.677682 +-1.685243,-1.685243,-1.685243,-1.685243,-1.685243,-1.685243 +-1.692294,-1.692294,-1.692294,-1.692294,-1.692294,-1.692294 +-1.698811,-1.698811,-1.698811,-1.698811,-1.698811,-1.698811 +-1.704777,-1.704777,-1.704777,-1.704777,-1.704777,-1.704777 +-1.71021,-1.71021,-1.71021,-1.71021,-1.71021,-1.71021 +-1.715134,-1.715134,-1.715134,-1.715134,-1.715134,-1.715134 +-1.719574,-1.719574,-1.719574,-1.719574,-1.719574,-1.719574 +-1.723556,-1.723556,-1.723556,-1.723556,-1.723556,-1.723556 +-1.727104,-1.727104,-1.727104,-1.727104,-1.727104,-1.727104 +-1.730244,-1.730244,-1.730244,-1.730244,-1.730244,-1.730244 +-1.732999,-1.732999,-1.732999,-1.732999,-1.732999,-1.732999 +-1.735397,-1.735397,-1.735397,-1.735397,-1.735397,-1.735397 +-1.73746,-1.73746,-1.73746,-1.73746,-1.73746,-1.73746 +-1.739215,-1.739215,-1.739215,-1.739215,-1.739215,-1.739215 +-1.740687,-1.740687,-1.740687,-1.740687,-1.740687,-1.740687 +-1.741899,-1.741899,-1.741899,-1.741899,-1.741899,-1.741899 +-1.742878,-1.742878,-1.742878,-1.742878,-1.742878,-1.742878 +-1.743649,-1.743649,-1.743649,-1.743649,-1.743649,-1.743649 +-1.744235,-1.744235,-1.744235,-1.744235,-1.744235,-1.744235 +-1.744664,-1.744664,-1.744664,-1.744664,-1.744664,-1.744664 +-1.744958,-1.744958,-1.744958,-1.744958,-1.744958,-1.744958 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745033,-1.745033,-1.745033,-1.745033,-1.745033,-1.745033 +-1.744779,-1.744779,-1.744779,-1.744779,-1.744779,-1.744779 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743871,-1.743871,-1.743871,-1.743871,-1.743871,-1.743871 +-1.743167,-1.743167,-1.743167,-1.743167,-1.743167,-1.743167 +-1.742263,-1.742263,-1.742263,-1.742263,-1.742263,-1.742263 +-1.741133,-1.741133,-1.741133,-1.741133,-1.741133,-1.741133 +-1.739754,-1.739754,-1.739754,-1.739754,-1.739754,-1.739754 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.736146,-1.736146,-1.736146,-1.736146,-1.736146,-1.736146 +-1.733867,-1.733867,-1.733867,-1.733867,-1.733867,-1.733867 +-1.731238,-1.731238,-1.731238,-1.731238,-1.731238,-1.731238 +-1.728233,-1.728233,-1.728233,-1.728233,-1.728233,-1.728233 +-1.724829,-1.724829,-1.724829,-1.724829,-1.724829,-1.724829 +-1.721,-1.721,-1.721,-1.721,-1.721,-1.721 +-1.716721,-1.716721,-1.716721,-1.716721,-1.716721,-1.716721 +-1.711967,-1.711967,-1.711967,-1.711967,-1.711967,-1.711967 +-1.706713,-1.706713,-1.706713,-1.706713,-1.706713,-1.706713 +-1.700933,-1.700933,-1.700933,-1.700933,-1.700933,-1.700933 +-1.694606,-1.694606,-1.694606,-1.694606,-1.694606,-1.694606 +-1.687737,-1.687737,-1.687737,-1.687737,-1.687737,-1.687737 +-1.680349,-1.680349,-1.680349,-1.680349,-1.680349,-1.680349 +-1.672468,-1.672468,-1.672468,-1.672468,-1.672468,-1.672468 +-1.66412,-1.66412,-1.66412,-1.66412,-1.66412,-1.66412 +-1.655328,-1.655328,-1.655328,-1.655328,-1.655328,-1.655328 +-1.646118,-1.646118,-1.646118,-1.646118,-1.646118,-1.646118 +-1.636515,-1.636515,-1.636515,-1.636515,-1.636515,-1.636515 +-1.626544,-1.626544,-1.626544,-1.626544,-1.626544,-1.626544 +-1.61623,-1.61623,-1.61623,-1.61623,-1.61623,-1.61623 +-1.605598,-1.605598,-1.605598,-1.605598,-1.605598,-1.605598 +-1.594674,-1.594674,-1.594674,-1.594674,-1.594674,-1.594674 +-1.583481,-1.583481,-1.583481,-1.583481,-1.583481,-1.583481 +-1.572044,-1.572044,-1.572044,-1.572044,-1.572044,-1.572044 +-1.56039,-1.56039,-1.56039,-1.56039,-1.56039,-1.56039 +-1.548543,-1.548543,-1.548543,-1.548543,-1.548543,-1.548543 +-1.536528,-1.536528,-1.536528,-1.536528,-1.536528,-1.536528 +-1.52437,-1.52437,-1.52437,-1.52437,-1.52437,-1.52437 +-1.512094,-1.512094,-1.512094,-1.512094,-1.512094,-1.512094 +-1.499725,-1.499725,-1.499725,-1.499725,-1.499725,-1.499725 +-1.487287,-1.487287,-1.487287,-1.487287,-1.487287,-1.487287 +-1.474807,-1.474807,-1.474807,-1.474807,-1.474807,-1.474807 +-1.462308,-1.462308,-1.462308,-1.462308,-1.462308,-1.462308 +-1.449808,-1.449808,-1.449808,-1.449808,-1.449808,-1.449808 +-1.437308,-1.437308,-1.437308,-1.437308,-1.437308,-1.437308 +-1.424808,-1.424808,-1.424808,-1.424808,-1.424808,-1.424808 +-1.412308,-1.412308,-1.412308,-1.412308,-1.412308,-1.412308 +-1.399808,-1.399808,-1.399808,-1.399808,-1.399808,-1.399808 +-1.387308,-1.387308,-1.387308,-1.387308,-1.387308,-1.387308 +-1.374808,-1.374808,-1.374808,-1.374808,-1.374808,-1.374808 +-1.362308,-1.362308,-1.362308,-1.362308,-1.362308,-1.362308 +-1.349808,-1.349808,-1.349808,-1.349808,-1.349808,-1.349808 +-1.337308,-1.337308,-1.337308,-1.337308,-1.337308,-1.337308 +-1.324808,-1.324808,-1.324808,-1.324808,-1.324808,-1.324808 +-1.312308,-1.312308,-1.312308,-1.312308,-1.312308,-1.312308 +-1.299808,-1.299808,-1.299808,-1.299808,-1.299808,-1.299808 +-1.287308,-1.287308,-1.287308,-1.287308,-1.287308,-1.287308 +-1.274808,-1.274808,-1.274808,-1.274808,-1.274808,-1.274808 +-1.262308,-1.262308,-1.262308,-1.262308,-1.262308,-1.262308 +-1.249808,-1.249808,-1.249808,-1.249808,-1.249808,-1.249808 +-1.237308,-1.237308,-1.237308,-1.237308,-1.237308,-1.237308 +-1.224808,-1.224808,-1.224808,-1.224808,-1.224808,-1.224808 +-1.212308,-1.212308,-1.212308,-1.212308,-1.212308,-1.212308 +-1.199808,-1.199808,-1.199808,-1.199808,-1.199808,-1.199808 +-1.187308,-1.187308,-1.187308,-1.187308,-1.187308,-1.187308 +-1.174808,-1.174808,-1.174808,-1.174808,-1.174808,-1.174808 +-1.162308,-1.162308,-1.162308,-1.162308,-1.162308,-1.162308 +-1.149808,-1.149808,-1.149808,-1.149808,-1.149808,-1.149808 +-1.137308,-1.137308,-1.137308,-1.137308,-1.137308,-1.137308 +-1.124808,-1.124808,-1.124808,-1.124808,-1.124808,-1.124808 +-1.112308,-1.112308,-1.112308,-1.112308,-1.112308,-1.112308 +-1.099808,-1.099808,-1.099808,-1.099808,-1.099808,-1.099808 +-1.087308,-1.087308,-1.087308,-1.087308,-1.087308,-1.087308 +-1.074808,-1.074808,-1.074808,-1.074808,-1.074808,-1.074808 +-1.062308,-1.062308,-1.062308,-1.062308,-1.062308,-1.062308 +-1.049808,-1.049808,-1.049808,-1.049808,-1.049808,-1.049808 +-1.037308,-1.037308,-1.037308,-1.037308,-1.037308,-1.037308 +-1.024808,-1.024808,-1.024808,-1.024808,-1.024808,-1.024808 +-1.012308,-1.012308,-1.012308,-1.012308,-1.012308,-1.012308 +-0.999808,-0.999808,-0.999808,-0.999808,-0.999808,-0.999808 +-0.987308,-0.987308,-0.987308,-0.987308,-0.987308,-0.987308 +-0.974808,-0.974808,-0.974808,-0.974808,-0.974808,-0.974808 +-0.962308,-0.962308,-0.962308,-0.962308,-0.962308,-0.962308 +-0.949808,-0.949808,-0.949808,-0.949808,-0.949808,-0.949808 +-0.937308,-0.937308,-0.937308,-0.937308,-0.937308,-0.937308 +-0.924808,-0.924808,-0.924808,-0.924808,-0.924808,-0.924808 +-0.912308,-0.912308,-0.912308,-0.912308,-0.912308,-0.912308 +-0.899808,-0.899808,-0.899808,-0.899808,-0.899808,-0.899808 +-0.887308,-0.887308,-0.887308,-0.887308,-0.887308,-0.887308 +-0.874808,-0.874808,-0.874808,-0.874808,-0.874808,-0.874808 +-0.862308,-0.862308,-0.862308,-0.862308,-0.862308,-0.862308 +-0.849808,-0.849808,-0.849808,-0.849808,-0.849808,-0.849808 +-0.837308,-0.837308,-0.837308,-0.837308,-0.837308,-0.837308 +-0.824808,-0.824808,-0.824808,-0.824808,-0.824808,-0.824808 +-0.812308,-0.812308,-0.812308,-0.812308,-0.812308,-0.812308 +-0.799808,-0.799808,-0.799808,-0.799808,-0.799808,-0.799808 +-0.787308,-0.787308,-0.787308,-0.787308,-0.787308,-0.787308 +-0.774808,-0.774808,-0.774808,-0.774808,-0.774808,-0.774808 +-0.762308,-0.762308,-0.762308,-0.762308,-0.762308,-0.762308 +-0.749808,-0.749808,-0.749808,-0.749808,-0.749808,-0.749808 +-0.737308,-0.737308,-0.737308,-0.737308,-0.737308,-0.737308 +-0.724808,-0.724808,-0.724808,-0.724808,-0.724808,-0.724808 +-0.712308,-0.712308,-0.712308,-0.712308,-0.712308,-0.712308 +-0.699808,-0.699808,-0.699808,-0.699808,-0.699808,-0.699808 +-0.687308,-0.687308,-0.687308,-0.687308,-0.687308,-0.687308 +-0.674808,-0.674808,-0.674808,-0.674808,-0.674808,-0.674808 +-0.662308,-0.662308,-0.662308,-0.662308,-0.662308,-0.662308 +-0.649808,-0.649808,-0.649808,-0.649808,-0.649808,-0.649808 +-0.637308,-0.637308,-0.637308,-0.637308,-0.637308,-0.637308 +-0.624808,-0.624808,-0.624808,-0.624808,-0.624808,-0.624808 +-0.612308,-0.612308,-0.612308,-0.612308,-0.612308,-0.612308 +-0.599808,-0.599808,-0.599808,-0.599808,-0.599808,-0.599808 +-0.587308,-0.587308,-0.587308,-0.587308,-0.587308,-0.587308 +-0.574808,-0.574808,-0.574808,-0.574808,-0.574808,-0.574808 +-0.562308,-0.562308,-0.562308,-0.562308,-0.562308,-0.562308 +-0.549808,-0.549808,-0.549808,-0.549808,-0.549808,-0.549808 +-0.537308,-0.537308,-0.537308,-0.537308,-0.537308,-0.537308 +-0.524808,-0.524808,-0.524808,-0.524808,-0.524808,-0.524808 +-0.512308,-0.512308,-0.512308,-0.512308,-0.512308,-0.512308 +-0.499808,-0.499808,-0.499808,-0.499808,-0.499808,-0.499808 +-0.487308,-0.487308,-0.487308,-0.487308,-0.487308,-0.487308 +-0.474808,-0.474808,-0.474808,-0.474808,-0.474808,-0.474808 +-0.462308,-0.462308,-0.462308,-0.462308,-0.462308,-0.462308 +-0.449808,-0.449808,-0.449808,-0.449808,-0.449808,-0.449808 +-0.437308,-0.437308,-0.437308,-0.437308,-0.437308,-0.437308 +-0.424808,-0.424808,-0.424808,-0.424808,-0.424808,-0.424808 +-0.412308,-0.412308,-0.412308,-0.412308,-0.412308,-0.412308 +-0.399808,-0.399808,-0.399808,-0.399808,-0.399808,-0.399808 +-0.387308,-0.387308,-0.387308,-0.387308,-0.387308,-0.387308 +-0.374808,-0.374808,-0.374808,-0.374808,-0.374808,-0.374808 +-0.362308,-0.362308,-0.362308,-0.362308,-0.362308,-0.362308 +-0.349808,-0.349808,-0.349808,-0.349808,-0.349808,-0.349808 +-0.337308,-0.337308,-0.337308,-0.337308,-0.337308,-0.337308 +-0.324808,-0.324808,-0.324808,-0.324808,-0.324808,-0.324808 +-0.312308,-0.312308,-0.312308,-0.312308,-0.312308,-0.312308 +-0.299808,-0.299808,-0.299808,-0.299808,-0.299808,-0.299808 +-0.287308,-0.287308,-0.287308,-0.287308,-0.287308,-0.287308 +-0.274809,-0.274809,-0.274809,-0.274809,-0.274809,-0.274809 +-0.262319,-0.262319,-0.262319,-0.262319,-0.262319,-0.262319 +-0.249864,-0.249864,-0.249864,-0.249864,-0.249864,-0.249864 +-0.237469,-0.237469,-0.237469,-0.237469,-0.237469,-0.237469 +-0.225158,-0.225158,-0.225158,-0.225158,-0.225158,-0.225158 +-0.212956,-0.212956,-0.212956,-0.212956,-0.212956,-0.212956 +-0.200889,-0.200889,-0.200889,-0.200889,-0.200889,-0.200889 +-0.188981,-0.188981,-0.188981,-0.188981,-0.188981,-0.188981 +-0.177257,-0.177257,-0.177257,-0.177257,-0.177257,-0.177257 +-0.165743,-0.165743,-0.165743,-0.165743,-0.165743,-0.165743 +-0.154463,-0.154463,-0.154463,-0.154463,-0.154463,-0.154463 +-0.143443,-0.143443,-0.143443,-0.143443,-0.143443,-0.143443 +-0.132707,-0.132707,-0.132707,-0.132707,-0.132707,-0.132707 +-0.12228,-0.12228,-0.12228,-0.12228,-0.12228,-0.12228 +-0.112188,-0.112188,-0.112188,-0.112188,-0.112188,-0.112188 +-0.102455,-0.102455,-0.102455,-0.102455,-0.102455,-0.102455 +-0.093107,-0.093107,-0.093107,-0.093107,-0.093107,-0.093107 +-0.084168,-0.084168,-0.084168,-0.084168,-0.084168,-0.084168 +-0.075663,-0.075663,-0.075663,-0.075663,-0.075663,-0.075663 +-0.067618,-0.067618,-0.067618,-0.067618,-0.067618,-0.067618 +-0.060057,-0.060057,-0.060057,-0.060057,-0.060057,-0.060057 +-0.053006,-0.053006,-0.053006,-0.053006,-0.053006,-0.053006 +-0.046489,-0.046489,-0.046489,-0.046489,-0.046489,-0.046489 +-0.040523,-0.040523,-0.040523,-0.040523,-0.040523,-0.040523 +-0.03509,-0.03509,-0.03509,-0.03509,-0.03509,-0.03509 +-0.030166,-0.030166,-0.030166,-0.030166,-0.030166,-0.030166 +-0.025726,-0.025726,-0.025726,-0.025726,-0.025726,-0.025726 +-0.021744,-0.021744,-0.021744,-0.021744,-0.021744,-0.021744 +-0.018196,-0.018196,-0.018196,-0.018196,-0.018196,-0.018196 +-0.015056,-0.015056,-0.015056,-0.015056,-0.015056,-0.015056 +-0.012301,-0.012301,-0.012301,-0.012301,-0.012301,-0.012301 +-0.009903,-0.009903,-0.009903,-0.009903,-0.009903,-0.009903 +-0.00784,-0.00784,-0.00784,-0.00784,-0.00784,-0.00784 +-0.006085,-0.006085,-0.006085,-0.006085,-0.006085,-0.006085 +-0.004613,-0.004613,-0.004613,-0.004613,-0.004613,-0.004613 +-0.003401,-0.003401,-0.003401,-0.003401,-0.003401,-0.003401 +-0.002422,-0.002422,-0.002422,-0.002422,-0.002422,-0.002422 +-0.001651,-0.001651,-0.001651,-0.001651,-0.001651,-0.001651 +-0.001065,-0.001065,-0.001065,-0.001065,-0.001065,-0.001065 +-0.000636,-0.000636,-0.000636,-0.000636,-0.000636,-0.000636 +-0.000342,-0.000342,-0.000342,-0.000342,-0.000342,-0.000342 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000033,0.000033,0.000033,0.000033,0.000033,0.000033 +0.000112,0.000112,0.000112,0.000112,0.000112,0.000112 +0.000267,0.000267,0.000267,0.000267,0.000267,0.000267 +0.000521,0.000521,0.000521,0.000521,0.000521,0.000521 +0.0009,0.0009,0.0009,0.0009,0.0009,0.0009 +0.001429,0.001429,0.001429,0.001429,0.001429,0.001429 +0.002133,0.002133,0.002133,0.002133,0.002133,0.002133 +0.003037,0.003037,0.003037,0.003037,0.003037,0.003037 +0.004167,0.004167,0.004167,0.004167,0.004167,0.004167 +0.005546,0.005546,0.005546,0.005546,0.005546,0.005546 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.009154,0.009154,0.009154,0.009154,0.009154,0.009154 +0.011433,0.011433,0.011433,0.011433,0.011433,0.011433 +0.014062,0.014062,0.014062,0.014062,0.014062,0.014062 +0.017067,0.017067,0.017067,0.017067,0.017067,0.017067 +0.020471,0.020471,0.020471,0.020471,0.020471,0.020471 +0.0243,0.0243,0.0243,0.0243,0.0243,0.0243 +0.028579,0.028579,0.028579,0.028579,0.028579,0.028579 +0.033333,0.033333,0.033333,0.033333,0.033333,0.033333 +0.038587,0.038587,0.038587,0.038587,0.038587,0.038587 +0.044367,0.044367,0.044367,0.044367,0.044367,0.044367 +0.050694,0.050694,0.050694,0.050694,0.050694,0.050694 +0.057563,0.057563,0.057563,0.057563,0.057563,0.057563 +0.064951,0.064951,0.064951,0.064951,0.064951,0.064951 +0.072832,0.072832,0.072832,0.072832,0.072832,0.072832 +0.08118,0.08118,0.08118,0.08118,0.08118,0.08118 +0.089972,0.089972,0.089972,0.089972,0.089972,0.089972 +0.099182,0.099182,0.099182,0.099182,0.099182,0.099182 +0.108785,0.108785,0.108785,0.108785,0.108785,0.108785 +0.118756,0.118756,0.118756,0.118756,0.118756,0.118756 +0.12907,0.12907,0.12907,0.12907,0.12907,0.12907 +0.139702,0.139702,0.139702,0.139702,0.139702,0.139702 +0.150626,0.150626,0.150626,0.150626,0.150626,0.150626 +0.161819,0.161819,0.161819,0.161819,0.161819,0.161819 +0.173256,0.173256,0.173256,0.173256,0.173256,0.173256 +0.18491,0.18491,0.18491,0.18491,0.18491,0.18491 +0.196757,0.196757,0.196757,0.196757,0.196757,0.196757 +0.208772,0.208772,0.208772,0.208772,0.208772,0.208772 +0.22093,0.22093,0.22093,0.22093,0.22093,0.22093 +0.233206,0.233206,0.233206,0.233206,0.233206,0.233206 +0.245575,0.245575,0.245575,0.245575,0.245575,0.245575 +0.258013,0.258013,0.258013,0.258013,0.258013,0.258013 +0.270493,0.270493,0.270493,0.270493,0.270493,0.270493 +0.282992,0.282992,0.282992,0.282992,0.282992,0.282992 +0.295492,0.295492,0.295492,0.295492,0.295492,0.295492 +0.307992,0.307992,0.307992,0.307992,0.307992,0.307992 +0.320492,0.320492,0.320492,0.320492,0.320492,0.320492 +0.332992,0.332992,0.332992,0.332992,0.332992,0.332992 +0.345492,0.345492,0.345492,0.345492,0.345492,0.345492 +0.357992,0.357992,0.357992,0.357992,0.357992,0.357992 +0.370492,0.370492,0.370492,0.370492,0.370492,0.370492 +0.382992,0.382992,0.382992,0.382992,0.382992,0.382992 +0.395492,0.395492,0.395492,0.395492,0.395492,0.395492 +0.407992,0.407992,0.407992,0.407992,0.407992,0.407992 +0.420492,0.420492,0.420492,0.420492,0.420492,0.420492 +0.432992,0.432992,0.432992,0.432992,0.432992,0.432992 +0.445492,0.445492,0.445492,0.445492,0.445492,0.445492 +0.457992,0.457992,0.457992,0.457992,0.457992,0.457992 +0.470492,0.470492,0.470492,0.470492,0.470492,0.470492 +0.482992,0.482992,0.482992,0.482992,0.482992,0.482992 +0.495492,0.495492,0.495492,0.495492,0.495492,0.495492 +0.507992,0.507992,0.507992,0.507992,0.507992,0.507992 +0.520492,0.520492,0.520492,0.520492,0.520492,0.520492 +0.532992,0.532992,0.532992,0.532992,0.532992,0.532992 +0.545492,0.545492,0.545492,0.545492,0.545492,0.545492 +0.557992,0.557992,0.557992,0.557992,0.557992,0.557992 +0.570492,0.570492,0.570492,0.570492,0.570492,0.570492 +0.582992,0.582992,0.582992,0.582992,0.582992,0.582992 +0.595492,0.595492,0.595492,0.595492,0.595492,0.595492 +0.607992,0.607992,0.607992,0.607992,0.607992,0.607992 +0.620492,0.620492,0.620492,0.620492,0.620492,0.620492 +0.632992,0.632992,0.632992,0.632992,0.632992,0.632992 +0.645492,0.645492,0.645492,0.645492,0.645492,0.645492 +0.657992,0.657992,0.657992,0.657992,0.657992,0.657992 +0.670492,0.670492,0.670492,0.670492,0.670492,0.670492 +0.682992,0.682992,0.682992,0.682992,0.682992,0.682992 +0.695492,0.695492,0.695492,0.695492,0.695492,0.695492 +0.707992,0.707992,0.707992,0.707992,0.707992,0.707992 +0.720492,0.720492,0.720492,0.720492,0.720492,0.720492 +0.732992,0.732992,0.732992,0.732992,0.732992,0.732992 +0.745492,0.745492,0.745492,0.745492,0.745492,0.745492 +0.757992,0.757992,0.757992,0.757992,0.757992,0.757992 +0.770492,0.770492,0.770492,0.770492,0.770492,0.770492 +0.782992,0.782992,0.782992,0.782992,0.782992,0.782992 +0.795492,0.795492,0.795492,0.795492,0.795492,0.795492 +0.807992,0.807992,0.807992,0.807992,0.807992,0.807992 +0.820492,0.820492,0.820492,0.820492,0.820492,0.820492 +0.832992,0.832992,0.832992,0.832992,0.832992,0.832992 +0.845492,0.845492,0.845492,0.845492,0.845492,0.845492 +0.857992,0.857992,0.857992,0.857992,0.857992,0.857992 +0.870492,0.870492,0.870492,0.870492,0.870492,0.870492 +0.882992,0.882992,0.882992,0.882992,0.882992,0.882992 +0.895492,0.895492,0.895492,0.895492,0.895492,0.895492 +0.907992,0.907992,0.907992,0.907992,0.907992,0.907992 +0.920492,0.920492,0.920492,0.920492,0.920492,0.920492 +0.932992,0.932992,0.932992,0.932992,0.932992,0.932992 +0.945492,0.945492,0.945492,0.945492,0.945492,0.945492 +0.957992,0.957992,0.957992,0.957992,0.957992,0.957992 +0.970492,0.970492,0.970492,0.970492,0.970492,0.970492 +0.982992,0.982992,0.982992,0.982992,0.982992,0.982992 +0.995492,0.995492,0.995492,0.995492,0.995492,0.995492 +1.007992,1.007992,1.007992,1.007992,1.007992,1.007992 +1.020492,1.020492,1.020492,1.020492,1.020492,1.020492 +1.032992,1.032992,1.032992,1.032992,1.032992,1.032992 +1.045492,1.045492,1.045492,1.045492,1.045492,1.045492 +1.057992,1.057992,1.057992,1.057992,1.057992,1.057992 +1.070492,1.070492,1.070492,1.070492,1.070492,1.070492 +1.082992,1.082992,1.082992,1.082992,1.082992,1.082992 +1.095492,1.095492,1.095492,1.095492,1.095492,1.095492 +1.107992,1.107992,1.107992,1.107992,1.107992,1.107992 +1.120492,1.120492,1.120492,1.120492,1.120492,1.120492 +1.132992,1.132992,1.132992,1.132992,1.132992,1.132992 +1.145492,1.145492,1.145492,1.145492,1.145492,1.145492 +1.157992,1.157992,1.157992,1.157992,1.157992,1.157992 +1.170492,1.170492,1.170492,1.170492,1.170492,1.170492 +1.182992,1.182992,1.182992,1.182992,1.182992,1.182992 +1.195492,1.195492,1.195492,1.195492,1.195492,1.195492 +1.207992,1.207992,1.207992,1.207992,1.207992,1.207992 +1.220492,1.220492,1.220492,1.220492,1.220492,1.220492 +1.232992,1.232992,1.232992,1.232992,1.232992,1.232992 +1.245492,1.245492,1.245492,1.245492,1.245492,1.245492 +1.257992,1.257992,1.257992,1.257992,1.257992,1.257992 +1.270492,1.270492,1.270492,1.270492,1.270492,1.270492 +1.282992,1.282992,1.282992,1.282992,1.282992,1.282992 +1.295492,1.295492,1.295492,1.295492,1.295492,1.295492 +1.307992,1.307992,1.307992,1.307992,1.307992,1.307992 +1.320492,1.320492,1.320492,1.320492,1.320492,1.320492 +1.332992,1.332992,1.332992,1.332992,1.332992,1.332992 +1.345492,1.345492,1.345492,1.345492,1.345492,1.345492 +1.357992,1.357992,1.357992,1.357992,1.357992,1.357992 +1.370492,1.370492,1.370492,1.370492,1.370492,1.370492 +1.382992,1.382992,1.382992,1.382992,1.382992,1.382992 +1.395492,1.395492,1.395492,1.395492,1.395492,1.395492 +1.407992,1.407992,1.407992,1.407992,1.407992,1.407992 +1.420492,1.420492,1.420492,1.420492,1.420492,1.420492 +1.432992,1.432992,1.432992,1.432992,1.432992,1.432992 +1.445492,1.445492,1.445492,1.445492,1.445492,1.445492 +1.457992,1.457992,1.457992,1.457992,1.457992,1.457992 +1.470491,1.470491,1.470491,1.470491,1.470491,1.470491 +1.482981,1.482981,1.482981,1.482981,1.482981,1.482981 +1.495436,1.495436,1.495436,1.495436,1.495436,1.495436 +1.507831,1.507831,1.507831,1.507831,1.507831,1.507831 +1.520142,1.520142,1.520142,1.520142,1.520142,1.520142 +1.532344,1.532344,1.532344,1.532344,1.532344,1.532344 +1.544411,1.544411,1.544411,1.544411,1.544411,1.544411 +1.556319,1.556319,1.556319,1.556319,1.556319,1.556319 +1.568043,1.568043,1.568043,1.568043,1.568043,1.568043 +1.579557,1.579557,1.579557,1.579557,1.579557,1.579557 +1.590837,1.590837,1.590837,1.590837,1.590837,1.590837 +1.601857,1.601857,1.601857,1.601857,1.601857,1.601857 +1.612593,1.612593,1.612593,1.612593,1.612593,1.612593 +1.62302,1.62302,1.62302,1.62302,1.62302,1.62302 +1.633112,1.633112,1.633112,1.633112,1.633112,1.633112 +1.642845,1.642845,1.642845,1.642845,1.642845,1.642845 +1.652193,1.652193,1.652193,1.652193,1.652193,1.652193 +1.661132,1.661132,1.661132,1.661132,1.661132,1.661132 +1.669637,1.669637,1.669637,1.669637,1.669637,1.669637 +1.677682,1.677682,1.677682,1.677682,1.677682,1.677682 +1.685243,1.685243,1.685243,1.685243,1.685243,1.685243 +1.692294,1.692294,1.692294,1.692294,1.692294,1.692294 +1.698811,1.698811,1.698811,1.698811,1.698811,1.698811 +1.704777,1.704777,1.704777,1.704777,1.704777,1.704777 +1.71021,1.71021,1.71021,1.71021,1.71021,1.71021 +1.715134,1.715134,1.715134,1.715134,1.715134,1.715134 +1.719574,1.719574,1.719574,1.719574,1.719574,1.719574 +1.723556,1.723556,1.723556,1.723556,1.723556,1.723556 +1.727104,1.727104,1.727104,1.727104,1.727104,1.727104 +1.730244,1.730244,1.730244,1.730244,1.730244,1.730244 +1.732999,1.732999,1.732999,1.732999,1.732999,1.732999 +1.735397,1.735397,1.735397,1.735397,1.735397,1.735397 +1.73746,1.73746,1.73746,1.73746,1.73746,1.73746 +1.739215,1.739215,1.739215,1.739215,1.739215,1.739215 +1.740687,1.740687,1.740687,1.740687,1.740687,1.740687 +1.741899,1.741899,1.741899,1.741899,1.741899,1.741899 +1.742878,1.742878,1.742878,1.742878,1.742878,1.742878 +1.743649,1.743649,1.743649,1.743649,1.743649,1.743649 +1.744235,1.744235,1.744235,1.744235,1.744235,1.744235 +1.744664,1.744664,1.744664,1.744664,1.744664,1.744664 +1.744958,1.744958,1.744958,1.744958,1.744958,1.744958 +1.745144,1.745144,1.745144,1.745144,1.745144,1.745144 +1.745246,1.745246,1.745246,1.745246,1.745246,1.745246 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745267,1.745267,1.745267,1.745267,1.745267,1.745267 +1.745188,1.745188,1.745188,1.745188,1.745188,1.745188 +1.745033,1.745033,1.745033,1.745033,1.745033,1.745033 +1.744779,1.744779,1.744779,1.744779,1.744779,1.744779 +1.7444,1.7444,1.7444,1.7444,1.7444,1.7444 +1.743871,1.743871,1.743871,1.743871,1.743871,1.743871 +1.743167,1.743167,1.743167,1.743167,1.743167,1.743167 +1.742263,1.742263,1.742263,1.742263,1.742263,1.742263 +1.741133,1.741133,1.741133,1.741133,1.741133,1.741133 +1.739754,1.739754,1.739754,1.739754,1.739754,1.739754 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.736146,1.736146,1.736146,1.736146,1.736146,1.736146 +1.733867,1.733867,1.733867,1.733867,1.733867,1.733867 +1.731238,1.731238,1.731238,1.731238,1.731238,1.731238 +1.728233,1.728233,1.728233,1.728233,1.728233,1.728233 +1.724829,1.724829,1.724829,1.724829,1.724829,1.724829 +1.721,1.721,1.721,1.721,1.721,1.721 +1.716721,1.716721,1.716721,1.716721,1.716721,1.716721 +1.711967,1.711967,1.711967,1.711967,1.711967,1.711967 +1.706713,1.706713,1.706713,1.706713,1.706713,1.706713 +1.700933,1.700933,1.700933,1.700933,1.700933,1.700933 +1.694606,1.694606,1.694606,1.694606,1.694606,1.694606 +1.687737,1.687737,1.687737,1.687737,1.687737,1.687737 +1.680349,1.680349,1.680349,1.680349,1.680349,1.680349 +1.672468,1.672468,1.672468,1.672468,1.672468,1.672468 +1.66412,1.66412,1.66412,1.66412,1.66412,1.66412 +1.655328,1.655328,1.655328,1.655328,1.655328,1.655328 +1.646118,1.646118,1.646118,1.646118,1.646118,1.646118 +1.636515,1.636515,1.636515,1.636515,1.636515,1.636515 +1.626544,1.626544,1.626544,1.626544,1.626544,1.626544 +1.61623,1.61623,1.61623,1.61623,1.61623,1.61623 +1.605598,1.605598,1.605598,1.605598,1.605598,1.605598 +1.594674,1.594674,1.594674,1.594674,1.594674,1.594674 +1.583481,1.583481,1.583481,1.583481,1.583481,1.583481 +1.572044,1.572044,1.572044,1.572044,1.572044,1.572044 +1.56039,1.56039,1.56039,1.56039,1.56039,1.56039 +1.548543,1.548543,1.548543,1.548543,1.548543,1.548543 +1.536528,1.536528,1.536528,1.536528,1.536528,1.536528 +1.52437,1.52437,1.52437,1.52437,1.52437,1.52437 +1.512094,1.512094,1.512094,1.512094,1.512094,1.512094 +1.499725,1.499725,1.499725,1.499725,1.499725,1.499725 +1.487287,1.487287,1.487287,1.487287,1.487287,1.487287 +1.474807,1.474807,1.474807,1.474807,1.474807,1.474807 +1.462308,1.462308,1.462308,1.462308,1.462308,1.462308 +1.449808,1.449808,1.449808,1.449808,1.449808,1.449808 +1.437308,1.437308,1.437308,1.437308,1.437308,1.437308 +1.424808,1.424808,1.424808,1.424808,1.424808,1.424808 +1.412308,1.412308,1.412308,1.412308,1.412308,1.412308 +1.399808,1.399808,1.399808,1.399808,1.399808,1.399808 +1.387308,1.387308,1.387308,1.387308,1.387308,1.387308 +1.374808,1.374808,1.374808,1.374808,1.374808,1.374808 +1.362308,1.362308,1.362308,1.362308,1.362308,1.362308 +1.349808,1.349808,1.349808,1.349808,1.349808,1.349808 +1.337308,1.337308,1.337308,1.337308,1.337308,1.337308 +1.324808,1.324808,1.324808,1.324808,1.324808,1.324808 +1.312308,1.312308,1.312308,1.312308,1.312308,1.312308 +1.299808,1.299808,1.299808,1.299808,1.299808,1.299808 +1.287308,1.287308,1.287308,1.287308,1.287308,1.287308 +1.274808,1.274808,1.274808,1.274808,1.274808,1.274808 +1.262308,1.262308,1.262308,1.262308,1.262308,1.262308 +1.249808,1.249808,1.249808,1.249808,1.249808,1.249808 +1.237308,1.237308,1.237308,1.237308,1.237308,1.237308 +1.224808,1.224808,1.224808,1.224808,1.224808,1.224808 +1.212308,1.212308,1.212308,1.212308,1.212308,1.212308 +1.199808,1.199808,1.199808,1.199808,1.199808,1.199808 +1.187308,1.187308,1.187308,1.187308,1.187308,1.187308 +1.174808,1.174808,1.174808,1.174808,1.174808,1.174808 +1.162308,1.162308,1.162308,1.162308,1.162308,1.162308 +1.149808,1.149808,1.149808,1.149808,1.149808,1.149808 +1.137308,1.137308,1.137308,1.137308,1.137308,1.137308 +1.124808,1.124808,1.124808,1.124808,1.124808,1.124808 +1.112308,1.112308,1.112308,1.112308,1.112308,1.112308 +1.099808,1.099808,1.099808,1.099808,1.099808,1.099808 +1.087308,1.087308,1.087308,1.087308,1.087308,1.087308 +1.074808,1.074808,1.074808,1.074808,1.074808,1.074808 +1.062308,1.062308,1.062308,1.062308,1.062308,1.062308 +1.049808,1.049808,1.049808,1.049808,1.049808,1.049808 +1.037308,1.037308,1.037308,1.037308,1.037308,1.037308 +1.024808,1.024808,1.024808,1.024808,1.024808,1.024808 +1.012308,1.012308,1.012308,1.012308,1.012308,1.012308 +0.999808,0.999808,0.999808,0.999808,0.999808,0.999808 +0.987308,0.987308,0.987308,0.987308,0.987308,0.987308 +0.974808,0.974808,0.974808,0.974808,0.974808,0.974808 +0.962308,0.962308,0.962308,0.962308,0.962308,0.962308 +0.949808,0.949808,0.949808,0.949808,0.949808,0.949808 +0.937308,0.937308,0.937308,0.937308,0.937308,0.937308 +0.924808,0.924808,0.924808,0.924808,0.924808,0.924808 +0.912308,0.912308,0.912308,0.912308,0.912308,0.912308 +0.899808,0.899808,0.899808,0.899808,0.899808,0.899808 +0.887308,0.887308,0.887308,0.887308,0.887308,0.887308 +0.874808,0.874808,0.874808,0.874808,0.874808,0.874808 +0.862308,0.862308,0.862308,0.862308,0.862308,0.862308 +0.849808,0.849808,0.849808,0.849808,0.849808,0.849808 +0.837308,0.837308,0.837308,0.837308,0.837308,0.837308 +0.824808,0.824808,0.824808,0.824808,0.824808,0.824808 +0.812308,0.812308,0.812308,0.812308,0.812308,0.812308 +0.799808,0.799808,0.799808,0.799808,0.799808,0.799808 +0.787308,0.787308,0.787308,0.787308,0.787308,0.787308 +0.774808,0.774808,0.774808,0.774808,0.774808,0.774808 +0.762308,0.762308,0.762308,0.762308,0.762308,0.762308 +0.749808,0.749808,0.749808,0.749808,0.749808,0.749808 +0.737308,0.737308,0.737308,0.737308,0.737308,0.737308 +0.724808,0.724808,0.724808,0.724808,0.724808,0.724808 +0.712308,0.712308,0.712308,0.712308,0.712308,0.712308 +0.699808,0.699808,0.699808,0.699808,0.699808,0.699808 +0.687308,0.687308,0.687308,0.687308,0.687308,0.687308 +0.674808,0.674808,0.674808,0.674808,0.674808,0.674808 +0.662308,0.662308,0.662308,0.662308,0.662308,0.662308 +0.649808,0.649808,0.649808,0.649808,0.649808,0.649808 +0.637308,0.637308,0.637308,0.637308,0.637308,0.637308 +0.624808,0.624808,0.624808,0.624808,0.624808,0.624808 +0.612308,0.612308,0.612308,0.612308,0.612308,0.612308 +0.599808,0.599808,0.599808,0.599808,0.599808,0.599808 +0.587308,0.587308,0.587308,0.587308,0.587308,0.587308 +0.574808,0.574808,0.574808,0.574808,0.574808,0.574808 +0.562308,0.562308,0.562308,0.562308,0.562308,0.562308 +0.549808,0.549808,0.549808,0.549808,0.549808,0.549808 +0.537308,0.537308,0.537308,0.537308,0.537308,0.537308 +0.524808,0.524808,0.524808,0.524808,0.524808,0.524808 +0.512308,0.512308,0.512308,0.512308,0.512308,0.512308 +0.499808,0.499808,0.499808,0.499808,0.499808,0.499808 +0.487308,0.487308,0.487308,0.487308,0.487308,0.487308 +0.474808,0.474808,0.474808,0.474808,0.474808,0.474808 +0.462308,0.462308,0.462308,0.462308,0.462308,0.462308 +0.449808,0.449808,0.449808,0.449808,0.449808,0.449808 +0.437308,0.437308,0.437308,0.437308,0.437308,0.437308 +0.424808,0.424808,0.424808,0.424808,0.424808,0.424808 +0.412308,0.412308,0.412308,0.412308,0.412308,0.412308 +0.399808,0.399808,0.399808,0.399808,0.399808,0.399808 +0.387308,0.387308,0.387308,0.387308,0.387308,0.387308 +0.374808,0.374808,0.374808,0.374808,0.374808,0.374808 +0.362308,0.362308,0.362308,0.362308,0.362308,0.362308 +0.349808,0.349808,0.349808,0.349808,0.349808,0.349808 +0.337308,0.337308,0.337308,0.337308,0.337308,0.337308 +0.324808,0.324808,0.324808,0.324808,0.324808,0.324808 +0.312308,0.312308,0.312308,0.312308,0.312308,0.312308 +0.299808,0.299808,0.299808,0.299808,0.299808,0.299808 +0.287308,0.287308,0.287308,0.287308,0.287308,0.287308 +0.274809,0.274809,0.274809,0.274809,0.274809,0.274809 +0.262319,0.262319,0.262319,0.262319,0.262319,0.262319 +0.249864,0.249864,0.249864,0.249864,0.249864,0.249864 +0.237469,0.237469,0.237469,0.237469,0.237469,0.237469 +0.225158,0.225158,0.225158,0.225158,0.225158,0.225158 +0.212956,0.212956,0.212956,0.212956,0.212956,0.212956 +0.200889,0.200889,0.200889,0.200889,0.200889,0.200889 +0.188981,0.188981,0.188981,0.188981,0.188981,0.188981 +0.177257,0.177257,0.177257,0.177257,0.177257,0.177257 +0.165743,0.165743,0.165743,0.165743,0.165743,0.165743 +0.154463,0.154463,0.154463,0.154463,0.154463,0.154463 +0.143443,0.143443,0.143443,0.143443,0.143443,0.143443 +0.132707,0.132707,0.132707,0.132707,0.132707,0.132707 +0.12228,0.12228,0.12228,0.12228,0.12228,0.12228 +0.112188,0.112188,0.112188,0.112188,0.112188,0.112188 +0.102455,0.102455,0.102455,0.102455,0.102455,0.102455 +0.093107,0.093107,0.093107,0.093107,0.093107,0.093107 +0.084168,0.084168,0.084168,0.084168,0.084168,0.084168 +0.075663,0.075663,0.075663,0.075663,0.075663,0.075663 +0.067618,0.067618,0.067618,0.067618,0.067618,0.067618 +0.060057,0.060057,0.060057,0.060057,0.060057,0.060057 +0.053006,0.053006,0.053006,0.053006,0.053006,0.053006 +0.046489,0.046489,0.046489,0.046489,0.046489,0.046489 +0.040523,0.040523,0.040523,0.040523,0.040523,0.040523 +0.03509,0.03509,0.03509,0.03509,0.03509,0.03509 +0.030166,0.030166,0.030166,0.030166,0.030166,0.030166 +0.025726,0.025726,0.025726,0.025726,0.025726,0.025726 +0.021744,0.021744,0.021744,0.021744,0.021744,0.021744 +0.018196,0.018196,0.018196,0.018196,0.018196,0.018196 +0.015056,0.015056,0.015056,0.015056,0.015056,0.015056 +0.012301,0.012301,0.012301,0.012301,0.012301,0.012301 +0.009903,0.009903,0.009903,0.009903,0.009903,0.009903 +0.00784,0.00784,0.00784,0.00784,0.00784,0.00784 +0.006085,0.006085,0.006085,0.006085,0.006085,0.006085 +0.004613,0.004613,0.004613,0.004613,0.004613,0.004613 +0.003401,0.003401,0.003401,0.003401,0.003401,0.003401 +0.002422,0.002422,0.002422,0.002422,0.002422,0.002422 +0.001651,0.001651,0.001651,0.001651,0.001651,0.001651 +0.001065,0.001065,0.001065,0.001065,0.001065,0.001065 +0.000636,0.000636,0.000636,0.000636,0.000636,0.000636 +0.000342,0.000342,0.000342,0.000342,0.000342,0.000342 +0.000156,0.000156,0.000156,0.000156,0.000156,0.000156 +0.000054,0.000054,0.000054,0.000054,0.000054,0.000054 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000267,-0.000267,-0.000267,-0.000267,-0.000267,-0.000267 +-0.000521,-0.000521,-0.000521,-0.000521,-0.000521,-0.000521 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001429,-0.001429,-0.001429,-0.001429,-0.001429,-0.001429 +-0.002133,-0.002133,-0.002133,-0.002133,-0.002133,-0.002133 +-0.003037,-0.003037,-0.003037,-0.003037,-0.003037,-0.003037 +-0.004167,-0.004167,-0.004167,-0.004167,-0.004167,-0.004167 +-0.005546,-0.005546,-0.005546,-0.005546,-0.005546,-0.005546 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.009154,-0.009154,-0.009154,-0.009154,-0.009154,-0.009154 +-0.011433,-0.011433,-0.011433,-0.011433,-0.011433,-0.011433 +-0.014062,-0.014062,-0.014062,-0.014062,-0.014062,-0.014062 +-0.017067,-0.017067,-0.017067,-0.017067,-0.017067,-0.017067 +-0.020471,-0.020471,-0.020471,-0.020471,-0.020471,-0.020471 +-0.0243,-0.0243,-0.0243,-0.0243,-0.0243,-0.0243 +-0.028579,-0.028579,-0.028579,-0.028579,-0.028579,-0.028579 +-0.033333,-0.033333,-0.033333,-0.033333,-0.033333,-0.033333 +-0.038587,-0.038587,-0.038587,-0.038587,-0.038587,-0.038587 +-0.044367,-0.044367,-0.044367,-0.044367,-0.044367,-0.044367 +-0.050694,-0.050694,-0.050694,-0.050694,-0.050694,-0.050694 +-0.057563,-0.057563,-0.057563,-0.057563,-0.057563,-0.057563 +-0.064951,-0.064951,-0.064951,-0.064951,-0.064951,-0.064951 +-0.072832,-0.072832,-0.072832,-0.072832,-0.072832,-0.072832 +-0.08118,-0.08118,-0.08118,-0.08118,-0.08118,-0.08118 +-0.089972,-0.089972,-0.089972,-0.089972,-0.089972,-0.089972 +-0.099182,-0.099182,-0.099182,-0.099182,-0.099182,-0.099182 +-0.108785,-0.108785,-0.108785,-0.108785,-0.108785,-0.108785 +-0.118756,-0.118756,-0.118756,-0.118756,-0.118756,-0.118756 +-0.12907,-0.12907,-0.12907,-0.12907,-0.12907,-0.12907 +-0.139702,-0.139702,-0.139702,-0.139702,-0.139702,-0.139702 +-0.150626,-0.150626,-0.150626,-0.150626,-0.150626,-0.150626 +-0.161819,-0.161819,-0.161819,-0.161819,-0.161819,-0.161819 +-0.173256,-0.173256,-0.173256,-0.173256,-0.173256,-0.173256 +-0.18491,-0.18491,-0.18491,-0.18491,-0.18491,-0.18491 +-0.196757,-0.196757,-0.196757,-0.196757,-0.196757,-0.196757 +-0.208772,-0.208772,-0.208772,-0.208772,-0.208772,-0.208772 +-0.22093,-0.22093,-0.22093,-0.22093,-0.22093,-0.22093 +-0.233206,-0.233206,-0.233206,-0.233206,-0.233206,-0.233206 +-0.245575,-0.245575,-0.245575,-0.245575,-0.245575,-0.245575 +-0.258013,-0.258013,-0.258013,-0.258013,-0.258013,-0.258013 +-0.270493,-0.270493,-0.270493,-0.270493,-0.270493,-0.270493 +-0.282992,-0.282992,-0.282992,-0.282992,-0.282992,-0.282992 +-0.295492,-0.295492,-0.295492,-0.295492,-0.295492,-0.295492 +-0.307992,-0.307992,-0.307992,-0.307992,-0.307992,-0.307992 +-0.320492,-0.320492,-0.320492,-0.320492,-0.320492,-0.320492 +-0.332992,-0.332992,-0.332992,-0.332992,-0.332992,-0.332992 +-0.345492,-0.345492,-0.345492,-0.345492,-0.345492,-0.345492 +-0.357992,-0.357992,-0.357992,-0.357992,-0.357992,-0.357992 +-0.370492,-0.370492,-0.370492,-0.370492,-0.370492,-0.370492 +-0.382992,-0.382992,-0.382992,-0.382992,-0.382992,-0.382992 +-0.395492,-0.395492,-0.395492,-0.395492,-0.395492,-0.395492 +-0.407992,-0.407992,-0.407992,-0.407992,-0.407992,-0.407992 +-0.420492,-0.420492,-0.420492,-0.420492,-0.420492,-0.420492 +-0.432992,-0.432992,-0.432992,-0.432992,-0.432992,-0.432992 +-0.445492,-0.445492,-0.445492,-0.445492,-0.445492,-0.445492 +-0.457992,-0.457992,-0.457992,-0.457992,-0.457992,-0.457992 +-0.470492,-0.470492,-0.470492,-0.470492,-0.470492,-0.470492 +-0.482992,-0.482992,-0.482992,-0.482992,-0.482992,-0.482992 +-0.495492,-0.495492,-0.495492,-0.495492,-0.495492,-0.495492 +-0.507992,-0.507992,-0.507992,-0.507992,-0.507992,-0.507992 +-0.520492,-0.520492,-0.520492,-0.520492,-0.520492,-0.520492 +-0.532992,-0.532992,-0.532992,-0.532992,-0.532992,-0.532992 +-0.545492,-0.545492,-0.545492,-0.545492,-0.545492,-0.545492 +-0.557992,-0.557992,-0.557992,-0.557992,-0.557992,-0.557992 +-0.570492,-0.570492,-0.570492,-0.570492,-0.570492,-0.570492 +-0.582992,-0.582992,-0.582992,-0.582992,-0.582992,-0.582992 +-0.595492,-0.595492,-0.595492,-0.595492,-0.595492,-0.595492 +-0.607992,-0.607992,-0.607992,-0.607992,-0.607992,-0.607992 +-0.620492,-0.620492,-0.620492,-0.620492,-0.620492,-0.620492 +-0.632992,-0.632992,-0.632992,-0.632992,-0.632992,-0.632992 +-0.645492,-0.645492,-0.645492,-0.645492,-0.645492,-0.645492 +-0.657992,-0.657992,-0.657992,-0.657992,-0.657992,-0.657992 +-0.670492,-0.670492,-0.670492,-0.670492,-0.670492,-0.670492 +-0.682992,-0.682992,-0.682992,-0.682992,-0.682992,-0.682992 +-0.695492,-0.695492,-0.695492,-0.695492,-0.695492,-0.695492 +-0.707992,-0.707992,-0.707992,-0.707992,-0.707992,-0.707992 +-0.720492,-0.720492,-0.720492,-0.720492,-0.720492,-0.720492 +-0.732992,-0.732992,-0.732992,-0.732992,-0.732992,-0.732992 +-0.745492,-0.745492,-0.745492,-0.745492,-0.745492,-0.745492 +-0.757992,-0.757992,-0.757992,-0.757992,-0.757992,-0.757992 +-0.770492,-0.770492,-0.770492,-0.770492,-0.770492,-0.770492 +-0.782992,-0.782992,-0.782992,-0.782992,-0.782992,-0.782992 +-0.795492,-0.795492,-0.795492,-0.795492,-0.795492,-0.795492 +-0.807992,-0.807992,-0.807992,-0.807992,-0.807992,-0.807992 +-0.820492,-0.820492,-0.820492,-0.820492,-0.820492,-0.820492 +-0.832992,-0.832992,-0.832992,-0.832992,-0.832992,-0.832992 +-0.845492,-0.845492,-0.845492,-0.845492,-0.845492,-0.845492 +-0.857992,-0.857992,-0.857992,-0.857992,-0.857992,-0.857992 +-0.870492,-0.870492,-0.870492,-0.870492,-0.870492,-0.870492 +-0.882992,-0.882992,-0.882992,-0.882992,-0.882992,-0.882992 +-0.895492,-0.895492,-0.895492,-0.895492,-0.895492,-0.895492 +-0.907992,-0.907992,-0.907992,-0.907992,-0.907992,-0.907992 +-0.920492,-0.920492,-0.920492,-0.920492,-0.920492,-0.920492 +-0.932992,-0.932992,-0.932992,-0.932992,-0.932992,-0.932992 +-0.945492,-0.945492,-0.945492,-0.945492,-0.945492,-0.945492 +-0.957992,-0.957992,-0.957992,-0.957992,-0.957992,-0.957992 +-0.970492,-0.970492,-0.970492,-0.970492,-0.970492,-0.970492 +-0.982992,-0.982992,-0.982992,-0.982992,-0.982992,-0.982992 +-0.995492,-0.995492,-0.995492,-0.995492,-0.995492,-0.995492 +-1.007992,-1.007992,-1.007992,-1.007992,-1.007992,-1.007992 +-1.020492,-1.020492,-1.020492,-1.020492,-1.020492,-1.020492 +-1.032992,-1.032992,-1.032992,-1.032992,-1.032992,-1.032992 +-1.045492,-1.045492,-1.045492,-1.045492,-1.045492,-1.045492 +-1.057992,-1.057992,-1.057992,-1.057992,-1.057992,-1.057992 +-1.070492,-1.070492,-1.070492,-1.070492,-1.070492,-1.070492 +-1.082992,-1.082992,-1.082992,-1.082992,-1.082992,-1.082992 +-1.095492,-1.095492,-1.095492,-1.095492,-1.095492,-1.095492 +-1.107992,-1.107992,-1.107992,-1.107992,-1.107992,-1.107992 +-1.120492,-1.120492,-1.120492,-1.120492,-1.120492,-1.120492 +-1.132992,-1.132992,-1.132992,-1.132992,-1.132992,-1.132992 +-1.145492,-1.145492,-1.145492,-1.145492,-1.145492,-1.145492 +-1.157992,-1.157992,-1.157992,-1.157992,-1.157992,-1.157992 +-1.170492,-1.170492,-1.170492,-1.170492,-1.170492,-1.170492 +-1.182992,-1.182992,-1.182992,-1.182992,-1.182992,-1.182992 +-1.195492,-1.195492,-1.195492,-1.195492,-1.195492,-1.195492 +-1.207992,-1.207992,-1.207992,-1.207992,-1.207992,-1.207992 +-1.220492,-1.220492,-1.220492,-1.220492,-1.220492,-1.220492 +-1.232992,-1.232992,-1.232992,-1.232992,-1.232992,-1.232992 +-1.245492,-1.245492,-1.245492,-1.245492,-1.245492,-1.245492 +-1.257992,-1.257992,-1.257992,-1.257992,-1.257992,-1.257992 +-1.270492,-1.270492,-1.270492,-1.270492,-1.270492,-1.270492 +-1.282992,-1.282992,-1.282992,-1.282992,-1.282992,-1.282992 +-1.295492,-1.295492,-1.295492,-1.295492,-1.295492,-1.295492 +-1.307992,-1.307992,-1.307992,-1.307992,-1.307992,-1.307992 +-1.320492,-1.320492,-1.320492,-1.320492,-1.320492,-1.320492 +-1.332992,-1.332992,-1.332992,-1.332992,-1.332992,-1.332992 +-1.345492,-1.345492,-1.345492,-1.345492,-1.345492,-1.345492 +-1.357992,-1.357992,-1.357992,-1.357992,-1.357992,-1.357992 +-1.370492,-1.370492,-1.370492,-1.370492,-1.370492,-1.370492 +-1.382992,-1.382992,-1.382992,-1.382992,-1.382992,-1.382992 +-1.395492,-1.395492,-1.395492,-1.395492,-1.395492,-1.395492 +-1.407992,-1.407992,-1.407992,-1.407992,-1.407992,-1.407992 +-1.420492,-1.420492,-1.420492,-1.420492,-1.420492,-1.420492 +-1.432992,-1.432992,-1.432992,-1.432992,-1.432992,-1.432992 +-1.445492,-1.445492,-1.445492,-1.445492,-1.445492,-1.445492 +-1.457992,-1.457992,-1.457992,-1.457992,-1.457992,-1.457992 +-1.470491,-1.470491,-1.470491,-1.470491,-1.470491,-1.470491 +-1.482981,-1.482981,-1.482981,-1.482981,-1.482981,-1.482981 +-1.495436,-1.495436,-1.495436,-1.495436,-1.495436,-1.495436 +-1.507831,-1.507831,-1.507831,-1.507831,-1.507831,-1.507831 +-1.520142,-1.520142,-1.520142,-1.520142,-1.520142,-1.520142 +-1.532344,-1.532344,-1.532344,-1.532344,-1.532344,-1.532344 +-1.544411,-1.544411,-1.544411,-1.544411,-1.544411,-1.544411 +-1.556319,-1.556319,-1.556319,-1.556319,-1.556319,-1.556319 +-1.568043,-1.568043,-1.568043,-1.568043,-1.568043,-1.568043 +-1.579557,-1.579557,-1.579557,-1.579557,-1.579557,-1.579557 +-1.590837,-1.590837,-1.590837,-1.590837,-1.590837,-1.590837 +-1.601857,-1.601857,-1.601857,-1.601857,-1.601857,-1.601857 +-1.612593,-1.612593,-1.612593,-1.612593,-1.612593,-1.612593 +-1.62302,-1.62302,-1.62302,-1.62302,-1.62302,-1.62302 +-1.633112,-1.633112,-1.633112,-1.633112,-1.633112,-1.633112 +-1.642845,-1.642845,-1.642845,-1.642845,-1.642845,-1.642845 +-1.652193,-1.652193,-1.652193,-1.652193,-1.652193,-1.652193 +-1.661132,-1.661132,-1.661132,-1.661132,-1.661132,-1.661132 +-1.669637,-1.669637,-1.669637,-1.669637,-1.669637,-1.669637 +-1.677682,-1.677682,-1.677682,-1.677682,-1.677682,-1.677682 +-1.685243,-1.685243,-1.685243,-1.685243,-1.685243,-1.685243 +-1.692294,-1.692294,-1.692294,-1.692294,-1.692294,-1.692294 +-1.698811,-1.698811,-1.698811,-1.698811,-1.698811,-1.698811 +-1.704777,-1.704777,-1.704777,-1.704777,-1.704777,-1.704777 +-1.71021,-1.71021,-1.71021,-1.71021,-1.71021,-1.71021 +-1.715134,-1.715134,-1.715134,-1.715134,-1.715134,-1.715134 +-1.719574,-1.719574,-1.719574,-1.719574,-1.719574,-1.719574 +-1.723556,-1.723556,-1.723556,-1.723556,-1.723556,-1.723556 +-1.727104,-1.727104,-1.727104,-1.727104,-1.727104,-1.727104 +-1.730244,-1.730244,-1.730244,-1.730244,-1.730244,-1.730244 +-1.732999,-1.732999,-1.732999,-1.732999,-1.732999,-1.732999 +-1.735397,-1.735397,-1.735397,-1.735397,-1.735397,-1.735397 +-1.73746,-1.73746,-1.73746,-1.73746,-1.73746,-1.73746 +-1.739215,-1.739215,-1.739215,-1.739215,-1.739215,-1.739215 +-1.740687,-1.740687,-1.740687,-1.740687,-1.740687,-1.740687 +-1.741899,-1.741899,-1.741899,-1.741899,-1.741899,-1.741899 +-1.742878,-1.742878,-1.742878,-1.742878,-1.742878,-1.742878 +-1.743649,-1.743649,-1.743649,-1.743649,-1.743649,-1.743649 +-1.744235,-1.744235,-1.744235,-1.744235,-1.744235,-1.744235 +-1.744664,-1.744664,-1.744664,-1.744664,-1.744664,-1.744664 +-1.744958,-1.744958,-1.744958,-1.744958,-1.744958,-1.744958 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745033,-1.745033,-1.745033,-1.745033,-1.745033,-1.745033 +-1.744779,-1.744779,-1.744779,-1.744779,-1.744779,-1.744779 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743871,-1.743871,-1.743871,-1.743871,-1.743871,-1.743871 +-1.743167,-1.743167,-1.743167,-1.743167,-1.743167,-1.743167 +-1.742263,-1.742263,-1.742263,-1.742263,-1.742263,-1.742263 +-1.741133,-1.741133,-1.741133,-1.741133,-1.741133,-1.741133 +-1.739754,-1.739754,-1.739754,-1.739754,-1.739754,-1.739754 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.736146,-1.736146,-1.736146,-1.736146,-1.736146,-1.736146 +-1.733867,-1.733867,-1.733867,-1.733867,-1.733867,-1.733867 +-1.731238,-1.731238,-1.731238,-1.731238,-1.731238,-1.731238 +-1.728233,-1.728233,-1.728233,-1.728233,-1.728233,-1.728233 +-1.724829,-1.724829,-1.724829,-1.724829,-1.724829,-1.724829 +-1.721,-1.721,-1.721,-1.721,-1.721,-1.721 +-1.716721,-1.716721,-1.716721,-1.716721,-1.716721,-1.716721 +-1.711967,-1.711967,-1.711967,-1.711967,-1.711967,-1.711967 +-1.706713,-1.706713,-1.706713,-1.706713,-1.706713,-1.706713 +-1.700933,-1.700933,-1.700933,-1.700933,-1.700933,-1.700933 +-1.694606,-1.694606,-1.694606,-1.694606,-1.694606,-1.694606 +-1.687737,-1.687737,-1.687737,-1.687737,-1.687737,-1.687737 +-1.680349,-1.680349,-1.680349,-1.680349,-1.680349,-1.680349 +-1.672468,-1.672468,-1.672468,-1.672468,-1.672468,-1.672468 +-1.66412,-1.66412,-1.66412,-1.66412,-1.66412,-1.66412 +-1.655328,-1.655328,-1.655328,-1.655328,-1.655328,-1.655328 +-1.646118,-1.646118,-1.646118,-1.646118,-1.646118,-1.646118 +-1.636515,-1.636515,-1.636515,-1.636515,-1.636515,-1.636515 +-1.626544,-1.626544,-1.626544,-1.626544,-1.626544,-1.626544 +-1.61623,-1.61623,-1.61623,-1.61623,-1.61623,-1.61623 +-1.605598,-1.605598,-1.605598,-1.605598,-1.605598,-1.605598 +-1.594674,-1.594674,-1.594674,-1.594674,-1.594674,-1.594674 +-1.583481,-1.583481,-1.583481,-1.583481,-1.583481,-1.583481 +-1.572044,-1.572044,-1.572044,-1.572044,-1.572044,-1.572044 +-1.56039,-1.56039,-1.56039,-1.56039,-1.56039,-1.56039 +-1.548543,-1.548543,-1.548543,-1.548543,-1.548543,-1.548543 +-1.536528,-1.536528,-1.536528,-1.536528,-1.536528,-1.536528 +-1.52437,-1.52437,-1.52437,-1.52437,-1.52437,-1.52437 +-1.512094,-1.512094,-1.512094,-1.512094,-1.512094,-1.512094 +-1.499725,-1.499725,-1.499725,-1.499725,-1.499725,-1.499725 +-1.487287,-1.487287,-1.487287,-1.487287,-1.487287,-1.487287 +-1.474807,-1.474807,-1.474807,-1.474807,-1.474807,-1.474807 +-1.462308,-1.462308,-1.462308,-1.462308,-1.462308,-1.462308 +-1.449808,-1.449808,-1.449808,-1.449808,-1.449808,-1.449808 +-1.437308,-1.437308,-1.437308,-1.437308,-1.437308,-1.437308 +-1.424808,-1.424808,-1.424808,-1.424808,-1.424808,-1.424808 +-1.412308,-1.412308,-1.412308,-1.412308,-1.412308,-1.412308 +-1.399808,-1.399808,-1.399808,-1.399808,-1.399808,-1.399808 +-1.387308,-1.387308,-1.387308,-1.387308,-1.387308,-1.387308 +-1.374808,-1.374808,-1.374808,-1.374808,-1.374808,-1.374808 +-1.362308,-1.362308,-1.362308,-1.362308,-1.362308,-1.362308 +-1.349808,-1.349808,-1.349808,-1.349808,-1.349808,-1.349808 +-1.337308,-1.337308,-1.337308,-1.337308,-1.337308,-1.337308 +-1.324808,-1.324808,-1.324808,-1.324808,-1.324808,-1.324808 +-1.312308,-1.312308,-1.312308,-1.312308,-1.312308,-1.312308 +-1.299808,-1.299808,-1.299808,-1.299808,-1.299808,-1.299808 +-1.287308,-1.287308,-1.287308,-1.287308,-1.287308,-1.287308 +-1.274808,-1.274808,-1.274808,-1.274808,-1.274808,-1.274808 +-1.262308,-1.262308,-1.262308,-1.262308,-1.262308,-1.262308 +-1.249808,-1.249808,-1.249808,-1.249808,-1.249808,-1.249808 +-1.237308,-1.237308,-1.237308,-1.237308,-1.237308,-1.237308 +-1.224808,-1.224808,-1.224808,-1.224808,-1.224808,-1.224808 +-1.212308,-1.212308,-1.212308,-1.212308,-1.212308,-1.212308 +-1.199808,-1.199808,-1.199808,-1.199808,-1.199808,-1.199808 +-1.187308,-1.187308,-1.187308,-1.187308,-1.187308,-1.187308 +-1.174808,-1.174808,-1.174808,-1.174808,-1.174808,-1.174808 +-1.162308,-1.162308,-1.162308,-1.162308,-1.162308,-1.162308 +-1.149808,-1.149808,-1.149808,-1.149808,-1.149808,-1.149808 +-1.137308,-1.137308,-1.137308,-1.137308,-1.137308,-1.137308 +-1.124808,-1.124808,-1.124808,-1.124808,-1.124808,-1.124808 +-1.112308,-1.112308,-1.112308,-1.112308,-1.112308,-1.112308 +-1.099808,-1.099808,-1.099808,-1.099808,-1.099808,-1.099808 +-1.087308,-1.087308,-1.087308,-1.087308,-1.087308,-1.087308 +-1.074808,-1.074808,-1.074808,-1.074808,-1.074808,-1.074808 +-1.062308,-1.062308,-1.062308,-1.062308,-1.062308,-1.062308 +-1.049808,-1.049808,-1.049808,-1.049808,-1.049808,-1.049808 +-1.037308,-1.037308,-1.037308,-1.037308,-1.037308,-1.037308 +-1.024808,-1.024808,-1.024808,-1.024808,-1.024808,-1.024808 +-1.012308,-1.012308,-1.012308,-1.012308,-1.012308,-1.012308 +-0.999808,-0.999808,-0.999808,-0.999808,-0.999808,-0.999808 +-0.987308,-0.987308,-0.987308,-0.987308,-0.987308,-0.987308 +-0.974808,-0.974808,-0.974808,-0.974808,-0.974808,-0.974808 +-0.962308,-0.962308,-0.962308,-0.962308,-0.962308,-0.962308 +-0.949808,-0.949808,-0.949808,-0.949808,-0.949808,-0.949808 +-0.937308,-0.937308,-0.937308,-0.937308,-0.937308,-0.937308 +-0.924808,-0.924808,-0.924808,-0.924808,-0.924808,-0.924808 +-0.912308,-0.912308,-0.912308,-0.912308,-0.912308,-0.912308 +-0.899808,-0.899808,-0.899808,-0.899808,-0.899808,-0.899808 +-0.887308,-0.887308,-0.887308,-0.887308,-0.887308,-0.887308 +-0.874808,-0.874808,-0.874808,-0.874808,-0.874808,-0.874808 +-0.862308,-0.862308,-0.862308,-0.862308,-0.862308,-0.862308 +-0.849808,-0.849808,-0.849808,-0.849808,-0.849808,-0.849808 +-0.837308,-0.837308,-0.837308,-0.837308,-0.837308,-0.837308 +-0.824808,-0.824808,-0.824808,-0.824808,-0.824808,-0.824808 +-0.812308,-0.812308,-0.812308,-0.812308,-0.812308,-0.812308 +-0.799808,-0.799808,-0.799808,-0.799808,-0.799808,-0.799808 +-0.787308,-0.787308,-0.787308,-0.787308,-0.787308,-0.787308 +-0.774808,-0.774808,-0.774808,-0.774808,-0.774808,-0.774808 +-0.762308,-0.762308,-0.762308,-0.762308,-0.762308,-0.762308 +-0.749808,-0.749808,-0.749808,-0.749808,-0.749808,-0.749808 +-0.737308,-0.737308,-0.737308,-0.737308,-0.737308,-0.737308 +-0.724808,-0.724808,-0.724808,-0.724808,-0.724808,-0.724808 +-0.712308,-0.712308,-0.712308,-0.712308,-0.712308,-0.712308 +-0.699808,-0.699808,-0.699808,-0.699808,-0.699808,-0.699808 +-0.687308,-0.687308,-0.687308,-0.687308,-0.687308,-0.687308 +-0.674808,-0.674808,-0.674808,-0.674808,-0.674808,-0.674808 +-0.662308,-0.662308,-0.662308,-0.662308,-0.662308,-0.662308 +-0.649808,-0.649808,-0.649808,-0.649808,-0.649808,-0.649808 +-0.637308,-0.637308,-0.637308,-0.637308,-0.637308,-0.637308 +-0.624808,-0.624808,-0.624808,-0.624808,-0.624808,-0.624808 +-0.612308,-0.612308,-0.612308,-0.612308,-0.612308,-0.612308 +-0.599808,-0.599808,-0.599808,-0.599808,-0.599808,-0.599808 +-0.587308,-0.587308,-0.587308,-0.587308,-0.587308,-0.587308 +-0.574808,-0.574808,-0.574808,-0.574808,-0.574808,-0.574808 +-0.562308,-0.562308,-0.562308,-0.562308,-0.562308,-0.562308 +-0.549808,-0.549808,-0.549808,-0.549808,-0.549808,-0.549808 +-0.537308,-0.537308,-0.537308,-0.537308,-0.537308,-0.537308 +-0.524808,-0.524808,-0.524808,-0.524808,-0.524808,-0.524808 +-0.512308,-0.512308,-0.512308,-0.512308,-0.512308,-0.512308 +-0.499808,-0.499808,-0.499808,-0.499808,-0.499808,-0.499808 +-0.487308,-0.487308,-0.487308,-0.487308,-0.487308,-0.487308 +-0.474808,-0.474808,-0.474808,-0.474808,-0.474808,-0.474808 +-0.462308,-0.462308,-0.462308,-0.462308,-0.462308,-0.462308 +-0.449808,-0.449808,-0.449808,-0.449808,-0.449808,-0.449808 +-0.437308,-0.437308,-0.437308,-0.437308,-0.437308,-0.437308 +-0.424808,-0.424808,-0.424808,-0.424808,-0.424808,-0.424808 +-0.412308,-0.412308,-0.412308,-0.412308,-0.412308,-0.412308 +-0.399808,-0.399808,-0.399808,-0.399808,-0.399808,-0.399808 +-0.387308,-0.387308,-0.387308,-0.387308,-0.387308,-0.387308 +-0.374808,-0.374808,-0.374808,-0.374808,-0.374808,-0.374808 +-0.362308,-0.362308,-0.362308,-0.362308,-0.362308,-0.362308 +-0.349808,-0.349808,-0.349808,-0.349808,-0.349808,-0.349808 +-0.337308,-0.337308,-0.337308,-0.337308,-0.337308,-0.337308 +-0.324808,-0.324808,-0.324808,-0.324808,-0.324808,-0.324808 +-0.312308,-0.312308,-0.312308,-0.312308,-0.312308,-0.312308 +-0.299808,-0.299808,-0.299808,-0.299808,-0.299808,-0.299808 +-0.287308,-0.287308,-0.287308,-0.287308,-0.287308,-0.287308 +-0.274809,-0.274809,-0.274809,-0.274809,-0.274809,-0.274809 +-0.262319,-0.262319,-0.262319,-0.262319,-0.262319,-0.262319 +-0.249864,-0.249864,-0.249864,-0.249864,-0.249864,-0.249864 +-0.237469,-0.237469,-0.237469,-0.237469,-0.237469,-0.237469 +-0.225158,-0.225158,-0.225158,-0.225158,-0.225158,-0.225158 +-0.212956,-0.212956,-0.212956,-0.212956,-0.212956,-0.212956 +-0.200889,-0.200889,-0.200889,-0.200889,-0.200889,-0.200889 +-0.188981,-0.188981,-0.188981,-0.188981,-0.188981,-0.188981 +-0.177257,-0.177257,-0.177257,-0.177257,-0.177257,-0.177257 +-0.165743,-0.165743,-0.165743,-0.165743,-0.165743,-0.165743 +-0.154463,-0.154463,-0.154463,-0.154463,-0.154463,-0.154463 +-0.143443,-0.143443,-0.143443,-0.143443,-0.143443,-0.143443 +-0.132707,-0.132707,-0.132707,-0.132707,-0.132707,-0.132707 +-0.12228,-0.12228,-0.12228,-0.12228,-0.12228,-0.12228 +-0.112188,-0.112188,-0.112188,-0.112188,-0.112188,-0.112188 +-0.102455,-0.102455,-0.102455,-0.102455,-0.102455,-0.102455 +-0.093107,-0.093107,-0.093107,-0.093107,-0.093107,-0.093107 +-0.084168,-0.084168,-0.084168,-0.084168,-0.084168,-0.084168 +-0.075663,-0.075663,-0.075663,-0.075663,-0.075663,-0.075663 +-0.067618,-0.067618,-0.067618,-0.067618,-0.067618,-0.067618 +-0.060057,-0.060057,-0.060057,-0.060057,-0.060057,-0.060057 +-0.053006,-0.053006,-0.053006,-0.053006,-0.053006,-0.053006 +-0.046489,-0.046489,-0.046489,-0.046489,-0.046489,-0.046489 +-0.040523,-0.040523,-0.040523,-0.040523,-0.040523,-0.040523 +-0.03509,-0.03509,-0.03509,-0.03509,-0.03509,-0.03509 +-0.030166,-0.030166,-0.030166,-0.030166,-0.030166,-0.030166 +-0.025726,-0.025726,-0.025726,-0.025726,-0.025726,-0.025726 +-0.021744,-0.021744,-0.021744,-0.021744,-0.021744,-0.021744 +-0.018196,-0.018196,-0.018196,-0.018196,-0.018196,-0.018196 +-0.015056,-0.015056,-0.015056,-0.015056,-0.015056,-0.015056 +-0.012301,-0.012301,-0.012301,-0.012301,-0.012301,-0.012301 +-0.009903,-0.009903,-0.009903,-0.009903,-0.009903,-0.009903 +-0.00784,-0.00784,-0.00784,-0.00784,-0.00784,-0.00784 +-0.006085,-0.006085,-0.006085,-0.006085,-0.006085,-0.006085 +-0.004613,-0.004613,-0.004613,-0.004613,-0.004613,-0.004613 +-0.003401,-0.003401,-0.003401,-0.003401,-0.003401,-0.003401 +-0.002422,-0.002422,-0.002422,-0.002422,-0.002422,-0.002422 +-0.001651,-0.001651,-0.001651,-0.001651,-0.001651,-0.001651 +-0.001065,-0.001065,-0.001065,-0.001065,-0.001065,-0.001065 +-0.000636,-0.000636,-0.000636,-0.000636,-0.000636,-0.000636 +-0.000342,-0.000342,-0.000342,-0.000342,-0.000342,-0.000342 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000033,0.000033,0.000033,0.000033,0.000033,0.000033 +0.000112,0.000112,0.000112,0.000112,0.000112,0.000112 +0.000267,0.000267,0.000267,0.000267,0.000267,0.000267 +0.000521,0.000521,0.000521,0.000521,0.000521,0.000521 +0.0009,0.0009,0.0009,0.0009,0.0009,0.0009 +0.001429,0.001429,0.001429,0.001429,0.001429,0.001429 +0.002133,0.002133,0.002133,0.002133,0.002133,0.002133 +0.003037,0.003037,0.003037,0.003037,0.003037,0.003037 +0.004167,0.004167,0.004167,0.004167,0.004167,0.004167 +0.005546,0.005546,0.005546,0.005546,0.005546,0.005546 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.009154,0.009154,0.009154,0.009154,0.009154,0.009154 +0.011433,0.011433,0.011433,0.011433,0.011433,0.011433 +0.014062,0.014062,0.014062,0.014062,0.014062,0.014062 +0.017067,0.017067,0.017067,0.017067,0.017067,0.017067 +0.020471,0.020471,0.020471,0.020471,0.020471,0.020471 +0.0243,0.0243,0.0243,0.0243,0.0243,0.0243 +0.028579,0.028579,0.028579,0.028579,0.028579,0.028579 +0.033333,0.033333,0.033333,0.033333,0.033333,0.033333 +0.038587,0.038587,0.038587,0.038587,0.038587,0.038587 +0.044367,0.044367,0.044367,0.044367,0.044367,0.044367 +0.050694,0.050694,0.050694,0.050694,0.050694,0.050694 +0.057563,0.057563,0.057563,0.057563,0.057563,0.057563 +0.064951,0.064951,0.064951,0.064951,0.064951,0.064951 +0.072832,0.072832,0.072832,0.072832,0.072832,0.072832 +0.08118,0.08118,0.08118,0.08118,0.08118,0.08118 +0.089972,0.089972,0.089972,0.089972,0.089972,0.089972 +0.099182,0.099182,0.099182,0.099182,0.099182,0.099182 +0.108785,0.108785,0.108785,0.108785,0.108785,0.108785 +0.118756,0.118756,0.118756,0.118756,0.118756,0.118756 +0.12907,0.12907,0.12907,0.12907,0.12907,0.12907 +0.139702,0.139702,0.139702,0.139702,0.139702,0.139702 +0.150626,0.150626,0.150626,0.150626,0.150626,0.150626 +0.161819,0.161819,0.161819,0.161819,0.161819,0.161819 +0.173256,0.173256,0.173256,0.173256,0.173256,0.173256 +0.18491,0.18491,0.18491,0.18491,0.18491,0.18491 +0.196757,0.196757,0.196757,0.196757,0.196757,0.196757 +0.208772,0.208772,0.208772,0.208772,0.208772,0.208772 +0.22093,0.22093,0.22093,0.22093,0.22093,0.22093 +0.233206,0.233206,0.233206,0.233206,0.233206,0.233206 +0.245575,0.245575,0.245575,0.245575,0.245575,0.245575 +0.258013,0.258013,0.258013,0.258013,0.258013,0.258013 +0.270493,0.270493,0.270493,0.270493,0.270493,0.270493 +0.282992,0.282992,0.282992,0.282992,0.282992,0.282992 +0.295492,0.295492,0.295492,0.295492,0.295492,0.295492 +0.307992,0.307992,0.307992,0.307992,0.307992,0.307992 +0.320492,0.320492,0.320492,0.320492,0.320492,0.320492 +0.332992,0.332992,0.332992,0.332992,0.332992,0.332992 +0.345492,0.345492,0.345492,0.345492,0.345492,0.345492 +0.357992,0.357992,0.357992,0.357992,0.357992,0.357992 +0.370492,0.370492,0.370492,0.370492,0.370492,0.370492 +0.382992,0.382992,0.382992,0.382992,0.382992,0.382992 +0.395492,0.395492,0.395492,0.395492,0.395492,0.395492 +0.407992,0.407992,0.407992,0.407992,0.407992,0.407992 +0.420492,0.420492,0.420492,0.420492,0.420492,0.420492 +0.432992,0.432992,0.432992,0.432992,0.432992,0.432992 +0.445492,0.445492,0.445492,0.445492,0.445492,0.445492 +0.457992,0.457992,0.457992,0.457992,0.457992,0.457992 +0.470492,0.470492,0.470492,0.470492,0.470492,0.470492 +0.482992,0.482992,0.482992,0.482992,0.482992,0.482992 +0.495492,0.495492,0.495492,0.495492,0.495492,0.495492 +0.507992,0.507992,0.507992,0.507992,0.507992,0.507992 +0.520492,0.520492,0.520492,0.520492,0.520492,0.520492 +0.532992,0.532992,0.532992,0.532992,0.532992,0.532992 +0.545492,0.545492,0.545492,0.545492,0.545492,0.545492 +0.557992,0.557992,0.557992,0.557992,0.557992,0.557992 +0.570492,0.570492,0.570492,0.570492,0.570492,0.570492 +0.582992,0.582992,0.582992,0.582992,0.582992,0.582992 +0.595492,0.595492,0.595492,0.595492,0.595492,0.595492 +0.607992,0.607992,0.607992,0.607992,0.607992,0.607992 +0.620492,0.620492,0.620492,0.620492,0.620492,0.620492 +0.632992,0.632992,0.632992,0.632992,0.632992,0.632992 +0.645492,0.645492,0.645492,0.645492,0.645492,0.645492 +0.657992,0.657992,0.657992,0.657992,0.657992,0.657992 +0.670492,0.670492,0.670492,0.670492,0.670492,0.670492 +0.682992,0.682992,0.682992,0.682992,0.682992,0.682992 +0.695492,0.695492,0.695492,0.695492,0.695492,0.695492 +0.707992,0.707992,0.707992,0.707992,0.707992,0.707992 +0.720492,0.720492,0.720492,0.720492,0.720492,0.720492 +0.732992,0.732992,0.732992,0.732992,0.732992,0.732992 +0.745492,0.745492,0.745492,0.745492,0.745492,0.745492 +0.757992,0.757992,0.757992,0.757992,0.757992,0.757992 +0.770492,0.770492,0.770492,0.770492,0.770492,0.770492 +0.782992,0.782992,0.782992,0.782992,0.782992,0.782992 +0.795492,0.795492,0.795492,0.795492,0.795492,0.795492 +0.807992,0.807992,0.807992,0.807992,0.807992,0.807992 +0.820492,0.820492,0.820492,0.820492,0.820492,0.820492 +0.832992,0.832992,0.832992,0.832992,0.832992,0.832992 +0.845492,0.845492,0.845492,0.845492,0.845492,0.845492 +0.857992,0.857992,0.857992,0.857992,0.857992,0.857992 +0.870492,0.870492,0.870492,0.870492,0.870492,0.870492 +0.882992,0.882992,0.882992,0.882992,0.882992,0.882992 +0.895492,0.895492,0.895492,0.895492,0.895492,0.895492 +0.907992,0.907992,0.907992,0.907992,0.907992,0.907992 +0.920492,0.920492,0.920492,0.920492,0.920492,0.920492 +0.932992,0.932992,0.932992,0.932992,0.932992,0.932992 +0.945492,0.945492,0.945492,0.945492,0.945492,0.945492 +0.957992,0.957992,0.957992,0.957992,0.957992,0.957992 +0.970492,0.970492,0.970492,0.970492,0.970492,0.970492 +0.982992,0.982992,0.982992,0.982992,0.982992,0.982992 +0.995492,0.995492,0.995492,0.995492,0.995492,0.995492 +1.007992,1.007992,1.007992,1.007992,1.007992,1.007992 +1.020492,1.020492,1.020492,1.020492,1.020492,1.020492 +1.032992,1.032992,1.032992,1.032992,1.032992,1.032992 +1.045492,1.045492,1.045492,1.045492,1.045492,1.045492 +1.057992,1.057992,1.057992,1.057992,1.057992,1.057992 +1.070492,1.070492,1.070492,1.070492,1.070492,1.070492 +1.082992,1.082992,1.082992,1.082992,1.082992,1.082992 +1.095492,1.095492,1.095492,1.095492,1.095492,1.095492 +1.107992,1.107992,1.107992,1.107992,1.107992,1.107992 +1.120492,1.120492,1.120492,1.120492,1.120492,1.120492 +1.132992,1.132992,1.132992,1.132992,1.132992,1.132992 +1.145492,1.145492,1.145492,1.145492,1.145492,1.145492 +1.157992,1.157992,1.157992,1.157992,1.157992,1.157992 +1.170492,1.170492,1.170492,1.170492,1.170492,1.170492 +1.182992,1.182992,1.182992,1.182992,1.182992,1.182992 +1.195492,1.195492,1.195492,1.195492,1.195492,1.195492 +1.207992,1.207992,1.207992,1.207992,1.207992,1.207992 +1.220492,1.220492,1.220492,1.220492,1.220492,1.220492 +1.232992,1.232992,1.232992,1.232992,1.232992,1.232992 +1.245492,1.245492,1.245492,1.245492,1.245492,1.245492 +1.257992,1.257992,1.257992,1.257992,1.257992,1.257992 +1.270492,1.270492,1.270492,1.270492,1.270492,1.270492 +1.282992,1.282992,1.282992,1.282992,1.282992,1.282992 +1.295492,1.295492,1.295492,1.295492,1.295492,1.295492 +1.307992,1.307992,1.307992,1.307992,1.307992,1.307992 +1.320492,1.320492,1.320492,1.320492,1.320492,1.320492 +1.332992,1.332992,1.332992,1.332992,1.332992,1.332992 +1.345492,1.345492,1.345492,1.345492,1.345492,1.345492 +1.357992,1.357992,1.357992,1.357992,1.357992,1.357992 +1.370492,1.370492,1.370492,1.370492,1.370492,1.370492 +1.382992,1.382992,1.382992,1.382992,1.382992,1.382992 +1.395492,1.395492,1.395492,1.395492,1.395492,1.395492 +1.407992,1.407992,1.407992,1.407992,1.407992,1.407992 +1.420492,1.420492,1.420492,1.420492,1.420492,1.420492 +1.432992,1.432992,1.432992,1.432992,1.432992,1.432992 +1.445492,1.445492,1.445492,1.445492,1.445492,1.445492 +1.457992,1.457992,1.457992,1.457992,1.457992,1.457992 +1.470491,1.470491,1.470491,1.470491,1.470491,1.470491 +1.482981,1.482981,1.482981,1.482981,1.482981,1.482981 +1.495436,1.495436,1.495436,1.495436,1.495436,1.495436 +1.507831,1.507831,1.507831,1.507831,1.507831,1.507831 +1.520142,1.520142,1.520142,1.520142,1.520142,1.520142 +1.532344,1.532344,1.532344,1.532344,1.532344,1.532344 +1.544411,1.544411,1.544411,1.544411,1.544411,1.544411 +1.556319,1.556319,1.556319,1.556319,1.556319,1.556319 +1.568043,1.568043,1.568043,1.568043,1.568043,1.568043 +1.579557,1.579557,1.579557,1.579557,1.579557,1.579557 +1.590837,1.590837,1.590837,1.590837,1.590837,1.590837 +1.601857,1.601857,1.601857,1.601857,1.601857,1.601857 +1.612593,1.612593,1.612593,1.612593,1.612593,1.612593 +1.62302,1.62302,1.62302,1.62302,1.62302,1.62302 +1.633112,1.633112,1.633112,1.633112,1.633112,1.633112 +1.642845,1.642845,1.642845,1.642845,1.642845,1.642845 +1.652193,1.652193,1.652193,1.652193,1.652193,1.652193 +1.661132,1.661132,1.661132,1.661132,1.661132,1.661132 +1.669637,1.669637,1.669637,1.669637,1.669637,1.669637 +1.677682,1.677682,1.677682,1.677682,1.677682,1.677682 +1.685243,1.685243,1.685243,1.685243,1.685243,1.685243 +1.692294,1.692294,1.692294,1.692294,1.692294,1.692294 +1.698811,1.698811,1.698811,1.698811,1.698811,1.698811 +1.704777,1.704777,1.704777,1.704777,1.704777,1.704777 +1.71021,1.71021,1.71021,1.71021,1.71021,1.71021 +1.715134,1.715134,1.715134,1.715134,1.715134,1.715134 +1.719574,1.719574,1.719574,1.719574,1.719574,1.719574 +1.723556,1.723556,1.723556,1.723556,1.723556,1.723556 +1.727104,1.727104,1.727104,1.727104,1.727104,1.727104 +1.730244,1.730244,1.730244,1.730244,1.730244,1.730244 +1.732999,1.732999,1.732999,1.732999,1.732999,1.732999 +1.735397,1.735397,1.735397,1.735397,1.735397,1.735397 +1.73746,1.73746,1.73746,1.73746,1.73746,1.73746 +1.739215,1.739215,1.739215,1.739215,1.739215,1.739215 +1.740687,1.740687,1.740687,1.740687,1.740687,1.740687 +1.741899,1.741899,1.741899,1.741899,1.741899,1.741899 +1.742878,1.742878,1.742878,1.742878,1.742878,1.742878 +1.743649,1.743649,1.743649,1.743649,1.743649,1.743649 +1.744235,1.744235,1.744235,1.744235,1.744235,1.744235 +1.744664,1.744664,1.744664,1.744664,1.744664,1.744664 +1.744958,1.744958,1.744958,1.744958,1.744958,1.744958 +1.745144,1.745144,1.745144,1.745144,1.745144,1.745144 +1.745246,1.745246,1.745246,1.745246,1.745246,1.745246 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745267,1.745267,1.745267,1.745267,1.745267,1.745267 +1.745188,1.745188,1.745188,1.745188,1.745188,1.745188 +1.745033,1.745033,1.745033,1.745033,1.745033,1.745033 +1.744779,1.744779,1.744779,1.744779,1.744779,1.744779 +1.7444,1.7444,1.7444,1.7444,1.7444,1.7444 +1.743871,1.743871,1.743871,1.743871,1.743871,1.743871 +1.743167,1.743167,1.743167,1.743167,1.743167,1.743167 +1.742263,1.742263,1.742263,1.742263,1.742263,1.742263 +1.741133,1.741133,1.741133,1.741133,1.741133,1.741133 +1.739754,1.739754,1.739754,1.739754,1.739754,1.739754 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.736146,1.736146,1.736146,1.736146,1.736146,1.736146 +1.733867,1.733867,1.733867,1.733867,1.733867,1.733867 +1.731238,1.731238,1.731238,1.731238,1.731238,1.731238 +1.728233,1.728233,1.728233,1.728233,1.728233,1.728233 +1.724829,1.724829,1.724829,1.724829,1.724829,1.724829 +1.721,1.721,1.721,1.721,1.721,1.721 +1.716721,1.716721,1.716721,1.716721,1.716721,1.716721 +1.711967,1.711967,1.711967,1.711967,1.711967,1.711967 +1.706713,1.706713,1.706713,1.706713,1.706713,1.706713 +1.700933,1.700933,1.700933,1.700933,1.700933,1.700933 +1.694606,1.694606,1.694606,1.694606,1.694606,1.694606 +1.687737,1.687737,1.687737,1.687737,1.687737,1.687737 +1.680349,1.680349,1.680349,1.680349,1.680349,1.680349 +1.672468,1.672468,1.672468,1.672468,1.672468,1.672468 +1.66412,1.66412,1.66412,1.66412,1.66412,1.66412 +1.655328,1.655328,1.655328,1.655328,1.655328,1.655328 +1.646118,1.646118,1.646118,1.646118,1.646118,1.646118 +1.636515,1.636515,1.636515,1.636515,1.636515,1.636515 +1.626544,1.626544,1.626544,1.626544,1.626544,1.626544 +1.61623,1.61623,1.61623,1.61623,1.61623,1.61623 +1.605598,1.605598,1.605598,1.605598,1.605598,1.605598 +1.594674,1.594674,1.594674,1.594674,1.594674,1.594674 +1.583481,1.583481,1.583481,1.583481,1.583481,1.583481 +1.572044,1.572044,1.572044,1.572044,1.572044,1.572044 +1.56039,1.56039,1.56039,1.56039,1.56039,1.56039 +1.548543,1.548543,1.548543,1.548543,1.548543,1.548543 +1.536528,1.536528,1.536528,1.536528,1.536528,1.536528 +1.52437,1.52437,1.52437,1.52437,1.52437,1.52437 +1.512094,1.512094,1.512094,1.512094,1.512094,1.512094 +1.499725,1.499725,1.499725,1.499725,1.499725,1.499725 +1.487287,1.487287,1.487287,1.487287,1.487287,1.487287 +1.474807,1.474807,1.474807,1.474807,1.474807,1.474807 +1.462308,1.462308,1.462308,1.462308,1.462308,1.462308 +1.449808,1.449808,1.449808,1.449808,1.449808,1.449808 +1.437308,1.437308,1.437308,1.437308,1.437308,1.437308 +1.424808,1.424808,1.424808,1.424808,1.424808,1.424808 +1.412308,1.412308,1.412308,1.412308,1.412308,1.412308 +1.399808,1.399808,1.399808,1.399808,1.399808,1.399808 +1.387308,1.387308,1.387308,1.387308,1.387308,1.387308 +1.374808,1.374808,1.374808,1.374808,1.374808,1.374808 +1.362308,1.362308,1.362308,1.362308,1.362308,1.362308 +1.349808,1.349808,1.349808,1.349808,1.349808,1.349808 +1.337308,1.337308,1.337308,1.337308,1.337308,1.337308 +1.324808,1.324808,1.324808,1.324808,1.324808,1.324808 +1.312308,1.312308,1.312308,1.312308,1.312308,1.312308 +1.299808,1.299808,1.299808,1.299808,1.299808,1.299808 +1.287308,1.287308,1.287308,1.287308,1.287308,1.287308 +1.274808,1.274808,1.274808,1.274808,1.274808,1.274808 +1.262308,1.262308,1.262308,1.262308,1.262308,1.262308 +1.249808,1.249808,1.249808,1.249808,1.249808,1.249808 +1.237308,1.237308,1.237308,1.237308,1.237308,1.237308 +1.224808,1.224808,1.224808,1.224808,1.224808,1.224808 +1.212308,1.212308,1.212308,1.212308,1.212308,1.212308 +1.199808,1.199808,1.199808,1.199808,1.199808,1.199808 +1.187308,1.187308,1.187308,1.187308,1.187308,1.187308 +1.174808,1.174808,1.174808,1.174808,1.174808,1.174808 +1.162308,1.162308,1.162308,1.162308,1.162308,1.162308 +1.149808,1.149808,1.149808,1.149808,1.149808,1.149808 +1.137308,1.137308,1.137308,1.137308,1.137308,1.137308 +1.124808,1.124808,1.124808,1.124808,1.124808,1.124808 +1.112308,1.112308,1.112308,1.112308,1.112308,1.112308 +1.099808,1.099808,1.099808,1.099808,1.099808,1.099808 +1.087308,1.087308,1.087308,1.087308,1.087308,1.087308 +1.074808,1.074808,1.074808,1.074808,1.074808,1.074808 +1.062308,1.062308,1.062308,1.062308,1.062308,1.062308 +1.049808,1.049808,1.049808,1.049808,1.049808,1.049808 +1.037308,1.037308,1.037308,1.037308,1.037308,1.037308 +1.024808,1.024808,1.024808,1.024808,1.024808,1.024808 +1.012308,1.012308,1.012308,1.012308,1.012308,1.012308 +0.999808,0.999808,0.999808,0.999808,0.999808,0.999808 +0.987308,0.987308,0.987308,0.987308,0.987308,0.987308 +0.974808,0.974808,0.974808,0.974808,0.974808,0.974808 +0.962308,0.962308,0.962308,0.962308,0.962308,0.962308 +0.949808,0.949808,0.949808,0.949808,0.949808,0.949808 +0.937308,0.937308,0.937308,0.937308,0.937308,0.937308 +0.924808,0.924808,0.924808,0.924808,0.924808,0.924808 +0.912308,0.912308,0.912308,0.912308,0.912308,0.912308 +0.899808,0.899808,0.899808,0.899808,0.899808,0.899808 +0.887308,0.887308,0.887308,0.887308,0.887308,0.887308 +0.874808,0.874808,0.874808,0.874808,0.874808,0.874808 +0.862308,0.862308,0.862308,0.862308,0.862308,0.862308 +0.849808,0.849808,0.849808,0.849808,0.849808,0.849808 +0.837308,0.837308,0.837308,0.837308,0.837308,0.837308 +0.824808,0.824808,0.824808,0.824808,0.824808,0.824808 +0.812308,0.812308,0.812308,0.812308,0.812308,0.812308 +0.799808,0.799808,0.799808,0.799808,0.799808,0.799808 +0.787308,0.787308,0.787308,0.787308,0.787308,0.787308 +0.774808,0.774808,0.774808,0.774808,0.774808,0.774808 +0.762308,0.762308,0.762308,0.762308,0.762308,0.762308 +0.749808,0.749808,0.749808,0.749808,0.749808,0.749808 +0.737308,0.737308,0.737308,0.737308,0.737308,0.737308 +0.724808,0.724808,0.724808,0.724808,0.724808,0.724808 +0.712308,0.712308,0.712308,0.712308,0.712308,0.712308 +0.699808,0.699808,0.699808,0.699808,0.699808,0.699808 +0.687308,0.687308,0.687308,0.687308,0.687308,0.687308 +0.674808,0.674808,0.674808,0.674808,0.674808,0.674808 +0.662308,0.662308,0.662308,0.662308,0.662308,0.662308 +0.649808,0.649808,0.649808,0.649808,0.649808,0.649808 +0.637308,0.637308,0.637308,0.637308,0.637308,0.637308 +0.624808,0.624808,0.624808,0.624808,0.624808,0.624808 +0.612308,0.612308,0.612308,0.612308,0.612308,0.612308 +0.599808,0.599808,0.599808,0.599808,0.599808,0.599808 +0.587308,0.587308,0.587308,0.587308,0.587308,0.587308 +0.574808,0.574808,0.574808,0.574808,0.574808,0.574808 +0.562308,0.562308,0.562308,0.562308,0.562308,0.562308 +0.549808,0.549808,0.549808,0.549808,0.549808,0.549808 +0.537308,0.537308,0.537308,0.537308,0.537308,0.537308 +0.524808,0.524808,0.524808,0.524808,0.524808,0.524808 +0.512308,0.512308,0.512308,0.512308,0.512308,0.512308 +0.499808,0.499808,0.499808,0.499808,0.499808,0.499808 +0.487308,0.487308,0.487308,0.487308,0.487308,0.487308 +0.474808,0.474808,0.474808,0.474808,0.474808,0.474808 +0.462308,0.462308,0.462308,0.462308,0.462308,0.462308 +0.449808,0.449808,0.449808,0.449808,0.449808,0.449808 +0.437308,0.437308,0.437308,0.437308,0.437308,0.437308 +0.424808,0.424808,0.424808,0.424808,0.424808,0.424808 +0.412308,0.412308,0.412308,0.412308,0.412308,0.412308 +0.399808,0.399808,0.399808,0.399808,0.399808,0.399808 +0.387308,0.387308,0.387308,0.387308,0.387308,0.387308 +0.374808,0.374808,0.374808,0.374808,0.374808,0.374808 +0.362308,0.362308,0.362308,0.362308,0.362308,0.362308 +0.349808,0.349808,0.349808,0.349808,0.349808,0.349808 +0.337308,0.337308,0.337308,0.337308,0.337308,0.337308 +0.324808,0.324808,0.324808,0.324808,0.324808,0.324808 +0.312308,0.312308,0.312308,0.312308,0.312308,0.312308 +0.299808,0.299808,0.299808,0.299808,0.299808,0.299808 +0.287308,0.287308,0.287308,0.287308,0.287308,0.287308 +0.274809,0.274809,0.274809,0.274809,0.274809,0.274809 +0.262319,0.262319,0.262319,0.262319,0.262319,0.262319 +0.249864,0.249864,0.249864,0.249864,0.249864,0.249864 +0.237469,0.237469,0.237469,0.237469,0.237469,0.237469 +0.225158,0.225158,0.225158,0.225158,0.225158,0.225158 +0.212956,0.212956,0.212956,0.212956,0.212956,0.212956 +0.200889,0.200889,0.200889,0.200889,0.200889,0.200889 +0.188981,0.188981,0.188981,0.188981,0.188981,0.188981 +0.177257,0.177257,0.177257,0.177257,0.177257,0.177257 +0.165743,0.165743,0.165743,0.165743,0.165743,0.165743 +0.154463,0.154463,0.154463,0.154463,0.154463,0.154463 +0.143443,0.143443,0.143443,0.143443,0.143443,0.143443 +0.132707,0.132707,0.132707,0.132707,0.132707,0.132707 +0.12228,0.12228,0.12228,0.12228,0.12228,0.12228 +0.112188,0.112188,0.112188,0.112188,0.112188,0.112188 +0.102455,0.102455,0.102455,0.102455,0.102455,0.102455 +0.093107,0.093107,0.093107,0.093107,0.093107,0.093107 +0.084168,0.084168,0.084168,0.084168,0.084168,0.084168 +0.075663,0.075663,0.075663,0.075663,0.075663,0.075663 +0.067618,0.067618,0.067618,0.067618,0.067618,0.067618 +0.060057,0.060057,0.060057,0.060057,0.060057,0.060057 +0.053006,0.053006,0.053006,0.053006,0.053006,0.053006 +0.046489,0.046489,0.046489,0.046489,0.046489,0.046489 +0.040523,0.040523,0.040523,0.040523,0.040523,0.040523 +0.03509,0.03509,0.03509,0.03509,0.03509,0.03509 +0.030166,0.030166,0.030166,0.030166,0.030166,0.030166 +0.025726,0.025726,0.025726,0.025726,0.025726,0.025726 +0.021744,0.021744,0.021744,0.021744,0.021744,0.021744 +0.018196,0.018196,0.018196,0.018196,0.018196,0.018196 +0.015056,0.015056,0.015056,0.015056,0.015056,0.015056 +0.012301,0.012301,0.012301,0.012301,0.012301,0.012301 +0.009903,0.009903,0.009903,0.009903,0.009903,0.009903 +0.00784,0.00784,0.00784,0.00784,0.00784,0.00784 +0.006085,0.006085,0.006085,0.006085,0.006085,0.006085 +0.004613,0.004613,0.004613,0.004613,0.004613,0.004613 +0.003401,0.003401,0.003401,0.003401,0.003401,0.003401 +0.002422,0.002422,0.002422,0.002422,0.002422,0.002422 +0.001651,0.001651,0.001651,0.001651,0.001651,0.001651 +0.001065,0.001065,0.001065,0.001065,0.001065,0.001065 +0.000636,0.000636,0.000636,0.000636,0.000636,0.000636 +0.000342,0.000342,0.000342,0.000342,0.000342,0.000342 +0.000156,0.000156,0.000156,0.000156,0.000156,0.000156 +0.000054,0.000054,0.000054,0.000054,0.000054,0.000054 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000267,-0.000267,-0.000267,-0.000267,-0.000267,-0.000267 +-0.000521,-0.000521,-0.000521,-0.000521,-0.000521,-0.000521 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001429,-0.001429,-0.001429,-0.001429,-0.001429,-0.001429 +-0.002133,-0.002133,-0.002133,-0.002133,-0.002133,-0.002133 +-0.003037,-0.003037,-0.003037,-0.003037,-0.003037,-0.003037 +-0.004167,-0.004167,-0.004167,-0.004167,-0.004167,-0.004167 +-0.005546,-0.005546,-0.005546,-0.005546,-0.005546,-0.005546 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.009154,-0.009154,-0.009154,-0.009154,-0.009154,-0.009154 +-0.011433,-0.011433,-0.011433,-0.011433,-0.011433,-0.011433 +-0.014062,-0.014062,-0.014062,-0.014062,-0.014062,-0.014062 +-0.017067,-0.017067,-0.017067,-0.017067,-0.017067,-0.017067 +-0.020471,-0.020471,-0.020471,-0.020471,-0.020471,-0.020471 +-0.0243,-0.0243,-0.0243,-0.0243,-0.0243,-0.0243 +-0.028579,-0.028579,-0.028579,-0.028579,-0.028579,-0.028579 +-0.033333,-0.033333,-0.033333,-0.033333,-0.033333,-0.033333 +-0.038587,-0.038587,-0.038587,-0.038587,-0.038587,-0.038587 +-0.044367,-0.044367,-0.044367,-0.044367,-0.044367,-0.044367 +-0.050694,-0.050694,-0.050694,-0.050694,-0.050694,-0.050694 +-0.057563,-0.057563,-0.057563,-0.057563,-0.057563,-0.057563 +-0.064951,-0.064951,-0.064951,-0.064951,-0.064951,-0.064951 +-0.072832,-0.072832,-0.072832,-0.072832,-0.072832,-0.072832 +-0.08118,-0.08118,-0.08118,-0.08118,-0.08118,-0.08118 +-0.089972,-0.089972,-0.089972,-0.089972,-0.089972,-0.089972 +-0.099182,-0.099182,-0.099182,-0.099182,-0.099182,-0.099182 +-0.108785,-0.108785,-0.108785,-0.108785,-0.108785,-0.108785 +-0.118756,-0.118756,-0.118756,-0.118756,-0.118756,-0.118756 +-0.12907,-0.12907,-0.12907,-0.12907,-0.12907,-0.12907 +-0.139702,-0.139702,-0.139702,-0.139702,-0.139702,-0.139702 +-0.150626,-0.150626,-0.150626,-0.150626,-0.150626,-0.150626 +-0.161819,-0.161819,-0.161819,-0.161819,-0.161819,-0.161819 +-0.173256,-0.173256,-0.173256,-0.173256,-0.173256,-0.173256 +-0.18491,-0.18491,-0.18491,-0.18491,-0.18491,-0.18491 +-0.196757,-0.196757,-0.196757,-0.196757,-0.196757,-0.196757 +-0.208772,-0.208772,-0.208772,-0.208772,-0.208772,-0.208772 +-0.22093,-0.22093,-0.22093,-0.22093,-0.22093,-0.22093 +-0.233206,-0.233206,-0.233206,-0.233206,-0.233206,-0.233206 +-0.245575,-0.245575,-0.245575,-0.245575,-0.245575,-0.245575 +-0.258013,-0.258013,-0.258013,-0.258013,-0.258013,-0.258013 +-0.270493,-0.270493,-0.270493,-0.270493,-0.270493,-0.270493 +-0.282992,-0.282992,-0.282992,-0.282992,-0.282992,-0.282992 +-0.295492,-0.295492,-0.295492,-0.295492,-0.295492,-0.295492 +-0.307992,-0.307992,-0.307992,-0.307992,-0.307992,-0.307992 +-0.320492,-0.320492,-0.320492,-0.320492,-0.320492,-0.320492 +-0.332992,-0.332992,-0.332992,-0.332992,-0.332992,-0.332992 +-0.345492,-0.345492,-0.345492,-0.345492,-0.345492,-0.345492 +-0.357992,-0.357992,-0.357992,-0.357992,-0.357992,-0.357992 +-0.370492,-0.370492,-0.370492,-0.370492,-0.370492,-0.370492 +-0.382992,-0.382992,-0.382992,-0.382992,-0.382992,-0.382992 +-0.395492,-0.395492,-0.395492,-0.395492,-0.395492,-0.395492 +-0.407992,-0.407992,-0.407992,-0.407992,-0.407992,-0.407992 +-0.420492,-0.420492,-0.420492,-0.420492,-0.420492,-0.420492 +-0.432992,-0.432992,-0.432992,-0.432992,-0.432992,-0.432992 +-0.445492,-0.445492,-0.445492,-0.445492,-0.445492,-0.445492 +-0.457992,-0.457992,-0.457992,-0.457992,-0.457992,-0.457992 +-0.470492,-0.470492,-0.470492,-0.470492,-0.470492,-0.470492 +-0.482992,-0.482992,-0.482992,-0.482992,-0.482992,-0.482992 +-0.495492,-0.495492,-0.495492,-0.495492,-0.495492,-0.495492 +-0.507992,-0.507992,-0.507992,-0.507992,-0.507992,-0.507992 +-0.520492,-0.520492,-0.520492,-0.520492,-0.520492,-0.520492 +-0.532992,-0.532992,-0.532992,-0.532992,-0.532992,-0.532992 +-0.545492,-0.545492,-0.545492,-0.545492,-0.545492,-0.545492 +-0.557992,-0.557992,-0.557992,-0.557992,-0.557992,-0.557992 +-0.570492,-0.570492,-0.570492,-0.570492,-0.570492,-0.570492 +-0.582992,-0.582992,-0.582992,-0.582992,-0.582992,-0.582992 +-0.595492,-0.595492,-0.595492,-0.595492,-0.595492,-0.595492 +-0.607992,-0.607992,-0.607992,-0.607992,-0.607992,-0.607992 +-0.620492,-0.620492,-0.620492,-0.620492,-0.620492,-0.620492 +-0.632992,-0.632992,-0.632992,-0.632992,-0.632992,-0.632992 +-0.645492,-0.645492,-0.645492,-0.645492,-0.645492,-0.645492 +-0.657992,-0.657992,-0.657992,-0.657992,-0.657992,-0.657992 +-0.670492,-0.670492,-0.670492,-0.670492,-0.670492,-0.670492 +-0.682992,-0.682992,-0.682992,-0.682992,-0.682992,-0.682992 +-0.695492,-0.695492,-0.695492,-0.695492,-0.695492,-0.695492 +-0.707992,-0.707992,-0.707992,-0.707992,-0.707992,-0.707992 +-0.720492,-0.720492,-0.720492,-0.720492,-0.720492,-0.720492 +-0.732992,-0.732992,-0.732992,-0.732992,-0.732992,-0.732992 +-0.745492,-0.745492,-0.745492,-0.745492,-0.745492,-0.745492 +-0.757992,-0.757992,-0.757992,-0.757992,-0.757992,-0.757992 +-0.770492,-0.770492,-0.770492,-0.770492,-0.770492,-0.770492 +-0.782992,-0.782992,-0.782992,-0.782992,-0.782992,-0.782992 +-0.795492,-0.795492,-0.795492,-0.795492,-0.795492,-0.795492 +-0.807992,-0.807992,-0.807992,-0.807992,-0.807992,-0.807992 +-0.820492,-0.820492,-0.820492,-0.820492,-0.820492,-0.820492 +-0.832992,-0.832992,-0.832992,-0.832992,-0.832992,-0.832992 +-0.845492,-0.845492,-0.845492,-0.845492,-0.845492,-0.845492 +-0.857992,-0.857992,-0.857992,-0.857992,-0.857992,-0.857992 +-0.870492,-0.870492,-0.870492,-0.870492,-0.870492,-0.870492 +-0.882992,-0.882992,-0.882992,-0.882992,-0.882992,-0.882992 +-0.895492,-0.895492,-0.895492,-0.895492,-0.895492,-0.895492 +-0.907992,-0.907992,-0.907992,-0.907992,-0.907992,-0.907992 +-0.920492,-0.920492,-0.920492,-0.920492,-0.920492,-0.920492 +-0.932992,-0.932992,-0.932992,-0.932992,-0.932992,-0.932992 +-0.945492,-0.945492,-0.945492,-0.945492,-0.945492,-0.945492 +-0.957992,-0.957992,-0.957992,-0.957992,-0.957992,-0.957992 +-0.970492,-0.970492,-0.970492,-0.970492,-0.970492,-0.970492 +-0.982992,-0.982992,-0.982992,-0.982992,-0.982992,-0.982992 +-0.995492,-0.995492,-0.995492,-0.995492,-0.995492,-0.995492 +-1.007992,-1.007992,-1.007992,-1.007992,-1.007992,-1.007992 +-1.020492,-1.020492,-1.020492,-1.020492,-1.020492,-1.020492 +-1.032992,-1.032992,-1.032992,-1.032992,-1.032992,-1.032992 +-1.045492,-1.045492,-1.045492,-1.045492,-1.045492,-1.045492 +-1.057992,-1.057992,-1.057992,-1.057992,-1.057992,-1.057992 +-1.070492,-1.070492,-1.070492,-1.070492,-1.070492,-1.070492 +-1.082992,-1.082992,-1.082992,-1.082992,-1.082992,-1.082992 +-1.095492,-1.095492,-1.095492,-1.095492,-1.095492,-1.095492 +-1.107992,-1.107992,-1.107992,-1.107992,-1.107992,-1.107992 +-1.120492,-1.120492,-1.120492,-1.120492,-1.120492,-1.120492 +-1.132992,-1.132992,-1.132992,-1.132992,-1.132992,-1.132992 +-1.145492,-1.145492,-1.145492,-1.145492,-1.145492,-1.145492 +-1.157992,-1.157992,-1.157992,-1.157992,-1.157992,-1.157992 +-1.170492,-1.170492,-1.170492,-1.170492,-1.170492,-1.170492 +-1.182992,-1.182992,-1.182992,-1.182992,-1.182992,-1.182992 +-1.195492,-1.195492,-1.195492,-1.195492,-1.195492,-1.195492 +-1.207992,-1.207992,-1.207992,-1.207992,-1.207992,-1.207992 +-1.220492,-1.220492,-1.220492,-1.220492,-1.220492,-1.220492 +-1.232992,-1.232992,-1.232992,-1.232992,-1.232992,-1.232992 +-1.245492,-1.245492,-1.245492,-1.245492,-1.245492,-1.245492 +-1.257992,-1.257992,-1.257992,-1.257992,-1.257992,-1.257992 +-1.270492,-1.270492,-1.270492,-1.270492,-1.270492,-1.270492 +-1.282992,-1.282992,-1.282992,-1.282992,-1.282992,-1.282992 +-1.295492,-1.295492,-1.295492,-1.295492,-1.295492,-1.295492 +-1.307992,-1.307992,-1.307992,-1.307992,-1.307992,-1.307992 +-1.320492,-1.320492,-1.320492,-1.320492,-1.320492,-1.320492 +-1.332992,-1.332992,-1.332992,-1.332992,-1.332992,-1.332992 +-1.345492,-1.345492,-1.345492,-1.345492,-1.345492,-1.345492 +-1.357992,-1.357992,-1.357992,-1.357992,-1.357992,-1.357992 +-1.370492,-1.370492,-1.370492,-1.370492,-1.370492,-1.370492 +-1.382992,-1.382992,-1.382992,-1.382992,-1.382992,-1.382992 +-1.395492,-1.395492,-1.395492,-1.395492,-1.395492,-1.395492 +-1.407992,-1.407992,-1.407992,-1.407992,-1.407992,-1.407992 +-1.420492,-1.420492,-1.420492,-1.420492,-1.420492,-1.420492 +-1.432992,-1.432992,-1.432992,-1.432992,-1.432992,-1.432992 +-1.445492,-1.445492,-1.445492,-1.445492,-1.445492,-1.445492 +-1.457992,-1.457992,-1.457992,-1.457992,-1.457992,-1.457992 +-1.470491,-1.470491,-1.470491,-1.470491,-1.470491,-1.470491 +-1.482981,-1.482981,-1.482981,-1.482981,-1.482981,-1.482981 +-1.495436,-1.495436,-1.495436,-1.495436,-1.495436,-1.495436 +-1.507831,-1.507831,-1.507831,-1.507831,-1.507831,-1.507831 +-1.520142,-1.520142,-1.520142,-1.520142,-1.520142,-1.520142 +-1.532344,-1.532344,-1.532344,-1.532344,-1.532344,-1.532344 +-1.544411,-1.544411,-1.544411,-1.544411,-1.544411,-1.544411 +-1.556319,-1.556319,-1.556319,-1.556319,-1.556319,-1.556319 +-1.568043,-1.568043,-1.568043,-1.568043,-1.568043,-1.568043 +-1.579557,-1.579557,-1.579557,-1.579557,-1.579557,-1.579557 +-1.590837,-1.590837,-1.590837,-1.590837,-1.590837,-1.590837 +-1.601857,-1.601857,-1.601857,-1.601857,-1.601857,-1.601857 +-1.612593,-1.612593,-1.612593,-1.612593,-1.612593,-1.612593 +-1.62302,-1.62302,-1.62302,-1.62302,-1.62302,-1.62302 +-1.633112,-1.633112,-1.633112,-1.633112,-1.633112,-1.633112 +-1.642845,-1.642845,-1.642845,-1.642845,-1.642845,-1.642845 +-1.652193,-1.652193,-1.652193,-1.652193,-1.652193,-1.652193 +-1.661132,-1.661132,-1.661132,-1.661132,-1.661132,-1.661132 +-1.669637,-1.669637,-1.669637,-1.669637,-1.669637,-1.669637 +-1.677682,-1.677682,-1.677682,-1.677682,-1.677682,-1.677682 +-1.685243,-1.685243,-1.685243,-1.685243,-1.685243,-1.685243 +-1.692294,-1.692294,-1.692294,-1.692294,-1.692294,-1.692294 +-1.698811,-1.698811,-1.698811,-1.698811,-1.698811,-1.698811 +-1.704777,-1.704777,-1.704777,-1.704777,-1.704777,-1.704777 +-1.71021,-1.71021,-1.71021,-1.71021,-1.71021,-1.71021 +-1.715134,-1.715134,-1.715134,-1.715134,-1.715134,-1.715134 +-1.719574,-1.719574,-1.719574,-1.719574,-1.719574,-1.719574 +-1.723556,-1.723556,-1.723556,-1.723556,-1.723556,-1.723556 +-1.727104,-1.727104,-1.727104,-1.727104,-1.727104,-1.727104 +-1.730244,-1.730244,-1.730244,-1.730244,-1.730244,-1.730244 +-1.732999,-1.732999,-1.732999,-1.732999,-1.732999,-1.732999 +-1.735397,-1.735397,-1.735397,-1.735397,-1.735397,-1.735397 +-1.73746,-1.73746,-1.73746,-1.73746,-1.73746,-1.73746 +-1.739215,-1.739215,-1.739215,-1.739215,-1.739215,-1.739215 +-1.740687,-1.740687,-1.740687,-1.740687,-1.740687,-1.740687 +-1.741899,-1.741899,-1.741899,-1.741899,-1.741899,-1.741899 +-1.742878,-1.742878,-1.742878,-1.742878,-1.742878,-1.742878 +-1.743649,-1.743649,-1.743649,-1.743649,-1.743649,-1.743649 +-1.744235,-1.744235,-1.744235,-1.744235,-1.744235,-1.744235 +-1.744664,-1.744664,-1.744664,-1.744664,-1.744664,-1.744664 +-1.744958,-1.744958,-1.744958,-1.744958,-1.744958,-1.744958 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745033,-1.745033,-1.745033,-1.745033,-1.745033,-1.745033 +-1.744779,-1.744779,-1.744779,-1.744779,-1.744779,-1.744779 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743871,-1.743871,-1.743871,-1.743871,-1.743871,-1.743871 +-1.743167,-1.743167,-1.743167,-1.743167,-1.743167,-1.743167 +-1.742263,-1.742263,-1.742263,-1.742263,-1.742263,-1.742263 +-1.741133,-1.741133,-1.741133,-1.741133,-1.741133,-1.741133 +-1.739754,-1.739754,-1.739754,-1.739754,-1.739754,-1.739754 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.736146,-1.736146,-1.736146,-1.736146,-1.736146,-1.736146 +-1.733867,-1.733867,-1.733867,-1.733867,-1.733867,-1.733867 +-1.731238,-1.731238,-1.731238,-1.731238,-1.731238,-1.731238 +-1.728233,-1.728233,-1.728233,-1.728233,-1.728233,-1.728233 +-1.724829,-1.724829,-1.724829,-1.724829,-1.724829,-1.724829 +-1.721,-1.721,-1.721,-1.721,-1.721,-1.721 +-1.716721,-1.716721,-1.716721,-1.716721,-1.716721,-1.716721 +-1.711967,-1.711967,-1.711967,-1.711967,-1.711967,-1.711967 +-1.706713,-1.706713,-1.706713,-1.706713,-1.706713,-1.706713 +-1.700933,-1.700933,-1.700933,-1.700933,-1.700933,-1.700933 +-1.694606,-1.694606,-1.694606,-1.694606,-1.694606,-1.694606 +-1.687737,-1.687737,-1.687737,-1.687737,-1.687737,-1.687737 +-1.680349,-1.680349,-1.680349,-1.680349,-1.680349,-1.680349 +-1.672468,-1.672468,-1.672468,-1.672468,-1.672468,-1.672468 +-1.66412,-1.66412,-1.66412,-1.66412,-1.66412,-1.66412 +-1.655328,-1.655328,-1.655328,-1.655328,-1.655328,-1.655328 +-1.646118,-1.646118,-1.646118,-1.646118,-1.646118,-1.646118 +-1.636515,-1.636515,-1.636515,-1.636515,-1.636515,-1.636515 +-1.626544,-1.626544,-1.626544,-1.626544,-1.626544,-1.626544 +-1.61623,-1.61623,-1.61623,-1.61623,-1.61623,-1.61623 +-1.605598,-1.605598,-1.605598,-1.605598,-1.605598,-1.605598 +-1.594674,-1.594674,-1.594674,-1.594674,-1.594674,-1.594674 +-1.583481,-1.583481,-1.583481,-1.583481,-1.583481,-1.583481 +-1.572044,-1.572044,-1.572044,-1.572044,-1.572044,-1.572044 +-1.56039,-1.56039,-1.56039,-1.56039,-1.56039,-1.56039 +-1.548543,-1.548543,-1.548543,-1.548543,-1.548543,-1.548543 +-1.536528,-1.536528,-1.536528,-1.536528,-1.536528,-1.536528 +-1.52437,-1.52437,-1.52437,-1.52437,-1.52437,-1.52437 +-1.512094,-1.512094,-1.512094,-1.512094,-1.512094,-1.512094 +-1.499725,-1.499725,-1.499725,-1.499725,-1.499725,-1.499725 +-1.487287,-1.487287,-1.487287,-1.487287,-1.487287,-1.487287 +-1.474807,-1.474807,-1.474807,-1.474807,-1.474807,-1.474807 +-1.462308,-1.462308,-1.462308,-1.462308,-1.462308,-1.462308 +-1.449808,-1.449808,-1.449808,-1.449808,-1.449808,-1.449808 +-1.437308,-1.437308,-1.437308,-1.437308,-1.437308,-1.437308 +-1.424808,-1.424808,-1.424808,-1.424808,-1.424808,-1.424808 +-1.412308,-1.412308,-1.412308,-1.412308,-1.412308,-1.412308 +-1.399808,-1.399808,-1.399808,-1.399808,-1.399808,-1.399808 +-1.387308,-1.387308,-1.387308,-1.387308,-1.387308,-1.387308 +-1.374808,-1.374808,-1.374808,-1.374808,-1.374808,-1.374808 +-1.362308,-1.362308,-1.362308,-1.362308,-1.362308,-1.362308 +-1.349808,-1.349808,-1.349808,-1.349808,-1.349808,-1.349808 +-1.337308,-1.337308,-1.337308,-1.337308,-1.337308,-1.337308 +-1.324808,-1.324808,-1.324808,-1.324808,-1.324808,-1.324808 +-1.312308,-1.312308,-1.312308,-1.312308,-1.312308,-1.312308 +-1.299808,-1.299808,-1.299808,-1.299808,-1.299808,-1.299808 +-1.287308,-1.287308,-1.287308,-1.287308,-1.287308,-1.287308 +-1.274808,-1.274808,-1.274808,-1.274808,-1.274808,-1.274808 +-1.262308,-1.262308,-1.262308,-1.262308,-1.262308,-1.262308 +-1.249808,-1.249808,-1.249808,-1.249808,-1.249808,-1.249808 +-1.237308,-1.237308,-1.237308,-1.237308,-1.237308,-1.237308 +-1.224808,-1.224808,-1.224808,-1.224808,-1.224808,-1.224808 +-1.212308,-1.212308,-1.212308,-1.212308,-1.212308,-1.212308 +-1.199808,-1.199808,-1.199808,-1.199808,-1.199808,-1.199808 +-1.187308,-1.187308,-1.187308,-1.187308,-1.187308,-1.187308 +-1.174808,-1.174808,-1.174808,-1.174808,-1.174808,-1.174808 +-1.162308,-1.162308,-1.162308,-1.162308,-1.162308,-1.162308 +-1.149808,-1.149808,-1.149808,-1.149808,-1.149808,-1.149808 +-1.137308,-1.137308,-1.137308,-1.137308,-1.137308,-1.137308 +-1.124808,-1.124808,-1.124808,-1.124808,-1.124808,-1.124808 +-1.112308,-1.112308,-1.112308,-1.112308,-1.112308,-1.112308 +-1.099808,-1.099808,-1.099808,-1.099808,-1.099808,-1.099808 +-1.087308,-1.087308,-1.087308,-1.087308,-1.087308,-1.087308 +-1.074808,-1.074808,-1.074808,-1.074808,-1.074808,-1.074808 +-1.062308,-1.062308,-1.062308,-1.062308,-1.062308,-1.062308 +-1.049808,-1.049808,-1.049808,-1.049808,-1.049808,-1.049808 +-1.037308,-1.037308,-1.037308,-1.037308,-1.037308,-1.037308 +-1.024808,-1.024808,-1.024808,-1.024808,-1.024808,-1.024808 +-1.012308,-1.012308,-1.012308,-1.012308,-1.012308,-1.012308 +-0.999808,-0.999808,-0.999808,-0.999808,-0.999808,-0.999808 +-0.987308,-0.987308,-0.987308,-0.987308,-0.987308,-0.987308 +-0.974808,-0.974808,-0.974808,-0.974808,-0.974808,-0.974808 +-0.962308,-0.962308,-0.962308,-0.962308,-0.962308,-0.962308 +-0.949808,-0.949808,-0.949808,-0.949808,-0.949808,-0.949808 +-0.937308,-0.937308,-0.937308,-0.937308,-0.937308,-0.937308 +-0.924808,-0.924808,-0.924808,-0.924808,-0.924808,-0.924808 +-0.912308,-0.912308,-0.912308,-0.912308,-0.912308,-0.912308 +-0.899808,-0.899808,-0.899808,-0.899808,-0.899808,-0.899808 +-0.887308,-0.887308,-0.887308,-0.887308,-0.887308,-0.887308 +-0.874808,-0.874808,-0.874808,-0.874808,-0.874808,-0.874808 +-0.862308,-0.862308,-0.862308,-0.862308,-0.862308,-0.862308 +-0.849808,-0.849808,-0.849808,-0.849808,-0.849808,-0.849808 +-0.837308,-0.837308,-0.837308,-0.837308,-0.837308,-0.837308 +-0.824808,-0.824808,-0.824808,-0.824808,-0.824808,-0.824808 +-0.812308,-0.812308,-0.812308,-0.812308,-0.812308,-0.812308 +-0.799808,-0.799808,-0.799808,-0.799808,-0.799808,-0.799808 +-0.787308,-0.787308,-0.787308,-0.787308,-0.787308,-0.787308 +-0.774808,-0.774808,-0.774808,-0.774808,-0.774808,-0.774808 +-0.762308,-0.762308,-0.762308,-0.762308,-0.762308,-0.762308 +-0.749808,-0.749808,-0.749808,-0.749808,-0.749808,-0.749808 +-0.737308,-0.737308,-0.737308,-0.737308,-0.737308,-0.737308 +-0.724808,-0.724808,-0.724808,-0.724808,-0.724808,-0.724808 +-0.712308,-0.712308,-0.712308,-0.712308,-0.712308,-0.712308 +-0.699808,-0.699808,-0.699808,-0.699808,-0.699808,-0.699808 +-0.687308,-0.687308,-0.687308,-0.687308,-0.687308,-0.687308 +-0.674808,-0.674808,-0.674808,-0.674808,-0.674808,-0.674808 +-0.662308,-0.662308,-0.662308,-0.662308,-0.662308,-0.662308 +-0.649808,-0.649808,-0.649808,-0.649808,-0.649808,-0.649808 +-0.637308,-0.637308,-0.637308,-0.637308,-0.637308,-0.637308 +-0.624808,-0.624808,-0.624808,-0.624808,-0.624808,-0.624808 +-0.612308,-0.612308,-0.612308,-0.612308,-0.612308,-0.612308 +-0.599808,-0.599808,-0.599808,-0.599808,-0.599808,-0.599808 +-0.587308,-0.587308,-0.587308,-0.587308,-0.587308,-0.587308 +-0.574808,-0.574808,-0.574808,-0.574808,-0.574808,-0.574808 +-0.562308,-0.562308,-0.562308,-0.562308,-0.562308,-0.562308 +-0.549808,-0.549808,-0.549808,-0.549808,-0.549808,-0.549808 +-0.537308,-0.537308,-0.537308,-0.537308,-0.537308,-0.537308 +-0.524808,-0.524808,-0.524808,-0.524808,-0.524808,-0.524808 +-0.512308,-0.512308,-0.512308,-0.512308,-0.512308,-0.512308 +-0.499808,-0.499808,-0.499808,-0.499808,-0.499808,-0.499808 +-0.487308,-0.487308,-0.487308,-0.487308,-0.487308,-0.487308 +-0.474808,-0.474808,-0.474808,-0.474808,-0.474808,-0.474808 +-0.462308,-0.462308,-0.462308,-0.462308,-0.462308,-0.462308 +-0.449808,-0.449808,-0.449808,-0.449808,-0.449808,-0.449808 +-0.437308,-0.437308,-0.437308,-0.437308,-0.437308,-0.437308 +-0.424808,-0.424808,-0.424808,-0.424808,-0.424808,-0.424808 +-0.412308,-0.412308,-0.412308,-0.412308,-0.412308,-0.412308 +-0.399808,-0.399808,-0.399808,-0.399808,-0.399808,-0.399808 +-0.387308,-0.387308,-0.387308,-0.387308,-0.387308,-0.387308 +-0.374808,-0.374808,-0.374808,-0.374808,-0.374808,-0.374808 +-0.362308,-0.362308,-0.362308,-0.362308,-0.362308,-0.362308 +-0.349808,-0.349808,-0.349808,-0.349808,-0.349808,-0.349808 +-0.337308,-0.337308,-0.337308,-0.337308,-0.337308,-0.337308 +-0.324808,-0.324808,-0.324808,-0.324808,-0.324808,-0.324808 +-0.312308,-0.312308,-0.312308,-0.312308,-0.312308,-0.312308 +-0.299808,-0.299808,-0.299808,-0.299808,-0.299808,-0.299808 +-0.287308,-0.287308,-0.287308,-0.287308,-0.287308,-0.287308 +-0.274809,-0.274809,-0.274809,-0.274809,-0.274809,-0.274809 +-0.262319,-0.262319,-0.262319,-0.262319,-0.262319,-0.262319 +-0.249864,-0.249864,-0.249864,-0.249864,-0.249864,-0.249864 +-0.237469,-0.237469,-0.237469,-0.237469,-0.237469,-0.237469 +-0.225158,-0.225158,-0.225158,-0.225158,-0.225158,-0.225158 +-0.212956,-0.212956,-0.212956,-0.212956,-0.212956,-0.212956 +-0.200889,-0.200889,-0.200889,-0.200889,-0.200889,-0.200889 +-0.188981,-0.188981,-0.188981,-0.188981,-0.188981,-0.188981 +-0.177257,-0.177257,-0.177257,-0.177257,-0.177257,-0.177257 +-0.165743,-0.165743,-0.165743,-0.165743,-0.165743,-0.165743 +-0.154463,-0.154463,-0.154463,-0.154463,-0.154463,-0.154463 +-0.143443,-0.143443,-0.143443,-0.143443,-0.143443,-0.143443 +-0.132707,-0.132707,-0.132707,-0.132707,-0.132707,-0.132707 +-0.12228,-0.12228,-0.12228,-0.12228,-0.12228,-0.12228 +-0.112188,-0.112188,-0.112188,-0.112188,-0.112188,-0.112188 +-0.102455,-0.102455,-0.102455,-0.102455,-0.102455,-0.102455 +-0.093107,-0.093107,-0.093107,-0.093107,-0.093107,-0.093107 +-0.084168,-0.084168,-0.084168,-0.084168,-0.084168,-0.084168 +-0.075663,-0.075663,-0.075663,-0.075663,-0.075663,-0.075663 +-0.067618,-0.067618,-0.067618,-0.067618,-0.067618,-0.067618 +-0.060057,-0.060057,-0.060057,-0.060057,-0.060057,-0.060057 +-0.053006,-0.053006,-0.053006,-0.053006,-0.053006,-0.053006 +-0.046489,-0.046489,-0.046489,-0.046489,-0.046489,-0.046489 +-0.040523,-0.040523,-0.040523,-0.040523,-0.040523,-0.040523 +-0.03509,-0.03509,-0.03509,-0.03509,-0.03509,-0.03509 +-0.030166,-0.030166,-0.030166,-0.030166,-0.030166,-0.030166 +-0.025726,-0.025726,-0.025726,-0.025726,-0.025726,-0.025726 +-0.021744,-0.021744,-0.021744,-0.021744,-0.021744,-0.021744 +-0.018196,-0.018196,-0.018196,-0.018196,-0.018196,-0.018196 +-0.015056,-0.015056,-0.015056,-0.015056,-0.015056,-0.015056 +-0.012301,-0.012301,-0.012301,-0.012301,-0.012301,-0.012301 +-0.009903,-0.009903,-0.009903,-0.009903,-0.009903,-0.009903 +-0.00784,-0.00784,-0.00784,-0.00784,-0.00784,-0.00784 +-0.006085,-0.006085,-0.006085,-0.006085,-0.006085,-0.006085 +-0.004613,-0.004613,-0.004613,-0.004613,-0.004613,-0.004613 +-0.003401,-0.003401,-0.003401,-0.003401,-0.003401,-0.003401 +-0.002422,-0.002422,-0.002422,-0.002422,-0.002422,-0.002422 +-0.001651,-0.001651,-0.001651,-0.001651,-0.001651,-0.001651 +-0.001065,-0.001065,-0.001065,-0.001065,-0.001065,-0.001065 +-0.000636,-0.000636,-0.000636,-0.000636,-0.000636,-0.000636 +-0.000342,-0.000342,-0.000342,-0.000342,-0.000342,-0.000342 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0.000004,0.000004,0.000004,0.000004,0.000004,0.000004 +0.000033,0.000033,0.000033,0.000033,0.000033,0.000033 +0.000112,0.000112,0.000112,0.000112,0.000112,0.000112 +0.000267,0.000267,0.000267,0.000267,0.000267,0.000267 +0.000521,0.000521,0.000521,0.000521,0.000521,0.000521 +0.0009,0.0009,0.0009,0.0009,0.0009,0.0009 +0.001429,0.001429,0.001429,0.001429,0.001429,0.001429 +0.002133,0.002133,0.002133,0.002133,0.002133,0.002133 +0.003037,0.003037,0.003037,0.003037,0.003037,0.003037 +0.004167,0.004167,0.004167,0.004167,0.004167,0.004167 +0.005546,0.005546,0.005546,0.005546,0.005546,0.005546 +0.0072,0.0072,0.0072,0.0072,0.0072,0.0072 +0.009154,0.009154,0.009154,0.009154,0.009154,0.009154 +0.011433,0.011433,0.011433,0.011433,0.011433,0.011433 +0.014062,0.014062,0.014062,0.014062,0.014062,0.014062 +0.017067,0.017067,0.017067,0.017067,0.017067,0.017067 +0.020471,0.020471,0.020471,0.020471,0.020471,0.020471 +0.0243,0.0243,0.0243,0.0243,0.0243,0.0243 +0.028579,0.028579,0.028579,0.028579,0.028579,0.028579 +0.033333,0.033333,0.033333,0.033333,0.033333,0.033333 +0.038587,0.038587,0.038587,0.038587,0.038587,0.038587 +0.044367,0.044367,0.044367,0.044367,0.044367,0.044367 +0.050694,0.050694,0.050694,0.050694,0.050694,0.050694 +0.057563,0.057563,0.057563,0.057563,0.057563,0.057563 +0.064951,0.064951,0.064951,0.064951,0.064951,0.064951 +0.072832,0.072832,0.072832,0.072832,0.072832,0.072832 +0.08118,0.08118,0.08118,0.08118,0.08118,0.08118 +0.089972,0.089972,0.089972,0.089972,0.089972,0.089972 +0.099182,0.099182,0.099182,0.099182,0.099182,0.099182 +0.108785,0.108785,0.108785,0.108785,0.108785,0.108785 +0.118756,0.118756,0.118756,0.118756,0.118756,0.118756 +0.12907,0.12907,0.12907,0.12907,0.12907,0.12907 +0.139702,0.139702,0.139702,0.139702,0.139702,0.139702 +0.150626,0.150626,0.150626,0.150626,0.150626,0.150626 +0.161819,0.161819,0.161819,0.161819,0.161819,0.161819 +0.173256,0.173256,0.173256,0.173256,0.173256,0.173256 +0.18491,0.18491,0.18491,0.18491,0.18491,0.18491 +0.196757,0.196757,0.196757,0.196757,0.196757,0.196757 +0.208772,0.208772,0.208772,0.208772,0.208772,0.208772 +0.22093,0.22093,0.22093,0.22093,0.22093,0.22093 +0.233206,0.233206,0.233206,0.233206,0.233206,0.233206 +0.245575,0.245575,0.245575,0.245575,0.245575,0.245575 +0.258013,0.258013,0.258013,0.258013,0.258013,0.258013 +0.270493,0.270493,0.270493,0.270493,0.270493,0.270493 +0.282992,0.282992,0.282992,0.282992,0.282992,0.282992 +0.295492,0.295492,0.295492,0.295492,0.295492,0.295492 +0.307992,0.307992,0.307992,0.307992,0.307992,0.307992 +0.320492,0.320492,0.320492,0.320492,0.320492,0.320492 +0.332992,0.332992,0.332992,0.332992,0.332992,0.332992 +0.345492,0.345492,0.345492,0.345492,0.345492,0.345492 +0.357992,0.357992,0.357992,0.357992,0.357992,0.357992 +0.370492,0.370492,0.370492,0.370492,0.370492,0.370492 +0.382992,0.382992,0.382992,0.382992,0.382992,0.382992 +0.395492,0.395492,0.395492,0.395492,0.395492,0.395492 +0.407992,0.407992,0.407992,0.407992,0.407992,0.407992 +0.420492,0.420492,0.420492,0.420492,0.420492,0.420492 +0.432992,0.432992,0.432992,0.432992,0.432992,0.432992 +0.445492,0.445492,0.445492,0.445492,0.445492,0.445492 +0.457992,0.457992,0.457992,0.457992,0.457992,0.457992 +0.470492,0.470492,0.470492,0.470492,0.470492,0.470492 +0.482992,0.482992,0.482992,0.482992,0.482992,0.482992 +0.495492,0.495492,0.495492,0.495492,0.495492,0.495492 +0.507992,0.507992,0.507992,0.507992,0.507992,0.507992 +0.520492,0.520492,0.520492,0.520492,0.520492,0.520492 +0.532992,0.532992,0.532992,0.532992,0.532992,0.532992 +0.545492,0.545492,0.545492,0.545492,0.545492,0.545492 +0.557992,0.557992,0.557992,0.557992,0.557992,0.557992 +0.570492,0.570492,0.570492,0.570492,0.570492,0.570492 +0.582992,0.582992,0.582992,0.582992,0.582992,0.582992 +0.595492,0.595492,0.595492,0.595492,0.595492,0.595492 +0.607992,0.607992,0.607992,0.607992,0.607992,0.607992 +0.620492,0.620492,0.620492,0.620492,0.620492,0.620492 +0.632992,0.632992,0.632992,0.632992,0.632992,0.632992 +0.645492,0.645492,0.645492,0.645492,0.645492,0.645492 +0.657992,0.657992,0.657992,0.657992,0.657992,0.657992 +0.670492,0.670492,0.670492,0.670492,0.670492,0.670492 +0.682992,0.682992,0.682992,0.682992,0.682992,0.682992 +0.695492,0.695492,0.695492,0.695492,0.695492,0.695492 +0.707992,0.707992,0.707992,0.707992,0.707992,0.707992 +0.720492,0.720492,0.720492,0.720492,0.720492,0.720492 +0.732992,0.732992,0.732992,0.732992,0.732992,0.732992 +0.745492,0.745492,0.745492,0.745492,0.745492,0.745492 +0.757992,0.757992,0.757992,0.757992,0.757992,0.757992 +0.770492,0.770492,0.770492,0.770492,0.770492,0.770492 +0.782992,0.782992,0.782992,0.782992,0.782992,0.782992 +0.795492,0.795492,0.795492,0.795492,0.795492,0.795492 +0.807992,0.807992,0.807992,0.807992,0.807992,0.807992 +0.820492,0.820492,0.820492,0.820492,0.820492,0.820492 +0.832992,0.832992,0.832992,0.832992,0.832992,0.832992 +0.845492,0.845492,0.845492,0.845492,0.845492,0.845492 +0.857992,0.857992,0.857992,0.857992,0.857992,0.857992 +0.870492,0.870492,0.870492,0.870492,0.870492,0.870492 +0.882992,0.882992,0.882992,0.882992,0.882992,0.882992 +0.895492,0.895492,0.895492,0.895492,0.895492,0.895492 +0.907992,0.907992,0.907992,0.907992,0.907992,0.907992 +0.920492,0.920492,0.920492,0.920492,0.920492,0.920492 +0.932992,0.932992,0.932992,0.932992,0.932992,0.932992 +0.945492,0.945492,0.945492,0.945492,0.945492,0.945492 +0.957992,0.957992,0.957992,0.957992,0.957992,0.957992 +0.970492,0.970492,0.970492,0.970492,0.970492,0.970492 +0.982992,0.982992,0.982992,0.982992,0.982992,0.982992 +0.995492,0.995492,0.995492,0.995492,0.995492,0.995492 +1.007992,1.007992,1.007992,1.007992,1.007992,1.007992 +1.020492,1.020492,1.020492,1.020492,1.020492,1.020492 +1.032992,1.032992,1.032992,1.032992,1.032992,1.032992 +1.045492,1.045492,1.045492,1.045492,1.045492,1.045492 +1.057992,1.057992,1.057992,1.057992,1.057992,1.057992 +1.070492,1.070492,1.070492,1.070492,1.070492,1.070492 +1.082992,1.082992,1.082992,1.082992,1.082992,1.082992 +1.095492,1.095492,1.095492,1.095492,1.095492,1.095492 +1.107992,1.107992,1.107992,1.107992,1.107992,1.107992 +1.120492,1.120492,1.120492,1.120492,1.120492,1.120492 +1.132992,1.132992,1.132992,1.132992,1.132992,1.132992 +1.145492,1.145492,1.145492,1.145492,1.145492,1.145492 +1.157992,1.157992,1.157992,1.157992,1.157992,1.157992 +1.170492,1.170492,1.170492,1.170492,1.170492,1.170492 +1.182992,1.182992,1.182992,1.182992,1.182992,1.182992 +1.195492,1.195492,1.195492,1.195492,1.195492,1.195492 +1.207992,1.207992,1.207992,1.207992,1.207992,1.207992 +1.220492,1.220492,1.220492,1.220492,1.220492,1.220492 +1.232992,1.232992,1.232992,1.232992,1.232992,1.232992 +1.245492,1.245492,1.245492,1.245492,1.245492,1.245492 +1.257992,1.257992,1.257992,1.257992,1.257992,1.257992 +1.270492,1.270492,1.270492,1.270492,1.270492,1.270492 +1.282992,1.282992,1.282992,1.282992,1.282992,1.282992 +1.295492,1.295492,1.295492,1.295492,1.295492,1.295492 +1.307992,1.307992,1.307992,1.307992,1.307992,1.307992 +1.320492,1.320492,1.320492,1.320492,1.320492,1.320492 +1.332992,1.332992,1.332992,1.332992,1.332992,1.332992 +1.345492,1.345492,1.345492,1.345492,1.345492,1.345492 +1.357992,1.357992,1.357992,1.357992,1.357992,1.357992 +1.370492,1.370492,1.370492,1.370492,1.370492,1.370492 +1.382992,1.382992,1.382992,1.382992,1.382992,1.382992 +1.395492,1.395492,1.395492,1.395492,1.395492,1.395492 +1.407992,1.407992,1.407992,1.407992,1.407992,1.407992 +1.420492,1.420492,1.420492,1.420492,1.420492,1.420492 +1.432992,1.432992,1.432992,1.432992,1.432992,1.432992 +1.445492,1.445492,1.445492,1.445492,1.445492,1.445492 +1.457992,1.457992,1.457992,1.457992,1.457992,1.457992 +1.470491,1.470491,1.470491,1.470491,1.470491,1.470491 +1.482981,1.482981,1.482981,1.482981,1.482981,1.482981 +1.495436,1.495436,1.495436,1.495436,1.495436,1.495436 +1.507831,1.507831,1.507831,1.507831,1.507831,1.507831 +1.520142,1.520142,1.520142,1.520142,1.520142,1.520142 +1.532344,1.532344,1.532344,1.532344,1.532344,1.532344 +1.544411,1.544411,1.544411,1.544411,1.544411,1.544411 +1.556319,1.556319,1.556319,1.556319,1.556319,1.556319 +1.568043,1.568043,1.568043,1.568043,1.568043,1.568043 +1.579557,1.579557,1.579557,1.579557,1.579557,1.579557 +1.590837,1.590837,1.590837,1.590837,1.590837,1.590837 +1.601857,1.601857,1.601857,1.601857,1.601857,1.601857 +1.612593,1.612593,1.612593,1.612593,1.612593,1.612593 +1.62302,1.62302,1.62302,1.62302,1.62302,1.62302 +1.633112,1.633112,1.633112,1.633112,1.633112,1.633112 +1.642845,1.642845,1.642845,1.642845,1.642845,1.642845 +1.652193,1.652193,1.652193,1.652193,1.652193,1.652193 +1.661132,1.661132,1.661132,1.661132,1.661132,1.661132 +1.669637,1.669637,1.669637,1.669637,1.669637,1.669637 +1.677682,1.677682,1.677682,1.677682,1.677682,1.677682 +1.685243,1.685243,1.685243,1.685243,1.685243,1.685243 +1.692294,1.692294,1.692294,1.692294,1.692294,1.692294 +1.698811,1.698811,1.698811,1.698811,1.698811,1.698811 +1.704777,1.704777,1.704777,1.704777,1.704777,1.704777 +1.71021,1.71021,1.71021,1.71021,1.71021,1.71021 +1.715134,1.715134,1.715134,1.715134,1.715134,1.715134 +1.719574,1.719574,1.719574,1.719574,1.719574,1.719574 +1.723556,1.723556,1.723556,1.723556,1.723556,1.723556 +1.727104,1.727104,1.727104,1.727104,1.727104,1.727104 +1.730244,1.730244,1.730244,1.730244,1.730244,1.730244 +1.732999,1.732999,1.732999,1.732999,1.732999,1.732999 +1.735397,1.735397,1.735397,1.735397,1.735397,1.735397 +1.73746,1.73746,1.73746,1.73746,1.73746,1.73746 +1.739215,1.739215,1.739215,1.739215,1.739215,1.739215 +1.740687,1.740687,1.740687,1.740687,1.740687,1.740687 +1.741899,1.741899,1.741899,1.741899,1.741899,1.741899 +1.742878,1.742878,1.742878,1.742878,1.742878,1.742878 +1.743649,1.743649,1.743649,1.743649,1.743649,1.743649 +1.744235,1.744235,1.744235,1.744235,1.744235,1.744235 +1.744664,1.744664,1.744664,1.744664,1.744664,1.744664 +1.744958,1.744958,1.744958,1.744958,1.744958,1.744958 +1.745144,1.745144,1.745144,1.745144,1.745144,1.745144 +1.745246,1.745246,1.745246,1.745246,1.745246,1.745246 +1.74529,1.74529,1.74529,1.74529,1.74529,1.74529 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.7453,1.7453,1.7453,1.7453,1.7453,1.7453 +1.745296,1.745296,1.745296,1.745296,1.745296,1.745296 +1.745267,1.745267,1.745267,1.745267,1.745267,1.745267 +1.745188,1.745188,1.745188,1.745188,1.745188,1.745188 +1.745033,1.745033,1.745033,1.745033,1.745033,1.745033 +1.744779,1.744779,1.744779,1.744779,1.744779,1.744779 +1.7444,1.7444,1.7444,1.7444,1.7444,1.7444 +1.743871,1.743871,1.743871,1.743871,1.743871,1.743871 +1.743167,1.743167,1.743167,1.743167,1.743167,1.743167 +1.742263,1.742263,1.742263,1.742263,1.742263,1.742263 +1.741133,1.741133,1.741133,1.741133,1.741133,1.741133 +1.739754,1.739754,1.739754,1.739754,1.739754,1.739754 +1.7381,1.7381,1.7381,1.7381,1.7381,1.7381 +1.736146,1.736146,1.736146,1.736146,1.736146,1.736146 +1.733867,1.733867,1.733867,1.733867,1.733867,1.733867 +1.731238,1.731238,1.731238,1.731238,1.731238,1.731238 +1.728233,1.728233,1.728233,1.728233,1.728233,1.728233 +1.724829,1.724829,1.724829,1.724829,1.724829,1.724829 +1.721,1.721,1.721,1.721,1.721,1.721 +1.716721,1.716721,1.716721,1.716721,1.716721,1.716721 +1.711967,1.711967,1.711967,1.711967,1.711967,1.711967 +1.706713,1.706713,1.706713,1.706713,1.706713,1.706713 +1.700933,1.700933,1.700933,1.700933,1.700933,1.700933 +1.694606,1.694606,1.694606,1.694606,1.694606,1.694606 +1.687737,1.687737,1.687737,1.687737,1.687737,1.687737 +1.680349,1.680349,1.680349,1.680349,1.680349,1.680349 +1.672468,1.672468,1.672468,1.672468,1.672468,1.672468 +1.66412,1.66412,1.66412,1.66412,1.66412,1.66412 +1.655328,1.655328,1.655328,1.655328,1.655328,1.655328 +1.646118,1.646118,1.646118,1.646118,1.646118,1.646118 +1.636515,1.636515,1.636515,1.636515,1.636515,1.636515 +1.626544,1.626544,1.626544,1.626544,1.626544,1.626544 +1.61623,1.61623,1.61623,1.61623,1.61623,1.61623 +1.605598,1.605598,1.605598,1.605598,1.605598,1.605598 +1.594674,1.594674,1.594674,1.594674,1.594674,1.594674 +1.583481,1.583481,1.583481,1.583481,1.583481,1.583481 +1.572044,1.572044,1.572044,1.572044,1.572044,1.572044 +1.56039,1.56039,1.56039,1.56039,1.56039,1.56039 +1.548543,1.548543,1.548543,1.548543,1.548543,1.548543 +1.536528,1.536528,1.536528,1.536528,1.536528,1.536528 +1.52437,1.52437,1.52437,1.52437,1.52437,1.52437 +1.512094,1.512094,1.512094,1.512094,1.512094,1.512094 +1.499725,1.499725,1.499725,1.499725,1.499725,1.499725 +1.487287,1.487287,1.487287,1.487287,1.487287,1.487287 +1.474807,1.474807,1.474807,1.474807,1.474807,1.474807 +1.462308,1.462308,1.462308,1.462308,1.462308,1.462308 +1.449808,1.449808,1.449808,1.449808,1.449808,1.449808 +1.437308,1.437308,1.437308,1.437308,1.437308,1.437308 +1.424808,1.424808,1.424808,1.424808,1.424808,1.424808 +1.412308,1.412308,1.412308,1.412308,1.412308,1.412308 +1.399808,1.399808,1.399808,1.399808,1.399808,1.399808 +1.387308,1.387308,1.387308,1.387308,1.387308,1.387308 +1.374808,1.374808,1.374808,1.374808,1.374808,1.374808 +1.362308,1.362308,1.362308,1.362308,1.362308,1.362308 +1.349808,1.349808,1.349808,1.349808,1.349808,1.349808 +1.337308,1.337308,1.337308,1.337308,1.337308,1.337308 +1.324808,1.324808,1.324808,1.324808,1.324808,1.324808 +1.312308,1.312308,1.312308,1.312308,1.312308,1.312308 +1.299808,1.299808,1.299808,1.299808,1.299808,1.299808 +1.287308,1.287308,1.287308,1.287308,1.287308,1.287308 +1.274808,1.274808,1.274808,1.274808,1.274808,1.274808 +1.262308,1.262308,1.262308,1.262308,1.262308,1.262308 +1.249808,1.249808,1.249808,1.249808,1.249808,1.249808 +1.237308,1.237308,1.237308,1.237308,1.237308,1.237308 +1.224808,1.224808,1.224808,1.224808,1.224808,1.224808 +1.212308,1.212308,1.212308,1.212308,1.212308,1.212308 +1.199808,1.199808,1.199808,1.199808,1.199808,1.199808 +1.187308,1.187308,1.187308,1.187308,1.187308,1.187308 +1.174808,1.174808,1.174808,1.174808,1.174808,1.174808 +1.162308,1.162308,1.162308,1.162308,1.162308,1.162308 +1.149808,1.149808,1.149808,1.149808,1.149808,1.149808 +1.137308,1.137308,1.137308,1.137308,1.137308,1.137308 +1.124808,1.124808,1.124808,1.124808,1.124808,1.124808 +1.112308,1.112308,1.112308,1.112308,1.112308,1.112308 +1.099808,1.099808,1.099808,1.099808,1.099808,1.099808 +1.087308,1.087308,1.087308,1.087308,1.087308,1.087308 +1.074808,1.074808,1.074808,1.074808,1.074808,1.074808 +1.062308,1.062308,1.062308,1.062308,1.062308,1.062308 +1.049808,1.049808,1.049808,1.049808,1.049808,1.049808 +1.037308,1.037308,1.037308,1.037308,1.037308,1.037308 +1.024808,1.024808,1.024808,1.024808,1.024808,1.024808 +1.012308,1.012308,1.012308,1.012308,1.012308,1.012308 +0.999808,0.999808,0.999808,0.999808,0.999808,0.999808 +0.987308,0.987308,0.987308,0.987308,0.987308,0.987308 +0.974808,0.974808,0.974808,0.974808,0.974808,0.974808 +0.962308,0.962308,0.962308,0.962308,0.962308,0.962308 +0.949808,0.949808,0.949808,0.949808,0.949808,0.949808 +0.937308,0.937308,0.937308,0.937308,0.937308,0.937308 +0.924808,0.924808,0.924808,0.924808,0.924808,0.924808 +0.912308,0.912308,0.912308,0.912308,0.912308,0.912308 +0.899808,0.899808,0.899808,0.899808,0.899808,0.899808 +0.887308,0.887308,0.887308,0.887308,0.887308,0.887308 +0.874808,0.874808,0.874808,0.874808,0.874808,0.874808 +0.862308,0.862308,0.862308,0.862308,0.862308,0.862308 +0.849808,0.849808,0.849808,0.849808,0.849808,0.849808 +0.837308,0.837308,0.837308,0.837308,0.837308,0.837308 +0.824808,0.824808,0.824808,0.824808,0.824808,0.824808 +0.812308,0.812308,0.812308,0.812308,0.812308,0.812308 +0.799808,0.799808,0.799808,0.799808,0.799808,0.799808 +0.787308,0.787308,0.787308,0.787308,0.787308,0.787308 +0.774808,0.774808,0.774808,0.774808,0.774808,0.774808 +0.762308,0.762308,0.762308,0.762308,0.762308,0.762308 +0.749808,0.749808,0.749808,0.749808,0.749808,0.749808 +0.737308,0.737308,0.737308,0.737308,0.737308,0.737308 +0.724808,0.724808,0.724808,0.724808,0.724808,0.724808 +0.712308,0.712308,0.712308,0.712308,0.712308,0.712308 +0.699808,0.699808,0.699808,0.699808,0.699808,0.699808 +0.687308,0.687308,0.687308,0.687308,0.687308,0.687308 +0.674808,0.674808,0.674808,0.674808,0.674808,0.674808 +0.662308,0.662308,0.662308,0.662308,0.662308,0.662308 +0.649808,0.649808,0.649808,0.649808,0.649808,0.649808 +0.637308,0.637308,0.637308,0.637308,0.637308,0.637308 +0.624808,0.624808,0.624808,0.624808,0.624808,0.624808 +0.612308,0.612308,0.612308,0.612308,0.612308,0.612308 +0.599808,0.599808,0.599808,0.599808,0.599808,0.599808 +0.587308,0.587308,0.587308,0.587308,0.587308,0.587308 +0.574808,0.574808,0.574808,0.574808,0.574808,0.574808 +0.562308,0.562308,0.562308,0.562308,0.562308,0.562308 +0.549808,0.549808,0.549808,0.549808,0.549808,0.549808 +0.537308,0.537308,0.537308,0.537308,0.537308,0.537308 +0.524808,0.524808,0.524808,0.524808,0.524808,0.524808 +0.512308,0.512308,0.512308,0.512308,0.512308,0.512308 +0.499808,0.499808,0.499808,0.499808,0.499808,0.499808 +0.487308,0.487308,0.487308,0.487308,0.487308,0.487308 +0.474808,0.474808,0.474808,0.474808,0.474808,0.474808 +0.462308,0.462308,0.462308,0.462308,0.462308,0.462308 +0.449808,0.449808,0.449808,0.449808,0.449808,0.449808 +0.437308,0.437308,0.437308,0.437308,0.437308,0.437308 +0.424808,0.424808,0.424808,0.424808,0.424808,0.424808 +0.412308,0.412308,0.412308,0.412308,0.412308,0.412308 +0.399808,0.399808,0.399808,0.399808,0.399808,0.399808 +0.387308,0.387308,0.387308,0.387308,0.387308,0.387308 +0.374808,0.374808,0.374808,0.374808,0.374808,0.374808 +0.362308,0.362308,0.362308,0.362308,0.362308,0.362308 +0.349808,0.349808,0.349808,0.349808,0.349808,0.349808 +0.337308,0.337308,0.337308,0.337308,0.337308,0.337308 +0.324808,0.324808,0.324808,0.324808,0.324808,0.324808 +0.312308,0.312308,0.312308,0.312308,0.312308,0.312308 +0.299808,0.299808,0.299808,0.299808,0.299808,0.299808 +0.287308,0.287308,0.287308,0.287308,0.287308,0.287308 +0.274809,0.274809,0.274809,0.274809,0.274809,0.274809 +0.262319,0.262319,0.262319,0.262319,0.262319,0.262319 +0.249864,0.249864,0.249864,0.249864,0.249864,0.249864 +0.237469,0.237469,0.237469,0.237469,0.237469,0.237469 +0.225158,0.225158,0.225158,0.225158,0.225158,0.225158 +0.212956,0.212956,0.212956,0.212956,0.212956,0.212956 +0.200889,0.200889,0.200889,0.200889,0.200889,0.200889 +0.188981,0.188981,0.188981,0.188981,0.188981,0.188981 +0.177257,0.177257,0.177257,0.177257,0.177257,0.177257 +0.165743,0.165743,0.165743,0.165743,0.165743,0.165743 +0.154463,0.154463,0.154463,0.154463,0.154463,0.154463 +0.143443,0.143443,0.143443,0.143443,0.143443,0.143443 +0.132707,0.132707,0.132707,0.132707,0.132707,0.132707 +0.12228,0.12228,0.12228,0.12228,0.12228,0.12228 +0.112188,0.112188,0.112188,0.112188,0.112188,0.112188 +0.102455,0.102455,0.102455,0.102455,0.102455,0.102455 +0.093107,0.093107,0.093107,0.093107,0.093107,0.093107 +0.084168,0.084168,0.084168,0.084168,0.084168,0.084168 +0.075663,0.075663,0.075663,0.075663,0.075663,0.075663 +0.067618,0.067618,0.067618,0.067618,0.067618,0.067618 +0.060057,0.060057,0.060057,0.060057,0.060057,0.060057 +0.053006,0.053006,0.053006,0.053006,0.053006,0.053006 +0.046489,0.046489,0.046489,0.046489,0.046489,0.046489 +0.040523,0.040523,0.040523,0.040523,0.040523,0.040523 +0.03509,0.03509,0.03509,0.03509,0.03509,0.03509 +0.030166,0.030166,0.030166,0.030166,0.030166,0.030166 +0.025726,0.025726,0.025726,0.025726,0.025726,0.025726 +0.021744,0.021744,0.021744,0.021744,0.021744,0.021744 +0.018196,0.018196,0.018196,0.018196,0.018196,0.018196 +0.015056,0.015056,0.015056,0.015056,0.015056,0.015056 +0.012301,0.012301,0.012301,0.012301,0.012301,0.012301 +0.009903,0.009903,0.009903,0.009903,0.009903,0.009903 +0.00784,0.00784,0.00784,0.00784,0.00784,0.00784 +0.006085,0.006085,0.006085,0.006085,0.006085,0.006085 +0.004613,0.004613,0.004613,0.004613,0.004613,0.004613 +0.003401,0.003401,0.003401,0.003401,0.003401,0.003401 +0.002422,0.002422,0.002422,0.002422,0.002422,0.002422 +0.001651,0.001651,0.001651,0.001651,0.001651,0.001651 +0.001065,0.001065,0.001065,0.001065,0.001065,0.001065 +0.000636,0.000636,0.000636,0.000636,0.000636,0.000636 +0.000342,0.000342,0.000342,0.000342,0.000342,0.000342 +0.000156,0.000156,0.000156,0.000156,0.000156,0.000156 +0.000054,0.000054,0.000054,0.000054,0.000054,0.000054 +0.00001,0.00001,0.00001,0.00001,0.00001,0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +-0.000004,-0.000004,-0.000004,-0.000004,-0.000004,-0.000004 +-0.000033,-0.000033,-0.000033,-0.000033,-0.000033,-0.000033 +-0.000112,-0.000112,-0.000112,-0.000112,-0.000112,-0.000112 +-0.000267,-0.000267,-0.000267,-0.000267,-0.000267,-0.000267 +-0.000521,-0.000521,-0.000521,-0.000521,-0.000521,-0.000521 +-0.0009,-0.0009,-0.0009,-0.0009,-0.0009,-0.0009 +-0.001429,-0.001429,-0.001429,-0.001429,-0.001429,-0.001429 +-0.002133,-0.002133,-0.002133,-0.002133,-0.002133,-0.002133 +-0.003037,-0.003037,-0.003037,-0.003037,-0.003037,-0.003037 +-0.004167,-0.004167,-0.004167,-0.004167,-0.004167,-0.004167 +-0.005546,-0.005546,-0.005546,-0.005546,-0.005546,-0.005546 +-0.0072,-0.0072,-0.0072,-0.0072,-0.0072,-0.0072 +-0.009154,-0.009154,-0.009154,-0.009154,-0.009154,-0.009154 +-0.011433,-0.011433,-0.011433,-0.011433,-0.011433,-0.011433 +-0.014062,-0.014062,-0.014062,-0.014062,-0.014062,-0.014062 +-0.017067,-0.017067,-0.017067,-0.017067,-0.017067,-0.017067 +-0.020471,-0.020471,-0.020471,-0.020471,-0.020471,-0.020471 +-0.0243,-0.0243,-0.0243,-0.0243,-0.0243,-0.0243 +-0.028579,-0.028579,-0.028579,-0.028579,-0.028579,-0.028579 +-0.033333,-0.033333,-0.033333,-0.033333,-0.033333,-0.033333 +-0.038587,-0.038587,-0.038587,-0.038587,-0.038587,-0.038587 +-0.044367,-0.044367,-0.044367,-0.044367,-0.044367,-0.044367 +-0.050694,-0.050694,-0.050694,-0.050694,-0.050694,-0.050694 +-0.057563,-0.057563,-0.057563,-0.057563,-0.057563,-0.057563 +-0.064951,-0.064951,-0.064951,-0.064951,-0.064951,-0.064951 +-0.072832,-0.072832,-0.072832,-0.072832,-0.072832,-0.072832 +-0.08118,-0.08118,-0.08118,-0.08118,-0.08118,-0.08118 +-0.089972,-0.089972,-0.089972,-0.089972,-0.089972,-0.089972 +-0.099182,-0.099182,-0.099182,-0.099182,-0.099182,-0.099182 +-0.108785,-0.108785,-0.108785,-0.108785,-0.108785,-0.108785 +-0.118756,-0.118756,-0.118756,-0.118756,-0.118756,-0.118756 +-0.12907,-0.12907,-0.12907,-0.12907,-0.12907,-0.12907 +-0.139702,-0.139702,-0.139702,-0.139702,-0.139702,-0.139702 +-0.150626,-0.150626,-0.150626,-0.150626,-0.150626,-0.150626 +-0.161819,-0.161819,-0.161819,-0.161819,-0.161819,-0.161819 +-0.173256,-0.173256,-0.173256,-0.173256,-0.173256,-0.173256 +-0.18491,-0.18491,-0.18491,-0.18491,-0.18491,-0.18491 +-0.196757,-0.196757,-0.196757,-0.196757,-0.196757,-0.196757 +-0.208772,-0.208772,-0.208772,-0.208772,-0.208772,-0.208772 +-0.22093,-0.22093,-0.22093,-0.22093,-0.22093,-0.22093 +-0.233206,-0.233206,-0.233206,-0.233206,-0.233206,-0.233206 +-0.245575,-0.245575,-0.245575,-0.245575,-0.245575,-0.245575 +-0.258013,-0.258013,-0.258013,-0.258013,-0.258013,-0.258013 +-0.270493,-0.270493,-0.270493,-0.270493,-0.270493,-0.270493 +-0.282992,-0.282992,-0.282992,-0.282992,-0.282992,-0.282992 +-0.295492,-0.295492,-0.295492,-0.295492,-0.295492,-0.295492 +-0.307992,-0.307992,-0.307992,-0.307992,-0.307992,-0.307992 +-0.320492,-0.320492,-0.320492,-0.320492,-0.320492,-0.320492 +-0.332992,-0.332992,-0.332992,-0.332992,-0.332992,-0.332992 +-0.345492,-0.345492,-0.345492,-0.345492,-0.345492,-0.345492 +-0.357992,-0.357992,-0.357992,-0.357992,-0.357992,-0.357992 +-0.370492,-0.370492,-0.370492,-0.370492,-0.370492,-0.370492 +-0.382992,-0.382992,-0.382992,-0.382992,-0.382992,-0.382992 +-0.395492,-0.395492,-0.395492,-0.395492,-0.395492,-0.395492 +-0.407992,-0.407992,-0.407992,-0.407992,-0.407992,-0.407992 +-0.420492,-0.420492,-0.420492,-0.420492,-0.420492,-0.420492 +-0.432992,-0.432992,-0.432992,-0.432992,-0.432992,-0.432992 +-0.445492,-0.445492,-0.445492,-0.445492,-0.445492,-0.445492 +-0.457992,-0.457992,-0.457992,-0.457992,-0.457992,-0.457992 +-0.470492,-0.470492,-0.470492,-0.470492,-0.470492,-0.470492 +-0.482992,-0.482992,-0.482992,-0.482992,-0.482992,-0.482992 +-0.495492,-0.495492,-0.495492,-0.495492,-0.495492,-0.495492 +-0.507992,-0.507992,-0.507992,-0.507992,-0.507992,-0.507992 +-0.520492,-0.520492,-0.520492,-0.520492,-0.520492,-0.520492 +-0.532992,-0.532992,-0.532992,-0.532992,-0.532992,-0.532992 +-0.545492,-0.545492,-0.545492,-0.545492,-0.545492,-0.545492 +-0.557992,-0.557992,-0.557992,-0.557992,-0.557992,-0.557992 +-0.570492,-0.570492,-0.570492,-0.570492,-0.570492,-0.570492 +-0.582992,-0.582992,-0.582992,-0.582992,-0.582992,-0.582992 +-0.595492,-0.595492,-0.595492,-0.595492,-0.595492,-0.595492 +-0.607992,-0.607992,-0.607992,-0.607992,-0.607992,-0.607992 +-0.620492,-0.620492,-0.620492,-0.620492,-0.620492,-0.620492 +-0.632992,-0.632992,-0.632992,-0.632992,-0.632992,-0.632992 +-0.645492,-0.645492,-0.645492,-0.645492,-0.645492,-0.645492 +-0.657992,-0.657992,-0.657992,-0.657992,-0.657992,-0.657992 +-0.670492,-0.670492,-0.670492,-0.670492,-0.670492,-0.670492 +-0.682992,-0.682992,-0.682992,-0.682992,-0.682992,-0.682992 +-0.695492,-0.695492,-0.695492,-0.695492,-0.695492,-0.695492 +-0.707992,-0.707992,-0.707992,-0.707992,-0.707992,-0.707992 +-0.720492,-0.720492,-0.720492,-0.720492,-0.720492,-0.720492 +-0.732992,-0.732992,-0.732992,-0.732992,-0.732992,-0.732992 +-0.745492,-0.745492,-0.745492,-0.745492,-0.745492,-0.745492 +-0.757992,-0.757992,-0.757992,-0.757992,-0.757992,-0.757992 +-0.770492,-0.770492,-0.770492,-0.770492,-0.770492,-0.770492 +-0.782992,-0.782992,-0.782992,-0.782992,-0.782992,-0.782992 +-0.795492,-0.795492,-0.795492,-0.795492,-0.795492,-0.795492 +-0.807992,-0.807992,-0.807992,-0.807992,-0.807992,-0.807992 +-0.820492,-0.820492,-0.820492,-0.820492,-0.820492,-0.820492 +-0.832992,-0.832992,-0.832992,-0.832992,-0.832992,-0.832992 +-0.845492,-0.845492,-0.845492,-0.845492,-0.845492,-0.845492 +-0.857992,-0.857992,-0.857992,-0.857992,-0.857992,-0.857992 +-0.870492,-0.870492,-0.870492,-0.870492,-0.870492,-0.870492 +-0.882992,-0.882992,-0.882992,-0.882992,-0.882992,-0.882992 +-0.895492,-0.895492,-0.895492,-0.895492,-0.895492,-0.895492 +-0.907992,-0.907992,-0.907992,-0.907992,-0.907992,-0.907992 +-0.920492,-0.920492,-0.920492,-0.920492,-0.920492,-0.920492 +-0.932992,-0.932992,-0.932992,-0.932992,-0.932992,-0.932992 +-0.945492,-0.945492,-0.945492,-0.945492,-0.945492,-0.945492 +-0.957992,-0.957992,-0.957992,-0.957992,-0.957992,-0.957992 +-0.970492,-0.970492,-0.970492,-0.970492,-0.970492,-0.970492 +-0.982992,-0.982992,-0.982992,-0.982992,-0.982992,-0.982992 +-0.995492,-0.995492,-0.995492,-0.995492,-0.995492,-0.995492 +-1.007992,-1.007992,-1.007992,-1.007992,-1.007992,-1.007992 +-1.020492,-1.020492,-1.020492,-1.020492,-1.020492,-1.020492 +-1.032992,-1.032992,-1.032992,-1.032992,-1.032992,-1.032992 +-1.045492,-1.045492,-1.045492,-1.045492,-1.045492,-1.045492 +-1.057992,-1.057992,-1.057992,-1.057992,-1.057992,-1.057992 +-1.070492,-1.070492,-1.070492,-1.070492,-1.070492,-1.070492 +-1.082992,-1.082992,-1.082992,-1.082992,-1.082992,-1.082992 +-1.095492,-1.095492,-1.095492,-1.095492,-1.095492,-1.095492 +-1.107992,-1.107992,-1.107992,-1.107992,-1.107992,-1.107992 +-1.120492,-1.120492,-1.120492,-1.120492,-1.120492,-1.120492 +-1.132992,-1.132992,-1.132992,-1.132992,-1.132992,-1.132992 +-1.145492,-1.145492,-1.145492,-1.145492,-1.145492,-1.145492 +-1.157992,-1.157992,-1.157992,-1.157992,-1.157992,-1.157992 +-1.170492,-1.170492,-1.170492,-1.170492,-1.170492,-1.170492 +-1.182992,-1.182992,-1.182992,-1.182992,-1.182992,-1.182992 +-1.195492,-1.195492,-1.195492,-1.195492,-1.195492,-1.195492 +-1.207992,-1.207992,-1.207992,-1.207992,-1.207992,-1.207992 +-1.220492,-1.220492,-1.220492,-1.220492,-1.220492,-1.220492 +-1.232992,-1.232992,-1.232992,-1.232992,-1.232992,-1.232992 +-1.245492,-1.245492,-1.245492,-1.245492,-1.245492,-1.245492 +-1.257992,-1.257992,-1.257992,-1.257992,-1.257992,-1.257992 +-1.270492,-1.270492,-1.270492,-1.270492,-1.270492,-1.270492 +-1.282992,-1.282992,-1.282992,-1.282992,-1.282992,-1.282992 +-1.295492,-1.295492,-1.295492,-1.295492,-1.295492,-1.295492 +-1.307992,-1.307992,-1.307992,-1.307992,-1.307992,-1.307992 +-1.320492,-1.320492,-1.320492,-1.320492,-1.320492,-1.320492 +-1.332992,-1.332992,-1.332992,-1.332992,-1.332992,-1.332992 +-1.345492,-1.345492,-1.345492,-1.345492,-1.345492,-1.345492 +-1.357992,-1.357992,-1.357992,-1.357992,-1.357992,-1.357992 +-1.370492,-1.370492,-1.370492,-1.370492,-1.370492,-1.370492 +-1.382992,-1.382992,-1.382992,-1.382992,-1.382992,-1.382992 +-1.395492,-1.395492,-1.395492,-1.395492,-1.395492,-1.395492 +-1.407992,-1.407992,-1.407992,-1.407992,-1.407992,-1.407992 +-1.420492,-1.420492,-1.420492,-1.420492,-1.420492,-1.420492 +-1.432992,-1.432992,-1.432992,-1.432992,-1.432992,-1.432992 +-1.445492,-1.445492,-1.445492,-1.445492,-1.445492,-1.445492 +-1.457992,-1.457992,-1.457992,-1.457992,-1.457992,-1.457992 +-1.470491,-1.470491,-1.470491,-1.470491,-1.470491,-1.470491 +-1.482981,-1.482981,-1.482981,-1.482981,-1.482981,-1.482981 +-1.495436,-1.495436,-1.495436,-1.495436,-1.495436,-1.495436 +-1.507831,-1.507831,-1.507831,-1.507831,-1.507831,-1.507831 +-1.520142,-1.520142,-1.520142,-1.520142,-1.520142,-1.520142 +-1.532344,-1.532344,-1.532344,-1.532344,-1.532344,-1.532344 +-1.544411,-1.544411,-1.544411,-1.544411,-1.544411,-1.544411 +-1.556319,-1.556319,-1.556319,-1.556319,-1.556319,-1.556319 +-1.568043,-1.568043,-1.568043,-1.568043,-1.568043,-1.568043 +-1.579557,-1.579557,-1.579557,-1.579557,-1.579557,-1.579557 +-1.590837,-1.590837,-1.590837,-1.590837,-1.590837,-1.590837 +-1.601857,-1.601857,-1.601857,-1.601857,-1.601857,-1.601857 +-1.612593,-1.612593,-1.612593,-1.612593,-1.612593,-1.612593 +-1.62302,-1.62302,-1.62302,-1.62302,-1.62302,-1.62302 +-1.633112,-1.633112,-1.633112,-1.633112,-1.633112,-1.633112 +-1.642845,-1.642845,-1.642845,-1.642845,-1.642845,-1.642845 +-1.652193,-1.652193,-1.652193,-1.652193,-1.652193,-1.652193 +-1.661132,-1.661132,-1.661132,-1.661132,-1.661132,-1.661132 +-1.669637,-1.669637,-1.669637,-1.669637,-1.669637,-1.669637 +-1.677682,-1.677682,-1.677682,-1.677682,-1.677682,-1.677682 +-1.685243,-1.685243,-1.685243,-1.685243,-1.685243,-1.685243 +-1.692294,-1.692294,-1.692294,-1.692294,-1.692294,-1.692294 +-1.698811,-1.698811,-1.698811,-1.698811,-1.698811,-1.698811 +-1.704777,-1.704777,-1.704777,-1.704777,-1.704777,-1.704777 +-1.71021,-1.71021,-1.71021,-1.71021,-1.71021,-1.71021 +-1.715134,-1.715134,-1.715134,-1.715134,-1.715134,-1.715134 +-1.719574,-1.719574,-1.719574,-1.719574,-1.719574,-1.719574 +-1.723556,-1.723556,-1.723556,-1.723556,-1.723556,-1.723556 +-1.727104,-1.727104,-1.727104,-1.727104,-1.727104,-1.727104 +-1.730244,-1.730244,-1.730244,-1.730244,-1.730244,-1.730244 +-1.732999,-1.732999,-1.732999,-1.732999,-1.732999,-1.732999 +-1.735397,-1.735397,-1.735397,-1.735397,-1.735397,-1.735397 +-1.73746,-1.73746,-1.73746,-1.73746,-1.73746,-1.73746 +-1.739215,-1.739215,-1.739215,-1.739215,-1.739215,-1.739215 +-1.740687,-1.740687,-1.740687,-1.740687,-1.740687,-1.740687 +-1.741899,-1.741899,-1.741899,-1.741899,-1.741899,-1.741899 +-1.742878,-1.742878,-1.742878,-1.742878,-1.742878,-1.742878 +-1.743649,-1.743649,-1.743649,-1.743649,-1.743649,-1.743649 +-1.744235,-1.744235,-1.744235,-1.744235,-1.744235,-1.744235 +-1.744664,-1.744664,-1.744664,-1.744664,-1.744664,-1.744664 +-1.744958,-1.744958,-1.744958,-1.744958,-1.744958,-1.744958 +-1.745144,-1.745144,-1.745144,-1.745144,-1.745144,-1.745144 +-1.745246,-1.745246,-1.745246,-1.745246,-1.745246,-1.745246 +-1.74529,-1.74529,-1.74529,-1.74529,-1.74529,-1.74529 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.7453,-1.7453,-1.7453,-1.7453,-1.7453,-1.7453 +-1.745296,-1.745296,-1.745296,-1.745296,-1.745296,-1.745296 +-1.745267,-1.745267,-1.745267,-1.745267,-1.745267,-1.745267 +-1.745188,-1.745188,-1.745188,-1.745188,-1.745188,-1.745188 +-1.745033,-1.745033,-1.745033,-1.745033,-1.745033,-1.745033 +-1.744779,-1.744779,-1.744779,-1.744779,-1.744779,-1.744779 +-1.7444,-1.7444,-1.7444,-1.7444,-1.7444,-1.7444 +-1.743871,-1.743871,-1.743871,-1.743871,-1.743871,-1.743871 +-1.743167,-1.743167,-1.743167,-1.743167,-1.743167,-1.743167 +-1.742263,-1.742263,-1.742263,-1.742263,-1.742263,-1.742263 +-1.741133,-1.741133,-1.741133,-1.741133,-1.741133,-1.741133 +-1.739754,-1.739754,-1.739754,-1.739754,-1.739754,-1.739754 +-1.7381,-1.7381,-1.7381,-1.7381,-1.7381,-1.7381 +-1.736146,-1.736146,-1.736146,-1.736146,-1.736146,-1.736146 +-1.733867,-1.733867,-1.733867,-1.733867,-1.733867,-1.733867 +-1.731238,-1.731238,-1.731238,-1.731238,-1.731238,-1.731238 +-1.728233,-1.728233,-1.728233,-1.728233,-1.728233,-1.728233 +-1.724829,-1.724829,-1.724829,-1.724829,-1.724829,-1.724829 +-1.721,-1.721,-1.721,-1.721,-1.721,-1.721 +-1.716721,-1.716721,-1.716721,-1.716721,-1.716721,-1.716721 +-1.711967,-1.711967,-1.711967,-1.711967,-1.711967,-1.711967 +-1.706713,-1.706713,-1.706713,-1.706713,-1.706713,-1.706713 +-1.700933,-1.700933,-1.700933,-1.700933,-1.700933,-1.700933 +-1.694606,-1.694606,-1.694606,-1.694606,-1.694606,-1.694606 +-1.687737,-1.687737,-1.687737,-1.687737,-1.687737,-1.687737 +-1.680349,-1.680349,-1.680349,-1.680349,-1.680349,-1.680349 +-1.672468,-1.672468,-1.672468,-1.672468,-1.672468,-1.672468 +-1.66412,-1.66412,-1.66412,-1.66412,-1.66412,-1.66412 +-1.655328,-1.655328,-1.655328,-1.655328,-1.655328,-1.655328 +-1.646118,-1.646118,-1.646118,-1.646118,-1.646118,-1.646118 +-1.636515,-1.636515,-1.636515,-1.636515,-1.636515,-1.636515 +-1.626544,-1.626544,-1.626544,-1.626544,-1.626544,-1.626544 +-1.61623,-1.61623,-1.61623,-1.61623,-1.61623,-1.61623 +-1.605598,-1.605598,-1.605598,-1.605598,-1.605598,-1.605598 +-1.594674,-1.594674,-1.594674,-1.594674,-1.594674,-1.594674 +-1.583481,-1.583481,-1.583481,-1.583481,-1.583481,-1.583481 +-1.572044,-1.572044,-1.572044,-1.572044,-1.572044,-1.572044 +-1.56039,-1.56039,-1.56039,-1.56039,-1.56039,-1.56039 +-1.548543,-1.548543,-1.548543,-1.548543,-1.548543,-1.548543 +-1.536528,-1.536528,-1.536528,-1.536528,-1.536528,-1.536528 +-1.52437,-1.52437,-1.52437,-1.52437,-1.52437,-1.52437 +-1.512094,-1.512094,-1.512094,-1.512094,-1.512094,-1.512094 +-1.499725,-1.499725,-1.499725,-1.499725,-1.499725,-1.499725 +-1.487287,-1.487287,-1.487287,-1.487287,-1.487287,-1.487287 +-1.474807,-1.474807,-1.474807,-1.474807,-1.474807,-1.474807 +-1.462308,-1.462308,-1.462308,-1.462308,-1.462308,-1.462308 +-1.449808,-1.449808,-1.449808,-1.449808,-1.449808,-1.449808 +-1.437308,-1.437308,-1.437308,-1.437308,-1.437308,-1.437308 +-1.424808,-1.424808,-1.424808,-1.424808,-1.424808,-1.424808 +-1.412308,-1.412308,-1.412308,-1.412308,-1.412308,-1.412308 +-1.399808,-1.399808,-1.399808,-1.399808,-1.399808,-1.399808 +-1.387308,-1.387308,-1.387308,-1.387308,-1.387308,-1.387308 +-1.374808,-1.374808,-1.374808,-1.374808,-1.374808,-1.374808 +-1.362308,-1.362308,-1.362308,-1.362308,-1.362308,-1.362308 +-1.349808,-1.349808,-1.349808,-1.349808,-1.349808,-1.349808 +-1.337308,-1.337308,-1.337308,-1.337308,-1.337308,-1.337308 +-1.324808,-1.324808,-1.324808,-1.324808,-1.324808,-1.324808 +-1.312308,-1.312308,-1.312308,-1.312308,-1.312308,-1.312308 +-1.299808,-1.299808,-1.299808,-1.299808,-1.299808,-1.299808 +-1.287308,-1.287308,-1.287308,-1.287308,-1.287308,-1.287308 +-1.274808,-1.274808,-1.274808,-1.274808,-1.274808,-1.274808 +-1.262308,-1.262308,-1.262308,-1.262308,-1.262308,-1.262308 +-1.249808,-1.249808,-1.249808,-1.249808,-1.249808,-1.249808 +-1.237308,-1.237308,-1.237308,-1.237308,-1.237308,-1.237308 +-1.224808,-1.224808,-1.224808,-1.224808,-1.224808,-1.224808 +-1.212308,-1.212308,-1.212308,-1.212308,-1.212308,-1.212308 +-1.199808,-1.199808,-1.199808,-1.199808,-1.199808,-1.199808 +-1.187308,-1.187308,-1.187308,-1.187308,-1.187308,-1.187308 +-1.174808,-1.174808,-1.174808,-1.174808,-1.174808,-1.174808 +-1.162308,-1.162308,-1.162308,-1.162308,-1.162308,-1.162308 +-1.149808,-1.149808,-1.149808,-1.149808,-1.149808,-1.149808 +-1.137308,-1.137308,-1.137308,-1.137308,-1.137308,-1.137308 +-1.124808,-1.124808,-1.124808,-1.124808,-1.124808,-1.124808 +-1.112308,-1.112308,-1.112308,-1.112308,-1.112308,-1.112308 +-1.099808,-1.099808,-1.099808,-1.099808,-1.099808,-1.099808 +-1.087308,-1.087308,-1.087308,-1.087308,-1.087308,-1.087308 +-1.074808,-1.074808,-1.074808,-1.074808,-1.074808,-1.074808 +-1.062308,-1.062308,-1.062308,-1.062308,-1.062308,-1.062308 +-1.049808,-1.049808,-1.049808,-1.049808,-1.049808,-1.049808 +-1.037308,-1.037308,-1.037308,-1.037308,-1.037308,-1.037308 +-1.024808,-1.024808,-1.024808,-1.024808,-1.024808,-1.024808 +-1.012308,-1.012308,-1.012308,-1.012308,-1.012308,-1.012308 +-0.999808,-0.999808,-0.999808,-0.999808,-0.999808,-0.999808 +-0.987308,-0.987308,-0.987308,-0.987308,-0.987308,-0.987308 +-0.974808,-0.974808,-0.974808,-0.974808,-0.974808,-0.974808 +-0.962308,-0.962308,-0.962308,-0.962308,-0.962308,-0.962308 +-0.949808,-0.949808,-0.949808,-0.949808,-0.949808,-0.949808 +-0.937308,-0.937308,-0.937308,-0.937308,-0.937308,-0.937308 +-0.924808,-0.924808,-0.924808,-0.924808,-0.924808,-0.924808 +-0.912308,-0.912308,-0.912308,-0.912308,-0.912308,-0.912308 +-0.899808,-0.899808,-0.899808,-0.899808,-0.899808,-0.899808 +-0.887308,-0.887308,-0.887308,-0.887308,-0.887308,-0.887308 +-0.874808,-0.874808,-0.874808,-0.874808,-0.874808,-0.874808 +-0.862308,-0.862308,-0.862308,-0.862308,-0.862308,-0.862308 +-0.849808,-0.849808,-0.849808,-0.849808,-0.849808,-0.849808 +-0.837308,-0.837308,-0.837308,-0.837308,-0.837308,-0.837308 +-0.824808,-0.824808,-0.824808,-0.824808,-0.824808,-0.824808 +-0.812308,-0.812308,-0.812308,-0.812308,-0.812308,-0.812308 +-0.799808,-0.799808,-0.799808,-0.799808,-0.799808,-0.799808 +-0.787308,-0.787308,-0.787308,-0.787308,-0.787308,-0.787308 +-0.774808,-0.774808,-0.774808,-0.774808,-0.774808,-0.774808 +-0.762308,-0.762308,-0.762308,-0.762308,-0.762308,-0.762308 +-0.749808,-0.749808,-0.749808,-0.749808,-0.749808,-0.749808 +-0.737308,-0.737308,-0.737308,-0.737308,-0.737308,-0.737308 +-0.724808,-0.724808,-0.724808,-0.724808,-0.724808,-0.724808 +-0.712308,-0.712308,-0.712308,-0.712308,-0.712308,-0.712308 +-0.699808,-0.699808,-0.699808,-0.699808,-0.699808,-0.699808 +-0.687308,-0.687308,-0.687308,-0.687308,-0.687308,-0.687308 +-0.674808,-0.674808,-0.674808,-0.674808,-0.674808,-0.674808 +-0.662308,-0.662308,-0.662308,-0.662308,-0.662308,-0.662308 +-0.649808,-0.649808,-0.649808,-0.649808,-0.649808,-0.649808 +-0.637308,-0.637308,-0.637308,-0.637308,-0.637308,-0.637308 +-0.624808,-0.624808,-0.624808,-0.624808,-0.624808,-0.624808 +-0.612308,-0.612308,-0.612308,-0.612308,-0.612308,-0.612308 +-0.599808,-0.599808,-0.599808,-0.599808,-0.599808,-0.599808 +-0.587308,-0.587308,-0.587308,-0.587308,-0.587308,-0.587308 +-0.574808,-0.574808,-0.574808,-0.574808,-0.574808,-0.574808 +-0.562308,-0.562308,-0.562308,-0.562308,-0.562308,-0.562308 +-0.549808,-0.549808,-0.549808,-0.549808,-0.549808,-0.549808 +-0.537308,-0.537308,-0.537308,-0.537308,-0.537308,-0.537308 +-0.524808,-0.524808,-0.524808,-0.524808,-0.524808,-0.524808 +-0.512308,-0.512308,-0.512308,-0.512308,-0.512308,-0.512308 +-0.499808,-0.499808,-0.499808,-0.499808,-0.499808,-0.499808 +-0.487308,-0.487308,-0.487308,-0.487308,-0.487308,-0.487308 +-0.474808,-0.474808,-0.474808,-0.474808,-0.474808,-0.474808 +-0.462308,-0.462308,-0.462308,-0.462308,-0.462308,-0.462308 +-0.449808,-0.449808,-0.449808,-0.449808,-0.449808,-0.449808 +-0.437308,-0.437308,-0.437308,-0.437308,-0.437308,-0.437308 +-0.424808,-0.424808,-0.424808,-0.424808,-0.424808,-0.424808 +-0.412308,-0.412308,-0.412308,-0.412308,-0.412308,-0.412308 +-0.399808,-0.399808,-0.399808,-0.399808,-0.399808,-0.399808 +-0.387308,-0.387308,-0.387308,-0.387308,-0.387308,-0.387308 +-0.374808,-0.374808,-0.374808,-0.374808,-0.374808,-0.374808 +-0.362308,-0.362308,-0.362308,-0.362308,-0.362308,-0.362308 +-0.349808,-0.349808,-0.349808,-0.349808,-0.349808,-0.349808 +-0.337308,-0.337308,-0.337308,-0.337308,-0.337308,-0.337308 +-0.324808,-0.324808,-0.324808,-0.324808,-0.324808,-0.324808 +-0.312308,-0.312308,-0.312308,-0.312308,-0.312308,-0.312308 +-0.299808,-0.299808,-0.299808,-0.299808,-0.299808,-0.299808 +-0.287308,-0.287308,-0.287308,-0.287308,-0.287308,-0.287308 +-0.274809,-0.274809,-0.274809,-0.274809,-0.274809,-0.274809 +-0.262319,-0.262319,-0.262319,-0.262319,-0.262319,-0.262319 +-0.249864,-0.249864,-0.249864,-0.249864,-0.249864,-0.249864 +-0.237469,-0.237469,-0.237469,-0.237469,-0.237469,-0.237469 +-0.225158,-0.225158,-0.225158,-0.225158,-0.225158,-0.225158 +-0.212956,-0.212956,-0.212956,-0.212956,-0.212956,-0.212956 +-0.200889,-0.200889,-0.200889,-0.200889,-0.200889,-0.200889 +-0.188981,-0.188981,-0.188981,-0.188981,-0.188981,-0.188981 +-0.177257,-0.177257,-0.177257,-0.177257,-0.177257,-0.177257 +-0.165743,-0.165743,-0.165743,-0.165743,-0.165743,-0.165743 +-0.154463,-0.154463,-0.154463,-0.154463,-0.154463,-0.154463 +-0.143443,-0.143443,-0.143443,-0.143443,-0.143443,-0.143443 +-0.132707,-0.132707,-0.132707,-0.132707,-0.132707,-0.132707 +-0.12228,-0.12228,-0.12228,-0.12228,-0.12228,-0.12228 +-0.112188,-0.112188,-0.112188,-0.112188,-0.112188,-0.112188 +-0.102455,-0.102455,-0.102455,-0.102455,-0.102455,-0.102455 +-0.093107,-0.093107,-0.093107,-0.093107,-0.093107,-0.093107 +-0.084168,-0.084168,-0.084168,-0.084168,-0.084168,-0.084168 +-0.075663,-0.075663,-0.075663,-0.075663,-0.075663,-0.075663 +-0.067618,-0.067618,-0.067618,-0.067618,-0.067618,-0.067618 +-0.060057,-0.060057,-0.060057,-0.060057,-0.060057,-0.060057 +-0.053006,-0.053006,-0.053006,-0.053006,-0.053006,-0.053006 +-0.046489,-0.046489,-0.046489,-0.046489,-0.046489,-0.046489 +-0.040523,-0.040523,-0.040523,-0.040523,-0.040523,-0.040523 +-0.03509,-0.03509,-0.03509,-0.03509,-0.03509,-0.03509 +-0.030166,-0.030166,-0.030166,-0.030166,-0.030166,-0.030166 +-0.025726,-0.025726,-0.025726,-0.025726,-0.025726,-0.025726 +-0.021744,-0.021744,-0.021744,-0.021744,-0.021744,-0.021744 +-0.018196,-0.018196,-0.018196,-0.018196,-0.018196,-0.018196 +-0.015056,-0.015056,-0.015056,-0.015056,-0.015056,-0.015056 +-0.012301,-0.012301,-0.012301,-0.012301,-0.012301,-0.012301 +-0.009903,-0.009903,-0.009903,-0.009903,-0.009903,-0.009903 +-0.00784,-0.00784,-0.00784,-0.00784,-0.00784,-0.00784 +-0.006085,-0.006085,-0.006085,-0.006085,-0.006085,-0.006085 +-0.004613,-0.004613,-0.004613,-0.004613,-0.004613,-0.004613 +-0.003401,-0.003401,-0.003401,-0.003401,-0.003401,-0.003401 +-0.002422,-0.002422,-0.002422,-0.002422,-0.002422,-0.002422 +-0.001651,-0.001651,-0.001651,-0.001651,-0.001651,-0.001651 +-0.001065,-0.001065,-0.001065,-0.001065,-0.001065,-0.001065 +-0.000636,-0.000636,-0.000636,-0.000636,-0.000636,-0.000636 +-0.000342,-0.000342,-0.000342,-0.000342,-0.000342,-0.000342 +-0.000156,-0.000156,-0.000156,-0.000156,-0.000156,-0.000156 +-0.000054,-0.000054,-0.000054,-0.000054,-0.000054,-0.000054 +-0.00001,-0.00001,-0.00001,-0.00001,-0.00001,-0.00001 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 +0,0,0,0,0,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data1_zy.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data1_zy.offt new file mode 100644 index 00000000..8fcdd6bb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data1_zy.offt @@ -0,0 +1,40543 @@ +1.5291e-06,6.9277e-06,7.5345e-07,-5.4702e-06,0,-2.2783e-06 +1.4137e-06,6.8123e-06,8.6888e-07,-5.3548e-06,1.1543e-07,-2.1629e-06 +-2.2975e-06,3.1012e-06,4.58e-06,-1.6436e-06,3.8266e-06,1.5483e-06 +-1.6899e-05,-1.15e-05,1.9181e-05,1.2957e-05,1.8428e-05,1.6149e-05 +-4.989e-05,-4.4491e-05,5.2172e-05,4.5949e-05,5.1419e-05,4.9141e-05 +-0.00010877,-0.00010337,0.00011105,0.00010483,0.0001103,0.00010802 +-0.00020104,-0.00019564,0.00020332,0.0001971,0.00020257,0.00020029 +-0.0003342,-0.0003288,0.00033648,0.00033026,0.00033573,0.00033345 +-0.00051575,-0.00051035,0.00051804,0.00051181,0.00051728,0.00051501 +-0.0007532,-0.0007478,0.00075472,0.00074925,0.00075472,0.00075245 +-0.001054,-0.0010486,0.0010446,0.0010501,0.0010556,0.0010533 +-0.0014257,-0.0014203,0.0013803,0.0014218,0.0014273,0.001425 +-0.0018759,-0.0018705,0.0017543,0.0018719,0.0018774,0.0018751 +-0.0024119,-0.0024065,0.0021591,0.0024079,0.0024134,0.0024111 +-0.0030413,-0.0030359,0.0025872,0.0030373,0.0030428,0.0030405 +-0.0037715,-0.0037658,0.0030311,0.0037676,0.0037731,0.0037708 +-0.0046102,-0.0045966,0.0034833,0.0046063,0.0046117,0.0046095 +-0.0055648,-0.005521,0.0039372,0.0055608,0.0055663,0.005564 +-0.0066427,-0.0065314,0.004391,0.0066388,0.0066442,0.006642 +-0.0078516,-0.0076205,0.0048449,0.0078476,0.0078531,0.0078508 +-0.0091988,-0.0087806,0.0052988,0.0091948,0.0092003,0.009198 +-0.010692,-0.010004,0.0057527,0.010688,0.010693,0.010691 +-0.012335,-0.011284,0.0062066,0.012331,0.012336,0.012334 +-0.014127,-0.012613,0.0066605,0.014123,0.014129,0.014127 +-0.01607,-0.013982,0.0071143,0.016066,0.016072,0.016069 +-0.018163,-0.015385,0.0075682,0.018154,0.018165,0.018162 +-0.020406,-0.016815,0.0080221,0.020379,0.020407,0.020405 +-0.022798,-0.018263,0.008476,0.022735,0.0228,0.022798 +-0.025338,-0.019722,0.0089299,0.025214,0.025343,0.025341 +-0.028017,-0.021184,0.0093838,0.027808,0.028036,0.028032 +-0.030827,-0.022647,0.0098376,0.03051,0.030878,0.030867 +-0.033763,-0.02411,0.010292,0.033312,0.033871,0.033837 +-0.036815,-0.025573,0.010745,0.036208,0.037014,0.036935 +-0.039976,-0.027036,0.011199,0.039188,0.040307,0.040153 +-0.043239,-0.028499,0.011653,0.042246,0.04375,0.043484 +-0.046597,-0.029962,0.012107,0.045375,0.047343,0.04692 +-0.050042,-0.031425,0.012561,0.048566,0.051085,0.050455 +-0.053566,-0.032887,0.013015,0.051813,0.054978,0.054079 +-0.057162,-0.03435,0.013469,0.055108,0.059021,0.057787 +-0.060822,-0.035813,0.013923,0.058443,0.063214,0.06157 +-0.06454,-0.037276,0.014377,0.061811,0.067557,0.065421 +-0.068306,-0.038739,0.01483,0.065204,0.072049,0.069332 +-0.072115,-0.040202,0.015284,0.068615,0.076692,0.073296 +-0.075958,-0.041665,0.015738,0.072036,0.081485,0.077305 +-0.079828,-0.043128,0.016192,0.075461,0.086428,0.081352 +-0.083718,-0.04459,0.016646,0.078885,0.091521,0.08543 +-0.087619,-0.046053,0.0171,0.08231,0.096763,0.089531 +-0.091525,-0.047516,0.017554,0.085734,0.10216,0.093646 +-0.095431,-0.048979,0.018008,0.089159,0.1077,0.09777 +-0.099337,-0.050442,0.018461,0.092583,0.11339,0.10189 +-0.10324,-0.051905,0.018915,0.096008,0.11923,0.10602 +-0.10715,-0.053368,0.019369,0.099433,0.12523,0.11015 +-0.11106,-0.054831,0.019823,0.10286,0.13137,0.11427 +-0.11496,-0.056294,0.020277,0.10628,0.13766,0.1184 +-0.11887,-0.057757,0.020731,0.10971,0.14411,0.12252 +-0.12277,-0.059219,0.021185,0.11313,0.1507,0.12665 +-0.12668,-0.060682,0.021639,0.11656,0.15744,0.13077 +-0.13059,-0.062145,0.022093,0.11998,0.16433,0.1349 +-0.13449,-0.063608,0.022546,0.1234,0.17138,0.13902 +-0.1384,-0.065071,0.023,0.12683,0.17857,0.14315 +-0.1423,-0.066534,0.023454,0.13025,0.18591,0.14727 +-0.14621,-0.067997,0.023908,0.13368,0.1934,0.1514 +-0.15012,-0.069459,0.024362,0.1371,0.20105,0.15552 +-0.15402,-0.070922,0.024816,0.14053,0.20884,0.15965 +-0.15793,-0.072385,0.02527,0.14395,0.21678,0.16377 +-0.16183,-0.073848,0.025724,0.14738,0.22488,0.1679 +-0.16574,-0.075311,0.026177,0.1508,0.23312,0.17202 +-0.16965,-0.076774,0.026631,0.15423,0.24151,0.17615 +-0.17355,-0.078237,0.027085,0.15765,0.25005,0.18027 +-0.17746,-0.0797,0.027539,0.16107,0.25874,0.1844 +-0.18136,-0.081163,0.027993,0.1645,0.26756,0.18852 +-0.18527,-0.082626,0.028447,0.16792,0.27652,0.19265 +-0.18918,-0.084088,0.028901,0.17135,0.28559,0.19677 +-0.19308,-0.085551,0.029355,0.17477,0.29478,0.2009 +-0.19699,-0.087014,0.029809,0.1782,0.30407,0.20503 +-0.20089,-0.088477,0.030263,0.18162,0.31346,0.20915 +-0.2048,-0.08994,0.030716,0.18505,0.32295,0.21327 +-0.20871,-0.091403,0.03117,0.18847,0.33252,0.2174 +-0.21261,-0.092866,0.031624,0.1919,0.34216,0.22152 +-0.21652,-0.094329,0.032078,0.19532,0.35188,0.22565 +-0.22043,-0.095792,0.032532,0.19875,0.36166,0.22978 +-0.22433,-0.097254,0.032986,0.20217,0.37149,0.2339 +-0.22824,-0.098717,0.03344,0.20559,0.38136,0.23803 +-0.23214,-0.10018,0.033894,0.20902,0.39128,0.24215 +-0.23605,-0.10164,0.034347,0.21244,0.40123,0.24628 +-0.23996,-0.10311,0.034801,0.21587,0.4112,0.2504 +-0.24386,-0.10457,0.035255,0.21929,0.42119,0.25453 +-0.24777,-0.10603,0.035709,0.22272,0.43119,0.25865 +-0.25167,-0.10749,0.036163,0.22614,0.44119,0.26278 +-0.25558,-0.10896,0.036617,0.22957,0.45119,0.2669 +-0.25949,-0.11042,0.037071,0.23299,0.46119,0.27103 +-0.26339,-0.11188,0.037525,0.23641,0.47119,0.27515 +-0.2673,-0.11335,0.037978,0.23984,0.48119,0.27928 +-0.2712,-0.11481,0.038432,0.24326,0.49119,0.2834 +-0.27511,-0.11627,0.038886,0.24669,0.50119,0.28753 +-0.27902,-0.11774,0.03934,0.25011,0.51119,0.29165 +-0.28292,-0.1192,0.039794,0.25354,0.52119,0.29578 +-0.28683,-0.12066,0.040248,0.25696,0.53119,0.2999 +-0.29074,-0.12212,0.040702,0.26039,0.54119,0.30403 +-0.29464,-0.12359,0.041156,0.26381,0.55119,0.30815 +-0.29855,-0.12505,0.04161,0.26724,0.56119,0.31228 +-0.30245,-0.12651,0.042063,0.27066,0.57119,0.3164 +-0.30636,-0.12798,0.042517,0.27409,0.58119,0.32053 +-0.31027,-0.12944,0.042971,0.27751,0.59119,0.32466 +-0.31417,-0.1309,0.043425,0.28093,0.60119,0.32878 +-0.31808,-0.13236,0.043879,0.28436,0.61119,0.33291 +-0.32198,-0.13383,0.044333,0.28778,0.62119,0.33703 +-0.32589,-0.13529,0.044787,0.29121,0.63119,0.34115 +-0.3298,-0.13675,0.045241,0.29463,0.64119,0.34528 +-0.3337,-0.13822,0.045694,0.29806,0.65119,0.34941 +-0.33761,-0.13968,0.046148,0.30148,0.66119,0.35353 +-0.34151,-0.14114,0.046602,0.30491,0.67119,0.35766 +-0.34542,-0.1426,0.047056,0.30833,0.68119,0.36178 +-0.34933,-0.14407,0.04751,0.31176,0.69119,0.36591 +-0.35323,-0.14553,0.047964,0.31518,0.70119,0.37003 +-0.35714,-0.14699,0.048418,0.3186,0.71119,0.37416 +-0.36105,-0.14846,0.048872,0.32203,0.72119,0.37828 +-0.36495,-0.14992,0.049326,0.32545,0.73119,0.38241 +-0.36886,-0.15138,0.049779,0.32888,0.74119,0.38653 +-0.37276,-0.15284,0.050233,0.3323,0.75119,0.39066 +-0.37667,-0.15431,0.050687,0.33573,0.76119,0.39478 +-0.38057,-0.15577,0.051141,0.33915,0.77119,0.39891 +-0.38448,-0.15723,0.051595,0.34258,0.78119,0.40303 +-0.38839,-0.1587,0.052049,0.346,0.79119,0.40716 +-0.39229,-0.16016,0.052503,0.34942,0.80119,0.41128 +-0.3962,-0.16162,0.052957,0.35285,0.81119,0.41541 +-0.4001,-0.16308,0.053411,0.35627,0.82119,0.41953 +-0.40401,-0.16455,0.053865,0.3597,0.83119,0.42366 +-0.40792,-0.16601,0.054318,0.36312,0.84119,0.42778 +-0.41182,-0.16747,0.054772,0.36655,0.85119,0.43191 +-0.41573,-0.16894,0.055226,0.36997,0.86119,0.43603 +-0.41964,-0.1704,0.05568,0.3734,0.87119,0.44016 +-0.42354,-0.17186,0.056134,0.37682,0.88119,0.44428 +-0.42745,-0.17332,0.056588,0.38025,0.89119,0.44841 +-0.43135,-0.17479,0.057042,0.38367,0.90119,0.45254 +-0.43526,-0.17625,0.057496,0.3871,0.91119,0.45666 +-0.43917,-0.17771,0.057949,0.39052,0.92119,0.46079 +-0.44307,-0.17918,0.058403,0.39394,0.93119,0.46491 +-0.44698,-0.18064,0.058857,0.39737,0.94119,0.46904 +-0.45088,-0.1821,0.059311,0.40079,0.95119,0.47316 +-0.45479,-0.18357,0.059765,0.40422,0.96119,0.47729 +-0.4587,-0.18503,0.060219,0.40764,0.97119,0.48141 +-0.4626,-0.18649,0.060673,0.41107,0.98119,0.48554 +-0.46651,-0.18795,0.061127,0.41449,0.99119,0.48966 +-0.47042,-0.18942,0.061581,0.41792,1.0012,0.49379 +-0.47432,-0.19088,0.062034,0.42134,1.0112,0.49791 +-0.47823,-0.19234,0.062488,0.42477,1.0212,0.50204 +-0.48213,-0.19381,0.062942,0.42819,1.0312,0.50616 +-0.48604,-0.19527,0.063396,0.43161,1.0412,0.51029 +-0.48995,-0.19673,0.06385,0.43504,1.0512,0.51441 +-0.49385,-0.19819,0.064304,0.43846,1.0612,0.51854 +-0.49776,-0.19966,0.064758,0.44189,1.0712,0.52266 +-0.50166,-0.20112,0.065212,0.44531,1.0812,0.52679 +-0.50557,-0.20258,0.065666,0.44874,1.0912,0.53091 +-0.50948,-0.20405,0.066119,0.45216,1.1012,0.53504 +-0.51338,-0.20551,0.066573,0.45559,1.1112,0.53916 +-0.51729,-0.20697,0.067027,0.45901,1.1212,0.54329 +-0.52119,-0.20843,0.067481,0.46243,1.1312,0.54741 +-0.5251,-0.2099,0.067935,0.46586,1.1412,0.55154 +-0.52901,-0.21136,0.068389,0.46928,1.1512,0.55566 +-0.53291,-0.21282,0.068843,0.47271,1.1612,0.55979 +-0.53682,-0.21429,0.069297,0.47613,1.1712,0.56392 +-0.54072,-0.21575,0.06975,0.47956,1.1812,0.56804 +-0.54463,-0.21721,0.070204,0.48298,1.1912,0.57217 +-0.54854,-0.21867,0.070658,0.48641,1.2012,0.57629 +-0.55244,-0.22014,0.071112,0.48983,1.2112,0.58042 +-0.55635,-0.2216,0.071566,0.49326,1.2212,0.58454 +-0.56025,-0.22306,0.07202,0.49668,1.2312,0.58867 +-0.56416,-0.22453,0.072474,0.50011,1.2412,0.59279 +-0.56807,-0.22599,0.072928,0.50353,1.2512,0.59692 +-0.57197,-0.22745,0.073382,0.50695,1.2612,0.60104 +-0.57588,-0.22891,0.073835,0.51038,1.2712,0.60517 +-0.57978,-0.23038,0.074289,0.5138,1.2812,0.60929 +-0.58369,-0.23184,0.074743,0.51723,1.2912,0.61342 +-0.5876,-0.2333,0.075197,0.52065,1.3012,0.61754 +-0.5915,-0.23477,0.075651,0.52408,1.3112,0.62167 +-0.59541,-0.23623,0.076105,0.5275,1.3212,0.62579 +-0.59932,-0.23769,0.076559,0.53093,1.3312,0.62992 +-0.60322,-0.23915,0.077013,0.53435,1.3412,0.63404 +-0.60713,-0.24062,0.077466,0.53778,1.3512,0.63817 +-0.61103,-0.24208,0.07792,0.5412,1.3612,0.64229 +-0.61494,-0.24354,0.078374,0.54462,1.3712,0.64642 +-0.61885,-0.24501,0.078828,0.54805,1.3812,0.65054 +-0.62275,-0.24647,0.079282,0.55147,1.3912,0.65467 +-0.62666,-0.24793,0.079736,0.5549,1.4012,0.65879 +-0.63056,-0.24939,0.08019,0.55832,1.4112,0.66292 +-0.63447,-0.25086,0.080644,0.56175,1.4212,0.66704 +-0.63838,-0.25232,0.081098,0.56517,1.4311,0.67117 +-0.64228,-0.25378,0.081551,0.5686,1.4411,0.67529 +-0.64619,-0.25525,0.082005,0.57202,1.451,0.67942 +-0.65009,-0.25671,0.082459,0.57544,1.4609,0.68354 +-0.654,-0.25817,0.082913,0.57887,1.4707,0.68767 +-0.65791,-0.25964,0.083367,0.58229,1.4805,0.6918 +-0.66181,-0.2611,0.083821,0.58572,1.4902,0.69592 +-0.66572,-0.26256,0.084275,0.58914,1.4999,0.70005 +-0.66963,-0.26402,0.084729,0.59257,1.5095,0.70417 +-0.67353,-0.26549,0.085182,0.59599,1.519,0.7083 +-0.67744,-0.26695,0.085636,0.59942,1.5284,0.71242 +-0.68134,-0.26841,0.08609,0.60284,1.5376,0.71655 +-0.68525,-0.26987,0.086544,0.60627,1.5469,0.72067 +-0.68916,-0.27134,0.086998,0.60969,1.5559,0.7248 +-0.69306,-0.2728,0.087452,0.61311,1.5649,0.72892 +-0.69697,-0.27426,0.087906,0.61654,1.5737,0.73305 +-0.70087,-0.27573,0.08836,0.61996,1.5824,0.73717 +-0.70478,-0.27719,0.088814,0.62339,1.591,0.7413 +-0.70869,-0.27865,0.089267,0.62681,1.5994,0.74542 +-0.71259,-0.28012,0.089721,0.63024,1.6076,0.74955 +-0.7165,-0.28158,0.090175,0.63366,1.6157,0.75367 +-0.7204,-0.28304,0.090629,0.63709,1.6237,0.7578 +-0.72431,-0.2845,0.091083,0.64051,1.6315,0.76192 +-0.72822,-0.28597,0.091537,0.64394,1.6392,0.76605 +-0.73212,-0.28743,0.091991,0.64736,1.6466,0.77017 +-0.73603,-0.28889,0.092445,0.65078,1.654,0.7743 +-0.73994,-0.29035,0.092899,0.65421,1.6612,0.77842 +-0.74384,-0.29182,0.093353,0.65763,1.6683,0.78255 +-0.74775,-0.29328,0.093806,0.66106,1.6752,0.78667 +-0.75165,-0.29474,0.09426,0.66448,1.6819,0.7908 +-0.75556,-0.29621,0.094714,0.66791,1.6885,0.79492 +-0.75946,-0.29767,0.095168,0.67133,1.695,0.79905 +-0.76337,-0.29913,0.095622,0.67476,1.7013,0.80317 +-0.76728,-0.3006,0.096076,0.67818,1.7074,0.8073 +-0.77118,-0.30206,0.09653,0.68161,1.7134,0.81142 +-0.77509,-0.30352,0.096984,0.68503,1.7193,0.81555 +-0.77899,-0.30498,0.097437,0.68846,1.725,0.81968 +-0.7829,-0.30645,0.097891,0.69188,1.7306,0.8238 +-0.78681,-0.30791,0.098345,0.6953,1.736,0.82793 +-0.79071,-0.30937,0.098799,0.69873,1.7412,0.83205 +-0.79462,-0.31084,0.099253,0.70215,1.7463,0.83618 +-0.79852,-0.3123,0.099707,0.70558,1.7513,0.8403 +-0.80242,-0.31376,0.10016,0.709,1.7561,0.84443 +-0.80629,-0.31522,0.10061,0.71243,1.7607,0.84855 +-0.81014,-0.31669,0.10107,0.71585,1.7652,0.85268 +-0.81396,-0.31815,0.10152,0.71928,1.7696,0.8568 +-0.81774,-0.31961,0.10198,0.7227,1.7738,0.86093 +-0.82147,-0.32108,0.10243,0.72613,1.7778,0.86505 +-0.82515,-0.32254,0.10288,0.72955,1.7817,0.86918 +-0.82877,-0.324,0.10334,0.73298,1.7855,0.8733 +-0.83231,-0.32547,0.10379,0.7364,1.7891,0.87743 +-0.83578,-0.32693,0.10425,0.73982,1.7926,0.88155 +-0.83916,-0.32839,0.1047,0.74325,1.7958,0.88568 +-0.84245,-0.32985,0.10515,0.74667,1.799,0.8898 +-0.84564,-0.33132,0.10561,0.7501,1.802,0.89393 +-0.84873,-0.33278,0.10606,0.75352,1.8049,0.89805 +-0.8517,-0.33424,0.10651,0.75695,1.8076,0.90218 +-0.85454,-0.3357,0.10697,0.76037,1.8101,0.9063 +-0.85726,-0.33717,0.10742,0.7638,1.8125,0.91043 +-0.85984,-0.33863,0.10788,0.76722,1.8148,0.91456 +-0.86228,-0.34009,0.10833,0.77065,1.8169,0.91868 +-0.86456,-0.34156,0.10879,0.77407,1.8188,0.9228 +-0.86669,-0.34302,0.10924,0.77749,1.8206,0.92691 +-0.86868,-0.34448,0.10969,0.78092,1.8223,0.931 +-0.87052,-0.34595,0.11015,0.78434,1.8238,0.93507 +-0.8722,-0.34741,0.1106,0.78777,1.8252,0.9391 +-0.87374,-0.34887,0.11105,0.79119,1.8264,0.9431 +-0.87512,-0.35033,0.11151,0.79462,1.8274,0.94704 +-0.87636,-0.3518,0.11196,0.79804,1.8283,0.95093 +-0.87744,-0.35326,0.11242,0.80147,1.8291,0.95475 +-0.87838,-0.35472,0.11287,0.80489,1.8297,0.95851 +-0.87916,-0.35618,0.11332,0.80832,1.8301,0.96218 +-0.8798,-0.35765,0.11378,0.81174,1.8304,0.96577 +-0.88028,-0.35911,0.11423,0.81516,1.8306,0.96927 +-0.88062,-0.36057,0.11468,0.81859,1.8306,0.97266 +-0.8808,-0.36204,0.11514,0.82201,1.8304,0.97595 +-0.88084,-0.3635,0.11559,0.82544,1.8301,0.97912 +-0.88072,-0.36496,0.11605,0.82886,1.8297,0.98217 +-0.88046,-0.36643,0.1165,0.83229,1.8291,0.98508 +-0.88004,-0.36789,0.11695,0.83571,1.8284,0.98786 +-0.87948,-0.36935,0.11741,0.83914,1.8275,0.9905 +-0.87876,-0.37081,0.11786,0.84256,1.8264,0.99298 +-0.8779,-0.37228,0.11832,0.84598,1.8252,0.99531 +-0.87688,-0.37374,0.11877,0.84941,1.8239,0.9975 +-0.87572,-0.3752,0.11922,0.85283,1.8224,0.99953 +-0.8744,-0.37667,0.11968,0.85626,1.8207,1.0014 +-0.87294,-0.37813,0.12013,0.85968,1.8189,1.0031 +-0.87132,-0.37959,0.12059,0.86311,1.817,1.0047 +-0.86956,-0.38105,0.12104,0.86653,1.8149,1.0062 +-0.86764,-0.38252,0.12149,0.86996,1.8126,1.0074 +-0.86558,-0.38398,0.12195,0.87339,1.8102,1.0086 +-0.86337,-0.38544,0.1224,0.87683,1.8077,1.0096 +-0.861,-0.38691,0.12286,0.88029,1.805,1.0104 +-0.85849,-0.38837,0.12331,0.88378,1.8022,1.0111 +-0.85582,-0.38983,0.12376,0.88731,1.7992,1.0116 +-0.85301,-0.39129,0.12419,0.89088,1.796,1.012 +-0.85005,-0.39276,0.1246,0.8945,1.7927,1.0122 +-0.84696,-0.39422,0.12498,0.89817,1.7893,1.0123 +-0.84374,-0.39568,0.12533,0.90192,1.7857,1.0122 +-0.8404,-0.39716,0.12563,0.90573,1.7819,1.012 +-0.83695,-0.39864,0.12588,0.90963,1.778,1.0117 +-0.83339,-0.40015,0.12607,0.91361,1.774,1.0111 +-0.82974,-0.4017,0.1262,0.91768,1.7698,1.0105 +-0.82599,-0.40327,0.12627,0.92187,1.7654,1.0097 +-0.82216,-0.4049,0.12629,0.92615,1.761,1.0089 +-0.81826,-0.40657,0.12627,0.93056,1.7563,1.0079 +-0.81429,-0.40831,0.12621,0.93507,1.7515,1.0068 +-0.81026,-0.41012,0.12613,0.93968,1.7466,1.0056 +-0.80617,-0.41199,0.12602,0.94438,1.7415,1.0043 +-0.80204,-0.41393,0.12591,0.94917,1.7363,1.0029 +-0.79788,-0.41593,0.12579,0.95404,1.7309,1.0015 +-0.79368,-0.41798,0.12567,0.95897,1.7254,0.99996 +-0.78946,-0.42007,0.12557,0.96397,1.7199,0.9984 +-0.78523,-0.4222,0.12548,0.96902,1.7142,0.99678 +-0.78098,-0.42436,0.12541,0.97412,1.7084,0.99512 +-0.77674,-0.42653,0.12538,0.97926,1.7026,0.99343 +-0.7725,-0.42872,0.12539,0.98443,1.6966,0.9917 +-0.76828,-0.43092,0.12545,0.98962,1.6906,0.98995 +-0.76409,-0.43311,0.12556,0.99483,1.6845,0.98819 +-0.75992,-0.43529,0.12573,1.0001,1.6783,0.98642 +-0.75579,-0.43746,0.12598,1.0053,1.6721,0.98466 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74762,-0.44176,0.12669,1.0157,1.6596,0.98121 +-0.74363,-0.44383,0.12718,1.0209,1.6533,0.97948 +-0.7397,-0.44588,0.12776,1.0261,1.6469,0.97776 +-0.73583,-0.44789,0.12843,1.0313,1.6405,0.97607 +-0.73201,-0.44986,0.12917,1.0364,1.6341,0.97438 +-0.72825,-0.4518,0.13001,1.0416,1.6276,0.97271 +-0.72454,-0.45369,0.13093,1.0467,1.6212,0.97105 +-0.7209,-0.45555,0.13193,1.0518,1.6146,0.96939 +-0.71731,-0.45737,0.13302,1.0569,1.6081,0.96776 +-0.71379,-0.45915,0.13419,1.0621,1.6015,0.96612 +-0.71032,-0.46089,0.13545,1.0671,1.5948,0.9645 +-0.70692,-0.46259,0.1368,1.0722,1.5882,0.96289 +-0.70358,-0.46424,0.13822,1.0773,1.5815,0.96128 +-0.7003,-0.46585,0.13974,1.0824,1.5748,0.95968 +-0.69709,-0.46742,0.14133,1.0874,1.568,0.95809 +-0.69394,-0.46893,0.14302,1.0925,1.5612,0.9565 +-0.69086,-0.47041,0.14478,1.0975,1.5544,0.95492 +-0.68784,-0.47183,0.14663,1.1026,1.5475,0.95334 +-0.68489,-0.47321,0.14856,1.1076,1.5406,0.95176 +-0.68201,-0.47453,0.15057,1.1126,1.5337,0.95019 +-0.67919,-0.47581,0.15267,1.1176,1.5268,0.94861 +-0.67645,-0.47704,0.15485,1.1226,1.5198,0.94704 +-0.67377,-0.47821,0.15711,1.1276,1.5128,0.94546 +-0.67117,-0.47933,0.15945,1.1326,1.5058,0.94389 +-0.66863,-0.4804,0.16188,1.1376,1.4987,0.94231 +-0.66617,-0.48142,0.16438,1.1426,1.4916,0.94073 +-0.66378,-0.48238,0.16696,1.1475,1.4845,0.93915 +-0.66146,-0.48328,0.16963,1.1525,1.4774,0.93757 +-0.65921,-0.48413,0.17237,1.1574,1.4702,0.93597 +-0.65704,-0.48492,0.17519,1.1624,1.463,0.93438 +-0.65494,-0.48565,0.1781,1.1674,1.4558,0.93277 +-0.65291,-0.48632,0.18107,1.1723,1.4485,0.93116 +-0.65096,-0.48693,0.18413,1.1772,1.4413,0.92955 +-0.64908,-0.48749,0.18726,1.1822,1.4339,0.92792 +-0.64728,-0.48798,0.19047,1.1871,1.4266,0.92628 +-0.64556,-0.48841,0.19376,1.192,1.4193,0.92464 +-0.64391,-0.48878,0.19712,1.197,1.4119,0.92298 +-0.64234,-0.48908,0.20056,1.2019,1.4045,0.92131 +-0.64084,-0.48932,0.20406,1.2068,1.397,0.91963 +-0.63942,-0.4895,0.20765,1.2117,1.3896,0.91794 +-0.63808,-0.48961,0.2113,1.2166,1.3821,0.91623 +-0.63682,-0.48965,0.21503,1.2216,1.3746,0.91451 +-0.63563,-0.48963,0.21883,1.2265,1.367,0.91277 +-0.63453,-0.48954,0.22269,1.2314,1.3595,0.91102 +-0.6335,-0.48938,0.22663,1.2363,1.3519,0.90924 +-0.63255,-0.48915,0.23064,1.2412,1.3443,0.90746 +-0.63168,-0.48886,0.23472,1.2461,1.3367,0.90565 +-0.63089,-0.48849,0.23886,1.251,1.329,0.90382 +-0.63018,-0.48806,0.24307,1.2559,1.3213,0.90198 +-0.62954,-0.48755,0.24735,1.2608,1.3136,0.90011 +-0.62899,-0.48697,0.25169,1.2657,1.3059,0.89823 +-0.62852,-0.48632,0.25609,1.2706,1.2982,0.89632 +-0.62812,-0.4856,0.26056,1.2756,1.2904,0.89439 +-0.62781,-0.4848,0.2651,1.2805,1.2826,0.89243 +-0.62757,-0.48393,0.26969,1.2854,1.2748,0.89046 +-0.62742,-0.48299,0.27434,1.2903,1.267,0.88845 +-0.62734,-0.48197,0.27906,1.2952,1.2591,0.88642 +-0.62735,-0.48088,0.28383,1.3001,1.2513,0.88437 +-0.62743,-0.47971,0.28866,1.305,1.2434,0.88229 +-0.62759,-0.47846,0.29355,1.31,1.2354,0.88018 +-0.62784,-0.47714,0.2985,1.3149,1.2275,0.87805 +-0.62816,-0.47574,0.3035,1.3198,1.2195,0.87588 +-0.62856,-0.47426,0.30856,1.3247,1.2116,0.87369 +-0.62904,-0.47271,0.31367,1.3297,1.2036,0.87146 +-0.6296,-0.47108,0.31883,1.3346,1.1955,0.86921 +-0.63024,-0.46937,0.32404,1.3395,1.1875,0.86692 +-0.63096,-0.46758,0.3293,1.3445,1.1794,0.8646 +-0.63175,-0.46571,0.33462,1.3494,1.1714,0.86225 +-0.63263,-0.46376,0.33998,1.3544,1.1633,0.85987 +-0.63358,-0.46173,0.34539,1.3593,1.1551,0.85745 +-0.63461,-0.45962,0.35084,1.3643,1.147,0.855 +-0.63571,-0.45743,0.35634,1.3692,1.1388,0.85252 +-0.6369,-0.45515,0.36188,1.3742,1.1307,0.85 +-0.63816,-0.4528,0.36747,1.3792,1.1225,0.84744 +-0.63949,-0.45037,0.3731,1.3841,1.1143,0.84484 +-0.6409,-0.44785,0.37877,1.3891,1.106,0.84221 +-0.64239,-0.44525,0.38448,1.3941,1.0978,0.83954 +-0.64396,-0.44257,0.39023,1.3991,1.0895,0.83683 +-0.64559,-0.43981,0.39601,1.4041,1.0812,0.83409 +-0.64731,-0.43697,0.40184,1.4091,1.0729,0.8313 +-0.64909,-0.43404,0.40769,1.4141,1.0646,0.82848 +-0.65095,-0.43103,0.41358,1.4191,1.0562,0.82561 +-0.65288,-0.42793,0.41951,1.4241,1.0478,0.8227 +-0.65489,-0.42476,0.42546,1.4291,1.0395,0.81975 +-0.65697,-0.4215,0.43145,1.4341,1.031,0.81676 +-0.65912,-0.41815,0.43746,1.4392,1.0226,0.81373 +-0.66133,-0.41473,0.44351,1.4442,1.0142,0.81065 +-0.66362,-0.41122,0.44958,1.4492,1.0057,0.80753 +-0.66598,-0.40762,0.45567,1.4543,0.99726,0.80437 +-0.66841,-0.40395,0.46179,1.4593,0.98876,0.80116 +-0.67091,-0.40019,0.46794,1.4644,0.98025,0.79791 +-0.67347,-0.39634,0.4741,1.4695,0.97172,0.79461 +-0.6761,-0.39241,0.48029,1.4745,0.96318,0.79126 +-0.6788,-0.3884,0.48649,1.4796,0.95462,0.78787 +-0.68157,-0.38431,0.49272,1.4847,0.94603,0.78444 +-0.68439,-0.38013,0.49896,1.4898,0.93744,0.78095 +-0.68729,-0.37586,0.50522,1.4949,0.92882,0.77742 +-0.69024,-0.37152,0.51149,1.5,0.92019,0.77384 +-0.69326,-0.36709,0.51777,1.5051,0.91154,0.77021 +-0.69635,-0.36258,0.52407,1.5102,0.90287,0.76654 +-0.69949,-0.35798,0.53038,1.5153,0.89419,0.76281 +-0.70269,-0.3533,0.5367,1.5204,0.88549,0.75904 +-0.70595,-0.34854,0.54302,1.5255,0.87677,0.75522 +-0.70928,-0.3437,0.54936,1.5307,0.86803,0.75134 +-0.71266,-0.33877,0.5557,1.5358,0.85928,0.74742 +-0.71609,-0.33377,0.56204,1.5409,0.85051,0.74345 +-0.71959,-0.32868,0.56839,1.5461,0.84173,0.73942 +-0.72313,-0.32351,0.57474,1.5512,0.83293,0.73535 +-0.72674,-0.31825,0.58109,1.5564,0.82411,0.73122 +-0.73039,-0.31292,0.58743,1.5616,0.81527,0.72704 +-0.7341,-0.3075,0.59378,1.5667,0.80642,0.72281 +-0.73786,-0.30201,0.60013,1.5719,0.79755,0.71852 +-0.74167,-0.29643,0.60647,1.5771,0.78867,0.71419 +-0.74554,-0.29078,0.6128,1.5823,0.77977,0.7098 +-0.74945,-0.28504,0.61913,1.5875,0.77085,0.70536 +-0.7534,-0.27922,0.62545,1.5927,0.76192,0.70086 +-0.75741,-0.27333,0.63176,1.5979,0.75297,0.69632 +-0.76146,-0.26736,0.63805,1.6031,0.744,0.69171 +-0.76555,-0.26131,0.64434,1.6083,0.73502,0.68706 +-0.76969,-0.25518,0.65062,1.6135,0.72602,0.68235 +-0.77387,-0.24897,0.65687,1.6187,0.71701,0.67759 +-0.77809,-0.24269,0.66312,1.6239,0.70797,0.67277 +-0.78236,-0.23633,0.66934,1.6291,0.69893,0.6679 +-0.78666,-0.2299,0.67555,1.6343,0.68987,0.66297 +-0.791,-0.22338,0.68174,1.6396,0.68079,0.65799 +-0.79538,-0.2168,0.68791,1.6448,0.67169,0.65295 +-0.79979,-0.21014,0.69406,1.65,0.66258,0.64786 +-0.80424,-0.2034,0.70018,1.6553,0.65346,0.64272 +-0.80872,-0.1966,0.70628,1.6605,0.64432,0.63752 +-0.81324,-0.18972,0.71235,1.6657,0.63516,0.63226 +-0.81779,-0.18276,0.7184,1.671,0.62599,0.62695 +-0.82236,-0.17574,0.72441,1.6762,0.6168,0.62158 +-0.82697,-0.16864,0.7304,1.6814,0.60759,0.61616 +-0.8316,-0.16147,0.73636,1.6867,0.59837,0.61068 +-0.83627,-0.15424,0.74229,1.6919,0.58914,0.60515 +-0.84095,-0.14693,0.74818,1.6972,0.57989,0.59956 +-0.84566,-0.13956,0.75404,1.7024,0.57063,0.59392 +-0.8504,-0.13211,0.75986,1.7076,0.56135,0.58822 +-0.85515,-0.1246,0.76565,1.7129,0.55205,0.58246 +-0.85993,-0.11703,0.7714,1.7181,0.54274,0.57665 +-0.86473,-0.10938,0.77711,1.7234,0.53341,0.57079 +-0.86954,-0.10167,0.78278,1.7286,0.52407,0.56487 +-0.87437,-0.0939,0.78841,1.7338,0.51472,0.55889 +-0.87922,-0.086062,0.794,1.7391,0.50535,0.55286 +-0.88408,-0.078162,0.79954,1.7443,0.49596,0.54677 +-0.88896,-0.070199,0.80505,1.7495,0.48656,0.54063 +-0.89385,-0.062174,0.8105,1.7547,0.47715,0.53444 +-0.89874,-0.054088,0.81591,1.7599,0.46772,0.52818 +-0.90365,-0.045942,0.82127,1.7652,0.45828,0.52188 +-0.90857,-0.037737,0.82658,1.7704,0.44882,0.51552 +-0.91349,-0.029473,0.83184,1.7756,0.43935,0.5091 +-0.91842,-0.021152,0.83705,1.7808,0.42986,0.50263 +-0.92335,-0.012773,0.84221,1.786,0.42037,0.49611 +-0.92828,-0.0043382,0.84732,1.7912,0.41085,0.48953 +-0.93322,0.0041518,0.85237,1.7963,0.40132,0.4829 +-0.93816,0.012696,0.85737,1.8015,0.39178,0.47621 +-0.9431,0.021294,0.86231,1.8067,0.38223,0.46947 +-0.94803,0.029945,0.86719,1.8118,0.37266,0.46268 +-0.95296,0.038648,0.87202,1.817,0.36308,0.45583 +-0.95789,0.047401,0.87679,1.8221,0.35348,0.44893 +-0.96281,0.056205,0.88149,1.8273,0.34388,0.44198 +-0.96772,0.065057,0.88614,1.8324,0.33425,0.43497 +-0.97262,0.073958,0.89072,1.8375,0.32462,0.42792 +-0.97752,0.082907,0.89524,1.8426,0.31497,0.42081 +-0.9824,0.091901,0.8997,1.8477,0.30531,0.41364 +-0.98727,0.10094,0.9041,1.8528,0.29564,0.40643 +-0.99213,0.11003,0.90842,1.8579,0.28596,0.39917 +-0.99697,0.11915,0.91269,1.8629,0.27626,0.39185 +-1.0018,0.12832,0.91688,1.868,0.26655,0.38449 +-1.0066,0.13754,0.92101,1.873,0.25683,0.37707 +-1.0114,0.14679,0.92506,1.878,0.2471,0.3696 +-1.0162,0.15608,0.92905,1.883,0.23735,0.36209 +-1.0209,0.16541,0.93297,1.888,0.2276,0.35452 +-1.0256,0.17478,0.93682,1.893,0.21783,0.3469 +-1.0303,0.18419,0.94059,1.898,0.20805,0.33924 +-1.035,0.19363,0.94429,1.9029,0.19826,0.33153 +-1.0396,0.2031,0.94792,1.9078,0.18846,0.32376 +-1.0443,0.21261,0.95147,1.9128,0.17865,0.31595 +-1.0488,0.22216,0.95495,1.9177,0.16883,0.3081 +-1.0534,0.23173,0.95836,1.9225,0.15899,0.30019 +-1.0579,0.24133,0.96168,1.9274,0.14915,0.29224 +-1.0624,0.25097,0.96493,1.9322,0.1393,0.28425 +-1.0669,0.26063,0.96811,1.937,0.12944,0.2762 +-1.0713,0.27032,0.9712,1.9418,0.11957,0.26811 +-1.0757,0.28003,0.97421,1.9466,0.10969,0.25998 +-1.08,0.28977,0.97715,1.9514,0.099797,0.2518 +-1.0843,0.29954,0.98001,1.9561,0.089898,0.24358 +-1.0886,0.30933,0.98278,1.9608,0.079991,0.23531 +-1.0928,0.31914,0.98547,1.9655,0.070076,0.227 +-1.097,0.32897,0.98809,1.9702,0.060153,0.21865 +-1.1011,0.33882,0.99062,1.9748,0.050222,0.21025 +-1.1052,0.34869,0.99306,1.9794,0.040283,0.20181 +-1.1093,0.35858,0.99542,1.984,0.030336,0.19333 +-1.1133,0.36848,0.9977,1.9886,0.020383,0.18481 +-1.1172,0.3784,0.9999,1.9931,0.010423,0.17625 +-1.1211,0.38834,1.002,1.9976,0.00045562,0.16765 +-1.125,0.39828,1.004,2.0021,-0.0095177,0.159 +-1.1287,0.40824,1.006,2.0066,-0.019497,0.15032 +-1.1325,0.41822,1.0078,2.011,-0.029482,0.1416 +-1.1362,0.4282,1.0096,2.0154,-0.039473,0.13284 +-1.1398,0.43819,1.0113,2.0198,-0.049468,0.12404 +-1.1434,0.44819,1.0129,2.0241,-0.059469,0.11521 +-1.1469,0.45819,1.0144,2.0284,-0.069474,0.10634 +-1.1503,0.4682,1.0158,2.0327,-0.079484,0.097429 +-1.1537,0.47822,1.0171,2.0369,-0.089498,0.088485 +-1.1571,0.48824,1.0184,2.0411,-0.099515,0.079506 +-1.1603,0.49826,1.0195,2.0453,-0.10954,0.070492 +-1.1635,0.50828,1.0206,2.0495,-0.11956,0.061444 +-1.1667,0.51831,1.0216,2.0536,-0.12959,0.052361 +-1.1698,0.52833,1.0225,2.0576,-0.13961,0.043246 +-1.1728,0.53835,1.0233,2.0617,-0.14964,0.034098 +-1.1757,0.54837,1.024,2.0657,-0.15968,0.024917 +-1.1786,0.55838,1.0246,2.0696,-0.16971,0.015705 +-1.1814,0.56839,1.0251,2.0736,-0.17974,0.0064623 +-1.1841,0.57839,1.0255,2.0774,-0.18978,-0.0028112 +-1.1868,0.58839,1.0259,2.0813,-0.19981,-0.012115 +-1.1894,0.59837,1.0262,2.0851,-0.20985,-0.021447 +-1.1919,0.60835,1.0263,2.0889,-0.21988,-0.030809 +-1.1943,0.61832,1.0264,2.0926,-0.22992,-0.040199 +-1.1967,0.62827,1.0264,2.0963,-0.23995,-0.049617 +-1.199,0.63822,1.0263,2.0999,-0.24998,-0.059061 +-1.2012,0.64814,1.0261,2.1035,-0.26001,-0.068532 +-1.2033,0.65806,1.0258,2.1071,-0.27003,-0.07803 +-1.2054,0.66796,1.0254,2.1106,-0.28006,-0.087552 +-1.2074,0.67784,1.025,2.1141,-0.29007,-0.097099 +-1.2093,0.6877,1.0244,2.1175,-0.30009,-0.10667 +-1.2111,0.69754,1.0238,2.1209,-0.3101,-0.11627 +-1.2128,0.70737,1.023,2.1242,-0.32011,-0.12588 +-1.2145,0.71717,1.0222,2.1275,-0.33011,-0.13552 +-1.216,0.72695,1.0213,2.1307,-0.3401,-0.14519 +-1.2175,0.73671,1.0203,2.1339,-0.35009,-0.15487 +-1.2189,0.74644,1.0192,2.1371,-0.36007,-0.16457 +-1.2202,0.75615,1.018,2.1402,-0.37005,-0.1743 +-1.2215,0.76584,1.0168,2.1432,-0.38002,-0.18404 +-1.2226,0.77549,1.0154,2.1462,-0.38998,-0.19381 +-1.2237,0.78512,1.014,2.1492,-0.39993,-0.20359 +-1.2246,0.79472,1.0124,2.1521,-0.40987,-0.21339 +-1.2255,0.80428,1.0108,2.1549,-0.41981,-0.2232 +-1.2263,0.81382,1.0091,2.1577,-0.42973,-0.23303 +-1.227,0.82333,1.0073,2.1604,-0.43965,-0.24288 +-1.2276,0.8328,1.0054,2.1631,-0.44955,-0.25274 +-1.2281,0.84224,1.0034,2.1658,-0.45944,-0.26262 +-1.2286,0.85164,1.0014,2.1683,-0.46932,-0.27251 +-1.2289,0.86101,0.99924,2.1709,-0.47918,-0.28242 +-1.2291,0.87034,0.99702,2.1733,-0.48904,-0.29234 +-1.2293,0.87963,0.9947,2.1757,-0.49888,-0.30227 +-1.2293,0.88889,0.9923,2.1781,-0.50871,-0.31221 +-1.2293,0.8981,0.98982,2.1804,-0.51852,-0.32216 +-1.2292,0.90728,0.98725,2.1826,-0.52831,-0.33213 +-1.229,0.91641,0.9846,2.1848,-0.53809,-0.3421 +-1.2286,0.92551,0.98187,2.1869,-0.54786,-0.35208 +-1.2282,0.93455,0.97906,2.189,-0.55761,-0.36207 +-1.2277,0.94356,0.97616,2.191,-0.56734,-0.37207 +-1.2271,0.95252,0.97318,2.1929,-0.57705,-0.38208 +-1.2264,0.96144,0.97012,2.1948,-0.58674,-0.39209 +-1.2256,0.9703,0.96698,2.1967,-0.59642,-0.40211 +-1.2247,0.97913,0.96376,2.1984,-0.60608,-0.41214 +-1.2237,0.9879,0.96046,2.2001,-0.61571,-0.42217 +-1.2226,0.99663,0.95709,2.2017,-0.62533,-0.4322 +-1.2214,1.0053,0.95363,2.2033,-0.63492,-0.44224 +-1.2202,1.0139,0.9501,2.2048,-0.64449,-0.45228 +-1.2188,1.0225,0.94649,2.2063,-0.65404,-0.46233 +-1.2173,1.031,0.94281,2.2077,-0.66356,-0.47237 +-1.2157,1.0395,0.93905,2.209,-0.67307,-0.48242 +-1.214,1.0479,0.93521,2.2102,-0.68254,-0.49247 +-1.2123,1.0563,0.9313,2.2114,-0.69199,-0.50252 +-1.2104,1.0646,0.92732,2.2125,-0.70142,-0.51257 +-1.2084,1.0728,0.92326,2.2136,-0.71082,-0.52262 +-1.2063,1.081,0.91914,2.2146,-0.7202,-0.53267 +-1.2042,1.0892,0.91494,2.2155,-0.72954,-0.54271 +-1.2019,1.0973,0.91067,2.2163,-0.73886,-0.55276 +-1.1995,1.1053,0.90633,2.2171,-0.74815,-0.5628 +-1.1971,1.1133,0.90193,2.2178,-0.75741,-0.57283 +-1.1945,1.1212,0.89745,2.2185,-0.76664,-0.58287 +-1.1919,1.129,0.89291,2.219,-0.77584,-0.59289 +-1.1891,1.1368,0.8883,2.2195,-0.785,-0.60292 +-1.1862,1.1445,0.88363,2.22,-0.79414,-0.61293 +-1.1833,1.1522,0.87889,2.2203,-0.80324,-0.62294 +-1.1802,1.1598,0.87409,2.2206,-0.81231,-0.63295 +-1.1771,1.1673,0.86922,2.2208,-0.82135,-0.64294 +-1.1738,1.1748,0.8643,2.221,-0.83035,-0.65293 +-1.1705,1.1822,0.85931,2.2211,-0.83931,-0.66291 +-1.1671,1.1896,0.85426,2.2211,-0.84824,-0.67288 +-1.1635,1.1968,0.84915,2.221,-0.85714,-0.68285 +-1.1599,1.2041,0.84398,2.2209,-0.86599,-0.6928 +-1.1562,1.2112,0.83875,2.2207,-0.87481,-0.70274 +-1.1523,1.2183,0.83347,2.2204,-0.88359,-0.71267 +-1.1484,1.2253,0.82813,2.22,-0.89233,-0.72259 +-1.1444,1.2323,0.82274,2.2196,-0.90103,-0.7325 +-1.1403,1.2392,0.81729,2.2191,-0.90969,-0.74239 +-1.1361,1.246,0.81179,2.2185,-0.91831,-0.75227 +-1.1318,1.2527,0.80624,2.2178,-0.92688,-0.76214 +-1.1274,1.2594,0.80063,2.2171,-0.93542,-0.77199 +-1.1229,1.266,0.79498,2.2163,-0.94391,-0.78183 +-1.1183,1.2725,0.78927,2.2154,-0.95235,-0.79166 +-1.1137,1.279,0.78352,2.2145,-0.96076,-0.80147 +-1.1089,1.2854,0.77772,2.2134,-0.96911,-0.81126 +-1.1041,1.2917,0.77188,2.2123,-0.97742,-0.82104 +-1.0991,1.298,0.76599,2.2111,-0.98568,-0.8308 +-1.0941,1.3042,0.76005,2.2099,-0.9939,-0.84054 +-1.089,1.3103,0.75407,2.2085,-1.0021,-0.85027 +-1.0838,1.3164,0.74805,2.2071,-1.0102,-0.85998 +-1.0785,1.3223,0.74199,2.2056,-1.0183,-0.86967 +-1.0731,1.3282,0.73589,2.204,-1.0263,-0.87934 +-1.0676,1.3341,0.72975,2.2024,-1.0342,-0.88899 +-1.062,1.3398,0.72357,2.2007,-1.0422,-0.89862 +-1.0564,1.3455,0.71735,2.1989,-1.05,-0.90823 +-1.0507,1.3511,0.7111,2.197,-1.0578,-0.91782 +-1.0449,1.3566,0.70481,2.195,-1.0656,-0.92739 +-1.039,1.3621,0.69849,2.193,-1.0733,-0.93694 +-1.033,1.3675,0.69213,2.1909,-1.081,-0.94646 +-1.0269,1.3728,0.68575,2.1887,-1.0885,-0.95597 +-1.0208,1.3781,0.67933,2.1864,-1.0961,-0.96545 +-1.0146,1.3832,0.67288,2.1841,-1.1036,-0.97491 +-1.0083,1.3883,0.66641,2.1817,-1.111,-0.98434 +-1.0019,1.3933,0.65991,2.1792,-1.1184,-0.99375 +-0.99544,1.3983,0.65338,2.1766,-1.1257,-1.0031 +-0.98891,1.4032,0.64682,2.1739,-1.1329,-1.0125 +-0.9823,1.408,0.64024,2.1712,-1.1401,-1.0218 +-0.97562,1.4127,0.63364,2.1684,-1.1472,-1.0312 +-0.96886,1.4174,0.62702,2.1655,-1.1543,-1.0404 +-0.96203,1.4219,0.62037,2.1625,-1.1613,-1.0497 +-0.95513,1.4264,0.61371,2.1595,-1.1682,-1.0589 +-0.94815,1.4309,0.60702,2.1564,-1.1751,-1.0682 +-0.94111,1.4352,0.60032,2.1532,-1.1819,-1.0773 +-0.93399,1.4395,0.5936,2.1499,-1.1887,-1.0865 +-0.92681,1.4437,0.58687,2.1465,-1.1953,-1.0956 +-0.91956,1.4479,0.58012,2.1431,-1.202,-1.1047 +-0.91225,1.4519,0.57336,2.1396,-1.2085,-1.1138 +-0.90487,1.4559,0.56658,2.136,-1.215,-1.1228 +-0.89742,1.4598,0.55979,2.1323,-1.2214,-1.1319 +-0.88991,1.4637,0.553,2.1286,-1.2277,-1.1408 +-0.88234,1.4674,0.54619,2.1247,-1.234,-1.1498 +-0.87471,1.4711,0.53938,2.1208,-1.2402,-1.1587 +-0.86702,1.4748,0.53256,2.1169,-1.2464,-1.1676 +-0.85927,1.4783,0.52573,2.1128,-1.2524,-1.1765 +-0.85146,1.4818,0.5189,2.1087,-1.2584,-1.1853 +-0.8436,1.4852,0.51206,2.1045,-1.2643,-1.1941 +-0.83568,1.4885,0.50522,2.1002,-1.2702,-1.2029 +-0.8277,1.4918,0.49838,2.0958,-1.276,-1.2117 +-0.81968,1.495,0.49154,2.0914,-1.2817,-1.2204 +-0.8116,1.4981,0.4847,2.0869,-1.2873,-1.2291 +-0.80347,1.5012,0.47786,2.0823,-1.2928,-1.2377 +-0.79529,1.5042,0.47102,2.0776,-1.2983,-1.2464 +-0.78706,1.5071,0.46418,2.0729,-1.3037,-1.2549 +-0.77879,1.5099,0.45735,2.0681,-1.309,-1.2635 +-0.77046,1.5127,0.45053,2.0632,-1.3143,-1.272 +-0.7621,1.5154,0.44371,2.0582,-1.3194,-1.2805 +-0.75369,1.518,0.4369,2.0532,-1.3245,-1.289 +-0.74524,1.5206,0.4301,2.0481,-1.3295,-1.2974 +-0.73675,1.5231,0.42331,2.0429,-1.3345,-1.3058 +-0.72822,1.5255,0.41652,2.0377,-1.3393,-1.3142 +-0.71965,1.5279,0.40975,2.0324,-1.3441,-1.3225 +-0.71104,1.5302,0.40299,2.027,-1.3488,-1.3308 +-0.7024,1.5324,0.39625,2.0215,-1.3534,-1.339 +-0.69372,1.5346,0.38952,2.0159,-1.3579,-1.3473 +-0.68501,1.5367,0.3828,2.0103,-1.3623,-1.3555 +-0.67627,1.5387,0.3761,2.0046,-1.3667,-1.3636 +-0.6675,1.5407,0.36942,1.9989,-1.371,-1.3717 +-0.6587,1.5426,0.36276,1.9931,-1.3752,-1.3798 +-0.64987,1.5444,0.35611,1.9872,-1.3793,-1.3879 +-0.64102,1.5462,0.34949,1.9812,-1.3833,-1.3959 +-0.63214,1.5479,0.34288,1.9752,-1.3872,-1.4039 +-0.62323,1.5496,0.3363,1.9691,-1.3911,-1.4118 +-0.6143,1.5511,0.32974,1.9629,-1.3948,-1.4198 +-0.60536,1.5527,0.3232,1.9567,-1.3985,-1.4276 +-0.59639,1.5541,0.31669,1.9504,-1.4021,-1.4355 +-0.5874,1.5555,0.3102,1.944,-1.4056,-1.4433 +-0.5784,1.5569,0.30374,1.9375,-1.409,-1.4511 +-0.56938,1.5582,0.29731,1.931,-1.4124,-1.4588 +-0.56035,1.5594,0.2909,1.9245,-1.4156,-1.4665 +-0.55131,1.5606,0.28453,1.9178,-1.4187,-1.4742 +-0.54225,1.5617,0.27818,1.9111,-1.4218,-1.4818 +-0.53318,1.5628,0.27186,1.9044,-1.4248,-1.4894 +-0.52411,1.5638,0.26557,1.8975,-1.4277,-1.497 +-0.51502,1.5647,0.25932,1.8906,-1.4305,-1.5045 +-0.50594,1.5656,0.2531,1.8837,-1.4332,-1.512 +-0.49684,1.5664,0.24691,1.8767,-1.4358,-1.5194 +-0.48775,1.5672,0.24075,1.8696,-1.4383,-1.5268 +-0.47865,1.5679,0.23463,1.8624,-1.4407,-1.5342 +-0.46955,1.5686,0.22855,1.8552,-1.4431,-1.5416 +-0.46045,1.5692,0.2225,1.848,-1.4453,-1.5489 +-0.45136,1.5698,0.21649,1.8406,-1.4474,-1.5561 +-0.44227,1.5703,0.21052,1.8333,-1.4495,-1.5634 +-0.43318,1.5708,0.20458,1.8258,-1.4515,-1.5706 +-0.42411,1.5712,0.19869,1.8183,-1.4534,-1.5777 +-0.41503,1.5716,0.19283,1.8108,-1.4551,-1.5849 +-0.40597,1.5719,0.18702,1.8031,-1.4568,-1.5919 +-0.39692,1.5722,0.18124,1.7955,-1.4584,-1.599 +-0.38788,1.5724,0.17551,1.7877,-1.4599,-1.606 +-0.37886,1.5726,0.16982,1.78,-1.4613,-1.613 +-0.36985,1.5727,0.16417,1.7721,-1.4626,-1.6199 +-0.36086,1.5728,0.15857,1.7642,-1.4639,-1.6268 +-0.35188,1.5729,0.15301,1.7563,-1.465,-1.6337 +-0.34292,1.5729,0.14749,1.7483,-1.466,-1.6405 +-0.33399,1.5729,0.14202,1.7402,-1.4669,-1.6473 +-0.32507,1.5728,0.1366,1.7321,-1.4678,-1.6541 +-0.31618,1.5727,0.13122,1.724,-1.4685,-1.6608 +-0.30732,1.5725,0.12589,1.7158,-1.4692,-1.6675 +-0.29848,1.5723,0.1206,1.7075,-1.4697,-1.6742 +-0.28966,1.5721,0.11536,1.6992,-1.4702,-1.6808 +-0.28088,1.5718,0.11018,1.6909,-1.4706,-1.6874 +-0.27212,1.5715,0.10504,1.6825,-1.4708,-1.6939 +-0.2634,1.5711,0.099944,1.674,-1.471,-1.7004 +-0.25471,1.5707,0.094902,1.6655,-1.4711,-1.7069 +-0.24605,1.5703,0.08991,1.657,-1.4711,-1.7133 +-0.23743,1.5699,0.084968,1.6484,-1.4709,-1.7197 +-0.22884,1.5694,0.080077,1.6398,-1.4707,-1.7261 +-0.22029,1.5688,0.075238,1.6311,-1.4704,-1.7324 +-0.21178,1.5683,0.070449,1.6224,-1.47,-1.7387 +-0.20331,1.5677,0.065712,1.6137,-1.4695,-1.7449 +-0.19489,1.5671,0.061028,1.6049,-1.469,-1.7512 +-0.1865,1.5664,0.056395,1.596,-1.4683,-1.7573 +-0.17816,1.5658,0.051816,1.5871,-1.4675,-1.7635 +-0.16986,1.5651,0.047289,1.5782,-1.4666,-1.7696 +-0.16162,1.5643,0.042816,1.5693,-1.4657,-1.7757 +-0.15341,1.5636,0.038396,1.5603,-1.4646,-1.7817 +-0.14526,1.5628,0.03403,1.5512,-1.4634,-1.7877 +-0.13716,1.562,0.029719,1.5421,-1.4622,-1.7937 +-0.12911,1.5611,0.025461,1.533,-1.4608,-1.7996 +-0.12111,1.5603,0.021258,1.5239,-1.4594,-1.8055 +-0.11317,1.5594,0.017109,1.5147,-1.4579,-1.8114 +-0.10528,1.5585,0.013015,1.5055,-1.4562,-1.8172 +-0.097445,1.5575,0.0089764,1.4963,-1.4545,-1.823 +-0.089668,1.5566,0.0049927,1.487,-1.4527,-1.8287 +-0.08195,1.5556,0.0010642,1.4777,-1.4508,-1.8344 +-0.074292,1.5546,-0.0028088,1.4683,-1.4488,-1.8401 +-0.066694,1.5536,-0.0066264,1.4589,-1.4467,-1.8458 +-0.059157,1.5526,-0.010388,1.4495,-1.4445,-1.8514 +-0.051683,1.5515,-0.014095,1.4401,-1.4423,-1.857 +-0.044274,1.5505,-0.017745,1.4306,-1.4399,-1.8625 +-0.036928,1.5494,-0.02134,1.4211,-1.4374,-1.868 +-0.029649,1.5483,-0.024879,1.4116,-1.4349,-1.8735 +-0.022437,1.5472,-0.028362,1.4021,-1.4323,-1.8789 +-0.015292,1.5461,-0.03179,1.3925,-1.4295,-1.8843 +-0.0082167,1.5449,-0.035161,1.3829,-1.4267,-1.8897 +-0.001211,1.5438,-0.038477,1.3733,-1.4238,-1.895 +0.0057238,1.5426,-0.041737,1.3636,-1.4208,-1.9003 +0.012587,1.5414,-0.044941,1.354,-1.4177,-1.9056 +0.019377,1.5403,-0.048089,1.3443,-1.4145,-1.9108 +0.026093,1.5391,-0.051182,1.3346,-1.4113,-1.916 +0.032735,1.5379,-0.054219,1.3248,-1.4079,-1.9212 +0.039301,1.5366,-0.057201,1.3151,-1.4045,-1.9263 +0.045791,1.5354,-0.060128,1.3053,-1.401,-1.9314 +0.052204,1.5342,-0.062999,1.2955,-1.3974,-1.9365 +0.058538,1.533,-0.065815,1.2857,-1.3937,-1.9415 +0.064793,1.5317,-0.068577,1.2759,-1.3899,-1.9465 +0.070969,1.5305,-0.071283,1.2661,-1.386,-1.9514 +0.077064,1.5293,-0.073936,1.2562,-1.3821,-1.9564 +0.083077,1.528,-0.076533,1.2463,-1.378,-1.9612 +0.089009,1.5267,-0.079077,1.2365,-1.3739,-1.9661 +0.094857,1.5255,-0.081567,1.2266,-1.3697,-1.9709 +0.10062,1.5242,-0.084003,1.2166,-1.3654,-1.9757 +0.1063,1.523,-0.086385,1.2067,-1.3611,-1.9805 +0.1119,1.5217,-0.088714,1.1968,-1.3566,-1.9852 +0.11741,1.5205,-0.090991,1.1868,-1.3521,-1.9899 +0.12283,1.5192,-0.093214,1.1769,-1.3475,-1.9945 +0.12816,1.5179,-0.095386,1.1669,-1.3428,-1.9991 +0.13341,1.5167,-0.097505,1.1569,-1.3381,-2.0037 +0.13857,1.5154,-0.099572,1.1469,-1.3332,-2.0083 +0.14364,1.5142,-0.10159,1.137,-1.3283,-2.0128 +0.14862,1.5129,-0.10355,1.127,-1.3233,-2.0173 +0.15351,1.5117,-0.10547,1.1169,-1.3183,-2.0217 +0.15831,1.5105,-0.10733,1.1069,-1.3131,-2.0262 +0.16302,1.5092,-0.10914,1.0969,-1.3079,-2.0306 +0.16763,1.508,-0.11091,1.0869,-1.3026,-2.0349 +0.17216,1.5068,-0.11262,1.0769,-1.2972,-2.0392 +0.17659,1.5056,-0.11429,1.0669,-1.2918,-2.0435 +0.18093,1.5044,-0.11591,1.0568,-1.2863,-2.0478 +0.18517,1.5032,-0.11748,1.0468,-1.2807,-2.052 +0.18932,1.502,-0.119,1.0368,-1.2751,-2.0562 +0.19338,1.5008,-0.12047,1.0267,-1.2694,-2.0603 +0.19734,1.4997,-0.1219,1.0167,-1.2636,-2.0645 +0.2012,1.4985,-0.12328,1.0067,-1.2577,-2.0686 +0.20497,1.4973,-0.12462,0.99664,-1.2518,-2.0726 +0.20864,1.4962,-0.12591,0.98662,-1.2458,-2.0766 +0.21222,1.4951,-0.12716,0.97659,-1.2398,-2.0806 +0.2157,1.494,-0.12836,0.96657,-1.2337,-2.0846 +0.21908,1.4929,-0.12952,0.95656,-1.2275,-2.0885 +0.22237,1.4918,-0.13063,0.94655,-1.2213,-2.0924 +0.22556,1.4907,-0.13171,0.93654,-1.215,-2.0963 +0.22865,1.4896,-0.13274,0.92654,-1.2086,-2.1001 +0.23164,1.4886,-0.13373,0.91654,-1.2022,-2.1039 +0.23454,1.4876,-0.13467,0.90656,-1.1957,-2.1076 +0.23733,1.4865,-0.13558,0.89658,-1.1892,-2.1114 +0.24003,1.4855,-0.13645,0.88661,-1.1826,-2.1151 +0.24263,1.4846,-0.13728,0.87664,-1.1759,-2.1187 +0.24513,1.4836,-0.13807,0.86669,-1.1692,-2.1224 +0.24754,1.4826,-0.13882,0.85674,-1.1625,-2.126 +0.24984,1.4817,-0.13953,0.84681,-1.1556,-2.1295 +0.25205,1.4808,-0.14021,0.83688,-1.1488,-2.1331 +0.25415,1.4799,-0.14085,0.82697,-1.1419,-2.1366 +0.25616,1.479,-0.14145,0.81707,-1.1349,-2.14 +0.25807,1.4781,-0.14202,0.80718,-1.1279,-2.1435 +0.25988,1.4773,-0.14256,0.79731,-1.1208,-2.1469 +0.26159,1.4764,-0.14306,0.78745,-1.1137,-2.1502 +0.26321,1.4756,-0.14353,0.7776,-1.1065,-2.1536 +0.26472,1.4748,-0.14397,0.76776,-1.0993,-2.1569 +0.26614,1.4741,-0.14437,0.75794,-1.0921,-2.1601 +0.26745,1.4733,-0.14474,0.74814,-1.0848,-2.1634 +0.26867,1.4726,-0.14509,0.73835,-1.0775,-2.1666 +0.26979,1.4719,-0.1454,0.72858,-1.0701,-2.1697 +0.27082,1.4712,-0.14568,0.71882,-1.0627,-2.1729 +0.27174,1.4705,-0.14594,0.70909,-1.0552,-2.176 +0.27257,1.4699,-0.14617,0.69937,-1.0477,-2.179 +0.2733,1.4692,-0.14637,0.68966,-1.0402,-2.1821 +0.27394,1.4686,-0.14654,0.67998,-1.0326,-2.1851 +0.27448,1.468,-0.14669,0.67031,-1.025,-2.1881 +0.27492,1.4675,-0.14682,0.66067,-1.0174,-2.191 +0.27526,1.4669,-0.14691,0.65104,-1.0097,-2.1939 +0.27551,1.4664,-0.14699,0.64143,-1.002,-2.1968 +0.27567,1.4659,-0.14704,0.63185,-0.99428,-2.1996 +0.27573,1.4654,-0.14708,0.62228,-0.98652,-2.2024 +0.27569,1.465,-0.14709,0.61274,-0.97873,-2.2052 +0.27556,1.4645,-0.14707,0.60321,-0.97092,-2.2079 +0.27534,1.4641,-0.14704,0.59371,-0.96308,-2.2106 +0.27502,1.4637,-0.14699,0.58423,-0.95521,-2.2133 +0.27461,1.4634,-0.14693,0.57478,-0.94733,-2.2159 +0.27411,1.463,-0.14684,0.56534,-0.93941,-2.2185 +0.27352,1.4627,-0.14674,0.55593,-0.93148,-2.2211 +0.27284,1.4624,-0.14662,0.54655,-0.92353,-2.2236 +0.27206,1.4622,-0.14648,0.53718,-0.91556,-2.2261 +0.27119,1.4619,-0.14633,0.52785,-0.90757,-2.2285 +0.27024,1.4617,-0.14617,0.51853,-0.89956,-2.231 +0.26919,1.4615,-0.14599,0.50924,-0.89154,-2.2334 +0.26806,1.4613,-0.1458,0.49998,-0.8835,-2.2357 +0.26684,1.4612,-0.1456,0.49074,-0.87545,-2.238 +0.26553,1.461,-0.14539,0.48152,-0.86739,-2.2403 +0.26414,1.4609,-0.14516,0.47234,-0.85931,-2.2426 +0.26266,1.4608,-0.14493,0.46317,-0.85123,-2.2448 +0.26109,1.4608,-0.14469,0.45404,-0.84314,-2.247 +0.25944,1.4607,-0.14444,0.44493,-0.83504,-2.2491 +0.25771,1.4607,-0.14418,0.43585,-0.82693,-2.2512 +0.25589,1.4607,-0.14391,0.42679,-0.81882,-2.2533 +0.25399,1.4607,-0.14364,0.41776,-0.81071,-2.2553 +0.25201,1.4608,-0.14337,0.40876,-0.80259,-2.2573 +0.24995,1.4609,-0.14309,0.39979,-0.79447,-2.2593 +0.24781,1.461,-0.1428,0.39085,-0.78635,-2.2613 +0.24559,1.4611,-0.14251,0.38193,-0.77823,-2.2631 +0.24329,1.4612,-0.14222,0.37304,-0.77012,-2.265 +0.24091,1.4614,-0.14193,0.36418,-0.762,-2.2668 +0.23846,1.4616,-0.14164,0.35534,-0.7539,-2.2686 +0.23593,1.4618,-0.14135,0.34654,-0.74579,-2.2704 +0.23332,1.462,-0.14105,0.33776,-0.7377,-2.2721 +0.23064,1.4623,-0.14076,0.32902,-0.72961,-2.2738 +0.22789,1.4626,-0.14047,0.3203,-0.72153,-2.2754 +0.22507,1.4629,-0.14018,0.31161,-0.71346,-2.277 +0.22218,1.4632,-0.1399,0.30295,-0.70541,-2.2786 +0.21921,1.4635,-0.13962,0.29432,-0.69736,-2.2801 +0.21618,1.4639,-0.13934,0.28572,-0.68933,-2.2816 +0.21307,1.4643,-0.13907,0.27715,-0.68132,-2.2831 +0.20991,1.4647,-0.13881,0.2686,-0.67332,-2.2845 +0.20667,1.4651,-0.13855,0.26009,-0.66534,-2.2859 +0.20337,1.4655,-0.1383,0.25161,-0.65738,-2.2872 +0.2,1.466,-0.13805,0.24315,-0.64944,-2.2885 +0.19657,1.4665,-0.13782,0.23473,-0.64151,-2.2898 +0.19308,1.467,-0.13759,0.22633,-0.63362,-2.291 +0.18953,1.4675,-0.13737,0.21797,-0.62574,-2.2922 +0.18592,1.468,-0.13717,0.20963,-0.61789,-2.2934 +0.18225,1.4686,-0.13697,0.20133,-0.61007,-2.2945 +0.17852,1.4692,-0.13679,0.19305,-0.60227,-2.2956 +0.17474,1.4698,-0.13662,0.18481,-0.5945,-2.2966 +0.1709,1.4704,-0.13646,0.17659,-0.58676,-2.2976 +0.167,1.471,-0.13631,0.1684,-0.57905,-2.2986 +0.16305,1.4717,-0.13618,0.16025,-0.57137,-2.2995 +0.15905,1.4723,-0.13606,0.15212,-0.56372,-2.3004 +0.155,1.473,-0.13596,0.14402,-0.55611,-2.3013 +0.1509,1.4737,-0.13587,0.13595,-0.54853,-2.3021 +0.14675,1.4744,-0.1358,0.12791,-0.54099,-2.3028 +0.14255,1.4752,-0.13575,0.1199,-0.53348,-2.3036 +0.13831,1.4759,-0.13571,0.11192,-0.52602,-2.3042 +0.13402,1.4767,-0.1357,0.10397,-0.51859,-2.3049 +0.12969,1.4774,-0.1357,0.096048,-0.5112,-2.3055 +0.12531,1.4782,-0.13572,0.088155,-0.50386,-2.3061 +0.1209,1.479,-0.13575,0.080291,-0.49656,-2.3066 +0.11644,1.4799,-0.13581,0.072456,-0.4893,-2.3071 +0.11195,1.4807,-0.13589,0.064649,-0.48209,-2.3076 +0.10741,1.4815,-0.13599,0.056871,-0.47492,-2.308 +0.10284,1.4824,-0.13611,0.049122,-0.4678,-2.3083 +0.09824,1.4833,-0.13625,0.0414,-0.46073,-2.3087 +0.093602,1.4842,-0.13642,0.033707,-0.4537,-2.309 +0.088931,1.4851,-0.13661,0.026043,-0.44673,-2.3092 +0.084229,1.486,-0.13682,0.018406,-0.43981,-2.3094 +0.079497,1.4869,-0.13705,0.010796,-0.43294,-2.3096 +0.074737,1.4878,-0.13731,0.0032145,-0.42612,-2.3097 +0.069949,1.4888,-0.13759,-0.0043398,-0.41936,-2.3098 +0.065135,1.4897,-0.1379,-0.011867,-0.41265,-2.3098 +0.060297,1.4907,-0.13823,-0.019367,-0.406,-2.3098 +0.055435,1.4917,-0.13859,-0.02684,-0.39941,-2.3098 +0.050551,1.4926,-0.13897,-0.034287,-0.39287,-2.3097 +0.045646,1.4936,-0.13938,-0.041707,-0.38639,-2.3096 +0.040721,1.4946,-0.13981,-0.049101,-0.37998,-2.3094 +0.035779,1.4956,-0.14028,-0.056468,-0.37362,-2.3092 +0.03082,1.4966,-0.14077,-0.06381,-0.36733,-2.309 +0.025845,1.4977,-0.14129,-0.071126,-0.3611,-2.3087 +0.020856,1.4987,-0.14183,-0.078417,-0.35493,-2.3084 +0.015854,1.4997,-0.1424,-0.085683,-0.34883,-2.308 +0.010841,1.5008,-0.14301,-0.092924,-0.3428,-2.3076 +0.0058182,1.5018,-0.14364,-0.10014,-0.33683,-2.3072 +0.00078631,1.5029,-0.14429,-0.10733,-0.33093,-2.3067 +-0.004253,1.5039,-0.14498,-0.1145,-0.32509,-2.3061 +-0.0092984,1.505,-0.1457,-0.12164,-0.31933,-2.3055 +-0.014348,1.506,-0.14645,-0.12876,-0.31364,-2.3049 +-0.019402,1.5071,-0.14722,-0.13586,-0.30802,-2.3043 +-0.024457,1.5082,-0.14803,-0.14293,-0.30247,-2.3036 +-0.029514,1.5092,-0.14887,-0.14998,-0.29699,-2.3028 +-0.034569,1.5103,-0.14973,-0.15701,-0.29158,-2.302 +-0.039622,1.5114,-0.15063,-0.16402,-0.28625,-2.3012 +-0.044672,1.5125,-0.15156,-0.171,-0.281,-2.3003 +-0.049718,1.5135,-0.15252,-0.17796,-0.27582,-2.2994 +-0.054757,1.5146,-0.15351,-0.1849,-0.27072,-2.2984 +-0.059789,1.5157,-0.15453,-0.19182,-0.26569,-2.2974 +-0.064812,1.5168,-0.15558,-0.19872,-0.26074,-2.2964 +-0.069824,1.5179,-0.15666,-0.2056,-0.25588,-2.2953 +-0.074826,1.5189,-0.15778,-0.21245,-0.25109,-2.2942 +-0.079815,1.52,-0.15892,-0.21929,-0.24638,-2.293 +-0.084789,1.5211,-0.1601,-0.22611,-0.24175,-2.2918 +-0.089748,1.5222,-0.16131,-0.23291,-0.2372,-2.2906 +-0.094691,1.5232,-0.16254,-0.23969,-0.23274,-2.2893 +-0.099615,1.5243,-0.16381,-0.24645,-0.22836,-2.2879 +-0.10452,1.5254,-0.16512,-0.25319,-0.22406,-2.2866 +-0.1094,1.5264,-0.16645,-0.25991,-0.21985,-2.2851 +-0.11427,1.5275,-0.16782,-0.26662,-0.21572,-2.2837 +-0.1191,1.5285,-0.16921,-0.27331,-0.21168,-2.2822 +-0.12392,1.5296,-0.17064,-0.27998,-0.20772,-2.2806 +-0.12871,1.5306,-0.1721,-0.28663,-0.20385,-2.279 +-0.13347,1.5316,-0.17359,-0.29327,-0.20007,-2.2774 +-0.1382,1.5327,-0.17511,-0.29989,-0.19638,-2.2757 +-0.1429,1.5337,-0.17666,-0.3065,-0.19277,-2.274 +-0.14758,1.5347,-0.17824,-0.31309,-0.18925,-2.2722 +-0.15221,1.5357,-0.17986,-0.31967,-0.18582,-2.2704 +-0.15682,1.5367,-0.1815,-0.32623,-0.18248,-2.2686 +-0.16139,1.5377,-0.18318,-0.33277,-0.17924,-2.2667 +-0.16593,1.5387,-0.18488,-0.33931,-0.17608,-2.2648 +-0.17042,1.5397,-0.18662,-0.34583,-0.17301,-2.2628 +-0.17488,1.5406,-0.18839,-0.35233,-0.17004,-2.2608 +-0.1793,1.5416,-0.19018,-0.35882,-0.16715,-2.2588 +-0.18368,1.5425,-0.19201,-0.3653,-0.16436,-2.2567 +-0.18801,1.5435,-0.19386,-0.37177,-0.16167,-2.2546 +-0.19231,1.5444,-0.19574,-0.37823,-0.15906,-2.2524 +-0.19655,1.5453,-0.19766,-0.38467,-0.15655,-2.2502 +-0.20076,1.5462,-0.1996,-0.3911,-0.15413,-2.2479 +-0.20491,1.5471,-0.20157,-0.39752,-0.15181,-2.2457 +-0.20902,1.548,-0.20357,-0.40393,-0.14958,-2.2433 +-0.21307,1.5489,-0.20559,-0.41033,-0.14745,-2.241 +-0.21708,1.5498,-0.20765,-0.41672,-0.14541,-2.2385 +-0.22104,1.5506,-0.20973,-0.4231,-0.14347,-2.2361 +-0.22494,1.5514,-0.21184,-0.42947,-0.14162,-2.2336 +-0.22879,1.5523,-0.21397,-0.43583,-0.13987,-2.2311 +-0.23258,1.5531,-0.21613,-0.44219,-0.13822,-2.2285 +-0.23632,1.5539,-0.21832,-0.44853,-0.13666,-2.2259 +-0.24,1.5546,-0.22053,-0.45487,-0.1352,-2.2233 +-0.24362,1.5554,-0.22277,-0.4612,-0.13384,-2.2206 +-0.24719,1.5562,-0.22503,-0.46752,-0.13257,-2.2179 +-0.25069,1.5569,-0.22732,-0.47383,-0.1314,-2.2151 +-0.25413,1.5576,-0.22963,-0.48014,-0.13032,-2.2123 +-0.25751,1.5583,-0.23197,-0.48644,-0.12935,-2.2095 +-0.26082,1.559,-0.23433,-0.49274,-0.12847,-2.2066 +-0.26407,1.5597,-0.23671,-0.49903,-0.12769,-2.2037 +-0.26726,1.5604,-0.23911,-0.50531,-0.12701,-2.2007 +-0.27038,1.561,-0.24154,-0.51159,-0.12642,-2.1977 +-0.27343,1.5616,-0.24398,-0.51786,-0.12594,-2.1947 +-0.27641,1.5623,-0.24645,-0.52413,-0.12555,-2.1917 +-0.27933,1.5628,-0.24894,-0.5304,-0.12525,-2.1886 +-0.28217,1.5634,-0.25145,-0.53666,-0.12506,-2.1854 +-0.28494,1.564,-0.25398,-0.54292,-0.12496,-2.1823 +-0.28764,1.5645,-0.25653,-0.54918,-0.12497,-2.1791 +-0.29027,1.5651,-0.25909,-0.55543,-0.12507,-2.1758 +-0.29282,1.5656,-0.26168,-0.56168,-0.12526,-2.1726 +-0.2953,1.5661,-0.26428,-0.56793,-0.12556,-2.1693 +-0.2977,1.5665,-0.2669,-0.57417,-0.12595,-2.1659 +-0.30003,1.567,-0.26953,-0.58041,-0.12644,-2.1625 +-0.30228,1.5674,-0.27218,-0.58666,-0.12703,-2.1591 +-0.30445,1.5678,-0.27485,-0.5929,-0.12771,-2.1557 +-0.30654,1.5682,-0.27753,-0.59914,-0.12849,-2.1522 +-0.30855,1.5686,-0.28022,-0.60538,-0.12937,-2.1487 +-0.31049,1.569,-0.28293,-0.61161,-0.13034,-2.1452 +-0.31234,1.5693,-0.28565,-0.61785,-0.13142,-2.1416 +-0.31411,1.5696,-0.28838,-0.62409,-0.13258,-2.138 +-0.31579,1.57,-0.29113,-0.63033,-0.13385,-2.1344 +-0.3174,1.5702,-0.29388,-0.63657,-0.1352,-2.1307 +-0.31892,1.5705,-0.29665,-0.64281,-0.13666,-2.127 +-0.32035,1.5707,-0.29943,-0.64905,-0.13821,-2.1233 +-0.3217,1.571,-0.30221,-0.65529,-0.13985,-2.1196 +-0.32296,1.5712,-0.305,-0.66154,-0.14159,-2.1158 +-0.32414,1.5714,-0.30781,-0.66779,-0.14343,-2.112 +-0.32523,1.5715,-0.31061,-0.67403,-0.14535,-2.1081 +-0.32623,1.5717,-0.31343,-0.68028,-0.14737,-2.1043 +-0.32714,1.5718,-0.31625,-0.68654,-0.14949,-2.1004 +-0.32796,1.5719,-0.31907,-0.69279,-0.15169,-2.0964 +-0.3287,1.572,-0.3219,-0.69905,-0.15399,-2.0925 +-0.32934,1.5721,-0.32474,-0.70531,-0.15638,-2.0885 +-0.32989,1.5721,-0.32757,-0.71158,-0.15887,-2.0845 +-0.33035,1.5721,-0.33041,-0.71784,-0.16144,-2.0805 +-0.33072,1.5722,-0.33325,-0.72411,-0.1641,-2.0764 +-0.331,1.5721,-0.33609,-0.73039,-0.16686,-2.0723 +-0.33119,1.5721,-0.33894,-0.73667,-0.1697,-2.0682 +-0.33128,1.5721,-0.34178,-0.74295,-0.17264,-2.0641 +-0.33128,1.572,-0.34462,-0.74924,-0.17566,-2.06 +-0.33118,1.5719,-0.34745,-0.75553,-0.17877,-2.0558 +-0.33099,1.5718,-0.35029,-0.76183,-0.18197,-2.0516 +-0.33071,1.5717,-0.35312,-0.76813,-0.18525,-2.0474 +-0.33033,1.5715,-0.35594,-0.77443,-0.18863,-2.0432 +-0.32985,1.5713,-0.35877,-0.78074,-0.19208,-2.0389 +-0.32928,1.5711,-0.36158,-0.78706,-0.19563,-2.0346 +-0.32862,1.5709,-0.36439,-0.79338,-0.19925,-2.0303 +-0.32785,1.5707,-0.36719,-0.79971,-0.20297,-2.026 +-0.32699,1.5705,-0.36999,-0.80604,-0.20676,-2.0217 +-0.32604,1.5702,-0.37277,-0.81237,-0.21064,-2.0173 +-0.32499,1.5699,-0.37555,-0.81871,-0.2146,-2.0129 +-0.32384,1.5696,-0.37831,-0.82506,-0.21864,-2.0085 +-0.32259,1.5693,-0.38106,-0.83142,-0.22276,-2.0041 +-0.32124,1.5689,-0.38381,-0.83777,-0.22697,-1.9997 +-0.3198,1.5686,-0.38653,-0.84414,-0.23125,-1.9953 +-0.31826,1.5682,-0.38925,-0.85051,-0.23561,-1.9908 +-0.31662,1.5678,-0.39195,-0.85689,-0.24005,-1.9863 +-0.31488,1.5674,-0.39464,-0.86327,-0.24457,-1.9818 +-0.31304,1.5669,-0.39731,-0.86966,-0.24916,-1.9773 +-0.31111,1.5665,-0.39996,-0.87605,-0.25383,-1.9728 +-0.30908,1.566,-0.40259,-0.88245,-0.25857,-1.9683 +-0.30695,1.5655,-0.40521,-0.88886,-0.26339,-1.9638 +-0.30472,1.565,-0.40781,-0.89527,-0.26828,-1.9592 +-0.30239,1.5645,-0.41039,-0.90169,-0.27324,-1.9546 +-0.29996,1.5639,-0.41295,-0.90811,-0.27827,-1.9501 +-0.29743,1.5634,-0.41548,-0.91454,-0.28338,-1.9455 +-0.29481,1.5628,-0.418,-0.92098,-0.28855,-1.9409 +-0.29209,1.5622,-0.42049,-0.92742,-0.29379,-1.9363 +-0.28926,1.5616,-0.42296,-0.93387,-0.29911,-1.9317 +-0.28634,1.561,-0.4254,-0.94032,-0.30449,-1.9271 +-0.28333,1.5603,-0.42782,-0.94678,-0.30993,-1.9225 +-0.28021,1.5597,-0.43021,-0.95325,-0.31544,-1.9178 +-0.277,1.559,-0.43257,-0.95972,-0.32102,-1.9132 +-0.27368,1.5583,-0.43491,-0.9662,-0.32666,-1.9086 +-0.27027,1.5576,-0.43722,-0.97268,-0.33236,-1.9039 +-0.26676,1.5569,-0.4395,-0.97917,-0.33812,-1.8993 +-0.26316,1.5562,-0.44175,-0.98566,-0.34394,-1.8946 +-0.25946,1.5554,-0.44397,-0.99216,-0.34983,-1.89 +-0.25566,1.5547,-0.44615,-0.99866,-0.35577,-1.8853 +-0.25176,1.5539,-0.44831,-1.0052,-0.36177,-1.8806 +-0.24777,1.5531,-0.45043,-1.0117,-0.36783,-1.876 +-0.24368,1.5523,-0.45252,-1.0182,-0.37394,-1.8713 +-0.2395,1.5515,-0.45457,-1.0247,-0.38011,-1.8667 +-0.23522,1.5507,-0.45659,-1.0312,-0.38633,-1.862 +-0.23084,1.5498,-0.45857,-1.0378,-0.3926,-1.8574 +-0.22637,1.549,-0.46052,-1.0443,-0.39893,-1.8527 +-0.22181,1.5481,-0.46243,-1.0509,-0.40531,-1.848 +-0.21715,1.5472,-0.4643,-1.0574,-0.41173,-1.8434 +-0.2124,1.5464,-0.46613,-1.0639,-0.41821,-1.8388 +-0.20755,1.5455,-0.46792,-1.0705,-0.42473,-1.8341 +-0.20261,1.5446,-0.46967,-1.077,-0.4313,-1.8295 +-0.19758,1.5437,-0.47138,-1.0836,-0.43791,-1.8248 +-0.19246,1.5427,-0.47304,-1.0902,-0.44457,-1.8202 +-0.18724,1.5418,-0.47467,-1.0967,-0.45127,-1.8156 +-0.18194,1.5408,-0.47625,-1.1033,-0.45801,-1.811 +-0.17654,1.5399,-0.47778,-1.1098,-0.4648,-1.8064 +-0.17106,1.5389,-0.47928,-1.1164,-0.47162,-1.8018 +-0.16548,1.538,-0.48072,-1.123,-0.47848,-1.7972 +-0.15982,1.537,-0.48212,-1.1295,-0.48538,-1.7927 +-0.15406,1.536,-0.48348,-1.1361,-0.49232,-1.7881 +-0.14822,1.535,-0.48479,-1.1427,-0.49929,-1.7836 +-0.14229,1.534,-0.48604,-1.1493,-0.5063,-1.779 +-0.13628,1.533,-0.48725,-1.1558,-0.51334,-1.7745 +-0.13017,1.532,-0.48841,-1.1624,-0.52041,-1.77 +-0.12399,1.531,-0.48952,-1.169,-0.52751,-1.7655 +-0.11771,1.53,-0.49058,-1.1755,-0.53464,-1.761 +-0.11136,1.5289,-0.49159,-1.1821,-0.5418,-1.7565 +-0.10492,1.5279,-0.49255,-1.1887,-0.54898,-1.7521 +-0.098395,1.5268,-0.49345,-1.1952,-0.5562,-1.7477 +-0.09179,1.5258,-0.4943,-1.2018,-0.56343,-1.7432 +-0.085103,1.5248,-0.4951,-1.2084,-0.57069,-1.7388 +-0.078336,1.5237,-0.49584,-1.2149,-0.57797,-1.7345 +-0.071488,1.5227,-0.49653,-1.2215,-0.58528,-1.7301 +-0.064562,1.5216,-0.49716,-1.228,-0.5926,-1.7258 +-0.057556,1.5205,-0.49774,-1.2346,-0.59994,-1.7214 +-0.050473,1.5195,-0.49826,-1.2411,-0.6073,-1.7171 +-0.043313,1.5184,-0.49872,-1.2477,-0.61468,-1.7129 +-0.036076,1.5173,-0.49913,-1.2542,-0.62207,-1.7086 +-0.028764,1.5163,-0.49947,-1.2607,-0.62948,-1.7044 +-0.021377,1.5152,-0.49976,-1.2673,-0.6369,-1.7001 +-0.013917,1.5141,-0.49999,-1.2738,-0.64433,-1.696 +-0.0063832,1.5131,-0.50016,-1.2803,-0.65177,-1.6918 +0.0012224,1.512,-0.50027,-1.2868,-0.65922,-1.6877 +0.0088994,1.5109,-0.50032,-1.2933,-0.66667,-1.6835 +0.016647,1.5099,-0.5003,-1.2998,-0.67414,-1.6795 +0.024464,1.5088,-0.50023,-1.3063,-0.68161,-1.6754 +0.03235,1.5078,-0.50009,-1.3127,-0.68908,-1.6714 +0.040303,1.5067,-0.49989,-1.3192,-0.69656,-1.6674 +0.048323,1.5056,-0.49963,-1.3257,-0.70404,-1.6634 +0.05641,1.5046,-0.4993,-1.3321,-0.71152,-1.6594 +0.064561,1.5035,-0.49891,-1.3385,-0.71899,-1.6555 +0.072776,1.5025,-0.49846,-1.345,-0.72647,-1.6516 +0.081055,1.5014,-0.49794,-1.3514,-0.73395,-1.6478 +0.089395,1.5004,-0.49735,-1.3578,-0.74142,-1.6439 +0.097797,1.4994,-0.4967,-1.3641,-0.74888,-1.6401 +0.10626,1.4983,-0.49599,-1.3705,-0.75634,-1.6364 +0.11478,1.4973,-0.49521,-1.3769,-0.76379,-1.6326 +0.12336,1.4963,-0.49436,-1.3832,-0.77123,-1.629 +0.132,1.4953,-0.49344,-1.3896,-0.77866,-1.6253 +0.14069,1.4942,-0.49246,-1.3959,-0.78607,-1.6217 +0.14944,1.4932,-0.49141,-1.4022,-0.79348,-1.6181 +0.15824,1.4922,-0.49029,-1.4085,-0.80087,-1.6145 +0.1671,1.4913,-0.48911,-1.4147,-0.80825,-1.611 +0.17601,1.4903,-0.48785,-1.421,-0.81561,-1.6075 +0.18497,1.4893,-0.48653,-1.4272,-0.82295,-1.6041 +0.19398,1.4883,-0.48514,-1.4334,-0.83028,-1.6006 +0.20303,1.4874,-0.48368,-1.4396,-0.83758,-1.5973 +0.21214,1.4864,-0.48215,-1.4458,-0.84486,-1.5939 +0.22129,1.4855,-0.48055,-1.452,-0.85212,-1.5906 +0.23049,1.4845,-0.47888,-1.4581,-0.85936,-1.5874 +0.23974,1.4836,-0.47714,-1.4642,-0.86657,-1.5842 +0.24902,1.4827,-0.47533,-1.4703,-0.87376,-1.581 +0.25835,1.4818,-0.47345,-1.4764,-0.88092,-1.5779 +0.26773,1.4809,-0.4715,-1.4825,-0.88805,-1.5748 +0.27714,1.48,-0.46947,-1.4885,-0.89515,-1.5717 +0.28659,1.4791,-0.46738,-1.4945,-0.90223,-1.5687 +0.29608,1.4782,-0.46522,-1.5005,-0.90927,-1.5657 +0.3056,1.4774,-0.46298,-1.5065,-0.91627,-1.5628 +0.31517,1.4765,-0.46068,-1.5124,-0.92325,-1.5599 +0.32476,1.4757,-0.4583,-1.5183,-0.93019,-1.5571 +0.33439,1.4749,-0.45585,-1.5242,-0.93709,-1.5543 +0.34405,1.4741,-0.45333,-1.53,-0.94395,-1.5515 +0.35375,1.4733,-0.45074,-1.5359,-0.95078,-1.5488 +0.36347,1.4725,-0.44808,-1.5417,-0.95757,-1.5462 +0.37323,1.4717,-0.44534,-1.5474,-0.96432,-1.5436 +0.38301,1.471,-0.44253,-1.5532,-0.97102,-1.541 +0.39281,1.4702,-0.43966,-1.5589,-0.97768,-1.5385 +0.40265,1.4695,-0.43671,-1.5646,-0.9843,-1.536 +0.41251,1.4688,-0.43368,-1.5702,-0.99088,-1.5336 +0.42239,1.468,-0.43059,-1.5758,-0.9974,-1.5312 +0.43229,1.4673,-0.42742,-1.5814,-1.0039,-1.5288 +0.44221,1.4667,-0.42419,-1.587,-1.0103,-1.5266 +0.45216,1.466,-0.42088,-1.5925,-1.0167,-1.5243 +0.46212,1.4653,-0.4175,-1.598,-1.023,-1.5221 +0.4721,1.4647,-0.41405,-1.6034,-1.0293,-1.52 +0.48209,1.4641,-0.41052,-1.6089,-1.0355,-1.5179 +0.4921,1.4635,-0.40693,-1.6142,-1.0417,-1.5158 +0.50213,1.4629,-0.40326,-1.6196,-1.0478,-1.5139 +0.51216,1.4623,-0.39953,-1.6249,-1.0539,-1.5119 +0.52221,1.4617,-0.39572,-1.6302,-1.0599,-1.51 +0.53227,1.4611,-0.39184,-1.6354,-1.0659,-1.5082 +0.54234,1.4606,-0.3879,-1.6406,-1.0718,-1.5064 +0.55241,1.4601,-0.38388,-1.6458,-1.0776,-1.5046 +0.5625,1.4596,-0.37979,-1.6509,-1.0834,-1.5029 +0.57258,1.4591,-0.37563,-1.656,-1.0891,-1.5013 +0.58268,1.4586,-0.3714,-1.661,-1.0948,-1.4997 +0.59277,1.4581,-0.3671,-1.666,-1.1003,-1.4982 +0.60287,1.4577,-0.36273,-1.6709,-1.1059,-1.4967 +0.61297,1.4572,-0.3583,-1.6758,-1.1113,-1.4952 +0.62306,1.4568,-0.35379,-1.6807,-1.1167,-1.4939 +0.63316,1.4564,-0.34921,-1.6855,-1.1221,-1.4925 +0.64325,1.456,-0.34457,-1.6903,-1.1273,-1.4913 +0.65334,1.4556,-0.33986,-1.695,-1.1325,-1.49 +0.66343,1.4553,-0.33508,-1.6997,-1.1376,-1.4889 +0.67351,1.4549,-0.33023,-1.7044,-1.1427,-1.4877 +0.68358,1.4546,-0.32532,-1.7089,-1.1477,-1.4867 +0.69364,1.4543,-0.32034,-1.7135,-1.1526,-1.4856 +0.70369,1.454,-0.31529,-1.718,-1.1574,-1.4847 +0.71374,1.4537,-0.31018,-1.7224,-1.1622,-1.4838 +0.72377,1.4534,-0.305,-1.7268,-1.1669,-1.4829 +0.73378,1.4532,-0.29975,-1.7312,-1.1715,-1.4821 +0.74379,1.4529,-0.29444,-1.7355,-1.1761,-1.4814 +0.75377,1.4527,-0.28907,-1.7397,-1.1805,-1.4807 +0.76374,1.4525,-0.28363,-1.7439,-1.1849,-1.48 +0.7737,1.4523,-0.27813,-1.7481,-1.1892,-1.4794 +0.78363,1.4521,-0.27256,-1.7522,-1.1935,-1.4789 +0.79354,1.4519,-0.26693,-1.7562,-1.1976,-1.4784 +0.80344,1.4517,-0.26124,-1.7602,-1.2017,-1.4779 +0.81331,1.4516,-0.25548,-1.7641,-1.2057,-1.4776 +0.82315,1.4515,-0.24967,-1.768,-1.2096,-1.4772 +0.83297,1.4513,-0.24379,-1.7718,-1.2134,-1.477 +0.84277,1.4512,-0.23785,-1.7756,-1.2172,-1.4767 +0.85254,1.4511,-0.23185,-1.7793,-1.2209,-1.4766 +0.86228,1.4511,-0.22579,-1.7829,-1.2244,-1.4764 +0.872,1.451,-0.21967,-1.7865,-1.2279,-1.4764 +0.88168,1.4509,-0.21349,-1.79,-1.2314,-1.4764 +0.89133,1.4509,-0.20726,-1.7935,-1.2347,-1.4764 +0.90095,1.4509,-0.20097,-1.7969,-1.2379,-1.4765 +0.91054,1.4509,-0.19461,-1.8003,-1.2411,-1.4766 +0.92009,1.4509,-0.18821,-1.8036,-1.2442,-1.4768 +0.9296,1.4509,-0.18174,-1.8068,-1.2471,-1.4771 +0.93908,1.4509,-0.17522,-1.81,-1.25,-1.4774 +0.94853,1.4509,-0.16865,-1.8131,-1.2528,-1.4777 +0.95793,1.4509,-0.16202,-1.8162,-1.2556,-1.4781 +0.96729,1.451,-0.15533,-1.8192,-1.2582,-1.4785 +0.97662,1.451,-0.1486,-1.8221,-1.2607,-1.479 +0.9859,1.4511,-0.14181,-1.8249,-1.2632,-1.4796 +0.99514,1.4512,-0.13497,-1.8277,-1.2655,-1.4802 +1.0043,1.4513,-0.12807,-1.8305,-1.2678,-1.4808 +1.0135,1.4514,-0.12113,-1.8332,-1.2699,-1.4815 +1.0226,1.4515,-0.11413,-1.8358,-1.272,-1.4823 +1.0316,1.4516,-0.10709,-1.8383,-1.274,-1.4831 +1.0407,1.4517,-0.099994,-1.8408,-1.2759,-1.4839 +1.0496,1.4518,-0.092852,-1.8432,-1.2777,-1.4848 +1.0585,1.4519,-0.085662,-1.8455,-1.2794,-1.4858 +1.0674,1.4521,-0.078425,-1.8478,-1.281,-1.4868 +1.0762,1.4522,-0.071141,-1.85,-1.2825,-1.4878 +1.085,1.4524,-0.063812,-1.8521,-1.284,-1.4889 +1.0937,1.4525,-0.056437,-1.8542,-1.2853,-1.49 +1.1023,1.4527,-0.049018,-1.8562,-1.2865,-1.4912 +1.1109,1.4529,-0.041555,-1.8581,-1.2877,-1.4924 +1.1195,1.453,-0.03405,-1.86,-1.2887,-1.4937 +1.1279,1.4532,-0.026501,-1.8617,-1.2896,-1.495 +1.1364,1.4534,-0.018911,-1.8635,-1.2905,-1.4964 +1.1447,1.4536,-0.01128,-1.8651,-1.2912,-1.4978 +1.153,1.4537,-0.0036086,-1.8667,-1.2919,-1.4992 +1.1613,1.4539,0.0041023,-1.8682,-1.2925,-1.5007 +1.1695,1.4541,0.011852,-1.8696,-1.2929,-1.5023 +1.1776,1.4543,0.01964,-1.871,-1.2933,-1.5038 +1.1856,1.4545,0.027465,-1.8723,-1.2936,-1.5055 +1.1936,1.4547,0.035327,-1.8735,-1.2937,-1.5071 +1.2016,1.4549,0.043225,-1.8746,-1.2938,-1.5088 +1.2094,1.455,0.051159,-1.8757,-1.2938,-1.5106 +1.2172,1.4552,0.059126,-1.8767,-1.2937,-1.5124 +1.2249,1.4554,0.067127,-1.8776,-1.2934,-1.5142 +1.2326,1.4556,0.075162,-1.8784,-1.2931,-1.5161 +1.2402,1.4558,0.083228,-1.8792,-1.2927,-1.518 +1.2477,1.4559,0.091326,-1.8799,-1.2922,-1.5199 +1.2552,1.4561,0.099455,-1.8805,-1.2916,-1.5219 +1.2626,1.4563,0.10761,-1.881,-1.2909,-1.5239 +1.2699,1.4564,0.1158,-1.8815,-1.2901,-1.526 +1.2771,1.4566,0.12402,-1.8819,-1.2892,-1.5281 +1.2843,1.4567,0.13226,-1.8822,-1.2882,-1.5302 +1.2914,1.4569,0.14053,-1.8824,-1.2871,-1.5324 +1.2984,1.457,0.14883,-1.8826,-1.2859,-1.5346 +1.3053,1.4571,0.15715,-1.8826,-1.2846,-1.5368 +1.3122,1.4572,0.1655,-1.8827,-1.2832,-1.5391 +1.319,1.4573,0.17387,-1.8826,-1.2817,-1.5414 +1.3257,1.4574,0.18226,-1.8824,-1.2801,-1.5437 +1.3323,1.4575,0.19068,-1.8822,-1.2784,-1.5461 +1.3389,1.4576,0.19911,-1.8819,-1.2766,-1.5485 +1.3453,1.4577,0.20757,-1.8815,-1.2748,-1.5509 +1.3517,1.4577,0.21605,-1.881,-1.2728,-1.5534 +1.358,1.4578,0.22455,-1.8805,-1.2707,-1.5559 +1.3643,1.4578,0.23306,-1.8799,-1.2685,-1.5584 +1.3704,1.4578,0.24159,-1.8792,-1.2663,-1.5609 +1.3765,1.4578,0.25014,-1.8784,-1.2639,-1.5635 +1.3825,1.4578,0.25871,-1.8775,-1.2615,-1.5661 +1.3884,1.4577,0.26729,-1.8766,-1.2589,-1.5687 +1.3942,1.4577,0.27588,-1.8756,-1.2563,-1.5714 +1.3999,1.4576,0.28449,-1.8745,-1.2535,-1.5741 +1.4056,1.4575,0.29311,-1.8733,-1.2507,-1.5768 +1.4111,1.4574,0.30174,-1.872,-1.2478,-1.5795 +1.4166,1.4573,0.31039,-1.8707,-1.2447,-1.5822 +1.422,1.4572,0.31904,-1.8693,-1.2416,-1.585 +1.4273,1.457,0.32771,-1.8678,-1.2384,-1.5878 +1.4325,1.4568,0.33638,-1.8662,-1.2351,-1.5906 +1.4377,1.4566,0.34506,-1.8646,-1.2317,-1.5934 +1.4427,1.4564,0.35375,-1.8628,-1.2282,-1.5963 +1.4477,1.4561,0.36244,-1.861,-1.2246,-1.5992 +1.4525,1.4558,0.37114,-1.8591,-1.221,-1.6021 +1.4573,1.4555,0.37985,-1.8571,-1.2172,-1.605 +1.462,1.4552,0.38856,-1.8551,-1.2134,-1.6079 +1.4666,1.4549,0.39727,-1.853,-1.2094,-1.6108 +1.4711,1.4545,0.40599,-1.8507,-1.2054,-1.6138 +1.4755,1.4541,0.41471,-1.8485,-1.2013,-1.6167 +1.4798,1.4537,0.42343,-1.8461,-1.197,-1.6197 +1.484,1.4532,0.43215,-1.8436,-1.1927,-1.6227 +1.4882,1.4527,0.44087,-1.8411,-1.1884,-1.6257 +1.4922,1.4522,0.44959,-1.8385,-1.1839,-1.6287 +1.4961,1.4516,0.4583,-1.8358,-1.1793,-1.6317 +1.5,1.4511,0.46702,-1.833,-1.1747,-1.6348 +1.5038,1.4504,0.47573,-1.8302,-1.1699,-1.6378 +1.5074,1.4498,0.48444,-1.8272,-1.1651,-1.6409 +1.511,1.4491,0.49314,-1.8242,-1.1602,-1.6439 +1.5145,1.4484,0.50184,-1.8212,-1.1552,-1.647 +1.5179,1.4477,0.51053,-1.818,-1.1501,-1.6501 +1.5212,1.4469,0.51921,-1.8147,-1.145,-1.6531 +1.5244,1.4461,0.52789,-1.8114,-1.1398,-1.6562 +1.5275,1.4452,0.53655,-1.808,-1.1344,-1.6593 +1.5305,1.4443,0.54521,-1.8045,-1.129,-1.6624 +1.5334,1.4434,0.55386,-1.801,-1.1236,-1.6655 +1.5362,1.4424,0.5625,-1.7974,-1.118,-1.6686 +1.5389,1.4414,0.57113,-1.7936,-1.1123,-1.6716 +1.5415,1.4404,0.57974,-1.7899,-1.1066,-1.6747 +1.5441,1.4393,0.58835,-1.786,-1.1008,-1.6778 +1.5465,1.4382,0.59694,-1.7821,-1.095,-1.6809 +1.5488,1.437,0.60551,-1.778,-1.089,-1.684 +1.5511,1.4358,0.61407,-1.7739,-1.083,-1.687 +1.5532,1.4345,0.62262,-1.7698,-1.0769,-1.6901 +1.5552,1.4332,0.63115,-1.7655,-1.0707,-1.6932 +1.5572,1.4319,0.63966,-1.7612,-1.0644,-1.6962 +1.559,1.4305,0.64816,-1.7568,-1.0581,-1.6993 +1.5608,1.4291,0.65664,-1.7523,-1.0517,-1.7023 +1.5624,1.4276,0.6651,-1.7478,-1.0452,-1.7054 +1.564,1.4261,0.67354,-1.7431,-1.0387,-1.7084 +1.5654,1.4245,0.68196,-1.7384,-1.0321,-1.7114 +1.5668,1.4229,0.69036,-1.7337,-1.0254,-1.7144 +1.5681,1.4212,0.69874,-1.7288,-1.0187,-1.7174 +1.5692,1.4195,0.7071,-1.7239,-1.0118,-1.7204 +1.5703,1.4178,0.71543,-1.7189,-1.0049,-1.7233 +1.5713,1.416,0.72375,-1.7138,-0.99799,-1.7263 +1.5721,1.4141,0.73204,-1.7087,-0.99098,-1.7292 +1.5729,1.4122,0.7403,-1.7035,-0.98389,-1.7321 +1.5736,1.4102,0.74854,-1.6982,-0.97674,-1.735 +1.5742,1.4082,0.75676,-1.6928,-0.96953,-1.7379 +1.5746,1.4061,0.76495,-1.6874,-0.96226,-1.7408 +1.575,1.404,0.77312,-1.6819,-0.95493,-1.7436 +1.5753,1.4018,0.78125,-1.6763,-0.94753,-1.7465 +1.5755,1.3996,0.78936,-1.6707,-0.94007,-1.7493 +1.5756,1.3973,0.79745,-1.665,-0.93256,-1.752 +1.5756,1.3949,0.8055,-1.6592,-0.92499,-1.7548 +1.5755,1.3925,0.81353,-1.6534,-0.91735,-1.7575 +1.5753,1.3901,0.82152,-1.6475,-0.90967,-1.7603 +1.575,1.3876,0.82949,-1.6415,-0.90192,-1.7629 +1.5746,1.385,0.83742,-1.6354,-0.89413,-1.7656 +1.5741,1.3824,0.84533,-1.6293,-0.88627,-1.7683 +1.5735,1.3797,0.8532,-1.6231,-0.87837,-1.7709 +1.5728,1.3769,0.86104,-1.6169,-0.87041,-1.7734 +1.5721,1.3741,0.86885,-1.6106,-0.8624,-1.776 +1.5712,1.3713,0.87663,-1.6042,-0.85434,-1.7785 +1.5702,1.3683,0.88437,-1.5977,-0.84623,-1.781 +1.5691,1.3653,0.89208,-1.5912,-0.83807,-1.7835 +1.568,1.3623,0.89976,-1.5846,-0.82987,-1.7859 +1.5667,1.3592,0.9074,-1.578,-0.82162,-1.7883 +1.5654,1.356,0.915,-1.5713,-0.81332,-1.7907 +1.5639,1.3528,0.92257,-1.5645,-0.80497,-1.793 +1.5624,1.3495,0.93011,-1.5577,-0.79659,-1.7953 +1.5608,1.3461,0.9376,-1.5508,-0.78816,-1.7976 +1.559,1.3427,0.94506,-1.5439,-0.77968,-1.7998 +1.5572,1.3392,0.95249,-1.5369,-0.77117,-1.802 +1.5553,1.3357,0.95987,-1.5298,-0.76261,-1.8042 +1.5533,1.3321,0.96722,-1.5227,-0.75402,-1.8063 +1.5512,1.3284,0.97453,-1.5155,-0.74539,-1.8084 +1.549,1.3246,0.98181,-1.5082,-0.73672,-1.8104 +1.5467,1.3208,0.98904,-1.5009,-0.72801,-1.8124 +1.5443,1.317,0.99623,-1.4936,-0.71927,-1.8144 +1.5418,1.313,1.0034,-1.4861,-0.71049,-1.8163 +1.5393,1.309,1.0105,-1.4787,-0.70168,-1.8182 +1.5366,1.305,1.0176,-1.4711,-0.69283,-1.82 +1.5339,1.3008,1.0246,-1.4635,-0.68396,-1.8218 +1.531,1.2966,1.0316,-1.4559,-0.67505,-1.8236 +1.5281,1.2923,1.0386,-1.4482,-0.66611,-1.8253 +1.5251,1.288,1.0455,-1.4405,-0.65715,-1.8269 +1.522,1.2836,1.0523,-1.4327,-0.64815,-1.8285 +1.5188,1.2791,1.0592,-1.4248,-0.63913,-1.8301 +1.5155,1.2746,1.0659,-1.4169,-0.63008,-1.8316 +1.5121,1.27,1.0727,-1.4089,-0.62101,-1.8331 +1.5087,1.2653,1.0794,-1.4009,-0.61191,-1.8345 +1.5051,1.2606,1.086,-1.3929,-0.60279,-1.8359 +1.5015,1.2557,1.0926,-1.3848,-0.59365,-1.8372 +1.4978,1.2509,1.0992,-1.3766,-0.58449,-1.8385 +1.494,1.2459,1.1057,-1.3684,-0.5753,-1.8398 +1.4901,1.2409,1.1122,-1.3601,-0.5661,-1.8409 +1.4861,1.2358,1.1187,-1.3518,-0.55688,-1.8421 +1.482,1.2307,1.125,-1.3435,-0.54764,-1.8431 +1.4779,1.2254,1.1314,-1.3351,-0.53838,-1.8442 +1.4736,1.2201,1.1377,-1.3267,-0.52911,-1.8451 +1.4693,1.2148,1.1439,-1.3182,-0.51982,-1.846 +1.4649,1.2093,1.1502,-1.3097,-0.51052,-1.8469 +1.4604,1.2038,1.1563,-1.3011,-0.50121,-1.8477 +1.4559,1.1983,1.1624,-1.2925,-0.49188,-1.8485 +1.4512,1.1926,1.1685,-1.2838,-0.48255,-1.8492 +1.4465,1.1869,1.1745,-1.2751,-0.4732,-1.8498 +1.4417,1.1812,1.1805,-1.2664,-0.46385,-1.8504 +1.4368,1.1753,1.1865,-1.2576,-0.45449,-1.8509 +1.4318,1.1694,1.1924,-1.2488,-0.44512,-1.8514 +1.4267,1.1634,1.1982,-1.2399,-0.43574,-1.8518 +1.4216,1.1574,1.204,-1.2311,-0.42636,-1.8522 +1.4164,1.1513,1.2098,-1.2221,-0.41698,-1.8525 +1.4111,1.1451,1.2155,-1.2132,-0.40759,-1.8527 +1.4058,1.1389,1.2211,-1.2042,-0.3982,-1.8529 +1.4003,1.1325,1.2267,-1.1951,-0.38881,-1.853 +1.3948,1.1262,1.2323,-1.186,-0.37942,-1.8531 +1.3892,1.1197,1.2378,-1.1769,-0.37003,-1.8531 +1.3835,1.1132,1.2433,-1.1678,-0.36064,-1.8531 +1.3778,1.1066,1.2487,-1.1586,-0.35125,-1.8529 +1.3719,1.1,1.2541,-1.1494,-0.34187,-1.8528 +1.3661,1.0932,1.2594,-1.1402,-0.33249,-1.8525 +1.3601,1.0865,1.2647,-1.1309,-0.32311,-1.8522 +1.354,1.0796,1.2699,-1.1216,-0.31374,-1.8519 +1.3479,1.0727,1.2751,-1.1123,-0.30438,-1.8514 +1.3417,1.0657,1.2802,-1.1029,-0.29503,-1.8509 +1.3355,1.0587,1.2853,-1.0935,-0.28568,-1.8504 +1.3292,1.0516,1.2904,-1.0841,-0.27635,-1.8498 +1.3228,1.0444,1.2954,-1.0746,-0.26702,-1.8491 +1.3163,1.0372,1.3003,-1.0652,-0.25771,-1.8484 +1.3098,1.0299,1.3052,-1.0557,-0.24841,-1.8476 +1.3031,1.0225,1.3101,-1.0462,-0.23912,-1.8467 +1.2965,1.0151,1.3149,-1.0366,-0.22985,-1.8458 +1.2897,1.0076,1.3196,-1.027,-0.22059,-1.8448 +1.2829,1,1.3243,-1.0174,-0.21135,-1.8437 +1.2761,0.99243,1.329,-1.0078,-0.20212,-1.8426 +1.2691,0.98476,1.3336,-0.99818,-0.19292,-1.8414 +1.2621,0.97703,1.3382,-0.98852,-0.18373,-1.8401 +1.255,0.96925,1.3427,-0.97884,-0.17456,-1.8388 +1.2479,0.9614,1.3472,-0.96914,-0.16541,-1.8374 +1.2407,0.95349,1.3516,-0.95942,-0.15628,-1.836 +1.2335,0.94552,1.3559,-0.94968,-0.14717,-1.8345 +1.2262,0.9375,1.3603,-0.93992,-0.13808,-1.8329 +1.2188,0.92942,1.3646,-0.93015,-0.12902,-1.8312 +1.2113,0.92128,1.3688,-0.92036,-0.11999,-1.8295 +1.2038,0.91309,1.373,-0.91055,-0.11098,-1.8277 +1.1963,0.90484,1.3771,-0.90073,-0.10199,-1.8259 +1.1887,0.89654,1.3812,-0.89089,-0.093031,-1.824 +1.181,0.88818,1.3853,-0.88103,-0.084099,-1.822 +1.1733,0.87977,1.3893,-0.87117,-0.075196,-1.82 +1.1655,0.8713,1.3932,-0.86129,-0.066323,-1.8179 +1.1576,0.86279,1.3971,-0.8514,-0.057479,-1.8157 +1.1497,0.85422,1.401,-0.84149,-0.048665,-1.8134 +1.1418,0.8456,1.4048,-0.83158,-0.039884,-1.8111 +1.1338,0.83693,1.4085,-0.82165,-0.031134,-1.8088 +1.1257,0.82821,1.4123,-0.81172,-0.022418,-1.8063 +1.1176,0.81944,1.4159,-0.80177,-0.013735,-1.8038 +1.1094,0.81063,1.4196,-0.79182,-0.0050863,-1.8012 +1.1012,0.80176,1.4231,-0.78186,0.0035268,-1.7986 +1.093,0.79285,1.4267,-0.77189,0.012104,-1.7959 +1.0846,0.7839,1.4302,-0.76192,0.020645,-1.7931 +1.0763,0.77489,1.4336,-0.75194,0.029148,-1.7903 +1.0679,0.76585,1.437,-0.74195,0.037613,-1.7874 +1.0594,0.75676,1.4403,-0.73196,0.046039,-1.7844 +1.0509,0.74763,1.4437,-0.72196,0.054425,-1.7814 +1.0423,0.73845,1.4469,-0.71196,0.062772,-1.7783 +1.0337,0.72924,1.4501,-0.70196,0.071077,-1.7752 +1.0251,0.71998,1.4533,-0.69195,0.079341,-1.7719 +1.0164,0.71069,1.4564,-0.68195,0.087563,-1.7686 +1.0077,0.70136,1.4595,-0.67194,0.095742,-1.7653 +0.99887,0.69198,1.4625,-0.66193,0.10388,-1.7619 +0.99005,0.68258,1.4655,-0.65192,0.11197,-1.7584 +0.98119,0.67313,1.4685,-0.64191,0.12001,-1.7548 +0.97228,0.66365,1.4714,-0.6319,0.12802,-1.7512 +0.96334,0.65414,1.4742,-0.6219,0.13597,-1.7476 +0.95436,0.6446,1.477,-0.61189,0.14388,-1.7438 +0.94533,0.63502,1.4798,-0.60189,0.15174,-1.74 +0.93627,0.62541,1.4825,-0.59189,0.15955,-1.7362 +0.92717,0.61577,1.4852,-0.5819,0.16731,-1.7322 +0.91804,0.6061,1.4878,-0.57191,0.17503,-1.7283 +0.90887,0.5964,1.4904,-0.56192,0.18269,-1.7242 +0.89966,0.58668,1.493,-0.55194,0.19031,-1.7201 +0.89042,0.57692,1.4955,-0.54197,0.19787,-1.7159 +0.88114,0.56715,1.4979,-0.532,0.20539,-1.7117 +0.87183,0.55734,1.5004,-0.52204,0.21285,-1.7074 +0.86249,0.54752,1.5027,-0.51209,0.22025,-1.703 +0.85312,0.53767,1.5051,-0.50214,0.22761,-1.6986 +0.84371,0.5278,1.5074,-0.4922,0.23491,-1.6942 +0.83428,0.51791,1.5096,-0.48228,0.24216,-1.6896 +0.82481,0.508,1.5118,-0.47236,0.24935,-1.685 +0.81532,0.49807,1.514,-0.46245,0.25649,-1.6804 +0.8058,0.48813,1.5161,-0.45256,0.26357,-1.6757 +0.79625,0.47817,1.5182,-0.44267,0.27059,-1.6709 +0.78667,0.46819,1.5202,-0.4328,0.27756,-1.6661 +0.77707,0.4582,1.5222,-0.42294,0.28447,-1.6612 +0.76744,0.44819,1.5242,-0.41309,0.29133,-1.6562 +0.75779,0.43818,1.5261,-0.40326,0.29812,-1.6513 +0.74811,0.42815,1.5279,-0.39344,0.30486,-1.6462 +0.73841,0.41811,1.5298,-0.38363,0.31154,-1.6411 +0.72869,0.40807,1.5316,-0.37384,0.31816,-1.6359 +0.71895,0.39801,1.5333,-0.36406,0.32472,-1.6307 +0.70918,0.38796,1.535,-0.3543,0.33121,-1.6254 +0.6994,0.37789,1.5367,-0.34455,0.33765,-1.6201 +0.68959,0.36782,1.5383,-0.33482,0.34403,-1.6147 +0.67977,0.35775,1.5399,-0.32511,0.35035,-1.6093 +0.66993,0.34767,1.5414,-0.31542,0.3566,-1.6038 +0.66007,0.3376,1.5429,-0.30574,0.36279,-1.5983 +0.65019,0.32752,1.5444,-0.29609,0.36892,-1.5927 +0.6403,0.31745,1.5458,-0.28645,0.37499,-1.587 +0.6304,0.30738,1.5472,-0.27683,0.38099,-1.5813 +0.62048,0.29731,1.5485,-0.26723,0.38693,-1.5756 +0.61054,0.28724,1.5498,-0.25765,0.3928,-1.5698 +0.60059,0.27719,1.5511,-0.24809,0.39861,-1.564 +0.59063,0.26714,1.5523,-0.23855,0.40436,-1.5581 +0.58066,0.25709,1.5535,-0.22903,0.41004,-1.5521 +0.57068,0.24706,1.5547,-0.21954,0.41566,-1.5461 +0.56069,0.23704,1.5558,-0.21006,0.42121,-1.5401 +0.55069,0.22703,1.5568,-0.20061,0.42669,-1.534 +0.54068,0.21703,1.5578,-0.19119,0.43211,-1.5279 +0.53066,0.20704,1.5588,-0.18178,0.43746,-1.5217 +0.52064,0.19708,1.5598,-0.1724,0.44274,-1.5155 +0.51061,0.18712,1.5607,-0.16304,0.44796,-1.5093 +0.50057,0.17719,1.5615,-0.15371,0.45311,-1.5029 +0.49053,0.16727,1.5624,-0.14441,0.4582,-1.4966 +0.48049,0.15737,1.5632,-0.13512,0.46321,-1.4902 +0.47044,0.1475,1.5639,-0.12587,0.46816,-1.4838 +0.46039,0.13764,1.5646,-0.11664,0.47304,-1.4773 +0.45034,0.12781,1.5653,-0.10744,0.47785,-1.4708 +0.44028,0.11801,1.5659,-0.098259,0.48259,-1.4642 +0.43023,0.10823,1.5665,-0.089109,0.48726,-1.4576 +0.42017,0.098471,1.5671,-0.079987,0.49187,-1.451 +0.41012,0.088745,1.5676,-0.070893,0.4964,-1.4443 +0.40007,0.079047,1.5681,-0.061826,0.50087,-1.4376 +0.39002,0.06938,1.5685,-0.052788,0.50527,-1.4308 +0.37998,0.059744,1.5689,-0.043779,0.50959,-1.424 +0.36993,0.05014,1.5693,-0.034799,0.51385,-1.4172 +0.3599,0.04057,1.5696,-0.025848,0.51804,-1.4104 +0.34987,0.031035,1.5699,-0.016927,0.52215,-1.4035 +0.33984,0.021535,1.5702,-0.0080362,0.5262,-1.3965 +0.32982,0.012072,1.5704,0.0008245,0.53018,-1.3895 +0.31981,0.0026475,1.5705,0.0096545,0.53408,-1.3825 +0.30981,-0.006738,1.5707,0.018454,0.53792,-1.3755 +0.29982,-0.016083,1.5708,0.027222,0.54168,-1.3684 +0.28984,-0.025387,1.5708,0.035958,0.54537,-1.3613 +0.27987,-0.034648,1.5709,0.044662,0.549,-1.3542 +0.26991,-0.043866,1.5708,0.053335,0.55255,-1.347 +0.25996,-0.053039,1.5708,0.061975,0.55603,-1.3399 +0.25002,-0.062166,1.5707,0.070582,0.55944,-1.3326 +0.2401,-0.071246,1.5705,0.079157,0.56278,-1.3254 +0.23019,-0.080279,1.5704,0.087698,0.56605,-1.3181 +0.2203,-0.089262,1.5702,0.096206,0.56924,-1.3108 +0.21042,-0.098195,1.5699,0.10468,0.57237,-1.3035 +0.20056,-0.10708,1.5696,0.11312,0.57542,-1.2961 +0.19072,-0.11591,1.5693,0.12153,0.5784,-1.2887 +0.18089,-0.12468,1.5689,0.1299,0.58131,-1.2813 +0.17109,-0.13341,1.5685,0.13824,0.58415,-1.2739 +0.1613,-0.14207,1.5681,0.14654,0.58692,-1.2664 +0.15153,-0.15068,1.5676,0.1548,0.58962,-1.2589 +0.14178,-0.15924,1.5671,0.16304,0.59224,-1.2514 +0.13206,-0.16773,1.5665,0.17123,0.5948,-1.2439 +0.12236,-0.17617,1.5659,0.17939,0.59728,-1.2363 +0.11268,-0.18454,1.5653,0.18751,0.5997,-1.2288 +0.10302,-0.19285,1.5646,0.1956,0.60204,-1.2212 +0.093387,-0.20111,1.5639,0.20365,0.60431,-1.2135 +0.083781,-0.20929,1.5632,0.21167,0.60651,-1.2059 +0.074199,-0.21742,1.5624,0.21964,0.60863,-1.1983 +0.064645,-0.22547,1.5615,0.22758,0.61069,-1.1906 +0.055117,-0.23347,1.5607,0.23549,0.61268,-1.1829 +0.045618,-0.24139,1.5598,0.24335,0.61459,-1.1752 +0.036147,-0.24925,1.5588,0.25118,0.61644,-1.1675 +0.026706,-0.25704,1.5578,0.25897,0.61821,-1.1597 +0.017294,-0.26476,1.5568,0.26672,0.61992,-1.152 +0.0079134,-0.2724,1.5557,0.27443,0.62155,-1.1442 +-0.0014359,-0.27998,1.5546,0.28211,0.62311,-1.1364 +-0.010753,-0.28748,1.5535,0.28974,0.62461,-1.1286 +-0.020037,-0.29491,1.5523,0.29734,0.62603,-1.1208 +-0.029288,-0.30227,1.5511,0.3049,0.62738,-1.113 +-0.038505,-0.30955,1.5498,0.31242,0.62867,-1.1051 +-0.047687,-0.31676,1.5485,0.31989,0.62988,-1.0973 +-0.056833,-0.32389,1.5472,0.32733,0.63103,-1.0894 +-0.065943,-0.33094,1.5458,0.33473,0.6321,-1.0816 +-0.075016,-0.33791,1.5444,0.34209,0.63311,-1.0737 +-0.084051,-0.3448,1.5429,0.34941,0.63404,-1.0658 +-0.093048,-0.35162,1.5414,0.35669,0.63491,-1.0579 +-0.10201,-0.35835,1.5398,0.36393,0.63571,-1.05 +-0.11092,-0.36501,1.5382,0.37113,0.63645,-1.0421 +-0.1198,-0.37158,1.5366,0.37829,0.63711,-1.0342 +-0.12864,-0.37807,1.5349,0.38541,0.63771,-1.0262 +-0.13744,-0.38447,1.5332,0.39248,0.63823,-1.0183 +-0.14619,-0.39079,1.5315,0.39952,0.63869,-1.0103 +-0.1549,-0.39703,1.5297,0.40651,0.63909,-1.0024 +-0.16356,-0.40318,1.5278,0.41347,0.63941,-0.99444 +-0.17219,-0.40925,1.5259,0.42038,0.63967,-0.98649 +-0.18076,-0.41522,1.524,0.42725,0.63987,-0.97853 +-0.1893,-0.42112,1.5221,0.43408,0.63999,-0.97056 +-0.19778,-0.42692,1.5201,0.44086,0.64005,-0.96259 +-0.20622,-0.43264,1.518,0.44761,0.64005,-0.95462 +-0.21461,-0.43826,1.5159,0.45431,0.63997,-0.94665 +-0.22295,-0.4438,1.5138,0.46097,0.63984,-0.93867 +-0.23125,-0.44925,1.5116,0.46758,0.63964,-0.93069 +-0.23949,-0.4546,1.5094,0.47416,0.63937,-0.92272 +-0.24768,-0.45987,1.5071,0.48069,0.63904,-0.91474 +-0.25583,-0.46504,1.5048,0.48718,0.63864,-0.90676 +-0.26392,-0.47012,1.5025,0.49363,0.63818,-0.89878 +-0.27196,-0.47511,1.5001,0.50003,0.63766,-0.8908 +-0.27995,-0.48001,1.4976,0.50639,0.63707,-0.88282 +-0.28788,-0.48481,1.4952,0.51271,0.63642,-0.87485 +-0.29576,-0.48952,1.4926,0.51898,0.63571,-0.86687 +-0.30359,-0.49414,1.4901,0.52521,0.63493,-0.8589 +-0.31136,-0.49866,1.4875,0.5314,0.63409,-0.85093 +-0.31908,-0.50308,1.4848,0.53754,0.63319,-0.84297 +-0.32674,-0.50741,1.4821,0.54364,0.63223,-0.835 +-0.33434,-0.51165,1.4794,0.5497,0.63121,-0.82704 +-0.34188,-0.51578,1.4766,0.55571,0.63013,-0.81909 +-0.34937,-0.51983,1.4737,0.56168,0.62898,-0.81114 +-0.3568,-0.52377,1.4709,0.5676,0.62778,-0.80319 +-0.36417,-0.52762,1.4679,0.57348,0.62651,-0.79525 +-0.37148,-0.53137,1.465,0.57932,0.62519,-0.78731 +-0.37873,-0.53503,1.462,0.58511,0.62381,-0.77938 +-0.38592,-0.53858,1.4589,0.59085,0.62237,-0.77146 +-0.39304,-0.54204,1.4558,0.59655,0.62087,-0.76354 +-0.40011,-0.5454,1.4526,0.60221,0.61931,-0.75563 +-0.40711,-0.54867,1.4494,0.60782,0.61769,-0.74772 +-0.41405,-0.55183,1.4462,0.61339,0.61602,-0.73982 +-0.42093,-0.5549,1.4429,0.61891,0.61429,-0.73193 +-0.42774,-0.55786,1.4396,0.62439,0.6125,-0.72404 +-0.43449,-0.56073,1.4362,0.62982,0.61066,-0.71617 +-0.44117,-0.5635,1.4328,0.63521,0.60876,-0.7083 +-0.44779,-0.56618,1.4293,0.64055,0.6068,-0.70044 +-0.45434,-0.56875,1.4258,0.64585,0.60479,-0.69258 +-0.46082,-0.57122,1.4222,0.6511,0.60273,-0.68474 +-0.46724,-0.5736,1.4186,0.6563,0.60061,-0.6769 +-0.47358,-0.57587,1.4149,0.66146,0.59844,-0.66908 +-0.47987,-0.57805,1.4112,0.66658,0.59621,-0.66126 +-0.48608,-0.58013,1.4075,0.67165,0.59393,-0.65345 +-0.49222,-0.58211,1.4037,0.67667,0.5916,-0.64565 +-0.49829,-0.58399,1.3998,0.68164,0.58922,-0.63787 +-0.50429,-0.58577,1.3959,0.68657,0.58678,-0.63009 +-0.51023,-0.58745,1.392,0.69146,0.5843,-0.62232 +-0.51609,-0.58904,1.388,0.6963,0.58176,-0.61456 +-0.52188,-0.59052,1.3839,0.70109,0.57917,-0.60681 +-0.52759,-0.59191,1.3798,0.70583,0.57653,-0.59907 +-0.53324,-0.5932,1.3757,0.71053,0.57384,-0.59134 +-0.53881,-0.59439,1.3715,0.71518,0.57111,-0.58363 +-0.54431,-0.59548,1.3673,0.71979,0.56832,-0.57592 +-0.54974,-0.59648,1.363,0.72435,0.56549,-0.56822 +-0.55509,-0.59738,1.3586,0.72886,0.56261,-0.56054 +-0.56036,-0.59818,1.3543,0.73332,0.55968,-0.55286 +-0.56556,-0.59889,1.3498,0.73774,0.5567,-0.5452 +-0.57069,-0.5995,1.3454,0.74211,0.55368,-0.53755 +-0.57574,-0.60001,1.3408,0.74644,0.55061,-0.5299 +-0.58071,-0.60043,1.3363,0.75071,0.5475,-0.52227 +-0.58561,-0.60075,1.3316,0.75494,0.54434,-0.51465 +-0.59043,-0.60098,1.327,0.75912,0.54114,-0.50705 +-0.59517,-0.60111,1.3222,0.76326,0.53789,-0.49945 +-0.59984,-0.60114,1.3175,0.76735,0.5346,-0.49186 +-0.60443,-0.60109,1.3127,0.77138,0.53126,-0.48429 +-0.60894,-0.60094,1.3078,0.77538,0.52789,-0.47672 +-0.61337,-0.60069,1.3029,0.77932,0.52447,-0.46917 +-0.61772,-0.60036,1.2979,0.78322,0.52101,-0.46163 +-0.62199,-0.59993,1.2929,0.78706,0.51751,-0.4541 +-0.62618,-0.59941,1.2878,0.79086,0.51396,-0.44658 +-0.63029,-0.59879,1.2827,0.79462,0.51038,-0.43907 +-0.63433,-0.59809,1.2776,0.79832,0.50676,-0.43157 +-0.63828,-0.5973,1.2724,0.80198,0.5031,-0.42409 +-0.64215,-0.59642,1.2671,0.80558,0.4994,-0.41661 +-0.64594,-0.59544,1.2618,0.80914,0.49566,-0.40915 +-0.64965,-0.59438,1.2565,0.81265,0.49189,-0.40169 +-0.65327,-0.59323,1.2511,0.81611,0.48807,-0.39425 +-0.65682,-0.592,1.2456,0.81953,0.48422,-0.38681 +-0.66028,-0.59067,1.2401,0.82289,0.48034,-0.37939 +-0.66366,-0.58926,1.2346,0.82621,0.47642,-0.37198 +-0.66695,-0.58777,1.229,0.82947,0.47246,-0.36458 +-0.67017,-0.58619,1.2233,0.83269,0.46847,-0.35718 +-0.6733,-0.58452,1.2176,0.83586,0.46444,-0.3498 +-0.67635,-0.58277,1.2119,0.83898,0.46039,-0.34243 +-0.67931,-0.58094,1.2061,0.84205,0.45629,-0.33506 +-0.68219,-0.57903,1.2003,0.84507,0.45217,-0.32771 +-0.68499,-0.57703,1.1944,0.84804,0.44801,-0.32036 +-0.6877,-0.57496,1.1885,0.85096,0.44383,-0.31302 +-0.69033,-0.5728,1.1825,0.85383,0.43961,-0.3057 +-0.69287,-0.57056,1.1765,0.85665,0.43536,-0.29838 +-0.69533,-0.56825,1.1704,0.85943,0.43108,-0.29107 +-0.6977,-0.56586,1.1643,0.86215,0.42678,-0.28377 +-0.69999,-0.56339,1.1581,0.86482,0.42244,-0.27647 +-0.7022,-0.56084,1.1519,0.86744,0.41807,-0.26919 +-0.70432,-0.55822,1.1456,0.87002,0.41368,-0.26191 +-0.70635,-0.55553,1.1393,0.87254,0.40926,-0.25464 +-0.7083,-0.55276,1.133,0.87501,0.40482,-0.24737 +-0.71016,-0.54992,1.1266,0.87743,0.40035,-0.24011 +-0.71194,-0.54701,1.1201,0.8798,0.39585,-0.23286 +-0.71363,-0.54402,1.1137,0.88212,0.39133,-0.22562 +-0.71524,-0.54097,1.1071,0.88439,0.38678,-0.21838 +-0.71676,-0.53785,1.1005,0.88661,0.38221,-0.21115 +-0.71819,-0.53465,1.0939,0.88878,0.37762,-0.20393 +-0.71954,-0.5314,1.0873,0.8909,0.373,-0.1967 +-0.72081,-0.52807,1.0805,0.89296,0.36836,-0.18949 +-0.72199,-0.52468,1.0738,0.89498,0.3637,-0.18228 +-0.72308,-0.52122,1.067,0.89694,0.35902,-0.17507 +-0.72409,-0.51771,1.0601,0.89885,0.35432,-0.16787 +-0.72501,-0.51412,1.0533,0.90072,0.3496,-0.16067 +-0.72584,-0.51048,1.0463,0.90253,0.34486,-0.15348 +-0.72659,-0.50678,1.0394,0.90428,0.3401,-0.14629 +-0.72725,-0.50301,1.0323,0.90599,0.33532,-0.1391 +-0.72783,-0.49919,1.0253,0.90765,0.33053,-0.13192 +-0.72833,-0.49531,1.0182,0.90925,0.32571,-0.12474 +-0.72873,-0.49138,1.0111,0.9108,0.32088,-0.11756 +-0.72905,-0.48739,1.0039,0.9123,0.31604,-0.11038 +-0.72929,-0.48334,0.99666,0.91375,0.31118,-0.10321 +-0.72944,-0.47924,0.98941,0.91514,0.3063,-0.096031 +-0.72951,-0.47509,0.98211,0.91649,0.30142,-0.088857 +-0.72949,-0.47089,0.97477,0.91778,0.29651,-0.081684 +-0.72939,-0.46664,0.96739,0.91902,0.2916,-0.074511 +-0.7292,-0.46233,0.95998,0.9202,0.28667,-0.067338 +-0.72893,-0.45798,0.95252,0.92134,0.28173,-0.060164 +-0.72857,-0.45359,0.94503,0.92242,0.27678,-0.05299 +-0.72813,-0.44914,0.9375,0.92344,0.27181,-0.045814 +-0.72761,-0.44466,0.92994,0.92442,0.26684,-0.038637 +-0.727,-0.44013,0.92234,0.92534,0.26186,-0.031459 +-0.72631,-0.43555,0.9147,0.92621,0.25687,-0.024277 +-0.72553,-0.43094,0.90702,0.92703,0.25187,-0.017094 +-0.72467,-0.42628,0.89932,0.92779,0.24686,-0.0099073 +-0.72373,-0.42159,0.89157,0.9285,0.24185,-0.0027175 +-0.72271,-0.41686,0.8838,0.92916,0.23682,0.004476 +-0.7216,-0.41209,0.87599,0.92976,0.2318,0.011673 +-0.72042,-0.40729,0.86814,0.93031,0.22676,0.018875 +-0.71915,-0.40245,0.86027,0.93081,0.22173,0.026082 +-0.71779,-0.39758,0.85236,0.93125,0.21668,0.033294 +-0.71636,-0.39267,0.84442,0.93164,0.21164,0.040511 +-0.71485,-0.38774,0.83645,0.93198,0.20659,0.047734 +-0.71326,-0.38277,0.82845,0.93226,0.20154,0.054964 +-0.71158,-0.37778,0.82042,0.93249,0.19648,0.0622 +-0.70983,-0.37276,0.81236,0.93266,0.19143,0.069443 +-0.70799,-0.36771,0.80427,0.93279,0.18637,0.076693 +-0.70608,-0.36264,0.79615,0.93285,0.18131,0.083951 +-0.70409,-0.35755,0.78801,0.93286,0.17626,0.091217 +-0.70202,-0.35243,0.77984,0.93282,0.1712,0.098492 +-0.69987,-0.34729,0.77164,0.93273,0.16615,0.10578 +-0.69765,-0.34213,0.76342,0.93258,0.16109,0.11307 +-0.69535,-0.33695,0.75517,0.93237,0.15604,0.12037 +-0.69297,-0.33175,0.7469,0.93211,0.151,0.12768 +-0.69051,-0.32653,0.7386,0.9318,0.14596,0.13501 +-0.68798,-0.3213,0.73028,0.93143,0.14092,0.14234 +-0.68537,-0.31606,0.72194,0.93101,0.13588,0.14968 +-0.68269,-0.3108,0.71358,0.93053,0.13086,0.15704 +-0.67994,-0.30553,0.7052,0.93,0.12584,0.16441 +-0.67711,-0.30025,0.69679,0.92942,0.12082,0.17179 +-0.6742,-0.29496,0.68837,0.92878,0.11581,0.17918 +-0.67123,-0.28966,0.67993,0.92808,0.11081,0.18659 +-0.66818,-0.28436,0.67147,0.92733,0.10582,0.194 +-0.66506,-0.27904,0.66299,0.92653,0.10084,0.20144 +-0.66187,-0.27373,0.65449,0.92567,0.09587,0.20888 +-0.6586,-0.2684,0.64598,0.92475,0.090909,0.21634 +-0.65527,-0.26308,0.63745,0.92378,0.085958,0.22382 +-0.65187,-0.25776,0.62891,0.92276,0.081018,0.23131 +-0.6484,-0.25243,0.62036,0.92168,0.076091,0.23882 +-0.64486,-0.2471,0.61179,0.92055,0.071176,0.24634 +-0.64125,-0.24178,0.60321,0.91936,0.066275,0.25388 +-0.63758,-0.23646,0.59462,0.91811,0.061387,0.26143 +-0.63383,-0.23115,0.58602,0.91681,0.056513,0.269 +-0.63003,-0.22584,0.5774,0.91546,0.051655,0.27659 +-0.62616,-0.22053,0.56878,0.91405,0.046812,0.2842 +-0.62222,-0.21524,0.56015,0.91259,0.041985,0.29182 +-0.61822,-0.20995,0.55152,0.91107,0.037174,0.29946 +-0.61415,-0.20467,0.54287,0.90949,0.032381,0.30712 +-0.61003,-0.19941,0.53422,0.90786,0.027606,0.3148 +-0.60584,-0.19415,0.52557,0.90618,0.022849,0.3225 +-0.60159,-0.18891,0.51691,0.90444,0.018111,0.33021 +-0.59728,-0.18369,0.50825,0.90265,0.013393,0.33795 +-0.59291,-0.17848,0.49958,0.9008,0.0086951,0.34571 +-0.58848,-0.17328,0.49091,0.8989,0.0040177,0.35348 +-0.58399,-0.16811,0.48225,0.89694,-0.00063839,0.36128 +-0.57944,-0.16295,0.47358,0.89492,-0.0052726,0.3691 +-0.57484,-0.15781,0.46491,0.89285,-0.0098845,0.37693 +-0.57018,-0.1527,0.45625,0.89073,-0.014473,0.38479 +-0.56547,-0.1476,0.44759,0.88855,-0.019039,0.39268 +-0.5607,-0.14253,0.43893,0.88632,-0.02358,0.40058 +-0.55588,-0.13748,0.43028,0.88403,-0.028096,0.4085 +-0.55101,-0.13246,0.42163,0.88169,-0.032587,0.41645 +-0.54608,-0.12746,0.41299,0.8793,-0.037052,0.42442 +-0.5411,-0.12249,0.40435,0.87685,-0.041491,0.43241 +-0.53608,-0.11755,0.39572,0.87434,-0.045903,0.44043 +-0.531,-0.11264,0.38711,0.87178,-0.050287,0.44847 +-0.52587,-0.10776,0.3785,0.86917,-0.054644,0.45653 +-0.5207,-0.10291,0.3699,0.8665,-0.058971,0.46462 +-0.51548,-0.098089,0.36132,0.86378,-0.06327,0.47273 +-0.51021,-0.093303,0.35274,0.861,-0.067538,0.48086 +-0.5049,-0.088552,0.34418,0.85817,-0.071777,0.48902 +-0.49955,-0.083835,0.33564,0.85529,-0.075984,0.4972 +-0.49415,-0.079154,0.32711,0.85235,-0.08016,0.50541 +-0.4887,-0.07451,0.3186,0.84936,-0.084304,0.51364 +-0.48322,-0.069903,0.3101,0.84631,-0.088416,0.5219 +-0.4777,-0.065335,0.30163,0.84321,-0.092494,0.53018 +-0.47213,-0.060806,0.29317,0.84006,-0.096539,0.53849 +-0.46653,-0.056318,0.28473,0.83685,-0.10055,0.54682 +-0.46089,-0.051871,0.27632,0.8336,-0.10453,0.55518 +-0.45521,-0.047466,0.26792,0.83029,-0.10847,0.56356 +-0.4495,-0.043104,0.25955,0.82692,-0.11237,0.57197 +-0.44375,-0.038785,0.2512,0.8235,-0.11624,0.58041 +-0.43797,-0.034511,0.24288,0.82003,-0.12007,0.58887 +-0.43215,-0.030282,0.23459,0.81651,-0.12387,0.59735 +-0.42631,-0.0261,0.22632,0.81294,-0.12762,0.60587 +-0.42043,-0.021964,0.21808,0.80931,-0.13134,0.61441 +-0.41452,-0.017876,0.20986,0.80563,-0.13502,0.62297 +-0.40858,-0.013836,0.20168,0.8019,-0.13866,0.63156 +-0.40262,-0.0098457,0.19353,0.79812,-0.14226,0.64018 +-0.39663,-0.0059051,0.18541,0.79429,-0.14582,0.64883 +-0.39061,-0.002015,0.17732,0.7904,-0.14934,0.6575 +-0.38457,0.0018237,0.16927,0.78647,-0.15281,0.66619 +-0.3785,0.0056104,0.16125,0.78248,-0.15625,0.67492 +-0.37241,0.0093445,0.15327,0.77844,-0.15964,0.68367 +-0.3663,0.013025,0.14532,0.77436,-0.16299,0.69244 +-0.36016,0.016652,0.13741,0.77022,-0.16629,0.70125 +-0.35401,0.020224,0.12954,0.76603,-0.16955,0.71008 +-0.34784,0.023741,0.12171,0.76179,-0.17277,0.71893 +-0.34165,0.027202,0.11392,0.75751,-0.17594,0.72782 +-0.33545,0.030607,0.10617,0.75317,-0.17907,0.73672 +-0.32923,0.033955,0.098462,0.74878,-0.18215,0.74566 +-0.32299,0.037245,0.090798,0.74435,-0.18518,0.75462 +-0.31674,0.040477,0.083178,0.73986,-0.18817,0.76361 +-0.31048,0.04365,0.075604,0.73533,-0.19111,0.77262 +-0.30421,0.046764,0.068075,0.73075,-0.194,0.78166 +-0.29793,0.049819,0.060594,0.72612,-0.19684,0.79072 +-0.29164,0.052813,0.053161,0.72145,-0.19963,0.79981 +-0.28534,0.055747,0.045777,0.71672,-0.20237,0.80893 +-0.27904,0.05862,0.038442,0.71195,-0.20507,0.81807 +-0.27273,0.061431,0.031159,0.70714,-0.20771,0.82724 +-0.26641,0.06418,0.023927,0.70227,-0.2103,0.83643 +-0.26009,0.066866,0.016747,0.69736,-0.21285,0.84564 +-0.25377,0.06949,0.0096217,0.69241,-0.21533,0.85488 +-0.24745,0.072051,0.0025506,0.6874,-0.21777,0.86415 +-0.24113,0.074548,-0.0044652,0.68236,-0.22016,0.87344 +-0.23481,0.076981,-0.011425,0.67726,-0.22249,0.88276 +-0.22849,0.07935,-0.018327,0.67213,-0.22477,0.89209 +-0.22218,0.081655,-0.025171,0.66695,-0.22699,0.90146 +-0.21586,0.083894,-0.031956,0.66172,-0.22916,0.91084 +-0.20956,0.086069,-0.038681,0.65645,-0.23127,0.92025 +-0.20326,0.088178,-0.045346,0.65114,-0.23333,0.92968 +-0.19697,0.090221,-0.051948,0.64579,-0.23534,0.93914 +-0.19069,0.092198,-0.058489,0.64039,-0.23729,0.94862 +-0.18442,0.094109,-0.064966,0.63495,-0.23918,0.95812 +-0.17816,0.095954,-0.071378,0.62947,-0.24101,0.96764 +-0.17191,0.097732,-0.077726,0.62394,-0.24279,0.97718 +-0.16567,0.099443,-0.084008,0.61838,-0.24451,0.98675 +-0.15945,0.10109,-0.090222,0.61277,-0.24617,0.99633 +-0.15325,0.10267,-0.09637,0.60713,-0.24777,1.0059 +-0.14706,0.10418,-0.10245,0.60144,-0.24932,1.0156 +-0.14089,0.10562,-0.10846,0.59572,-0.2508,1.0252 +-0.13474,0.10699,-0.1144,0.58995,-0.25222,1.0349 +-0.12861,0.1083,-0.12027,0.58415,-0.25359,1.0446 +-0.1225,0.10954,-0.12606,0.57831,-0.25489,1.0543 +-0.11641,0.11071,-0.13179,0.57243,-0.25614,1.064 +-0.11035,0.11182,-0.13744,0.56651,-0.25732,1.0737 +-0.10431,0.11285,-0.14302,0.56056,-0.25844,1.0835 +-0.098302,0.11382,-0.14852,0.55457,-0.2595,1.0933 +-0.092317,0.11472,-0.15395,0.54854,-0.26049,1.1031 +-0.08636,0.11556,-0.1593,0.54248,-0.26143,1.1129 +-0.080433,0.11632,-0.16457,0.53638,-0.2623,1.1227 +-0.074535,0.11702,-0.16977,0.53025,-0.26311,1.1325 +-0.068669,0.11765,-0.17489,0.52408,-0.26385,1.1424 +-0.062836,0.11822,-0.17993,0.51788,-0.26453,1.1523 +-0.057036,0.11871,-0.18489,0.51165,-0.26515,1.1622 +-0.051271,0.11914,-0.18977,0.50538,-0.2657,1.1721 +-0.045542,0.1195,-0.19457,0.49908,-0.26619,1.182 +-0.03985,0.11979,-0.19928,0.49275,-0.26661,1.1919 +-0.034196,0.12002,-0.20392,0.48639,-0.26696,1.2018 +-0.028581,0.12018,-0.20847,0.48,-0.26725,1.2118 +-0.023006,0.12028,-0.21293,0.47358,-0.26748,1.2217 +-0.017472,0.1203,-0.21732,0.46712,-0.26763,1.2317 +-0.011981,0.12026,-0.22161,0.46064,-0.26772,1.2417 +-0.0065332,0.12016,-0.22583,0.45413,-0.26775,1.2517 +-0.0011298,0.11999,-0.22995,0.44759,-0.26771,1.2617 +0.0042281,0.11975,-0.23399,0.44103,-0.26759,1.2717 +0.0095394,0.11945,-0.23795,0.43443,-0.26742,1.2817 +0.014803,0.11909,-0.24181,0.42781,-0.26717,1.2917 +0.020018,0.11866,-0.24559,0.42117,-0.26686,1.3018 +0.025183,0.11816,-0.24927,0.41449,-0.26647,1.3118 +0.030298,0.11761,-0.25287,0.4078,-0.26602,1.3218 +0.035361,0.11698,-0.25638,0.40108,-0.2655,1.3319 +0.040371,0.1163,-0.2598,0.39433,-0.26491,1.3419 +0.045328,0.11555,-0.26313,0.38756,-0.26425,1.352 +0.050229,0.11474,-0.26636,0.38077,-0.26352,1.362 +0.055075,0.11387,-0.26951,0.37396,-0.26272,1.3721 +0.059864,0.11294,-0.27256,0.36713,-0.26185,1.3821 +0.064596,0.11194,-0.27552,0.36028,-0.26091,1.3922 +0.069269,0.11088,-0.27839,0.3534,-0.25991,1.4023 +0.073882,0.10977,-0.28116,0.34651,-0.25883,1.4123 +0.078434,0.10859,-0.28384,0.33959,-0.25767,1.4224 +0.082925,0.10736,-0.28643,0.33266,-0.25645,1.4324 +0.087354,0.10606,-0.28892,0.32571,-0.25516,1.4425 +0.091719,0.10471,-0.29131,0.31875,-0.2538,1.4525 +0.09602,0.1033,-0.29361,0.31177,-0.25236,1.4626 +0.10026,0.10183,-0.29582,0.30477,-0.25085,1.4726 +0.10442,0.10031,-0.29793,0.29776,-0.24927,1.4827 +0.10853,0.098727,-0.29994,0.29073,-0.24762,1.4927 +0.11256,0.09709,-0.30186,0.28369,-0.2459,1.5027 +0.11653,0.095398,-0.30368,0.27663,-0.24411,1.5127 +0.12042,0.093651,-0.30541,0.26956,-0.24224,1.5227 +0.12425,0.091851,-0.30703,0.26248,-0.2403,1.5327 +0.128,0.089997,-0.30856,0.25539,-0.23829,1.5427 +0.13168,0.088091,-0.31,0.24829,-0.2362,1.5527 +0.13529,0.086132,-0.31133,0.24118,-0.23405,1.5626 +0.13883,0.084121,-0.31257,0.23406,-0.23182,1.5726 +0.14229,0.08206,-0.31371,0.22693,-0.22952,1.5825 +0.14567,0.079949,-0.31475,0.2198,-0.22714,1.5925 +0.14898,0.077788,-0.31569,0.21265,-0.22469,1.6024 +0.15221,0.075578,-0.31654,0.2055,-0.22217,1.6123 +0.15537,0.07332,-0.31729,0.19835,-0.21958,1.6221 +0.15844,0.071015,-0.31794,0.19119,-0.21691,1.632 +0.16144,0.068662,-0.31849,0.18402,-0.21417,1.6418 +0.16435,0.066264,-0.31894,0.17685,-0.21136,1.6517 +0.16719,0.06382,-0.31929,0.16968,-0.20847,1.6615 +0.16994,0.061332,-0.31954,0.1625,-0.20551,1.6712 +0.17261,0.058799,-0.3197,0.15533,-0.20248,1.681 +0.1752,0.056224,-0.31976,0.14815,-0.19937,1.6907 +0.17771,0.053606,-0.31972,0.14097,-0.19619,1.7005 +0.18013,0.050946,-0.31958,0.1338,-0.19294,1.7102 +0.18247,0.048246,-0.31934,0.12662,-0.18962,1.7198 +0.18472,0.045505,-0.319,0.11945,-0.18622,1.7295 +0.18688,0.042725,-0.31857,0.11228,-0.18275,1.7391 +0.18896,0.039907,-0.31804,0.10511,-0.1792,1.7487 +0.19096,0.03705,-0.31741,0.097946,-0.17558,1.7582 +0.19286,0.034157,-0.31668,0.090787,-0.17189,1.7678 +0.19468,0.031228,-0.31586,0.083634,-0.16813,1.7773 +0.1964,0.028263,-0.31493,0.076487,-0.1643,1.7867 +0.19804,0.025264,-0.31391,0.069347,-0.16039,1.7962 +0.19959,0.022231,-0.3128,0.062215,-0.15641,1.8056 +0.20104,0.019165,-0.31158,0.055092,-0.15235,1.815 +0.20241,0.016067,-0.31027,0.047977,-0.14823,1.8243 +0.20369,0.012938,-0.30887,0.040873,-0.14403,1.8336 +0.20487,0.009779,-0.30736,0.033779,-0.13976,1.8429 +0.20596,0.0065902,-0.30577,0.026697,-0.13542,1.8521 +0.20696,0.0033727,-0.30407,0.019627,-0.131,1.8613 +0.20786,0.00012751,-0.30229,0.01257,-0.12651,1.8705 +0.20868,-0.0031446,-0.3004,0.0055259,-0.12196,1.8796 +0.20939,-0.0064428,-0.29842,-0.0015034,-0.11733,1.8887 +0.21002,-0.0097661,-0.29635,-0.0085176,-0.11263,1.8977 +0.21055,-0.013114,-0.29419,-0.015516,-0.10785,1.9067 +0.21098,-0.016485,-0.29193,-0.022498,-0.10301,1.9157 +0.21132,-0.019878,-0.28958,-0.029462,-0.098097,1.9246 +0.21156,-0.023294,-0.28714,-0.036409,-0.093113,1.9335 +0.21171,-0.02673,-0.2846,-0.043336,-0.088058,1.9423 +0.21176,-0.030186,-0.28198,-0.050244,-0.082933,1.9511 +0.21171,-0.033661,-0.27926,-0.057132,-0.077738,1.9598 +0.21157,-0.037154,-0.27645,-0.063999,-0.072473,1.9685 +0.21133,-0.040664,-0.27356,-0.070844,-0.067139,1.9771 +0.211,-0.044191,-0.27057,-0.077667,-0.061735,1.9857 +0.21056,-0.047733,-0.26749,-0.084466,-0.056263,1.9942 +0.21003,-0.05129,-0.26433,-0.091241,-0.050721,2.0027 +0.2094,-0.05486,-0.26108,-0.097992,-0.045111,2.0111 +0.20867,-0.058443,-0.25774,-0.10472,-0.039432,2.0195 +0.20785,-0.062038,-0.25432,-0.11142,-0.033686,2.0278 +0.20693,-0.065644,-0.25081,-0.11809,-0.027871,2.0361 +0.2059,-0.06926,-0.24721,-0.12473,-0.021989,2.0443 +0.20478,-0.072885,-0.24353,-0.13135,-0.01604,2.0525 +0.20357,-0.076518,-0.23977,-0.13794,-0.010025,2.0606 +0.20225,-0.080159,-0.23592,-0.14449,-0.0039421,2.0686 +0.20083,-0.083806,-0.23199,-0.15102,0.0022066,2.0766 +0.19932,-0.087459,-0.22798,-0.15752,0.0084213,2.0845 +0.19771,-0.091117,-0.22389,-0.16398,0.014702,2.0924 +0.196,-0.094779,-0.21972,-0.17041,0.021047,2.1002 +0.19419,-0.098443,-0.21547,-0.17681,0.027458,2.108 +0.19228,-0.10211,-0.21113,-0.18317,0.033933,2.1156 +0.19027,-0.10578,-0.20673,-0.1895,0.040472,2.1232 +0.18817,-0.10945,-0.20224,-0.1958,0.047075,2.1308 +0.18596,-0.11311,-0.19768,-0.20205,0.053741,2.1383 +0.18366,-0.11678,-0.19304,-0.20828,0.060471,2.1457 +0.18126,-0.12044,-0.18833,-0.21446,0.067263,2.1531 +0.17876,-0.1241,-0.18354,-0.2206,0.074118,2.1604 +0.17617,-0.12776,-0.17868,-0.22671,0.081034,2.1676 +0.17348,-0.13141,-0.17375,-0.23277,0.088012,2.1747 +0.17069,-0.13506,-0.16875,-0.2388,0.095051,2.1818 +0.1678,-0.1387,-0.16368,-0.24479,0.10215,2.1888 +0.16481,-0.14233,-0.15853,-0.25073,0.10931,2.1958 +0.16173,-0.14595,-0.15332,-0.25663,0.11653,2.2026 +0.15856,-0.14957,-0.14804,-0.26249,0.12381,2.2094 +0.15528,-0.15317,-0.1427,-0.2683,0.13115,2.2162 +0.15191,-0.15677,-0.13729,-0.27407,0.13854,2.2228 +0.14845,-0.16035,-0.13181,-0.2798,0.146,2.2294 +0.14489,-0.16392,-0.12627,-0.28547,0.15351,2.2359 +0.14123,-0.16748,-0.12067,-0.29111,0.16108,2.2423 +0.13748,-0.17102,-0.11501,-0.29669,0.1687,2.2487 +0.13364,-0.17455,-0.10928,-0.30223,0.17639,2.2549 +0.1297,-0.17806,-0.1035,-0.30772,0.18412,2.2611 +0.12567,-0.18156,-0.097657,-0.31316,0.19191,2.2672 +0.12154,-0.18503,-0.091757,-0.31856,0.19976,2.2733 +0.11733,-0.1885,-0.0858,-0.3239,0.20766,2.2792 +0.11302,-0.19194,-0.079788,-0.32919,0.21561,2.2851 +0.10862,-0.19536,-0.073722,-0.33443,0.22362,2.2909 +0.10412,-0.19876,-0.067603,-0.33962,0.23168,2.2966 +0.09954,-0.20215,-0.061431,-0.34475,0.23979,2.3022 +0.094867,-0.20551,-0.055208,-0.34983,0.24795,2.3078 +0.090105,-0.20885,-0.048936,-0.35486,0.25617,2.3133 +0.085253,-0.21216,-0.042614,-0.35984,0.26443,2.3186 +0.080313,-0.21545,-0.036245,-0.36476,0.27274,2.3239 +0.075285,-0.21872,-0.02983,-0.36962,0.2811,2.3291 +0.070169,-0.22196,-0.023369,-0.37443,0.28951,2.3343 +0.064967,-0.22518,-0.016864,-0.37918,0.29797,2.3393 +0.059679,-0.22837,-0.010316,-0.38388,0.30648,2.3443 +0.054305,-0.23153,-0.0037261,-0.38851,0.31503,2.3491 +0.048847,-0.23467,0.0029045,-0.39309,0.32362,2.3539 +0.043304,-0.23777,0.0095745,-0.39761,0.33227,2.3586 +0.037678,-0.24085,0.016283,-0.40207,0.34096,2.3632 +0.031969,-0.2439,0.023028,-0.40647,0.34969,2.3677 +0.026178,-0.24692,0.029809,-0.41082,0.35846,2.3721 +0.020305,-0.2499,0.036625,-0.4151,0.36728,2.3765 +0.014353,-0.25286,0.043474,-0.41932,0.37614,2.3807 +0.0083199,-0.25578,0.050356,-0.42347,0.38505,2.3849 +0.0022082,-0.25867,0.057268,-0.42757,0.39399,2.3889 +-0.0039817,-0.26153,0.06421,-0.4316,0.40297,2.3929 +-0.010249,-0.26436,0.071181,-0.43557,0.412,2.3968 +-0.016593,-0.26715,0.078178,-0.43948,0.42106,2.4006 +-0.023013,-0.2699,0.085202,-0.44332,0.43016,2.4043 +-0.029508,-0.27262,0.09225,-0.4471,0.4393,2.4079 +-0.036077,-0.2753,0.099322,-0.45081,0.44847,2.4114 +-0.042719,-0.27795,0.10642,-0.45445,0.45768,2.4148 +-0.049434,-0.28056,0.11353,-0.45804,0.46693,2.4181 +-0.05622,-0.28314,0.12067,-0.46155,0.47621,2.4213 +-0.063076,-0.28567,0.12782,-0.465,0.48553,2.4244 +-0.070002,-0.28817,0.13499,-0.46838,0.49488,2.4275 +-0.076997,-0.29063,0.14217,-0.47169,0.50426,2.4304 +-0.08406,-0.29305,0.14937,-0.47494,0.51368,2.4333 +-0.091189,-0.29543,0.15659,-0.47812,0.52312,2.436 +-0.098384,-0.29778,0.16381,-0.48123,0.5326,2.4387 +-0.10564,-0.30008,0.17105,-0.48427,0.5421,2.4412 +-0.11297,-0.30234,0.17829,-0.48724,0.55164,2.4437 +-0.12036,-0.30456,0.18554,-0.49014,0.5612,2.446 +-0.1278,-0.30674,0.1928,-0.49297,0.5708,2.4483 +-0.13531,-0.30888,0.20007,-0.49573,0.58041,2.4505 +-0.14288,-0.31097,0.20734,-0.49842,0.59006,2.4525 +-0.15051,-0.31302,0.21461,-0.50104,0.59973,2.4545 +-0.1582,-0.31503,0.22188,-0.50359,0.60942,2.4564 +-0.16594,-0.317,0.22915,-0.50607,0.61914,2.4582 +-0.17373,-0.31893,0.23643,-0.50848,0.62888,2.4598 +-0.18159,-0.32081,0.2437,-0.51081,0.63865,2.4614 +-0.18949,-0.32265,0.25096,-0.51307,0.64843,2.4629 +-0.19745,-0.32444,0.25822,-0.51526,0.65824,2.4643 +-0.20546,-0.32619,0.26548,-0.51737,0.66807,2.4656 +-0.21352,-0.3279,0.27272,-0.51942,0.67791,2.4668 +-0.22162,-0.32956,0.27996,-0.52139,0.68778,2.4679 +-0.22978,-0.33118,0.28719,-0.52328,0.69766,2.4689 +-0.23798,-0.33275,0.29441,-0.5251,0.70756,2.4698 +-0.24622,-0.33428,0.30161,-0.52685,0.71747,2.4706 +-0.25451,-0.33576,0.3088,-0.52852,0.72741,2.4713 +-0.26285,-0.3372,0.31597,-0.53012,0.73735,2.4719 +-0.27122,-0.33859,0.32313,-0.53165,0.74731,2.4724 +-0.27964,-0.33993,0.33027,-0.5331,0.75728,2.4728 +-0.28809,-0.34124,0.33739,-0.53447,0.76727,2.4731 +-0.29659,-0.34249,0.34449,-0.53577,0.77726,2.4733 +-0.30512,-0.3437,0.35157,-0.537,0.78727,2.4734 +-0.31368,-0.34486,0.35863,-0.53815,0.79729,2.4734 +-0.32228,-0.34598,0.36566,-0.53922,0.80731,2.4733 +-0.33091,-0.34706,0.37266,-0.54022,0.81734,2.4732 +-0.33958,-0.34808,0.37964,-0.54114,0.82739,2.4729 +-0.34827,-0.34906,0.38659,-0.54199,0.83743,2.4725 +-0.357,-0.35,0.39351,-0.54276,0.84749,2.472 +-0.36575,-0.35089,0.40041,-0.54346,0.85754,2.4715 +-0.37453,-0.35173,0.40727,-0.54408,0.86761,2.4708 +-0.38334,-0.35253,0.41409,-0.54462,0.87767,2.4701 +-0.39217,-0.35328,0.42089,-0.54509,0.88774,2.4692 +-0.40102,-0.35399,0.42765,-0.54548,0.89781,2.4683 +-0.40989,-0.35465,0.43437,-0.5458,0.90788,2.4672 +-0.41879,-0.35527,0.44105,-0.54604,0.91795,2.4661 +-0.4277,-0.35584,0.4477,-0.5462,0.92802,2.4648 +-0.43663,-0.35637,0.4543,-0.54629,0.93809,2.4635 +-0.44558,-0.35685,0.46087,-0.5463,0.94815,2.4621 +-0.45454,-0.35729,0.46739,-0.54624,0.95821,2.4606 +-0.46352,-0.35768,0.47387,-0.54609,0.96827,2.4589 +-0.47251,-0.35803,0.48031,-0.54588,0.97833,2.4572 +-0.48151,-0.35833,0.4867,-0.54558,0.98837,2.4554 +-0.49052,-0.35859,0.49304,-0.54521,0.99841,2.4536 +-0.49954,-0.3588,0.49933,-0.54477,1.0084,2.4516 +-0.50857,-0.35898,0.50558,-0.54425,1.0185,2.4495 +-0.5176,-0.35911,0.51178,-0.54365,1.0285,2.4473 +-0.52663,-0.35919,0.51792,-0.54298,1.0385,2.4451 +-0.53567,-0.35924,0.52401,-0.54223,1.0485,2.4427 +-0.54472,-0.35924,0.53005,-0.54141,1.0585,2.4403 +-0.55376,-0.35919,0.53604,-0.54051,1.0684,2.4378 +-0.5628,-0.35911,0.54197,-0.53953,1.0784,2.4352 +-0.57184,-0.35899,0.54785,-0.53849,1.0884,2.4324 +-0.58087,-0.35882,0.55366,-0.53736,1.0983,2.4297 +-0.5899,-0.35861,0.55942,-0.53616,1.1082,2.4268 +-0.59893,-0.35836,0.56512,-0.53489,1.1181,2.4238 +-0.60795,-0.35808,0.57076,-0.53354,1.128,2.4208 +-0.61696,-0.35775,0.57634,-0.53212,1.1378,2.4176 +-0.62595,-0.35738,0.58186,-0.53062,1.1477,2.4144 +-0.63494,-0.35697,0.58731,-0.52905,1.1575,2.4111 +-0.64391,-0.35653,0.5927,-0.52741,1.1673,2.4077 +-0.65287,-0.35604,0.59803,-0.52569,1.1771,2.4042 +-0.66182,-0.35552,0.60329,-0.5239,1.1869,2.4007 +-0.67075,-0.35496,0.60848,-0.52204,1.1966,2.397 +-0.67966,-0.35437,0.61361,-0.5201,1.2063,2.3933 +-0.68855,-0.35373,0.61866,-0.51809,1.216,2.3895 +-0.69742,-0.35307,0.62365,-0.51601,1.2257,2.3856 +-0.70626,-0.35236,0.62857,-0.51386,1.2353,2.3816 +-0.71509,-0.35162,0.63342,-0.51164,1.2449,2.3776 +-0.72389,-0.35085,0.6382,-0.50934,1.2545,2.3734 +-0.73266,-0.35004,0.6429,-0.50697,1.2641,2.3692 +-0.74141,-0.3492,0.64753,-0.50454,1.2736,2.365 +-0.75013,-0.34832,0.65209,-0.50203,1.2831,2.3606 +-0.75882,-0.34741,0.65657,-0.49945,1.2926,2.3562 +-0.76747,-0.34647,0.66098,-0.4968,1.302,2.3517 +-0.7761,-0.3455,0.66531,-0.49408,1.3114,2.3471 +-0.78469,-0.3445,0.66957,-0.4913,1.3208,2.3424 +-0.79325,-0.34347,0.67375,-0.48844,1.3301,2.3377 +-0.80177,-0.34241,0.67785,-0.48552,1.3394,2.3329 +-0.81025,-0.34131,0.68187,-0.48252,1.3487,2.328 +-0.81869,-0.34019,0.68581,-0.47946,1.3579,2.3231 +-0.8271,-0.33904,0.68968,-0.47634,1.3671,2.3181 +-0.83546,-0.33787,0.69346,-0.47314,1.3763,2.313 +-0.84378,-0.33666,0.69716,-0.46988,1.3854,2.3078 +-0.85206,-0.33543,0.70078,-0.46655,1.3945,2.3026 +-0.8603,-0.33418,0.70432,-0.46316,1.4035,2.2973 +-0.86848,-0.3329,0.70778,-0.4597,1.4125,2.292 +-0.87662,-0.33159,0.71115,-0.45618,1.4215,2.2866 +-0.88472,-0.33027,0.71444,-0.45259,1.4304,2.2811 +-0.89276,-0.32891,0.71765,-0.44894,1.4393,2.2755 +-0.90075,-0.32754,0.72077,-0.44522,1.4481,2.2699 +-0.90869,-0.32614,0.7238,-0.44144,1.4569,2.2643 +-0.91658,-0.32473,0.72676,-0.4376,1.4656,2.2585 +-0.92441,-0.32329,0.72962,-0.4337,1.4743,2.2527 +-0.93219,-0.32183,0.7324,-0.42973,1.483,2.2469 +-0.93991,-0.32035,0.7351,-0.4257,1.4916,2.241 +-0.94758,-0.31886,0.7377,-0.42161,1.5002,2.235 +-0.95519,-0.31735,0.74022,-0.41747,1.5087,2.229 +-0.96273,-0.31582,0.74265,-0.41326,1.5171,2.2229 +-0.97022,-0.31427,0.745,-0.40899,1.5256,2.2168 +-0.97764,-0.31271,0.74726,-0.40466,1.5339,2.2106 +-0.98501,-0.31113,0.74943,-0.40028,1.5422,2.2044 +-0.99231,-0.30954,0.75151,-0.39584,1.5505,2.1981 +-0.99954,-0.30793,0.7535,-0.39134,1.5587,2.1918 +-1.0067,-0.30631,0.7554,-0.38678,1.5669,2.1854 +-1.0138,-0.30468,0.75722,-0.38217,1.575,2.1789 +-1.0208,-0.30304,0.75894,-0.3775,1.583,2.1725 +-1.0278,-0.30139,0.76058,-0.37277,1.591,2.1659 +-1.0347,-0.29973,0.76213,-0.368,1.599,2.1593 +-1.0415,-0.29806,0.76358,-0.36316,1.6069,2.1527 +-1.0483,-0.29638,0.76495,-0.35828,1.6147,2.1461 +-1.055,-0.29469,0.76623,-0.35334,1.6225,2.1393 +-1.0616,-0.29299,0.76742,-0.34835,1.6302,2.1326 +-1.0681,-0.29129,0.76852,-0.3433,1.6378,2.1258 +-1.0746,-0.28958,0.76953,-0.33821,1.6454,2.119 +-1.0809,-0.28787,0.77045,-0.33306,1.653,2.1121 +-1.0873,-0.28615,0.77128,-0.32787,1.6605,2.1052 +-1.0935,-0.28443,0.77202,-0.32262,1.6679,2.0982 +-1.0996,-0.28271,0.77267,-0.31733,1.6753,2.0912 +-1.1057,-0.28098,0.77323,-0.31199,1.6826,2.0842 +-1.1117,-0.27926,0.7737,-0.3066,1.6898,2.0772 +-1.1176,-0.27753,0.77409,-0.30116,1.697,2.0701 +-1.1234,-0.27581,0.77438,-0.29568,1.7041,2.063 +-1.1292,-0.27408,0.77458,-0.29015,1.7112,2.0558 +-1.1348,-0.27236,0.7747,-0.28457,1.7181,2.0486 +-1.1404,-0.27063,0.77473,-0.27895,1.7251,2.0414 +-1.1459,-0.26892,0.77467,-0.27329,1.7319,2.0342 +-1.1513,-0.2672,0.77452,-0.26758,1.7387,2.0269 +-1.1566,-0.26549,0.77428,-0.26183,1.7455,2.0196 +-1.1619,-0.26379,0.77396,-0.25604,1.7521,2.0123 +-1.167,-0.26209,0.77355,-0.25021,1.7587,2.0049 +-1.1721,-0.2604,0.77305,-0.24433,1.7653,1.9976 +-1.1771,-0.25871,0.77246,-0.23842,1.7717,1.9902 +-1.1819,-0.25704,0.77179,-0.23246,1.7781,1.9828 +-1.1867,-0.25537,0.77104,-0.22647,1.7845,1.9753 +-1.1914,-0.25371,0.77019,-0.22044,1.7907,1.9679 +-1.1961,-0.25206,0.76926,-0.21437,1.7969,1.9604 +-1.2006,-0.25043,0.76825,-0.20826,1.803,1.9529 +-1.205,-0.2488,0.76715,-0.20212,1.8091,1.9454 +-1.2093,-0.24719,0.76597,-0.19594,1.8151,1.9379 +-1.2136,-0.24559,0.76471,-0.18973,1.821,1.9303 +-1.2177,-0.244,0.76336,-0.18348,1.8268,1.9228 +-1.2218,-0.24243,0.76193,-0.1772,1.8326,1.9152 +-1.2258,-0.24087,0.76042,-0.17088,1.8383,1.9077 +-1.2296,-0.23933,0.75883,-0.16453,1.8439,1.9001 +-1.2334,-0.23781,0.75715,-0.15815,1.8495,1.8925 +-1.2371,-0.2363,0.7554,-0.15174,1.8549,1.8849 +-1.2407,-0.23481,0.75356,-0.1453,1.8604,1.8773 +-1.2442,-0.23334,0.75165,-0.13883,1.8657,1.8696 +-1.2476,-0.23189,0.74966,-0.13233,1.871,1.862 +-1.2509,-0.23046,0.74759,-0.1258,1.8761,1.8544 +-1.2541,-0.22904,0.74544,-0.11924,1.8813,1.8468 +-1.2572,-0.22765,0.74322,-0.11265,1.8863,1.8391 +-1.2602,-0.22628,0.74092,-0.10604,1.8913,1.8315 +-1.2631,-0.22493,0.73855,-0.099404,1.8962,1.8239 +-1.2659,-0.22361,0.7361,-0.092741,1.901,1.8162 +-1.2686,-0.22231,0.73358,-0.086052,1.9057,1.8086 +-1.2712,-0.22103,0.73098,-0.07934,1.9104,1.801 +-1.2738,-0.21978,0.72832,-0.072604,1.915,1.7933 +-1.2762,-0.21855,0.72558,-0.065845,1.9195,1.7857 +-1.2785,-0.21734,0.72277,-0.059064,1.9239,1.7781 +-1.2807,-0.21617,0.71989,-0.052262,1.9283,1.7705 +-1.2829,-0.21502,0.71694,-0.045438,1.9325,1.7628 +-1.2849,-0.21389,0.71392,-0.038595,1.9368,1.7552 +-1.2868,-0.2128,0.71084,-0.031731,1.9409,1.7476 +-1.2887,-0.21173,0.70769,-0.024849,1.9449,1.7401 +-1.2904,-0.21069,0.70448,-0.017948,1.9489,1.7325 +-1.292,-0.20968,0.7012,-0.01103,1.9528,1.7249 +-1.2936,-0.2087,0.69785,-0.0040945,1.9566,1.7174 +-1.295,-0.20775,0.69445,0.0028575,1.9604,1.7098 +-1.2963,-0.20684,0.69098,0.0098254,1.964,1.7023 +-1.2976,-0.20595,0.68745,0.016808,1.9676,1.6948 +-1.2987,-0.20509,0.68386,0.023806,1.9711,1.6873 +-1.2998,-0.20427,0.68021,0.030818,1.9745,1.6798 +-1.3007,-0.20348,0.6765,0.037843,1.9779,1.6723 +-1.3016,-0.20272,0.67274,0.044881,1.9812,1.6649 +-1.3023,-0.20199,0.66892,0.051931,1.9843,1.6574 +-1.303,-0.2013,0.66504,0.058992,1.9875,1.65 +-1.3036,-0.20064,0.66111,0.066065,1.9905,1.6426 +-1.304,-0.20002,0.65713,0.073147,1.9934,1.6353 +-1.3044,-0.19943,0.6531,0.08024,1.9963,1.6279 +-1.3047,-0.19888,0.64901,0.087342,1.9991,1.6206 +-1.3048,-0.19836,0.64488,0.094452,2.0018,1.6133 +-1.3049,-0.19788,0.64069,0.10157,2.0045,1.606 +-1.3049,-0.19744,0.63646,0.1087,2.007,1.5988 +-1.3048,-0.19703,0.63218,0.11583,2.0095,1.5915 +-1.3046,-0.19666,0.62786,0.12297,2.0119,1.5843 +-1.3043,-0.19632,0.62349,0.13011,2.0142,1.5771 +-1.3039,-0.19603,0.61908,0.13726,2.0165,1.57 +-1.3034,-0.19577,0.61463,0.14442,2.0186,1.5629 +-1.3028,-0.19554,0.61013,0.15157,2.0207,1.5558 +-1.3022,-0.19536,0.6056,0.15874,2.0227,1.5487 +-1.3014,-0.19522,0.60103,0.1659,2.0247,1.5417 +-1.3006,-0.19511,0.59642,0.17307,2.0265,1.5347 +-1.2996,-0.19504,0.59177,0.18024,2.0283,1.5277 +-1.2986,-0.19501,0.58709,0.18741,2.03,1.5208 +-1.2975,-0.19502,0.58237,0.19458,2.0316,1.5139 +-1.2963,-0.19507,0.57763,0.20175,2.0331,1.507 +-1.295,-0.19516,0.57285,0.20892,2.0345,1.5001 +-1.2936,-0.19529,0.56804,0.21609,2.0359,1.4933 +-1.2921,-0.19546,0.5632,0.22326,2.0372,1.4866 +-1.2905,-0.19567,0.55833,0.23043,2.0384,1.4798 +-1.2889,-0.19592,0.55344,0.23759,2.0396,1.4731 +-1.2872,-0.19621,0.54852,0.24475,2.0406,1.4665 +-1.2854,-0.19654,0.54358,0.25191,2.0416,1.4598 +-1.2835,-0.1969,0.53861,0.25907,2.0425,1.4533 +-1.2815,-0.19731,0.53362,0.26622,2.0433,1.4467 +-1.2794,-0.19776,0.52861,0.27336,2.0441,1.4402 +-1.2773,-0.19825,0.52359,0.2805,2.0448,1.4337 +-1.275,-0.19878,0.51854,0.28764,2.0453,1.4273 +-1.2727,-0.19936,0.51348,0.29477,2.0459,1.4209 +-1.2703,-0.19997,0.5084,0.30189,2.0463,1.4146 +-1.2679,-0.20062,0.50331,0.30901,2.0467,1.4083 +-1.2653,-0.20131,0.49821,0.31612,2.0469,1.402 +-1.2627,-0.20204,0.49309,0.32322,2.0472,1.3958 +-1.26,-0.20282,0.48797,0.33031,2.0473,1.3896 +-1.2572,-0.20363,0.48283,0.3374,2.0473,1.3834 +-1.2544,-0.20448,0.47769,0.34447,2.0473,1.3773 +-1.2515,-0.20537,0.47254,0.35154,2.0472,1.3713 +-1.2485,-0.2063,0.46739,0.3586,2.047,1.3653 +-1.2454,-0.20728,0.46223,0.36564,2.0468,1.3593 +-1.2423,-0.20829,0.45707,0.37268,2.0465,1.3534 +-1.2391,-0.20934,0.45191,0.3797,2.0461,1.3475 +-1.2358,-0.21043,0.44674,0.38672,2.0456,1.3417 +-1.2325,-0.21156,0.44158,0.39372,2.0451,1.3359 +-1.229,-0.21272,0.43642,0.40071,2.0444,1.3302 +-1.2256,-0.21393,0.43127,0.40769,2.0437,1.3245 +-1.222,-0.21517,0.42612,0.41465,2.043,1.3188 +-1.2184,-0.21646,0.42098,0.4216,2.0421,1.3132 +-1.2148,-0.21778,0.41584,0.42854,2.0412,1.3077 +-1.211,-0.21914,0.41071,0.43547,2.0402,1.3022 +-1.2073,-0.22053,0.4056,0.44238,2.0392,1.2967 +-1.2034,-0.22196,0.40049,0.44928,2.038,1.2913 +-1.1995,-0.22343,0.3954,0.45616,2.0368,1.2859 +-1.1955,-0.22494,0.39032,0.46303,2.0355,1.2806 +-1.1915,-0.22648,0.38526,0.46988,2.0342,1.2753 +-1.1874,-0.22806,0.38021,0.47672,2.0328,1.2701 +-1.1833,-0.22967,0.37518,0.48354,2.0313,1.265 +-1.1791,-0.23132,0.37017,0.49035,2.0297,1.2598 +-1.1749,-0.233,0.36518,0.49714,2.0281,1.2548 +-1.1706,-0.23472,0.36022,0.50391,2.0264,1.2497 +-1.1663,-0.23647,0.35527,0.51067,2.0246,1.2448 +-1.1619,-0.23825,0.35035,0.51741,2.0228,1.2398 +-1.1575,-0.24007,0.34545,0.52413,2.0209,1.2349 +-1.153,-0.24192,0.34058,0.53084,2.0189,1.2301 +-1.1485,-0.2438,0.33574,0.53752,2.0168,1.2253 +-1.1439,-0.24571,0.33092,0.5442,2.0147,1.2206 +-1.1393,-0.24766,0.32614,0.55085,2.0125,1.2159 +-1.1346,-0.24963,0.32139,0.55748,2.0103,1.2113 +-1.1299,-0.25164,0.31667,0.5641,2.008,1.2067 +-1.1252,-0.25367,0.31198,0.5707,2.0056,1.2022 +-1.1204,-0.25573,0.30733,0.57728,2.0032,1.1977 +-1.1156,-0.25783,0.30271,0.58384,2.0006,1.1932 +-1.1108,-0.25995,0.29813,0.59038,1.9981,1.1888 +-1.1059,-0.26209,0.29359,0.5969,1.9954,1.1845 +-1.101,-0.26427,0.28909,0.60341,1.9927,1.1802 +-1.0961,-0.26647,0.28463,0.60989,1.9899,1.176 +-1.0911,-0.2687,0.28021,0.61636,1.9871,1.1718 +-1.0861,-0.27095,0.27583,0.6228,1.9842,1.1676 +-1.0811,-0.27323,0.2715,0.62923,1.9812,1.1635 +-1.0761,-0.27553,0.26721,0.63563,1.9782,1.1595 +-1.071,-0.27785,0.26296,0.64202,1.9751,1.1555 +-1.0659,-0.2802,0.25877,0.64839,1.9719,1.1515 +-1.0608,-0.28257,0.25462,0.65474,1.9687,1.1476 +-1.0556,-0.28496,0.25052,0.66106,1.9655,1.1437 +-1.0504,-0.28737,0.24647,0.66737,1.9621,1.1399 +-1.0453,-0.2898,0.24247,0.67366,1.9587,1.1362 +-1.0401,-0.29225,0.23853,0.67992,1.9553,1.1324 +-1.0348,-0.29471,0.23464,0.68617,1.9517,1.1288 +-1.0296,-0.2972,0.2308,0.69239,1.9482,1.1251 +-1.0244,-0.2997,0.22701,0.6986,1.9445,1.1215 +-1.0191,-0.30222,0.22329,0.70478,1.9408,1.118 +-1.0138,-0.30476,0.21962,0.71095,1.9371,1.1145 +-1.0086,-0.30731,0.216,0.71709,1.9333,1.1111 +-1.0033,-0.30987,0.21245,0.72322,1.9294,1.1077 +-0.99797,-0.31245,0.20896,0.72932,1.9255,1.1043 +-0.99267,-0.31504,0.20552,0.73541,1.9215,1.101 +-0.98736,-0.31764,0.20215,0.74147,1.9175,1.0977 +-0.98205,-0.32025,0.19884,0.74751,1.9134,1.0945 +-0.97674,-0.32288,0.1956,0.75354,1.9092,1.0913 +-0.97143,-0.32551,0.19241,0.75954,1.905,1.0882 +-0.96612,-0.32815,0.1893,0.76552,1.9008,1.0851 +-0.96081,-0.3308,0.18625,0.77148,1.8965,1.082 +-0.9555,-0.33346,0.18326,0.77743,1.8921,1.079 +-0.9502,-0.33612,0.18035,0.78335,1.8877,1.076 +-0.9449,-0.33879,0.1775,0.78925,1.8832,1.0731 +-0.93961,-0.34146,0.17472,0.79513,1.8787,1.0702 +-0.93433,-0.34413,0.17201,0.801,1.8741,1.0673 +-0.92905,-0.34681,0.16937,0.80684,1.8695,1.0645 +-0.92379,-0.34949,0.1668,0.81266,1.8648,1.0617 +-0.91854,-0.35217,0.1643,0.81847,1.8601,1.059 +-0.91331,-0.35486,0.16188,0.82425,1.8553,1.0563 +-0.90808,-0.35754,0.15952,0.83002,1.8505,1.0536 +-0.90288,-0.36022,0.15725,0.83576,1.8456,1.051 +-0.89769,-0.36289,0.15504,0.84149,1.8407,1.0484 +-0.89252,-0.36557,0.15292,0.8472,1.8357,1.0459 +-0.88736,-0.36824,0.15086,0.85289,1.8307,1.0433 +-0.88223,-0.3709,0.14889,0.85856,1.8256,1.0408 +-0.87712,-0.37356,0.14699,0.86421,1.8205,1.0384 +-0.87204,-0.37621,0.14516,0.86985,1.8153,1.036 +-0.86697,-0.37885,0.14342,0.87546,1.8101,1.0336 +-0.86194,-0.38149,0.14175,0.88106,1.8049,1.0312 +-0.85693,-0.38411,0.14017,0.88664,1.7996,1.0289 +-0.85195,-0.38672,0.13866,0.8922,1.7942,1.0266 +-0.84699,-0.38933,0.13723,0.89775,1.7888,1.0244 +-0.84207,-0.39192,0.13588,0.90328,1.7834,1.0221 +-0.83718,-0.39449,0.13461,0.90879,1.7779,1.0199 +-0.83232,-0.39706,0.13343,0.91428,1.7724,1.0178 +-0.82749,-0.3996,0.13232,0.91976,1.7668,1.0156 +-0.8227,-0.40213,0.1313,0.92521,1.7612,1.0135 +-0.81795,-0.40465,0.13036,0.93066,1.7555,1.0114 +-0.81323,-0.40714,0.1295,0.93609,1.7498,1.0094 +-0.80855,-0.40962,0.12872,0.9415,1.7441,1.0073 +-0.80391,-0.41207,0.12803,0.94689,1.7383,1.0053 +-0.79931,-0.41451,0.12742,0.95227,1.7325,1.0034 +-0.79475,-0.41692,0.1269,0.95764,1.7266,1.0014 +-0.79023,-0.41931,0.12645,0.96299,1.7207,0.99946 +-0.78576,-0.42168,0.1261,0.96832,1.7148,0.99754 +-0.78133,-0.42402,0.12582,0.97364,1.7088,0.99565 +-0.77694,-0.42634,0.12563,0.97894,1.7028,0.99378 +-0.77261,-0.42863,0.12553,0.98424,1.6967,0.99192 +-0.76832,-0.43089,0.12551,0.98951,1.6906,0.99009 +-0.76408,-0.43312,0.12558,0.99478,1.6845,0.98828 +-0.75989,-0.43533,0.12573,1,1.6783,0.98649 +-0.75574,-0.4375,0.12596,1.0053,1.6721,0.98471 +-0.75165,-0.43965,0.12629,1.0105,1.6659,0.98295 +-0.74767,-0.44171,0.12671,1.0157,1.6596,0.98116 +-0.74369,-0.44378,0.12719,1.0209,1.6533,0.97942 +-0.73979,-0.4458,0.12774,1.026,1.6469,0.97769 +-0.73595,-0.44777,0.12836,1.0312,1.6405,0.97595 +-0.73218,-0.44967,0.12903,1.0362,1.634,0.97419 +-0.72846,-0.45151,0.12975,1.0413,1.6274,0.97242 +-0.7248,-0.45327,0.13051,1.0463,1.6207,0.97062 +-0.72117,-0.45494,0.1313,1.0512,1.614,0.96877 +-0.71758,-0.45652,0.13212,1.056,1.6072,0.96689 +-0.71402,-0.458,0.13295,1.0608,1.6002,0.96496 +-0.71048,-0.45938,0.1338,1.0654,1.5932,0.96296 +-0.70695,-0.46064,0.13464,1.07,1.586,0.9609 +-0.70342,-0.46177,0.13549,1.0744,1.5787,0.95877 +-0.6999,-0.46278,0.13632,1.0788,1.5712,0.95655 +-0.69637,-0.46365,0.13713,1.0831,1.5637,0.95425 +-0.69285,-0.46438,0.13792,1.0872,1.556,0.95185 +-0.68932,-0.46496,0.13866,1.0912,1.5481,0.94934 +-0.6858,-0.46538,0.13937,1.095,1.5402,0.94673 +-0.68227,-0.46566,0.14003,1.0987,1.5322,0.94399 +-0.67875,-0.46579,0.14063,1.1022,1.524,0.94113 +-0.67522,-0.46577,0.14116,1.1056,1.5158,0.93814 +-0.6717,-0.46559,0.14163,1.1089,1.5075,0.935 +-0.66817,-0.46527,0.14201,1.112,1.4991,0.93172 +-0.66464,-0.4648,0.14231,1.1149,1.4907,0.92828 +-0.66112,-0.46417,0.14251,1.1177,1.4822,0.9247 +-0.65759,-0.4634,0.14261,1.1203,1.4736,0.92097 +-0.65407,-0.46248,0.1426,1.1228,1.465,0.91709 +-0.65054,-0.46141,0.14249,1.1252,1.4564,0.91309 +-0.64702,-0.46019,0.14229,1.1274,1.4478,0.90895 +-0.64349,-0.45884,0.142,1.1294,1.4391,0.9047 +-0.63997,-0.45737,0.14163,1.1313,1.4304,0.90034 +-0.63644,-0.45577,0.1412,1.1331,1.4217,0.89588 +-0.63291,-0.45406,0.1407,1.1346,1.4129,0.89132 +-0.62939,-0.45224,0.14014,1.1361,1.4042,0.88667 +-0.62586,-0.45033,0.13953,1.1374,1.3955,0.88194 +-0.62234,-0.44833,0.13889,1.1385,1.3868,0.87713 +-0.61881,-0.44624,0.13821,1.1395,1.3781,0.87226 +-0.61529,-0.44408,0.13751,1.1404,1.3694,0.86733 +-0.61176,-0.44186,0.13678,1.1411,1.3607,0.86235 +-0.60824,-0.43957,0.13605,1.1416,1.352,0.85733 +-0.60471,-0.43723,0.13531,1.142,1.3433,0.85227 +-0.60118,-0.43484,0.13457,1.1422,1.3346,0.84718 +-0.59766,-0.43242,0.13384,1.1423,1.3259,0.84207 +-0.59413,-0.42997,0.1331,1.1423,1.3172,0.83695 +-0.59061,-0.42749,0.13236,1.1421,1.3084,0.83182 +-0.58708,-0.425,0.13162,1.1417,1.2997,0.82669 +-0.58356,-0.4225,0.13088,1.1412,1.291,0.82156 +-0.58003,-0.42,0.13015,1.1406,1.2823,0.81644 +-0.57651,-0.4175,0.12941,1.1398,1.2736,0.81131 +-0.57298,-0.415,0.12867,1.1388,1.2649,0.80618 +-0.56946,-0.4125,0.12793,1.1377,1.2562,0.80105 +-0.56593,-0.41,0.12719,1.1364,1.2475,0.79592 +-0.56241,-0.4075,0.12646,1.135,1.2388,0.79079 +-0.55888,-0.405,0.12572,1.1335,1.2301,0.78566 +-0.55535,-0.4025,0.12498,1.1318,1.2214,0.78053 +-0.55183,-0.4,0.12424,1.1299,1.2127,0.7754 +-0.5483,-0.3975,0.1235,1.1279,1.2039,0.77028 +-0.54478,-0.395,0.12276,1.1258,1.1952,0.76515 +-0.54125,-0.3925,0.12203,1.1235,1.1865,0.76002 +-0.53773,-0.39001,0.12129,1.121,1.1778,0.75489 +-0.5342,-0.38751,0.12055,1.1184,1.1691,0.74976 +-0.53068,-0.38501,0.11981,1.1156,1.1604,0.74463 +-0.52715,-0.38251,0.11908,1.1127,1.1517,0.7395 +-0.52363,-0.38001,0.11834,1.1097,1.143,0.73437 +-0.5201,-0.37751,0.1176,1.1065,1.1343,0.72924 +-0.51657,-0.37501,0.11686,1.1031,1.1256,0.72411 +-0.51305,-0.37251,0.11612,1.0996,1.1169,0.71898 +-0.50952,-0.37001,0.11539,1.0959,1.1081,0.71386 +-0.506,-0.36751,0.11465,1.0921,1.0994,0.70873 +-0.50247,-0.36501,0.11391,1.0882,1.0907,0.7036 +-0.49895,-0.36251,0.11317,1.0841,1.082,0.69847 +-0.49542,-0.36001,0.11243,1.0798,1.0733,0.69334 +-0.4919,-0.35751,0.1117,1.0754,1.0646,0.68821 +-0.48837,-0.35501,0.11096,1.0709,1.0559,0.68308 +-0.48485,-0.35251,0.11022,1.0661,1.0472,0.67795 +-0.48132,-0.35001,0.10948,1.0613,1.0385,0.67283 +-0.47779,-0.34751,0.10874,1.0563,1.0298,0.6677 +-0.47427,-0.34501,0.10801,1.0511,1.0211,0.66257 +-0.47074,-0.34251,0.10727,1.0458,1.0124,0.65744 +-0.46722,-0.34001,0.10653,1.0404,1.0036,0.65231 +-0.46369,-0.33751,0.10579,1.0348,0.99494,0.64718 +-0.46017,-0.33501,0.10505,1.029,0.98623,0.64205 +-0.45664,-0.33251,0.10432,1.0231,0.97752,0.63692 +-0.45312,-0.33001,0.10358,1.0171,0.96882,0.63179 +-0.44959,-0.32751,0.10284,1.0109,0.96011,0.62666 +-0.44606,-0.32501,0.1021,1.0045,0.9514,0.62153 +-0.44254,-0.32251,0.10136,0.99798,0.94269,0.61641 +-0.43901,-0.32001,0.10063,0.99133,0.93398,0.61128 +-0.43549,-0.31751,0.099889,0.98452,0.92527,0.60615 +-0.43196,-0.31501,0.099151,0.97757,0.91656,0.60102 +-0.42844,-0.31251,0.098413,0.97046,0.90786,0.59589 +-0.42491,-0.31002,0.097675,0.9632,0.89915,0.59076 +-0.42139,-0.30752,0.096937,0.9558,0.89044,0.58563 +-0.41786,-0.30502,0.096199,0.94824,0.88173,0.5805 +-0.41434,-0.30252,0.095461,0.94054,0.87302,0.57537 +-0.41081,-0.30002,0.094723,0.93268,0.86432,0.57025 +-0.40728,-0.29752,0.093985,0.92467,0.85561,0.56512 +-0.40376,-0.29502,0.093247,0.91652,0.8469,0.55999 +-0.40023,-0.29252,0.092509,0.90821,0.83819,0.55486 +-0.39671,-0.29002,0.091771,0.89976,0.82948,0.54973 +-0.39318,-0.28752,0.091033,0.89115,0.82077,0.5446 +-0.38966,-0.28502,0.090295,0.88241,0.81206,0.53947 +-0.38613,-0.28252,0.089557,0.87353,0.80336,0.53434 +-0.38261,-0.28002,0.088819,0.86453,0.79465,0.52921 +-0.37908,-0.27752,0.088081,0.8554,0.78594,0.52409 +-0.37556,-0.27502,0.087344,0.84617,0.77723,0.51896 +-0.37203,-0.27252,0.086606,0.83683,0.76852,0.51383 +-0.3685,-0.27002,0.085868,0.8274,0.75981,0.5087 +-0.36498,-0.26752,0.08513,0.81788,0.75111,0.50357 +-0.36145,-0.26502,0.084392,0.80828,0.7424,0.49844 +-0.35793,-0.26252,0.083654,0.7986,0.73369,0.49331 +-0.3544,-0.26002,0.082916,0.78886,0.72498,0.48818 +-0.35088,-0.25752,0.082178,0.77906,0.71627,0.48305 +-0.34735,-0.25502,0.08144,0.76921,0.70756,0.47792 +-0.34383,-0.25252,0.080702,0.75931,0.69886,0.4728 +-0.3403,-0.25002,0.079964,0.74938,0.69015,0.46767 +-0.33677,-0.24752,0.079226,0.73942,0.68144,0.46254 +-0.33325,-0.24502,0.078488,0.72944,0.67273,0.45741 +-0.32972,-0.24252,0.07775,0.71945,0.66402,0.45228 +-0.3262,-0.24002,0.077012,0.70945,0.65531,0.44715 +-0.32267,-0.23752,0.076274,0.69945,0.6466,0.44202 +-0.31915,-0.23503,0.075536,0.68945,0.6379,0.43689 +-0.31562,-0.23253,0.074798,0.67945,0.62919,0.43176 +-0.3121,-0.23003,0.07406,0.66945,0.62048,0.42663 +-0.30857,-0.22753,0.073322,0.65945,0.61177,0.42151 +-0.30505,-0.22503,0.072584,0.64945,0.60306,0.41638 +-0.30152,-0.22253,0.071846,0.63945,0.59435,0.41125 +-0.298,-0.22003,0.071109,0.62945,0.58564,0.40612 +-0.29447,-0.21753,0.070371,0.61945,0.57694,0.40099 +-0.29094,-0.21503,0.069633,0.60945,0.56823,0.39586 +-0.28742,-0.21253,0.068895,0.59945,0.55952,0.39073 +-0.28389,-0.21003,0.068157,0.58945,0.55081,0.3856 +-0.28037,-0.20753,0.067419,0.57945,0.5421,0.38048 +-0.27684,-0.20503,0.066681,0.56945,0.53339,0.37535 +-0.27332,-0.20253,0.065943,0.55945,0.52469,0.37022 +-0.26979,-0.20003,0.065205,0.54945,0.51598,0.36509 +-0.26627,-0.19753,0.064467,0.53945,0.50727,0.35996 +-0.26274,-0.19503,0.063729,0.52945,0.49856,0.35483 +-0.25921,-0.19253,0.062991,0.51945,0.48985,0.3497 +-0.25569,-0.19003,0.062253,0.50945,0.48114,0.34457 +-0.25216,-0.18753,0.061515,0.49945,0.47244,0.33944 +-0.24864,-0.18503,0.060777,0.48945,0.46373,0.33431 +-0.24511,-0.18253,0.060039,0.47945,0.45502,0.32919 +-0.24159,-0.18003,0.059301,0.46945,0.44631,0.32406 +-0.23806,-0.17753,0.058563,0.45945,0.4376,0.31893 +-0.23454,-0.17503,0.057825,0.44945,0.42889,0.3138 +-0.23101,-0.17253,0.057087,0.43945,0.42018,0.30867 +-0.22749,-0.17003,0.056349,0.42945,0.41148,0.30354 +-0.22396,-0.16753,0.055612,0.41945,0.40277,0.29841 +-0.22043,-0.16503,0.054874,0.40947,0.39406,0.29328 +-0.21691,-0.16254,0.054136,0.3995,0.38535,0.28815 +-0.21338,-0.16004,0.053398,0.38956,0.37664,0.28303 +-0.20986,-0.15754,0.05266,0.37965,0.36793,0.2779 +-0.20633,-0.15504,0.051922,0.36978,0.35923,0.27277 +-0.20281,-0.15254,0.051184,0.35996,0.35052,0.26764 +-0.19928,-0.15004,0.050446,0.35019,0.34181,0.26251 +-0.19576,-0.14754,0.049708,0.34048,0.3331,0.25738 +-0.19223,-0.14504,0.04897,0.33085,0.3244,0.25225 +-0.18871,-0.14254,0.048232,0.3213,0.31571,0.24712 +-0.18518,-0.14004,0.047494,0.31183,0.30704,0.24199 +-0.18165,-0.13754,0.046756,0.30245,0.2984,0.23686 +-0.17813,-0.13504,0.046018,0.29317,0.2898,0.23174 +-0.1746,-0.13254,0.04528,0.28401,0.28124,0.22661 +-0.17108,-0.13004,0.044542,0.27495,0.27273,0.22148 +-0.16755,-0.12754,0.043804,0.26602,0.26428,0.21635 +-0.16403,-0.12504,0.043066,0.25722,0.25589,0.21122 +-0.1605,-0.12254,0.042328,0.24856,0.24758,0.20609 +-0.15698,-0.12004,0.04159,0.24005,0.23935,0.20096 +-0.15345,-0.11754,0.040852,0.23168,0.23121,0.19583 +-0.14993,-0.11504,0.040114,0.22346,0.22316,0.1907 +-0.1464,-0.11254,0.039377,0.21539,0.21522,0.18557 +-0.14287,-0.11004,0.038639,0.20748,0.20738,0.18045 +-0.13935,-0.10754,0.037901,0.19971,0.19967,0.17532 +-0.13582,-0.10504,0.037163,0.19209,0.19208,0.17019 +-0.1323,-0.10254,0.036425,0.18463,0.18463,0.16506 +-0.12877,-0.10004,0.035687,0.17731,0.17731,0.15993 +-0.12525,-0.097543,0.034949,0.17014,0.17014,0.1548 +-0.12172,-0.095043,0.034211,0.16313,0.16313,0.14967 +-0.1182,-0.092544,0.033473,0.15626,0.15626,0.14454 +-0.11467,-0.090044,0.032735,0.14954,0.14954,0.13941 +-0.11114,-0.087544,0.031997,0.14298,0.14298,0.13429 +-0.10762,-0.085044,0.031259,0.13656,0.13656,0.12917 +-0.10409,-0.082545,0.030521,0.13029,0.13029,0.12406 +-0.10057,-0.080045,0.029783,0.12418,0.12418,0.11897 +-0.097043,-0.077545,0.029045,0.11821,0.11821,0.11392 +-0.093518,-0.075046,0.028307,0.11239,0.11239,0.1089 +-0.089992,-0.072546,0.027569,0.10673,0.10673,0.10393 +-0.086467,-0.070046,0.026831,0.10121,0.10121,0.099003 +-0.082941,-0.067547,0.026093,0.095842,0.095843,0.09414 +-0.079416,-0.065047,0.025355,0.090626,0.090626,0.089343 +-0.07589,-0.062547,0.024618,0.085559,0.085559,0.084621 +-0.072367,-0.060048,0.02388,0.080642,0.080643,0.079981 +-0.068853,-0.057548,0.023142,0.075875,0.075876,0.075431 +-0.065356,-0.055048,0.022404,0.071259,0.071259,0.070977 +-0.061883,-0.052549,0.021666,0.066792,0.066792,0.066627 +-0.058441,-0.050049,0.020928,0.062475,0.062476,0.06239 +-0.055039,-0.047549,0.02019,0.058308,0.058309,0.058271 +-0.051684,-0.04505,0.019452,0.054292,0.054292,0.05428 +-0.048382,-0.042552,0.018714,0.050425,0.050425,0.050423 +-0.045142,-0.040064,0.017976,0.046708,0.046709,0.046708 +-0.041972,-0.037593,0.017238,0.043141,0.043142,0.043141 +-0.038878,-0.035146,0.0165,0.039725,0.039725,0.039724 +-0.035868,-0.03273,0.015762,0.036458,0.036458,0.036458 +-0.032951,-0.030354,0.015024,0.033341,0.033342,0.033341 +-0.030132,-0.028025,0.014286,0.030374,0.030375,0.030374 +-0.02742,-0.02575,0.013548,0.027558,0.027558,0.027557 +-0.024822,-0.023537,0.01281,0.024891,0.024891,0.024891 +-0.022346,-0.021393,0.012072,0.022374,0.022374,0.022374 +-0.019998,-0.019325,0.011334,0.020007,0.020008,0.020007 +-0.017788,-0.017342,0.010596,0.017791,0.017791,0.01779 +-0.015722,-0.015451,0.0098585,0.015724,0.015724,0.015724 +-0.013805,-0.013659,0.0091205,0.013807,0.013807,0.013807 +-0.012038,-0.011974,0.0083826,0.01204,0.012041,0.01204 +-0.010422,-0.010403,0.0076446,0.010423,0.010424,0.010423 +-0.0089544,-0.0089534,0.0069069,0.0089562,0.0089567,0.008956 +-0.0076317,-0.0076334,0.0061735,0.0076335,0.007634,0.0076334 +-0.0064461,-0.0064479,0.0054517,0.006448,0.0064484,0.0064478 +-0.0053901,-0.0053919,0.0047492,0.005392,0.0053924,0.0053918 +-0.0044562,-0.004458,0.0040734,0.0044581,0.0044585,0.0044579 +-0.0036369,-0.0036386,0.0034318,0.0036387,0.0036392,0.0036385 +-0.0029247,-0.0029264,0.0028319,0.0029265,0.0029269,0.0029263 +-0.002312,-0.0023138,0.0022812,0.0023139,0.0023143,0.0023137 +-0.0017915,-0.0017932,0.0017871,0.0017933,0.0017937,0.0017931 +-0.0013555,-0.0013572,0.0013573,0.0013573,0.0013578,0.0013572 +-0.00099663,-0.00099836,0.00099858,0.00099846,0.0009989,0.00099828 +-0.00070734,-0.00070907,0.00070929,0.00070917,0.00070961,0.00070899 +-0.00048014,-0.00048187,0.00048209,0.00048197,0.00048241,0.00048179 +-0.00030752,-0.00030926,0.00030947,0.00030936,0.00030979,0.00030917 +-0.000182,-0.00018373,0.00018395,0.00018383,0.00018427,0.00018365 +-9.606e-05,-9.7796e-05,9.8012e-05,9.7895e-05,9.8329e-05,9.7711e-05 +-4.2211e-05,-4.3946e-05,4.4163e-05,4.4046e-05,4.448e-05,4.3862e-05 +-1.295e-05,-1.4685e-05,1.4902e-05,1.4785e-05,1.5219e-05,1.4601e-05 +-7.766e-07,-2.5123e-06,2.7291e-06,2.6118e-06,3.0459e-06,2.428e-06 +1.8082e-06,7.2467e-08,1.4434e-07,2.6979e-08,4.6113e-07,-1.5676e-07 +1.8351e-06,9.9446e-08,1.1737e-07,0,4.3415e-07,-1.8374e-07 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data2_zy.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data2_zy.offt new file mode 100644 index 00000000..89d1a358 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data2_zy.offt @@ -0,0 +1,40760 @@ +7.168e-08,-1.8438e-07,-3.411e-06,-2.2305e-07,-7.6154e-06,0 +-1.6544e-09,-2.5771e-07,-3.3377e-06,-1.4972e-07,-7.5421e-06,7.3334e-08 +-3.275e-06,-3.531e-06,-6.4338e-08,3.1236e-06,-4.2687e-06,3.3466e-06 +-1.6962e-05,-1.7219e-05,1.3623e-05,1.6811e-05,9.4188e-06,1.7034e-05 +-4.8564e-05,-4.882e-05,4.5225e-05,4.8413e-05,4.1021e-05,4.8636e-05 +-0.00010558,-0.00010584,0.00010224,0.00010543,9.8037e-05,0.00010565 +-0.00019551,-0.00019577,0.00019217,0.00019536,0.00018797,0.00019558 +-0.00032586,-0.00032611,0.00032252,0.0003257,0.00031831,0.00032593 +-0.00050411,-0.00050437,0.00050025,0.00050396,0.00049657,0.00050419 +-0.00073779,-0.00073804,0.0007243,0.00073764,0.00073024,0.00073786 +-0.0010344,-0.0010346,0.00098734,0.0010342,0.0010268,0.0010344 +-0.0014014,-0.0014016,0.0012819,0.0014012,0.0013938,0.0014015 +-0.0018463,-0.0018421,0.0016004,0.0018461,0.0018388,0.0018464 +-0.0023766,-0.0023497,0.0019354,0.0023765,0.0023691,0.0023767 +-0.0029999,-0.002917,0.0022794,0.0029997,0.0029923,0.0029999 +-0.0037235,-0.0035364,0.0026255,0.0037234,0.003716,0.0037236 +-0.0045551,-0.0042005,0.0029717,0.004555,0.0045476,0.0045552 +-0.0055021,-0.0049019,0.0033178,0.0055019,0.0054945,0.0055022 +-0.006572,-0.0056328,0.0036639,0.0065718,0.0065644,0.0065721 +-0.0077723,-0.006386,0.0040101,0.0077722,0.0077648,0.0077724 +-0.0091105,-0.0071538,0.0043562,0.0091104,0.009103,0.0091106 +-0.010594,-0.0079288,0.0047024,0.010594,0.010587,0.010594 +-0.012227,-0.0087049,0.0050485,0.012227,0.01222,0.012228 +-0.014011,-0.0094809,0.0053946,0.014011,0.014003,0.014011 +-0.015944,-0.010257,0.0057408,0.015944,0.015936,0.015944 +-0.018027,-0.011033,0.0060869,0.018027,0.01802,0.018027 +-0.020256,-0.011809,0.006433,0.02026,0.020253,0.020261 +-0.022624,-0.012585,0.0067792,0.022644,0.022636,0.022644 +-0.025122,-0.013361,0.0071253,0.025177,0.02517,0.025177 +-0.027744,-0.014137,0.0074715,0.02786,0.027853,0.02786 +-0.030482,-0.014913,0.0078176,0.030693,0.030686,0.030694 +-0.033329,-0.01569,0.0081637,0.033677,0.033669,0.033677 +-0.036277,-0.016466,0.0085099,0.03681,0.036803,0.03681 +-0.039318,-0.017242,0.008856,0.040093,0.040086,0.040094 +-0.042446,-0.018018,0.0092021,0.043527,0.043519,0.043527 +-0.045651,-0.018794,0.0095483,0.04711,0.047102,0.04711 +-0.048928,-0.01957,0.0098944,0.050843,0.050836,0.050843 +-0.052269,-0.020346,0.01024,0.054726,0.054719,0.054727 +-0.055665,-0.021122,0.010587,0.05876,0.058752,0.05876 +-0.05911,-0.021898,0.010933,0.062939,0.062936,0.062943 +-0.062596,-0.022674,0.011279,0.067258,0.067269,0.067277 +-0.066116,-0.02345,0.011625,0.071708,0.071752,0.07176 +-0.069662,-0.024227,0.011971,0.076283,0.076385,0.076393 +-0.073226,-0.025003,0.012317,0.080974,0.081169,0.081176 +-0.076801,-0.025779,0.012663,0.085774,0.086102,0.08611 +-0.08038,-0.026555,0.01301,0.090676,0.091185,0.091193 +-0.083959,-0.027331,0.013356,0.095672,0.096419,0.096426 +-0.087538,-0.028107,0.013702,0.10075,0.1018,0.10181 +-0.091117,-0.028883,0.014048,0.10592,0.10733,0.10734 +-0.094696,-0.029659,0.014394,0.11115,0.11302,0.11303 +-0.098276,-0.030435,0.01474,0.11645,0.11885,0.11886 +-0.10186,-0.031211,0.015086,0.1218,0.12484,0.12484 +-0.10543,-0.031987,0.015433,0.12721,0.13097,0.13098 +-0.10901,-0.032763,0.015779,0.13265,0.13725,0.13726 +-0.11259,-0.033539,0.016125,0.13813,0.14369,0.14369 +-0.11617,-0.034316,0.016471,0.14364,0.15027,0.15028 +-0.11975,-0.035092,0.016817,0.14916,0.157,0.15701 +-0.12333,-0.035868,0.017163,0.1547,0.16389,0.16389 +-0.12691,-0.036644,0.017509,0.16024,0.17092,0.17093 +-0.13049,-0.03742,0.017856,0.16578,0.17809,0.17811 +-0.13407,-0.038196,0.018202,0.17132,0.18539,0.18544 +-0.13764,-0.038972,0.018548,0.17686,0.19282,0.19293 +-0.14122,-0.039748,0.018894,0.1824,0.20037,0.20056 +-0.1448,-0.040524,0.01924,0.18794,0.20803,0.20834 +-0.14838,-0.0413,0.019586,0.19348,0.21579,0.21627 +-0.15196,-0.042076,0.019932,0.19903,0.22365,0.22436 +-0.15554,-0.042853,0.020279,0.20457,0.2316,0.23259 +-0.15912,-0.043629,0.020625,0.21011,0.23963,0.24097 +-0.1627,-0.044405,0.020971,0.21565,0.24773,0.24951 +-0.16628,-0.045181,0.021317,0.22119,0.25589,0.25818 +-0.16986,-0.045957,0.021663,0.22673,0.26411,0.267 +-0.17344,-0.046733,0.022009,0.23227,0.27239,0.27594 +-0.17702,-0.047509,0.022355,0.23781,0.28071,0.28501 +-0.18059,-0.048285,0.022701,0.24335,0.28906,0.29419 +-0.18417,-0.049061,0.023048,0.2489,0.29744,0.30348 +-0.18775,-0.049837,0.023394,0.25444,0.30585,0.31287 +-0.19133,-0.050613,0.02374,0.25998,0.31426,0.32234 +-0.19491,-0.051389,0.024086,0.26552,0.32268,0.33191 +-0.19849,-0.052165,0.024432,0.27106,0.3311,0.34155 +-0.20207,-0.052942,0.024778,0.2766,0.33953,0.35126 +-0.20565,-0.053718,0.025124,0.28214,0.34795,0.36103 +-0.20923,-0.054494,0.025471,0.28768,0.35637,0.37086 +-0.21281,-0.05527,0.025817,0.29322,0.36479,0.38074 +-0.21638,-0.056046,0.026163,0.29877,0.37322,0.39065 +-0.21996,-0.056822,0.026509,0.30431,0.38164,0.4006 +-0.22354,-0.057598,0.026855,0.30985,0.39006,0.41057 +-0.22712,-0.058374,0.027201,0.31539,0.39848,0.42056 +-0.2307,-0.05915,0.027547,0.32093,0.4069,0.43055 +-0.23428,-0.059926,0.027894,0.32647,0.41532,0.44055 +-0.23786,-0.060702,0.02824,0.33201,0.42375,0.45055 +-0.24144,-0.061478,0.028586,0.33755,0.43217,0.46055 +-0.24502,-0.062255,0.028932,0.34309,0.44059,0.47055 +-0.2486,-0.063031,0.029278,0.34863,0.44901,0.48055 +-0.25218,-0.063807,0.029624,0.35418,0.45743,0.49055 +-0.25576,-0.064583,0.02997,0.35972,0.46586,0.50055 +-0.25933,-0.065359,0.030316,0.36526,0.47428,0.51055 +-0.26291,-0.066135,0.030663,0.3708,0.4827,0.52055 +-0.26649,-0.066911,0.031009,0.37634,0.49112,0.53055 +-0.27007,-0.067687,0.031355,0.38188,0.49955,0.54055 +-0.27365,-0.068463,0.031701,0.38742,0.50797,0.55055 +-0.27723,-0.069239,0.032047,0.39296,0.51639,0.56055 +-0.28081,-0.070015,0.032393,0.3985,0.52481,0.57055 +-0.28439,-0.070791,0.032739,0.40404,0.53323,0.58055 +-0.28797,-0.071568,0.033086,0.40959,0.54165,0.59055 +-0.29155,-0.072344,0.033432,0.41513,0.55008,0.60055 +-0.29513,-0.07312,0.033778,0.42067,0.5585,0.61055 +-0.2987,-0.073896,0.034124,0.42621,0.56692,0.62055 +-0.30228,-0.074672,0.03447,0.43175,0.57534,0.63055 +-0.30586,-0.075448,0.034816,0.43729,0.58376,0.64055 +-0.30944,-0.076224,0.035162,0.44283,0.59219,0.65055 +-0.31302,-0.077,0.035509,0.44837,0.60061,0.66055 +-0.3166,-0.077776,0.035855,0.45392,0.60903,0.67055 +-0.32018,-0.078552,0.036201,0.45946,0.61745,0.68055 +-0.32376,-0.079328,0.036547,0.465,0.62587,0.69055 +-0.32734,-0.080104,0.036893,0.47054,0.6343,0.70055 +-0.33092,-0.080881,0.037239,0.47608,0.64272,0.71055 +-0.33449,-0.081657,0.037585,0.48162,0.65114,0.72055 +-0.33807,-0.082433,0.037931,0.48716,0.65956,0.73055 +-0.34165,-0.083209,0.038278,0.4927,0.66799,0.74055 +-0.34523,-0.083985,0.038624,0.49824,0.67641,0.75055 +-0.34881,-0.084761,0.03897,0.50378,0.68483,0.76055 +-0.35239,-0.085537,0.039316,0.50933,0.69325,0.77055 +-0.35597,-0.086313,0.039662,0.51487,0.70167,0.78055 +-0.35955,-0.087089,0.040008,0.52041,0.7101,0.79055 +-0.36313,-0.087865,0.040355,0.52595,0.71852,0.80055 +-0.36671,-0.088641,0.040701,0.53149,0.72694,0.81055 +-0.37029,-0.089417,0.041047,0.53703,0.73536,0.82055 +-0.37387,-0.090194,0.041393,0.54257,0.74378,0.83055 +-0.37744,-0.09097,0.041739,0.54811,0.75221,0.84055 +-0.38102,-0.091746,0.042085,0.55365,0.76063,0.85055 +-0.3846,-0.092522,0.042431,0.55919,0.76905,0.86055 +-0.38818,-0.093298,0.042777,0.56474,0.77747,0.87055 +-0.39176,-0.094074,0.043124,0.57028,0.78589,0.88055 +-0.39534,-0.09485,0.04347,0.57582,0.79431,0.89055 +-0.39892,-0.095626,0.043816,0.58136,0.80274,0.90055 +-0.4025,-0.096402,0.044162,0.5869,0.81116,0.91055 +-0.40608,-0.097178,0.044508,0.59244,0.81958,0.92055 +-0.40966,-0.097954,0.044854,0.59798,0.828,0.93055 +-0.41324,-0.09873,0.0452,0.60352,0.83642,0.94055 +-0.41681,-0.099507,0.045546,0.60906,0.84485,0.95055 +-0.42039,-0.10028,0.045893,0.61461,0.85327,0.96055 +-0.42397,-0.10106,0.046239,0.62015,0.86169,0.97055 +-0.42755,-0.10183,0.046585,0.62569,0.87011,0.98055 +-0.43113,-0.10261,0.046931,0.63123,0.87853,0.99055 +-0.43471,-0.10339,0.047277,0.63677,0.88696,1.0006 +-0.43829,-0.10416,0.047623,0.64231,0.89538,1.0106 +-0.44187,-0.10494,0.047969,0.64785,0.9038,1.0206 +-0.44545,-0.10572,0.048316,0.65339,0.91222,1.0306 +-0.44903,-0.10649,0.048662,0.65893,0.92065,1.0406 +-0.4526,-0.10727,0.049008,0.66448,0.92907,1.0506 +-0.45618,-0.10804,0.049354,0.67002,0.93749,1.0606 +-0.45976,-0.10882,0.0497,0.67556,0.94591,1.0705 +-0.46334,-0.1096,0.050046,0.6811,0.95433,1.0805 +-0.46692,-0.11037,0.050392,0.68664,0.96276,1.0905 +-0.4705,-0.11115,0.050739,0.69218,0.97118,1.1005 +-0.47408,-0.11192,0.051085,0.69772,0.9796,1.1105 +-0.47766,-0.1127,0.051431,0.70326,0.98802,1.1205 +-0.48124,-0.11348,0.051777,0.7088,0.99644,1.1305 +-0.48482,-0.11425,0.052123,0.71435,1.0049,1.1405 +-0.4884,-0.11503,0.052469,0.71989,1.0133,1.1505 +-0.49197,-0.1158,0.052815,0.72543,1.0217,1.1605 +-0.49555,-0.11658,0.053162,0.73097,1.0301,1.1705 +-0.49913,-0.11736,0.053508,0.73651,1.0386,1.1805 +-0.50271,-0.11813,0.053854,0.74205,1.047,1.1905 +-0.50629,-0.11891,0.0542,0.74759,1.0554,1.2006 +-0.50987,-0.11968,0.054546,0.75313,1.0638,1.2106 +-0.51345,-0.12046,0.054892,0.75867,1.0722,1.2206 +-0.51703,-0.12124,0.055238,0.76421,1.0807,1.2306 +-0.52061,-0.12201,0.055585,0.76976,1.0891,1.2406 +-0.52419,-0.12279,0.055931,0.7753,1.0975,1.2506 +-0.52777,-0.12356,0.056277,0.78084,1.1059,1.2606 +-0.53134,-0.12434,0.056623,0.78638,1.1143,1.2706 +-0.53492,-0.12512,0.056969,0.79192,1.1228,1.2806 +-0.5385,-0.12589,0.057315,0.79746,1.1312,1.2906 +-0.54208,-0.12667,0.057661,0.803,1.1396,1.3006 +-0.54566,-0.12745,0.058007,0.80854,1.148,1.3106 +-0.54924,-0.12822,0.058354,0.81408,1.1565,1.3205 +-0.55282,-0.129,0.0587,0.81963,1.1649,1.3305 +-0.5564,-0.12977,0.059046,0.82517,1.1733,1.3405 +-0.55998,-0.13055,0.059392,0.83071,1.1817,1.3505 +-0.56356,-0.13133,0.059738,0.83625,1.1902,1.3605 +-0.56714,-0.1321,0.060084,0.84179,1.1986,1.3705 +-0.57071,-0.13288,0.06043,0.84733,1.207,1.3805 +-0.57429,-0.13365,0.060777,0.85287,1.2154,1.3905 +-0.57787,-0.13443,0.061123,0.85841,1.2238,1.4005 +-0.58145,-0.13521,0.061469,0.86395,1.2323,1.4105 +-0.58503,-0.13598,0.061815,0.8695,1.2407,1.4205 +-0.58861,-0.13676,0.062161,0.87504,1.2491,1.4305 +-0.59219,-0.13753,0.062507,0.88058,1.2575,1.4405 +-0.59577,-0.13831,0.062853,0.88612,1.2659,1.4506 +-0.59935,-0.13909,0.0632,0.89166,1.2744,1.4606 +-0.60293,-0.13986,0.063546,0.8972,1.2828,1.4706 +-0.60651,-0.14064,0.063892,0.90274,1.2912,1.4806 +-0.61008,-0.14142,0.064238,0.90828,1.2996,1.4906 +-0.61366,-0.14219,0.064584,0.91382,1.3081,1.5006 +-0.61724,-0.14297,0.06493,0.91936,1.3165,1.5106 +-0.62082,-0.14374,0.065276,0.92491,1.3249,1.5206 +-0.6244,-0.14452,0.065623,0.93045,1.3333,1.5306 +-0.62798,-0.1453,0.065969,0.93599,1.3417,1.5406 +-0.63156,-0.14607,0.066315,0.94153,1.3502,1.5506 +-0.63514,-0.14685,0.066661,0.94707,1.3586,1.5606 +-0.63872,-0.14762,0.067007,0.95261,1.367,1.5705 +-0.6423,-0.1484,0.067353,0.95815,1.3754,1.5805 +-0.64588,-0.14918,0.067699,0.96369,1.3839,1.5905 +-0.64946,-0.14995,0.068045,0.96923,1.3923,1.6005 +-0.65303,-0.15073,0.068392,0.97477,1.4007,1.6105 +-0.65661,-0.1515,0.068738,0.98032,1.4091,1.6205 +-0.66019,-0.15228,0.069084,0.98586,1.4175,1.6305 +-0.66377,-0.15306,0.06943,0.9914,1.426,1.6405 +-0.66735,-0.15383,0.069776,0.99694,1.4344,1.6505 +-0.67093,-0.15461,0.070122,1.0025,1.4428,1.6605 +-0.67451,-0.15538,0.070468,1.008,1.4512,1.6705 +-0.67809,-0.15616,0.070815,1.0136,1.4596,1.6805 +-0.68167,-0.15694,0.071161,1.0191,1.4681,1.6905 +-0.68525,-0.15771,0.071507,1.0246,1.4765,1.7006 +-0.68883,-0.15849,0.071853,1.0302,1.4849,1.7106 +-0.6924,-0.15926,0.072199,1.0357,1.4933,1.7206 +-0.69598,-0.16004,0.072545,1.0413,1.5018,1.7306 +-0.69956,-0.16082,0.072891,1.0468,1.5102,1.7406 +-0.70314,-0.16159,0.073237,1.0523,1.5186,1.7506 +-0.70672,-0.16237,0.073584,1.0579,1.527,1.7606 +-0.7103,-0.16315,0.07393,1.0634,1.5354,1.7706 +-0.71388,-0.16392,0.074276,1.069,1.5439,1.7806 +-0.71746,-0.1647,0.074622,1.0745,1.5523,1.7906 +-0.72104,-0.16547,0.074968,1.0801,1.5607,1.8006 +-0.72462,-0.16625,0.075314,1.0856,1.5691,1.8106 +-0.7282,-0.16703,0.075661,1.0911,1.5776,1.8205 +-0.73177,-0.1678,0.076007,1.0967,1.586,1.8305 +-0.73535,-0.16858,0.076353,1.1022,1.5944,1.8405 +-0.73893,-0.16935,0.076699,1.1078,1.6028,1.8505 +-0.74251,-0.17013,0.077045,1.1133,1.6113,1.8605 +-0.74609,-0.17091,0.077391,1.1188,1.6197,1.8705 +-0.74967,-0.17168,0.077737,1.1244,1.6281,1.8805 +-0.75325,-0.17246,0.078083,1.1299,1.6365,1.8905 +-0.75683,-0.17323,0.07843,1.1355,1.6449,1.9005 +-0.76041,-0.17401,0.078776,1.141,1.6534,1.9105 +-0.76399,-0.17479,0.079122,1.1465,1.6618,1.9205 +-0.76757,-0.17556,0.079468,1.1521,1.6702,1.9305 +-0.77114,-0.17634,0.079814,1.1576,1.6786,1.9405 +-0.77472,-0.17711,0.08016,1.1632,1.687,1.9506 +-0.7783,-0.17789,0.080506,1.1687,1.6955,1.9606 +-0.78188,-0.17867,0.080852,1.1743,1.7039,1.9706 +-0.78546,-0.17944,0.081199,1.1798,1.7123,1.9806 +-0.78904,-0.18022,0.081545,1.1853,1.7207,1.9906 +-0.79262,-0.18099,0.081891,1.1909,1.7292,2.0006 +-0.7962,-0.18177,0.082237,1.1964,1.7376,2.0105 +-0.79978,-0.18255,0.082583,1.202,1.746,2.0206 +-0.80336,-0.18332,0.082929,1.2075,1.7544,2.0305 +-0.80693,-0.1841,0.083276,1.213,1.7629,2.0406 +-0.81051,-0.18488,0.083622,1.2186,1.7713,2.0505 +-0.81409,-0.18565,0.083968,1.2241,1.7797,2.0606 +-0.81767,-0.18643,0.084314,1.2297,1.7881,2.0705 +-0.82125,-0.1872,0.08466,1.2352,1.7965,2.0806 +-0.82483,-0.18798,0.085006,1.2408,1.805,2.0905 +-0.82841,-0.18876,0.085352,1.2463,1.8134,2.1006 +-0.83199,-0.18953,0.085698,1.2518,1.8218,2.1105 +-0.83557,-0.19031,0.086045,1.2574,1.8302,2.1206 +-0.83915,-0.19108,0.086391,1.2629,1.8386,2.1305 +-0.84272,-0.19186,0.086737,1.2685,1.8471,2.1406 +-0.8463,-0.19264,0.087083,1.274,1.8555,2.1505 +-0.84988,-0.19341,0.087429,1.2795,1.8639,2.1606 +-0.85346,-0.19419,0.087775,1.2851,1.8723,2.1705 +-0.85704,-0.19496,0.088121,1.2906,1.8807,2.1806 +-0.86062,-0.19574,0.088468,1.2962,1.8892,2.1905 +-0.8642,-0.19652,0.088814,1.3017,1.8976,2.2005 +-0.86778,-0.19729,0.08916,1.3072,1.906,2.2106 +-0.87136,-0.19807,0.089506,1.3128,1.9144,2.2205 +-0.87494,-0.19884,0.089852,1.3183,1.9229,2.2306 +-0.87852,-0.19962,0.090198,1.3239,1.9313,2.2405 +-0.88209,-0.2004,0.090544,1.3294,1.9397,2.2506 +-0.88567,-0.20117,0.09089,1.3349,1.9481,2.2605 +-0.88925,-0.20195,0.091237,1.3405,1.9566,2.2706 +-0.89283,-0.20273,0.091583,1.346,1.965,2.2805 +-0.89641,-0.2035,0.091929,1.3516,1.9734,2.2906 +-0.89999,-0.20428,0.092275,1.3571,1.9818,2.3005 +-0.90357,-0.20505,0.092621,1.3626,1.9902,2.3106 +-0.90715,-0.20583,0.092967,1.3682,1.9986,2.3205 +-0.91073,-0.20661,0.093313,1.3737,2.007,2.3306 +-0.91431,-0.20738,0.09366,1.3793,2.0154,2.3405 +-0.91789,-0.20816,0.094006,1.3848,2.0237,2.3506 +-0.92146,-0.20893,0.094352,1.3904,2.032,2.3605 +-0.92504,-0.20971,0.094698,1.3959,2.0402,2.3706 +-0.92862,-0.21049,0.095044,1.4014,2.0484,2.3805 +-0.9322,-0.21126,0.09539,1.407,2.0564,2.3906 +-0.93578,-0.21204,0.095736,1.4125,2.0645,2.4005 +-0.93936,-0.21282,0.096083,1.4181,2.0724,2.4106 +-0.94294,-0.21359,0.096429,1.4236,2.0803,2.4205 +-0.94652,-0.21437,0.096775,1.4291,2.088,2.4306 +-0.9501,-0.21514,0.097121,1.4347,2.0957,2.4405 +-0.95368,-0.21592,0.097467,1.4402,2.1033,2.4505 +-0.95726,-0.21669,0.097813,1.4458,2.1107,2.4606 +-0.96083,-0.21747,0.098159,1.4513,2.118,2.4705 +-0.96441,-0.21825,0.098507,1.4568,2.1252,2.4806 +-0.96799,-0.21902,0.098864,1.4624,2.1322,2.4905 +-0.97157,-0.2198,0.099237,1.4679,2.1391,2.5006 +-0.97515,-0.22058,0.099633,1.4735,2.1458,2.5105 +-0.97873,-0.22135,0.10006,1.479,2.1524,2.5206 +-0.98231,-0.22213,0.10053,1.4846,2.1588,2.5305 +-0.98589,-0.2229,0.10104,1.4901,2.1651,2.5406 +-0.98947,-0.22368,0.1016,1.4956,2.1712,2.5505 +-0.99305,-0.22446,0.10223,1.5012,2.1772,2.5606 +-0.99663,-0.22523,0.10292,1.5067,2.183,2.5705 +-1.0002,-0.22601,0.10369,1.5123,2.1887,2.5805 +-1.0038,-0.22678,0.10455,1.5178,2.1942,2.5905 +-1.0074,-0.22756,0.1055,1.5233,2.1996,2.6004 +-1.0109,-0.22834,0.10654,1.5289,2.2049,2.6103 +-1.0145,-0.22911,0.10769,1.5344,2.21,2.6202 +-1.0181,-0.22989,0.10895,1.54,2.2149,2.63 +-1.0217,-0.23067,0.11034,1.5455,2.2197,2.6397 +-1.0253,-0.23144,0.11185,1.5511,2.2243,2.6494 +-1.0288,-0.23222,0.1135,1.5566,2.2288,2.659 +-1.0324,-0.23299,0.11529,1.5621,2.2331,2.6685 +-1.036,-0.23377,0.11724,1.5677,2.2373,2.678 +-1.0396,-0.23455,0.11933,1.5732,2.2413,2.6873 +-1.0432,-0.23532,0.12157,1.5788,2.2452,2.6965 +-1.0467,-0.2361,0.12396,1.5843,2.2489,2.7057 +-1.0503,-0.23687,0.1265,1.5898,2.2525,2.7147 +-1.0539,-0.23765,0.1292,1.5954,2.2559,2.7236 +-1.0575,-0.23842,0.13204,1.6009,2.2592,2.7323 +-1.0611,-0.2392,0.13503,1.6065,2.2624,2.7409 +-1.0646,-0.23998,0.13817,1.612,2.2654,2.7494 +-1.0682,-0.24075,0.14146,1.6175,2.2682,2.7577 +-1.0718,-0.24153,0.14491,1.6231,2.2709,2.7659 +-1.0754,-0.24231,0.1485,1.6286,2.2734,2.7739 +-1.079,-0.24308,0.15224,1.6342,2.2758,2.7818 +-1.0825,-0.24386,0.15613,1.6397,2.278,2.7895 +-1.0861,-0.24462,0.16018,1.6452,2.2801,2.797 +-1.0897,-0.24538,0.16437,1.6508,2.282,2.8045 +-1.0933,-0.24611,0.16871,1.6563,2.2838,2.8117 +-1.0968,-0.24681,0.1732,1.6619,2.2854,2.8188 +-1.1004,-0.24747,0.17784,1.6674,2.2869,2.8258 +-1.104,-0.24809,0.18263,1.6729,2.2883,2.8326 +-1.1076,-0.24866,0.18758,1.6785,2.2894,2.8393 +-1.1112,-0.24916,0.19267,1.6841,2.2905,2.8458 +-1.1148,-0.2496,0.19791,1.6897,2.2913,2.8521 +-1.1184,-0.24997,0.2033,1.6953,2.2921,2.8584 +-1.1221,-0.25025,0.20885,1.701,2.2927,2.8644 +-1.1258,-0.25044,0.21454,1.7067,2.2931,2.8703 +-1.1296,-0.25053,0.22038,1.7125,2.2934,2.8761 +-1.1334,-0.25052,0.22637,1.7183,2.2935,2.8817 +-1.1373,-0.2504,0.23251,1.7242,2.2935,2.8872 +-1.1412,-0.25016,0.23881,1.7302,2.2933,2.8925 +-1.1453,-0.24979,0.24525,1.7362,2.293,2.8977 +-1.1494,-0.24929,0.25184,1.7424,2.2925,2.9027 +-1.1536,-0.24865,0.25858,1.7486,2.2919,2.9075 +-1.1579,-0.24788,0.26548,1.755,2.2912,2.9122 +-1.1623,-0.24698,0.27252,1.7615,2.2902,2.9168 +-1.1669,-0.24598,0.27971,1.7681,2.2892,2.9212 +-1.1716,-0.24486,0.28705,1.7748,2.2879,2.9255 +-1.1763,-0.24365,0.29452,1.7816,2.2866,2.9296 +-1.1812,-0.24235,0.30213,1.7886,2.2851,2.9336 +-1.1862,-0.24096,0.30987,1.7956,2.2834,2.9374 +-1.1913,-0.23949,0.31772,1.8028,2.2816,2.941 +-1.1965,-0.23796,0.32568,1.81,2.2796,2.9446 +-1.2018,-0.23636,0.33374,1.8174,2.2775,2.9479 +-1.2071,-0.23471,0.3419,1.8248,2.2752,2.9511 +-1.2125,-0.23301,0.35014,1.8322,2.2728,2.9542 +-1.218,-0.23127,0.35846,1.8397,2.2702,2.9571 +-1.2235,-0.2295,0.36686,1.8473,2.2675,2.9599 +-1.2291,-0.22771,0.37532,1.8549,2.2647,2.9625 +-1.2347,-0.2259,0.38383,1.8626,2.2617,2.965 +-1.2404,-0.22407,0.39239,1.8703,2.2586,2.9673 +-1.246,-0.22225,0.401,1.878,2.2554,2.9695 +-1.2517,-0.22043,0.40964,1.8857,2.2521,2.9716 +-1.2574,-0.21863,0.41831,1.8934,2.2487,2.9735 +-1.263,-0.21685,0.427,1.9011,2.2452,2.9753 +-1.2687,-0.21509,0.43569,1.9088,2.2416,2.9771 +-1.2744,-0.21337,0.4444,1.9165,2.2379,2.9787 +-1.28,-0.2117,0.4531,1.9242,2.2342,2.9803 +-1.2856,-0.21007,0.46179,1.9318,2.2304,2.9818 +-1.2912,-0.2085,0.47046,1.9394,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3021,-0.20561,0.48774,1.9546,2.2188,2.9858 +-1.3076,-0.20425,0.49633,1.962,2.2148,2.987 +-1.3129,-0.20297,0.50487,1.9694,2.2108,2.9882 +-1.3182,-0.20176,0.51338,1.9767,2.2068,2.9893 +-1.3235,-0.20062,0.52186,1.984,2.2027,2.9903 +-1.3287,-0.19955,0.53029,1.9913,2.1986,2.9913 +-1.3339,-0.19856,0.53869,1.9984,2.1944,2.9923 +-1.339,-0.19763,0.54704,2.0056,2.1903,2.9932 +-1.344,-0.19678,0.55535,2.0126,2.1861,2.994 +-1.349,-0.19601,0.56362,2.0196,2.1818,2.9948 +-1.354,-0.1953,0.57185,2.0266,2.1775,2.9955 +-1.3588,-0.19467,0.58003,2.0335,2.1732,2.9961 +-1.3637,-0.1941,0.58816,2.0403,2.1689,2.9968 +-1.3685,-0.19361,0.59625,2.0471,2.1645,2.9973 +-1.3732,-0.19319,0.60429,2.0538,2.1601,2.9978 +-1.3779,-0.19284,0.61228,2.0604,2.1556,2.9983 +-1.3825,-0.19256,0.62022,2.067,2.1512,2.9987 +-1.387,-0.19235,0.62811,2.0736,2.1467,2.999 +-1.3915,-0.19221,0.63594,2.0801,2.1422,2.9993 +-1.396,-0.19213,0.64373,2.0865,2.1376,2.9996 +-1.4004,-0.19213,0.65145,2.0928,2.133,2.9997 +-1.4047,-0.19219,0.65913,2.0991,2.1284,2.9999 +-1.409,-0.19233,0.66675,2.1054,2.1238,3 +-1.4133,-0.19253,0.67431,2.1116,2.1191,3 +-1.4175,-0.19279,0.68181,2.1177,2.1144,3 +-1.4216,-0.19313,0.68925,2.1237,2.1097,3 +-1.4256,-0.19353,0.69663,2.1297,2.105,2.9998 +-1.4297,-0.19399,0.70395,2.1357,2.1002,2.9997 +-1.4336,-0.19453,0.71121,2.1415,2.0954,2.9995 +-1.4375,-0.19512,0.71841,2.1474,2.0906,2.9992 +-1.4414,-0.19578,0.72554,2.1531,2.0857,2.9989 +-1.4452,-0.19651,0.73261,2.1588,2.0809,2.9986 +-1.4489,-0.1973,0.73961,2.1644,2.076,2.9982 +-1.4526,-0.19815,0.74655,2.17,2.0711,2.9978 +-1.4562,-0.19906,0.75341,2.1755,2.0661,2.9973 +-1.4598,-0.20003,0.76021,2.181,2.0612,2.9968 +-1.4633,-0.20107,0.76694,2.1863,2.0562,2.9962 +-1.4668,-0.20216,0.7736,2.1917,2.0512,2.9956 +-1.4702,-0.20332,0.78019,2.1969,2.0462,2.9949 +-1.4736,-0.20453,0.78671,2.2021,2.0412,2.9942 +-1.4769,-0.2058,0.79315,2.2073,2.0361,2.9935 +-1.4801,-0.20713,0.79952,2.2123,2.0311,2.9927 +-1.4833,-0.20852,0.80582,2.2174,2.026,2.9918 +-1.4864,-0.20997,0.81204,2.2223,2.0208,2.991 +-1.4895,-0.21147,0.81818,2.2272,2.0157,2.9901 +-1.4925,-0.21302,0.82425,2.232,2.0106,2.9891 +-1.4955,-0.21463,0.83024,2.2368,2.0054,2.9881 +-1.4984,-0.21629,0.83616,2.2415,2.0002,2.9871 +-1.5012,-0.21801,0.84199,2.2461,1.995,2.986 +-1.504,-0.21977,0.84774,2.2507,1.9898,2.9849 +-1.5068,-0.22159,0.85342,2.2553,1.9846,2.9837 +-1.5095,-0.22346,0.85901,2.2597,1.9793,2.9826 +-1.5121,-0.22538,0.86452,2.2641,1.9741,2.9813 +-1.5147,-0.22735,0.86995,2.2684,1.9688,2.9801 +-1.5172,-0.22937,0.87529,2.2727,1.9635,2.9788 +-1.5196,-0.23143,0.88055,2.2769,1.9582,2.9775 +-1.522,-0.23354,0.88573,2.2811,1.9529,2.9761 +-1.5244,-0.2357,0.89082,2.2852,1.9475,2.9747 +-1.5267,-0.2379,0.89583,2.2892,1.9422,2.9733 +-1.5289,-0.24014,0.90075,2.2932,1.9368,2.9718 +-1.5311,-0.24243,0.90558,2.2971,1.9314,2.9703 +-1.5332,-0.24476,0.91032,2.301,1.926,2.9688 +-1.5352,-0.24713,0.91498,2.3048,1.9206,2.9672 +-1.5373,-0.24954,0.91955,2.3085,1.9152,2.9656 +-1.5392,-0.25199,0.92403,2.3122,1.9098,2.964 +-1.5411,-0.25448,0.92842,2.3158,1.9044,2.9623 +-1.5429,-0.25701,0.93272,2.3193,1.8989,2.9607 +-1.5447,-0.25957,0.93693,2.3228,1.8934,2.959 +-1.5464,-0.26217,0.94104,2.3263,1.888,2.9572 +-1.5481,-0.2648,0.94507,2.3297,1.8825,2.9554 +-1.5497,-0.26747,0.94901,2.333,1.877,2.9537 +-1.5512,-0.27017,0.95285,2.3362,1.8715,2.9518 +-1.5527,-0.2729,0.9566,2.3394,1.866,2.95 +-1.5541,-0.27567,0.96025,2.3426,1.8604,2.9481 +-1.5555,-0.27846,0.96381,2.3457,1.8549,2.9462 +-1.5568,-0.28128,0.96728,2.3487,1.8493,2.9443 +-1.5581,-0.28413,0.97066,2.3517,1.8438,2.9423 +-1.5593,-0.28701,0.97394,2.3546,1.8382,2.9404 +-1.5604,-0.28991,0.97712,2.3575,1.8326,2.9384 +-1.5615,-0.29284,0.98021,2.3603,1.827,2.9364 +-1.5625,-0.29579,0.98321,2.3631,1.8214,2.9343 +-1.5635,-0.29877,0.9861,2.3658,1.8158,2.9323 +-1.5644,-0.30176,0.98891,2.3684,1.8102,2.9302 +-1.5653,-0.30478,0.99161,2.371,1.8046,2.9281 +-1.5661,-0.30782,0.99422,2.3735,1.7989,2.926 +-1.5668,-0.31087,0.99673,2.376,1.7933,2.9238 +-1.5675,-0.31394,0.99915,2.3785,1.7876,2.9217 +-1.5681,-0.31703,1.0015,2.3808,1.782,2.9195 +-1.5687,-0.32014,1.0037,2.3832,1.7763,2.9173 +-1.5692,-0.32325,1.0058,2.3854,1.7706,2.9151 +-1.5696,-0.32638,1.0078,2.3877,1.7649,2.9128 +-1.57,-0.32953,1.0098,2.3898,1.7592,2.9106 +-1.5703,-0.33268,1.0116,2.3919,1.7535,2.9083 +-1.5706,-0.33585,1.0133,2.394,1.7478,2.9061 +-1.5708,-0.33902,1.015,2.396,1.742,2.9038 +-1.571,-0.3422,1.0165,2.398,1.7363,2.9015 +-1.5711,-0.34539,1.018,2.3999,1.7306,2.8992 +-1.5711,-0.34858,1.0193,2.4018,1.7248,2.8968 +-1.5711,-0.35178,1.0205,2.4036,1.719,2.8945 +-1.571,-0.35498,1.0217,2.4054,1.7133,2.8921 +-1.5708,-0.35818,1.0227,2.4071,1.7075,2.8898 +-1.5706,-0.36139,1.0237,2.4088,1.7017,2.8874 +-1.5704,-0.36459,1.0245,2.4104,1.6959,2.885 +-1.57,-0.36779,1.0253,2.412,1.6901,2.8826 +-1.5697,-0.37099,1.026,2.4135,1.6843,2.8802 +-1.5692,-0.37419,1.0265,2.415,1.6785,2.8778 +-1.5687,-0.37738,1.027,2.4165,1.6726,2.8754 +-1.5682,-0.38057,1.0274,2.4179,1.6668,2.873 +-1.5675,-0.38375,1.0276,2.4192,1.6609,2.8705 +-1.5669,-0.38692,1.0278,2.4205,1.6551,2.8681 +-1.5661,-0.39008,1.0279,2.4218,1.6492,2.8656 +-1.5653,-0.39323,1.0279,2.423,1.6433,2.8632 +-1.5645,-0.39638,1.0278,2.4242,1.6374,2.8607 +-1.5635,-0.39951,1.0275,2.4254,1.6315,2.8583 +-1.5626,-0.40262,1.0272,2.4265,1.6256,2.8558 +-1.5615,-0.40572,1.0268,2.4275,1.6197,2.8533 +-1.5604,-0.40881,1.0264,2.4285,1.6138,2.8508 +-1.5593,-0.41188,1.0258,2.4295,1.6079,2.8484 +-1.558,-0.41493,1.0251,2.4304,1.6019,2.8459 +-1.5568,-0.41796,1.0243,2.4313,1.596,2.8434 +-1.5554,-0.42097,1.0234,2.4322,1.59,2.8409 +-1.554,-0.42396,1.0225,2.433,1.584,2.8384 +-1.5526,-0.42693,1.0214,2.4338,1.578,2.8359 +-1.551,-0.42987,1.0203,2.4346,1.572,2.8334 +-1.5494,-0.43279,1.0191,2.4353,1.566,2.831 +-1.5478,-0.43569,1.0177,2.4359,1.56,2.8285 +-1.5461,-0.43855,1.0163,2.4366,1.554,2.826 +-1.5443,-0.44139,1.0148,2.4372,1.5479,2.8235 +-1.5425,-0.44421,1.0132,2.4377,1.5419,2.821 +-1.5406,-0.44699,1.0115,2.4383,1.5358,2.8185 +-1.5387,-0.44974,1.0098,2.4388,1.5297,2.8161 +-1.5367,-0.45245,1.0079,2.4392,1.5236,2.8136 +-1.5346,-0.45514,1.0059,2.4396,1.5175,2.8111 +-1.5325,-0.45779,1.0039,2.44,1.5114,2.8087 +-1.5303,-0.46041,1.0018,2.4404,1.5053,2.8062 +-1.528,-0.46299,0.99958,2.4407,1.4992,2.8037 +-1.5257,-0.46553,0.99729,2.441,1.493,2.8013 +-1.5233,-0.46803,0.99492,2.4413,1.4868,2.7988 +-1.5209,-0.47049,0.99246,2.4416,1.4807,2.7964 +-1.5184,-0.47292,0.98992,2.4418,1.4745,2.7939 +-1.5158,-0.4753,0.98729,2.4419,1.4683,2.7915 +-1.5132,-0.47764,0.98459,2.4421,1.462,2.7891 +-1.5105,-0.47994,0.9818,2.4422,1.4558,2.7867 +-1.5078,-0.48219,0.97894,2.4423,1.4495,2.7843 +-1.505,-0.4844,0.97599,2.4424,1.4433,2.7819 +-1.5021,-0.48656,0.97297,2.4424,1.437,2.7795 +-1.4992,-0.48867,0.96987,2.4424,1.4307,2.7771 +-1.4962,-0.49074,0.9667,2.4424,1.4244,2.7747 +-1.4931,-0.49275,0.96344,2.4424,1.4181,2.7723 +-1.49,-0.49472,0.96011,2.4423,1.4117,2.77 +-1.4868,-0.49663,0.95671,2.4422,1.4054,2.7676 +-1.4836,-0.49849,0.95324,2.4421,1.399,2.7653 +-1.4803,-0.5003,0.94969,2.442,1.3926,2.763 +-1.4769,-0.50206,0.94607,2.4418,1.3862,2.7606 +-1.4735,-0.50376,0.94238,2.4417,1.3798,2.7583 +-1.47,-0.5054,0.93861,2.4415,1.3733,2.756 +-1.4665,-0.50699,0.93478,2.4412,1.3668,2.7537 +-1.4629,-0.50852,0.93089,2.441,1.3604,2.7514 +-1.4592,-0.51,0.92692,2.4407,1.3539,2.7492 +-1.4555,-0.51141,0.92289,2.4404,1.3473,2.7469 +-1.4517,-0.51276,0.91879,2.4401,1.3408,2.7447 +-1.4478,-0.51406,0.91463,2.4398,1.3343,2.7424 +-1.4439,-0.51529,0.9104,2.4394,1.3277,2.7402 +-1.4399,-0.51646,0.90612,2.4391,1.3211,2.738 +-1.4359,-0.51756,0.90177,2.4387,1.3145,2.7358 +-1.4318,-0.5186,0.89736,2.4383,1.3078,2.7336 +-1.4276,-0.51958,0.89289,2.4379,1.3012,2.7315 +-1.4234,-0.52049,0.88836,2.4374,1.2945,2.7293 +-1.4191,-0.52133,0.88377,2.437,1.2878,2.7272 +-1.4148,-0.52211,0.87913,2.4365,1.2811,2.725 +-1.4104,-0.52282,0.87444,2.436,1.2744,2.7229 +-1.4059,-0.52346,0.86969,2.4355,1.2676,2.7208 +-1.4014,-0.52403,0.86488,2.435,1.2608,2.7187 +-1.3968,-0.52454,0.86002,2.4345,1.254,2.7166 +-1.3921,-0.52497,0.85512,2.4339,1.2472,2.7146 +-1.3874,-0.52533,0.85016,2.4333,1.2403,2.7125 +-1.3827,-0.52562,0.84515,2.4328,1.2335,2.7105 +-1.3778,-0.52583,0.8401,2.4322,1.2266,2.7085 +-1.3729,-0.52597,0.835,2.4316,1.2197,2.7064 +-1.368,-0.52604,0.82985,2.431,1.2127,2.7044 +-1.363,-0.52603,0.82466,2.4303,1.2058,2.7025 +-1.3579,-0.52595,0.81943,2.4297,1.1988,2.7005 +-1.3527,-0.5258,0.81415,2.429,1.1917,2.6985 +-1.3476,-0.52556,0.80883,2.4284,1.1847,2.6966 +-1.3423,-0.52525,0.80348,2.4277,1.1776,2.6947 +-1.337,-0.52487,0.79808,2.427,1.1706,2.6928 +-1.3316,-0.5244,0.79265,2.4263,1.1634,2.6909 +-1.3262,-0.52386,0.78718,2.4256,1.1563,2.689 +-1.3207,-0.52323,0.78167,2.4249,1.1491,2.6871 +-1.3151,-0.52253,0.77614,2.4241,1.1419,2.6853 +-1.3095,-0.52175,0.77056,2.4234,1.1347,2.6834 +-1.3038,-0.52089,0.76496,2.4227,1.1275,2.6816 +-1.2981,-0.51994,0.75933,2.4219,1.1202,2.6798 +-1.2923,-0.51892,0.75366,2.4211,1.1129,2.678 +-1.2865,-0.51781,0.74797,2.4204,1.1056,2.6762 +-1.2805,-0.51662,0.74225,2.4196,1.0982,2.6744 +-1.2746,-0.51535,0.73651,2.4188,1.0909,2.6726 +-1.2686,-0.514,0.73074,2.418,1.0835,2.6709 +-1.2625,-0.51256,0.72495,2.4172,1.076,2.6692 +-1.2563,-0.51104,0.71914,2.4164,1.0686,2.6674 +-1.2501,-0.50944,0.7133,2.4156,1.0611,2.6657 +-1.2439,-0.50775,0.70745,2.4147,1.0536,2.664 +-1.2376,-0.50598,0.70158,2.4139,1.046,2.6624 +-1.2312,-0.50412,0.69569,2.4131,1.0384,2.6607 +-1.2248,-0.50218,0.68978,2.4122,1.0308,2.659 +-1.2183,-0.50015,0.68386,2.4114,1.0232,2.6574 +-1.2117,-0.49804,0.67793,2.4105,1.0155,2.6558 +-1.2051,-0.49584,0.67198,2.4096,1.0078,2.6541 +-1.1985,-0.49355,0.66602,2.4088,1.0001,2.6525 +-1.1918,-0.49118,0.66005,2.4079,0.99236,2.6509 +-1.185,-0.48872,0.65408,2.407,0.98458,2.6493 +-1.1782,-0.48618,0.64809,2.4061,0.97677,2.6478 +-1.1713,-0.48355,0.6421,2.4052,0.96893,2.6462 +-1.1644,-0.48083,0.63611,2.4044,0.96106,2.6447 +-1.1574,-0.47803,0.63011,2.4035,0.95316,2.6431 +-1.1504,-0.47513,0.62411,2.4026,0.94523,2.6416 +-1.1433,-0.47215,0.6181,2.4016,0.93727,2.6401 +-1.1361,-0.46909,0.6121,2.4007,0.92928,2.6386 +-1.1289,-0.46593,0.6061,2.3998,0.92126,2.6371 +-1.1217,-0.46269,0.6001,2.3989,0.91321,2.6356 +-1.1144,-0.45936,0.5941,2.398,0.90512,2.6341 +-1.107,-0.45595,0.58811,2.3971,0.89701,2.6326 +-1.0996,-0.45244,0.58212,2.3961,0.88887,2.6311 +-1.0921,-0.44885,0.57614,2.3952,0.88069,2.6297 +-1.0846,-0.44518,0.57017,2.3942,0.87249,2.6282 +-1.077,-0.44141,0.56421,2.3933,0.86425,2.6268 +-1.0694,-0.43756,0.55825,2.3924,0.85599,2.6253 +-1.0618,-0.43362,0.55231,2.3914,0.84769,2.6239 +-1.054,-0.42959,0.54639,2.3905,0.83936,2.6225 +-1.0463,-0.42547,0.54047,2.3895,0.831,2.6211 +-1.0385,-0.42127,0.53457,2.3885,0.82261,2.6197 +-1.0306,-0.41699,0.52869,2.3876,0.81419,2.6183 +-1.0227,-0.41261,0.52282,2.3866,0.80574,2.6169 +-1.0147,-0.40815,0.51698,2.3856,0.79726,2.6155 +-1.0067,-0.4036,0.51115,2.3847,0.78875,2.6141 +-0.99864,-0.39897,0.50534,2.3837,0.7802,2.6127 +-0.99054,-0.39425,0.49956,2.3827,0.77163,2.6113 +-0.98239,-0.38944,0.4938,2.3817,0.76303,2.6099 +-0.97419,-0.38455,0.48806,2.3807,0.75439,2.6085 +-0.96595,-0.37958,0.48235,2.3797,0.74573,2.6072 +-0.95766,-0.37452,0.47666,2.3787,0.73703,2.6058 +-0.94932,-0.36937,0.47101,2.3777,0.72831,2.6044 +-0.94094,-0.36414,0.46537,2.3767,0.71955,2.603 +-0.93252,-0.35883,0.45977,2.3757,0.71077,2.6017 +-0.92405,-0.35343,0.4542,2.3747,0.70195,2.6003 +-0.91554,-0.34795,0.44867,2.3737,0.69311,2.5989 +-0.90699,-0.34239,0.44316,2.3727,0.68424,2.5976 +-0.89839,-0.33674,0.43769,2.3716,0.67533,2.5962 +-0.88976,-0.33101,0.43225,2.3706,0.6664,2.5948 +-0.88108,-0.3252,0.42685,2.3696,0.65744,2.5935 +-0.87236,-0.31931,0.42148,2.3685,0.64845,2.5921 +-0.8636,-0.31334,0.41615,2.3675,0.63943,2.5907 +-0.8548,-0.30729,0.41087,2.3664,0.63039,2.5893 +-0.84597,-0.30115,0.40562,2.3654,0.62131,2.5879 +-0.83709,-0.29494,0.40041,2.3643,0.61221,2.5865 +-0.82818,-0.28865,0.39524,2.3633,0.60308,2.5851 +-0.81922,-0.28228,0.39011,2.3622,0.59392,2.5837 +-0.81023,-0.27583,0.38503,2.3611,0.58474,2.5823 +-0.80121,-0.2693,0.37999,2.36,0.57553,2.5809 +-0.79215,-0.2627,0.375,2.359,0.56629,2.5795 +-0.78305,-0.25602,0.37006,2.3579,0.55702,2.5781 +-0.77392,-0.24926,0.36516,2.3568,0.54773,2.5766 +-0.76475,-0.24243,0.36031,2.3557,0.53842,2.5752 +-0.75555,-0.23553,0.3555,2.3545,0.52908,2.5737 +-0.74632,-0.22855,0.35075,2.3534,0.51971,2.5723 +-0.73705,-0.22149,0.34605,2.3523,0.51032,2.5708 +-0.72775,-0.21437,0.3414,2.3512,0.5009,2.5693 +-0.71842,-0.20717,0.3368,2.35,0.49146,2.5678 +-0.70907,-0.1999,0.33225,2.3489,0.48199,2.5663 +-0.69968,-0.19255,0.32775,2.3477,0.47251,2.5648 +-0.69026,-0.18514,0.32332,2.3466,0.463,2.5633 +-0.68081,-0.17766,0.31893,2.3454,0.45346,2.5618 +-0.67133,-0.17011,0.3146,2.3442,0.44391,2.5602 +-0.66183,-0.16249,0.31033,2.343,0.43433,2.5586 +-0.6523,-0.1548,0.30612,2.3418,0.42473,2.5571 +-0.64274,-0.14705,0.30196,2.3406,0.41511,2.5555 +-0.63316,-0.13923,0.29786,2.3394,0.40547,2.5539 +-0.62355,-0.13135,0.29382,2.3382,0.39581,2.5522 +-0.61392,-0.1234,0.28985,2.337,0.38612,2.5506 +-0.60426,-0.11539,0.28593,2.3357,0.37642,2.5489 +-0.59459,-0.10731,0.28207,2.3345,0.3667,2.5472 +-0.58489,-0.099171,0.27828,2.3332,0.35697,2.5455 +-0.57516,-0.090972,0.27454,2.3319,0.34721,2.5438 +-0.56542,-0.082712,0.27087,2.3306,0.33744,2.5421 +-0.55566,-0.074393,0.26727,2.3293,0.32765,2.5403 +-0.54588,-0.066015,0.26373,2.328,0.31784,2.5385 +-0.53607,-0.057578,0.26025,2.3267,0.30802,2.5367 +-0.52626,-0.049085,0.25684,2.3254,0.29818,2.5349 +-0.51642,-0.040535,0.25349,2.324,0.28833,2.5331 +-0.50657,-0.03193,0.25021,2.3227,0.27846,2.5312 +-0.4967,-0.02327,0.247,2.3213,0.26858,2.5293 +-0.48682,-0.014557,0.24385,2.3199,0.25869,2.5274 +-0.47692,-0.0057913,0.24078,2.3185,0.24878,2.5255 +-0.46701,0.0030263,0.23777,2.3171,0.23886,2.5235 +-0.45708,0.011895,0.23482,2.3157,0.22893,2.5215 +-0.44715,0.020813,0.23195,2.3142,0.21899,2.5195 +-0.4372,0.029781,0.22915,2.3128,0.20904,2.5175 +-0.42724,0.038796,0.22642,2.3113,0.19908,2.5154 +-0.41727,0.047858,0.22375,2.3098,0.18911,2.5133 +-0.4073,0.056967,0.22116,2.3083,0.17914,2.5112 +-0.39731,0.066121,0.21864,2.3068,0.16915,2.509 +-0.38732,0.075318,0.21618,2.3053,0.15916,2.5068 +-0.37732,0.084559,0.2138,2.3037,0.14916,2.5046 +-0.36732,0.093843,0.2115,2.3022,0.13916,2.5024 +-0.35731,0.10317,0.20926,2.3006,0.12915,2.5001 +-0.3473,0.11253,0.20709,2.299,0.11913,2.4978 +-0.33728,0.12193,0.205,2.2974,0.10912,2.4955 +-0.32726,0.13138,0.20298,2.2957,0.099095,2.4931 +-0.31724,0.14086,0.20104,2.2941,0.089073,2.4907 +-0.30722,0.15037,0.19916,2.2924,0.079049,2.4882 +-0.2972,0.15992,0.19736,2.2907,0.069024,2.4858 +-0.28717,0.1695,0.19563,2.289,0.058999,2.4833 +-0.27715,0.17912,0.19398,2.2873,0.048974,2.4807 +-0.26714,0.18877,0.1924,2.2856,0.038951,2.4781 +-0.25712,0.19845,0.19089,2.2838,0.02893,2.4755 +-0.24711,0.20816,0.18946,2.282,0.018912,2.4729 +-0.23711,0.2179,0.1881,2.2802,0.008897,2.4702 +-0.22711,0.22766,0.18681,2.2784,-0.0011134,2.4675 +-0.21712,0.23745,0.1856,2.2765,-0.011119,2.4647 +-0.20713,0.24727,0.18446,2.2747,-0.021118,2.4619 +-0.19715,0.25711,0.18339,2.2728,-0.031111,2.459 +-0.18718,0.26698,0.1824,2.2709,-0.041096,2.4562 +-0.17723,0.27686,0.18149,2.2689,-0.051073,2.4532 +-0.16728,0.28677,0.18064,2.267,-0.061041,2.4503 +-0.15734,0.2967,0.17987,2.265,-0.070999,2.4473 +-0.14742,0.30664,0.17918,2.263,-0.080946,2.4442 +-0.13751,0.31661,0.17856,2.261,-0.090882,2.4411 +-0.12761,0.32659,0.17801,2.2589,-0.10081,2.438 +-0.11773,0.33659,0.17753,2.2569,-0.11072,2.4348 +-0.10787,0.3466,0.17713,2.2548,-0.12061,2.4316 +-0.098022,0.35662,0.1768,2.2526,-0.13049,2.4283 +-0.088192,0.36666,0.17654,2.2505,-0.14036,2.425 +-0.078381,0.3767,0.17636,2.2483,-0.15021,2.4217 +-0.06859,0.38676,0.17625,2.2461,-0.16004,2.4183 +-0.058818,0.39682,0.17621,2.2439,-0.16986,2.4148 +-0.049068,0.4069,0.17624,2.2417,-0.17965,2.4113 +-0.039341,0.41698,0.17635,2.2394,-0.18943,2.4078 +-0.029636,0.42706,0.17653,2.2371,-0.19918,2.4042 +-0.019955,0.43715,0.17678,2.2348,-0.20892,2.4006 +-0.010298,0.44724,0.17709,2.2325,-0.21863,2.3969 +-0.0006678,0.45734,0.17748,2.2301,-0.22831,2.3932 +0.0089364,0.46743,0.17795,2.2277,-0.23798,2.3894 +0.018513,0.47753,0.17848,2.2253,-0.24761,2.3856 +0.028062,0.48762,0.17908,2.2228,-0.25723,2.3817 +0.037581,0.49771,0.17975,2.2203,-0.26681,2.3778 +0.04707,0.50779,0.18048,2.2178,-0.27637,2.3738 +0.056529,0.51788,0.18129,2.2153,-0.2859,2.3698 +0.065956,0.52795,0.18217,2.2127,-0.2954,2.3657 +0.07535,0.53802,0.18311,2.2102,-0.30487,2.3616 +0.084711,0.54808,0.18412,2.2075,-0.3143,2.3574 +0.094037,0.55813,0.1852,2.2049,-0.32371,2.3532 +0.10333,0.56817,0.18634,2.2022,-0.33308,2.3489 +0.11258,0.5782,0.18756,2.1995,-0.34242,2.3446 +0.1218,0.58821,0.18883,2.1968,-0.35172,2.3402 +0.13098,0.59821,0.19017,2.194,-0.36099,2.3358 +0.14012,0.6082,0.19158,2.1912,-0.37022,2.3313 +0.14922,0.61817,0.19305,2.1884,-0.37942,2.3267 +0.15829,0.62812,0.19458,2.1856,-0.38857,2.3222 +0.16731,0.63806,0.19618,2.1827,-0.39769,2.3175 +0.17628,0.64797,0.19784,2.1798,-0.40676,2.3128 +0.18522,0.65787,0.19956,2.1769,-0.4158,2.308 +0.19411,0.66774,0.20134,2.1739,-0.42479,2.3032 +0.20295,0.67759,0.20318,2.1709,-0.43374,2.2984 +0.21176,0.68742,0.20509,2.1679,-0.44265,2.2934 +0.22051,0.69722,0.20705,2.1648,-0.45151,2.2885 +0.22922,0.70699,0.20907,2.1617,-0.46032,2.2834 +0.23788,0.71674,0.21115,2.1586,-0.46909,2.2784 +0.24649,0.72646,0.21329,2.1555,-0.47782,2.2732 +0.25505,0.73615,0.21548,2.1523,-0.48649,2.268 +0.26355,0.7458,0.21773,2.1491,-0.49511,2.2628 +0.27201,0.75543,0.22004,2.1459,-0.50369,2.2575 +0.28042,0.76503,0.2224,2.1426,-0.51221,2.2521 +0.28877,0.77459,0.22481,2.1393,-0.52068,2.2467 +0.29707,0.78411,0.22728,2.136,-0.5291,2.2412 +0.30531,0.79361,0.22981,2.1326,-0.53747,2.2357 +0.3135,0.80306,0.23238,2.1292,-0.54578,2.2301 +0.32163,0.81248,0.235,2.1258,-0.55404,2.2244 +0.32971,0.82185,0.23768,2.1224,-0.56223,2.2187 +0.33773,0.83119,0.24041,2.1189,-0.57038,2.213 +0.34568,0.84049,0.24318,2.1154,-0.57846,2.2072 +0.35358,0.84974,0.246,2.1119,-0.58649,2.2013 +0.36142,0.85895,0.24887,2.1083,-0.59446,2.1953 +0.3692,0.86812,0.25179,2.1047,-0.60236,2.1894 +0.37692,0.87724,0.25475,2.1011,-0.61021,2.1833 +0.38457,0.88632,0.25776,2.0974,-0.61799,2.1772 +0.39216,0.89535,0.26082,2.0937,-0.62571,2.1711 +0.39968,0.90433,0.26391,2.09,-0.63337,2.1649 +0.40714,0.91326,0.26705,2.0862,-0.64096,2.1586 +0.41454,0.92214,0.27023,2.0825,-0.64849,2.1523 +0.42187,0.93097,0.27345,2.0787,-0.65595,2.1459 +0.42913,0.93975,0.27672,2.0748,-0.66335,2.1394 +0.43632,0.94848,0.28002,2.071,-0.67067,2.1329 +0.44345,0.95715,0.28336,2.0671,-0.67793,2.1264 +0.4505,0.96577,0.28674,2.0631,-0.68512,2.1198 +0.45749,0.97433,0.29015,2.0592,-0.69224,2.1131 +0.46441,0.98284,0.2936,2.0552,-0.69929,2.1064 +0.47125,0.99129,0.29709,2.0512,-0.70627,2.0996 +0.47802,0.99968,0.30061,2.0472,-0.71317,2.0928 +0.48472,1.008,0.30416,2.0431,-0.72,2.0859 +0.49135,1.0163,0.30774,2.039,-0.72676,2.079 +0.4979,1.0245,0.31136,2.0349,-0.73345,2.072 +0.50437,1.0326,0.31501,2.0307,-0.74005,2.0649 +0.51078,1.0407,0.31869,2.0265,-0.74659,2.0578 +0.5171,1.0488,0.32239,2.0223,-0.75304,2.0506 +0.52335,1.0567,0.32612,2.0181,-0.75942,2.0434 +0.52952,1.0646,0.32988,2.0138,-0.76572,2.0361 +0.53561,1.0724,0.33367,2.0096,-0.77195,2.0288 +0.54163,1.0802,0.33748,2.0052,-0.77809,2.0214 +0.54757,1.0879,0.34132,2.0009,-0.78415,2.014 +0.55342,1.0955,0.34518,1.9965,-0.79014,2.0065 +0.5592,1.1031,0.34906,1.9922,-0.79604,1.999 +0.56489,1.1106,0.35296,1.9877,-0.80186,1.9914 +0.5705,1.118,0.35688,1.9833,-0.8076,1.9837 +0.57603,1.1253,0.36083,1.9788,-0.81325,1.976 +0.58148,1.1326,0.36479,1.9744,-0.81882,1.9683 +0.58685,1.1398,0.36877,1.9699,-0.82431,1.9605 +0.59213,1.1469,0.37276,1.9653,-0.82971,1.9526 +0.59733,1.154,0.37677,1.9608,-0.83503,1.9447 +0.60244,1.1609,0.3808,1.9562,-0.84026,1.9368 +0.60746,1.1678,0.38484,1.9516,-0.8454,1.9288 +0.6124,1.1747,0.38889,1.947,-0.85046,1.9207 +0.61726,1.1814,0.39296,1.9423,-0.85543,1.9126 +0.62203,1.1881,0.39703,1.9377,-0.86031,1.9045 +0.62671,1.1947,0.40112,1.933,-0.86511,1.8963 +0.6313,1.2012,0.40522,1.9283,-0.86981,1.888 +0.6358,1.2076,0.40932,1.9235,-0.87443,1.8797 +0.64022,1.214,0.41343,1.9188,-0.87895,1.8714 +0.64455,1.2203,0.41755,1.914,-0.88339,1.863 +0.64878,1.2264,0.42167,1.9092,-0.88773,1.8545 +0.65293,1.2325,0.4258,1.9044,-0.89198,1.8461 +0.65698,1.2386,0.42993,1.8996,-0.89614,1.8375 +0.66095,1.2445,0.43406,1.8948,-0.90021,1.829 +0.66482,1.2504,0.4382,1.8899,-0.90419,1.8203 +0.66861,1.2561,0.44234,1.8851,-0.90807,1.8117 +0.6723,1.2618,0.44647,1.8802,-0.91186,1.803 +0.67589,1.2674,0.45061,1.8753,-0.91556,1.7942 +0.6794,1.273,0.45474,1.8704,-0.91916,1.7854 +0.68281,1.2784,0.45887,1.8654,-0.92267,1.7766 +0.68613,1.2837,0.463,1.8605,-0.92609,1.7677 +0.68936,1.289,0.46712,1.8555,-0.92941,1.7588 +0.69249,1.2942,0.47124,1.8506,-0.93263,1.7499 +0.69552,1.2992,0.47535,1.8456,-0.93576,1.7409 +0.69846,1.3042,0.47945,1.8406,-0.9388,1.7318 +0.70131,1.3091,0.48355,1.8356,-0.94174,1.7228 +0.70406,1.314,0.48763,1.8306,-0.94458,1.7136 +0.70672,1.3187,0.49171,1.8255,-0.94732,1.7045 +0.70928,1.3233,0.49578,1.8205,-0.94997,1.6953 +0.71175,1.3278,0.49983,1.8155,-0.95253,1.6861 +0.71411,1.3323,0.50387,1.8104,-0.95498,1.6768 +0.71639,1.3367,0.5079,1.8053,-0.95734,1.6676 +0.71856,1.3409,0.51191,1.8003,-0.9596,1.6582 +0.72064,1.3451,0.51591,1.7952,-0.96177,1.6489 +0.72262,1.3492,0.51989,1.7901,-0.96384,1.6395 +0.72451,1.3532,0.52386,1.785,-0.96581,1.6301 +0.72629,1.3571,0.52781,1.78,-0.96768,1.6206 +0.72798,1.3609,0.53174,1.7749,-0.96945,1.6111 +0.72957,1.3646,0.53565,1.7698,-0.97113,1.6016 +0.73107,1.3682,0.53954,1.7647,-0.97271,1.5921 +0.73246,1.3717,0.54341,1.7596,-0.97419,1.5825 +0.73376,1.3751,0.54726,1.7545,-0.97558,1.5729 +0.73496,1.3785,0.55109,1.7494,-0.97687,1.5633 +0.73606,1.3817,0.55489,1.7443,-0.97805,1.5536 +0.73707,1.3848,0.55867,1.7392,-0.97915,1.544 +0.73797,1.3879,0.56243,1.7341,-0.98014,1.5343 +0.73878,1.3908,0.56616,1.729,-0.98104,1.5245 +0.73949,1.3937,0.56986,1.7239,-0.98184,1.5148 +0.7401,1.3965,0.57354,1.7188,-0.98254,1.505 +0.74061,1.3991,0.57719,1.7137,-0.98314,1.4952 +0.74102,1.4017,0.58081,1.7086,-0.98365,1.4854 +0.74134,1.4041,0.5844,1.7035,-0.98406,1.4756 +0.74155,1.4065,0.58796,1.6984,-0.98437,1.4657 +0.74167,1.4088,0.5915,1.6934,-0.98459,1.4558 +0.74169,1.411,0.595,1.6883,-0.98471,1.446 +0.74161,1.413,0.59847,1.6833,-0.98473,1.436 +0.74143,1.415,0.60191,1.6782,-0.98466,1.4261 +0.74116,1.4169,0.60531,1.6732,-0.9845,1.4162 +0.74079,1.4187,0.60868,1.6682,-0.98423,1.4062 +0.74031,1.4204,0.61202,1.6632,-0.98388,1.3963 +0.73974,1.422,0.61532,1.6582,-0.98342,1.3863 +0.73908,1.4235,0.61859,1.6532,-0.98287,1.3763 +0.73831,1.4249,0.62182,1.6482,-0.98223,1.3663 +0.73745,1.4262,0.62501,1.6433,-0.9815,1.3563 +0.73649,1.4274,0.62817,1.6383,-0.98067,1.3463 +0.73543,1.4285,0.63129,1.6334,-0.97974,1.3362 +0.73428,1.4295,0.63437,1.6285,-0.97873,1.3262 +0.73302,1.4304,0.63741,1.6236,-0.97762,1.3161 +0.73168,1.4312,0.64042,1.6187,-0.97642,1.3061 +0.73023,1.4319,0.64338,1.6138,-0.97513,1.296 +0.72869,1.4325,0.6463,1.609,-0.97374,1.286 +0.72705,1.4331,0.64918,1.6042,-0.97227,1.2759 +0.72532,1.4335,0.65202,1.5994,-0.9707,1.2659 +0.72349,1.4338,0.65482,1.5946,-0.96905,1.2558 +0.72157,1.434,0.65758,1.5899,-0.9673,1.2457 +0.71955,1.4342,0.66029,1.5851,-0.96547,1.2356 +0.71744,1.4342,0.66296,1.5804,-0.96355,1.2256 +0.71523,1.4341,0.66559,1.5758,-0.96154,1.2155 +0.71293,1.434,0.66817,1.5711,-0.95944,1.2055 +0.71053,1.4337,0.6707,1.5665,-0.95726,1.1954 +0.70804,1.4334,0.6732,1.5619,-0.95499,1.1853 +0.70546,1.4329,0.67564,1.5573,-0.95263,1.1753 +0.70278,1.4324,0.67805,1.5527,-0.95019,1.1653 +0.70002,1.4317,0.6804,1.5482,-0.94767,1.1552 +0.69716,1.431,0.68271,1.5437,-0.94506,1.1452 +0.6942,1.4302,0.68497,1.5393,-0.94237,1.1352 +0.69116,1.4292,0.68719,1.5349,-0.9396,1.1252 +0.68803,1.4282,0.68935,1.5305,-0.93674,1.1152 +0.6848,1.4271,0.69147,1.5261,-0.9338,1.1052 +0.68149,1.4259,0.69355,1.5218,-0.93079,1.0952 +0.67808,1.4246,0.69557,1.5175,-0.92769,1.0853 +0.67459,1.4232,0.69754,1.5132,-0.92452,1.0753 +0.67101,1.4217,0.69947,1.509,-0.92126,1.0654 +0.66734,1.4201,0.70135,1.5048,-0.91793,1.0555 +0.66358,1.4184,0.70318,1.5007,-0.91452,1.0456 +0.65973,1.4166,0.70495,1.4966,-0.91104,1.0357 +0.6558,1.4148,0.70668,1.4925,-0.90748,1.0259 +0.65178,1.4128,0.70836,1.4885,-0.90385,1.016 +0.64768,1.4107,0.70999,1.4845,-0.90015,1.0062 +0.64349,1.4086,0.71157,1.4806,-0.89637,0.99641 +0.63921,1.4064,0.71309,1.4767,-0.89252,0.98664 +0.63485,1.404,0.71457,1.4728,-0.8886,0.9769 +0.63041,1.4016,0.716,1.469,-0.8846,0.96717 +0.62588,1.3991,0.71737,1.4652,-0.88054,0.95748 +0.62127,1.3965,0.71869,1.4615,-0.87642,0.94781 +0.61658,1.3938,0.71997,1.4578,-0.87222,0.93816 +0.61181,1.391,0.72119,1.4542,-0.86796,0.92855 +0.60696,1.3882,0.72236,1.4506,-0.86363,0.91896 +0.60202,1.3852,0.72348,1.447,-0.85924,0.90941 +0.59701,1.3822,0.72454,1.4436,-0.85478,0.89988 +0.59192,1.379,0.72556,1.4401,-0.85027,0.89039 +0.58675,1.3758,0.72652,1.4367,-0.84569,0.88093 +0.5815,1.3725,0.72743,1.4334,-0.84105,0.8715 +0.57617,1.3691,0.7283,1.4301,-0.83634,0.86211 +0.57077,1.3656,0.7291,1.4268,-0.83159,0.85275 +0.56529,1.362,0.72986,1.4237,-0.82677,0.84342 +0.55974,1.3584,0.73057,1.4205,-0.8219,0.83414 +0.55411,1.3546,0.73122,1.4174,-0.81697,0.82489 +0.54841,1.3508,0.73182,1.4144,-0.81198,0.81568 +0.54264,1.3469,0.73237,1.4114,-0.80695,0.80651 +0.53679,1.3429,0.73287,1.4085,-0.80186,0.79738 +0.53087,1.3388,0.73332,1.4057,-0.79672,0.78829 +0.52488,1.3347,0.73372,1.4029,-0.79152,0.77924 +0.51883,1.3304,0.73406,1.4001,-0.78628,0.77024 +0.5127,1.3261,0.73436,1.3974,-0.78099,0.76127 +0.5065,1.3217,0.7346,1.3948,-0.77566,0.75236 +0.50023,1.3172,0.7348,1.3922,-0.77028,0.74348 +0.4939,1.3127,0.73494,1.3897,-0.76485,0.73466 +0.4875,1.308,0.73503,1.3873,-0.75938,0.72588 +0.48104,1.3033,0.73507,1.3849,-0.75387,0.71714 +0.47451,1.2985,0.73506,1.3826,-0.74831,0.70846 +0.46791,1.2936,0.735,1.3803,-0.74272,0.69982 +0.46126,1.2886,0.73489,1.3781,-0.73708,0.69124 +0.45454,1.2836,0.73473,1.376,-0.73141,0.6827 +0.44775,1.2785,0.73452,1.3739,-0.7257,0.67422 +0.44091,1.2733,0.73427,1.3719,-0.71995,0.66578 +0.43401,1.268,0.73396,1.3699,-0.71417,0.6574 +0.42705,1.2627,0.7336,1.368,-0.70836,0.64908 +0.42003,1.2573,0.7332,1.3662,-0.70252,0.6408 +0.41295,1.2518,0.73275,1.3645,-0.69664,0.63259 +0.40581,1.2462,0.73225,1.3628,-0.69073,0.62442 +0.39862,1.2406,0.7317,1.3612,-0.6848,0.61632 +0.39137,1.2348,0.7311,1.3596,-0.67884,0.60827 +0.38407,1.2291,0.73046,1.3582,-0.67285,0.60028 +0.37672,1.2232,0.72977,1.3567,-0.66683,0.59234 +0.36931,1.2173,0.72903,1.3554,-0.6608,0.58447 +0.36185,1.2113,0.72825,1.3541,-0.65474,0.57665 +0.35434,1.2052,0.72742,1.3529,-0.64865,0.5689 +0.34678,1.1991,0.72654,1.3518,-0.64255,0.5612 +0.33918,1.1929,0.72562,1.3507,-0.63643,0.55357 +0.33152,1.1866,0.72466,1.3497,-0.63029,0.546 +0.32381,1.1803,0.72364,1.3488,-0.62414,0.53849 +0.31606,1.1739,0.72259,1.348,-0.61797,0.53105 +0.30827,1.1674,0.72149,1.3472,-0.61179,0.52367 +0.30043,1.1608,0.72035,1.3465,-0.60559,0.51635 +0.29254,1.1542,0.71916,1.3459,-0.59938,0.5091 +0.28461,1.1476,0.71793,1.3453,-0.59316,0.50191 +0.27664,1.1408,0.71666,1.3448,-0.58693,0.49479 +0.26863,1.134,0.71535,1.3444,-0.5807,0.48774 +0.26058,1.1272,0.71399,1.3441,-0.57445,0.48076 +0.25249,1.1203,0.7126,1.3438,-0.56821,0.47384 +0.24436,1.1133,0.71116,1.3436,-0.56195,0.46699 +0.2362,1.1062,0.70968,1.3435,-0.5557,0.46021 +0.22799,1.0991,0.70817,1.3435,-0.54944,0.45349 +0.21976,1.092,0.70661,1.3435,-0.54319,0.44685 +0.21148,1.0847,0.70501,1.3436,-0.53693,0.44028 +0.20318,1.0775,0.70338,1.3438,-0.53067,0.43378 +0.19484,1.0701,0.7017,1.344,-0.52442,0.42735 +0.18647,1.0627,0.69999,1.3444,-0.51818,0.42099 +0.17807,1.0553,0.69824,1.3448,-0.51194,0.4147 +0.16964,1.0478,0.69646,1.3453,-0.5057,0.40849 +0.16118,1.0402,0.69464,1.3458,-0.49948,0.40234 +0.15269,1.0326,0.69278,1.3465,-0.49326,0.39627 +0.14417,1.0249,0.69088,1.3472,-0.48705,0.39028 +0.13563,1.0172,0.68895,1.348,-0.48086,0.38436 +0.12707,1.0094,0.68699,1.3488,-0.47468,0.37851 +0.11848,1.0016,0.68499,1.3498,-0.46851,0.37274 +0.10986,0.99368,0.68296,1.3508,-0.46236,0.36704 +0.10123,0.98574,0.6809,1.3519,-0.45622,0.36141 +0.092568,0.97776,0.6788,1.3531,-0.45011,0.35587 +0.083891,0.96973,0.67667,1.3543,-0.44401,0.35039 +0.075193,0.96164,0.67451,1.3557,-0.43793,0.345 +0.066478,0.95351,0.67232,1.3571,-0.43187,0.33968 +0.057744,0.94533,0.6701,1.3585,-0.42584,0.33443 +0.048994,0.93711,0.66785,1.3601,-0.41983,0.32927 +0.040229,0.92883,0.66556,1.3617,-0.41384,0.32418 +0.031449,0.92052,0.66325,1.3634,-0.40788,0.31917 +0.022655,0.91215,0.66091,1.3652,-0.40195,0.31423 +0.013848,0.90374,0.65854,1.3671,-0.39604,0.30938 +0.00503,0.89529,0.65615,1.369,-0.39017,0.3046 +-0.0037992,0.8868,0.65372,1.371,-0.38432,0.2999 +-0.012638,0.87826,0.65127,1.3731,-0.37851,0.29527 +-0.021486,0.86968,0.6488,1.3753,-0.37273,0.29073 +-0.030343,0.86105,0.6463,1.3775,-0.36698,0.28626 +-0.039206,0.85239,0.64377,1.3799,-0.36127,0.28187 +-0.048075,0.84369,0.64122,1.3823,-0.3556,0.27757 +-0.056949,0.83495,0.63865,1.3847,-0.34996,0.27334 +-0.065828,0.82617,0.63605,1.3873,-0.34436,0.26918 +-0.07471,0.81735,0.63342,1.3899,-0.3388,0.26511 +-0.083594,0.80849,0.63078,1.3926,-0.33327,0.26112 +-0.09248,0.7996,0.62811,1.3954,-0.3278,0.2572 +-0.10137,0.79066,0.62543,1.3982,-0.32236,0.25337 +-0.11025,0.7817,0.62272,1.4011,-0.31696,0.24961 +-0.11914,0.7727,0.61999,1.4041,-0.31162,0.24594 +-0.12802,0.76366,0.61724,1.4072,-0.30631,0.24234 +-0.1369,0.75459,0.61447,1.4103,-0.30105,0.23882 +-0.14577,0.74549,0.61168,1.4135,-0.29584,0.23538 +-0.15464,0.73635,0.60888,1.4168,-0.29068,0.23202 +-0.1635,0.72719,0.60605,1.4202,-0.28557,0.22874 +-0.17236,0.71799,0.60321,1.4236,-0.28051,0.22553 +-0.18121,0.70876,0.60035,1.4271,-0.2755,0.22241 +-0.19005,0.6995,0.59748,1.4306,-0.27054,0.21936 +-0.19888,0.69021,0.59459,1.4343,-0.26563,0.21639 +-0.2077,0.68089,0.59168,1.438,-0.26078,0.2135 +-0.2165,0.67154,0.58876,1.4418,-0.25599,0.21069 +-0.2253,0.66217,0.58583,1.4456,-0.25124,0.20796 +-0.23408,0.65277,0.58288,1.4495,-0.24656,0.20531 +-0.24285,0.64334,0.57991,1.4535,-0.24193,0.20273 +-0.2516,0.63389,0.57693,1.4576,-0.23737,0.20023 +-0.26034,0.62441,0.57395,1.4617,-0.23286,0.19781 +-0.26906,0.61491,0.57094,1.4659,-0.22841,0.19546 +-0.27776,0.60538,0.56793,1.4701,-0.22402,0.19319 +-0.28645,0.59583,0.56491,1.4744,-0.21969,0.191 +-0.29511,0.58626,0.56187,1.4788,-0.21543,0.18889 +-0.30376,0.57666,0.55882,1.4833,-0.21122,0.18685 +-0.31238,0.56705,0.55577,1.4878,-0.20709,0.18488 +-0.32098,0.55741,0.5527,1.4924,-0.20301,0.183 +-0.32956,0.54775,0.54963,1.497,-0.199,0.18118 +-0.33811,0.53807,0.54654,1.5017,-0.19506,0.17945 +-0.34664,0.52837,0.54345,1.5065,-0.19119,0.17778 +-0.35515,0.51866,0.54035,1.5113,-0.18738,0.1762 +-0.36363,0.50893,0.53725,1.5162,-0.18364,0.17468 +-0.37208,0.49917,0.53413,1.5211,-0.17997,0.17324 +-0.3805,0.48941,0.53101,1.5261,-0.17637,0.17187 +-0.3889,0.47962,0.52789,1.5312,-0.17283,0.17058 +-0.39726,0.46982,0.52475,1.5363,-0.16937,0.16935 +-0.4056,0.46001,0.52161,1.5415,-0.16598,0.1682 +-0.4139,0.45018,0.51847,1.5468,-0.16266,0.16712 +-0.42217,0.44034,0.51532,1.552,-0.15942,0.16612 +-0.43041,0.43048,0.51217,1.5574,-0.15624,0.16518 +-0.43862,0.42061,0.50901,1.5628,-0.15314,0.16431 +-0.44679,0.41073,0.50585,1.5683,-0.15012,0.16351 +-0.45493,0.40084,0.50269,1.5738,-0.14716,0.16278 +-0.46303,0.39093,0.49953,1.5793,-0.14429,0.16212 +-0.4711,0.38102,0.49636,1.585,-0.14148,0.16153 +-0.47912,0.3711,0.49318,1.5906,-0.13876,0.16101 +-0.48711,0.36116,0.49001,1.5963,-0.13611,0.16055 +-0.49506,0.35122,0.48684,1.6021,-0.13353,0.16016 +-0.50297,0.34127,0.48366,1.6079,-0.13104,0.15984 +-0.51085,0.33131,0.48048,1.6138,-0.12862,0.15958 +-0.51868,0.32135,0.4773,1.6197,-0.12627,0.15939 +-0.52647,0.31138,0.47412,1.6256,-0.12401,0.15926 +-0.53421,0.3014,0.47094,1.6316,-0.12182,0.15919 +-0.54192,0.29142,0.46776,1.6377,-0.11972,0.15919 +-0.54958,0.28143,0.46458,1.6438,-0.11769,0.15925 +-0.55719,0.27144,0.4614,1.6499,-0.11574,0.15937 +-0.56476,0.26144,0.45823,1.6561,-0.11387,0.15955 +-0.57229,0.25144,0.45505,1.6623,-0.11208,0.1598 +-0.57976,0.24144,0.45187,1.6686,-0.11037,0.1601 +-0.58719,0.23144,0.4487,1.6749,-0.10874,0.16046 +-0.59458,0.22143,0.44552,1.6812,-0.10719,0.16088 +-0.60191,0.21143,0.44235,1.6876,-0.10572,0.16136 +-0.6092,0.20142,0.43918,1.694,-0.10433,0.1619 +-0.61643,0.19141,0.43601,1.7004,-0.10302,0.16249 +-0.62362,0.18141,0.43285,1.7069,-0.10179,0.16314 +-0.63076,0.1714,0.42969,1.7134,-0.10064,0.16384 +-0.63784,0.1614,0.42652,1.7199,-0.099578,0.1646 +-0.64487,0.1514,0.42337,1.7265,-0.098594,0.16541 +-0.65185,0.1414,0.42021,1.7331,-0.09769,0.16628 +-0.65877,0.13141,0.41706,1.7398,-0.096867,0.16719 +-0.66564,0.12142,0.41391,1.7464,-0.096126,0.16816 +-0.67246,0.11143,0.41077,1.7531,-0.095465,0.16918 +-0.67922,0.10145,0.40762,1.7598,-0.094886,0.17025 +-0.68593,0.091472,0.40448,1.7666,-0.094388,0.17136 +-0.69258,0.081501,0.40135,1.7734,-0.093971,0.17253 +-0.69917,0.071537,0.39822,1.7802,-0.093634,0.17374 +-0.70571,0.061579,0.39509,1.787,-0.093379,0.175 +-0.71219,0.051629,0.39196,1.7938,-0.093204,0.1763 +-0.71861,0.041687,0.38884,1.8007,-0.093109,0.17765 +-0.72497,0.031753,0.38573,1.8076,-0.093095,0.17904 +-0.73127,0.021828,0.38261,1.8145,-0.093161,0.18047 +-0.73751,0.011912,0.3795,1.8214,-0.093308,0.18195 +-0.74369,0.0020066,0.3764,1.8283,-0.093534,0.18347 +-0.74981,-0.0078886,0.3733,1.8353,-0.093839,0.18503 +-0.75587,-0.017773,0.3702,1.8423,-0.094225,0.18663 +-0.76187,-0.027646,0.36711,1.8492,-0.094689,0.18826 +-0.7678,-0.037507,0.36402,1.8562,-0.095232,0.18994 +-0.77368,-0.047355,0.36093,1.8632,-0.095853,0.19165 +-0.77949,-0.057191,0.35785,1.8703,-0.096553,0.1934 +-0.78523,-0.067013,0.35477,1.8773,-0.097331,0.19518 +-0.79091,-0.076821,0.35169,1.8843,-0.098186,0.197 +-0.79653,-0.086615,0.34862,1.8914,-0.099118,0.19885 +-0.80208,-0.096394,0.34555,1.8984,-0.10013,0.20073 +-0.80757,-0.10616,0.34249,1.9055,-0.10121,0.20264 +-0.81299,-0.11591,0.33943,1.9125,-0.10237,0.20459 +-0.81835,-0.12564,0.33637,1.9196,-0.10361,0.20656 +-0.82364,-0.13535,0.33332,1.9267,-0.10492,0.20857 +-0.82886,-0.14505,0.33026,1.9337,-0.10631,0.21059 +-0.83401,-0.15473,0.32721,1.9408,-0.10777,0.21265 +-0.8391,-0.16439,0.32417,1.9479,-0.10931,0.21473 +-0.84412,-0.17403,0.32113,1.9549,-0.11092,0.21684 +-0.84907,-0.18366,0.31808,1.962,-0.1126,0.21897 +-0.85395,-0.19326,0.31505,1.969,-0.11435,0.22112 +-0.85876,-0.20284,0.31201,1.9761,-0.11617,0.2233 +-0.86351,-0.21241,0.30897,1.9831,-0.11807,0.22549 +-0.86818,-0.22195,0.30594,1.9902,-0.12003,0.22771 +-0.87278,-0.23147,0.30291,1.9972,-0.12207,0.22994 +-0.87732,-0.24097,0.29988,2.0042,-0.12418,0.2322 +-0.88178,-0.25044,0.29685,2.0112,-0.12635,0.23446 +-0.88617,-0.2599,0.29383,2.0182,-0.12859,0.23675 +-0.89049,-0.26933,0.2908,2.0252,-0.1309,0.23905 +-0.89474,-0.27873,0.28777,2.0322,-0.13327,0.24136 +-0.89892,-0.28811,0.28475,2.0391,-0.13571,0.24369 +-0.90302,-0.29747,0.28172,2.0461,-0.13822,0.24603 +-0.90706,-0.3068,0.2787,2.053,-0.14079,0.24837 +-0.91102,-0.3161,0.27567,2.0599,-0.14342,0.25073 +-0.9149,-0.32538,0.27264,2.0668,-0.14612,0.2531 +-0.91872,-0.33464,0.26961,2.0737,-0.14888,0.25548 +-0.92246,-0.34386,0.26659,2.0805,-0.1517,0.25786 +-0.92613,-0.35306,0.26355,2.0873,-0.15458,0.26024 +-0.92972,-0.36223,0.26052,2.0941,-0.15752,0.26264 +-0.93324,-0.37137,0.25749,2.1009,-0.16052,0.26503 +-0.93669,-0.38048,0.25445,2.1077,-0.16357,0.26743 +-0.94006,-0.38956,0.25141,2.1144,-0.16669,0.26983 +-0.94336,-0.39862,0.24837,2.1211,-0.16986,0.27223 +-0.94658,-0.40764,0.24532,2.1277,-0.17308,0.27463 +-0.94973,-0.41663,0.24227,2.1344,-0.17637,0.27703 +-0.95281,-0.42559,0.23922,2.141,-0.1797,0.27943 +-0.9558,-0.43452,0.23616,2.1476,-0.18309,0.28182 +-0.95873,-0.44342,0.2331,2.1541,-0.18652,0.28421 +-0.96157,-0.45228,0.23003,2.1606,-0.19001,0.2866 +-0.96435,-0.46111,0.22695,2.1671,-0.19355,0.28897 +-0.96704,-0.46991,0.22388,2.1735,-0.19714,0.29134 +-0.96966,-0.47867,0.22079,2.1799,-0.20078,0.2937 +-0.97221,-0.4874,0.2177,2.1863,-0.20446,0.29606 +-0.97468,-0.4961,0.2146,2.1926,-0.20819,0.2984 +-0.97707,-0.50476,0.21149,2.1989,-0.21196,0.30073 +-0.97938,-0.51338,0.20838,2.2051,-0.21578,0.30305 +-0.98162,-0.52197,0.20526,2.2113,-0.21964,0.30535 +-0.98379,-0.53052,0.20213,2.2175,-0.22355,0.30764 +-0.98587,-0.53903,0.19899,2.2236,-0.22749,0.30991 +-0.98788,-0.54751,0.19584,2.2297,-0.23147,0.31217 +-0.98982,-0.55595,0.19268,2.2357,-0.2355,0.31441 +-0.99167,-0.56435,0.18951,2.2417,-0.23955,0.31663 +-0.99345,-0.57271,0.18633,2.2476,-0.24365,0.31884 +-0.99516,-0.58104,0.18315,2.2535,-0.24778,0.32102 +-0.99678,-0.58932,0.17994,2.2593,-0.25195,0.32318 +-0.99833,-0.59756,0.17673,2.2651,-0.25615,0.32532 +-0.9998,-0.60577,0.17351,2.2709,-0.26038,0.32743 +-1.0012,-0.61393,0.17027,2.2765,-0.26464,0.32952 +-1.0025,-0.62205,0.16702,2.2822,-0.26893,0.33159 +-1.0038,-0.63013,0.16376,2.2877,-0.27326,0.33363 +-1.0049,-0.63816,0.16048,2.2933,-0.2776,0.33564 +-1.006,-0.64616,0.15719,2.2987,-0.28198,0.33762 +-1.007,-0.65411,0.15388,2.3041,-0.28638,0.33958 +-1.008,-0.66202,0.15056,2.3095,-0.2908,0.34151 +-1.0088,-0.66988,0.14722,2.3148,-0.29525,0.3434 +-1.0096,-0.6777,0.14387,2.32,-0.29972,0.34526 +-1.0103,-0.68548,0.1405,2.3252,-0.30421,0.34709 +-1.0109,-0.69321,0.13711,2.3303,-0.30872,0.34889 +-1.0115,-0.70089,0.1337,2.3353,-0.31324,0.35065 +-1.0119,-0.70853,0.13028,2.3403,-0.31779,0.35238 +-1.0123,-0.71612,0.12684,2.3453,-0.32235,0.35407 +-1.0127,-0.72366,0.12338,2.3501,-0.32692,0.35572 +-1.0129,-0.73116,0.1199,2.3549,-0.33151,0.35734 +-1.0131,-0.73861,0.1164,2.3597,-0.33611,0.35891 +-1.0132,-0.74601,0.11288,2.3643,-0.34072,0.36045 +-1.0132,-0.75337,0.10934,2.3689,-0.34534,0.36195 +-1.0131,-0.76067,0.10578,2.3735,-0.34997,0.3634 +-1.013,-0.76793,0.1022,2.3779,-0.3546,0.36481 +-1.0127,-0.77513,0.098598,2.3823,-0.35924,0.36618 +-1.0124,-0.78229,0.094972,2.3867,-0.36389,0.36751 +-1.0121,-0.78939,0.091323,2.3909,-0.36854,0.36878 +-1.0116,-0.79645,0.087651,2.3951,-0.37319,0.37002 +-1.0111,-0.80345,0.083955,2.3992,-0.37784,0.37121 +-1.0105,-0.8104,0.080234,2.4032,-0.38249,0.37235 +-1.0098,-0.8173,0.07649,2.4072,-0.38714,0.37344 +-1.0091,-0.82415,0.07272,2.4111,-0.39179,0.37448 +-1.0083,-0.83094,0.068925,2.4149,-0.39644,0.37548 +-1.0074,-0.83768,0.065104,2.4187,-0.40107,0.37642 +-1.0064,-0.84436,0.061256,2.4223,-0.40571,0.37731 +-1.0054,-0.85099,0.057382,2.4259,-0.41033,0.37815 +-1.0042,-0.85757,0.053481,2.4295,-0.41494,0.37894 +-1.003,-0.86409,0.049552,2.4329,-0.41955,0.37967 +-1.0018,-0.87056,0.045595,2.4363,-0.42414,0.38035 +-1.0004,-0.87697,0.04161,2.4395,-0.42872,0.38098 +-0.999,-0.88333,0.037595,2.4427,-0.43329,0.38155 +-0.9975,-0.88962,0.033552,2.4459,-0.43784,0.38206 +-0.99593,-0.89586,0.029479,2.4489,-0.44238,0.38252 +-0.99429,-0.90205,0.025376,2.4519,-0.44689,0.38292 +-0.99257,-0.90817,0.021242,2.4548,-0.45139,0.38326 +-0.99079,-0.91424,0.017078,2.4576,-0.45587,0.38354 +-0.98892,-0.92025,0.012882,2.4603,-0.46032,0.38377 +-0.98699,-0.9262,0.0086553,2.4629,-0.46476,0.38393 +-0.98498,-0.93209,0.0043962,2.4655,-0.46917,0.38403 +-0.9829,-0.93792,0.0001047,2.468,-0.47355,0.38407 +-0.98074,-0.94369,-0.0042194,2.4703,-0.47791,0.38405 +-0.97852,-0.9494,-0.0085766,2.4726,-0.48224,0.38396 +-0.97622,-0.95505,-0.012967,2.4749,-0.48654,0.38382 +-0.97385,-0.96064,-0.017392,2.477,-0.49081,0.3836 +-0.97141,-0.96617,-0.02185,2.4791,-0.49505,0.38333 +-0.9689,-0.97164,-0.026343,2.481,-0.49926,0.38299 +-0.96631,-0.97704,-0.030871,2.4829,-0.50344,0.38258 +-0.96366,-0.98238,-0.035434,2.4847,-0.50758,0.38211 +-0.96093,-0.98766,-0.040032,2.4864,-0.51168,0.38157 +-0.95814,-0.99287,-0.044666,2.488,-0.51575,0.38097 +-0.95527,-0.99802,-0.049336,2.4895,-0.51978,0.38029 +-0.95233,-1.0031,-0.054042,2.491,-0.52377,0.37955 +-0.94932,-1.0081,-0.058785,2.4923,-0.52771,0.37874 +-0.94625,-1.0131,-0.063564,2.4936,-0.53162,0.37786 +-0.9431,-1.018,-0.068381,2.4948,-0.53549,0.37692 +-0.93989,-1.0228,-0.073236,2.4959,-0.53931,0.3759 +-0.9366,-1.0276,-0.078128,2.4969,-0.54308,0.37481 +-0.93325,-1.0323,-0.083058,2.4978,-0.54681,0.37365 +-0.92983,-1.0369,-0.088026,2.4986,-0.55049,0.37242 +-0.92634,-1.0414,-0.093032,2.4993,-0.55413,0.37112 +-0.92278,-1.0459,-0.098077,2.5,-0.55771,0.36975 +-0.91916,-1.0504,-0.10316,2.5005,-0.56124,0.36831 +-0.91547,-1.0547,-0.10828,2.501,-0.56473,0.36679 +-0.91171,-1.059,-0.11345,2.5014,-0.56815,0.3652 +-0.90788,-1.0632,-0.11865,2.5017,-0.57153,0.36354 +-0.90399,-1.0674,-0.12389,2.5019,-0.57485,0.3618 +-0.90003,-1.0715,-0.12917,2.502,-0.57812,0.35999 +-0.896,-1.0755,-0.13449,2.502,-0.58132,0.3581 +-0.89191,-1.0794,-0.13985,2.5019,-0.58447,0.35614 +-0.88775,-1.0833,-0.14526,2.5017,-0.58757,0.35411 +-0.88353,-1.0871,-0.1507,2.5015,-0.5906,0.352 +-0.87924,-1.0908,-0.15618,2.5011,-0.59357,0.34982 +-0.87489,-1.0945,-0.1617,2.5007,-0.59648,0.34756 +-0.87047,-1.0981,-0.16727,2.5001,-0.59932,0.34522 +-0.86599,-1.1016,-0.17287,2.4995,-0.60211,0.34281 +-0.86145,-1.105,-0.17852,2.4988,-0.60483,0.34032 +-0.85684,-1.1084,-0.18421,2.498,-0.60748,0.33776 +-0.85216,-1.1117,-0.18993,2.4971,-0.61007,0.33512 +-0.84743,-1.1149,-0.1957,2.4961,-0.61259,0.3324 +-0.84263,-1.1181,-0.20151,2.495,-0.61504,0.32961 +-0.83777,-1.1212,-0.20736,2.4939,-0.61742,0.32674 +-0.83285,-1.1242,-0.21326,2.4926,-0.61973,0.32379 +-0.82786,-1.1271,-0.21919,2.4913,-0.62197,0.32076 +-0.82282,-1.1299,-0.22517,2.4898,-0.62414,0.31766 +-0.81771,-1.1327,-0.23118,2.4883,-0.62624,0.31448 +-0.81254,-1.1354,-0.23724,2.4867,-0.62827,0.31123 +-0.80731,-1.1381,-0.24334,2.485,-0.63022,0.30789 +-0.80202,-1.1406,-0.24948,2.4832,-0.63209,0.30448 +-0.79667,-1.1431,-0.25566,2.4813,-0.6339,0.30099 +-0.79127,-1.1455,-0.26188,2.4793,-0.63562,0.29742 +-0.7858,-1.1478,-0.26815,2.4772,-0.63727,0.29378 +-0.78027,-1.1501,-0.27445,2.4751,-0.63884,0.29005 +-0.77468,-1.1523,-0.28079,2.4728,-0.64033,0.28625 +-0.76904,-1.1544,-0.28718,2.4705,-0.64174,0.28238 +-0.76333,-1.1564,-0.29361,2.468,-0.64308,0.27842 +-0.75757,-1.1583,-0.30007,2.4655,-0.64433,0.27439 +-0.75175,-1.1602,-0.30658,2.4629,-0.6455,0.27028 +-0.74588,-1.162,-0.31313,2.4602,-0.64659,0.26609 +-0.73994,-1.1637,-0.31971,2.4575,-0.6476,0.26183 +-0.73396,-1.1653,-0.32634,2.4546,-0.64853,0.25748 +-0.72791,-1.1669,-0.333,2.4516,-0.64937,0.25306 +-0.72181,-1.1684,-0.33971,2.4486,-0.65013,0.24857 +-0.71565,-1.1698,-0.34645,2.4455,-0.6508,0.24399 +-0.70944,-1.1711,-0.35324,2.4423,-0.65139,0.23934 +-0.70317,-1.1723,-0.36006,2.439,-0.6519,0.23462 +-0.69685,-1.1735,-0.36692,2.4356,-0.65232,0.22982 +-0.69047,-1.1746,-0.37382,2.4321,-0.65265,0.22494 +-0.68404,-1.1756,-0.38075,2.4286,-0.65289,0.21998 +-0.67756,-1.1765,-0.38773,2.4249,-0.65305,0.21495 +-0.67102,-1.1773,-0.39474,2.4212,-0.65312,0.20984 +-0.66443,-1.1781,-0.40179,2.4174,-0.6531,0.20466 +-0.65779,-1.1788,-0.40887,2.4135,-0.65299,0.1994 +-0.65109,-1.1794,-0.41599,2.4095,-0.6528,0.19407 +-0.64434,-1.1799,-0.42315,2.4055,-0.65251,0.18867 +-0.63754,-1.1803,-0.43034,2.4013,-0.65214,0.18318 +-0.63069,-1.1807,-0.43757,2.3971,-0.65167,0.17763 +-0.62379,-1.181,-0.44483,2.3928,-0.65112,0.172 +-0.61684,-1.1812,-0.45213,2.3884,-0.65047,0.1663 +-0.60984,-1.1813,-0.45946,2.384,-0.64974,0.16052 +-0.60279,-1.1813,-0.46683,2.3794,-0.64891,0.15467 +-0.59569,-1.1813,-0.47422,2.3748,-0.64799,0.14875 +-0.58854,-1.1812,-0.48166,2.3701,-0.64698,0.14276 +-0.58134,-1.1809,-0.48912,2.3653,-0.64588,0.13669 +-0.57409,-1.1807,-0.49661,2.3605,-0.64469,0.13056 +-0.5668,-1.1803,-0.50414,2.3555,-0.64341,0.12435 +-0.55945,-1.1798,-0.5117,2.3505,-0.64203,0.11807 +-0.55206,-1.1793,-0.51928,2.3454,-0.64056,0.11172 +-0.54463,-1.1787,-0.5269,2.3402,-0.639,0.1053 +-0.53714,-1.178,-0.53455,2.335,-0.63734,0.098815 +-0.52961,-1.1772,-0.54222,2.3297,-0.6356,0.092258 +-0.52203,-1.1763,-0.54993,2.3243,-0.63376,0.085633 +-0.51441,-1.1754,-0.55766,2.3188,-0.63183,0.078939 +-0.50675,-1.1743,-0.56541,2.3133,-0.6298,0.072178 +-0.49903,-1.1732,-0.5732,2.3077,-0.62768,0.065349 +-0.49128,-1.172,-0.58101,2.302,-0.62547,0.058454 +-0.48348,-1.1708,-0.58885,2.2962,-0.62317,0.051493 +-0.47563,-1.1694,-0.59671,2.2904,-0.62078,0.044466 +-0.46775,-1.168,-0.60459,2.2845,-0.61829,0.037373 +-0.45982,-1.1664,-0.6125,2.2785,-0.61571,0.030217 +-0.45184,-1.1648,-0.62043,2.2725,-0.61304,0.022995 +-0.44383,-1.1631,-0.62838,2.2664,-0.61027,0.015711 +-0.43577,-1.1614,-0.63636,2.2602,-0.60742,0.008363 +-0.42767,-1.1595,-0.64435,2.2539,-0.60447,0.00095271 +-0.41953,-1.1576,-0.65237,2.2476,-0.60143,-0.0065195 +-0.41135,-1.1556,-0.6604,2.2412,-0.5983,-0.014053 +-0.40313,-1.1535,-0.66845,2.2348,-0.59508,-0.021647 +-0.39487,-1.1513,-0.67653,2.2283,-0.59177,-0.029302 +-0.38657,-1.149,-0.68461,2.2217,-0.58836,-0.037016 +-0.37824,-1.1467,-0.69272,2.215,-0.58487,-0.044789 +-0.36986,-1.1443,-0.70084,2.2083,-0.58128,-0.052621 +-0.36144,-1.1418,-0.70897,2.2016,-0.57761,-0.06051 +-0.35299,-1.1392,-0.71712,2.1947,-0.57385,-0.068456 +-0.3445,-1.1365,-0.72529,2.1878,-0.56999,-0.076459 +-0.33597,-1.1337,-0.73346,2.1809,-0.56605,-0.084517 +-0.32741,-1.1309,-0.74165,2.1739,-0.56202,-0.092631 +-0.3188,-1.128,-0.74985,2.1668,-0.5579,-0.1008 +-0.31017,-1.125,-0.75806,2.1597,-0.5537,-0.10902 +-0.3015,-1.1219,-0.76628,2.1525,-0.5494,-0.1173 +-0.29279,-1.1188,-0.7745,2.1452,-0.54502,-0.12562 +-0.28405,-1.1155,-0.78274,2.1379,-0.54056,-0.134 +-0.27527,-1.1122,-0.79098,2.1305,-0.53601,-0.14243 +-0.26646,-1.1088,-0.79923,2.1231,-0.53137,-0.15092 +-0.25761,-1.1053,-0.80748,2.1156,-0.52665,-0.15945 +-0.24874,-1.1018,-0.81574,2.1081,-0.52184,-0.16803 +-0.23983,-1.0981,-0.824,2.1005,-0.51695,-0.17665 +-0.23089,-1.0944,-0.83226,2.0929,-0.51197,-0.18533 +-0.22191,-1.0906,-0.84053,2.0852,-0.50692,-0.19405 +-0.21291,-1.0867,-0.84879,2.0774,-0.50178,-0.20282 +-0.20387,-1.0828,-0.85706,2.0696,-0.49656,-0.21163 +-0.19481,-1.0788,-0.86532,2.0618,-0.49126,-0.22049 +-0.18571,-1.0746,-0.87359,2.0539,-0.48588,-0.22939 +-0.17658,-1.0705,-0.88185,2.0459,-0.48042,-0.23834 +-0.16743,-1.0662,-0.8901,2.0379,-0.47488,-0.24732 +-0.15824,-1.0618,-0.89835,2.0299,-0.46926,-0.25635 +-0.14903,-1.0574,-0.9066,2.0218,-0.46357,-0.26542 +-0.13979,-1.0529,-0.91484,2.0137,-0.45779,-0.27453 +-0.13053,-1.0483,-0.92307,2.0055,-0.45195,-0.28368 +-0.12123,-1.0437,-0.93129,1.9972,-0.44602,-0.29286 +-0.11191,-1.0389,-0.9395,1.989,-0.44003,-0.30209 +-0.10256,-1.0341,-0.94771,1.9806,-0.43395,-0.31135 +-0.09319,-1.0293,-0.9559,1.9723,-0.42781,-0.32065 +-0.083793,-1.0243,-0.96408,1.9639,-0.42159,-0.32998 +-0.07437,-1.0193,-0.97224,1.9554,-0.41531,-0.33934 +-0.064923,-1.0141,-0.98039,1.9469,-0.40895,-0.34874 +-0.055453,-1.009,-0.98853,1.9384,-0.40252,-0.35817 +-0.045959,-1.0037,-0.99665,1.9298,-0.39602,-0.36764 +-0.036442,-0.99837,-1.0048,1.9212,-0.38946,-0.37713 +-0.026903,-0.99296,-1.0128,1.9126,-0.38283,-0.38666 +-0.017342,-0.98748,-1.0209,1.9039,-0.37613,-0.39621 +-0.0077591,-0.98193,-1.0289,1.8952,-0.36937,-0.40579 +0.0018444,-0.97631,-1.037,1.8864,-0.36254,-0.41541 +0.011469,-0.97061,-1.045,1.8776,-0.35565,-0.42504 +0.021113,-0.96484,-1.0529,1.8688,-0.3487,-0.43471 +0.030776,-0.959,-1.0609,1.8599,-0.34168,-0.44439 +0.040459,-0.95309,-1.0688,1.851,-0.33461,-0.45411 +0.05016,-0.9471,-1.0767,1.842,-0.32747,-0.46384 +0.05988,-0.94105,-1.0846,1.8331,-0.32028,-0.4736 +0.069617,-0.93493,-1.0924,1.8241,-0.31303,-0.48338 +0.079371,-0.92873,-1.1003,1.815,-0.30572,-0.49318 +0.089142,-0.92247,-1.108,1.806,-0.29836,-0.503 +0.098929,-0.91614,-1.1158,1.7969,-0.29094,-0.51284 +0.10873,-0.90975,-1.1235,1.7877,-0.28347,-0.5227 +0.11855,-0.90328,-1.1312,1.7786,-0.27595,-0.53258 +0.12838,-0.89675,-1.1388,1.7694,-0.26838,-0.54247 +0.13823,-0.89015,-1.1465,1.7602,-0.26075,-0.55238 +0.14809,-0.88348,-1.154,1.7509,-0.25308,-0.5623 +0.15796,-0.87675,-1.1616,1.7416,-0.24536,-0.57224 +0.16785,-0.86995,-1.1691,1.7323,-0.23759,-0.58219 +0.17774,-0.86309,-1.1766,1.723,-0.22978,-0.59215 +0.18765,-0.85616,-1.184,1.7137,-0.22192,-0.60212 +0.19757,-0.84917,-1.1914,1.7043,-0.21402,-0.6121 +0.2075,-0.84212,-1.1987,1.6949,-0.20607,-0.6221 +0.21744,-0.83501,-1.206,1.6855,-0.19809,-0.6321 +0.22739,-0.82783,-1.2132,1.676,-0.19006,-0.64211 +0.23735,-0.82059,-1.2204,1.6666,-0.182,-0.65213 +0.24732,-0.81329,-1.2276,1.6571,-0.1739,-0.66215 +0.25729,-0.80592,-1.2347,1.6476,-0.16576,-0.67218 +0.26727,-0.7985,-1.2418,1.638,-0.15759,-0.68221 +0.27726,-0.79102,-1.2488,1.6285,-0.14938,-0.69225 +0.28726,-0.78348,-1.2557,1.6189,-0.14114,-0.70229 +0.29726,-0.77588,-1.2626,1.6093,-0.13287,-0.71233 +0.30726,-0.76822,-1.2695,1.5997,-0.12457,-0.72237 +0.31727,-0.76051,-1.2763,1.5901,-0.11624,-0.73241 +0.32728,-0.75273,-1.2831,1.5804,-0.10788,-0.74245 +0.3373,-0.74491,-1.2897,1.5708,-0.099492,-0.75249 +0.34732,-0.73702,-1.2964,1.5611,-0.09108,-0.76253 +0.35734,-0.72908,-1.303,1.5514,-0.082644,-0.77257 +0.36737,-0.72109,-1.3095,1.5417,-0.074186,-0.7826 +0.37739,-0.71305,-1.3159,1.532,-0.065705,-0.79262 +0.38742,-0.70495,-1.3223,1.5222,-0.057204,-0.80264 +0.39744,-0.69679,-1.3287,1.5125,-0.048683,-0.81265 +0.40747,-0.68859,-1.335,1.5027,-0.040145,-0.82266 +0.41749,-0.68033,-1.3412,1.4929,-0.03159,-0.83265 +0.42751,-0.67203,-1.3473,1.4831,-0.023019,-0.84264 +0.43753,-0.66367,-1.3534,1.4733,-0.014435,-0.85262 +0.44755,-0.65527,-1.3594,1.4635,-0.0058369,-0.86259 +0.45756,-0.64681,-1.3654,1.4537,0.0027723,-0.87254 +0.46757,-0.63831,-1.3713,1.4438,0.011392,-0.88249 +0.47757,-0.62976,-1.3771,1.434,0.02002,-0.89242 +0.48757,-0.62116,-1.3828,1.4241,0.028657,-0.90233 +0.49756,-0.61252,-1.3885,1.4142,0.0373,-0.91223 +0.50754,-0.60383,-1.3941,1.4043,0.045948,-0.92212 +0.51752,-0.5951,-1.3996,1.3944,0.0546,-0.93199 +0.52749,-0.58632,-1.4051,1.3845,0.063254,-0.94184 +0.53745,-0.5775,-1.4105,1.3746,0.07191,-0.95167 +0.54741,-0.56864,-1.4158,1.3647,0.080566,-0.96149 +0.55735,-0.55973,-1.421,1.3548,0.08922,-0.97128 +0.56728,-0.55079,-1.4262,1.3449,0.097872,-0.98106 +0.5772,-0.5418,-1.4313,1.3349,0.10652,-0.99081 +0.58711,-0.53277,-1.4363,1.325,0.11516,-1.0005 +0.59701,-0.5237,-1.4412,1.315,0.1238,-1.0102 +0.6069,-0.5146,-1.4461,1.3051,0.13243,-1.0199 +0.61677,-0.50546,-1.4508,1.2951,0.14105,-1.0296 +0.62663,-0.49628,-1.4555,1.2851,0.14966,-1.0392 +0.63647,-0.48706,-1.4601,1.2751,0.15826,-1.0488 +0.6463,-0.47781,-1.4647,1.2652,0.16684,-1.0584 +0.65611,-0.46852,-1.4691,1.2552,0.17541,-1.068 +0.6659,-0.4592,-1.4735,1.2452,0.18397,-1.0775 +0.67568,-0.44985,-1.4777,1.2352,0.19251,-1.087 +0.68544,-0.44046,-1.4819,1.2252,0.20103,-1.0965 +0.69518,-0.43105,-1.486,1.2152,0.20953,-1.1059 +0.7049,-0.4216,-1.4901,1.2052,0.21801,-1.1153 +0.71461,-0.41212,-1.494,1.1952,0.22647,-1.1247 +0.72429,-0.40261,-1.4979,1.1852,0.23491,-1.1341 +0.73395,-0.39307,-1.5016,1.1752,0.24332,-1.1434 +0.74359,-0.3835,-1.5053,1.1652,0.2517,-1.1527 +0.7532,-0.37391,-1.5089,1.1552,0.26006,-1.1619 +0.76279,-0.36429,-1.5124,1.1452,0.26839,-1.1711 +0.77236,-0.35464,-1.5158,1.1352,0.2767,-1.1803 +0.78191,-0.34497,-1.5191,1.1251,0.28497,-1.1894 +0.79143,-0.33527,-1.5223,1.1151,0.29321,-1.1985 +0.80092,-0.32555,-1.5254,1.1051,0.30142,-1.2076 +0.81039,-0.31581,-1.5285,1.0951,0.30959,-1.2166 +0.81983,-0.30604,-1.5314,1.0851,0.31773,-1.2256 +0.82924,-0.29626,-1.5343,1.0751,0.32583,-1.2346 +0.83862,-0.28645,-1.5371,1.065,0.33389,-1.2435 +0.84797,-0.27662,-1.5397,1.055,0.34192,-1.2523 +0.8573,-0.26678,-1.5423,1.045,0.3499,-1.2612 +0.86659,-0.25692,-1.5448,1.035,0.35784,-1.27 +0.87585,-0.24704,-1.5472,1.025,0.36574,-1.2787 +0.88508,-0.23714,-1.5495,1.015,0.3736,-1.2874 +0.89428,-0.22722,-1.5517,1.005,0.38141,-1.2961 +0.90345,-0.2173,-1.5538,0.99496,0.38918,-1.3047 +0.91258,-0.20735,-1.5558,0.98495,0.3969,-1.3132 +0.92167,-0.1974,-1.5577,0.97494,0.40457,-1.3218 +0.93073,-0.18743,-1.5595,0.96494,0.41219,-1.3302 +0.93976,-0.17745,-1.5612,0.95493,0.41977,-1.3387 +0.94875,-0.16746,-1.5628,0.94493,0.42729,-1.3471 +0.9577,-0.15745,-1.5643,0.93493,0.43475,-1.3554 +0.96661,-0.14744,-1.5658,0.92494,0.44217,-1.3637 +0.97548,-0.13742,-1.5671,0.91494,0.44953,-1.3719 +0.98432,-0.12739,-1.5683,0.90495,0.45683,-1.3801 +0.99311,-0.11736,-1.5694,0.89496,0.46408,-1.3883 +1.0019,-0.10731,-1.5705,0.88497,0.47127,-1.3964 +1.0106,-0.097264,-1.5714,0.87498,0.4784,-1.4044 +1.0192,-0.087211,-1.5722,0.865,0.48547,-1.4124 +1.0279,-0.077154,-1.573,0.85502,0.49248,-1.4203 +1.0365,-0.067093,-1.5736,0.84504,0.49942,-1.4282 +1.045,-0.05703,-1.5741,0.83506,0.50631,-1.4361 +1.0535,-0.046965,-1.5746,0.82509,0.51313,-1.4438 +1.0619,-0.036898,-1.5749,0.81512,0.51989,-1.4516 +1.0703,-0.026832,-1.5751,0.80515,0.52658,-1.4593 +1.0787,-0.016766,-1.5753,0.79519,0.5332,-1.4669 +1.087,-0.006701,-1.5753,0.78523,0.53976,-1.4744 +1.0953,0.0033617,-1.5753,0.77527,0.54624,-1.482 +1.1035,0.013422,-1.5751,0.76531,0.55266,-1.4894 +1.1116,0.023478,-1.5749,0.75536,0.55901,-1.4968 +1.1197,0.03353,-1.5745,0.74541,0.56528,-1.5042 +1.1278,0.043577,-1.5741,0.73546,0.57149,-1.5115 +1.1358,0.053618,-1.5735,0.72551,0.57762,-1.5187 +1.1438,0.063653,-1.5729,0.71557,0.58368,-1.5259 +1.1517,0.07368,-1.5721,0.70563,0.58966,-1.533 +1.1595,0.083699,-1.5713,0.69569,0.59557,-1.5401 +1.1673,0.093709,-1.5703,0.68576,0.6014,-1.5471 +1.175,0.10371,-1.5693,0.67583,0.60715,-1.554 +1.1827,0.1137,-1.5681,0.6659,0.61283,-1.5609 +1.1903,0.12368,-1.5669,0.65597,0.61843,-1.5677 +1.1979,0.13365,-1.5656,0.64605,0.62394,-1.5745 +1.2054,0.1436,-1.5641,0.63613,0.62938,-1.5812 +1.2129,0.15354,-1.5626,0.62621,0.63474,-1.5879 +1.2203,0.16347,-1.561,0.61629,0.64002,-1.5945 +1.2276,0.17338,-1.5593,0.60638,0.64521,-1.601 +1.2349,0.18328,-1.5575,0.59647,0.65032,-1.6075 +1.2421,0.19316,-1.5556,0.58656,0.65535,-1.6139 +1.2492,0.20303,-1.5536,0.57665,0.66029,-1.6202 +1.2563,0.21288,-1.5515,0.56675,0.66515,-1.6265 +1.2634,0.2227,-1.5493,0.55685,0.66992,-1.6328 +1.2703,0.23251,-1.547,0.54695,0.67461,-1.6389 +1.2772,0.2423,-1.5446,0.53705,0.67921,-1.645 +1.284,0.25207,-1.5421,0.52715,0.68373,-1.6511 +1.2908,0.26182,-1.5396,0.51726,0.68815,-1.6571 +1.2975,0.27155,-1.5369,0.50736,0.69249,-1.663 +1.3041,0.28126,-1.5342,0.49747,0.69674,-1.6688 +1.3107,0.29094,-1.5314,0.48758,0.7009,-1.6746 +1.3172,0.30059,-1.5284,0.47769,0.70497,-1.6804 +1.3236,0.31023,-1.5254,0.46781,0.70895,-1.686 +1.33,0.31984,-1.5223,0.45792,0.71283,-1.6916 +1.3363,0.32942,-1.5191,0.44804,0.71663,-1.6972 +1.3425,0.33898,-1.5159,0.43815,0.72034,-1.7026 +1.3487,0.34851,-1.5125,0.42827,0.72395,-1.708 +1.3547,0.35801,-1.509,0.41839,0.72747,-1.7134 +1.3607,0.36748,-1.5055,0.40851,0.7309,-1.7187 +1.3667,0.37693,-1.5019,0.39863,0.73423,-1.7239 +1.3725,0.38634,-1.4982,0.38875,0.73747,-1.7291 +1.3783,0.39573,-1.4944,0.37888,0.74062,-1.7342 +1.384,0.40508,-1.4905,0.369,0.74367,-1.7392 +1.3896,0.4144,-1.4866,0.35912,0.74663,-1.7441 +1.3952,0.42369,-1.4825,0.34925,0.74949,-1.749 +1.4007,0.43295,-1.4784,0.33937,0.75226,-1.7539 +1.4061,0.44218,-1.4742,0.32949,0.75493,-1.7587 +1.4114,0.45137,-1.47,0.31962,0.75751,-1.7634 +1.4167,0.46053,-1.4656,0.30974,0.75999,-1.768 +1.4218,0.46965,-1.4612,0.29986,0.76238,-1.7726 +1.4269,0.47873,-1.4567,0.28999,0.76466,-1.7771 +1.4319,0.48779,-1.4521,0.28011,0.76686,-1.7815 +1.4369,0.4968,-1.4475,0.27023,0.76895,-1.7859 +1.4417,0.50578,-1.4427,0.26036,0.77095,-1.7902 +1.4465,0.51472,-1.4379,0.25048,0.77285,-1.7945 +1.4512,0.52362,-1.4331,0.2406,0.77465,-1.7987 +1.4558,0.53248,-1.4281,0.23072,0.77636,-1.8028 +1.4603,0.54131,-1.4231,0.22084,0.77797,-1.8069 +1.4647,0.55009,-1.418,0.21096,0.77948,-1.8109 +1.4691,0.55883,-1.4129,0.20108,0.78089,-1.8148 +1.4734,0.56754,-1.4077,0.1912,0.78221,-1.8187 +1.4776,0.5762,-1.4024,0.18131,0.78343,-1.8225 +1.4817,0.58482,-1.397,0.17143,0.78455,-1.8262 +1.4857,0.5934,-1.3916,0.16154,0.78557,-1.8299 +1.4896,0.60193,-1.3861,0.15165,0.7865,-1.8335 +1.4935,0.61042,-1.3806,0.14176,0.78733,-1.837 +1.4972,0.61887,-1.375,0.13187,0.78806,-1.8405 +1.5009,0.62728,-1.3693,0.12198,0.78869,-1.8439 +1.5045,0.63564,-1.3636,0.11208,0.78923,-1.8473 +1.508,0.64395,-1.3578,0.10219,0.78967,-1.8506 +1.5114,0.65222,-1.352,0.092291,0.79001,-1.8538 +1.5147,0.66044,-1.3461,0.082392,0.79025,-1.857 +1.5179,0.66862,-1.3402,0.072491,0.7904,-1.8601 +1.5211,0.67675,-1.3342,0.062588,0.79045,-1.8631 +1.5241,0.68484,-1.3281,0.052683,0.79041,-1.8661 +1.5271,0.69288,-1.3221,0.042776,0.79027,-1.869 +1.5299,0.70086,-1.3159,0.032867,0.79003,-1.8718 +1.5327,0.70881,-1.3097,0.022956,0.78969,-1.8746 +1.5354,0.7167,-1.3035,0.013043,0.78926,-1.8773 +1.538,0.72454,-1.2972,0.0031277,0.78874,-1.88 +1.5405,0.73234,-1.2908,-0.0067897,0.78812,-1.8826 +1.5429,0.74008,-1.2845,-0.016709,0.7874,-1.8851 +1.5452,0.74778,-1.278,-0.026631,0.78659,-1.8876 +1.5474,0.75542,-1.2716,-0.036555,0.78569,-1.89 +1.5496,0.76302,-1.2651,-0.046481,0.78469,-1.8924 +1.5516,0.77056,-1.2585,-0.056409,0.7836,-1.8946 +1.5535,0.77805,-1.252,-0.06634,0.78241,-1.8969 +1.5554,0.78549,-1.2453,-0.076272,0.78113,-1.899 +1.5571,0.79288,-1.2387,-0.086207,0.77976,-1.9011 +1.5588,0.80022,-1.232,-0.096144,0.7783,-1.9032 +1.5604,0.8075,-1.2253,-0.10608,0.77674,-1.9052 +1.5618,0.81474,-1.2185,-0.11603,0.7751,-1.9071 +1.5632,0.82192,-1.2118,-0.12597,0.77336,-1.909 +1.5645,0.82904,-1.205,-0.13591,0.77153,-1.9108 +1.5656,0.83611,-1.1981,-0.14586,0.76961,-1.9125 +1.5667,0.84313,-1.1913,-0.15581,0.7676,-1.9142 +1.5677,0.8501,-1.1844,-0.16576,0.7655,-1.9158 +1.5686,0.85701,-1.1775,-0.17572,0.76332,-1.9174 +1.5694,0.86387,-1.1705,-0.18567,0.76104,-1.9189 +1.5701,0.87067,-1.1636,-0.19563,0.75868,-1.9203 +1.5707,0.87742,-1.1566,-0.20559,0.75623,-1.9217 +1.5712,0.88411,-1.1496,-0.21555,0.75369,-1.9231 +1.5716,0.89075,-1.1426,-0.22551,0.75107,-1.9244 +1.5719,0.89733,-1.1356,-0.23548,0.74836,-1.9256 +1.5722,0.90386,-1.1286,-0.24544,0.74557,-1.9267 +1.5723,0.91033,-1.1215,-0.25541,0.74269,-1.9278 +1.5723,0.91675,-1.1145,-0.26538,0.73973,-1.9289 +1.5722,0.92311,-1.1074,-0.27535,0.73669,-1.9299 +1.5721,0.92941,-1.1003,-0.28532,0.73356,-1.9308 +1.5718,0.93566,-1.0932,-0.29529,0.73035,-1.9317 +1.5714,0.94185,-1.0861,-0.30526,0.72706,-1.9325 +1.5709,0.94799,-1.079,-0.31523,0.72369,-1.9333 +1.5704,0.95406,-1.0719,-0.3252,0.72024,-1.934 +1.5697,0.96009,-1.0648,-0.33518,0.71671,-1.9347 +1.569,0.96605,-1.0577,-0.34515,0.7131,-1.9353 +1.5681,0.97196,-1.0506,-0.35512,0.70942,-1.9358 +1.5671,0.97781,-1.0435,-0.3651,0.70565,-1.9363 +1.5661,0.98361,-1.0364,-0.37507,0.70181,-1.9368 +1.5649,0.98935,-1.0294,-0.38504,0.6979,-1.9372 +1.5637,0.99503,-1.0223,-0.39502,0.69391,-1.9375 +1.5624,1.0007,-1.0152,-0.40499,0.68984,-1.9378 +1.5609,1.0062,-1.0081,-0.41496,0.6857,-1.938 +1.5594,1.0117,-1.0011,-0.42493,0.68149,-1.9382 +1.5577,1.0172,-0.99402,-0.4349,0.67721,-1.9384 +1.556,1.0226,-0.98699,-0.44486,0.67285,-1.9384 +1.5542,1.0279,-0.97997,-0.45483,0.66843,-1.9385 +1.5523,1.0332,-0.97297,-0.46479,0.66393,-1.9384 +1.5502,1.0384,-0.96598,-0.47475,0.65937,-1.9384 +1.5481,1.0436,-0.95901,-0.48471,0.65474,-1.9383 +1.5459,1.0487,-0.95206,-0.49466,0.65004,-1.9381 +1.5436,1.0537,-0.94513,-0.50462,0.64527,-1.9379 +1.5412,1.0587,-0.93823,-0.51457,0.64044,-1.9376 +1.5387,1.0637,-0.93134,-0.52451,0.63555,-1.9373 +1.5361,1.0686,-0.92449,-0.53445,0.63059,-1.9369 +1.5334,1.0734,-0.91766,-0.54439,0.62556,-1.9365 +1.5306,1.0781,-0.91085,-0.55433,0.62048,-1.936 +1.5277,1.0829,-0.90408,-0.56426,0.61533,-1.9355 +1.5247,1.0875,-0.89733,-0.57418,0.61013,-1.935 +1.5217,1.0921,-0.89062,-0.5841,0.60486,-1.9344 +1.5185,1.0966,-0.88394,-0.59401,0.59954,-1.9337 +1.5153,1.1011,-0.87729,-0.60392,0.59415,-1.933 +1.5119,1.1055,-0.87068,-0.61383,0.58871,-1.9323 +1.5085,1.1099,-0.8641,-0.62372,0.58322,-1.9315 +1.5049,1.1142,-0.85756,-0.63361,0.57767,-1.9307 +1.5013,1.1185,-0.85106,-0.64349,0.57206,-1.9298 +1.4976,1.1227,-0.84461,-0.65337,0.56641,-1.9289 +1.4938,1.1268,-0.83819,-0.66323,0.5607,-1.9279 +1.4899,1.1309,-0.83181,-0.67309,0.55494,-1.9269 +1.4859,1.135,-0.82548,-0.68294,0.54912,-1.9259 +1.4818,1.1389,-0.8192,-0.69279,0.54326,-1.9248 +1.4776,1.1429,-0.81296,-0.70262,0.53735,-1.9236 +1.4734,1.1467,-0.80676,-0.71244,0.5314,-1.9225 +1.469,1.1505,-0.80062,-0.72226,0.52539,-1.9212 +1.4646,1.1543,-0.79452,-0.73206,0.51934,-1.92 +1.46,1.158,-0.78848,-0.74185,0.51325,-1.9187 +1.4554,1.1616,-0.78249,-0.75163,0.50711,-1.9173 +1.4507,1.1652,-0.77655,-0.7614,0.50093,-1.916 +1.4459,1.1688,-0.77067,-0.77116,0.49471,-1.9145 +1.4411,1.1722,-0.76484,-0.7809,0.48844,-1.9131 +1.4361,1.1757,-0.75907,-0.79064,0.48214,-1.9116 +1.4311,1.1791,-0.75335,-0.80035,0.4758,-1.91 +1.4259,1.1824,-0.74769,-0.81006,0.46942,-1.9084 +1.4207,1.1856,-0.7421,-0.81975,0.463,-1.9068 +1.4154,1.1889,-0.73656,-0.82943,0.45655,-1.9052 +1.41,1.192,-0.73109,-0.83909,0.45006,-1.9035 +1.4046,1.1951,-0.72568,-0.84874,0.44353,-1.9017 +1.399,1.1982,-0.72033,-0.85837,0.43698,-1.8999 +1.3934,1.2012,-0.71505,-0.86798,0.43039,-1.8981 +1.3877,1.2041,-0.70983,-0.87758,0.42377,-1.8963 +1.3819,1.207,-0.70468,-0.88716,0.41712,-1.8944 +1.3761,1.2099,-0.6996,-0.89672,0.41044,-1.8925 +1.3701,1.2127,-0.69459,-0.90626,0.40374,-1.8905 +1.3641,1.2154,-0.68964,-0.91578,0.397,-1.8886 +1.358,1.2181,-0.68477,-0.92529,0.39024,-1.8865 +1.3519,1.2208,-0.67997,-0.93478,0.38346,-1.8845 +1.3456,1.2234,-0.67524,-0.94424,0.37665,-1.8824 +1.3393,1.2259,-0.67058,-0.95368,0.36981,-1.8802 +1.3329,1.2284,-0.666,-0.96311,0.36296,-1.8781 +1.3264,1.2309,-0.66149,-0.97251,0.35608,-1.8759 +1.3199,1.2332,-0.65706,-0.98189,0.34919,-1.8737 +1.3133,1.2356,-0.65271,-0.99124,0.34227,-1.8714 +1.3066,1.2379,-0.64843,-1.0006,0.33533,-1.8691 +1.2998,1.2401,-0.64423,-1.0099,0.32838,-1.8668 +1.293,1.2423,-0.64011,-1.0192,0.32141,-1.8644 +1.2861,1.2445,-0.63607,-1.0284,0.31443,-1.862 +1.2792,1.2466,-0.63211,-1.0377,0.30743,-1.8596 +1.2721,1.2486,-0.62823,-1.0469,0.30042,-1.8572 +1.2651,1.2507,-0.62444,-1.056,0.29339,-1.8547 +1.2579,1.2526,-0.62072,-1.0652,0.28636,-1.8522 +1.2507,1.2545,-0.61709,-1.0743,0.27931,-1.8496 +1.2434,1.2564,-0.61355,-1.0834,0.27225,-1.8471 +1.236,1.2582,-0.61008,-1.0925,0.26519,-1.8445 +1.2286,1.26,-0.60671,-1.1015,0.25811,-1.8418 +1.2212,1.2617,-0.60342,-1.1105,0.25103,-1.8392 +1.2136,1.2634,-0.60021,-1.1195,0.24395,-1.8365 +1.206,1.2651,-0.59709,-1.1284,0.23686,-1.8338 +1.1984,1.2667,-0.59406,-1.1373,0.22976,-1.831 +1.1907,1.2682,-0.59112,-1.1462,0.22266,-1.8282 +1.1829,1.2697,-0.58827,-1.1551,0.21556,-1.8254 +1.1751,1.2712,-0.58551,-1.1639,0.20846,-1.8226 +1.1672,1.2726,-0.58283,-1.1727,0.20136,-1.8198 +1.1593,1.274,-0.58025,-1.1814,0.19425,-1.8169 +1.1513,1.2753,-0.57775,-1.1901,0.18715,-1.814 +1.1433,1.2766,-0.57535,-1.1988,0.18006,-1.811 +1.1352,1.2779,-0.57304,-1.2074,0.17296,-1.8081 +1.127,1.2791,-0.57082,-1.216,0.16587,-1.8051 +1.1189,1.2802,-0.56869,-1.2246,0.15878,-1.8021 +1.1106,1.2814,-0.56666,-1.2331,0.1517,-1.7991 +1.1023,1.2824,-0.56472,-1.2416,0.14463,-1.796 +1.094,1.2835,-0.56287,-1.25,0.13756,-1.7929 +1.0856,1.2845,-0.56111,-1.2584,0.13051,-1.7898 +1.0772,1.2854,-0.55945,-1.2668,0.12346,-1.7867 +1.0688,1.2864,-0.55789,-1.2751,0.11642,-1.7835 +1.0603,1.2872,-0.55641,-1.2834,0.10939,-1.7803 +1.0517,1.2881,-0.55504,-1.2916,0.10238,-1.7771 +1.0432,1.2889,-0.55375,-1.2998,0.095378,-1.7739 +1.0345,1.2896,-0.55256,-1.3079,0.088389,-1.7706 +1.0259,1.2904,-0.55147,-1.316,0.081415,-1.7674 +1.0172,1.2911,-0.55047,-1.3241,0.074456,-1.7641 +1.0085,1.2917,-0.54957,-1.3321,0.067513,-1.7608 +0.9997,1.2923,-0.54876,-1.34,0.060586,-1.7574 +0.9909,1.2929,-0.54805,-1.3479,0.053678,-1.7541 +0.98208,1.2934,-0.54744,-1.3558,0.046787,-1.7507 +0.97322,1.2939,-0.54692,-1.3636,0.039916,-1.7473 +0.96433,1.2944,-0.5465,-1.3714,0.033065,-1.7438 +0.95541,1.2948,-0.54617,-1.3791,0.026235,-1.7404 +0.94646,1.2952,-0.54594,-1.3868,0.019425,-1.7369 +0.93749,1.2956,-0.5458,-1.3944,0.012638,-1.7334 +0.92849,1.2959,-0.54576,-1.402,0.0058745,-1.7299 +0.91947,1.2962,-0.54582,-1.4095,-0.00086579,-1.7264 +0.91043,1.2964,-0.54597,-1.4169,-0.0075817,-1.7229 +0.90136,1.2966,-0.54622,-1.4243,-0.014272,-1.7193 +0.89227,1.2968,-0.54656,-1.4317,-0.020937,-1.7157 +0.88316,1.297,-0.547,-1.439,-0.027576,-1.7121 +0.87403,1.2971,-0.54753,-1.4462,-0.034187,-1.7085 +0.86489,1.2972,-0.54816,-1.4534,-0.04077,-1.7048 +0.85573,1.2972,-0.54889,-1.4605,-0.047325,-1.7012 +0.84655,1.2972,-0.54971,-1.4676,-0.05385,-1.6975 +0.83736,1.2972,-0.55062,-1.4746,-0.060346,-1.6938 +0.82816,1.2971,-0.55163,-1.4816,-0.06681,-1.6901 +0.81894,1.2971,-0.55273,-1.4885,-0.073244,-1.6863 +0.80971,1.2969,-0.55393,-1.4953,-0.079646,-1.6826 +0.80048,1.2968,-0.55522,-1.5021,-0.086015,-1.6788 +0.79123,1.2966,-0.5566,-1.5088,-0.092351,-1.675 +0.78198,1.2964,-0.55808,-1.5154,-0.098653,-1.6712 +0.77272,1.2961,-0.55965,-1.522,-0.10492,-1.6674 +0.76346,1.2959,-0.56131,-1.5286,-0.11115,-1.6635 +0.7542,1.2956,-0.56306,-1.535,-0.11735,-1.6597 +0.74493,1.2952,-0.5649,-1.5414,-0.12351,-1.6558 +0.73566,1.2949,-0.56684,-1.5478,-0.12964,-1.6519 +0.72639,1.2945,-0.56887,-1.554,-0.13572,-1.648 +0.71712,1.294,-0.57098,-1.5603,-0.14177,-1.6441 +0.70786,1.2936,-0.57319,-1.5664,-0.14779,-1.6401 +0.6986,1.2931,-0.57548,-1.5725,-0.15376,-1.6362 +0.68934,1.2926,-0.57787,-1.5785,-0.15969,-1.6322 +0.68009,1.292,-0.58034,-1.5844,-0.16558,-1.6282 +0.67084,1.2914,-0.5829,-1.5903,-0.17144,-1.6242 +0.66161,1.2908,-0.58555,-1.5961,-0.17725,-1.6202 +0.65238,1.2902,-0.58828,-1.6018,-0.18302,-1.6162 +0.64316,1.2895,-0.5911,-1.6075,-0.18875,-1.6121 +0.63396,1.2889,-0.59401,-1.6131,-0.19443,-1.608 +0.62477,1.2881,-0.597,-1.6186,-0.20007,-1.604 +0.61559,1.2874,-0.60008,-1.6241,-0.20567,-1.5999 +0.60643,1.2866,-0.60323,-1.6295,-0.21123,-1.5958 +0.59728,1.2858,-0.60648,-1.6348,-0.21674,-1.5916 +0.58815,1.285,-0.6098,-1.64,-0.22221,-1.5875 +0.57904,1.2841,-0.61321,-1.6452,-0.22763,-1.5833 +0.56995,1.2832,-0.61669,-1.6503,-0.23301,-1.5792 +0.56089,1.2823,-0.62026,-1.6553,-0.23834,-1.575 +0.55184,1.2814,-0.62391,-1.6603,-0.24362,-1.5708 +0.54282,1.2804,-0.62763,-1.6651,-0.24886,-1.5666 +0.53382,1.2794,-0.63143,-1.6699,-0.25405,-1.5624 +0.52485,1.2784,-0.63531,-1.6747,-0.25919,-1.5581 +0.51591,1.2774,-0.63927,-1.6793,-0.26429,-1.5539 +0.50699,1.2763,-0.6433,-1.6839,-0.26934,-1.5496 +0.4981,1.2752,-0.64741,-1.6884,-0.27434,-1.5453 +0.48924,1.274,-0.65159,-1.6928,-0.27929,-1.541 +0.48042,1.2729,-0.65585,-1.6971,-0.28419,-1.5367 +0.47163,1.2717,-0.66017,-1.7014,-0.28904,-1.5324 +0.46287,1.2705,-0.66457,-1.7056,-0.29384,-1.5281 +0.45414,1.2693,-0.66904,-1.7097,-0.29859,-1.5237 +0.44546,1.268,-0.67358,-1.7137,-0.3033,-1.5194 +0.43681,1.2667,-0.67818,-1.7176,-0.30795,-1.515 +0.42819,1.2654,-0.68286,-1.7215,-0.31255,-1.5106 +0.41962,1.2641,-0.6876,-1.7253,-0.3171,-1.5062 +0.41109,1.2627,-0.69241,-1.729,-0.32159,-1.5018 +0.4026,1.2613,-0.69728,-1.7326,-0.32604,-1.4974 +0.39415,1.2599,-0.70222,-1.7362,-0.33044,-1.493 +0.38575,1.2585,-0.70722,-1.7396,-0.33478,-1.4885 +0.37739,1.257,-0.71228,-1.743,-0.33907,-1.4841 +0.36907,1.2555,-0.7174,-1.7463,-0.34331,-1.4796 +0.36081,1.254,-0.72258,-1.7495,-0.34749,-1.4751 +0.35259,1.2525,-0.72783,-1.7526,-0.35162,-1.4706 +0.34442,1.2509,-0.73313,-1.7557,-0.3557,-1.4661 +0.3363,1.2493,-0.73848,-1.7587,-0.35973,-1.4616 +0.32823,1.2477,-0.7439,-1.7615,-0.3637,-1.457 +0.32022,1.246,-0.74936,-1.7643,-0.36762,-1.4525 +0.31225,1.2443,-0.75489,-1.7671,-0.37148,-1.4479 +0.30434,1.2426,-0.76046,-1.7697,-0.37529,-1.4434 +0.29649,1.2409,-0.76609,-1.7722,-0.37905,-1.4388 +0.28869,1.2392,-0.77176,-1.7747,-0.38275,-1.4342 +0.28095,1.2374,-0.77749,-1.7771,-0.3864,-1.4296 +0.27327,1.2356,-0.78327,-1.7794,-0.39,-1.425 +0.26565,1.2338,-0.78909,-1.7816,-0.39354,-1.4203 +0.25809,1.2319,-0.79496,-1.7837,-0.39702,-1.4157 +0.25059,1.23,-0.80087,-1.7857,-0.40045,-1.4111 +0.24315,1.2281,-0.80683,-1.7877,-0.40383,-1.4064 +0.23577,1.2262,-0.81283,-1.7896,-0.40715,-1.4017 +0.22846,1.2242,-0.81887,-1.7914,-0.41041,-1.397 +0.22121,1.2222,-0.82495,-1.7931,-0.41362,-1.3923 +0.21403,1.2202,-0.83108,-1.7947,-0.41678,-1.3876 +0.20692,1.2182,-0.83724,-1.7962,-0.41988,-1.3829 +0.19987,1.2161,-0.84343,-1.7976,-0.42292,-1.3782 +0.19289,1.214,-0.84967,-1.799,-0.42591,-1.3734 +0.18598,1.2119,-0.85593,-1.8003,-0.42884,-1.3687 +0.17914,1.2098,-0.86223,-1.8014,-0.43172,-1.3639 +0.17238,1.2076,-0.86857,-1.8025,-0.43455,-1.3591 +0.16568,1.2054,-0.87493,-1.8035,-0.43732,-1.3543 +0.15906,1.2031,-0.88133,-1.8045,-0.44003,-1.3495 +0.15251,1.2009,-0.88775,-1.8053,-0.44269,-1.3447 +0.14603,1.1986,-0.8942,-1.8061,-0.44529,-1.3399 +0.13963,1.1963,-0.90068,-1.8067,-0.44783,-1.3351 +0.1333,1.194,-0.90718,-1.8073,-0.45033,-1.3302 +0.12706,1.1916,-0.9137,-1.8078,-0.45276,-1.3254 +0.12089,1.1892,-0.92025,-1.8082,-0.45514,-1.3205 +0.11479,1.1868,-0.92682,-1.8085,-0.45747,-1.3156 +0.10878,1.1843,-0.93341,-1.8087,-0.45974,-1.3107 +0.10285,1.1818,-0.94002,-1.8089,-0.46195,-1.3058 +0.096994,1.1793,-0.94665,-1.809,-0.46411,-1.3009 +0.091222,1.1768,-0.95329,-1.8089,-0.46622,-1.296 +0.085532,1.1742,-0.95995,-1.8088,-0.46827,-1.2911 +0.079924,1.1716,-0.96663,-1.8086,-0.47026,-1.2861 +0.074399,1.169,-0.97331,-1.8084,-0.4722,-1.2812 +0.068958,1.1663,-0.98001,-1.808,-0.47409,-1.2762 +0.063602,1.1636,-0.98672,-1.8075,-0.47592,-1.2712 +0.05833,1.1609,-0.99344,-1.807,-0.4777,-1.2662 +0.053145,1.1582,-1.0002,-1.8064,-0.47942,-1.2612 +0.048045,1.1554,-1.0069,-1.8057,-0.48108,-1.2562 +0.043032,1.1526,-1.0136,-1.8049,-0.4827,-1.2512 +0.038107,1.1498,-1.0204,-1.804,-0.48425,-1.2462 +0.03327,1.1469,-1.0271,-1.8031,-0.48576,-1.2411 +0.028522,1.144,-1.0339,-1.802,-0.48721,-1.2361 +0.023862,1.1411,-1.0406,-1.8009,-0.4886,-1.231 +0.019292,1.1381,-1.0474,-1.7997,-0.48995,-1.2259 +0.014812,1.1351,-1.0541,-1.7984,-0.49124,-1.2208 +0.010423,1.1321,-1.0609,-1.797,-0.49247,-1.2157 +0.0061253,1.129,-1.0676,-1.7956,-0.49365,-1.2106 +0.0019189,1.1259,-1.0743,-1.794,-0.49478,-1.2055 +-0.0021955,1.1228,-1.0811,-1.7924,-0.49585,-1.2004 +-0.0062174,1.1197,-1.0878,-1.7907,-0.49688,-1.1952 +-0.010146,1.1165,-1.0945,-1.7889,-0.49784,-1.1901 +-0.013982,1.1132,-1.1012,-1.7871,-0.49876,-1.1849 +-0.017724,1.11,-1.1079,-1.7851,-0.49962,-1.1797 +-0.021372,1.1067,-1.1146,-1.7831,-0.50044,-1.1746 +-0.024926,1.1034,-1.1212,-1.781,-0.50119,-1.1694 +-0.028384,1.1,-1.1279,-1.7788,-0.5019,-1.1641 +-0.031748,1.0966,-1.1345,-1.7766,-0.50255,-1.1589 +-0.035016,1.0932,-1.1411,-1.7742,-0.50316,-1.1537 +-0.038188,1.0897,-1.1477,-1.7718,-0.50371,-1.1485 +-0.041264,1.0862,-1.1543,-1.7693,-0.50421,-1.1432 +-0.044244,1.0827,-1.1609,-1.7667,-0.50465,-1.1379 +-0.047127,1.0791,-1.1674,-1.7641,-0.50505,-1.1327 +-0.049914,1.0755,-1.1739,-1.7614,-0.5054,-1.1274 +-0.052603,1.0719,-1.1804,-1.7586,-0.50569,-1.1221 +-0.055195,1.0682,-1.1869,-1.7557,-0.50593,-1.1168 +-0.057689,1.0645,-1.1933,-1.7527,-0.50613,-1.1114 +-0.060086,1.0608,-1.1998,-1.7497,-0.50627,-1.1061 +-0.062384,1.057,-1.2061,-1.7466,-0.50636,-1.1008 +-0.064585,1.0531,-1.2125,-1.7434,-0.50641,-1.0954 +-0.066688,1.0493,-1.2188,-1.7402,-0.5064,-1.0901 +-0.068692,1.0454,-1.2251,-1.7368,-0.50634,-1.0847 +-0.070597,1.0415,-1.2314,-1.7334,-0.50624,-1.0793 +-0.072405,1.0375,-1.2376,-1.73,-0.50608,-1.0739 +-0.074113,1.0335,-1.2438,-1.7264,-0.50588,-1.0685 +-0.075723,1.0294,-1.25,-1.7228,-0.50562,-1.0631 +-0.077234,1.0253,-1.2561,-1.7191,-0.50532,-1.0576 +-0.078646,1.0212,-1.2622,-1.7154,-0.50497,-1.0522 +-0.07996,1.017,-1.2683,-1.7116,-0.50457,-1.0467 +-0.081174,1.0128,-1.2743,-1.7077,-0.50412,-1.0413 +-0.08229,1.0086,-1.2802,-1.7037,-0.50363,-1.0358 +-0.083307,1.0043,-1.2862,-1.6997,-0.50308,-1.0303 +-0.084225,0.99996,-1.2921,-1.6956,-0.50249,-1.0248 +-0.085045,0.99559,-1.2979,-1.6915,-0.50185,-1.0193 +-0.085766,0.99118,-1.3037,-1.6872,-0.50117,-1.0138 +-0.086388,0.98673,-1.3095,-1.683,-0.50043,-1.0083 +-0.086912,0.98224,-1.3152,-1.6786,-0.49965,-1.0027 +-0.087338,0.9777,-1.3209,-1.6742,-0.49883,-0.99715 +-0.087665,0.97313,-1.3265,-1.6697,-0.49795,-0.99159 +-0.087895,0.96851,-1.332,-1.6652,-0.49704,-0.98601 +-0.088026,0.96386,-1.3376,-1.6606,-0.49607,-0.98042 +-0.08806,0.95916,-1.343,-1.6559,-0.49506,-0.97482 +-0.087996,0.95441,-1.3485,-1.6512,-0.494,-0.96921 +-0.087835,0.94963,-1.3538,-1.6464,-0.4929,-0.96359 +-0.087577,0.9448,-1.3591,-1.6416,-0.49175,-0.95795 +-0.087222,0.93993,-1.3644,-1.6367,-0.49055,-0.95231 +-0.08677,0.93501,-1.3696,-1.6317,-0.48932,-0.94665 +-0.086222,0.93006,-1.3748,-1.6267,-0.48803,-0.94098 +-0.085578,0.92505,-1.3799,-1.6216,-0.4867,-0.9353 +-0.084839,0.92001,-1.3849,-1.6165,-0.48533,-0.92961 +-0.084003,0.91492,-1.3899,-1.6113,-0.48391,-0.92391 +-0.083073,0.90979,-1.3948,-1.6061,-0.48245,-0.91819 +-0.082048,0.90461,-1.3997,-1.6008,-0.48094,-0.91247 +-0.080928,0.89939,-1.4045,-1.5954,-0.47939,-0.90673 +-0.079715,0.89412,-1.4093,-1.59,-0.4778,-0.90098 +-0.078408,0.88881,-1.414,-1.5846,-0.47616,-0.89522 +-0.077007,0.88345,-1.4186,-1.5791,-0.47448,-0.88945 +-0.075514,0.87805,-1.4232,-1.5736,-0.47276,-0.88366 +-0.073928,0.8726,-1.4277,-1.568,-0.47099,-0.87787 +-0.07225,0.86711,-1.4321,-1.5623,-0.46918,-0.87206 +-0.070481,0.86157,-1.4365,-1.5566,-0.46733,-0.86624 +-0.068621,0.85599,-1.4409,-1.5509,-0.46544,-0.86041 +-0.06667,0.85036,-1.4451,-1.5451,-0.4635,-0.85457 +-0.064629,0.84468,-1.4493,-1.5393,-0.46152,-0.84872 +-0.062498,0.83896,-1.4534,-1.5334,-0.4595,-0.84285 +-0.060279,0.83319,-1.4575,-1.5275,-0.45743,-0.83698 +-0.057971,0.82738,-1.4615,-1.5215,-0.45533,-0.83109 +-0.055575,0.82151,-1.4654,-1.5155,-0.45318,-0.82519 +-0.053092,0.81561,-1.4693,-1.5095,-0.45099,-0.81927 +-0.050522,0.80965,-1.4731,-1.5034,-0.44876,-0.81335 +-0.047866,0.80365,-1.4768,-1.4973,-0.44649,-0.80741 +-0.045124,0.7976,-1.4805,-1.4911,-0.44417,-0.80147 +-0.042297,0.79151,-1.484,-1.4849,-0.44182,-0.79551 +-0.039386,0.78537,-1.4876,-1.4787,-0.43942,-0.78954 +-0.036392,0.77918,-1.491,-1.4724,-0.43699,-0.78355 +-0.033314,0.77294,-1.4944,-1.4661,-0.43451,-0.77756 +-0.030154,0.76666,-1.4977,-1.4597,-0.43199,-0.77155 +-0.026913,0.76033,-1.5009,-1.4534,-0.42944,-0.76553 +-0.02359,0.75395,-1.5041,-1.447,-0.42684,-0.7595 +-0.020187,0.74752,-1.5072,-1.4405,-0.4242,-0.75346 +-0.016705,0.74105,-1.5102,-1.434,-0.42152,-0.7474 +-0.013144,0.73453,-1.5132,-1.4275,-0.4188,-0.74134 +-0.0095053,0.72796,-1.5161,-1.421,-0.41605,-0.73526 +-0.0057891,0.72135,-1.5189,-1.4144,-0.41325,-0.72917 +-0.0019965,0.71469,-1.5216,-1.4078,-0.41041,-0.72307 +0.0018718,0.70798,-1.5243,-1.4012,-0.40753,-0.71695 +0.0058151,0.70122,-1.5269,-1.3946,-0.40462,-0.71082 +0.0098324,0.69442,-1.5294,-1.3879,-0.40166,-0.70468 +0.013923,0.68757,-1.5318,-1.3812,-0.39866,-0.69853 +0.018086,0.68067,-1.5342,-1.3745,-0.39563,-0.69237 +0.02232,0.67372,-1.5365,-1.3677,-0.39256,-0.68619 +0.026626,0.66673,-1.5387,-1.3609,-0.38944,-0.68001 +0.031001,0.65969,-1.5409,-1.3542,-0.38629,-0.67381 +0.035445,0.6526,-1.543,-1.3473,-0.3831,-0.66759 +0.039957,0.64547,-1.545,-1.3405,-0.37987,-0.66137 +0.044537,0.63828,-1.5469,-1.3336,-0.3766,-0.65513 +0.049183,0.63106,-1.5488,-1.3268,-0.3733,-0.64888 +0.053894,0.62378,-1.5506,-1.3199,-0.36995,-0.64262 +0.05867,0.61646,-1.5523,-1.313,-0.36657,-0.63635 +0.063509,0.60909,-1.5539,-1.3061,-0.36314,-0.63006 +0.06841,0.60168,-1.5555,-1.2991,-0.35968,-0.62376 +0.073374,0.59422,-1.557,-1.2922,-0.35618,-0.61745 +0.078398,0.58671,-1.5584,-1.2852,-0.35265,-0.61113 +0.083482,0.57916,-1.5597,-1.2782,-0.34907,-0.60479 +0.088624,0.57156,-1.561,-1.2712,-0.34546,-0.59844 +0.093824,0.56391,-1.5622,-1.2642,-0.3418,-0.59208 +0.099081,0.55622,-1.5633,-1.2572,-0.33811,-0.58571 +0.10439,0.54849,-1.5644,-1.2502,-0.33438,-0.57932 +0.10976,0.54071,-1.5654,-1.2431,-0.33062,-0.57292 +0.11518,0.53288,-1.5663,-1.2361,-0.32681,-0.56651 +0.12066,0.52501,-1.5671,-1.229,-0.32297,-0.56008 +0.12618,0.5171,-1.5679,-1.222,-0.31909,-0.55365 +0.13176,0.50914,-1.5686,-1.2149,-0.31517,-0.54719 +0.13738,0.50113,-1.5692,-1.2078,-0.31121,-0.54073 +0.14306,0.49309,-1.5697,-1.2008,-0.30722,-0.53426 +0.14878,0.485,-1.5702,-1.1937,-0.30319,-0.52777 +0.15454,0.47686,-1.5706,-1.1866,-0.29911,-0.52126 +0.16036,0.46869,-1.5709,-1.1795,-0.29501,-0.51475 +0.16621,0.46047,-1.5712,-1.1724,-0.29086,-0.50822 +0.17211,0.4522,-1.5714,-1.1653,-0.28668,-0.50168 +0.17806,0.4439,-1.5715,-1.1582,-0.28245,-0.49513 +0.18404,0.43555,-1.5716,-1.1511,-0.27819,-0.48856 +0.19006,0.42716,-1.5716,-1.1441,-0.2739,-0.48198 +0.19612,0.41873,-1.5715,-1.137,-0.26956,-0.47539 +0.20222,0.41026,-1.5713,-1.1299,-0.26519,-0.46878 +0.20835,0.40175,-1.5711,-1.1228,-0.26078,-0.46216 +0.21452,0.3932,-1.5708,-1.1157,-0.25633,-0.45553 +0.22073,0.38461,-1.5705,-1.1086,-0.25184,-0.44888 +0.22696,0.37598,-1.57,-1.1016,-0.24732,-0.44222 +0.23323,0.36731,-1.5696,-1.0945,-0.24276,-0.43555 +0.23953,0.3586,-1.569,-1.0875,-0.23816,-0.42886 +0.24586,0.34985,-1.5684,-1.0804,-0.23352,-0.42216 +0.25221,0.34107,-1.5677,-1.0734,-0.22884,-0.41545 +0.2586,0.33225,-1.5669,-1.0663,-0.22413,-0.40872 +0.26501,0.32339,-1.5661,-1.0593,-0.21938,-0.40198 +0.27144,0.31449,-1.5652,-1.0523,-0.21459,-0.39523 +0.2779,0.30556,-1.5643,-1.0453,-0.20976,-0.38846 +0.28438,0.29659,-1.5633,-1.0383,-0.2049,-0.38168 +0.29088,0.28758,-1.5622,-1.0313,-0.19999,-0.37488 +0.2974,0.27854,-1.5611,-1.0243,-0.19505,-0.36808 +0.30394,0.26947,-1.5599,-1.0174,-0.19007,-0.36125 +0.3105,0.26036,-1.5587,-1.0104,-0.18505,-0.35442 +0.31708,0.25122,-1.5574,-1.0035,-0.18,-0.34757 +0.32367,0.24205,-1.556,-0.99658,-0.17491,-0.3407 +0.33027,0.23284,-1.5546,-0.98968,-0.16977,-0.33382 +0.33689,0.2236,-1.5531,-0.98279,-0.1646,-0.32693 +0.34351,0.21433,-1.5515,-0.97592,-0.1594,-0.32002 +0.35015,0.20503,-1.5499,-0.96907,-0.15415,-0.3131 +0.3568,0.1957,-1.5483,-0.96223,-0.14887,-0.30617 +0.36346,0.18634,-1.5466,-0.9554,-0.14354,-0.29922 +0.37012,0.17695,-1.5448,-0.9486,-0.13818,-0.29225 +0.37679,0.16753,-1.543,-0.94182,-0.13278,-0.28527 +0.38346,0.15808,-1.5411,-0.93505,-0.12735,-0.27828 +0.39013,0.1486,-1.5392,-0.9283,-0.12187,-0.27127 +0.39681,0.1391,-1.5372,-0.92157,-0.11636,-0.26425 +0.40349,0.12957,-1.5351,-0.91487,-0.1108,-0.25722 +0.41017,0.12002,-1.5331,-0.90818,-0.10521,-0.25017 +0.41685,0.11044,-1.5309,-0.90151,-0.099585,-0.2431 +0.42352,0.10084,-1.5287,-0.89487,-0.093917,-0.23602 +0.43019,0.091211,-1.5265,-0.88825,-0.088211,-0.22893 +0.43685,0.08156,-1.5242,-0.88164,-0.082466,-0.22182 +0.44351,0.071887,-1.5219,-0.87507,-0.076682,-0.21469 +0.45016,0.062192,-1.5195,-0.86851,-0.07086,-0.20755 +0.4568,0.052476,-1.5171,-0.86198,-0.064999,-0.2004 +0.46344,0.04274,-1.5146,-0.85547,-0.0591,-0.19323 +0.47006,0.032983,-1.5121,-0.84899,-0.053162,-0.18604 +0.47667,0.023208,-1.5095,-0.84253,-0.047185,-0.17884 +0.48326,0.013414,-1.5069,-0.8361,-0.04117,-0.17163 +0.48984,0.0036021,-1.5043,-0.82969,-0.035115,-0.1644 +0.4964,-0.0062266,-1.5016,-0.8233,-0.029022,-0.15715 +0.50295,-0.016072,-1.4988,-0.81695,-0.022891,-0.14989 +0.50948,-0.025932,-1.4961,-0.81062,-0.01672,-0.14261 +0.51599,-0.035808,-1.4933,-0.80431,-0.010511,-0.13532 +0.52248,-0.045697,-1.4904,-0.79803,-0.0042624,-0.12802 +0.52894,-0.0556,-1.4875,-0.79178,0.0020247,-0.12069 +0.53539,-0.065515,-1.4846,-0.78555,0.0083506,-0.11335 +0.54181,-0.075442,-1.4816,-0.77936,0.014715,-0.106 +0.5482,-0.085381,-1.4786,-0.77319,0.021119,-0.098629 +0.55457,-0.095329,-1.4756,-0.76704,0.027562,-0.091243 +0.56091,-0.10529,-1.4725,-0.76093,0.034043,-0.083841 +0.56722,-0.11525,-1.4694,-0.75484,0.040563,-0.076424 +0.57351,-0.12523,-1.4663,-0.74878,0.047123,-0.06899 +0.57976,-0.13521,-1.4631,-0.74276,0.053721,-0.06154 +0.58598,-0.1452,-1.4599,-0.73675,0.060358,-0.054074 +0.59216,-0.15519,-1.4567,-0.73078,0.067033,-0.046592 +0.59832,-0.16519,-1.4534,-0.72484,0.073748,-0.039094 +0.60443,-0.17519,-1.4501,-0.71893,0.080502,-0.03158 +0.61051,-0.1852,-1.4468,-0.71304,0.087294,-0.024049 +0.61656,-0.1952,-1.4435,-0.70719,0.094125,-0.016501 +0.62256,-0.20521,-1.4401,-0.70136,0.101,-0.0089377 +0.62852,-0.21522,-1.4367,-0.69556,0.1079,-0.0013575 +0.63445,-0.22523,-1.4333,-0.6898,0.11485,0.0062393 +0.64033,-0.23523,-1.4298,-0.68406,0.12184,0.013853 +0.64617,-0.24524,-1.4264,-0.67835,0.12886,0.021483 +0.65196,-0.25524,-1.4229,-0.67268,0.13593,0.02913 +0.65771,-0.26524,-1.4194,-0.66703,0.14303,0.036793 +0.66342,-0.27523,-1.4158,-0.66141,0.15017,0.044473 +0.66908,-0.28522,-1.4123,-0.65582,0.15735,0.052171 +0.67468,-0.2952,-1.4087,-0.65026,0.16457,0.059885 +0.68024,-0.30517,-1.4051,-0.64473,0.17182,0.067616 +0.68575,-0.31514,-1.4015,-0.63924,0.17912,0.075365 +0.69121,-0.3251,-1.3978,-0.63377,0.18645,0.08313 +0.69662,-0.33504,-1.3942,-0.62833,0.19382,0.090913 +0.70197,-0.34498,-1.3905,-0.62292,0.20123,0.098712 +0.70727,-0.3549,-1.3868,-0.61754,0.20868,0.10653 +0.71252,-0.36481,-1.3831,-0.61219,0.21616,0.11436 +0.71771,-0.37471,-1.3794,-0.60687,0.22369,0.12222 +0.72284,-0.38459,-1.3757,-0.60158,0.23125,0.13008 +0.72792,-0.39446,-1.3719,-0.59631,0.23885,0.13797 +0.73293,-0.4043,-1.3682,-0.59108,0.24648,0.14588 +0.73789,-0.41414,-1.3644,-0.58588,0.25416,0.1538 +0.74278,-0.42395,-1.3607,-0.5807,0.26187,0.16174 +0.74762,-0.43375,-1.3569,-0.57555,0.26962,0.16969 +0.75239,-0.44352,-1.3531,-0.57044,0.2774,0.17767 +0.7571,-0.45327,-1.3493,-0.56535,0.28523,0.18566 +0.76174,-0.46301,-1.3455,-0.56029,0.29309,0.19367 +0.76632,-0.47271,-1.3417,-0.55525,0.30098,0.2017 +0.77084,-0.4824,-1.3379,-0.55025,0.30892,0.20975 +0.77529,-0.49206,-1.334,-0.54527,0.31689,0.21781 +0.77967,-0.50169,-1.3302,-0.54032,0.3249,0.22589 +0.78398,-0.5113,-1.3264,-0.5354,0.33294,0.23399 +0.78822,-0.52088,-1.3225,-0.5305,0.34102,0.24211 +0.79239,-0.53043,-1.3187,-0.52563,0.34914,0.25025 +0.7965,-0.53995,-1.3148,-0.52079,0.35729,0.2584 +0.80053,-0.54944,-1.311,-0.51597,0.36548,0.26657 +0.80449,-0.5589,-1.3072,-0.51118,0.3737,0.27476 +0.80838,-0.56832,-1.3033,-0.50641,0.38196,0.28297 +0.81219,-0.57772,-1.2995,-0.50168,0.39025,0.2912 +0.81593,-0.58707,-1.2956,-0.49696,0.39858,0.29944 +0.81959,-0.5964,-1.2918,-0.49227,0.40695,0.30771 +0.82318,-0.60568,-1.2879,-0.48761,0.41534,0.31599 +0.82669,-0.61493,-1.2841,-0.48296,0.42378,0.32429 +0.83013,-0.62415,-1.2802,-0.47835,0.43224,0.33261 +0.83348,-0.63332,-1.2764,-0.47375,0.44075,0.34095 +0.83676,-0.64245,-1.2726,-0.46918,0.44928,0.3493 +0.83996,-0.65154,-1.2688,-0.46463,0.45785,0.35768 +0.84308,-0.66059,-1.2649,-0.46011,0.46645,0.36607 +0.84612,-0.6696,-1.2611,-0.4556,0.47509,0.37448 +0.84908,-0.67857,-1.2573,-0.45112,0.48376,0.38291 +0.85196,-0.68748,-1.2535,-0.44666,0.49246,0.39136 +0.85476,-0.69636,-1.2497,-0.44222,0.50119,0.39983 +0.85747,-0.70519,-1.2459,-0.4378,0.50996,0.40831 +0.8601,-0.71397,-1.2421,-0.4334,0.51875,0.41682 +0.86264,-0.7227,-1.2384,-0.42902,0.52758,0.42534 +0.86511,-0.73138,-1.2346,-0.42466,0.53644,0.43388 +0.86748,-0.74001,-1.2309,-0.42032,0.54533,0.44244 +0.86978,-0.74859,-1.2271,-0.41599,0.55426,0.45102 +0.87198,-0.75712,-1.2234,-0.41168,0.56321,0.45962 +0.8741,-0.7656,-1.2197,-0.4074,0.57219,0.46823 +0.87614,-0.77402,-1.2159,-0.40312,0.5812,0.47687 +0.87808,-0.78239,-1.2122,-0.39887,0.59025,0.48552 +0.87994,-0.7907,-1.2086,-0.39463,0.59932,0.49419 +0.88171,-0.79896,-1.2049,-0.3904,0.60842,0.50288 +0.88339,-0.80716,-1.2012,-0.38619,0.61755,0.51159 +0.88499,-0.8153,-1.1976,-0.382,0.62671,0.52032 +0.88649,-0.82338,-1.1939,-0.37782,0.63589,0.52906 +0.88791,-0.8314,-1.1903,-0.37365,0.6451,0.53783 +0.88923,-0.83936,-1.1867,-0.36949,0.65434,0.54661 +0.89047,-0.84727,-1.1831,-0.36535,0.66361,0.55541 +0.89161,-0.8551,-1.1795,-0.36122,0.67291,0.56423 +0.89267,-0.86288,-1.1759,-0.3571,0.68223,0.57307 +0.89363,-0.87059,-1.1724,-0.35299,0.69157,0.58193 +0.8945,-0.87823,-1.1689,-0.3489,0.70094,0.5908 +0.89528,-0.88581,-1.1653,-0.34481,0.71034,0.5997 +0.89596,-0.89333,-1.1618,-0.34073,0.71976,0.60861 +0.89656,-0.90077,-1.1583,-0.33666,0.7292,0.61754 +0.89706,-0.90815,-1.1549,-0.3326,0.73867,0.62649 +0.89747,-0.91546,-1.1514,-0.32854,0.74817,0.63545 +0.89778,-0.9227,-1.148,-0.32449,0.75768,0.64444 +0.89801,-0.92987,-1.1445,-0.32045,0.76722,0.65344 +0.89814,-0.93697,-1.1411,-0.31642,0.77678,0.66246 +0.89817,-0.94399,-1.1377,-0.31239,0.78636,0.6715 +0.89811,-0.95095,-1.1344,-0.30836,0.79596,0.68056 +0.89796,-0.95783,-1.131,-0.30434,0.80559,0.68964 +0.89771,-0.96463,-1.1277,-0.30032,0.81523,0.69873 +0.89737,-0.97136,-1.1243,-0.2963,0.8249,0.70784 +0.89694,-0.97802,-1.121,-0.29229,0.83458,0.71697 +0.89641,-0.9846,-1.1177,-0.28828,0.84428,0.72611 +0.89579,-0.9911,-1.1145,-0.28427,0.854,0.73528 +0.89507,-0.99752,-1.1112,-0.28026,0.86374,0.74446 +0.89426,-1.0039,-1.108,-0.27625,0.8735,0.75366 +0.89335,-1.0101,-1.1048,-0.27224,0.88327,0.76287 +0.89235,-1.0163,-1.1016,-0.26823,0.89306,0.7721 +0.89125,-1.0224,-1.0984,-0.26421,0.90287,0.78135 +0.89006,-1.0285,-1.0952,-0.26019,0.91269,0.79062 +0.88877,-1.0344,-1.0921,-0.25617,0.92253,0.7999 +0.88739,-1.0403,-1.0889,-0.25215,0.93238,0.80921 +0.88592,-1.046,-1.0858,-0.24812,0.94224,0.81852 +0.88435,-1.0517,-1.0827,-0.24409,0.95212,0.82786 +0.88268,-1.0573,-1.0796,-0.24005,0.96201,0.83721 +0.88092,-1.0629,-1.0766,-0.23601,0.97192,0.84658 +0.87907,-1.0683,-1.0735,-0.23196,0.98183,0.85596 +0.87712,-1.0737,-1.0705,-0.2279,0.99176,0.86536 +0.87508,-1.0789,-1.0675,-0.22383,1.0017,0.87477 +0.87295,-1.0841,-1.0645,-0.21975,1.0116,0.88421 +0.87072,-1.0892,-1.0615,-0.21567,1.0216,0.89365 +0.86839,-1.0942,-1.0586,-0.21157,1.0316,0.90312 +0.86597,-1.0991,-1.0556,-0.20747,1.0415,0.91259 +0.86346,-1.104,-1.0527,-0.20335,1.0515,0.92209 +0.86086,-1.1087,-1.0498,-0.19922,1.0615,0.9316 +0.85816,-1.1133,-1.0469,-0.19508,1.0715,0.94112 +0.85537,-1.1179,-1.044,-0.19093,1.0815,0.95066 +0.85249,-1.1224,-1.0412,-0.18676,1.0915,0.96022 +0.84951,-1.1267,-1.0383,-0.18258,1.1015,0.96979 +0.84644,-1.131,-1.0355,-0.17838,1.1116,0.97937 +0.84328,-1.1352,-1.0327,-0.17417,1.1216,0.98897 +0.84003,-1.1393,-1.0299,-0.16994,1.1316,0.99858 +0.83669,-1.1433,-1.0271,-0.1657,1.1416,1.0082 +0.83326,-1.1472,-1.0243,-0.16143,1.1517,1.0178 +0.82973,-1.1511,-1.0215,-0.15715,1.1617,1.0275 +0.82612,-1.1548,-1.0188,-0.15286,1.1717,1.0372 +0.82241,-1.1584,-1.016,-0.14854,1.1818,1.0468 +0.81861,-1.1619,-1.0133,-0.1442,1.1918,1.0565 +0.81473,-1.1654,-1.0106,-0.13985,1.2018,1.0662 +0.81075,-1.1687,-1.0079,-0.13547,1.2118,1.076 +0.80669,-1.172,-1.0052,-0.13107,1.2219,1.0857 +0.80254,-1.1751,-1.0025,-0.12665,1.2319,1.0954 +0.7983,-1.1782,-0.99988,-0.12221,1.2419,1.1052 +0.79397,-1.1812,-0.99722,-0.11774,1.2519,1.115 +0.78956,-1.184,-0.99458,-0.11325,1.2619,1.1247 +0.78505,-1.1868,-0.99194,-0.10873,1.2719,1.1345 +0.78047,-1.1895,-0.98932,-0.1042,1.2819,1.1443 +0.77579,-1.192,-0.9867,-0.099632,1.2919,1.1541 +0.77103,-1.1945,-0.98409,-0.095042,1.3019,1.164 +0.76619,-1.1969,-0.98149,-0.090426,1.3119,1.1738 +0.76126,-1.1992,-0.97889,-0.085783,1.3218,1.1837 +0.75624,-1.2014,-0.9763,-0.081112,1.3318,1.1935 +0.75114,-1.2034,-0.97372,-0.076414,1.3417,1.2034 +0.74596,-1.2054,-0.97115,-0.071687,1.3516,1.2132 +0.7407,-1.2073,-0.96858,-0.066931,1.3616,1.2231 +0.73535,-1.2091,-0.96602,-0.062146,1.3715,1.233 +0.72993,-1.2108,-0.96346,-0.057331,1.3814,1.2429 +0.72442,-1.2124,-0.9609,-0.052485,1.3912,1.2528 +0.71883,-1.2139,-0.95835,-0.047609,1.4011,1.2628 +0.71316,-1.2153,-0.9558,-0.042701,1.411,1.2727 +0.70741,-1.2166,-0.95326,-0.037761,1.4208,1.2826 +0.70158,-1.2178,-0.95072,-0.032788,1.4306,1.2926 +0.69567,-1.2189,-0.94817,-0.027783,1.4404,1.3025 +0.68969,-1.2199,-0.94563,-0.022745,1.4502,1.3125 +0.68363,-1.2208,-0.94309,-0.017672,1.4599,1.3224 +0.67749,-1.2216,-0.94055,-0.012566,1.4697,1.3324 +0.67127,-1.2223,-0.93801,-0.0074249,1.4794,1.3424 +0.66498,-1.223,-0.93547,-0.0022487,1.4891,1.3524 +0.65862,-1.2235,-0.93293,0.002963,1.4988,1.3623 +0.65218,-1.2239,-0.93038,0.0082105,1.5085,1.3723 +0.64567,-1.2242,-0.92783,0.013494,1.5181,1.3823 +0.63908,-1.2244,-0.92528,0.018815,1.5277,1.3923 +0.63242,-1.2245,-0.92272,0.024173,1.5373,1.4023 +0.62569,-1.2246,-0.92016,0.029568,1.5468,1.4123 +0.61889,-1.2245,-0.91759,0.035001,1.5564,1.4224 +0.61202,-1.2243,-0.91502,0.040472,1.5659,1.4324 +0.60508,-1.2241,-0.91244,0.045982,1.5754,1.4424 +0.59807,-1.2237,-0.90986,0.051531,1.5848,1.4524 +0.591,-1.2233,-0.90726,0.057119,1.5942,1.4624 +0.58385,-1.2227,-0.90466,0.062747,1.6036,1.4725 +0.57664,-1.2221,-0.90205,0.068414,1.613,1.4825 +0.56936,-1.2213,-0.89943,0.074122,1.6223,1.4925 +0.56202,-1.2205,-0.8968,0.079871,1.6316,1.5025 +0.55461,-1.2196,-0.89416,0.08566,1.6409,1.5126 +0.54714,-1.2185,-0.8915,0.091491,1.6502,1.5226 +0.5396,-1.2174,-0.88884,0.097363,1.6594,1.5326 +0.532,-1.2162,-0.88616,0.10328,1.6685,1.5427 +0.52434,-1.2149,-0.88347,0.10923,1.6777,1.5527 +0.51662,-1.2135,-0.88077,0.11523,1.6868,1.5627 +0.50884,-1.212,-0.87805,0.12127,1.6958,1.5727 +0.501,-1.2104,-0.87531,0.12735,1.7049,1.5827 +0.4931,-1.2088,-0.87256,0.13348,1.7139,1.5928 +0.48514,-1.207,-0.86979,0.13965,1.7228,1.6028 +0.47712,-1.2051,-0.86701,0.14586,1.7317,1.6128 +0.46905,-1.2032,-0.86421,0.15212,1.7406,1.6228 +0.46092,-1.2012,-0.86139,0.15842,1.7494,1.6328 +0.45274,-1.199,-0.85855,0.16476,1.7582,1.6428 +0.4445,-1.1968,-0.85569,0.17115,1.767,1.6528 +0.43621,-1.1945,-0.85281,0.17758,1.7757,1.6628 +0.42787,-1.1921,-0.84991,0.18406,1.7843,1.6728 +0.41948,-1.1897,-0.84698,0.19058,1.793,1.6828 +0.41103,-1.1871,-0.84404,0.19715,1.8015,1.6927 +0.40253,-1.1845,-0.84107,0.20376,1.8101,1.7027 +0.39399,-1.1817,-0.83808,0.21041,1.8186,1.7127 +0.38539,-1.1789,-0.83507,0.21711,1.827,1.7226 +0.37675,-1.176,-0.83203,0.22386,1.8354,1.7326 +0.36806,-1.173,-0.82896,0.23065,1.8438,1.7425 +0.35933,-1.17,-0.82587,0.23749,1.8521,1.7524 +0.35055,-1.1668,-0.82275,0.24437,1.8603,1.7623 +0.34172,-1.1636,-0.81961,0.2513,1.8685,1.7722 +0.33285,-1.1603,-0.81643,0.25827,1.8767,1.7821 +0.32394,-1.1569,-0.81323,0.26529,1.8848,1.792 +0.31498,-1.1534,-0.81,0.27235,1.8928,1.8019 +0.30599,-1.1499,-0.80674,0.27946,1.9008,1.8117 +0.29695,-1.1463,-0.80345,0.28661,1.9088,1.8216 +0.28787,-1.1426,-0.80013,0.29381,1.9167,1.8314 +0.27876,-1.1388,-0.79678,0.30106,1.9245,1.8413 +0.26961,-1.1349,-0.79339,0.30835,1.9323,1.8511 +0.26041,-1.131,-0.78997,0.31569,1.94,1.8609 +0.25119,-1.127,-0.78652,0.32307,1.9477,1.8706 +0.24193,-1.1229,-0.78304,0.33049,1.9553,1.8804 +0.23263,-1.1188,-0.77952,0.33796,1.9629,1.8902 +0.2233,-1.1146,-0.77596,0.34548,1.9704,1.8999 +0.21393,-1.1103,-0.77237,0.35304,1.9779,1.9096 +0.20454,-1.1059,-0.76875,0.36065,1.9853,1.9193 +0.19511,-1.1015,-0.76509,0.3683,1.9926,1.929 +0.18565,-1.097,-0.76139,0.37599,1.9999,1.9387 +0.17616,-1.0924,-0.75765,0.38373,2.0071,1.9483 +0.16664,-1.0878,-0.75387,0.39152,2.0142,1.958 +0.1571,-1.0831,-0.75006,0.39935,2.0213,1.9676 +0.14752,-1.0784,-0.74621,0.40722,2.0284,1.9772 +0.13792,-1.0735,-0.74231,0.41514,2.0354,1.9868 +0.1283,-1.0687,-0.73838,0.4231,2.0423,1.9963 +0.11865,-1.0637,-0.73441,0.4311,2.0491,2.0058 +0.10897,-1.0587,-0.73039,0.43915,2.0559,2.0154 +0.099277,-1.0536,-0.72634,0.44723,2.0626,2.0249 +0.089557,-1.0485,-0.72224,0.45537,2.0693,2.0343 +0.079816,-1.0433,-0.7181,0.46354,2.0759,2.0438 +0.070054,-1.0381,-0.71391,0.47176,2.0824,2.0532 +0.060272,-1.0328,-0.70969,0.48002,2.0889,2.0626 +0.05047,-1.0275,-0.70542,0.48832,2.0953,2.072 +0.040651,-1.0221,-0.7011,0.49666,2.1016,2.0813 +0.030814,-1.0166,-0.69674,0.50504,2.1079,2.0906 +0.02096,-1.0111,-0.69233,0.51347,2.1141,2.0999 +0.01109,-1.0055,-0.68788,0.52193,2.1203,2.1092 +0.0012058,-0.99993,-0.68339,0.53043,2.1263,2.1185 +-0.0086932,-0.99428,-0.67884,0.53898,2.1323,2.1277 +-0.018606,-0.98857,-0.67426,0.54756,2.1383,2.1369 +-0.028531,-0.98282,-0.66962,0.55618,2.1441,2.146 +-0.038468,-0.97703,-0.66494,0.56485,2.1499,2.1552 +-0.048416,-0.97119,-0.6602,0.57355,2.1556,2.1643 +-0.058375,-0.9653,-0.65543,0.58228,2.1613,2.1734 +-0.068343,-0.95938,-0.6506,0.59106,2.1669,2.1824 +-0.07832,-0.95341,-0.64572,0.59987,2.1724,2.1914 +-0.088304,-0.94741,-0.6408,0.60872,2.1779,2.2004 +-0.098297,-0.94136,-0.63582,0.61761,2.1832,2.2094 +-0.10829,-0.93528,-0.6308,0.62653,2.1885,2.2183 +-0.1183,-0.92916,-0.62573,0.63549,2.1938,2.2272 +-0.12831,-0.923,-0.62061,0.64448,2.1989,2.2361 +-0.13832,-0.91681,-0.61543,0.65351,2.204,2.2449 +-0.14834,-0.91059,-0.61021,0.66257,2.209,2.2537 +-0.15836,-0.90433,-0.60494,0.67167,2.214,2.2625 +-0.16838,-0.89804,-0.59961,0.6808,2.2188,2.2712 +-0.1784,-0.89173,-0.59424,0.68996,2.2236,2.2799 +-0.18842,-0.88538,-0.58881,0.69915,2.2284,2.2885 +-0.19845,-0.87901,-0.58334,0.70838,2.233,2.2971 +-0.20847,-0.87261,-0.57781,0.71764,2.2376,2.3057 +-0.21849,-0.86618,-0.57223,0.72692,2.2421,2.3143 +-0.2285,-0.85973,-0.5666,0.73624,2.2465,2.3228 +-0.23852,-0.85325,-0.56091,0.74559,2.2509,2.3313 +-0.24853,-0.84676,-0.55518,0.75497,2.2551,2.3397 +-0.25853,-0.84024,-0.54939,0.76437,2.2593,2.3481 +-0.26853,-0.83371,-0.54355,0.77381,2.2635,2.3564 +-0.27852,-0.82715,-0.53766,0.78327,2.2675,2.3648 +-0.28851,-0.82058,-0.53172,0.79275,2.2715,2.373 +-0.29849,-0.81399,-0.52572,0.80227,2.2754,2.3813 +-0.30846,-0.80738,-0.51968,0.81181,2.2792,2.3895 +-0.31842,-0.80077,-0.51358,0.82137,2.283,2.3976 +-0.32837,-0.79413,-0.50743,0.83096,2.2867,2.4057 +-0.33832,-0.78749,-0.50122,0.84058,2.2903,2.4138 +-0.34825,-0.78084,-0.49497,0.85022,2.2938,2.4218 +-0.35817,-0.77418,-0.48866,0.85988,2.2972,2.4298 +-0.36808,-0.7675,-0.4823,0.86956,2.3006,2.4378 +-0.37797,-0.76083,-0.47589,0.87926,2.3039,2.4457 +-0.38785,-0.75414,-0.46942,0.88899,2.3071,2.4535 +-0.39772,-0.74745,-0.46291,0.89873,2.3103,2.4613 +-0.40757,-0.74076,-0.45634,0.9085,2.3133,2.4691 +-0.41741,-0.73407,-0.44973,0.91828,2.3163,2.4768 +-0.42723,-0.72737,-0.44306,0.92808,2.3192,2.4845 +-0.43703,-0.72068,-0.43634,0.9379,2.3221,2.4921 +-0.44682,-0.71398,-0.42957,0.94774,2.3248,2.4997 +-0.45659,-0.70729,-0.42274,0.95759,2.3275,2.5072 +-0.46634,-0.7006,-0.41587,0.96746,2.3301,2.5147 +-0.47607,-0.69391,-0.40895,0.97734,2.3326,2.5221 +-0.48578,-0.68723,-0.40198,0.98724,2.3351,2.5295 +-0.49547,-0.68056,-0.39495,0.99715,2.3375,2.5368 +-0.50514,-0.6739,-0.38788,1.0071,2.3398,2.5441 +-0.51479,-0.66724,-0.38076,1.017,2.342,2.5514 +-0.52442,-0.66059,-0.37359,1.027,2.3442,2.5586 +-0.53402,-0.65396,-0.36637,1.0369,2.3462,2.5657 +-0.5436,-0.64734,-0.3591,1.0469,2.3482,2.5728 +-0.55316,-0.64073,-0.35178,1.0569,2.3501,2.5798 +-0.56269,-0.63413,-0.34442,1.0668,2.352,2.5868 +-0.5722,-0.62756,-0.33701,1.0768,2.3538,2.5938 +-0.58168,-0.62099,-0.32955,1.0868,2.3555,2.6006 +-0.59114,-0.61445,-0.32205,1.0968,2.3571,2.6075 +-0.60057,-0.60792,-0.31449,1.1069,2.3586,2.6143 +-0.60997,-0.60142,-0.3069,1.1169,2.3601,2.621 +-0.61935,-0.59494,-0.29925,1.1269,2.3615,2.6277 +-0.6287,-0.58847,-0.29157,1.1369,2.3628,2.6343 +-0.63802,-0.58204,-0.28383,1.1469,2.364,2.6408 +-0.64731,-0.57562,-0.27606,1.157,2.3652,2.6474 +-0.65657,-0.56923,-0.26824,1.167,2.3663,2.6538 +-0.6658,-0.56287,-0.26037,1.177,2.3673,2.6602 +-0.675,-0.55653,-0.25247,1.1871,2.3683,2.6666 +-0.68417,-0.55023,-0.24452,1.1971,2.3691,2.6729 +-0.69331,-0.54395,-0.23653,1.2071,2.3699,2.6791 +-0.70241,-0.5377,-0.2285,1.2172,2.3707,2.6853 +-0.71149,-0.53149,-0.22043,1.2272,2.3713,2.6914 +-0.72053,-0.5253,-0.21231,1.2372,2.3719,2.6975 +-0.72954,-0.51915,-0.20416,1.2472,2.3724,2.7035 +-0.73851,-0.51304,-0.19597,1.2572,2.3728,2.7094 +-0.74745,-0.50696,-0.18775,1.2672,2.3732,2.7153 +-0.75636,-0.50091,-0.17948,1.2772,2.3735,2.7212 +-0.76523,-0.49491,-0.17118,1.2872,2.3737,2.7269 +-0.77406,-0.48894,-0.16284,1.2972,2.3739,2.7327 +-0.78286,-0.48301,-0.15446,1.3072,2.374,2.7383 +-0.79163,-0.47712,-0.14605,1.3171,2.374,2.7439 +-0.80035,-0.47128,-0.13761,1.3271,2.3739,2.7495 +-0.80904,-0.46547,-0.12913,1.337,2.3738,2.755 +-0.8177,-0.45971,-0.12062,1.3469,2.3736,2.7604 +-0.82631,-0.45399,-0.11208,1.3568,2.3733,2.7658 +-0.83489,-0.44831,-0.10351,1.3667,2.3729,2.7711 +-0.84343,-0.44268,-0.0949,1.3766,2.3725,2.7763 +-0.85193,-0.4371,-0.086265,1.3865,2.3721,2.7815 +-0.86039,-0.43156,-0.077601,1.3963,2.3715,2.7866 +-0.86881,-0.42608,-0.068908,1.4062,2.3709,2.7917 +-0.87719,-0.42064,-0.060188,1.416,2.3702,2.7967 +-0.88553,-0.41525,-0.05144,1.4258,2.3695,2.8017 +-0.89383,-0.40991,-0.042667,1.4356,2.3687,2.8066 +-0.90209,-0.40462,-0.033868,1.4453,2.3678,2.8114 +-0.9103,-0.39939,-0.025044,1.4551,2.3668,2.8162 +-0.91848,-0.3942,-0.016197,1.4648,2.3658,2.8209 +-0.92661,-0.38907,-0.0073274,1.4745,2.3647,2.8255 +-0.93471,-0.384,0.0015645,1.4842,2.3636,2.8301 +-0.94276,-0.37898,0.010477,1.4938,2.3624,2.8346 +-0.95076,-0.37401,0.019411,1.5034,2.3611,2.8391 +-0.95873,-0.3691,0.028363,1.513,2.3598,2.8435 +-0.96665,-0.36425,0.037334,1.5226,2.3584,2.8478 +-0.97452,-0.35946,0.046323,1.5322,2.3569,2.8521 +-0.98235,-0.35472,0.055328,1.5417,2.3554,2.8563 +-0.99014,-0.35005,0.06435,1.5512,2.3538,2.8604 +-0.99789,-0.34543,0.073386,1.5607,2.3522,2.8645 +-1.0056,-0.34088,0.082435,1.5701,2.3505,2.8686 +-1.0132,-0.33638,0.091498,1.5795,2.3487,2.8725 +-1.0208,-0.33195,0.10057,1.5889,2.3469,2.8764 +-1.0284,-0.32758,0.10966,1.5982,2.345,2.8803 +-1.0359,-0.32327,0.11876,1.6075,2.3431,2.884 +-1.0434,-0.31902,0.12786,1.6168,2.3411,2.8877 +-1.0508,-0.31484,0.13697,1.6261,2.339,2.8914 +-1.0582,-0.31072,0.14609,1.6353,2.3369,2.895 +-1.0655,-0.30667,0.15522,1.6445,2.3347,2.8985 +-1.0728,-0.30268,0.16435,1.6536,2.3325,2.902 +-1.0801,-0.29876,0.17349,1.6627,2.3302,2.9054 +-1.0872,-0.2949,0.18263,1.6718,2.3279,2.9087 +-1.0944,-0.29112,0.19177,1.6808,2.3255,2.912 +-1.1015,-0.28739,0.20091,1.6898,2.323,2.9152 +-1.1085,-0.28374,0.21005,1.6988,2.3205,2.9184 +-1.1155,-0.28015,0.2192,1.7077,2.3179,2.9215 +-1.1225,-0.27664,0.22834,1.7166,2.3153,2.9245 +-1.1294,-0.27319,0.23747,1.7254,2.3127,2.9275 +-1.1362,-0.26981,0.24661,1.7342,2.31,2.9304 +-1.143,-0.2665,0.25573,1.743,2.3072,2.9332 +-1.1498,-0.26326,0.26485,1.7517,2.3044,2.936 +-1.1565,-0.26009,0.27397,1.7604,2.3015,2.9387 +-1.1631,-0.25699,0.28307,1.769,2.2986,2.9414 +-1.1697,-0.25396,0.29217,1.7776,2.2956,2.944 +-1.1763,-0.251,0.30126,1.7862,2.2926,2.9465 +-1.1828,-0.24812,0.31033,1.7947,2.2895,2.949 +-1.1893,-0.2453,0.31939,1.8031,2.2864,2.9514 +-1.1957,-0.24256,0.32844,1.8115,2.2832,2.9537 +-1.202,-0.23989,0.33748,1.8199,2.28,2.956 +-1.2083,-0.23729,0.34649,1.8282,2.2768,2.9582 +-1.2146,-0.23476,0.3555,1.8365,2.2735,2.9604 +-1.2208,-0.2323,0.36448,1.8447,2.2701,2.9625 +-1.2269,-0.22992,0.37344,1.8529,2.2667,2.9646 +-1.233,-0.22761,0.38239,1.861,2.2633,2.9666 +-1.2391,-0.22538,0.39131,1.8691,2.2598,2.9685 +-1.2451,-0.22321,0.40021,1.8771,2.2563,2.9703 +-1.251,-0.22112,0.40909,1.8851,2.2527,2.9722 +-1.2569,-0.21911,0.41794,1.893,2.2491,2.9739 +-1.2627,-0.21716,0.42677,1.9009,2.2455,2.9756 +-1.2685,-0.21529,0.43557,1.9087,2.2418,2.9772 +-1.2743,-0.2135,0.44434,1.9165,2.238,2.9788 +-1.2799,-0.21177,0.45308,1.9242,2.2343,2.9803 +-1.2856,-0.21012,0.46179,1.9319,2.2305,2.9818 +-1.2911,-0.20854,0.47048,1.9395,2.2266,2.9832 +-1.2967,-0.20704,0.47913,1.947,2.2227,2.9845 +-1.3022,-0.20557,0.48771,1.9545,2.2188,2.9858 +-1.3076,-0.20422,0.49628,1.9619,2.2148,2.987 +-1.3129,-0.20296,0.5048,1.9693,2.2108,2.9881 +-1.3182,-0.2018,0.51327,1.9766,2.2067,2.9892 +-1.3234,-0.20072,0.52168,1.9838,2.2025,2.9902 +-1.3285,-0.19974,0.53001,1.9909,2.1983,2.991 +-1.3335,-0.19883,0.53826,1.9979,2.194,2.9918 +-1.3383,-0.198,0.54643,2.0049,2.1896,2.9925 +-1.3431,-0.19723,0.55451,2.0117,2.1851,2.993 +-1.3478,-0.19651,0.56249,2.0183,2.1805,2.9935 +-1.3523,-0.19585,0.57035,2.0249,2.1758,2.9938 +-1.3567,-0.19522,0.5781,2.0313,2.1709,2.9939 +-1.361,-0.19463,0.58573,2.0376,2.166,2.9939 +-1.3651,-0.19407,0.59323,2.0437,2.1608,2.9938 +-1.369,-0.19352,0.60059,2.0497,2.1556,2.9935 +-1.3728,-0.19299,0.6078,2.0555,2.1503,2.993 +-1.3765,-0.19246,0.61487,2.0612,2.1448,2.9924 +-1.38,-0.19193,0.62178,2.0667,2.1392,2.9917 +-1.3833,-0.1914,0.62854,2.072,2.1335,2.9908 +-1.3865,-0.19087,0.63516,2.0773,2.1277,2.9897 +-1.3896,-0.19034,0.64162,2.0823,2.1219,2.9885 +-1.3925,-0.18981,0.64794,2.0873,2.116,2.9872 +-1.3953,-0.18928,0.6541,2.092,2.1099,2.9857 +-1.3979,-0.18875,0.66011,2.0966,2.1039,2.9841 +-1.4003,-0.18822,0.66598,2.1011,2.0978,2.9823 +-1.4026,-0.18769,0.67169,2.1054,2.0916,2.9803 +-1.4048,-0.18716,0.67726,2.1096,2.0854,2.9782 +-1.4068,-0.18663,0.68267,2.1136,2.0791,2.976 +-1.4086,-0.1861,0.68793,2.1175,2.0728,2.9736 +-1.4103,-0.18557,0.69305,2.1212,2.0666,2.971 +-1.4119,-0.18504,0.69801,2.1248,2.0603,2.9683 +-1.4133,-0.18452,0.70282,2.1282,2.054,2.9655 +-1.4145,-0.18399,0.70749,2.1315,2.0476,2.9625 +-1.4156,-0.18346,0.712,2.1346,2.0413,2.9594 +-1.4166,-0.18293,0.71637,2.1376,2.0351,2.956 +-1.4174,-0.1824,0.72058,2.1404,2.0287,2.9526 +-1.4181,-0.18187,0.72464,2.1431,2.0224,2.949 +-1.4186,-0.18134,0.72856,2.1456,2.0161,2.9453 +-1.4189,-0.18081,0.73232,2.1479,2.0098,2.9414 +-1.4191,-0.18028,0.73594,2.1502,2.0035,2.9373 +-1.4192,-0.17975,0.7394,2.1522,1.9972,2.9331 +-1.4191,-0.17922,0.74271,2.1542,1.9909,2.9288 +-1.4188,-0.17869,0.74588,2.1559,1.9846,2.9243 +-1.4184,-0.17816,0.74889,2.1576,1.9783,2.9196 +-1.4179,-0.17763,0.75175,2.159,1.972,2.9148 +-1.4172,-0.1771,0.75447,2.1603,1.9657,2.9099 +-1.4163,-0.17657,0.75703,2.1615,1.9594,2.9048 +-1.4154,-0.17604,0.75945,2.1625,1.9531,2.8996 +-1.4142,-0.17551,0.76171,2.1634,1.9468,2.8942 +-1.4129,-0.17498,0.76382,2.1641,1.9405,2.8886 +-1.4115,-0.17445,0.76579,2.1647,1.9342,2.8829 +-1.4099,-0.17392,0.7676,2.1651,1.9279,2.8771 +-1.4081,-0.17339,0.76927,2.1654,1.9216,2.8711 +-1.4062,-0.17286,0.77078,2.1655,1.9153,2.8649 +-1.4042,-0.17233,0.77214,2.1655,1.909,2.8586 +-1.402,-0.17181,0.77336,2.1653,1.9027,2.8522 +-1.3996,-0.17128,0.77442,2.165,1.8964,2.8456 +-1.3971,-0.17075,0.77534,2.1645,1.8901,2.8388 +-1.3945,-0.17022,0.7761,2.1639,1.8838,2.8319 +-1.3917,-0.16969,0.77671,2.1631,1.8775,2.8249 +-1.3887,-0.16916,0.77718,2.1621,1.8711,2.8177 +-1.3857,-0.16863,0.77749,2.1611,1.8648,2.8104 +-1.3824,-0.1681,0.77765,2.1598,1.8585,2.8029 +-1.379,-0.16757,0.77767,2.1585,1.8522,2.7952 +-1.3755,-0.16704,0.77753,2.1569,1.8459,2.7874 +-1.3719,-0.16651,0.77725,2.1552,1.8396,2.7795 +-1.3681,-0.16598,0.77681,2.1534,1.8333,2.7714 +-1.3642,-0.16545,0.77623,2.1514,1.827,2.7631 +-1.3603,-0.16492,0.77549,2.1493,1.8207,2.7547 +-1.3562,-0.16439,0.7746,2.147,1.8144,2.7462 +-1.352,-0.16386,0.77357,2.1446,1.8081,2.7375 +-1.3478,-0.16333,0.77238,2.142,1.8018,2.7287 +-1.3435,-0.1628,0.77105,2.1393,1.7955,2.7197 +-1.3391,-0.16227,0.76959,2.1364,1.7892,2.7106 +-1.3347,-0.16174,0.768,2.1334,1.7829,2.7015 +-1.3302,-0.16121,0.76629,2.1302,1.7766,2.6922 +-1.3257,-0.16068,0.76446,2.1269,1.7703,2.6828 +-1.3211,-0.16015,0.76253,2.1234,1.764,2.6733 +-1.3165,-0.15962,0.7605,2.1197,1.7577,2.6637 +-1.3119,-0.1591,0.75839,2.116,1.7514,2.6541 +-1.3073,-0.15857,0.75618,2.112,1.7451,2.6444 +-1.3027,-0.15804,0.75391,2.108,1.7388,2.6346 +-1.298,-0.15751,0.75156,2.1037,1.7325,2.6247 +-1.2934,-0.15698,0.74916,2.0993,1.7262,2.6149 +-1.2888,-0.15645,0.7467,2.0948,1.7199,2.6049 +-1.2841,-0.15592,0.7442,2.0901,1.7135,2.595 +-1.2795,-0.15539,0.74165,2.0853,1.7072,2.585 +-1.2749,-0.15486,0.73908,2.0803,1.7009,2.575 +-1.2703,-0.15433,0.73649,2.0752,1.6946,2.565 +-1.2656,-0.1538,0.73388,2.0699,1.6883,2.555 +-1.261,-0.15327,0.73126,2.0645,1.682,2.545 +-1.2564,-0.15274,0.72864,2.0589,1.6757,2.535 +-1.2517,-0.15221,0.72602,2.0532,1.6694,2.525 +-1.2471,-0.15168,0.7234,2.0473,1.6631,2.515 +-1.2425,-0.15115,0.72078,2.0413,1.6568,2.505 +-1.2378,-0.15062,0.71816,2.0351,1.6505,2.495 +-1.2332,-0.15009,0.71554,2.0288,1.6442,2.485 +-1.2286,-0.14956,0.71292,2.0223,1.6379,2.475 +-1.224,-0.14903,0.7103,2.0157,1.6316,2.465 +-1.2193,-0.1485,0.70768,2.0089,1.6253,2.455 +-1.2147,-0.14797,0.70506,2.002,1.619,2.445 +-1.2101,-0.14744,0.70244,1.995,1.6127,2.435 +-1.2054,-0.14692,0.69982,1.9878,1.6064,2.425 +-1.2008,-0.14639,0.6972,1.9806,1.6001,2.415 +-1.1962,-0.14586,0.69459,1.9732,1.5938,2.405 +-1.1916,-0.14533,0.69197,1.9658,1.5875,2.395 +-1.1869,-0.1448,0.68935,1.9583,1.5812,2.385 +-1.1823,-0.14427,0.68673,1.9506,1.5749,2.375 +-1.1777,-0.14374,0.68411,1.943,1.5686,2.365 +-1.173,-0.14321,0.68149,1.9352,1.5622,2.355 +-1.1684,-0.14268,0.67887,1.9274,1.5559,2.345 +-1.1638,-0.14215,0.67625,1.9196,1.5496,2.335 +-1.1591,-0.14162,0.67363,1.9117,1.5433,2.325 +-1.1545,-0.14109,0.67101,1.9037,1.537,2.315 +-1.1499,-0.14056,0.66839,1.8958,1.5307,2.305 +-1.1453,-0.14003,0.66577,1.8878,1.5244,2.295 +-1.1406,-0.1395,0.66315,1.8798,1.5181,2.285 +-1.136,-0.13897,0.66053,1.8718,1.5118,2.275 +-1.1314,-0.13844,0.65791,1.8638,1.5055,2.265 +-1.1267,-0.13791,0.65529,1.8558,1.4992,2.255 +-1.1221,-0.13738,0.65267,1.8478,1.4929,2.245 +-1.1175,-0.13685,0.65005,1.8398,1.4866,2.235 +-1.1129,-0.13632,0.64743,1.8319,1.4803,2.225 +-1.1082,-0.13579,0.64481,1.8239,1.474,2.215 +-1.1036,-0.13526,0.64219,1.8159,1.4677,2.205 +-1.099,-0.13474,0.63957,1.8079,1.4614,2.195 +-1.0943,-0.13421,0.63695,1.7999,1.4551,2.185 +-1.0897,-0.13368,0.63433,1.7919,1.4488,2.175 +-1.0851,-0.13315,0.63171,1.7839,1.4425,2.165 +-1.0805,-0.13262,0.62909,1.7759,1.4362,2.155 +-1.0758,-0.13209,0.62648,1.7679,1.4299,2.145 +-1.0712,-0.13156,0.62386,1.7599,1.4236,2.135 +-1.0666,-0.13103,0.62124,1.7519,1.4173,2.125 +-1.0619,-0.1305,0.61862,1.7439,1.411,2.115 +-1.0573,-0.12997,0.616,1.736,1.4047,2.105 +-1.0527,-0.12944,0.61338,1.728,1.3983,2.095 +-1.048,-0.12891,0.61076,1.72,1.3921,2.085 +-1.0434,-0.12838,0.60814,1.712,1.3858,2.075 +-1.0388,-0.12785,0.60552,1.704,1.3794,2.065 +-1.0342,-0.12732,0.6029,1.696,1.3731,2.055 +-1.0295,-0.12679,0.60028,1.688,1.3668,2.045 +-1.0249,-0.12626,0.59766,1.68,1.3605,2.035 +-1.0203,-0.12573,0.59504,1.672,1.3542,2.025 +-1.0156,-0.1252,0.59242,1.664,1.3479,2.015 +-1.011,-0.12467,0.5898,1.656,1.3416,2.005 +-1.0064,-0.12414,0.58718,1.648,1.3353,1.995 +-1.0018,-0.12362,0.58456,1.64,1.329,1.985 +-0.99713,-0.12308,0.58194,1.632,1.3227,1.975 +-0.9925,-0.12256,0.57932,1.624,1.3164,1.965 +-0.98787,-0.12203,0.5767,1.6161,1.3101,1.955 +-0.98325,-0.1215,0.57408,1.6081,1.3038,1.945 +-0.97862,-0.12097,0.57146,1.6001,1.2975,1.935 +-0.97399,-0.12044,0.56884,1.5921,1.2912,1.925 +-0.96936,-0.11991,0.56622,1.5841,1.2849,1.915 +-0.96473,-0.11938,0.5636,1.5761,1.2786,1.905 +-0.9601,-0.11885,0.56098,1.5681,1.2723,1.895 +-0.95547,-0.11832,0.55837,1.5601,1.266,1.885 +-0.95084,-0.11779,0.55575,1.5521,1.2597,1.875 +-0.94621,-0.11726,0.55313,1.5441,1.2534,1.865 +-0.94158,-0.11673,0.55051,1.5361,1.2471,1.855 +-0.93695,-0.1162,0.54789,1.5281,1.2408,1.845 +-0.93233,-0.11567,0.54527,1.5201,1.2345,1.835 +-0.9277,-0.11514,0.54265,1.5122,1.2282,1.825 +-0.92307,-0.11461,0.54003,1.5042,1.2219,1.815 +-0.91844,-0.11408,0.53741,1.4962,1.2155,1.805 +-0.91381,-0.11355,0.53479,1.4882,1.2092,1.795 +-0.90918,-0.11302,0.53217,1.4802,1.2029,1.785 +-0.90455,-0.11249,0.52955,1.4722,1.1966,1.775 +-0.89992,-0.11196,0.52693,1.4642,1.1903,1.765 +-0.89529,-0.11144,0.52431,1.4562,1.184,1.755 +-0.89066,-0.11091,0.52169,1.4482,1.1777,1.745 +-0.88604,-0.11038,0.51907,1.4402,1.1714,1.735 +-0.88141,-0.10985,0.51645,1.4322,1.1651,1.725 +-0.87678,-0.10932,0.51383,1.4242,1.1588,1.715 +-0.87215,-0.10879,0.51121,1.4162,1.1525,1.705 +-0.86752,-0.10826,0.50859,1.4083,1.1462,1.695 +-0.86289,-0.10773,0.50597,1.4003,1.1399,1.685 +-0.85826,-0.1072,0.50335,1.3923,1.1336,1.675 +-0.85363,-0.10667,0.50073,1.3843,1.1273,1.665 +-0.849,-0.10614,0.49811,1.3763,1.121,1.655 +-0.84437,-0.10561,0.49549,1.3683,1.1147,1.645 +-0.83974,-0.10508,0.49288,1.3603,1.1084,1.635 +-0.83512,-0.10455,0.49025,1.3523,1.1021,1.625 +-0.83049,-0.10402,0.48764,1.3443,1.0958,1.615 +-0.82586,-0.10349,0.48502,1.3363,1.0895,1.605 +-0.82123,-0.10296,0.4824,1.3283,1.0832,1.595 +-0.8166,-0.10243,0.47978,1.3203,1.0769,1.585 +-0.81197,-0.1019,0.47716,1.3123,1.0705,1.575 +-0.80734,-0.10137,0.47454,1.3043,1.0642,1.565 +-0.80271,-0.10084,0.47192,1.2963,1.0579,1.555 +-0.79808,-0.10031,0.4693,1.2884,1.0516,1.545 +-0.79345,-0.099784,0.46668,1.2804,1.0453,1.535 +-0.78882,-0.099255,0.46406,1.2724,1.039,1.525 +-0.78419,-0.098725,0.46144,1.2644,1.0327,1.515 +-0.77957,-0.098196,0.45882,1.2564,1.0264,1.505 +-0.77494,-0.097666,0.4562,1.2484,1.0201,1.495 +-0.77031,-0.097137,0.45358,1.2404,1.0138,1.485 +-0.76568,-0.096607,0.45096,1.2324,1.0075,1.475 +-0.76105,-0.096077,0.44834,1.2244,1.0012,1.465 +-0.75642,-0.095548,0.44572,1.2164,0.99491,1.455 +-0.75179,-0.095018,0.4431,1.2084,0.9886,1.445 +-0.74716,-0.094489,0.44048,1.2004,0.9823,1.435 +-0.74253,-0.093959,0.43786,1.1925,0.97599,1.425 +-0.7379,-0.09343,0.43524,1.1845,0.96969,1.415 +-0.73328,-0.0929,0.43262,1.1765,0.96339,1.405 +-0.72865,-0.092371,0.43,1.1685,0.95708,1.395 +-0.72402,-0.091841,0.42738,1.1605,0.95078,1.385 +-0.71939,-0.091312,0.42477,1.1525,0.94447,1.375 +-0.71476,-0.090782,0.42214,1.1445,0.93817,1.365 +-0.71013,-0.090252,0.41953,1.1365,0.93187,1.355 +-0.7055,-0.089723,0.41691,1.1285,0.92556,1.345 +-0.70087,-0.089193,0.41429,1.1205,0.91926,1.335 +-0.69624,-0.088664,0.41167,1.1125,0.91296,1.325 +-0.69161,-0.088134,0.40905,1.1045,0.90665,1.315 +-0.68698,-0.087605,0.40643,1.0965,0.90035,1.305 +-0.68236,-0.087075,0.40381,1.0885,0.89404,1.295 +-0.67773,-0.086545,0.40119,1.0805,0.88774,1.285 +-0.6731,-0.086016,0.39857,1.0726,0.88144,1.275 +-0.66847,-0.085486,0.39595,1.0646,0.87513,1.265 +-0.66384,-0.084957,0.39333,1.0566,0.86883,1.255 +-0.65921,-0.084427,0.39071,1.0486,0.86252,1.245 +-0.65458,-0.083898,0.38809,1.0406,0.85622,1.235 +-0.64995,-0.083368,0.38547,1.0326,0.84992,1.225 +-0.64532,-0.082838,0.38285,1.0246,0.84361,1.215 +-0.64069,-0.082309,0.38023,1.0166,0.83731,1.205 +-0.63606,-0.081779,0.37761,1.0086,0.831,1.195 +-0.63143,-0.08125,0.37499,1.0006,0.8247,1.185 +-0.62681,-0.08072,0.37237,0.99264,0.8184,1.175 +-0.62218,-0.080191,0.36975,0.98464,0.81209,1.165 +-0.61755,-0.079661,0.36713,0.97665,0.80579,1.155 +-0.61292,-0.079131,0.36451,0.96866,0.79949,1.145 +-0.60829,-0.078602,0.36189,0.96067,0.79318,1.135 +-0.60366,-0.078072,0.35927,0.95267,0.78688,1.125 +-0.59903,-0.077543,0.35665,0.94468,0.78057,1.115 +-0.5944,-0.077013,0.35403,0.93669,0.77427,1.105 +-0.58977,-0.076484,0.35142,0.9287,0.76797,1.095 +-0.58514,-0.075954,0.3488,0.9207,0.76166,1.085 +-0.58052,-0.075425,0.34618,0.91271,0.75536,1.075 +-0.57589,-0.074895,0.34356,0.90472,0.74906,1.065 +-0.57126,-0.074366,0.34094,0.89672,0.74275,1.055 +-0.56663,-0.073836,0.33832,0.88873,0.73645,1.045 +-0.562,-0.073306,0.3357,0.88074,0.73014,1.035 +-0.55737,-0.072777,0.33308,0.87275,0.72384,1.025 +-0.55274,-0.072247,0.33046,0.86476,0.71754,1.015 +-0.54811,-0.071718,0.32784,0.85676,0.71123,1.005 +-0.54348,-0.071188,0.32522,0.84877,0.70493,0.99504 +-0.53885,-0.070658,0.3226,0.84078,0.69862,0.98504 +-0.53422,-0.070129,0.31998,0.83278,0.69232,0.97504 +-0.5296,-0.069599,0.31736,0.82479,0.68602,0.96504 +-0.52497,-0.06907,0.31474,0.8168,0.67971,0.95504 +-0.52034,-0.06854,0.31212,0.80881,0.67341,0.94504 +-0.51571,-0.068011,0.3095,0.80081,0.6671,0.93504 +-0.51108,-0.067481,0.30688,0.79282,0.6608,0.92504 +-0.50645,-0.066952,0.30426,0.78483,0.6545,0.91504 +-0.50182,-0.066422,0.30164,0.77684,0.64819,0.90504 +-0.49719,-0.065892,0.29902,0.76884,0.64189,0.89504 +-0.49256,-0.065363,0.2964,0.76085,0.63558,0.88504 +-0.48793,-0.064833,0.29378,0.75286,0.62928,0.87504 +-0.4833,-0.064304,0.29116,0.74487,0.62298,0.86504 +-0.47868,-0.063774,0.28854,0.73687,0.61667,0.85504 +-0.47405,-0.063245,0.28592,0.72888,0.61037,0.84504 +-0.46942,-0.062715,0.28331,0.72089,0.60407,0.83504 +-0.46479,-0.062185,0.28069,0.71289,0.59776,0.82504 +-0.46016,-0.061656,0.27807,0.7049,0.59146,0.81504 +-0.45553,-0.061126,0.27545,0.69691,0.58515,0.80504 +-0.4509,-0.060597,0.27283,0.68892,0.57885,0.79504 +-0.44627,-0.060067,0.27021,0.68093,0.57255,0.78504 +-0.44164,-0.059538,0.26759,0.67293,0.56624,0.77504 +-0.43701,-0.059008,0.26497,0.66494,0.55994,0.76504 +-0.43238,-0.058479,0.26235,0.65695,0.55363,0.75504 +-0.42775,-0.057949,0.25973,0.64895,0.54733,0.74504 +-0.42313,-0.057419,0.25711,0.64096,0.54103,0.73504 +-0.4185,-0.05689,0.25449,0.63297,0.53472,0.72504 +-0.41387,-0.05636,0.25187,0.62498,0.52842,0.71504 +-0.40924,-0.055831,0.24925,0.61698,0.52211,0.70504 +-0.40461,-0.055301,0.24663,0.60899,0.51581,0.69504 +-0.39998,-0.054772,0.24401,0.601,0.50951,0.68504 +-0.39535,-0.054242,0.24139,0.59301,0.5032,0.67504 +-0.39072,-0.053713,0.23877,0.58501,0.4969,0.66504 +-0.38609,-0.053183,0.23615,0.57702,0.4906,0.65504 +-0.38146,-0.052653,0.23353,0.56903,0.48429,0.64504 +-0.37683,-0.052124,0.23091,0.56104,0.47799,0.63504 +-0.37221,-0.051594,0.22829,0.55304,0.47168,0.62504 +-0.36758,-0.051065,0.22567,0.54505,0.46538,0.61504 +-0.36295,-0.050535,0.22305,0.53706,0.45908,0.60504 +-0.35832,-0.050006,0.22043,0.52907,0.45277,0.59504 +-0.35369,-0.049476,0.21782,0.52107,0.44647,0.58504 +-0.34906,-0.048946,0.2152,0.51308,0.44016,0.57504 +-0.34443,-0.048417,0.21258,0.50509,0.43386,0.56504 +-0.3398,-0.047887,0.20996,0.4971,0.42756,0.55504 +-0.33517,-0.047358,0.20734,0.4891,0.42125,0.54504 +-0.33054,-0.046828,0.20472,0.48111,0.41495,0.53504 +-0.32592,-0.046299,0.2021,0.47312,0.40865,0.52504 +-0.32129,-0.045769,0.19948,0.46513,0.40234,0.51504 +-0.31666,-0.04524,0.19686,0.45713,0.39604,0.50504 +-0.31203,-0.04471,0.19424,0.44914,0.38973,0.49504 +-0.3074,-0.04418,0.19162,0.44115,0.38343,0.48504 +-0.30277,-0.043651,0.189,0.43315,0.37713,0.47504 +-0.29814,-0.043121,0.18638,0.42516,0.37082,0.46504 +-0.29351,-0.042592,0.18376,0.41717,0.36452,0.45504 +-0.28888,-0.042062,0.18114,0.40918,0.35822,0.44504 +-0.28425,-0.041532,0.17852,0.40118,0.35191,0.43504 +-0.27962,-0.041003,0.1759,0.39319,0.34561,0.42504 +-0.27499,-0.040473,0.17328,0.3852,0.3393,0.41504 +-0.27037,-0.039944,0.17066,0.37721,0.333,0.40507 +-0.26574,-0.039414,0.16804,0.36921,0.3267,0.39511 +-0.26111,-0.038885,0.16542,0.36122,0.32039,0.38518 +-0.25648,-0.038355,0.1628,0.35323,0.31409,0.37528 +-0.25185,-0.037826,0.16018,0.34524,0.30778,0.36544 +-0.24722,-0.037296,0.15756,0.33724,0.30148,0.35564 +-0.24259,-0.036767,0.15494,0.32925,0.29518,0.3459 +-0.23796,-0.036237,0.15232,0.32126,0.28887,0.33622 +-0.23333,-0.035707,0.14971,0.31327,0.28257,0.32662 +-0.2287,-0.035178,0.14709,0.30527,0.27626,0.31711 +-0.22407,-0.034648,0.14447,0.29728,0.26996,0.30768 +-0.21945,-0.034119,0.14185,0.28929,0.26366,0.29834 +-0.21482,-0.033589,0.13923,0.2813,0.25735,0.28911 +-0.21019,-0.033059,0.13661,0.27332,0.25105,0.27999 +-0.20556,-0.03253,0.13399,0.26536,0.24474,0.27099 +-0.20093,-0.032,0.13137,0.25743,0.23844,0.26212 +-0.1963,-0.031471,0.12875,0.24953,0.23214,0.25338 +-0.19167,-0.030941,0.12613,0.24167,0.22583,0.24478 +-0.18704,-0.030412,0.12351,0.23386,0.21953,0.23633 +-0.18241,-0.029882,0.12089,0.2261,0.21323,0.22803 +-0.17778,-0.029353,0.11827,0.21841,0.20692,0.21988 +-0.17316,-0.028823,0.11565,0.21079,0.20062,0.21188 +-0.16853,-0.028293,0.11303,0.20324,0.19431,0.20403 +-0.1639,-0.027764,0.11041,0.19579,0.18801,0.19633 +-0.15927,-0.027234,0.10779,0.18842,0.18172,0.18878 +-0.15464,-0.026705,0.10517,0.18116,0.17544,0.18138 +-0.15001,-0.026175,0.10255,0.17401,0.16919,0.17413 +-0.14538,-0.025646,0.099933,0.16697,0.16297,0.16703 +-0.14075,-0.025116,0.097313,0.16005,0.15679,0.16008 +-0.13612,-0.024587,0.094693,0.15327,0.15065,0.15328 +-0.13149,-0.024057,0.092074,0.14662,0.14457,0.14663 +-0.12686,-0.023527,0.089454,0.14012,0.13855,0.14013 +-0.12223,-0.022998,0.086834,0.13377,0.1326,0.13378 +-0.11761,-0.022468,0.084215,0.12757,0.12672,0.12757 +-0.11298,-0.021939,0.081595,0.12152,0.12093,0.12152 +-0.10836,-0.021409,0.078976,0.11562,0.11523,0.11562 +-0.10375,-0.02088,0.076356,0.10987,0.10963,0.10987 +-0.099171,-0.02035,0.073736,0.10427,0.10414,0.10427 +-0.094619,-0.01982,0.071117,0.098817,0.098755,0.098822 +-0.090105,-0.019291,0.068497,0.093517,0.093496,0.093521 +-0.085636,-0.018761,0.065878,0.088366,0.088366,0.088371 +-0.081219,-0.018232,0.063258,0.083366,0.083372,0.08337 +-0.076863,-0.017702,0.060638,0.078515,0.078522,0.07852 +-0.072574,-0.017173,0.058019,0.073815,0.073822,0.073819 +-0.068361,-0.016643,0.055399,0.069264,0.069271,0.069268 +-0.06423,-0.016113,0.05278,0.064863,0.064871,0.064868 +-0.060189,-0.015584,0.05016,0.060613,0.06062,0.060617 +-0.056246,-0.015054,0.04754,0.056512,0.05652,0.056517 +-0.052409,-0.014525,0.044925,0.052562,0.052569,0.052566 +-0.048684,-0.013995,0.042322,0.048761,0.048769,0.048766 +-0.045079,-0.013466,0.039737,0.045111,0.045118,0.045115 +-0.041601,-0.012936,0.037179,0.04161,0.041618,0.041615 +-0.038259,-0.012407,0.034655,0.03826,0.038267,0.038264 +-0.03506,-0.011877,0.032172,0.035059,0.035067,0.035063 +-0.032009,-0.011347,0.029739,0.032008,0.032016,0.032013 +-0.029109,-0.010818,0.027362,0.029108,0.029115,0.029112 +-0.026358,-0.010288,0.025049,0.026357,0.026365,0.026362 +-0.023758,-0.0097587,0.022808,0.023757,0.023764,0.023761 +-0.021307,-0.0092292,0.020646,0.021306,0.021314,0.021311 +-0.019007,-0.0086996,0.018571,0.019006,0.019013,0.01901 +-0.016856,-0.00817,0.016589,0.016855,0.016863,0.01686 +-0.014856,-0.0076405,0.014709,0.014855,0.014862,0.014859 +-0.013005,-0.0071109,0.012938,0.013004,0.013012,0.013009 +-0.011305,-0.0065813,0.011284,0.011303,0.011311,0.011308 +-0.009754,-0.0060518,0.0097535,0.009753,0.0097604,0.0097575 +-0.0083514,-0.0055222,0.0083548,0.0083505,0.0083579,0.0083549 +-0.0070902,-0.0049927,0.0070935,0.0070892,0.0070967,0.0070937 +-0.0059628,-0.0044631,0.0059661,0.0059618,0.0059692,0.0059663 +-0.0049616,-0.0039347,0.0049649,0.0049606,0.0049681,0.0049651 +-0.0040792,-0.0034135,0.0040825,0.0040782,0.0040857,0.0040827 +-0.0033081,-0.0029071,0.0033114,0.0033071,0.0033145,0.0033116 +-0.0026407,-0.002423,0.002644,0.0026397,0.0026472,0.0026442 +-0.0020697,-0.0019686,0.002073,0.0020687,0.0020761,0.0020732 +-0.0015874,-0.0015515,0.0015907,0.0015864,0.0015938,0.0015909 +-0.0011864,-0.0011792,0.0011897,0.0011854,0.0011928,0.0011899 +-0.00085913,-0.00085912,0.00086244,0.00085812,0.0008656,0.00086263 +-0.00059817,-0.00059837,0.00060148,0.00059716,0.00060464,0.00060167 +-0.00039599,-0.00039619,0.0003993,0.00039498,0.00040246,0.00039949 +-0.00024509,-0.00024529,0.0002484,0.00024408,0.00025156,0.00024859 +-0.00013796,-0.00013816,0.00014128,0.00013696,0.00014444,0.00014146 +-6.7113e-05,-6.7316e-05,7.0427e-05,6.611e-05,7.3588e-05,7.0612e-05 +-2.5043e-05,-2.5245e-05,2.8357e-05,2.4039e-05,3.1518e-05,2.8542e-05 +-4.2496e-06,-4.4522e-06,7.5638e-06,3.2461e-06,1.0725e-05,7.7486e-06 +2.7661e-06,2.5635e-06,5.4804e-07,-3.7696e-06,3.709e-06,7.3292e-07 +3.4991e-06,3.2964e-06,-1.8489e-07,-4.5026e-06,2.9761e-06,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data4_zy.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data4_zy.offt new file mode 100644 index 00000000..22acba9c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/data4_zy.offt @@ -0,0 +1,40523 @@ +-4.67e-07,3.902e-07,-6.9486e-08,-3.6735e-06,0,1.469e-06 +-4.6699e-07,3.9019e-07,-6.9496e-08,-3.6735e-06,-9.5667e-12,1.469e-06 +8.5836e-07,-9.3516e-07,-1.3949e-06,-2.3481e-06,-1.3254e-06,1.4364e-07 +9.8315e-06,-9.9083e-06,-1.0368e-05,6.625e-06,-1.0298e-05,-8.8295e-06 +3.3952e-05,-3.4029e-05,-3.4489e-05,3.0746e-05,-3.4419e-05,-3.2951e-05 +8.0721e-05,-8.0798e-05,-8.1258e-05,7.7515e-05,-8.1188e-05,-7.9719e-05 +0.00015764,-0.00015772,-0.00015817,0.00015443,-0.0001581,-0.00015664 +0.0002722,-0.00027228,-0.00027274,0.000269,-0.00027267,-0.0002712 +0.00043191,-0.00043199,-0.00043245,0.00042871,-0.00043238,-0.00043091 +0.00064427,-0.00064435,-0.00064481,0.00064107,-0.00064474,-0.00064327 +0.00091678,-0.00091686,-0.00091508,0.00091358,-0.00091725,-0.00091578 +0.0012569,-0.001257,-0.0012385,0.0012537,-0.0012574,-0.0012559 +0.0016722,-0.0016723,-0.0016077,0.001669,-0.0016727,-0.0016712 +0.0021702,-0.0021703,-0.002015,0.002167,-0.0021707,-0.0021692 +0.0027583,-0.0027584,-0.002453,0.0027551,-0.0027588,-0.0027573 +0.003444,-0.0034441,-0.0029142,0.0034408,-0.0034445,-0.003443 +0.0042349,-0.004235,-0.003391,0.0042317,-0.0042354,-0.0042339 +0.0051385,-0.0051386,-0.0038761,0.0051353,-0.0051389,-0.0051375 +0.0061622,-0.0061622,-0.0043628,0.006159,-0.0061626,-0.0061612 +0.0073135,-0.0073136,-0.0048494,0.0073103,-0.007314,-0.0073125 +0.0086,-0.0086001,-0.0053361,0.0085968,-0.0086005,-0.008599 +0.010029,-0.010029,-0.0058228,0.010026,-0.01003,-0.010028 +0.011607,-0.011607,-0.0063095,0.011604,-0.011607,-0.011606 +0.013335,-0.013335,-0.0067961,0.013332,-0.013336,-0.013334 +0.015213,-0.015213,-0.0072828,0.01521,-0.015213,-0.015212 +0.017241,-0.017241,-0.0077695,0.017238,-0.017241,-0.01724 +0.019419,-0.019419,-0.0082562,0.019416,-0.019419,-0.019418 +0.021747,-0.021747,-0.0087429,0.021744,-0.021747,-0.021746 +0.024225,-0.024225,-0.0092295,0.024222,-0.024225,-0.024224 +0.026853,-0.026853,-0.0097162,0.02685,-0.026853,-0.026852 +0.029631,-0.029631,-0.010203,0.029628,-0.029631,-0.02963 +0.032559,-0.032559,-0.01069,0.032556,-0.032559,-0.032558 +0.035637,-0.035637,-0.011176,0.035633,-0.035637,-0.035636 +0.038865,-0.038865,-0.011663,0.038861,-0.038865,-0.038864 +0.042243,-0.042243,-0.01215,0.042239,-0.042243,-0.042242 +0.04577,-0.045771,-0.012636,0.045767,-0.045771,-0.045769 +0.049448,-0.049448,-0.013123,0.049445,-0.049449,-0.049447 +0.053276,-0.053276,-0.01361,0.053273,-0.053277,-0.053275 +0.057254,-0.057254,-0.014096,0.057251,-0.057255,-0.057253 +0.061382,-0.061382,-0.014583,0.061379,-0.061383,-0.061381 +0.06566,-0.06566,-0.01507,0.065657,-0.065661,-0.065659 +0.070088,-0.070088,-0.015556,0.070085,-0.070089,-0.070087 +0.074666,-0.074666,-0.016043,0.074663,-0.074667,-0.074665 +0.079394,-0.079394,-0.01653,0.079391,-0.079395,-0.079393 +0.084272,-0.084272,-0.017016,0.084269,-0.084273,-0.084271 +0.0893,-0.0893,-0.017503,0.089297,-0.089301,-0.089299 +0.094478,-0.094478,-0.01799,0.094475,-0.094479,-0.094474 +0.099806,-0.099806,-0.018476,0.099803,-0.099806,-0.099788 +0.10528,-0.10528,-0.018963,0.10528,-0.10528,-0.10523 +0.11091,-0.11091,-0.01945,0.11091,-0.11091,-0.11081 +0.11669,-0.11669,-0.019936,0.11669,-0.11669,-0.1165 +0.12262,-0.12262,-0.020423,0.12262,-0.12262,-0.12229 +0.1287,-0.1287,-0.02091,0.12869,-0.1287,-0.12819 +0.13492,-0.13492,-0.021396,0.13492,-0.13492,-0.13419 +0.1413,-0.1413,-0.021883,0.1413,-0.1413,-0.14027 +0.14783,-0.14783,-0.02237,0.14783,-0.14783,-0.14643 +0.15451,-0.15451,-0.022856,0.1545,-0.15451,-0.15267 +0.16134,-0.16134,-0.023343,0.16132,-0.16134,-0.15896 +0.16831,-0.16831,-0.02383,0.16828,-0.16831,-0.16532 +0.17544,-0.17544,-0.024317,0.17536,-0.17544,-0.17173 +0.18272,-0.1827,-0.024803,0.18257,-0.18272,-0.17817 +0.19015,-0.1901,-0.02529,0.18989,-0.19015,-0.18466 +0.19773,-0.19762,-0.025777,0.19731,-0.19773,-0.19117 +0.20545,-0.20527,-0.026263,0.20483,-0.20545,-0.1977 +0.21333,-0.21302,-0.02675,0.21244,-0.21333,-0.20424 +0.22136,-0.22087,-0.027237,0.22014,-0.22136,-0.21078 +0.22954,-0.22882,-0.027723,0.22791,-0.22954,-0.21733 +0.23786,-0.23686,-0.02821,0.23575,-0.23787,-0.22388 +0.24634,-0.24497,-0.028697,0.24365,-0.24634,-0.23042 +0.25495,-0.25316,-0.029183,0.25161,-0.25497,-0.23697 +0.2637,-0.26142,-0.02967,0.2596,-0.26373,-0.24352 +0.27257,-0.26973,-0.030157,0.26764,-0.27263,-0.25006 +0.28156,-0.27809,-0.030643,0.27571,-0.28165,-0.25661 +0.29066,-0.2865,-0.03113,0.2838,-0.29079,-0.26316 +0.29986,-0.29494,-0.031617,0.29191,-0.30004,-0.2697 +0.30915,-0.3034,-0.032103,0.30002,-0.30939,-0.27625 +0.31853,-0.31189,-0.03259,0.30814,-0.31884,-0.2828 +0.32799,-0.32039,-0.033077,0.31626,-0.32837,-0.28934 +0.33753,-0.3289,-0.033563,0.32437,-0.33799,-0.29589 +0.34713,-0.3374,-0.03405,0.33249,-0.34767,-0.30244 +0.35678,-0.34591,-0.034537,0.34061,-0.35742,-0.30898 +0.36649,-0.35442,-0.035023,0.34872,-0.36723,-0.31553 +0.37623,-0.36292,-0.03551,0.35684,-0.37709,-0.32208 +0.38601,-0.37143,-0.035997,0.36496,-0.38699,-0.32862 +0.39582,-0.37994,-0.036483,0.37307,-0.39692,-0.33517 +0.40565,-0.38844,-0.03697,0.38119,-0.40689,-0.34171 +0.41549,-0.39695,-0.037457,0.38931,-0.41687,-0.34826 +0.42534,-0.40545,-0.037943,0.39742,-0.42686,-0.35481 +0.43518,-0.41396,-0.03843,0.40554,-0.43686,-0.36135 +0.44503,-0.42247,-0.038917,0.41366,-0.44686,-0.3679 +0.45487,-0.43097,-0.039404,0.42178,-0.45686,-0.37445 +0.46472,-0.43948,-0.03989,0.42989,-0.46686,-0.38099 +0.47456,-0.44799,-0.040377,0.43801,-0.47686,-0.38754 +0.48441,-0.45649,-0.040863,0.44613,-0.48686,-0.39409 +0.49425,-0.465,-0.04135,0.45424,-0.49686,-0.40063 +0.5041,-0.4735,-0.041837,0.46236,-0.50686,-0.40718 +0.51394,-0.48201,-0.042324,0.47048,-0.51686,-0.41373 +0.52379,-0.49052,-0.04281,0.47859,-0.52686,-0.42027 +0.53363,-0.49902,-0.043297,0.48671,-0.53686,-0.42682 +0.54348,-0.50753,-0.043784,0.49483,-0.54686,-0.43337 +0.55332,-0.51603,-0.04427,0.50294,-0.55686,-0.43991 +0.56317,-0.52454,-0.044757,0.51106,-0.56686,-0.44646 +0.57301,-0.53305,-0.045244,0.51918,-0.57686,-0.45301 +0.58286,-0.54155,-0.04573,0.52729,-0.58686,-0.45955 +0.5927,-0.55006,-0.046217,0.53541,-0.59686,-0.4661 +0.60255,-0.55856,-0.046704,0.54353,-0.60686,-0.47265 +0.61239,-0.56707,-0.04719,0.55164,-0.61686,-0.47919 +0.62224,-0.57558,-0.047677,0.55976,-0.62686,-0.48574 +0.63208,-0.58408,-0.048164,0.56788,-0.63686,-0.49229 +0.64193,-0.59259,-0.04865,0.576,-0.64686,-0.49883 +0.65177,-0.6011,-0.049137,0.58411,-0.65686,-0.50538 +0.66162,-0.6096,-0.049624,0.59223,-0.66686,-0.51193 +0.67146,-0.61811,-0.05011,0.60035,-0.67686,-0.51847 +0.68131,-0.62662,-0.050597,0.60846,-0.68686,-0.52502 +0.69115,-0.63512,-0.051084,0.61658,-0.69686,-0.53157 +0.701,-0.64363,-0.05157,0.6247,-0.70686,-0.53811 +0.71085,-0.65213,-0.052057,0.63281,-0.71686,-0.54466 +0.72069,-0.66064,-0.052544,0.64093,-0.72686,-0.5512 +0.73054,-0.66915,-0.05303,0.64905,-0.73686,-0.55775 +0.74038,-0.67765,-0.053517,0.65716,-0.74686,-0.5643 +0.75023,-0.68616,-0.054004,0.66528,-0.75686,-0.57085 +0.76007,-0.69466,-0.05449,0.6734,-0.76686,-0.57739 +0.76992,-0.70317,-0.054977,0.68151,-0.77686,-0.58394 +0.77976,-0.71168,-0.055464,0.68963,-0.78686,-0.59049 +0.78961,-0.72018,-0.055951,0.69775,-0.79686,-0.59703 +0.79945,-0.72869,-0.056437,0.70586,-0.80686,-0.60358 +0.8093,-0.7372,-0.056924,0.71398,-0.81686,-0.61012 +0.81914,-0.7457,-0.057411,0.7221,-0.82686,-0.61667 +0.82899,-0.75421,-0.057897,0.73021,-0.83686,-0.62322 +0.83883,-0.76271,-0.058384,0.73833,-0.84686,-0.62976 +0.84868,-0.77122,-0.058871,0.74645,-0.85686,-0.63631 +0.85852,-0.77973,-0.059357,0.75456,-0.86686,-0.64286 +0.86837,-0.78823,-0.059844,0.76268,-0.87686,-0.6494 +0.87821,-0.79674,-0.060331,0.7708,-0.88686,-0.65595 +0.88806,-0.80524,-0.060817,0.77892,-0.89686,-0.6625 +0.8979,-0.81375,-0.061304,0.78703,-0.90686,-0.66904 +0.90775,-0.82226,-0.061791,0.79515,-0.91686,-0.67559 +0.91759,-0.83076,-0.062277,0.80327,-0.92686,-0.68214 +0.92744,-0.83927,-0.062764,0.81138,-0.93686,-0.68868 +0.93729,-0.84778,-0.063251,0.8195,-0.94686,-0.69523 +0.94713,-0.85628,-0.063737,0.82761,-0.95686,-0.70178 +0.95698,-0.86479,-0.064224,0.83573,-0.96686,-0.70832 +0.96682,-0.87329,-0.064711,0.84385,-0.97686,-0.71487 +0.97667,-0.8818,-0.065197,0.85197,-0.98686,-0.72142 +0.98651,-0.89031,-0.065684,0.86008,-0.99686,-0.72796 +0.99636,-0.89881,-0.066171,0.8682,-1.0069,-0.73451 +1.0062,-0.90732,-0.066657,0.87632,-1.0169,-0.74106 +1.016,-0.91583,-0.067144,0.88443,-1.0269,-0.7476 +1.0259,-0.92433,-0.067631,0.89255,-1.0369,-0.75415 +1.0357,-0.93284,-0.068117,0.90067,-1.0469,-0.7607 +1.0456,-0.94134,-0.068604,0.90878,-1.0569,-0.76724 +1.0554,-0.94985,-0.069091,0.9169,-1.0669,-0.77377 +1.0653,-0.95836,-0.069577,0.92502,-1.0769,-0.78028 +1.0751,-0.96686,-0.070064,0.93313,-1.0869,-0.78676 +1.085,-0.97537,-0.070551,0.94125,-1.0969,-0.79321 +1.0948,-0.98388,-0.071038,0.94937,-1.1069,-0.79961 +1.1046,-0.99238,-0.071524,0.95748,-1.1169,-0.80597 +1.1145,-1.0009,-0.072011,0.9656,-1.1269,-0.81226 +1.1243,-1.0094,-0.072498,0.97372,-1.1369,-0.8185 +1.1342,-1.0179,-0.072984,0.98184,-1.1469,-0.82466 +1.144,-1.0264,-0.073471,0.98995,-1.1569,-0.83074 +1.1539,-1.0349,-0.073957,0.99807,-1.1669,-0.83674 +1.1637,-1.0434,-0.074444,1.0062,-1.1769,-0.84264 +1.1736,-1.0519,-0.074931,1.0143,-1.1869,-0.84843 +1.1834,-1.0604,-0.075418,1.0224,-1.1968,-0.85412 +1.1932,-1.0689,-0.075904,1.0305,-1.2068,-0.85969 +1.2029,-1.0774,-0.076391,1.0387,-1.2168,-0.86514 +1.2126,-1.0859,-0.076878,1.0468,-1.2267,-0.87045 +1.2223,-1.0944,-0.077364,1.0549,-1.2366,-0.87562 +1.2319,-1.1029,-0.077851,1.063,-1.2464,-0.88065 +1.2415,-1.1114,-0.078338,1.0711,-1.2562,-0.88553 +1.251,-1.1198,-0.078824,1.0792,-1.2659,-0.89026 +1.2604,-1.1282,-0.079311,1.0874,-1.2755,-0.89483 +1.2697,-1.1365,-0.079798,1.0955,-1.2851,-0.89926 +1.279,-1.1448,-0.080284,1.1036,-1.2945,-0.90354 +1.2881,-1.153,-0.080771,1.1117,-1.3039,-0.90766 +1.2971,-1.1611,-0.081258,1.1198,-1.3132,-0.91164 +1.306,-1.1692,-0.081744,1.1279,-1.3224,-0.91547 +1.3148,-1.1772,-0.082231,1.1361,-1.3315,-0.91914 +1.3235,-1.1851,-0.082718,1.1442,-1.3404,-0.92267 +1.332,-1.1928,-0.083204,1.1523,-1.3492,-0.92605 +1.3404,-1.2005,-0.083691,1.1604,-1.3579,-0.92928 +1.3486,-1.2081,-0.084178,1.1685,-1.3664,-0.93235 +1.3567,-1.2155,-0.084664,1.1766,-1.3748,-0.93528 +1.3646,-1.2228,-0.085151,1.1847,-1.383,-0.93806 +1.3724,-1.23,-0.085638,1.1929,-1.3911,-0.94068 +1.38,-1.237,-0.086125,1.201,-1.399,-0.94316 +1.3875,-1.2439,-0.086611,1.2091,-1.4068,-0.94549 +1.3949,-1.2507,-0.087098,1.2172,-1.4145,-0.94766 +1.4021,-1.2572,-0.087584,1.2253,-1.422,-0.94969 +1.4091,-1.2637,-0.088071,1.2335,-1.4293,-0.95157 +1.416,-1.2699,-0.088558,1.2416,-1.4365,-0.9533 +1.4227,-1.2761,-0.089044,1.2497,-1.4435,-0.95487 +1.4293,-1.2821,-0.089531,1.2578,-1.4504,-0.9563 +1.4357,-1.2879,-0.090018,1.2659,-1.4571,-0.95758 +1.442,-1.2936,-0.090505,1.274,-1.4637,-0.9587 +1.4481,-1.2991,-0.090991,1.2822,-1.4701,-0.95968 +1.4541,-1.3045,-0.091478,1.2903,-1.4764,-0.96051 +1.4599,-1.3097,-0.091965,1.2984,-1.4825,-0.96118 +1.4656,-1.3148,-0.092451,1.3065,-1.4885,-0.96171 +1.4711,-1.3197,-0.092938,1.3146,-1.4944,-0.96209 +1.4765,-1.3245,-0.093425,1.3227,-1.5,-0.96232 +1.4818,-1.3291,-0.093911,1.3308,-1.5056,-0.96239 +1.4868,-1.3336,-0.094395,1.3388,-1.5109,-0.96232 +1.4918,-1.3379,-0.09487,1.3468,-1.5162,-0.9621 +1.4966,-1.3421,-0.095327,1.3548,-1.5213,-0.96172 +1.5012,-1.3462,-0.09576,1.3627,-1.5262,-0.9612 +1.5057,-1.35,-0.096161,1.3705,-1.531,-0.96053 +1.51,-1.3538,-0.096522,1.3783,-1.5356,-0.95971 +1.5142,-1.3574,-0.096836,1.386,-1.5401,-0.95873 +1.5182,-1.3608,-0.097096,1.3936,-1.5444,-0.95761 +1.5221,-1.3641,-0.097293,1.4011,-1.5486,-0.95634 +1.5258,-1.3672,-0.097421,1.4085,-1.5526,-0.95491 +1.5294,-1.3702,-0.097472,1.4158,-1.5565,-0.95334 +1.5328,-1.373,-0.097438,1.423,-1.5602,-0.95162 +1.5361,-1.3757,-0.097312,1.4301,-1.5638,-0.94974 +1.5393,-1.3782,-0.097087,1.4371,-1.5673,-0.94772 +1.5422,-1.3806,-0.096754,1.4439,-1.5705,-0.94555 +1.5451,-1.3828,-0.096307,1.4506,-1.5737,-0.94323 +1.5477,-1.3849,-0.095743,1.4571,-1.5767,-0.94075 +1.5503,-1.3868,-0.095069,1.4635,-1.5795,-0.93813 +1.5527,-1.3886,-0.094292,1.4697,-1.5822,-0.93536 +1.5549,-1.3902,-0.093419,1.4758,-1.5847,-0.93243 +1.557,-1.3917,-0.092459,1.4818,-1.5871,-0.92936 +1.5589,-1.393,-0.091419,1.4876,-1.5893,-0.92614 +1.5607,-1.3942,-0.090305,1.4934,-1.5914,-0.92276 +1.5623,-1.3953,-0.089127,1.499,-1.5933,-0.91924 +1.5638,-1.3962,-0.087891,1.5046,-1.5951,-0.91557 +1.5651,-1.3969,-0.086604,1.51,-1.5967,-0.91175 +1.5663,-1.3976,-0.085275,1.5154,-1.5982,-0.90777 +1.5674,-1.3981,-0.08391,1.5207,-1.5996,-0.90366 +1.5682,-1.3985,-0.082518,1.5259,-1.6007,-0.8994 +1.569,-1.3989,-0.081105,1.531,-1.6018,-0.89502 +1.5696,-1.3991,-0.07968,1.5361,-1.6027,-0.89051 +1.5701,-1.3993,-0.078249,1.5412,-1.6035,-0.88588 +1.5704,-1.3994,-0.07682,1.5462,-1.6041,-0.88115 +1.5707,-1.3994,-0.075402,1.5512,-1.6047,-0.87632 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3991,-0.072642,1.5612,-1.6054,-0.86641 +1.5708,-1.399,-0.071288,1.5662,-1.6057,-0.86132 +1.5706,-1.3988,-0.069958,1.5711,-1.6058,-0.85614 +1.5704,-1.3985,-0.068651,1.576,-1.6059,-0.85087 +1.57,-1.3982,-0.067369,1.5809,-1.6058,-0.84552 +1.5696,-1.3978,-0.06611,1.5858,-1.6057,-0.84009 +1.569,-1.3973,-0.064874,1.5906,-1.6054,-0.83457 +1.5684,-1.3968,-0.063662,1.5955,-1.6051,-0.82898 +1.5677,-1.3963,-0.062472,1.6003,-1.6046,-0.8233 +1.5668,-1.3957,-0.061304,1.6051,-1.6041,-0.81754 +1.5659,-1.395,-0.060158,1.6099,-1.6035,-0.8117 +1.5649,-1.3943,-0.059035,1.6146,-1.6027,-0.80578 +1.5638,-1.3936,-0.057933,1.6194,-1.6019,-0.79978 +1.5626,-1.3927,-0.056852,1.6241,-1.601,-0.7937 +1.5612,-1.3918,-0.055792,1.6288,-1.5999,-0.78754 +1.5598,-1.3909,-0.054753,1.6335,-1.5988,-0.7813 +1.5583,-1.3899,-0.053735,1.6381,-1.5976,-0.77499 +1.5567,-1.3889,-0.052736,1.6427,-1.5963,-0.7686 +1.5551,-1.3878,-0.051758,1.6473,-1.5949,-0.76213 +1.5533,-1.3866,-0.0508,1.6519,-1.5933,-0.75559 +1.5514,-1.3854,-0.04986,1.6565,-1.5917,-0.74897 +1.5494,-1.3841,-0.04894,1.661,-1.59,-0.74228 +1.5474,-1.3828,-0.048039,1.6655,-1.5882,-0.73551 +1.5452,-1.3814,-0.047156,1.67,-1.5863,-0.72867 +1.5429,-1.3799,-0.046292,1.6744,-1.5843,-0.72176 +1.5406,-1.3784,-0.045445,1.6788,-1.5822,-0.71478 +1.5382,-1.3769,-0.044616,1.6832,-1.58,-0.70773 +1.5356,-1.3753,-0.043805,1.6876,-1.5777,-0.7006 +1.533,-1.3736,-0.043011,1.6919,-1.5753,-0.69341 +1.5303,-1.3719,-0.042233,1.6962,-1.5728,-0.68615 +1.5275,-1.3701,-0.041472,1.7005,-1.5703,-0.67882 +1.5246,-1.3682,-0.040728,1.7047,-1.5676,-0.67143 +1.5216,-1.3663,-0.039999,1.7089,-1.5648,-0.66397 +1.5186,-1.3644,-0.039286,1.7131,-1.562,-0.65644 +1.5154,-1.3624,-0.038588,1.7172,-1.559,-0.64885 +1.5122,-1.3603,-0.037906,1.7213,-1.556,-0.64119 +1.5088,-1.3581,-0.037238,1.7254,-1.5528,-0.63347 +1.5054,-1.356,-0.036585,1.7294,-1.5496,-0.62569 +1.5019,-1.3537,-0.035946,1.7334,-1.5462,-0.61785 +1.4983,-1.3514,-0.035322,1.7374,-1.5428,-0.60995 +1.4946,-1.349,-0.034711,1.7413,-1.5393,-0.60199 +1.4908,-1.3466,-0.034113,1.7452,-1.5357,-0.59397 +1.487,-1.3441,-0.033528,1.749,-1.532,-0.58589 +1.4831,-1.3416,-0.032956,1.7528,-1.5282,-0.57776 +1.479,-1.339,-0.032397,1.7566,-1.5243,-0.56957 +1.4749,-1.3363,-0.03185,1.7603,-1.5203,-0.56132 +1.4707,-1.3336,-0.031315,1.764,-1.5163,-0.55302 +1.4664,-1.3308,-0.030792,1.7677,-1.5121,-0.54467 +1.4621,-1.328,-0.03028,1.7713,-1.5078,-0.53627 +1.4576,-1.3251,-0.029779,1.7748,-1.5035,-0.52781 +1.4531,-1.3221,-0.02929,1.7783,-1.4991,-0.5193 +1.4485,-1.3191,-0.02881,1.7818,-1.4946,-0.51075 +1.4438,-1.316,-0.028342,1.7852,-1.49,-0.50214 +1.4391,-1.3129,-0.027883,1.7886,-1.4853,-0.49349 +1.4342,-1.3097,-0.027434,1.792,-1.4805,-0.4848 +1.4293,-1.3064,-0.026994,1.7953,-1.4756,-0.47605 +1.4243,-1.3031,-0.026564,1.7985,-1.4707,-0.46727 +1.4192,-1.2997,-0.026142,1.8017,-1.4656,-0.45843 +1.414,-1.2963,-0.02573,1.8049,-1.4605,-0.44956 +1.4088,-1.2928,-0.025325,1.808,-1.4553,-0.44065 +1.4035,-1.2893,-0.024929,1.811,-1.45,-0.43169 +1.3981,-1.2857,-0.024541,1.814,-1.4446,-0.4227 +1.3926,-1.282,-0.02416,1.817,-1.4391,-0.41366 +1.3871,-1.2782,-0.023787,1.8199,-1.4336,-0.40459 +1.3815,-1.2744,-0.023421,1.8227,-1.428,-0.39549 +1.3758,-1.2706,-0.023061,1.8255,-1.4223,-0.38635 +1.37,-1.2667,-0.022709,1.8283,-1.4165,-0.37717 +1.3642,-1.2627,-0.022362,1.8309,-1.4106,-0.36796 +1.3583,-1.2587,-0.022022,1.8336,-1.4046,-0.35872 +1.3523,-1.2546,-0.021687,1.8362,-1.3986,-0.34945 +1.3463,-1.2504,-0.021358,1.8387,-1.3925,-0.34014 +1.3402,-1.2462,-0.021035,1.8412,-1.3863,-0.33081 +1.334,-1.2419,-0.020716,1.8436,-1.38,-0.32145 +1.3277,-1.2376,-0.020403,1.8459,-1.3737,-0.31207 +1.3214,-1.2332,-0.020093,1.8482,-1.3673,-0.30265 +1.315,-1.2287,-0.019789,1.8505,-1.3608,-0.29322 +1.3086,-1.2242,-0.019488,1.8527,-1.3542,-0.28376 +1.302,-1.2196,-0.019191,1.8548,-1.3475,-0.27427 +1.2955,-1.215,-0.018898,1.8568,-1.3408,-0.26477 +1.2888,-1.2103,-0.018608,1.8588,-1.334,-0.25524 +1.2821,-1.2055,-0.018322,1.8608,-1.3272,-0.2457 +1.2753,-1.2007,-0.018038,1.8627,-1.3202,-0.23613 +1.2685,-1.1958,-0.017757,1.8645,-1.3132,-0.22655 +1.2616,-1.1909,-0.017479,1.8662,-1.3061,-0.21696 +1.2546,-1.1859,-0.017203,1.8679,-1.299,-0.20734 +1.2476,-1.1808,-0.016929,1.8696,-1.2917,-0.19772 +1.2405,-1.1757,-0.016657,1.8711,-1.2844,-0.18808 +1.2333,-1.1705,-0.016386,1.8726,-1.2771,-0.17842 +1.2261,-1.1653,-0.016117,1.8741,-1.2697,-0.16876 +1.2188,-1.16,-0.015849,1.8754,-1.2622,-0.15909 +1.2115,-1.1546,-0.015582,1.8767,-1.2546,-0.1494 +1.2041,-1.1492,-0.015316,1.878,-1.247,-0.13971 +1.1967,-1.1437,-0.015051,1.8791,-1.2393,-0.13002 +1.1892,-1.1382,-0.014785,1.8802,-1.2315,-0.12031 +1.1816,-1.1326,-0.014521,1.8813,-1.2237,-0.11061 +1.174,-1.1269,-0.014256,1.8822,-1.2158,-0.10089 +1.1664,-1.1212,-0.013991,1.8831,-1.2079,-0.091179 +1.1586,-1.1154,-0.013725,1.884,-1.1999,-0.081463 +1.1509,-1.1096,-0.013459,1.8847,-1.1918,-0.071746 +1.143,-1.1037,-0.013192,1.8854,-1.1837,-0.062029 +1.1352,-1.0978,-0.012925,1.886,-1.1755,-0.052313 +1.1272,-1.0917,-0.012656,1.8866,-1.1673,-0.042599 +1.1193,-1.0857,-0.012386,1.887,-1.159,-0.032889 +1.1113,-1.0795,-0.012114,1.8874,-1.1506,-0.023183 +1.1032,-1.0734,-0.011841,1.8877,-1.1422,-0.013482 +1.0951,-1.0671,-0.011566,1.888,-1.1338,-0.0037875 +1.0869,-1.0608,-0.011289,1.8882,-1.1252,0.0059 +1.0787,-1.0544,-0.01101,1.8883,-1.1167,0.015579 +1.0704,-1.048,-0.010729,1.8883,-1.1081,0.02525 +1.0621,-1.0415,-0.010445,1.8883,-1.0994,0.03491 +1.0538,-1.035,-0.010159,1.8881,-1.0907,0.04456 +1.0454,-1.0284,-0.0098697,1.8879,-1.0819,0.054197 +1.0369,-1.0218,-0.0095777,1.8877,-1.0731,0.063822 +1.0284,-1.0151,-0.0092826,1.8873,-1.0642,0.073433 +1.0199,-1.0083,-0.0089843,1.8869,-1.0553,0.083029 +1.0113,-1.0015,-0.0086826,1.8864,-1.0464,0.09261 +1.0027,-0.99461,-0.0083775,1.8858,-1.0374,0.10217 +0.99408,-0.98768,-0.0080687,1.8852,-1.0283,0.11172 +0.98539,-0.9807,-0.0077562,1.8844,-1.0192,0.12125 +0.97666,-0.97366,-0.0074398,1.8836,-1.0101,0.13076 +0.96789,-0.96656,-0.0071194,1.8827,-1.0009,0.14025 +0.95908,-0.95941,-0.0067948,1.8818,-0.9917,0.14972 +0.95024,-0.95221,-0.0064659,1.8807,-0.98245,0.15916 +0.94136,-0.94495,-0.0061326,1.8796,-0.97316,0.16859 +0.93244,-0.93764,-0.0057948,1.8784,-0.96383,0.17799 +0.92349,-0.93027,-0.0054524,1.8771,-0.95446,0.18737 +0.91451,-0.92285,-0.0051052,1.8757,-0.94506,0.19672 +0.90549,-0.91538,-0.0047532,1.8743,-0.93562,0.20605 +0.89643,-0.90785,-0.0043962,1.8727,-0.92615,0.21535 +0.88734,-0.90027,-0.004034,1.8711,-0.91664,0.22462 +0.87823,-0.89264,-0.0036667,1.8694,-0.9071,0.23386 +0.86907,-0.88496,-0.0032941,1.8677,-0.89753,0.24308 +0.85989,-0.87723,-0.0029161,1.8658,-0.88793,0.25226 +0.85068,-0.86945,-0.0025326,1.8639,-0.8783,0.26142 +0.84144,-0.86161,-0.0021436,1.8619,-0.86865,0.27055 +0.83216,-0.85373,-0.0017488,1.8598,-0.85896,0.27964 +0.82286,-0.84579,-0.0013482,1.8576,-0.84925,0.2887 +0.81354,-0.83781,-0.00094182,1.8553,-0.83951,0.29773 +0.80418,-0.82977,-0.00052945,1.853,-0.82974,0.30672 +0.7948,-0.82169,-0.00011104,1.8506,-0.81996,0.31568 +0.78539,-0.81356,0.00031349,1.848,-0.81015,0.3246 +0.77595,-0.80538,0.00074423,1.8455,-0.80031,0.33349 +0.76649,-0.79716,0.0011812,1.8428,-0.79046,0.34234 +0.75701,-0.78888,0.0016246,1.84,-0.78058,0.35116 +0.7475,-0.78056,0.0020744,1.8372,-0.77069,0.35994 +0.73797,-0.7722,0.0025308,1.8343,-0.76078,0.36868 +0.72841,-0.76379,0.0029936,1.8313,-0.75085,0.37738 +0.71884,-0.75533,0.0034632,1.8282,-0.74091,0.38604 +0.70924,-0.74683,0.0039394,1.825,-0.73094,0.39466 +0.69962,-0.73829,0.0044225,1.8218,-0.72097,0.40324 +0.68998,-0.7297,0.0049123,1.8184,-0.71098,0.41178 +0.68032,-0.72106,0.0054091,1.815,-0.70098,0.42028 +0.67064,-0.71239,0.0059128,1.8115,-0.69097,0.42874 +0.66094,-0.70367,0.0064236,1.8079,-0.68094,0.43715 +0.65123,-0.69491,0.0069414,1.8043,-0.67091,0.44553 +0.64149,-0.68611,0.0074663,1.8005,-0.66087,0.45385 +0.63174,-0.67727,0.0079984,1.7967,-0.65082,0.46214 +0.62198,-0.66839,0.0085378,1.7928,-0.64076,0.47038 +0.61219,-0.65947,0.0090844,1.7888,-0.6307,0.47858 +0.60239,-0.65051,0.0096384,1.7847,-0.62064,0.48673 +0.59258,-0.64151,0.0102,1.7805,-0.61057,0.49483 +0.58275,-0.63248,0.010768,1.7763,-0.60049,0.50289 +0.57291,-0.6234,0.011345,1.772,-0.59042,0.51091 +0.56305,-0.61429,0.011928,1.7676,-0.58034,0.51887 +0.55319,-0.60515,0.01252,1.7631,-0.57027,0.5268 +0.5433,-0.59597,0.013118,1.7585,-0.56019,0.53467 +0.53341,-0.58675,0.013725,1.7539,-0.55012,0.5425 +0.52351,-0.5775,0.014339,1.7491,-0.54005,0.55027 +0.51359,-0.56822,0.014961,1.7443,-0.52998,0.558 +0.50367,-0.5589,0.01559,1.7394,-0.51992,0.56569 +0.49373,-0.54955,0.016228,1.7345,-0.50986,0.57332 +0.48379,-0.54017,0.016873,1.7294,-0.49982,0.58091 +0.47383,-0.53076,0.017526,1.7243,-0.48977,0.58844 +0.46387,-0.52132,0.018186,1.7191,-0.47974,0.59593 +0.4539,-0.51184,0.018855,1.7138,-0.46972,0.60337 +0.44393,-0.50234,0.019532,1.7084,-0.45971,0.61076 +0.43394,-0.49282,0.020216,1.703,-0.44971,0.6181 +0.42395,-0.48326,0.020908,1.6974,-0.43972,0.62539 +0.41396,-0.47368,0.021609,1.6918,-0.42974,0.63263 +0.40396,-0.46407,0.022317,1.6862,-0.41978,0.63981 +0.39395,-0.45443,0.023034,1.6804,-0.40984,0.64695 +0.38394,-0.44477,0.023758,1.6746,-0.39991,0.65404 +0.37392,-0.43509,0.024491,1.6687,-0.39,0.66108 +0.36391,-0.42538,0.025232,1.6627,-0.38011,0.66807 +0.35388,-0.41565,0.025981,1.6566,-0.37023,0.67501 +0.34386,-0.4059,0.026738,1.6505,-0.36038,0.6819 +0.33383,-0.39613,0.027503,1.6443,-0.35054,0.68874 +0.3238,-0.38634,0.028276,1.638,-0.34073,0.69552 +0.31377,-0.37653,0.029058,1.6316,-0.33094,0.70226 +0.30374,-0.3667,0.029848,1.6252,-0.32118,0.70895 +0.29371,-0.35685,0.030646,1.6187,-0.31144,0.71558 +0.28368,-0.34698,0.031452,1.6121,-0.30173,0.72217 +0.27365,-0.3371,0.032267,1.6055,-0.29204,0.7287 +0.26362,-0.32721,0.033089,1.5988,-0.28238,0.73519 +0.25359,-0.31729,0.033921,1.592,-0.27274,0.74163 +0.24356,-0.30737,0.03476,1.5851,-0.26314,0.74801 +0.23354,-0.29743,0.035608,1.5782,-0.25357,0.75435 +0.22351,-0.28748,0.036465,1.5712,-0.24403,0.76064 +0.21349,-0.27752,0.03733,1.5641,-0.23451,0.76687 +0.20348,-0.26755,0.038203,1.557,-0.22504,0.77306 +0.19346,-0.25757,0.039084,1.5498,-0.21559,0.7792 +0.18346,-0.24758,0.039975,1.5425,-0.20618,0.78529 +0.17345,-0.23758,0.040873,1.5352,-0.19681,0.79133 +0.16345,-0.22757,0.04178,1.5278,-0.18747,0.79733 +0.15346,-0.21756,0.042696,1.5203,-0.17817,0.80327 +0.14347,-0.20754,0.04362,1.5128,-0.16891,0.80917 +0.13348,-0.19752,0.044553,1.5052,-0.15968,0.81502 +0.12351,-0.1875,0.045494,1.4976,-0.1505,0.82082 +0.11354,-0.17747,0.046444,1.4898,-0.14136,0.82657 +0.10358,-0.16744,0.047403,1.4821,-0.13225,0.83228 +0.093621,-0.15741,0.04837,1.4742,-0.12319,0.83794 +0.083674,-0.14738,0.049347,1.4663,-0.11418,0.84356 +0.073735,-0.13735,0.050331,1.4584,-0.1052,0.84913 +0.063805,-0.12733,0.051325,1.4503,-0.096273,0.85465 +0.053884,-0.1173,0.052327,1.4423,-0.08739,0.86013 +0.043972,-0.10728,0.053338,1.4341,-0.078553,0.86556 +0.03407,-0.097265,0.054358,1.4259,-0.069763,0.87095 +0.024178,-0.087254,0.055387,1.4177,-0.061021,0.8763 +0.014296,-0.07725,0.056424,1.4094,-0.052328,0.8816 +0.0044257,-0.067253,0.057471,1.401,-0.043684,0.88686 +-0.0054339,-0.057265,0.058526,1.3926,-0.035091,0.89207 +-0.015282,-0.047286,0.059591,1.3842,-0.026548,0.89725 +-0.025118,-0.037317,0.060665,1.3757,-0.018057,0.90238 +-0.034942,-0.027359,0.061747,1.3671,-0.0096192,0.90747 +-0.044754,-0.017414,0.062839,1.3585,-0.0012343,0.91252 +-0.054552,-0.0074811,0.06394,1.3498,0.0070965,0.91753 +-0.064338,0.0024375,0.06505,1.3411,0.015372,0.9225 +-0.074109,0.012341,0.066169,1.3324,0.023593,0.92743 +-0.083867,0.022229,0.067297,1.3236,0.031757,0.93232 +-0.093611,0.0321,0.068435,1.3147,0.039864,0.93717 +-0.10334,0.041953,0.069582,1.3058,0.047914,0.94199 +-0.11305,0.051787,0.070739,1.2969,0.055905,0.94676 +-0.12275,0.061602,0.071905,1.2879,0.063837,0.9515 +-0.13244,0.071396,0.07308,1.2789,0.071709,0.95621 +-0.1421,0.081168,0.074265,1.2698,0.07952,0.96088 +-0.15176,0.090918,0.07546,1.2607,0.087271,0.96551 +-0.16139,0.10064,0.076664,1.2515,0.094959,0.97011 +-0.17101,0.11035,0.077878,1.2424,0.10259,0.97468 +-0.18061,0.12002,0.079101,1.2331,0.11015,0.97921 +-0.19019,0.12967,0.080335,1.2239,0.11765,0.98371 +-0.19976,0.13929,0.081578,1.2146,0.12508,0.98818 +-0.20931,0.14889,0.082831,1.2052,0.13245,0.99261 +-0.21884,0.15845,0.084094,1.1959,0.13975,0.99702 +-0.22835,0.16798,0.085368,1.1865,0.14699,1.0014 +-0.23784,0.17749,0.086651,1.1771,0.15416,1.0057 +-0.24731,0.18696,0.087945,1.1676,0.16126,1.0101 +-0.25676,0.19639,0.089248,1.1581,0.1683,1.0143 +-0.2662,0.2058,0.090563,1.1486,0.17526,1.0186 +-0.27561,0.21517,0.091887,1.139,0.18216,1.0228 +-0.285,0.2245,0.093222,1.1294,0.18899,1.0271 +-0.29437,0.23379,0.094568,1.1198,0.19574,1.0312 +-0.30372,0.24305,0.095924,1.1102,0.20243,1.0354 +-0.31305,0.25226,0.097291,1.1006,0.20904,1.0395 +-0.32236,0.26144,0.098669,1.0909,0.21558,1.0436 +-0.33164,0.27058,0.10006,1.0812,0.22205,1.0477 +-0.3409,0.27967,0.10146,1.0715,0.22844,1.0518 +-0.35014,0.28872,0.10287,1.0617,0.23477,1.0558 +-0.35936,0.29773,0.10429,1.052,0.24101,1.0599 +-0.36855,0.3067,0.10572,1.0422,0.24719,1.0639 +-0.37772,0.31561,0.10717,1.0324,0.25328,1.0679 +-0.38687,0.32448,0.10862,1.0226,0.2593,1.0718 +-0.39599,0.33331,0.11009,1.0128,0.26525,1.0758 +-0.40508,0.34208,0.11157,1.0029,0.27112,1.0797 +-0.41415,0.35081,0.11306,0.99309,0.27691,1.0836 +-0.4232,0.35948,0.11456,0.98322,0.28262,1.0876 +-0.43222,0.36811,0.11607,0.97335,0.28826,1.0914 +-0.44122,0.37668,0.1176,0.96347,0.29382,1.0953 +-0.45019,0.3852,0.11914,0.95357,0.2993,1.0992 +-0.45913,0.39366,0.12069,0.94367,0.3047,1.103 +-0.46805,0.40207,0.12225,0.93377,0.31002,1.1069 +-0.47694,0.41043,0.12383,0.92385,0.31526,1.1107 +-0.4858,0.41873,0.12541,0.91394,0.32042,1.1145 +-0.49464,0.42697,0.12701,0.90402,0.32549,1.1183 +-0.50344,0.43515,0.12863,0.89409,0.33049,1.1221 +-0.51222,0.44327,0.13025,0.88417,0.33541,1.1259 +-0.52097,0.45133,0.13189,0.87424,0.34024,1.1297 +-0.52969,0.45934,0.13355,0.86432,0.345,1.1335 +-0.53839,0.46728,0.13521,0.8544,0.34967,1.1373 +-0.54705,0.47515,0.13689,0.84448,0.35425,1.1411 +-0.55569,0.48297,0.13858,0.83456,0.35876,1.1448 +-0.56429,0.49072,0.14029,0.82465,0.36318,1.1486 +-0.57286,0.4984,0.14201,0.81474,0.36752,1.1524 +-0.58141,0.50602,0.14374,0.80484,0.37177,1.1561 +-0.58992,0.51357,0.14549,0.79495,0.37594,1.1599 +-0.5984,0.52105,0.14725,0.78507,0.38002,1.1637 +-0.60685,0.52847,0.14903,0.7752,0.38402,1.1674 +-0.61527,0.53581,0.15082,0.76534,0.38794,1.1712 +-0.62366,0.54309,0.15263,0.75549,0.39177,1.175 +-0.63201,0.55029,0.15445,0.74566,0.39551,1.1787 +-0.64033,0.55742,0.15628,0.73583,0.39917,1.1825 +-0.64862,0.56449,0.15813,0.72603,0.40275,1.1863 +-0.65687,0.57147,0.16,0.71624,0.40623,1.1901 +-0.6651,0.57839,0.16188,0.70647,0.40964,1.1939 +-0.67328,0.58523,0.16377,0.69671,0.41295,1.1977 +-0.68144,0.59199,0.16569,0.68698,0.41618,1.2015 +-0.68956,0.59868,0.16761,0.67726,0.41932,1.2053 +-0.69764,0.60529,0.16956,0.66757,0.42238,1.2091 +-0.70569,0.61182,0.17152,0.6579,0.42535,1.213 +-0.7137,0.61828,0.17349,0.64825,0.42823,1.2168 +-0.72168,0.62465,0.17549,0.63863,0.43102,1.2207 +-0.72962,0.63095,0.17749,0.62903,0.43373,1.2246 +-0.73752,0.63717,0.17952,0.61946,0.43635,1.2285 +-0.74539,0.6433,0.18156,0.60991,0.43889,1.2324 +-0.75322,0.64936,0.18362,0.6004,0.44133,1.2363 +-0.76102,0.65533,0.1857,0.59091,0.44369,1.2402 +-0.76877,0.66122,0.18779,0.58145,0.44596,1.2441 +-0.77649,0.66703,0.18991,0.57203,0.44815,1.2481 +-0.78417,0.67275,0.19204,0.56263,0.45024,1.2521 +-0.79181,0.67839,0.19418,0.55327,0.45225,1.2561 +-0.79941,0.68394,0.19635,0.54394,0.45417,1.2601 +-0.80698,0.68941,0.19853,0.53465,0.45601,1.2641 +-0.8145,0.69479,0.20073,0.52539,0.45776,1.2682 +-0.82198,0.70008,0.20295,0.51617,0.45942,1.2723 +-0.82942,0.70529,0.20519,0.50699,0.46099,1.2764 +-0.83683,0.71041,0.20745,0.49785,0.46247,1.2805 +-0.84419,0.71544,0.20973,0.48874,0.46387,1.2846 +-0.85151,0.72038,0.21203,0.47968,0.46518,1.2888 +-0.85878,0.72524,0.21434,0.47066,0.46641,1.293 +-0.86602,0.73,0.21668,0.46167,0.46754,1.2972 +-0.87321,0.73467,0.21903,0.45274,0.46859,1.3014 +-0.88037,0.73926,0.22141,0.44384,0.46956,1.3057 +-0.88747,0.74375,0.2238,0.43499,0.47043,1.31 +-0.89454,0.74815,0.22622,0.42619,0.47122,1.3143 +-0.90156,0.75246,0.22865,0.41743,0.47193,1.3187 +-0.90854,0.75667,0.23111,0.40872,0.47255,1.323 +-0.91547,0.7608,0.23359,0.40005,0.47308,1.3274 +-0.92236,0.76483,0.23608,0.39144,0.47352,1.3319 +-0.9292,0.76876,0.2386,0.38287,0.47388,1.3363 +-0.936,0.77261,0.24114,0.37436,0.47416,1.3408 +-0.94275,0.77636,0.24371,0.36589,0.47435,1.3453 +-0.94945,0.78001,0.24629,0.35748,0.47445,1.3499 +-0.95611,0.78357,0.2489,0.34912,0.47447,1.3545 +-0.96272,0.78704,0.25152,0.34082,0.47441,1.3591 +-0.96929,0.7904,0.25417,0.33256,0.47426,1.3638 +-0.97581,0.79368,0.25684,0.32436,0.47403,1.3684 +-0.98228,0.79686,0.25954,0.31622,0.47371,1.3732 +-0.9887,0.79994,0.26225,0.30813,0.47331,1.3779 +-0.99507,0.80293,0.26499,0.3001,0.47283,1.3827 +-1.0014,0.80582,0.26776,0.29213,0.47227,1.3875 +-1.0077,0.80861,0.27054,0.28422,0.47162,1.3924 +-1.0139,0.81131,0.27335,0.27636,0.47089,1.3972 +-1.0201,0.81391,0.27618,0.26857,0.47008,1.4022 +-1.0262,0.81641,0.27904,0.26083,0.46918,1.4071 +-1.0323,0.81882,0.28192,0.25315,0.46821,1.4121 +-1.0383,0.82112,0.28483,0.24554,0.46715,1.4172 +-1.0443,0.82333,0.28775,0.23799,0.46602,1.4222 +-1.0502,0.82545,0.29071,0.2305,0.4648,1.4274 +-1.0561,0.82746,0.29368,0.22307,0.4635,1.4325 +-1.0619,0.82938,0.29668,0.21571,0.46213,1.4377 +-1.0676,0.8312,0.29971,0.20841,0.46067,1.4429 +-1.0733,0.83293,0.30276,0.20117,0.45914,1.4482 +-1.079,0.83455,0.30584,0.194,0.45753,1.4535 +-1.0846,0.83608,0.30894,0.1869,0.45584,1.4588 +-1.0902,0.83751,0.31206,0.17986,0.45408,1.4642 +-1.0956,0.83884,0.31522,0.17289,0.45224,1.4696 +-1.1011,0.84008,0.31839,0.16598,0.45032,1.4751 +-1.1065,0.84121,0.3216,0.15915,0.44832,1.4806 +-1.1118,0.84225,0.32483,0.15238,0.44625,1.4862 +-1.1171,0.8432,0.32808,0.14568,0.44411,1.4918 +-1.1223,0.84404,0.33136,0.13905,0.44189,1.4974 +-1.1274,0.84479,0.33467,0.13248,0.4396,1.503 +-1.1325,0.84544,0.338,0.12599,0.43723,1.5088 +-1.1376,0.846,0.34136,0.11957,0.43479,1.5145 +-1.1426,0.84646,0.34475,0.11321,0.43228,1.5203 +-1.1475,0.84682,0.34816,0.10693,0.4297,1.5261 +-1.1524,0.84708,0.35161,0.10072,0.42705,1.532 +-1.1572,0.84725,0.35507,0.094582,0.42432,1.5379 +-1.1619,0.84733,0.35857,0.088514,0.42153,1.5439 +-1.1666,0.8473,0.36209,0.082518,0.41867,1.5499 +-1.1713,0.84719,0.36564,0.076594,0.41573,1.5559 +-1.1758,0.84698,0.36922,0.070742,0.41273,1.562 +-1.1803,0.84667,0.37282,0.064963,0.40967,1.5682 +-1.1848,0.84627,0.37645,0.059257,0.40653,1.5743 +-1.1892,0.84577,0.38011,0.053624,0.40333,1.5805 +-1.1935,0.84518,0.3838,0.048064,0.40006,1.5868 +-1.1978,0.8445,0.38751,0.042578,0.39673,1.5931 +-1.202,0.84373,0.39126,0.037166,0.39333,1.5994 +-1.2061,0.84286,0.39503,0.031827,0.38987,1.6058 +-1.2102,0.8419,0.39883,0.026562,0.38635,1.6122 +-1.2142,0.84085,0.40265,0.021372,0.38276,1.6187 +-1.2182,0.83971,0.40651,0.016255,0.37911,1.6252 +-1.222,0.83847,0.41039,0.011213,0.3754,1.6317 +-1.2259,0.83715,0.41431,0.0062455,0.37163,1.6383 +-1.2296,0.83574,0.41825,0.0013522,0.3678,1.645 +-1.2333,0.83423,0.42222,-0.0034665,0.36391,1.6516 +-1.2369,0.83264,0.42621,-0.0082107,0.35996,1.6583 +-1.2405,0.83096,0.43024,-0.01288,0.35596,1.6651 +-1.244,0.82919,0.43429,-0.017475,0.35189,1.6719 +-1.2474,0.82734,0.43838,-0.021996,0.34777,1.6787 +-1.2508,0.82539,0.44249,-0.026442,0.3436,1.6856 +-1.2541,0.82337,0.44663,-0.030813,0.33937,1.6925 +-1.2573,0.82125,0.4508,-0.03511,0.33509,1.6994 +-1.2605,0.81905,0.455,-0.039332,0.33075,1.7064 +-1.2635,0.81677,0.45923,-0.04348,0.32636,1.7135 +-1.2666,0.8144,0.46348,-0.047554,0.32192,1.7205 +-1.2695,0.81195,0.46777,-0.051554,0.31743,1.7276 +-1.2724,0.80942,0.47208,-0.05548,0.31288,1.7348 +-1.2752,0.80681,0.47642,-0.059332,0.30829,1.742 +-1.278,0.80411,0.48079,-0.06311,0.30365,1.7492 +-1.2807,0.80134,0.48519,-0.066815,0.29896,1.7564 +-1.2833,0.79848,0.48962,-0.070446,0.29423,1.7637 +-1.2858,0.79555,0.49407,-0.074004,0.28945,1.7711 +-1.2883,0.79254,0.49856,-0.077489,0.28462,1.7784 +-1.2907,0.78945,0.50307,-0.080902,0.27975,1.7858 +-1.293,0.78628,0.50762,-0.084241,0.27483,1.7933 +-1.2952,0.78304,0.51219,-0.087509,0.26987,1.8007 +-1.2974,0.77973,0.51679,-0.090705,0.26487,1.8082 +-1.2995,0.77634,0.52141,-0.093829,0.25983,1.8158 +-1.3016,0.77287,0.52607,-0.096882,0.25475,1.8233 +-1.3035,0.76934,0.53075,-0.099863,0.24962,1.831 +-1.3054,0.76573,0.53546,-0.10277,0.24446,1.8386 +-1.3072,0.76205,0.5402,-0.10561,0.23926,1.8463 +-1.309,0.7583,0.54497,-0.10839,0.23403,1.854 +-1.3107,0.75449,0.54977,-0.11109,0.22875,1.8617 +-1.3123,0.7506,0.55459,-0.11372,0.22344,1.8695 +-1.3138,0.74665,0.55944,-0.11628,0.2181,1.8772 +-1.3152,0.74263,0.56432,-0.11877,0.21273,1.8851 +-1.3166,0.73855,0.56923,-0.1212,0.20732,1.8929 +-1.3179,0.7344,0.57416,-0.12356,0.20188,1.9008 +-1.3191,0.73019,0.57912,-0.12585,0.1964,1.9087 +-1.3203,0.72591,0.58411,-0.12807,0.1909,1.9166 +-1.3214,0.72158,0.58913,-0.13023,0.18537,1.9246 +-1.3224,0.71718,0.59417,-0.13232,0.17981,1.9326 +-1.3233,0.71273,0.59924,-0.13435,0.17422,1.9406 +-1.3241,0.70821,0.60433,-0.13631,0.16861,1.9486 +-1.3249,0.70364,0.60945,-0.13821,0.16297,1.9567 +-1.3256,0.69902,0.6146,-0.14005,0.1573,1.9647 +-1.3262,0.69433,0.61977,-0.14182,0.15161,1.9728 +-1.3268,0.6896,0.62497,-0.14353,0.1459,1.981 +-1.3272,0.68481,0.6302,-0.14518,0.14017,1.9891 +-1.3276,0.67996,0.63545,-0.14676,0.13441,1.9973 +-1.3279,0.67507,0.64072,-0.14829,0.12864,2.0055 +-1.3282,0.67013,0.64602,-0.14975,0.12284,2.0137 +-1.3283,0.66514,0.65135,-0.15116,0.11703,2.0219 +-1.3284,0.6601,0.65669,-0.1525,0.1112,2.0301 +-1.3284,0.65501,0.66207,-0.15379,0.10535,2.0384 +-1.3283,0.64988,0.66747,-0.15502,0.09949,2.0467 +-1.3282,0.6447,0.67289,-0.1562,0.093613,2.055 +-1.328,0.63948,0.67833,-0.15732,0.087721,2.0633 +-1.3276,0.63422,0.6838,-0.15838,0.081817,2.0716 +-1.3273,0.62892,0.68929,-0.15939,0.0759,2.0799 +-1.3268,0.62357,0.6948,-0.16034,0.069973,2.0882 +-1.3262,0.61819,0.70034,-0.16124,0.064035,2.0966 +-1.3256,0.61277,0.7059,-0.16209,0.058088,2.105 +-1.3249,0.60732,0.71148,-0.16289,0.052133,2.1133 +-1.3241,0.60183,0.71708,-0.16363,0.04617,2.1217 +-1.3233,0.5963,0.72271,-0.16433,0.040201,2.1301 +-1.3224,0.59075,0.72835,-0.16497,0.034226,2.1385 +-1.3213,0.58516,0.73402,-0.16557,0.028247,2.1469 +-1.3202,0.57954,0.7397,-0.16612,0.022263,2.1553 +-1.3191,0.57389,0.74541,-0.16662,0.016277,2.1637 +-1.3178,0.56822,0.75113,-0.16707,0.010289,2.1722 +-1.3165,0.56252,0.75688,-0.16748,0.0043005,2.1806 +-1.3151,0.55679,0.76264,-0.16785,-0.0016884,2.189 +-1.3136,0.55104,0.76843,-0.16817,-0.0076765,2.1974 +-1.312,0.54527,0.77423,-0.16845,-0.013663,2.2059 +-1.3104,0.53947,0.78005,-0.16869,-0.019646,2.2143 +-1.3086,0.53365,0.78588,-0.16888,-0.025626,2.2227 +-1.3068,0.52782,0.79174,-0.16904,-0.031602,2.2311 +-1.305,0.52197,0.79761,-0.16915,-0.037572,2.2396 +-1.303,0.5161,0.8035,-0.16923,-0.043536,2.248 +-1.301,0.51021,0.8094,-0.16927,-0.049492,2.2564 +-1.2988,0.50431,0.81532,-0.16928,-0.055441,2.2648 +-1.2966,0.4984,0.82125,-0.16924,-0.06138,2.2732 +-1.2944,0.49248,0.8272,-0.16918,-0.06731,2.2816 +-1.292,0.48654,0.83317,-0.16908,-0.073228,2.29 +-1.2896,0.4806,0.83914,-0.16894,-0.079135,2.2983 +-1.2871,0.47465,0.84514,-0.16878,-0.08503,2.3067 +-1.2845,0.4687,0.85114,-0.16858,-0.09091,2.3151 +-1.2818,0.46273,0.85716,-0.16836,-0.096777,2.3234 +-1.2791,0.45677,0.86319,-0.1681,-0.10263,2.3317 +-1.2762,0.4508,0.86923,-0.16782,-0.10846,2.3401 +-1.2733,0.44483,0.87528,-0.16751,-0.11428,2.3484 +-1.2704,0.43886,0.88134,-0.16717,-0.12008,2.3566 +-1.2673,0.43289,0.88742,-0.16681,-0.12586,2.3649 +-1.2642,0.42693,0.8935,-0.16642,-0.13163,2.3732 +-1.261,0.42097,0.89959,-0.16601,-0.13737,2.3814 +-1.2577,0.41501,0.9057,-0.16558,-0.14309,2.3896 +-1.2543,0.40906,0.91181,-0.16513,-0.14878,2.3978 +-1.2509,0.40312,0.91792,-0.16466,-0.15446,2.406 +-1.2474,0.39718,0.92405,-0.16417,-0.16011,2.4141 +-1.2438,0.39126,0.93018,-0.16366,-0.16574,2.4222 +-1.2401,0.38535,0.93632,-0.16313,-0.17134,2.4304 +-1.2364,0.37945,0.94247,-0.16259,-0.17691,2.4384 +-1.2325,0.37356,0.94862,-0.16203,-0.18246,2.4465 +-1.2286,0.36769,0.95477,-0.16146,-0.18798,2.4545 +-1.2247,0.36184,0.96093,-0.16087,-0.19347,2.4625 +-1.2206,0.356,0.96709,-0.16028,-0.19893,2.4705 +-1.2165,0.35019,0.97326,-0.15967,-0.20436,2.4784 +-1.2123,0.34439,0.97943,-0.15905,-0.20976,2.4863 +-1.2081,0.33862,0.9856,-0.15843,-0.21513,2.4942 +-1.2037,0.33286,0.99177,-0.1578,-0.22046,2.502 +-1.1993,0.32714,0.99794,-0.15716,-0.22577,2.5099 +-1.1948,0.32143,1.0041,-0.15651,-0.23103,2.5176 +-1.1903,0.31576,1.0103,-0.15586,-0.23626,2.5254 +-1.1856,0.31011,1.0165,-0.15521,-0.24146,2.5331 +-1.1809,0.30449,1.0226,-0.15455,-0.24662,2.5408 +-1.1762,0.2989,1.0288,-0.15389,-0.25174,2.5484 +-1.1713,0.29335,1.035,-0.15324,-0.25683,2.556 +-1.1664,0.28782,1.0411,-0.15258,-0.26187,2.5636 +-1.1614,0.28233,1.0473,-0.15192,-0.26688,2.5711 +-1.1564,0.27688,1.0534,-0.15127,-0.27184,2.5785 +-1.1513,0.27146,1.0596,-0.15062,-0.27677,2.586 +-1.1461,0.26607,1.0657,-0.14998,-0.28165,2.5934 +-1.1408,0.26073,1.0719,-0.14934,-0.28649,2.6007 +-1.1355,0.25543,1.078,-0.14871,-0.29129,2.608 +-1.1301,0.25016,1.0841,-0.14809,-0.29604,2.6153 +-1.1246,0.24494,1.0902,-0.14748,-0.30075,2.6225 +-1.1191,0.23976,1.0963,-0.14687,-0.30542,2.6296 +-1.1135,0.23463,1.1024,-0.14628,-0.31004,2.6368 +-1.1078,0.22954,1.1085,-0.1457,-0.31461,2.6438 +-1.1021,0.2245,1.1146,-0.14514,-0.31913,2.6508 +-1.0963,0.21951,1.1207,-0.14458,-0.32361,2.6578 +-1.0904,0.21456,1.1267,-0.14405,-0.32804,2.6647 +-1.0845,0.20967,1.1327,-0.14353,-0.33242,2.6716 +-1.0785,0.20482,1.1388,-0.14302,-0.33675,2.6784 +-1.0725,0.20003,1.1448,-0.14254,-0.34103,2.6852 +-1.0664,0.19529,1.1508,-0.14207,-0.34526,2.6919 +-1.0602,0.19061,1.1568,-0.14163,-0.34944,2.6985 +-1.054,0.18598,1.1627,-0.14121,-0.35357,2.7051 +-1.0477,0.1814,1.1687,-0.14081,-0.35764,2.7116 +-1.0413,0.17689,1.1746,-0.14043,-0.36167,2.7181 +-1.0349,0.17243,1.1805,-0.14008,-0.36563,2.7245 +-1.0284,0.16803,1.1864,-0.13975,-0.36955,2.7309 +-1.0219,0.16369,1.1923,-0.13945,-0.37341,2.7372 +-1.0153,0.15941,1.1981,-0.13918,-0.37721,2.7434 +-1.0086,0.1552,1.204,-0.13893,-0.38096,2.7496 +-1.0019,0.15104,1.2098,-0.13871,-0.38465,2.7557 +-0.99518,0.14696,1.2156,-0.13853,-0.38829,2.7618 +-0.98837,0.14293,1.2213,-0.13838,-0.39187,2.7677 +-0.98149,0.13898,1.2271,-0.13825,-0.39539,2.7737 +-0.97457,0.13509,1.2328,-0.13816,-0.39885,2.7795 +-0.96759,0.13126,1.2385,-0.13811,-0.40226,2.7853 +-0.96056,0.12751,1.2441,-0.13809,-0.4056,2.7911 +-0.95347,0.12382,1.2498,-0.13811,-0.40889,2.7967 +-0.94634,0.12021,1.2554,-0.13816,-0.41211,2.8023 +-0.93915,0.11667,1.261,-0.13825,-0.41528,2.8078 +-0.93192,0.1132,1.2665,-0.13838,-0.41838,2.8133 +-0.92463,0.1098,1.2721,-0.13855,-0.42143,2.8187 +-0.9173,0.10647,1.2776,-0.13876,-0.42441,2.824 +-0.90992,0.10322,1.283,-0.13901,-0.42733,2.8293 +-0.90249,0.10005,1.2885,-0.1393,-0.43019,2.8344 +-0.89501,0.096947,1.2939,-0.13964,-0.43299,2.8395 +-0.88749,0.093924,1.2992,-0.14002,-0.43572,2.8446 +-0.87992,0.090978,1.3046,-0.14044,-0.43839,2.8495 +-0.87231,0.088111,1.3099,-0.14091,-0.44099,2.8544 +-0.86466,0.085323,1.3152,-0.14143,-0.44354,2.8592 +-0.85696,0.082614,1.3204,-0.142,-0.44602,2.864 +-0.84922,0.079985,1.3256,-0.14261,-0.44843,2.8686 +-0.84144,0.077437,1.3308,-0.14327,-0.45078,2.8732 +-0.83362,0.07497,1.3359,-0.14398,-0.45306,2.8778 +-0.82576,0.072586,1.341,-0.14474,-0.45528,2.8822 +-0.81786,0.070284,1.346,-0.14555,-0.45743,2.8866 +-0.80992,0.068065,1.351,-0.14641,-0.45952,2.8908 +-0.80195,0.06593,1.356,-0.14733,-0.46154,2.895 +-0.79394,0.06388,1.3609,-0.1483,-0.4635,2.8992 +-0.78589,0.061915,1.3658,-0.14932,-0.46539,2.9032 +-0.77781,0.060035,1.3706,-0.1504,-0.46721,2.9072 +-0.7697,0.058241,1.3754,-0.15154,-0.46896,2.9111 +-0.76155,0.056533,1.3802,-0.15273,-0.47065,2.9149 +-0.75337,0.054913,1.3849,-0.15397,-0.47227,2.9186 +-0.74516,0.05338,1.3896,-0.15528,-0.47383,2.9223 +-0.73692,0.051934,1.3942,-0.15664,-0.47531,2.9259 +-0.72865,0.050577,1.3988,-0.15806,-0.47673,2.9294 +-0.72035,0.049309,1.4033,-0.15954,-0.47808,2.9328 +-0.71202,0.04813,1.4078,-0.16108,-0.47937,2.9361 +-0.70367,0.047041,1.4122,-0.16268,-0.48058,2.9393 +-0.69529,0.046041,1.4166,-0.16435,-0.48173,2.9425 +-0.68688,0.045131,1.4209,-0.16607,-0.48281,2.9456 +-0.67845,0.044312,1.4252,-0.16786,-0.48382,2.9486 +-0.67,0.043584,1.4295,-0.16971,-0.48476,2.9515 +-0.66152,0.042947,1.4336,-0.17162,-0.48564,2.9543 +-0.65302,0.042402,1.4378,-0.1736,-0.48644,2.9571 +-0.64451,0.041948,1.4419,-0.17564,-0.48718,2.9597 +-0.63597,0.041585,1.4459,-0.17775,-0.48785,2.9623 +-0.62741,0.041315,1.4499,-0.17992,-0.48845,2.9648 +-0.61884,0.041138,1.4538,-0.18216,-0.48899,2.9672 +-0.61025,0.041053,1.4576,-0.18447,-0.48945,2.9696 +-0.60164,0.04106,1.4614,-0.18684,-0.48985,2.9718 +-0.59302,0.041161,1.4652,-0.18928,-0.49018,2.974 +-0.58438,0.041354,1.4689,-0.19178,-0.49044,2.976 +-0.57573,0.041641,1.4725,-0.19436,-0.49063,2.978 +-0.56707,0.04202,1.4761,-0.19701,-0.49076,2.9799 +-0.5584,0.042493,1.4796,-0.19972,-0.49081,2.9818 +-0.54972,0.04306,1.4831,-0.2025,-0.4908,2.9835 +-0.54103,0.043719,1.4865,-0.20535,-0.49072,2.9851 +-0.53232,0.044472,1.4898,-0.20828,-0.49058,2.9867 +-0.52362,0.045319,1.4931,-0.21127,-0.49036,2.9882 +-0.5149,0.046259,1.4963,-0.21433,-0.49008,2.9896 +-0.50618,0.047292,1.4995,-0.21747,-0.48974,2.9909 +-0.49746,0.048419,1.5026,-0.22068,-0.48932,2.9921 +-0.48873,0.049639,1.5056,-0.22395,-0.48884,2.9932 +-0.48,0.050952,1.5086,-0.2273,-0.48829,2.9943 +-0.47127,0.052358,1.5115,-0.23073,-0.48768,2.9952 +-0.46254,0.053858,1.5144,-0.23422,-0.487,2.9961 +-0.45381,0.05545,1.5171,-0.23779,-0.48625,2.9969 +-0.44508,0.057135,1.5199,-0.24143,-0.48544,2.9976 +-0.43635,0.058912,1.5225,-0.24514,-0.48456,2.9982 +-0.42762,0.060782,1.5251,-0.24893,-0.48362,2.9988 +-0.4189,0.062744,1.5276,-0.25279,-0.48261,2.9992 +-0.41019,0.064798,1.5301,-0.25672,-0.48154,2.9996 +-0.40148,0.066944,1.5324,-0.26073,-0.4804,2.9999 +-0.39278,0.069181,1.5347,-0.26481,-0.4792,3.0001 +-0.38408,0.071509,1.537,-0.26896,-0.47793,3.0002 +-0.3754,0.073928,1.5392,-0.27319,-0.47661,3.0002 +-0.36673,0.076438,1.5413,-0.27749,-0.47522,3.0002 +-0.35807,0.079037,1.5433,-0.28187,-0.47376,3 +-0.34942,0.081727,1.5453,-0.28632,-0.47224,2.9998 +-0.34078,0.084507,1.5472,-0.29084,-0.47067,2.9995 +-0.33216,0.087375,1.549,-0.29544,-0.46903,2.9991 +-0.32355,0.090333,1.5508,-0.30011,-0.46732,2.9986 +-0.31496,0.093378,1.5525,-0.30486,-0.46556,2.9981 +-0.30639,0.096512,1.5541,-0.30968,-0.46374,2.9974 +-0.29783,0.099733,1.5556,-0.31458,-0.46185,2.9967 +-0.2893,0.10304,1.5571,-0.31954,-0.45991,2.9959 +-0.28078,0.10644,1.5585,-0.32459,-0.45791,2.995 +-0.27229,0.10992,1.5598,-0.3297,-0.45584,2.994 +-0.26381,0.11348,1.561,-0.3349,-0.45372,2.993 +-0.25536,0.11713,1.5622,-0.34016,-0.45155,2.9918 +-0.24694,0.12087,1.5633,-0.3455,-0.44931,2.9906 +-0.23854,0.12469,1.5644,-0.35091,-0.44702,2.9893 +-0.23017,0.12859,1.5653,-0.35639,-0.44467,2.988 +-0.22182,0.13258,1.5662,-0.36195,-0.44226,2.9865 +-0.2135,0.13665,1.567,-0.36758,-0.4398,2.985 +-0.20521,0.1408,1.5677,-0.37329,-0.43728,2.9833 +-0.19695,0.14503,1.5684,-0.37906,-0.43471,2.9817 +-0.18872,0.14934,1.569,-0.38491,-0.43209,2.9799 +-0.18052,0.15373,1.5695,-0.39083,-0.42941,2.978 +-0.17236,0.1582,1.5699,-0.39682,-0.42667,2.9761 +-0.16423,0.16274,1.5702,-0.40288,-0.42389,2.9741 +-0.15613,0.16737,1.5705,-0.40902,-0.42105,2.972 +-0.14807,0.17207,1.5707,-0.41522,-0.41816,2.9699 +-0.14005,0.17685,1.5708,-0.4215,-0.41523,2.9676 +-0.13206,0.1817,1.5709,-0.42785,-0.41224,2.9653 +-0.12412,0.18663,1.5709,-0.43426,-0.4092,2.9629 +-0.11621,0.19163,1.5707,-0.44075,-0.40611,2.9605 +-0.10834,0.1967,1.5706,-0.44731,-0.40297,2.9579 +-0.10052,0.20185,1.5703,-0.45393,-0.39979,2.9553 +-0.092732,0.20706,1.57,-0.46062,-0.39656,2.9527 +-0.084991,0.21235,1.5695,-0.46738,-0.39328,2.9499 +-0.077294,0.21771,1.5691,-0.47421,-0.38995,2.9471 +-0.069643,0.22313,1.5685,-0.48111,-0.38658,2.9442 +-0.062037,0.22862,1.5678,-0.48807,-0.38317,2.9412 +-0.054477,0.23418,1.5671,-0.4951,-0.37971,2.9382 +-0.046966,0.23981,1.5663,-0.5022,-0.37621,2.9351 +-0.039503,0.2455,1.5654,-0.50936,-0.37266,2.9319 +-0.032089,0.25125,1.5645,-0.51658,-0.36907,2.9286 +-0.024725,0.25707,1.5634,-0.52387,-0.36544,2.9253 +-0.017413,0.26295,1.5623,-0.53123,-0.36177,2.9219 +-0.010153,0.26889,1.5611,-0.53864,-0.35806,2.9185 +-0.0029453,0.2749,1.5599,-0.54612,-0.35431,2.915 +0.0042086,0.28096,1.5585,-0.55367,-0.35053,2.9114 +0.011308,0.28708,1.5571,-0.56127,-0.3467,2.9077 +0.018352,0.29325,1.5556,-0.56894,-0.34284,2.904 +0.025339,0.29948,1.554,-0.57666,-0.33894,2.9002 +0.03227,0.30577,1.5524,-0.58445,-0.335,2.8964 +0.039143,0.31211,1.5507,-0.5923,-0.33103,2.8925 +0.045957,0.31851,1.5488,-0.6002,-0.32702,2.8885 +0.052712,0.32496,1.547,-0.60817,-0.32298,2.8844 +0.059406,0.33145,1.545,-0.61619,-0.31891,2.8803 +0.06604,0.338,1.543,-0.62426,-0.31481,2.8762 +0.072611,0.3446,1.5409,-0.6324,-0.31067,2.872 +0.07912,0.35124,1.5387,-0.64059,-0.3065,2.8677 +0.085566,0.35793,1.5364,-0.64883,-0.30231,2.8634 +0.091947,0.36467,1.5341,-0.65713,-0.29808,2.859 +0.098264,0.37145,1.5317,-0.66548,-0.29382,2.8545 +0.10452,0.37827,1.5292,-0.67389,-0.28954,2.85 +0.1107,0.38513,1.5266,-0.68235,-0.28523,2.8454 +0.11682,0.39204,1.524,-0.69086,-0.2809,2.8408 +0.12287,0.39898,1.5213,-0.69942,-0.27654,2.8361 +0.12885,0.40597,1.5185,-0.70803,-0.27215,2.8314 +0.13476,0.41299,1.5157,-0.71669,-0.26774,2.8266 +0.1406,0.42005,1.5128,-0.72539,-0.26331,2.8217 +0.14637,0.42714,1.5098,-0.73415,-0.25885,2.8169 +0.15208,0.43426,1.5067,-0.74295,-0.25437,2.8119 +0.1577,0.44142,1.5035,-0.7518,-0.24988,2.8069 +0.16326,0.44861,1.5003,-0.76069,-0.24536,2.8019 +0.16874,0.45583,1.497,-0.76963,-0.24082,2.7968 +0.17415,0.46308,1.4937,-0.77861,-0.23627,2.7916 +0.17949,0.47035,1.4903,-0.78764,-0.23169,2.7864 +0.18475,0.47765,1.4868,-0.79671,-0.2271,2.7812 +0.18993,0.48498,1.4832,-0.80581,-0.2225,2.7759 +0.19504,0.49233,1.4796,-0.81496,-0.21788,2.7705 +0.20007,0.4997,1.4759,-0.82415,-0.21324,2.7651 +0.20502,0.5071,1.4721,-0.83338,-0.20859,2.7597 +0.20989,0.51451,1.4683,-0.84265,-0.20393,2.7542 +0.21469,0.52195,1.4644,-0.85195,-0.19926,2.7487 +0.21941,0.5294,1.4604,-0.86129,-0.19458,2.7431 +0.22404,0.53686,1.4563,-0.87066,-0.18988,2.7375 +0.2286,0.54435,1.4522,-0.88007,-0.18518,2.7319 +0.23308,0.55184,1.4481,-0.88951,-0.18046,2.7262 +0.23747,0.55935,1.4438,-0.89899,-0.17574,2.7204 +0.24179,0.56687,1.4395,-0.90849,-0.17101,2.7146 +0.24602,0.5744,1.4352,-0.91803,-0.16628,2.7088 +0.25017,0.58194,1.4307,-0.9276,-0.16154,2.703 +0.25423,0.58948,1.4263,-0.93719,-0.15679,2.6971 +0.25821,0.59703,1.4217,-0.94682,-0.15204,2.6912 +0.26211,0.60459,1.4171,-0.95647,-0.14729,2.6852 +0.26592,0.61215,1.4124,-0.96615,-0.14254,2.6792 +0.26965,0.61971,1.4077,-0.97585,-0.13778,2.6731 +0.27329,0.62727,1.4029,-0.98558,-0.13302,2.6671 +0.27685,0.63483,1.3981,-0.99534,-0.12827,2.661 +0.28032,0.64239,1.3931,-1.0051,-0.12351,2.6548 +0.2837,0.64994,1.3882,-1.0149,-0.11875,2.6486 +0.287,0.6575,1.3832,-1.0247,-0.114,2.6424 +0.29021,0.66504,1.3781,-1.0346,-0.10925,2.6362 +0.29333,0.67258,1.3729,-1.0444,-0.10451,2.6299 +0.29636,0.68011,1.3678,-1.0543,-0.099768,2.6236 +0.29931,0.68763,1.3625,-1.0642,-0.095033,2.6173 +0.30216,0.69514,1.3572,-1.0741,-0.090304,2.6109 +0.30493,0.70264,1.3519,-1.084,-0.085583,2.6045 +0.30761,0.71013,1.3465,-1.0939,-0.080869,2.5981 +0.3102,0.7176,1.341,-1.1039,-0.076164,2.5917 +0.3127,0.72505,1.3355,-1.1139,-0.071468,2.5852 +0.31511,0.73249,1.33,-1.1238,-0.066783,2.5787 +0.31742,0.7399,1.3244,-1.1338,-0.062108,2.5722 +0.31965,0.7473,1.3187,-1.1438,-0.057445,2.5656 +0.32179,0.75468,1.313,-1.1538,-0.052794,2.559 +0.32384,0.76204,1.3073,-1.1638,-0.048156,2.5524 +0.32579,0.76937,1.3015,-1.1738,-0.043533,2.5458 +0.32765,0.77667,1.2957,-1.1839,-0.038923,2.5392 +0.32943,0.78395,1.2898,-1.1939,-0.034329,2.5325 +0.33111,0.79121,1.2839,-1.2039,-0.029752,2.5258 +0.33269,0.79843,1.2779,-1.2139,-0.02519,2.5191 +0.33419,0.80562,1.2719,-1.224,-0.020647,2.5124 +0.3356,0.81279,1.2659,-1.234,-0.016121,2.5056 +0.33691,0.81992,1.2598,-1.244,-0.011614,2.4988 +0.33813,0.82702,1.2536,-1.2541,-0.0071274,2.4921 +0.33925,0.83408,1.2475,-1.2641,-0.0026605,2.4852 +0.34029,0.8411,1.2413,-1.2741,0.0017854,2.4784 +0.34123,0.84809,1.2351,-1.2842,0.0062097,2.4716 +0.34208,0.85505,1.2288,-1.2942,0.010612,2.4647 +0.34283,0.86196,1.2225,-1.3042,0.014991,2.4578 +0.3435,0.86883,1.2161,-1.3142,0.019346,2.4509 +0.34407,0.87566,1.2098,-1.3242,0.023677,2.444 +0.34455,0.88244,1.2034,-1.3342,0.027983,2.4371 +0.34493,0.88918,1.1969,-1.3442,0.032264,2.4302 +0.34522,0.89588,1.1905,-1.3541,0.036518,2.4232 +0.34542,0.90253,1.184,-1.3641,0.040746,2.4163 +0.34553,0.90913,1.1774,-1.3741,0.044946,2.4093 +0.34554,0.91569,1.1709,-1.384,0.049118,2.4023 +0.34546,0.92219,1.1643,-1.3939,0.053261,2.3953 +0.34529,0.92864,1.1577,-1.4038,0.057375,2.3883 +0.34502,0.93504,1.1511,-1.4137,0.061459,2.3812 +0.34467,0.94139,1.1444,-1.4236,0.065513,2.3742 +0.34422,0.94768,1.1378,-1.4334,0.069535,2.3672 +0.34368,0.95392,1.1311,-1.4433,0.073526,2.3601 +0.34304,0.9601,1.1244,-1.4531,0.077485,2.353 +0.34232,0.96622,1.1176,-1.4629,0.081411,2.346 +0.3415,0.97229,1.1109,-1.4727,0.085304,2.3389 +0.34059,0.97829,1.1041,-1.4824,0.089163,2.3318 +0.33959,0.98424,1.0973,-1.4921,0.092988,2.3247 +0.33849,0.99012,1.0905,-1.5019,0.096777,2.3176 +0.33731,0.99594,1.0837,-1.5115,0.10053,2.3105 +0.33604,1.0017,1.0769,-1.5212,0.10425,2.3033 +0.33467,1.0074,1.07,-1.5308,0.10793,2.2962 +0.33321,1.013,1.0632,-1.5404,0.11158,2.2891 +0.33167,1.0186,1.0563,-1.55,0.11519,2.2819 +0.33003,1.0241,1.0494,-1.5596,0.11876,2.2748 +0.3283,1.0295,1.0426,-1.5691,0.12229,2.2676 +0.32649,1.0348,1.0357,-1.5786,0.12578,2.2605 +0.32458,1.0401,1.0288,-1.588,0.12924,2.2533 +0.32259,1.0453,1.0219,-1.5974,0.13265,2.2461 +0.3205,1.0505,1.015,-1.6068,0.13602,2.239 +0.31833,1.0556,1.0081,-1.6162,0.13936,2.2318 +0.31607,1.0605,1.0011,-1.6255,0.14265,2.2246 +0.31372,1.0655,0.99422,-1.6348,0.1459,2.2174 +0.31129,1.0703,0.98731,-1.6441,0.14911,2.2103 +0.30877,1.0751,0.98039,-1.6533,0.15228,2.2031 +0.30616,1.0798,0.97348,-1.6625,0.15541,2.1959 +0.30346,1.0844,0.96657,-1.6716,0.15849,2.1887 +0.30068,1.0889,0.95966,-1.6807,0.16153,2.1815 +0.29781,1.0934,0.95276,-1.6898,0.16453,2.1743 +0.29486,1.0978,0.94586,-1.6988,0.16748,2.1671 +0.29182,1.1021,0.93897,-1.7078,0.17039,2.1599 +0.2887,1.1063,0.93209,-1.7168,0.17326,2.1527 +0.28549,1.1104,0.92521,-1.7257,0.17608,2.1455 +0.2822,1.1144,0.91835,-1.7345,0.17886,2.1383 +0.27883,1.1184,0.91149,-1.7433,0.18159,2.1311 +0.27537,1.1223,0.90465,-1.7521,0.18427,2.1239 +0.27184,1.1261,0.89782,-1.7608,0.18691,2.1167 +0.26822,1.1298,0.891,-1.7695,0.18951,2.1095 +0.26452,1.1334,0.8842,-1.7782,0.19205,2.1022 +0.26073,1.137,0.87742,-1.7868,0.19456,2.095 +0.25687,1.1404,0.87065,-1.7953,0.19701,2.0878 +0.25293,1.1438,0.8639,-1.8038,0.19942,2.0806 +0.24891,1.147,0.85716,-1.8123,0.20178,2.0734 +0.24481,1.1502,0.85045,-1.8207,0.2041,2.0662 +0.24063,1.1533,0.84376,-1.829,0.20636,2.059 +0.23638,1.1563,0.83708,-1.8373,0.20859,2.0518 +0.23204,1.1592,0.83043,-1.8456,0.21076,2.0446 +0.22763,1.162,0.82381,-1.8538,0.21288,2.0374 +0.22315,1.1648,0.81721,-1.8619,0.21496,2.0302 +0.21859,1.1674,0.81063,-1.87,0.21699,2.023 +0.21395,1.17,0.80408,-1.8781,0.21897,2.0157 +0.20924,1.1724,0.79756,-1.8861,0.22091,2.0085 +0.20446,1.1748,0.79107,-1.894,0.22279,2.0013 +0.1996,1.177,0.7846,-1.9019,0.22463,1.9941 +0.19467,1.1792,0.77817,-1.9098,0.22642,1.9869 +0.18967,1.1813,0.77177,-1.9176,0.22816,1.9797 +0.18459,1.1833,0.76539,-1.9253,0.22985,1.9725 +0.17945,1.1851,0.75906,-1.933,0.2315,1.9653 +0.17424,1.1869,0.75275,-1.9406,0.23309,1.9581 +0.16895,1.1886,0.74648,-1.9481,0.23464,1.9509 +0.1636,1.1902,0.74025,-1.9556,0.23614,1.9437 +0.15818,1.1917,0.73405,-1.9631,0.2376,1.9365 +0.15269,1.1931,0.72789,-1.9705,0.239,1.9293 +0.14714,1.1944,0.72177,-1.9778,0.24036,1.9221 +0.14152,1.1956,0.71569,-1.9851,0.24166,1.9149 +0.13583,1.1968,0.70965,-1.9923,0.24292,1.9077 +0.13008,1.1978,0.70365,-1.9995,0.24414,1.9005 +0.12427,1.1987,0.69769,-2.0066,0.2453,1.8933 +0.11839,1.1995,0.69177,-2.0136,0.24642,1.8861 +0.11245,1.2002,0.6859,-2.0206,0.24749,1.8789 +0.10645,1.2008,0.68007,-2.0276,0.24851,1.8717 +0.10038,1.2014,0.67429,-2.0344,0.24948,1.8645 +0.09426,1.2018,0.66855,-2.0412,0.25041,1.8572 +0.088076,1.2021,0.66286,-2.048,0.25129,1.85 +0.081833,1.2023,0.65722,-2.0547,0.25213,1.8428 +0.075531,1.2025,0.65162,-2.0613,0.25291,1.8356 +0.069172,1.2025,0.64608,-2.0679,0.25366,1.8284 +0.062756,1.2024,0.64058,-2.0744,0.25435,1.8212 +0.056284,1.2023,0.63514,-2.0808,0.255,1.814 +0.049756,1.202,0.62974,-2.0872,0.25561,1.8068 +0.043174,1.2016,0.6244,-2.0935,0.25616,1.7995 +0.036538,1.2012,0.61911,-2.0998,0.25668,1.7923 +0.029849,1.2006,0.61388,-2.106,0.25715,1.7851 +0.023108,1.2,0.6087,-2.1122,0.25757,1.7779 +0.016315,1.1992,0.60358,-2.1182,0.25795,1.7706 +0.0094707,1.1983,0.59851,-2.1243,0.25829,1.7634 +0.0025767,1.1974,0.59349,-2.1302,0.25858,1.7562 +-0.0043665,1.1963,0.58854,-2.1361,0.25883,1.7489 +-0.011358,1.1952,0.58364,-2.1419,0.25903,1.7417 +-0.018398,1.1939,0.5788,-2.1477,0.2592,1.7344 +-0.025484,1.1926,0.57402,-2.1534,0.25932,1.7272 +-0.032616,1.1911,0.5693,-2.1591,0.2594,1.7199 +-0.039794,1.1896,0.56464,-2.1647,0.25943,1.7127 +-0.047017,1.188,0.56004,-2.1702,0.25943,1.7054 +-0.054283,1.1862,0.55551,-2.1756,0.25939,1.6982 +-0.061592,1.1844,0.55103,-2.181,0.2593,1.6909 +-0.068943,1.1825,0.54662,-2.1864,0.25918,1.6836 +-0.076336,1.1804,0.54227,-2.1917,0.25901,1.6763 +-0.083769,1.1783,0.53799,-2.1969,0.25881,1.669 +-0.091242,1.1761,0.53377,-2.202,0.25857,1.6617 +-0.098754,1.1738,0.52961,-2.2071,0.25829,1.6544 +-0.1063,1.1714,0.52552,-2.2122,0.25797,1.6471 +-0.11389,1.1689,0.5215,-2.2171,0.25761,1.6398 +-0.12152,1.1663,0.51754,-2.222,0.25722,1.6325 +-0.12918,1.1636,0.51365,-2.2269,0.25679,1.6251 +-0.13687,1.1608,0.50982,-2.2317,0.25633,1.6178 +-0.1446,1.1579,0.50607,-2.2364,0.25583,1.6105 +-0.15236,1.1549,0.50238,-2.2411,0.2553,1.6031 +-0.16016,1.1519,0.49876,-2.2457,0.25473,1.5957 +-0.16798,1.1487,0.49521,-2.2502,0.25413,1.5884 +-0.17584,1.1455,0.49173,-2.2547,0.25349,1.581 +-0.18373,1.1422,0.48832,-2.2591,0.25283,1.5736 +-0.19164,1.1387,0.48498,-2.2635,0.25213,1.5662 +-0.19959,1.1352,0.48171,-2.2678,0.2514,1.5588 +-0.20756,1.1316,0.47852,-2.2721,0.25063,1.5514 +-0.21556,1.1279,0.47539,-2.2763,0.24984,1.5439 +-0.22358,1.1241,0.47233,-2.2804,0.24902,1.5365 +-0.23163,1.1203,0.46935,-2.2845,0.24817,1.529 +-0.23971,1.1163,0.46644,-2.2885,0.24729,1.5216 +-0.24781,1.1123,0.4636,-2.2924,0.24638,1.5141 +-0.25593,1.1081,0.46084,-2.2963,0.24545,1.5066 +-0.26407,1.1039,0.45814,-2.3002,0.24449,1.4991 +-0.27223,1.0996,0.45553,-2.304,0.2435,1.4916 +-0.28042,1.0952,0.45298,-2.3077,0.24249,1.4841 +-0.28862,1.0907,0.45051,-2.3114,0.24146,1.4765 +-0.29684,1.0862,0.44811,-2.315,0.2404,1.469 +-0.30508,1.0816,0.44579,-2.3185,0.23931,1.4614 +-0.31334,1.0768,0.44354,-2.322,0.23821,1.4539 +-0.32162,1.072,0.44136,-2.3255,0.23708,1.4463 +-0.32991,1.0672,0.43926,-2.3289,0.23593,1.4387 +-0.33821,1.0622,0.43724,-2.3322,0.23476,1.431 +-0.34653,1.0572,0.43529,-2.3355,0.23357,1.4234 +-0.35486,1.052,0.43341,-2.3387,0.23236,1.4158 +-0.3632,1.0468,0.43161,-2.3419,0.23114,1.4081 +-0.37156,1.0416,0.42988,-2.345,0.22989,1.4004 +-0.37992,1.0362,0.42823,-2.3481,0.22863,1.3927 +-0.3883,1.0308,0.42666,-2.3511,0.22735,1.385 +-0.39669,1.0253,0.42516,-2.3541,0.22606,1.3773 +-0.40508,1.0197,0.42373,-2.357,0.22475,1.3695 +-0.41348,1.0141,0.42239,-2.3599,0.22343,1.3618 +-0.42189,1.0083,0.42111,-2.3627,0.2221,1.354 +-0.4303,1.0025,0.41991,-2.3655,0.22075,1.3462 +-0.43872,0.99668,0.41879,-2.3682,0.21939,1.3384 +-0.44715,0.99074,0.41774,-2.3708,0.21802,1.3305 +-0.45558,0.98473,0.41677,-2.3735,0.21665,1.3227 +-0.46401,0.97866,0.41587,-2.376,0.21526,1.3148 +-0.47245,0.97251,0.41504,-2.3786,0.21386,1.3069 +-0.48088,0.9663,0.41429,-2.381,0.21245,1.299 +-0.48932,0.96002,0.41362,-2.3835,0.21104,1.2911 +-0.49776,0.95368,0.41302,-2.3858,0.20962,1.2832 +-0.50619,0.94727,0.41249,-2.3882,0.2082,1.2752 +-0.51463,0.94079,0.41204,-2.3905,0.20677,1.2672 +-0.52306,0.93425,0.41167,-2.3927,0.20534,1.2592 +-0.53149,0.92766,0.41136,-2.3949,0.20391,1.2512 +-0.53992,0.92099,0.41113,-2.3971,0.20247,1.2431 +-0.54835,0.91427,0.41097,-2.3992,0.20103,1.2351 +-0.55676,0.90749,0.41089,-2.4013,0.19959,1.227 +-0.56518,0.90065,0.41088,-2.4033,0.19815,1.2189 +-0.57359,0.89375,0.41094,-2.4053,0.19672,1.2108 +-0.58199,0.88679,0.41107,-2.4072,0.19528,1.2026 +-0.59038,0.87978,0.41128,-2.4091,0.19385,1.1945 +-0.59876,0.87271,0.41156,-2.411,0.19242,1.1863 +-0.60714,0.86558,0.4119,-2.4128,0.19099,1.1781 +-0.61551,0.8584,0.41232,-2.4146,0.18957,1.1698 +-0.62386,0.85117,0.41281,-2.4163,0.18816,1.1616 +-0.63221,0.84389,0.41337,-2.4181,0.18675,1.1533 +-0.64054,0.83656,0.414,-2.4197,0.18536,1.145 +-0.64886,0.82917,0.4147,-2.4214,0.18397,1.1367 +-0.65717,0.82174,0.41547,-2.423,0.18258,1.1283 +-0.66547,0.81425,0.41631,-2.4245,0.18121,1.1199 +-0.67375,0.80672,0.41721,-2.426,0.17985,1.1116 +-0.68201,0.79914,0.41818,-2.4275,0.17851,1.1031 +-0.69027,0.79152,0.41922,-2.429,0.17717,1.0947 +-0.6985,0.78385,0.42033,-2.4304,0.17585,1.0862 +-0.70672,0.77614,0.4215,-2.4318,0.17454,1.0778 +-0.71492,0.76838,0.42274,-2.4331,0.17325,1.0693 +-0.7231,0.76058,0.42405,-2.4345,0.17197,1.0607 +-0.73127,0.75274,0.42542,-2.4358,0.17071,1.0522 +-0.73942,0.74486,0.42685,-2.437,0.16947,1.0436 +-0.74754,0.73694,0.42834,-2.4382,0.16825,1.035 +-0.75565,0.72898,0.4299,-2.4394,0.16705,1.0264 +-0.76373,0.72099,0.43153,-2.4406,0.16586,1.0177 +-0.7718,0.71295,0.43321,-2.4418,0.1647,1.0091 +-0.77984,0.70489,0.43496,-2.4429,0.16356,1.0004 +-0.78786,0.69678,0.43676,-2.4439,0.16244,0.99166 +-0.79586,0.68864,0.43863,-2.445,0.16134,0.98291 +-0.80383,0.68047,0.44055,-2.446,0.16027,0.97415 +-0.81179,0.67227,0.44254,-2.447,0.15923,0.96536 +-0.81971,0.66403,0.44458,-2.448,0.15821,0.95655 +-0.82761,0.65577,0.44668,-2.449,0.15721,0.94771 +-0.83549,0.64747,0.44883,-2.4499,0.15625,0.93886 +-0.84334,0.63915,0.45105,-2.4508,0.15531,0.92997 +-0.85116,0.63079,0.45331,-2.4517,0.1544,0.92107 +-0.85895,0.62241,0.45564,-2.4525,0.15352,0.91214 +-0.86672,0.61401,0.45801,-2.4534,0.15267,0.90318 +-0.87446,0.60558,0.46044,-2.4542,0.15185,0.89421 +-0.88217,0.59712,0.46292,-2.455,0.15107,0.88521 +-0.88986,0.58865,0.46546,-2.4557,0.15031,0.87618 +-0.89751,0.58015,0.46804,-2.4565,0.14959,0.86714 +-0.90513,0.57162,0.47067,-2.4572,0.14891,0.85807 +-0.91272,0.56308,0.47336,-2.4579,0.14826,0.84898 +-0.92029,0.55452,0.47609,-2.4586,0.14765,0.83986 +-0.92782,0.54593,0.47887,-2.4593,0.14707,0.83072 +-0.93531,0.53733,0.4817,-2.4599,0.14653,0.82156 +-0.94278,0.52872,0.48457,-2.4606,0.14603,0.81238 +-0.95022,0.52008,0.48748,-2.4612,0.14557,0.80317 +-0.95762,0.51143,0.49045,-2.4618,0.14514,0.79395 +-0.96498,0.50277,0.49345,-2.4624,0.14476,0.7847 +-0.97232,0.49409,0.4965,-2.4629,0.14442,0.77542 +-0.97962,0.4854,0.49959,-2.4635,0.14412,0.76613 +-0.98688,0.47669,0.50272,-2.464,0.14386,0.75682 +-0.99411,0.46798,0.50589,-2.4645,0.14364,0.74748 +-1.0013,0.45925,0.5091,-2.4651,0.14347,0.73812 +-1.0085,0.45052,0.51234,-2.4656,0.14335,0.72874 +-1.0156,0.44177,0.51563,-2.466,0.14326,0.71934 +-1.0227,0.43302,0.51895,-2.4665,0.14323,0.70992 +-1.0297,0.42426,0.5223,-2.467,0.14324,0.70048 +-1.0367,0.41549,0.52569,-2.4674,0.1433,0.69102 +-1.0437,0.40672,0.52912,-2.4679,0.1434,0.68154 +-1.0507,0.39794,0.53257,-2.4683,0.14355,0.67204 +-1.0576,0.38916,0.53606,-2.4687,0.14376,0.66253 +-1.0644,0.38037,0.53958,-2.4691,0.14401,0.65299 +-1.0712,0.37158,0.54312,-2.4695,0.14431,0.64343 +-1.078,0.36279,0.5467,-2.4699,0.14466,0.63386 +-1.0848,0.354,0.5503,-2.4703,0.14507,0.62426 +-1.0915,0.3452,0.55393,-2.4707,0.14552,0.61465 +-1.0981,0.33641,0.55759,-2.471,0.14603,0.60502 +-1.1048,0.32762,0.56127,-2.4714,0.14659,0.59537 +-1.1113,0.31883,0.56497,-2.4717,0.14721,0.58571 +-1.1179,0.31004,0.5687,-2.4721,0.14788,0.57603 +-1.1244,0.30125,0.57245,-2.4724,0.1486,0.56633 +-1.1308,0.29247,0.57621,-2.4728,0.14938,0.55662 +-1.1373,0.28369,0.58,-2.4731,0.15022,0.54689 +-1.1436,0.27492,0.58381,-2.4734,0.15111,0.53715 +-1.15,0.26616,0.58763,-2.4737,0.15205,0.52739 +-1.1563,0.2574,0.59147,-2.474,0.15306,0.51762 +-1.1625,0.24864,0.59532,-2.4743,0.15412,0.50783 +-1.1687,0.2399,0.59919,-2.4746,0.15524,0.49803 +-1.1749,0.23116,0.60308,-2.4749,0.15642,0.48822 +-1.181,0.22243,0.60697,-2.4752,0.15766,0.47839 +-1.1871,0.21371,0.61088,-2.4755,0.15896,0.46855 +-1.1931,0.205,0.61479,-2.4758,0.16032,0.4587 +-1.1991,0.19631,0.61872,-2.4761,0.16174,0.44883 +-1.205,0.18762,0.62265,-2.4764,0.16321,0.43896 +-1.2109,0.17895,0.62659,-2.4767,0.16475,0.42907 +-1.2168,0.17028,0.63053,-2.4769,0.16636,0.41918 +-1.2226,0.16163,0.63448,-2.4772,0.16802,0.40927 +-1.2284,0.153,0.63843,-2.4775,0.16975,0.39935 +-1.2341,0.14438,0.64239,-2.4778,0.17153,0.38943 +-1.2398,0.13577,0.64634,-2.4781,0.17339,0.37949 +-1.2454,0.12718,0.6503,-2.4783,0.1753,0.36955 +-1.251,0.1186,0.65426,-2.4786,0.17728,0.3596 +-1.2565,0.11005,0.65821,-2.4789,0.17932,0.34964 +-1.262,0.1015,0.66216,-2.4792,0.18143,0.33968 +-1.2675,0.092977,0.66611,-2.4794,0.1836,0.32971 +-1.2729,0.08447,0.67005,-2.4797,0.18583,0.31973 +-1.2782,0.07598,0.67398,-2.48,0.18813,0.30975 +-1.2835,0.067509,0.67791,-2.4802,0.1905,0.29976 +-1.2888,0.059058,0.68183,-2.4805,0.19293,0.28977 +-1.294,0.050626,0.68574,-2.4808,0.19543,0.27978 +-1.2992,0.042213,0.68964,-2.4811,0.19799,0.26978 +-1.3043,0.033822,0.69353,-2.4813,0.20062,0.25978 +-1.3094,0.025451,0.6974,-2.4816,0.20331,0.24978 +-1.3144,0.017101,0.70126,-2.4819,0.20607,0.23977 +-1.3194,0.0087727,0.70511,-2.4822,0.2089,0.22977 +-1.3243,0.00046656,0.70894,-2.4825,0.2118,0.21976 +-1.3292,-0.0078172,0.71275,-2.4827,0.21476,0.20975 +-1.334,-0.016078,0.71655,-2.483,0.21779,0.19975 +-1.3388,-0.024316,0.72032,-2.4833,0.22088,0.18974 +-1.3435,-0.032531,0.72408,-2.4836,0.22404,0.17974 +-1.3482,-0.040721,0.72781,-2.4839,0.22727,0.16974 +-1.3529,-0.048888,0.73152,-2.4842,0.23057,0.15974 +-1.3575,-0.05703,0.73521,-2.4845,0.23394,0.14975 +-1.362,-0.065148,0.73888,-2.4848,0.23737,0.13976 +-1.3665,-0.07324,0.74251,-2.4851,0.24087,0.12977 +-1.371,-0.081308,0.74612,-2.4853,0.24443,0.11979 +-1.3754,-0.089349,0.74971,-2.4856,0.24807,0.10981 +-1.3797,-0.097365,0.75326,-2.4859,0.25177,0.099845 +-1.3841,-0.10535,0.75679,-2.4862,0.25554,0.089883 +-1.3883,-0.11332,0.76028,-2.4865,0.25938,0.079928 +-1.3925,-0.12125,0.76374,-2.4868,0.26328,0.069981 +-1.3967,-0.12916,0.76717,-2.4872,0.26725,0.060043 +-1.4008,-0.13705,0.77057,-2.4875,0.27129,0.050114 +-1.4049,-0.1449,0.77393,-2.4878,0.27539,0.040195 +-1.4089,-0.15273,0.77725,-2.4881,0.27957,0.030286 +-1.4128,-0.16053,0.78054,-2.4884,0.28381,0.020388 +-1.4168,-0.16831,0.78379,-2.4887,0.28811,0.010502 +-1.4206,-0.17605,0.787,-2.489,0.29249,0.00062794 +-1.4245,-0.18377,0.79017,-2.4893,0.29692,-0.0092331 +-1.4282,-0.19146,0.7933,-2.4896,0.30143,-0.019081 +-1.432,-0.19912,0.79639,-2.4899,0.306,-0.028914 +-1.4356,-0.20675,0.79943,-2.4902,0.31064,-0.038733 +-1.4393,-0.21435,0.80243,-2.4905,0.31534,-0.048537 +-1.4428,-0.22192,0.80539,-2.4908,0.32011,-0.058325 +-1.4464,-0.22947,0.8083,-2.4912,0.32495,-0.068096 +-1.4498,-0.23698,0.81117,-2.4915,0.32985,-0.07785 +-1.4533,-0.24447,0.81398,-2.4918,0.33481,-0.087586 +-1.4566,-0.25193,0.81675,-2.4921,0.33984,-0.097304 +-1.46,-0.25936,0.81947,-2.4924,0.34493,-0.107 +-1.4633,-0.26676,0.82214,-2.4927,0.35009,-0.11668 +-1.4665,-0.27413,0.82475,-2.493,0.35531,-0.12634 +-1.4697,-0.28147,0.82732,-2.4933,0.36059,-0.13598 +-1.4728,-0.28878,0.82983,-2.4936,0.36594,-0.1456 +-1.4759,-0.29606,0.83229,-2.4939,0.37135,-0.15519 +-1.4789,-0.30331,0.83469,-2.4942,0.37682,-0.16477 +-1.4819,-0.31054,0.83704,-2.4945,0.38236,-0.17432 +-1.4848,-0.31773,0.83933,-2.4948,0.38795,-0.18384 +-1.4877,-0.32489,0.84157,-2.495,0.39361,-0.19334 +-1.4906,-0.33203,0.84374,-2.4953,0.39933,-0.20282 +-1.4934,-0.33913,0.84586,-2.4956,0.4051,-0.21227 +-1.4961,-0.34621,0.84792,-2.4959,0.41094,-0.22169 +-1.4988,-0.35326,0.84991,-2.4961,0.41684,-0.23109 +-1.5014,-0.36027,0.85185,-2.4964,0.42279,-0.24046 +-1.504,-0.36726,0.85372,-2.4966,0.42881,-0.2498 +-1.5066,-0.37422,0.85553,-2.4969,0.43488,-0.25912 +-1.5091,-0.38115,0.85728,-2.4971,0.44101,-0.2684 +-1.5115,-0.38805,0.85896,-2.4974,0.44719,-0.27766 +-1.5139,-0.39492,0.86058,-2.4976,0.45344,-0.28688 +-1.5163,-0.40176,0.86213,-2.4978,0.45974,-0.29607 +-1.5186,-0.40858,0.86362,-2.498,0.46609,-0.30524 +-1.5208,-0.41536,0.86503,-2.4983,0.4725,-0.31437 +-1.523,-0.42212,0.86638,-2.4985,0.47896,-0.32346 +-1.5252,-0.42885,0.86766,-2.4987,0.48548,-0.33253 +-1.5273,-0.43555,0.86888,-2.4988,0.49205,-0.34156 +-1.5293,-0.44222,0.87002,-2.499,0.49867,-0.35055 +-1.5313,-0.44886,0.87109,-2.4992,0.50535,-0.35952 +-1.5333,-0.45548,0.87209,-2.4993,0.51207,-0.36844 +-1.5352,-0.46206,0.87302,-2.4995,0.51885,-0.37733 +-1.537,-0.46862,0.87387,-2.4996,0.52567,-0.38619 +-1.5388,-0.47516,0.87465,-2.4997,0.53255,-0.395 +-1.5406,-0.48166,0.87536,-2.4998,0.53947,-0.40378 +-1.5423,-0.48814,0.876,-2.4999,0.54644,-0.41253 +-1.544,-0.49459,0.87656,-2.5,0.55346,-0.42123 +-1.5456,-0.50102,0.87704,-2.5001,0.56053,-0.42989 +-1.5471,-0.50741,0.87745,-2.5002,0.56764,-0.43852 +-1.5486,-0.51379,0.87778,-2.5002,0.5748,-0.4471 +-1.5501,-0.52013,0.87803,-2.5002,0.582,-0.45565 +-1.5515,-0.52645,0.87821,-2.5002,0.58924,-0.46415 +-1.5529,-0.53275,0.87831,-2.5002,0.59653,-0.47261 +-1.5542,-0.53901,0.87833,-2.5002,0.60386,-0.48104 +-1.5555,-0.54526,0.87827,-2.5002,0.61123,-0.48941 +-1.5567,-0.55147,0.87813,-2.5002,0.61864,-0.49775 +-1.5578,-0.55767,0.87791,-2.5001,0.62609,-0.50604 +-1.559,-0.56384,0.87761,-2.5,0.63358,-0.51429 +-1.56,-0.56998,0.87723,-2.4999,0.64111,-0.52249 +-1.561,-0.5761,0.87677,-2.4998,0.64867,-0.53065 +-1.562,-0.58219,0.87623,-2.4996,0.65627,-0.53877 +-1.5629,-0.58827,0.87561,-2.4995,0.66391,-0.54684 +-1.5638,-0.59431,0.8749,-2.4993,0.67158,-0.55486 +-1.5646,-0.60034,0.87411,-2.4991,0.67929,-0.56284 +-1.5654,-0.60634,0.87324,-2.4989,0.68703,-0.57077 +-1.5661,-0.61232,0.87229,-2.4987,0.6948,-0.57866 +-1.5668,-0.61828,0.87125,-2.4984,0.7026,-0.58649 +-1.5674,-0.62421,0.87013,-2.4981,0.71044,-0.59428 +-1.568,-0.63013,0.86892,-2.4978,0.7183,-0.60203 +-1.5685,-0.63602,0.86763,-2.4975,0.72619,-0.60972 +-1.569,-0.64189,0.86625,-2.4971,0.73411,-0.61736 +-1.5694,-0.64774,0.86479,-2.4967,0.74205,-0.62496 +-1.5698,-0.65356,0.86325,-2.4963,0.75003,-0.63251 +-1.5701,-0.65937,0.86162,-2.4959,0.75802,-0.64 +-1.5704,-0.66516,0.8599,-2.4954,0.76604,-0.64745 +-1.5706,-0.67092,0.8581,-2.495,0.77409,-0.65484 +-1.5708,-0.67667,0.85621,-2.4944,0.78215,-0.66219 +-1.5709,-0.6824,0.85424,-2.4939,0.79024,-0.66949 +-1.571,-0.68811,0.85218,-2.4933,0.79834,-0.67673 +-1.5711,-0.69379,0.85003,-2.4927,0.80647,-0.68392 +-1.571,-0.69947,0.8478,-2.4921,0.81462,-0.69106 +-1.571,-0.70512,0.84548,-2.4915,0.82278,-0.69815 +-1.5709,-0.71075,0.84307,-2.4908,0.83095,-0.70519 +-1.5707,-0.71637,0.84058,-2.4901,0.83915,-0.71218 +-1.5705,-0.72197,0.838,-2.4893,0.84735,-0.71911 +-1.5702,-0.72755,0.83533,-2.4885,0.85557,-0.72599 +-1.5699,-0.73311,0.83258,-2.4877,0.86381,-0.73282 +-1.5695,-0.73866,0.82974,-2.4869,0.87205,-0.73959 +-1.5691,-0.74419,0.82681,-2.486,0.8803,-0.74631 +-1.5686,-0.7497,0.8238,-2.4851,0.88857,-0.75298 +-1.5681,-0.7552,0.82069,-2.4842,0.89684,-0.75959 +-1.5675,-0.76068,0.81751,-2.4832,0.90512,-0.76615 +-1.5669,-0.76615,0.81423,-2.4822,0.9134,-0.77266 +-1.5663,-0.7716,0.81087,-2.4811,0.92169,-0.77911 +-1.5655,-0.77704,0.80742,-2.48,0.92998,-0.78551 +-1.5648,-0.78246,0.80389,-2.4789,0.93828,-0.79186 +-1.5639,-0.78787,0.80027,-2.4777,0.94658,-0.79815 +-1.5631,-0.79327,0.79656,-2.4765,0.95488,-0.80438 +-1.5622,-0.79865,0.79277,-2.4753,0.96318,-0.81057 +-1.5612,-0.80402,0.78889,-2.474,0.97147,-0.81669 +-1.5602,-0.80937,0.78492,-2.4727,0.97977,-0.82277 +-1.5591,-0.81471,0.78087,-2.4714,0.98806,-0.82879 +-1.558,-0.82004,0.77674,-2.47,0.99634,-0.83475 +-1.5568,-0.82535,0.77251,-2.4685,1.0046,-0.84066 +-1.5556,-0.83066,0.76821,-2.4671,1.0129,-0.84651 +-1.5543,-0.83595,0.76381,-2.4655,1.0212,-0.85232 +-1.553,-0.84123,0.75934,-2.464,1.0294,-0.85806 +-1.5516,-0.8465,0.75478,-2.4624,1.0377,-0.86375 +-1.5502,-0.85175,0.75013,-2.4607,1.0459,-0.86939 +-1.5487,-0.857,0.7454,-2.459,1.0541,-0.87497 +-1.5471,-0.86223,0.74059,-2.4573,1.0623,-0.8805 +-1.5456,-0.86746,0.73569,-2.4555,1.0705,-0.88598 +-1.5439,-0.87267,0.73072,-2.4537,1.0787,-0.8914 +-1.5422,-0.87787,0.72565,-2.4518,1.0869,-0.89676 +-1.5405,-0.88307,0.72051,-2.4499,1.095,-0.90208 +-1.5387,-0.88825,0.71528,-2.448,1.1032,-0.90734 +-1.5369,-0.89342,0.70998,-2.446,1.1113,-0.91254 +-1.535,-0.89859,0.70459,-2.4439,1.1194,-0.91769 +-1.533,-0.90374,0.69912,-2.4418,1.1274,-0.92279 +-1.531,-0.90889,0.69357,-2.4397,1.1355,-0.92784 +-1.529,-0.91403,0.68794,-2.4375,1.1435,-0.93283 +-1.5269,-0.91916,0.68223,-2.4352,1.1515,-0.93777 +-1.5247,-0.92428,0.67644,-2.4329,1.1595,-0.94265 +-1.5225,-0.92939,0.67057,-2.4306,1.1674,-0.94749 +-1.5203,-0.93449,0.66463,-2.4282,1.1753,-0.95227 +-1.518,-0.93959,0.6586,-2.4258,1.1832,-0.957 +-1.5156,-0.94467,0.6525,-2.4233,1.1911,-0.96168 +-1.5132,-0.94975,0.64633,-2.4207,1.1989,-0.9663 +-1.5107,-0.95483,0.64007,-2.4181,1.2067,-0.97088 +-1.5082,-0.95989,0.63374,-2.4155,1.2144,-0.9754 +-1.5056,-0.96495,0.62734,-2.4128,1.2222,-0.97987 +-1.503,-0.97,0.62086,-2.4101,1.2298,-0.9843 +-1.5003,-0.97504,0.6143,-2.4073,1.2375,-0.98867 +-1.4976,-0.98008,0.60768,-2.4044,1.2451,-0.99299 +-1.4948,-0.98511,0.60098,-2.4015,1.2527,-0.99727 +-1.492,-0.99013,0.5942,-2.3985,1.2602,-1.0015 +-1.4891,-0.99514,0.58736,-2.3955,1.2677,-1.0057 +-1.4861,-1.0002,0.58044,-2.3925,1.2752,-1.0098 +-1.4832,-1.0052,0.57346,-2.3893,1.2826,-1.0139 +-1.4801,-1.0102,0.5664,-2.3862,1.2899,-1.0179 +-1.477,-1.0151,0.55927,-2.3829,1.2973,-1.0219 +-1.4738,-1.0201,0.55208,-2.3796,1.3045,-1.0258 +-1.4706,-1.0251,0.54481,-2.3763,1.3118,-1.0297 +-1.4674,-1.0301,0.53748,-2.3729,1.3189,-1.0336 +-1.4641,-1.035,0.53009,-2.3695,1.3261,-1.0373 +-1.4607,-1.04,0.52262,-2.3659,1.3331,-1.0411 +-1.4573,-1.0449,0.51509,-2.3624,1.3402,-1.0448 +-1.4538,-1.0499,0.5075,-2.3588,1.3472,-1.0485 +-1.4502,-1.0548,0.49984,-2.3551,1.3541,-1.0521 +-1.4467,-1.0598,0.49212,-2.3514,1.3609,-1.0557 +-1.443,-1.0647,0.48433,-2.3476,1.3678,-1.0592 +-1.4393,-1.0696,0.47649,-2.3437,1.3745,-1.0627 +-1.4356,-1.0745,0.46858,-2.3398,1.3812,-1.0661 +-1.4318,-1.0794,0.46061,-2.3358,1.3879,-1.0695 +-1.4279,-1.0843,0.45259,-2.3318,1.3945,-1.0729 +-1.424,-1.0892,0.4445,-2.3278,1.401,-1.0762 +-1.42,-1.0941,0.43635,-2.3236,1.4075,-1.0795 +-1.416,-1.099,0.42815,-2.3194,1.4139,-1.0828 +-1.4119,-1.1039,0.41989,-2.3152,1.4202,-1.086 +-1.4078,-1.1088,0.41158,-2.3109,1.4265,-1.0891 +-1.4036,-1.1136,0.40321,-2.3065,1.4327,-1.0923 +-1.3994,-1.1185,0.39479,-2.3021,1.4389,-1.0953 +-1.3951,-1.1233,0.38631,-2.2976,1.4449,-1.0984 +-1.3908,-1.1282,0.37778,-2.2931,1.451,-1.1014 +-1.3864,-1.133,0.3692,-2.2885,1.4569,-1.1044 +-1.3819,-1.1378,0.36056,-2.2838,1.4628,-1.1073 +-1.3774,-1.1427,0.35188,-2.2791,1.4686,-1.1103 +-1.3728,-1.1475,0.34315,-2.2743,1.4744,-1.1131 +-1.3682,-1.1523,0.33437,-2.2695,1.48,-1.116 +-1.3635,-1.1571,0.32554,-2.2646,1.4856,-1.1188 +-1.3588,-1.1619,0.31667,-2.2596,1.4912,-1.1216 +-1.354,-1.1667,0.30774,-2.2546,1.4966,-1.1243 +-1.3492,-1.1714,0.29878,-2.2495,1.502,-1.127 +-1.3443,-1.1762,0.28977,-2.2444,1.5073,-1.1297 +-1.3393,-1.181,0.28071,-2.2392,1.5126,-1.1324 +-1.3343,-1.1857,0.27162,-2.234,1.5177,-1.135 +-1.3293,-1.1904,0.26248,-2.2287,1.5228,-1.1376 +-1.3242,-1.1952,0.2533,-2.2233,1.5278,-1.1402 +-1.319,-1.1999,0.24408,-2.2179,1.5327,-1.1427 +-1.3138,-1.2046,0.23483,-2.2124,1.5376,-1.1453 +-1.3085,-1.2093,0.22553,-2.2069,1.5423,-1.1478 +-1.3032,-1.214,0.2162,-2.2013,1.547,-1.1502 +-1.2978,-1.2187,0.20683,-2.1957,1.5516,-1.1527 +-1.2923,-1.2233,0.19743,-2.19,1.5562,-1.1551 +-1.2868,-1.228,0.18799,-2.1842,1.5606,-1.1575 +-1.2813,-1.2326,0.17851,-2.1784,1.565,-1.1599 +-1.2757,-1.2373,0.16901,-2.1725,1.5692,-1.1622 +-1.27,-1.2419,0.15947,-2.1666,1.5734,-1.1646 +-1.2643,-1.2465,0.14991,-2.1606,1.5775,-1.1669 +-1.2586,-1.2511,0.14031,-2.1545,1.5816,-1.1692 +-1.2527,-1.2557,0.13068,-2.1484,1.5855,-1.1715 +-1.2469,-1.2603,0.12103,-2.1422,1.5894,-1.1737 +-1.2409,-1.2648,0.11135,-2.136,1.5931,-1.176 +-1.2349,-1.2694,0.10164,-2.1298,1.5968,-1.1782 +-1.2289,-1.2739,0.091907,-2.1234,1.6004,-1.1804 +-1.2228,-1.2784,0.08215,-2.117,1.6039,-1.1826 +-1.2167,-1.2829,0.07237,-2.1106,1.6073,-1.1848 +-1.2105,-1.2874,0.062567,-2.1041,1.6106,-1.187 +-1.2042,-1.2919,0.052742,-2.0976,1.6138,-1.1891 +-1.1979,-1.2963,0.042897,-2.091,1.617,-1.1913 +-1.1916,-1.3008,0.033032,-2.0843,1.62,-1.1934 +-1.1852,-1.3052,0.023148,-2.0776,1.623,-1.1955 +-1.1787,-1.3096,0.013246,-2.0708,1.6259,-1.1977 +-1.1722,-1.314,0.0033278,-2.064,1.6286,-1.1998 +-1.1656,-1.3184,-0.0066068,-2.0571,1.6313,-1.2019 +-1.159,-1.3227,-0.016556,-2.0502,1.6339,-1.204 +-1.1523,-1.327,-0.02652,-2.0433,1.6364,-1.206 +-1.1456,-1.3314,-0.036497,-2.0362,1.6388,-1.2081 +-1.1388,-1.3356,-0.046487,-2.0292,1.6411,-1.2102 +-1.132,-1.3399,-0.056488,-2.022,1.6433,-1.2123 +-1.1251,-1.3442,-0.066499,-2.0149,1.6455,-1.2143 +-1.1182,-1.3484,-0.07652,-2.0076,1.6475,-1.2164 +-1.1112,-1.3526,-0.086549,-2.0004,1.6494,-1.2184 +-1.1041,-1.3568,-0.096587,-1.993,1.6513,-1.2205 +-1.0971,-1.361,-0.10663,-1.9857,1.653,-1.2226 +-1.0899,-1.3651,-0.11668,-1.9782,1.6546,-1.2246 +-1.0827,-1.3692,-0.12674,-1.9708,1.6562,-1.2267 +-1.0755,-1.3733,-0.13679,-1.9632,1.6576,-1.2287 +-1.0682,-1.3774,-0.14686,-1.9557,1.659,-1.2308 +-1.0609,-1.3814,-0.15692,-1.9481,1.6603,-1.2329 +-1.0535,-1.3854,-0.16699,-1.9404,1.6614,-1.2349 +-1.046,-1.3894,-0.17705,-1.9327,1.6625,-1.237 +-1.0386,-1.3934,-0.18712,-1.925,1.6635,-1.2391 +-1.031,-1.3973,-0.19719,-1.9172,1.6643,-1.2412 +-1.0234,-1.4012,-0.20725,-1.9093,1.6651,-1.2432 +-1.0158,-1.4051,-0.21731,-1.9015,1.6658,-1.2453 +-1.0081,-1.409,-0.22736,-1.8935,1.6664,-1.2474 +-1.0004,-1.4128,-0.23742,-1.8856,1.6668,-1.2496 +-0.99262,-1.4166,-0.24746,-1.8776,1.6672,-1.2517 +-0.9848,-1.4204,-0.2575,-1.8695,1.6675,-1.2538 +-0.97693,-1.4241,-0.26753,-1.8614,1.6677,-1.2559 +-0.96901,-1.4278,-0.27755,-1.8533,1.6678,-1.2581 +-0.96105,-1.4315,-0.28757,-1.8451,1.6678,-1.2603 +-0.95304,-1.4351,-0.29757,-1.8369,1.6677,-1.2624 +-0.94498,-1.4387,-0.30757,-1.8287,1.6675,-1.2646 +-0.93688,-1.4423,-0.31755,-1.8204,1.6672,-1.2668 +-0.92874,-1.4458,-0.32752,-1.8121,1.6668,-1.2691 +-0.92055,-1.4493,-0.33748,-1.8037,1.6663,-1.2713 +-0.91232,-1.4528,-0.34742,-1.7953,1.6657,-1.2735 +-0.90404,-1.4562,-0.35735,-1.7869,1.665,-1.2758 +-0.89572,-1.4596,-0.36726,-1.7785,1.6642,-1.2781 +-0.88736,-1.463,-0.37716,-1.77,1.6633,-1.2804 +-0.87895,-1.4663,-0.38704,-1.7614,1.6623,-1.2827 +-0.8705,-1.4696,-0.3969,-1.7529,1.6613,-1.2851 +-0.86201,-1.4728,-0.40674,-1.7443,1.6601,-1.2874 +-0.85348,-1.476,-0.41656,-1.7356,1.6588,-1.2898 +-0.8449,-1.4792,-0.42636,-1.727,1.6575,-1.2922 +-0.83629,-1.4823,-0.43614,-1.7183,1.656,-1.2946 +-0.82764,-1.4854,-0.4459,-1.7096,1.6544,-1.2971 +-0.81894,-1.4884,-0.45564,-1.7008,1.6528,-1.2995 +-0.81021,-1.4914,-0.46535,-1.6921,1.651,-1.302 +-0.80144,-1.4943,-0.47504,-1.6833,1.6492,-1.3045 +-0.79263,-1.4972,-0.48471,-1.6744,1.6473,-1.3071 +-0.78378,-1.5001,-0.49435,-1.6656,1.6452,-1.3096 +-0.77489,-1.5029,-0.50396,-1.6567,1.6431,-1.3122 +-0.76597,-1.5057,-0.51355,-1.6478,1.6409,-1.3148 +-0.75701,-1.5084,-0.5231,-1.6389,1.6386,-1.3175 +-0.74801,-1.5111,-0.53264,-1.6299,1.6361,-1.3201 +-0.73898,-1.5137,-0.54214,-1.6209,1.6337,-1.3228 +-0.72992,-1.5163,-0.55161,-1.6119,1.6311,-1.3255 +-0.72082,-1.5189,-0.56105,-1.6029,1.6284,-1.3283 +-0.71168,-1.5213,-0.57046,-1.5939,1.6256,-1.3311 +-0.70252,-1.5238,-0.57984,-1.5848,1.6227,-1.3339 +-0.69332,-1.5262,-0.58919,-1.5758,1.6198,-1.3367 +-0.68408,-1.5285,-0.5985,-1.5667,1.6167,-1.3396 +-0.67482,-1.5308,-0.60778,-1.5576,1.6136,-1.3425 +-0.66552,-1.533,-0.61703,-1.5484,1.6104,-1.3454 +-0.6562,-1.5352,-0.62624,-1.5393,1.6071,-1.3483 +-0.64684,-1.5373,-0.63541,-1.5301,1.6036,-1.3513 +-0.63745,-1.5394,-0.64455,-1.5209,1.6002,-1.3543 +-0.62804,-1.5414,-0.65366,-1.5118,1.5966,-1.3574 +-0.6186,-1.5434,-0.66272,-1.5026,1.5929,-1.3605 +-0.60913,-1.5453,-0.67175,-1.4933,1.5892,-1.3636 +-0.59963,-1.5471,-0.68074,-1.4841,1.5853,-1.3668 +-0.59011,-1.5489,-0.6897,-1.4749,1.5814,-1.3699 +-0.58056,-1.5506,-0.69861,-1.4656,1.5774,-1.3732 +-0.57098,-1.5523,-0.70748,-1.4564,1.5733,-1.3764 +-0.56138,-1.5539,-0.71632,-1.4471,1.5691,-1.3797 +-0.55176,-1.5555,-0.72511,-1.4379,1.5649,-1.383 +-0.54211,-1.557,-0.73386,-1.4286,1.5605,-1.3864 +-0.53245,-1.5584,-0.74257,-1.4193,1.5561,-1.3898 +-0.52276,-1.5598,-0.75124,-1.41,1.5516,-1.3932 +-0.51304,-1.5611,-0.75986,-1.4007,1.547,-1.3966 +-0.50331,-1.5624,-0.76844,-1.3914,1.5424,-1.4001 +-0.49356,-1.5635,-0.77698,-1.3821,1.5376,-1.4037 +-0.48379,-1.5647,-0.78547,-1.3728,1.5328,-1.4072 +-0.474,-1.5657,-0.79392,-1.3635,1.5279,-1.4109 +-0.46419,-1.5667,-0.80232,-1.3542,1.523,-1.4145 +-0.45437,-1.5677,-0.81068,-1.3449,1.5179,-1.4182 +-0.44453,-1.5685,-0.81899,-1.3356,1.5128,-1.4219 +-0.43467,-1.5693,-0.82726,-1.3263,1.5076,-1.4256 +-0.4248,-1.5701,-0.83548,-1.317,1.5023,-1.4294 +-0.41492,-1.5708,-0.84365,-1.3077,1.497,-1.4333 +-0.40502,-1.5714,-0.85178,-1.2984,1.4916,-1.4371 +-0.39511,-1.5719,-0.85985,-1.2892,1.4861,-1.441 +-0.38519,-1.5724,-0.86788,-1.2799,1.4805,-1.445 +-0.37525,-1.5728,-0.87587,-1.2706,1.4749,-1.4489 +-0.36531,-1.5731,-0.8838,-1.2613,1.4692,-1.453 +-0.35536,-1.5733,-0.89168,-1.2521,1.4635,-1.457 +-0.34539,-1.5735,-0.89952,-1.2428,1.4576,-1.4611 +-0.33542,-1.5737,-0.9073,-1.2336,1.4517,-1.4652 +-0.32545,-1.5737,-0.91503,-1.2244,1.4458,-1.4694 +-0.31546,-1.5737,-0.92272,-1.2152,1.4398,-1.4736 +-0.30547,-1.5736,-0.93035,-1.2059,1.4337,-1.4778 +-0.29548,-1.5734,-0.93794,-1.1968,1.4275,-1.4821 +-0.28548,-1.5732,-0.94547,-1.1876,1.4213,-1.4864 +-0.27548,-1.5729,-0.95295,-1.1784,1.415,-1.4908 +-0.26548,-1.5725,-0.96038,-1.1693,1.4087,-1.4951 +-0.25547,-1.572,-0.96776,-1.1601,1.4023,-1.4996 +-0.24547,-1.5715,-0.97508,-1.151,1.3959,-1.504 +-0.23546,-1.5709,-0.98236,-1.1419,1.3893,-1.5085 +-0.22546,-1.5702,-0.98958,-1.1328,1.3828,-1.513 +-0.21546,-1.5694,-0.99675,-1.1237,1.3762,-1.5176 +-0.20546,-1.5686,-1.0039,-1.1147,1.3695,-1.5222 +-0.19546,-1.5677,-1.0109,-1.1057,1.3628,-1.5269 +-0.18547,-1.5667,-1.0179,-1.0967,1.356,-1.5315 +-0.17548,-1.5656,-1.0249,-1.0877,1.3491,-1.5362 +-0.1655,-1.5645,-1.0318,-1.0787,1.3423,-1.541 +-0.15552,-1.5632,-1.0386,-1.0698,1.3353,-1.5458 +-0.14556,-1.562,-1.0454,-1.0608,1.3283,-1.5506 +-0.1356,-1.5606,-1.0522,-1.0519,1.3213,-1.5554 +-0.12565,-1.5591,-1.0589,-1.0431,1.3142,-1.5603 +-0.11572,-1.5576,-1.0655,-1.0342,1.3071,-1.5652 +-0.10579,-1.556,-1.0721,-1.0254,1.2999,-1.5702 +-0.095875,-1.5543,-1.0786,-1.0166,1.2927,-1.5751 +-0.085973,-1.5525,-1.0851,-1.0078,1.2855,-1.5802 +-0.076086,-1.5507,-1.0915,-0.99911,1.2782,-1.5852 +-0.066214,-1.5487,-1.0979,-0.9904,1.2708,-1.5903 +-0.056357,-1.5467,-1.1042,-0.98172,1.2635,-1.5954 +-0.046517,-1.5446,-1.1104,-0.97307,1.256,-1.6005 +-0.036694,-1.5425,-1.1167,-0.96445,1.2486,-1.6057 +-0.02689,-1.5402,-1.1228,-0.95586,1.2411,-1.6109 +-0.017105,-1.5379,-1.1289,-0.94731,1.2336,-1.6161 +-0.0073399,-1.5355,-1.1349,-0.93878,1.226,-1.6214 +0.0024039,-1.533,-1.1409,-0.93029,1.2184,-1.6267 +0.012126,-1.5304,-1.1468,-0.92184,1.2108,-1.632 +0.021825,-1.5278,-1.1527,-0.91341,1.2031,-1.6373 +0.0315,-1.525,-1.1585,-0.90503,1.1954,-1.6427 +0.04115,-1.5222,-1.1643,-0.89667,1.1877,-1.6481 +0.050775,-1.5193,-1.17,-0.88836,1.18,-1.6535 +0.060374,-1.5163,-1.1757,-0.88008,1.1722,-1.659 +0.069945,-1.5133,-1.1813,-0.87184,1.1644,-1.6645 +0.079487,-1.5101,-1.1868,-0.86363,1.1566,-1.67 +0.089001,-1.5069,-1.1923,-0.85546,1.1487,-1.6755 +0.098484,-1.5036,-1.1978,-0.84733,1.1409,-1.681 +0.10794,-1.5002,-1.2032,-0.83925,1.133,-1.6866 +0.11736,-1.4967,-1.2085,-0.8312,1.125,-1.6922 +0.12674,-1.4932,-1.2138,-0.82319,1.1171,-1.6978 +0.1361,-1.4895,-1.219,-0.81522,1.1092,-1.7034 +0.14542,-1.4858,-1.2242,-0.80729,1.1012,-1.7091 +0.1547,-1.482,-1.2293,-0.79941,1.0932,-1.7147 +0.16395,-1.4781,-1.2344,-0.79157,1.0852,-1.7204 +0.17316,-1.4742,-1.2394,-0.78377,1.0772,-1.7261 +0.18233,-1.4701,-1.2444,-0.77601,1.0691,-1.7319 +0.19146,-1.466,-1.2493,-0.7683,1.0611,-1.7376 +0.20055,-1.4618,-1.2542,-0.76063,1.0531,-1.7434 +0.20961,-1.4575,-1.259,-0.753,1.045,-1.7491 +0.21862,-1.4532,-1.2637,-0.74542,1.0369,-1.7549 +0.22758,-1.4487,-1.2684,-0.73789,1.0288,-1.7607 +0.23651,-1.4442,-1.2731,-0.7304,1.0207,-1.7665 +0.24538,-1.4396,-1.2777,-0.72296,1.0127,-1.7724 +0.25422,-1.4349,-1.2823,-0.71557,1.0046,-1.7782 +0.263,-1.4301,-1.2868,-0.70822,0.99645,-1.784 +0.27174,-1.4253,-1.2912,-0.70092,0.98834,-1.7899 +0.28044,-1.4203,-1.2956,-0.69366,0.98024,-1.7958 +0.28908,-1.4153,-1.3,-0.68646,0.97213,-1.8016 +0.29767,-1.4102,-1.3043,-0.6793,0.96402,-1.8075 +0.30621,-1.4051,-1.3085,-0.67219,0.95592,-1.8134 +0.31471,-1.3998,-1.3127,-0.66514,0.94781,-1.8193 +0.32314,-1.3945,-1.3169,-0.65813,0.93971,-1.8252 +0.33153,-1.3891,-1.321,-0.65117,0.93162,-1.8311 +0.33986,-1.3836,-1.325,-0.64426,0.92353,-1.837 +0.34814,-1.378,-1.329,-0.6374,0.91545,-1.8429 +0.35636,-1.3724,-1.333,-0.63059,0.90737,-1.8488 +0.36452,-1.3667,-1.3369,-0.62383,0.8993,-1.8547 +0.37263,-1.3609,-1.3407,-0.61713,0.89125,-1.8606 +0.38068,-1.355,-1.3446,-0.61047,0.8832,-1.8665 +0.38867,-1.3491,-1.3483,-0.60387,0.87517,-1.8725 +0.3966,-1.3431,-1.352,-0.59732,0.86714,-1.8784 +0.40447,-1.337,-1.3557,-0.59082,0.85914,-1.8843 +0.41227,-1.3308,-1.3593,-0.58437,0.85114,-1.8901 +0.42002,-1.3246,-1.3629,-0.57798,0.84316,-1.896 +0.4277,-1.3182,-1.3665,-0.57164,0.8352,-1.9019 +0.43532,-1.3119,-1.37,-0.56535,0.82726,-1.9078 +0.44287,-1.3054,-1.3734,-0.55912,0.81933,-1.9136 +0.45036,-1.2989,-1.3768,-0.55293,0.81143,-1.9195 +0.45778,-1.2922,-1.3802,-0.54681,0.80354,-1.9253 +0.46514,-1.2856,-1.3835,-0.54073,0.79568,-1.9312 +0.47242,-1.2788,-1.3868,-0.53471,0.78784,-1.937 +0.47964,-1.272,-1.39,-0.52874,0.78002,-1.9428 +0.48679,-1.2651,-1.3932,-0.52283,0.77222,-1.9486 +0.49387,-1.2581,-1.3963,-0.51697,0.76445,-1.9543 +0.50088,-1.2511,-1.3994,-0.51117,0.75671,-1.9601 +0.50782,-1.244,-1.4025,-0.50542,0.74899,-1.9658 +0.51468,-1.2369,-1.4055,-0.49972,0.74131,-1.9715 +0.52147,-1.2296,-1.4085,-0.49408,0.73365,-1.9772 +0.52819,-1.2223,-1.4114,-0.48849,0.72602,-1.9829 +0.53484,-1.215,-1.4143,-0.48296,0.71842,-1.9886 +0.54141,-1.2075,-1.4171,-0.47749,0.71085,-1.9942 +0.5479,-1.2,-1.42,-0.47206,0.70331,-1.9998 +0.55432,-1.1925,-1.4227,-0.46669,0.69581,-2.0054 +0.56066,-1.1849,-1.4255,-0.46138,0.68834,-2.0109 +0.56692,-1.1772,-1.4282,-0.45612,0.6809,-2.0165 +0.57311,-1.1694,-1.4308,-0.45092,0.6735,-2.022 +0.57922,-1.1616,-1.4334,-0.44577,0.66614,-2.0274 +0.58524,-1.1537,-1.436,-0.44067,0.65882,-2.0329 +0.59119,-1.1458,-1.4386,-0.43563,0.65153,-2.0383 +0.59706,-1.1378,-1.4411,-0.43065,0.64428,-2.0437 +0.60284,-1.1298,-1.4436,-0.42571,0.63707,-2.049 +0.60854,-1.1217,-1.446,-0.42084,0.6299,-2.0543 +0.61417,-1.1135,-1.4484,-0.41602,0.62277,-2.0596 +0.6197,-1.1053,-1.4508,-0.41125,0.61569,-2.0648 +0.62516,-1.097,-1.4531,-0.40653,0.60864,-2.0701 +0.63053,-1.0887,-1.4554,-0.40187,0.60164,-2.0752 +0.63582,-1.0803,-1.4577,-0.39727,0.59469,-2.0803 +0.64102,-1.0719,-1.4599,-0.39271,0.58777,-2.0854 +0.64613,-1.0634,-1.4621,-0.38822,0.58091,-2.0905 +0.65116,-1.0549,-1.4642,-0.38377,0.57409,-2.0955 +0.6561,-1.0463,-1.4664,-0.37938,0.56731,-2.1004 +0.66096,-1.0377,-1.4685,-0.37504,0.56059,-2.1054 +0.66573,-1.029,-1.4705,-0.37075,0.55391,-2.1102 +0.67041,-1.0202,-1.4726,-0.36652,0.54728,-2.115 +0.675,-1.0115,-1.4746,-0.36234,0.5407,-2.1198 +0.6795,-1.0026,-1.4765,-0.35822,0.53417,-2.1245 +0.68392,-0.99377,-1.4785,-0.35414,0.52769,-2.1292 +0.68824,-0.98486,-1.4804,-0.35012,0.52126,-2.1339 +0.69247,-0.9759,-1.4823,-0.34615,0.51488,-2.1384 +0.69662,-0.9669,-1.4841,-0.34223,0.50856,-2.143 +0.70067,-0.95786,-1.4859,-0.33836,0.50229,-2.1474 +0.70463,-0.94878,-1.4877,-0.33454,0.49607,-2.1518 +0.7085,-0.93966,-1.4895,-0.33078,0.4899,-2.1562 +0.71228,-0.9305,-1.4912,-0.32706,0.48379,-2.1605 +0.71597,-0.9213,-1.493,-0.3234,0.47774,-2.1648 +0.71956,-0.91206,-1.4946,-0.31978,0.47174,-2.169 +0.72306,-0.90279,-1.4963,-0.31622,0.4658,-2.1731 +0.72647,-0.89349,-1.4979,-0.3127,0.45991,-2.1772 +0.72978,-0.88415,-1.4995,-0.30924,0.45408,-2.1812 +0.733,-0.87478,-1.5011,-0.30582,0.44831,-2.1851 +0.73613,-0.86537,-1.5027,-0.30245,0.4426,-2.189 +0.73916,-0.85594,-1.5042,-0.29913,0.43694,-2.1928 +0.7421,-0.84647,-1.5057,-0.29586,0.43134,-2.1966 +0.74494,-0.83698,-1.5072,-0.29263,0.42581,-2.2003 +0.74769,-0.82746,-1.5086,-0.28946,0.42033,-2.2039 +0.75035,-0.81791,-1.51,-0.28633,0.41491,-2.2075 +0.75291,-0.80834,-1.5115,-0.28324,0.40955,-2.211 +0.75537,-0.79874,-1.5128,-0.28021,0.40425,-2.2144 +0.75774,-0.78912,-1.5142,-0.27721,0.39902,-2.2177 +0.76001,-0.77947,-1.5155,-0.27427,0.39384,-2.221 +0.76219,-0.76981,-1.5169,-0.27137,0.38873,-2.2242 +0.76427,-0.76012,-1.5181,-0.26851,0.38368,-2.2274 +0.76626,-0.75042,-1.5194,-0.2657,0.37869,-2.2304 +0.76815,-0.74069,-1.5207,-0.26293,0.37376,-2.2334 +0.76994,-0.73095,-1.5219,-0.2602,0.3689,-2.2363 +0.77164,-0.7212,-1.5231,-0.25752,0.3641,-2.2392 +0.77324,-0.71142,-1.5243,-0.25488,0.35936,-2.2419 +0.77475,-0.70164,-1.5255,-0.25229,0.35469,-2.2446 +0.77616,-0.69184,-1.5266,-0.24973,0.35008,-2.2472 +0.77747,-0.68203,-1.5277,-0.24722,0.34554,-2.2498 +0.77869,-0.67221,-1.5288,-0.24474,0.34105,-2.2522 +0.77981,-0.66238,-1.5299,-0.24231,0.33664,-2.2546 +0.78084,-0.65254,-1.531,-0.23992,0.33229,-2.2569 +0.78177,-0.64269,-1.5321,-0.23756,0.328,-2.2591 +0.7826,-0.63284,-1.5331,-0.23525,0.32377,-2.2612 +0.78334,-0.62298,-1.5341,-0.23297,0.31962,-2.2633 +0.78399,-0.61312,-1.5351,-0.23073,0.31552,-2.2652 +0.78453,-0.60326,-1.5361,-0.22853,0.3115,-2.2671 +0.78499,-0.59339,-1.5371,-0.22637,0.30753,-2.2689 +0.78535,-0.58353,-1.538,-0.22424,0.30364,-2.2706 +0.78561,-0.57366,-1.5389,-0.22215,0.29981,-2.2723 +0.78578,-0.5638,-1.5399,-0.2201,0.29604,-2.2738 +0.78585,-0.55393,-1.5407,-0.21808,0.29234,-2.2752 +0.78583,-0.54408,-1.5416,-0.21609,0.2887,-2.2766 +0.78571,-0.53422,-1.5425,-0.21414,0.28513,-2.2779 +0.7855,-0.52438,-1.5433,-0.21222,0.28163,-2.2791 +0.7852,-0.51454,-1.5442,-0.21034,0.27819,-2.2802 +0.7848,-0.50471,-1.545,-0.20848,0.27482,-2.2812 +0.78432,-0.49489,-1.5458,-0.20666,0.27151,-2.2821 +0.78373,-0.48508,-1.5466,-0.20487,0.26827,-2.2829 +0.78306,-0.47528,-1.5474,-0.20311,0.26509,-2.2836 +0.78229,-0.46549,-1.5481,-0.20139,0.26198,-2.2843 +0.78143,-0.45572,-1.5489,-0.19969,0.25893,-2.2848 +0.78048,-0.44597,-1.5496,-0.19802,0.25595,-2.2853 +0.77944,-0.43623,-1.5503,-0.19638,0.25303,-2.2857 +0.77831,-0.4265,-1.551,-0.19477,0.25018,-2.2859 +0.77709,-0.4168,-1.5517,-0.19318,0.24739,-2.2861 +0.77577,-0.40712,-1.5524,-0.19162,0.24467,-2.2862 +0.77437,-0.39745,-1.5531,-0.19009,0.24201,-2.2862 +0.77288,-0.38781,-1.5537,-0.18859,0.23942,-2.2861 +0.7713,-0.3782,-1.5543,-0.18711,0.23689,-2.2859 +0.76963,-0.3686,-1.555,-0.18565,0.23442,-2.2856 +0.76788,-0.35903,-1.5556,-0.18422,0.23201,-2.2852 +0.76604,-0.34949,-1.5562,-0.18281,0.22967,-2.2847 +0.76411,-0.33998,-1.5568,-0.18143,0.2274,-2.2841 +0.76209,-0.33049,-1.5573,-0.18007,0.22518,-2.2834 +0.75999,-0.32104,-1.5579,-0.17873,0.22303,-2.2827 +0.75781,-0.31161,-1.5584,-0.17741,0.22094,-2.2818 +0.75553,-0.30222,-1.559,-0.17611,0.21891,-2.2808 +0.75318,-0.29286,-1.5595,-0.17483,0.21694,-2.2797 +0.75074,-0.28353,-1.56,-0.17358,0.21504,-2.2786 +0.74822,-0.27424,-1.5605,-0.17234,0.21319,-2.2773 +0.74562,-0.26499,-1.561,-0.17112,0.21141,-2.276 +0.74293,-0.25577,-1.5615,-0.16992,0.20969,-2.2745 +0.74017,-0.24659,-1.5619,-0.16873,0.20802,-2.2729 +0.73732,-0.23745,-1.5624,-0.16756,0.20642,-2.2713 +0.7344,-0.22835,-1.5628,-0.16641,0.20487,-2.2695 +0.7314,-0.2193,-1.5633,-0.16528,0.20339,-2.2677 +0.72831,-0.21028,-1.5637,-0.16416,0.20196,-2.2657 +0.72515,-0.20131,-1.5641,-0.16305,0.20059,-2.2637 +0.72192,-0.19239,-1.5645,-0.16196,0.19928,-2.2615 +0.71861,-0.18351,-1.5648,-0.16088,0.19802,-2.2593 +0.71522,-0.17467,-1.5652,-0.15981,0.19682,-2.257 +0.71176,-0.16589,-1.5656,-0.15876,0.19568,-2.2545 +0.70822,-0.15715,-1.5659,-0.15771,0.19459,-2.252 +0.70461,-0.14847,-1.5663,-0.15668,0.19356,-2.2494 +0.70093,-0.13983,-1.5666,-0.15566,0.19258,-2.2466 +0.69718,-0.13125,-1.5669,-0.15465,0.19165,-2.2438 +0.69336,-0.12271,-1.5672,-0.15365,0.19078,-2.2409 +0.68947,-0.11424,-1.5675,-0.15266,0.18997,-2.2378 +0.6855,-0.10581,-1.5678,-0.15167,0.1892,-2.2347 +0.68148,-0.097447,-1.568,-0.1507,0.18849,-2.2315 +0.67738,-0.089137,-1.5683,-0.14973,0.18783,-2.2282 +0.67322,-0.080885,-1.5685,-0.14876,0.18722,-2.2248 +0.66899,-0.072691,-1.5688,-0.1478,0.18666,-2.2213 +0.6647,-0.064556,-1.569,-0.14685,0.18615,-2.2177 +0.66034,-0.056482,-1.5692,-0.14591,0.18569,-2.214 +0.65592,-0.04847,-1.5694,-0.14496,0.18527,-2.2102 +0.65144,-0.040519,-1.5696,-0.14403,0.18491,-2.2063 +0.6469,-0.032632,-1.5697,-0.14309,0.18459,-2.2023 +0.6423,-0.024809,-1.5699,-0.14216,0.18432,-2.1983 +0.63764,-0.017051,-1.57,-0.14123,0.18409,-2.1941 +0.63292,-0.0093587,-1.5702,-0.1403,0.18391,-2.1898 +0.62814,-0.001733,-1.5703,-0.13937,0.18378,-2.1855 +0.62331,0.0058251,-1.5704,-0.13844,0.18369,-2.181 +0.61843,0.013315,-1.5705,-0.13752,0.18364,-2.1765 +0.61349,0.020735,-1.5706,-0.13659,0.18363,-2.1719 +0.60849,0.028086,-1.5707,-0.13566,0.18367,-2.1671 +0.60345,0.035366,-1.5707,-0.13473,0.18375,-2.1623 +0.59835,0.042574,-1.5708,-0.1338,0.18387,-2.1574 +0.59321,0.049709,-1.5708,-0.13287,0.18403,-2.1524 +0.58801,0.056772,-1.5708,-0.13193,0.18422,-2.1474 +0.58277,0.06376,-1.5708,-0.13099,0.18446,-2.1422 +0.57748,0.070673,-1.5708,-0.13004,0.18473,-2.1369 +0.57215,0.077511,-1.5708,-0.12909,0.18504,-2.1316 +0.56677,0.084273,-1.5708,-0.12814,0.18539,-2.1262 +0.56135,0.090958,-1.5707,-0.12718,0.18577,-2.1207 +0.55588,0.097565,-1.5707,-0.12622,0.18619,-2.1151 +0.55038,0.10409,-1.5706,-0.12524,0.18664,-2.1094 +0.54483,0.11054,-1.5705,-0.12427,0.18712,-2.1036 +0.53924,0.11691,-1.5704,-0.12328,0.18764,-2.0977 +0.53362,0.1232,-1.5703,-0.12229,0.18819,-2.0918 +0.52796,0.12941,-1.5701,-0.12128,0.18877,-2.0858 +0.52227,0.13554,-1.57,-0.12027,0.18937,-2.0797 +0.51654,0.14158,-1.5698,-0.11925,0.19001,-2.0735 +0.51077,0.14754,-1.5696,-0.11823,0.19068,-2.0673 +0.50498,0.15342,-1.5694,-0.11719,0.19137,-2.0609 +0.49915,0.15921,-1.5692,-0.11614,0.19209,-2.0545 +0.4933,0.16492,-1.569,-0.11508,0.19284,-2.048 +0.48741,0.17054,-1.5687,-0.11401,0.19361,-2.0415 +0.4815,0.17607,-1.5685,-0.11292,0.1944,-2.0348 +0.47556,0.18152,-1.5682,-0.11183,0.19522,-2.0281 +0.4696,0.18689,-1.5679,-0.11072,0.19606,-2.0213 +0.46361,0.19216,-1.5676,-0.1096,0.19693,-2.0144 +0.4576,0.19735,-1.5673,-0.10846,0.19781,-2.0075 +0.45157,0.20244,-1.5669,-0.10732,0.19871,-2.0005 +0.44552,0.20745,-1.5666,-0.10616,0.19964,-1.9934 +0.43945,0.21237,-1.5662,-0.10498,0.20058,-1.9863 +0.43336,0.2172,-1.5658,-0.10379,0.20153,-1.9791 +0.42726,0.22194,-1.5654,-0.10258,0.20251,-1.9718 +0.42114,0.22658,-1.5649,-0.10136,0.2035,-1.9644 +0.41501,0.23114,-1.5645,-0.10012,0.20451,-1.957 +0.40886,0.2356,-1.564,-0.098872,0.20552,-1.9495 +0.4027,0.23997,-1.5635,-0.097602,0.20656,-1.942 +0.39653,0.24425,-1.563,-0.096315,0.2076,-1.9344 +0.39035,0.24843,-1.5625,-0.095011,0.20866,-1.9267 +0.38417,0.25252,-1.5619,-0.093689,0.20972,-1.919 +0.37797,0.25652,-1.5614,-0.09235,0.2108,-1.9112 +0.37178,0.26042,-1.5608,-0.090993,0.21188,-1.9034 +0.36557,0.26423,-1.5602,-0.089617,0.21297,-1.8955 +0.35937,0.26795,-1.5596,-0.088222,0.21407,-1.8875 +0.35316,0.27156,-1.5589,-0.086809,0.21518,-1.8795 +0.34695,0.27509,-1.5582,-0.085376,0.21629,-1.8715 +0.34075,0.27851,-1.5575,-0.083923,0.2174,-1.8634 +0.33454,0.28185,-1.5568,-0.082451,0.21852,-1.8552 +0.32834,0.28508,-1.5561,-0.080958,0.21964,-1.847 +0.32214,0.28822,-1.5553,-0.079445,0.22076,-1.8387 +0.31595,0.29126,-1.5546,-0.077912,0.22188,-1.8304 +0.30977,0.2942,-1.5538,-0.076357,0.223,-1.822 +0.30359,0.29705,-1.5529,-0.074782,0.22412,-1.8136 +0.29742,0.2998,-1.5521,-0.073185,0.22524,-1.8052 +0.29127,0.30245,-1.5512,-0.071566,0.22635,-1.7967 +0.28512,0.30501,-1.5503,-0.069926,0.22746,-1.7882 +0.27899,0.30747,-1.5494,-0.068264,0.22857,-1.7796 +0.27288,0.30982,-1.5485,-0.066579,0.22967,-1.771 +0.26678,0.31208,-1.5475,-0.064872,0.23076,-1.7623 +0.26069,0.31425,-1.5465,-0.063143,0.23185,-1.7536 +0.25463,0.31631,-1.5455,-0.06139,0.23293,-1.7449 +0.24858,0.31828,-1.5445,-0.059615,0.234,-1.7362 +0.24256,0.32015,-1.5434,-0.057816,0.23505,-1.7274 +0.23656,0.32191,-1.5423,-0.055994,0.2361,-1.7185 +0.23057,0.32359,-1.5412,-0.054149,0.23714,-1.7097 +0.22462,0.32516,-1.5401,-0.052279,0.23816,-1.7008 +0.21869,0.32663,-1.5389,-0.050386,0.23917,-1.6919 +0.21279,0.32801,-1.5377,-0.04847,0.24016,-1.683 +0.20691,0.32928,-1.5365,-0.046529,0.24114,-1.674 +0.20106,0.33046,-1.5353,-0.044563,0.2421,-1.665 +0.19525,0.33154,-1.534,-0.042574,0.24305,-1.656 +0.18946,0.33252,-1.5327,-0.04056,0.24398,-1.647 +0.18371,0.3334,-1.5314,-0.038521,0.24488,-1.6379 +0.17799,0.33419,-1.53,-0.036457,0.24577,-1.6288 +0.17231,0.33487,-1.5287,-0.034369,0.24664,-1.6197 +0.16666,0.33546,-1.5273,-0.032256,0.24749,-1.6106 +0.16105,0.33595,-1.5258,-0.030118,0.24831,-1.6015 +0.15548,0.33634,-1.5244,-0.027955,0.24911,-1.5924 +0.14995,0.33663,-1.5229,-0.025767,0.24989,-1.5832 +0.14446,0.33683,-1.5214,-0.023553,0.25064,-1.5741 +0.13902,0.33693,-1.5198,-0.021315,0.25137,-1.5649 +0.13361,0.33693,-1.5182,-0.01905,0.25207,-1.5557 +0.12825,0.33683,-1.5166,-0.016761,0.25274,-1.5465 +0.12294,0.33664,-1.515,-0.014446,0.25338,-1.5374 +0.11767,0.33635,-1.5133,-0.012106,0.254,-1.5282 +0.11245,0.33597,-1.5116,-0.00974,0.25458,-1.519 +0.10728,0.33549,-1.5099,-0.0073486,0.25514,-1.5098 +0.10216,0.33491,-1.5082,-0.0049317,0.25566,-1.5006 +0.097086,0.33423,-1.5064,-0.0024893,0.25615,-1.4914 +0.092067,0.33347,-1.5046,-2.1223e-05,0.25661,-1.4822 +0.087102,0.3326,-1.5027,0.0024724,0.25704,-1.473 +0.082191,0.33164,-1.5009,0.0049916,0.25743,-1.4638 +0.077335,0.33059,-1.4989,0.0075364,0.25778,-1.4546 +0.072535,0.32944,-1.497,0.010107,0.2581,-1.4454 +0.067793,0.3282,-1.495,0.012703,0.25839,-1.4363 +0.063109,0.32686,-1.493,0.015324,0.25863,-1.4271 +0.058484,0.32544,-1.491,0.017971,0.25884,-1.418 +0.05392,0.32391,-1.4889,0.020643,0.25901,-1.4088 +0.049417,0.3223,-1.4868,0.023341,0.25913,-1.3997 +0.044977,0.32059,-1.4847,0.026064,0.25922,-1.3906 +0.040599,0.3188,-1.4826,0.028813,0.25927,-1.3815 +0.036287,0.31691,-1.4804,0.031587,0.25927,-1.3725 +0.032039,0.31493,-1.4781,0.034386,0.25923,-1.3634 +0.027858,0.31286,-1.4759,0.03721,0.25915,-1.3544 +0.023743,0.3107,-1.4736,0.040059,0.25903,-1.3454 +0.019697,0.30845,-1.4713,0.042934,0.25886,-1.3364 +0.01572,0.30611,-1.4689,0.045833,0.25864,-1.3275 +0.011813,0.30368,-1.4665,0.048757,0.25838,-1.3185 +0.007976,0.30116,-1.4641,0.051706,0.25807,-1.3096 +0.0042111,0.29856,-1.4616,0.05468,0.25772,-1.3008 +0.00051873,0.29587,-1.4591,0.057678,0.25732,-1.2919 +-0.0031003,0.29309,-1.4566,0.0607,0.25687,-1.2831 +-0.0066451,0.29023,-1.454,0.063747,0.25637,-1.2743 +-0.010115,0.28728,-1.4515,0.066819,0.25582,-1.2656 +-0.013509,0.28424,-1.4488,0.069914,0.25522,-1.2569 +-0.016826,0.28112,-1.4462,0.073034,0.25457,-1.2482 +-0.020066,0.27792,-1.4435,0.076177,0.25386,-1.2396 +-0.023227,0.27463,-1.4407,0.079344,0.25311,-1.2309 +-0.02631,0.27126,-1.438,0.082535,0.2523,-1.2224 +-0.029312,0.26781,-1.4352,0.08575,0.25144,-1.2139 +-0.032234,0.26428,-1.4324,0.088987,0.25053,-1.2054 +-0.035075,0.26066,-1.4295,0.092249,0.24956,-1.1969 +-0.037834,0.25697,-1.4266,0.095533,0.24854,-1.1886 +-0.04051,0.25319,-1.4236,0.09884,0.24746,-1.1802 +-0.043103,0.24934,-1.4207,0.10217,0.24632,-1.1719 +-0.045612,0.2454,-1.4177,0.10552,0.24513,-1.1636 +-0.048036,0.24139,-1.4146,0.1089,0.24389,-1.1554 +-0.050375,0.2373,-1.4116,0.1123,0.24258,-1.1473 +-0.052628,0.23314,-1.4085,0.11571,0.24122,-1.1392 +-0.054794,0.2289,-1.4053,0.11916,0.2398,-1.1311 +-0.056873,0.22458,-1.4021,0.12262,0.23832,-1.1231 +-0.058865,0.22019,-1.3989,0.12611,0.23678,-1.1152 +-0.060768,0.21572,-1.3957,0.12961,0.23518,-1.1073 +-0.062582,0.21118,-1.3924,0.13314,0.23353,-1.0994 +-0.064306,0.20657,-1.3891,0.13669,0.23181,-1.0917 +-0.065941,0.20189,-1.3857,0.14026,0.23003,-1.0839 +-0.067484,0.19713,-1.3823,0.14385,0.22819,-1.0763 +-0.068937,0.1923,-1.3789,0.14746,0.22629,-1.0687 +-0.070299,0.18741,-1.3755,0.15109,0.22432,-1.0611 +-0.071568,0.18244,-1.372,0.15475,0.2223,-1.0537 +-0.072745,0.17741,-1.3685,0.15842,0.22021,-1.0463 +-0.073829,0.17231,-1.3649,0.16211,0.21806,-1.0389 +-0.07482,0.16714,-1.3613,0.16582,0.21584,-1.0316 +-0.075717,0.16191,-1.3577,0.16955,0.21357,-1.0244 +-0.07652,0.15661,-1.354,0.1733,0.21123,-1.0172 +-0.077228,0.15124,-1.3503,0.17707,0.20882,-1.0102 +-0.077841,0.14581,-1.3466,0.18086,0.20635,-1.0031 +-0.07836,0.14032,-1.3428,0.18467,0.20381,-0.99619 +-0.078782,0.13477,-1.339,0.18849,0.20121,-0.98931 +-0.079109,0.12915,-1.3352,0.19234,0.19855,-0.98251 +-0.07934,0.12347,-1.3313,0.1962,0.19582,-0.97577 +-0.079474,0.11774,-1.3274,0.20008,0.19302,-0.96911 +-0.079511,0.11194,-1.3235,0.20397,0.19016,-0.96252 +-0.079452,0.10608,-1.3195,0.20789,0.18723,-0.956 +-0.079295,0.10017,-1.3155,0.21182,0.18424,-0.94956 +-0.07904,0.094201,-1.3115,0.21577,0.18118,-0.9432 +-0.078689,0.088176,-1.3074,0.21973,0.17805,-0.93691 +-0.078239,0.082094,-1.3033,0.22371,0.17486,-0.9307 +-0.077691,0.075959,-1.2992,0.22771,0.1716,-0.92456 +-0.077045,0.069769,-1.295,0.23172,0.16827,-0.91851 +-0.0763,0.063527,-1.2909,0.23575,0.16487,-0.91253 +-0.075458,0.057232,-1.2866,0.2398,0.16141,-0.90663 +-0.074516,0.050886,-1.2824,0.24386,0.15788,-0.90082 +-0.073476,0.04449,-1.2781,0.24793,0.15428,-0.89508 +-0.072337,0.038044,-1.2738,0.25202,0.15062,-0.88943 +-0.0711,0.031549,-1.2694,0.25613,0.14689,-0.88385 +-0.069763,0.025007,-1.265,0.26025,0.14309,-0.87836 +-0.068328,0.018417,-1.2606,0.26438,0.13922,-0.87296 +-0.066794,0.01178,-1.2561,0.26853,0.13529,-0.86763 +-0.065161,0.0050987,-1.2517,0.27269,0.13128,-0.86239 +-0.063429,-0.0016278,-1.2472,0.27687,0.12721,-0.85724 +-0.061598,-0.0083981,-1.2426,0.28106,0.12308,-0.85216 +-0.059668,-0.015211,-1.238,0.28526,0.11887,-0.84718 +-0.05764,-0.022067,-1.2334,0.28947,0.1146,-0.84228 +-0.055513,-0.028964,-1.2288,0.2937,0.11026,-0.83747 +-0.053288,-0.035901,-1.2242,0.29794,0.10585,-0.83274 +-0.050964,-0.042878,-1.2195,0.3022,0.10137,-0.8281 +-0.048542,-0.049894,-1.2147,0.30646,0.096828,-0.82354 +-0.046021,-0.056948,-1.21,0.31074,0.092218,-0.81908 +-0.043403,-0.064039,-1.2052,0.31503,0.08754,-0.8147 +-0.040687,-0.071167,-1.2004,0.31933,0.082796,-0.81041 +-0.037874,-0.078329,-1.1956,0.32364,0.077984,-0.80621 +-0.034963,-0.085527,-1.1907,0.32796,0.073105,-0.8021 +-0.031955,-0.092758,-1.1858,0.3323,0.06816,-0.79807 +-0.02885,-0.10002,-1.1809,0.33664,0.063149,-0.79414 +-0.025648,-0.10732,-1.176,0.34099,0.058071,-0.79029 +-0.02235,-0.11465,-1.171,0.34536,0.052927,-0.78654 +-0.018956,-0.122,-1.166,0.34973,0.047717,-0.78287 +-0.015466,-0.12939,-1.161,0.35412,0.042441,-0.7793 +-0.011881,-0.13681,-1.156,0.35851,0.037099,-0.77581 +-0.0082008,-0.14425,-1.1509,0.36292,0.031693,-0.77241 +-0.0044257,-0.15172,-1.1458,0.36733,0.026221,-0.76911 +-0.00055625,-0.15922,-1.1407,0.37176,0.020684,-0.76589 +0.0034072,-0.16675,-1.1355,0.37619,0.015083,-0.76276 +0.0074642,-0.17429,-1.1304,0.38063,0.0094176,-0.75973 +0.011614,-0.18187,-1.1252,0.38508,0.0036881,-0.75678 +0.015857,-0.18946,-1.12,0.38953,-0.0021051,-0.75392 +0.020193,-0.19708,-1.1147,0.394,-0.0079617,-0.75116 +0.02462,-0.20472,-1.1095,0.39847,-0.013881,-0.74848 +0.029138,-0.21237,-1.1042,0.40295,-0.019864,-0.7459 +0.033747,-0.22005,-1.0989,0.40744,-0.025909,-0.7434 +0.038447,-0.22775,-1.0935,0.41194,-0.032016,-0.74099 +0.043237,-0.23547,-1.0882,0.41644,-0.038184,-0.73868 +0.048115,-0.2432,-1.0828,0.42095,-0.044415,-0.73645 +0.053083,-0.25095,-1.0774,0.42547,-0.050706,-0.73431 +0.058139,-0.25871,-1.072,0.43,-0.057057,-0.73226 +0.063282,-0.26649,-1.0666,0.43453,-0.063469,-0.7303 +0.068513,-0.27429,-1.0611,0.43907,-0.069941,-0.72843 +0.07383,-0.2821,-1.0557,0.44361,-0.076471,-0.72665 +0.079232,-0.28992,-1.0502,0.44816,-0.083061,-0.72495 +0.08472,-0.29775,-1.0447,0.45272,-0.08971,-0.72334 +0.090293,-0.30559,-1.0392,0.45728,-0.096416,-0.72182 +0.095949,-0.31344,-1.0336,0.46185,-0.10318,-0.72039 +0.10169,-0.32131,-1.0281,0.46642,-0.11,-0.71905 +0.10751,-0.32918,-1.0225,0.471,-0.11688,-0.71779 +0.11341,-0.33705,-1.0169,0.47559,-0.12381,-0.71661 +0.1194,-0.34494,-1.0113,0.48018,-0.1308,-0.71553 +0.12546,-0.35283,-1.0057,0.48477,-0.13785,-0.71452 +0.13161,-0.36073,-1,0.48937,-0.14494,-0.71361 +0.13783,-0.36863,-0.99437,0.49398,-0.1521,-0.71278 +0.14414,-0.37654,-0.9887,0.49859,-0.1593,-0.71203 +0.15052,-0.38445,-0.98302,0.5032,-0.16656,-0.71136 +0.15697,-0.39236,-0.97733,0.50782,-0.17387,-0.71078 +0.1635,-0.40028,-0.97162,0.51244,-0.18124,-0.71028 +0.17011,-0.40819,-0.9659,0.51707,-0.18865,-0.70986 +0.17679,-0.41611,-0.96017,0.5217,-0.19612,-0.70953 +0.18354,-0.42403,-0.95442,0.52634,-0.20363,-0.70927 +0.19037,-0.43194,-0.94867,0.53098,-0.2112,-0.7091 +0.19727,-0.43986,-0.9429,0.53562,-0.21881,-0.709 +0.20424,-0.44777,-0.93712,0.54027,-0.22647,-0.70899 +0.21128,-0.45568,-0.93134,0.54492,-0.23418,-0.70905 +0.21838,-0.46358,-0.92554,0.54958,-0.24194,-0.70919 +0.22556,-0.47148,-0.91974,0.55423,-0.24974,-0.7094 +0.2328,-0.47937,-0.91392,0.5589,-0.25759,-0.7097 +0.24011,-0.48726,-0.9081,0.56356,-0.26548,-0.71007 +0.24749,-0.49515,-0.90227,0.56823,-0.27342,-0.71051 +0.25492,-0.50302,-0.89644,0.5729,-0.2814,-0.71103 +0.26243,-0.51089,-0.89059,0.57757,-0.28943,-0.71162 +0.26999,-0.51875,-0.88474,0.58225,-0.29749,-0.71228 +0.27762,-0.5266,-0.87889,0.58693,-0.3056,-0.71302 +0.2853,-0.53444,-0.87302,0.59162,-0.31375,-0.71382 +0.29305,-0.54227,-0.86716,0.5963,-0.32194,-0.7147 +0.30085,-0.55008,-0.86129,0.60099,-0.33016,-0.71565 +0.30872,-0.55789,-0.85541,0.60568,-0.33843,-0.71666 +0.31663,-0.56569,-0.84953,0.61038,-0.34673,-0.71775 +0.32461,-0.57347,-0.84365,0.61508,-0.35508,-0.7189 +0.33263,-0.58124,-0.83777,0.61978,-0.36345,-0.72011 +0.34072,-0.58899,-0.83188,0.62448,-0.37187,-0.72139 +0.34885,-0.59673,-0.82599,0.62919,-0.38031,-0.72274 +0.35703,-0.60445,-0.8201,0.63389,-0.3888,-0.72415 +0.36527,-0.61216,-0.81421,0.63861,-0.39731,-0.72562 +0.37355,-0.61985,-0.80832,0.64332,-0.40586,-0.72715 +0.38189,-0.62753,-0.80242,0.64803,-0.41444,-0.72874 +0.39026,-0.63519,-0.79653,0.65275,-0.42305,-0.73039 +0.39869,-0.64282,-0.79064,0.65747,-0.43169,-0.7321 +0.40716,-0.65044,-0.78475,0.6622,-0.44036,-0.73387 +0.41567,-0.65804,-0.77887,0.66692,-0.44906,-0.7357 +0.42423,-0.66563,-0.77298,0.67165,-0.45778,-0.73758 +0.43283,-0.67319,-0.7671,0.67638,-0.46653,-0.73951 +0.44146,-0.68073,-0.76122,0.68111,-0.47531,-0.7415 +0.45014,-0.68824,-0.75534,0.68585,-0.48412,-0.74354 +0.45885,-0.69574,-0.74947,0.69059,-0.49294,-0.74563 +0.4676,-0.70321,-0.7436,0.69533,-0.50179,-0.74777 +0.47639,-0.71066,-0.73774,0.70007,-0.51067,-0.74996 +0.48521,-0.71809,-0.73189,0.70481,-0.51956,-0.7522 +0.49407,-0.72549,-0.72604,0.70956,-0.52848,-0.75448 +0.50295,-0.73287,-0.72019,0.71431,-0.53741,-0.75681 +0.51187,-0.74023,-0.71435,0.71906,-0.54637,-0.75919 +0.52082,-0.74756,-0.70852,0.72382,-0.55534,-0.7616 +0.5298,-0.75486,-0.7027,0.72857,-0.56433,-0.76406 +0.5388,-0.76213,-0.69689,0.73333,-0.57334,-0.76657 +0.54783,-0.76938,-0.69108,0.7381,-0.58236,-0.76911 +0.55689,-0.77661,-0.68529,0.74286,-0.5914,-0.77169 +0.56597,-0.7838,-0.6795,0.74763,-0.60045,-0.7743 +0.57507,-0.79097,-0.67372,0.7524,-0.60951,-0.77696 +0.58419,-0.7981,-0.66795,0.75717,-0.61858,-0.77965 +0.59334,-0.80521,-0.6622,0.76195,-0.62767,-0.78237 +0.6025,-0.81229,-0.65645,0.76673,-0.63677,-0.78513 +0.61168,-0.81934,-0.65072,0.77151,-0.64587,-0.78792 +0.62088,-0.82636,-0.645,0.77629,-0.65498,-0.79073 +0.63009,-0.83335,-0.63929,0.78108,-0.6641,-0.79358 +0.63932,-0.8403,-0.63359,0.78587,-0.67323,-0.79646 +0.64856,-0.84723,-0.62791,0.79066,-0.68236,-0.79936 +0.65781,-0.85412,-0.62224,0.79545,-0.6915,-0.80229 +0.66707,-0.86098,-0.61659,0.80025,-0.70064,-0.80524 +0.67635,-0.86781,-0.61095,0.80505,-0.70978,-0.80821 +0.68563,-0.87461,-0.60532,0.80986,-0.71893,-0.81121 +0.69491,-0.88137,-0.59971,0.81467,-0.72807,-0.81422 +0.70421,-0.8881,-0.59412,0.81948,-0.73722,-0.81726 +0.71351,-0.89479,-0.58854,0.82429,-0.74636,-0.82031 +0.72281,-0.90145,-0.58298,0.82911,-0.7555,-0.82338 +0.73211,-0.90808,-0.57743,0.83393,-0.76464,-0.82647 +0.74142,-0.91467,-0.57191,0.83876,-0.77377,-0.82956 +0.75072,-0.92122,-0.5664,0.84358,-0.7829,-0.83268 +0.76002,-0.92774,-0.56091,0.84841,-0.79203,-0.8358 +0.76932,-0.93422,-0.55543,0.85325,-0.80114,-0.83893 +0.77862,-0.94067,-0.54998,0.85809,-0.81025,-0.84207 +0.78791,-0.94708,-0.54454,0.86293,-0.81935,-0.84522 +0.7972,-0.95345,-0.53913,0.86778,-0.82844,-0.84838 +0.80647,-0.95979,-0.53373,0.87263,-0.83752,-0.85154 +0.81574,-0.96609,-0.52836,0.87748,-0.84659,-0.8547 +0.825,-0.97234,-0.52301,0.88234,-0.85564,-0.85787 +0.83425,-0.97857,-0.51767,0.8872,-0.86468,-0.86104 +0.84348,-0.98475,-0.51236,0.89207,-0.87371,-0.86421 +0.8527,-0.99089,-0.50707,0.89694,-0.88272,-0.86737 +0.86191,-0.997,-0.5018,0.90182,-0.89172,-0.87054 +0.8711,-1.0031,-0.49656,0.90669,-0.9007,-0.87369 +0.88027,-1.0091,-0.49133,0.91158,-0.90966,-0.87685 +0.88943,-1.0151,-0.48613,0.91647,-0.9186,-0.87999 +0.89856,-1.021,-0.48096,0.92136,-0.92752,-0.88313 +0.90768,-1.0269,-0.4758,0.92625,-0.93641,-0.88626 +0.91677,-1.0328,-0.47068,0.93116,-0.94529,-0.88938 +0.92584,-1.0386,-0.46557,0.93606,-0.95414,-0.89249 +0.93488,-1.0444,-0.46049,0.94097,-0.96297,-0.89558 +0.9439,-1.0501,-0.45544,0.94589,-0.97178,-0.89866 +0.9529,-1.0559,-0.45041,0.95081,-0.98055,-0.90173 +0.96186,-1.0615,-0.4454,0.95573,-0.98931,-0.90477 +0.9708,-1.0671,-0.44042,0.96066,-0.99803,-0.9078 +0.97971,-1.0727,-0.43547,0.9656,-1.0067,-0.91081 +0.98858,-1.0782,-0.43055,0.97054,-1.0154,-0.9138 +0.99743,-1.0837,-0.42565,0.97548,-1.024,-0.91677 +1.0062,-1.0892,-0.42078,0.98043,-1.0326,-0.91971 +1.015,-1.0946,-0.41593,0.98539,-1.0412,-0.92263 +1.0238,-1.0999,-0.41111,0.99035,-1.0497,-0.92552 +1.0325,-1.1053,-0.40632,0.99531,-1.0582,-0.92839 +1.0411,-1.1105,-0.40156,1.0003,-1.0667,-0.93123 +1.0497,-1.1158,-0.39683,1.0053,-1.0751,-0.93403 +1.0583,-1.121,-0.39212,1.0102,-1.0835,-0.93681 +1.0669,-1.1261,-0.38745,1.0152,-1.0919,-0.93956 +1.0754,-1.1312,-0.3828,1.0202,-1.1002,-0.94227 +1.0838,-1.1363,-0.37818,1.0252,-1.1085,-0.94495 +1.0923,-1.1413,-0.37359,1.0302,-1.1167,-0.94759 +1.1006,-1.1462,-0.36903,1.0352,-1.1249,-0.9502 +1.109,-1.1512,-0.3645,1.0402,-1.1331,-0.95277 +1.1172,-1.156,-0.36,1.0453,-1.1412,-0.9553 +1.1255,-1.1609,-0.35553,1.0503,-1.1492,-0.95779 +1.1336,-1.1657,-0.35109,1.0553,-1.1572,-0.96024 +1.1418,-1.1704,-0.34668,1.0603,-1.1652,-0.96265 +1.1498,-1.1751,-0.3423,1.0654,-1.1731,-0.96501 +1.1579,-1.1797,-0.33796,1.0704,-1.181,-0.96733 +1.1658,-1.1844,-0.33364,1.0755,-1.1889,-0.9696 +1.1738,-1.1889,-0.32936,1.0805,-1.1966,-0.97183 +1.1816,-1.1934,-0.3251,1.0856,-1.2044,-0.974 +1.1894,-1.1979,-0.32088,1.0907,-1.212,-0.97613 +1.1972,-1.2023,-0.31669,1.0958,-1.2197,-0.97821 +1.2049,-1.2067,-0.31253,1.1008,-1.2272,-0.98024 +1.2125,-1.211,-0.30841,1.1059,-1.2348,-0.98222 +1.2201,-1.2153,-0.30431,1.111,-1.2422,-0.98414 +1.2276,-1.2195,-0.30025,1.1161,-1.2496,-0.98601 +1.235,-1.2237,-0.29622,1.1212,-1.257,-0.98782 +1.2424,-1.2279,-0.29222,1.1263,-1.2643,-0.98958 +1.2497,-1.232,-0.28826,1.1314,-1.2715,-0.99128 +1.257,-1.236,-0.28433,1.1366,-1.2787,-0.99292 +1.2642,-1.24,-0.28043,1.1417,-1.2858,-0.99451 +1.2713,-1.2439,-0.27656,1.1468,-1.2929,-0.99603 +1.2784,-1.2479,-0.27273,1.1519,-1.2999,-0.99749 +1.2853,-1.2517,-0.26893,1.1571,-1.3068,-0.99889 +1.2923,-1.2555,-0.26516,1.1622,-1.3137,-1.0002 +1.2991,-1.2593,-0.26143,1.1674,-1.3205,-1.0015 +1.3059,-1.263,-0.25773,1.1725,-1.3272,-1.0027 +1.3126,-1.2667,-0.25406,1.1777,-1.3339,-1.0039 +1.3192,-1.2703,-0.25042,1.1829,-1.3405,-1.0049 +1.3258,-1.2738,-0.24682,1.188,-1.3471,-1.0059 +1.3323,-1.2774,-0.24326,1.1932,-1.3536,-1.0069 +1.3387,-1.2808,-0.23972,1.1984,-1.36,-1.0078 +1.345,-1.2843,-0.23622,1.2036,-1.3663,-1.0086 +1.3513,-1.2876,-0.23276,1.2087,-1.3726,-1.0093 +1.3575,-1.291,-0.22933,1.2139,-1.3788,-1.01 +1.3636,-1.2942,-0.22593,1.2191,-1.3849,-1.0105 +1.3696,-1.2975,-0.22256,1.2243,-1.391,-1.0111 +1.3756,-1.3007,-0.21923,1.2295,-1.397,-1.0115 +1.3815,-1.3038,-0.21593,1.2347,-1.4029,-1.0119 +1.3873,-1.3069,-0.21267,1.24,-1.4087,-1.0122 +1.393,-1.3099,-0.20944,1.2452,-1.4145,-1.0124 +1.3986,-1.3129,-0.20624,1.2504,-1.4202,-1.0125 +1.4042,-1.3158,-0.20308,1.2556,-1.4258,-1.0126 +1.4096,-1.3187,-0.19995,1.2608,-1.4314,-1.0126 +1.415,-1.3216,-0.19685,1.2661,-1.4368,-1.0125 +1.4203,-1.3243,-0.19379,1.2713,-1.4422,-1.0123 +1.4255,-1.3271,-0.19076,1.2765,-1.4475,-1.0121 +1.4307,-1.3298,-0.18776,1.2818,-1.4528,-1.0117 +1.4357,-1.3324,-0.1848,1.287,-1.4579,-1.0113 +1.4407,-1.335,-0.18187,1.2922,-1.463,-1.0109 +1.4456,-1.3375,-0.17898,1.2975,-1.468,-1.0103 +1.4503,-1.34,-0.17612,1.3027,-1.4729,-1.0096 +1.455,-1.3425,-0.17329,1.308,-1.4777,-1.0089 +1.4597,-1.3449,-0.17049,1.3132,-1.4825,-1.0081 +1.4642,-1.3472,-0.16773,1.3185,-1.4872,-1.0072 +1.4686,-1.3495,-0.165,1.3237,-1.4917,-1.0062 +1.473,-1.3517,-0.1623,1.329,-1.4962,-1.0051 +1.4772,-1.3539,-0.15964,1.3342,-1.5007,-1.004 +1.4814,-1.3561,-0.157,1.3395,-1.505,-1.0027 +1.4855,-1.3581,-0.1544,1.3447,-1.5092,-1.0014 +1.4894,-1.3602,-0.15184,1.35,-1.5134,-1 +1.4933,-1.3622,-0.1493,1.3552,-1.5175,-0.9985 +1.4971,-1.3641,-0.1468,1.3605,-1.5215,-0.99692 +1.5008,-1.366,-0.14433,1.3657,-1.5254,-0.99525 +1.5044,-1.3678,-0.14189,1.3709,-1.5292,-0.9935 +1.508,-1.3696,-0.13949,1.3762,-1.5329,-0.99165 +1.5114,-1.3713,-0.13711,1.3814,-1.5365,-0.98972 +1.5147,-1.373,-0.13477,1.3867,-1.5401,-0.9877 +1.518,-1.3747,-0.13246,1.3919,-1.5435,-0.9856 +1.5211,-1.3762,-0.13018,1.3972,-1.5469,-0.9834 +1.5242,-1.3778,-0.12793,1.4024,-1.5502,-0.98112 +1.5271,-1.3792,-0.12571,1.4076,-1.5534,-0.97875 +1.53,-1.3807,-0.12352,1.4128,-1.5565,-0.97629 +1.5328,-1.382,-0.12136,1.4181,-1.5595,-0.97374 +1.5354,-1.3834,-0.11924,1.4233,-1.5624,-0.9711 +1.538,-1.3846,-0.11714,1.4285,-1.5652,-0.96838 +1.5405,-1.3858,-0.11507,1.4337,-1.5679,-0.96556 +1.5429,-1.387,-0.11304,1.4389,-1.5706,-0.96266 +1.5451,-1.3881,-0.11103,1.4441,-1.5731,-0.95967 +1.5473,-1.3892,-0.10906,1.4493,-1.5756,-0.95658 +1.5494,-1.3902,-0.10711,1.4545,-1.5779,-0.95341 +1.5514,-1.3911,-0.10519,1.4597,-1.5802,-0.95015 +1.5533,-1.3921,-0.1033,1.4648,-1.5824,-0.9468 +1.5551,-1.3929,-0.10144,1.47,-1.5845,-0.94336 +1.5568,-1.3937,-0.099609,1.4751,-1.5864,-0.93984 +1.5584,-1.3944,-0.097806,1.4803,-1.5883,-0.93622 +1.5599,-1.3951,-0.096031,1.4854,-1.5901,-0.93251 +1.5614,-1.3958,-0.094285,1.4906,-1.5918,-0.92872 +1.5627,-1.3964,-0.092565,1.4957,-1.5934,-0.92484 +1.5639,-1.3969,-0.090874,1.5008,-1.5949,-0.92087 +1.565,-1.3974,-0.08921,1.5059,-1.5963,-0.91681 +1.566,-1.3978,-0.087573,1.511,-1.5976,-0.91266 +1.5669,-1.3982,-0.085962,1.5161,-1.5989,-0.90843 +1.5678,-1.3985,-0.084379,1.5211,-1.6,-0.90411 +1.5685,-1.3988,-0.082822,1.5262,-1.601,-0.8997 +1.5691,-1.399,-0.081291,1.5312,-1.6019,-0.8952 +1.5697,-1.3992,-0.079786,1.5363,-1.6027,-0.89062 +1.5701,-1.3993,-0.078307,1.5413,-1.6035,-0.88595 +1.5704,-1.3993,-0.076853,1.5463,-1.6041,-0.88119 +1.5707,-1.3993,-0.075424,1.5513,-1.6047,-0.87635 +1.5708,-1.3993,-0.074021,1.5562,-1.6051,-0.87143 +1.5708,-1.3992,-0.072623,1.5612,-1.6054,-0.86639 +1.5708,-1.399,-0.071278,1.5661,-1.6057,-0.86131 +1.5706,-1.3988,-0.069973,1.571,-1.6058,-0.85615 +1.5703,-1.3984,-0.068716,1.5759,-1.6058,-0.85093 +1.5699,-1.3981,-0.067513,1.5807,-1.6057,-0.84566 +1.5693,-1.3976,-0.066372,1.5855,-1.6054,-0.84034 +1.5686,-1.397,-0.065301,1.5902,-1.605,-0.83498 +1.5678,-1.3963,-0.064307,1.5948,-1.6045,-0.82958 +1.5668,-1.3955,-0.063398,1.5994,-1.6038,-0.82416 +1.5656,-1.3945,-0.06258,1.6038,-1.6029,-0.81873 +1.5643,-1.3934,-0.061853,1.6082,-1.6019,-0.81328 +1.5629,-1.3922,-0.061209,1.6125,-1.6008,-0.80783 +1.5613,-1.3909,-0.060641,1.6167,-1.5995,-0.80239 +1.5595,-1.3894,-0.060141,1.6208,-1.598,-0.79695 +1.5576,-1.3878,-0.059701,1.6248,-1.5964,-0.79154 +1.5556,-1.386,-0.059315,1.6286,-1.5947,-0.78616 +1.5534,-1.384,-0.058974,1.6323,-1.5928,-0.78081 +1.551,-1.3819,-0.058672,1.6358,-1.5907,-0.7755 +1.5485,-1.3797,-0.0584,1.6392,-1.5885,-0.77024 +1.5459,-1.3773,-0.058151,1.6425,-1.5862,-0.76504 +1.5431,-1.3747,-0.057918,1.6456,-1.5837,-0.75991 +1.5401,-1.372,-0.057693,1.6485,-1.581,-0.75485 +1.537,-1.3692,-0.05747,1.6514,-1.5782,-0.74986 +1.5337,-1.3662,-0.057246,1.654,-1.5753,-0.74497 +1.5304,-1.363,-0.057023,1.6565,-1.5721,-0.74017 +1.5268,-1.3597,-0.0568,1.6589,-1.5689,-0.73547 +1.5231,-1.3563,-0.056576,1.6611,-1.5655,-0.73088 +1.5192,-1.3527,-0.056353,1.6631,-1.5619,-0.72641 +1.5152,-1.349,-0.056129,1.665,-1.5582,-0.72207 +1.5111,-1.3451,-0.055906,1.6668,-1.5544,-0.71785 +1.5068,-1.341,-0.055683,1.6684,-1.5504,-0.71377 +1.5024,-1.3368,-0.055459,1.6698,-1.5462,-0.70981 +1.4977,-1.3325,-0.055236,1.6711,-1.5419,-0.70596 +1.493,-1.328,-0.055012,1.6723,-1.5375,-0.70222 +1.4881,-1.3233,-0.054789,1.6733,-1.5329,-0.69859 +1.483,-1.3185,-0.054566,1.6742,-1.5281,-0.69504 +1.4778,-1.3136,-0.054342,1.6749,-1.5232,-0.69158 +1.4725,-1.3086,-0.054119,1.6754,-1.5182,-0.6882 +1.467,-1.3034,-0.053895,1.6758,-1.513,-0.68488 +1.4613,-1.2981,-0.053672,1.6761,-1.5076,-0.68163 +1.4556,-1.2928,-0.053449,1.6762,-1.5021,-0.67844 +1.4497,-1.2873,-0.053225,1.6761,-1.4965,-0.67529 +1.4437,-1.2817,-0.053002,1.6759,-1.4907,-0.67219 +1.4375,-1.2761,-0.052778,1.6756,-1.4848,-0.66911 +1.4313,-1.2704,-0.052555,1.6751,-1.4787,-0.66606 +1.425,-1.2646,-0.052332,1.6744,-1.4725,-0.66303 +1.4185,-1.2588,-0.052108,1.6736,-1.4662,-0.66001 +1.412,-1.2529,-0.051885,1.6727,-1.4598,-0.65699 +1.4055,-1.247,-0.051661,1.6716,-1.4532,-0.65397 +1.3988,-1.241,-0.051438,1.6704,-1.4466,-0.65095 +1.3921,-1.235,-0.051215,1.669,-1.4399,-0.64794 +1.3854,-1.229,-0.050991,1.6674,-1.4331,-0.64492 +1.3786,-1.2229,-0.050768,1.6657,-1.4262,-0.6419 +1.3717,-1.2169,-0.050544,1.6639,-1.4193,-0.63888 +1.3649,-1.2109,-0.050321,1.6619,-1.4123,-0.63586 +1.358,-1.2048,-0.050098,1.6597,-1.4053,-0.63284 +1.3511,-1.1988,-0.049874,1.6574,-1.3982,-0.62982 +1.3442,-1.1928,-0.049651,1.655,-1.3911,-0.62681 +1.3373,-1.1867,-0.049427,1.6524,-1.384,-0.62379 +1.3304,-1.1807,-0.049204,1.6496,-1.3768,-0.62077 +1.3235,-1.1746,-0.048981,1.6467,-1.3696,-0.61775 +1.3166,-1.1686,-0.048757,1.6437,-1.3624,-0.61473 +1.3097,-1.1626,-0.048534,1.6405,-1.3553,-0.61172 +1.3028,-1.1565,-0.048311,1.6372,-1.3481,-0.6087 +1.2959,-1.1505,-0.048087,1.6337,-1.3409,-0.60568 +1.289,-1.1445,-0.047864,1.63,-1.3337,-0.60266 +1.2821,-1.1384,-0.04764,1.6262,-1.3266,-0.59964 +1.2752,-1.1324,-0.047417,1.6223,-1.3194,-0.59662 +1.2683,-1.1264,-0.047194,1.6182,-1.3122,-0.59361 +1.2614,-1.1203,-0.04697,1.6139,-1.305,-0.59059 +1.2545,-1.1143,-0.046747,1.6095,-1.2978,-0.58757 +1.2475,-1.1082,-0.046523,1.605,-1.2907,-0.58455 +1.2407,-1.1022,-0.0463,1.6003,-1.2835,-0.58153 +1.2337,-1.0962,-0.046077,1.5954,-1.2763,-0.57851 +1.2268,-1.0901,-0.045853,1.5904,-1.2691,-0.57549 +1.2199,-1.0841,-0.04563,1.5853,-1.262,-0.57248 +1.213,-1.0781,-0.045407,1.58,-1.2548,-0.56946 +1.2061,-1.072,-0.045183,1.5745,-1.2476,-0.56644 +1.1992,-1.066,-0.04496,1.569,-1.2404,-0.56342 +1.1923,-1.06,-0.044736,1.5632,-1.2332,-0.5604 +1.1854,-1.0539,-0.044513,1.5573,-1.2261,-0.55738 +1.1785,-1.0479,-0.04429,1.5513,-1.2189,-0.55437 +1.1716,-1.0418,-0.044066,1.5451,-1.2117,-0.55135 +1.1647,-1.0358,-0.043843,1.5387,-1.2045,-0.54833 +1.1578,-1.0298,-0.043619,1.5322,-1.1973,-0.54531 +1.1509,-1.0237,-0.043396,1.5256,-1.1902,-0.54229 +1.144,-1.0177,-0.043173,1.5188,-1.183,-0.53927 +1.1371,-1.0117,-0.042949,1.5118,-1.1758,-0.53626 +1.1302,-1.0056,-0.042726,1.5047,-1.1686,-0.53324 +1.1233,-0.9996,-0.042502,1.4975,-1.1615,-0.53022 +1.1164,-0.99357,-0.042279,1.4901,-1.1543,-0.5272 +1.1095,-0.98753,-0.042056,1.4826,-1.1471,-0.52418 +1.1026,-0.98149,-0.041832,1.4749,-1.1399,-0.52116 +1.0957,-0.97546,-0.041609,1.467,-1.1327,-0.51814 +1.0888,-0.96942,-0.041385,1.459,-1.1256,-0.51513 +1.0819,-0.96339,-0.041162,1.4509,-1.1184,-0.51211 +1.075,-0.95735,-0.040939,1.4426,-1.1112,-0.50909 +1.0681,-0.95131,-0.040715,1.4341,-1.104,-0.50607 +1.0612,-0.94528,-0.040492,1.4255,-1.0969,-0.50305 +1.0542,-0.93924,-0.040268,1.4168,-1.0897,-0.50004 +1.0474,-0.9332,-0.040045,1.4079,-1.0825,-0.49702 +1.0405,-0.92717,-0.039822,1.3989,-1.0753,-0.494 +1.0335,-0.92113,-0.039598,1.3898,-1.0681,-0.49098 +1.0266,-0.9151,-0.039375,1.3806,-1.061,-0.48796 +1.0197,-0.90906,-0.039151,1.3713,-1.0538,-0.48494 +1.0128,-0.90302,-0.038928,1.3618,-1.0466,-0.48192 +1.0059,-0.89699,-0.038705,1.3523,-1.0394,-0.47891 +0.99903,-0.89095,-0.038481,1.3427,-1.0322,-0.47589 +0.99212,-0.88492,-0.038258,1.333,-1.0251,-0.47287 +0.98522,-0.87888,-0.038034,1.3233,-1.0179,-0.46985 +0.97832,-0.87284,-0.037811,1.3135,-1.0107,-0.46683 +0.97141,-0.86681,-0.037588,1.3037,-1.0035,-0.46381 +0.96451,-0.86077,-0.037364,1.2938,-0.99635,-0.4608 +0.95761,-0.85474,-0.037141,1.2838,-0.98917,-0.45778 +0.9507,-0.8487,-0.036917,1.2739,-0.98199,-0.45476 +0.9438,-0.84266,-0.036694,1.2639,-0.97481,-0.45174 +0.9369,-0.83663,-0.036471,1.2539,-0.96764,-0.44872 +0.92999,-0.83059,-0.036247,1.2439,-0.96046,-0.4457 +0.92309,-0.82456,-0.036024,1.2339,-0.95328,-0.44269 +0.91619,-0.81852,-0.0358,1.2239,-0.9461,-0.43967 +0.90928,-0.81248,-0.035577,1.2139,-0.93892,-0.43665 +0.90238,-0.80645,-0.035354,1.2039,-0.93174,-0.43363 +0.89547,-0.80041,-0.03513,1.1939,-0.92456,-0.43061 +0.88857,-0.79438,-0.034907,1.1839,-0.91739,-0.42759 +0.88167,-0.78834,-0.034684,1.1739,-0.91021,-0.42457 +0.87476,-0.7823,-0.03446,1.1639,-0.90303,-0.42156 +0.86786,-0.77627,-0.034237,1.1539,-0.89585,-0.41854 +0.86096,-0.77023,-0.034013,1.1439,-0.88867,-0.41552 +0.85405,-0.76419,-0.03379,1.1339,-0.88149,-0.4125 +0.84715,-0.75816,-0.033567,1.1239,-0.87432,-0.40948 +0.84025,-0.75212,-0.033343,1.1139,-0.86714,-0.40647 +0.83334,-0.74609,-0.03312,1.1039,-0.85996,-0.40345 +0.82644,-0.74005,-0.032896,1.0939,-0.85278,-0.40043 +0.81954,-0.73401,-0.032673,1.0839,-0.8456,-0.39741 +0.81263,-0.72798,-0.03245,1.0739,-0.83842,-0.39439 +0.80573,-0.72194,-0.032226,1.0639,-0.83124,-0.39137 +0.79883,-0.71591,-0.032003,1.0539,-0.82407,-0.38836 +0.79192,-0.70987,-0.03178,1.0439,-0.81689,-0.38534 +0.78502,-0.70383,-0.031556,1.0339,-0.80971,-0.38232 +0.77811,-0.6978,-0.031333,1.0239,-0.80253,-0.3793 +0.77121,-0.69176,-0.031109,1.0139,-0.79535,-0.37628 +0.76431,-0.68573,-0.030886,1.0039,-0.78817,-0.37326 +0.7574,-0.67969,-0.030662,0.99391,-0.78099,-0.37024 +0.7505,-0.67365,-0.030439,0.98391,-0.77382,-0.36723 +0.7436,-0.66762,-0.030216,0.97391,-0.76664,-0.36421 +0.73669,-0.66158,-0.029992,0.96391,-0.75946,-0.36119 +0.72979,-0.65555,-0.029769,0.95391,-0.75228,-0.35817 +0.72289,-0.64951,-0.029545,0.94391,-0.7451,-0.35515 +0.71598,-0.64347,-0.029322,0.93391,-0.73792,-0.35213 +0.70908,-0.63744,-0.029099,0.92391,-0.73074,-0.34912 +0.70218,-0.6314,-0.028875,0.91391,-0.72357,-0.3461 +0.69527,-0.62536,-0.028652,0.90391,-0.71639,-0.34308 +0.68837,-0.61933,-0.028429,0.89391,-0.70921,-0.34006 +0.68146,-0.61329,-0.028205,0.88391,-0.70203,-0.33704 +0.67456,-0.60726,-0.027982,0.87391,-0.69485,-0.33402 +0.66766,-0.60122,-0.027758,0.86391,-0.68767,-0.331 +0.66075,-0.59518,-0.027535,0.85391,-0.6805,-0.32799 +0.65385,-0.58915,-0.027312,0.84391,-0.67332,-0.32497 +0.64695,-0.58311,-0.027088,0.83391,-0.66614,-0.32195 +0.64004,-0.57708,-0.026865,0.82391,-0.65896,-0.31893 +0.63314,-0.57104,-0.026641,0.81391,-0.65178,-0.31591 +0.62624,-0.565,-0.026418,0.80391,-0.6446,-0.31289 +0.61933,-0.55897,-0.026195,0.79391,-0.63743,-0.30988 +0.61243,-0.55293,-0.025971,0.78391,-0.63025,-0.30686 +0.60553,-0.5469,-0.025748,0.77391,-0.62307,-0.30384 +0.59862,-0.54086,-0.025524,0.76391,-0.61589,-0.30082 +0.59172,-0.53482,-0.025301,0.75391,-0.60871,-0.2978 +0.58482,-0.52879,-0.025078,0.74391,-0.60153,-0.29479 +0.57791,-0.52275,-0.024854,0.73391,-0.59435,-0.29177 +0.57101,-0.51672,-0.024631,0.72391,-0.58718,-0.28875 +0.56411,-0.51068,-0.024407,0.71391,-0.58,-0.28573 +0.5572,-0.50464,-0.024184,0.70391,-0.57282,-0.28271 +0.5503,-0.49861,-0.023961,0.69391,-0.56564,-0.27969 +0.54339,-0.49257,-0.023737,0.68391,-0.55846,-0.27667 +0.53649,-0.48653,-0.023514,0.67391,-0.55128,-0.27366 +0.52959,-0.4805,-0.02329,0.66391,-0.5441,-0.27064 +0.52268,-0.47446,-0.023067,0.65391,-0.53692,-0.26762 +0.51578,-0.46843,-0.022844,0.64391,-0.52975,-0.2646 +0.50888,-0.46239,-0.02262,0.63391,-0.52257,-0.26158 +0.50197,-0.45635,-0.022397,0.62391,-0.51539,-0.25856 +0.49507,-0.45032,-0.022173,0.61391,-0.50821,-0.25555 +0.48817,-0.44428,-0.02195,0.60391,-0.50103,-0.25253 +0.48126,-0.43825,-0.021727,0.59391,-0.49385,-0.24951 +0.47436,-0.43221,-0.021503,0.58391,-0.48668,-0.24649 +0.46746,-0.42617,-0.02128,0.57391,-0.4795,-0.24347 +0.46055,-0.42014,-0.021057,0.56391,-0.47232,-0.24045 +0.45365,-0.4141,-0.020833,0.55391,-0.46514,-0.23744 +0.44675,-0.40807,-0.02061,0.54391,-0.45796,-0.23442 +0.43984,-0.40203,-0.020386,0.53391,-0.45078,-0.2314 +0.43294,-0.39599,-0.020163,0.52391,-0.44361,-0.22838 +0.42604,-0.38996,-0.01994,0.51391,-0.43643,-0.22536 +0.41913,-0.38392,-0.019716,0.50391,-0.42925,-0.22234 +0.41223,-0.37789,-0.019493,0.49391,-0.42207,-0.21932 +0.40532,-0.37185,-0.019269,0.48391,-0.41489,-0.21631 +0.39842,-0.36581,-0.019046,0.47391,-0.40771,-0.21329 +0.39152,-0.35978,-0.018823,0.46391,-0.40053,-0.21027 +0.38461,-0.35374,-0.018599,0.45391,-0.39336,-0.20725 +0.37771,-0.3477,-0.018376,0.44391,-0.38618,-0.20423 +0.37081,-0.34167,-0.018152,0.43391,-0.379,-0.20122 +0.3639,-0.33563,-0.017929,0.42391,-0.37182,-0.1982 +0.357,-0.3296,-0.017706,0.41392,-0.36464,-0.19518 +0.3501,-0.32356,-0.017482,0.40394,-0.35746,-0.19216 +0.34319,-0.31752,-0.017259,0.39399,-0.35028,-0.18914 +0.33629,-0.31149,-0.017035,0.38406,-0.34311,-0.18612 +0.32939,-0.30545,-0.016812,0.37418,-0.33593,-0.1831 +0.32248,-0.29942,-0.016589,0.36433,-0.32875,-0.18009 +0.31558,-0.29338,-0.016365,0.35454,-0.32157,-0.17707 +0.30868,-0.28734,-0.016142,0.34481,-0.31439,-0.17405 +0.30177,-0.28131,-0.015918,0.33514,-0.30721,-0.17103 +0.29487,-0.27527,-0.015695,0.32555,-0.30003,-0.16801 +0.28797,-0.26924,-0.015472,0.31604,-0.29286,-0.16499 +0.28106,-0.2632,-0.015248,0.30662,-0.28568,-0.16198 +0.27416,-0.25716,-0.015025,0.2973,-0.2785,-0.15896 +0.26726,-0.25113,-0.014802,0.28808,-0.27132,-0.15594 +0.26035,-0.24509,-0.014578,0.27898,-0.26414,-0.15292 +0.25345,-0.23905,-0.014355,0.26999,-0.25696,-0.1499 +0.24654,-0.23302,-0.014131,0.26113,-0.24979,-0.14688 +0.23964,-0.22698,-0.013908,0.25241,-0.24261,-0.14387 +0.23274,-0.22095,-0.013685,0.24383,-0.23543,-0.14085 +0.22583,-0.21491,-0.013461,0.23539,-0.22826,-0.13783 +0.21893,-0.20888,-0.013238,0.22711,-0.22111,-0.13481 +0.21204,-0.20284,-0.013014,0.21898,-0.21398,-0.13179 +0.20517,-0.1968,-0.012791,0.21099,-0.20688,-0.12877 +0.19832,-0.19077,-0.012568,0.20316,-0.19982,-0.12576 +0.1915,-0.18473,-0.012344,0.19547,-0.19281,-0.12274 +0.18473,-0.17869,-0.012121,0.18794,-0.18585,-0.11972 +0.178,-0.17266,-0.011897,0.18056,-0.17895,-0.1167 +0.17132,-0.16664,-0.011674,0.17332,-0.17212,-0.11368 +0.16471,-0.16064,-0.011451,0.16624,-0.16537,-0.11066 +0.15816,-0.15466,-0.011227,0.15931,-0.1587,-0.10765 +0.1517,-0.14872,-0.011004,0.15252,-0.15212,-0.10463 +0.14532,-0.14282,-0.010781,0.14589,-0.14563,-0.10161 +0.13903,-0.13697,-0.010557,0.13941,-0.13926,-0.09859 +0.13284,-0.13118,-0.010334,0.13307,-0.133,-0.095571 +0.12676,-0.12545,-0.01011,0.12689,-0.12686,-0.092553 +0.12079,-0.11979,-0.0098869,0.12085,-0.12084,-0.089535 +0.11495,-0.11421,-0.0096635,0.11497,-0.11497,-0.086516 +0.10923,-0.10871,-0.0094401,0.10924,-0.10923,-0.083498 +0.10365,-0.10331,-0.0092167,0.10365,-0.10365,-0.080479 +0.098219,-0.098013,-0.0089933,0.098219,-0.098218,-0.077461 +0.092935,-0.092822,-0.0087699,0.092935,-0.092934,-0.074443 +0.087801,-0.087748,-0.0085465,0.087802,-0.087801,-0.071424 +0.082818,-0.082798,-0.0083231,0.082818,-0.082817,-0.068406 +0.077984,-0.07798,-0.0080997,0.077984,-0.077983,-0.065388 +0.0733,-0.0733,-0.0078764,0.0733,-0.0733,-0.062369 +0.068766,-0.068767,-0.007653,0.068767,-0.068766,-0.059351 +0.064383,-0.064383,-0.0074296,0.064383,-0.064382,-0.056336 +0.060149,-0.060149,-0.0072062,0.060149,-0.060149,-0.053331 +0.056065,-0.056065,-0.0069828,0.056066,-0.056065,-0.050345 +0.052132,-0.052132,-0.0067594,0.052132,-0.052131,-0.047384 +0.048348,-0.048348,-0.006536,0.048348,-0.048347,-0.044456 +0.044714,-0.044714,-0.0063126,0.044714,-0.044714,-0.041568 +0.041231,-0.041231,-0.0060892,0.041231,-0.04123,-0.038728 +0.037897,-0.037897,-0.0058658,0.037897,-0.037896,-0.035944 +0.034713,-0.034713,-0.0056424,0.034713,-0.034713,-0.033223 +0.031679,-0.03168,-0.005419,0.03168,-0.031679,-0.030572 +0.028796,-0.028796,-0.0051956,0.028796,-0.028795,-0.028 +0.026062,-0.026062,-0.0049723,0.026062,-0.026061,-0.025512 +0.023478,-0.023478,-0.0047488,0.023479,-0.023478,-0.023118 +0.021045,-0.021045,-0.0045255,0.021045,-0.021044,-0.020824 +0.018761,-0.018761,-0.0043021,0.018761,-0.01876,-0.018638 +0.016627,-0.016627,-0.0040787,0.016627,-0.016627,-0.016568 +0.014644,-0.014644,-0.0038553,0.014644,-0.014643,-0.014621 +0.01281,-0.01281,-0.0036319,0.01281,-0.012809,-0.012804 +0.011126,-0.011126,-0.0034085,0.011126,-0.011125,-0.011125 +0.0095925,-0.0095925,-0.0031851,0.0095927,-0.0095918,-0.0095918 +0.0082062,-0.0082063,-0.0029617,0.0082064,-0.0082055,-0.0082056 +0.0069604,-0.0069604,-0.0027383,0.0069606,-0.0069597,-0.0069597 +0.0058475,-0.0058475,-0.0025149,0.0058477,-0.0058468,-0.0058468 +0.00486,-0.0048601,-0.0022915,0.0048602,-0.0048593,-0.0048594 +0.0039905,-0.0039905,-0.0020681,0.0039907,-0.0039898,-0.0039898 +0.0032314,-0.0032314,-0.0018447,0.0032316,-0.0032307,-0.0032307 +0.0025752,-0.0025753,-0.0016213,0.0025754,-0.0025746,-0.0025746 +0.0020145,-0.0020146,-0.001398,0.0020147,-0.0020138,-0.0020139 +0.0015417,-0.0015418,-0.0011746,0.0015419,-0.001541,-0.0015411 +0.0011494,-0.0011494,-0.00095327,0.0011496,-0.0011487,-0.0011487 +0.00082996,-0.00083002,-0.00074091,0.00083015,-0.00082927,-0.0008293 +0.00057598,-0.00057603,-0.00054498,0.00057617,-0.00057529,-0.00057532 +0.00037993,-0.00037999,-0.00037297,0.00038012,-0.00037925,-0.00037927 +0.00023432,-0.00023437,-0.0002324,0.00023451,-0.00023363,-0.00023366 +0.00013164,-0.0001317,-0.00012977,0.00013183,-0.00013096,-0.00013098 +6.44e-05,-6.4453e-05,-6.2526e-05,6.4592e-05,-6.3713e-05,-6.3738e-05 +2.5093e-05,-2.5146e-05,-2.3219e-05,2.5285e-05,-2.4406e-05,-2.4431e-05 +6.2213e-06,-6.2742e-06,-4.3467e-06,6.4126e-06,-5.5337e-06,-5.559e-06 +2.8445e-07,-3.3732e-07,1.5902e-06,4.7571e-07,4.0324e-07,3.7793e-07 +-1.9127e-07,1.3839e-07,2.0659e-06,0,8.7895e-07,8.5364e-07 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path.txt new file mode 100644 index 00000000..f0ccd52d --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path.txt @@ -0,0 +1,968 @@ +-6.12349e-06,-0.125602,-1.32037,0.376615,-1.57,-7.33606e-06 +-6.12349e-06,-0.125602,-1.32037,0.376614,-1.57,-7.33606e-06 +-6.12349e-06,-0.125603,-1.32037,0.376613,-1.57,-7.33606e-06 +-6.12349e-06,-0.125605,-1.32037,0.376611,-1.57,-7.33606e-06 +-6.12349e-06,-0.125609,-1.32037,0.376608,-1.57,-7.33606e-06 +-6.12349e-06,-0.125614,-1.32038,0.376603,-1.57,-7.33606e-06 +-6.12349e-06,-0.125621,-1.32039,0.376596,-1.57,-7.33606e-06 +-6.12349e-06,-0.12563,-1.3204,0.376587,-1.57,-7.33606e-06 +-6.12349e-06,-0.125642,-1.32041,0.376575,-1.57,-7.33606e-06 +-6.12349e-06,-0.125656,-1.32042,0.37656,-1.57,-7.33606e-06 +-6.12349e-06,-0.125674,-1.32044,0.376542,-1.57,-7.33606e-06 +-6.12349e-06,-0.125696,-1.32046,0.376521,-1.57,-7.33606e-06 +-6.12349e-06,-0.125722,-1.32049,0.376495,-1.57,-7.33606e-06 +-6.12349e-06,-0.125752,-1.32052,0.376465,-1.57,-7.33606e-06 +-6.12349e-06,-0.125786,-1.32055,0.376431,-1.57,-7.33606e-06 +-6.12349e-06,-0.125825,-1.32059,0.376391,-1.57,-7.33606e-06 +-6.12349e-06,-0.12587,-1.32064,0.376347,-1.57,-7.33606e-06 +-6.12349e-06,-0.12592,-1.32069,0.376297,-1.57,-7.33606e-06 +-6.12349e-06,-0.125976,-1.32074,0.376241,-1.57,-7.33606e-06 +-6.12349e-06,-0.126038,-1.3208,0.376178,-1.57,-7.33606e-06 +-6.12349e-06,-0.126105,-1.32087,0.37611,-1.57,-7.33606e-06 +-6.12349e-06,-0.126177,-1.32095,0.376034,-1.57,-7.33606e-06 +-6.12349e-06,-0.126254,-1.32103,0.375951,-1.57,-7.33606e-06 +-6.12349e-06,-0.126335,-1.32112,0.375861,-1.57,-7.33606e-06 +-6.12349e-06,-0.126421,-1.32122,0.375763,-1.57,-7.33606e-06 +-6.12349e-06,-0.12651,-1.32133,0.375656,-1.57,-7.33606e-06 +-6.12349e-06,-0.126603,-1.32144,0.375541,-1.57,-7.33606e-06 +-6.12349e-06,-0.126699,-1.32156,0.375417,-1.57,-7.33606e-06 +-6.12349e-06,-0.126797,-1.3217,0.375285,-1.57,-7.33606e-06 +-6.12349e-06,-0.126898,-1.32184,0.375142,-1.57,-7.33606e-06 +-6.12349e-06,-0.127002,-1.32199,0.37499,-1.57,-7.33606e-06 +-6.12349e-06,-0.127107,-1.32215,0.374828,-1.57,-7.33606e-06 +-6.12349e-06,-0.127213,-1.32233,0.374655,-1.57,-7.33606e-06 +-6.12349e-06,-0.127321,-1.32251,0.374471,-1.57,-7.33606e-06 +-6.12349e-06,-0.127429,-1.32271,0.374277,-1.57,-7.33606e-06 +-6.12349e-06,-0.127539,-1.32291,0.374071,-1.57,-7.33606e-06 +-6.12349e-06,-0.127648,-1.32313,0.373855,-1.57,-7.33606e-06 +-6.12349e-06,-0.127757,-1.32335,0.373628,-1.57,-7.33606e-06 +-6.12349e-06,-0.127866,-1.32359,0.373389,-1.57,-7.33606e-06 +-6.12349e-06,-0.127975,-1.32384,0.37314,-1.57,-7.33606e-06 +-6.12349e-06,-0.128085,-1.3241,0.37288,-1.57,-7.33606e-06 +-6.12349e-06,-0.128194,-1.32437,0.372609,-1.57,-7.33606e-06 +-6.12349e-06,-0.128303,-1.32465,0.372328,-1.57,-7.33606e-06 +-6.12349e-06,-0.128412,-1.32495,0.372035,-1.57,-7.33606e-06 +-6.12349e-06,-0.128522,-1.32525,0.371731,-1.57,-7.33606e-06 +-6.12349e-06,-0.128631,-1.32557,0.371417,-1.57,-7.33606e-06 +-6.12349e-06,-0.12874,-1.32589,0.371091,-1.57,-7.33606e-06 +-6.12349e-06,-0.128849,-1.32623,0.370755,-1.57,-7.33606e-06 +-6.12349e-06,-0.128959,-1.32657,0.370408,-1.57,-7.33606e-06 +-6.12349e-06,-0.129068,-1.32693,0.37005,-1.57,-7.33606e-06 +-6.12349e-06,-0.129177,-1.3273,0.369681,-1.57,-7.33606e-06 +-6.12349e-06,-0.129286,-1.32768,0.369301,-1.57,-7.33606e-06 +-6.12349e-06,-0.129395,-1.32807,0.36891,-1.57,-7.33606e-06 +-6.12349e-06,-0.129505,-1.32847,0.368508,-1.57,-7.33606e-06 +-6.12349e-06,-0.129614,-1.32889,0.368095,-1.57,-7.33606e-06 +-6.12349e-06,-0.129723,-1.32931,0.367672,-1.57,-7.33606e-06 +-6.12349e-06,-0.129832,-1.32974,0.367237,-1.57,-7.33606e-06 +-6.12349e-06,-0.129942,-1.33019,0.366792,-1.57,-7.33606e-06 +-6.12349e-06,-0.130051,-1.33065,0.366335,-1.57,-7.33606e-06 +-6.12349e-06,-0.13016,-1.33111,0.365868,-1.57,-7.33606e-06 +-6.12349e-06,-0.130269,-1.33159,0.36539,-1.57,-7.33606e-06 +-6.12349e-06,-0.130378,-1.33208,0.364901,-1.57,-7.33606e-06 +-6.12349e-06,-0.130488,-1.33258,0.364401,-1.57,-7.33606e-06 +-6.12349e-06,-0.130597,-1.33309,0.36389,-1.57,-7.33606e-06 +-6.12349e-06,-0.130706,-1.33361,0.363368,-1.57,-7.33606e-06 +-6.12349e-06,-0.130815,-1.33415,0.362836,-1.57,-7.33606e-06 +-6.12349e-06,-0.130925,-1.33469,0.362292,-1.57,-7.33606e-06 +-6.12349e-06,-0.131034,-1.33524,0.361737,-1.57,-7.33606e-06 +-6.12349e-06,-0.131143,-1.33581,0.361172,-1.57,-7.33606e-06 +-6.12349e-06,-0.131252,-1.33639,0.360596,-1.57,-7.33606e-06 +-6.12349e-06,-0.131362,-1.33697,0.360008,-1.57,-7.33606e-06 +-6.12349e-06,-0.131471,-1.33757,0.35941,-1.57,-7.33606e-06 +-6.12349e-06,-0.13158,-1.33818,0.358801,-1.57,-7.33606e-06 +-6.12349e-06,-0.131689,-1.3388,0.358181,-1.57,-7.33606e-06 +-6.12349e-06,-0.131798,-1.33943,0.35755,-1.57,-7.33606e-06 +-6.12349e-06,-0.131908,-1.34007,0.356909,-1.57,-7.33606e-06 +-6.12349e-06,-0.132017,-1.34073,0.356256,-1.57,-7.33606e-06 +-6.12349e-06,-0.132126,-1.34139,0.355592,-1.57,-7.33606e-06 +-6.12349e-06,-0.132235,-1.34206,0.354918,-1.57,-7.33606e-06 +-6.12349e-06,-0.132345,-1.34275,0.354233,-1.57,-7.33606e-06 +-6.12349e-06,-0.132454,-1.34345,0.353536,-1.57,-7.33606e-06 +-6.12349e-06,-0.132563,-1.34415,0.352829,-1.57,-7.33606e-06 +-6.12349e-06,-0.132672,-1.34487,0.352111,-1.57,-7.33606e-06 +-6.12349e-06,-0.132782,-1.3456,0.351382,-1.57,-7.33606e-06 +-6.12349e-06,-0.132891,-1.34634,0.350642,-1.57,-7.33606e-06 +-6.12349e-06,-0.133,-1.34709,0.349891,-1.57,-7.33606e-06 +-6.12349e-06,-0.133109,-1.34785,0.349129,-1.57,-7.33606e-06 +-6.12349e-06,-0.133218,-1.34863,0.348357,-1.57,-7.33606e-06 +-6.12349e-06,-0.133328,-1.34941,0.347573,-1.57,-7.33606e-06 +-6.12349e-06,-0.133437,-1.3502,0.346779,-1.57,-7.33606e-06 +-6.12349e-06,-0.133546,-1.35101,0.345973,-1.57,-7.33606e-06 +-6.12349e-06,-0.133655,-1.35183,0.345157,-1.57,-7.33606e-06 +-6.12349e-06,-0.133765,-1.35265,0.34433,-1.57,-7.33606e-06 +-6.12349e-06,-0.133874,-1.35349,0.343492,-1.57,-7.33606e-06 +-6.12349e-06,-0.133983,-1.35434,0.342642,-1.57,-7.33606e-06 +-6.12349e-06,-0.134092,-1.3552,0.341783,-1.57,-7.33606e-06 +-6.12349e-06,-0.134202,-1.35607,0.340912,-1.57,-7.33606e-06 +-6.12349e-06,-0.134311,-1.35695,0.34003,-1.57,-7.33606e-06 +-6.12349e-06,-0.13442,-1.35784,0.339137,-1.57,-7.33606e-06 +-6.12349e-06,-0.134529,-1.35875,0.338234,-1.57,-7.33606e-06 +-6.12349e-06,-0.134638,-1.35966,0.337319,-1.57,-7.33606e-06 +-6.12349e-06,-0.134748,-1.36059,0.336394,-1.57,-7.33606e-06 +-6.12349e-06,-0.134857,-1.36152,0.335458,-1.57,-7.33606e-06 +-6.12349e-06,-0.134966,-1.36247,0.33451,-1.57,-7.33606e-06 +-6.12349e-06,-0.135075,-1.36343,0.333552,-1.57,-7.33606e-06 +-6.12349e-06,-0.135185,-1.3644,0.332583,-1.57,-7.33606e-06 +-6.12349e-06,-0.135294,-1.36538,0.331603,-1.57,-7.33606e-06 +-6.12349e-06,-0.135403,-1.36637,0.330612,-1.57,-7.33606e-06 +-6.12349e-06,-0.135512,-1.36737,0.329611,-1.57,-7.33606e-06 +-6.12349e-06,-0.135621,-1.36838,0.328598,-1.57,-7.33606e-06 +-6.12349e-06,-0.135731,-1.36941,0.327574,-1.57,-7.33606e-06 +-6.12349e-06,-0.13584,-1.37044,0.32654,-1.57,-7.33606e-06 +-6.12349e-06,-0.135949,-1.37149,0.325495,-1.57,-7.33606e-06 +-6.12349e-06,-0.136058,-1.37254,0.324438,-1.57,-7.33606e-06 +-6.12349e-06,-0.136168,-1.37361,0.323371,-1.57,-7.33606e-06 +-6.12349e-06,-0.136277,-1.37469,0.322293,-1.57,-7.33606e-06 +-6.12349e-06,-0.136386,-1.37578,0.321204,-1.57,-7.33606e-06 +-6.12349e-06,-0.136495,-1.37688,0.320104,-1.57,-7.33606e-06 +-6.12349e-06,-0.136605,-1.37799,0.318993,-1.57,-7.33606e-06 +-6.12349e-06,-0.136714,-1.37911,0.317872,-1.57,-7.33606e-06 +-6.12349e-06,-0.136823,-1.38024,0.316739,-1.57,-7.33606e-06 +-6.12349e-06,-0.136932,-1.38139,0.315595,-1.57,-7.33606e-06 +-6.12349e-06,-0.137041,-1.38254,0.314441,-1.57,-7.33606e-06 +-6.12349e-06,-0.137151,-1.38371,0.313275,-1.57,-7.33606e-06 +-6.12349e-06,-0.13726,-1.38488,0.312099,-1.57,-7.33606e-06 +-6.12349e-06,-0.137369,-1.38607,0.310912,-1.57,-7.33606e-06 +-6.12349e-06,-0.137478,-1.38727,0.309714,-1.57,-7.33606e-06 +-6.12349e-06,-0.137588,-1.38848,0.308505,-1.57,-7.33606e-06 +-6.12349e-06,-0.137697,-1.3897,0.307285,-1.57,-7.33606e-06 +-6.12349e-06,-0.137806,-1.39093,0.306054,-1.57,-7.33606e-06 +-6.12349e-06,-0.137915,-1.39217,0.304812,-1.57,-7.33606e-06 +-6.12349e-06,-0.138025,-1.39342,0.30356,-1.57,-7.33606e-06 +-6.12349e-06,-0.138134,-1.39469,0.302296,-1.57,-7.33606e-06 +-6.12349e-06,-0.138243,-1.39596,0.301022,-1.57,-7.33606e-06 +-6.12349e-06,-0.138352,-1.39725,0.299736,-1.57,-7.33606e-06 +-6.12349e-06,-0.138461,-1.39854,0.29844,-1.57,-7.33606e-06 +-6.12349e-06,-0.138571,-1.39985,0.297133,-1.57,-7.33606e-06 +-6.12349e-06,-0.13868,-1.40117,0.295815,-1.57,-7.33606e-06 +-6.12349e-06,-0.138789,-1.4025,0.294486,-1.57,-7.33606e-06 +-6.12349e-06,-0.138898,-1.40384,0.293146,-1.57,-7.33606e-06 +-6.12349e-06,-0.139008,-1.40519,0.291795,-1.57,-7.33606e-06 +-6.12349e-06,-0.139117,-1.40655,0.290433,-1.57,-7.33606e-06 +-6.12349e-06,-0.139226,-1.40792,0.289061,-1.57,-7.33606e-06 +-6.12349e-06,-0.139335,-1.4093,0.287677,-1.57,-7.33606e-06 +-6.12349e-06,-0.139444,-1.4107,0.286283,-1.57,-7.33606e-06 +-6.12349e-06,-0.139554,-1.4121,0.284878,-1.57,-7.33606e-06 +-6.12349e-06,-0.139663,-1.41352,0.283461,-1.57,-7.33606e-06 +-6.12349e-06,-0.139772,-1.41495,0.282034,-1.57,-7.33606e-06 +-6.12349e-06,-0.139881,-1.41639,0.280596,-1.57,-7.33606e-06 +-6.12349e-06,-0.139991,-1.41783,0.279147,-1.57,-7.33606e-06 +-6.12349e-06,-0.1401,-1.41929,0.277687,-1.57,-7.33606e-06 +-6.12349e-06,-0.140209,-1.42077,0.276216,-1.57,-7.33606e-06 +-6.12349e-06,-0.140318,-1.42225,0.274735,-1.57,-7.33606e-06 +-6.12349e-06,-0.140428,-1.42374,0.273242,-1.57,-7.33606e-06 +-6.12349e-06,-0.140537,-1.42524,0.27174,-1.57,-7.33606e-06 +-6.12349e-06,-0.140646,-1.42676,0.270227,-1.57,-7.33606e-06 +-6.12349e-06,-0.140755,-1.42828,0.268705,-1.57,-7.33606e-06 +-6.12349e-06,-0.140864,-1.42982,0.267173,-1.57,-7.33606e-06 +-6.12349e-06,-0.140974,-1.43137,0.265633,-1.57,-7.33606e-06 +-6.12349e-06,-0.141083,-1.43292,0.264084,-1.57,-7.33606e-06 +-6.12349e-06,-0.141192,-1.43449,0.262526,-1.57,-7.33606e-06 +-6.12349e-06,-0.141301,-1.43607,0.260961,-1.57,-7.33606e-06 +-6.12349e-06,-0.141411,-1.43766,0.259388,-1.57,-7.33606e-06 +-6.12349e-06,-0.14152,-1.43927,0.257807,-1.57,-7.33606e-06 +-6.12349e-06,-0.141629,-1.44088,0.25622,-1.57,-7.33606e-06 +-6.12349e-06,-0.141738,-1.4425,0.254625,-1.57,-7.33606e-06 +-6.12349e-06,-0.141848,-1.44414,0.253025,-1.57,-7.33606e-06 +-6.12349e-06,-0.141957,-1.44578,0.251418,-1.57,-7.33606e-06 +-6.12349e-06,-0.142066,-1.44744,0.249806,-1.57,-7.33606e-06 +-6.12349e-06,-0.142175,-1.44911,0.248188,-1.57,-7.33606e-06 +-6.12349e-06,-0.142284,-1.45078,0.246565,-1.57,-7.33606e-06 +-6.12349e-06,-0.142394,-1.45247,0.244938,-1.57,-7.33606e-06 +-6.12349e-06,-0.142503,-1.45417,0.243306,-1.57,-7.33606e-06 +-6.12349e-06,-0.142612,-1.45588,0.24167,-1.57,-7.33606e-06 +-6.12349e-06,-0.142721,-1.4576,0.24003,-1.57,-7.33606e-06 +-6.12349e-06,-0.142831,-1.45934,0.238387,-1.57,-7.33606e-06 +-6.12349e-06,-0.14294,-1.46108,0.236741,-1.57,-7.33606e-06 +-6.12349e-06,-0.143049,-1.46284,0.235092,-1.57,-7.33606e-06 +-6.12349e-06,-0.143158,-1.4646,0.23344,-1.57,-7.33606e-06 +-6.12349e-06,-0.143268,-1.46638,0.231786,-1.57,-7.33606e-06 +-6.12349e-06,-0.143377,-1.46816,0.230131,-1.57,-7.33606e-06 +-6.12349e-06,-0.143486,-1.46996,0.228474,-1.57,-7.33606e-06 +-6.12349e-06,-0.143595,-1.47177,0.226816,-1.57,-7.33606e-06 +-6.12349e-06,-0.143704,-1.47359,0.225157,-1.57,-7.33606e-06 +-6.12349e-06,-0.143814,-1.47542,0.223498,-1.57,-7.33606e-06 +-6.12349e-06,-0.143923,-1.47726,0.221839,-1.57,-7.33606e-06 +-6.12349e-06,-0.144032,-1.47912,0.220179,-1.57,-7.33606e-06 +-6.12349e-06,-0.144141,-1.48098,0.21852,-1.57,-7.33606e-06 +-6.12349e-06,-0.144251,-1.48285,0.216861,-1.57,-7.33606e-06 +-6.12349e-06,-0.14436,-1.48474,0.215201,-1.57,-7.33606e-06 +-6.12349e-06,-0.144469,-1.48664,0.213542,-1.57,-7.33606e-06 +-6.12349e-06,-0.144578,-1.48854,0.211882,-1.57,-7.33606e-06 +-6.12349e-06,-0.144687,-1.49046,0.210223,-1.57,-7.33606e-06 +-6.12349e-06,-0.144797,-1.49239,0.208563,-1.57,-7.33606e-06 +-6.12349e-06,-0.144906,-1.49433,0.206904,-1.57,-7.33606e-06 +-6.12349e-06,-0.145015,-1.49628,0.205245,-1.57,-7.33606e-06 +-6.12349e-06,-0.145124,-1.49824,0.203585,-1.57,-7.33606e-06 +-6.12349e-06,-0.145234,-1.50021,0.201926,-1.57,-7.33606e-06 +-6.12349e-06,-0.145343,-1.5022,0.200266,-1.57,-7.33606e-06 +-6.12349e-06,-0.145452,-1.50419,0.198607,-1.57,-7.33606e-06 +-6.12349e-06,-0.145561,-1.5062,0.196947,-1.57,-7.33606e-06 +-6.12349e-06,-0.145671,-1.50821,0.195288,-1.57,-7.33606e-06 +-6.12349e-06,-0.14578,-1.51024,0.193629,-1.57,-7.33606e-06 +-6.12349e-06,-0.145889,-1.51228,0.191969,-1.57,-7.33606e-06 +-6.12349e-06,-0.145998,-1.51432,0.19031,-1.57,-7.33606e-06 +-6.12349e-06,-0.146107,-1.51638,0.18865,-1.57,-7.33606e-06 +-6.12349e-06,-0.146217,-1.51844,0.186991,-1.57,-7.33606e-06 +-6.12349e-06,-0.146326,-1.52051,0.185331,-1.57,-7.33606e-06 +-6.12349e-06,-0.146435,-1.52259,0.183672,-1.57,-7.33606e-06 +-6.12349e-06,-0.146544,-1.52468,0.182013,-1.57,-7.33606e-06 +-6.12349e-06,-0.146654,-1.52678,0.180353,-1.57,-7.33606e-06 +-6.12349e-06,-0.146763,-1.52888,0.178694,-1.57,-7.33606e-06 +-6.12349e-06,-0.146872,-1.53099,0.177034,-1.57,-7.33606e-06 +-6.12349e-06,-0.146981,-1.53311,0.175375,-1.57,-7.33606e-06 +-6.12349e-06,-0.147091,-1.53523,0.173716,-1.57,-7.33606e-06 +-6.12349e-06,-0.1472,-1.53736,0.172056,-1.57,-7.33606e-06 +-6.12349e-06,-0.147309,-1.5395,0.170397,-1.57,-7.33606e-06 +-6.12349e-06,-0.147418,-1.54164,0.168737,-1.57,-7.33606e-06 +-6.12349e-06,-0.147527,-1.54378,0.167078,-1.57,-7.33606e-06 +-6.12349e-06,-0.147637,-1.54593,0.165418,-1.57,-7.33606e-06 +-6.12349e-06,-0.147746,-1.54809,0.163759,-1.57,-7.33606e-06 +-6.12349e-06,-0.147855,-1.55025,0.1621,-1.57,-7.33606e-06 +-6.12349e-06,-0.147964,-1.55241,0.16044,-1.57,-7.33606e-06 +-6.12349e-06,-0.148074,-1.55458,0.158781,-1.57,-7.33606e-06 +-6.12349e-06,-0.148183,-1.55675,0.157121,-1.57,-7.33606e-06 +-6.12349e-06,-0.148292,-1.55892,0.155462,-1.57,-7.33606e-06 +-6.12349e-06,-0.148401,-1.56109,0.153802,-1.57,-7.33606e-06 +-6.12349e-06,-0.148511,-1.56327,0.152143,-1.57,-7.33606e-06 +-6.12349e-06,-0.14862,-1.56544,0.150484,-1.57,-7.33606e-06 +-6.12349e-06,-0.148729,-1.56762,0.148824,-1.57,-7.33606e-06 +-6.12349e-06,-0.148838,-1.5698,0.147165,-1.57,-7.33606e-06 +-6.12349e-06,-0.148947,-1.57199,0.145505,-1.57,-7.33606e-06 +-6.12349e-06,-0.149057,-1.57417,0.143846,-1.57,-7.33606e-06 +-6.12349e-06,-0.149166,-1.57635,0.142186,-1.57,-7.33606e-06 +-6.12349e-06,-0.149275,-1.57853,0.140527,-1.57,-7.33606e-06 +-6.12349e-06,-0.149384,-1.58071,0.138868,-1.57,-7.33606e-06 +-6.12349e-06,-0.149494,-1.58289,0.137208,-1.57,-7.33606e-06 +-6.12349e-06,-0.149603,-1.58508,0.135549,-1.57,-7.33606e-06 +-6.12349e-06,-0.149712,-1.58726,0.133889,-1.57,-7.33606e-06 +-6.12349e-06,-0.149821,-1.58944,0.13223,-1.57,-7.33606e-06 +-6.12349e-06,-0.14993,-1.59162,0.130571,-1.57,-7.33606e-06 +-6.12349e-06,-0.15004,-1.5938,0.128911,-1.57,-7.33606e-06 +-6.12349e-06,-0.150149,-1.59598,0.127252,-1.57,-7.33606e-06 +-6.12349e-06,-0.150258,-1.59817,0.125592,-1.57,-7.33606e-06 +-6.12349e-06,-0.150367,-1.60035,0.123933,-1.57,-7.33606e-06 +-6.12349e-06,-0.150477,-1.60253,0.122273,-1.57,-7.33606e-06 +-6.12349e-06,-0.150586,-1.60471,0.120614,-1.57,-7.33606e-06 +-6.12349e-06,-0.150695,-1.60689,0.118955,-1.57,-7.33606e-06 +-6.12349e-06,-0.150804,-1.60907,0.117295,-1.57,-7.33606e-06 +-6.12349e-06,-0.150914,-1.61126,0.115636,-1.57,-7.33606e-06 +-6.12349e-06,-0.151023,-1.61344,0.113976,-1.57,-7.33606e-06 +-6.12349e-06,-0.151132,-1.61562,0.112317,-1.57,-7.33606e-06 +-6.12349e-06,-0.151241,-1.6178,0.110657,-1.57,-7.33606e-06 +-6.12349e-06,-0.15135,-1.61998,0.108998,-1.57,-7.33606e-06 +-6.12349e-06,-0.15146,-1.62216,0.107339,-1.57,-7.33606e-06 +-6.12349e-06,-0.151569,-1.62434,0.105679,-1.57,-7.33606e-06 +-6.12349e-06,-0.151678,-1.62651,0.10402,-1.57,-7.33606e-06 +-6.12349e-06,-0.151787,-1.62868,0.10236,-1.57,-7.33606e-06 +-6.12349e-06,-0.151897,-1.63086,0.100701,-1.57,-7.33606e-06 +-6.12349e-06,-0.152006,-1.63302,0.0990415,-1.57,-7.33606e-06 +-6.12349e-06,-0.152115,-1.63519,0.0973821,-1.57,-7.33606e-06 +-6.12349e-06,-0.152224,-1.63735,0.0957227,-1.57,-7.33606e-06 +-6.12349e-06,-0.152334,-1.63951,0.0940632,-1.57,-7.33606e-06 +-6.12349e-06,-0.152443,-1.64166,0.0924038,-1.57,-7.33606e-06 +-6.12349e-06,-0.152552,-1.64381,0.0907444,-1.57,-7.33606e-06 +-6.12349e-06,-0.152661,-1.64595,0.089085,-1.57,-7.33606e-06 +-6.12349e-06,-0.15277,-1.64809,0.0874256,-1.57,-7.33606e-06 +-6.12349e-06,-0.15288,-1.65023,0.0857661,-1.57,-7.33606e-06 +-6.12349e-06,-0.152989,-1.65235,0.0841067,-1.57,-7.33606e-06 +-6.12349e-06,-0.153098,-1.65447,0.0824473,-1.57,-7.33606e-06 +-6.12349e-06,-0.153207,-1.65659,0.0807879,-1.57,-7.33606e-06 +-6.12349e-06,-0.153317,-1.6587,0.0791284,-1.57,-7.33606e-06 +-6.12349e-06,-0.153426,-1.6608,0.077469,-1.57,-7.33606e-06 +-6.12349e-06,-0.153535,-1.66289,0.0758096,-1.57,-7.33606e-06 +-6.12349e-06,-0.153644,-1.66498,0.0741502,-1.57,-7.33606e-06 +-6.12349e-06,-0.153753,-1.66706,0.0724907,-1.57,-7.33606e-06 +-6.12349e-06,-0.153863,-1.66913,0.0708313,-1.57,-7.33606e-06 +-6.12349e-06,-0.153972,-1.67119,0.0691719,-1.57,-7.33606e-06 +-6.12349e-06,-0.154081,-1.67324,0.0675125,-1.57,-7.33606e-06 +-6.12349e-06,-0.15419,-1.67528,0.0658531,-1.57,-7.33606e-06 +-6.12349e-06,-0.1543,-1.67732,0.0641936,-1.57,-7.33606e-06 +-6.12349e-06,-0.154409,-1.67934,0.0625342,-1.57,-7.33606e-06 +-6.12349e-06,-0.154518,-1.68135,0.0608748,-1.57,-7.33606e-06 +-6.12349e-06,-0.154627,-1.68335,0.0592154,-1.57,-7.33606e-06 +-6.12349e-06,-0.154737,-1.68535,0.0575559,-1.57,-7.33606e-06 +-6.12349e-06,-0.154846,-1.68733,0.0558965,-1.57,-7.33606e-06 +-6.12349e-06,-0.154955,-1.68929,0.0542371,-1.57,-7.33606e-06 +-6.12349e-06,-0.155064,-1.69125,0.0525777,-1.57,-7.33606e-06 +-6.12349e-06,-0.155173,-1.6932,0.0509183,-1.57,-7.33606e-06 +-6.12349e-06,-0.155283,-1.69514,0.0492588,-1.57,-7.33606e-06 +-6.12349e-06,-0.155392,-1.69706,0.0475994,-1.57,-7.33606e-06 +-6.12349e-06,-0.155501,-1.69898,0.04594,-1.57,-7.33606e-06 +-6.12349e-06,-0.15561,-1.70088,0.0442806,-1.57,-7.33606e-06 +-6.12349e-06,-0.15572,-1.70277,0.0426211,-1.57,-7.33606e-06 +-6.12349e-06,-0.155829,-1.70466,0.0409617,-1.57,-7.33606e-06 +-6.12349e-06,-0.155938,-1.70653,0.0393023,-1.57,-7.33606e-06 +-6.12349e-06,-0.156047,-1.70839,0.0376429,-1.57,-7.33606e-06 +-6.12349e-06,-0.156157,-1.71024,0.0359835,-1.57,-7.33606e-06 +-6.12349e-06,-0.156266,-1.71207,0.0343241,-1.57,-7.33606e-06 +-6.12349e-06,-0.156375,-1.7139,0.0326649,-1.57,-7.33606e-06 +-6.12349e-06,-0.156484,-1.71572,0.0310063,-1.57,-7.33606e-06 +-6.12349e-06,-0.156593,-1.71752,0.0293487,-1.57,-7.33606e-06 +-6.12349e-06,-0.156703,-1.71932,0.0276923,-1.57,-7.33606e-06 +-6.12349e-06,-0.156812,-1.7211,0.0260374,-1.57,-7.33606e-06 +-6.12349e-06,-0.156921,-1.72287,0.0243844,-1.57,-7.33606e-06 +-6.12349e-06,-0.15703,-1.72464,0.0227337,-1.57,-7.33606e-06 +-6.12349e-06,-0.15714,-1.72639,0.0210854,-1.57,-7.33606e-06 +-6.12349e-06,-0.157249,-1.72813,0.0194401,-1.57,-7.33606e-06 +-6.12349e-06,-0.157358,-1.72986,0.0177979,-1.57,-7.33606e-06 +-6.12349e-06,-0.157467,-1.73158,0.0161593,-1.57,-7.33606e-06 +-6.12349e-06,-0.157577,-1.73328,0.0145245,-1.57,-7.33606e-06 +-6.12349e-06,-0.157686,-1.73498,0.012894,-1.57,-7.33606e-06 +-6.12349e-06,-0.157795,-1.73666,0.0112679,-1.57,-7.33606e-06 +-6.12349e-06,-0.157904,-1.73834,0.00964661,-1.57,-7.33606e-06 +-6.12349e-06,-0.158013,-1.74,0.00803052,-1.57,-7.33606e-06 +-6.12349e-06,-0.158123,-1.74166,0.00641991,-1.57,-7.33606e-06 +-6.12349e-06,-0.158232,-1.7433,0.00481512,-1.57,-7.33606e-06 +-6.12349e-06,-0.158341,-1.74493,0.00321648,-1.57,-7.33606e-06 +-6.12349e-06,-0.15845,-1.74655,0.0016243,-1.57,-7.33606e-06 +-6.12349e-06,-0.15856,-1.74816,3.89168e-05,-1.57,-7.33606e-06 +-6.12349e-06,-0.158669,-1.74976,-0.00153934,-1.57,-7.33606e-06 +-6.12349e-06,-0.158778,-1.75134,-0.00311014,-1.57,-7.33606e-06 +-6.12349e-06,-0.158887,-1.75292,-0.00467317,-1.57,-7.33606e-06 +-6.12349e-06,-0.158996,-1.75449,-0.00622809,-1.57,-7.33606e-06 +-6.12349e-06,-0.159106,-1.75604,-0.00777458,-1.57,-7.33606e-06 +-6.12349e-06,-0.159215,-1.75758,-0.0093123,-1.57,-7.33606e-06 +-6.12349e-06,-0.159324,-1.75912,-0.0108409,-1.57,-7.33606e-06 +-6.12349e-06,-0.159433,-1.76064,-0.0123602,-1.57,-7.33606e-06 +-6.12349e-06,-0.159543,-1.76215,-0.0138696,-1.57,-7.33606e-06 +-6.12349e-06,-0.159652,-1.76365,-0.0153691,-1.57,-7.33606e-06 +-6.12349e-06,-0.159761,-1.76514,-0.0168581,-1.57,-7.33606e-06 +-6.12349e-06,-0.15987,-1.76662,-0.0183364,-1.57,-7.33606e-06 +-6.12349e-06,-0.15998,-1.76809,-0.0198038,-1.57,-7.33606e-06 +-6.12349e-06,-0.160089,-1.76954,-0.0212603,-1.57,-7.33606e-06 +-6.12349e-06,-0.160198,-1.77099,-0.0227058,-1.57,-7.33606e-06 +-6.12349e-06,-0.160307,-1.77242,-0.0241405,-1.57,-7.33606e-06 +-6.12349e-06,-0.160416,-1.77385,-0.0255643,-1.57,-7.33606e-06 +-6.12349e-06,-0.160526,-1.77526,-0.0269771,-1.57,-7.33606e-06 +-6.12349e-06,-0.160635,-1.77666,-0.0283791,-1.57,-7.33606e-06 +-6.12349e-06,-0.160744,-1.77805,-0.0297701,-1.57,-7.33606e-06 +-6.12349e-06,-0.160853,-1.77943,-0.0311502,-1.57,-7.33606e-06 +-6.12349e-06,-0.160963,-1.7808,-0.0325195,-1.57,-7.33606e-06 +-6.12349e-06,-0.161072,-1.78216,-0.0338778,-1.57,-7.33606e-06 +-6.12349e-06,-0.161181,-1.78351,-0.0352252,-1.57,-7.33606e-06 +-6.12349e-06,-0.16129,-1.78484,-0.0365617,-1.57,-7.33606e-06 +-6.12349e-06,-0.1614,-1.78617,-0.0378873,-1.57,-7.33606e-06 +-6.12349e-06,-0.161509,-1.78748,-0.0392019,-1.57,-7.33606e-06 +-6.12349e-06,-0.161618,-1.78879,-0.0405057,-1.57,-7.33606e-06 +-6.12349e-06,-0.161727,-1.79008,-0.0417986,-1.57,-7.33606e-06 +-6.12349e-06,-0.161836,-1.79136,-0.0430805,-1.57,-7.33606e-06 +-6.12349e-06,-0.161946,-1.79263,-0.0443516,-1.57,-7.33606e-06 +-6.12349e-06,-0.162055,-1.79389,-0.0456117,-1.57,-7.33606e-06 +-6.12349e-06,-0.162164,-1.79514,-0.046861,-1.57,-7.33606e-06 +-6.12349e-06,-0.162273,-1.79638,-0.0480993,-1.57,-7.33606e-06 +-6.12349e-06,-0.162383,-1.79761,-0.0493267,-1.57,-7.33606e-06 +-6.12349e-06,-0.162492,-1.79882,-0.0505432,-1.57,-7.33606e-06 +-6.12349e-06,-0.162601,-1.80003,-0.0517488,-1.57,-7.33606e-06 +-6.12349e-06,-0.16271,-1.80122,-0.0529435,-1.57,-7.33606e-06 +-6.12349e-06,-0.16282,-1.80241,-0.0541273,-1.57,-7.33606e-06 +-6.12349e-06,-0.162929,-1.80358,-0.0553001,-1.57,-7.33606e-06 +-6.12349e-06,-0.163038,-1.80474,-0.0564621,-1.57,-7.33606e-06 +-6.12349e-06,-0.163147,-1.80589,-0.0576132,-1.57,-7.33606e-06 +-6.12349e-06,-0.163256,-1.80703,-0.0587533,-1.57,-7.33606e-06 +-6.12349e-06,-0.163366,-1.80816,-0.0598825,-1.57,-7.33606e-06 +-6.12349e-06,-0.163475,-1.80928,-0.0610009,-1.57,-7.33606e-06 +-6.12349e-06,-0.163584,-1.81039,-0.0621083,-1.57,-7.33606e-06 +-6.12349e-06,-0.163693,-1.81149,-0.0632048,-1.57,-7.33606e-06 +-6.12349e-06,-0.163803,-1.81257,-0.0642904,-1.57,-7.33606e-06 +-6.12349e-06,-0.163912,-1.81365,-0.0653651,-1.57,-7.33606e-06 +-6.12349e-06,-0.164021,-1.81471,-0.0664289,-1.57,-7.33606e-06 +-6.12349e-06,-0.16413,-1.81576,-0.0674818,-1.57,-7.33606e-06 +-6.12349e-06,-0.164239,-1.81681,-0.0685238,-1.57,-7.33606e-06 +-6.12349e-06,-0.164349,-1.81784,-0.0695548,-1.57,-7.33606e-06 +-6.12349e-06,-0.164458,-1.81886,-0.070575,-1.57,-7.33606e-06 +-6.12349e-06,-0.164567,-1.81987,-0.0715842,-1.57,-7.33606e-06 +-6.12349e-06,-0.164676,-1.82086,-0.0725826,-1.57,-7.33606e-06 +-6.12349e-06,-0.164786,-1.82185,-0.07357,-1.57,-7.33606e-06 +-6.12349e-06,-0.164895,-1.82283,-0.0745465,-1.57,-7.33606e-06 +-6.12349e-06,-0.165004,-1.82379,-0.0755121,-1.57,-7.33606e-06 +-6.12349e-06,-0.165113,-1.82475,-0.0764668,-1.57,-7.33606e-06 +-6.12349e-06,-0.165223,-1.82569,-0.0774106,-1.57,-7.33606e-06 +-6.12349e-06,-0.165332,-1.82662,-0.0783435,-1.57,-7.33606e-06 +-6.12349e-06,-0.165441,-1.82755,-0.0792655,-1.57,-7.33606e-06 +-6.12349e-06,-0.16555,-1.82846,-0.0801766,-1.57,-7.33606e-06 +-6.12349e-06,-0.165659,-1.82936,-0.0810767,-1.57,-7.33606e-06 +-6.12349e-06,-0.165769,-1.83025,-0.081966,-1.57,-7.33606e-06 +-6.12349e-06,-0.165878,-1.83113,-0.0828443,-1.57,-7.33606e-06 +-6.12349e-06,-0.165987,-1.83199,-0.0837118,-1.57,-7.33606e-06 +-6.12349e-06,-0.166096,-1.83285,-0.0845683,-1.57,-7.33606e-06 +-6.12349e-06,-0.166206,-1.8337,-0.0854139,-1.57,-7.33606e-06 +-6.12349e-06,-0.166315,-1.83453,-0.0862487,-1.57,-7.33606e-06 +-6.12349e-06,-0.166424,-1.83535,-0.0870725,-1.57,-7.33606e-06 +-6.12349e-06,-0.166533,-1.83617,-0.0878854,-1.57,-7.33606e-06 +-6.12349e-06,-0.166643,-1.83697,-0.0886873,-1.57,-7.33606e-06 +-6.12349e-06,-0.166752,-1.83776,-0.0894784,-1.57,-7.33606e-06 +-6.12349e-06,-0.166861,-1.83854,-0.0902586,-1.57,-7.33606e-06 +-6.12349e-06,-0.16697,-1.83931,-0.0910279,-1.57,-7.33606e-06 +-6.12349e-06,-0.167079,-1.84007,-0.0917862,-1.57,-7.33606e-06 +-6.12349e-06,-0.167189,-1.84081,-0.0925337,-1.57,-7.33606e-06 +-6.12349e-06,-0.167298,-1.84155,-0.0932702,-1.57,-7.33606e-06 +-6.12349e-06,-0.167407,-1.84228,-0.0939958,-1.57,-7.33606e-06 +-6.12349e-06,-0.167516,-1.84299,-0.0947106,-1.57,-7.33606e-06 +-6.12349e-06,-0.167626,-1.8437,-0.0954144,-1.57,-7.33606e-06 +-6.12349e-06,-0.167735,-1.84439,-0.0961073,-1.57,-7.33606e-06 +-6.12349e-06,-0.167844,-1.84507,-0.0967893,-1.57,-7.33606e-06 +-6.12349e-06,-0.167953,-1.84574,-0.0974604,-1.57,-7.33606e-06 +-6.12349e-06,-0.168063,-1.8464,-0.0981206,-1.57,-7.33606e-06 +-6.12349e-06,-0.168172,-1.84705,-0.0987698,-1.57,-7.33606e-06 +-6.12349e-06,-0.168281,-1.84769,-0.0994082,-1.57,-7.33606e-06 +-6.12349e-06,-0.16839,-1.84832,-0.100036,-1.57,-7.33606e-06 +-6.12349e-06,-0.168499,-1.84893,-0.100652,-1.57,-7.33606e-06 +-6.12349e-06,-0.168609,-1.84954,-0.101258,-1.57,-7.33606e-06 +-6.12349e-06,-0.168718,-1.85013,-0.101853,-1.57,-7.33606e-06 +-6.12349e-06,-0.168827,-1.85072,-0.102436,-1.57,-7.33606e-06 +-6.12349e-06,-0.168936,-1.85129,-0.103009,-1.57,-7.33606e-06 +-6.12349e-06,-0.169046,-1.85185,-0.103571,-1.57,-7.33606e-06 +-6.12349e-06,-0.169155,-1.8524,-0.104122,-1.57,-7.33606e-06 +-6.12349e-06,-0.169264,-1.85294,-0.104663,-1.57,-7.33606e-06 +-6.12349e-06,-0.169373,-1.85347,-0.105192,-1.57,-7.33606e-06 +-6.12349e-06,-0.169482,-1.85399,-0.10571,-1.57,-7.33606e-06 +-6.12349e-06,-0.169592,-1.8545,-0.106218,-1.57,-7.33606e-06 +-6.12349e-06,-0.169701,-1.855,-0.106714,-1.57,-7.33606e-06 +-6.12349e-06,-0.16981,-1.85548,-0.1072,-1.57,-7.33606e-06 +-6.12349e-06,-0.169919,-1.85596,-0.107675,-1.57,-7.33606e-06 +-6.12349e-06,-0.170029,-1.85642,-0.108139,-1.57,-7.33606e-06 +-6.12349e-06,-0.170138,-1.85687,-0.108591,-1.57,-7.33606e-06 +-6.12349e-06,-0.170247,-1.85731,-0.109033,-1.57,-7.33606e-06 +-6.12349e-06,-0.170356,-1.85775,-0.109465,-1.57,-7.33606e-06 +-6.12349e-06,-0.170466,-1.85817,-0.109885,-1.57,-7.33606e-06 +-6.12349e-06,-0.170575,-1.85858,-0.110294,-1.57,-7.33606e-06 +-6.12349e-06,-0.170684,-1.85897,-0.110692,-1.57,-7.33606e-06 +-6.12349e-06,-0.170793,-1.85936,-0.11108,-1.57,-7.33606e-06 +-6.12349e-06,-0.170902,-1.85974,-0.111456,-1.57,-7.33606e-06 +-6.12349e-06,-0.171012,-1.8601,-0.111822,-1.57,-7.33606e-06 +-6.12349e-06,-0.171121,-1.86046,-0.112177,-1.57,-7.33606e-06 +-6.12349e-06,-0.17123,-1.8608,-0.112521,-1.57,-7.33606e-06 +-6.12349e-06,-0.171339,-1.86113,-0.112854,-1.57,-7.33606e-06 +-6.12349e-06,-0.171449,-1.86146,-0.113176,-1.57,-7.33606e-06 +-6.12349e-06,-0.171558,-1.86177,-0.113487,-1.57,-7.33606e-06 +-6.12349e-06,-0.171667,-1.86207,-0.113787,-1.57,-7.33606e-06 +-6.12349e-06,-0.171776,-1.86236,-0.114076,-1.57,-7.33606e-06 +-6.12349e-06,-0.171886,-1.86264,-0.114355,-1.57,-7.33606e-06 +-6.12349e-06,-0.171995,-1.8629,-0.114622,-1.57,-7.33606e-06 +-6.12349e-06,-0.172104,-1.86316,-0.114879,-1.57,-7.33606e-06 +-6.12349e-06,-0.172213,-1.86341,-0.115124,-1.57,-7.33606e-06 +-6.12349e-06,-0.172322,-1.86364,-0.115359,-1.57,-7.33606e-06 +-6.12349e-06,-0.172432,-1.86386,-0.115583,-1.57,-7.33606e-06 +-6.12349e-06,-0.172541,-1.86408,-0.115796,-1.57,-7.33606e-06 +-6.12349e-06,-0.17265,-1.86428,-0.115998,-1.57,-7.33606e-06 +-6.12349e-06,-0.172758,-1.86447,-0.116189,-1.57,-7.33606e-06 +-6.12349e-06,-0.172865,-1.86465,-0.116369,-1.57,-7.33606e-06 +-6.12349e-06,-0.172972,-1.86482,-0.116539,-1.57,-7.33606e-06 +-6.12349e-06,-0.173076,-1.86498,-0.116698,-1.57,-7.33606e-06 +-6.12349e-06,-0.173179,-1.86513,-0.116847,-1.57,-7.33606e-06 +-6.12349e-06,-0.173279,-1.86527,-0.116987,-1.57,-7.33606e-06 +-6.12349e-06,-0.173377,-1.8654,-0.117117,-1.57,-7.33606e-06 +-6.12349e-06,-0.173472,-1.86552,-0.117238,-1.57,-7.33606e-06 +-6.12349e-06,-0.173563,-1.86563,-0.11735,-1.57,-7.33606e-06 +-6.12349e-06,-0.173652,-1.86573,-0.117454,-1.57,-7.33606e-06 +-6.12349e-06,-0.173736,-1.86583,-0.117549,-1.57,-7.33606e-06 +-6.12349e-06,-0.173816,-1.86592,-0.117637,-1.57,-7.33606e-06 +-6.12349e-06,-0.173891,-1.866,-0.117718,-1.57,-7.33606e-06 +-6.12349e-06,-0.173962,-1.86607,-0.117791,-1.57,-7.33606e-06 +-6.12349e-06,-0.174028,-1.86614,-0.117858,-1.57,-7.33606e-06 +-6.12349e-06,-0.174088,-1.8662,-0.117918,-1.57,-7.33606e-06 +-6.12349e-06,-0.174142,-1.86625,-0.117972,-1.57,-7.33606e-06 +-6.12349e-06,-0.17419,-1.8663,-0.118021,-1.57,-7.33606e-06 +-6.12349e-06,-0.174233,-1.86634,-0.118064,-1.57,-7.33606e-06 +-6.12349e-06,-0.174271,-1.86638,-0.118101,-1.57,-7.33606e-06 +-6.12349e-06,-0.174304,-1.86642,-0.118134,-1.57,-7.33606e-06 +-6.12349e-06,-0.174332,-1.86644,-0.118163,-1.57,-7.33606e-06 +-6.12349e-06,-0.174356,-1.86647,-0.118187,-1.57,-7.33606e-06 +-6.12349e-06,-0.174377,-1.86649,-0.118208,-1.57,-7.33606e-06 +-6.12349e-06,-0.174394,-1.86651,-0.118225,-1.57,-7.33606e-06 +-6.12349e-06,-0.174408,-1.86652,-0.118239,-1.57,-7.33606e-06 +-6.12349e-06,-0.174419,-1.86653,-0.11825,-1.57,-7.33606e-06 +-6.12349e-06,-0.174427,-1.86654,-0.118258,-1.57,-7.33606e-06 +-6.12349e-06,-0.174433,-1.86655,-0.118264,-1.57,-7.33606e-06 +-6.12349e-06,-0.174438,-1.86655,-0.118269,-1.57,-7.33606e-06 +-6.12349e-06,-0.174441,-1.86655,-0.118272,-1.57,-7.33606e-06 +-6.12349e-06,-0.174442,-1.86655,-0.118273,-1.57,-7.33606e-06 +-6.12349e-06,-0.174443,-1.86656,-0.118274,-1.57,-7.33606e-06 +-6.12349e-06,-0.174443,-1.86656,-0.118274,-1.57,-7.33606e-06 +0,-0.174444,-1.86656,-0.118273,-1.57,0 +1.90986e-103,-0.174444,-1.86656,-0.118273,-1.57,1.90986e-103 +3.81972e-103,-0.174444,-1.86656,-0.118273,-1.57,3.81972e-103 +5.72958e-103,-0.174443,-1.86655,-0.118272,-1.57,5.72958e-103 +7.63944e-103,-0.174441,-1.86655,-0.11827,-1.57,7.63944e-103 +9.5493e-103,-0.174438,-1.86655,-0.118267,-1.57,9.5493e-103 +1.14592e-102,-0.174433,-1.86654,-0.118262,-1.57,1.14592e-102 +1.3369e-102,-0.174426,-1.86654,-0.118255,-1.57,1.3369e-102 +1.52789e-102,-0.174417,-1.86653,-0.118245,-1.57,1.52789e-102 +1.71887e-102,-0.174405,-1.86652,-0.118234,-1.57,1.71887e-102 +1.90986e-102,-0.17439,-1.8665,-0.118219,-1.57,1.90986e-102 +2.10085e-102,-0.174372,-1.86648,-0.118201,-1.57,2.10085e-102 +2.29183e-102,-0.17435,-1.86646,-0.118179,-1.57,2.29183e-102 +2.48282e-102,-0.174325,-1.86644,-0.118154,-1.57,2.48282e-102 +2.6738e-102,-0.174295,-1.86641,-0.118124,-1.57,2.6738e-102 +2.86479e-102,-0.17426,-1.86637,-0.118089,-1.57,2.86479e-102 +3.05577e-102,-0.174221,-1.86633,-0.11805,-1.57,3.05577e-102 +3.24676e-102,-0.174176,-1.86629,-0.118005,-1.57,3.24676e-102 +3.43775e-102,-0.174126,-1.86624,-0.117955,-1.57,3.43775e-102 +3.62873e-102,-0.17407,-1.86618,-0.117899,-1.57,3.62873e-102 +3.81972e-102,-0.174009,-1.86612,-0.117837,-1.57,3.81972e-102 +4.0107e-102,-0.173942,-1.86605,-0.117768,-1.57,4.0107e-102 +4.20169e-102,-0.173869,-1.86597,-0.117693,-1.57,4.20169e-102 +4.39268e-102,-0.173792,-1.86589,-0.11761,-1.57,4.39268e-102 +4.58366e-102,-0.173711,-1.8658,-0.117519,-1.57,4.58366e-102 +4.77465e-102,-0.173625,-1.8657,-0.117421,-1.57,4.77465e-102 +4.96563e-102,-0.173536,-1.8656,-0.117315,-1.57,4.96563e-102 +5.15662e-102,-0.173443,-1.86548,-0.1172,-1.57,5.15662e-102 +5.34761e-102,-0.173348,-1.86536,-0.117076,-1.57,5.34761e-102 +5.53859e-102,-0.173249,-1.86523,-0.116943,-1.57,5.53859e-102 +5.72958e-102,-0.173148,-1.86508,-0.116801,-1.57,5.72958e-102 +5.92056e-102,-0.173045,-1.86493,-0.116648,-1.57,5.92056e-102 +6.11155e-102,-0.17294,-1.86477,-0.116486,-1.57,6.11155e-102 +6.30254e-102,-0.172833,-1.8646,-0.116313,-1.57,6.30254e-102 +6.49352e-102,-0.172725,-1.86441,-0.11613,-1.57,6.49352e-102 +6.68451e-102,-0.172617,-1.86422,-0.115935,-1.57,6.68451e-102 +6.87549e-102,-0.172508,-1.86401,-0.11573,-1.57,6.87549e-102 +7.06648e-102,-0.172398,-1.8638,-0.115513,-1.57,7.06648e-102 +7.25747e-102,-0.172289,-1.86357,-0.115286,-1.57,7.25747e-102 +7.44845e-102,-0.17218,-1.86333,-0.115048,-1.57,7.44845e-102 +7.63944e-102,-0.172071,-1.86308,-0.114799,-1.57,7.63944e-102 +7.83042e-102,-0.171962,-1.86282,-0.114539,-1.57,7.83042e-102 +8.02141e-102,-0.171852,-1.86255,-0.114268,-1.57,8.02141e-102 +8.2124e-102,-0.171743,-1.86227,-0.113986,-1.57,8.2124e-102 +8.40338e-102,-0.171634,-1.86198,-0.113693,-1.57,8.40338e-102 +8.59437e-102,-0.171525,-1.86167,-0.11339,-1.57,8.59437e-102 +8.78535e-102,-0.171415,-1.86136,-0.113075,-1.57,8.78535e-102 +8.97634e-102,-0.171306,-1.86103,-0.11275,-1.57,8.97634e-102 +9.16732e-102,-0.171197,-1.8607,-0.112414,-1.57,9.16732e-102 +9.35831e-102,-0.171088,-1.86035,-0.112066,-1.57,9.35831e-102 +9.5493e-102,-0.170978,-1.85999,-0.111708,-1.57,9.5493e-102 +9.74028e-102,-0.170869,-1.85962,-0.111339,-1.57,9.74028e-102 +9.93127e-102,-0.17076,-1.85924,-0.110959,-1.57,9.93127e-102 +1.01223e-101,-0.170651,-1.85885,-0.110568,-1.57,1.01223e-101 +1.03132e-101,-0.170542,-1.85845,-0.110166,-1.57,1.03132e-101 +1.05042e-101,-0.170432,-1.85804,-0.109754,-1.57,1.05042e-101 +1.06952e-101,-0.170323,-1.85761,-0.10933,-1.57,1.06952e-101 +1.08862e-101,-0.170214,-1.85718,-0.108896,-1.57,1.08862e-101 +1.10772e-101,-0.170105,-1.85673,-0.10845,-1.57,1.10772e-101 +1.12682e-101,-0.169995,-1.85628,-0.107994,-1.57,1.12682e-101 +1.14592e-101,-0.169886,-1.85581,-0.107527,-1.57,1.14592e-101 +1.16501e-101,-0.169777,-1.85533,-0.107048,-1.57,1.16501e-101 +1.18411e-101,-0.169668,-1.85484,-0.106559,-1.57,1.18411e-101 +1.20321e-101,-0.169558,-1.85434,-0.106059,-1.57,1.20321e-101 +1.22231e-101,-0.169449,-1.85383,-0.105549,-1.57,1.22231e-101 +1.24141e-101,-0.16934,-1.85331,-0.105027,-1.57,1.24141e-101 +1.26051e-101,-0.169231,-1.85278,-0.104494,-1.57,1.26051e-101 +1.27961e-101,-0.169121,-1.85223,-0.103951,-1.57,1.27961e-101 +1.2987e-101,-0.169012,-1.85168,-0.103396,-1.57,1.2987e-101 +1.3178e-101,-0.168903,-1.85111,-0.102831,-1.57,1.3178e-101 +1.3369e-101,-0.168794,-1.85054,-0.102254,-1.57,1.3369e-101 +1.356e-101,-0.168685,-1.84995,-0.101667,-1.57,1.356e-101 +1.3751e-101,-0.168575,-1.84935,-0.101069,-1.57,1.3751e-101 +1.3942e-101,-0.168466,-1.84874,-0.10046,-1.57,1.3942e-101 +1.4133e-101,-0.168357,-1.84812,-0.0998399,-1.57,1.4133e-101 +1.43239e-101,-0.168248,-1.84749,-0.099209,-1.57,1.43239e-101 +1.45149e-101,-0.168138,-1.84685,-0.0985673,-1.57,1.45149e-101 +1.47059e-101,-0.168029,-1.8462,-0.0979146,-1.57,1.47059e-101 +1.48969e-101,-0.16792,-1.84553,-0.097251,-1.57,1.48969e-101 +1.50879e-101,-0.167811,-1.84486,-0.0965765,-1.57,1.50879e-101 +1.52789e-101,-0.167701,-1.84417,-0.0958911,-1.57,1.52789e-101 +1.54699e-101,-0.167592,-1.84348,-0.0951948,-1.57,1.54699e-101 +1.56608e-101,-0.167483,-1.84277,-0.0944876,-1.57,1.56608e-101 +1.58518e-101,-0.167374,-1.84205,-0.0937694,-1.57,1.58518e-101 +1.60428e-101,-0.167265,-1.84132,-0.0930404,-1.57,1.60428e-101 +1.62338e-101,-0.167155,-1.84058,-0.0923005,-1.57,1.62338e-101 +1.64248e-101,-0.167046,-1.83983,-0.0915496,-1.57,1.64248e-101 +1.66158e-101,-0.166937,-1.83907,-0.0907878,-1.57,1.66158e-101 +1.68068e-101,-0.166828,-1.8383,-0.0900152,-1.57,1.68068e-101 +1.69977e-101,-0.166718,-1.83751,-0.0892316,-1.57,1.69977e-101 +1.71887e-101,-0.166609,-1.83672,-0.0884371,-1.57,1.71887e-101 +1.73797e-101,-0.1665,-1.83591,-0.0876317,-1.57,1.73797e-101 +1.75707e-101,-0.166391,-1.8351,-0.0868154,-1.57,1.75707e-101 +1.77617e-101,-0.166281,-1.83427,-0.0859882,-1.57,1.77617e-101 +1.79527e-101,-0.166172,-1.83343,-0.0851501,-1.57,1.79527e-101 +1.81437e-101,-0.166063,-1.83258,-0.084301,-1.57,1.81437e-101 +1.83346e-101,-0.165954,-1.83172,-0.0834411,-1.57,1.83346e-101 +1.85256e-101,-0.165844,-1.83085,-0.0825702,-1.57,1.85256e-101 +1.87166e-101,-0.165735,-1.82997,-0.0816885,-1.57,1.87166e-101 +1.89076e-101,-0.165626,-1.82908,-0.0807958,-1.57,1.89076e-101 +1.90986e-101,-0.165517,-1.82817,-0.0798923,-1.57,1.90986e-101 +1.92896e-101,-0.165408,-1.82726,-0.0789778,-1.57,1.92896e-101 +1.94806e-101,-0.165298,-1.82633,-0.0780524,-1.57,1.94806e-101 +1.96716e-101,-0.165189,-1.8254,-0.0771161,-1.57,1.96716e-101 +1.98625e-101,-0.16508,-1.82445,-0.0761689,-1.57,1.98625e-101 +2.00535e-101,-0.164971,-1.82349,-0.0752108,-1.57,2.00535e-101 +2.02445e-101,-0.164861,-1.82252,-0.0742417,-1.57,2.02445e-101 +2.04355e-101,-0.164752,-1.82154,-0.0732618,-1.57,2.04355e-101 +2.06265e-101,-0.164643,-1.82055,-0.072271,-1.57,2.06265e-101 +2.08175e-101,-0.164534,-1.81955,-0.0712692,-1.57,2.08175e-101 +2.10085e-101,-0.164424,-1.81854,-0.0702566,-1.57,2.10085e-101 +2.11994e-101,-0.164315,-1.81752,-0.069233,-1.57,2.11994e-101 +2.13904e-101,-0.164206,-1.81648,-0.0681985,-1.57,2.13904e-101 +2.15814e-101,-0.164097,-1.81544,-0.0671532,-1.57,2.15814e-101 +2.17724e-101,-0.163988,-1.81438,-0.0660969,-1.57,2.17724e-101 +2.19634e-101,-0.163878,-1.81331,-0.0650297,-1.57,2.19634e-101 +2.21544e-101,-0.163769,-1.81223,-0.0639516,-1.57,2.21544e-101 +2.23454e-101,-0.16366,-1.81114,-0.0628626,-1.57,2.23454e-101 +2.25363e-101,-0.163551,-1.81004,-0.0617626,-1.57,2.25363e-101 +2.27273e-101,-0.163441,-1.80893,-0.0606518,-1.57,2.27273e-101 +2.29183e-101,-0.163332,-1.80781,-0.0595301,-1.57,2.29183e-101 +2.31093e-101,-0.163223,-1.80668,-0.0583974,-1.57,2.31093e-101 +2.33003e-101,-0.163114,-1.80554,-0.0572539,-1.57,2.33003e-101 +2.34913e-101,-0.163004,-1.80438,-0.0560994,-1.57,2.34913e-101 +2.36823e-101,-0.162895,-1.80322,-0.054934,-1.57,2.36823e-101 +2.38732e-101,-0.162786,-1.80204,-0.0537578,-1.57,2.38732e-101 +2.40642e-101,-0.162677,-1.80085,-0.0525706,-1.57,2.40642e-101 +2.42552e-101,-0.162567,-1.79965,-0.0513725,-1.57,2.42552e-101 +2.44462e-101,-0.162458,-1.79845,-0.0501635,-1.57,2.44462e-101 +2.46372e-101,-0.162349,-1.79723,-0.0489436,-1.57,2.46372e-101 +2.48282e-101,-0.16224,-1.79599,-0.0477127,-1.57,2.48282e-101 +2.50192e-101,-0.162131,-1.79475,-0.046471,-1.57,2.50192e-101 +2.52101e-101,-0.162021,-1.7935,-0.0452184,-1.57,2.52101e-101 +2.54011e-101,-0.161912,-1.79224,-0.0439548,-1.57,2.54011e-101 +2.55921e-101,-0.161803,-1.79096,-0.0426804,-1.57,2.55921e-101 +2.57831e-101,-0.161694,-1.78968,-0.041395,-1.57,2.57831e-101 +2.59741e-101,-0.161584,-1.78838,-0.0400987,-1.57,2.59741e-101 +2.61651e-101,-0.161475,-1.78707,-0.0387916,-1.57,2.61651e-101 +2.63561e-101,-0.161366,-1.78576,-0.0374735,-1.57,2.63561e-101 +2.6547e-101,-0.161257,-1.78443,-0.0361445,-1.57,2.6547e-101 +2.6738e-101,-0.161147,-1.78309,-0.0348046,-1.57,2.6738e-101 +2.6929e-101,-0.161038,-1.78174,-0.0334538,-1.57,2.6929e-101 +2.712e-101,-0.160929,-1.78037,-0.032092,-1.57,2.712e-101 +2.7311e-101,-0.16082,-1.779,-0.0307194,-1.57,2.7311e-101 +2.7502e-101,-0.16071,-1.77762,-0.0293359,-1.57,2.7502e-101 +2.7693e-101,-0.160601,-1.77622,-0.0279414,-1.57,2.7693e-101 +2.78839e-101,-0.160492,-1.77482,-0.0265361,-1.57,2.78839e-101 +2.80749e-101,-0.160383,-1.7734,-0.0251198,-1.57,2.80749e-101 +2.82659e-101,-0.160274,-1.77197,-0.0236926,-1.57,2.82659e-101 +2.84569e-101,-0.160164,-1.77054,-0.0222546,-1.57,2.84569e-101 +2.86479e-101,-0.160055,-1.76909,-0.0208056,-1.57,2.86479e-101 +2.88389e-101,-0.159946,-1.76763,-0.0193457,-1.57,2.88389e-101 +2.90299e-101,-0.159837,-1.76616,-0.0178749,-1.57,2.90299e-101 +2.92208e-101,-0.159727,-1.76468,-0.0163932,-1.57,2.92208e-101 +2.94118e-101,-0.159618,-1.76318,-0.0149009,-1.57,2.94118e-101 +2.96028e-101,-0.159509,-1.76168,-0.0133983,-1.57,2.96028e-101 +2.97938e-101,-0.1594,-1.76016,-0.0118857,-1.57,2.97938e-101 +2.99848e-101,-0.15929,-1.75864,-0.0103635,-1.57,2.99848e-101 +3.01758e-101,-0.159181,-1.7571,-0.008832,-1.57,3.01758e-101 +3.03668e-101,-0.159072,-1.75556,-0.00729149,-1.57,3.03668e-101 +3.05577e-101,-0.158963,-1.754,-0.00574231,-1.57,3.05577e-101 +3.07487e-101,-0.158854,-1.75243,-0.00418481,-1.57,3.07487e-101 +3.09397e-101,-0.158744,-1.75085,-0.00261929,-1.57,3.09397e-101 +3.11307e-101,-0.158635,-1.74926,-0.00104609,-1.57,3.11307e-101 +3.13217e-101,-0.158526,-1.74766,0.000534452,-1.57,3.13217e-101 +3.15127e-101,-0.158417,-1.74604,0.00212202,-1.57,3.15127e-101 +3.17037e-101,-0.158307,-1.74442,0.00371629,-1.57,3.17037e-101 +3.18947e-101,-0.158198,-1.74279,0.00531693,-1.57,3.18947e-101 +3.20856e-101,-0.158089,-1.74114,0.00692362,-1.57,3.20856e-101 +3.22766e-101,-0.15798,-1.73948,0.00853601,-1.57,3.22766e-101 +3.24676e-101,-0.15787,-1.73782,0.0101538,-1.57,3.24676e-101 +3.26586e-101,-0.157761,-1.73614,0.0117766,-1.57,3.26586e-101 +3.28496e-101,-0.157652,-1.73445,0.0134042,-1.57,3.28496e-101 +3.30406e-101,-0.157543,-1.73275,0.0150362,-1.57,3.30406e-101 +3.32316e-101,-0.157433,-1.73104,0.0166723,-1.57,3.32316e-101 +3.34225e-101,-0.157324,-1.72932,0.0183121,-1.57,3.34225e-101 +3.36135e-101,-0.157215,-1.72759,0.0199554,-1.57,3.36135e-101 +3.38045e-101,-0.157106,-1.72584,0.0216017,-1.57,3.38045e-101 +3.39955e-101,-0.156997,-1.72409,0.0232508,-1.57,3.39955e-101 +3.41865e-101,-0.156887,-1.72232,0.0249024,-1.57,3.41865e-101 +3.43775e-101,-0.156778,-1.72055,0.026556,-1.57,3.43775e-101 +3.45685e-101,-0.156669,-1.71876,0.0282115,-1.57,3.45685e-101 +3.47594e-101,-0.15656,-1.71696,0.0298684,-1.57,3.47594e-101 +3.49504e-101,-0.15645,-1.71515,0.0315265,-1.57,3.49504e-101 +3.51414e-101,-0.156341,-1.71333,0.0331854,-1.57,3.51414e-101 +3.53324e-101,-0.156232,-1.7115,0.0348447,-1.57,3.53324e-101 +3.55234e-101,-0.156123,-1.70966,0.0365042,-1.57,3.55234e-101 +3.57144e-101,-0.156013,-1.70781,0.0381637,-1.57,3.57144e-101 +3.59054e-101,-0.155904,-1.70594,0.0398232,-1.57,3.59054e-101 +3.60963e-101,-0.155795,-1.70407,0.0414827,-1.57,3.60963e-101 +3.62873e-101,-0.155686,-1.70218,0.0431423,-1.57,3.62873e-101 +3.64783e-101,-0.155577,-1.70029,0.0448018,-1.57,3.64783e-101 +3.66693e-101,-0.155467,-1.69838,0.0464613,-1.57,3.66693e-101 +3.68603e-101,-0.155358,-1.69646,0.0481208,-1.57,3.68603e-101 +3.70513e-101,-0.155249,-1.69453,0.0497803,-1.57,3.70513e-101 +3.72423e-101,-0.15514,-1.69259,0.0514398,-1.57,3.72423e-101 +3.74332e-101,-0.15503,-1.69064,0.0530993,-1.57,3.74332e-101 +3.76242e-101,-0.154921,-1.68868,0.0547588,-1.57,3.76242e-101 +3.78152e-101,-0.154812,-1.68671,0.0564183,-1.57,3.78152e-101 +3.80062e-101,-0.154703,-1.68472,0.0580779,-1.57,3.80062e-101 +3.81972e-101,-0.154593,-1.68273,0.0597374,-1.57,3.81972e-101 +3.83882e-101,-0.154484,-1.68073,0.0613969,-1.57,3.83882e-101 +3.85792e-101,-0.154375,-1.67871,0.0630564,-1.57,3.85792e-101 +3.87701e-101,-0.154266,-1.67668,0.0647159,-1.57,3.87701e-101 +3.89611e-101,-0.154156,-1.67465,0.0663754,-1.57,3.89611e-101 +3.91521e-101,-0.154047,-1.6726,0.0680349,-1.57,3.91521e-101 +3.93431e-101,-0.153938,-1.67055,0.0696944,-1.57,3.93431e-101 +3.95341e-101,-0.153829,-1.66848,0.0713539,-1.57,3.95341e-101 +3.97251e-101,-0.15372,-1.66641,0.0730135,-1.57,3.97251e-101 +3.99161e-101,-0.15361,-1.66433,0.074673,-1.57,3.99161e-101 +4.0107e-101,-0.153501,-1.66224,0.0763325,-1.57,4.0107e-101 +4.0298e-101,-0.153392,-1.66014,0.077992,-1.57,4.0298e-101 +4.0489e-101,-0.153283,-1.65804,0.0796515,-1.57,4.0489e-101 +4.068e-101,-0.153173,-1.65593,0.081311,-1.57,4.068e-101 +4.0871e-101,-0.153064,-1.65381,0.0829705,-1.57,4.0871e-101 +4.1062e-101,-0.152955,-1.65169,0.08463,-1.57,4.1062e-101 +4.1253e-101,-0.152846,-1.64956,0.0862895,-1.57,4.1253e-101 +4.14439e-101,-0.152736,-1.64742,0.0879491,-1.57,4.14439e-101 +4.16349e-101,-0.152627,-1.64528,0.0896086,-1.57,4.16349e-101 +4.18259e-101,-0.152518,-1.64314,0.0912681,-1.57,4.18259e-101 +4.20169e-101,-0.152409,-1.64099,0.0929276,-1.57,4.20169e-101 +4.22079e-101,-0.152299,-1.63883,0.0945871,-1.57,4.22079e-101 +4.23989e-101,-0.15219,-1.63667,0.0962466,-1.57,4.23989e-101 +4.25899e-101,-0.152081,-1.63451,0.0979061,-1.57,4.25899e-101 +4.27808e-101,-0.151972,-1.63235,0.0995656,-1.57,4.27808e-101 +4.29718e-101,-0.151863,-1.63018,0.101225,-1.57,4.29718e-101 +4.31628e-101,-0.151753,-1.62801,0.102885,-1.57,4.31628e-101 +4.33538e-101,-0.151644,-1.62583,0.104544,-1.57,4.33538e-101 +4.35448e-101,-0.151535,-1.62366,0.106204,-1.57,4.35448e-101 +4.37358e-101,-0.151426,-1.62148,0.107863,-1.57,4.37358e-101 +4.39268e-101,-0.151316,-1.6193,0.109523,-1.57,4.39268e-101 +4.41178e-101,-0.151207,-1.61712,0.111182,-1.57,4.41178e-101 +4.43087e-101,-0.151098,-1.61494,0.112842,-1.57,4.43087e-101 +4.44997e-101,-0.150989,-1.61276,0.114501,-1.57,4.44997e-101 +4.46907e-101,-0.150879,-1.61057,0.116161,-1.57,4.46907e-101 +4.48817e-101,-0.15077,-1.60839,0.11782,-1.57,4.48817e-101 +4.50727e-101,-0.150661,-1.60621,0.11948,-1.57,4.50727e-101 +4.52637e-101,-0.150552,-1.60403,0.121139,-1.57,4.52637e-101 +4.54547e-101,-0.150443,-1.60185,0.122799,-1.57,4.54547e-101 +4.56456e-101,-0.150333,-1.59967,0.124458,-1.57,4.56456e-101 +4.58366e-101,-0.150224,-1.59748,0.126118,-1.57,4.58366e-101 +4.60276e-101,-0.150115,-1.5953,0.127777,-1.57,4.60276e-101 +4.62186e-101,-0.150006,-1.59312,0.129437,-1.57,4.62186e-101 +4.64096e-101,-0.149896,-1.59094,0.131096,-1.57,4.64096e-101 +4.66006e-101,-0.149787,-1.58876,0.132756,-1.57,4.66006e-101 +4.67916e-101,-0.149678,-1.58658,0.134415,-1.57,4.67916e-101 +4.69825e-101,-0.149569,-1.58439,0.136075,-1.57,4.69825e-101 +4.71735e-101,-0.149459,-1.58221,0.137734,-1.57,4.71735e-101 +4.73645e-101,-0.14935,-1.58003,0.139394,-1.57,4.73645e-101 +4.75555e-101,-0.149241,-1.57785,0.141053,-1.57,4.75555e-101 +4.77465e-101,-0.149132,-1.57567,0.142713,-1.57,4.77465e-101 +4.79375e-101,-0.149022,-1.57349,0.144372,-1.57,4.79375e-101 +4.81285e-101,-0.148913,-1.5713,0.146032,-1.57,4.81285e-101 +4.83194e-101,-0.148804,-1.56912,0.147691,-1.57,4.83194e-101 +4.85104e-101,-0.148695,-1.56694,0.149351,-1.57,4.85104e-101 +4.87014e-101,-0.148586,-1.56476,0.15101,-1.57,4.87014e-101 +4.88924e-101,-0.148476,-1.56259,0.15267,-1.57,4.88924e-101 +4.90834e-101,-0.148367,-1.56041,0.15433,-1.57,4.90834e-101 +4.92744e-101,-0.148258,-1.55824,0.155989,-1.57,4.92744e-101 +4.94654e-101,-0.148149,-1.55607,0.157649,-1.57,4.94654e-101 +4.96563e-101,-0.148039,-1.5539,0.159308,-1.57,4.96563e-101 +4.98473e-101,-0.14793,-1.55173,0.160968,-1.57,4.98473e-101 +5.00383e-101,-0.147821,-1.54957,0.162627,-1.57,5.00383e-101 +5.02293e-101,-0.147712,-1.54742,0.164287,-1.57,5.02293e-101 +5.04203e-101,-0.147602,-1.54526,0.165946,-1.57,5.04203e-101 +5.06113e-101,-0.147493,-1.54311,0.167606,-1.57,5.06113e-101 +5.08023e-101,-0.147384,-1.54097,0.169265,-1.57,5.08023e-101 +5.09932e-101,-0.147275,-1.53883,0.170925,-1.57,5.09932e-101 +5.11842e-101,-0.147166,-1.5367,0.172584,-1.57,5.11842e-101 +5.13752e-101,-0.147056,-1.53457,0.174244,-1.57,5.13752e-101 +5.15662e-101,-0.146947,-1.53245,0.175903,-1.57,5.15662e-101 +5.17572e-101,-0.146838,-1.53033,0.177563,-1.57,5.17572e-101 +5.19482e-101,-0.146729,-1.52822,0.179222,-1.57,5.19482e-101 +5.21392e-101,-0.146619,-1.52612,0.180882,-1.57,5.21392e-101 +5.23301e-101,-0.14651,-1.52403,0.182541,-1.57,5.23301e-101 +5.25211e-101,-0.146401,-1.52194,0.184201,-1.57,5.25211e-101 +5.27121e-101,-0.146292,-1.51986,0.18586,-1.57,5.27121e-101 +5.29031e-101,-0.146182,-1.51779,0.18752,-1.57,5.29031e-101 +5.30941e-101,-0.146073,-1.51573,0.189179,-1.57,5.30941e-101 +5.32851e-101,-0.145964,-1.51368,0.190839,-1.57,5.32851e-101 +5.34761e-101,-0.145855,-1.51164,0.192498,-1.57,5.34761e-101 +5.3667e-101,-0.145745,-1.50961,0.194158,-1.57,5.3667e-101 +5.3858e-101,-0.145636,-1.50758,0.195817,-1.57,5.3858e-101 +5.4049e-101,-0.145527,-1.50557,0.197477,-1.57,5.4049e-101 +5.424e-101,-0.145418,-1.50357,0.199136,-1.57,5.424e-101 +5.4431e-101,-0.145309,-1.50158,0.200796,-1.57,5.4431e-101 +5.4622e-101,-0.145199,-1.4996,0.202455,-1.57,5.4622e-101 +5.4813e-101,-0.14509,-1.49763,0.204115,-1.57,5.4813e-101 +5.50039e-101,-0.144981,-1.49567,0.205774,-1.57,5.50039e-101 +5.51949e-101,-0.144872,-1.49372,0.207434,-1.57,5.51949e-101 +5.53859e-101,-0.144762,-1.49179,0.209093,-1.57,5.53859e-101 +5.55769e-101,-0.144653,-1.48986,0.210753,-1.57,5.55769e-101 +5.57679e-101,-0.144544,-1.48795,0.212412,-1.57,5.57679e-101 +5.59589e-101,-0.144435,-1.48604,0.214072,-1.57,5.59589e-101 +5.61499e-101,-0.144325,-1.48415,0.215731,-1.57,5.61499e-101 +5.63408e-101,-0.144216,-1.48227,0.217391,-1.57,5.63408e-101 +5.65318e-101,-0.144107,-1.4804,0.21905,-1.57,5.65318e-101 +5.67228e-101,-0.143998,-1.47854,0.22071,-1.57,5.67228e-101 +5.69138e-101,-0.143889,-1.47669,0.222369,-1.57,5.69138e-101 +5.71048e-101,-0.143779,-1.47485,0.224029,-1.57,5.71048e-101 +5.72958e-101,-0.14367,-1.47302,0.225688,-1.57,5.72958e-101 +5.74868e-101,-0.143561,-1.47121,0.227347,-1.57,5.74868e-101 +5.76778e-101,-0.143452,-1.4694,0.229005,-1.57,5.76778e-101 +5.78687e-101,-0.143342,-1.46761,0.230661,-1.57,5.78687e-101 +5.80597e-101,-0.143233,-1.46582,0.232316,-1.57,5.80597e-101 +5.82507e-101,-0.143124,-1.46405,0.233969,-1.57,5.82507e-101 +5.84417e-101,-0.143015,-1.46229,0.23562,-1.57,5.84417e-101 +5.86327e-101,-0.142905,-1.46054,0.237268,-1.57,5.86327e-101 +5.88237e-101,-0.142796,-1.4588,0.238914,-1.57,5.88237e-101 +5.90147e-101,-0.142687,-1.45707,0.240556,-1.57,5.90147e-101 +5.92056e-101,-0.142578,-1.45535,0.242194,-1.57,5.92056e-101 +5.93966e-101,-0.142468,-1.45364,0.243829,-1.57,5.93966e-101 +5.95876e-101,-0.142359,-1.45194,0.24546,-1.57,5.95876e-101 +5.97786e-101,-0.14225,-1.45026,0.247086,-1.57,5.97786e-101 +5.99696e-101,-0.142141,-1.44858,0.248707,-1.57,5.99696e-101 +6.01606e-101,-0.142032,-1.44692,0.250323,-1.57,6.01606e-101 +6.03516e-101,-0.141922,-1.44527,0.251934,-1.57,6.03516e-101 +6.05425e-101,-0.141813,-1.44363,0.253539,-1.57,6.05425e-101 +6.07335e-101,-0.141704,-1.44199,0.255138,-1.57,6.07335e-101 +6.09245e-101,-0.141595,-1.44037,0.25673,-1.57,6.09245e-101 +6.11155e-101,-0.141485,-1.43877,0.258315,-1.57,6.11155e-101 +6.13065e-101,-0.141376,-1.43717,0.259894,-1.57,6.13065e-101 +6.14975e-101,-0.141267,-1.43558,0.261464,-1.57,6.14975e-101 +6.16885e-101,-0.141158,-1.434,0.263027,-1.57,6.16885e-101 +6.18794e-101,-0.141048,-1.43244,0.264582,-1.57,6.18794e-101 +6.20704e-101,-0.140939,-1.43088,0.266129,-1.57,6.20704e-101 +6.22614e-101,-0.14083,-1.42934,0.267667,-1.57,6.22614e-101 +6.24524e-101,-0.140721,-1.42781,0.269195,-1.57,6.24524e-101 +6.26434e-101,-0.140611,-1.42628,0.270714,-1.57,6.26434e-101 +6.28344e-101,-0.140502,-1.42477,0.272224,-1.57,6.28344e-101 +6.30254e-101,-0.140393,-1.42327,0.273723,-1.57,6.30254e-101 +6.32163e-101,-0.140284,-1.42178,0.275212,-1.57,6.32163e-101 +6.34073e-101,-0.140175,-1.42031,0.276691,-1.57,6.34073e-101 +6.35983e-101,-0.140065,-1.41884,0.278158,-1.57,6.35983e-101 +6.37893e-101,-0.139956,-1.41738,0.279614,-1.57,6.37893e-101 +6.39803e-101,-0.139847,-1.41594,0.28106,-1.57,6.39803e-101 +6.41713e-101,-0.139738,-1.4145,0.282495,-1.57,6.41713e-101 +6.43623e-101,-0.139628,-1.41308,0.283918,-1.57,6.43623e-101 +6.45532e-101,-0.139519,-1.41167,0.285331,-1.57,6.45532e-101 +6.47442e-101,-0.13941,-1.41026,0.286733,-1.57,6.47442e-101 +6.49352e-101,-0.139301,-1.40887,0.288124,-1.57,6.49352e-101 +6.51262e-101,-0.139191,-1.40749,0.289504,-1.57,6.51262e-101 +6.53172e-101,-0.139082,-1.40612,0.290873,-1.57,6.53172e-101 +6.55082e-101,-0.138973,-1.40476,0.292232,-1.57,6.55082e-101 +6.56992e-101,-0.138864,-1.40342,0.293579,-1.57,6.56992e-101 +6.58901e-101,-0.138755,-1.40208,0.294916,-1.57,6.58901e-101 +6.60811e-101,-0.138645,-1.40076,0.296241,-1.57,6.60811e-101 +6.62721e-101,-0.138536,-1.39944,0.297556,-1.57,6.62721e-101 +6.64631e-101,-0.138427,-1.39814,0.29886,-1.57,6.64631e-101 +6.66541e-101,-0.138318,-1.39684,0.300153,-1.57,6.66541e-101 +6.68451e-101,-0.138208,-1.39556,0.301434,-1.57,6.68451e-101 +6.70361e-101,-0.138099,-1.39429,0.302705,-1.57,6.70361e-101 +6.7227e-101,-0.13799,-1.39303,0.303966,-1.57,6.7227e-101 +6.7418e-101,-0.137881,-1.39178,0.305215,-1.57,6.7418e-101 +6.7609e-101,-0.137771,-1.39054,0.306453,-1.57,6.7609e-101 +6.78e-101,-0.137662,-1.38932,0.307681,-1.57,6.78e-101 +6.7991e-101,-0.137553,-1.3881,0.308897,-1.57,6.7991e-101 +6.8182e-101,-0.137444,-1.38689,0.310103,-1.57,6.8182e-101 +6.8373e-101,-0.137334,-1.3857,0.311297,-1.57,6.8373e-101 +6.85639e-101,-0.137225,-1.38452,0.312481,-1.57,6.85639e-101 +6.87549e-101,-0.137116,-1.38334,0.313654,-1.57,6.87549e-101 +6.89459e-101,-0.137007,-1.38218,0.314816,-1.57,6.89459e-101 +6.91369e-101,-0.136898,-1.38103,0.315967,-1.57,6.91369e-101 +6.93279e-101,-0.136788,-1.37989,0.317107,-1.57,6.93279e-101 +6.95189e-101,-0.136679,-1.37876,0.318236,-1.57,6.95189e-101 +6.97099e-101,-0.13657,-1.37764,0.319355,-1.57,6.97099e-101 +6.99009e-101,-0.136461,-1.37653,0.320462,-1.57,6.99009e-101 +7.00918e-101,-0.136351,-1.37544,0.321558,-1.57,7.00918e-101 +7.02828e-101,-0.136242,-1.37435,0.322644,-1.57,7.02828e-101 +7.04738e-101,-0.136133,-1.37328,0.323719,-1.57,7.04738e-101 +7.06648e-101,-0.136024,-1.37221,0.324783,-1.57,7.06648e-101 +7.08558e-101,-0.135914,-1.37116,0.325835,-1.57,7.08558e-101 +7.10468e-101,-0.135805,-1.37012,0.326877,-1.57,7.10468e-101 +7.12378e-101,-0.135696,-1.36909,0.327908,-1.57,7.12378e-101 +7.14287e-101,-0.135587,-1.36807,0.328929,-1.57,7.14287e-101 +7.16197e-101,-0.135478,-1.36706,0.329938,-1.57,7.16197e-101 +7.18107e-101,-0.135368,-1.36606,0.330936,-1.57,7.18107e-101 +7.20017e-101,-0.135259,-1.36507,0.331924,-1.57,7.20017e-101 +7.21927e-101,-0.13515,-1.3641,0.3329,-1.57,7.21927e-101 +7.23837e-101,-0.135041,-1.36313,0.333866,-1.57,7.23837e-101 +7.25747e-101,-0.134931,-1.36218,0.33482,-1.57,7.25747e-101 +7.27656e-101,-0.134822,-1.36123,0.335764,-1.57,7.27656e-101 +7.29566e-101,-0.134713,-1.3603,0.336697,-1.57,7.29566e-101 +7.31476e-101,-0.134604,-1.35938,0.337619,-1.57,7.31476e-101 +7.33386e-101,-0.134494,-1.35847,0.33853,-1.57,7.33386e-101 +7.35296e-101,-0.134385,-1.35757,0.33943,-1.57,7.35296e-101 +7.37206e-101,-0.134276,-1.35668,0.340319,-1.57,7.37206e-101 +7.39116e-101,-0.134167,-1.3558,0.341198,-1.57,7.39116e-101 +7.41025e-101,-0.134057,-1.35493,0.342065,-1.57,7.41025e-101 +7.42935e-101,-0.133948,-1.35407,0.342922,-1.57,7.42935e-101 +7.44845e-101,-0.133839,-1.35323,0.343767,-1.57,7.44845e-101 +7.46755e-101,-0.13373,-1.35239,0.344602,-1.57,7.46755e-101 +7.48665e-101,-0.133621,-1.35157,0.345426,-1.57,7.48665e-101 +7.50575e-101,-0.133511,-1.35076,0.346239,-1.57,7.50575e-101 +7.52485e-101,-0.133402,-1.34996,0.347041,-1.57,7.52485e-101 +7.54394e-101,-0.133293,-1.34916,0.347832,-1.57,7.54394e-101 +7.56304e-101,-0.133184,-1.34838,0.348612,-1.57,7.56304e-101 +7.58214e-101,-0.133074,-1.34762,0.349381,-1.57,7.58214e-101 +7.60124e-101,-0.132965,-1.34686,0.350139,-1.57,7.60124e-101 +7.62034e-101,-0.132856,-1.34611,0.350887,-1.57,7.62034e-101 +7.63944e-101,-0.132747,-1.34537,0.351623,-1.57,7.63944e-101 +7.65854e-101,-0.132637,-1.34465,0.352349,-1.57,7.65854e-101 +7.67763e-101,-0.132528,-1.34393,0.353064,-1.57,7.67763e-101 +7.69673e-101,-0.132419,-1.34323,0.353768,-1.57,7.69673e-101 +7.71583e-101,-0.13231,-1.34254,0.35446,-1.57,7.71583e-101 +7.73493e-101,-0.1322,-1.34185,0.355142,-1.57,7.73493e-101 +7.75403e-101,-0.132091,-1.34118,0.355813,-1.57,7.75403e-101 +7.77313e-101,-0.131982,-1.34052,0.356474,-1.57,7.77313e-101 +7.79223e-101,-0.131873,-1.33987,0.357123,-1.57,7.79223e-101 +7.81132e-101,-0.131764,-1.33924,0.357761,-1.57,7.81132e-101 +7.83042e-101,-0.131654,-1.33861,0.358389,-1.57,7.83042e-101 +7.84952e-101,-0.131545,-1.33799,0.359005,-1.57,7.84952e-101 +7.86862e-101,-0.131436,-1.33739,0.359611,-1.57,7.86862e-101 +7.88772e-101,-0.131327,-1.33679,0.360206,-1.57,7.88772e-101 +7.90682e-101,-0.131217,-1.33621,0.360789,-1.57,7.90682e-101 +7.92592e-101,-0.131108,-1.33563,0.361362,-1.57,7.92592e-101 +7.94501e-101,-0.130999,-1.33507,0.361924,-1.57,7.94501e-101 +7.96411e-101,-0.13089,-1.33452,0.362475,-1.57,7.96411e-101 +7.98321e-101,-0.13078,-1.33398,0.363016,-1.57,7.98321e-101 +8.00231e-101,-0.130671,-1.33345,0.363545,-1.57,8.00231e-101 +8.02141e-101,-0.130562,-1.33293,0.364063,-1.57,8.02141e-101 +8.04051e-101,-0.130453,-1.33243,0.364571,-1.57,8.04051e-101 +8.05961e-101,-0.130344,-1.33193,0.365067,-1.57,8.05961e-101 +8.0787e-101,-0.130234,-1.33144,0.365553,-1.57,8.0787e-101 +8.0978e-101,-0.130125,-1.33097,0.366028,-1.57,8.0978e-101 +8.1169e-101,-0.130016,-1.33051,0.366491,-1.57,8.1169e-101 +8.136e-101,-0.129907,-1.33005,0.366944,-1.57,8.136e-101 +8.1551e-101,-0.129797,-1.32961,0.367386,-1.57,8.1551e-101 +8.1742e-101,-0.129688,-1.32918,0.367817,-1.57,8.1742e-101 +8.1933e-101,-0.129579,-1.32876,0.368238,-1.57,8.1933e-101 +8.2124e-101,-0.12947,-1.32835,0.368647,-1.57,8.2124e-101 +8.23149e-101,-0.12936,-1.32795,0.369045,-1.57,8.23149e-101 +8.25059e-101,-0.129251,-1.32756,0.369433,-1.57,8.25059e-101 +8.26969e-101,-0.129142,-1.32719,0.369809,-1.57,8.26969e-101 +8.28879e-101,-0.129033,-1.32682,0.370175,-1.57,8.28879e-101 +8.30789e-101,-0.128923,-1.32647,0.37053,-1.57,8.30789e-101 +8.32699e-101,-0.128814,-1.32612,0.370873,-1.57,8.32699e-101 +8.34609e-101,-0.128705,-1.32579,0.371206,-1.57,8.34609e-101 +8.36518e-101,-0.128596,-1.32547,0.371528,-1.57,8.36518e-101 +8.38428e-101,-0.128487,-1.32516,0.371839,-1.57,8.38428e-101 +8.40338e-101,-0.128377,-1.32486,0.37214,-1.57,8.40338e-101 +8.42248e-101,-0.128268,-1.32457,0.372429,-1.57,8.42248e-101 +8.44158e-101,-0.128159,-1.32429,0.372707,-1.57,8.44158e-101 +8.46068e-101,-0.12805,-1.32402,0.372975,-1.57,8.46068e-101 +8.47978e-101,-0.12794,-1.32377,0.373231,-1.57,8.47978e-101 +8.49887e-101,-0.127831,-1.32352,0.373477,-1.57,8.49887e-101 +8.51797e-101,-0.127722,-1.32328,0.373712,-1.57,8.51797e-101 +8.53707e-101,-0.127613,-1.32306,0.373936,-1.57,8.53707e-101 +8.55617e-101,-0.127503,-1.32285,0.374148,-1.57,8.55617e-101 +8.57527e-101,-0.127395,-1.32265,0.37435,-1.57,8.57527e-101 +8.59437e-101,-0.127286,-1.32245,0.374542,-1.57,8.59437e-101 +8.61347e-101,-0.127179,-1.32227,0.374722,-1.57,8.61347e-101 +8.63256e-101,-0.127073,-1.32211,0.374891,-1.57,8.63256e-101 +8.65166e-101,-0.126968,-1.32195,0.37505,-1.57,8.65166e-101 +8.67076e-101,-0.126866,-1.3218,0.3752,-1.57,8.67076e-101 +8.68986e-101,-0.126765,-1.32166,0.375339,-1.57,8.68986e-101 +8.70896e-101,-0.126667,-1.32153,0.375469,-1.57,8.70896e-101 +8.72806e-101,-0.126573,-1.32141,0.37559,-1.57,8.72806e-101 +8.74716e-101,-0.126481,-1.32129,0.375702,-1.57,8.74716e-101 +8.76625e-101,-0.126393,-1.32119,0.375806,-1.57,8.76625e-101 +8.78535e-101,-0.126308,-1.32109,0.375902,-1.57,8.78535e-101 +8.80445e-101,-0.126228,-1.32101,0.37599,-1.57,8.80445e-101 +8.82355e-101,-0.126153,-1.32093,0.37607,-1.57,8.82355e-101 +8.84265e-101,-0.126082,-1.32085,0.376144,-1.57,8.84265e-101 +8.86175e-101,-0.126017,-1.32079,0.37621,-1.57,8.86175e-101 +8.88085e-101,-0.125957,-1.32073,0.376271,-1.57,8.88085e-101 +8.89994e-101,-0.125903,-1.32067,0.376325,-1.57,8.89994e-101 +8.91904e-101,-0.125854,-1.32062,0.376373,-1.57,8.91904e-101 +8.93814e-101,-0.125812,-1.32058,0.376416,-1.57,8.93814e-101 +8.95724e-101,-0.125774,-1.32054,0.376454,-1.57,8.95724e-101 +8.97634e-101,-0.125741,-1.32051,0.376487,-1.57,8.97634e-101 +8.99544e-101,-0.125712,-1.32048,0.376515,-1.57,8.99544e-101 +9.01454e-101,-0.125688,-1.32046,0.376539,-1.57,9.01454e-101 +9.03363e-101,-0.125668,-1.32044,0.37656,-1.57,9.03363e-101 +9.05273e-101,-0.125651,-1.32042,0.376577,-1.57,9.05273e-101 +9.07183e-101,-0.125637,-1.32041,0.376591,-1.57,9.07183e-101 +9.09093e-101,-0.125626,-1.32039,0.376602,-1.57,9.09093e-101 +9.11003e-101,-0.125617,-1.32039,0.37661,-1.57,9.11003e-101 +9.12913e-101,-0.125611,-1.32038,0.376616,-1.57,9.12913e-101 +9.14823e-101,-0.125607,-1.32038,0.376621,-1.57,9.14823e-101 +9.16732e-101,-0.125604,-1.32037,0.376624,-1.57,9.16732e-101 +9.18642e-101,-0.125602,-1.32037,0.376625,-1.57,9.18642e-101 +9.20552e-101,-0.125601,-1.32037,0.376626,-1.57,9.20552e-101 +9.22462e-101,-0.125601,-1.32037,0.376626,-1.57,9.22462e-101 +0,-0.1256,-1.32037,0.376626,-1.57,0 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path1.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path1.txt new file mode 100644 index 00000000..64723601 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/path1.txt @@ -0,0 +1,102 @@ +initial [0. , 0. , 1.5708, 0. , 1.5708, 0. ] +[0.8469991981336117, + -0.17699919813932602, + 0.7731968887982229, + 0.7071067811865476, + 0.7071067811817772, + 4.492070556689572e-22, + -2.5973482372220976e-06] + +pre_pick (MoveJ) [-1.8627 , -0.10107, 2.261 , 0.79128, 1.5708 , 1.2789 ] +[-0.3750238044135327, + -0.632993498407091, + 0.2570035142564412, + -0.7071041838329175, + 0.7071093785211757, + -3.1159927952576184e-06, + -1.9159282994245156e-06] + +pick (MoveL) [-1.8627 , -0.30156, 2.3346 , 1.0653 , 1.5708 , 1.2789 ] +[-0.3750122764505574, + -0.6329551341626609, + 0.10698113768592163, + -0.7071041834326522, + 0.707109378211815, + 1.3463841342087092e-05, + 2.890791149394013e-05] + +sleep 0.5 + +post_pick (MoveL) [-1.8627 , -0.10107, 2.261 , 0.79128, 1.5708 , 1.2789 ] +[-0.3750238044135327, + -0.632993498407091, + 0.2570035142564412, + -0.7071041838329175, + 0.7071093785211757, + -3.1159927952576184e-06, + -1.9159282994245156e-06] + +home_1 (MoveJ) [0. , 0. , 1.5708, 0. , 1.5708, 0. ] +[0.8469991981336117, + -0.17699919813932602, + 0.7731968887982229, + 0.7071067811865476, + 0.7071067811817772, + 4.492070556689572e-22, + -2.5973482372220976e-06] + +pre_place (MoveJ) [ 1.9387 , -1.1889 , 1.0615 , 0.67956, 1.5708 , 0.36794] +[-0.34994085696218247, + 1.3999970597809315, + -0.1830518785290028, + 1.8163437548168025e-05, + 0.9999999995949396, + -2.103581176014661e-05, + 6.14043511926292e-06] + +slide (MoveL) [ 1.9387 , -1.4386 , 0.91743, 0.78524, 1.5708 , 0.36794] +[-0.3499487338735211, + 1.4000174952235875, + -0.4329875947323341, + 1.816339163735817e-05, + 0.9999999998283555, + 2.2911089324063443e-06, + -2.8514929787952656e-06] + +place (MoveL) [ 1.9579 , -1.5774 , 0.66479, 0.67139, 1.5708 , 0.38711] +[-0.3999849300759872, + 1.4500031683845338, + -0.48299917543484816, + 3.16340082115326e-06, + 0.9999999999916233, + -2.394040902090525e-06, + -1.0073658839671063e-06] + +sleep 0.5 + +slide_back (MoveL) [ 1.9387 , -1.4386 , 0.91743, 0.78524, 1.5708 , 0.36794] +[-0.3499487338735211, + 1.4000174952235875, + -0.4329875947323341, + 1.816339163735817e-05, + 0.9999999998283555, + 2.2911089324063443e-06, + -2.8514929787952656e-06] + +post_place (MoveL) [ 1.9387 , -1.1889 , 1.0615 , 0.67956, 1.5708 , 0.36794] +[-0.34994085696218247, + 1.3999970597809315, + -0.1830518785290028, + 1.8163437548168025e-05, + 0.9999999995949396, + -2.103581176014661e-05, + 6.14043511926292e-06] + +home_2 (MoveJ) [0. , 0. , 1.5708, 0. , 1.5708, 0. ] +[0.8469991981336117, + -0.17699919813932602, + 0.7731968887982229, + 0.7071067811865476, + 0.7071067811817772, + 4.492070556689572e-22, + -2.5973482372220976e-06] diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/physiotherapy.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/physiotherapy.txt new file mode 100644 index 00000000..1d896ebc --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/physiotherapy.txt @@ -0,0 +1,4688 @@ +-0.379045,0.284374,-1.94566,-1.20584,-1.097,-0.339933 +-0.378326,0.287087,-1.94286,-1.21367,-1.09516,-0.346221 +-0.377868,0.288725,-1.94117,-1.21846,-1.09409,-0.350024 +-0.377462,0.289775,-1.9401,-1.2218,-1.09354,-0.3525 +-0.37692,0.29055,-1.93929,-1.22477,-1.09345,-0.354447 +-0.376094,0.291228,-1.93851,-1.22803,-1.0938,-0.356374 +-0.374885,0.291896,-1.93764,-1.23193,-1.09466,-0.358551 +-0.373259,0.292589,-1.93659,-1.23655,-1.09605,-0.361105 +-0.37124,0.293312,-1.93532,-1.24185,-1.09798,-0.364078 +-0.368887,0.294057,-1.93383,-1.24764,-1.10038,-0.367456 +-0.36626,0.294802,-1.93212,-1.25371,-1.10322,-0.37119 +-0.363388,0.29551,-1.9302,-1.25979,-1.10651,-0.375194 +-0.360272,0.296141,-1.92813,-1.26568,-1.1103,-0.379358 +-0.356881,0.296657,-1.92597,-1.27124,-1.11469,-0.38356 +-0.353187,0.297037,-1.92374,-1.27634,-1.11979,-0.387698 +-0.349202,0.297283,-1.92144,-1.28085,-1.1256,-0.391733 +-0.344975,0.297419,-1.91901,-1.28468,-1.13205,-0.395679 +-0.340566,0.297469,-1.91641,-1.28773,-1.13901,-0.399577 +-0.336015,0.297447,-1.91363,-1.28996,-1.14641,-0.403458 +-0.331318,0.297343,-1.91067,-1.29137,-1.15426,-0.40732 +-0.326451,0.297141,-1.90759,-1.29201,-1.16261,-0.411145 +-0.321396,0.296837,-1.90444,-1.29196,-1.17146,-0.41492 +-0.316146,0.296446,-1.90124,-1.29131,-1.18081,-0.418641 +-0.310691,0.296,-1.89801,-1.29014,-1.19065,-0.422298 +-0.305014,0.295534,-1.89472,-1.2885,-1.20106,-0.425876 +-0.29912,0.295082,-1.89138,-1.28647,-1.212,-0.429375 +-0.293025,0.294665,-1.88803,-1.28418,-1.22343,-0.4328 +-0.286737,0.294292,-1.88474,-1.28177,-1.23532,-0.436146 +-0.280272,0.293959,-1.88155,-1.2793,-1.24763,-0.43942 +-0.273649,0.293657,-1.87844,-1.27673,-1.26031,-0.442642 +-0.266898,0.293379,-1.87538,-1.27398,-1.27331,-0.445836 +-0.260054,0.293118,-1.87229,-1.27096,-1.28654,-0.449034 +-0.253143,0.292873,-1.86912,-1.26753,-1.29994,-0.45178 +-0.246184,0.292645,-1.86583,-1.26365,-1.31348,-0.452885 +-0.239191,0.292442,-1.86245,-1.25936,-1.32711,-0.451325 +-0.232188,0.292273,-1.85902,-1.25477,-1.34074,-0.446778 +-0.225203,0.292144,-1.85561,-1.25002,-1.35427,-0.439389 +-0.218251,0.292058,-1.8523,-1.24521,-1.36764,-0.429563 +-0.21136,0.292015,-1.84914,-1.24042,-1.38077,-0.417835 +-0.204571,0.292013,-1.84621,-1.23577,-1.39354,-0.404764 +-0.197934,0.29206,-1.8436,-1.23144,-1.40579,-0.390859 +-0.191495,0.292157,-1.84139,-1.22761,-1.4174,-0.376543 +-0.185282,0.292303,-1.83961,-1.22431,-1.4283,-0.362138 +-0.179318,0.292488,-1.83825,-1.22153,-1.43842,-0.347874 +-0.173621,0.292696,-1.83729,-1.21926,-1.4477,-0.333899 +-0.168209,0.292906,-1.83676,-1.21749,-1.45615,-0.320295 +-0.163109,0.29309,-1.83667,-1.21627,-1.4637,-0.307103 +-0.158351,0.293221,-1.83709,-1.21565,-1.47034,-0.294341 +-0.153933,0.293279,-1.83801,-1.2156,-1.47611,-0.281983 +-0.14981,0.293264,-1.83932,-1.21594,-1.48112,-0.269971 +-0.145907,0.293189,-1.84087,-1.21642,-1.48555,-0.258222 +-0.142148,0.293069,-1.8425,-1.21682,-1.48954,-0.246653 +-0.138491,0.292901,-1.84414,-1.21706,-1.4932,-0.235209 +-0.134949,0.292655,-1.84584,-1.21721,-1.49655,-0.223874 +-0.131578,0.292283,-1.84775,-1.21748,-1.4995,-0.212669 +-0.128452,0.29174,-1.85004,-1.21808,-1.50195,-0.201635 +-0.125624,0.290999,-1.85282,-1.21918,-1.50385,-0.190804 +-0.123113,0.290061,-1.85613,-1.22088,-1.50518,-0.180185 +-0.120883,0.288951,-1.85991,-1.22307,-1.50605,-0.169756 +-0.118849,0.287711,-1.86401,-1.22554,-1.5066,-0.159461 +-0.11691,0.286392,-1.86826,-1.22806,-1.50702,-0.149233 +-0.11501,0.285024,-1.87257,-1.2305,-1.50743,-0.139036 +-0.113195,0.283592,-1.87693,-1.2328,-1.50781,-0.128912 +-0.111593,0.282045,-1.8814,-1.23494,-1.50804,-0.118969 +-0.110323,0.280332,-1.88606,-1.23692,-1.508,-0.109302 +-0.109407,0.278444,-1.89092,-1.23871,-1.5077,-0.0999357 +-0.108753,0.276425,-1.89589,-1.24022,-1.50726,-0.0907994 +-0.108201,0.274359,-1.90085,-1.2414,-1.50691,-0.0817671 +-0.107612,0.272337,-1.9057,-1.24228,-1.50684,-0.0727242 +-0.106935,0.270428,-1.91042,-1.24293,-1.50712,-0.0636251 +-0.106197,0.268668,-1.91501,-1.24345,-1.50773,-0.0544895 +-0.105456,0.267068,-1.9195,-1.24391,-1.5086,-0.0453589 +-0.104759,0.265615,-1.92395,-1.24438,-1.50964,-0.0362699 +-0.104148,0.264281,-1.92836,-1.24487,-1.51076,-0.0272555 +-0.103696,0.26302,-1.93277,-1.24535,-1.51182,-0.0183735 +-0.103525,0.261773,-1.93718,-1.24579,-1.51259,-0.00972384 +-0.103772,0.260471,-1.94162,-1.24611,-1.51286,-0.0014209 +-0.104517,0.259051,-1.94606,-1.24622,-1.51249,0.00646781 +-0.105715,0.257465,-1.95052,-1.24602,-1.5115,0.0139739 +-0.107215,0.255683,-1.95497,-1.2454,-1.51006,0.0212131 +-0.108868,0.253692,-1.95937,-1.24423,-1.50836,0.0283014 +-0.110628,0.251499,-1.96367,-1.24243,-1.50644,0.0352702 +-0.112571,0.249128,-1.96784,-1.24,-1.50423,0.0420571 +-0.114817,0.246614,-1.97184,-1.23703,-1.5016,0.048566 +-0.117435,0.243997,-1.97567,-1.23359,-1.4985,0.0547391 +-0.120412,0.241316,-1.9793,-1.22971,-1.49497,0.0605876 +-0.123677,0.238601,-1.98275,-1.22541,-1.49113,0.066165 +-0.127165,0.235873,-1.98598,-1.22065,-1.48709,0.0715205 +-0.130839,0.233149,-1.98898,-1.21542,-1.4829,0.0766816 +-0.134688,0.23045,-1.99176,-1.2098,-1.47856,0.0816585 +-0.138717,0.227808,-1.99434,-1.20393,-1.47409,0.0864561 +-0.142936,0.225263,-1.99672,-1.19805,-1.46945,0.0910776 +-0.147354,0.222855,-1.99896,-1.19235,-1.46462,0.0955272 +-0.151971,0.220613,-2.00108,-1.18701,-1.45957,0.0998124 +-0.156784,0.218553,-2.00315,-1.18214,-1.45425,0.103941 +-0.161774,0.216688,-2.00517,-1.17777,-1.44866,0.107448 +-0.166929,0.215039,-2.00714,-1.17398,-1.44279,0.109145 +-0.172261,0.213619,-2.00907,-1.17088,-1.43658,0.108008 +-0.177786,0.212422,-2.01095,-1.16851,-1.42995,0.103699 +-0.183522,0.211408,-2.01281,-1.16681,-1.42285,0.0963401 +-0.189477,0.210523,-2.01468,-1.16566,-1.41521,0.086314 +-0.195638,0.209741,-2.01653,-1.16491,-1.40702,0.0741455 +-0.201964,0.209093,-2.01833,-1.16456,-1.39832,0.0604088 +-0.208415,0.208645,-2.01997,-1.16467,-1.38915,0.0456347 +-0.214967,0.208447,-2.02142,-1.16525,-1.37952,0.0302521 +-0.2216,0.208502,-2.02263,-1.1662,-1.36948,0.0145734 +-0.228292,0.208769,-2.02364,-1.16736,-1.35912,-0.00118561 +-0.234999,0.209207,-2.02445,-1.16858,-1.34859,-0.0168653 +-0.241644,0.209796,-2.02504,-1.1698,-1.33807,-0.0323285 +-0.248138,0.210537,-2.02536,-1.171,-1.32775,-0.0474619 +-0.254408,0.211433,-2.02535,-1.17218,-1.31779,-0.0621964 +-0.260425,0.212472,-2.025,-1.17335,-1.30824,-0.0765249 +-0.266201,0.213628,-2.02435,-1.17449,-1.29908,-0.0904909 +-0.271733,0.214884,-2.02341,-1.17561,-1.29031,-0.104125 +-0.276984,0.216242,-2.02219,-1.17673,-1.28196,-0.117419 +-0.28191,0.217724,-2.02067,-1.17789,-1.27409,-0.130351 +-0.286501,0.219351,-2.01885,-1.17914,-1.26669,-0.142927 +-0.290802,0.221131,-2.01677,-1.18044,-1.2597,-0.155212 +-0.294871,0.223063,-2.01444,-1.18173,-1.25302,-0.167282 +-0.298715,0.225146,-2.01191,-1.18301,-1.24664,-0.179149 +-0.302269,0.227381,-2.00916,-1.18432,-1.24061,-0.190748 +-0.305439,0.229765,-2.00616,-1.18573,-1.23502,-0.201978 +-0.30817,0.232295,-2.00291,-1.18728,-1.22995,-0.212775 +-0.310495,0.234958,-1.99942,-1.18899,-1.22533,-0.223167 +-0.312505,0.237734,-1.99576,-1.19084,-1.22101,-0.233241 +-0.31428,0.240598,-1.99198,-1.19285,-1.21688,-0.243071 +-0.315852,0.243517,-1.98813,-1.19506,-1.2129,-0.25268 +-0.317201,0.246457,-1.98426,-1.19754,-1.20912,-0.262033 +-0.318297,0.249389,-1.98042,-1.20041,-1.20563,-0.271081 +-0.319139,0.252288,-1.97663,-1.20371,-1.2025,-0.279812 +-0.319754,0.255134,-1.97293,-1.20746,-1.19972,-0.288246 +-0.320163,0.257912,-1.96934,-1.21168,-1.19731,-0.296394 +-0.320367,0.260597,-1.9659,-1.21642,-1.19529,-0.304251 +-0.320344,0.263165,-1.9626,-1.22165,-1.19373,-0.311795 +-0.320036,0.265588,-1.95947,-1.22737,-1.19274,-0.318977 +-0.319364,0.26784,-1.95651,-1.23352,-1.19248,-0.325732 +-0.318249,0.269902,-1.95372,-1.24004,-1.19308,-0.332008 +-0.316642,0.271775,-1.95108,-1.24683,-1.19463,-0.337784 +-0.314553,0.273484,-1.94856,-1.25383,-1.19708,-0.343092 +-0.312049,0.275077,-1.94614,-1.26099,-1.20031,-0.34801 +-0.309207,0.2766,-1.94377,-1.26821,-1.20419,-0.35263 +-0.306084,0.278073,-1.94139,-1.27534,-1.20863,-0.357034 +-0.302696,0.279489,-1.93898,-1.28222,-1.21359,-0.361271 +-0.299024,0.280818,-1.93652,-1.28866,-1.21913,-0.365362 +-0.295045,0.282028,-1.93401,-1.29448,-1.22531,-0.369318 +-0.290772,0.283108,-1.93141,-1.29959,-1.23211,-0.373169 +-0.286264,0.284072,-1.92867,-1.30392,-1.23943,-0.37697 +-0.281584,0.284935,-1.92575,-1.30739,-1.24718,-0.380784 +-0.276766,0.285711,-1.9226,-1.30994,-1.2553,-0.384644 +-0.271787,0.286399,-1.91924,-1.31154,-1.26386,-0.388538 +-0.266598,0.286994,-1.91568,-1.31216,-1.27297,-0.392431 +-0.261177,0.287498,-1.91192,-1.3118,-1.28267,-0.396308 +-0.255555,0.287934,-1.90795,-1.31046,-1.29287,-0.400185 +-0.249789,0.288334,-1.90369,-1.30812,-1.30347,-0.404098 +-0.243928,0.288718,-1.89909,-1.30474,-1.31439,-0.408079 +-0.237986,0.289091,-1.89414,-1.30032,-1.32559,-0.412133 +-0.23194,0.289439,-1.88895,-1.29502,-1.33712,-0.416225 +-0.225764,0.289747,-1.88367,-1.28904,-1.34896,-0.420315 +-0.219441,0.290014,-1.87844,-1.2826,-1.36108,-0.423889 +-0.21298,0.290259,-1.87329,-1.27579,-1.37341,-0.425735 +-0.206414,0.290513,-1.86821,-1.26862,-1.38586,-0.424844 +-0.199795,0.290802,-1.86314,-1.26111,-1.39829,-0.420921 +-0.193166,0.291142,-1.85811,-1.25331,-1.41059,-0.414124 +-0.186569,0.29153,-1.85316,-1.24534,-1.42266,-0.404874 +-0.180044,0.291958,-1.84832,-1.23727,-1.43439,-0.393711 +-0.173615,0.292426,-1.84361,-1.22919,-1.44572,-0.381179 +-0.167289,0.292947,-1.83898,-1.22109,-1.45663,-0.36776 +-0.161061,0.293538,-1.83435,-1.21289,-1.46717,-0.353851 +-0.154941,0.294206,-1.82972,-1.20463,-1.47733,-0.339759 +-0.148964,0.294945,-1.82525,-1.19657,-1.48702,-0.325714 +-0.143184,0.295731,-1.82114,-1.18907,-1.49612,-0.311875 +-0.137639,0.296537,-1.81755,-1.18237,-1.50449,-0.298334 +-0.132316,0.297343,-1.81449,-1.17643,-1.51218,-0.285109 +-0.127185,0.298132,-1.81185,-1.17105,-1.51925,-0.27218 +-0.122233,0.29888,-1.80955,-1.16609,-1.52574,-0.259517 +-0.117493,0.29954,-1.80761,-1.16156,-1.53156,-0.247114 +-0.113038,0.300047,-1.80622,-1.15772,-1.53658,-0.23499 +-0.108938,0.300337,-1.80556,-1.15486,-1.54064,-0.223161 +-0.105216,0.300386,-1.80574,-1.15308,-1.54372,-0.211622 +-0.10183,0.300216,-1.80668,-1.15231,-1.54593,-0.200323 +-0.0986961,0.299886,-1.80818,-1.15233,-1.54746,-0.189194 +-0.0957336,0.299456,-1.81006,-1.1529,-1.54851,-0.178171 +-0.0928868,0.298962,-1.8122,-1.15392,-1.54921,-0.167208 +-0.090128,0.298417,-1.81461,-1.15545,-1.54969,-0.156283 +-0.0874502,0.297813,-1.81734,-1.15758,-1.55002,-0.145389 +-0.0848549,0.297142,-1.82046,-1.1604,-1.55027,-0.134527 +-0.0823397,0.296401,-1.82401,-1.16401,-1.55051,-0.123697 +-0.0798989,0.295594,-1.82799,-1.16838,-1.55078,-0.112899 +-0.0775187,0.294724,-1.83236,-1.17346,-1.55115,-0.102127 +-0.0751734,0.293805,-1.83707,-1.17911,-1.55167,-0.0913684 +-0.0728437,0.292847,-1.84205,-1.18521,-1.55241,-0.0806139 +-0.0705349,0.291857,-1.84725,-1.19163,-1.55339,-0.0698744 +-0.0682834,0.290841,-1.85266,-1.19829,-1.55459,-0.0591841 +-0.0661404,0.289804,-1.85827,-1.2051,-1.55596,-0.0485892 +-0.0641421,0.28876,-1.86404,-1.21195,-1.55748,-0.0381243 +-0.0622987,0.287732,-1.8699,-1.21868,-1.55911,-0.0278022 +-0.060596,0.286753,-1.87576,-1.22517,-1.56083,-0.0176145 +-0.0590091,0.285838,-1.88155,-1.23126,-1.56265,-0.00754448 +-0.0575238,0.284978,-1.88715,-1.23671,-1.56452,0.00241433 +-0.0561484,0.284131,-1.8925,-1.24131,-1.56637,0.012251 +-0.0549135,0.283245,-1.89759,-1.2449,-1.56809,0.0219388 +-0.0538625,0.282261,-1.90241,-1.24739,-1.56955,0.0314423 +-0.0530449,0.281126,-1.90697,-1.24871,-1.57065,0.0407211 +-0.0525111,0.279792,-1.91129,-1.24884,-1.57128,0.0497353 +-0.0522987,0.278218,-1.91544,-1.24786,-1.57138,0.0584572 +-0.0524246,0.276376,-1.91945,-1.24591,-1.57092,0.0668779 +-0.0528998,0.27425,-1.92341,-1.2432,-1.56992,0.0749942 +-0.0537441,0.271844,-1.92737,-1.23995,-1.56838,0.0827955 +-0.0549756,0.269182,-1.93137,-1.23639,-1.56632,0.090272 +-0.0565811,0.266311,-1.93544,-1.23269,-1.5638,0.0974374 +-0.0584858,0.263283,-1.93956,-1.22895,-1.56095,0.104353 +-0.0605605,0.260156,-1.9437,-1.22515,-1.55792,0.111123 +-0.0626774,0.256983,-1.94781,-1.22122,-1.55488,0.117847 +-0.0647786,0.253811,-1.95185,-1.21713,-1.55193,0.12457 +-0.0669052,0.25068,-1.95578,-1.2129,-1.54906,0.131258 +-0.0691601,0.247622,-1.95957,-1.20856,-1.54623,0.137824 +-0.0716391,0.244674,-1.96318,-1.20417,-1.54338,0.144189 +-0.0743919,0.241872,-1.96663,-1.19984,-1.54045,0.150316 +-0.077426,0.239241,-1.96992,-1.19566,-1.5374,0.156198 +-0.0807205,0.236781,-1.97307,-1.19161,-1.53415,0.161851 +-0.0842375,0.234473,-1.97611,-1.18768,-1.53069,0.167305 +-0.0879405,0.232291,-1.97911,-1.18391,-1.52699,0.172109 +-0.0918101,0.230215,-1.98206,-1.18033,-1.52307,0.175078 +-0.0958467,0.228243,-1.98495,-1.17698,-1.51893,0.175188 +-0.10006,0.226376,-1.98775,-1.1739,-1.51461,0.172108 +-0.104454,0.224612,-1.99041,-1.17109,-1.51013,0.165977 +-0.109015,0.222931,-1.99289,-1.1685,-1.50553,0.157208 +-0.113721,0.22131,-1.99519,-1.16607,-1.50085,0.146344 +-0.118552,0.219723,-1.99732,-1.16377,-1.49609,0.133935 +-0.123503,0.218153,-1.99932,-1.16158,-1.49121,0.120472 +-0.128569,0.216602,-2.0012,-1.15954,-1.48618,0.106359 +-0.133748,0.215102,-2.00298,-1.15771,-1.48094,0.0919081 +-0.139045,0.213705,-2.00465,-1.15619,-1.47544,0.0773348 +-0.144451,0.212471,-2.00619,-1.15507,-1.46964,0.0627868 +-0.149948,0.211449,-2.00759,-1.15444,-1.46358,0.0483592 +-0.155509,0.210673,-2.00885,-1.15439,-1.45727,0.0341059 +-0.161101,0.210163,-2.00998,-1.15499,-1.45076,0.0200577 +-0.166676,0.209928,-2.01097,-1.15628,-1.44413,0.00623843 +-0.172193,0.209964,-2.01183,-1.15829,-1.43742,-0.00733938 +-0.177644,0.210246,-2.01256,-1.16099,-1.43064,-0.0207019 +-0.18307,0.210718,-2.01317,-1.16417,-1.42371,-0.0339303 +-0.188536,0.211316,-2.01369,-1.16762,-1.41651,-0.0471241 +-0.194055,0.212004,-2.01413,-1.17121,-1.40901,-0.0603243 +-0.199525,0.212802,-2.01441,-1.1749,-1.40133,-0.0734528 +-0.204771,0.213766,-2.01441,-1.17871,-1.39372,-0.0863507 +-0.209672,0.214938,-2.01401,-1.18263,-1.38635,-0.0989094 +-0.214255,0.216297,-2.01321,-1.18657,-1.37919,-0.111164 +-0.218666,0.217774,-2.01209,-1.1903,-1.37205,-0.123269 +-0.223038,0.219298,-2.01071,-1.19364,-1.36477,-0.135365 +-0.227381,0.22084,-2.00911,-1.19655,-1.35739,-0.147465 +-0.231592,0.222418,-2.00726,-1.19911,-1.3501,-0.159466 +-0.235526,0.224064,-2.00513,-1.20145,-1.34314,-0.171221 +-0.239063,0.225801,-2.0027,-1.20367,-1.33673,-0.182607 +-0.242144,0.227635,-1.99997,-1.20588,-1.33096,-0.193563 +-0.244779,0.229556,-1.99698,-1.2081,-1.32587,-0.204097 +-0.24705,0.231545,-1.99378,-1.2103,-1.32136,-0.214286 +-0.249066,0.233587,-1.99042,-1.21248,-1.31723,-0.224232 +-0.250871,0.235668,-1.98695,-1.21468,-1.31344,-0.233971 +-0.252395,0.237777,-1.98339,-1.21692,-1.3101,-0.243441 +-0.253509,0.239912,-1.97974,-1.2193,-1.30742,-0.25252 +-0.254143,0.242086,-1.97604,-1.22195,-1.3055,-0.261136 +-0.254364,0.244329,-1.97231,-1.22498,-1.30425,-0.269335 +-0.254328,0.246672,-1.9686,-1.22844,-1.30342,-0.277256 +-0.254176,0.249124,-1.96494,-1.23236,-1.30279,-0.285021 +-0.253899,0.251659,-1.96138,-1.23678,-1.30235,-0.292624 +-0.253324,0.254212,-1.95792,-1.24159,-1.30239,-0.299929 +-0.252249,0.256721,-1.95456,-1.24671,-1.3033,-0.306774 +-0.250613,0.259165,-1.95128,-1.2521,-1.3052,-0.31311 +-0.24853,0.26156,-1.94804,-1.25772,-1.30789,-0.319042 +-0.246174,0.263932,-1.94481,-1.26346,-1.31111,-0.32473 +-0.243649,0.266295,-1.94154,-1.26924,-1.31474,-0.330275 +-0.240953,0.268621,-1.93822,-1.2749,-1.31879,-0.335698 +-0.238008,0.270857,-1.93484,-1.28019,-1.3234,-0.340968 +-0.234725,0.272956,-1.93134,-1.28488,-1.32872,-0.346045 +-0.231078,0.274908,-1.9277,-1.28884,-1.33481,-0.350925 +-0.227118,0.276727,-1.92389,-1.292,-1.34155,-0.355658 +-0.222922,0.278434,-1.91986,-1.2943,-1.34881,-0.360314 +-0.218521,0.280032,-1.91561,-1.29564,-1.35653,-0.364931 +-0.2139,0.281509,-1.91115,-1.29594,-1.36473,-0.369507 +-0.209028,0.282843,-1.9065,-1.29513,-1.37343,-0.37403 +-0.203893,0.284026,-1.90167,-1.29314,-1.38262,-0.378495 +-0.198518,0.285074,-1.89666,-1.28993,-1.39221,-0.382918 +-0.192947,0.28602,-1.89142,-1.28552,-1.40214,-0.387324 +-0.187227,0.286906,-1.88594,-1.27999,-1.41233,-0.391733 +-0.181406,0.287767,-1.88023,-1.27348,-1.42267,-0.395682 +-0.175522,0.288626,-1.87431,-1.26609,-1.4331,-0.397976 +-0.169596,0.289501,-1.86818,-1.25791,-1.44356,-0.397589 +-0.163644,0.290407,-1.86186,-1.24899,-1.45401,-0.394194 +-0.157684,0.29136,-1.85533,-1.23937,-1.46443,-0.387927 +-0.151729,0.292371,-1.84858,-1.22909,-1.47478,-0.379195 +-0.145803,0.293445,-1.8417,-1.2183,-1.48498,-0.36852 +-0.139928,0.29458,-1.83482,-1.20727,-1.49495,-0.356438 +-0.134118,0.295762,-1.82808,-1.19623,-1.5046,-0.343432 +-0.128394,0.296975,-1.82158,-1.18536,-1.51386,-0.329907 +-0.122773,0.298206,-1.81535,-1.17472,-1.52265,-0.316176 +-0.117278,0.299438,-1.80937,-1.16431,-1.53091,-0.302468 +-0.111939,0.30064,-1.80364,-1.15414,-1.53855,-0.288939 +-0.1068,0.301766,-1.79828,-1.14437,-1.54549,-0.275688 +-0.101911,0.302752,-1.79347,-1.1353,-1.55158,-0.262774 +-0.0973179,0.303544,-1.78941,-1.1272,-1.55671,-0.250222 +-0.0930302,0.304124,-1.78616,-1.1202,-1.56086,-0.238015 +-0.0890071,0.304524,-1.78361,-1.11418,-1.56415,-0.226094 +-0.0851796,0.304802,-1.78158,-1.10893,-1.56678,-0.214381 +-0.0814941,0.305011,-1.77992,-1.10428,-1.56894,-0.202808 +-0.0779282,0.305175,-1.77861,-1.10029,-1.57073,-0.191334 +-0.0744802,0.305291,-1.77777,-1.09716,-1.5722,-0.179936 +-0.0711473,0.305353,-1.77748,-1.09507,-1.57339,-0.168596 +-0.0679055,0.305364,-1.77776,-1.09408,-1.57441,-0.157289 +-0.0647144,0.305342,-1.77854,-1.09406,-1.57536,-0.145982 +-0.0615411,0.305303,-1.77974,-1.09494,-1.57633,-0.13465 +-0.0583696,0.305247,-1.78137,-1.09674,-1.57741,-0.123282 +-0.0552038,0.305156,-1.78353,-1.09964,-1.57864,-0.111882 +-0.0520673,0.304999,-1.78634,-1.10383,-1.58004,-0.10047 +-0.0489883,0.304745,-1.78989,-1.10942,-1.58157,-0.0890725 +-0.0459858,0.304376,-1.7942,-1.11638,-1.58323,-0.0777103 +-0.0430615,0.303891,-1.79919,-1.12457,-1.58499,-0.0663924 +-0.0401988,0.303311,-1.80474,-1.13375,-1.58686,-0.0551137 +-0.0373688,0.302677,-1.81065,-1.14358,-1.58885,-0.0438604 +-0.0345459,0.302034,-1.81675,-1.15376,-1.59095,-0.0326203 +-0.031729,0.301418,-1.82291,-1.16406,-1.59314,-0.0213988 +-0.0289553,0.30084,-1.82908,-1.17428,-1.59534,-0.010231 +-0.0262866,0.300293,-1.83523,-1.1843,-1.59745,0.000829681 +-0.0237749,0.299764,-1.84137,-1.19398,-1.59939,0.0117389 +-0.0214363,0.299252,-1.84744,-1.20319,-1.6011,0.0224825 +-0.0192532,0.298768,-1.85338,-1.21178,-1.60257,0.0330748 +-0.0172018,0.298321,-1.85913,-1.21966,-1.6038,0.0435358 +-0.015291,0.297888,-1.86464,-1.22672,-1.6048,0.0538597 +-0.0135732,0.297407,-1.86992,-1.23276,-1.60554,0.0640037 +-0.0121047,0.296803,-1.87495,-1.23755,-1.60605,0.0739217 +-0.0108942,0.296026,-1.87977,-1.24106,-1.6064,0.0836082 +-0.00989016,0.295063,-1.88441,-1.24341,-1.60672,0.0931088 +-0.00900833,0.29393,-1.88887,-1.24473,-1.60714,0.102496 +-0.00818043,0.292647,-1.89315,-1.2451,-1.60776,0.111828 +-0.00739667,0.291224,-1.89724,-1.24456,-1.60859,0.121114 +-0.00670966,0.289664,-1.90115,-1.24317,-1.60958,0.130313 +-0.00620356,0.287963,-1.90492,-1.24101,-1.61062,0.139357 +-0.0059665,0.286119,-1.90855,-1.23813,-1.61162,0.148173 +-0.00606615,0.284132,-1.91207,-1.23465,-1.61246,0.156705 +-0.00651383,0.282012,-1.91551,-1.23067,-1.61309,0.164945 +-0.00725193,0.27977,-1.91886,-1.22628,-1.61349,0.172939 +-0.00817999,0.277421,-1.92217,-1.22158,-1.61369,0.180769 +-0.0092026,0.274978,-1.92545,-1.21664,-1.61371,0.188516 +-0.010287,0.272447,-1.92872,-1.21156,-1.61356,0.196205 +-0.0114875,0.269826,-1.932,-1.20642,-1.61315,0.203791 +-0.0129094,0.267103,-1.93532,-1.20134,-1.61237,0.211185 +-0.0146499,0.264263,-1.93874,-1.19647,-1.61104,0.218308 +-0.0167699,0.261293,-1.94229,-1.1919,-1.60904,0.225106 +-0.0193104,0.258195,-1.94601,-1.18774,-1.60622,0.231065 +-0.0223157,0.254995,-1.9499,-1.18405,-1.60248,0.234943 +-0.0258242,0.251747,-1.95393,-1.18088,-1.59775,0.235679 +-0.0298213,0.248522,-1.95801,-1.1782,-1.59212,0.232959 +-0.0342059,0.245403,-1.96206,-1.1759,-1.5859,0.227001 +-0.0388193,0.242456,-1.96601,-1.17387,-1.57949,0.218342 +-0.0435163,0.239721,-1.96978,-1.17198,-1.57323,0.207623 +-0.0482183,0.237197,-1.97334,-1.17011,-1.56732,0.195445 +-0.0529128,0.234859,-1.97665,-1.16825,-1.56177,0.182307 +-0.0576213,0.232681,-1.97971,-1.16642,-1.55655,0.168595 +-0.0623719,0.230653,-1.9825,-1.16466,-1.55155,0.154594 +-0.0671842,0.228775,-1.98504,-1.16305,-1.54668,0.140506 +-0.072066,0.227045,-1.98733,-1.16163,-1.54187,0.126459 +-0.0770243,0.225446,-1.98947,-1.16042,-1.53703,0.11252 +-0.0820577,0.223957,-1.99149,-1.15945,-1.53212,0.0987129 +-0.0871426,0.222574,-1.99341,-1.15867,-1.52715,0.0850522 +-0.0922469,0.221321,-1.99517,-1.15807,-1.52217,0.0715431 +-0.09735,0.220237,-1.9967,-1.15766,-1.51719,0.0581767 +-0.102436,0.21934,-1.99794,-1.15747,-1.51222,0.0449375 +-0.107489,0.218627,-1.9989,-1.15752,-1.50728,0.0318133 +-0.112501,0.218068,-1.99962,-1.15786,-1.50236,0.0187893 +-0.117474,0.217632,-2.00015,-1.15853,-1.49744,0.0058465 +-0.122415,0.217303,-2.00056,-1.15957,-1.4925,-0.00703109 +-0.127323,0.217086,-2.00089,-1.16107,-1.48749,-0.0198464 +-0.132175,0.217015,-2.00116,-1.16319,-1.48241,-0.0325725 +-0.136922,0.217136,-2.00136,-1.16603,-1.4773,-0.0451585 +-0.141525,0.217485,-2.00147,-1.16964,-1.4722,-0.057564 +-0.145985,0.218067,-2.0015,-1.17397,-1.46714,-0.0697897 +-0.150341,0.218858,-2.00145,-1.17889,-1.46206,-0.0818734 +-0.154616,0.219829,-2.00133,-1.18427,-1.45695,-0.093842 +-0.158762,0.22097,-2.00108,-1.18993,-1.45187,-0.10566 +-0.16267,0.222299,-2.00061,-1.19575,-1.44696,-0.117237 +-0.166244,0.22383,-1.99981,-1.20162,-1.44232,-0.128489 +-0.169472,0.225543,-1.99864,-1.20739,-1.43793,-0.139417 +-0.172434,0.227378,-1.99711,-1.21285,-1.43372,-0.150106 +-0.175257,0.229267,-1.99526,-1.21778,-1.42955,-0.160684 +-0.17806,0.231163,-1.99311,-1.22204,-1.42525,-0.17127 +-0.180897,0.233055,-1.99069,-1.22561,-1.42075,-0.181916 +-0.183719,0.234951,-1.988,-1.22851,-1.41614,-0.192578 +-0.186376,0.236858,-1.98501,-1.23084,-1.41164,-0.203124 +-0.188665,0.238769,-1.98175,-1.23275,-1.40756,-0.213369 +-0.190406,0.240669,-1.97821,-1.23434,-1.40421,-0.223152 +-0.19154,0.242543,-1.97442,-1.23568,-1.40175,-0.232418 +-0.192169,0.244383,-1.97043,-1.23685,-1.40009,-0.24125 +-0.192464,0.246189,-1.96632,-1.23796,-1.399,-0.249788 +-0.192512,0.247969,-1.96218,-1.23916,-1.39836,-0.258097 +-0.192253,0.249731,-1.95807,-1.24059,-1.39826,-0.266124 +-0.191554,0.251489,-1.95401,-1.24233,-1.3989,-0.273756 +-0.190316,0.253271,-1.94999,-1.24439,-1.40041,-0.280918 +-0.188568,0.255123,-1.946,-1.24678,-1.40277,-0.287638 +-0.186463,0.257096,-1.94202,-1.24952,-1.40569,-0.294046 +-0.184164,0.259225,-1.93804,-1.25257,-1.40892,-0.300284 +-0.181766,0.261513,-1.93402,-1.25583,-1.41235,-0.306438 +-0.179297,0.263927,-1.92993,-1.25913,-1.41594,-0.312549 +-0.176737,0.266419,-1.92571,-1.26222,-1.41974,-0.318619 +-0.174043,0.268937,-1.92133,-1.26487,-1.42384,-0.324631 +-0.171173,0.271437,-1.91675,-1.2669,-1.42831,-0.330567 +-0.168087,0.273878,-1.91194,-1.26812,-1.4332,-0.336409 +-0.164744,0.276222,-1.90688,-1.26831,-1.43857,-0.342141 +-0.161102,0.278435,-1.90156,-1.26732,-1.44449,-0.347741 +-0.15714,0.280497,-1.89598,-1.26507,-1.45098,-0.353197 +-0.152873,0.282408,-1.89017,-1.26155,-1.458,-0.358518 +-0.148351,0.284185,-1.88408,-1.25677,-1.46546,-0.363736 +-0.143627,0.285861,-1.87768,-1.25069,-1.4733,-0.368406 +-0.138746,0.287468,-1.87094,-1.24335,-1.48144,-0.37135 +-0.133744,0.289031,-1.86389,-1.23485,-1.48982,-0.371555 +-0.128649,0.290562,-1.85661,-1.22538,-1.49832,-0.368699 +-0.123487,0.29206,-1.8492,-1.21513,-1.50684,-0.362923 +-0.118293,0.29352,-1.84173,-1.20426,-1.51524,-0.354643 +-0.113114,0.294931,-1.83428,-1.19292,-1.52339,-0.344404 +-0.108002,0.296291,-1.82688,-1.18123,-1.53113,-0.332771 +-0.102999,0.297605,-1.81952,-1.16927,-1.53839,-0.320254 +-0.0981211,0.298892,-1.81221,-1.15712,-1.54514,-0.30726 +-0.093373,0.300177,-1.80496,-1.14486,-1.55138,-0.294093 +-0.0887521,0.301475,-1.79778,-1.13261,-1.55713,-0.280958 +-0.0842552,0.302783,-1.79075,-1.12048,-1.56238,-0.267985 +-0.0798748,0.304088,-1.78397,-1.10868,-1.56716,-0.255232 +-0.0756022,0.305369,-1.77756,-1.09741,-1.57148,-0.242713 +-0.0714295,0.306608,-1.77161,-1.08686,-1.57536,-0.230413 +-0.0673467,0.307795,-1.76621,-1.07719,-1.57886,-0.218296 +-0.0633468,0.308926,-1.76139,-1.06849,-1.58201,-0.206327 +-0.059425,0.310006,-1.75714,-1.06074,-1.58485,-0.194471 +-0.0555663,0.31105,-1.75344,-1.05396,-1.58745,-0.182687 +-0.0517444,0.312067,-1.75028,-1.04819,-1.58991,-0.170931 +-0.0479383,0.313056,-1.74769,-1.04354,-1.59234,-0.159165 +-0.0441465,0.313983,-1.74578,-1.04018,-1.59477,-0.147373 +-0.0403823,0.3148,-1.74466,-1.03831,-1.59721,-0.135559 +-0.0366602,0.315458,-1.74441,-1.03806,-1.59965,-0.123732 +-0.0329859,0.315934,-1.74506,-1.03941,-1.60208,-0.111899 +-0.0293514,0.316236,-1.74649,-1.04218,-1.60452,-0.100062 +-0.0257395,0.31639,-1.74851,-1.04599,-1.607,-0.0882164 +-0.022135,0.316433,-1.75094,-1.05053,-1.60953,-0.0763605 +-0.0185258,0.316395,-1.75364,-1.05556,-1.61212,-0.0644924 +-0.0149053,0.316297,-1.75653,-1.06093,-1.61476,-0.0526133 +-0.0112904,0.31614,-1.75964,-1.06666,-1.61745,-0.0407412 +-0.00773291,0.315909,-1.7631,-1.07302,-1.6201,-0.0289206 +-0.00430046,0.315581,-1.76711,-1.08032,-1.62259,-0.0172087 +-0.00105062,0.315148,-1.77177,-1.08871,-1.62481,-0.00565471 +0.00198606,0.314627,-1.77704,-1.09805,-1.62668,0.00571266 +0.00480948,0.314061,-1.78275,-1.108,-1.62812,0.0168897 +0.00743271,0.3135,-1.78871,-1.11824,-1.62913,0.027885 +0.00985977,0.312987,-1.7948,-1.12858,-1.62972,0.0387012 +0.0120766,0.312542,-1.80099,-1.13893,-1.62989,0.0493275 +0.0140657,0.312167,-1.80729,-1.14932,-1.62968,0.0597508 +0.015836,0.311859,-1.8137,-1.15974,-1.62915,0.0699805 +0.0174341,0.311608,-1.82017,-1.1701,-1.62837,0.0800566 +0.0189177,0.311396,-1.82661,-1.18021,-1.62744,0.0900274 +0.020315,0.31119,-1.83297,-1.18995,-1.6264,0.0999177 +0.0216067,0.310948,-1.8393,-1.19935,-1.62529,0.109714 +0.0227359,0.310611,-1.84564,-1.20838,-1.6241,0.119371 +0.0236535,0.310113,-1.85195,-1.21675,-1.62279,0.128851 +0.024368,0.309415,-1.85812,-1.22406,-1.62132,0.13816 +0.0249407,0.308509,-1.864,-1.22995,-1.61969,0.14735 +0.0254246,0.307409,-1.86949,-1.23425,-1.61787,0.156464 +0.0258107,0.306134,-1.87457,-1.23695,-1.61589,0.165496 +0.0260258,0.304692,-1.8793,-1.23824,-1.6138,0.174387 +0.0259803,0.303075,-1.88379,-1.23836,-1.61168,0.183063 +0.0256249,0.301252,-1.8881,-1.23747,-1.60966,0.191484 +0.0249639,0.299189,-1.89226,-1.23569,-1.60787,0.199653 +0.0240359,0.296875,-1.8963,-1.23314,-1.60641,0.207599 +0.0228977,0.294333,-1.90023,-1.22998,-1.60534,0.215369 +0.0216115,0.291616,-1.90407,-1.22638,-1.60467,0.223012 +0.0202305,0.288783,-1.90782,-1.22246,-1.60439,0.23057 +0.0187916,0.285886,-1.91149,-1.21834,-1.6045,0.238074 +0.0173133,0.28296,-1.91508,-1.21413,-1.60497,0.245539 +0.0158047,0.280023,-1.91861,-1.2099,-1.60577,0.25297 +0.0142902,0.277089,-1.9221,-1.20573,-1.60686,0.259908 +0.012826,0.274167,-1.92557,-1.20165,-1.60818,0.265196 +0.0114998,0.271273,-1.92906,-1.19766,-1.60968,0.267879 +0.0103978,0.268424,-1.93259,-1.19374,-1.61128,0.267706 +0.00954285,0.26563,-1.93616,-1.18994,-1.61298,0.264833 +0.00885616,0.262891,-1.93976,-1.18627,-1.61478,0.259599 +0.00819322,0.260186,-1.94335,-1.18278,-1.61666,0.252404 +0.00743632,0.257488,-1.94693,-1.17948,-1.61858,0.243685 +0.00652462,0.254782,-1.95053,-1.17642,-1.62047,0.233875 +0.00538384,0.252078,-1.95413,-1.17365,-1.62218,0.223313 +0.0038794,0.249415,-1.95767,-1.17126,-1.62349,0.21219 +0.00185015,0.246834,-1.9611,-1.16931,-1.62408,0.20058 +-0.000824519,0.244369,-1.96438,-1.16788,-1.62365,0.188515 +-0.00418074,0.242038,-1.96755,-1.16697,-1.62198,0.176035 +-0.00818676,0.239852,-1.97066,-1.16656,-1.61897,0.16319 +-0.0127729,0.237815,-1.97373,-1.16657,-1.61463,0.150033 +-0.0178353,0.235935,-1.97676,-1.16686,-1.60912,0.136626 +-0.0232575,0.23422,-1.97967,-1.1672,-1.60269,0.123032 +-0.02893,0.232675,-1.98237,-1.1674,-1.59563,0.109308 +-0.0347525,0.2313,-1.98477,-1.16734,-1.58821,0.09551 +-0.0406358,0.230087,-1.98682,-1.16698,-1.58068,0.0816884 +-0.0464968,0.229021,-1.98844,-1.1663,-1.57324,0.0678977 +-0.0522684,0.228082,-1.98962,-1.16533,-1.56606,0.0541857 +-0.0579108,0.227257,-1.99038,-1.1642,-1.55922,0.0405829 +-0.0634001,0.226543,-1.99075,-1.16304,-1.55276,0.0271111 +-0.0687167,0.225954,-1.99082,-1.16203,-1.54669,0.0137917 +-0.0738336,0.225517,-1.99064,-1.1614,-1.54104,0.00065761 +-0.078714,0.225263,-1.99026,-1.16137,-1.5358,-0.0122464 +-0.0833352,0.225211,-1.98973,-1.16211,-1.53096,-0.0248889 +-0.0877162,0.225357,-1.98912,-1.16371,-1.52647,-0.0372786 +-0.0919196,0.225672,-1.98852,-1.16618,-1.52225,-0.0494681 +-0.0960122,0.226125,-1.98802,-1.16945,-1.5182,-0.0615164 +-0.100009,0.226723,-1.98764,-1.17351,-1.51428,-0.0734342 +-0.103858,0.227505,-1.98735,-1.1784,-1.51055,-0.085171 +-0.107485,0.228521,-1.98705,-1.1841,-1.50705,-0.0966576 +-0.110844,0.229789,-1.98667,-1.19049,-1.50382,-0.107854 +-0.113939,0.231286,-1.98613,-1.19737,-1.50083,-0.118773 +-0.11683,0.232959,-1.98541,-1.20448,-1.49798,-0.129477 +-0.119596,0.234752,-1.98449,-1.21156,-1.49516,-0.140049 +-0.122303,0.236616,-1.98332,-1.2183,-1.49226,-0.15056 +-0.124956,0.238529,-1.98185,-1.22446,-1.48926,-0.161032 +-0.127462,0.240495,-1.97999,-1.22986,-1.48627,-0.171398 +-0.129648,0.242534,-1.97766,-1.23443,-1.48353,-0.18152 +-0.131348,0.244662,-1.97481,-1.23818,-1.48126,-0.19126 +-0.132504,0.24686,-1.97147,-1.24112,-1.47955,-0.200571 +-0.133193,0.249067,-1.96768,-1.24331,-1.47832,-0.20952 +-0.133575,0.251199,-1.96356,-1.24478,-1.47741,-0.218237 +-0.133795,0.253184,-1.95922,-1.24559,-1.47666,-0.226842 +-0.133927,0.254985,-1.95475,-1.24586,-1.47601,-0.235392 +-0.133961,0.256599,-1.95022,-1.24578,-1.4755,-0.243872 +-0.133848,0.258055,-1.94569,-1.24551,-1.47521,-0.252234 +-0.133543,0.259399,-1.94117,-1.24522,-1.47523,-0.260434 +-0.133013,0.260689,-1.93669,-1.24505,-1.47561,-0.268439 +-0.132209,0.26199,-1.93223,-1.24507,-1.47644,-0.276212 +-0.131061,0.26337,-1.92779,-1.2453,-1.4778,-0.283699 +-0.129488,0.264894,-1.92331,-1.24564,-1.47981,-0.290847 +-0.12745,0.266605,-1.91874,-1.24593,-1.48249,-0.29764 +-0.124992,0.268523,-1.91399,-1.24597,-1.48581,-0.304129 +-0.122233,0.270637,-1.90899,-1.24556,-1.48965,-0.310418 +-0.11931,0.272916,-1.90368,-1.24455,-1.49384,-0.316622 +-0.116321,0.275307,-1.89802,-1.24279,-1.49829,-0.322824 +-0.113284,0.277748,-1.892,-1.24012,-1.50294,-0.329043 +-0.110155,0.280172,-1.88562,-1.23635,-1.50781,-0.335253 +-0.106871,0.282522,-1.8789,-1.23134,-1.51292,-0.340926 +-0.103391,0.284761,-1.87191,-1.22509,-1.51823,-0.344822 +-0.099709,0.286873,-1.86475,-1.21775,-1.52368,-0.345899 +-0.0958511,0.28886,-1.85749,-1.20945,-1.52917,-0.343839 +-0.091867,0.290745,-1.8501,-1.20026,-1.53465,-0.33881 +-0.0878106,0.29256,-1.84252,-1.1902,-1.54009,-0.33125 +-0.0837296,0.294334,-1.83469,-1.17926,-1.54549,-0.32171 +-0.0796558,0.296082,-1.82662,-1.16756,-1.5508,-0.310744 +-0.0755934,0.297804,-1.81844,-1.15534,-1.55599,-0.298828 +-0.0715271,0.299497,-1.81029,-1.14288,-1.56104,-0.286339 +-0.0674427,0.301162,-1.8023,-1.13043,-1.56591,-0.273561 +-0.0633343,0.302817,-1.79451,-1.11811,-1.57061,-0.260697 +-0.0591984,0.304489,-1.78689,-1.10596,-1.57517,-0.247878 +-0.0550351,0.306203,-1.77946,-1.09405,-1.57965,-0.23517 +-0.0508521,0.307959,-1.77231,-1.0826,-1.58403,-0.222601 +-0.0466518,0.309745,-1.76552,-1.0718,-1.58834,-0.210162 +-0.0424277,0.311544,-1.75918,-1.06176,-1.59261,-0.197824 +-0.0381791,0.313346,-1.75325,-1.05245,-1.59684,-0.185554 +-0.0339123,0.315152,-1.74766,-1.04375,-1.60105,-0.173327 +-0.0296334,0.316955,-1.7423,-1.03545,-1.60524,-0.161121 +-0.0253533,0.318725,-1.73715,-1.02749,-1.60942,-0.148923 +-0.0210919,0.320393,-1.73239,-1.02014,-1.61354,-0.136729 +-0.0168659,0.321883,-1.7283,-1.0139,-1.61756,-0.124534 +-0.0126786,0.32315,-1.72508,-1.00908,-1.62147,-0.112333 +-0.00852496,0.324208,-1.72272,-1.0057,-1.62529,-0.100119 +-0.00439762,0.325113,-1.72107,-1.00352,-1.62903,-0.0878927 +-0.000298064,0.325929,-1.71994,-1.00224,-1.63268,-0.0756604 +0.00375206,0.32668,-1.71926,-1.00176,-1.6362,-0.0634473 +0.00771849,0.327353,-1.71907,-1.00214,-1.63947,-0.0512885 +0.0115653,0.327911,-1.71946,-1.0035,-1.64243,-0.0392202 +0.01526,0.328321,-1.72051,-1.00595,-1.64496,-0.0272754 +0.0187847,0.328578,-1.72222,-1.00948,-1.64701,-0.0154745 +0.0221342,0.328692,-1.72452,-1.01399,-1.64855,-0.00382643 +0.0253063,0.32868,-1.72737,-1.0194,-1.64959,0.00766339 +0.0282915,0.328551,-1.73076,-1.02571,-1.65012,0.0189838 +0.0310763,0.328307,-1.7347,-1.03291,-1.65014,0.0301213 +0.0336639,0.327965,-1.73914,-1.04089,-1.64969,0.0410774 +0.0360774,0.327558,-1.74398,-1.04945,-1.64884,0.0518716 +0.0383516,0.327132,-1.74903,-1.05827,-1.64765,0.0625342 +0.040511,0.326718,-1.75419,-1.06712,-1.64619,0.0730868 +0.0425519,0.326315,-1.75943,-1.076,-1.64449,0.0835273 +0.0444459,0.325885,-1.76489,-1.08507,-1.64259,0.0938321 +0.0461579,0.32538,-1.77068,-1.09449,-1.64049,0.103972 +0.0476676,0.324763,-1.77685,-1.10426,-1.63823,0.113932 +0.0489776,0.324022,-1.78337,-1.11424,-1.63579,0.123716 +0.0501078,0.323168,-1.7901,-1.1242,-1.63315,0.133343 +0.0510812,0.322212,-1.79689,-1.13384,-1.6303,0.142837 +0.051909,0.321155,-1.80367,-1.14304,-1.62719,0.152208 +0.052584,0.319982,-1.81045,-1.1518,-1.62379,0.161452 +0.053081,0.318668,-1.81723,-1.1601,-1.62006,0.170549 +0.0533667,0.317179,-1.82399,-1.1678,-1.616,0.179475 +0.0534186,0.31549,-1.83068,-1.17469,-1.61164,0.188213 +0.0532398,0.313598,-1.83724,-1.18056,-1.60706,0.196769 +0.0528722,0.311532,-1.84358,-1.18529,-1.60238,0.20518 +0.0523823,0.309345,-1.84965,-1.18883,-1.59771,0.213499 +0.0518317,0.307092,-1.8554,-1.19123,-1.59312,0.221778 +0.0512574,0.304805,-1.86085,-1.19265,-1.5887,0.230046 +0.0506707,0.30249,-1.86606,-1.1933,-1.58455,0.238309 +0.050068,0.300143,-1.87113,-1.19342,-1.58077,0.246563 +0.0494482,0.297771,-1.87611,-1.19322,-1.57743,0.254804 +0.0488184,0.295408,-1.88107,-1.19294,-1.57458,0.263036 +0.0481872,0.293103,-1.88604,-1.19274,-1.57222,0.271264 +0.0475624,0.290914,-1.89101,-1.19276,-1.57034,0.279496 +0.0469448,0.288892,-1.89599,-1.19308,-1.56895,0.287248 +0.0463225,0.287074,-1.90095,-1.19376,-1.56805,0.293308 +0.0456773,0.285473,-1.90588,-1.1948,-1.56765,0.296632 +0.0449893,0.284068,-1.91076,-1.19613,-1.56773,0.296876 +0.0442418,0.282815,-1.91559,-1.19771,-1.5683,0.294165 +0.0434228,0.281645,-1.92035,-1.19942,-1.56935,0.288891 +0.0425179,0.280472,-1.92501,-1.20111,-1.57087,0.281565 +0.0415175,0.279201,-1.92954,-1.2026,-1.57283,0.272714 +0.0404427,0.277743,-1.93393,-1.20371,-1.57522,0.262842 +0.0393564,0.276027,-1.93821,-1.20439,-1.57798,0.252404 +0.0383408,0.274025,-1.94246,-1.20466,-1.58103,0.241774 +0.0374427,0.271781,-1.94669,-1.2046,-1.58434,0.231207 +0.0366261,0.269409,-1.95084,-1.2042,-1.58786,0.220805 +0.0357818,0.267063,-1.95474,-1.20344,-1.59152,0.210546 +0.0347809,0.264874,-1.95824,-1.20226,-1.59526,0.200344 +0.0335312,0.26291,-1.96127,-1.20064,-1.59901,0.190113 +0.0320031,0.261162,-1.96378,-1.19858,-1.60272,0.179802 +0.0302156,0.259565,-1.96585,-1.19612,-1.60638,0.169394 +0.0282114,0.258031,-1.96753,-1.19334,-1.60992,0.15889 +0.0260342,0.25648,-1.96887,-1.19029,-1.61332,0.148296 +0.023719,0.254858,-1.9699,-1.18706,-1.6165,0.137616 +0.0212925,0.253136,-1.97067,-1.18376,-1.61944,0.126853 +0.0187698,0.251304,-1.97125,-1.18054,-1.6221,0.116008 +0.0161451,0.249359,-1.97179,-1.1775,-1.62444,0.105066 +0.0133851,0.247321,-1.97241,-1.17477,-1.62633,0.0939935 +0.0104424,0.245248,-1.97314,-1.17244,-1.62762,0.0827492 +0.00726999,0.243229,-1.97393,-1.17057,-1.62817,0.0712941 +0.00381036,0.241349,-1.9747,-1.16914,-1.62781,0.059581 +-2.28868e-06,0.239653,-1.97543,-1.16813,-1.62637,0.0475561 +-0.00421731,0.238158,-1.97615,-1.1675,-1.62371,0.0351793 +-0.00883833,0.236893,-1.97682,-1.16721,-1.61977,0.0224501 +-0.0138104,0.235916,-1.97736,-1.16721,-1.6146,0.00942043 +-0.0190308,0.235292,-1.97763,-1.16748,-1.60838,-0.00381619 +-0.0243782,0.235051,-1.97753,-1.16797,-1.60138,-0.0171512 +-0.0297567,0.23515,-1.97707,-1.16863,-1.5939,-0.0304997 +-0.0351062,0.235492,-1.97633,-1.16944,-1.58624,-0.0438088 +-0.0403727,0.235967,-1.97543,-1.17038,-1.57866,-0.0570316 +-0.0454956,0.236488,-1.97445,-1.17149,-1.57143,-0.0701128 +-0.0504106,0.237003,-1.97347,-1.17291,-1.56475,-0.0829915 +-0.0550418,0.237502,-1.97251,-1.17475,-1.55879,-0.0955954 +-0.0593112,0.238013,-1.97155,-1.17716,-1.55364,-0.107851 +-0.0631661,0.238586,-1.97057,-1.18025,-1.54934,-0.119707 +-0.0665905,0.239276,-1.96954,-1.18409,-1.54587,-0.131147 +-0.0696088,0.240132,-1.96845,-1.18867,-1.54315,-0.142192 +-0.0722625,0.241199,-1.96727,-1.19389,-1.54107,-0.152883 +-0.074568,0.242528,-1.96594,-1.19964,-1.53956,-0.163242 +-0.0765044,0.244171,-1.9644,-1.20576,-1.53858,-0.173258 +-0.078039,0.246158,-1.96256,-1.21208,-1.53808,-0.182916 +-0.0791662,0.248476,-1.96037,-1.21838,-1.53804,-0.19222 +-0.0799327,0.251058,-1.95782,-1.2245,-1.53835,-0.201219 +-0.0804203,0.253798,-1.95493,-1.23027,-1.53888,-0.209988 +-0.0807073,0.256581,-1.95173,-1.2355,-1.53952,-0.2186 +-0.0808459,0.2593,-1.94826,-1.24003,-1.54016,-0.227106 +-0.0808619,0.261879,-1.94453,-1.24376,-1.54075,-0.235534 +-0.080762,0.264272,-1.94055,-1.24663,-1.54125,-0.243891 +-0.0805387,0.266467,-1.93637,-1.24867,-1.54167,-0.252173 +-0.0801755,0.268477,-1.93198,-1.2499,-1.54206,-0.260369 +-0.0796494,0.270334,-1.9274,-1.25038,-1.54249,-0.268459 +-0.0789265,0.272081,-1.92263,-1.25018,-1.54303,-0.276417 +-0.0779689,0.273762,-1.91768,-1.24936,-1.54376,-0.284211 +-0.0767553,0.275419,-1.91256,-1.24796,-1.54474,-0.291826 +-0.0752915,0.277077,-1.90726,-1.24601,-1.54598,-0.299265 +-0.0736037,0.278754,-1.90177,-1.24349,-1.54749,-0.306551 +-0.0717355,0.280457,-1.89604,-1.24031,-1.54926,-0.31324 +-0.0697457,0.28219,-1.89005,-1.2364,-1.55124,-0.318177 +-0.0676874,0.283956,-1.88374,-1.23164,-1.55338,-0.320379 +-0.0655834,0.285758,-1.87707,-1.22595,-1.55567,-0.319539 +-0.0634073,0.287599,-1.87005,-1.21926,-1.55815,-0.315773 +-0.061087,0.289479,-1.86268,-1.21156,-1.5609,-0.309426 +-0.0585414,0.291394,-1.85503,-1.20291,-1.564,-0.300948 +-0.0557169,0.293341,-1.84718,-1.19347,-1.56747,-0.290825 +-0.052599,0.295313,-1.83923,-1.18342,-1.5713,-0.279522 +-0.0492124,0.297305,-1.83125,-1.17292,-1.57542,-0.26745 +-0.0456114,0.299318,-1.82323,-1.16201,-1.57974,-0.254952 +-0.0418618,0.301362,-1.81514,-1.15066,-1.58419,-0.242293 +-0.0380282,0.303449,-1.80688,-1.13873,-1.58869,-0.229656 +-0.0341587,0.30559,-1.79839,-1.12618,-1.59319,-0.217148 +-0.0302704,0.307779,-1.7897,-1.11308,-1.59769,-0.204804 +-0.0263532,0.309993,-1.78094,-1.09965,-1.60219,-0.192602 +-0.022387,0.3122,-1.77227,-1.08618,-1.60671,-0.180493 +-0.0183546,0.314373,-1.76385,-1.07297,-1.61125,-0.168424 +-0.0142488,0.316501,-1.75577,-1.06023,-1.61582,-0.156352 +-0.0100722,0.318591,-1.74806,-1.04802,-1.62044,-0.144247 +-0.00583762,0.320664,-1.74067,-1.0363,-1.62509,-0.132094 +-0.0015697,0.322745,-1.73354,-1.02501,-1.62974,-0.119895 +0.00269803,0.324858,-1.72664,-1.01414,-1.63431,-0.107668 +0.00692865,0.327006,-1.71998,-1.00372,-1.63869,-0.0954358 +0.0110871,0.329173,-1.71362,-0.993867,-1.64278,-0.0832265 +0.0151406,0.331311,-1.70768,-0.984768,-1.64647,-0.0710688 +0.0190642,0.333359,-1.7023,-0.976633,-1.64966,-0.0589873 +0.0228428,0.335255,-1.69759,-0.969602,-1.6523,-0.0470003 +0.0264614,0.336939,-1.69363,-0.963781,-1.65433,-0.0351268 +0.0299084,0.338362,-1.69053,-0.959314,-1.65573,-0.0233839 +0.0331823,0.339504,-1.68833,-0.956301,-1.65651,-0.011779 +0.0362891,0.340368,-1.68706,-0.954807,-1.65672,-0.000313196 +0.0392356,0.340985,-1.68672,-0.954865,-1.65644,0.011014 +0.0420368,0.34141,-1.68723,-0.956327,-1.65572,0.0222119 +0.0447219,0.341723,-1.68836,-0.958851,-1.65468,0.0333035 +0.0473236,0.342006,-1.68987,-0.962044,-1.65337,0.0443163 +0.049866,0.342319,-1.69155,-0.965591,-1.65186,0.0552708 +0.0523505,0.342664,-1.69335,-0.96939,-1.65017,0.0661676 +0.0547481,0.342974,-1.69548,-0.973737,-1.64831,0.0769787 +0.0570076,0.343136,-1.6983,-0.979203,-1.64627,0.0876545 +0.0590892,0.343057,-1.70208,-0.986186,-1.64401,0.0981569 +0.0610001,0.34272,-1.70681,-0.994574,-1.64156,0.108492 +0.0627927,0.34218,-1.71215,-1.0038,-1.63894,0.11871 +0.0645314,0.341525,-1.7177,-1.01318,-1.63622,0.128872 +0.0662572,0.340813,-1.7232,-1.0223,-1.63341,0.139017 +0.0679701,0.340055,-1.72863,-1.03112,-1.63055,0.149145 +0.0696403,0.339219,-1.73413,-1.03987,-1.62765,0.15923 +0.0712294,0.338263,-1.73989,-1.04881,-1.62473,0.169236 +0.0727068,0.337164,-1.74597,-1.05795,-1.62178,0.179138 +0.0740601,0.335921,-1.75232,-1.06715,-1.61881,0.18893 +0.0752922,0.334556,-1.75884,-1.07615,-1.61584,0.198618 +0.0764103,0.333095,-1.76539,-1.0847,-1.61286,0.208213 +0.0774183,0.331568,-1.77188,-1.09262,-1.60989,0.217723 +0.0783118,0.329997,-1.77827,-1.09984,-1.60691,0.227146 +0.0790675,0.32839,-1.78455,-1.10638,-1.60392,0.236463 +0.0796478,0.326743,-1.79076,-1.11231,-1.60086,0.245643 +0.0800343,0.325051,-1.79694,-1.11772,-1.59772,0.25467 +0.0802626,0.323326,-1.80308,-1.12271,-1.59453,0.263572 +0.0804166,0.321594,-1.80915,-1.12733,-1.59134,0.27242 +0.0805823,0.319877,-1.81512,-1.13164,-1.58824,0.281284 +0.0807857,0.318166,-1.821,-1.13575,-1.58527,0.290183 +0.0809513,0.316409,-1.82689,-1.13984,-1.5824,0.299052 +0.0809464,0.314531,-1.83295,-1.14413,-1.57955,0.307773 +0.0806889,0.312475,-1.83926,-1.14869,-1.57671,0.315796 +0.0802087,0.310232,-1.84578,-1.15341,-1.57396,0.321943 +0.0796223,0.307839,-1.85244,-1.15815,-1.57142,0.325286 +0.0790402,0.305346,-1.85913,-1.1628,-1.56921,0.325594 +0.0784918,0.302792,-1.86582,-1.16733,-1.56736,0.323029 +0.0779281,0.300197,-1.87248,-1.17178,-1.56586,0.317951 +0.0772755,0.297573,-1.87913,-1.17618,-1.56466,0.310821 +0.0764946,0.294941,-1.88579,-1.18063,-1.5637,0.302141 +0.0755965,0.292335,-1.89249,-1.18525,-1.56295,0.292403 +0.0746058,0.28979,-1.89924,-1.19011,-1.56237,0.282029 +0.0735112,0.287326,-1.90601,-1.1952,-1.56193,0.271315 +0.0722515,0.284946,-1.91271,-1.20042,-1.56156,0.260425 +0.0707612,0.28265,-1.91927,-1.2056,-1.56121,0.24944 +0.069041,0.280461,-1.92561,-1.21062,-1.5609,0.238431 +0.0671741,0.278428,-1.93169,-1.21542,-1.56082,0.227496 +0.0652802,0.276607,-1.93745,-1.21995,-1.56121,0.216728 +0.0634532,0.275035,-1.94284,-1.22411,-1.56226,0.206182 +0.061729,0.273707,-1.94775,-1.22772,-1.56409,0.195857 +0.0600934,0.272574,-1.95214,-1.23062,-1.56665,0.185708 +0.0585095,0.271547,-1.95606,-1.23275,-1.5698,0.17567 +0.0569504,0.27052,-1.95959,-1.23408,-1.57336,0.165697 +0.0553991,0.26941,-1.9628,-1.23462,-1.57718,0.155751 +0.0538205,0.268182,-1.96568,-1.23432,-1.58114,0.145788 +0.0521647,0.266853,-1.96818,-1.23314,-1.58509,0.135756 +0.050405,0.265477,-1.97026,-1.23114,-1.58898,0.125627 +0.0485539,0.264113,-1.97199,-1.2285,-1.59281,0.115406 +0.0466435,0.262815,-1.97347,-1.22547,-1.59658,0.105119 +0.0446846,0.261626,-1.97476,-1.22221,-1.60027,0.0947765 +0.0426421,0.260576,-1.9758,-1.21872,-1.60378,0.0843477 +0.0404574,0.259668,-1.97645,-1.21492,-1.60697,0.0737836 +0.0380902,0.258871,-1.97667,-1.21077,-1.60978,0.0630505 +0.0355397,0.258112,-1.9765,-1.20633,-1.61223,0.0521486 +0.032842,0.257299,-1.97604,-1.2017,-1.61441,0.0411098 +0.0300509,0.256358,-1.97542,-1.19703,-1.61642,0.0299816 +0.0272178,0.255266,-1.97469,-1.19242,-1.61829,0.0188097 +0.0243901,0.254063,-1.97383,-1.18802,-1.62001,0.00763706 +0.0216119,0.252827,-1.97277,-1.18395,-1.62156,-0.00349589 +0.0189134,0.251639,-1.97148,-1.18032,-1.62292,-0.0145602 +0.0162976,0.250551,-1.96993,-1.1772,-1.62407,-0.0255513 +0.0137376,0.249594,-1.96818,-1.1746,-1.62497,-0.0364906 +0.0111925,0.248809,-1.96628,-1.17252,-1.62559,-0.0474125 +0.00861604,0.248265,-1.96426,-1.17098,-1.62586,-0.0583563 +0.00596753,0.248052,-1.96216,-1.17,-1.62572,-0.0693563 +0.00323476,0.248252,-1.95997,-1.16965,-1.62511,-0.0804216 +0.000443845,0.248913,-1.95771,-1.17,-1.62404,-0.091527 +-0.00235884,0.250026,-1.95539,-1.17112,-1.62255,-0.10263 +-0.00514791,0.251509,-1.95304,-1.17299,-1.6207,-0.113705 +-0.00793451,0.253222,-1.95071,-1.17553,-1.61852,-0.124761 +-0.0107366,0.255013,-1.94849,-1.17866,-1.61605,-0.135811 +-0.0135418,0.256769,-1.94638,-1.18227,-1.61333,-0.146842 +-0.0162996,0.258445,-1.94437,-1.18627,-1.61045,-0.157812 +-0.0189475,0.260043,-1.94239,-1.19056,-1.60747,-0.168666 +-0.0214535,0.261584,-1.94037,-1.19502,-1.60445,-0.179379 +-0.0238235,0.263092,-1.93827,-1.19953,-1.60143,-0.189958 +-0.0260533,0.264601,-1.93608,-1.20406,-1.59852,-0.200403 +-0.0280919,0.266166,-1.93375,-1.20854,-1.59587,-0.210673 +-0.0298432,0.267851,-1.93123,-1.21296,-1.59363,-0.220691 +-0.0312028,0.269715,-1.92847,-1.2173,-1.59196,-0.230375 +-0.0321254,0.271766,-1.92545,-1.22154,-1.59089,-0.239688 +-0.0326465,0.273958,-1.92218,-1.22566,-1.59035,-0.248663 +-0.0328418,0.276213,-1.91873,-1.22963,-1.59026,-0.257366 +-0.0327713,0.278455,-1.91514,-1.23341,-1.59052,-0.265849 +-0.0324525,0.280632,-1.91143,-1.23687,-1.59111,-0.274132 +-0.031872,0.282716,-1.90758,-1.23985,-1.59197,-0.281729 +-0.0310158,0.284701,-1.90354,-1.24219,-1.59306,-0.287431 +-0.0298982,0.286594,-1.89927,-1.24373,-1.59431,-0.290229 +-0.0285657,0.288399,-1.89473,-1.24428,-1.59563,-0.289838 +-0.0270786,0.290128,-1.88984,-1.24366,-1.59696,-0.286449 +-0.0254972,0.291795,-1.88455,-1.24171,-1.59825,-0.280516 +-0.0238695,0.293419,-1.8788,-1.23835,-1.5995,-0.272601 +-0.0222169,0.295022,-1.87257,-1.23354,-1.60073,-0.263256 +-0.0205224,0.296626,-1.86587,-1.22732,-1.60199,-0.25295 +-0.0187318,0.29825,-1.85872,-1.21976,-1.60338,-0.242036 +-0.0167739,0.299911,-1.85117,-1.21095,-1.60498,-0.230757 +-0.0145895,0.301618,-1.84323,-1.20092,-1.60691,-0.219274 +-0.0121538,0.303368,-1.83487,-1.18962,-1.60923,-0.207697 +-0.00947262,0.305162,-1.82611,-1.1771,-1.61195,-0.196095 +-0.00655923,0.307005,-1.81701,-1.1635,-1.61506,-0.184495 +-0.00342586,0.30891,-1.80764,-1.14907,-1.61855,-0.172893 +-8.73469e-05,0.310894,-1.79815,-1.13413,-1.62233,-0.161267 +0.00343101,0.312972,-1.78866,-1.11897,-1.62633,-0.1496 +0.00708678,0.315155,-1.77921,-1.10376,-1.63043,-0.137887 +0.0108232,0.317451,-1.7698,-1.08859,-1.63452,-0.12614 +0.0145777,0.319856,-1.76042,-1.07342,-1.63849,-0.114385 +0.018295,0.322351,-1.75103,-1.05823,-1.64221,-0.102647 +0.0219379,0.324904,-1.74174,-1.0432,-1.64557,-0.0909439 +0.0254825,0.327467,-1.73269,-1.0286,-1.64846,-0.0792881 +0.0289125,0.32999,-1.72406,-1.01474,-1.65081,-0.0676911 +0.0322229,0.332422,-1.71601,-1.0019,-1.65256,-0.0561587 +0.0354192,0.334731,-1.70867,-0.990294,-1.65374,-0.04469 +0.0385116,0.33691,-1.70202,-0.979904,-1.65439,-0.0332815 +0.04151,0.338988,-1.69593,-0.970488,-1.6546,-0.0219296 +0.0444189,0.341015,-1.69021,-0.961746,-1.65443,-0.0106351 +0.0472406,0.343034,-1.68472,-0.953454,-1.65391,0.000599802 +0.0499853,0.345057,-1.67943,-0.945539,-1.65313,0.0117801 +0.052667,0.347053,-1.67448,-0.938265,-1.65212,0.0229133 +0.055289,0.348944,-1.67019,-0.932169,-1.6509,0.0339958 +0.0578397,0.350648,-1.66681,-0.927656,-1.6494,0.0450117 +0.0603046,0.3521,-1.66445,-0.924848,-1.64758,0.0559442 +0.0626803,0.35327,-1.66308,-0.923657,-1.64541,0.0667882 +0.0649755,0.354157,-1.66255,-0.923788,-1.64294,0.0775514 +0.0671984,0.354785,-1.66267,-0.924902,-1.64017,0.0882416 +0.0693495,0.355186,-1.66327,-0.926738,-1.6371,0.0988596 +0.0714286,0.355388,-1.66428,-0.929153,-1.63374,0.109405 +0.0734339,0.355402,-1.6657,-0.932195,-1.63012,0.119876 +0.0753591,0.355211,-1.66771,-0.936122,-1.62631,0.130262 +0.0771955,0.354789,-1.6705,-0.941271,-1.62239,0.140553 +0.0789355,0.354129,-1.67421,-0.947852,-1.6184,0.150739 +0.0805829,0.353261,-1.67879,-0.955797,-1.61436,0.160822 +0.0821537,0.352251,-1.68404,-0.964818,-1.61024,0.17082 +0.0836587,0.351168,-1.68974,-0.974561,-1.60601,0.180745 +0.085101,0.350051,-1.69571,-0.98477,-1.60166,0.190604 +0.0864868,0.348903,-1.70193,-0.995346,-1.59726,0.200402 +0.0878162,0.3477,-1.70844,-1.00625,-1.59296,0.210141 +0.0890801,0.346419,-1.71526,-1.01745,-1.58882,0.219814 +0.0902804,0.34506,-1.72236,-1.02882,-1.58487,0.229425 +0.0914333,0.343653,-1.7296,-1.0401,-1.58112,0.238993 +0.0925556,0.342232,-1.73682,-1.05105,-1.57752,0.248537 +0.0936592,0.340828,-1.74388,-1.06143,-1.574,0.258072 +0.0947557,0.339452,-1.75071,-1.07109,-1.57054,0.267612 +0.0958567,0.338097,-1.75726,-1.07992,-1.5672,0.277169 +0.0969644,0.336737,-1.76355,-1.08789,-1.56412,0.286747 +0.0980674,0.335331,-1.76965,-1.09498,-1.56148,0.296338 +0.099149,0.333837,-1.7756,-1.10119,-1.55942,0.305928 +0.100201,0.332237,-1.78144,-1.10659,-1.55795,0.315511 +0.101231,0.330543,-1.78719,-1.11131,-1.55691,0.32509 +0.102259,0.328788,-1.79284,-1.11552,-1.5561,0.334197 +0.103292,0.327011,-1.7984,-1.11936,-1.55546,0.341631 +0.104312,0.325235,-1.8039,-1.12296,-1.5551,0.346347 +0.105281,0.323469,-1.80937,-1.12639,-1.55522,0.347984 +0.106165,0.321711,-1.81487,-1.12972,-1.55593,0.346648 +0.106955,0.319958,-1.82045,-1.13307,-1.5572,0.342734 +0.10767,0.31821,-1.82615,-1.13661,-1.55885,0.336776 +0.108334,0.316461,-1.83201,-1.14049,-1.56066,0.329325 +0.108953,0.314698,-1.83805,-1.14477,-1.56249,0.320871 +0.109525,0.312902,-1.84427,-1.14948,-1.56429,0.31181 +0.110028,0.311051,-1.8507,-1.15465,-1.56607,0.302429 +0.110436,0.309121,-1.85734,-1.1603,-1.56784,0.292917 +0.11072,0.307093,-1.8642,-1.16643,-1.5696,0.283382 +0.110847,0.304963,-1.87128,-1.17305,-1.57134,0.273868 +0.11078,0.302746,-1.87854,-1.18012,-1.57303,0.264369 +0.110484,0.300479,-1.88592,-1.18757,-1.57466,0.254851 +0.109934,0.298205,-1.89336,-1.19536,-1.57622,0.24527 +0.10911,0.295964,-1.90079,-1.20334,-1.57767,0.235583 +0.108002,0.293785,-1.90814,-1.21137,-1.57895,0.225754 +0.106609,0.291694,-1.91536,-1.21936,-1.57997,0.215752 +0.104944,0.28972,-1.92242,-1.22726,-1.58071,0.205567 +0.103027,0.287885,-1.92925,-1.23494,-1.58116,0.195199 +0.100886,0.286199,-1.93582,-1.24231,-1.58135,0.184662 +0.0985578,0.284653,-1.94208,-1.24927,-1.58135,0.173977 +0.0960719,0.283215,-1.94802,-1.25572,-1.5812,0.163167 +0.0934528,0.281846,-1.95362,-1.26158,-1.58095,0.152251 +0.0907351,0.280519,-1.9589,-1.26684,-1.58066,0.141258 +0.0879617,0.279221,-1.96388,-1.2715,-1.58042,0.130222 +0.0851613,0.277938,-1.96851,-1.27545,-1.58031,0.11917 +0.0823403,0.276648,-1.97272,-1.27851,-1.58036,0.108111 +0.0794935,0.275332,-1.9764,-1.28045,-1.5806,0.0970413 +0.076622,0.273988,-1.97943,-1.28107,-1.58107,0.0859639 +0.0737513,0.272639,-1.98173,-1.28028,-1.58184,0.0748992 +0.0709291,0.271325,-1.98328,-1.27814,-1.58305,0.0638837 +0.0681748,0.270067,-1.98408,-1.27476,-1.58472,0.0529304 +0.065459,0.268851,-1.98423,-1.27029,-1.58671,0.0420109 +0.062734,0.267654,-1.98378,-1.26483,-1.58883,0.0310819 +0.0599554,0.266483,-1.98277,-1.2585,-1.59085,0.0201027 +0.0570961,0.265395,-1.98122,-1.25148,-1.59258,0.00904677 +0.0541565,0.264467,-1.97914,-1.24401,-1.59393,-0.00208866 +0.0511538,0.263749,-1.9766,-1.23637,-1.59491,-0.0132916 +0.0481158,0.263251,-1.97373,-1.22884,-1.59559,-0.0245399 +0.045082,0.262978,-1.97062,-1.22167,-1.59605,-0.0358003 +0.0420964,0.262954,-1.96731,-1.21504,-1.59631,-0.0470344 +0.0392009,0.263193,-1.96383,-1.20914,-1.59641,-0.0582051 +0.0364296,0.263648,-1.96028,-1.20406,-1.59644,-0.0692806 +0.0337898,0.264181,-1.95687,-1.1998,-1.59662,-0.0802522 +0.0312507,0.264602,-1.95386,-1.19626,-1.59713,-0.0911439 +0.0287678,0.264746,-1.95142,-1.19328,-1.5981,-0.101992 +0.0263031,0.264536,-1.94961,-1.1907,-1.59959,-0.112828 +0.0238357,0.264002,-1.94835,-1.18844,-1.60155,-0.123667 +0.0213688,0.263268,-1.94743,-1.1865,-1.60386,-0.134506 +0.01892,0.262501,-1.94662,-1.18494,-1.60633,-0.145328 +0.0165223,0.261884,-1.94572,-1.18387,-1.60876,-0.1561 +0.0142274,0.261591,-1.94456,-1.18345,-1.61095,-0.166778 +0.0120965,0.261759,-1.94304,-1.18382,-1.61274,-0.177305 +0.0101944,0.262475,-1.9411,-1.18509,-1.61405,-0.187626 +0.00857437,0.263754,-1.93875,-1.18724,-1.61488,-0.197693 +0.00726239,0.265539,-1.93604,-1.19024,-1.61528,-0.207485 +0.00626184,0.267723,-1.93306,-1.19403,-1.61533,-0.217 +0.00556992,0.270181,-1.92989,-1.19847,-1.61514,-0.226243 +0.00518717,0.272808,-1.92661,-1.2034,-1.61482,-0.235216 +0.00511122,0.275526,-1.92326,-1.20864,-1.61442,-0.243925 +0.00531714,0.278286,-1.91986,-1.21407,-1.61402,-0.251913 +0.00573428,0.281043,-1.91646,-1.21957,-1.61366,-0.258039 +0.00624851,0.283749,-1.91304,-1.22498,-1.61338,-0.261371 +0.00674428,0.286366,-1.90961,-1.23016,-1.6132,-0.261682 +0.00715739,0.288883,-1.90612,-1.23498,-1.61312,-0.259162 +0.00749534,0.291309,-1.90252,-1.23925,-1.61314,-0.254211 +0.00781516,0.293659,-1.89867,-1.2427,-1.61327,-0.247307 +0.00819467,0.295941,-1.89449,-1.24504,-1.6135,-0.238925 +0.00870859,0.298154,-1.88992,-1.24609,-1.61385,-0.229492 +0.00940529,0.300281,-1.88491,-1.24576,-1.61433,-0.219369 +0.0103036,0.302297,-1.87944,-1.24383,-1.61499,-0.208847 +0.0114031,0.304179,-1.87343,-1.24015,-1.61586,-0.198139 +0.0126959,0.305914,-1.86685,-1.23461,-1.61704,-0.187384 +0.0141817,0.307511,-1.85971,-1.22722,-1.61854,-0.176651 +0.0158782,0.308996,-1.85204,-1.21806,-1.62039,-0.165945 +0.0178128,0.310409,-1.84389,-1.20732,-1.62256,-0.155234 +0.0199919,0.311801,-1.83534,-1.19523,-1.62502,-0.144483 +0.0223862,0.313221,-1.8264,-1.18196,-1.6277,-0.133677 +0.0249404,0.314712,-1.81708,-1.16764,-1.63055,-0.122824 +0.0275866,0.316305,-1.80741,-1.15244,-1.63346,-0.111944 +0.0302692,0.318013,-1.79751,-1.13669,-1.63626,-0.101054 +0.032969,0.319841,-1.78759,-1.12083,-1.63881,-0.0901478 +0.0356907,0.321788,-1.77781,-1.10522,-1.64103,-0.0792068 +0.0384312,0.323858,-1.76825,-1.09003,-1.64285,-0.0682237 +0.0411693,0.326063,-1.75886,-1.07515,-1.64428,-0.0572109 +0.0438765,0.328419,-1.74946,-1.06032,-1.64534,-0.04619 +0.0465342,0.330931,-1.73997,-1.04532,-1.64608,-0.0351766 +0.049141,0.333579,-1.73042,-1.03022,-1.64654,-0.0241746 +0.0517047,0.336311,-1.72102,-1.01541,-1.64671,-0.0131825 +0.0542321,0.339061,-1.71201,-1.0013,-1.64653,-0.002201 +0.0567274,0.341775,-1.70353,-0.988127,-1.64599,0.00876839 +0.0591915,0.344418,-1.69557,-0.975867,-1.64509,0.0197226 +0.0616122,0.34697,-1.68805,-0.964376,-1.64386,0.0306487 +0.0639704,0.349411,-1.6809,-0.953526,-1.64227,0.0415274 +0.0662477,0.351718,-1.6741,-0.943255,-1.6403,0.0523398 +0.0684236,0.353862,-1.66768,-0.933623,-1.63788,0.0630651 +0.0704898,0.355813,-1.66174,-0.924799,-1.63498,0.0736923 +0.0724604,0.357552,-1.6564,-0.916953,-1.63165,0.0842308 +0.0743507,0.359068,-1.65172,-0.910228,-1.62792,0.0946918 +0.0761641,0.360349,-1.64782,-0.904787,-1.62382,0.105076 +0.0778973,0.361385,-1.64479,-0.900802,-1.61935,0.115377 +0.0795487,0.362174,-1.6427,-0.898408,-1.61452,0.125591 +0.0811144,0.362719,-1.64162,-0.897708,-1.60934,0.135713 +0.0825799,0.363031,-1.64155,-0.89872,-1.60379,0.145728 +0.0839261,0.363129,-1.64242,-0.901314,-1.5978,0.155621 +0.085148,0.363035,-1.64415,-0.905361,-1.59139,0.165388 +0.0862564,0.362766,-1.6467,-0.910783,-1.58462,0.175039 +0.087276,0.362324,-1.65005,-0.917531,-1.57762,0.184594 +0.0882441,0.361707,-1.65421,-0.925618,-1.57059,0.194087 +0.0891903,0.36092,-1.65914,-0.93499,-1.56367,0.203541 +0.090137,0.35999,-1.66473,-0.945419,-1.55692,0.21298 +0.0910919,0.358965,-1.67074,-0.95653,-1.55033,0.222413 +0.0920435,0.357899,-1.67693,-0.96792,-1.54379,0.231837 +0.0929835,0.356827,-1.68314,-0.979341,-1.53722,0.241247 +0.0939076,0.355756,-1.68938,-0.990784,-1.53065,0.250641 +0.094815,0.35467,-1.69574,-1.00238,-1.52415,0.260014 +0.0957121,0.353545,-1.70234,-1.01427,-1.51785,0.269369 +0.0966075,0.352359,-1.70926,-1.02651,-1.5119,0.278713 +0.0975117,0.351105,-1.7165,-1.03905,-1.5064,0.288053 +0.0984307,0.349792,-1.72402,-1.05177,-1.50138,0.297398 +0.099363,0.348446,-1.73167,-1.06445,-1.49674,0.306751 +0.100309,0.347107,-1.73931,-1.07688,-1.49235,0.316117 +0.101271,0.345809,-1.74683,-1.0889,-1.48812,0.325501 +0.102243,0.344561,-1.75414,-1.10032,-1.48408,0.334421 +0.103218,0.34334,-1.76124,-1.11098,-1.48043,0.341672 +0.104199,0.342104,-1.76815,-1.12075,-1.47749,0.346227 +0.105196,0.340819,-1.77489,-1.12956,-1.47545,0.347771 +0.10622,0.339472,-1.78145,-1.1374,-1.47426,0.346451 +0.10727,0.338067,-1.78782,-1.14434,-1.47367,0.34267 +0.108342,0.336615,-1.79398,-1.15048,-1.47337,0.336947 +0.109429,0.335114,-1.79994,-1.15594,-1.47318,0.32981 +0.11054,0.333555,-1.80573,-1.16081,-1.47313,0.32175 +0.111697,0.331923,-1.81139,-1.16515,-1.47341,0.313182 +0.112905,0.330214,-1.81695,-1.16905,-1.47413,0.304413 +0.114153,0.328438,-1.82249,-1.17268,-1.47531,0.295644 +0.11543,0.32661,-1.82803,-1.17615,-1.477,0.286996 +0.116727,0.324751,-1.83357,-1.1795,-1.47929,0.278529 +0.11803,0.322874,-1.83908,-1.1827,-1.48231,0.270257 +0.119326,0.320993,-1.84454,-1.18574,-1.48617,0.26216 +0.120603,0.319115,-1.84998,-1.1887,-1.49082,0.254203 +0.121852,0.317249,-1.85546,-1.19178,-1.49603,0.246343 +0.12306,0.315401,-1.86108,-1.19525,-1.50148,0.23853 +0.124214,0.313579,-1.8669,-1.19932,-1.50696,0.230716 +0.125298,0.311791,-1.87291,-1.20399,-1.51249,0.222862 +0.12628,0.310046,-1.87903,-1.20919,-1.51818,0.21492 +0.127119,0.308359,-1.8852,-1.21481,-1.52413,0.206845 +0.127783,0.306744,-1.89135,-1.22075,-1.53035,0.198602 +0.128256,0.305215,-1.89746,-1.22697,-1.53679,0.190177 +0.128547,0.30378,-1.90356,-1.23357,-1.5433,0.181573 +0.128694,0.302442,-1.90979,-1.24082,-1.54977,0.172817 +0.128738,0.301199,-1.91623,-1.24889,-1.55609,0.16394 +0.128684,0.300041,-1.92288,-1.25773,-1.56217,0.154951 +0.128498,0.298964,-1.92963,-1.26707,-1.56797,0.145835 +0.128126,0.297953,-1.93629,-1.27646,-1.57347,0.136562 +0.127519,0.296976,-1.94269,-1.2855,-1.57865,0.127108 +0.126657,0.295991,-1.94875,-1.29385,-1.58348,0.117469 +0.125541,0.294958,-1.95442,-1.30133,-1.58793,0.107651 +0.124163,0.293852,-1.95964,-1.30774,-1.59196,0.0976576 +0.122496,0.29266,-1.9643,-1.31285,-1.59548,0.0874716 +0.1205,0.291382,-1.96834,-1.3165,-1.59835,0.0770649 +0.118151,0.290036,-1.97179,-1.31878,-1.60045,0.0664135 +0.115439,0.288642,-1.97479,-1.31995,-1.6017,0.055503 +0.112361,0.287208,-1.9774,-1.32018,-1.60199,0.0443231 +0.108923,0.285734,-1.97959,-1.3194,-1.60128,0.0328751 +0.105161,0.284219,-1.9812,-1.31741,-1.59966,0.0211855 +0.10113,0.282676,-1.98214,-1.31411,-1.59729,0.00929436 +0.0969026,0.281124,-1.98242,-1.30962,-1.59439,-0.00274729 +0.0925676,0.27959,-1.98217,-1.30421,-1.59124,-0.0148759 +0.0882088,0.278098,-1.98152,-1.29819,-1.58807,-0.0270315 +0.0838924,0.276668,-1.98053,-1.29174,-1.58503,-0.0391657 +0.0796634,0.275313,-1.97915,-1.28489,-1.58218,-0.0512449 +0.0755593,0.274059,-1.97732,-1.2776,-1.57959,-0.0632397 +0.0716298,0.272954,-1.97503,-1.26997,-1.5774,-0.07511 +0.0679262,0.27206,-1.97232,-1.26215,-1.57577,-0.0868138 +0.0644701,0.271427,-1.96923,-1.2543,-1.57474,-0.0983325 +0.0612428,0.271091,-1.96579,-1.24656,-1.57417,-0.109681 +0.0582126,0.271067,-1.96204,-1.23909,-1.57386,-0.120885 +0.0553421,0.271342,-1.95805,-1.23205,-1.57369,-0.131973 +0.0525882,0.271885,-1.95396,-1.22557,-1.57364,-0.142981 +0.0499365,0.272671,-1.94988,-1.21978,-1.57373,-0.153917 +0.0474159,0.27371,-1.94582,-1.21476,-1.57396,-0.164754 +0.045084,0.275025,-1.94172,-1.21058,-1.57422,-0.175442 +0.043012,0.276614,-1.9375,-1.20721,-1.57447,-0.185917 +0.0412558,0.278411,-1.93312,-1.20461,-1.57469,-0.196131 +0.0398355,0.280294,-1.92863,-1.20268,-1.57494,-0.206065 +0.0387369,0.282122,-1.92411,-1.20135,-1.57527,-0.21573 +0.03792,0.283786,-1.91966,-1.2005,-1.57575,-0.224675 +0.0373329,0.285242,-1.91534,-1.20008,-1.57645,-0.231742 +0.0369217,0.286512,-1.91118,-1.20007,-1.57742,-0.235947 +0.0366339,0.287665,-1.90718,-1.20049,-1.57872,-0.237007 +0.0364212,0.288795,-1.90334,-1.20137,-1.58039,-0.235099 +0.0362453,0.290001,-1.89966,-1.20279,-1.58246,-0.230661 +0.0360858,0.291365,-1.8961,-1.20474,-1.58494,-0.22423 +0.0359569,0.292936,-1.89262,-1.20718,-1.58779,-0.216332 +0.0359103,0.294719,-1.8891,-1.20988,-1.59092,-0.207409 +0.0360081,0.296682,-1.88542,-1.21252,-1.59423,-0.197813 +0.0363008,0.298781,-1.88145,-1.21475,-1.59761,-0.187806 +0.0368161,0.300975,-1.8771,-1.21627,-1.601,-0.177581 +0.0375545,0.303224,-1.87231,-1.21679,-1.60435,-0.16727 +0.0385023,0.305486,-1.86697,-1.21591,-1.60765,-0.156953 +0.0396382,0.307722,-1.86096,-1.21321,-1.61087,-0.14667 +0.040939,0.309903,-1.85422,-1.20838,-1.614,-0.136431 +0.0423893,0.312015,-1.84673,-1.20133,-1.61701,-0.126222 +0.043974,0.314062,-1.83859,-1.19229,-1.61988,-0.116019 +0.045671,0.316054,-1.82993,-1.1816,-1.62253,-0.105807 +0.0474546,0.318015,-1.8209,-1.16969,-1.62488,-0.0955753 +0.0492979,0.319979,-1.81161,-1.1569,-1.62689,-0.0853189 +0.0511789,0.321987,-1.80212,-1.14343,-1.62853,-0.0750352 +0.0530885,0.324081,-1.79241,-1.12932,-1.62984,-0.0647155 +0.0550251,0.326284,-1.78249,-1.11462,-1.63085,-0.0543504 +0.0569903,0.328608,-1.7724,-1.09945,-1.63159,-0.0439329 +0.0589962,0.331051,-1.76218,-1.08388,-1.63211,-0.0334503 +0.061048,0.333606,-1.75179,-1.06789,-1.63249,-0.0228969 +0.0631251,0.336255,-1.7412,-1.05141,-1.63276,-0.0122911 +0.0651918,0.338973,-1.73042,-1.03449,-1.63285,-0.00166659 +0.0672115,0.341719,-1.71956,-1.01734,-1.63266,0.00893997 +0.0691626,0.344451,-1.70879,-1.00032,-1.63207,0.0195028 +0.0710413,0.347123,-1.69833,-0.98386,-1.63098,0.0300115 +0.0728451,0.349704,-1.68837,-0.968315,-1.62931,0.0404572 +0.0745723,0.352175,-1.67899,-0.953844,-1.62704,0.0508345 +0.0762258,0.354533,-1.67022,-0.940463,-1.62415,0.0611443 +0.0778012,0.356762,-1.66211,-0.928242,-1.62066,0.0713802 +0.0792913,0.35883,-1.65481,-0.917411,-1.61654,0.0815321 +0.0806984,0.360711,-1.64842,-0.908154,-1.61182,0.0915989 +0.0820209,0.362407,-1.64295,-0.900467,-1.60652,0.101579 +0.0832336,0.363951,-1.63828,-0.894156,-1.60061,0.11145 +0.0843027,0.365392,-1.63417,-0.888852,-1.59402,0.121187 +0.0852354,0.366763,-1.63049,-0.884279,-1.58685,0.130799 +0.0860759,0.368025,-1.62734,-0.880615,-1.5793,0.140324 +0.0868582,0.369085,-1.62506,-0.878403,-1.5715,0.149784 +0.0876053,0.369867,-1.62388,-0.878009,-1.56353,0.159197 +0.0883399,0.370382,-1.6237,-0.879262,-1.55546,0.168583 +0.0890754,0.370714,-1.62417,-0.881613,-1.54732,0.177962 +0.0898078,0.370938,-1.625,-0.884568,-1.53914,0.187335 +0.0905199,0.371058,-1.62618,-0.888107,-1.53089,0.196687 +0.0911975,0.370995,-1.62802,-0.892724,-1.52261,0.205999 +0.091841,0.370655,-1.63094,-0.899043,-1.51439,0.215262 +0.0924604,0.369989,-1.63515,-0.907428,-1.5063,0.224478 +0.0930625,0.369012,-1.64062,-0.917832,-1.49836,0.233652 +0.0936475,0.367787,-1.6471,-0.92991,-1.49053,0.242787 +0.0942194,0.366384,-1.65432,-0.943206,-1.4828,0.251892 +0.0947858,0.36486,-1.66203,-0.957327,-1.47518,0.260979 +0.0953546,0.363253,-1.67009,-0.972013,-1.4677,0.270056 +0.0959402,0.361589,-1.6784,-0.987068,-1.46044,0.279136 +0.0965561,0.359888,-1.68688,-1.00235,-1.45349,0.288232 +0.0972176,0.358164,-1.69548,-1.01777,-1.44692,0.297358 +0.0979515,0.356433,-1.70412,-1.03312,-1.44086,0.306536 +0.09878,0.354708,-1.71271,-1.0482,-1.43541,0.315789 +0.0997107,0.353002,-1.72121,-1.0629,-1.43062,0.325123 +0.100742,0.35133,-1.7296,-1.07718,-1.42654,0.334056 +0.101867,0.349702,-1.73789,-1.09098,-1.42319,0.341379 +0.103072,0.348128,-1.74605,-1.10421,-1.42065,0.346055 +0.104334,0.346611,-1.75407,-1.11677,-1.41891,0.347739 +0.105618,0.345146,-1.76193,-1.12858,-1.41795,0.346544 +0.106903,0.343724,-1.76959,-1.13952,-1.41772,0.342858 +0.10818,0.342332,-1.77701,-1.14953,-1.4181,0.337199 +0.109455,0.340951,-1.78416,-1.15854,-1.41896,0.330114 +0.110742,0.339566,-1.79101,-1.16655,-1.42017,0.322101 +0.112032,0.33816,-1.79758,-1.17363,-1.42164,0.313555 +0.113301,0.336715,-1.80386,-1.17977,-1.42341,0.30476 +0.114516,0.335217,-1.80989,-1.18499,-1.42553,0.295902 +0.115659,0.333658,-1.81571,-1.1894,-1.42808,0.287098 +0.116744,0.332035,-1.82136,-1.19314,-1.43108,0.278425 +0.117783,0.330351,-1.8269,-1.19639,-1.43448,0.269915 +0.118785,0.328616,-1.83235,-1.19926,-1.43824,0.261565 +0.119748,0.326849,-1.83771,-1.20182,-1.44239,0.253349 +0.120669,0.325069,-1.84296,-1.20408,-1.447,0.245229 +0.121558,0.32329,-1.84808,-1.2061,-1.45211,0.237177 +0.122438,0.32152,-1.85313,-1.20801,-1.45768,0.229179 +0.123332,0.319759,-1.85816,-1.20995,-1.46362,0.221223 +0.12424,0.318002,-1.86323,-1.2121,-1.46982,0.213288 +0.12516,0.316251,-1.86836,-1.21452,-1.4763,0.205355 +0.126084,0.314512,-1.87353,-1.21724,-1.48316,0.197404 +0.126981,0.312797,-1.87869,-1.22019,-1.49045,0.189407 +0.127804,0.311119,-1.88377,-1.2233,-1.49818,0.181323 +0.128512,0.30949,-1.88871,-1.22653,-1.50625,0.17312 +0.129083,0.307921,-1.89356,-1.22995,-1.51454,0.164783 +0.129524,0.306426,-1.89844,-1.23382,-1.52287,0.156315 +0.12985,0.305019,-1.90352,-1.23844,-1.53105,0.147725 +0.13005,0.303706,-1.90881,-1.24386,-1.53894,0.139007 +0.13008,0.302482,-1.91412,-1.24968,-1.54646,0.130139 +0.129861,0.301326,-1.91915,-1.25526,-1.55354,0.121074 +0.129325,0.300206,-1.92366,-1.26003,-1.56011,0.111773 +0.12845,0.29909,-1.92759,-1.26383,-1.56615,0.102225 +0.127263,0.297954,-1.93108,-1.26682,-1.57164,0.0924473 +0.125803,0.296777,-1.93433,-1.26934,-1.57655,0.0824648 +0.124089,0.295534,-1.93746,-1.27154,-1.58084,0.072289 +0.122128,0.294204,-1.94051,-1.27344,-1.58446,0.0619236 +0.119914,0.292787,-1.94342,-1.2749,-1.58739,0.0513681 +0.117433,0.291301,-1.94611,-1.27578,-1.58957,0.0406112 +0.114655,0.289786,-1.94852,-1.27601,-1.59091,0.0296293 +0.111545,0.288276,-1.95059,-1.27554,-1.59129,0.0183928 +0.108098,0.286801,-1.95228,-1.27433,-1.59068,0.00689453 +0.104359,0.285385,-1.95356,-1.27242,-1.58923,-0.00483322 +0.100394,0.28404,-1.95438,-1.26979,-1.58712,-0.0167391 +0.0962753,0.282772,-1.95469,-1.26643,-1.58453,-0.028769 +0.0920764,0.281586,-1.95443,-1.26233,-1.58161,-0.0408667 +0.087861,0.280485,-1.95358,-1.25755,-1.57849,-0.0529836 +0.0836646,0.279462,-1.95219,-1.25219,-1.57528,-0.0650944 +0.0794973,0.278498,-1.95042,-1.24649,-1.57206,-0.0771939 +0.0753697,0.277591,-1.94846,-1.24072,-1.56893,-0.0892762 +0.0713273,0.276775,-1.94641,-1.23511,-1.56605,-0.101305 +0.0674648,0.276138,-1.94422,-1.22973,-1.56363,-0.1132 +0.063881,0.275786,-1.94176,-1.22454,-1.56182,-0.124878 +0.0606283,0.275788,-1.93892,-1.21955,-1.56071,-0.136292 +0.0577001,0.276139,-1.93576,-1.21484,-1.5603,-0.147448 +0.0550446,0.276772,-1.93242,-1.2105,-1.56054,-0.158386 +0.0526047,0.277609,-1.92903,-1.20666,-1.56134,-0.169152 +0.0503511,0.278591,-1.92564,-1.2034,-1.56252,-0.17977 +0.0482946,0.27969,-1.92221,-1.20071,-1.56395,-0.190229 +0.0464743,0.280895,-1.91868,-1.1986,-1.56553,-0.200494 +0.0449261,0.282197,-1.91499,-1.19704,-1.56724,-0.210534 +0.0436648,0.283574,-1.91114,-1.19603,-1.56905,-0.219855 +0.0426775,0.284998,-1.90717,-1.19553,-1.571,-0.227261 +0.0419173,0.286454,-1.90318,-1.19554,-1.57312,-0.231764 +0.0413074,0.287945,-1.89926,-1.19614,-1.57547,-0.233101 +0.0407603,0.289492,-1.89554,-1.19738,-1.57809,-0.231482 +0.0402168,0.291127,-1.89207,-1.19926,-1.58101,-0.227358 +0.0396761,0.292876,-1.8888,-1.20171,-1.58422,-0.221253 +0.0391976,0.294755,-1.8856,-1.20451,-1.58768,-0.213653 +0.0388616,0.296763,-1.88231,-1.2074,-1.59134,-0.204977 +0.0387128,0.298881,-1.87879,-1.21005,-1.59513,-0.195591 +0.0387479,0.301076,-1.87494,-1.21223,-1.59898,-0.185802 +0.0389397,0.303308,-1.87071,-1.21364,-1.60287,-0.175846 +0.0392586,0.305532,-1.866,-1.21389,-1.60674,-0.16588 +0.03969,0.307705,-1.86067,-1.21249,-1.61055,-0.155985 +0.0402359,0.309797,-1.8546,-1.20899,-1.61428,-0.146182 +0.0409038,0.31179,-1.84773,-1.20323,-1.61789,-0.136457 +0.0416948,0.313683,-1.84011,-1.19526,-1.62135,-0.126784 +0.0425937,0.315486,-1.83183,-1.18535,-1.62459,-0.117142 +0.0435721,0.317228,-1.82297,-1.1738,-1.62758,-0.10752 +0.0445967,0.31895,-1.81361,-1.16082,-1.6303,-0.0979142 +0.0456374,0.320703,-1.80376,-1.14657,-1.63275,-0.0883226 +0.0466937,0.322536,-1.79345,-1.13119,-1.63494,-0.0787245 +0.047806,0.324497,-1.78273,-1.11483,-1.63689,-0.0690706 +0.0490235,0.326623,-1.77166,-1.09768,-1.63862,-0.0593095 +0.0503746,0.328946,-1.76025,-1.07981,-1.64012,-0.0494106 +0.0518659,0.33149,-1.74848,-1.06116,-1.64142,-0.0393641 +0.053484,0.334269,-1.73634,-1.0418,-1.64252,-0.0291801 +0.055209,0.337272,-1.72393,-1.02194,-1.64343,-0.018877 +0.0570239,0.340459,-1.71144,-1.00192,-1.64407,-0.00847278 +0.0589102,0.343766,-1.69907,-0.982148,-1.64436,0.00201209 +0.0608422,0.347129,-1.687,-0.962945,-1.64421,0.0125506 +0.0627798,0.350497,-1.67527,-0.9444,-1.64357,0.0231043 +0.0646869,0.353846,-1.66384,-0.926388,-1.64243,0.0336403 +0.0665401,0.357178,-1.65257,-0.908685,-1.64083,0.0441376 +0.068312,0.360496,-1.64138,-0.891122,-1.63874,0.0545711 +0.0699803,0.363779,-1.63033,-0.873796,-1.63613,0.0649178 +0.0715534,0.366962,-1.61968,-0.857205,-1.63299,0.0751802 +0.073064,0.369948,-1.60982,-0.842025,-1.6294,0.0853813 +0.0745375,0.372665,-1.60101,-0.828683,-1.62537,0.0955398 +0.075979,0.375096,-1.59332,-0.817285,-1.62091,0.105659 +0.0773693,0.37728,-1.58666,-0.807675,-1.61599,0.115721 +0.0786774,0.379262,-1.58087,-0.799574,-1.61054,0.1257 +0.0798942,0.381031,-1.57595,-0.792957,-1.6046,0.135588 +0.0810289,0.382495,-1.5722,-0.788237,-1.59823,0.145388 +0.0820828,0.383552,-1.5699,-0.785877,-1.59147,0.155097 +0.0830522,0.384172,-1.56913,-0.785944,-1.5843,0.164711 +0.0839446,0.384397,-1.56972,-0.788203,-1.57678,0.174239 +0.0847913,0.384293,-1.57146,-0.792334,-1.56906,0.18371 +0.0856258,0.383909,-1.57416,-0.798053,-1.5613,0.193157 +0.0864532,0.38325,-1.57777,-0.80524,-1.55356,0.202585 +0.0872777,0.382321,-1.58227,-0.813864,-1.54589,0.211995 +0.0881141,0.38116,-1.58754,-0.823759,-1.53836,0.221403 +0.0889553,0.379819,-1.59345,-0.834681,-1.53094,0.230803 +0.0897788,0.378327,-1.59997,-0.846603,-1.5236,0.240173 +0.090569,0.376679,-1.6072,-0.859695,-1.51639,0.249498 +0.0913227,0.374864,-1.61523,-0.87409,-1.5094,0.258768 +0.0920445,0.372891,-1.62404,-0.889742,-1.50269,0.267988 +0.0927419,0.370799,-1.63349,-0.906409,-1.49623,0.277167 +0.0934254,0.368638,-1.64337,-0.923749,-1.48998,0.286315 +0.0941091,0.366445,-1.65351,-0.941516,-1.48399,0.295449 +0.0948091,0.36423,-1.66388,-0.959614,-1.47842,0.30458 +0.0955449,0.361999,-1.67445,-0.977949,-1.47346,0.313724 +0.0963356,0.359766,-1.68514,-0.996357,-1.46921,0.322898 +0.0971846,0.357565,-1.69582,-1.01459,-1.46557,0.331629 +0.0980811,0.355433,-1.70633,-1.03235,-1.46236,0.338711 +0.0990079,0.353391,-1.71655,-1.04943,-1.4595,0.343106 +0.0999493,0.351441,-1.72644,-1.06569,-1.45702,0.344476 +0.100902,0.349574,-1.736,-1.08097,-1.45509,0.34296 +0.101864,0.347779,-1.7452,-1.09519,-1.45377,0.338962 +0.102835,0.346054,-1.75403,-1.10826,-1.453,0.333008 +0.103819,0.3444,-1.76244,-1.12013,-1.45271,0.325643 +0.104814,0.342808,-1.77041,-1.13071,-1.45286,0.317351 +0.10581,0.341256,-1.77789,-1.1399,-1.45357,0.308529 +0.106805,0.339711,-1.78487,-1.1476,-1.45499,0.299484 +0.10781,0.338141,-1.79138,-1.15384,-1.45724,0.290436 +0.10884,0.336519,-1.79748,-1.15875,-1.46029,0.281531 +0.109902,0.334822,-1.80324,-1.16255,-1.46397,0.272841 +0.110994,0.33304,-1.80873,-1.16541,-1.46818,0.264388 +0.112109,0.331172,-1.81396,-1.16747,-1.47293,0.256156 +0.113222,0.329228,-1.81894,-1.16882,-1.47829,0.248095 +0.114301,0.327226,-1.8237,-1.1696,-1.48428,0.240143 +0.115328,0.325186,-1.82828,-1.16999,-1.49079,0.232248 +0.1163,0.32313,-1.83279,-1.17024,-1.49762,0.224373 +0.117222,0.321079,-1.83734,-1.17064,-1.50451,0.216491 +0.118095,0.319051,-1.84203,-1.17146,-1.51127,0.20858 +0.118912,0.317059,-1.84691,-1.17282,-1.51783,0.200616 +0.119651,0.315111,-1.85197,-1.17476,-1.52418,0.19257 +0.120269,0.313209,-1.85719,-1.17726,-1.53034,0.184402 +0.120717,0.31135,-1.86248,-1.18019,-1.53632,0.176067 +0.120951,0.309528,-1.86777,-1.18343,-1.54218,0.167532 +0.120945,0.307735,-1.87299,-1.18688,-1.5479,0.158776 +0.120685,0.305962,-1.87816,-1.19052,-1.55344,0.149793 +0.120175,0.3042,-1.88331,-1.19441,-1.55872,0.140585 +0.11942,0.302442,-1.88848,-1.19858,-1.56366,0.131161 +0.118418,0.300682,-1.89367,-1.20302,-1.56815,0.12152 +0.11715,0.298913,-1.89886,-1.20767,-1.57212,0.11165 +0.115597,0.297133,-1.904,-1.2124,-1.57547,0.101542 +0.113754,0.295344,-1.90903,-1.21705,-1.57819,0.0911958 +0.111617,0.293554,-1.91395,-1.22154,-1.5802,0.0806116 +0.109184,0.291779,-1.91872,-1.22581,-1.58147,0.0697917 +0.10646,0.290037,-1.92333,-1.22978,-1.58198,0.0587421 +0.103458,0.288349,-1.92766,-1.2333,-1.58178,0.0474751 +0.100202,0.286735,-1.93161,-1.23621,-1.58096,0.0360135 +0.0967326,0.285204,-1.93514,-1.23846,-1.57967,0.0243884 +0.0930978,0.283747,-1.93828,-1.2401,-1.57805,0.012638 +0.0893516,0.282336,-1.94112,-1.24124,-1.57624,0.000803895 +0.0855413,0.280944,-1.94374,-1.24198,-1.57432,-0.0110775 +0.0816997,0.279563,-1.94616,-1.24231,-1.57238,-0.0229804 +0.0778404,0.278205,-1.94827,-1.24209,-1.57044,-0.0348946 +0.0739837,0.276911,-1.94993,-1.24119,-1.56857,-0.0468042 +0.070191,0.27574,-1.95101,-1.23952,-1.56696,-0.0586593 +0.0665522,0.27475,-1.95147,-1.2371,-1.5659,-0.0703866 +0.0631315,0.273983,-1.95135,-1.23408,-1.56557,-0.0819343 +0.0599365,0.273462,-1.95079,-1.23066,-1.56597,-0.0932977 +0.0569307,0.273196,-1.9499,-1.22706,-1.56695,-0.104509 +0.054063,0.27318,-1.94877,-1.22346,-1.56833,-0.115612 +0.0512939,0.273384,-1.94748,-1.21997,-1.56995,-0.126641 +0.0485944,0.273741,-1.94606,-1.21662,-1.57175,-0.137619 +0.0459452,0.274178,-1.94453,-1.21341,-1.57366,-0.148563 +0.0433477,0.274695,-1.9429,-1.21043,-1.57565,-0.15947 +0.0408254,0.275414,-1.94116,-1.20787,-1.57767,-0.170321 +0.0384154,0.276509,-1.93929,-1.20595,-1.57965,-0.181081 +0.0361582,0.278104,-1.93724,-1.2048,-1.58154,-0.191716 +0.0340897,0.28019,-1.93495,-1.20443,-1.58326,-0.202194 +0.0322393,0.2826,-1.93236,-1.20468,-1.58481,-0.212488 +0.0306237,0.285055,-1.92944,-1.20529,-1.58621,-0.222582 +0.029241,0.287262,-1.92621,-1.20612,-1.5875,-0.231995 +0.0280731,0.289002,-1.92277,-1.2071,-1.58879,-0.239538 +0.0270753,0.290177,-1.91929,-1.20823,-1.5902,-0.244219 +0.0261699,0.290808,-1.91594,-1.20959,-1.59182,-0.245776 +0.0252616,0.29101,-1.91292,-1.21125,-1.5937,-0.244427 +0.0242571,0.290934,-1.91038,-1.21326,-1.59583,-0.240653 +0.0230787,0.290722,-1.90839,-1.21563,-1.59819,-0.235041 +0.0216739,0.29048,-1.90693,-1.21834,-1.60068,-0.22817 +0.0200264,0.290277,-1.90593,-1.22133,-1.6032,-0.220538 +0.0181737,0.290171,-1.90522,-1.22457,-1.60563,-0.212515 +0.0162207,0.290241,-1.90457,-1.22801,-1.60786,-0.204318 +0.0143279,0.2906,-1.90372,-1.23161,-1.60977,-0.196027 +0.012651,0.291338,-1.90243,-1.23527,-1.61134,-0.187648 +0.0112658,0.292463,-1.90056,-1.23879,-1.61257,-0.179193 +0.0101553,0.293897,-1.89803,-1.24184,-1.61349,-0.170703 +0.00925801,0.29552,-1.89486,-1.24408,-1.61411,-0.162224 +0.00852792,0.297231,-1.89106,-1.24528,-1.61447,-0.153774 +0.0079635,0.298959,-1.88666,-1.24527,-1.61467,-0.145323 +0.00760119,0.300657,-1.88167,-1.24387,-1.61485,-0.136811 +0.00749123,0.302292,-1.87606,-1.2409,-1.61513,-0.128168 +0.00767225,0.303836,-1.86982,-1.2362,-1.61564,-0.11934 +0.00814161,0.305271,-1.86296,-1.22965,-1.61645,-0.110309 +0.00883531,0.306583,-1.8555,-1.22127,-1.6176,-0.101113 +0.00965485,0.307775,-1.84749,-1.21115,-1.61909,-0.0918202 +0.0105285,0.308874,-1.83895,-1.19938,-1.6209,-0.082483 +0.011465,0.309942,-1.82991,-1.18612,-1.62302,-0.0730896 +0.0125554,0.311075,-1.82039,-1.17154,-1.62548,-0.0635613 +0.01391,0.312374,-1.81038,-1.1558,-1.62829,-0.0538037 +0.0155795,0.313923,-1.79989,-1.139,-1.63141,-0.0437719 +0.0175291,0.315768,-1.78887,-1.12121,-1.63474,-0.0334922 +0.0196746,0.317926,-1.77732,-1.10242,-1.63816,-0.0230331 +0.0219405,0.320393,-1.76525,-1.08269,-1.64154,-0.0124557 +0.0242914,0.323146,-1.75278,-1.06223,-1.64475,-0.00178698 +0.0267224,0.326138,-1.74009,-1.04143,-1.64769,0.00897186 +0.0292375,0.329298,-1.72744,-1.02075,-1.6503,0.0198268 +0.0318304,0.332539,-1.71507,-1.00057,-1.6525,0.0307737 +0.0344782,0.335789,-1.70315,-0.981204,-1.65424,0.0417927 +0.037148,0.339021,-1.69167,-0.962647,-1.65551,0.0528545 +0.0398078,0.34227,-1.68046,-0.944602,-1.65639,0.0639308 +0.042436,0.345599,-1.66928,-0.926672,-1.65697,0.0750025 +0.04502,0.349048,-1.65803,-0.908714,-1.65733,0.0860573 +0.0475512,0.352597,-1.64684,-0.890995,-1.65745,0.0970851 +0.0500241,0.35619,-1.63594,-0.87394,-1.65726,0.108077 +0.0524393,0.359763,-1.62555,-0.857913,-1.65672,0.11903 +0.0547967,0.363265,-1.61581,-0.843119,-1.65579,0.129941 +0.0570948,0.366637,-1.60681,-0.829688,-1.65446,0.140806 +0.0593297,0.369801,-1.59868,-0.817797,-1.65271,0.151616 +0.0614899,0.372652,-1.59163,-0.807693,-1.65046,0.162359 +0.063574,0.375094,-1.58583,-0.799591,-1.64773,0.173028 +0.0655913,0.377061,-1.58137,-0.793594,-1.64455,0.183629 +0.0675418,0.378513,-1.57832,-0.789789,-1.64096,0.19416 +0.0694195,0.379432,-1.57671,-0.788217,-1.637,0.204611 +0.0712292,0.379831,-1.57653,-0.788861,-1.63275,0.214985 +0.0729852,0.379739,-1.57773,-0.79167,-1.62831,0.225294 +0.0746895,0.379208,-1.58022,-0.79651,-1.62376,0.235539 +0.076334,0.378302,-1.58389,-0.803213,-1.61909,0.24571 +0.0779072,0.377099,-1.58858,-0.811572,-1.61428,0.255798 +0.0793951,0.375678,-1.59411,-0.821315,-1.6093,0.265791 +0.0808037,0.374117,-1.6003,-0.832202,-1.60417,0.275695 +0.0821462,0.372478,-1.60701,-0.844002,-1.59893,0.285522 +0.083413,0.370798,-1.6141,-0.856474,-1.59355,0.295268 +0.0845889,0.369083,-1.62153,-0.869514,-1.58799,0.304918 +0.0856753,0.367319,-1.62934,-0.88317,-1.58231,0.314473 +0.0866915,0.365478,-1.63763,-0.897569,-1.57666,0.323467 +0.087659,0.36353,-1.64648,-0.912839,-1.5713,0.330713 +0.0885924,0.361454,-1.65594,-0.928966,-1.56642,0.335194 +0.089513,0.359261,-1.66594,-0.945855,-1.56216,0.336602 +0.0904427,0.356992,-1.67636,-0.963303,-1.5585,0.335097 +0.0913897,0.354708,-1.68694,-0.980889,-1.5553,0.331094 +0.0923557,0.35246,-1.69745,-0.998181,-1.55246,0.325125 +0.0933332,0.350274,-1.70777,-1.01489,-1.55,0.317725 +0.0943016,0.348149,-1.71783,-1.0308,-1.54799,0.309364 +0.0952486,0.34608,-1.72756,-1.0457,-1.5465,0.30044 +0.0961787,0.34407,-1.7369,-1.05938,-1.54556,0.291268 +0.0970974,0.342121,-1.74577,-1.07171,-1.5451,0.28207 +0.0980016,0.340228,-1.75413,-1.08257,-1.54502,0.272981 +0.0988881,0.33837,-1.76196,-1.09193,-1.54525,0.264073 +0.0997574,0.336519,-1.76929,-1.09985,-1.54578,0.25537 +0.100603,0.334639,-1.77618,-1.10638,-1.54666,0.24686 +0.101413,0.332703,-1.78265,-1.11164,-1.54791,0.238509 +0.102183,0.3307,-1.7888,-1.11581,-1.54956,0.230274 +0.102905,0.328635,-1.79469,-1.11915,-1.5516,0.222111 +0.103574,0.326537,-1.80042,-1.12194,-1.55394,0.213979 +0.10419,0.324448,-1.80607,-1.12448,-1.55644,0.205847 +0.104751,0.322411,-1.81168,-1.12698,-1.55905,0.197688 +0.105223,0.320446,-1.8173,-1.12961,-1.56169,0.189456 +0.105549,0.318547,-1.82295,-1.13248,-1.56434,0.181092 +0.105668,0.316689,-1.82868,-1.13571,-1.56694,0.172533 +0.105536,0.31483,-1.83453,-1.13935,-1.56942,0.163739 +0.105141,0.312924,-1.84055,-1.14347,-1.57166,0.154699 +0.104487,0.310931,-1.84679,-1.14809,-1.57355,0.145416 +0.103574,0.308822,-1.85323,-1.15317,-1.57498,0.135894 +0.102379,0.306583,-1.85986,-1.15865,-1.57587,0.126117 +0.100875,0.30422,-1.86661,-1.16441,-1.57617,0.116068 +0.0990559,0.301758,-1.87341,-1.17035,-1.57592,0.105744 +0.0969405,0.299237,-1.88017,-1.1763,-1.57519,0.0951697 +0.0945764,0.296704,-1.88681,-1.18212,-1.57412,0.0843884 +0.0920216,0.294208,-1.89327,-1.18771,-1.57285,0.0734528 +0.0893234,0.291787,-1.89952,-1.19304,-1.57147,0.0624046 +0.0865136,0.289467,-1.90554,-1.1981,-1.57006,0.0512712 +0.0836061,0.287256,-1.9113,-1.20285,-1.56865,0.0400649 +0.0806039,0.285148,-1.91679,-1.20724,-1.56722,0.0287883 +0.0775068,0.283132,-1.92198,-1.21122,-1.56579,0.017441 +0.0743169,0.281204,-1.92684,-1.2147,-1.56437,0.00602459 +0.0710672,0.27938,-1.93131,-1.21761,-1.56304,-0.00543384 +0.0678413,0.277712,-1.93532,-1.21989,-1.56204,-0.0168649 +0.064745,0.27627,-1.93882,-1.22154,-1.56167,-0.0281814 +0.0618547,0.275102,-1.9418,-1.22259,-1.56213,-0.0393205 +0.0591847,0.274198,-1.9443,-1.22309,-1.56343,-0.0502717 +0.056692,0.273498,-1.94644,-1.2231,-1.5654,-0.0610727 +0.0543118,0.27292,-1.94827,-1.22266,-1.56784,-0.071779 +0.051985,0.272411,-1.94979,-1.22171,-1.57056,-0.0824417 +0.0496596,0.271955,-1.9509,-1.22021,-1.57337,-0.0931058 +0.0472933,0.271554,-1.95151,-1.21812,-1.57616,-0.103808 +0.044871,0.27119,-1.95164,-1.21554,-1.57886,-0.114563 +0.0424071,0.270811,-1.95141,-1.21257,-1.58152,-0.125359 +0.0399236,0.270346,-1.95101,-1.20937,-1.58419,-0.136177 +0.0374389,0.269735,-1.95058,-1.20605,-1.58692,-0.147003 +0.0349675,0.268953,-1.95023,-1.20272,-1.58973,-0.157822 +0.0325127,0.268,-1.94998,-1.19947,-1.59258,-0.168634 +0.0300673,0.266902,-1.94981,-1.19636,-1.59545,-0.179442 +0.0276202,0.265693,-1.94969,-1.19341,-1.59831,-0.190256 +0.0251619,0.264417,-1.94958,-1.19067,-1.60113,-0.201083 +0.0226904,0.263128,-1.94943,-1.18817,-1.60395,-0.211924 +0.0202072,0.261894,-1.9492,-1.18594,-1.60675,-0.222776 +0.0177146,0.260802,-1.94882,-1.18404,-1.60948,-0.233636 +0.0152228,0.259964,-1.94823,-1.18256,-1.61203,-0.244011 +0.0127524,0.259502,-1.94735,-1.18164,-1.61427,-0.252679 +0.0103235,0.259518,-1.94614,-1.1814,-1.61609,-0.258592 +0.00794935,0.260049,-1.9446,-1.18195,-1.61742,-0.261407 +0.00563094,0.261058,-1.94276,-1.1833,-1.61825,-0.261261 +0.00335601,0.262437,-1.94072,-1.1854,-1.61865,-0.258564 +0.00110351,0.264046,-1.9386,-1.18821,-1.61867,-0.253856 +-0.00114577,0.265753,-1.93649,-1.19161,-1.61836,-0.247687 +-0.00340689,0.267449,-1.93443,-1.19548,-1.61773,-0.240555 +-0.00569319,0.269067,-1.93245,-1.19967,-1.61678,-0.232873 +-0.008012,0.270576,-1.93052,-1.20401,-1.61551,-0.224952 +-0.0103708,0.271976,-1.9286,-1.20837,-1.6139,-0.217014 +-0.0127742,0.273286,-1.92665,-1.21257,-1.61193,-0.209199 +-0.0151989,0.274537,-1.92459,-1.21653,-1.60964,-0.20156 +-0.0175837,0.275772,-1.92241,-1.22026,-1.60716,-0.194069 +-0.0198437,0.277032,-1.92006,-1.2238,-1.60467,-0.18665 +-0.0218942,0.27835,-1.91753,-1.22724,-1.60234,-0.179207 +-0.0236724,0.27974,-1.91481,-1.23057,-1.60032,-0.171658 +-0.0251541,0.281194,-1.9119,-1.2338,-1.59866,-0.16395 +-0.0263673,0.282682,-1.90881,-1.23686,-1.59738,-0.156078 +-0.0273982,0.284148,-1.90556,-1.23963,-1.59641,-0.14809 +-0.0283573,0.285527,-1.90216,-1.24189,-1.59561,-0.140063 +-0.0293118,0.286781,-1.89856,-1.24338,-1.59487,-0.132045 +-0.0302274,0.287921,-1.89469,-1.24389,-1.59417,-0.124007 +-0.0309835,0.288999,-1.89042,-1.24319,-1.59358,-0.115853 +-0.0314533,0.290085,-1.88562,-1.24108,-1.5932,-0.107485 +-0.031575,0.29123,-1.8802,-1.23747,-1.5931,-0.0988586 +-0.0313673,0.292465,-1.87414,-1.23233,-1.59327,-0.0899904 +-0.0308935,0.293799,-1.86743,-1.22564,-1.59368,-0.0809342 +-0.0302038,0.295239,-1.86008,-1.21741,-1.5943,-0.0717319 +-0.0293061,0.296795,-1.85211,-1.20767,-1.59515,-0.0623904 +-0.0281784,0.298482,-1.84352,-1.19642,-1.59628,-0.0528908 +-0.0268059,0.300311,-1.83433,-1.18372,-1.59774,-0.0432176 +-0.025196,0.302283,-1.82456,-1.1696,-1.59956,-0.0333725 +-0.0233579,0.30439,-1.81424,-1.15417,-1.60174,-0.0233568 +-0.0212772,0.306621,-1.80345,-1.1376,-1.60432,-0.0131499 +-0.0189188,0.308963,-1.79233,-1.12014,-1.60732,-0.00271264 +-0.016257,0.311405,-1.781,-1.10209,-1.61075,0.00798757 +-0.0133004,0.313948,-1.76957,-1.08365,-1.61457,0.0189529 +-0.010091,0.316607,-1.758,-1.06489,-1.61876,0.0301547 +-0.00668844,0.319407,-1.74625,-1.04572,-1.62324,0.0415471 +-0.00315591,0.322373,-1.73427,-1.02611,-1.62792,0.0530804 +0.000452946,0.325518,-1.7221,-1.00619,-1.63268,0.064713 +0.00410367,0.328844,-1.70981,-0.986145,-1.63742,0.0764192 +0.00777787,0.332329,-1.69756,-0.966254,-1.64206,0.0881861 +0.0114573,0.335914,-1.6856,-0.947022,-1.64647,0.100001 +0.01512,0.339522,-1.67419,-0.928893,-1.65056,0.111844 +0.0187402,0.343071,-1.66351,-0.912137,-1.65419,0.123692 +0.0222868,0.346479,-1.6537,-0.896949,-1.65728,0.135513 +0.0257385,0.3497,-1.64476,-0.883308,-1.65975,0.147283 +0.0290954,0.352734,-1.63657,-0.870943,-1.66166,0.158998 +0.0323638,0.355591,-1.62899,-0.859578,-1.66305,0.170657 +0.03553,0.358227,-1.62208,-0.849265,-1.66393,0.182244 +0.0385709,0.360529,-1.61616,-0.840501,-1.66426,0.193732 +0.0414833,0.362388,-1.61159,-0.833827,-1.66406,0.205112 +0.0442768,0.363774,-1.60849,-0.829437,-1.6634,0.21639 +0.0469617,0.364752,-1.6067,-0.82711,-1.66232,0.22757 +0.0495498,0.365447,-1.6059,-0.826353,-1.66089,0.238661 +0.0520529,0.365965,-1.60578,-0.826749,-1.65914,0.249673 +0.0544818,0.36635,-1.60627,-0.828181,-1.65714,0.260612 +0.0568369,0.366586,-1.60742,-0.830791,-1.65492,0.271475 +0.0591032,0.36661,-1.60944,-0.834894,-1.65249,0.282247 +0.0612577,0.36635,-1.61254,-0.840809,-1.64985,0.2929 +0.0632928,0.365762,-1.61683,-0.848678,-1.64704,0.302945 +0.065228,0.364851,-1.62224,-0.858371,-1.64415,0.311193 +0.0670872,0.363665,-1.62856,-0.869508,-1.64123,0.316639 +0.0688802,0.362262,-1.63553,-0.881627,-1.63827,0.318968 +0.0706038,0.360678,-1.64303,-0.894498,-1.63528,0.318315 +0.0722452,0.358929,-1.65105,-0.908109,-1.6323,0.315069 +0.073793,0.357032,-1.65958,-0.922412,-1.62937,0.309744 +0.0752453,0.355021,-1.66854,-0.937264,-1.62652,0.302876 +0.0766065,0.352945,-1.67783,-0.952482,-1.62373,0.294955 +0.077885,0.350848,-1.68732,-0.967872,-1.62103,0.286393 +0.0790731,0.34875,-1.69695,-0.983309,-1.6185,0.27749 +0.0801398,0.346643,-1.70674,-0.998812,-1.61619,0.268436 +0.0810602,0.344514,-1.7167,-1.01434,-1.61413,0.259344 +0.0818429,0.34237,-1.72668,-1.02958,-1.61226,0.250298 +0.0825286,0.340237,-1.73646,-1.04407,-1.61049,0.241367 +0.0831549,0.338139,-1.74584,-1.05744,-1.60869,0.232583 +0.0837237,0.336089,-1.75472,-1.06949,-1.60681,0.223927 +0.084196,0.334079,-1.76312,-1.08021,-1.60487,0.215338 +0.0845134,0.332089,-1.77111,-1.08969,-1.60287,0.206732 +0.0846328,0.330106,-1.77878,-1.0981,-1.60079,0.19804 +0.0845431,0.328121,-1.7862,-1.10557,-1.59858,0.189226 +0.0842642,0.326135,-1.79339,-1.11228,-1.59621,0.180285 +0.0838264,0.324144,-1.80043,-1.1184,-1.59366,0.171225 +0.0832441,0.322137,-1.80739,-1.12417,-1.59092,0.162046 +0.0825034,0.320089,-1.81438,-1.12983,-1.58798,0.152726 +0.0815636,0.317969,-1.82145,-1.13558,-1.58482,0.143227 +0.0803769,0.31574,-1.82865,-1.14148,-1.58147,0.133507 +0.0789188,0.313377,-1.83592,-1.14744,-1.57803,0.123546 +0.0772053,0.310869,-1.84317,-1.15326,-1.57467,0.113363 +0.0752902,0.308231,-1.85033,-1.15879,-1.5715,0.103007 +0.0732457,0.305495,-1.85735,-1.16391,-1.56862,0.0925429 +0.0711315,0.302705,-1.86418,-1.16856,-1.56606,0.0820232 +0.0689776,0.29991,-1.87081,-1.17279,-1.56384,0.0714741 +0.0667857,0.297157,-1.87722,-1.17667,-1.56196,0.0608967 +0.0645488,0.294483,-1.8834,-1.18028,-1.56041,0.0502842 +0.0622891,0.291916,-1.88938,-1.1837,-1.55921,0.0396549 +0.0600705,0.289479,-1.89516,-1.18696,-1.5584,0.0290621 +0.0579678,0.287192,-1.90078,-1.19009,-1.55806,0.0185687 +0.0560359,0.28508,-1.90623,-1.19307,-1.55824,0.0082207 +0.0542854,0.283174,-1.91148,-1.19589,-1.55899,-0.00197328 +0.0526729,0.281501,-1.91648,-1.19852,-1.56027,-0.0120499 +0.0511246,0.28008,-1.92117,-1.2009,-1.562,-0.0220719 +0.0495665,0.278912,-1.92548,-1.20298,-1.56409,-0.0321021 +0.0479393,0.277972,-1.92934,-1.2047,-1.56645,-0.0421908 +0.0462104,0.277201,-1.93276,-1.20596,-1.56902,-0.0523665 +0.0443809,0.276499,-1.93576,-1.20672,-1.57178,-0.0626282 +0.0424774,0.275742,-1.93842,-1.20692,-1.57471,-0.0729543 +0.0405311,0.274817,-1.94084,-1.20653,-1.57783,-0.0833186 +0.0385565,0.273668,-1.94303,-1.20555,-1.58111,-0.0937096 +0.0365455,0.272303,-1.94499,-1.20401,-1.58448,-0.104135 +0.0344803,0.270779,-1.94667,-1.20199,-1.58789,-0.11461 +0.032343,0.269162,-1.94805,-1.19962,-1.59129,-0.125151 +0.0301221,0.267493,-1.94914,-1.19701,-1.59464,-0.135768 +0.0278227,0.265781,-1.95003,-1.19427,-1.59791,-0.146456 +0.0254703,0.26402,-1.95082,-1.19147,-1.60113,-0.157194 +0.0230976,0.262213,-1.95157,-1.18866,-1.60436,-0.167953 +0.0207229,0.260389,-1.95228,-1.1859,-1.60759,-0.178719 +0.018342,0.258611,-1.95292,-1.18321,-1.61078,-0.189493 +0.015933,0.256961,-1.95341,-1.18069,-1.61382,-0.200295 +0.0134586,0.255514,-1.9537,-1.17845,-1.6166,-0.211153 +0.0108686,0.254308,-1.9538,-1.17653,-1.61895,-0.222112 +0.00811337,0.253348,-1.95375,-1.17498,-1.62075,-0.233212 +0.00514934,0.252627,-1.9536,-1.17383,-1.62186,-0.244491 +0.00194443,0.252146,-1.9534,-1.17313,-1.62214,-0.255492 +-0.00150885,0.251917,-1.95314,-1.17298,-1.62151,-0.265015 +-0.00520347,0.251936,-1.9528,-1.17343,-1.61992,-0.272021 +-0.00913596,0.252152,-1.95241,-1.17451,-1.61733,-0.276177 +-0.0133117,0.252469,-1.952,-1.1762,-1.6137,-0.27762 +-0.0177446,0.25277,-1.95164,-1.17838,-1.60901,-0.276761 +-0.0224251,0.252963,-1.95138,-1.18095,-1.60334,-0.274114 +-0.0272925,0.25301,-1.95123,-1.18382,-1.59693,-0.270162 +-0.0322508,0.252928,-1.95121,-1.18693,-1.59014,-0.265307 +-0.0371943,0.252773,-1.95126,-1.19027,-1.58332,-0.259859 +-0.0420166,0.252631,-1.95134,-1.19388,-1.57679,-0.254031 +-0.046614,0.252601,-1.95136,-1.1978,-1.5708,-0.247948 +-0.0508966,0.252781,-1.95122,-1.20201,-1.56554,-0.241667 +-0.0547892,0.253256,-1.95081,-1.20649,-1.56112,-0.235196 +-0.0582397,0.25409,-1.95006,-1.2112,-1.55756,-0.228519 +-0.0612368,0.255307,-1.94894,-1.21612,-1.55483,-0.22162 +-0.0638173,0.256874,-1.94746,-1.22121,-1.55285,-0.214511 +-0.0660625,0.258706,-1.94567,-1.22636,-1.55147,-0.20723 +-0.0680683,0.260691,-1.94363,-1.23143,-1.55052,-0.199829 +-0.0698929,0.26272,-1.94135,-1.23623,-1.5498,-0.192332 +-0.0715242,0.264719,-1.93881,-1.24055,-1.54921,-0.184713 +-0.0729132,0.266643,-1.93594,-1.2442,-1.54869,-0.176918 +-0.074056,0.268455,-1.93271,-1.24703,-1.54817,-0.168939 +-0.0750425,0.270111,-1.92913,-1.24892,-1.5475,-0.160845 +-0.0760146,0.271571,-1.92528,-1.24985,-1.54653,-0.152752 +-0.0770706,0.272831,-1.92122,-1.24987,-1.54518,-0.14474 +-0.0781761,0.273939,-1.91695,-1.24905,-1.54357,-0.136782 +-0.0791604,0.274995,-1.91245,-1.24749,-1.54199,-0.128743 +-0.0798279,0.276112,-1.90765,-1.2453,-1.54073,-0.120463 +-0.0800829,0.277367,-1.9025,-1.24254,-1.53999,-0.111868 +-0.0799634,0.278784,-1.89697,-1.23919,-1.53978,-0.102992 +-0.0795678,0.280349,-1.89106,-1.23521,-1.54005,-0.0939184 +-0.0789432,0.282039,-1.88477,-1.23047,-1.54079,-0.0846913 +-0.0780489,0.283834,-1.87809,-1.22488,-1.54205,-0.0752838 +-0.0768226,0.285719,-1.871,-1.21831,-1.54386,-0.0656498 +-0.0752615,0.287682,-1.86346,-1.21061,-1.54622,-0.0557903 +-0.0734407,0.289708,-1.85543,-1.20167,-1.54903,-0.0457676 +-0.0714632,0.291782,-1.84687,-1.19141,-1.55219,-0.0356641 +-0.0693814,0.293888,-1.83783,-1.17983,-1.55563,-0.0255177 +-0.0671638,0.29601,-1.82835,-1.16704,-1.55932,-0.0152945 +-0.0647398,0.298135,-1.81856,-1.15323,-1.56327,-0.00492601 +-0.0620511,0.300263,-1.80854,-1.1386,-1.56745,0.00564711 +-0.0590747,0.302412,-1.79839,-1.12334,-1.57185,0.0164548 +-0.0558324,0.304617,-1.78812,-1.10756,-1.57644,0.0274876 +-0.0523803,0.306925,-1.77768,-1.09125,-1.5812,0.0387043 +-0.0487865,0.309388,-1.76699,-1.07436,-1.58606,0.0500517 +-0.0451055,0.312041,-1.756,-1.05689,-1.59099,0.0614892 +-0.04136,0.314874,-1.74482,-1.03905,-1.59597,0.073006 +-0.0375463,0.317823,-1.73365,-1.02119,-1.60095,0.0846157 +-0.0336497,0.320803,-1.72277,-1.00371,-1.6059,0.0963405 +-0.0296615,0.323749,-1.71235,-0.98694,-1.61078,0.108195 +-0.025589,0.326645,-1.70242,-0.970951,-1.61561,0.120174 +-0.0214528,0.329501,-1.69292,-0.955667,-1.6204,0.13226 +-0.0172816,0.332318,-1.68378,-0.941034,-1.62512,0.144424 +-0.0131,0.33508,-1.67506,-0.927126,-1.62973,0.156643 +-0.00891852,0.337763,-1.66683,-0.914089,-1.63421,0.168908 +-0.00474321,0.340349,-1.65919,-0.902061,-1.63855,0.181209 +-0.000589991,0.342818,-1.65224,-0.891234,-1.64271,0.193531 +0.00351273,0.345139,-1.64613,-0.881857,-1.64663,0.205846 +0.00753395,0.347268,-1.64098,-0.874141,-1.65021,0.218122 +0.0114503,0.349155,-1.63692,-0.868242,-1.6534,0.230332 +0.0152384,0.350749,-1.63402,-0.864293,-1.65615,0.242453 +0.0188751,0.352009,-1.63231,-0.862305,-1.6584,0.254456 +0.022346,0.352921,-1.63174,-0.862139,-1.66012,0.265841 +0.0256488,0.353482,-1.63223,-0.863628,-1.66132,0.275397 +0.0287889,0.353701,-1.63366,-0.866586,-1.66201,0.282096 +0.0317723,0.353592,-1.63594,-0.870846,-1.66222,0.285612 +0.0345931,0.353157,-1.63907,-0.876389,-1.662,0.286074 +0.0372314,0.352384,-1.64318,-0.883448,-1.66135,0.283863 +0.0396733,0.351269,-1.64842,-0.892358,-1.66034,0.279485 +0.0419211,0.349852,-1.65483,-0.903211,-1.65905,0.273477 +0.0439909,0.348221,-1.66224,-0.915748,-1.65756,0.266337 +0.0459125,0.346487,-1.67037,-0.929523,-1.65591,0.258492 +0.0477237,0.344755,-1.67894,-0.944084,-1.65413,0.250282 +0.049455,0.343091,-1.68771,-0.959081,-1.65223,0.241949 +0.0511128,0.341515,-1.69661,-0.97436,-1.65018,0.233631 +0.0526635,0.339996,-1.70565,-0.989926,-1.648,0.225371 +0.0540362,0.33847,-1.71492,-1.0058,-1.64569,0.217133 +0.0551593,0.33687,-1.72452,-1.02198,-1.64328,0.208853 +0.0560065,0.335168,-1.73445,-1.03846,-1.64078,0.200484 +0.0566205,0.333391,-1.74462,-1.05504,-1.63819,0.192035 +0.0570795,0.331595,-1.75478,-1.0713,-1.63552,0.183544 +0.0574314,0.329817,-1.76471,-1.08679,-1.63275,0.175024 +0.0576683,0.328057,-1.77432,-1.10132,-1.62992,0.166448 +0.0577485,0.326281,-1.78364,-1.11486,-1.62705,0.157764 +0.0576406,0.324457,-1.79273,-1.12746,-1.62414,0.148932 +0.0573533,0.322572,-1.80159,-1.13922,-1.62112,0.139954 +0.0569136,0.320622,-1.81024,-1.15012,-1.61784,0.130846 +0.056338,0.318602,-1.81859,-1.16005,-1.61418,0.121623 +0.0556284,0.3165,-1.82661,-1.16884,-1.61021,0.112289 +0.0547728,0.314306,-1.83427,-1.17642,-1.60609,0.102837 +0.0537562,0.312017,-1.84157,-1.18278,-1.602,0.0932554 +0.0525786,0.309642,-1.84852,-1.18793,-1.59806,0.0835465 +0.0512648,0.307206,-1.85514,-1.19199,-1.59437,0.0737308 +0.0498512,0.304733,-1.86142,-1.19506,-1.59103,0.063838 +0.048364,0.30223,-1.86741,-1.19726,-1.58808,0.0538889 +0.0468183,0.299715,-1.87312,-1.19875,-1.58559,0.0438943 +0.0452292,0.29723,-1.87858,-1.19972,-1.58359,0.0338649 +0.0436159,0.294859,-1.8838,-1.20033,-1.58206,0.0238151 +0.042005,0.292701,-1.88877,-1.20074,-1.58096,0.0137659 +0.0404415,0.290842,-1.8935,-1.20107,-1.58023,0.00375367 +0.0389855,0.289319,-1.89802,-1.20139,-1.57978,-0.00617184 +0.0377034,0.288114,-1.90237,-1.20171,-1.5795,-0.0159556 +0.0366503,0.287162,-1.90661,-1.202,-1.57932,-0.025551 +0.035843,0.28637,-1.91079,-1.20229,-1.57924,-0.0349437 +0.0352453,0.285629,-1.91497,-1.20263,-1.57928,-0.0441638 +0.034771,0.28482,-1.91913,-1.20298,-1.57959,-0.0532834 +0.0342985,0.283833,-1.92324,-1.20323,-1.58029,-0.0624046 +0.0336985,0.282581,-1.92717,-1.20322,-1.58152,-0.0716365 +0.0328622,0.281022,-1.93082,-1.2028,-1.58333,-0.0810709 +0.0317167,0.279162,-1.93406,-1.20186,-1.58569,-0.0907696 +0.0302286,0.277054,-1.9368,-1.20042,-1.5885,-0.100761 +0.0284096,0.274787,-1.93899,-1.19856,-1.59162,-0.111035 +0.0263136,0.272458,-1.94062,-1.19643,-1.59491,-0.121546 +0.0240172,0.27015,-1.94175,-1.19415,-1.59826,-0.132228 +0.0216049,0.267906,-1.94254,-1.19183,-1.6016,-0.14301 +0.0191634,0.265733,-1.9432,-1.18947,-1.60488,-0.153821 +0.0167645,0.263618,-1.94393,-1.18708,-1.60811,-0.1646 +0.0144377,0.261552,-1.94488,-1.18462,-1.61126,-0.175325 +0.0121556,0.259548,-1.94609,-1.18216,-1.61427,-0.186019 +0.00984013,0.257637,-1.9475,-1.17976,-1.61699,-0.19675 +0.00739014,0.255844,-1.94901,-1.17752,-1.61925,-0.207601 +0.00471241,0.254158,-1.95054,-1.17549,-1.62086,-0.218652 +0.00173293,0.252536,-1.95213,-1.17371,-1.62163,-0.229964 +-0.00161071,0.25095,-1.95379,-1.17226,-1.62136,-0.241591 +-0.00537308,0.249411,-1.95552,-1.17124,-1.61985,-0.253577 +-0.00959849,0.247973,-1.95728,-1.17073,-1.61696,-0.265473 +-0.0143157,0.246682,-1.959,-1.17078,-1.61256,-0.276097 +-0.019526,0.245551,-1.96064,-1.17133,-1.60665,-0.28442 +-0.0251689,0.244553,-1.96218,-1.17226,-1.59939,-0.290063 +-0.0310968,0.24365,-1.96362,-1.17341,-1.59127,-0.293038 +-0.03712,0.24281,-1.96494,-1.17466,-1.58284,-0.293586 +-0.0430737,0.242011,-1.96612,-1.17599,-1.5746,-0.292085 +-0.0488402,0.241245,-1.96716,-1.17743,-1.56688,-0.288967 +-0.0543424,0.240518,-1.96805,-1.17906,-1.55988,-0.284645 +-0.0595495,0.239846,-1.96882,-1.18092,-1.55369,-0.279492 +-0.06447,0.239254,-1.96949,-1.1831,-1.54831,-0.273817 +-0.0691228,0.238784,-1.97009,-1.18569,-1.54366,-0.267847 +-0.0735233,0.238492,-1.97064,-1.18879,-1.53966,-0.261726 +-0.0776823,0.238439,-1.97109,-1.19247,-1.53619,-0.255529 +-0.0816061,0.238684,-1.97141,-1.19679,-1.53312,-0.24928 +-0.0853137,0.23926,-1.97155,-1.20173,-1.53034,-0.242989 +-0.088847,0.240162,-1.97149,-1.2072,-1.52768,-0.236669 +-0.0922483,0.241359,-1.97121,-1.21303,-1.52503,-0.230329 +-0.0955433,0.242799,-1.97068,-1.21898,-1.52231,-0.223967 +-0.0987424,0.244422,-1.96985,-1.22478,-1.51948,-0.217571 +-0.10185,0.246164,-1.96868,-1.23019,-1.51651,-0.21113 +-0.104886,0.247955,-1.96715,-1.23501,-1.51334,-0.204649 +-0.10789,0.249725,-1.96526,-1.23906,-1.50993,-0.198158 +-0.11091,0.251408,-1.96304,-1.24223,-1.50625,-0.191693 +-0.113961,0.25296,-1.96055,-1.24452,-1.50232,-0.185269 +-0.116995,0.254362,-1.95781,-1.24597,-1.49825,-0.17884 +-0.119912,0.255621,-1.95482,-1.2467,-1.4942,-0.172321 +-0.122613,0.25676,-1.95157,-1.24685,-1.49034,-0.165622 +-0.125037,0.257803,-1.94811,-1.2466,-1.48681,-0.158687 +-0.127188,0.258773,-1.94447,-1.24614,-1.48365,-0.151514 +-0.129094,0.259699,-1.94075,-1.24568,-1.48088,-0.144118 +-0.130736,0.260627,-1.93699,-1.24538,-1.47854,-0.136481 +-0.132034,0.261625,-1.93317,-1.24538,-1.47677,-0.128533 +-0.132894,0.262767,-1.92928,-1.24575,-1.47568,-0.120199 +-0.13328,0.264116,-1.92528,-1.24648,-1.47532,-0.111455 +-0.133235,0.265709,-1.9211,-1.24744,-1.47565,-0.102349 +-0.132836,0.267556,-1.9167,-1.24843,-1.47658,-0.0929572 +-0.13212,0.269635,-1.91204,-1.24924,-1.47806,-0.0833294 +-0.131062,0.271896,-1.90707,-1.2496,-1.48015,-0.0734622 +-0.12959,0.274275,-1.90175,-1.24917,-1.48292,-0.0633187 +-0.127651,0.276705,-1.896,-1.24768,-1.48647,-0.0528729 +-0.125253,0.279134,-1.88981,-1.24491,-1.4908,-0.0421437 +-0.12247,0.281526,-1.88315,-1.24072,-1.49579,-0.0311928 +-0.119402,0.283863,-1.87599,-1.23501,-1.50133,-0.0201019 +-0.116149,0.286143,-1.86831,-1.22776,-1.50728,-0.00894696 +-0.112785,0.288373,-1.86012,-1.21901,-1.51352,0.00222214 +-0.109342,0.290548,-1.85149,-1.20891,-1.51997,0.0133912 +-0.105809,0.292647,-1.84252,-1.1976,-1.52654,0.0245817 +-0.102156,0.29465,-1.83334,-1.18525,-1.53313,0.0358311 +-0.0983643,0.296558,-1.82404,-1.17204,-1.53969,0.0471667 +-0.0944477,0.298405,-1.81464,-1.15812,-1.54616,0.0585913 +-0.0904355,0.300239,-1.80513,-1.14356,-1.55253,0.0700899 +-0.0863559,0.302095,-1.79549,-1.12844,-1.55875,0.081648 +-0.0822312,0.30398,-1.78582,-1.11293,-1.56478,0.0932576 +-0.0780809,0.305891,-1.7762,-1.09724,-1.57054,0.104913 +-0.0739124,0.30784,-1.76669,-1.08151,-1.57602,0.116616 +-0.0697325,0.309857,-1.75728,-1.06582,-1.58123,0.128364 +-0.0655673,0.311953,-1.74801,-1.0503,-1.58616,0.140142 +-0.0614417,0.314101,-1.73902,-1.0352,-1.59074,0.151933 +-0.057367,0.316248,-1.73053,-1.02089,-1.59495,0.163737 +-0.0533476,0.318351,-1.72267,-1.00761,-1.59876,0.175552 +-0.049376,0.320425,-1.71538,-0.995274,-1.60224,0.187381 +-0.0454305,0.322519,-1.70846,-0.983579,-1.60551,0.199234 +-0.0414941,0.32465,-1.70178,-0.972359,-1.6087,0.210638 +-0.0375683,0.326755,-1.69549,-0.961826,-1.61184,0.220389 +-0.0336721,0.328712,-1.68992,-0.952477,-1.61488,0.227447 +-0.029826,0.330406,-1.68538,-0.94478,-1.61775,0.231471 +-0.0260301,0.331792,-1.68197,-0.93891,-1.62045,0.232597 +-0.0222671,0.332888,-1.6796,-0.934756,-1.62306,0.231237 +-0.0185212,0.333731,-1.67811,-0.932109,-1.62562,0.227921 +-0.0147936,0.334345,-1.67742,-0.930832,-1.62816,0.223175 +-0.0110989,0.33473,-1.67753,-0.930949,-1.63067,0.217468 +-0.00745655,0.334878,-1.67852,-0.932601,-1.63311,0.21118 +-0.0038967,0.334778,-1.68051,-0.935988,-1.63545,0.204587 +-0.000452966,0.334426,-1.6836,-0.941339,-1.63766,0.19787 +0.00284693,0.33383,-1.68785,-0.948769,-1.63969,0.191134 +0.00597788,0.333007,-1.69321,-0.95817,-1.64149,0.184423 +0.00892193,0.331983,-1.69955,-0.969279,-1.64302,0.17774 +0.0116762,0.330792,-1.70671,-0.981789,-1.64425,0.171071 +0.0142424,0.329466,-1.71453,-0.995417,-1.64515,0.164389 +0.0166102,0.328035,-1.72289,-1.00994,-1.64571,0.157651 +0.0187503,0.326513,-1.73174,-1.02525,-1.64588,0.150795 +0.020617,0.324908,-1.74105,-1.04123,-1.64562,0.143752 +0.0221744,0.323241,-1.75073,-1.05765,-1.6449,0.136466 +0.0234414,0.321573,-1.76058,-1.07418,-1.64373,0.128934 +0.0245031,0.320004,-1.77039,-1.09047,-1.64223,0.121215 +0.0254622,0.318629,-1.77989,-1.10617,-1.64053,0.113389 +0.0263768,0.317492,-1.78894,-1.12104,-1.63872,0.105501 +0.0272384,0.316567,-1.79758,-1.13512,-1.63684,0.0975458 +0.0279932,0.315784,-1.80594,-1.14855,-1.63488,0.0894812 +0.028583,0.315062,-1.81416,-1.16152,-1.63285,0.0812634 +0.0289682,0.314332,-1.82235,-1.17416,-1.63077,0.0728648 +0.0291312,0.313549,-1.83053,-1.18644,-1.62864,0.064275 +0.029067,0.312678,-1.83866,-1.1982,-1.6265,0.0554941 +0.0287816,0.311691,-1.84662,-1.20904,-1.62433,0.0465298 +0.0282904,0.310569,-1.85426,-1.2186,-1.62218,0.0373966 +0.0276076,0.3093,-1.86149,-1.22659,-1.62008,0.0281072 +0.0267372,0.307872,-1.86826,-1.23289,-1.61805,0.0186651 +0.0256808,0.306274,-1.87454,-1.23751,-1.61612,0.00907121 +0.0244526,0.304494,-1.88036,-1.24052,-1.61432,-0.000663973 +0.0230854,0.302523,-1.88574,-1.242,-1.61271,-0.0105153 +0.0216181,0.300354,-1.8907,-1.24207,-1.61136,-0.0204528 +0.0200708,0.297996,-1.89526,-1.24086,-1.61031,-0.0304619 +0.0184312,0.295477,-1.89945,-1.23864,-1.60962,-0.0405537 +0.0166734,0.292842,-1.90332,-1.23572,-1.60931,-0.05075 +0.0147903,0.290149,-1.90689,-1.23237,-1.60938,-0.061057 +0.0128116,0.287453,-1.91022,-1.22875,-1.60978,-0.0714513 +0.0108072,0.284806,-1.91335,-1.22493,-1.61042,-0.0818766 +0.00886748,0.282247,-1.91637,-1.22095,-1.61124,-0.0922594 +0.00706146,0.279781,-1.91935,-1.21684,-1.61215,-0.102543 +0.00541235,0.277383,-1.92231,-1.21256,-1.61312,-0.112709 +0.00389503,0.275004,-1.92531,-1.20814,-1.61411,-0.122778 +0.00244022,0.272604,-1.92834,-1.20365,-1.6151,-0.132805 +0.000944164,0.270168,-1.93139,-1.19921,-1.61602,-0.142876 +-0.000717733,0.26771,-1.93445,-1.19499,-1.61674,-0.153093 +-0.00266883,0.265244,-1.93749,-1.19111,-1.6171,-0.163558 +-0.0050092,0.262766,-1.94051,-1.18762,-1.61686,-0.174356 +-0.00780262,0.260248,-1.94355,-1.18455,-1.61582,-0.18554 +-0.0110885,0.25766,-1.94666,-1.18191,-1.61375,-0.197144 +-0.0149039,0.25499,-1.94988,-1.17971,-1.61046,-0.209199 +-0.0192807,0.252263,-1.95322,-1.17799,-1.60577,-0.221732 +-0.0242071,0.249532,-1.95664,-1.1767,-1.59969,-0.234733 +-0.0295776,0.246872,-1.96004,-1.17572,-1.59254,-0.248115 +-0.0352201,0.244359,-1.96329,-1.17494,-1.58483,-0.261731 +-0.0409701,0.242041,-1.9663,-1.17424,-1.57704,-0.275443 +-0.0467028,0.239939,-1.96903,-1.17356,-1.5695,-0.289144 +-0.0523368,0.238052,-1.97146,-1.17288,-1.56243,-0.302281 +-0.0578264,0.236363,-1.97361,-1.17226,-1.55594,-0.313609 +-0.063154,0.234852,-1.97551,-1.17177,-1.55003,-0.322078 +-0.0683264,0.233503,-1.97718,-1.17151,-1.54466,-0.327363 +-0.0733722,0.232309,-1.97868,-1.17157,-1.53971,-0.32962 +-0.0783305,0.23127,-1.98005,-1.17204,-1.53502,-0.32928 +-0.0832302,0.2304,-1.98131,-1.17299,-1.53046,-0.326886 +-0.0880836,0.229719,-1.98247,-1.17448,-1.52596,-0.32298 +-0.0928926,0.229253,-1.98355,-1.17659,-1.52146,-0.318041 +-0.0976565,0.229012,-1.98456,-1.17937,-1.51696,-0.312468 +-0.102378,0.228988,-1.98552,-1.18276,-1.51242,-0.306566 +-0.107068,0.229147,-1.98642,-1.18666,-1.50782,-0.300561 +-0.111737,0.229446,-1.98726,-1.19095,-1.50313,-0.2946 +-0.116387,0.229851,-1.98803,-1.1955,-1.49835,-0.288756 +-0.121005,0.230342,-1.9887,-1.20021,-1.49349,-0.283049 +-0.12558,0.230911,-1.98923,-1.20497,-1.48855,-0.277463 +-0.130104,0.231559,-1.98955,-1.20966,-1.48352,-0.271972 +-0.13457,0.23228,-1.98964,-1.21418,-1.47841,-0.266543 +-0.138972,0.233072,-1.98946,-1.21842,-1.47324,-0.261143 +-0.143287,0.233931,-1.98898,-1.2223,-1.46806,-0.255727 +-0.147474,0.234864,-1.98817,-1.22576,-1.46291,-0.250237 +-0.151479,0.23588,-1.98698,-1.2288,-1.45785,-0.24461 +-0.15526,0.236985,-1.98538,-1.2314,-1.45294,-0.238795 +-0.158815,0.238168,-1.9834,-1.23354,-1.44818,-0.232787 +-0.16219,0.239404,-1.98107,-1.23524,-1.44352,-0.226622 +-0.165446,0.240666,-1.97847,-1.23653,-1.4389,-0.220353 +-0.168601,0.241932,-1.97566,-1.23745,-1.43432,-0.213995 +-0.171611,0.243199,-1.97266,-1.2381,-1.42986,-0.207508 +-0.174391,0.244478,-1.96948,-1.23857,-1.42567,-0.200813 +-0.176874,0.245789,-1.96613,-1.239,-1.42185,-0.193848 +-0.179035,0.247154,-1.96263,-1.23953,-1.41843,-0.186583 +-0.180881,0.248596,-1.95903,-1.2403,-1.41543,-0.179017 +-0.182446,0.250139,-1.95539,-1.24143,-1.41284,-0.171175 +-0.183778,0.251807,-1.95175,-1.24302,-1.41057,-0.163093 +-0.184904,0.253622,-1.94811,-1.24511,-1.4086,-0.154794 +-0.185815,0.255606,-1.94449,-1.24771,-1.40695,-0.146271 +-0.18648,0.257768,-1.94088,-1.25082,-1.4057,-0.137502 +-0.18687,0.260105,-1.93726,-1.2544,-1.40491,-0.128467 +-0.18695,0.262593,-1.93359,-1.25829,-1.40462,-0.11915 +-0.186684,0.265185,-1.9298,-1.26225,-1.40492,-0.109543 +-0.18603,0.267827,-1.92586,-1.26603,-1.4059,-0.0996343 +-0.184945,0.270461,-1.92171,-1.2694,-1.40769,-0.0894073 +-0.183395,0.273035,-1.91732,-1.27215,-1.41037,-0.0788557 +-0.18137,0.275504,-1.91267,-1.27411,-1.41397,-0.0679892 +-0.178887,0.27784,-1.90776,-1.27516,-1.41845,-0.0568343 +-0.175992,0.280021,-1.90255,-1.27512,-1.42373,-0.0454442 +-0.172755,0.282042,-1.89699,-1.2738,-1.42972,-0.0338895 +-0.169248,0.283907,-1.89103,-1.27106,-1.43632,-0.0222377 +-0.165521,0.285629,-1.88464,-1.26682,-1.44344,-0.0105326 +-0.161578,0.287226,-1.87781,-1.26103,-1.45104,0.0012205 +-0.157402,0.288723,-1.87056,-1.2537,-1.45912,0.0130386 +-0.152981,0.290151,-1.8629,-1.24488,-1.46765,0.0249394 +-0.148318,0.291548,-1.85487,-1.23468,-1.4766,0.0369347 +-0.143439,0.292952,-1.84651,-1.22327,-1.48588,0.0490233 +-0.138378,0.294398,-1.83786,-1.21083,-1.49542,0.0611976 +-0.133166,0.295907,-1.82896,-1.19747,-1.50515,0.0734521 +-0.127842,0.297494,-1.81986,-1.1834,-1.51495,0.0857743 +-0.122454,0.299161,-1.81068,-1.16885,-1.52468,0.0981472 +-0.117046,0.300897,-1.80151,-1.15406,-1.53421,0.110555 +-0.111659,0.302678,-1.79246,-1.13923,-1.54341,0.12298 +-0.106339,0.304466,-1.78363,-1.12452,-1.55213,0.135395 +-0.101135,0.306216,-1.77513,-1.11011,-1.56024,0.147771 +-0.0960769,0.307902,-1.76698,-1.09606,-1.56767,0.160085 +-0.0911793,0.309529,-1.75917,-1.08237,-1.57439,0.171846 +-0.0864439,0.311116,-1.75166,-1.06908,-1.58041,0.181846 +-0.0818871,0.312661,-1.74452,-1.05629,-1.58571,0.189045 +-0.0775534,0.31411,-1.73797,-1.04435,-1.59018,0.193081 +-0.0734804,0.315389,-1.73231,-1.03374,-1.59374,0.194067 +-0.0696613,0.316468,-1.72767,-1.02464,-1.59643,0.192412 +-0.0660417,0.317402,-1.72388,-1.01686,-1.59842,0.18867 +-0.0625466,0.318285,-1.7206,-1.00993,-1.59997,0.183427 +-0.0591295,0.319164,-1.71765,-1.00362,-1.60125,0.177196 +-0.0558032,0.319979,-1.7152,-0.998194,-1.60228,0.17037 +-0.0526128,0.320618,-1.71361,-0.994216,-1.60301,0.163223 +-0.0495875,0.321001,-1.71314,-0.992114,-1.60339,0.155949 +-0.0467152,0.32112,-1.71385,-0.992016,-1.6035,0.14869 +-0.043955,0.321013,-1.71567,-0.993842,-1.60346,0.141546 +-0.0412635,0.32072,-1.71846,-0.99746,-1.60343,0.134574 +-0.038606,0.320261,-1.72214,-1.00276,-1.60352,0.12779 +-0.0359627,0.31965,-1.72662,-1.00963,-1.60378,0.121184 +-0.0333218,0.3189,-1.73183,-1.01794,-1.60424,0.114725 +-0.0306799,0.318034,-1.73766,-1.02749,-1.6049,0.108376 +-0.0280664,0.317063,-1.74405,-1.03815,-1.6057,0.102075 +-0.0255492,0.315977,-1.75105,-1.04994,-1.60653,0.0957361 +-0.0232031,0.314763,-1.75871,-1.06292,-1.60731,0.0892752 +-0.0210664,0.313426,-1.76702,-1.07699,-1.60799,0.082643 +-0.0191176,0.312009,-1.77581,-1.09187,-1.60858,0.0758429 +-0.0172996,0.310574,-1.78488,-1.10718,-1.60913,0.0689121 +-0.0155732,0.309183,-1.79404,-1.12263,-1.60964,0.0618774 +-0.0139543,0.307872,-1.80318,-1.138,-1.61008,0.0547233 +-0.0125076,0.306644,-1.81225,-1.15306,-1.61036,0.0473962 +-0.0113128,0.305481,-1.8212,-1.1676,-1.61042,0.0398319 +-0.0104271,0.304353,-1.82999,-1.18141,-1.61023,0.0319855 +-0.00986331,0.303235,-1.83856,-1.19428,-1.60981,0.0238488 +-0.00958156,0.302109,-1.84683,-1.20605,-1.60925,0.0154566 +-0.00948876,0.30098,-1.85474,-1.21656,-1.60861,0.00688605 +-0.00946722,0.299853,-1.86218,-1.22564,-1.60799,-0.00176738 +-0.00943078,0.298718,-1.86903,-1.23303,-1.60741,-0.0104353 +-0.00936894,0.297543,-1.87528,-1.23861,-1.60694,-0.0191087 +-0.00935155,0.296277,-1.88096,-1.24249,-1.60659,-0.0278415 +-0.00948984,0.294864,-1.88617,-1.24481,-1.60636,-0.0367209 +-0.00986959,0.293269,-1.89097,-1.24569,-1.6062,-0.0458153 +-0.0104979,0.291502,-1.89543,-1.24528,-1.6061,-0.0551296 +-0.0113175,0.289609,-1.8996,-1.24385,-1.60607,-0.0646154 +-0.0122694,0.287633,-1.90355,-1.24163,-1.60611,-0.0742222 +-0.0133391,0.285584,-1.90733,-1.23882,-1.60616,-0.083937 +-0.0145657,0.283439,-1.91098,-1.23554,-1.6061,-0.0937913 +-0.0160167,0.281154,-1.91455,-1.23189,-1.60574,-0.10384 +-0.0177519,0.278696,-1.9181,-1.22799,-1.60492,-0.114133 +-0.0198108,0.276042,-1.92167,-1.22391,-1.6035,-0.124702 +-0.0222162,0.273202,-1.92528,-1.21977,-1.60138,-0.135566 +-0.0249919,0.270211,-1.92896,-1.21575,-1.59851,-0.146743 +-0.0281692,0.267126,-1.93271,-1.21201,-1.59483,-0.158258 +-0.0317652,0.264008,-1.93651,-1.20867,-1.59036,-0.170122 +-0.0357539,0.260907,-1.94037,-1.20578,-1.58515,-0.182315 +-0.0400374,0.25786,-1.94426,-1.20329,-1.57941,-0.194758 +-0.0444735,0.25489,-1.94815,-1.20108,-1.57345,-0.207335 +-0.0489408,0.252002,-1.95202,-1.19897,-1.56754,-0.219952 +-0.0533674,0.249202,-1.9558,-1.19685,-1.56186,-0.23255 +-0.0577322,0.246494,-1.95945,-1.19467,-1.55654,-0.245111 +-0.0620512,0.24389,-1.96293,-1.19245,-1.55159,-0.257646 +-0.0663542,0.241417,-1.9662,-1.19026,-1.54701,-0.270176 +-0.0706761,0.239105,-1.96926,-1.18819,-1.54269,-0.282724 +-0.0750524,0.236986,-1.97211,-1.18635,-1.53855,-0.295318 +-0.079517,0.235083,-1.97478,-1.18484,-1.53442,-0.307979 +-0.0841001,0.233406,-1.97728,-1.18373,-1.5302,-0.32073 +-0.0888159,0.231943,-1.97963,-1.18303,-1.52577,-0.3331 +-0.09366,0.230668,-1.98186,-1.1827,-1.52112,-0.343882 +-0.098619,0.229536,-1.98401,-1.18268,-1.51625,-0.352038 +-0.103674,0.228497,-1.9861,-1.18286,-1.51119,-0.35723 +-0.108803,0.227517,-1.98811,-1.18313,-1.50599,-0.359579 +-0.113979,0.226595,-1.99002,-1.18353,-1.50067,-0.359461 +-0.119175,0.22576,-1.99179,-1.18416,-1.49526,-0.35736 +-0.124369,0.225047,-1.99338,-1.18512,-1.4898,-0.353785 +-0.129551,0.224469,-1.99477,-1.18644,-1.48428,-0.349206 +-0.134731,0.224016,-1.99598,-1.18808,-1.47868,-0.344036 +-0.139931,0.223658,-1.99708,-1.18995,-1.47297,-0.338606 +-0.145163,0.22337,-1.99807,-1.19191,-1.4671,-0.333154 +-0.150422,0.223156,-1.99897,-1.19391,-1.4611,-0.327809 +-0.155685,0.223041,-1.99975,-1.19597,-1.45498,-0.322622 +-0.160922,0.223064,-2.00036,-1.19814,-1.44878,-0.317586 +-0.166104,0.223261,-2.00077,-1.20045,-1.4425,-0.312663 +-0.171213,0.223654,-2.00094,-1.20288,-1.43615,-0.30781 +-0.176243,0.224243,-2.00083,-1.20538,-1.42968,-0.302997 +-0.181214,0.225008,-2.00044,-1.20784,-1.42307,-0.298211 +-0.186158,0.22591,-1.99979,-1.21015,-1.41624,-0.293463 +-0.191115,0.226906,-1.99892,-1.2122,-1.40916,-0.288771 +-0.196093,0.227968,-1.99785,-1.21394,-1.4018,-0.284129 +-0.201057,0.229088,-1.99656,-1.21538,-1.39424,-0.279493 +-0.205951,0.230278,-1.99504,-1.21659,-1.38655,-0.274796 +-0.21071,0.231549,-1.99328,-1.21763,-1.37887,-0.26997 +-0.215287,0.232899,-1.99127,-1.21855,-1.3713,-0.264966 +-0.219665,0.234315,-1.98903,-1.21939,-1.36393,-0.259764 +-0.223827,0.235781,-1.98659,-1.22023,-1.35682,-0.254346 +-0.22772,0.23729,-1.98398,-1.22113,-1.35006,-0.248657 +-0.231253,0.238848,-1.98122,-1.22222,-1.34381,-0.242607 +-0.234343,0.240469,-1.97829,-1.22359,-1.33821,-0.236115 +-0.236989,0.24217,-1.97522,-1.22528,-1.33329,-0.229178 +-0.239307,0.243967,-1.97205,-1.2273,-1.32887,-0.221904 +-0.241466,0.245874,-1.96887,-1.22965,-1.32468,-0.214447 +-0.243566,0.247902,-1.96572,-1.23239,-1.32055,-0.206895 +-0.245588,0.25006,-1.96264,-1.23562,-1.31652,-0.199221 +-0.247417,0.252344,-1.95961,-1.23937,-1.31275,-0.191316 +-0.248931,0.254743,-1.9566,-1.24366,-1.30943,-0.183071 +-0.250078,0.257245,-1.95358,-1.24847,-1.30667,-0.174438 +-0.250898,0.259835,-1.95055,-1.25377,-1.30445,-0.165451 +-0.25146,0.262486,-1.94753,-1.25948,-1.30266,-0.156179 +-0.251778,0.265155,-1.94451,-1.26549,-1.30129,-0.146648 +-0.251777,0.267785,-1.94148,-1.27163,-1.3005,-0.136813 +-0.251322,0.270314,-1.93837,-1.27767,-1.30058,-0.126586 +-0.250279,0.2727,-1.93513,-1.28338,-1.30184,-0.115887 +-0.248594,0.274929,-1.93174,-1.28867,-1.3044,-0.10469 +-0.246291,0.277005,-1.92821,-1.29345,-1.3082,-0.0930367 +-0.24343,0.27893,-1.9245,-1.29756,-1.31315,-0.0810066 +-0.240113,0.280701,-1.92056,-1.30079,-1.31906,-0.0687105 +-0.23645,0.282313,-1.91633,-1.30292,-1.32574,-0.0562681 +-0.232532,0.283761,-1.91177,-1.30377,-1.33302,-0.0437747 +-0.228412,0.285049,-1.90684,-1.30319,-1.34082,-0.0312876 +-0.224111,0.286188,-1.90149,-1.30111,-1.3491,-0.0188318 +-0.219625,0.287192,-1.89575,-1.29753,-1.35783,-0.00640535 +-0.214925,0.288081,-1.88964,-1.2925,-1.36705,0.00602133 +-0.209975,0.288872,-1.88321,-1.28608,-1.37681,0.0184845 +-0.204769,0.289588,-1.87646,-1.27832,-1.38708,0.0309997 +-0.199339,0.290258,-1.86939,-1.26926,-1.3978,0.0435573 +-0.193729,0.290912,-1.86196,-1.25895,-1.40887,0.0561386 +-0.187978,0.291578,-1.85421,-1.24751,-1.42021,0.068737 +-0.182111,0.292268,-1.84624,-1.23521,-1.43173,0.0813608 +-0.176145,0.292996,-1.83822,-1.22241,-1.44331,0.0940304 +-0.17009,0.293782,-1.83028,-1.20943,-1.45488,0.106766 +-0.16396,0.294654,-1.82247,-1.19643,-1.46639,0.119093 +-0.15778,0.29564,-1.81479,-1.18351,-1.47781,0.129802 +-0.151598,0.296741,-1.80732,-1.17084,-1.48901,0.137842 +-0.145462,0.297941,-1.80019,-1.15869,-1.49986,0.142862 +-0.139402,0.29922,-1.79349,-1.14722,-1.51029,0.144986 +-0.13343,0.300579,-1.78716,-1.13636,-1.5203,0.144605 +-0.127552,0.30204,-1.78105,-1.12587,-1.5299,0.142227 +-0.121788,0.303608,-1.77505,-1.11563,-1.53909,0.138367 +-0.11618,0.305242,-1.76925,-1.10575,-1.54776,0.133477 +-0.11079,0.306847,-1.76392,-1.09656,-1.55573,0.127917 +-0.10568,0.308314,-1.75931,-1.08842,-1.5628,0.12195 +-0.100889,0.309562,-1.75559,-1.08149,-1.56883,0.11576 +-0.096423,0.310549,-1.75273,-1.07569,-1.5738,0.109467 +-0.092278,0.311261,-1.75068,-1.07091,-1.57777,0.103137 +-0.0884747,0.311686,-1.74949,-1.06726,-1.58071,0.0967738 +-0.0850494,0.311816,-1.74927,-1.06493,-1.58258,0.0903414 +-0.0820226,0.311651,-1.75009,-1.06408,-1.58339,0.0837967 +-0.0793732,0.31121,-1.75195,-1.06478,-1.58323,0.0771212 +-0.0770343,0.310533,-1.75475,-1.06695,-1.58235,0.0703306 +-0.0749088,0.309683,-1.7583,-1.07035,-1.58101,0.0634646 +-0.0728987,0.308729,-1.76238,-1.07471,-1.57944,0.0565678 +-0.070945,0.307726,-1.76685,-1.07985,-1.57782,0.0496614 +-0.0690504,0.306695,-1.77171,-1.08577,-1.57622,0.0427275 +-0.0672661,0.305628,-1.77705,-1.09266,-1.57464,0.035717 +-0.0656429,0.304508,-1.78301,-1.10071,-1.57307,0.0285869 +-0.0641735,0.303334,-1.78958,-1.1099,-1.57156,0.0213406 +-0.0627847,0.302124,-1.7966,-1.11996,-1.57023,0.0140311 +-0.0613864,0.3009,-1.80387,-1.13052,-1.56922,0.00672461 +-0.059925,0.299671,-1.81126,-1.14135,-1.5686,-0.000539629 +-0.0584103,0.298431,-1.81875,-1.15233,-1.56836,-0.0077705 +-0.0569136,0.297161,-1.82635,-1.16345,-1.56843,-0.0150259 +-0.0555529,0.29584,-1.83408,-1.1746,-1.56866,-0.0224033 +-0.05445,0.294451,-1.84192,-1.18561,-1.56889,-0.0300059 +-0.0536667,0.293003,-1.84978,-1.19624,-1.56906,-0.0378894 +-0.0531598,0.291531,-1.85755,-1.20627,-1.5692,-0.0460245 +-0.0528018,0.290095,-1.8651,-1.2155,-1.56942,-0.0543123 +-0.0524746,0.288746,-1.87232,-1.22383,-1.56982,-0.0626591 +-0.0521662,0.287494,-1.87914,-1.23116,-1.57036,-0.0710565 +-0.0519888,0.286299,-1.88555,-1.23737,-1.57085,-0.0795961 +-0.0521004,0.285093,-1.89155,-1.24237,-1.57106,-0.0884068 +-0.0525958,0.283814,-1.89718,-1.24615,-1.57084,-0.097565 +-0.0534504,0.282421,-1.90251,-1.24874,-1.57019,-0.10705 +-0.0545668,0.280895,-1.90757,-1.25025,-1.5692,-0.11678 +-0.0558749,0.279225,-1.9124,-1.2508,-1.56792,-0.126697 +-0.0573844,0.277399,-1.91703,-1.25048,-1.5663,-0.136804 +-0.0591557,0.27541,-1.92149,-1.24946,-1.56429,-0.147147 +-0.0612279,0.273254,-1.92585,-1.24797,-1.56187,-0.15775 +-0.0635686,0.270929,-1.93015,-1.24615,-1.55909,-0.168585 +-0.0660887,0.268431,-1.93444,-1.24407,-1.55607,-0.179577 +-0.0686968,0.265767,-1.93871,-1.24172,-1.55291,-0.190656 +-0.0713429,0.262959,-1.94297,-1.23912,-1.54969,-0.20178 +-0.0740389,0.260049,-1.9472,-1.23637,-1.54647,-0.212958 +-0.0768441,0.257091,-1.95137,-1.23356,-1.5432,-0.224235 +-0.0798288,0.254142,-1.95546,-1.23074,-1.53982,-0.235669 +-0.0830434,0.251263,-1.95943,-1.22797,-1.53626,-0.247299 +-0.0865142,0.24851,-1.96325,-1.2253,-1.53246,-0.259148 +-0.0902495,0.245921,-1.96691,-1.22276,-1.52836,-0.271222 +-0.0942365,0.243512,-1.97039,-1.22033,-1.52396,-0.283513 +-0.0984549,0.241284,-1.97371,-1.21798,-1.51926,-0.296007 +-0.102883,0.239222,-1.97686,-1.21574,-1.51429,-0.308683 +-0.107495,0.237311,-1.97985,-1.21362,-1.50907,-0.321519 +-0.112271,0.23553,-1.98268,-1.21163,-1.50366,-0.334492 +-0.117193,0.233855,-1.98531,-1.20978,-1.4981,-0.347585 +-0.122236,0.232256,-1.98776,-1.20803,-1.49243,-0.360296 +-0.127377,0.230693,-1.99004,-1.20624,-1.48668,-0.37141 +-0.132593,0.229133,-1.99218,-1.20433,-1.48084,-0.379888 +-0.137856,0.227565,-1.9942,-1.20224,-1.47496,-0.385385 +-0.143148,0.226005,-1.99611,-1.19998,-1.46905,-0.388024 +-0.148473,0.224501,-1.99792,-1.1977,-1.4631,-0.388204 +-0.153841,0.223104,-1.99962,-1.19554,-1.45706,-0.386445 +-0.159259,0.221861,-2.00121,-1.19364,-1.45091,-0.383277 +-0.164738,0.220801,-2.00267,-1.1921,-1.44461,-0.379187 +-0.170292,0.219937,-2.00403,-1.19098,-1.43808,-0.374584 +-0.175933,0.219267,-2.00527,-1.19028,-1.43128,-0.36978 +-0.18167,0.218785,-2.0064,-1.18998,-1.42412,-0.364997 +-0.187511,0.218481,-2.00742,-1.19005,-1.41658,-0.360377 +-0.193452,0.218345,-2.0083,-1.19044,-1.40862,-0.355989 +-0.199487,0.218369,-2.00903,-1.19107,-1.40023,-0.351856 +-0.205607,0.218546,-2.00958,-1.19188,-1.39139,-0.347968 +-0.211796,0.218865,-2.00994,-1.1928,-1.38211,-0.344293 +-0.21803,0.219309,-2.0101,-1.19374,-1.37248,-0.340783 +-0.224289,0.219852,-2.01006,-1.19459,-1.36257,-0.337399 +-0.23055,0.220474,-2.00982,-1.1953,-1.35248,-0.334095 +-0.236761,0.221168,-2.0094,-1.19587,-1.34234,-0.330799 +-0.24284,0.221948,-2.00876,-1.19635,-1.33234,-0.327408 +-0.248687,0.222844,-2.00785,-1.1968,-1.32266,-0.323805 +-0.254231,0.223883,-2.00664,-1.1973,-1.31343,-0.319906 +-0.259454,0.225084,-2.00513,-1.19791,-1.3047,-0.315683 +-0.264387,0.226449,-2.00337,-1.19861,-1.29642,-0.311167 +-0.269098,0.227972,-2.0014,-1.19936,-1.28849,-0.306431 +-0.273664,0.229649,-1.99928,-1.20013,-1.28078,-0.30156 +-0.27813,0.231482,-1.99702,-1.20089,-1.27321,-0.296602 +-0.282503,0.233478,-1.99464,-1.20162,-1.26578,-0.291569 +-0.286739,0.235643,-1.99211,-1.20239,-1.2585,-0.286413 +-0.290739,0.237984,-1.98942,-1.20333,-1.25151,-0.28102 +-0.29437,0.240498,-1.98656,-1.20458,-1.24495,-0.275244 +-0.297556,0.243172,-1.98352,-1.20625,-1.23893,-0.268994 +-0.300327,0.245984,-1.98032,-1.20836,-1.23338,-0.26229 +-0.302796,0.248899,-1.97701,-1.21089,-1.22816,-0.255242 +-0.305092,0.251871,-1.97367,-1.21375,-1.22314,-0.247975 +-0.307273,0.254847,-1.97033,-1.21691,-1.21826,-0.240545 +-0.309287,0.257771,-1.96705,-1.22042,-1.21364,-0.232887 +-0.311017,0.260593,-1.96385,-1.2244,-1.2095,-0.224867 +-0.312369,0.263284,-1.96074,-1.22896,-1.206,-0.216377 +-0.313316,0.265839,-1.95774,-1.23413,-1.20318,-0.207386 +-0.31389,0.268267,-1.95483,-1.23982,-1.20103,-0.197935 +-0.314159,0.270585,-1.95201,-1.24595,-1.19941,-0.188106 +-0.314175,0.272817,-1.94925,-1.25244,-1.19823,-0.177966 +-0.313954,0.274977,-1.94657,-1.25925,-1.19743,-0.16754 +-0.313467,0.277069,-1.94393,-1.26628,-1.19709,-0.156823 +-0.312665,0.279088,-1.94128,-1.27335,-1.19734,-0.145804 +-0.31153,0.281023,-1.93857,-1.28023,-1.19821,-0.134504 +-0.310068,0.282867,-1.93576,-1.28676,-1.19969,-0.122961 +-0.30831,0.284609,-1.9328,-1.29277,-1.20175,-0.111232 +-0.306309,0.286225,-1.92965,-1.29804,-1.20432,-0.0993957 +-0.304098,0.28769,-1.92625,-1.30234,-1.20737,-0.0875131 +-0.30166,0.288981,-1.92258,-1.30554,-1.21098,-0.0755957 +-0.298937,0.290081,-1.91864,-1.30753,-1.21525,-0.0636151 +-0.295848,0.290985,-1.91443,-1.30825,-1.22037,-0.0515206 +-0.29234,0.291701,-1.90994,-1.30768,-1.22642,-0.0392766 +-0.28842,0.292255,-1.90515,-1.30581,-1.23337,-0.0268938 +-0.284134,0.292675,-1.90005,-1.30262,-1.24113,-0.0144111 +-0.279516,0.292982,-1.89464,-1.29814,-1.24961,-0.00185117 +-0.274565,0.293194,-1.88899,-1.29254,-1.25885,0.0108075 +-0.269259,0.29332,-1.88317,-1.28604,-1.26892,0.0236123 +-0.263598,0.293373,-1.87728,-1.27883,-1.27982,0.0365877 +-0.257629,0.293365,-1.87133,-1.27102,-1.29144,0.049234 +-0.251412,0.293313,-1.8653,-1.2626,-1.30366,0.0603071 +-0.245,0.293245,-1.85912,-1.25351,-1.3164,0.0687436 +-0.238436,0.293193,-1.85273,-1.24376,-1.32955,0.0741909 +-0.231761,0.293188,-1.84612,-1.23338,-1.343,0.0767632 +-0.225008,0.293248,-1.83939,-1.22257,-1.35664,0.0768601 +-0.218188,0.293374,-1.8327,-1.21168,-1.3704,0.0750237 +-0.211318,0.293562,-1.8263,-1.20117,-1.38421,0.0718147 +-0.20442,0.293813,-1.82032,-1.19135,-1.39795,0.0677233 +-0.197521,0.294147,-1.81474,-1.18221,-1.41151,0.0631292 +-0.190656,0.294588,-1.80947,-1.1736,-1.42481,0.0583026 +-0.183875,0.295142,-1.80453,-1.16556,-1.43769,0.0534172 +-0.177249,0.295776,-1.80009,-1.15838,-1.44999,0.0485648 +-0.170845,0.29644,-1.79638,-1.15242,-1.46154,0.0437807 +-0.164692,0.297095,-1.79352,-1.14785,-1.47226,0.0390712 +-0.158782,0.297731,-1.79144,-1.14451,-1.48221,0.034425 +-0.153102,0.298347,-1.78998,-1.1421,-1.49143,0.0298091 +-0.147665,0.298935,-1.78903,-1.14039,-1.49989,0.0251657 +-0.142495,0.299475,-1.78855,-1.1393,-1.50755,0.0204335 +-0.137601,0.299956,-1.78852,-1.13876,-1.51442,0.0155685 +-0.132974,0.300385,-1.78891,-1.13869,-1.52053,0.0105457 +-0.128603,0.300776,-1.78966,-1.13902,-1.52593,0.00534712 +-0.124516,0.301118,-1.79078,-1.1398,-1.53057,-6.04231e-05 +-0.120781,0.301361,-1.79244,-1.14127,-1.53433,-0.00573124 +-0.117465,0.301437,-1.79479,-1.14366,-1.53711,-0.0117146 +-0.11458,0.3013,-1.79789,-1.147,-1.5389,-0.0180216 +-0.112066,0.30094,-1.80161,-1.15106,-1.53982,-0.0246145 +-0.109841,0.300377,-1.80579,-1.15558,-1.54006,-0.0314344 +-0.107865,0.299625,-1.81037,-1.16047,-1.53975,-0.0384508 +-0.106158,0.298682,-1.81535,-1.16576,-1.53893,-0.0456778 +-0.104753,0.297543,-1.82078,-1.17153,-1.53761,-0.0531375 +-0.103631,0.296229,-1.82663,-1.17777,-1.53587,-0.0608137 +-0.102707,0.294787,-1.8328,-1.18432,-1.53389,-0.0686438 +-0.10189,0.293268,-1.83913,-1.19101,-1.53184,-0.076559 +-0.101146,0.291706,-1.84555,-1.19774,-1.52981,-0.0845364 +-0.100517,0.290103,-1.85205,-1.20447,-1.52781,-0.0926115 +-0.10006,0.288443,-1.85862,-1.21107,-1.52581,-0.100836 +-0.0997836,0.286705,-1.86522,-1.21737,-1.52385,-0.109227 +-0.099645,0.284883,-1.87177,-1.22314,-1.52201,-0.117759 +-0.0995972,0.282972,-1.87819,-1.22823,-1.52036,-0.126401 +-0.099645,0.280971,-1.88445,-1.23257,-1.51888,-0.135157 +-0.0998607,0.278871,-1.89052,-1.23614,-1.51747,-0.144086 +-0.10033,0.276672,-1.89641,-1.23895,-1.51602,-0.153257 +-0.10108,0.274404,-1.90213,-1.24105,-1.51446,-0.162691 +-0.102068,0.272119,-1.90768,-1.24253,-1.51284,-0.17235 +-0.103218,0.26989,-1.91305,-1.24353,-1.51122,-0.18217 +-0.104483,0.26778,-1.91823,-1.24419,-1.50965,-0.192105 +-0.105894,0.265829,-1.92322,-1.24459,-1.50806,-0.20218 +-0.107542,0.264045,-1.92801,-1.24483,-1.50629,-0.21246 +-0.109498,0.262414,-1.93262,-1.24497,-1.5042,-0.222999 +-0.111752,0.260902,-1.93711,-1.24507,-1.50179,-0.233789 +-0.114222,0.259459,-1.9415,-1.24515,-1.49915,-0.244761 +-0.116807,0.258024,-1.94586,-1.24515,-1.49637,-0.255836 +-0.11944,0.256531,-1.95021,-1.24505,-1.49353,-0.266963 +-0.122103,0.254922,-1.95457,-1.24475,-1.49064,-0.27813 +-0.124828,0.253151,-1.95894,-1.24419,-1.48766,-0.289364 +-0.127678,0.2512,-1.96327,-1.24331,-1.48453,-0.300721 +-0.130731,0.24908,-1.9675,-1.24208,-1.48116,-0.312261 +-0.134062,0.246825,-1.97158,-1.24053,-1.47744,-0.324047 +-0.137717,0.244478,-1.97545,-1.23864,-1.47332,-0.336117 +-0.141691,0.242087,-1.97909,-1.23642,-1.4688,-0.348469 +-0.145941,0.239696,-1.98251,-1.2339,-1.46392,-0.361074 +-0.150408,0.23735,-1.98569,-1.23107,-1.45879,-0.373885 +-0.155042,0.235083,-1.98863,-1.22796,-1.45348,-0.386383 +-0.159815,0.232928,-1.99133,-1.22461,-1.44802,-0.397342 +-0.164727,0.23091,-1.9938,-1.22111,-1.44238,-0.405729 +-0.169795,0.229046,-1.99606,-1.21758,-1.43649,-0.411225 +-0.175027,0.22734,-1.99814,-1.21408,-1.43029,-0.413972 +-0.180425,0.225793,-2.00007,-1.21066,-1.42375,-0.414374 +-0.185991,0.224405,-2.00186,-1.20738,-1.41682,-0.412952 +-0.191735,0.223177,-2.00353,-1.20433,-1.40943,-0.410244 +-0.197671,0.222113,-2.0051,-1.20156,-1.40153,-0.406742 +-0.203815,0.221209,-2.00659,-1.19912,-1.39303,-0.402861 +-0.21018,0.220444,-2.00803,-1.19699,-1.38388,-0.398921 +-0.216751,0.219789,-2.00944,-1.19509,-1.37412,-0.395136 +-0.223483,0.219218,-2.01085,-1.19332,-1.36389,-0.391614 +-0.230315,0.218729,-2.01222,-1.19163,-1.35333,-0.388377 +-0.237189,0.218352,-2.01349,-1.19003,-1.3426,-0.38539 +-0.244037,0.218135,-2.01457,-1.18858,-1.33183,-0.382574 +-0.250796,0.218118,-2.01538,-1.18733,-1.32117,-0.379831 +-0.257423,0.218313,-2.0159,-1.18628,-1.31076,-0.377084 +-0.263909,0.218702,-2.01613,-1.18539,-1.30061,-0.374298 +-0.270269,0.219259,-2.01614,-1.1846,-1.29072,-0.371462 +-0.276507,0.219968,-2.01595,-1.18388,-1.28107,-0.368564 +-0.282611,0.220828,-2.0156,-1.1832,-1.27168,-0.365579 +-0.288575,0.221857,-2.01506,-1.18255,-1.26256,-0.362485 +-0.29439,0.223073,-2.01432,-1.18194,-1.25367,-0.359267 +-0.300051,0.224486,-2.01337,-1.1814,-1.24497,-0.355905 +-0.305549,0.226097,-2.01218,-1.18092,-1.23644,-0.35239 +-0.310869,0.227893,-2.01073,-1.18045,-1.22808,-0.348705 +-0.315998,0.229852,-2.00898,-1.17997,-1.21989,-0.344839 +-0.32093,0.231949,-2.00695,-1.17943,-1.21188,-0.340789 +-0.325662,0.234159,-2.00462,-1.17879,-1.20404,-0.336557 +-0.330204,0.236461,-2.00203,-1.17803,-1.19636,-0.332155 +-0.334567,0.23884,-1.99919,-1.17716,-1.18886,-0.327594 +-0.33876,0.241287,-1.99614,-1.1762,-1.18155,-0.322882 +-0.342795,0.243798,-1.99292,-1.17519,-1.17442,-0.318026 +-0.346651,0.246364,-1.98954,-1.1742,-1.16748,-0.312995 +-0.350264,0.248975,-1.98602,-1.17338,-1.16083,-0.307697 +-0.353563,0.251617,-1.98241,-1.17292,-1.15458,-0.302025 +-0.356537,0.254286,-1.97874,-1.17297,-1.14876,-0.295939 +-0.359268,0.25699,-1.97509,-1.17362,-1.14322,-0.289512 +-0.361887,0.259743,-1.9715,-1.1748,-1.13778,-0.282889 +-0.364489,0.262553,-1.96801,-1.17646,-1.13232,-0.276179 +-0.367071,0.265421,-1.96465,-1.17865,-1.12686,-0.269373 +-0.369532,0.268341,-1.96143,-1.18147,-1.12152,-0.262346 +-0.371728,0.271299,-1.95833,-1.18508,-1.11645,-0.25492 +-0.373542,0.274283,-1.95533,-1.18954,-1.1118,-0.246958 +-0.374943,0.277275,-1.95237,-1.19477,-1.10762,-0.238433 +-0.375973,0.280262,-1.94943,-1.20063,-1.10387,-0.229408 +-0.376693,0.283216,-1.9465,-1.20693,-1.10045,-0.219972 +-0.377126,0.286083,-1.94359,-1.21348,-1.09735,-0.210183 +-0.377239,0.288793,-1.9407,-1.22012,-1.09464,-0.200033 +-0.376979,0.29128,-1.93788,-1.22683,-1.09246,-0.189476 +-0.376306,0.293498,-1.93515,-1.23354,-1.09093,-0.178482 +-0.375228,0.295424,-1.93247,-1.24009,-1.09013,-0.167084 +-0.373811,0.297069,-1.9298,-1.2463,-1.09,-0.155382 +-0.372155,0.298471,-1.92707,-1.25197,-1.09039,-0.143513 +-0.370345,0.299679,-1.92421,-1.25693,-1.09116,-0.131594 +-0.368433,0.300739,-1.92113,-1.26102,-1.09224,-0.119709 +-0.36644,0.301681,-1.91778,-1.26407,-1.09361,-0.107914 +-0.36434,0.302516,-1.91412,-1.26604,-1.09534,-0.0961956 +-0.362073,0.303227,-1.91018,-1.26695,-1.09758,-0.084495 +-0.359568,0.303786,-1.90601,-1.26684,-1.10048,-0.0727444 +-0.356768,0.304163,-1.90165,-1.26581,-1.10415,-0.0608777 +-0.353632,0.304337,-1.89716,-1.2639,-1.10868,-0.0488509 +-0.350144,0.3043,-1.89255,-1.26114,-1.11411,-0.0371281 +-0.346309,0.304061,-1.88785,-1.25761,-1.12043,-0.0269092 +-0.342151,0.303647,-1.88308,-1.25339,-1.12757,-0.0192346 +-0.337695,0.30309,-1.87824,-1.24854,-1.13547,-0.0144447 +-0.332955,0.302425,-1.87333,-1.24312,-1.1441,-0.01241 +-0.327947,0.301698,-1.86833,-1.23719,-1.15341,-0.0127353 +-0.322683,0.300958,-1.86324,-1.23081,-1.16337,-0.0149005 +-0.31718,0.300255,-1.85803,-1.22405,-1.17393,-0.0183761 +-0.31146,0.299627,-1.85269,-1.21693,-1.18503,-0.0226969 +-0.305539,0.299089,-1.84719,-1.20939,-1.19663,-0.0274778 +-0.299435,0.298637,-1.84154,-1.20147,-1.20871,-0.0324236 +-0.293165,0.298257,-1.83577,-1.19321,-1.22121,-0.0373278 +-0.286742,0.297932,-1.82993,-1.1847,-1.23412,-0.0420524 +-0.280167,0.297655,-1.82412,-1.17614,-1.24744,-0.0465054 +-0.273431,0.297429,-1.81842,-1.16772,-1.26118,-0.0506338 +-0.266534,0.29726,-1.81285,-1.15953,-1.27537,-0.0544332 +-0.259496,0.297154,-1.80744,-1.15161,-1.28992,-0.0579451 +-0.252351,0.297113,-1.80213,-1.14385,-1.30474,-0.0612379 +-0.245121,0.297136,-1.79688,-1.13613,-1.31977,-0.0643765 +-0.237833,0.29721,-1.79171,-1.12851,-1.33493,-0.067411 +-0.230537,0.29732,-1.78681,-1.12132,-1.35008,-0.0703838 +-0.223285,0.297441,-1.78241,-1.11501,-1.36503,-0.0733267 +-0.216124,0.297554,-1.77874,-1.11,-1.37963,-0.076267 +-0.209094,0.297648,-1.77592,-1.10652,-1.39376,-0.0792331 +-0.202226,0.297723,-1.77402,-1.10469,-1.40734,-0.0822539 +-0.19554,0.297795,-1.77297,-1.10439,-1.4203,-0.0853618 +-0.189046,0.29789,-1.77261,-1.10528,-1.43263,-0.0885897 +-0.182744,0.298037,-1.77274,-1.10699,-1.44429,-0.0919646 +-0.17664,0.298253,-1.77321,-1.10923,-1.45528,-0.0955107 +-0.170755,0.298533,-1.77396,-1.11182,-1.46556,-0.0992528 +-0.16511,0.298853,-1.77498,-1.11471,-1.47508,-0.10321 +-0.159733,0.299179,-1.77632,-1.11793,-1.48381,-0.107401 +-0.154655,0.299474,-1.77804,-1.12155,-1.4917,-0.111842 +-0.149902,0.299708,-1.78019,-1.12559,-1.49871,-0.11655 +-0.145486,0.299864,-1.78274,-1.13,-1.5048,-0.121535 +-0.141403,0.299939,-1.78564,-1.13466,-1.51,-0.126798 +-0.137637,0.299941,-1.78883,-1.13946,-1.51436,-0.132329 +-0.134193,0.299875,-1.7923,-1.14441,-1.51789,-0.138129 +-0.131109,0.299734,-1.79613,-1.14966,-1.52056,-0.144222 +-0.128435,0.299498,-1.80041,-1.15537,-1.52232,-0.150636 +-0.126199,0.29914,-1.80521,-1.16163,-1.52317,-0.157391 +-0.124395,0.298631,-1.8105,-1.16839,-1.52314,-0.164481 +-0.122979,0.297947,-1.81622,-1.17547,-1.52234,-0.171875 +-0.121874,0.297078,-1.82225,-1.1827,-1.52095,-0.179522 +-0.121001,0.29603,-1.82851,-1.18991,-1.51914,-0.18736 +-0.120312,0.294813,-1.83492,-1.19701,-1.51705,-0.195355 +-0.119821,0.293432,-1.84146,-1.20399,-1.51471,-0.203519 +-0.119586,0.291891,-1.84817,-1.2109,-1.51208,-0.211894 +-0.119634,0.2902,-1.85503,-1.21772,-1.5092,-0.220504 +-0.119916,0.288376,-1.86197,-1.22429,-1.50616,-0.229318 +-0.120332,0.286443,-1.86885,-1.23036,-1.50314,-0.238269 +-0.120811,0.28442,-1.87556,-1.23573,-1.50025,-0.247311 +-0.121365,0.282308,-1.88207,-1.24031,-1.49749,-0.256459 +-0.122083,0.280094,-1.88837,-1.24406,-1.49479,-0.265785 +-0.123055,0.277773,-1.89445,-1.24694,-1.49203,-0.275364 +-0.1243,0.275366,-1.9003,-1.24892,-1.48919,-0.285217 +-0.125775,0.272924,-1.90588,-1.25002,-1.48632,-0.29531 +-0.127431,0.270513,-1.91119,-1.25032,-1.48345,-0.305601 +-0.129254,0.268201,-1.91621,-1.24998,-1.48058,-0.316075 +-0.131268,0.266042,-1.92097,-1.24922,-1.47769,-0.326735 +-0.1335,0.264059,-1.9255,-1.24823,-1.47472,-0.337595 +-0.135957,0.262243,-1.92984,-1.24713,-1.47164,-0.348653 +-0.138628,0.260554,-1.93404,-1.24603,-1.46843,-0.35989 +-0.141484,0.258936,-1.93818,-1.245,-1.46509,-0.370799 +-0.144496,0.257324,-1.9423,-1.24405,-1.46164,-0.38015 +-0.147658,0.255663,-1.94643,-1.24316,-1.45804,-0.38691 +-0.151005,0.253925,-1.95056,-1.24232,-1.45422,-0.390781 +-0.154603,0.252121,-1.95464,-1.24149,-1.45003,-0.391951 +-0.158517,0.250289,-1.95858,-1.24065,-1.44538,-0.390879 +-0.162778,0.248471,-1.96231,-1.23975,-1.44019,-0.388114 +-0.167353,0.246706,-1.96584,-1.23877,-1.4345,-0.384173 +-0.172172,0.245016,-1.96918,-1.23768,-1.4284,-0.379493 +-0.177176,0.243412,-1.97236,-1.23642,-1.42195,-0.374438 +-0.182338,0.241902,-1.97538,-1.23496,-1.41517,-0.369298 +-0.187651,0.24049,-1.97819,-1.23326,-1.40809,-0.364284 +-0.193126,0.239183,-1.98074,-1.23128,-1.40069,-0.359538 +-0.198777,0.237992,-1.98298,-1.22906,-1.39292,-0.35514 +-0.204607,0.236926,-1.98491,-1.22666,-1.38478,-0.351106 +-0.210613,0.235978,-1.98654,-1.22417,-1.37622,-0.347423 +-0.216797,0.235123,-1.98796,-1.22164,-1.36724,-0.344068 +-0.223145,0.234325,-1.98923,-1.2191,-1.35783,-0.341005 +-0.229628,0.23357,-1.99043,-1.21657,-1.34806,-0.338176 +-0.236197,0.232885,-1.99153,-1.21412,-1.33803,-0.335503 +-0.242795,0.232339,-1.99247,-1.21183,-1.32783,-0.332899 +-0.249357,0.23201,-1.99318,-1.2098,-1.31761,-0.330269 +-0.255837,0.231951,-1.9936,-1.20807,-1.30745,-0.327553 +-0.262219,0.232181,-1.99373,-1.20662,-1.29738,-0.324731 +-0.268496,0.232694,-1.9936,-1.20542,-1.28742,-0.321802 +-0.274639,0.233476,-1.99322,-1.20436,-1.27766,-0.31875 +-0.280613,0.234519,-1.99259,-1.20339,-1.26818,-0.315551 +-0.286407,0.235827,-1.9917,-1.20253,-1.25898,-0.31219 +-0.292027,0.237398,-1.99057,-1.20178,-1.24998,-0.308674 +-0.297477,0.239214,-1.98917,-1.20113,-1.24115,-0.305007 +-0.302767,0.241246,-1.98753,-1.20058,-1.23244,-0.301197 +-0.307906,0.243458,-1.98566,-1.20011,-1.22381,-0.297249 +-0.312895,0.245809,-1.98358,-1.19971,-1.21527,-0.293162 +-0.317733,0.248259,-1.9813,-1.19937,-1.20682,-0.288932 +-0.322422,0.250776,-1.97885,-1.19912,-1.19848,-0.28455 +-0.326956,0.253333,-1.97626,-1.19903,-1.19027,-0.279996 +-0.331327,0.255912,-1.97357,-1.19917,-1.18223,-0.275247 +-0.335526,0.258499,-1.97082,-1.19961,-1.17442,-0.270281 +-0.339548,0.261092,-1.96803,-1.2004,-1.16684,-0.265079 +-0.343378,0.263697,-1.96523,-1.20167,-1.15953,-0.259605 +-0.346992,0.266327,-1.96246,-1.20354,-1.15253,-0.253815 +-0.350376,0.269,-1.95972,-1.20606,-1.14586,-0.247682 +-0.35353,0.271737,-1.95701,-1.20927,-1.13949,-0.241202 +-0.356454,0.27455,-1.95431,-1.2131,-1.13341,-0.234378 +-0.359137,0.277438,-1.95159,-1.21748,-1.12761,-0.227215 +-0.36155,0.280374,-1.94882,-1.22227,-1.1221,-0.219699 +-0.363636,0.283304,-1.94598,-1.2274,-1.11697,-0.211781 +-0.365331,0.286162,-1.94309,-1.23277,-1.11231,-0.20341 +-0.366607,0.288885,-1.94012,-1.23822,-1.10819,-0.194578 +-0.367496,0.291433,-1.93707,-1.24356,-1.10458,-0.185345 +-0.368084,0.293791,-1.93388,-1.24857,-1.10137,-0.175835 +-0.368471,0.295963,-1.93053,-1.25299,-1.0984,-0.166195 +-0.368725,0.297957,-1.92697,-1.25659,-1.09556,-0.156539 +-0.368847,0.29978,-1.92316,-1.25922,-1.09288,-0.146901 +-0.368776,0.301432,-1.91907,-1.26082,-1.09054,-0.137236 +-0.368451,0.30291,-1.91469,-1.26132,-1.08872,-0.127496 +-0.367831,0.304211,-1.90999,-1.26068,-1.08751,-0.117652 +-0.366873,0.305323,-1.905,-1.2589,-1.08703,-0.107668 +-0.365539,0.306228,-1.89973,-1.25602,-1.08741,-0.0974976 +-0.363785,0.306897,-1.89427,-1.25213,-1.08875,-0.0870892 +-0.361553,0.307303,-1.88869,-1.24741,-1.09122,-0.0763543 +-0.358805,0.307434,-1.88305,-1.24198,-1.09499,-0.0652333 +-0.355591,0.307313,-1.87732,-1.23583,-1.09994,-0.0537763 +-0.352023,0.306999,-1.87138,-1.22873,-1.10584,-0.0426029 +-0.348221,0.306558,-1.86508,-1.22042,-1.11243,-0.0330683 +-0.344255,0.306052,-1.85835,-1.21079,-1.11956,-0.0262801 +-0.340117,0.305521,-1.85124,-1.20006,-1.12722,-0.0225263 +-0.335755,0.304989,-1.84392,-1.18868,-1.13551,-0.0215605 +-0.331104,0.304467,-1.83658,-1.1771,-1.1445,-0.0228593 +-0.326123,0.303972,-1.8293,-1.1656,-1.15429,-0.0258263 +-0.320827,0.303529,-1.82207,-1.15421,-1.1648,-0.0299346 +-0.315268,0.303169,-1.81482,-1.14279,-1.17594,-0.0347614 +-0.309491,0.302918,-1.80743,-1.13113,-1.18762,-0.0399695 +-0.303517,0.302788,-1.79983,-1.11912,-1.19982,-0.0452838 +-0.297353,0.302785,-1.79202,-1.10673,-1.21256,-0.050495 +-0.291,0.302904,-1.78402,-1.09402,-1.22583,-0.0554647 +-0.284468,0.30314,-1.77588,-1.08107,-1.2396,-0.0601221 +-0.277776,0.303487,-1.76764,-1.06796,-1.25382,-0.0644508 +-0.270932,0.303941,-1.75935,-1.05482,-1.26845,-0.068454 +-0.263948,0.304497,-1.7511,-1.04179,-1.28346,-0.0721527 +-0.256847,0.305153,-1.74294,-1.029,-1.29875,-0.0755908 +-0.249648,0.305899,-1.73497,-1.01663,-1.31425,-0.0788072 +-0.242374,0.306707,-1.72735,-1.00498,-1.32989,-0.0818327 +-0.235064,0.307534,-1.72026,-0.994386,-1.34553,-0.0847061 +-0.227761,0.308332,-1.71387,-0.985115,-1.36104,-0.0874731 +-0.220503,0.309079,-1.70826,-0.977247,-1.3763,-0.0901806 +-0.213306,0.309792,-1.70332,-0.970599,-1.39126,-0.0928714 +-0.206176,0.310517,-1.69886,-0.964848,-1.40589,-0.0955811 +-0.199115,0.311291,-1.69472,-0.959712,-1.4202,-0.0983354 +-0.192135,0.312114,-1.69089,-0.95515,-1.43419,-0.101152 +-0.185269,0.312928,-1.68758,-0.951476,-1.44778,-0.104041 +-0.178556,0.313663,-1.68502,-0.949088,-1.46088,-0.107017 +-0.172026,0.314272,-1.68339,-0.948246,-1.4734,-0.11009 +-0.165684,0.314761,-1.68269,-0.948954,-1.48532,-0.113266 +-0.159513,0.315182,-1.68268,-0.950837,-1.49669,-0.116551 +-0.153495,0.315592,-1.68313,-0.95341,-1.50756,-0.119955 +-0.147625,0.316017,-1.68387,-0.956399,-1.51793,-0.123489 +-0.141924,0.316446,-1.68487,-0.959722,-1.52774,-0.127172 +-0.136431,0.316848,-1.68618,-0.963427,-1.53689,-0.131035 +-0.131187,0.317187,-1.6879,-0.967659,-1.54528,-0.135104 +-0.126234,0.317436,-1.69015,-0.972613,-1.55283,-0.139407 +-0.121604,0.317576,-1.69303,-0.978454,-1.55946,-0.143966 +-0.117324,0.317595,-1.69657,-0.985267,-1.56513,-0.148796 +-0.113411,0.317484,-1.70079,-0.993047,-1.56983,-0.153914 +-0.109853,0.317243,-1.70561,-1.00167,-1.57359,-0.159313 +-0.106604,0.316884,-1.71091,-1.01087,-1.57652,-0.164966 +-0.103607,0.316426,-1.71648,-1.02027,-1.57876,-0.170838 +-0.100823,0.31588,-1.72215,-1.02953,-1.58037,-0.176908 +-0.0982576,0.315238,-1.72787,-1.0385,-1.58137,-0.183186 +-0.0959712,0.314468,-1.73373,-1.04733,-1.58167,-0.189715 +-0.0940482,0.313531,-1.73991,-1.05631,-1.58114,-0.196556 +-0.0925359,0.312403,-1.74653,-1.06561,-1.57975,-0.203737 +-0.0914181,0.311082,-1.75359,-1.07528,-1.57757,-0.211243 +-0.0906315,0.309592,-1.76104,-1.0853,-1.57472,-0.21902 +-0.0900968,0.30797,-1.76876,-1.09552,-1.57137,-0.227004 +-0.089754,0.30626,-1.77665,-1.10583,-1.56768,-0.235149 +-0.08957,0.304506,-1.78467,-1.11623,-1.56378,-0.243426 +-0.08952,0.302744,-1.79281,-1.12674,-1.55978,-0.251814 +-0.0895717,0.300992,-1.80102,-1.13733,-1.55578,-0.260286 +-0.0896763,0.299257,-1.80927,-1.14796,-1.55188,-0.268803 +-0.0897956,0.297532,-1.81751,-1.15852,-1.54819,-0.277337 +-0.0899389,0.295804,-1.8257,-1.16888,-1.54471,-0.285901 +-0.0901599,0.29406,-1.83384,-1.17901,-1.54143,-0.294538 +-0.0905284,0.292292,-1.84195,-1.1889,-1.53829,-0.303305 +-0.0910802,0.290488,-1.85,-1.19844,-1.53525,-0.312237 +-0.0917876,0.288633,-1.85791,-1.20738,-1.53235,-0.321322 +-0.0925956,0.286712,-1.86559,-1.21547,-1.52964,-0.330045 +-0.0934809,0.284707,-1.87297,-1.22256,-1.52713,-0.33719 +-0.094481,0.282601,-1.88004,-1.22855,-1.52474,-0.341762 +-0.0956822,0.280381,-1.88679,-1.23346,-1.52235,-0.343502 +-0.0971804,0.278055,-1.89322,-1.23733,-1.5198,-0.342624 +-0.0990405,0.275653,-1.89933,-1.24024,-1.51699,-0.339581 +-0.101275,0.273227,-1.90511,-1.24229,-1.51387,-0.334902 +-0.103826,0.270839,-1.91057,-1.2436,-1.5105,-0.329074 +-0.106577,0.268552,-1.91573,-1.24434,-1.50703,-0.322486 +-0.109396,0.266414,-1.92064,-1.24465,-1.50361,-0.315428 +-0.112193,0.264464,-1.92535,-1.24471,-1.50031,-0.308128 +-0.114966,0.262722,-1.92988,-1.24467,-1.49711,-0.300791 +-0.117796,0.261188,-1.93423,-1.24461,-1.49389,-0.293611 +-0.120789,0.25983,-1.9384,-1.24455,-1.4905,-0.286739 +-0.124003,0.25858,-1.94241,-1.24452,-1.48685,-0.280243 +-0.127439,0.257343,-1.94633,-1.24446,-1.48295,-0.274121 +-0.131081,0.256032,-1.95018,-1.24429,-1.47882,-0.268335 +-0.134942,0.254596,-1.95394,-1.24397,-1.47442,-0.262864 +-0.139069,0.253029,-1.95753,-1.24344,-1.46969,-0.257707 +-0.143494,0.251349,-1.9609,-1.24272,-1.46455,-0.252857 +-0.148209,0.249581,-1.96405,-1.24183,-1.45899,-0.248282 +-0.153166,0.24776,-1.96704,-1.24079,-1.45306,-0.243927 +-0.158308,0.245946,-1.96986,-1.23962,-1.44683,-0.23974 +-0.163608,0.244225,-1.97249,-1.23837,-1.44028,-0.235689 +-0.169068,0.242687,-1.97484,-1.23707,-1.43338,-0.231769 +-0.174696,0.241384,-1.9769,-1.23574,-1.42606,-0.227989 +-0.180485,0.240307,-1.97869,-1.23436,-1.41833,-0.224348 +-0.186399,0.239411,-1.98026,-1.23285,-1.41026,-0.220829 +-0.19241,0.238661,-1.98162,-1.23118,-1.40192,-0.217415 +-0.198489,0.238056,-1.98275,-1.2294,-1.3933,-0.214074 +-0.204596,0.237617,-1.98358,-1.22756,-1.38448,-0.21076 +-0.210708,0.237348,-1.98407,-1.22576,-1.37551,-0.207444 +-0.216843,0.237219,-1.98427,-1.224,-1.36634,-0.204138 +-0.223018,0.237193,-1.98425,-1.22235,-1.35694,-0.200859 +-0.229192,0.237269,-1.98405,-1.2209,-1.34737,-0.197559 +-0.235254,0.237495,-1.98361,-1.21975,-1.3378,-0.194128 +-0.241099,0.237931,-1.98285,-1.21895,-1.3284,-0.190459 +-0.246678,0.238624,-1.98173,-1.21851,-1.31925,-0.186508 +-0.252014,0.239584,-1.98031,-1.21844,-1.31035,-0.1823 +-0.257174,0.240799,-1.97868,-1.2187,-1.30164,-0.177908 +-0.262194,0.242254,-1.97691,-1.21923,-1.29308,-0.173376 +-0.267046,0.243946,-1.97499,-1.22003,-1.28473,-0.168675 +-0.271672,0.245877,-1.97294,-1.22118,-1.27669,-0.163741 +-0.276038,0.248037,-1.97074,-1.22274,-1.26903,-0.158526 +-0.280139,0.250404,-1.96841,-1.22475,-1.26175,-0.153014 +-0.283984,0.252938,-1.96599,-1.22723,-1.25481,-0.147204 +-0.287566,0.255589,-1.96351,-1.23018,-1.24824,-0.14108 +-0.290854,0.258306,-1.96097,-1.23367,-1.24207,-0.134598 +-0.293816,0.26104,-1.95842,-1.23772,-1.23635,-0.127716 +-0.296446,0.263753,-1.95584,-1.2423,-1.23108,-0.120424 +-0.298762,0.266421,-1.95327,-1.24739,-1.22622,-0.112738 +-0.300774,0.26903,-1.9507,-1.25294,-1.2218,-0.104672 +-0.302479,0.271575,-1.94814,-1.2589,-1.21783,-0.0962327 +-0.303856,0.274056,-1.94557,-1.2652,-1.21438,-0.0874097 +-0.304858,0.276464,-1.94297,-1.27171,-1.21156,-0.0781845 +-0.305455,0.278785,-1.94028,-1.27823,-1.20946,-0.0685583 +-0.305641,0.281005,-1.93747,-1.28458,-1.20809,-0.0585587 +-0.305428,0.283104,-1.9345,-1.29059,-1.20744,-0.0482295 +-0.304831,0.285056,-1.93135,-1.29601,-1.2075,-0.0376226 +-0.303856,0.286827,-1.92796,-1.30059,-1.2083,-0.0267871 +-0.302506,0.288391,-1.92429,-1.30409,-1.20986,-0.0157635 +-0.300777,0.289733,-1.9203,-1.30636,-1.21222,-0.00458024 +-0.298659,0.290852,-1.91598,-1.30728,-1.21541,0.00674782 +-0.296129,0.291761,-1.91129,-1.30675,-1.2195,0.0177362 +-0.29318,0.29248,-1.90622,-1.30469,-1.22453,0.0271736 +-0.28986,0.29304,-1.90071,-1.30105,-1.23041,0.0339819 +-0.286263,0.293478,-1.89474,-1.29578,-1.23691,0.0377517 +-0.282466,0.293826,-1.88829,-1.28887,-1.24388,0.038557 +-0.278495,0.294099,-1.88132,-1.28027,-1.25129,0.0367846 +-0.274332,0.294311,-1.87384,-1.27003,-1.25921,0.0329848 +-0.26995,0.294476,-1.86588,-1.25829,-1.26773,0.0277442 +-0.265319,0.294614,-1.85748,-1.2452,-1.27691,0.0216009 +-0.260422,0.294744,-1.84868,-1.2309,-1.2868,0.0149976 +-0.255261,0.294896,-1.83954,-1.21559,-1.29737,0.00826954 +-0.249849,0.295102,-1.83009,-1.19943,-1.30859,0.00164767 +-0.244206,0.295391,-1.82032,-1.18251,-1.32041,-0.00473212 +-0.238352,0.295791,-1.81023,-1.16484,-1.33277,-0.0108013 +-0.232313,0.296323,-1.79988,-1.14662,-1.3456,-0.0165345 +-0.226112,0.296993,-1.78939,-1.12816,-1.35881,-0.0219219 +-0.219761,0.297791,-1.77897,-1.10992,-1.37231,-0.0269593 +-0.213274,0.298698,-1.76885,-1.09236,-1.38601,-0.031654 +-0.206659,0.299701,-1.7592,-1.07584,-1.39986,-0.0360241 +-0.199931,0.300802,-1.75009,-1.0605,-1.4138,-0.0401064 +-0.193115,0.302021,-1.74148,-1.04629,-1.42777,-0.043958 +-0.186246,0.303382,-1.73327,-1.03302,-1.44171,-0.0476449 +-0.179361,0.304911,-1.72535,-1.02049,-1.45554,-0.0512312 +-0.172494,0.306623,-1.71763,-1.00851,-1.46919,-0.0547715 +-0.165671,0.308523,-1.71002,-0.996888,-1.48261,-0.0583074 +-0.158914,0.310602,-1.70247,-0.9855,-1.49575,-0.0618696 +-0.152241,0.312835,-1.695,-0.974294,-1.50858,-0.0654768 +-0.145666,0.315185,-1.68766,-0.963355,-1.52104,-0.0691367 +-0.13921,0.317601,-1.68059,-0.952895,-1.53309,-0.0728552 +-0.132896,0.320027,-1.67393,-0.943118,-1.54463,-0.0766426 +-0.126752,0.32241,-1.6678,-0.93421,-1.55559,-0.080515 +-0.120806,0.324693,-1.66234,-0.926368,-1.56587,-0.0844888 +-0.115084,0.326824,-1.65768,-0.919762,-1.5754,-0.0885832 +-0.109616,0.328757,-1.6539,-0.914512,-1.58409,-0.0928216 +-0.104416,0.330457,-1.65108,-0.910719,-1.59191,-0.0972182 +-0.0994909,0.331905,-1.64922,-0.908407,-1.59886,-0.101783 +-0.0948491,0.333095,-1.64828,-0.907487,-1.60493,-0.10653 +-0.0904829,0.334039,-1.64815,-0.907769,-1.61013,-0.111464 +-0.086363,0.334767,-1.64865,-0.908949,-1.61454,-0.116575 +-0.0824572,0.33531,-1.64961,-0.910702,-1.61823,-0.121847 +-0.0787549,0.335679,-1.65091,-0.912818,-1.62122,-0.127282 +-0.0752923,0.33583,-1.65264,-0.915422,-1.62344,-0.13291 +-0.0721505,0.33567,-1.65511,-0.918982,-1.62477,-0.138791 +-0.0694133,0.335106,-1.65863,-0.92398,-1.62508,-0.144988 +-0.0671035,0.334114,-1.66329,-0.930544,-1.62438,-0.151519 +-0.0651489,0.332777,-1.66884,-0.938262,-1.62285,-0.158334 +-0.0634183,0.331248,-1.6748,-0.946377,-1.62075,-0.165342 +-0.0617881,0.329668,-1.68075,-0.954241,-1.61833,-0.172452 +-0.0601986,0.32811,-1.68652,-0.961629,-1.61575,-0.179619 +-0.0586681,0.326561,-1.69222,-0.968756,-1.61303,-0.186853 +-0.057251,0.324966,-1.69811,-0.9761,-1.61014,-0.194189 +-0.0559898,0.323274,-1.70445,-0.984111,-1.60709,-0.201651 +-0.0548924,0.321465,-1.71136,-0.993043,-1.60391,-0.209239 +-0.0539424,0.319548,-1.71887,-1.00304,-1.60067,-0.216934 +-0.0531226,0.317549,-1.72699,-1.01419,-1.59743,-0.224716 +-0.0524255,0.315494,-1.73569,-1.02654,-1.59424,-0.232578 +-0.0518413,0.313417,-1.7449,-1.03999,-1.59116,-0.240513 +-0.0513458,0.311352,-1.75453,-1.05438,-1.58826,-0.248504 +-0.0508971,0.309334,-1.76443,-1.06943,-1.58562,-0.256522 +-0.0504412,0.307391,-1.77446,-1.08487,-1.58333,-0.264529 +-0.0499338,0.305537,-1.78447,-1.10043,-1.58146,-0.272495 +-0.0493611,0.303763,-1.79439,-1.11587,-1.58001,-0.280415 +-0.0487478,0.302047,-1.80419,-1.13106,-1.57894,-0.288312 +-0.0481636,0.300361,-1.81385,-1.1459,-1.57815,-0.295765 +-0.0477205,0.29868,-1.82337,-1.16028,-1.57749,-0.301664 +-0.0475337,0.296988,-1.83271,-1.17402,-1.57681,-0.305079 +-0.0476593,0.295285,-1.8418,-1.18691,-1.57603,-0.305735 +-0.0480554,0.29359,-1.85055,-1.19878,-1.57517,-0.303738 +-0.048599,0.291941,-1.85891,-1.2095,-1.57435,-0.299398 +-0.0491693,0.290368,-1.86679,-1.21899,-1.57368,-0.29314 +-0.0497369,0.288883,-1.87418,-1.2272,-1.57316,-0.285477 +-0.0503758,0.287472,-1.88108,-1.23416,-1.57266,-0.276954 +-0.0511967,0.2861,-1.8875,-1.23986,-1.57202,-0.26806 +-0.0522663,0.284719,-1.89348,-1.24431,-1.57114,-0.259154 +-0.0535835,0.283282,-1.89908,-1.24757,-1.56998,-0.250449 +-0.0551177,0.281754,-1.90436,-1.24974,-1.56855,-0.24205 +-0.0568665,0.280115,-1.90938,-1.251,-1.56686,-0.234023 +-0.0588872,0.278359,-1.91414,-1.25151,-1.56484,-0.22643 +-0.0612528,0.276488,-1.91868,-1.25146,-1.56242,-0.219319 +-0.0639788,0.274505,-1.92304,-1.251,-1.55957,-0.212674 +-0.0670059,0.272403,-1.92728,-1.25024,-1.55636,-0.206414 +-0.0702445,0.27019,-1.93148,-1.24928,-1.55288,-0.200432 +-0.0736453,0.267899,-1.93565,-1.24819,-1.54917,-0.194655 +-0.0772376,0.265598,-1.93969,-1.24711,-1.54522,-0.189074 +-0.0810912,0.263356,-1.94355,-1.24614,-1.54094,-0.183717 +-0.0852383,0.261207,-1.94719,-1.24533,-1.53628,-0.178595 +-0.0896365,0.259138,-1.95066,-1.24466,-1.53128,-0.17367 +-0.094206,0.257119,-1.95406,-1.24402,-1.52601,-0.16888 +-0.0988933,0.255153,-1.95738,-1.24337,-1.52054,-0.164185 +-0.103699,0.253285,-1.96057,-1.24273,-1.51484,-0.159584 +-0.108654,0.251562,-1.96353,-1.24211,-1.50887,-0.155095 +-0.113776,0.249996,-1.96622,-1.24153,-1.50263,-0.150734 +-0.119056,0.248552,-1.96867,-1.24096,-1.49616,-0.146494 +-0.124449,0.247188,-1.97091,-1.24035,-1.48955,-0.142345 +-0.129898,0.245899,-1.97291,-1.23971,-1.48288,-0.138236 +-0.135352,0.244725,-1.97458,-1.23905,-1.47624,-0.134118 +-0.140782,0.243712,-1.97586,-1.23843,-1.4696,-0.129962 +-0.146194,0.242873,-1.97675,-1.23788,-1.46295,-0.125768 +-0.151609,0.242184,-1.97733,-1.23739,-1.45623,-0.121561 +-0.157044,0.241619,-1.97768,-1.23691,-1.44939,-0.117363 +-0.162484,0.241197,-1.97781,-1.23644,-1.4424,-0.113164 +-0.167889,0.240968,-1.97767,-1.23601,-1.4353,-0.108928 +-0.173244,0.24097,-1.97723,-1.23564,-1.42807,-0.104639 +-0.178591,0.241193,-1.97655,-1.23533,-1.4206,-0.100336 +-0.183975,0.241592,-1.97568,-1.23504,-1.41285,-0.0960659 +-0.189364,0.242125,-1.97466,-1.23473,-1.40489,-0.0918035 +-0.19462,0.242791,-1.97343,-1.23442,-1.39697,-0.0874209 +-0.199562,0.243613,-1.97188,-1.23423,-1.3894,-0.0827417 +-0.204081,0.244612,-1.96998,-1.23428,-1.38236,-0.0776527 +-0.208209,0.245778,-1.96777,-1.23466,-1.3758,-0.0721729 +-0.212066,0.247081,-1.96537,-1.23541,-1.36952,-0.0664052 +-0.215753,0.248494,-1.96289,-1.23657,-1.36344,-0.0604376 +-0.219314,0.250002,-1.96041,-1.23819,-1.35753,-0.0543062 +-0.222751,0.251611,-1.95795,-1.24033,-1.3518,-0.0480042 +-0.226024,0.253337,-1.95554,-1.24309,-1.34629,-0.0414855 +-0.229053,0.255199,-1.95314,-1.24651,-1.34109,-0.0346764 +-0.231761,0.257208,-1.95072,-1.25054,-1.33632,-0.027511 +-0.234133,0.259368,-1.94824,-1.25514,-1.33202,-0.0199798 +-0.236215,0.261666,-1.94568,-1.26015,-1.32811,-0.0121384 +-0.238057,0.26408,-1.94304,-1.26547,-1.32454,-0.00403953 +-0.23964,0.266573,-1.94034,-1.27103,-1.32139,0.00432706 +-0.240857,0.269085,-1.93753,-1.27667,-1.31888,0.0130326 +-0.241573,0.271554,-1.93455,-1.28215,-1.31727,0.0221683 +-0.241714,0.273936,-1.93139,-1.28739,-1.31672,0.0317821 +-0.241305,0.276216,-1.92803,-1.29229,-1.31722,0.0418405 +-0.240429,0.278379,-1.92442,-1.29664,-1.31865,0.0522469 +-0.239162,0.280408,-1.92054,-1.30022,-1.32091,0.0624229 +-0.237512,0.282278,-1.91635,-1.30278,-1.32398,0.0711231 +-0.23543,0.283962,-1.91181,-1.3041,-1.32798,0.0773273 +-0.232858,0.28544,-1.90687,-1.30397,-1.33304,0.080727 +-0.229793,0.28671,-1.90149,-1.30223,-1.33916,0.0814405 +-0.226297,0.287791,-1.89565,-1.29879,-1.34623,0.0798094 +-0.222454,0.288714,-1.88931,-1.29362,-1.35408,0.0762894 +-0.218325,0.289509,-1.88248,-1.28676,-1.36258,0.0713735 +-0.213943,0.290205,-1.87519,-1.27827,-1.37167,0.0655317 +-0.209318,0.290824,-1.86742,-1.26816,-1.38131,0.0591663 +-0.204475,0.291396,-1.85916,-1.25646,-1.39145,0.0525753 +-0.199469,0.291959,-1.85043,-1.24326,-1.40195,0.0459472 +-0.194361,0.292561,-1.8412,-1.22865,-1.41269,0.0393893 +-0.18919,0.293248,-1.83147,-1.21273,-1.42356,0.0329612 +-0.18397,0.294064,-1.82126,-1.19562,-1.43453,0.0266989 +-0.178686,0.295043,-1.81062,-1.17752,-1.44558,0.0206322 +-0.173303,0.296207,-1.79967,-1.15874,-1.45675,0.0147951 +-0.167779,0.297559,-1.78862,-1.1397,-1.46806,0.00922361 +-0.162089,0.299087,-1.77772,-1.12094,-1.47953,0.00394079 +-0.156238,0.300772,-1.76716,-1.10284,-1.49108,-0.00106052 +-0.150255,0.30262,-1.75694,-1.08546,-1.50267,-0.00582488 +-0.144192,0.304661,-1.74688,-1.06846,-1.51425,-0.0104284 +-0.138114,0.306938,-1.7367,-1.05138,-1.52576,-0.0149577 +-0.132076,0.309477,-1.72624,-1.03397,-1.53711,-0.0194784 +-0.126111,0.312265,-1.71557,-1.01635,-1.54822,-0.0240183 +-0.120238,0.315245,-1.70495,-0.998931,-1.559,-0.0285774 +-0.114466,0.318337,-1.69467,-0.982237,-1.56935,-0.0331445 +-0.108806,0.321463,-1.68496,-0.966597,-1.57917,-0.0377186 +-0.103281,0.324562,-1.6759,-0.952087,-1.58839,-0.0423174 +-0.097914,0.327595,-1.66746,-0.938631,-1.59695,-0.0469655 +-0.0927114,0.330555,-1.65953,-0.926021,-1.60486,-0.0516777 +-0.0876716,0.333457,-1.65194,-0.913944,-1.61214,-0.056466 +-0.0828052,0.336306,-1.6446,-0.90222,-1.61878,-0.0613491 +-0.0781319,0.339065,-1.63757,-0.890964,-1.62472,-0.0663451 +-0.0736772,0.34164,-1.63112,-0.880599,-1.62988,-0.0714704 +-0.0694671,0.343919,-1.62557,-0.871622,-1.6342,-0.0767408 +-0.0655209,0.345815,-1.62116,-0.864362,-1.63763,-0.0821722 +-0.0618394,0.347304,-1.61794,-0.858871,-1.64017,-0.0877711 +-0.058398,0.34843,-1.61576,-0.854883,-1.64191,-0.0935288 +-0.0551569,0.349271,-1.61437,-0.852024,-1.64297,-0.0994246 +-0.05206,0.349915,-1.6135,-0.849876,-1.64353,-0.105423 +-0.0490502,0.350435,-1.6129,-0.848021,-1.64376,-0.111485 +-0.0461011,0.350851,-1.61251,-0.846338,-1.64378,-0.117594 +-0.0432326,0.351108,-1.61248,-0.845129,-1.64358,-0.123763 +-0.0404981,0.351104,-1.61318,-0.844948,-1.64309,-0.130032 +-0.0379518,0.350749,-1.61487,-0.846236,-1.64223,-0.136445 +-0.0356116,0.350022,-1.61765,-0.849111,-1.64098,-0.143017 +-0.0334439,0.348981,-1.62137,-0.853382,-1.63941,-0.149722 +-0.0313802,0.347736,-1.62576,-0.858664,-1.63767,-0.156508 +-0.0293579,0.346381,-1.63059,-0.864651,-1.6359,-0.163325 +-0.0273622,0.344945,-1.6358,-0.871323,-1.63417,-0.170161 +-0.0254263,0.34339,-1.64156,-0.878937,-1.6325,-0.177042 +-0.0235938,0.341658,-1.64805,-0.887839,-1.63086,-0.184002 +-0.0218774,0.339725,-1.65539,-0.89825,-1.62926,-0.19105 +-0.0202451,0.33762,-1.66353,-0.910139,-1.62778,-0.198159 +-0.018645,0.335401,-1.67232,-0.923345,-1.62651,-0.205286 +-0.0170414,0.333124,-1.68165,-0.93777,-1.62546,-0.212402 +-0.0154271,0.330825,-1.69143,-0.953292,-1.62462,-0.219503 +-0.0138107,0.328528,-1.70156,-0.969714,-1.62396,-0.226601 +-0.0122126,0.326242,-1.71198,-0.986881,-1.62344,-0.233716 +-0.0106626,0.323976,-1.72264,-1.00464,-1.62303,-0.240878 +-0.00919167,0.321737,-1.73351,-1.02288,-1.62268,-0.248115 +-0.00782551,0.319538,-1.74453,-1.04151,-1.62233,-0.255451 +-0.00658571,0.317401,-1.75565,-1.06036,-1.62195,-0.262423 +-0.00549668,0.315348,-1.76683,-1.07931,-1.6215,-0.267851 +-0.00459696,0.313399,-1.778,-1.09821,-1.62092,-0.270737 +-0.00395574,0.311561,-1.78909,-1.11686,-1.62014,-0.270814 +-0.00365847,0.309827,-1.80003,-1.13504,-1.61906,-0.268286 +-0.00375043,0.308189,-1.81073,-1.15251,-1.61767,-0.263595 +-0.00419546,0.30664,-1.82107,-1.16893,-1.61603,-0.257234 +-0.00488213,0.30518,-1.83092,-1.18406,-1.61426,-0.249646 +-0.00566899,0.303808,-1.84023,-1.19773,-1.61251,-0.241203 +-0.00644744,0.302513,-1.84895,-1.20985,-1.61092,-0.232218 +-0.00718021,0.301259,-1.85706,-1.22034,-1.60952,-0.222965 +-0.00788845,0.299992,-1.86455,-1.22909,-1.60833,-0.213677 +-0.008612,0.298651,-1.87142,-1.23595,-1.60732,-0.204522 +-0.00938373,0.297189,-1.87769,-1.2409,-1.6065,-0.1956 +-0.0102332,0.295582,-1.8834,-1.24406,-1.60585,-0.186958 +-0.0112034,0.293835,-1.8886,-1.24562,-1.60534,-0.178622 +-0.0123524,0.291978,-1.89335,-1.24582,-1.6049,-0.170615 +-0.0137393,0.290042,-1.89768,-1.24491,-1.60441,-0.162948 +-0.0153969,0.28804,-1.90168,-1.2431,-1.60377,-0.155615 +-0.0173184,0.285959,-1.90543,-1.24065,-1.60289,-0.148576 +-0.0194883,0.283775,-1.90905,-1.23775,-1.60171,-0.141791 +-0.0219313,0.281471,-1.9126,-1.23463,-1.60011,-0.135257 +-0.0247154,0.279048,-1.9161,-1.2315,-1.59792,-0.129012 +-0.0278998,0.276523,-1.91956,-1.22853,-1.59503,-0.123092 +-0.0314932,0.273918,-1.92302,-1.22592,-1.59141,-0.117495 +-0.0354505,0.27125,-1.92654,-1.22374,-1.58712,-0.112182 +-0.0396923,0.268536,-1.93014,-1.22197,-1.58225,-0.107091 +-0.0441386,0.265813,-1.93383,-1.22057,-1.57695,-0.102157 +-0.0487303,0.263138,-1.93756,-1.21957,-1.5714,-0.0973341 +-0.0534216,0.260582,-1.94126,-1.219,-1.56578,-0.0925812 +-0.0581714,0.258203,-1.94488,-1.2189,-1.56023,-0.0878623 +-0.0629426,0.256042,-1.94834,-1.21928,-1.55491,-0.0831445 +-0.067698,0.254128,-1.95161,-1.22011,-1.54989,-0.0783955 +-0.0724183,0.252478,-1.95464,-1.22134,-1.5452,-0.073599 +-0.0771201,0.251103,-1.95741,-1.22294,-1.54073,-0.0687681 +-0.0818395,0.250002,-1.95991,-1.22485,-1.53633,-0.0639325 +-0.0866142,0.249159,-1.96215,-1.227,-1.53182,-0.0591247 +-0.091467,0.24855,-1.96412,-1.22929,-1.52709,-0.0543658 +-0.0963934,0.248151,-1.96579,-1.23164,-1.52211,-0.0496529 +-0.10137,0.247949,-1.96713,-1.23396,-1.51687,-0.0449662 +-0.106361,0.247934,-1.96805,-1.23616,-1.51136,-0.0402774 +-0.111337,0.24809,-1.96853,-1.23814,-1.50562,-0.0355618 +-0.116284,0.248372,-1.96858,-1.23984,-1.49969,-0.0308143 +-0.121209,0.248722,-1.96828,-1.24119,-1.49362,-0.0260458 +-0.126108,0.249089,-1.96771,-1.24217,-1.48747,-0.0212575 +-0.130948,0.24945,-1.9669,-1.2428,-1.48134,-0.0164232 +-0.13568,0.249803,-1.96583,-1.24311,-1.47529,-0.0114985 +-0.140252,0.250157,-1.96447,-1.24314,-1.4694,-0.00643431 +-0.144621,0.250512,-1.96283,-1.24297,-1.46373,-0.00118858 +-0.14876,0.250867,-1.96092,-1.24266,-1.45831,0.00426626 +-0.152657,0.251225,-1.95878,-1.24229,-1.45319,0.00994338 +-0.156316,0.251607,-1.95646,-1.24197,-1.44837,0.015845 +-0.159744,0.252053,-1.95399,-1.24186,-1.44382,0.0219738 +-0.162921,0.25261,-1.95141,-1.2421,-1.43958,0.0283541 +-0.165795,0.253333,-1.94871,-1.2428,-1.43571,0.035037 +-0.168314,0.254276,-1.94589,-1.24403,-1.43229,0.0420676 +-0.170488,0.255483,-1.94294,-1.24582,-1.42927,0.049438 +-0.172395,0.25699,-1.93989,-1.24823,-1.42655,0.0570836 +-0.174108,0.258811,-1.93677,-1.2512,-1.42401,0.0649348 +-0.175625,0.260928,-1.93357,-1.25462,-1.42169,0.0729843 +-0.176836,0.263289,-1.93024,-1.25829,-1.41983,0.0813049 +-0.177598,0.265819,-1.9267,-1.26197,-1.41868,0.0899973 +-0.177847,0.268436,-1.9229,-1.26542,-1.41841,0.0990994 +-0.177656,0.271065,-1.91884,-1.26847,-1.41894,0.108056 +-0.177181,0.273649,-1.91455,-1.27106,-1.42008,0.115534 +-0.176527,0.276143,-1.91007,-1.27312,-1.42168,0.120411 +-0.17566,0.278508,-1.90538,-1.27446,-1.42379,0.122368 +-0.174429,0.280708,-1.9004,-1.27477,-1.42664,0.121635 +-0.172682,0.282728,-1.89502,-1.27373,-1.43048,0.118705 +-0.170387,0.28457,-1.88916,-1.27111,-1.43538,0.114111 +-0.167639,0.286259,-1.88277,-1.26687,-1.44118,0.108309 +-0.164573,0.287822,-1.87587,-1.26102,-1.44768,0.101681 +-0.161277,0.289288,-1.86845,-1.25359,-1.45472,0.0945631 +-0.157749,0.29068,-1.86054,-1.24461,-1.46226,0.0872679 +-0.153942,0.292022,-1.85216,-1.23411,-1.47034,0.0800497 +-0.149834,0.293343,-1.84331,-1.22209,-1.47897,0.0730697 +-0.145449,0.294679,-1.83398,-1.20863,-1.48809,0.0663919 +-0.140858,0.296075,-1.82421,-1.19391,-1.49757,0.0600075 +-0.136133,0.297581,-1.81401,-1.17811,-1.5073,0.0538731 +-0.131323,0.299249,-1.80337,-1.16131,-1.51718,0.0479399 +-0.126461,0.301117,-1.79231,-1.14366,-1.52714,0.042165 +-0.121554,0.303206,-1.78091,-1.12531,-1.53712,0.0365247 +-0.116593,0.305513,-1.76931,-1.10655,-1.54703,0.0310121 +-0.111578,0.308011,-1.7577,-1.0877,-1.55679,0.0256221 +-0.106516,0.310675,-1.7462,-1.06895,-1.56629,0.020341 +-0.101435,0.31349,-1.7348,-1.05032,-1.57549,0.0151362 +-0.0963776,0.316456,-1.72341,-1.03164,-1.58432,0.00996187 +-0.0913902,0.319569,-1.71192,-1.01275,-1.59274,0.00477092 +-0.086508,0.322794,-1.70036,-0.993668,-1.60068,-0.000466228 +-0.08175,0.326064,-1.68889,-0.974677,-1.60807,-0.00575771 +-0.0771372,0.329298,-1.67778,-0.956198,-1.61478,-0.0111097 +-0.0726853,0.332443,-1.66723,-0.938561,-1.62071,-0.0165279 +-0.068391,0.335498,-1.65724,-0.921836,-1.6259,-0.0220102 +-0.0642381,0.33851,-1.64769,-0.905836,-1.63045,-0.0275506 +-0.0602125,0.341528,-1.63841,-0.890324,-1.63449,-0.033146 +-0.0562998,0.344581,-1.62929,-0.875134,-1.63808,-0.0387913 +-0.0524771,0.347672,-1.62027,-0.860164,-1.64131,-0.0444718 +-0.0487235,0.350756,-1.61144,-0.845519,-1.64426,-0.0501702 +-0.0450433,0.353724,-1.60307,-0.831619,-1.64691,-0.055886 +-0.0414652,0.356427,-1.5956,-0.819114,-1.64916,-0.0616378 +-0.0380155,0.358736,-1.58938,-0.808564,-1.65093,-0.0674446 +-0.0346958,0.360625,-1.58447,-0.80004,-1.65222,-0.0733117 +-0.0314719,0.362187,-1.58057,-0.793083,-1.65316,-0.0792206 +-0.0282888,0.363577,-1.57722,-0.786984,-1.65394,-0.0851363 +-0.025106,0.364914,-1.57407,-0.781222,-1.65469,-0.0910329 +-0.0219137,0.366208,-1.57109,-0.775759,-1.65548,-0.0969051 +-0.0187328,0.367375,-1.56852,-0.770956,-1.65624,-0.10277 +-0.0156046,0.368288,-1.56671,-0.767332,-1.6569,-0.108662 +-0.0125684,0.368834,-1.56598,-0.765364,-1.65736,-0.114615 +-0.00964818,0.36895,-1.56654,-0.765359,-1.65761,-0.12065 +-0.00684613,0.368642,-1.56838,-0.767343,-1.65768,-0.126772 +-0.00413783,0.367983,-1.57133,-0.771058,-1.65762,-0.132963 +-0.00147161,0.367093,-1.57508,-0.776094,-1.65756,-0.139183 +0.00120982,0.366097,-1.57929,-0.781982,-1.65761,-0.145385 +0.00393318,0.365066,-1.58375,-0.788384,-1.65783,-0.151549 +0.00668313,0.363985,-1.58847,-0.795293,-1.65821,-0.15769 +0.00940996,0.362772,-1.59365,-0.803004,-1.65867,-0.163855 +0.0120529,0.361327,-1.59957,-0.811948,-1.6591,-0.170098 +0.0145678,0.359589,-1.60644,-0.822478,-1.65944,-0.176459 +0.016931,0.357556,-1.6143,-0.83469,-1.65964,-0.182961 +0.0191348,0.355273,-1.62306,-0.848445,-1.65968,-0.189614 +0.0211906,0.352804,-1.63258,-0.863572,-1.65953,-0.196408 +0.0231242,0.350215,-1.64272,-0.879892,-1.65919,-0.203324 +0.0249582,0.347564,-1.6533,-0.897152,-1.65868,-0.210342 +0.026692,0.344884,-1.66424,-0.915186,-1.65801,-0.217465 +0.028293,0.342177,-1.6755,-0.933916,-1.65713,-0.224722 +0.0297134,0.339438,-1.68708,-0.953275,-1.65604,-0.231672 +0.0309163,0.336669,-1.69901,-0.973259,-1.65474,-0.237143 +0.0318845,0.333902,-1.71125,-0.993794,-1.65326,-0.240121 +0.0326157,0.331188,-1.72366,-1.01461,-1.65159,-0.240278 +0.0331236,0.328588,-1.73604,-1.03529,-1.64974,-0.237736 +0.0334408,0.326164,-1.7482,-1.05547,-1.64774,-0.232869 +0.0336077,0.323965,-1.76,-1.07492,-1.64562,-0.22616 +0.033653,0.322018,-1.77138,-1.09356,-1.6434,-0.218118 +0.033591,0.320312,-1.7823,-1.11129,-1.64106,-0.209213 +0.0334287,0.318817,-1.79279,-1.12812,-1.63863,-0.199838 +0.0331563,0.317482,-1.8029,-1.14413,-1.63612,-0.190305 +0.0327382,0.316248,-1.81266,-1.15934,-1.63357,-0.180854 +0.0321308,0.315061,-1.82212,-1.17376,-1.63104,-0.171653 +0.0313045,0.313882,-1.83131,-1.18746,-1.62858,-0.162795 +0.0302629,0.31268,-1.84021,-1.20029,-1.62621,-0.1543 +0.0290592,0.311427,-1.84868,-1.21184,-1.62393,-0.146119 +0.0277729,0.310109,-1.85662,-1.22173,-1.62173,-0.138164 +0.0264531,0.308706,-1.86397,-1.22978,-1.61965,-0.130364 +0.0250857,0.307185,-1.87073,-1.236,-1.6177,-0.122697 +0.0236159,0.305509,-1.87692,-1.24046,-1.61593,-0.115177 +0.0219945,0.303652,-1.88257,-1.24335,-1.6144,-0.107821 +0.0202019,0.301611,-1.88772,-1.24484,-1.61318,-0.100624 +0.018245,0.299399,-1.89239,-1.2451,-1.61231,-0.093571 +0.0161536,0.297043,-1.89661,-1.24429,-1.6118,-0.0866288 +0.0139687,0.294581,-1.90045,-1.24258,-1.61162,-0.0797615 +0.0117249,0.292054,-1.90397,-1.24013,-1.61172,-0.0729409 +0.00945031,0.289516,-1.90723,-1.23713,-1.61204,-0.0661452 +0.00716403,0.28703,-1.9103,-1.23381,-1.61254,-0.0593603 +0.00485983,0.284642,-1.91321,-1.23033,-1.61316,-0.0525936 +0.00251035,0.282369,-1.916,-1.2268,-1.61378,-0.0458699 +7.83503e-05,0.280199,-1.91868,-1.22328,-1.6143,-0.0392219 +-0.00249099,0.278099,-1.9213,-1.21987,-1.61457,-0.0326955 +-0.00527321,0.276032,-1.92386,-1.21667,-1.61439,-0.0263524 +-0.00835763,0.273961,-1.92634,-1.21376,-1.61353,-0.0202647 +-0.0118411,0.271847,-1.92875,-1.21118,-1.61173,-0.0145106 +-0.0157952,0.269658,-1.93111,-1.20898,-1.60874,-0.00914827 +-0.0202211,0.267386,-1.93349,-1.20719,-1.60453,-0.0041773 +-0.0250546,0.265068,-1.93592,-1.20587,-1.59924,0.000458445 +-0.0301955,0.262793,-1.93835,-1.20514,-1.59314,0.00484867 +-0.0355238,0.260676,-1.94072,-1.20513,-1.58654,0.0091022 +-0.0409207,0.258821,-1.94292,-1.20591,-1.57978,0.0133256 +-0.046288,0.257286,-1.94492,-1.20747,-1.57313,0.0176038 +-0.0515529,0.256085,-1.9467,-1.20969,-1.56681,0.0219969 +-0.0566628,0.255213,-1.94829,-1.21246,-1.56096,0.026547 +-0.061582,0.254662,-1.94969,-1.21571,-1.55567,0.0312829 +-0.0662835,0.254428,-1.95087,-1.21936,-1.55097,0.036228 +-0.0707502,0.254504,-1.95181,-1.22336,-1.54685,0.0413983 +-0.074986,0.254869,-1.95244,-1.22759,-1.5432,0.0467898 +-0.0790176,0.255478,-1.95269,-1.23184,-1.53983,0.0523769 +-0.0828912,0.256254,-1.95254,-1.23591,-1.53656,0.058115 +-0.0866687,0.257099,-1.952,-1.23957,-1.53319,0.0639443 +-0.0904172,0.257915,-1.95109,-1.24263,-1.52958,0.0697998 +-0.0941941,0.258628,-1.94986,-1.24492,-1.5256,0.0756248 +-0.098025,0.259205,-1.94831,-1.2464,-1.52121,0.0813927 +-0.101877,0.25966,-1.94648,-1.24712,-1.51647,0.0871306 +-0.10565,0.260043,-1.94434,-1.24723,-1.51158,0.0929267 +-0.109196,0.260418,-1.94187,-1.24688,-1.50679,0.098909 +-0.112378,0.260854,-1.93904,-1.24627,-1.50236,0.105198 +-0.115125,0.261406,-1.93587,-1.24554,-1.49846,0.111858 +-0.117448,0.262115,-1.93241,-1.2449,-1.49515,0.118886 +-0.119396,0.263012,-1.92877,-1.24453,-1.49242,0.126247 +-0.121008,0.264127,-1.92498,-1.24452,-1.49027,0.13391 +-0.122281,0.265487,-1.92104,-1.24486,-1.48872,0.141872 +-0.123197,0.267109,-1.91694,-1.24544,-1.48782,0.149658 +-0.123757,0.268982,-1.91261,-1.24608,-1.48756,0.156049 +-0.124011,0.271062,-1.90802,-1.24656,-1.48792,0.159964 +-0.124025,0.273287,-1.90315,-1.24664,-1.48881,0.161009 +-0.123826,0.275596,-1.89797,-1.24612,-1.4902,0.159287 +-0.123376,0.277938,-1.89244,-1.24476,-1.49215,0.155217 +-0.122595,0.280277,-1.88647,-1.24226,-1.49472,0.149369 +-0.121406,0.282591,-1.88,-1.23838,-1.498,0.142327 +-0.119792,0.284869,-1.87296,-1.23298,-1.50202,0.134583 +-0.117799,0.287104,-1.86536,-1.22602,-1.50673,0.126503 +-0.115507,0.289297,-1.85722,-1.21758,-1.51203,0.118337 +-0.112982,0.291454,-1.8486,-1.20778,-1.5178,0.110253 +-0.110251,0.293582,-1.83951,-1.19668,-1.52398,0.102374 +-0.107311,0.29569,-1.82998,-1.18434,-1.53053,0.0947812 +-0.104149,0.297776,-1.82006,-1.17081,-1.53738,0.0875163 +-0.100752,0.299838,-1.80981,-1.15614,-1.54445,0.080593 +-0.0971231,0.301878,-1.79929,-1.14046,-1.55165,0.0739953 +-0.0932993,0.303922,-1.78857,-1.12395,-1.55889,0.067675 +-0.0893484,0.306019,-1.77762,-1.10672,-1.56611,0.0615546 +-0.0853485,0.308234,-1.76639,-1.08887,-1.57325,0.0555479 +-0.0813593,0.310626,-1.75484,-1.07043,-1.5803,0.0495858 +-0.0774075,0.313231,-1.74297,-1.05144,-1.58719,0.043631 +-0.073493,0.316054,-1.73087,-1.03209,-1.59385,0.037677 +-0.0696053,0.319076,-1.71869,-1.01259,-1.60017,0.0317318 +-0.065735,0.322276,-1.70649,-0.993034,-1.6061,0.025803 +-0.0618734,0.325645,-1.69428,-0.973404,-1.61166,0.019897 +-0.0580132,0.329178,-1.68201,-0.953636,-1.61695,0.01402 +-0.0541555,0.332867,-1.66965,-0.933706,-1.62201,0.00817286 +-0.0503089,0.336695,-1.65723,-0.913674,-1.62685,0.00235199 +-0.0464762,0.34063,-1.64481,-0.893667,-1.63148,-0.00344053 +-0.0426568,0.34462,-1.63255,-0.873922,-1.63587,-0.00919837 +-0.038856,0.348592,-1.62064,-0.854774,-1.63998,-0.0149201 +-0.0350856,0.35246,-1.6093,-0.836551,-1.64376,-0.0206116 +-0.0313586,0.356151,-1.59872,-0.819533,-1.64716,-0.0262828 +-0.027679,0.359616,-1.589,-0.80388,-1.65018,-0.0319381 +-0.0240423,0.362848,-1.58014,-0.789604,-1.65286,-0.0375775 +-0.0204421,0.365874,-1.57206,-0.776591,-1.65528,-0.0432012 +-0.0168699,0.36877,-1.56455,-0.764572,-1.65751,-0.0488088 +-0.0133168,0.371641,-1.55733,-0.753142,-1.65965,-0.0544006 +-0.00977043,0.374591,-1.5501,-0.741877,-1.66178,-0.0599729 +-0.00622681,0.377646,-1.54281,-0.73066,-1.66395,-0.065526 +-0.00270556,0.380709,-1.5357,-0.719887,-1.6661,-0.0710771 +0.000766823,0.383609,-1.52925,-0.710224,-1.66813,-0.0766482 +0.00417918,0.386202,-1.52381,-0.702164,-1.66997,-0.0822486 +0.00753817,0.388441,-1.51946,-0.695794,-1.67162,-0.0878742 +0.0108569,0.390356,-1.51607,-0.69089,-1.67308,-0.0935167 +0.014141,0.391987,-1.51349,-0.687223,-1.67438,-0.0991747 +0.0173739,0.39331,-1.51171,-0.684789,-1.6755,-0.104867 +0.0205111,0.394218,-1.51096,-0.683869,-1.67635,-0.110637 +0.0235054,0.39457,-1.51156,-0.684897,-1.67686,-0.116532 +0.0263343,0.394295,-1.51368,-0.688119,-1.67699,-0.122575 +0.0290047,0.393439,-1.51721,-0.693339,-1.67675,-0.128763 +0.0315473,0.39215,-1.52177,-0.700023,-1.67619,-0.135071 +0.0340011,0.39059,-1.52697,-0.707634,-1.67538,-0.141467 +0.0363849,0.388871,-1.53258,-0.715853,-1.67435,-0.147936 +0.0386902,0.387028,-1.53851,-0.724612,-1.67309,-0.154486 +0.0409043,0.385053,-1.54485,-0.734009,-1.67159,-0.161132 +0.0430195,0.382921,-1.55166,-0.74417,-1.66988,-0.167881 +0.0450371,0.380607,-1.55905,-0.755244,-1.66803,-0.174732 +0.0469628,0.378104,-1.56706,-0.767356,-1.66609,-0.181683 +0.0487952,0.375424,-1.5757,-0.78053,-1.66408,-0.188735 +0.0505348,0.372605,-1.58492,-0.794706,-1.66199,-0.195887 +0.0521889,0.369691,-1.59469,-0.809904,-1.65984,-0.203135 +0.0537604,0.366724,-1.60501,-0.826236,-1.65767,-0.209995 +0.0552408,0.363737,-1.6159,-0.843727,-1.65552,-0.215271 +0.0566142,0.360751,-1.62735,-0.862378,-1.65344,-0.217952 +0.0578587,0.357779,-1.63934,-0.882167,-1.65145,-0.217729 +0.058951,0.354838,-1.65179,-0.902885,-1.64951,-0.21476 +0.0598849,0.35195,-1.66454,-0.924208,-1.64755,-0.209451 +0.0606693,0.34914,-1.67743,-0.945787,-1.64553,-0.202313 +0.0613098,0.346419,-1.69028,-0.967297,-1.64339,-0.193872 +0.0618087,0.343789,-1.70298,-0.988442,-1.6411,-0.184609 +0.0621718,0.341248,-1.71543,-1.009,-1.63866,-0.174915 +0.0624041,0.338787,-1.72759,-1.02883,-1.63612,-0.165086 +0.0625006,0.336398,-1.73941,-1.04782,-1.63348,-0.155337 +0.0624437,0.334067,-1.75089,-1.06589,-1.63077,-0.145813 +0.0622186,0.331782,-1.76198,-1.08292,-1.62799,-0.136593 +0.0618189,0.329528,-1.77266,-1.09877,-1.62524,-0.127703 +0.0612368,0.327289,-1.78289,-1.11337,-1.62255,-0.119139 +0.0604726,0.325052,-1.79271,-1.12678,-1.6199,-0.110875 +0.0595402,0.322807,-1.80218,-1.1392,-1.61724,-0.102868 +0.0584548,0.320545,-1.81138,-1.15075,-1.61443,-0.0950705 +0.0572267,0.318255,-1.82028,-1.16139,-1.6114,-0.0874417 +0.0558613,0.315931,-1.8288,-1.17095,-1.60821,-0.0799493 +0.0543554,0.313572,-1.8369,-1.17928,-1.60498,-0.0725755 +0.0527075,0.311176,-1.84454,-1.18634,-1.60183,-0.0653079 +0.0509369,0.308741,-1.85172,-1.19215,-1.59886,-0.0581231 +0.0490778,0.306278,-1.85848,-1.19679,-1.59614,-0.0509902 +0.047154,0.303827,-1.86481,-1.20038,-1.59375,-0.0438904 +0.045165,0.301473,-1.8707,-1.2032,-1.59183,-0.0368274 +0.0430978,0.299328,-1.8761,-1.20556,-1.59053,-0.0298163 +0.0409437,0.297497,-1.88096,-1.20772,-1.58995,-0.0228686 +0.0387046,0.296051,-1.88526,-1.20987,-1.5901,-0.0159859 +0.03639,0.294998,-1.88901,-1.21213,-1.59092,-0.00916292 +0.0340097,0.294261,-1.89227,-1.21448,-1.59227,-0.00239323 +0.0315734,0.293698,-1.89513,-1.21684,-1.59403,0.00433024 +0.0290948,0.293144,-1.89769,-1.21903,-1.59609,0.0110179 +0.0265856,0.292456,-1.90007,-1.22091,-1.59833,0.017679 +0.0240517,0.291534,-1.90234,-1.22234,-1.60065,0.0243172 +0.0215013,0.290327,-1.90459,-1.22319,-1.60292,0.030938 +0.0189537,0.288837,-1.90689,-1.2234,-1.60507,0.0375556 +0.0164352,0.287098,-1.90929,-1.22293,-1.60704,0.0441892 +0.0139758,0.285175,-1.91178,-1.22173,-1.60879,0.0508613 +0.0115938,0.283155,-1.91437,-1.21988,-1.61035,0.0575855 +0.00926733,0.281134,-1.917,-1.21759,-1.61178,0.0643443 +0.00693101,0.279201,-1.91957,-1.21512,-1.61307,0.0710856 +0.00449918,0.277426,-1.92199,-1.21276,-1.61418,0.0777419 +0.00189566,0.275851,-1.92414,-1.21077,-1.615,0.0842551 +-0.00093207,0.274488,-1.92597,-1.20934,-1.61541,0.0905867 +-0.00401741,0.27332,-1.92745,-1.20855,-1.61522,0.0967134 +-0.00738765,0.272304,-1.92859,-1.20841,-1.61428,0.102616 +-0.01108,0.271378,-1.92945,-1.20878,-1.6124,0.108263 +-0.0151276,0.270477,-1.93012,-1.20951,-1.60945,0.113627 +-0.019517,0.269576,-1.93066,-1.21054,-1.60548,0.11872 +-0.0241529,0.268712,-1.93113,-1.21189,-1.60073,0.123624 +-0.0288511,0.268001,-1.93144,-1.21363,-1.59556,0.128497 +-0.0333934,0.267598,-1.93147,-1.21586,-1.59041,0.133528 +-0.0376233,0.267613,-1.9311,-1.21864,-1.58558,0.13885 +-0.0415151,0.268045,-1.93037,-1.22196,-1.58118,0.144487 +-0.0451493,0.268794,-1.92941,-1.22575,-1.57717,0.150369 +-0.0486082,0.269731,-1.92834,-1.22984,-1.5735,0.156424 +-0.0519084,0.270769,-1.92718,-1.23409,-1.57018,0.162633 +-0.0550088,0.271864,-1.92586,-1.23827,-1.56722,0.169024 +-0.0578594,0.272987,-1.92423,-1.24206,-1.5646,0.175631 +-0.0604399,0.274108,-1.92218,-1.24519,-1.56226,0.18246 +-0.0627644,0.275188,-1.91967,-1.24745,-1.56011,0.189492 +-0.0648613,0.276201,-1.91669,-1.24873,-1.55805,0.196213 +-0.0667439,0.277147,-1.91324,-1.24897,-1.55603,0.201405 +-0.0683988,0.278056,-1.90933,-1.24817,-1.55409,0.204045 +-0.0698115,0.27897,-1.90496,-1.24638,-1.55229,0.203814 +-0.0709908,0.279929,-1.90013,-1.24366,-1.55067,0.200841 +-0.0719599,0.280966,-1.89488,-1.24008,-1.54929,0.195511 +-0.072735,0.282106,-1.88924,-1.23571,-1.54822,0.188328 +-0.0733106,0.283372,-1.88319,-1.23053,-1.54753,0.179833 +-0.0736553,0.284783,-1.87672,-1.22453,-1.54731,0.170532 +-0.0737239,0.286346,-1.86979,-1.2176,-1.54763,0.16086 +-0.0734691,0.288059,-1.86234,-1.2096,-1.54854,0.151156 +-0.0728543,0.28991,-1.85436,-1.20043,-1.55007,0.141662 +-0.0718791,0.291876,-1.84583,-1.19001,-1.55222,0.132511 +-0.0705896,0.293921,-1.83675,-1.17831,-1.55492,0.123741 +-0.069057,0.296015,-1.82714,-1.16532,-1.55809,0.115322 +-0.067339,0.298138,-1.81705,-1.15112,-1.56166,0.107207 +-0.0654477,0.300296,-1.80652,-1.13584,-1.56558,0.0993732 +-0.0633502,0.302521,-1.79562,-1.11962,-1.56983,0.0918213 +-0.0610051,0.304857,-1.78434,-1.10247,-1.57438,0.0845579 +-0.0584018,0.307349,-1.77266,-1.08437,-1.5792,0.0775653 +-0.0555715,0.310037,-1.76055,-1.06537,-1.58422,0.0707982 +-0.0525679,0.312945,-1.74804,-1.04561,-1.5894,0.0642013 +-0.049436,0.316075,-1.7352,-1.02528,-1.59468,0.0577328 +-0.0461872,0.319404,-1.72217,-1.00465,-1.60002,0.0513843 +-0.0428107,0.322897,-1.70914,-0.984015,-1.60536,0.0451709 +-0.0393027,0.326519,-1.69622,-0.963614,-1.61065,0.0391021 +-0.0356759,0.330265,-1.68341,-0.94343,-1.6159,0.03317 +-0.0319607,0.334162,-1.67053,-0.923208,-1.62113,0.0273473 +-0.0282001,0.338233,-1.65744,-0.902721,-1.62638,0.0215962 +-0.024437,0.342447,-1.6442,-0.882066,-1.63157,0.0158824 +-0.0206912,0.346716,-1.63109,-0.861706,-1.63658,0.0101956 +-0.0169516,0.350939,-1.61848,-0.842207,-1.64131,0.00455306 +-0.0132013,0.355067,-1.60657,-0.823872,-1.64575,-0.0010276 +-0.00944555,0.359134,-1.59529,-0.806621,-1.6499,-0.00655375 +-0.00570908,0.363245,-1.58433,-0.790039,-1.65382,-0.0120543 +-0.00201134,0.367506,-1.57336,-0.773641,-1.65759,-0.017554 +0.00163647,0.371941,-1.56226,-0.757266,-1.66124,-0.0230669 +0.00522942,0.376469,-1.55121,-0.741143,-1.66473,-0.0285987 +0.00877378,0.380954,-1.54054,-0.725708,-1.668,-0.0341435 +0.0122769,0.385276,-1.53052,-0.711369,-1.67097,-0.0396949 +0.0157372,0.389377,-1.52125,-0.698249,-1.67361,-0.0452566 +0.0191417,0.393249,-1.51265,-0.686227,-1.67588,-0.0508445 +0.0224755,0.39687,-1.50472,-0.675215,-1.67773,-0.0564768 +0.0257327,0.400161,-1.49758,-0.665359,-1.6792,-0.0621615 +0.0289038,0.402993,-1.49154,-0.657049,-1.68027,-0.0679101 +0.0319643,0.405252,-1.48687,-0.650654,-1.68088,-0.0737488 +0.0349007,0.406935,-1.48359,-0.646205,-1.68097,-0.0796939 +0.0377276,0.408155,-1.48145,-0.643351,-1.68061,-0.0857351 +0.0404602,0.409079,-1.48007,-0.641587,-1.67985,-0.0918612 +0.0430949,0.409829,-1.47918,-0.640534,-1.67872,-0.0980785 +0.0456174,0.410429,-1.47875,-0.640156,-1.67721,-0.104403 +0.048017,0.410824,-1.47894,-0.640708,-1.67532,-0.110846 +0.0502936,0.410959,-1.47991,-0.642396,-1.67309,-0.117409 +0.0524547,0.410829,-1.48164,-0.64518,-1.67051,-0.124086 +0.0545172,0.410486,-1.48392,-0.648785,-1.6676,-0.130863 +0.0565037,0.409981,-1.48658,-0.652941,-1.66439,-0.137716 +0.0584172,0.409276,-1.48965,-0.657705,-1.66094,-0.144646 +0.0602343,0.408232,-1.49346,-0.663533,-1.65732,-0.151674 +0.061936,0.406678,-1.49845,-0.671059,-1.65361,-0.158822 +0.0635212,0.404513,-1.50493,-0.68074,-1.64992,-0.166094 +0.0650088,0.401762,-1.5129,-0.692639,-1.64631,-0.173473 +0.0664357,0.398573,-1.52204,-0.706356,-1.6428,-0.180925 +0.0678336,0.395131,-1.53194,-0.721305,-1.63934,-0.188419 +0.0692162,0.391575,-1.54228,-0.737089,-1.63592,-0.195461 +0.0705844,0.387973,-1.55296,-0.75353,-1.63255,-0.200848 +0.0719346,0.384344,-1.56399,-0.770681,-1.62932,-0.203555 +0.0732648,0.380688,-1.57548,-0.788725,-1.62631,-0.203261 +0.0745679,0.377023,-1.58743,-0.807736,-1.62355,-0.200111 +0.0758336,0.373383,-1.59979,-0.827622,-1.62103,-0.194521 +0.0770607,0.369823,-1.61241,-0.848123,-1.61869,-0.18701 +0.0782532,0.366397,-1.62508,-0.868863,-1.61644,-0.178108 +0.079412,0.36315,-1.63761,-0.889461,-1.61419,-0.168296 +0.0805294,0.360098,-1.64985,-0.909621,-1.61191,-0.157977 +0.0815896,0.357231,-1.66179,-0.929218,-1.60966,-0.147468 +0.0825737,0.354519,-1.67347,-0.948261,-1.60761,-0.136998 +0.083464,0.351926,-1.68496,-0.966785,-1.60585,-0.126714 +0.084255,0.349426,-1.69628,-0.98479,-1.60441,-0.116689 +0.0849655,0.34701,-1.70741,-1.00221,-1.60324,-0.10693 +0.0856119,0.344672,-1.71826,-1.01887,-1.60227,-0.0974095 +0.0861832,0.342399,-1.72875,-1.03453,-1.60141,-0.088108 +0.0866493,0.340172,-1.73879,-1.04896,-1.60068,-0.0790116 +0.0869626,0.337967,-1.74835,-1.062,-1.60007,-0.0701214 +0.0870748,0.335768,-1.75744,-1.07367,-1.59952,-0.061445 +0.0869653,0.333575,-1.76611,-1.08406,-1.59894,-0.052973 +0.0866345,0.331401,-1.77439,-1.0933,-1.59818,-0.0446853 +0.0860829,0.329252,-1.78232,-1.10152,-1.59716,-0.0365687 +0.0852972,0.327126,-1.78997,-1.10895,-1.5958,-0.0286285 +0.0842529,0.325004,-1.79745,-1.11587,-1.59404,-0.0208852 +0.0829394,0.322861,-1.80487,-1.12257,-1.59184,-0.0133502 +0.0813748,0.320666,-1.81233,-1.12926,-1.58918,-0.00601178 +0.0795962,0.318394,-1.81987,-1.13605,-1.58609,0.0011583 +0.0776453,0.316025,-1.82746,-1.14285,-1.5827,0.00819386 +0.0755478,0.313552,-1.835,-1.14947,-1.5792,0.0151166 +0.0733061,0.310986,-1.84239,-1.15573,-1.57578,0.021928 +0.0709128,0.308363,-1.84949,-1.1615,-1.57263,0.0286205 +0.0683681,0.305739,-1.85619,-1.16672,-1.56992,0.0351927 +0.065698,0.303177,-1.86242,-1.17141,-1.56776,0.041665 +0.0629612,0.300711,-1.8682,-1.17559,-1.56621,0.0480857 +0.0602336,0.298338,-1.87361,-1.17929,-1.56521,0.0545187 +0.0575803,0.296052,-1.87876,-1.18255,-1.56468,0.0610182 +0.0550286,0.29388,-1.88366,-1.18541,-1.5646,0.0676063 +0.0525607,0.291888,-1.88823,-1.18795,-1.56501,0.0742669 +0.0501395,0.290154,-1.89238,-1.19021,-1.56593,0.0809676 +0.0477423,0.288737,-1.89604,-1.19229,-1.56734,0.0876884 +0.045365,0.287671,-1.89926,-1.19426,-1.56915,0.0944258 +0.0430125,0.286962,-1.90208,-1.1962,-1.57127,0.101184 +0.040691,0.286593,-1.9046,-1.19813,-1.57365,0.107967 +0.0384049,0.286528,-1.90685,-1.20002,-1.5762,0.11478 +0.0361662,0.286721,-1.90874,-1.20186,-1.57888,0.121633 +0.0340002,0.287113,-1.91016,-1.20363,-1.58166,0.128546 +0.0319351,0.287643,-1.91096,-1.20543,-1.5845,0.135545 +0.0299888,0.288235,-1.91111,-1.20737,-1.58742,0.142647 +0.0281539,0.288799,-1.9107,-1.20954,-1.5904,0.149845 +0.0263891,0.289223,-1.90995,-1.21191,-1.59341,0.157108 +0.024628,0.289395,-1.90916,-1.21433,-1.5964,0.164379 +0.0227923,0.289227,-1.9086,-1.2166,-1.5993,0.171591 +0.0208054,0.288669,-1.90849,-1.2185,-1.60206,0.178679 +0.0186112,0.287727,-1.90897,-1.21986,-1.60461,0.185593 +0.0161926,0.286477,-1.91001,-1.22064,-1.60695,0.192317 +0.0135877,0.285071,-1.91145,-1.22095,-1.60906,0.198882 +0.0108862,0.28373,-1.91298,-1.22114,-1.61091,0.205368 +0.00818613,0.282674,-1.91425,-1.22162,-1.61245,0.211861 +0.00552927,0.282029,-1.91506,-1.22268,-1.61361,0.218404 +0.00289024,0.281793,-1.91534,-1.2243,-1.61433,0.224976 +0.000226199,0.281884,-1.91512,-1.22631,-1.61458,0.231542 +-0.00247167,0.282222,-1.91443,-1.22848,-1.6143,0.238091 +-0.00515926,0.282756,-1.91325,-1.23066,-1.61347,0.244179 +-0.00776875,0.283463,-1.91156,-1.23278,-1.61214,0.248658 +-0.0102515,0.284318,-1.90942,-1.23483,-1.61046,0.250542 +-0.0125969,0.285282,-1.90692,-1.23681,-1.60861,0.24951 +-0.0148161,0.286307,-1.90416,-1.23866,-1.60674,0.24569 +-0.0169108,0.287348,-1.90121,-1.24036,-1.60497,0.239481 +-0.0188682,0.288367,-1.8981,-1.2418,-1.60336,0.231413 +-0.0206715,0.28934,-1.89477,-1.24272,-1.60192,0.222029 +-0.0223056,0.290259,-1.89111,-1.24281,-1.60064,0.211819 +-0.0237566,0.291143,-1.88702,-1.2418,-1.59952,0.201187 +-0.0250103,0.292022,-1.88242,-1.23951,-1.59854,0.190444 +-0.026052,0.292932,-1.87724,-1.23576,-1.59772,0.17981 +-0.0268658,0.293908,-1.87141,-1.23048,-1.59708,0.169428 +-0.0274317,0.294983,-1.8649,-1.22362,-1.59665,0.159381 +-0.0277232,0.296186,-1.85771,-1.21517,-1.59646,0.149714 +-0.0277121,0.297544,-1.84979,-1.20507,-1.59657,0.140444 +-0.0273856,0.299074,-1.84115,-1.19333,-1.59705,0.131557 +-0.0267656,0.300784,-1.8318,-1.17998,-1.5979,0.123005 +-0.0259052,0.302668,-1.82176,-1.1651,-1.59913,0.114715 +-0.0248574,0.304719,-1.81107,-1.14877,-1.6007,0.106618 +-0.0236476,0.306936,-1.79978,-1.13111,-1.60262,0.0986741 +-0.0222646,0.309328,-1.78791,-1.11221,-1.60493,0.0908782 +-0.0206783,0.311909,-1.7755,-1.0922,-1.60764,0.0832495 +-0.0188657,0.31469,-1.76257,-1.07116,-1.61076,0.0758061 +-0.0168181,0.317677,-1.74915,-1.04916,-1.61428,0.0685576 +-0.0145395,0.320873,-1.73528,-1.02633,-1.61816,0.0615067 +-0.0120383,0.324273,-1.72105,-1.00287,-1.62234,0.0546552 +-0.00931888,0.32787,-1.70662,-0.979138,-1.62677,0.0480102 +-0.00638903,0.331656,-1.69216,-0.955499,-1.63138,0.0415759 +-0.00327281,0.335634,-1.67778,-0.932225,-1.63611,0.0353395 +-1.77664e-05,0.339823,-1.66351,-0.909425,-1.64087,0.0292641 +0.00331219,0.344243,-1.64931,-0.887102,-1.64558,0.0232954 +0.0066576,0.348888,-1.63519,-0.865262,-1.65016,0.0173813 +0.009982,0.353706,-1.62124,-0.84403,-1.6545,0.0114892 +0.0132823,0.358604,-1.60764,-0.823633,-1.65853,0.0056167 +0.0165739,0.363483,-1.59455,-0.804257,-1.66224,-0.000223188 +0.0198567,0.368278,-1.58207,-0.785967,-1.66557,-0.00603324 +0.0231035,0.372967,-1.57014,-0.768671,-1.66847,-0.0118424 +0.0262806,0.377584,-1.5586,-0.752079,-1.67092,-0.0176867 +0.0293664,0.38218,-1.54722,-0.735852,-1.67295,-0.0235908 +0.0323528,0.386786,-1.53589,-0.719791,-1.67459,-0.0295658 +0.0352391,0.391391,-1.52462,-0.703884,-1.67585,-0.0356157 +0.0380278,0.39595,-1.5135,-0.688288,-1.6767,-0.0417408 +0.0407249,0.400403,-1.50275,-0.673278,-1.67712,-0.0479381 +0.0433329,0.40469,-1.49254,-0.659146,-1.67708,-0.0542078 +0.0458491,0.408764,-1.48302,-0.64609,-1.67655,-0.0605546 +0.0482737,0.412585,-1.47433,-0.634276,-1.67552,-0.0669808 +0.050607,0.416107,-1.46658,-0.623872,-1.674,-0.073488 +0.0528459,0.419293,-1.45981,-0.614938,-1.67198,-0.0800813 +0.0549838,0.422118,-1.45403,-0.607435,-1.66946,-0.0867688 +0.0570183,0.424566,-1.44921,-0.60128,-1.66644,-0.0935542 +0.0589601,0.42663,-1.44528,-0.596355,-1.66295,-0.100428 +0.060821,0.428287,-1.44224,-0.592642,-1.65907,-0.10738 +0.0625962,0.429476,-1.4402,-0.590273,-1.65481,-0.114417 +0.0642796,0.430119,-1.43932,-0.589455,-1.6502,-0.121544 +0.065882,0.430145,-1.43974,-0.590401,-1.64534,-0.128754 +0.0674162,0.429529,-1.44155,-0.593234,-1.64034,-0.136034 +0.0688943,0.428328,-1.44467,-0.597868,-1.63524,-0.143374 +0.070339,0.426686,-1.44881,-0.603974,-1.63011,-0.150753 +0.071763,0.424781,-1.4536,-0.611072,-1.62496,-0.158156 +0.0731615,0.422757,-1.45877,-0.618752,-1.61973,-0.165589 +0.0745281,0.420663,-1.46422,-0.626931,-1.61443,-0.173058 +0.0758564,0.418463,-1.47012,-0.635865,-1.60907,-0.18057 +0.0771345,0.416099,-1.47664,-0.645821,-1.60365,-0.187658 +0.0783468,0.413541,-1.48386,-0.656887,-1.59816,-0.193133 +0.0794749,0.410773,-1.49182,-0.669126,-1.59253,-0.195987 +0.0805086,0.407795,-1.50054,-0.682585,-1.58675,-0.195904 +0.0814656,0.404613,-1.51001,-0.697289,-1.58093,-0.193004 +0.0823731,0.401227,-1.52027,-0.713321,-1.57522,-0.18767 +0.0832479,0.397635,-1.53136,-0.730779,-1.56976,-0.180408 +0.0841067,0.393854,-1.54329,-0.749715,-1.56469,-0.171744 +0.0849673,0.38993,-1.55601,-0.770098,-1.5601,-0.162149 +0.0858361,0.385939,-1.56935,-0.791682,-1.55602,-0.152017 +0.0867099,0.38197,-1.58308,-0.814058,-1.55235,-0.141654 +0.0875889,0.378106,-1.59693,-0.836812,-1.54897,-0.13127 +0.0884809,0.374413,-1.61069,-0.859593,-1.54577,-0.12099 +0.0893849,0.370922,-1.62422,-0.882119,-1.54272,-0.110881 +0.0902891,0.367623,-1.63746,-0.904239,-1.5399,-0.100978 +0.091181,0.36448,-1.65046,-0.925944,-1.5375,-0.0912866 +0.0920473,0.361454,-1.66327,-0.947204,-1.53567,-0.0817924 +0.0928886,0.358528,-1.67585,-0.967892,-1.53437,-0.0724594 +0.0937237,0.355715,-1.6881,-0.98782,-1.53344,-0.063232 +0.0945651,0.353041,-1.69989,-1.00678,-1.53265,-0.0540615 +0.095409,0.350524,-1.71112,-1.02456,-1.53188,-0.0449185 +0.0962412,0.348163,-1.72173,-1.04095,-1.53129,-0.0357889 +0.0970441,0.345944,-1.7317,-1.05579,-1.53118,-0.0266682 +0.0978083,0.343842,-1.74102,-1.06894,-1.53176,-0.0175508 +0.0985392,0.341832,-1.74971,-1.08038,-1.533,-0.00842288 +0.0992555,0.33989,-1.7578,-1.09017,-1.53474,0.00073479 +0.0999735,0.337988,-1.76534,-1.09841,-1.53679,0.00993607 +0.10069,0.336095,-1.77237,-1.10518,-1.53912,0.0191764 +0.101381,0.334174,-1.77891,-1.11057,-1.54179,0.0284324 +0.102011,0.332205,-1.78502,-1.11469,-1.54489,0.0376682 +0.102538,0.330183,-1.79075,-1.11773,-1.54844,0.046844 +0.102924,0.328121,-1.79617,-1.11996,-1.55236,0.0559194 +0.103147,0.326042,-1.8014,-1.1217,-1.55646,0.0648693 +0.103216,0.323979,-1.80655,-1.1233,-1.56057,0.073694 +0.103148,0.32196,-1.81173,-1.12504,-1.56451,0.0824024 +0.102935,0.320006,-1.817,-1.12715,-1.56815,0.0909818 +0.102517,0.318118,-1.82238,-1.12973,-1.57137,0.0993778 +0.101794,0.316278,-1.82785,-1.13284,-1.57406,0.107504 +0.100677,0.314446,-1.83341,-1.13649,-1.57607,0.115282 +0.0991351,0.312569,-1.83912,-1.14072,-1.57727,0.122686 +0.0971962,0.310603,-1.84504,-1.14554,-1.5776,0.129741 +0.0949044,0.308528,-1.85118,-1.15085,-1.57709,0.136488 +0.0922893,0.306357,-1.8574,-1.15641,-1.57583,0.142956 +0.0893772,0.304127,-1.8635,-1.16189,-1.574,0.149174 +0.0862095,0.301882,-1.8693,-1.16701,-1.57182,0.155181 +0.0828463,0.299653,-1.87472,-1.17162,-1.56949,0.16103 +0.079355,0.297458,-1.87975,-1.17567,-1.56715,0.16678 +0.0757926,0.295309,-1.88445,-1.1792,-1.56488,0.17248 +0.0722005,0.293224,-1.88887,-1.18232,-1.56277,0.178162 +0.0686159,0.291245,-1.89298,-1.18508,-1.56091,0.183857 +0.0650932,0.289445,-1.89668,-1.18747,-1.55947,0.189609 +0.0617003,0.287918,-1.89975,-1.18942,-1.55861,0.195474 +0.0584872,0.286732,-1.90207,-1.19091,-1.55848,0.201492 +0.0554664,0.285892,-1.9037,-1.19203,-1.55909,0.207674 +0.0526241,0.285352,-1.90483,-1.19291,-1.56039,0.214008 +0.0499431,0.285054,-1.90562,-1.1937,-1.56226,0.220478 +0.0474224,0.28497,-1.90609,-1.19451,-1.56455,0.227084 +0.045084,0.285106,-1.90614,-1.19538,-1.56716,0.233842 +0.0429522,0.285482,-1.90567,-1.19639,-1.57002,0.240774 +0.0410295,0.286108,-1.90464,-1.19763,-1.57308,0.247881 +0.0392923,0.286975,-1.90316,-1.19924,-1.57631,0.255144 +0.0376923,0.28805,-1.90142,-1.20132,-1.5797,0.262525 +0.0361656,0.289283,-1.89962,-1.20391,-1.58319,0.26997 +0.0346433,0.290617,-1.89797,-1.20703,-1.58676,0.276941 +0.033058,0.291984,-1.89662,-1.21062,-1.59032,0.282182 +0.0313633,0.293316,-1.89564,-1.21459,-1.5938,0.284624 +0.0295518,0.294553,-1.89501,-1.21883,-1.59717,0.283937 +0.0276482,0.295667,-1.8946,-1.22322,-1.60038,0.280279 +0.0257023,0.296668,-1.89423,-1.2276,-1.60336,0.274094 +0.0237887,0.297609,-1.89367,-1.23182,-1.60609,0.265965 +0.0219798,0.298552,-1.89274,-1.2357,-1.60854,0.256488 +0.0203118,0.299528,-1.89131,-1.23906,-1.61072,0.246176 +0.0187839,0.300533,-1.88929,-1.24167,-1.61263,0.235428 +0.0173807,0.30155,-1.8867,-1.24337,-1.61423,0.224534 +0.0161021,0.302566,-1.88349,-1.24397,-1.61548,0.213707 +0.0149818,0.303574,-1.87961,-1.24321,-1.61641,0.203103 +0.0140604,0.304568,-1.87499,-1.24085,-1.61715,0.192823 +0.0133426,0.305532,-1.86964,-1.23674,-1.6178,0.182894 +0.0128027,0.306446,-1.86361,-1.2309,-1.61846,0.173286 +0.0124116,0.307293,-1.85696,-1.22338,-1.61924,0.163951 +0.0121603,0.308081,-1.84974,-1.21425,-1.6202,0.154849 +0.0120683,0.308839,-1.84196,-1.20357,-1.62142,0.14596 +0.0121677,0.309624,-1.8336,-1.19137,-1.62297,0.137282 +0.0124876,0.31051,-1.82462,-1.17772,-1.62488,0.128813 +0.0130465,0.311582,-1.81497,-1.16264,-1.62715,0.120552 +0.0138526,0.312915,-1.80463,-1.14617,-1.62975,0.112493 +0.0149155,0.314562,-1.79358,-1.12833,-1.63263,0.104639 +0.0162461,0.316552,-1.78187,-1.10925,-1.63571,0.0970011 +0.0178409,0.318891,-1.76958,-1.08911,-1.63891,0.0895789 +0.0196635,0.321576,-1.75675,-1.06805,-1.64216,0.0823476 +0.0216342,0.324596,-1.74343,-1.04618,-1.64536,0.075245 +0.0236573,0.327938,-1.7296,-1.02348,-1.64841,0.068194 +0.0256712,0.331581,-1.71526,-0.999974,-1.65127,0.061146 +0.0276633,0.335478,-1.70057,-0.97594,-1.65388,0.0540943 +0.0296607,0.339558,-1.68577,-0.951863,-1.65621,0.0470671 +0.0317112,0.343762,-1.67107,-0.928099,-1.65823,0.0401093 +0.0338507,0.348063,-1.65654,-0.904766,-1.65999,0.0332547 +0.0360714,0.352456,-1.64218,-0.881922,-1.66152,0.0264966 +0.038327,0.356941,-1.62802,-0.859639,-1.66276,0.019792 +0.0405756,0.36153,-1.61402,-0.8379,-1.6637,0.0131016 +0.0428016,0.366252,-1.60011,-0.816579,-1.66438,0.00640994 +0.0450006,0.371118,-1.58627,-0.795629,-1.66482,-0.000288504 +0.0471636,0.376109,-1.57256,-0.775164,-1.665,-0.00700416 +0.0492877,0.381191,-1.55908,-0.755334,-1.66493,-0.0137418 +0.0513691,0.386322,-1.54589,-0.736251,-1.66456,-0.0205074 +0.0533899,0.391456,-1.53305,-0.717936,-1.66383,-0.02732 +0.0553382,0.396545,-1.52059,-0.700389,-1.66267,-0.034193 +0.0572125,0.401532,-1.50858,-0.683684,-1.66104,-0.0411301 +0.0590166,0.40635,-1.49711,-0.667904,-1.65894,-0.0481294 +0.0607531,0.410915,-1.4863,-0.653187,-1.65632,-0.0551906 +0.0624246,0.415122,-1.47634,-0.639761,-1.65318,-0.0623128 +0.0640444,0.418885,-1.46741,-0.627809,-1.64955,-0.0694847 +0.0656233,0.422167,-1.45955,-0.617381,-1.64547,-0.0766969 +0.0671595,0.425015,-1.45265,-0.608273,-1.64097,-0.0839511 +0.0686489,0.427542,-1.44645,-0.600117,-1.63609,-0.0912504 +0.0700968,0.429847,-1.44075,-0.59266,-1.63093,-0.0985891 +0.0715123,0.431967,-1.43551,-0.585869,-1.62555,-0.105958 +0.072896,0.433846,-1.43091,-0.579971,-1.62001,-0.113358 +0.0742411,0.435368,-1.42726,-0.575397,-1.61428,-0.120796 +0.0755364,0.436437,-1.42482,-0.572511,-1.60833,-0.128285 +0.0767716,0.437047,-1.42361,-0.571344,-1.60213,-0.135834 +0.0779416,0.437269,-1.42347,-0.57167,-1.59567,-0.143448 +0.07904,0.437186,-1.42421,-0.573256,-1.58893,-0.151133 +0.080058,0.436862,-1.42564,-0.575864,-1.58189,-0.158896 +0.080989,0.436321,-1.42765,-0.57931,-1.57454,-0.166742 +0.0818339,0.435527,-1.43032,-0.583661,-1.56691,-0.174671 +0.0826034,0.434398,-1.4338,-0.589186,-1.55906,-0.182193 +0.0833079,0.432843,-1.43832,-0.596209,-1.55109,-0.188097 +0.0839578,0.430788,-1.44404,-0.605027,-1.54309,-0.191348 +0.0845685,0.428195,-1.45109,-0.615851,-1.53517,-0.191607 +0.0851524,0.425074,-1.45948,-0.628758,-1.52742,-0.189003 +0.0857201,0.421494,-1.46912,-0.643629,-1.5199,-0.183929 +0.0862739,0.417569,-1.47978,-0.660151,-1.51259,-0.176907 +0.0868015,0.413431,-1.4912,-0.677952,-1.50539,-0.16848 +0.0872905,0.409209,-1.50311,-0.696699,-1.49817,-0.159145 +0.0877372,0.405014,-1.51533,-0.716122,-1.49087,-0.149304 +0.0881447,0.400905,-1.52776,-0.736123,-1.48352,-0.139261 +0.0885266,0.396892,-1.54044,-0.756773,-1.47628,-0.129221 +0.088909,0.392955,-1.55346,-0.778215,-1.4694,-0.119298 +0.0893226,0.389075,-1.56691,-0.800572,-1.4631,-0.10954 +0.0897911,0.38525,-1.58076,-0.823803,-1.4575,-0.0999534 +0.0903306,0.381509,-1.59485,-0.847634,-1.45257,-0.0905163 +0.0909512,0.377887,-1.60896,-0.871666,-1.44827,-0.0811916 +0.0916573,0.374413,-1.62295,-0.895608,-1.44457,-0.0719403 +0.0924419,0.371102,-1.63672,-0.919275,-1.44144,-0.0627334 +0.0932978,0.367961,-1.65019,-0.942447,-1.43889,-0.0535436 +0.0942257,0.364994,-1.6633,-0.964964,-1.4369,-0.0443422 +0.0952094,0.362197,-1.67601,-0.98673,-1.43536,-0.0351204 +0.0962307,0.359565,-1.68827,-1.0076,-1.43415,-0.0258757 +0.0972835,0.357094,-1.70005,-1.02743,-1.4333,-0.0166005 +0.0983528,0.354774,-1.71131,-1.04611,-1.43288,-0.00729987 +0.0994221,0.352596,-1.72205,-1.06353,-1.433,0.00201721 +0.100487,0.350551,-1.73228,-1.07964,-1.43375,0.0113491 +0.101544,0.348633,-1.742,-1.09444,-1.43508,0.0206964 +0.102592,0.346833,-1.7512,-1.1079,-1.43685,0.0300596 +0.103625,0.345137,-1.75988,-1.11997,-1.43895,0.0394376 +0.104635,0.343526,-1.76801,-1.13061,-1.44139,0.0488252 +0.105615,0.341973,-1.77557,-1.13972,-1.4443,0.058218 +0.106571,0.340448,-1.78253,-1.14719,-1.44788,0.0676218 +0.107515,0.338922,-1.78888,-1.153,-1.45231,0.0770445 +0.108449,0.337364,-1.79461,-1.15717,-1.45766,0.0864867 +0.109366,0.335745,-1.79981,-1.15989,-1.46382,0.0959422 +0.110266,0.33404,-1.8046,-1.16143,-1.47055,0.105405 +0.111157,0.332233,-1.80914,-1.16214,-1.47759,0.114881 +0.112053,0.330324,-1.81356,-1.16233,-1.48472,0.124375 +0.112939,0.328337,-1.8179,-1.16221,-1.49184,0.133873 +0.113774,0.326313,-1.82216,-1.1619,-1.49897,0.143334 +0.114508,0.3243,-1.82628,-1.16143,-1.50614,0.152718 +0.115106,0.322335,-1.83028,-1.16091,-1.51337,0.161989 +0.115548,0.320439,-1.8342,-1.16048,-1.52057,0.17113 +0.115826,0.318614,-1.83809,-1.16027,-1.52766,0.180131 +0.115935,0.316851,-1.842,-1.16037,-1.53457,0.188984 +0.115856,0.315138,-1.84593,-1.1608,-1.54126,0.197674 +0.115552,0.313465,-1.84983,-1.16153,-1.54766,0.206166 +0.114977,0.311836,-1.85365,-1.16251,-1.55367,0.214423 +0.114095,0.310261,-1.85733,-1.16368,-1.5592,0.222413 +0.11288,0.308747,-1.8608,-1.16497,-1.56415,0.230115 +0.11131,0.307285,-1.86405,-1.16636,-1.5684,0.237513 +0.109375,0.305848,-1.86711,-1.16782,-1.57182,0.244597 +0.107069,0.304399,-1.87008,-1.16943,-1.57432,0.251362 +0.104395,0.302902,-1.87309,-1.1713,-1.5758,0.257811 +0.101381,0.301339,-1.87621,-1.17347,-1.57627,0.263968 +0.0980756,0.299736,-1.87942,-1.17587,-1.57585,0.269877 +0.0945402,0.298159,-1.88253,-1.17828,-1.5747,0.275593 +0.0908337,0.296686,-1.88531,-1.18041,-1.57302,0.28117 +0.0870096,0.295363,-1.88764,-1.18209,-1.57099,0.286654 +0.0831136,0.294191,-1.8895,-1.18333,-1.56879,0.292084 +0.0791924,0.293151,-1.89097,-1.18417,-1.56655,0.297497 +0.0753107,0.292255,-1.89203,-1.18469,-1.56442,0.302948 +0.0715577,0.291563,-1.89259,-1.18492,-1.56257,0.308027 +0.0680206,0.291142,-1.89257,-1.18491,-1.56114,0.311602 +0.0647588,0.291022,-1.89193,-1.18475,-1.56027,0.312695 +0.061799,0.29118,-1.89077,-1.18459,-1.56007,0.311 +0.0591352,0.291557,-1.88925,-1.18459,-1.56059,0.306648 +0.0567382,0.292096,-1.88753,-1.18486,-1.56181,0.300019 +0.0545761,0.292761,-1.88572,-1.18549,-1.56366,0.291609 +0.0526274,0.293536,-1.88386,-1.18651,-1.56609,0.281935 +0.0508817,0.294418,-1.88197,-1.18793,-1.56905,0.271476 +0.0493334,0.295411,-1.88002,-1.18975,-1.57245,0.260628 +0.0479831,0.296526,-1.87799,-1.19188,-1.57623,0.249696 +0.0468404,0.297784,-1.87579,-1.19425,-1.58032,0.238903 +0.0459148,0.299208,-1.87335,-1.19673,-1.58466,0.228391 +0.0452074,0.300811,-1.87062,-1.19917,-1.58918,0.218231 +0.0447024,0.302581,-1.86753,-1.20138,-1.59382,0.208434 +0.0443657,0.304481,-1.86404,-1.20309,-1.59851,0.198968 +0.0441651,0.306458,-1.86005,-1.20386,-1.60317,0.189781 +0.0440864,0.308454,-1.85541,-1.20316,-1.60772,0.180832 +0.044125,0.310423,-1.85001,-1.20052,-1.61211,0.172084 +0.0442703,0.312329,-1.8438,-1.19576,-1.61626,0.163498 +0.0444975,0.314151,-1.83684,-1.18894,-1.62016,0.155027 +0.0447661,0.315876,-1.82924,-1.18031,-1.62381,0.146616 +0.0450361,0.317504,-1.82111,-1.17013,-1.62719,0.138217 +0.0452906,0.319057,-1.81249,-1.15853,-1.63028,0.129806 +0.0455534,0.320589,-1.80338,-1.14557,-1.63306,0.121398 +0.0458797,0.322175,-1.79376,-1.13131,-1.63556,0.113039 +0.046321,0.32389,-1.78356,-1.11578,-1.63781,0.104772 +0.0468957,0.325791,-1.77276,-1.099,-1.63987,0.0966149 +0.0475888,0.327917,-1.76132,-1.08095,-1.64177,0.0885596 +0.048371,0.33029,-1.74921,-1.06154,-1.64356,0.080584 +0.049214,0.332921,-1.73642,-1.04081,-1.64525,0.072667 +0.0501004,0.335815,-1.72301,-1.01889,-1.64682,0.0647955 +0.0510258,0.338976,-1.709,-0.995899,-1.64825,0.056967 +0.0519985,0.342419,-1.69446,-0.971983,-1.64952,0.0491897 +0.0530272,0.346159,-1.67942,-0.9473,-1.65063,0.041472 +0.054113,0.350215,-1.66396,-0.922029,-1.65155,0.0338149 +0.0552515,0.354591,-1.64817,-0.896439,-1.65227,0.0262135 +0.0564262,0.359276,-1.63219,-0.87084,-1.65273,0.0186512 +0.0576207,0.364249,-1.61613,-0.845471,-1.65291,0.0111118 +0.0588267,0.369478,-1.60007,-0.820521,-1.65279,0.00358602 +0.0600324,0.374903,-1.58414,-0.7962,-1.65234,-0.00393827 +0.0612241,0.38045,-1.56847,-0.772686,-1.65147,-0.0114758 +0.0623971,0.386055,-1.55309,-0.749995,-1.65015,-0.0190317 +0.0635591,0.39168,-1.53801,-0.728023,-1.64838,-0.026599 +0.0647151,0.397294,-1.5232,-0.706713,-1.64619,-0.0341733 +0.0658585,0.40286,-1.5087,-0.686105,-1.64361,-0.0417615 +0.0669831,0.408352,-1.49453,-0.666226,-1.64063,-0.0493699 +0.0680943,0.413739,-1.48075,-0.647103,-1.63729,-0.0569936 +0.0692065,0.41896,-1.4675,-0.628909,-1.63361,-0.064619 +0.0703343,0.423944,-1.45497,-0.611886,-1.6296,-0.0722327 +0.0714804,0.428661,-1.44322,-0.596072,-1.62524,-0.0798319 +0.072641,0.433139,-1.43219,-0.581278,-1.62054,-0.0874193 +0.0738089,0.437438,-1.42171,-0.567265,-1.61555,-0.0950007 +0.074965,0.441642,-1.4116,-0.553764,-1.6103,-0.102594 +0.0760835,0.445847,-1.40161,-0.54046,-1.60478,-0.110222 +0.0771381,0.450142,-1.39153,-0.527038,-1.59898,-0.11791 +0.0781197,0.454561,-1.38126,-0.513361,-1.59291,-0.125667 +0.0790402,0.459006,-1.37104,-0.499745,-1.58658,-0.133481 +0.0799066,0.463246,-1.36138,-0.486947,-1.57997,-0.141347 +0.0807167,0.467003,-1.35291,-0.475822,-1.57299,-0.149267 +0.0814715,0.470031,-1.34618,-0.4671,-1.5656,-0.157241 +0.0821703,0.472142,-1.34159,-0.461342,-1.55781,-0.16527 +0.0827967,0.473262,-1.3393,-0.458742,-1.54961,-0.17337 +0.083326,0.473453,-1.33915,-0.459053,-1.54094,-0.181081 +0.0837443,0.472874,-1.34076,-0.461756,-1.53178,-0.187212 +0.0840426,0.471735,-1.34367,-0.466201,-1.52213,-0.190742 +0.0842197,0.47022,-1.34743,-0.47177,-1.512,-0.191343 +0.084284,0.468417,-1.35186,-0.478175,-1.50145,-0.189144 +0.0842379,0.466292,-1.35705,-0.485589,-1.49053,-0.184545 +0.0840944,0.463745,-1.36327,-0.494433,-1.47937,-0.178059 +0.0838845,0.46068,-1.37079,-0.505136,-1.46817,-0.170193 +0.0836298,0.457019,-1.37985,-0.5181,-1.45712,-0.161416 +0.0833517,0.452751,-1.39053,-0.533533,-1.44635,-0.152112 +0.0830724,0.447962,-1.40266,-0.551238,-1.43593,-0.142567 +0.0828057,0.442797,-1.41592,-0.570791,-1.42586,-0.132982 +0.0825763,0.437386,-1.43001,-0.591822,-1.41619,-0.123468 +0.0824168,0.431823,-1.44473,-0.61408,-1.40703,-0.114068 +0.0823556,0.426154,-1.46,-0.637488,-1.39854,-0.104786 +0.0824191,0.420408,-1.47579,-0.662053,-1.39088,-0.0955959 +0.0826375,0.414629,-1.49203,-0.687681,-1.38425,-0.0864514 +0.0830381,0.408881,-1.5086,-0.714197,-1.37878,-0.0773 +0.0836452,0.403233,-1.52537,-0.741404,-1.37458,-0.0680899 +0.0844944,0.397755,-1.54222,-0.769162,-1.37174,-0.0587634 +0.0856079,0.392514,-1.55901,-0.797284,-1.37031,-0.0492787 +0.0869721,0.387575,-1.57556,-0.825412,-1.37016,-0.0396284 +0.0885522,0.382985,-1.59172,-0.853215,-1.37115,-0.0298289 +0.0902925,0.37877,-1.60739,-0.880435,-1.37307,-0.0199191 +0.0921264,0.374934,-1.6225,-0.906824,-1.37566,-0.00994839 +0.0940017,0.371457,-1.637,-0.932231,-1.37868,4.3154e-05 +0.0958771,0.368307,-1.6509,-0.956571,-1.38195,0.0100231 +0.0976982,0.365437,-1.66419,-0.97969,-1.38535,0.0199493 +0.0993929,0.362794,-1.67685,-1.00144,-1.38877,0.0297648 +0.100897,0.360326,-1.68892,-1.02176,-1.3922,0.0394178 +0.102181,0.35799,-1.70044,-1.04064,-1.39564,0.0488875 +0.103248,0.355756,-1.71143,-1.05812,-1.39904,0.0581806 +0.104121,0.353609,-1.72192,-1.07425,-1.40238,0.0673215 +0.10484,0.351546,-1.73193,-1.08912,-1.40566,0.076347 +0.105445,0.349574,-1.74145,-1.10274,-1.40896,0.085295 +0.105971,0.347705,-1.75045,-1.11508,-1.41242,0.0941968 +0.106435,0.345949,-1.75888,-1.12607,-1.41615,0.103072 +0.106853,0.344314,-1.76667,-1.13561,-1.42029,0.111937 +0.107242,0.342801,-1.77378,-1.14362,-1.42497,0.120807 +0.107614,0.341397,-1.78018,-1.15006,-1.43028,0.129694 +0.107977,0.340074,-1.78585,-1.15492,-1.43627,0.138604 +0.108354,0.338793,-1.79085,-1.15828,-1.44298,0.147558 +0.108784,0.337501,-1.79527,-1.16029,-1.4504,0.156582 +0.109286,0.336142,-1.79926,-1.16114,-1.45846,0.165692 +0.109846,0.334685,-1.80294,-1.16105,-1.46698,0.174873 +0.110409,0.333139,-1.80628,-1.16013,-1.47582,0.184076 +0.110897,0.331559,-1.80917,-1.15844,-1.48485,0.193234 +0.111239,0.330006,-1.81153,-1.15604,-1.494,0.202282 +0.111395,0.328508,-1.81338,-1.15313,-1.50314,0.211183 +0.111372,0.327048,-1.81494,-1.14996,-1.51212,0.21994 +0.111202,0.32559,-1.81643,-1.14681,-1.52085,0.228579 +0.110905,0.324115,-1.81803,-1.14391,-1.52921,0.237113 +0.110466,0.32264,-1.81978,-1.14135,-1.53715,0.245527 +0.109858,0.321209,-1.82159,-1.13916,-1.54463,0.253796 +0.109051,0.319873,-1.82335,-1.13731,-1.55164,0.26189 +0.108012,0.31867,-1.825,-1.13578,-1.5581,0.269783 +0.106715,0.317623,-1.8265,-1.13458,-1.56391,0.277449 +0.105138,0.316738,-1.82787,-1.13378,-1.56897,0.284868 +0.103268,0.316008,-1.82913,-1.13342,-1.5732,0.292028 +0.101097,0.315415,-1.83032,-1.13358,-1.57652,0.298921 +0.0986284,0.314935,-1.83148,-1.13428,-1.57892,0.305549 +0.0958866,0.314545,-1.83256,-1.13547,-1.58042,0.311933 +0.0929203,0.314227,-1.83355,-1.13707,-1.58114,0.318116 +0.0897913,0.313963,-1.8344,-1.13899,-1.58123,0.323671 +0.0865613,0.313735,-1.83512,-1.14118,-1.58087,0.327449 +0.0832938,0.313525,-1.83572,-1.14362,-1.58027,0.328478 +0.0800527,0.313319,-1.83626,-1.1463,-1.57965,0.326488 +0.0768849,0.313103,-1.83679,-1.14922,-1.57923,0.321656 +0.0738188,0.312871,-1.83735,-1.15237,-1.57914,0.314413 +0.0708933,0.312642,-1.83794,-1.15569,-1.57952,0.305316 +0.0681736,0.312475,-1.83839,-1.15901,-1.58047,0.294955 +0.0657453,0.312453,-1.83846,-1.16201,-1.58212,0.283891 +0.0636853,0.312661,-1.83786,-1.16436,-1.58453,0.272591 +0.062016,0.313138,-1.83643,-1.16575,-1.58768,0.261379 +0.0606904,0.313871,-1.83414,-1.16605,-1.59147,0.250431 +0.0596211,0.314805,-1.83113,-1.16533,-1.59574,0.239807 +0.0587131,0.31587,-1.82759,-1.16375,-1.60035,0.229497 +0.0578813,0.316997,-1.82367,-1.16139,-1.60513,0.219452 +0.0570618,0.318132,-1.81943,-1.15828,-1.60991,0.209613 +0.056222,0.319246,-1.81489,-1.15436,-1.61457,0.199926 +0.0553615,0.320339,-1.80997,-1.14948,-1.61898,0.190359 +0.0545028,0.321434,-1.80455,-1.14345,-1.62308,0.180895 +0.053672,0.322561,-1.79851,-1.13601,-1.62681,0.171526 +0.0528877,0.323747,-1.79172,-1.12694,-1.63014,0.162241 +0.0521656,0.325012,-1.78415,-1.11617,-1.63315,0.153034 +0.0515061,0.326366,-1.77585,-1.10382,-1.63592,0.143888 +0.0508892,0.327816,-1.7669,-1.09008,-1.6385,0.134775 +0.0502945,0.329375,-1.75734,-1.07497,-1.64093,0.125673 +0.0497093,0.331072,-1.74711,-1.05842,-1.64324,0.116568 +0.0491397,0.332944,-1.7362,-1.04044,-1.64544,0.107464 +0.0486235,0.335044,-1.72458,-1.02106,-1.64753,0.0983949 +0.0482116,0.337432,-1.7122,-1.00033,-1.6495,0.0894058 +0.0479433,0.340169,-1.69902,-0.978245,-1.65134,0.0805339 +0.0478316,0.343317,-1.68495,-0.95475,-1.65306,0.071793 +0.0478601,0.346915,-1.67002,-0.929934,-1.6547,0.0631708 +0.0480002,0.350968,-1.65437,-0.904178,-1.65628,0.0546429 +0.0482445,0.35546,-1.6382,-0.877935,-1.65779,0.0462036 +0.0486158,0.360368,-1.62165,-0.851514,-1.65922,0.0378754 +0.0491445,0.36566,-1.60485,-0.82516,-1.66051,0.0296878 +0.049847,0.371298,-1.58789,-0.799056,-1.66163,0.0216578 +0.0507117,0.377249,-1.57084,-0.77329,-1.66257,0.0137763 +0.051694,0.383469,-1.55374,-0.747942,-1.66333,0.00600339 +0.0527381,0.389917,-1.53662,-0.72303,-1.66389,-0.00171214 +0.0537957,0.396566,-1.51944,-0.698449,-1.66429,-0.00941498 +0.0548332,0.4034,-1.50212,-0.674023,-1.66454,-0.0171365 +0.0558423,0.410403,-1.4846,-0.649605,-1.66465,-0.0248843 +0.0568339,0.417537,-1.46693,-0.625211,-1.66455,-0.0326487 +0.0578318,0.424743,-1.44925,-0.60099,-1.66415,-0.0404075 +0.0588638,0.431966,-1.43169,-0.577119,-1.66335,-0.0481347 +0.0599487,0.43915,-1.41441,-0.553783,-1.6621,-0.0558128 +0.0610982,0.446262,-1.39751,-0.53112,-1.6604,-0.0634304 +0.0623178,0.4533,-1.38102,-0.509171,-1.65833,-0.070982 +0.0635922,0.460286,-1.36488,-0.487911,-1.65596,-0.0784823 +0.0648854,0.467239,-1.3491,-0.467373,-1.65329,-0.0859662 +0.066168,0.474159,-1.33367,-0.447645,-1.65036,-0.0934624 +0.067424,0.481046,-1.3186,-0.42868,-1.64717,-0.100987 +0.0686483,0.487861,-1.30392,-0.410446,-1.64368,-0.108544 +0.0698492,0.494484,-1.28985,-0.393173,-1.63985,-0.116125 +0.0710344,0.500782,-1.27664,-0.377152,-1.63565,-0.123723 +0.0722132,0.506666,-1.26447,-0.362559,-1.63108,-0.131327 +0.0733885,0.512095,-1.25338,-0.349463,-1.62619,-0.138933 +0.0745445,0.517109,-1.24326,-0.337677,-1.62096,-0.146556 +0.0756719,0.521817,-1.23381,-0.326791,-1.61539,-0.154207 +0.0767728,0.526307,-1.22481,-0.316465,-1.60953,-0.161883 +0.0778347,0.530549,-1.21626,-0.306636,-1.60335,-0.169597 +0.0788425,0.534325,-1.20858,-0.297741,-1.59683,-0.177361 +0.0797928,0.53734,-1.20236,-0.290419,-1.58999,-0.184694 +0.0806767,0.539371,-1.19804,-0.28516,-1.58283,-0.190401 +0.0814702,0.540329,-1.19585,-0.28229,-1.5753,-0.193475 +0.08215,0.540303,-1.19566,-0.281745,-1.5673,-0.193611 +0.0826986,0.539488,-1.1971,-0.283168,-1.55877,-0.190965 +0.0831194,0.538059,-1.19988,-0.286272,-1.5497,-0.185936 +0.0834285,0.536117,-1.20381,-0.290882,-1.54014,-0.17903 +0.0836223,0.533672,-1.20888,-0.296945,-1.53018,-0.170786 +0.0836889,0.530578,-1.2154,-0.30483,-1.51994,-0.161701 +0.0836381,0.526621,-1.22385,-0.315154,-1.50969,-0.152167 +0.0835094,0.521725,-1.2344,-0.328141,-1.4997,-0.142453 +0.0833402,0.515978,-1.24687,-0.343636,-1.49009,-0.132738 +0.0831422,0.509552,-1.26095,-0.361369,-1.48076,-0.123145 +0.0829256,0.502665,-1.27619,-0.380882,-1.47159,-0.113737 +0.0827054,0.495502,-1.29221,-0.401643,-1.46265,-0.104527 +0.0824964,0.488153,-1.30877,-0.423296,-1.45413,-0.0954971 +0.0823219,0.480609,-1.32592,-0.445902,-1.44632,-0.0866063 +0.0821993,0.472828,-1.34381,-0.469811,-1.43936,-0.0778105 +0.0821386,0.464847,-1.36245,-0.495157,-1.43326,-0.0690695 +0.082146,0.456786,-1.38165,-0.52175,-1.42786,-0.0603473 +0.0822132,0.448784,-1.40111,-0.549256,-1.4229,-0.0516249 +0.0823283,0.440958,-1.42061,-0.577366,-1.4181,-0.0428922 +0.0824914,0.43339,-1.43998,-0.60585,-1.41332,-0.034135 +0.0827222,0.426116,-1.45915,-0.63465,-1.40869,-0.0253296 +0.0830539,0.419146,-1.47813,-0.663731,-1.40461,-0.016447 +0.0835148,0.412489,-1.49687,-0.692948,-1.40156,-0.00746648 +0.084124,0.406141,-1.5154,-0.722263,-1.39986,0.00162259 +0.0848832,0.400101,-1.53374,-0.751679,-1.39951,0.0108174 +0.0857798,0.394389,-1.55182,-0.78104,-1.40023,0.0201069 +0.0867979,0.389034,-1.56952,-0.810127,-1.4017,0.0294783 +0.0879072,0.38407,-1.5867,-0.838647,-1.40381,0.0389055 +0.0890706,0.379525,-1.60316,-0.86617,-1.40664,0.0483574 +0.090256,0.375411,-1.61878,-0.892306,-1.41037,0.057808 +0.0914377,0.371709,-1.63349,-0.916859,-1.41503,0.0672379 +0.0926006,0.368374,-1.64735,-0.939871,-1.42043,0.0766381 +0.0937345,0.365347,-1.6605,-0.96157,-1.42621,0.0860031 +0.0948437,0.362565,-1.67309,-0.982188,-1.43203,0.0953402 +0.0959431,0.359975,-1.68519,-1.00183,-1.4377,0.104666 +0.0970275,0.357535,-1.69682,-1.02046,-1.44313,0.113982 +0.098075,0.355217,-1.70795,-1.03795,-1.44835,0.123276 +0.0990648,0.353007,-1.71845,-1.05401,-1.45358,0.132534 +0.0999752,0.350903,-1.7282,-1.06836,-1.45908,0.141747 +0.100788,0.348902,-1.73712,-1.08085,-1.46503,0.150902 +0.101503,0.346995,-1.7452,-1.09144,-1.47147,0.160003 +0.102128,0.345171,-1.75252,-1.10025,-1.47831,0.169062 +0.102678,0.34341,-1.75917,-1.10742,-1.48543,0.178091 +0.103158,0.341691,-1.76521,-1.11308,-1.49274,0.187095 +0.103559,0.339995,-1.77065,-1.1173,-1.5002,0.196066 +0.103864,0.338304,-1.77552,-1.12015,-1.50779,0.204989 +0.104056,0.33661,-1.77985,-1.12178,-1.51548,0.213847 +0.104118,0.334912,-1.78368,-1.12237,-1.52322,0.222621 +0.104047,0.333216,-1.78711,-1.12215,-1.53093,0.231304 +0.103849,0.33153,-1.79022,-1.12137,-1.53856,0.239895 +0.103518,0.329861,-1.79315,-1.1203,-1.54599,0.248385 +0.103036,0.328214,-1.79602,-1.11923,-1.55306,0.256751 +0.102377,0.326598,-1.79893,-1.11837,-1.55963,0.264969 +0.101519,0.325034,-1.80193,-1.11791,-1.56562,0.273014 +0.100431,0.323544,-1.80503,-1.11796,-1.57095,0.280857 +0.0990632,0.32214,-1.80825,-1.11865,-1.5755,0.288451 +0.0973617,0.320823,-1.81159,-1.12008,-1.57912,0.295748 +0.0952932,0.319577,-1.81508,-1.1223,-1.58172,0.302718 +0.0928412,0.318381,-1.81872,-1.12536,-1.58325,0.309347 +0.0900134,0.317204,-1.82253,-1.12923,-1.58372,0.315643 +0.0868516,0.316021,-1.82647,-1.13385,-1.58324,0.321162 +0.0834369,0.314815,-1.83048,-1.13906,-1.58207,0.324773 +0.079878,0.313586,-1.83444,-1.1446,-1.58055,0.325545 +0.0762837,0.312352,-1.83824,-1.15025,-1.57902,0.323248 +0.0727461,0.311147,-1.84179,-1.1558,-1.57778,0.318101 +0.0693351,0.310011,-1.845,-1.16111,-1.57702,0.31057 +0.0661042,0.30899,-1.84779,-1.16608,-1.57689,0.301222 +0.0630961,0.308131,-1.85011,-1.17067,-1.57749,0.290631 +0.0603364,0.30747,-1.85191,-1.17491,-1.57884,0.279301 +0.0578265,0.307024,-1.85324,-1.17887,-1.58093,0.267634 +0.0555419,0.306789,-1.85416,-1.18265,-1.58368,0.255914 +0.0534401,0.306744,-1.8548,-1.18636,-1.58699,0.244319 +0.051475,0.306869,-1.85527,-1.19011,-1.59073,0.232944 +0.0496061,0.307147,-1.8556,-1.19394,-1.59475,0.221823 +0.0478028,0.307568,-1.85578,-1.19774,-1.59891,0.210958 +0.0460422,0.308118,-1.8557,-1.20132,-1.60308,0.200322 +0.0443027,0.308775,-1.85528,-1.20448,-1.60714,0.189872 +0.0425625,0.309505,-1.85445,-1.20698,-1.611,0.179559 +0.0408009,0.310266,-1.85314,-1.20858,-1.61456,0.169331 +0.0390067,0.311018,-1.85131,-1.20905,-1.61777,0.159146 +0.0371877,0.311735,-1.84887,-1.20817,-1.62059,0.148983 +0.0353727,0.312403,-1.84578,-1.20582,-1.62303,0.138844 +0.0336006,0.313016,-1.84199,-1.20192,-1.62515,0.128745 +0.0319094,0.313568,-1.83749,-1.19646,-1.62701,0.118706 +0.0303244,0.314052,-1.83232,-1.18951,-1.62868,0.108741 +0.0288461,0.314464,-1.82656,-1.18122,-1.6302,0.0988467 +0.0274503,0.314815,-1.8203,-1.17173,-1.6316,0.0890023 +0.026104,0.315135,-1.81359,-1.16119,-1.63292,0.0791804 +0.0247952,0.315482,-1.80649,-1.14977,-1.63422,0.0693722 +0.0235519,0.315943,-1.79897,-1.13751,-1.63557,0.0596025 +0.0224418,0.316626,-1.79085,-1.12418,-1.637,0.0499286 +0.0215451,0.317637,-1.78192,-1.10945,-1.63857,0.0404188 +0.0208939,0.319039,-1.77203,-1.09306,-1.64031,0.0311009 +0.0204317,0.320832,-1.7612,-1.07506,-1.64216,0.0219287 +0.0200419,0.322963,-1.74962,-1.05575,-1.64401,0.0128041 +0.0196377,0.325375,-1.73748,-1.03547,-1.64575,0.00365438 +0.0192376,0.328061,-1.72482,-1.0143,-1.6474,-0.00550297 +0.0189478,0.331066,-1.71153,-0.992085,-1.64906,-0.0145739 +0.0188941,0.334449,-1.6975,-0.968744,-1.65083,-0.0234453 +0.0191561,0.338247,-1.68274,-0.944427,-1.65277,-0.0320423 +0.0197351,0.342463,-1.66735,-0.919402,-1.65488,-0.0403586 +0.0205792,0.347073,-1.65145,-0.89394,-1.65713,-0.0484362 +0.0216178,0.352045,-1.63515,-0.868241,-1.6595,-0.0563345 +0.0227819,0.357348,-1.61851,-0.842413,-1.66198,-0.0641126 +0.0240241,0.362954,-1.60159,-0.816527,-1.66452,-0.071811 +0.0253268,0.368821,-1.58446,-0.790719,-1.66709,-0.0794433 +0.0267007,0.374897,-1.56725,-0.765201,-1.66963,-0.0869967 +0.0281797,0.381147,-1.55006,-0.740077,-1.67209,-0.0944378 +0.0297939,0.38755,-1.5329,-0.71535,-1.67447,-0.101737 +0.0315454,0.39409,-1.5158,-0.691013,-1.67676,-0.108892 +0.0334121,0.400761,-1.49874,-0.667001,-1.67891,-0.115923 +0.0353615,0.407566,-1.48167,-0.643213,-1.68089,-0.122862 +0.0373559,0.414504,-1.46458,-0.619606,-1.68262,-0.129745 +0.039361,0.421574,-1.44748,-0.59614,-1.68403,-0.136607 +0.0413576,0.428773,-1.43037,-0.572808,-1.68508,-0.143467 +0.043335,0.436062,-1.41334,-0.549775,-1.68577,-0.150336 +0.0452795,0.443374,-1.39654,-0.527302,-1.68605,-0.157229 +0.0471774,0.450639,-1.38013,-0.505618,-1.6859,-0.164159 +0.0490242,0.457789,-1.36423,-0.484897,-1.68529,-0.171133 +0.0508282,0.464769,-1.34894,-0.465245,-1.68422,-0.178142 +0.052602,0.471521,-1.33434,-0.446753,-1.68274,-0.185176 +0.0543495,0.477977,-1.32058,-0.429562,-1.68084,-0.192232 +0.0560692,0.484065,-1.30777,-0.413833,-1.67853,-0.199311 +0.0577606,0.489752,-1.29598,-0.399643,-1.67583,-0.205932 +0.0594218,0.495097,-1.28506,-0.386753,-1.67278,-0.210896 +0.0610594,0.500262,-1.27463,-0.374552,-1.66942,-0.213168 +0.0626829,0.50536,-1.26439,-0.362566,-1.66584,-0.212414 +0.0642831,0.510279,-1.25456,-0.351006,-1.66201,-0.208781 +0.0658439,0.514693,-1.24583,-0.340717,-1.65787,-0.202685 +0.0673616,0.518283,-1.23886,-0.332546,-1.65342,-0.194651 +0.0688339,0.520955,-1.23385,-0.326732,-1.64863,-0.185214 +0.0702457,0.522902,-1.23036,-0.322757,-1.64346,-0.174878 +0.0715846,0.524426,-1.22772,-0.319786,-1.63787,-0.164056 +0.0728546,0.525633,-1.22568,-0.317502,-1.63197,-0.153052 +0.0740555,0.526336,-1.22459,-0.316316,-1.62583,-0.142076 +0.0751701,0.526243,-1.22503,-0.316843,-1.61951,-0.131279 +0.0761886,0.525133,-1.22744,-0.3196,-1.61304,-0.120739 +0.0771168,0.522942,-1.23199,-0.324853,-1.60649,-0.110476 +0.0779672,0.519769,-1.23854,-0.332521,-1.59992,-0.100471 +0.0787611,0.51582,-1.24671,-0.342243,-1.59334,-0.09068 +0.0795123,0.511347,-1.25602,-0.353465,-1.58674,-0.081058 +0.0802156,0.506569,-1.26603,-0.365653,-1.58002,-0.071577 +0.0808596,0.501596,-1.27654,-0.378556,-1.57316,-0.062218 +0.081443,0.496394,-1.28769,-0.392399,-1.56625,-0.0529572 +0.0819785,0.490839,-1.29984,-0.407751,-1.55948,-0.0437645 +0.082478,0.484824,-1.31328,-0.425116,-1.55306,-0.0346169 +0.0829414,0.478325,-1.32813,-0.444674,-1.54706,-0.0255081 +0.0833634,0.471407,-1.34424,-0.466277,-1.54146,-0.0164414 +0.0837433,0.464177,-1.36138,-0.489617,-1.53621,-0.00741738 +0.0840916,0.456754,-1.37927,-0.514332,-1.53127,0.0015722 +0.0844327,0.449261,-1.3976,-0.540002,-1.52664,0.0105479 +0.0847932,0.441785,-1.4162,-0.566378,-1.52241,0.0195308 +0.0851903,0.434364,-1.43501,-0.593463,-1.51869,0.0285314 +0.0856284,0.427035,-1.45399,-0.621226,-1.51564,0.0375485 +0.0860982,0.419848,-1.47307,-0.649514,-1.5133,0.0465699 +0.0866017,0.412859,-1.49215,-0.678206,-1.51167,0.0555947 +0.0871502,0.406137,-1.51112,-0.707134,-1.51067,0.0646324 +0.0877405,0.399751,-1.5298,-0.73602,-1.51012,0.0736818 +0.0883689,0.393756,-1.54807,-0.764631,-1.50991,0.0827414 +0.0890373,0.388185,-1.56584,-0.792799,-1.51005,0.0918145 +0.0897357,0.383044,-1.58305,-0.820367,-1.51056,0.100894 +0.0904387,0.378313,-1.59968,-0.847198,-1.51144,0.109959 +0.0911254,0.373956,-1.6157,-0.873165,-1.51268,0.118996 +0.0917938,0.369928,-1.6311,-0.89816,-1.51437,0.128003 +0.0924367,0.366192,-1.64585,-0.922037,-1.51656,0.136981 +0.0930282,0.362712,-1.65988,-0.944598,-1.51928,0.145911 +0.0935515,0.359465,-1.67312,-0.965654,-1.52256,0.154785 +0.094008,0.356433,-1.68556,-0.985095,-1.52643,0.16361 +0.0944107,0.353598,-1.69719,-1.00288,-1.53078,0.172404 +0.0947785,0.350941,-1.70807,-1.01906,-1.53547,0.181186 +0.0951225,0.348443,-1.71826,-1.0337,-1.54032,0.18997 +0.0954413,0.346087,-1.72779,-1.04682,-1.54523,0.198757 +0.0957162,0.343857,-1.73665,-1.05839,-1.55017,0.207535 +0.0959111,0.341738,-1.74482,-1.06835,-1.55514,0.216276 +0.0959841,0.339718,-1.75228,-1.0767,-1.56015,0.224947 +0.0958948,0.337782,-1.75903,-1.0835,-1.5652,0.23351 +0.09561,0.335918,-1.76512,-1.08895,-1.57023,0.241935 +0.0951092,0.334106,-1.77069,-1.09337,-1.57511,0.250198 +0.094378,0.332326,-1.77595,-1.09714,-1.57965,0.25828 +0.0934035,0.330555,-1.78108,-1.10064,-1.5836,0.266165 +0.0921678,0.32878,-1.78626,-1.1042,-1.58677,0.273832 +0.0906384,0.327002,-1.79156,-1.10808,-1.58906,0.281248 +0.0887757,0.325225,-1.797,-1.11243,-1.5904,0.288376 +0.0865512,0.323453,-1.80258,-1.11737,-1.59082,0.295189 +0.0839707,0.32168,-1.80828,-1.12298,-1.5904,0.301692 +0.0810785,0.319889,-1.81412,-1.12927,-1.58931,0.307922 +0.0779453,0.318066,-1.82006,-1.13616,-1.58773,0.313461 +0.074661,0.316215,-1.82601,-1.14341,-1.58594,0.317185 +0.0713186,0.314361,-1.83182,-1.15074,-1.58421,0.318151 +0.0679966,0.312539,-1.83736,-1.15789,-1.5828,0.316101 +0.0647534,0.310782,-1.84254,-1.16468,-1.58189,0.311225 +0.0616214,0.309111,-1.84734,-1.17102,-1.58156,0.303954 +0.0586117,0.307538,-1.85177,-1.17688,-1.58182,0.294822 +0.055733,0.306087,-1.85584,-1.1823,-1.58264,0.284369 +0.0529961,0.304805,-1.85953,-1.18736,-1.58404,0.27309 +0.0504074,0.303753,-1.86278,-1.19216,-1.58599,0.261389 +0.0479607,0.302984,-1.86557,-1.19682,-1.58846,0.249564 +0.0456329,0.302523,-1.86789,-1.20141,-1.59135,0.237809 +0.0433815,0.302352,-1.86982,-1.206,-1.59451,0.226223 +0.0411555,0.302427,-1.87146,-1.2106,-1.59777,0.214833 +0.0389168,0.302688,-1.87291,-1.21521,-1.60098,0.203633 +0.0366413,0.303073,-1.8742,-1.21977,-1.60404,0.192597 +0.0343153,0.303524,-1.8753,-1.22415,-1.60689,0.181689 +0.031937,0.303993,-1.87616,-1.22827,-1.60948,0.170874 +0.0295147,0.304446,-1.87672,-1.23201,-1.61177,0.160125 +0.0270577,0.304855,-1.87693,-1.23525,-1.61376,0.149418 +0.0245608,0.305194,-1.87676,-1.23787,-1.61538,0.138722 +0.022001,0.305434,-1.87619,-1.23974,-1.61655,0.127997 +0.0193514,0.305547,-1.87526,-1.24075,-1.61722,0.117205 +0.0166013,0.305524,-1.87401,-1.24092,-1.61741,0.106329 +0.0137656,0.305375,-1.8725,-1.24033,-1.61716,0.0953735 +0.0108818,0.305126,-1.87071,-1.23901,-1.61657,0.0843668 +0.00800254,0.304813,-1.86858,-1.23693,-1.61573,0.0733495 +0.00518203,0.304469,-1.86605,-1.23402,-1.61474,0.062365 +0.00245982,0.304128,-1.86306,-1.23028,-1.61372,0.0514452 +-0.000147121,0.303815,-1.85962,-1.2257,-1.61274,0.0406042 +-0.00263077,0.303555,-1.85572,-1.22028,-1.61184,0.0298482 +-0.00497261,0.30339,-1.8513,-1.21397,-1.61106,0.0191911 +-0.00714283,0.30337,-1.8463,-1.20664,-1.6104,0.00865472 +-0.00910672,0.303548,-1.84056,-1.19803,-1.60988,-0.00173712 +-0.0108387,0.303964,-1.83397,-1.18788,-1.60952,-0.0119686 +-0.012346,0.304635,-1.8265,-1.17609,-1.60932,-0.022048 +-0.0136681,0.30556,-1.81821,-1.1628,-1.60925,-0.0320071 +-0.014854,0.306725,-1.80921,-1.14816,-1.60927,-0.0418845 +-0.0159416,0.308115,-1.79957,-1.13232,-1.6094,-0.0517098 +-0.0169473,0.309723,-1.78938,-1.11545,-1.60967,-0.0614941 +-0.0178539,0.311549,-1.77867,-1.09764,-1.61012,-0.0712206 +-0.0185966,0.313609,-1.76741,-1.07888,-1.61086,-0.0808325 +-0.019085,0.315928,-1.75553,-1.05912,-1.612,-0.0902504 +-0.0192537,0.318535,-1.74296,-1.03823,-1.61362,-0.0994166 +-0.0190919,0.321446,-1.72964,-1.01616,-1.61574,-0.108318 +-0.018638,0.324659,-1.71568,-0.993166,-1.61832,-0.116979 +-0.0179407,0.328161,-1.70123,-0.969594,-1.62131,-0.125432 +-0.0170131,0.331947,-1.68638,-0.945689,-1.62467,-0.133679 +-0.015824,0.336023,-1.67118,-0.92154,-1.62842,-0.141687 +-0.0143276,0.3404,-1.65566,-0.897221,-1.63256,-0.149406 +-0.0124994,0.345082,-1.63987,-0.872831,-1.63704,-0.156809 +-0.0103517,0.350074,-1.62387,-0.848411,-1.64176,-0.1639 +-0.00793703,0.355374,-1.60769,-0.824021,-1.64661,-0.170724 +-0.00534232,0.360973,-1.59136,-0.799723,-1.65148,-0.177355 +-0.00266707,0.366875,-1.57484,-0.775441,-1.6563,-0.183883 +6.16626e-07,0.37309,-1.55802,-0.751008,-1.66102,-0.190391 +0.00260273,0.379602,-1.54088,-0.726351,-1.6656,-0.196932 +0.00513117,0.386358,-1.5235,-0.701566,-1.66996,-0.203515 +0.00762234,0.393286,-1.50603,-0.676849,-1.67404,-0.210103 +0.0101148,0.40032,-1.48863,-0.652395,-1.67778,-0.21666 +0.0126238,0.407433,-1.47134,-0.628263,-1.68115,-0.223174 +0.0151526,0.414647,-1.4541,-0.60433,-1.68419,-0.229643 +0.0176971,0.421989,-1.43681,-0.580474,-1.68696,-0.236075 +0.0202435,0.42945,-1.41949,-0.556721,-1.68947,-0.242002 +0.0227867,0.43696,-1.40229,-0.533325,-1.69167,-0.246227 +0.0253382,0.444385,-1.38555,-0.510782,-1.69355,-0.247709 +0.0279108,0.451563,-1.36964,-0.489631,-1.69511,-0.24611 +0.0305065,0.458323,-1.35494,-0.470383,-1.6963,-0.241563 +0.0331149,0.464518,-1.34178,-0.453466,-1.69708,-0.234483 +0.0357169,0.470097,-1.33024,-0.438945,-1.69742,-0.225413 +0.0382859,0.47512,-1.32014,-0.426511,-1.69731,-0.214919 +0.0407981,0.479705,-1.31115,-0.415703,-1.69674,-0.203514 +0.04324,0.484012,-1.30289,-0.405974,-1.69576,-0.191615 +0.0455969,0.488195,-1.29495,-0.396785,-1.69438,-0.179545 +0.0478593,0.492311,-1.28718,-0.387847,-1.69262,-0.167531 +0.0500293,0.496215,-1.27982,-0.379457,-1.69049,-0.155704 +0.0521091,0.499615,-1.27349,-0.37235,-1.68798,-0.144131 +0.0540978,0.502267,-1.26867,-0.36708,-1.68507,-0.132837 +0.056,0.504116,-1.26546,-0.363718,-1.68174,-0.121811 +0.0578312,0.505256,-1.26369,-0.362016,-1.67806,-0.111015 +0.0596001,0.505814,-1.26309,-0.361684,-1.67408,-0.100408 +0.0613016,0.505841,-1.26357,-0.362596,-1.66983,-0.0899612 +0.0629265,0.505293,-1.26524,-0.364824,-1.66538,-0.0796531 +0.0644632,0.504073,-1.2683,-0.368588,-1.66077,-0.0694687 +0.0659008,0.50209,-1.27295,-0.374182,-1.65603,-0.0593988 +0.0672346,0.499334,-1.27923,-0.381708,-1.65121,-0.049434 +0.0684643,0.495914,-1.2869,-0.390873,-1.6463,-0.0395668 +0.069598,0.491986,-1.29561,-0.401275,-1.64129,-0.0297852 +0.070656,0.487673,-1.30513,-0.412719,-1.63617,-0.0200682 +0.0716564,0.483037,-1.31538,-0.425225,-1.63098,-0.0103995 +0.0726033,0.478039,-1.32651,-0.43914,-1.6258,-0.000777365 +0.07349,0.472571,-1.33887,-0.455058,-1.62077,0.00878777 +0.0743121,0.466577,-1.35265,-0.473294,-1.61603,0.018287 +0.0750743,0.460128,-1.36774,-0.493658,-1.61164,0.027721 +0.0757955,0.453397,-1.38375,-0.515598,-1.60756,0.0371051 +0.076503,0.446584,-1.40023,-0.538452,-1.60372,0.0464642 +0.0772143,0.439839,-1.41684,-0.561745,-1.60003,0.0558133 +0.0779352,0.43323,-1.43342,-0.585234,-1.5965,0.0651566 +0.0786586,0.426758,-1.44999,-0.608922,-1.59318,0.0744854 +0.0793609,0.420379,-1.46665,-0.632988,-1.59019,0.0837746 +0.0800202,0.414056,-1.48351,-0.657571,-1.58773,0.0930016 +0.0806274,0.407787,-1.50057,-0.682664,-1.58599,0.102157 +0.0811833,0.401611,-1.51774,-0.708105,-1.585,0.111243 +0.0817089,0.395597,-1.53489,-0.733728,-1.58464,0.12028 +0.0822365,0.389812,-1.55196,-0.759566,-1.58468,0.129296 +0.0827822,0.384312,-1.56892,-0.78565,-1.58492,0.138306 +0.0833423,0.379139,-1.58562,-0.811746,-1.58536,0.147309 +0.0838862,0.374312,-1.6019,-0.837458,-1.58616,0.156283 +0.0843634,0.369816,-1.61765,-0.862444,-1.58744,0.165188 +0.0847405,0.365635,-1.63279,-0.886467,-1.58921,0.173999 +0.0850142,0.361754,-1.64729,-0.9094,-1.59135,0.182717 +0.0851991,0.358159,-1.66119,-0.931259,-1.59367,0.191359 +0.0853171,0.354831,-1.67451,-0.952089,-1.59599,0.199945 +0.0853833,0.351741,-1.6873,-0.971919,-1.59818,0.208491 +0.0853933,0.348856,-1.69958,-0.990748,-1.60021,0.216996 +0.0853168,0.34615,-1.71133,-1.0085,-1.60212,0.225437 +0.0850871,0.343603,-1.72248,-1.02507,-1.60395,0.233762 +0.084614,0.341193,-1.73296,-1.04031,-1.60565,0.241895 +0.0838258,0.33889,-1.74278,-1.05425,-1.60714,0.249779 +0.0827048,0.336657,-1.75204,-1.06707,-1.60826,0.257397 +0.0812846,0.334453,-1.76093,-1.07903,-1.60886,0.264778 +0.0796132,0.332244,-1.76958,-1.09034,-1.60883,0.271961 +0.0777254,0.330015,-1.77808,-1.10112,-1.60814,0.278975 +0.0756441,0.327772,-1.7864,-1.11141,-1.60691,0.285841 +0.0733867,0.325537,-1.79451,-1.12126,-1.60536,0.292573 +0.0709663,0.323333,-1.80239,-1.1308,-1.60369,0.299181 +0.068399,0.321168,-1.81005,-1.14018,-1.60204,0.305194 +0.0657154,0.319044,-1.8175,-1.14943,-1.60051,0.309434 +0.0629549,0.316963,-1.82468,-1.15842,-1.59918,0.310909 +0.0601643,0.314941,-1.83153,-1.16701,-1.59817,0.309332 +0.05739,0.313006,-1.83798,-1.17508,-1.59759,0.304879 +0.0546542,0.31119,-1.84397,-1.18256,-1.5975,0.297972 +0.0519562,0.309515,-1.84952,-1.18947,-1.59785,0.289132 +0.0492887,0.307997,-1.85465,-1.19585,-1.59855,0.278888 +0.0466433,0.306649,-1.85939,-1.20174,-1.59953,0.267717 +0.0440103,0.305481,-1.86378,-1.2072,-1.6007,0.256012 +0.0413805,0.304506,-1.86785,-1.21231,-1.60199,0.244068 +0.0387485,0.303728,-1.87162,-1.21714,-1.60336,0.232094 +0.0361074,0.303128,-1.87508,-1.2217,-1.60479,0.220216 +0.0334436,0.302659,-1.87824,-1.22597,-1.60624,0.208494 +0.030739,0.302257,-1.88111,-1.22995,-1.60765,0.196936 +0.0279797,0.301853,-1.88369,-1.23361,-1.60899,0.185525 +0.0251619,0.301399,-1.88598,-1.23693,-1.61021,0.174233 +0.0222893,0.300866,-1.88797,-1.23989,-1.61131,0.163029 +0.0193643,0.300246,-1.88965,-1.24244,-1.61226,0.151883 +0.0163809,0.299548,-1.89098,-1.24453,-1.61299,0.140756 +0.0133319,0.298797,-1.89195,-1.24614,-1.61342,0.129617 +0.0102088,0.298018,-1.89255,-1.24725,-1.6135,0.118437 +0.00699204,0.297222,-1.89279,-1.24779,-1.61316,0.107187 +0.00366506,0.296408,-1.89272,-1.24774,-1.61239,0.09584 +0.000233502,0.295576,-1.89245,-1.24724,-1.61126,0.0843973 +-0.00327027,0.294743,-1.89207,-1.24649,-1.60989,0.0728844 +-0.00678494,0.29395,-1.89157,-1.24568,-1.60837,0.0613542 +-0.010229,0.293255,-1.89088,-1.24495,-1.60681,0.049878 +-0.0135372,0.292707,-1.8899,-1.24431,-1.60523,0.0385127 +-0.0166948,0.292313,-1.88851,-1.24356,-1.60363,0.0272699 +-0.0197482,0.292038,-1.88672,-1.24251,-1.60193,0.016109 +-0.0227906,0.291825,-1.88463,-1.24108,-1.60003,0.00495256 +-0.025916,0.291629,-1.88235,-1.23924,-1.5978,-0.00627729 +-0.029166,0.291436,-1.87993,-1.23695,-1.59516,-0.0176161 +-0.0325078,0.291279,-1.87729,-1.23411,-1.59218,-0.02904 +-0.0358512,0.291213,-1.87425,-1.23056,-1.58896,-0.0404803 +-0.0390778,0.291298,-1.87065,-1.22609,-1.58569,-0.0518469 +-0.0420641,0.291586,-1.86633,-1.22051,-1.58255,-0.0630465 +-0.0447154,0.292111,-1.86119,-1.21368,-1.57974,-0.0740076 +-0.0470139,0.292871,-1.85525,-1.2056,-1.57737,-0.0847188 +-0.0490276,0.293833,-1.84865,-1.19644,-1.57543,-0.0952338 +-0.0508472,0.294951,-1.84155,-1.18643,-1.57386,-0.105622 +-0.0525069,0.296186,-1.83407,-1.1757,-1.57269,-0.115909 +-0.0539591,0.297528,-1.82618,-1.16422,-1.572,-0.126057 +-0.0551166,0.29898,-1.81781,-1.15184,-1.57191,-0.135994 +-0.0559264,0.300555,-1.8089,-1.1385,-1.57249,-0.145679 +-0.0564114,0.302255,-1.79948,-1.12428,-1.57378,-0.155123 +-0.0566469,0.304076,-1.78963,-1.10937,-1.5757,-0.164384 +-0.0566848,0.306027,-1.77942,-1.09383,-1.5782,-0.173501 +-0.0564954,0.308141,-1.76879,-1.07759,-1.58124,-0.182448 +-0.0559894,0.310469,-1.75767,-1.06057,-1.58483,-0.191147 +-0.0550817,0.313065,-1.74599,-1.04271,-1.58897,-0.199523 +-0.053745,0.315972,-1.7337,-1.02393,-1.59364,-0.207546 +-0.0520263,0.319209,-1.7208,-1.00428,-1.59876,-0.215251 +-0.0500176,0.322772,-1.70736,-0.983887,-1.60424,-0.222709 +-0.0478129,0.32665,-1.6934,-0.962811,-1.61,-0.229993 +-0.0454827,0.330833,-1.67892,-0.941013,-1.61598,-0.237161 +-0.043069,0.335313,-1.66391,-0.918421,-1.62211,-0.244247 +-0.0405874,0.340081,-1.64837,-0.895008,-1.6283,-0.25126 +-0.0380329,0.345127,-1.63234,-0.87081,-1.63443,-0.25819 +-0.0353861,0.350444,-1.61589,-0.845914,-1.64042,-0.265015 +-0.0326338,0.356033,-1.59907,-0.820424,-1.64621,-0.271718 +-0.0297891,0.361894,-1.58192,-0.794434,-1.65174,-0.278305 +-0.0268838,0.36802,-1.56449,-0.768079,-1.65698,-0.284322 +-0.0239507,0.374406,-1.54683,-0.741471,-1.66188,-0.288591 +-0.0210111,0.381049,-1.52894,-0.714667,-1.66646,-0.290102 +-0.0180699,0.38792,-1.51085,-0.687764,-1.67072,-0.288533 +-0.0151225,0.394928,-1.49278,-0.661041,-1.67465,-0.284014 +-0.0121643,0.401892,-1.47516,-0.635136,-1.67816,-0.276937 +-0.00919383,0.408623,-1.45846,-0.610743,-1.68116,-0.26782 +-0.00621411,0.415078,-1.44278,-0.588023,-1.68366,-0.257202 +-0.00324109,0.421378,-1.42781,-0.566578,-1.68578,-0.245592 +-0.000299703,0.427699,-1.41312,-0.545856,-1.68766,-0.233423 +0.00259475,0.434119,-1.39852,-0.525614,-1.68938,-0.221021 +0.00544727,0.440534,-1.38424,-0.50618,-1.69097,-0.208596 +0.00828721,0.446726,-1.37078,-0.488209,-1.69243,-0.196251 +0.0111523,0.452517,-1.35854,-0.472241,-1.69377,-0.184018 +0.0140617,0.457859,-1.3476,-0.458366,-1.69504,-0.171907 +0.0170134,0.462814,-1.33777,-0.44624,-1.69625,-0.159918 +0.0199943,0.467407,-1.3289,-0.435584,-1.6974,-0.148042 +0.022982,0.471542,-1.32114,-0.426479,-1.69845,-0.136272 +0.0259462,0.475065,-1.31476,-0.419167,-1.69928,-0.124604 +0.0288615,0.477884,-1.30994,-0.413777,-1.6998,-0.113034 +0.0317148,0.480044,-1.30654,-0.410127,-1.69996,-0.101551 +0.0344931,0.481676,-1.30429,-0.407828,-1.69974,-0.0901537 +0.0371773,0.482864,-1.30299,-0.406624,-1.69911,-0.0788479 +0.0397421,0.483565,-1.3027,-0.406593,-1.69807,-0.0676513 +0.0421675,0.483661,-1.30365,-0.408029,-1.6966,-0.0565789 +0.0444524,0.483096,-1.30596,-0.411085,-1.69473,-0.0456308 +0.0466101,0.481955,-1.30943,-0.41556,-1.6925,-0.0347955 +0.0486602,0.480384,-1.31376,-0.421115,-1.68992,-0.024057 +0.0506104,0.478468,-1.31876,-0.42755,-1.68705,-0.0134109 +0.0524489,0.476172,-1.32455,-0.434987,-1.68391,-0.00287163 +0.0541567,0.473362,-1.33145,-0.443864,-1.68058,0.00754029 +0.0557157,0.469912,-1.3398,-0.454641,-1.67714,0.0178055 +0.0571163,0.465771,-1.34979,-0.467658,-1.67364,0.027913 +0.0583662,0.460995,-1.36138,-0.482945,-1.67015,0.0378682 +0.0594944,0.455757,-1.37422,-0.50006,-1.66665,0.0476973 +0.0605494,0.450297,-1.38775,-0.518283,-1.66311,0.0574458 +0.0615779,0.444816,-1.4015,-0.536951,-1.65951,0.067158 +0.0625946,0.439402,-1.41523,-0.555755,-1.65587,0.0768475 +0.0635734,0.434007,-1.42903,-0.574794,-1.65233,0.0864888 +0.0644676,0.428507,-1.44317,-0.59444,-1.64904,0.0960368 +0.0652492,0.422801,-1.45792,-0.615051,-1.64619,0.105464 +0.0659197,0.416872,-1.47334,-0.636773,-1.64383,0.114771 +0.0665053,0.41079,-1.48933,-0.6595,-1.64187,0.123982 +0.0670525,0.404674,-1.50564,-0.682933,-1.64023,0.133141 +0.0676036,0.398637,-1.52205,-0.706786,-1.63881,0.142288 +0.0681787,0.392752,-1.53845,-0.730929,-1.63756,0.151441 +0.0687723,0.387062,-1.55481,-0.755378,-1.63647,0.160594 +0.0693524,0.381587,-1.57117,-0.78023,-1.63558,0.169717 +0.0698663,0.376347,-1.58753,-0.805526,-1.63491,0.178761 +0.0702642,0.371368,-1.60382,-0.831097,-1.63451,0.187684 +0.0705151,0.366671,-1.61993,-0.856664,-1.63437,0.196461 +0.0706078,0.362262,-1.63577,-0.881994,-1.63439,0.205087 +0.0705419,0.358131,-1.65127,-0.90688,-1.63446,0.213565 +0.0703063,0.354264,-1.66634,-0.931134,-1.63449,0.221889 +0.0698649,0.350644,-1.68092,-0.954604,-1.63442,0.230032 +0.0691657,0.347243,-1.69496,-0.977181,-1.63418,0.237955 +0.0681819,0.344032,-1.70846,-0.998833,-1.63374,0.245638 +0.066949,0.340981,-1.72145,-1.01956,-1.63311,0.253117 +0.065539,0.338065,-1.73396,-1.03938,-1.63228,0.260458 +0.0640165,0.335262,-1.74606,-1.05837,-1.63125,0.267716 +0.0624316,0.332561,-1.75773,-1.07643,-1.63004,0.27494 +0.0608112,0.329965,-1.76891,-1.09337,-1.62875,0.282155 +0.0591482,0.32748,-1.77956,-1.1091,-1.62743,0.289357 +0.0574107,0.325115,-1.78964,-1.12364,-1.62614,0.296038 +0.0555591,0.322878,-1.79916,-1.13706,-1.62493,0.30096 +0.0535573,0.320781,-1.80814,-1.14958,-1.6238,0.303065 +0.0513813,0.318831,-1.81663,-1.16143,-1.62277,0.302002 +0.0490293,0.317033,-1.82466,-1.17272,-1.62183,0.297908 +0.0465185,0.315384,-1.83223,-1.18346,-1.621,0.2912 +0.043871,0.313873,-1.83936,-1.19361,-1.62025,0.282417 +0.041114,0.312482,-1.84606,-1.20307,-1.61954,0.272118 +0.0382788,0.311188,-1.85232,-1.21171,-1.61886,0.260812 +0.0353897,0.309961,-1.85815,-1.2194,-1.61819,0.24892 +0.0324643,0.308774,-1.86355,-1.22609,-1.61754,0.236759 +0.0295105,0.3076,-1.86852,-1.23177,-1.61694,0.224547 +0.0265245,0.306409,-1.87306,-1.2365,-1.61642,0.212413 +0.0234964,0.305173,-1.87719,-1.24037,-1.61596,0.200418 +0.0204158,0.303859,-1.88092,-1.24345,-1.61553,0.188576 +0.0172727,0.302442,-1.88427,-1.24577,-1.61509,0.176872 +0.014063,0.300911,-1.88727,-1.24738,-1.6146,0.165275 +0.010788,0.299276,-1.88996,-1.24833,-1.61403,0.153753 +0.00744577,0.297561,-1.89237,-1.24863,-1.61336,0.142265 +0.00402983,0.295808,-1.89451,-1.24832,-1.61254,0.130775 +0.000534164,0.294072,-1.89636,-1.2475,-1.61154,0.119251 +-0.00304344,0.29242,-1.89788,-1.24632,-1.61031,0.107672 +-0.00669857,0.290912,-1.89907,-1.24499,-1.60884,0.0960316 +-0.0104227,0.289585,-1.89994,-1.24377,-1.60713,0.0843321 +-0.0142158,0.288447,-1.90058,-1.24283,-1.60518,0.0725725 +-0.018089,0.287474,-1.90109,-1.24229,-1.60294,0.0607444 +-0.0220548,0.286633,-1.90157,-1.24223,-1.60038,0.0488398 +-0.0261261,0.285897,-1.90207,-1.24265,-1.59746,0.0368518 +-0.0303116,0.285237,-1.90261,-1.24347,-1.59416,0.0247755 +-0.0346002,0.284639,-1.90311,-1.24452,-1.59046,0.0126213 +-0.0389494,0.284096,-1.90345,-1.24561,-1.5864,0.000424397 +-0.0432942,0.283612,-1.9035,-1.24654,-1.58208,-0.0117625 +-0.0475767,0.283185,-1.90315,-1.2471,-1.57756,-0.0238939 +-0.0517732,0.282804,-1.90233,-1.24713,-1.57293,-0.0359547 +-0.0558998,0.282445,-1.90107,-1.24652,-1.5682,-0.0479634 +-0.0599885,0.282095,-1.89945,-1.24527,-1.56338,-0.0599494 +-0.0640425,0.281772,-1.89753,-1.24349,-1.55852,-0.0719162 +-0.0680134,0.281532,-1.89531,-1.24127,-1.55373,-0.0838236 +-0.0718122,0.281449,-1.89274,-1.23869,-1.54916,-0.0955979 +-0.0753434,0.281593,-1.88975,-1.23583,-1.54502,-0.107161 +-0.0785506,0.281996,-1.88633,-1.23272,-1.54144,-0.118466 +-0.0814352,0.282648,-1.8825,-1.22939,-1.53847,-0.129516 +-0.0840359,0.283509,-1.87833,-1.22584,-1.53609,-0.140344 +-0.0863995,0.28453,-1.87388,-1.22205,-1.53426,-0.150992 +-0.0885572,0.28567,-1.86917,-1.21795,-1.53297,-0.161487 +-0.0905067,0.2869,-1.86418,-1.21347,-1.5322,-0.171833 +-0.0921953,0.288211,-1.85885,-1.20843,-1.53201,-0.181992 +-0.0935258,0.289609,-1.85305,-1.2026,-1.53252,-0.191896 +-0.0944065,0.291109,-1.84666,-1.19574,-1.53384,-0.201479 +-0.0948205,0.292715,-1.83963,-1.18772,-1.53596,-0.210732 +-0.0948487,0.294413,-1.83201,-1.17863,-1.53878,-0.219717 +-0.094611,0.296182,-1.82392,-1.16868,-1.54215,-0.228522 +-0.0941732,0.298006,-1.81546,-1.15797,-1.54598,-0.237196 +-0.0934983,0.299884,-1.80659,-1.14641,-1.55028,-0.245711 +-0.0924849,0.301835,-1.79721,-1.13373,-1.5551,-0.25399 +-0.0910553,0.303891,-1.78722,-1.11974,-1.56048,-0.261973 +-0.0892194,0.306085,-1.77659,-1.10443,-1.56639,-0.269663 +-0.087082,0.308446,-1.76539,-1.08798,-1.57271,-0.277137 +-0.0847766,0.310997,-1.75366,-1.07056,-1.57929,-0.284493 +-0.0823929,0.313771,-1.7414,-1.0522,-1.58604,-0.291802 +-0.0799615,0.316805,-1.72855,-1.03278,-1.59291,-0.299089 +-0.077471,0.320128,-1.71506,-1.01215,-1.59982,-0.306344 +-0.0748833,0.323755,-1.7009,-0.990252,-1.60672,-0.313529 +-0.0721551,0.327685,-1.68614,-0.967175,-1.61354,-0.320116 +-0.0692695,0.331915,-1.67084,-0.943068,-1.62022,-0.324876 +-0.0662483,0.336454,-1.65504,-0.918026,-1.62671,-0.32679 +-0.0631401,0.341326,-1.6387,-0.892051,-1.63302,-0.325568 +-0.0599925,0.34655,-1.62178,-0.865146,-1.63913,-0.321384 +-0.0568263,0.352109,-1.60436,-0.837484,-1.64503,-0.314652 +-0.0536331,0.357946,-1.58662,-0.809426,-1.65069,-0.305873 +-0.0503955,0.364006,-1.56875,-0.781282,-1.65609,-0.295559 +-0.0471054,0.370253,-1.55084,-0.753196,-1.66119,-0.284182 +-0.0437725,0.376654,-1.533,-0.725379,-1.66598,-0.27215 +-0.0404273,0.383157,-1.5154,-0.698147,-1.67041,-0.259791 +-0.0371053,0.389732,-1.4981,-0.671638,-1.67443,-0.247352 +-0.0338253,0.396368,-1.48109,-0.645829,-1.67802,-0.23499 +-0.0305906,0.403044,-1.46439,-0.620754,-1.68121,-0.22278 +-0.0274005,0.409727,-1.44805,-0.596492,-1.68405,-0.210751 +-0.0242569,0.416355,-1.4322,-0.573221,-1.68653,-0.198901 +-0.0211655,0.42282,-1.41707,-0.551317,-1.68864,-0.18721 +-0.0181261,0.429006,-1.40289,-0.531131,-1.69038,-0.175646 +-0.0151308,0.434829,-1.38981,-0.512822,-1.69177,-0.164172 +-0.0121722,0.440216,-1.37795,-0.496482,-1.69282,-0.152752 +-0.00923958,0.445118,-1.36737,-0.482132,-1.69359,-0.141355 +-0.00632164,0.449505,-1.35811,-0.469767,-1.69414,-0.129956 +-0.00341493,0.453314,-1.35033,-0.459562,-1.69449,-0.118539 +-0.000516728,0.456492,-1.34414,-0.451693,-1.6947,-0.107094 +0.00237338,0.459026,-1.33956,-0.446109,-1.6948,-0.0956214 +0.00525971,0.460923,-1.33654,-0.442664,-1.69486,-0.0841186 +0.00815204,0.462184,-1.33506,-0.441266,-1.69496,-0.0725799 +0.0110465,0.462803,-1.3351,-0.441859,-1.69515,-0.0610136 +0.0139268,0.462835,-1.3365,-0.444194,-1.69538,-0.0494413 +0.0167814,0.462403,-1.33895,-0.447822,-1.69562,-0.0378816 +0.0196029,0.461635,-1.34215,-0.452358,-1.6958,-0.0263472 +0.0223781,0.460589,-1.34597,-0.457676,-1.69589,-0.0148547 +0.0250809,0.45923,-1.3505,-0.463923,-1.69582,-0.00343142 +0.0276749,0.457467,-1.35593,-0.471375,-1.69554,0.00788604 +0.0301289,0.455212,-1.36245,-0.480285,-1.69499,0.0190663 +0.0324248,0.452421,-1.37016,-0.490798,-1.69414,0.0300906 +0.0345557,0.449087,-1.37908,-0.502977,-1.69299,0.0409511 +0.0365199,0.44523,-1.38916,-0.516785,-1.69156,0.0516449 +0.0383024,0.440878,-1.40035,-0.532111,-1.68993,0.0621562 +0.0398706,0.436053,-1.41261,-0.548881,-1.6881,0.0724526 +0.0412072,0.430796,-1.42589,-0.567033,-1.68608,0.0825172 +0.04233,0.425193,-1.44007,-0.586471,-1.68394,0.0923665 +0.0432772,0.419372,-1.45491,-0.606933,-1.6817,0.102037 +0.0440933,0.413476,-1.47012,-0.62804,-1.67937,0.111571 +0.0448274,0.407614,-1.48548,-0.649519,-1.67696,0.121015 +0.0455233,0.401854,-1.50084,-0.671199,-1.67454,0.130411 +0.0461956,0.396221,-1.51614,-0.693001,-1.67214,0.139773 +0.0468182,0.390687,-1.53144,-0.715032,-1.66982,0.149077 +0.0473344,0.385204,-1.54685,-0.73747,-1.66762,0.158272 +0.0476904,0.379737,-1.56244,-0.76043,-1.66558,0.167309 +0.0478733,0.374292,-1.57826,-0.784003,-1.66371,0.176176 +0.0479199,0.368916,-1.5943,-0.808274,-1.66193,0.184909 +0.0479019,0.363696,-1.61048,-0.833219,-1.6602,0.193572 +0.0478739,0.358715,-1.62664,-0.858596,-1.65854,0.202218 +0.0478123,0.354016,-1.64262,-0.884077,-1.65697,0.210826 +0.047624,0.349591,-1.65835,-0.909437,-1.65547,0.219319 +0.0472229,0.345414,-1.67379,-0.934555,-1.65402,0.227621 +0.0465859,0.341479,-1.68894,-0.959365,-1.65261,0.235718 +0.0457458,0.337795,-1.70375,-0.983741,-1.65119,0.24364 +0.0447562,0.334379,-1.71814,-1.00747,-1.64971,0.251437 +0.0436617,0.331244,-1.73201,-1.03031,-1.64812,0.259152 +0.0424762,0.328387,-1.7453,-1.05206,-1.64642,0.2668 +0.0411786,0.325794,-1.75799,-1.07268,-1.64461,0.274364 +0.0397241,0.323445,-1.77008,-1.09217,-1.64267,0.28133 +0.0380642,0.321318,-1.78154,-1.11051,-1.6406,0.286453 +0.0361672,0.319387,-1.79238,-1.1277,-1.63839,0.288682 +0.0340348,0.317621,-1.80263,-1.14381,-1.63603,0.287693 +0.031707,0.315991,-1.81237,-1.15895,-1.63356,0.283657 +0.0292359,0.314465,-1.82169,-1.17322,-1.63102,0.27702 +0.0266573,0.313009,-1.83057,-1.18657,-1.62844,0.268334 +0.0239786,0.311591,-1.83897,-1.19883,-1.62587,0.258139 +0.0211874,0.310185,-1.84679,-1.20984,-1.62336,0.246909 +0.0182742,0.308758,-1.85398,-1.21944,-1.62098,0.235036 +0.0152484,0.307268,-1.86051,-1.22752,-1.61873,0.222828 +0.0121422,0.305671,-1.86644,-1.23404,-1.61663,0.210521 +0.00899425,0.303937,-1.87183,-1.23903,-1.61466,0.198276 +0.00582937,0.302065,-1.87675,-1.24262,-1.61285,0.186182 +0.0026536,0.300086,-1.8812,-1.24493,-1.61119,0.174264 +-0.000544945,0.298051,-1.88519,-1.24617,-1.60969,0.162507 +-0.00379143,0.296013,-1.88872,-1.24653,-1.6083,0.150864 +-0.00710897,0.29402,-1.89183,-1.24624,-1.60696,0.139284 +-0.0105133,0.292109,-1.89458,-1.24553,-1.60558,0.127721 +-0.0140259,0.290295,-1.89707,-1.24462,-1.60405,0.116127 +-0.0176782,0.288574,-1.8994,-1.24367,-1.60222,0.104452 +-0.0215004,0.28693,-1.90166,-1.24282,-1.59996,0.0926536 +-0.0255053,0.285359,-1.90389,-1.2422,-1.59721,0.08071 +-0.0296819,0.283878,-1.9061,-1.24198,-1.59398,0.0686273 +-0.0340087,0.282516,-1.90825,-1.24222,-1.5903,0.0564245 +-0.0384643,0.281295,-1.91022,-1.24289,-1.58623,0.0441213 +-0.0430303,0.280211,-1.91197,-1.2439,-1.5818,0.0317342 +-0.0476835,0.279223,-1.91351,-1.24512,-1.57711,0.0192807 +-0.0524023,0.278273,-1.91493,-1.24641,-1.57223,0.0067749 +-0.0571786,0.277303,-1.91628,-1.24762,-1.56721,-0.00578004 +-0.0620076,0.276284,-1.91751,-1.24858,-1.56199,-0.0183824 +-0.0668715,0.275225,-1.91853,-1.24918,-1.55657,-0.0310172 +-0.0717366,0.274158,-1.91921,-1.24934,-1.55096,-0.043654 +-0.0765727,0.273117,-1.91949,-1.24905,-1.54522,-0.056266 +-0.0813615,0.272131,-1.91934,-1.24835,-1.53938,-0.0688368 +-0.0860885,0.271228,-1.91882,-1.24735,-1.53351,-0.0813532 +-0.0907417,0.270443,-1.91801,-1.24621,-1.52767,-0.0938016 +-0.0953089,0.269819,-1.91698,-1.24512,-1.5219,-0.106167 +-0.0997755,0.269398,-1.91578,-1.24425,-1.51629,-0.118433 +-0.10413,0.269211,-1.91447,-1.24371,-1.51087,-0.130584 +-0.108362,0.269269,-1.91306,-1.24361,-1.5057,-0.14261 +-0.112459,0.269572,-1.9116,-1.24397,-1.50084,-0.154497 +-0.116395,0.270111,-1.91005,-1.24478,-1.49633,-0.166221 +-0.120105,0.270888,-1.90835,-1.24592,-1.49224,-0.177735 +-0.123495,0.271908,-1.90637,-1.24723,-1.48871,-0.188967 +-0.126487,0.273172,-1.90401,-1.24853,-1.48581,-0.199862 +-0.129069,0.274655,-1.9012,-1.24963,-1.48357,-0.21042 +-0.131306,0.276303,-1.89798,-1.25041,-1.48188,-0.220703 +-0.133304,0.278047,-1.89442,-1.25078,-1.48058,-0.230805 +-0.135128,0.279832,-1.89056,-1.25069,-1.47958,-0.240784 +-0.136759,0.281627,-1.88642,-1.25005,-1.47893,-0.250631 +-0.138112,0.283417,-1.8819,-1.24869,-1.4788,-0.260289 +-0.139088,0.285193,-1.87691,-1.24639,-1.47936,-0.269694 +-0.139617,0.286939,-1.87136,-1.24292,-1.48074,-0.278805 +-0.139679,0.288636,-1.86521,-1.23812,-1.48297,-0.287617 +-0.139326,0.290261,-1.85849,-1.23196,-1.486,-0.296174 +-0.138683,0.291787,-1.8513,-1.22454,-1.48962,-0.304572 +-0.137903,0.293195,-1.84374,-1.21602,-1.49358,-0.312926 +-0.137075,0.294486,-1.83586,-1.20641,-1.49773,-0.321304 +-0.136171,0.295699,-1.8276,-1.19567,-1.50209,-0.32969 +-0.135069,0.296905,-1.81888,-1.18366,-1.5068,-0.33799 +-0.133602,0.29819,-1.80954,-1.17017,-1.51211,-0.346078 +-0.131639,0.299636,-1.79945,-1.15504,-1.5182,-0.353854 +-0.129141,0.301304,-1.78855,-1.13817,-1.52511,-0.360801 +-0.126166,0.303234,-1.77685,-1.11962,-1.53274,-0.365751 +-0.122845,0.305453,-1.76435,-1.09945,-1.54086,-0.367768 +-0.119331,0.307985,-1.75104,-1.07769,-1.54927,-0.366638 +-0.115758,0.310849,-1.73693,-1.05444,-1.55777,-0.362594 +-0.112179,0.31406,-1.72207,-1.02982,-1.56625,-0.356067 +-0.108555,0.317631,-1.70659,-1.0041,-1.57472,-0.347523 +-0.104815,0.321562,-1.69063,-0.977612,-1.58321,-0.337415 +-0.100922,0.325848,-1.67434,-0.950662,-1.59173,-0.326176 +-0.096886,0.330487,-1.65776,-0.923378,-1.60025,-0.314204 +-0.0927592,0.33547,-1.6409,-0.895837,-1.60869,-0.301839 +-0.0885991,0.340782,-1.62378,-0.8681,-1.61695,-0.28934 +-0.0844385,0.346401,-1.60641,-0.8402,-1.62496,-0.276865 +-0.0802911,0.352287,-1.5889,-0.812283,-1.63268,-0.264492 +-0.0761724,0.35836,-1.57144,-0.784701,-1.64003,-0.252251 +-0.0720964,0.364528,-1.55428,-0.757847,-1.64691,-0.24014 +-0.0680673,0.370728,-1.53755,-0.731915,-1.65331,-0.228137 +-0.0640794,0.376951,-1.52125,-0.706846,-1.65924,-0.216212 +-0.0601297,0.383217,-1.50526,-0.682438,-1.66478,-0.204338 +-0.0562341,0.389506,-1.48959,-0.658668,-1.6699,-0.192504 +-0.0524197,0.395703,-1.47448,-0.635917,-1.67453,-0.180708 +-0.0487056,0.401641,-1.46032,-0.614759,-1.67857,-0.168947 +-0.0450947,0.407209,-1.44734,-0.595532,-1.682,-0.157208 +-0.0415765,0.412411,-1.43549,-0.578128,-1.68487,-0.145483 +-0.0381384,0.417314,-1.42454,-0.562208,-1.68728,-0.133767 +-0.0347779,0.421903,-1.41449,-0.547733,-1.68928,-0.122062 +-0.0315099,0.426009,-1.40569,-0.535181,-1.69087,-0.110384 +-0.0283543,0.429409,-1.39862,-0.525173,-1.69199,-0.0987517 +-0.0253152,0.431985,-1.39352,-0.517986,-1.69264,-0.0871727 +-0.0223767,0.433794,-1.39023,-0.513349,-1.69287,-0.0756429 +-0.0195157,0.434989,-1.38838,-0.510737,-1.69277,-0.0641525 +-0.0167167,0.435697,-1.38765,-0.50974,-1.69242,-0.0526971 +-0.0139819,0.435932,-1.38804,-0.510315,-1.69189,-0.0412841 +-0.0113249,0.435624,-1.38972,-0.512722,-1.6912,-0.029928 +-0.00875258,0.434735,-1.39282,-0.517115,-1.69037,-0.0186372 +-0.0062549,0.433303,-1.39726,-0.523426,-1.68945,-0.0074051 +-0.00381938,0.431407,-1.40291,-0.531451,-1.68849,0.00377644 +-0.00145069,0.429111,-1.4096,-0.540997,-1.68751,0.0148995 +0.00082916,0.426424,-1.41734,-0.552029,-1.68648,0.0259411 +0.00299524,0.42334,-1.42613,-0.564555,-1.6854,0.0368762 +0.0050444,0.419905,-1.43587,-0.578421,-1.68426,0.0476996 +0.00699494,0.416224,-1.4463,-0.593257,-1.6831,0.0584253 +0.00886633,0.412415,-1.45713,-0.608608,-1.68191,0.069068 +0.010671,0.408559,-1.46814,-0.624127,-1.68069,0.0796368 +0.0123968,0.404648,-1.47933,-0.639865,-1.67942,0.0901208 +0.0140018,0.400612,-1.49091,-0.656149,-1.67804,0.100483 +0.0154265,0.396372,-1.50303,-0.673259,-1.67651,0.110668 +0.0166012,0.391865,-1.51587,-0.691438,-1.67479,0.120615 +0.0174833,0.387064,-1.5295,-0.710847,-1.67288,0.130286 +0.018103,0.382028,-1.5438,-0.731348,-1.67082,0.139709 +0.0185513,0.376875,-1.55852,-0.752607,-1.66871,0.148969 +0.0189282,0.371732,-1.57342,-0.774313,-1.66664,0.158157 +0.0192873,0.366684,-1.58834,-0.796309,-1.66464,0.167324 +0.0196039,0.361755,-1.60328,-0.818628,-1.66271,0.176447 +0.0198029,0.356928,-1.61832,-0.841431,-1.66079,0.185462 +0.0198208,0.352188,-1.63358,-0.864969,-1.65881,0.194314 +0.0196431,0.347551,-1.6491,-0.88933,-1.65676,0.202994 +0.0192939,0.343062,-1.66474,-0.914302,-1.65462,0.211523 +0.0188094,0.338764,-1.68036,-0.939582,-1.65242,0.219935 +0.018214,0.334686,-1.69583,-0.964884,-1.65015,0.228253 +0.0175009,0.330835,-1.71105,-0.989966,-1.6478,0.236471 +0.0166304,0.327212,-1.72596,-1.01466,-1.64531,0.244558 +0.0155433,0.323821,-1.74047,-1.03876,-1.64263,0.252466 +0.0141766,0.320671,-1.75446,-1.06202,-1.63974,0.259663 +0.0124836,0.317771,-1.76784,-1.08417,-1.6366,0.264908 +0.0104594,0.315124,-1.78053,-1.10507,-1.63322,0.267172 +0.00814976,0.312727,-1.79252,-1.12465,-1.62965,0.266167 +0.00563222,0.310569,-1.80381,-1.14286,-1.626,0.262098 +0.00299705,0.30862,-1.81443,-1.15968,-1.62237,0.255441 +0.000331905,0.306838,-1.82441,-1.17507,-1.61887,0.246788 +-0.0022973,0.305173,-1.83377,-1.18897,-1.61561,0.236727 +-0.00486438,0.303572,-1.84252,-1.20134,-1.61267,0.22576 +-0.00738963,0.301985,-1.85063,-1.2121,-1.61008,0.214269 +-0.00992617,0.300375,-1.85806,-1.22121,-1.60782,0.202514 +-0.0125338,0.298721,-1.86482,-1.22871,-1.60581,0.190655 +-0.0152544,0.297029,-1.87091,-1.23468,-1.60396,0.178791 +-0.0181053,0.295321,-1.8764,-1.23929,-1.60218,0.166976 +-0.0210952,0.293624,-1.88139,-1.24275,-1.60034,0.155228 +-0.0242414,0.291952,-1.88595,-1.24527,-1.59831,0.143525 +-0.0275699,0.290304,-1.89016,-1.24704,-1.59596,0.131822 +-0.0311062,0.288671,-1.89409,-1.24821,-1.5932,0.120068 +-0.0348694,0.287048,-1.89776,-1.24895,-1.58997,0.108216 +-0.0388683,0.285436,-1.90117,-1.24938,-1.58627,0.0962308 +-0.0430975,0.283842,-1.90433,-1.24961,-1.5821,0.0840942 +-0.0475293,0.282273,-1.90723,-1.24974,-1.57755,0.0718127 +-0.0521212,0.280727,-1.9099,-1.24985,-1.57271,0.0594091 +-0.0568399,0.279187,-1.91236,-1.24992,-1.56765,0.046901 +-0.0616726,0.277627,-1.91466,-1.24992,-1.56237,0.0342916 +-0.0666134,0.276024,-1.91684,-1.24983,-1.55684,0.0215809 +-0.071648,0.274365,-1.91897,-1.24961,-1.55108,0.0087776 +-0.0767583,0.27266,-1.92106,-1.24926,-1.54513,-0.00410392 +-0.0819284,0.270935,-1.92307,-1.24877,-1.53899,-0.0170486 +-0.0871478,0.269238,-1.9249,-1.24811,-1.53268,-0.0300441 +-0.0924036,0.267623,-1.92645,-1.24729,-1.5262,-0.0430744 +-0.0976786,0.266149,-1.92768,-1.24636,-1.51959,-0.0561187 +-0.102962,0.264864,-1.9286,-1.24545,-1.51292,-0.0691637 +-0.108239,0.263798,-1.92928,-1.24464,-1.50623,-0.0821959 +-0.113487,0.262965,-1.92978,-1.24405,-1.4996,-0.0951915 +-0.118663,0.262364,-1.9301,-1.24373,-1.4931,-0.108111 +-0.123706,0.261986,-1.93021,-1.24372,-1.48683,-0.120894 +-0.128551,0.261816,-1.93005,-1.24406,-1.48088,-0.133475 +-0.133159,0.261841,-1.92962,-1.2448,-1.47532,-0.145815 +-0.137533,0.262043,-1.92893,-1.24596,-1.47015,-0.15791 +-0.141716,0.262409,-1.92805,-1.24753,-1.46526,-0.1698 +-0.14579,0.262929,-1.92706,-1.24949,-1.4605,-0.181556 +-0.149838,0.2636,-1.92603,-1.25176,-1.45568,-0.193259 +-0.153916,0.264428,-1.92497,-1.25425,-1.4507,-0.204964 +-0.158025,0.265428,-1.92389,-1.25693,-1.44554,-0.216676 +-0.162094,0.266621,-1.92271,-1.25974,-1.44028,-0.228337 +-0.166009,0.26802,-1.92133,-1.26264,-1.43514,-0.239852 +-0.169676,0.269615,-1.91967,-1.26557,-1.43027,-0.251139 +-0.173086,0.271359,-1.91772,-1.2685,-1.4257,-0.26219 +-0.176298,0.273179,-1.91554,-1.27139,-1.42137,-0.273057 +-0.179375,0.275002,-1.91323,-1.27424,-1.41725,-0.283789 +-0.182327,0.276774,-1.91082,-1.277,-1.41337,-0.2944 +-0.185096,0.278477,-1.90828,-1.2796,-1.40983,-0.304847 +-0.187558,0.280112,-1.90551,-1.28189,-1.40685,-0.315044 +-0.189559,0.281685,-1.90235,-1.28356,-1.40467,-0.324892 +-0.190972,0.2832,-1.89866,-1.28429,-1.40353,-0.33432 +-0.191734,0.284648,-1.89433,-1.28377,-1.40355,-0.343312 +-0.191892,0.286015,-1.88934,-1.28178,-1.40468,-0.351929 +-0.191622,0.287282,-1.88376,-1.27831,-1.40665,-0.360319 +-0.191148,0.288429,-1.87769,-1.27343,-1.40905,-0.368661 +-0.190619,0.289448,-1.87119,-1.26716,-1.41164,-0.377075 +-0.190006,0.290347,-1.86423,-1.25935,-1.41445,-0.385553 +-0.189131,0.291159,-1.85668,-1.24977,-1.4178,-0.393974 +-0.187803,0.291931,-1.84843,-1.23824,-1.42201,-0.401716 +-0.185957,0.29271,-1.8394,-1.22468,-1.4272,-0.407523 +-0.183684,0.29353,-1.82956,-1.20909,-1.43321,-0.41043 +-0.181144,0.294424,-1.81892,-1.19153,-1.43975,-0.410226 +-0.178462,0.295429,-1.80748,-1.17205,-1.44658,-0.407135 +-0.175668,0.296598,-1.79525,-1.15076,-1.4536,-0.401564 +-0.172699,0.297992,-1.78227,-1.12787,-1.46092,-0.393956 +-0.169447,0.299673,-1.76862,-1.1037,-1.4687,-0.384726 +-0.165813,0.30169,-1.75443,-1.07864,-1.47711,-0.374239 +-0.161755,0.304086,-1.73986,-1.05308,-1.48621,-0.362827 +-0.157325,0.306899,-1.72493,-1.02722,-1.49594,-0.350814 +-0.152668,0.310176,-1.70954,-1.00089,-1.50606,-0.338534 +-0.147949,0.313954,-1.69355,-0.973882,-1.51633,-0.326263 +-0.143264,0.318237,-1.67694,-0.94619,-1.52656,-0.314144 +-0.138601,0.322993,-1.65984,-0.918035,-1.53677,-0.302175 +-0.133876,0.328159,-1.64246,-0.889798,-1.54707,-0.290254 +-0.129021,0.33366,-1.62502,-0.861852,-1.55753,-0.278277 +-0.124016,0.339431,-1.60767,-0.834427,-1.56816,-0.266182 +-0.118875,0.345411,-1.59049,-0.80761,-1.57889,-0.253943 +-0.113621,0.351521,-1.5736,-0.781526,-1.58964,-0.241548 +-0.108289,0.357641,-1.55725,-0.756507,-1.60029,-0.228993 +-0.102922,0.363646,-1.54168,-0.732904,-1.61068,-0.216294 +-0.0975759,0.369461,-1.52702,-0.710866,-1.62062,-0.203487 +-0.0923073,0.375083,-1.51319,-0.690234,-1.63,-0.190628 +-0.0871642,0.380566,-1.49995,-0.670602,-1.63872,-0.177776 +-0.0821787,0.385944,-1.48717,-0.651714,-1.64674,-0.164974 +-0.0773709,0.391196,-1.47488,-0.633614,-1.65404,-0.152247 +-0.0727467,0.396272,-1.46318,-0.616481,-1.6606,-0.139607 +-0.0683014,0.401098,-1.45228,-0.600603,-1.66645,-0.127055 +-0.064035,0.405557,-1.44248,-0.586443,-1.67158,-0.114591 +-0.0599549,0.409514,-1.43411,-0.574466,-1.67599,-0.102224 +-0.0560665,0.412844,-1.42743,-0.565016,-1.67967,-0.0899628 +-0.0523809,0.415418,-1.4227,-0.558438,-1.68261,-0.0778203 +-0.0489146,0.417145,-1.42008,-0.554961,-1.68479,-0.0658169 +-0.0456683,0.418028,-1.4195,-0.554446,-1.68624,-0.0539629 +-0.0426197,0.418158,-1.42071,-0.556475,-1.68706,-0.0422505 +-0.0397266,0.417698,-1.42327,-0.560426,-1.68738,-0.0306544 +-0.0369383,0.416841,-1.42671,-0.565571,-1.68732,-0.0191414 +-0.0342288,0.415714,-1.43073,-0.571484,-1.68696,-0.00769627 +-0.0316286,0.414272,-1.43547,-0.578415,-1.68631,0.00365318 +-0.0292251,0.412325,-1.44145,-0.587135,-1.6853,0.0148328 +-0.0271075,0.409696,-1.44915,-0.598347,-1.68384,0.0257663 +-0.0252907,0.40638,-1.45861,-0.612116,-1.68195,0.0364399 +-0.0237011,0.402578,-1.46936,-0.627739,-1.67973,0.0469134 +-0.0222304,0.398569,-1.48068,-0.644165,-1.67733,0.0572751 +-0.0208019,0.394548,-1.49207,-0.660616,-1.67486,0.0675866 +-0.0194182,0.390543,-1.50345,-0.676973,-1.67236,0.0778444 +-0.0181535,0.386456,-1.51509,-0.693642,-1.66975,0.0879856 +-0.0170934,0.382192,-1.52723,-0.711023,-1.66688,0.0979375 +-0.0162837,0.377722,-1.53997,-0.729227,-1.66373,0.10766 +-0.0157223,0.373088,-1.55321,-0.748148,-1.66031,0.117157 +-0.0153719,0.368371,-1.56679,-0.767553,-1.65667,0.126461 +-0.0151702,0.363675,-1.5805,-0.787168,-1.65288,0.135626 +-0.0150568,0.359088,-1.59419,-0.806824,-1.64903,0.144707 +-0.0150235,0.354641,-1.60785,-0.826555,-1.64519,0.153714 +-0.0151299,0.350313,-1.62156,-0.846585,-1.64135,0.1626 +-0.0154424,0.346062,-1.63547,-0.867157,-1.63748,0.17131 +-0.0159615,0.34188,-1.64959,-0.888341,-1.6336,0.17985 +-0.0166114,0.337793,-1.6639,-0.91015,-1.6298,0.188288 +-0.0172935,0.333847,-1.67834,-0.932585,-1.62617,0.196713 +-0.0179635,0.330082,-1.69279,-0.955456,-1.62276,0.205164 +-0.0186769,0.326505,-1.70713,-0.978506,-1.61952,0.21359 +-0.0195519,0.323101,-1.72131,-1.00153,-1.61635,0.221889 +-0.0206795,0.31985,-1.73526,-1.02429,-1.61315,0.229501 +-0.0220633,0.316748,-1.7489,-1.04658,-1.60993,0.235217 +-0.0236301,0.313801,-1.76217,-1.0682,-1.60674,0.238069 +-0.0252853,0.311018,-1.77502,-1.08901,-1.60367,0.237808 +-0.0269647,0.308398,-1.7874,-1.10889,-1.60079,0.234622 +-0.0286578,0.305928,-1.79927,-1.12769,-1.59809,0.228922 +-0.0303979,0.303585,-1.81056,-1.14522,-1.59554,0.221197 +-0.0322426,0.301353,-1.82122,-1.16131,-1.59307,0.211932 +-0.034257,0.299222,-1.83119,-1.17583,-1.59057,0.201555 +-0.0364957,0.297183,-1.84044,-1.18872,-1.58795,0.190419 +-0.0389915,0.295232,-1.84896,-1.19996,-1.58514,0.178801 +-0.0417525,0.293358,-1.85677,-1.20958,-1.58209,0.166906 +-0.0447628,0.291549,-1.86393,-1.2177,-1.57877,0.154881 +-0.0479844,0.289793,-1.8705,-1.22449,-1.57524,0.14283 +-0.0513762,0.288071,-1.87658,-1.23013,-1.57154,0.13081 +-0.0549091,0.286361,-1.88223,-1.23474,-1.56769,0.11884 +-0.0585717,0.284644,-1.88751,-1.23843,-1.56372,0.106904 +-0.0623804,0.282904,-1.89238,-1.24123,-1.55958,0.0949577 +-0.0663725,0.281133,-1.89683,-1.24321,-1.5552,0.0829383 +-0.0705736,0.279327,-1.90088,-1.24449,-1.55052,0.0707977 +-0.0749696,0.277479,-1.90459,-1.24522,-1.54554,0.0585244 +-0.0795119,0.275581,-1.9081,-1.24556,-1.54032,0.046138 +-0.0841482,0.27363,-1.9115,-1.24563,-1.53494,0.0336658 +-0.0888555,0.271651,-1.91483,-1.2455,-1.5294,0.0211172 +-0.0936407,0.269696,-1.91804,-1.24523,-1.52368,0.00848392 +-0.0985226,0.267837,-1.92104,-1.24485,-1.51777,-0.0042465 +-0.103514,0.266139,-1.92376,-1.24444,-1.51166,-0.0170795 +-0.108607,0.264646,-1.92619,-1.24405,-1.5054,-0.0300027 +-0.113774,0.263369,-1.92838,-1.24374,-1.49904,-0.0429937 +-0.118989,0.262294,-1.93037,-1.24355,-1.49264,-0.0560275 +-0.124217,0.261396,-1.93219,-1.24348,-1.48624,-0.0690724 +-0.129428,0.260637,-1.93381,-1.24354,-1.4799,-0.0820954 +-0.134603,0.259982,-1.93521,-1.24371,-1.47367,-0.0950707 +-0.139739,0.259398,-1.93635,-1.24401,-1.46752,-0.107989 +-0.144856,0.258858,-1.93728,-1.24445,-1.46139,-0.120861 +-0.149974,0.258354,-1.93803,-1.24501,-1.45522,-0.133705 +-0.15511,0.257902,-1.93863,-1.2457,-1.44892,-0.146538 +-0.160265,0.257555,-1.93906,-1.24653,-1.44244,-0.159363 +-0.16543,0.257383,-1.93931,-1.24751,-1.43574,-0.172173 +-0.170606,0.257448,-1.93937,-1.24871,-1.42876,-0.184968 +-0.175815,0.257769,-1.93925,-1.25013,-1.42146,-0.197769 +-0.181091,0.258323,-1.93904,-1.25174,-1.4138,-0.210611 +-0.186435,0.259072,-1.93879,-1.25355,-1.40581,-0.223499 +-0.191788,0.259996,-1.93851,-1.2556,-1.39766,-0.236376 +-0.19703,0.261103,-1.93813,-1.25797,-1.38957,-0.249123 +-0.202026,0.26241,-1.93757,-1.26076,-1.38179,-0.261603 +-0.206687,0.263916,-1.93675,-1.26401,-1.3745,-0.27373 +-0.211018,0.265584,-1.93566,-1.26766,-1.36768,-0.285504 +-0.215099,0.267356,-1.93438,-1.27164,-1.3612,-0.296999 +-0.219039,0.269169,-1.93298,-1.27584,-1.35488,-0.308322 +-0.222942,0.270974,-1.93152,-1.2801,-1.34854,-0.319577 +-0.226871,0.27275,-1.93001,-1.28429,-1.34205,-0.330834 +-0.230812,0.274501,-1.92842,-1.28836,-1.33545,-0.342087 +-0.234661,0.276246,-1.92671,-1.29232,-1.32889,-0.353245 +-0.238237,0.277996,-1.92479,-1.29614,-1.32274,-0.364155 +-0.241352,0.27975,-1.92255,-1.2997,-1.31735,-0.374672 +-0.243912,0.281487,-1.91989,-1.30279,-1.31296,-0.38474 +-0.245959,0.283182,-1.9168,-1.3052,-1.30952,-0.394419 +-0.247621,0.284805,-1.91327,-1.30673,-1.30682,-0.403846 +-0.249012,0.286329,-1.90931,-1.30718,-1.30465,-0.413149 +-0.250175,0.287735,-1.90488,-1.30632,-1.30292,-0.422392 +-0.251061,0.289011,-1.89994,-1.30393,-1.30172,-0.431573 +-0.251601,0.290146,-1.89436,-1.29973,-1.3012,-0.440667 +-0.251785,0.291138,-1.88808,-1.29347,-1.30137,-0.449215 +-0.25167,0.291991,-1.88106,-1.285,-1.30212,-0.456081 +-0.251299,0.292719,-1.87325,-1.2742,-1.30337,-0.460285 +-0.250653,0.293345,-1.86465,-1.26106,-1.30518,-0.461484 +-0.249647,0.293902,-1.85523,-1.24561,-1.30774,-0.45973 +-0.248159,0.294428,-1.84501,-1.22799,-1.31131,-0.455304 +-0.246081,0.294969,-1.83403,-1.20846,-1.31612,-0.448596 +-0.243359,0.295572,-1.82238,-1.18737,-1.32228,-0.440044 +-0.240028,0.296289,-1.81014,-1.16499,-1.32973,-0.430122 +-0.236216,0.297179,-1.79729,-1.1414,-1.33823,-0.419312 +-0.232117,0.298306,-1.7838,-1.11661,-1.3474,-0.408067 +-0.227905,0.299732,-1.76962,-1.09064,-1.35689,-0.396728 +-0.223643,0.301498,-1.7548,-1.06368,-1.36655,-0.385457 +-0.219288,0.303624,-1.7395,-1.03615,-1.37645,-0.374241 +-0.214757,0.306119,-1.72387,-1.00847,-1.38672,-0.362991 +-0.209995,0.309002,-1.70798,-0.980845,-1.39745,-0.351631 +-0.205002,0.312291,-1.69186,-0.953364,-1.40864,-0.340123 +-0.199799,0.315975,-1.67559,-0.926207,-1.42022,-0.328442 +-0.194383,0.31999,-1.65941,-0.899765,-1.43217,-0.316527 +-0.18872,0.324228,-1.64366,-0.874581,-1.44452,-0.30429 +-0.18279,0.3286,-1.62857,-0.851025,-1.45731,-0.291671 +-0.176619,0.333089,-1.61412,-0.828977,-1.47048,-0.278688 +-0.170275,0.337745,-1.60005,-0.807934,-1.48393,-0.26542 +-0.163829,0.342617,-1.58607,-0.787368,-1.49755,-0.251956 +-0.157336,0.347693,-1.57209,-0.767008,-1.51125,-0.238355 +-0.150821,0.352886,-1.55822,-0.746944,-1.52492,-0.224642 +-0.144299,0.358048,-1.54477,-0.727627,-1.5385,-0.210818 +-0.137793,0.363042,-1.53208,-0.709527,-1.55187,-0.196892 +-0.131333,0.367788,-1.52031,-0.692856,-1.56493,-0.182894 +-0.124952,0.372276,-1.50949,-0.677624,-1.57758,-0.168863 +-0.118678,0.376559,-1.49945,-0.663588,-1.58976,-0.154839 +-0.11254,0.380693,-1.49001,-0.650474,-1.60139,-0.140864 +-0.106582,0.384626,-1.48127,-0.638405,-1.61236,-0.126985 +-0.100865,0.38819,-1.47363,-0.627922,-1.62247,-0.11325 +-0.0954498,0.391171,-1.46759,-0.619766,-1.63155,-0.0997032 +-0.0903656,0.393451,-1.46345,-0.614375,-1.63947,-0.0863683 +-0.085593,0.395089,-1.461,-0.611455,-1.6463,-0.0732414 +-0.0810958,0.396219,-1.45986,-0.610435,-1.65215,-0.0603094 +-0.0768591,0.396911,-1.45984,-0.611026,-1.6571,-0.0475714 +-0.0728931,0.397133,-1.46101,-0.613368,-1.66115,-0.0350395 +-0.0692156,0.396786,-1.46367,-0.617937,-1.66432,-0.0227253 +-0.0658414,0.395796,-1.46804,-0.625087,-1.66663,-0.0106395 +-0.062778,0.394165,-1.4741,-0.634782,-1.66811,0.00120621 +-0.0600223,0.391949,-1.48169,-0.646727,-1.66883,0.0128053 +-0.057561,0.389226,-1.49061,-0.660601,-1.66885,0.0241615 +-0.055376,0.38607,-1.50071,-0.676192,-1.66825,0.0352862 +-0.0534488,0.382561,-1.51179,-0.69326,-1.6671,0.0461918 +-0.0517654,0.378785,-1.52367,-0.711519,-1.66546,0.0568854 +-0.0503193,0.374819,-1.53617,-0.730717,-1.66336,0.0673693 +-0.0491038,0.370728,-1.54912,-0.750566,-1.66082,0.0776453 +-0.0481076,0.366572,-1.56232,-0.770734,-1.65786,0.0877186 +-0.0473192,0.362395,-1.57562,-0.790931,-1.65452,0.0975961 +-0.0467303,0.358229,-1.5889,-0.810986,-1.65081,0.107284 +-0.0463377,0.354095,-1.60214,-0.830823,-1.64675,0.116786 +-0.0461417,0.350014,-1.61528,-0.850386,-1.64237,0.126103 +-0.046145,0.345994,-1.62831,-0.869658,-1.6377,0.135234 +-0.0463511,0.342035,-1.64127,-0.888678,-1.63279,0.144179 +-0.046764,0.338127,-1.65417,-0.907513,-1.62767,0.15294 +-0.0473867,0.334269,-1.66705,-0.926238,-1.62238,0.161519 +-0.0482154,0.330474,-1.6799,-0.944884,-1.61699,0.169921 +-0.0492421,0.326766,-1.69274,-0.963514,-1.61155,0.178158 +-0.0504665,0.32317,-1.70558,-0.982278,-1.60612,0.186237 +-0.0518995,0.319704,-1.71847,-1.00132,-1.60071,0.194157 +-0.0535476,0.316383,-1.73136,-1.02062,-1.59533,0.201434 +-0.0553914,0.313224,-1.74419,-1.04002,-1.59,0.206879 +-0.0573797,0.310247,-1.75683,-1.05926,-1.5848,0.209502 +-0.0594462,0.307469,-1.76919,-1.07815,-1.57978,0.209027 +-0.0615394,0.304897,-1.78121,-1.09651,-1.57498,0.205629 +-0.0636427,0.302515,-1.79282,-1.11417,-1.57041,0.199721 +-0.0657749,0.300289,-1.804,-1.13102,-1.56604,0.191806 +-0.0679792,0.298178,-1.81472,-1.14696,-1.56182,0.182381 +-0.0702954,0.296143,-1.82497,-1.16186,-1.55768,0.171894 +-0.0727413,0.294157,-1.83473,-1.17561,-1.55359,0.160726 +-0.0753308,0.292202,-1.84396,-1.18812,-1.54954,0.149165 +-0.0780911,0.290264,-1.85263,-1.1993,-1.54548,0.137399 +-0.0810584,0.288332,-1.86071,-1.20909,-1.54131,0.125527 +-0.0842612,0.286391,-1.8682,-1.21748,-1.537,0.113595 +-0.0877017,0.28442,-1.87511,-1.22453,-1.5325,0.101626 +-0.0913551,0.282395,-1.88152,-1.23032,-1.5278,0.0896321 +-0.0951837,0.280297,-1.88751,-1.23499,-1.52291,0.0776208 +-0.0991591,0.27813,-1.89314,-1.23866,-1.51785,0.0655837 +-0.103273,0.275929,-1.89841,-1.24148,-1.51262,0.0534964 +-0.107525,0.273752,-1.90333,-1.2436,-1.50723,0.0413317 +-0.111918,0.271659,-1.90788,-1.24513,-1.50171,0.0290654 +-0.116445,0.269702,-1.91205,-1.2462,-1.49607,0.0166854 +-0.121087,0.267912,-1.91589,-1.24692,-1.49033,0.00419593 +-0.125821,0.266293,-1.91942,-1.24738,-1.48451,-0.00839298 +-0.130626,0.264825,-1.92271,-1.24763,-1.47864,-0.0210663 +-0.135478,0.263465,-1.9258,-1.24774,-1.47276,-0.0338056 +-0.140378,0.262168,-1.92873,-1.24772,-1.46685,-0.0466081 +-0.145347,0.260901,-1.93153,-1.24759,-1.46085,-0.0594864 +-0.1504,0.259663,-1.93417,-1.24736,-1.4547,-0.0724492 +-0.155559,0.25848,-1.93664,-1.24707,-1.44833,-0.0855078 +-0.160851,0.257395,-1.9389,-1.24679,-1.44163,-0.0986755 +-0.166286,0.256458,-1.94094,-1.24658,-1.43455,-0.111956 +-0.171867,0.255708,-1.94274,-1.24646,-1.42703,-0.125351 +-0.177593,0.255171,-1.94431,-1.24642,-1.41903,-0.138863 +-0.183445,0.254857,-1.94563,-1.24648,-1.41058,-0.152475 +-0.18938,0.25476,-1.94673,-1.24666,-1.40179,-0.166148 +-0.195345,0.254861,-1.94761,-1.24699,-1.3928,-0.179832 +-0.201304,0.255134,-1.94828,-1.24748,-1.38372,-0.193492 +-0.207229,0.255558,-1.94875,-1.24821,-1.37459,-0.207092 +-0.213092,0.256118,-1.94905,-1.24925,-1.3655,-0.220598 +-0.218881,0.256799,-1.94919,-1.25056,-1.35644,-0.234002 +-0.224606,0.257595,-1.94916,-1.25207,-1.34738,-0.247321 +-0.230293,0.258509,-1.94898,-1.25372,-1.33824,-0.260587 +-0.235968,0.259551,-1.94867,-1.25551,-1.32893,-0.273827 +-0.241626,0.260733,-1.94824,-1.25743,-1.31945,-0.28704 +-0.247226,0.262061,-1.94767,-1.25945,-1.30991,-0.300192 +-0.252713,0.263543,-1.94695,-1.26162,-1.30045,-0.313224 +-0.258051,0.265181,-1.94609,-1.26407,-1.29116,-0.326087 +-0.263214,0.266965,-1.9451,-1.26684,-1.28213,-0.338745 +-0.268193,0.268874,-1.94401,-1.26998,-1.2734,-0.35118 +-0.272976,0.270886,-1.94281,-1.27349,-1.26498,-0.363375 +-0.277513,0.272975,-1.94149,-1.27737,-1.25696,-0.375278 +-0.281741,0.27511,-1.94001,-1.28152,-1.24945,-0.386833 +-0.285628,0.277263,-1.93833,-1.28585,-1.24246,-0.398023 +-0.289195,0.279413,-1.93641,-1.29021,-1.23591,-0.408882 +-0.292517,0.281538,-1.93426,-1.2944,-1.22966,-0.419507 +-0.295667,0.283613,-1.93185,-1.29817,-1.2236,-0.430001 +-0.298678,0.285619,-1.92917,-1.30129,-1.2177,-0.440431 +-0.301529,0.287538,-1.92616,-1.30358,-1.212,-0.450808 +-0.304142,0.289345,-1.92275,-1.30483,-1.20665,-0.461093 +-0.306398,0.29101,-1.91885,-1.30481,-1.20189,-0.471216 +-0.308179,0.2925,-1.9144,-1.30333,-1.19794,-0.481105 +-0.309422,0.293796,-1.90934,-1.30023,-1.19492,-0.490734 +-0.31017,0.294901,-1.90366,-1.29534,-1.19274,-0.499689 +-0.310573,0.295844,-1.89731,-1.28847,-1.19115,-0.506931 +-0.310837,0.29667,-1.89028,-1.27947,-1.1898,-0.511647 +-0.31111,0.297425,-1.88255,-1.26824,-1.18844,-0.513657 +-0.311364,0.298129,-1.87415,-1.25487,-1.18715,-0.513062 +-0.311388,0.298778,-1.86512,-1.23959,-1.18637,-0.510036 +-0.310942,0.299371,-1.85551,-1.22272,-1.1866,-0.504824 +-0.309916,0.299931,-1.84532,-1.20441,-1.18808,-0.497822 +-0.308385,0.300513,-1.83448,-1.18465,-1.19069,-0.489574 +-0.306499,0.301184,-1.82297,-1.16342,-1.19415,-0.480606 +-0.304344,0.301995,-1.81082,-1.14088,-1.1983,-0.471265 +-0.301884,0.302963,-1.79813,-1.11737,-1.20324,-0.461672 +-0.298997,0.304084,-1.78503,-1.09329,-1.20925,-0.451784 +-0.295577,0.30535,-1.77165,-1.06899,-1.21657,-0.441514 +-0.291586,0.306769,-1.75807,-1.0447,-1.22528,-0.430816 +-0.287055,0.30836,-1.74432,-1.02053,-1.23531,-0.419694 +-0.282051,0.310149,-1.73042,-0.996525,-1.24651,-0.408179 +-0.276647,0.312164,-1.71636,-0.97267,-1.2587,-0.396311 +-0.270909,0.314427,-1.70215,-0.948969,-1.27171,-0.384117 +-0.264892,0.316943,-1.68782,-0.925508,-1.2854,-0.371617 +-0.258643,0.319707,-1.67348,-0.902432,-1.29962,-0.358821 +-0.252206,0.322707,-1.65918,-0.879864,-1.31424,-0.345751 +-0.245634,0.325946,-1.64493,-0.857764,-1.32912,-0.332448 +-0.238984,0.329434,-1.63063,-0.835984,-1.34414,-0.318975 +-0.232299,0.333155,-1.61631,-0.814496,-1.35919,-0.305375 +-0.225582,0.337034,-1.60217,-0.79358,-1.37424,-0.291637 +-0.218809,0.340948,-1.58855,-0.773777,-1.38929,-0.277719 +-0.211966,0.344783,-1.57582,-0.755612,-1.40432,-0.263588 +-0.205059,0.348489,-1.56412,-0.739296,-1.41929,-0.249252 +-0.198115,0.352092,-1.55338,-0.724647,-1.43414,-0.234759 +-0.191158,0.355663,-1.54335,-0.711258,-1.44885,-0.220164 +-0.184199,0.359282,-1.53373,-0.698612,-1.46343,-0.205509 +-0.177247,0.36298,-1.52435,-0.686373,-1.47789,-0.190825 +-0.170337,0.366657,-1.51537,-0.674752,-1.49215,-0.176139 +-0.163527,0.370087,-1.5073,-0.664472,-1.50605,-0.16148 +-0.156883,0.373004,-1.50073,-0.656388,-1.5194,-0.14688 +-0.15046,0.375203,-1.49613,-0.651155,-1.53204,-0.132372 +-0.144288,0.37661,-1.49365,-0.648995,-1.5439,-0.117978 +-0.138363,0.377287,-1.49313,-0.649686,-1.555,-0.103711 +-0.132656,0.377406,-1.49413,-0.65262,-1.5654,-0.0895684 +-0.127114,0.377195,-1.49608,-0.656943,-1.57525,-0.0755377 +-0.121712,0.376806,-1.49861,-0.662098,-1.58463,-0.0616185 +-0.116487,0.37624,-1.50174,-0.668138,-1.59342,-0.0478447 +-0.111515,0.375392,-1.50573,-0.675455,-1.60146,-0.034276 +-0.106872,0.374151,-1.51086,-0.684436,-1.60857,-0.0209697 +-0.102599,0.372463,-1.51728,-0.695323,-1.61465,-0.00795737 +-0.0987024,0.370351,-1.52496,-0.708108,-1.61971,0.00475629 +-0.0951582,0.367887,-1.53372,-0.722555,-1.62379,0.0171851 +-0.0919335,0.365158,-1.54334,-0.738329,-1.62698,0.0293496 +-0.0890053,0.362231,-1.55365,-0.755144,-1.62934,0.0412626 +-0.0863905,0.359132,-1.56458,-0.772894,-1.63088,0.052907 +-0.0841649,0.355835,-1.57623,-0.791757,-1.63153,0.0642223 +-0.0824179,0.352301,-1.58879,-0.812083,-1.63117,0.0751435 +-0.0811704,0.348554,-1.60227,-0.833935,-1.62985,0.0856582 +-0.0803425,0.344702,-1.61639,-0.856842,-1.62773,0.0958257 +-0.0797999,0.340888,-1.63072,-0.88011,-1.62505,0.105746 +-0.0794343,0.337218,-1.64492,-0.903162,-1.62198,0.115499 +-0.0792156,0.33372,-1.65882,-0.925676,-1.61858,0.125104 +-0.079188,0.330362,-1.67243,-0.947572,-1.6148,0.134525 +-0.0794367,0.327097,-1.6858,-0.968864,-1.61057,0.143692 +-0.0800434,0.323898,-1.69898,-0.989609,-1.6058,0.152542 +-0.0810464,0.320769,-1.71199,-1.00982,-1.60048,0.161046 +-0.082405,0.317736,-1.72477,-1.02941,-1.5947,0.169237 +-0.0840023,0.31483,-1.73723,-1.04824,-1.58861,0.176729 +-0.0857076,0.312071,-1.74928,-1.06618,-1.58239,0.182422 +-0.0874544,0.309468,-1.7609,-1.08322,-1.57613,0.185346 +-0.0892772,0.307016,-1.77212,-1.0995,-1.56986,0.185152 +-0.0912803,0.304701,-1.78301,-1.11516,-1.56355,0.181901 +-0.0935667,0.302502,-1.79363,-1.13038,-1.55714,0.175919 +-0.0961801,0.300393,-1.80402,-1.14522,-1.5506,0.167698 +-0.0990868,0.298342,-1.81418,-1.15959,-1.54394,0.157797 +-0.102204,0.296321,-1.82409,-1.17339,-1.53721,0.146764 +-0.105441,0.294307,-1.83375,-1.18653,-1.53049,0.135067 +-0.108735,0.292285,-1.84314,-1.1989,-1.52383,0.123056 +-0.112061,0.290247,-1.85221,-1.21036,-1.51725,0.110953 +-0.11544,0.288195,-1.86088,-1.22076,-1.51076,0.0988676 +-0.11893,0.286146,-1.86908,-1.23,-1.50432,0.0868184 +-0.122595,0.284114,-1.87672,-1.23802,-1.4979,0.0747745 +-0.126474,0.282106,-1.88377,-1.24479,-1.49147,0.062694 +-0.130559,0.280118,-1.89025,-1.25033,-1.48501,0.050557 +-0.134809,0.27814,-1.8962,-1.25471,-1.47858,0.0383603 +-0.139182,0.276162,-1.90167,-1.25798,-1.47217,0.0260992 +-0.143653,0.274182,-1.90673,-1.26024,-1.46578,0.0137624 +-0.148216,0.272211,-1.91141,-1.26163,-1.45935,0.00133115 +-0.152873,0.270273,-1.91577,-1.26229,-1.45287,-0.0112107 +-0.157627,0.268395,-1.91981,-1.26235,-1.44629,-0.0238761 +-0.162484,0.266606,-1.92355,-1.26188,-1.43957,-0.0366763 +-0.167456,0.264935,-1.92699,-1.26097,-1.43266,-0.0496259 +-0.172573,0.263406,-1.93018,-1.25977,-1.42544,-0.0627429 +-0.177852,0.262038,-1.93315,-1.25843,-1.41784,-0.0760323 +-0.183291,0.260847,-1.93592,-1.25706,-1.40988,-0.0894821 +-0.188871,0.259841,-1.9385,-1.25576,-1.4016,-0.103065 +-0.194566,0.259025,-1.94086,-1.25459,-1.39308,-0.116749 +-0.20036,0.258392,-1.94298,-1.25356,-1.38436,-0.130514 +-0.206242,0.257922,-1.94488,-1.25269,-1.37548,-0.144346 +-0.212204,0.257582,-1.94658,-1.25196,-1.36644,-0.158236 +-0.218251,0.257328,-1.94815,-1.25133,-1.35722,-0.172199 +-0.224384,0.257127,-1.94961,-1.25071,-1.34779,-0.186247 +-0.230592,0.256988,-1.95097,-1.25009,-1.33813,-0.200377 +-0.236846,0.256952,-1.95216,-1.24944,-1.32827,-0.214562 +-0.243106,0.257088,-1.9531,-1.24883,-1.31826,-0.228758 +-0.249347,0.257452,-1.95377,-1.24836,-1.30812,-0.242932 +-0.255534,0.258065,-1.95414,-1.24807,-1.29796,-0.257047 +-0.261644,0.258909,-1.95425,-1.24792,-1.28785,-0.27109 +-0.267683,0.259949,-1.95417,-1.2479,-1.27782,-0.28507 +-0.273648,0.261155,-1.95394,-1.24808,-1.26786,-0.298982 +-0.279524,0.262505,-1.9536,-1.24847,-1.25802,-0.312801 +-0.285298,0.263989,-1.95313,-1.24913,-1.24829,-0.326503 +-0.290974,0.265602,-1.95252,-1.25006,-1.23862,-0.340087 +-0.296554,0.267336,-1.95176,-1.25124,-1.22899,-0.353551 +-0.302038,0.269179,-1.95084,-1.25263,-1.2194,-0.366899 +-0.307419,0.271119,-1.94979,-1.25419,-1.20988,-0.38013 +-0.312679,0.273144,-1.94859,-1.25592,-1.20049,-0.393221 +-0.31779,0.275248,-1.94725,-1.25784,-1.19128,-0.406141 +-0.322726,0.277425,-1.94576,-1.25994,-1.18228,-0.418859 +-0.327478,0.279671,-1.94409,-1.26217,-1.1735,-0.431369 +-0.332059,0.281984,-1.94223,-1.26449,-1.16489,-0.44369 +-0.336491,0.284358,-1.94017,-1.26679,-1.15638,-0.455864 +-0.340809,0.286782,-1.93791,-1.26887,-1.14793,-0.46796 +-0.355414,0.295686,-1.92791,-1.27256,-1.11818,-0.510778 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record.offt new file mode 100644 index 00000000..9e057e4b --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record.offt @@ -0,0 +1,608 @@ +0.327134,0.358402,-1.654440,-0.192057,-0.184377,0.006708 +0.327134,0.358402,-1.654440,-0.192057,-0.184377,0.006708 +0.327133,0.358404,-1.654440,-0.192059,-0.184374,0.006711 +0.327120,0.358417,-1.654430,-0.192074,-0.184359,0.006726 +0.327086,0.358451,-1.654390,-0.192115,-0.184318,0.006767 +0.327019,0.358518,-1.654330,-0.192195,-0.184238,0.006847 +0.326909,0.358628,-1.654220,-0.192327,-0.184107,0.006978 +0.326745,0.358792,-1.654050,-0.192523,-0.183910,0.007175 +0.326516,0.359021,-1.653820,-0.192798,-0.183636,0.007449 +0.326211,0.359326,-1.653520,-0.193163,-0.183271,0.007814 +0.325820,0.359717,-1.653130,-0.193632,-0.182802,0.008283 +0.325331,0.360202,-1.652640,-0.194217,-0.182216,0.008869 +0.324735,0.360774,-1.652040,-0.194932,-0.181504,0.009584 +0.324020,0.361423,-1.651330,-0.195789,-0.180669,0.010441 +0.323190,0.362137,-1.650500,-0.196802,-0.179724,0.011454 +0.322256,0.362906,-1.649560,-0.197984,-0.178684,0.012636 +0.321229,0.363718,-1.648520,-0.199347,-0.177560,0.013999 +0.320118,0.364563,-1.647400,-0.200903,-0.176366,0.015556 +0.318936,0.365431,-1.646210,-0.202651,-0.175114,0.017321 +0.317693,0.366310,-1.644960,-0.204576,-0.173818,0.019306 +0.316400,0.367191,-1.643650,-0.206667,-0.172491,0.021524 +0.315067,0.368071,-1.642300,-0.208910,-0.171145,0.023986 +0.313706,0.368952,-1.640920,-0.211293,-0.169793,0.026683 +0.312326,0.369833,-1.639520,-0.213802,-0.168441,0.029604 +0.310940,0.370714,-1.638110,-0.216424,-0.167089,0.032734 +0.309553,0.371595,-1.636700,-0.219147,-0.165737,0.036062 +0.308167,0.372476,-1.635290,-0.221958,-0.164385,0.039573 +0.306780,0.373357,-1.633880,-0.224843,-0.163033,0.043256 +0.305393,0.374238,-1.632470,-0.227789,-0.161681,0.047096 +0.304006,0.375119,-1.631060,-0.230784,-0.160329,0.051083 +0.302620,0.376000,-1.629650,-0.233815,-0.158977,0.055201 +0.301233,0.376881,-1.628240,-0.236869,-0.157625,0.059438 +0.299846,0.377762,-1.626830,-0.239932,-0.156273,0.063782 +0.298460,0.378643,-1.625420,-0.242997,-0.154921,0.068219 +0.297073,0.379523,-1.624010,-0.246061,-0.153569,0.072737 +0.295686,0.380404,-1.622600,-0.249125,-0.152217,0.077322 +0.294299,0.381285,-1.621190,-0.252190,-0.150865,0.081962 +0.292913,0.382166,-1.619780,-0.255254,-0.149513,0.086643 +0.291526,0.383047,-1.618370,-0.258318,-0.148161,0.091353 +0.290139,0.383928,-1.616970,-0.261383,-0.146809,0.096078 +0.288753,0.384809,-1.615560,-0.264447,-0.145457,0.100807 +0.287366,0.385690,-1.614150,-0.267511,-0.144105,0.105536 +0.285979,0.386571,-1.612740,-0.270576,-0.142753,0.110265 +0.284592,0.387452,-1.611330,-0.273640,-0.141401,0.114994 +0.283206,0.388333,-1.609920,-0.276704,-0.140049,0.119723 +0.281819,0.389214,-1.608510,-0.279769,-0.138697,0.124452 +0.280432,0.390095,-1.607100,-0.282833,-0.137345,0.129181 +0.279045,0.390975,-1.605690,-0.285898,-0.135992,0.133910 +0.277659,0.391856,-1.604280,-0.288962,-0.134640,0.138639 +0.276272,0.392737,-1.602870,-0.292026,-0.133288,0.143368 +0.274885,0.393618,-1.601460,-0.295091,-0.131936,0.148097 +0.273499,0.394499,-1.600050,-0.298155,-0.130584,0.152826 +0.272112,0.395380,-1.598640,-0.301219,-0.129232,0.157555 +0.270725,0.396261,-1.597230,-0.304284,-0.127880,0.162284 +0.269338,0.397142,-1.595820,-0.307348,-0.126528,0.167013 +0.267952,0.398023,-1.594410,-0.310412,-0.125176,0.171742 +0.266565,0.398904,-1.593000,-0.313477,-0.123824,0.176471 +0.265178,0.399785,-1.591590,-0.316541,-0.122472,0.181200 +0.263792,0.400666,-1.590180,-0.319605,-0.121120,0.185929 +0.262405,0.401546,-1.588770,-0.322670,-0.119768,0.190658 +0.261018,0.402427,-1.587360,-0.325734,-0.118416,0.195387 +0.259631,0.403308,-1.585950,-0.328798,-0.117064,0.200116 +0.258245,0.404189,-1.584540,-0.331863,-0.115712,0.204845 +0.256858,0.405070,-1.583130,-0.334927,-0.114360,0.209574 +0.255471,0.405951,-1.581720,-0.337991,-0.113008,0.214303 +0.254084,0.406832,-1.580310,-0.341056,-0.111656,0.219032 +0.252698,0.407713,-1.578900,-0.344120,-0.110304,0.223761 +0.251311,0.408594,-1.577490,-0.347184,-0.108952,0.228490 +0.249924,0.409475,-1.576080,-0.350249,-0.107600,0.233219 +0.248538,0.410356,-1.574670,-0.353313,-0.106248,0.237948 +0.247151,0.411237,-1.573260,-0.356377,-0.104896,0.242677 +0.245764,0.412118,-1.571850,-0.359442,-0.103544,0.247406 +0.244377,0.412998,-1.570440,-0.362506,-0.102192,0.252135 +0.242991,0.413879,-1.569030,-0.365570,-0.100840,0.256864 +0.241604,0.414760,-1.567630,-0.368635,-0.099488,0.261593 +0.240217,0.415641,-1.566220,-0.371699,-0.098136,0.266322 +0.238831,0.416522,-1.564810,-0.374764,-0.096784,0.271051 +0.237444,0.417403,-1.563400,-0.377828,-0.095432,0.275780 +0.236057,0.418284,-1.561990,-0.380892,-0.094080,0.280509 +0.234670,0.419165,-1.560580,-0.383957,-0.092728,0.285238 +0.233284,0.420046,-1.559170,-0.387021,-0.091376,0.289967 +0.231897,0.420927,-1.557760,-0.390085,-0.090024,0.294696 +0.230510,0.421808,-1.556350,-0.393150,-0.088672,0.299425 +0.229123,0.422689,-1.554940,-0.396214,-0.087319,0.304154 +0.227737,0.423569,-1.553530,-0.399278,-0.085967,0.308883 +0.226350,0.424450,-1.552120,-0.402343,-0.084615,0.313612 +0.224963,0.425331,-1.550710,-0.405407,-0.083263,0.318341 +0.223577,0.426212,-1.549300,-0.408471,-0.081911,0.323070 +0.222190,0.427093,-1.547890,-0.411536,-0.080559,0.327799 +0.220803,0.427974,-1.546480,-0.414600,-0.079207,0.332528 +0.219416,0.428855,-1.545070,-0.417664,-0.077855,0.337257 +0.218030,0.429736,-1.543660,-0.420729,-0.076503,0.341986 +0.216643,0.430617,-1.542250,-0.423793,-0.075151,0.346715 +0.215256,0.431498,-1.540840,-0.426857,-0.073799,0.351444 +0.213870,0.432379,-1.539430,-0.429922,-0.072447,0.356173 +0.212483,0.433260,-1.538020,-0.432986,-0.071095,0.360902 +0.211096,0.434141,-1.536610,-0.436050,-0.069743,0.365631 +0.209709,0.435021,-1.535200,-0.439115,-0.068391,0.370360 +0.208323,0.435902,-1.533790,-0.442179,-0.067039,0.375089 +0.206936,0.436783,-1.532380,-0.445243,-0.065687,0.379818 +0.205549,0.437664,-1.530970,-0.448308,-0.064335,0.384547 +0.204162,0.438545,-1.529560,-0.451372,-0.062983,0.389276 +0.202776,0.439426,-1.528150,-0.454437,-0.061631,0.394005 +0.201389,0.440307,-1.526740,-0.457501,-0.060279,0.398734 +0.200002,0.441188,-1.525330,-0.460565,-0.058927,0.403463 +0.198616,0.442069,-1.523920,-0.463630,-0.057575,0.408192 +0.197229,0.442950,-1.522510,-0.466694,-0.056223,0.412921 +0.195842,0.443831,-1.521100,-0.469758,-0.054871,0.417650 +0.194455,0.444712,-1.519690,-0.472823,-0.053519,0.422379 +0.193069,0.445593,-1.518290,-0.475887,-0.052167,0.427108 +0.191682,0.446473,-1.516880,-0.478951,-0.050815,0.431837 +0.190295,0.447354,-1.515470,-0.482016,-0.049463,0.436566 +0.188909,0.448235,-1.514060,-0.485080,-0.048111,0.441295 +0.187522,0.449116,-1.512650,-0.488144,-0.046759,0.446024 +0.186135,0.449997,-1.511240,-0.491209,-0.045407,0.450753 +0.184748,0.450878,-1.509830,-0.494273,-0.044055,0.455482 +0.183362,0.451759,-1.508420,-0.497337,-0.042702,0.460211 +0.181975,0.452640,-1.507010,-0.500402,-0.041350,0.464940 +0.180588,0.453521,-1.505600,-0.503466,-0.039998,0.469669 +0.179201,0.454402,-1.504190,-0.506530,-0.038646,0.474398 +0.177815,0.455283,-1.502780,-0.509595,-0.037294,0.479127 +0.176428,0.456164,-1.501370,-0.512659,-0.035942,0.483856 +0.175041,0.457044,-1.499960,-0.515723,-0.034590,0.488585 +0.173655,0.457925,-1.498550,-0.518788,-0.033238,0.493314 +0.172268,0.458806,-1.497140,-0.521852,-0.031886,0.498043 +0.170881,0.459687,-1.495730,-0.524916,-0.030534,0.502772 +0.169494,0.460568,-1.494320,-0.527981,-0.029182,0.507501 +0.168108,0.461449,-1.492910,-0.531045,-0.027830,0.512230 +0.166721,0.462330,-1.491500,-0.534110,-0.026478,0.516959 +0.165334,0.463211,-1.490090,-0.537174,-0.025126,0.521688 +0.163948,0.464092,-1.488680,-0.540238,-0.023774,0.526417 +0.162561,0.464973,-1.487270,-0.543303,-0.022422,0.531146 +0.161174,0.465854,-1.485860,-0.546367,-0.021070,0.535875 +0.159787,0.466735,-1.484450,-0.549431,-0.019718,0.540604 +0.158401,0.467616,-1.483040,-0.552496,-0.018366,0.545333 +0.157014,0.468496,-1.481630,-0.555560,-0.017014,0.550062 +0.155627,0.469377,-1.480220,-0.558624,-0.015662,0.554791 +0.154240,0.470258,-1.478810,-0.561689,-0.014310,0.559520 +0.152854,0.471139,-1.477400,-0.564753,-0.012958,0.564249 +0.151467,0.472020,-1.475990,-0.567817,-0.011606,0.568978 +0.150080,0.472901,-1.474580,-0.570882,-0.010254,0.573707 +0.148694,0.473782,-1.473170,-0.573946,-0.008902,0.578436 +0.147307,0.474663,-1.471760,-0.577010,-0.007550,0.583165 +0.145920,0.475544,-1.470350,-0.580075,-0.006198,0.587894 +0.144533,0.476425,-1.468950,-0.583139,-0.004846,0.592623 +0.143147,0.477306,-1.467540,-0.586203,-0.003494,0.597352 +0.141760,0.478187,-1.466130,-0.589268,-0.002142,0.602081 +0.140373,0.479067,-1.464720,-0.592332,-0.000790,0.606810 +0.138987,0.479948,-1.463310,-0.595396,0.000562,0.611539 +0.137600,0.480829,-1.461900,-0.598461,0.001914,0.616268 +0.136213,0.481710,-1.460490,-0.601525,0.003266,0.620997 +0.134826,0.482591,-1.459080,-0.604589,0.004618,0.625726 +0.133440,0.483472,-1.457670,-0.607654,0.005970,0.630455 +0.132053,0.484353,-1.456260,-0.610718,0.007323,0.635184 +0.130666,0.485234,-1.454850,-0.613782,0.008675,0.639913 +0.129279,0.486115,-1.453440,-0.616847,0.010027,0.644642 +0.127893,0.486996,-1.452030,-0.619911,0.011379,0.649371 +0.126506,0.487877,-1.450620,-0.622976,0.012731,0.654100 +0.125119,0.488758,-1.449210,-0.626040,0.014083,0.658829 +0.123733,0.489639,-1.447800,-0.629104,0.015435,0.663558 +0.122346,0.490519,-1.446390,-0.632169,0.016787,0.668287 +0.120959,0.491400,-1.444980,-0.635233,0.018139,0.673016 +0.119572,0.492281,-1.443570,-0.638297,0.019491,0.677745 +0.118186,0.493162,-1.442160,-0.641362,0.020843,0.682474 +0.116799,0.494043,-1.440750,-0.644426,0.022195,0.687203 +0.115412,0.494924,-1.439340,-0.647490,0.023547,0.691932 +0.114026,0.495805,-1.437930,-0.650555,0.024899,0.696661 +0.112639,0.496686,-1.436520,-0.653619,0.026251,0.701390 +0.111252,0.497567,-1.435110,-0.656683,0.027603,0.706119 +0.109865,0.498448,-1.433700,-0.659748,0.028955,0.710848 +0.108479,0.499329,-1.432290,-0.662812,0.030307,0.715577 +0.107092,0.500210,-1.430880,-0.665876,0.031659,0.720306 +0.105705,0.501091,-1.429470,-0.668941,0.033011,0.725035 +0.104318,0.501971,-1.428060,-0.672005,0.034363,0.729764 +0.102932,0.502852,-1.426650,-0.675069,0.035715,0.734493 +0.101545,0.503733,-1.425240,-0.678134,0.037067,0.739222 +0.100158,0.504614,-1.423830,-0.681198,0.038419,0.743951 +0.098772,0.505495,-1.422420,-0.684262,0.039771,0.748680 +0.097385,0.506376,-1.421010,-0.687327,0.041123,0.753409 +0.095998,0.507257,-1.419610,-0.690391,0.042475,0.758138 +0.094611,0.508138,-1.418200,-0.693455,0.043827,0.762867 +0.093225,0.509019,-1.416790,-0.696520,0.045179,0.767596 +0.091838,0.509900,-1.415380,-0.699584,0.046531,0.772325 +0.090451,0.510781,-1.413970,-0.702649,0.047883,0.777054 +0.089065,0.511662,-1.412560,-0.705713,0.049235,0.781783 +0.087678,0.512542,-1.411150,-0.708777,0.050587,0.786512 +0.086291,0.513423,-1.409740,-0.711842,0.051940,0.791241 +0.084904,0.514304,-1.408330,-0.714906,0.053291,0.795970 +0.083518,0.515185,-1.406920,-0.717970,0.054643,0.800699 +0.082131,0.516066,-1.405510,-0.721035,0.055995,0.805428 +0.080744,0.516947,-1.404100,-0.724099,0.057348,0.810157 +0.079357,0.517828,-1.402690,-0.727163,0.058700,0.814886 +0.077971,0.518709,-1.401280,-0.730228,0.060052,0.819615 +0.076584,0.519590,-1.399870,-0.733292,0.061404,0.824344 +0.075197,0.520471,-1.398460,-0.736356,0.062756,0.829073 +0.073811,0.521352,-1.397050,-0.739421,0.064108,0.833802 +0.072424,0.522233,-1.395640,-0.742485,0.065460,0.838531 +0.071037,0.523114,-1.394230,-0.745549,0.066812,0.843260 +0.069650,0.523994,-1.392820,-0.748614,0.068164,0.847989 +0.068264,0.524875,-1.391410,-0.751678,0.069516,0.852718 +0.066877,0.525756,-1.390000,-0.754742,0.070868,0.857447 +0.065490,0.526637,-1.388590,-0.757807,0.072220,0.862176 +0.064103,0.527518,-1.387180,-0.760871,0.073572,0.866905 +0.062717,0.528399,-1.385770,-0.763935,0.074924,0.871634 +0.061330,0.529280,-1.384360,-0.767000,0.076276,0.876363 +0.059943,0.530161,-1.382950,-0.770064,0.077628,0.881092 +0.058557,0.531042,-1.381540,-0.773128,0.078980,0.885821 +0.057170,0.531923,-1.380130,-0.776193,0.080332,0.890550 +0.055783,0.532804,-1.378720,-0.779257,0.081684,0.895279 +0.054397,0.533685,-1.377310,-0.782321,0.083036,0.900008 +0.053010,0.534565,-1.375900,-0.785386,0.084388,0.904737 +0.051623,0.535446,-1.374490,-0.788450,0.085740,0.909466 +0.050236,0.536327,-1.373080,-0.791515,0.087092,0.914195 +0.048850,0.537208,-1.371670,-0.794579,0.088444,0.918924 +0.047463,0.538089,-1.370270,-0.797643,0.089796,0.923653 +0.046076,0.538970,-1.368860,-0.800708,0.091148,0.928382 +0.044689,0.539851,-1.367450,-0.803772,0.092500,0.933111 +0.043303,0.540732,-1.366040,-0.806836,0.093852,0.937840 +0.041916,0.541613,-1.364630,-0.809901,0.095204,0.942569 +0.040529,0.542494,-1.363220,-0.812965,0.096556,0.947298 +0.039143,0.543375,-1.361810,-0.816029,0.097908,0.952027 +0.037756,0.544256,-1.360400,-0.819094,0.099261,0.956756 +0.036369,0.545137,-1.358990,-0.822158,0.100612,0.961485 +0.034982,0.546017,-1.357580,-0.825222,0.101965,0.966214 +0.033596,0.546898,-1.356170,-0.828287,0.103317,0.970943 +0.032209,0.547779,-1.354760,-0.831351,0.104669,0.975672 +0.030822,0.548660,-1.353350,-0.834415,0.106021,0.980401 +0.029436,0.549541,-1.351940,-0.837480,0.107373,0.985130 +0.028049,0.550422,-1.350530,-0.840544,0.108725,0.989859 +0.026662,0.551303,-1.349120,-0.843608,0.110077,0.994588 +0.025275,0.552184,-1.347710,-0.846673,0.111429,0.999317 +0.023889,0.553065,-1.346300,-0.849737,0.112781,1.004050 +0.022502,0.553946,-1.344890,-0.852801,0.114133,1.008780 +0.021115,0.554827,-1.343480,-0.855866,0.115485,1.013500 +0.019728,0.555708,-1.342070,-0.858930,0.116837,1.018230 +0.018342,0.556589,-1.340660,-0.861994,0.118189,1.022960 +0.016955,0.557469,-1.339250,-0.865059,0.119541,1.027690 +0.015568,0.558350,-1.337840,-0.868123,0.120893,1.032420 +0.014182,0.559231,-1.336430,-0.871188,0.122245,1.037150 +0.012795,0.560112,-1.335020,-0.874252,0.123597,1.041880 +0.011408,0.560993,-1.333610,-0.877316,0.124949,1.046610 +0.010021,0.561874,-1.332200,-0.880381,0.126301,1.051340 +0.008635,0.562755,-1.330790,-0.883445,0.127653,1.056070 +0.007248,0.563636,-1.329380,-0.886509,0.129005,1.060790 +0.005861,0.564517,-1.327970,-0.889574,0.130357,1.065520 +0.004475,0.565398,-1.326560,-0.892638,0.131709,1.070250 +0.003088,0.566279,-1.325150,-0.895702,0.133061,1.074980 +0.001701,0.567160,-1.323740,-0.898767,0.134413,1.079710 +0.000314,0.568040,-1.322330,-0.901831,0.135765,1.084440 +-0.001072,0.568921,-1.320920,-0.904895,0.137117,1.089170 +-0.002459,0.569802,-1.319520,-0.907960,0.138469,1.093900 +-0.003846,0.570683,-1.318110,-0.911024,0.139821,1.098630 +-0.005233,0.571564,-1.316700,-0.914088,0.141173,1.103360 +-0.006619,0.572445,-1.315290,-0.917153,0.142525,1.108080 +-0.008006,0.573326,-1.313880,-0.920217,0.143877,1.112810 +-0.009393,0.574207,-1.312470,-0.923281,0.145229,1.117540 +-0.010779,0.575088,-1.311060,-0.926346,0.146581,1.122270 +-0.012166,0.575969,-1.309650,-0.929410,0.147933,1.127000 +-0.013553,0.576850,-1.308240,-0.932474,0.149286,1.131730 +-0.014940,0.577731,-1.306830,-0.935539,0.150638,1.136460 +-0.016326,0.578612,-1.305420,-0.938603,0.151990,1.141190 +-0.017713,0.579492,-1.304010,-0.941667,0.153342,1.145920 +-0.019100,0.580373,-1.302600,-0.944732,0.154694,1.150650 +-0.020487,0.581254,-1.301190,-0.947796,0.156046,1.155370 +-0.021873,0.582135,-1.299780,-0.950861,0.157398,1.160100 +-0.023260,0.583016,-1.298370,-0.953925,0.158750,1.164830 +-0.024647,0.583897,-1.296960,-0.956989,0.160102,1.169560 +-0.026033,0.584778,-1.295550,-0.960054,0.161454,1.174290 +-0.027420,0.585659,-1.294140,-0.963118,0.162806,1.179020 +-0.028807,0.586540,-1.292730,-0.966182,0.164158,1.183750 +-0.030194,0.587421,-1.291320,-0.969247,0.165510,1.188480 +-0.031580,0.588302,-1.289910,-0.972311,0.166862,1.193210 +-0.032967,0.589183,-1.288500,-0.975375,0.168214,1.197940 +-0.034354,0.590063,-1.287090,-0.978440,0.169566,1.202660 +-0.035740,0.590944,-1.285680,-0.981504,0.170918,1.207390 +-0.037127,0.591825,-1.284270,-0.984568,0.172270,1.212120 +-0.038514,0.592706,-1.282860,-0.987633,0.173622,1.216850 +-0.039901,0.593587,-1.281450,-0.990697,0.174974,1.221580 +-0.041287,0.594468,-1.280040,-0.993761,0.176326,1.226310 +-0.042674,0.595349,-1.278630,-0.996826,0.177678,1.231040 +-0.044061,0.596230,-1.277220,-0.999890,0.179030,1.235770 +-0.045448,0.597111,-1.275810,-1.002950,0.180382,1.240500 +-0.046834,0.597992,-1.274400,-1.006020,0.181734,1.245230 +-0.048221,0.598873,-1.272990,-1.009080,0.183086,1.249950 +-0.049608,0.599754,-1.271580,-1.012150,0.184438,1.254680 +-0.050994,0.600635,-1.270180,-1.015210,0.185790,1.259410 +-0.052381,0.601515,-1.268770,-1.018280,0.187142,1.264140 +-0.053768,0.602396,-1.267360,-1.021340,0.188494,1.268870 +-0.055155,0.603277,-1.265950,-1.024400,0.189846,1.273600 +-0.056541,0.604158,-1.264540,-1.027470,0.191198,1.278330 +-0.057928,0.605039,-1.263130,-1.030530,0.192550,1.283060 +-0.059315,0.605920,-1.261720,-1.033600,0.193902,1.287790 +-0.060701,0.606801,-1.260310,-1.036660,0.195254,1.292520 +-0.062088,0.607682,-1.258900,-1.039730,0.196607,1.297240 +-0.063475,0.608563,-1.257490,-1.042790,0.197959,1.301970 +-0.064862,0.609444,-1.256080,-1.045860,0.199311,1.306700 +-0.066248,0.610325,-1.254670,-1.048920,0.200663,1.311430 +-0.067635,0.611206,-1.253260,-1.051980,0.202015,1.316160 +-0.069022,0.612087,-1.251850,-1.055050,0.203367,1.320890 +-0.070408,0.612967,-1.250440,-1.058110,0.204719,1.325620 +-0.071795,0.613848,-1.249030,-1.061180,0.206071,1.330350 +-0.073182,0.614729,-1.247620,-1.064240,0.207423,1.335080 +-0.074569,0.615610,-1.246210,-1.067310,0.208775,1.339810 +-0.075955,0.616491,-1.244800,-1.070370,0.210127,1.344530 +-0.077342,0.617372,-1.243390,-1.073430,0.211479,1.349260 +-0.078729,0.618253,-1.241980,-1.076500,0.212831,1.353990 +-0.080116,0.619134,-1.240570,-1.079560,0.214183,1.358720 +-0.081502,0.620015,-1.239160,-1.082630,0.215535,1.363450 +-0.082889,0.620896,-1.237750,-1.085690,0.216887,1.368180 +-0.084276,0.621777,-1.236340,-1.088760,0.218239,1.372910 +-0.085662,0.622658,-1.234930,-1.091820,0.219591,1.377640 +-0.087049,0.623538,-1.233520,-1.094880,0.220943,1.382370 +-0.088436,0.624419,-1.232110,-1.097950,0.222295,1.387100 +-0.089823,0.625300,-1.230700,-1.101010,0.223647,1.391820 +-0.091209,0.626181,-1.229290,-1.104080,0.224999,1.396550 +-0.092596,0.627062,-1.227880,-1.107140,0.226351,1.401280 +-0.093983,0.627943,-1.226470,-1.110210,0.227703,1.406010 +-0.095369,0.628824,-1.225060,-1.113270,0.229055,1.410740 +-0.096756,0.629705,-1.223650,-1.116340,0.230407,1.415470 +-0.098143,0.630586,-1.222240,-1.119400,0.231759,1.420200 +-0.099530,0.631467,-1.220840,-1.122460,0.233111,1.424930 +-0.100916,0.632348,-1.219430,-1.125530,0.234463,1.429660 +-0.102303,0.633229,-1.218020,-1.128590,0.235815,1.434390 +-0.103690,0.634110,-1.216610,-1.131660,0.237167,1.439110 +-0.105077,0.634990,-1.215200,-1.134720,0.238519,1.443840 +-0.106463,0.635871,-1.213790,-1.137790,0.239871,1.448570 +-0.107850,0.636752,-1.212380,-1.140850,0.241223,1.453300 +-0.109237,0.637633,-1.210970,-1.143910,0.242575,1.458030 +-0.110623,0.638514,-1.209560,-1.146980,0.243927,1.462760 +-0.112010,0.639395,-1.208150,-1.150040,0.245280,1.467490 +-0.113397,0.640276,-1.206740,-1.153110,0.246632,1.472220 +-0.114784,0.641157,-1.205330,-1.156170,0.247984,1.476950 +-0.116170,0.642038,-1.203920,-1.159240,0.249336,1.481680 +-0.117557,0.642919,-1.202510,-1.162300,0.250688,1.486400 +-0.118944,0.643800,-1.201100,-1.165360,0.252040,1.491130 +-0.120330,0.644681,-1.199690,-1.168430,0.253392,1.495860 +-0.121717,0.645561,-1.198280,-1.171490,0.254744,1.500590 +-0.123104,0.646442,-1.196870,-1.174560,0.256096,1.505320 +-0.124491,0.647323,-1.195460,-1.177620,0.257448,1.510050 +-0.125877,0.648204,-1.194050,-1.180690,0.258800,1.514780 +-0.127264,0.649085,-1.192640,-1.183750,0.260152,1.519510 +-0.128651,0.649966,-1.191230,-1.186820,0.261504,1.524240 +-0.130038,0.650847,-1.189820,-1.189880,0.262856,1.528970 +-0.131424,0.651728,-1.188410,-1.192940,0.264208,1.533690 +-0.132811,0.652609,-1.187000,-1.196010,0.265560,1.538420 +-0.134198,0.653490,-1.185590,-1.199070,0.266912,1.543150 +-0.135584,0.654371,-1.184180,-1.202140,0.268264,1.547880 +-0.136971,0.655252,-1.182770,-1.205200,0.269616,1.552610 +-0.138358,0.656133,-1.181360,-1.208270,0.270968,1.557340 +-0.139745,0.657013,-1.179950,-1.211330,0.272320,1.562070 +-0.141131,0.657894,-1.178540,-1.214390,0.273672,1.566800 +-0.142518,0.658775,-1.177130,-1.217460,0.275024,1.571530 +-0.143905,0.659656,-1.175720,-1.220520,0.276376,1.576260 +-0.145291,0.660537,-1.174310,-1.223590,0.277728,1.580980 +-0.146678,0.661418,-1.172900,-1.226650,0.279080,1.585710 +-0.148065,0.662299,-1.171500,-1.229720,0.280432,1.590440 +-0.149452,0.663180,-1.170090,-1.232780,0.281784,1.595170 +-0.150838,0.664061,-1.168680,-1.235840,0.283136,1.599900 +-0.152225,0.664942,-1.167270,-1.238910,0.284488,1.604630 +-0.153612,0.665823,-1.165860,-1.241970,0.285840,1.609360 +-0.154999,0.666704,-1.164450,-1.245040,0.287192,1.614090 +-0.156385,0.667585,-1.163040,-1.248100,0.288544,1.618820 +-0.157772,0.668465,-1.161630,-1.251170,0.289896,1.623550 +-0.159159,0.669346,-1.160220,-1.254230,0.291248,1.628270 +-0.160545,0.670227,-1.158810,-1.257300,0.292601,1.633000 +-0.161932,0.671108,-1.157400,-1.260360,0.293953,1.637730 +-0.163319,0.671989,-1.155990,-1.263420,0.295305,1.642460 +-0.164706,0.672870,-1.154580,-1.266490,0.296657,1.647190 +-0.166092,0.673751,-1.153170,-1.269550,0.298009,1.651920 +-0.167479,0.674632,-1.151760,-1.272620,0.299361,1.656650 +-0.168866,0.675513,-1.150350,-1.275680,0.300713,1.661380 +-0.170252,0.676394,-1.148940,-1.278750,0.302065,1.666110 +-0.171639,0.677275,-1.147530,-1.281810,0.303417,1.670840 +-0.173026,0.678156,-1.146120,-1.284870,0.304769,1.675560 +-0.174413,0.679036,-1.144710,-1.287940,0.306121,1.680290 +-0.175799,0.679917,-1.143300,-1.291000,0.307473,1.685020 +-0.177186,0.680798,-1.141890,-1.294070,0.308825,1.689750 +-0.178573,0.681679,-1.140480,-1.297130,0.310177,1.694480 +-0.179960,0.682560,-1.139070,-1.300200,0.311529,1.699210 +-0.181346,0.683441,-1.137660,-1.303260,0.312881,1.703940 +-0.182733,0.684322,-1.136250,-1.306320,0.314233,1.708670 +-0.184120,0.685203,-1.134840,-1.309390,0.315585,1.713400 +-0.185506,0.686084,-1.133430,-1.312450,0.316937,1.718130 +-0.186893,0.686965,-1.132020,-1.315520,0.318289,1.722850 +-0.188280,0.687846,-1.130610,-1.318580,0.319641,1.727580 +-0.189667,0.688727,-1.129200,-1.321650,0.320993,1.732310 +-0.191053,0.689608,-1.127790,-1.324710,0.322345,1.737040 +-0.192440,0.690488,-1.126380,-1.327780,0.323697,1.741770 +-0.193827,0.691369,-1.124970,-1.330840,0.325049,1.746500 +-0.195213,0.692250,-1.123560,-1.333900,0.326401,1.751230 +-0.196600,0.693131,-1.122160,-1.336970,0.327753,1.755960 +-0.197987,0.694012,-1.120750,-1.340030,0.329105,1.760690 +-0.199374,0.694893,-1.119340,-1.343100,0.330457,1.765420 +-0.200760,0.695774,-1.117930,-1.346160,0.331809,1.770140 +-0.202147,0.696655,-1.116520,-1.349230,0.333161,1.774870 +-0.203534,0.697536,-1.115110,-1.352290,0.334513,1.779600 +-0.204921,0.698417,-1.113700,-1.355350,0.335865,1.784330 +-0.206307,0.699298,-1.112290,-1.358420,0.337217,1.789060 +-0.207694,0.700179,-1.110880,-1.361480,0.338569,1.793790 +-0.209081,0.701059,-1.109470,-1.364550,0.339922,1.798520 +-0.210467,0.701940,-1.108060,-1.367610,0.341274,1.803250 +-0.211854,0.702821,-1.106650,-1.370680,0.342626,1.807980 +-0.213241,0.703702,-1.105240,-1.373740,0.343978,1.812710 +-0.214628,0.704583,-1.103830,-1.376800,0.345330,1.817430 +-0.216014,0.705464,-1.102420,-1.379870,0.346682,1.822160 +-0.217401,0.706345,-1.101010,-1.382930,0.348034,1.826890 +-0.218788,0.707226,-1.099600,-1.386000,0.349386,1.831620 +-0.220174,0.708107,-1.098190,-1.389060,0.350738,1.836350 +-0.221561,0.708988,-1.096780,-1.392130,0.352090,1.841080 +-0.222948,0.709869,-1.095370,-1.395190,0.353442,1.845810 +-0.224335,0.710750,-1.093960,-1.398250,0.354794,1.850540 +-0.225721,0.711631,-1.092550,-1.401320,0.356146,1.855270 +-0.227108,0.712511,-1.091140,-1.404380,0.357498,1.860000 +-0.228495,0.713392,-1.089730,-1.407450,0.358850,1.864720 +-0.229882,0.714273,-1.088320,-1.410510,0.360202,1.869450 +-0.231268,0.715154,-1.086910,-1.413580,0.361554,1.874180 +-0.232655,0.716035,-1.085500,-1.416640,0.362906,1.878910 +-0.234042,0.716916,-1.084090,-1.419710,0.364258,1.883640 +-0.235428,0.717797,-1.082680,-1.422770,0.365610,1.888370 +-0.236815,0.718678,-1.081270,-1.425830,0.366962,1.893100 +-0.238202,0.719559,-1.079860,-1.428900,0.368314,1.897830 +-0.239589,0.720440,-1.078450,-1.431960,0.369666,1.902560 +-0.240975,0.721321,-1.077040,-1.435030,0.371018,1.907290 +-0.242362,0.722202,-1.075630,-1.438090,0.372370,1.912010 +-0.243749,0.723083,-1.074220,-1.441160,0.373722,1.916740 +-0.245135,0.723963,-1.072820,-1.444220,0.375074,1.921470 +-0.246522,0.724844,-1.071410,-1.447280,0.376426,1.926200 +-0.247909,0.725725,-1.070000,-1.450350,0.377778,1.930930 +-0.249296,0.726606,-1.068590,-1.453410,0.379130,1.935660 +-0.250682,0.727487,-1.067180,-1.456480,0.380482,1.940390 +-0.252069,0.728368,-1.065770,-1.459540,0.381834,1.945120 +-0.253456,0.729249,-1.064360,-1.462610,0.383186,1.949850 +-0.254843,0.730130,-1.062950,-1.465670,0.384538,1.954580 +-0.256229,0.731011,-1.061540,-1.468730,0.385890,1.959300 +-0.257616,0.731892,-1.060130,-1.471800,0.387243,1.964030 +-0.259003,0.732773,-1.058720,-1.474860,0.388595,1.968760 +-0.260389,0.733654,-1.057310,-1.477930,0.389947,1.973490 +-0.261776,0.734534,-1.055900,-1.480990,0.391299,1.978220 +-0.263163,0.735415,-1.054490,-1.484060,0.392651,1.982950 +-0.264550,0.736296,-1.053080,-1.487120,0.394003,1.987680 +-0.265936,0.737177,-1.051670,-1.490190,0.395355,1.992410 +-0.267323,0.738058,-1.050260,-1.493250,0.396707,1.997140 +-0.268710,0.738939,-1.048850,-1.496310,0.398059,2.001870 +-0.270096,0.739820,-1.047440,-1.499380,0.399411,2.006590 +-0.271483,0.740701,-1.046030,-1.502440,0.400763,2.011320 +-0.272870,0.741582,-1.044620,-1.505510,0.402115,2.016050 +-0.274257,0.742463,-1.043210,-1.508570,0.403467,2.020780 +-0.275643,0.743344,-1.041800,-1.511640,0.404819,2.025510 +-0.277030,0.744225,-1.040390,-1.514700,0.406171,2.030240 +-0.278417,0.745106,-1.038980,-1.517760,0.407523,2.034970 +-0.279804,0.745986,-1.037570,-1.520830,0.408875,2.039700 +-0.281190,0.746867,-1.036160,-1.523890,0.410227,2.044430 +-0.282577,0.747748,-1.034750,-1.526960,0.411579,2.049160 +-0.283964,0.748629,-1.033340,-1.530020,0.412931,2.053890 +-0.285350,0.749510,-1.031930,-1.533090,0.414283,2.058610 +-0.286737,0.750391,-1.030520,-1.536150,0.415635,2.063340 +-0.288124,0.751272,-1.029110,-1.539210,0.416987,2.068070 +-0.289511,0.752153,-1.027700,-1.542280,0.418339,2.072800 +-0.290897,0.753034,-1.026290,-1.545340,0.419691,2.077530 +-0.292284,0.753915,-1.024880,-1.548410,0.421043,2.082260 +-0.293671,0.754796,-1.023470,-1.551470,0.422395,2.086990 +-0.295057,0.755677,-1.022070,-1.554540,0.423747,2.091720 +-0.296444,0.756557,-1.020660,-1.557600,0.425099,2.096450 +-0.297831,0.757438,-1.019250,-1.560670,0.426451,2.101180 +-0.299218,0.758319,-1.017840,-1.563730,0.427803,2.105900 +-0.300604,0.759200,-1.016430,-1.566790,0.429155,2.110630 +-0.301991,0.760081,-1.015020,-1.569860,0.430507,2.115360 +-0.303378,0.760962,-1.013610,-1.572920,0.431859,2.120090 +-0.304765,0.761843,-1.012200,-1.575990,0.433211,2.124820 +-0.306151,0.762724,-1.010790,-1.579050,0.434564,2.129550 +-0.307538,0.763605,-1.009380,-1.582120,0.435916,2.134280 +-0.308925,0.764486,-1.007970,-1.585180,0.437268,2.139010 +-0.310311,0.765367,-1.006560,-1.588240,0.438620,2.143740 +-0.311698,0.766248,-1.005150,-1.591310,0.439972,2.148470 +-0.313085,0.767129,-1.003740,-1.594370,0.441324,2.153190 +-0.314472,0.768009,-1.002330,-1.597440,0.442676,2.157920 +-0.315858,0.768890,-1.000920,-1.600500,0.444028,2.162650 +-0.317245,0.769771,-0.999510,-1.603570,0.445380,2.167380 +-0.318632,0.770652,-0.998100,-1.606630,0.446732,2.172110 +-0.320018,0.771533,-0.996690,-1.609690,0.448084,2.176840 +-0.321405,0.772414,-0.995281,-1.612760,0.449436,2.181570 +-0.322792,0.773295,-0.993871,-1.615820,0.450788,2.186300 +-0.324179,0.774176,-0.992461,-1.618890,0.452140,2.191030 +-0.325565,0.775057,-0.991052,-1.621950,0.453492,2.195760 +-0.326952,0.775938,-0.989642,-1.625020,0.454844,2.200480 +-0.328339,0.776819,-0.988232,-1.628080,0.456196,2.205210 +-0.329726,0.777700,-0.986822,-1.631150,0.457548,2.209940 +-0.331112,0.778581,-0.985413,-1.634210,0.458900,2.214670 +-0.332499,0.779461,-0.984003,-1.637270,0.460252,2.219400 +-0.333886,0.780342,-0.982593,-1.640340,0.461604,2.224130 +-0.335272,0.781223,-0.981184,-1.643400,0.462956,2.228860 +-0.336659,0.782104,-0.979774,-1.646470,0.464308,2.233590 +-0.338046,0.782985,-0.978364,-1.649530,0.465660,2.238320 +-0.339433,0.783866,-0.976954,-1.652600,0.467012,2.243050 +-0.340819,0.784747,-0.975545,-1.655660,0.468364,2.247770 +-0.342206,0.785628,-0.974135,-1.658720,0.469716,2.252500 +-0.343593,0.786509,-0.972725,-1.661790,0.471068,2.257230 +-0.344979,0.787390,-0.971315,-1.664850,0.472420,2.261960 +-0.346366,0.788271,-0.969906,-1.667920,0.473772,2.266690 +-0.347753,0.789152,-0.968496,-1.670980,0.475124,2.271420 +-0.349140,0.790032,-0.967086,-1.674050,0.476476,2.276150 +-0.350526,0.790913,-0.965677,-1.677110,0.477828,2.280880 +-0.351913,0.791794,-0.964267,-1.680170,0.479180,2.285610 +-0.353300,0.792675,-0.962857,-1.683240,0.480532,2.290340 +-0.354687,0.793556,-0.961447,-1.686300,0.481885,2.295060 +-0.356073,0.794437,-0.960038,-1.689370,0.483237,2.299790 +-0.357460,0.795318,-0.958628,-1.692430,0.484589,2.304520 +-0.358847,0.796199,-0.957218,-1.695500,0.485941,2.309250 +-0.360233,0.797080,-0.955809,-1.698560,0.487293,2.313980 +-0.361620,0.797961,-0.954399,-1.701630,0.488645,2.318710 +-0.363007,0.798842,-0.952989,-1.704690,0.489997,2.323440 +-0.364394,0.799723,-0.951579,-1.707750,0.491349,2.328170 +-0.365780,0.800604,-0.950170,-1.710820,0.492701,2.332900 +-0.367167,0.801484,-0.948760,-1.713880,0.494053,2.337630 +-0.368554,0.802365,-0.947350,-1.716950,0.495405,2.342350 +-0.369940,0.803246,-0.945941,-1.720010,0.496757,2.347080 +-0.371327,0.804127,-0.944531,-1.723080,0.498109,2.351810 +-0.372714,0.805008,-0.943121,-1.726140,0.499461,2.356540 +-0.374101,0.805889,-0.941711,-1.729200,0.500813,2.361270 +-0.375487,0.806770,-0.940302,-1.732270,0.502165,2.366000 +-0.376874,0.807651,-0.938892,-1.735330,0.503517,2.370730 +-0.378261,0.808532,-0.937482,-1.738400,0.504869,2.375460 +-0.379648,0.809413,-0.936073,-1.741460,0.506221,2.380190 +-0.381034,0.810294,-0.934663,-1.744530,0.507573,2.384920 +-0.382421,0.811175,-0.933253,-1.747590,0.508925,2.389640 +-0.383808,0.812055,-0.931843,-1.750650,0.510277,2.394370 +-0.385194,0.812936,-0.930434,-1.753720,0.511629,2.399100 +-0.386581,0.813817,-0.929024,-1.756780,0.512981,2.403830 +-0.387968,0.814698,-0.927614,-1.759850,0.514333,2.408560 +-0.389355,0.815579,-0.926205,-1.762910,0.515685,2.413290 +-0.390741,0.816460,-0.924795,-1.765980,0.517037,2.418020 +-0.392128,0.817341,-0.923385,-1.769040,0.518389,2.422750 +-0.393515,0.818222,-0.921975,-1.772110,0.519741,2.427480 +-0.394901,0.819103,-0.920566,-1.775170,0.521093,2.432210 +-0.396288,0.819984,-0.919156,-1.778230,0.522445,2.436930 +-0.397675,0.820865,-0.917746,-1.781300,0.523797,2.441660 +-0.399062,0.821746,-0.916337,-1.784360,0.525149,2.446390 +-0.400448,0.822627,-0.914927,-1.787430,0.526501,2.451120 +-0.401835,0.823507,-0.913517,-1.790490,0.527853,2.455850 +-0.403222,0.824388,-0.912107,-1.793560,0.529205,2.460580 +-0.404609,0.825269,-0.910698,-1.796620,0.530558,2.465310 +-0.405995,0.826150,-0.909288,-1.799680,0.531910,2.470040 +-0.407382,0.827031,-0.907878,-1.802750,0.533262,2.474770 +-0.408769,0.827912,-0.906469,-1.805810,0.534614,2.479500 +-0.410155,0.828793,-0.905059,-1.808880,0.535966,2.484220 +-0.411542,0.829674,-0.903649,-1.811940,0.537318,2.488950 +-0.412929,0.830555,-0.902239,-1.815010,0.538670,2.493680 +-0.414316,0.831436,-0.900830,-1.818070,0.540022,2.498410 +-0.415702,0.832317,-0.899420,-1.821130,0.541374,2.503140 +-0.417089,0.833198,-0.898010,-1.824200,0.542726,2.507870 +-0.418476,0.834079,-0.896601,-1.827260,0.544078,2.512600 +-0.419862,0.834959,-0.895191,-1.830330,0.545430,2.517330 +-0.421249,0.835840,-0.893781,-1.833390,0.546782,2.522060 +-0.422636,0.836721,-0.892371,-1.836460,0.548134,2.526790 +-0.424023,0.837602,-0.890962,-1.839520,0.549486,2.531510 +-0.425409,0.838483,-0.889552,-1.842590,0.550838,2.536240 +-0.426796,0.839364,-0.888142,-1.845650,0.552190,2.540970 +-0.428183,0.840245,-0.886733,-1.848710,0.553542,2.545700 +-0.429570,0.841126,-0.885323,-1.851780,0.554894,2.550430 +-0.430956,0.842007,-0.883913,-1.854840,0.556246,2.555160 +-0.432343,0.842888,-0.882503,-1.857910,0.557598,2.559890 +-0.433730,0.843769,-0.881094,-1.860970,0.558950,2.564620 +-0.435116,0.844650,-0.879684,-1.864040,0.560302,2.569350 +-0.436503,0.845530,-0.878274,-1.867100,0.561654,2.574080 +-0.437890,0.846411,-0.876865,-1.870160,0.563006,2.578800 +-0.439277,0.847292,-0.875455,-1.873230,0.564358,2.583530 +-0.440663,0.848173,-0.874045,-1.876290,0.565710,2.588260 +-0.442050,0.849054,-0.872635,-1.879360,0.567062,2.592990 +-0.443437,0.849935,-0.871226,-1.882420,0.568414,2.597720 +-0.444823,0.850816,-0.869816,-1.885490,0.569766,2.602450 +-0.446210,0.851697,-0.868406,-1.888550,0.571118,2.607180 +-0.447597,0.852578,-0.866997,-1.891610,0.572470,2.611900 +-0.448984,0.853459,-0.865587,-1.894680,0.573822,2.616600 +-0.450370,0.854340,-0.864177,-1.897740,0.575174,2.621260 +-0.451757,0.855221,-0.862767,-1.900810,0.576526,2.625880 +-0.453144,0.856102,-0.861358,-1.903870,0.577879,2.630440 +-0.454531,0.856982,-0.859948,-1.906940,0.579231,2.634920 +-0.455917,0.857863,-0.858538,-1.910000,0.580583,2.639320 +-0.457304,0.858744,-0.857129,-1.913070,0.581935,2.643620 +-0.458691,0.859625,-0.855719,-1.916130,0.583287,2.647810 +-0.460077,0.860506,-0.854309,-1.919180,0.584639,2.651870 +-0.461464,0.861387,-0.852899,-1.922200,0.585991,2.655800 +-0.462851,0.862268,-0.851493,-1.925190,0.587343,2.659570 +-0.464238,0.863149,-0.850101,-1.928130,0.588695,2.663180 +-0.465624,0.864030,-0.848734,-1.931000,0.590047,2.666620 +-0.467011,0.864911,-0.847402,-1.933790,0.591399,2.669860 +-0.468398,0.865792,-0.846117,-1.936500,0.592751,2.672900 +-0.469784,0.866673,-0.844889,-1.939100,0.594103,2.675730 +-0.471171,0.867553,-0.843728,-1.941590,0.595455,2.678330 +-0.472556,0.868430,-0.842647,-1.943950,0.596807,2.680680 +-0.473932,0.869293,-0.841655,-1.946160,0.598159,2.682780 +-0.475286,0.870130,-0.840764,-1.948220,0.599511,2.684640 +-0.476608,0.870932,-0.839984,-1.950120,0.600863,2.686260 +-0.477888,0.871687,-0.839326,-1.951830,0.602206,2.687660 +-0.479115,0.872384,-0.838800,-1.953360,0.603528,2.688860 +-0.480277,0.873013,-0.838413,-1.954730,0.604817,2.689850 +-0.481365,0.873562,-0.838155,-1.955940,0.606059,2.690670 +-0.482366,0.874022,-0.838016,-1.957010,0.607241,2.691310 +-0.483272,0.874381,-0.837985,-1.957950,0.608350,2.691800 +-0.484081,0.874629,-0.838050,-1.958780,0.609373,2.692150 +-0.484805,0.874765,-0.838201,-1.959500,0.610298,2.692360 +-0.485455,0.874802,-0.838428,-1.960140,0.611112,2.692460 +-0.486040,0.874748,-0.838719,-1.960690,0.611821,2.692450 +-0.486573,0.874616,-0.839064,-1.961190,0.612438,2.692350 +-0.487063,0.874415,-0.839451,-1.961630,0.612974,2.692170 +-0.487522,0.874157,-0.839871,-1.962030,0.613444,2.691930 +-0.487960,0.873853,-0.840312,-1.962410,0.613860,2.691630 +-0.488388,0.873514,-0.840762,-1.962780,0.614235,2.691290 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record1.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record1.offt new file mode 100644 index 00000000..f2663405 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record1.offt @@ -0,0 +1,3275 @@ +0.726515,0.011537,-0.521695,-0.178207,-1.117230,0.627284 +0.726515,0.011537,-0.521695,-0.178207,-1.117230,0.627281 +0.726514,0.011536,-0.521694,-0.178209,-1.117230,0.627280 +0.726509,0.011531,-0.521689,-0.178214,-1.117220,0.627274 +0.726497,0.011519,-0.521677,-0.178229,-1.117210,0.627260 +0.726475,0.011497,-0.521655,-0.178255,-1.117180,0.627233 +0.726439,0.011461,-0.521619,-0.178299,-1.117140,0.627190 +0.726386,0.011408,-0.521566,-0.178362,-1.117080,0.627127 +0.726313,0.011336,-0.521493,-0.178449,-1.116990,0.627039 +0.726217,0.011245,-0.521397,-0.178565,-1.116870,0.626924 +0.726094,0.011139,-0.521274,-0.178712,-1.116720,0.626776 +0.725941,0.011021,-0.521121,-0.178895,-1.116540,0.626593 +0.725755,0.010894,-0.520935,-0.179118,-1.116320,0.626371 +0.725533,0.010762,-0.520713,-0.179384,-1.116050,0.626104 +0.725271,0.010628,-0.520451,-0.179698,-1.115740,0.625791 +0.724966,0.010494,-0.520146,-0.180063,-1.115370,0.625425 +0.724615,0.010360,-0.519795,-0.180483,-1.114950,0.625005 +0.724215,0.010225,-0.519395,-0.180963,-1.114470,0.624526 +0.723762,0.010091,-0.518942,-0.181505,-1.113930,0.623983 +0.723254,0.009957,-0.518434,-0.182112,-1.113320,0.623374 +0.722686,0.009822,-0.517866,-0.182782,-1.112640,0.622694 +0.722056,0.009688,-0.517236,-0.183509,-1.111890,0.621940 +0.721361,0.009554,-0.516541,-0.184290,-1.111050,0.621106 +0.720597,0.009419,-0.515777,-0.185122,-1.110140,0.620191 +0.719760,0.009285,-0.514946,-0.186000,-1.109140,0.619189 +0.718849,0.009151,-0.514052,-0.186921,-1.108050,0.618097 +0.717858,0.009017,-0.513097,-0.187880,-1.106860,0.616910 +0.716786,0.008882,-0.512084,-0.188874,-1.105570,0.615626 +0.715629,0.008748,-0.511018,-0.189899,-1.104190,0.614240 +0.714384,0.008614,-0.509901,-0.190950,-1.102700,0.612748 +0.713047,0.008479,-0.508736,-0.192025,-1.101100,0.611147 +0.711616,0.008345,-0.507527,-0.193119,-1.099380,0.609432 +0.710086,0.008211,-0.506277,-0.194228,-1.097550,0.607599 +0.708455,0.008076,-0.504989,-0.195349,-1.095600,0.605645 +0.706720,0.007942,-0.503667,-0.196477,-1.093540,0.603566 +0.704877,0.007808,-0.502313,-0.197608,-1.091380,0.601358 +0.702923,0.007674,-0.500932,-0.198740,-1.089110,0.599017 +0.700855,0.007539,-0.499525,-0.199872,-1.086750,0.596539 +0.698669,0.007405,-0.498097,-0.201005,-1.084290,0.593921 +0.696362,0.007271,-0.496651,-0.202137,-1.081730,0.591157 +0.693932,0.007136,-0.495189,-0.203269,-1.079090,0.588246 +0.691374,0.007002,-0.493716,-0.204401,-1.076370,0.585181 +0.688686,0.006868,-0.492234,-0.205533,-1.073570,0.581961 +0.685867,0.006733,-0.490747,-0.206665,-1.070690,0.578580 +0.682920,0.006599,-0.489257,-0.207797,-1.067740,0.575035 +0.679849,0.006465,-0.487768,-0.208930,-1.064720,0.571322 +0.676656,0.006331,-0.486278,-0.210062,-1.061630,0.567438 +0.673346,0.006196,-0.484788,-0.211194,-1.058490,0.563377 +0.669920,0.006062,-0.483299,-0.212326,-1.055290,0.559137 +0.666384,0.005928,-0.481809,-0.213458,-1.052040,0.554714 +0.662738,0.005793,-0.480320,-0.214590,-1.048740,0.550103 +0.658988,0.005659,-0.478830,-0.215722,-1.045390,0.545301 +0.655136,0.005525,-0.477341,-0.216855,-1.042010,0.540303 +0.651185,0.005390,-0.475851,-0.217987,-1.038580,0.535111 +0.647139,0.005256,-0.474362,-0.219119,-1.035130,0.529727 +0.643001,0.005122,-0.472872,-0.220251,-1.031640,0.524156 +0.638774,0.004988,-0.471382,-0.221383,-1.028130,0.518402 +0.634462,0.004853,-0.469893,-0.222515,-1.024600,0.512467 +0.630067,0.004719,-0.468403,-0.223647,-1.021050,0.506357 +0.625593,0.004585,-0.466914,-0.224779,-1.017490,0.500075 +0.621044,0.004450,-0.465424,-0.225912,-1.013920,0.493624 +0.616421,0.004316,-0.463935,-0.227044,-1.010340,0.487010 +0.611730,0.004182,-0.462445,-0.228176,-1.006760,0.480236 +0.606972,0.004047,-0.460956,-0.229308,-1.003180,0.473305 +0.602151,0.003913,-0.459466,-0.230440,-0.999598,0.466221 +0.597271,0.003779,-0.457976,-0.231572,-0.996017,0.458989 +0.592334,0.003645,-0.456487,-0.232704,-0.992437,0.451612 +0.587344,0.003510,-0.454997,-0.233837,-0.988857,0.444095 +0.582305,0.003376,-0.453508,-0.234969,-0.985276,0.436440 +0.577218,0.003242,-0.452018,-0.236101,-0.981696,0.428653 +0.572089,0.003107,-0.450529,-0.237233,-0.978116,0.420736 +0.566919,0.002973,-0.449039,-0.238365,-0.974535,0.412694 +0.561712,0.002839,-0.447550,-0.239497,-0.970955,0.404531 +0.556472,0.002704,-0.446060,-0.240629,-0.967375,0.396250 +0.551201,0.002570,-0.444570,-0.241762,-0.963794,0.387856 +0.545903,0.002436,-0.443081,-0.242894,-0.960214,0.379352 +0.540581,0.002302,-0.441591,-0.244026,-0.956634,0.370742 +0.535238,0.002167,-0.440102,-0.245158,-0.953053,0.362030 +0.529878,0.002033,-0.438612,-0.246290,-0.949473,0.353221 +0.524504,0.001899,-0.437123,-0.247422,-0.945893,0.344317 +0.519119,0.001764,-0.435633,-0.248554,-0.942312,0.335322 +0.513726,0.001630,-0.434144,-0.249686,-0.938732,0.326242 +0.508329,0.001496,-0.432654,-0.250819,-0.935152,0.317079 +0.502930,0.001362,-0.431165,-0.251951,-0.931571,0.307837 +0.497532,0.001227,-0.429675,-0.253083,-0.927991,0.298520 +0.492133,0.001093,-0.428185,-0.254215,-0.924411,0.289133 +0.486735,0.000959,-0.426696,-0.255347,-0.920830,0.279679 +0.481336,0.000824,-0.425206,-0.256479,-0.917250,0.270162 +0.475937,0.000690,-0.423717,-0.257611,-0.913670,0.260585 +0.470539,0.000556,-0.422227,-0.258744,-0.910089,0.250954 +0.465140,0.000421,-0.420738,-0.259876,-0.906509,0.241271 +0.459741,0.000287,-0.419248,-0.261008,-0.902929,0.231540 +0.454343,0.000153,-0.417759,-0.262140,-0.899348,0.221766 +0.448944,0.000019,-0.416269,-0.263272,-0.895768,0.211952 +0.443546,-0.000116,-0.414779,-0.264404,-0.892188,0.202102 +0.438147,-0.000250,-0.413290,-0.265536,-0.888607,0.192220 +0.432748,-0.000384,-0.411800,-0.266669,-0.885027,0.182311 +0.427350,-0.000519,-0.410311,-0.267801,-0.881447,0.172377 +0.421951,-0.000653,-0.408821,-0.268933,-0.877866,0.162423 +0.416552,-0.000787,-0.407332,-0.270065,-0.874286,0.152452 +0.411154,-0.000922,-0.405842,-0.271197,-0.870706,0.142469 +0.405755,-0.001056,-0.404353,-0.272329,-0.867126,0.132477 +0.400357,-0.001190,-0.402863,-0.273461,-0.863545,0.122481 +0.394958,-0.001324,-0.401373,-0.274593,-0.859965,0.112484 +0.389559,-0.001459,-0.399884,-0.275726,-0.856385,0.102489 +0.384161,-0.001593,-0.398394,-0.276858,-0.852804,0.092502 +0.378762,-0.001727,-0.396905,-0.277990,-0.849224,0.082526 +0.373363,-0.001862,-0.395415,-0.279122,-0.845644,0.072564 +0.367965,-0.001996,-0.393926,-0.280254,-0.842063,0.062621 +0.362566,-0.002130,-0.392436,-0.281386,-0.838483,0.052700 +0.357168,-0.002265,-0.390947,-0.282518,-0.834903,0.042806 +0.351769,-0.002399,-0.389457,-0.283651,-0.831322,0.032942 +0.346370,-0.002533,-0.387967,-0.284783,-0.827742,0.023112 +0.340972,-0.002667,-0.386478,-0.285915,-0.824162,0.013320 +0.335573,-0.002802,-0.384988,-0.287047,-0.820581,0.003570 +0.330174,-0.002936,-0.383499,-0.288179,-0.817001,-0.006134 +0.324776,-0.003070,-0.382009,-0.289311,-0.813421,-0.015788 +0.319377,-0.003205,-0.380520,-0.290443,-0.809840,-0.025389 +0.313978,-0.003339,-0.379030,-0.291576,-0.806260,-0.034932 +0.308580,-0.003473,-0.377541,-0.292708,-0.802680,-0.044414 +0.303181,-0.003608,-0.376051,-0.293840,-0.799099,-0.053831 +0.297783,-0.003742,-0.374561,-0.294972,-0.795519,-0.063178 +0.292384,-0.003876,-0.373072,-0.296104,-0.791939,-0.072453 +0.286985,-0.004010,-0.371582,-0.297236,-0.788358,-0.081650 +0.281587,-0.004145,-0.370093,-0.298368,-0.784778,-0.090767 +0.276188,-0.004279,-0.368603,-0.299500,-0.781198,-0.099799 +0.270789,-0.004413,-0.367114,-0.300633,-0.777617,-0.108742 +0.265391,-0.004548,-0.365624,-0.301765,-0.774037,-0.117593 +0.259992,-0.004682,-0.364135,-0.302897,-0.770457,-0.126348 +0.254594,-0.004816,-0.362645,-0.304029,-0.766876,-0.135002 +0.249195,-0.004951,-0.361155,-0.305161,-0.763296,-0.143553 +0.243796,-0.005085,-0.359666,-0.306293,-0.759716,-0.151995 +0.238398,-0.005219,-0.358176,-0.307425,-0.756135,-0.160325 +0.232999,-0.005353,-0.356687,-0.308558,-0.752555,-0.168540 +0.227600,-0.005488,-0.355197,-0.309690,-0.748975,-0.176634 +0.222202,-0.005622,-0.353708,-0.310822,-0.745394,-0.184606 +0.216803,-0.005756,-0.352218,-0.311954,-0.741814,-0.192449 +0.211405,-0.005891,-0.350729,-0.313086,-0.738234,-0.200162 +0.206006,-0.006025,-0.349239,-0.314218,-0.734653,-0.207739 +0.200607,-0.006159,-0.347750,-0.315350,-0.731073,-0.215177 +0.195209,-0.006294,-0.346260,-0.316483,-0.727493,-0.222472 +0.189810,-0.006428,-0.344770,-0.317615,-0.723912,-0.229620 +0.184411,-0.006562,-0.343281,-0.318747,-0.720332,-0.236617 +0.179013,-0.006696,-0.341791,-0.319879,-0.716752,-0.243460 +0.173614,-0.006831,-0.340302,-0.321011,-0.713171,-0.250144 +0.168215,-0.006965,-0.338812,-0.322143,-0.709591,-0.256665 +0.162817,-0.007099,-0.337323,-0.323275,-0.706011,-0.263021 +0.157418,-0.007234,-0.335833,-0.324407,-0.702431,-0.269206 +0.152020,-0.007368,-0.334344,-0.325540,-0.698850,-0.275217 +0.146621,-0.007502,-0.332854,-0.326672,-0.695270,-0.281049 +0.141222,-0.007637,-0.331364,-0.327804,-0.691690,-0.286700 +0.135824,-0.007771,-0.329875,-0.328936,-0.688109,-0.292165 +0.130425,-0.007905,-0.328385,-0.330068,-0.684529,-0.297441 +0.125026,-0.008039,-0.326896,-0.331200,-0.680949,-0.302523 +0.119628,-0.008174,-0.325406,-0.332332,-0.677368,-0.307407 +0.114229,-0.008308,-0.323917,-0.333465,-0.673788,-0.312090 +0.108831,-0.008442,-0.322427,-0.334597,-0.670208,-0.316568 +0.103432,-0.008577,-0.320938,-0.335729,-0.666627,-0.320837 +0.098033,-0.008711,-0.319448,-0.336861,-0.663047,-0.324893 +0.092635,-0.008845,-0.317958,-0.337993,-0.659467,-0.328732 +0.087236,-0.008979,-0.316469,-0.339122,-0.655886,-0.332350 +0.081837,-0.009114,-0.314979,-0.340245,-0.652306,-0.335743 +0.076439,-0.009248,-0.313490,-0.341356,-0.648726,-0.338908 +0.071040,-0.009382,-0.312000,-0.342454,-0.645145,-0.341840 +0.065642,-0.009517,-0.310511,-0.343533,-0.641565,-0.344536 +0.060243,-0.009651,-0.309021,-0.344590,-0.637985,-0.346992 +0.054844,-0.009785,-0.307532,-0.345621,-0.634404,-0.349204 +0.049446,-0.009920,-0.306042,-0.346622,-0.630824,-0.351168 +0.044047,-0.010054,-0.304552,-0.347589,-0.627244,-0.352880 +0.038648,-0.010188,-0.303063,-0.348519,-0.623663,-0.354336 +0.033250,-0.010323,-0.301573,-0.349407,-0.620083,-0.355533 +0.027851,-0.010457,-0.300084,-0.350249,-0.616503,-0.356471 +0.022453,-0.010591,-0.298594,-0.351042,-0.612922,-0.357150 +0.017054,-0.010725,-0.297105,-0.351781,-0.609342,-0.357571 +0.011655,-0.010860,-0.295615,-0.352464,-0.605762,-0.357737 +0.006257,-0.010994,-0.294126,-0.353085,-0.602181,-0.357652 +0.000858,-0.011128,-0.292636,-0.353641,-0.598601,-0.357321 +-0.004541,-0.011263,-0.291146,-0.354129,-0.595021,-0.356746 +-0.009939,-0.011397,-0.289657,-0.354543,-0.591440,-0.355933 +-0.015338,-0.011531,-0.288167,-0.354881,-0.587860,-0.354884 +-0.020737,-0.011666,-0.286678,-0.355139,-0.584280,-0.353604 +-0.026135,-0.011800,-0.285188,-0.355312,-0.580699,-0.352097 +-0.031534,-0.011934,-0.283699,-0.355397,-0.577119,-0.350366 +-0.036932,-0.012068,-0.282209,-0.355390,-0.573539,-0.348416 +-0.042331,-0.012203,-0.280720,-0.355286,-0.569958,-0.346249 +-0.047730,-0.012337,-0.279230,-0.355083,-0.566378,-0.343871 +-0.053128,-0.012471,-0.277741,-0.354776,-0.562798,-0.341285 +-0.058527,-0.012606,-0.276251,-0.354361,-0.559217,-0.338495 +-0.063925,-0.012740,-0.274761,-0.353834,-0.555637,-0.335505 +-0.069319,-0.012874,-0.273272,-0.353192,-0.552057,-0.332318 +-0.074706,-0.013008,-0.271782,-0.352431,-0.548476,-0.328939 +-0.080082,-0.013143,-0.270293,-0.351546,-0.544896,-0.325372 +-0.085445,-0.013277,-0.268803,-0.350534,-0.541316,-0.321619 +-0.090792,-0.013411,-0.267314,-0.349391,-0.537735,-0.317686 +-0.096118,-0.013546,-0.265824,-0.348114,-0.534155,-0.313577 +-0.101421,-0.013680,-0.264335,-0.346697,-0.530575,-0.309294 +-0.106698,-0.013814,-0.262845,-0.345137,-0.526995,-0.304842 +-0.111945,-0.013949,-0.261355,-0.343431,-0.523414,-0.300225 +-0.117158,-0.014083,-0.259866,-0.341575,-0.519834,-0.295447 +-0.122336,-0.014217,-0.258376,-0.339564,-0.516254,-0.290511 +-0.127474,-0.014351,-0.256887,-0.337394,-0.512673,-0.285422 +-0.132569,-0.014486,-0.255397,-0.335063,-0.509093,-0.280183 +-0.137619,-0.014620,-0.253908,-0.332566,-0.505513,-0.274798 +-0.142619,-0.014754,-0.252418,-0.329899,-0.501932,-0.269271 +-0.147567,-0.014889,-0.250929,-0.327066,-0.498352,-0.263607 +-0.152458,-0.015023,-0.249439,-0.324069,-0.494770,-0.257808 +-0.157291,-0.015157,-0.247949,-0.320913,-0.491182,-0.251879 +-0.162062,-0.015292,-0.246460,-0.317601,-0.487585,-0.245824 +-0.166768,-0.015426,-0.244970,-0.314139,-0.483975,-0.239647 +-0.171404,-0.015560,-0.243481,-0.310528,-0.480348,-0.233351 +-0.175969,-0.015694,-0.241991,-0.306774,-0.476700,-0.226940 +-0.180458,-0.015829,-0.240498,-0.302880,-0.473027,-0.220418 +-0.184869,-0.015963,-0.238998,-0.298850,-0.469325,-0.213790 +-0.189199,-0.016097,-0.237490,-0.294688,-0.465590,-0.207059 +-0.193443,-0.016232,-0.235968,-0.290398,-0.461819,-0.200228 +-0.197599,-0.016366,-0.234431,-0.285983,-0.458007,-0.193302 +-0.201664,-0.016500,-0.232874,-0.281448,-0.454151,-0.186285 +-0.205634,-0.016635,-0.231294,-0.276797,-0.450247,-0.179181 +-0.209507,-0.016769,-0.229689,-0.272033,-0.446291,-0.171993 +-0.213278,-0.016903,-0.228055,-0.267160,-0.442279,-0.164725 +-0.216944,-0.017037,-0.226389,-0.262183,-0.438206,-0.157382 +-0.220504,-0.017170,-0.224687,-0.257104,-0.434070,-0.149967 +-0.223952,-0.017298,-0.222947,-0.251929,-0.429867,-0.142483 +-0.227286,-0.017417,-0.221164,-0.246660,-0.425592,-0.134936 +-0.230502,-0.017526,-0.219337,-0.241302,-0.421241,-0.127328 +-0.233598,-0.017619,-0.217461,-0.235859,-0.416811,-0.119664 +-0.236571,-0.017695,-0.215533,-0.230334,-0.412298,-0.111948 +-0.239416,-0.017750,-0.213550,-0.224731,-0.407697,-0.104183 +-0.242130,-0.017781,-0.211509,-0.219055,-0.403007,-0.096374 +-0.244711,-0.017784,-0.209407,-0.213309,-0.398227,-0.088523 +-0.247156,-0.017756,-0.207240,-0.207497,-0.393362,-0.080636 +-0.249460,-0.017694,-0.205005,-0.201623,-0.388416,-0.072716 +-0.251620,-0.017595,-0.202699,-0.195691,-0.383393,-0.064767 +-0.253635,-0.017455,-0.200319,-0.189704,-0.378296,-0.056792 +-0.255499,-0.017272,-0.197868,-0.183667,-0.373130,-0.048796 +-0.257210,-0.017042,-0.195348,-0.177583,-0.367898,-0.040783 +-0.258765,-0.016761,-0.192763,-0.171457,-0.362605,-0.032756 +-0.260161,-0.016427,-0.190117,-0.165292,-0.357253,-0.024719 +-0.261393,-0.016036,-0.187411,-0.159093,-0.351848,-0.016677 +-0.262460,-0.015585,-0.184651,-0.152862,-0.346392,-0.008633 +-0.263357,-0.015071,-0.181838,-0.146604,-0.340890,-0.000590 +-0.264081,-0.014490,-0.178977,-0.140323,-0.335346,0.007446 +-0.264630,-0.013839,-0.176070,-0.134023,-0.329764,0.015473 +-0.265000,-0.013116,-0.173120,-0.127708,-0.324146,0.023486 +-0.265192,-0.012316,-0.170131,-0.121380,-0.318499,0.031481 +-0.265210,-0.011437,-0.167107,-0.115046,-0.312824,0.039455 +-0.265055,-0.010475,-0.164050,-0.108707,-0.307127,0.047404 +-0.264733,-0.009427,-0.160963,-0.102369,-0.301410,0.055323 +-0.264245,-0.008290,-0.157850,-0.096034,-0.295679,0.063209 +-0.263596,-0.007060,-0.154715,-0.089708,-0.289936,0.071059 +-0.262788,-0.005735,-0.151559,-0.083393,-0.284186,0.078867 +-0.261825,-0.004311,-0.148388,-0.077094,-0.278433,0.086631 +-0.260709,-0.002784,-0.145203,-0.070815,-0.272680,0.094346 +-0.259445,-0.001153,-0.142008,-0.064559,-0.266931,0.102008 +-0.258036,0.000588,-0.138807,-0.058331,-0.261191,0.109615 +-0.256483,0.002440,-0.135602,-0.052133,-0.255462,0.117160 +-0.254792,0.004408,-0.132397,-0.045971,-0.249750,0.124642 +-0.252965,0.006494,-0.129195,-0.039848,-0.244058,0.132055 +-0.251006,0.008702,-0.125999,-0.033768,-0.238389,0.139397 +-0.248917,0.011034,-0.122813,-0.027734,-0.232748,0.146662 +-0.246702,0.013491,-0.119640,-0.021752,-0.227139,0.153848 +-0.244364,0.016068,-0.116482,-0.015824,-0.221565,0.160951 +-0.241907,0.018763,-0.113344,-0.009954,-0.216030,0.167965 +-0.239333,0.021572,-0.110229,-0.004147,-0.210538,0.174889 +-0.236646,0.024492,-0.107139,0.001594,-0.205094,0.181717 +-0.233849,0.027520,-0.104078,0.007265,-0.199701,0.188445 +-0.230945,0.030653,-0.101050,0.012862,-0.194362,0.195071 +-0.227938,0.033887,-0.098057,0.018381,-0.189083,0.201590 +-0.224831,0.037219,-0.095103,0.023819,-0.183866,0.207998 +-0.221628,0.040646,-0.092191,0.029170,-0.178715,0.214291 +-0.218330,0.044165,-0.089324,0.034432,-0.173635,0.220465 +-0.214942,0.047772,-0.086506,0.039601,-0.168630,0.226517 +-0.211467,0.051464,-0.083739,0.044672,-0.163702,0.232443 +-0.207908,0.055238,-0.081027,0.049642,-0.158857,0.238238 +-0.204268,0.059091,-0.078374,0.054507,-0.154097,0.243899 +-0.200551,0.063019,-0.075782,0.059262,-0.149428,0.249422 +-0.196760,0.067019,-0.073255,0.063905,-0.144852,0.254803 +-0.192898,0.071088,-0.070795,0.068432,-0.140374,0.260038 +-0.188968,0.075223,-0.068407,0.072837,-0.135997,0.265123 +-0.184973,0.079420,-0.066094,0.077118,-0.131726,0.270055 +-0.180918,0.083676,-0.063858,0.081270,-0.127564,0.274829 +-0.176804,0.087988,-0.061703,0.085290,-0.123516,0.279442 +-0.172636,0.092353,-0.059632,0.089174,-0.119584,0.283890 +-0.168417,0.096768,-0.057649,0.092918,-0.115774,0.288168 +-0.164149,0.101228,-0.055757,0.096518,-0.112088,0.292273 +-0.159836,0.105732,-0.053958,0.099970,-0.108531,0.296202 +-0.155481,0.110275,-0.052256,0.103270,-0.105107,0.299949 +-0.151088,0.114854,-0.050655,0.106414,-0.101819,0.303512 +-0.146660,0.119467,-0.049158,0.109399,-0.098672,0.306886 +-0.142198,0.122846,-0.047766,0.112222,-0.094544,0.310069 +-0.137704,0.126059,-0.046483,0.114876,-0.090395,0.313054 +-0.133178,0.129102,-0.045308,0.117356,-0.086231,0.315836 +-0.128621,0.131970,-0.044243,0.119660,-0.082058,0.318411 +-0.124034,0.134662,-0.043286,0.121782,-0.077881,0.320776 +-0.119416,0.137173,-0.042439,0.123718,-0.073708,0.322927 +-0.114769,0.139501,-0.041701,0.125467,-0.069543,0.324861 +-0.110092,0.141645,-0.041071,0.127024,-0.065393,0.326577 +-0.105387,0.143602,-0.040548,0.128387,-0.061264,0.328071 +-0.100654,0.145371,-0.040131,0.129555,-0.057163,0.329343 +-0.095892,0.146951,-0.039819,0.130525,-0.053094,0.330391 +-0.091104,0.148340,-0.039610,0.131295,-0.049066,0.331216 +-0.086290,0.149540,-0.039502,0.131866,-0.045083,0.331817 +-0.081450,0.150548,-0.039493,0.132235,-0.041151,0.332195 +-0.076585,0.151367,-0.039581,0.132403,-0.037277,0.332351 +-0.071695,0.151996,-0.039763,0.132370,-0.033467,0.332286 +-0.066783,0.152436,-0.040037,0.132136,-0.029727,0.332003 +-0.061848,0.152688,-0.040399,0.131703,-0.026062,0.331502 +-0.056891,0.152754,-0.040847,0.131071,-0.022478,0.330787 +-0.051913,0.152636,-0.041377,0.130241,-0.018980,0.329862 +-0.046915,0.152336,-0.041987,0.129217,-0.015575,0.328729 +-0.041899,0.151856,-0.042672,0.127999,-0.012268,0.327392 +-0.036864,0.151200,-0.043430,0.126591,-0.009063,0.325856 +-0.031812,0.150369,-0.044256,0.124996,-0.005967,0.324124 +-0.026744,0.149368,-0.045147,0.123216,-0.002983,0.322203 +-0.021662,0.148199,-0.046099,0.121256,-0.000118,0.320096 +-0.016565,0.146868,-0.047108,0.119119,0.002626,0.317809 +-0.011456,0.145377,-0.048170,0.116809,0.005242,0.315349 +-0.006335,0.143731,-0.049282,0.114331,0.007728,0.312720 +-0.001203,0.141934,-0.050440,0.111689,0.010079,0.309929 +0.003938,0.139992,-0.051639,0.108888,0.012290,0.306982 +0.009087,0.137908,-0.052875,0.105934,0.014360,0.303885 +0.014243,0.135689,-0.054146,0.102832,0.016283,0.300646 +0.019404,0.133339,-0.055446,0.099588,0.018058,0.297270 +0.024571,0.130863,-0.056772,0.096206,0.019680,0.293765 +0.029740,0.128267,-0.058121,0.092694,0.021149,0.290138 +0.034912,0.125557,-0.059489,0.089057,0.022460,0.286394 +0.040084,0.122739,-0.060871,0.085302,0.023612,0.282543 +0.045255,0.119818,-0.062266,0.081435,0.024604,0.278589 +0.050425,0.116800,-0.063669,0.077462,0.025433,0.274541 +0.055592,0.113691,-0.065077,0.073389,0.026099,0.270406 +0.060754,0.110498,-0.066487,0.069225,0.026599,0.266189 +0.065910,0.107227,-0.067896,0.064975,0.026934,0.261898 +0.071059,0.103884,-0.069302,0.060645,0.027103,0.257540 +0.076199,0.100474,-0.070701,0.056244,0.027106,0.253121 +0.081330,0.097005,-0.072092,0.051777,0.026942,0.248648 +0.086449,0.093483,-0.073471,0.047251,0.026613,0.244127 +0.091556,0.089914,-0.074838,0.042673,0.026118,0.239564 +0.096649,0.086304,-0.076189,0.038050,0.025459,0.234965 +0.101726,0.082659,-0.077523,0.033388,0.024637,0.230335 +0.106787,0.078986,-0.078839,0.028694,0.023652,0.225681 +0.111829,0.075291,-0.080135,0.023973,0.022508,0.221007 +0.116852,0.071579,-0.081410,0.019234,0.021206,0.216318 +0.121855,0.067857,-0.082663,0.014480,0.019748,0.211619 +0.126835,0.064132,-0.083894,0.009720,0.018136,0.206915 +0.131791,0.060407,-0.085101,0.004958,0.016374,0.202210 +0.136722,0.056691,-0.086284,0.000200,0.014465,0.197507 +0.141627,0.052987,-0.087443,-0.004547,0.012411,0.192811 +0.146504,0.049302,-0.088578,-0.009280,0.010216,0.188123 +0.151352,0.045641,-0.089689,-0.013992,0.007884,0.183448 +0.156169,0.042009,-0.090777,-0.018679,0.005418,0.178788 +0.160955,0.038412,-0.091842,-0.023335,0.002824,0.174145 +0.165706,0.034855,-0.092885,-0.027958,0.000104,0.169521 +0.170423,0.031341,-0.093906,-0.032541,-0.002735,0.164918 +0.175104,0.027877,-0.094907,-0.037081,-0.005691,0.160336 +0.179747,0.024467,-0.095889,-0.041575,-0.008757,0.155778 +0.184350,0.021115,-0.096854,-0.046018,-0.011929,0.151243 +0.188913,0.017825,-0.097801,-0.050408,-0.015201,0.146732 +0.193435,0.014602,-0.098735,-0.054742,-0.018569,0.142245 +0.197912,0.011450,-0.099655,-0.059016,-0.022027,0.137782 +0.202345,0.008372,-0.100564,-0.063229,-0.025568,0.133341 +0.206731,0.005371,-0.101463,-0.067378,-0.029189,0.128923 +0.211069,0.002452,-0.102355,-0.071461,-0.032882,0.124525 +0.215358,-0.000383,-0.103242,-0.075477,-0.036643,0.120147 +0.219596,-0.003130,-0.104126,-0.079423,-0.040464,0.115786 +0.223781,-0.005787,-0.105009,-0.083300,-0.044341,0.111441 +0.227913,-0.008350,-0.105894,-0.087106,-0.048267,0.107110 +0.231989,-0.010818,-0.106781,-0.090841,-0.052236,0.102789 +0.236008,-0.013188,-0.107675,-0.094503,-0.056242,0.098477 +0.239968,-0.015457,-0.108576,-0.098094,-0.060280,0.094171 +0.243868,-0.017624,-0.109488,-0.101613,-0.064343,0.089867 +0.247707,-0.019687,-0.110412,-0.105061,-0.068424,0.085562 +0.251482,-0.021644,-0.111351,-0.108438,-0.072519,0.081253 +0.255191,-0.023494,-0.112306,-0.111744,-0.076621,0.076937 +0.258835,-0.025234,-0.113280,-0.114982,-0.080724,0.072611 +0.262409,-0.026865,-0.114275,-0.118153,-0.084823,0.068269 +0.265914,-0.028384,-0.115292,-0.121257,-0.088912,0.063910 +0.269347,-0.029792,-0.116334,-0.124296,-0.092984,0.059529 +0.272706,-0.031086,-0.117401,-0.127273,-0.097036,0.055122 +0.275991,-0.032267,-0.118496,-0.130188,-0.101060,0.050686 +0.279198,-0.033334,-0.119620,-0.133045,-0.105053,0.046218 +0.282327,-0.034287,-0.120774,-0.135845,-0.109008,0.041712 +0.285375,-0.035125,-0.121959,-0.138590,-0.112921,0.037167 +0.288341,-0.035848,-0.123177,-0.141284,-0.116787,0.032577 +0.291223,-0.036457,-0.124427,-0.143929,-0.120601,0.027941 +0.294019,-0.036950,-0.125710,-0.146526,-0.124359,0.023255 +0.296727,-0.037330,-0.127027,-0.149080,-0.128056,0.018514 +0.299346,-0.037595,-0.128378,-0.151592,-0.131689,0.013718 +0.301873,-0.037746,-0.129763,-0.154066,-0.135252,0.008862 +0.304308,-0.037784,-0.131182,-0.156503,-0.138744,0.003945 +0.306647,-0.037709,-0.132633,-0.158908,-0.142159,-0.001037 +0.308889,-0.037523,-0.134117,-0.161283,-0.145495,-0.006085 +0.311033,-0.037225,-0.135632,-0.163630,-0.148748,-0.011202 +0.313076,-0.036816,-0.137177,-0.165953,-0.151917,-0.016388 +0.315016,-0.036298,-0.138752,-0.168254,-0.154997,-0.021645 +0.316853,-0.035672,-0.140353,-0.170535,-0.157986,-0.026975 +0.318583,-0.034937,-0.141980,-0.172800,-0.160883,-0.032377 +0.320204,-0.034096,-0.143630,-0.175050,-0.163685,-0.037853 +0.321716,-0.033150,-0.145300,-0.177289,-0.166391,-0.043403 +0.323117,-0.032099,-0.146989,-0.179518,-0.168999,-0.049025 +0.324404,-0.030945,-0.148694,-0.181740,-0.171508,-0.054721 +0.325576,-0.029690,-0.150410,-0.183957,-0.173916,-0.060488 +0.326630,-0.028333,-0.152137,-0.186170,-0.176223,-0.066325 +0.327566,-0.026878,-0.153868,-0.188381,-0.178429,-0.072231 +0.328382,-0.025324,-0.155602,-0.190593,-0.180533,-0.078203 +0.329076,-0.023674,-0.157334,-0.192806,-0.182535,-0.084240 +0.329645,-0.021929,-0.159061,-0.195021,-0.184435,-0.090338 +0.330090,-0.020090,-0.160777,-0.197241,-0.186233,-0.096494 +0.330408,-0.018159,-0.162479,-0.199465,-0.187930,-0.102705 +0.330598,-0.016137,-0.164161,-0.201694,-0.189526,-0.108967 +0.330658,-0.014026,-0.165820,-0.203929,-0.191024,-0.115275 +0.330587,-0.011827,-0.167450,-0.206170,-0.192423,-0.121624 +0.330383,-0.009542,-0.169047,-0.208417,-0.193725,-0.128010 +0.330046,-0.007172,-0.170604,-0.210670,-0.194931,-0.134428 +0.329574,-0.004718,-0.172118,-0.212929,-0.196045,-0.140871 +0.328966,-0.002184,-0.173583,-0.215193,-0.197066,-0.147334 +0.328222,0.000431,-0.174992,-0.217462,-0.197998,-0.153809 +0.327339,0.003125,-0.176342,-0.219734,-0.198842,-0.160292 +0.326318,0.005895,-0.177626,-0.222008,-0.199601,-0.166773 +0.325157,0.008740,-0.178839,-0.224283,-0.200277,-0.173247 +0.323856,0.011658,-0.179976,-0.226557,-0.200873,-0.179706 +0.322414,0.014649,-0.181030,-0.228828,-0.201392,-0.186142 +0.320831,0.017709,-0.181997,-0.231094,-0.201837,-0.192547 +0.319106,0.020838,-0.182870,-0.233354,-0.202210,-0.198912 +0.317239,0.024034,-0.183646,-0.235604,-0.202514,-0.205230 +0.315230,0.027294,-0.184317,-0.237843,-0.202753,-0.211491 +0.313079,0.030617,-0.184880,-0.240067,-0.202929,-0.217688 +0.310786,0.034002,-0.185329,-0.242273,-0.203047,-0.223811 +0.308352,0.037446,-0.185658,-0.244459,-0.203108,-0.229851 +0.305775,0.040948,-0.185864,-0.246620,-0.203118,-0.235800 +0.303058,0.044505,-0.185942,-0.248755,-0.203077,-0.241647 +0.300200,0.048115,-0.185886,-0.250859,-0.202991,-0.247385 +0.297203,0.051778,-0.185693,-0.252928,-0.202863,-0.253003 +0.294067,0.055490,-0.185359,-0.254959,-0.202695,-0.258493 +0.290792,0.059249,-0.184879,-0.256949,-0.202491,-0.263846 +0.287382,0.063054,-0.184251,-0.258892,-0.202255,-0.269052 +0.283835,0.066902,-0.183471,-0.260786,-0.201989,-0.274104 +0.280155,0.070791,-0.182535,-0.262627,-0.201697,-0.278991 +0.276342,0.074719,-0.181441,-0.264409,-0.201381,-0.283705 +0.272398,0.078683,-0.180187,-0.266130,-0.201046,-0.288238 +0.268326,0.082681,-0.178770,-0.267785,-0.200693,-0.292582 +0.264126,0.086711,-0.177189,-0.269369,-0.200326,-0.296727 +0.259802,0.090770,-0.175441,-0.270880,-0.199948,-0.300668 +0.255356,0.094856,-0.173527,-0.272313,-0.199560,-0.304395 +0.250789,0.098965,-0.171444,-0.273664,-0.199167,-0.307902 +0.246106,0.103096,-0.169193,-0.274928,-0.198769,-0.311181 +0.241307,0.107246,-0.166773,-0.276103,-0.198370,-0.314226 +0.236397,0.111412,-0.164186,-0.277185,-0.197972,-0.317031 +0.231379,0.115591,-0.161430,-0.278169,-0.197576,-0.319590 +0.226255,0.119780,-0.158509,-0.279053,-0.197185,-0.321897 +0.221029,0.123976,-0.155422,-0.279832,-0.196800,-0.323947 +0.215704,0.128176,-0.152173,-0.280504,-0.196423,-0.325736 +0.210284,0.132378,-0.148762,-0.281066,-0.196055,-0.327259 +0.204773,0.136578,-0.145194,-0.281515,-0.195698,-0.328513 +0.199174,0.140773,-0.141471,-0.281847,-0.195353,-0.329493 +0.193493,0.144959,-0.137596,-0.282062,-0.195019,-0.330199 +0.187731,0.149134,-0.133574,-0.282155,-0.194699,-0.330626 +0.181895,0.153294,-0.129409,-0.282125,-0.194393,-0.330774 +0.175988,0.157436,-0.125105,-0.281971,-0.194101,-0.330641 +0.170015,0.161556,-0.120668,-0.281691,-0.193823,-0.330227 +0.163980,0.165651,-0.116103,-0.281283,-0.193560,-0.329532 +0.157888,0.169717,-0.111415,-0.280747,-0.193311,-0.328556 +0.151744,0.173751,-0.106612,-0.280080,-0.193075,-0.327299 +0.145552,0.177750,-0.101699,-0.279284,-0.192853,-0.325764 +0.139318,0.181709,-0.096684,-0.278358,-0.192644,-0.323953 +0.133047,0.185626,-0.091573,-0.277302,-0.192446,-0.321868 +0.126743,0.189496,-0.086375,-0.276116,-0.192259,-0.319512 +0.120412,0.193316,-0.081097,-0.274800,-0.192082,-0.316890 +0.114058,0.197082,-0.075747,-0.273357,-0.191913,-0.314005 +0.107688,0.200791,-0.070333,-0.271786,-0.191751,-0.310863 +0.101307,0.204439,-0.064865,-0.270090,-0.191594,-0.307469 +0.094919,0.208022,-0.059351,-0.268271,-0.191440,-0.303829 +0.088530,0.211538,-0.053801,-0.266330,-0.191287,-0.299949 +0.082146,0.214982,-0.048223,-0.264270,-0.191134,-0.295837 +0.075772,0.218350,-0.042627,-0.262095,-0.190978,-0.291499 +0.069412,0.221640,-0.037023,-0.259806,-0.190816,-0.286945 +0.063074,0.224848,-0.031421,-0.257408,-0.190647,-0.282181 +0.056761,0.227970,-0.025831,-0.254904,-0.190468,-0.277218 +0.050480,0.231004,-0.020262,-0.252298,-0.190276,-0.272064 +0.044235,0.233945,-0.014725,-0.249595,-0.190068,-0.266729 +0.038032,0.236791,-0.009230,-0.246798,-0.189842,-0.261223 +0.031876,0.239539,-0.003787,-0.243913,-0.189594,-0.255556 +0.025772,0.242186,0.001594,-0.240945,-0.189323,-0.249740 +0.019726,0.244728,0.006901,-0.237899,-0.189024,-0.243786 +0.013742,0.247163,0.012126,-0.234781,-0.188695,-0.237704 +0.007825,0.249488,0.017258,-0.231596,-0.188333,-0.231507 +0.001980,0.251701,0.022287,-0.228351,-0.187935,-0.225206 +-0.003788,0.253798,0.027203,-0.225051,-0.187498,-0.218813 +-0.009475,0.255779,0.031996,-0.221703,-0.187018,-0.212341 +-0.015075,0.257640,0.036657,-0.218313,-0.186492,-0.205803 +-0.020585,0.259380,0.041177,-0.214889,-0.185918,-0.199210 +-0.026001,0.260996,0.045545,-0.211436,-0.185292,-0.192575 +-0.031318,0.262488,0.049753,-0.207963,-0.184612,-0.185912 +-0.036532,0.263852,0.053792,-0.204475,-0.183874,-0.179232 +-0.041639,0.265089,0.057654,-0.200981,-0.183075,-0.172548 +-0.046636,0.266196,0.061331,-0.197487,-0.182214,-0.165874 +-0.051520,0.267172,0.064814,-0.194001,-0.181286,-0.159222 +-0.056286,0.268018,0.068096,-0.190531,-0.180289,-0.152604 +-0.060932,0.268731,0.071169,-0.187082,-0.179222,-0.146033 +-0.065454,0.269312,0.074028,-0.183664,-0.178080,-0.139521 +-0.069851,0.269761,0.076665,-0.180283,-0.176862,-0.133080 +-0.074119,0.270076,0.079074,-0.176946,-0.175566,-0.126723 +-0.078256,0.270259,0.081250,-0.173661,-0.174190,-0.120460 +-0.082260,0.270309,0.083187,-0.170436,-0.172731,-0.114303 +-0.086128,0.270228,0.084881,-0.167276,-0.171187,-0.108263 +-0.089860,0.270015,0.086328,-0.164190,-0.169558,-0.102351 +-0.093453,0.269672,0.087523,-0.161184,-0.167841,-0.096578 +-0.096906,0.269200,0.088463,-0.158264,-0.166035,-0.090952 +-0.100219,0.268600,0.089146,-0.155439,-0.164139,-0.085485 +-0.103389,0.267874,0.089569,-0.152713,-0.162152,-0.080184 +-0.106417,0.267024,0.089730,-0.150093,-0.160073,-0.075059 +-0.109302,0.266052,0.089628,-0.147585,-0.157901,-0.070118 +-0.112045,0.264959,0.089262,-0.145195,-0.155635,-0.065369 +-0.114644,0.263748,0.088632,-0.142929,-0.153277,-0.060818 +-0.117100,0.262423,0.087739,-0.140792,-0.150825,-0.056473 +-0.119414,0.260985,0.086582,-0.138788,-0.148279,-0.052340 +-0.121586,0.259438,0.085164,-0.136922,-0.145640,-0.048424 +-0.123617,0.257785,0.083487,-0.135200,-0.142908,-0.044731 +-0.125510,0.256029,0.081552,-0.133624,-0.140084,-0.041263 +-0.127264,0.254173,0.079362,-0.132200,-0.137169,-0.038027 +-0.128881,0.252223,0.076922,-0.130929,-0.134163,-0.035024 +-0.130364,0.250181,0.074235,-0.129817,-0.131069,-0.032257 +-0.131714,0.248051,0.071305,-0.128864,-0.127887,-0.029728 +-0.132935,0.245838,0.068138,-0.128073,-0.124620,-0.027439 +-0.134027,0.243547,0.064739,-0.127448,-0.121269,-0.025390 +-0.134994,0.241181,0.061114,-0.126988,-0.117835,-0.023581 +-0.135839,0.238745,0.057269,-0.126696,-0.114323,-0.022011 +-0.136564,0.236244,0.053212,-0.126572,-0.110733,-0.020680 +-0.137174,0.233684,0.048949,-0.126617,-0.107068,-0.019585 +-0.137671,0.231068,0.044489,-0.126831,-0.103332,-0.018724 +-0.138059,0.228402,0.039839,-0.127213,-0.099526,-0.018094 +-0.138343,0.225691,0.035008,-0.127763,-0.095655,-0.017691 +-0.138525,0.222941,0.030004,-0.128480,-0.091722,-0.017510 +-0.138610,0.220156,0.024838,-0.129363,-0.087729,-0.017548 +-0.138602,0.217342,0.019519,-0.130408,-0.083681,-0.017798 +-0.138506,0.214504,0.014056,-0.131615,-0.079581,-0.018255 +-0.138326,0.211648,0.008459,-0.132981,-0.075433,-0.018911 +-0.138067,0.208779,0.002740,-0.134501,-0.071241,-0.019760 +-0.137734,0.205902,-0.003091,-0.136174,-0.067010,-0.020795 +-0.137330,0.203023,-0.009024,-0.137995,-0.062743,-0.022006 +-0.136863,0.200147,-0.015047,-0.139959,-0.058444,-0.023386 +-0.136336,0.197280,-0.021150,-0.142064,-0.054119,-0.024926 +-0.135754,0.194427,-0.027320,-0.144303,-0.049771,-0.026616 +-0.135123,0.191592,-0.033546,-0.146672,-0.045405,-0.028446 +-0.134448,0.188782,-0.039817,-0.149165,-0.041026,-0.030407 +-0.133735,0.186001,-0.046120,-0.151776,-0.036638,-0.032487 +-0.132988,0.183253,-0.052446,-0.154500,-0.032247,-0.034677 +-0.132213,0.180545,-0.058781,-0.157329,-0.027856,-0.036964 +-0.131416,0.177880,-0.065113,-0.160258,-0.023472,-0.039338 +-0.130602,0.175264,-0.071433,-0.163280,-0.019098,-0.041788 +-0.129776,0.172700,-0.077727,-0.166387,-0.014739,-0.044300 +-0.128943,0.170194,-0.083985,-0.169573,-0.010401,-0.046865 +-0.128110,0.167748,-0.090194,-0.172829,-0.006088,-0.049469 +-0.127281,0.165367,-0.096345,-0.176148,-0.001804,-0.052100 +-0.126462,0.163055,-0.102426,-0.179523,0.002444,-0.054747 +-0.125657,0.160815,-0.108425,-0.182946,0.006653,-0.057398 +-0.124873,0.158651,-0.114334,-0.186408,0.010818,-0.060039 +-0.124114,0.156566,-0.120140,-0.189901,0.014934,-0.062659 +-0.123385,0.154562,-0.125835,-0.193418,0.018997,-0.065247 +-0.122691,0.152643,-0.131408,-0.196949,0.023002,-0.067789 +-0.122037,0.150810,-0.136850,-0.200487,0.026944,-0.070275 +-0.121428,0.149066,-0.142153,-0.204023,0.030820,-0.072692 +-0.120869,0.147413,-0.147306,-0.207550,0.034625,-0.075030 +-0.120363,0.145853,-0.152302,-0.211058,0.038354,-0.077276 +-0.119916,0.144386,-0.157133,-0.214540,0.042005,-0.079421 +-0.119531,0.143015,-0.161791,-0.217987,0.045572,-0.081454 +-0.119212,0.141739,-0.166269,-0.221392,0.049053,-0.083363 +-0.118965,0.140560,-0.170560,-0.224746,0.052443,-0.085140 +-0.118791,0.139477,-0.174659,-0.228041,0.055739,-0.086775 +-0.118695,0.138491,-0.178558,-0.231271,0.058937,-0.088258 +-0.118681,0.137601,-0.182254,-0.234426,0.062035,-0.089581 +-0.118751,0.136808,-0.185742,-0.237501,0.065029,-0.090735 +-0.118909,0.136109,-0.189016,-0.240488,0.067916,-0.091713 +-0.119157,0.135504,-0.192073,-0.243379,0.070693,-0.092507 +-0.119499,0.134992,-0.194911,-0.246170,0.073359,-0.093111 +-0.119936,0.134570,-0.197525,-0.248851,0.075910,-0.093518 +-0.120471,0.134238,-0.199914,-0.251419,0.078344,-0.093722 +-0.121106,0.133992,-0.202077,-0.253867,0.080659,-0.093719 +-0.121843,0.133829,-0.204012,-0.256189,0.082854,-0.093503 +-0.122684,0.133749,-0.205718,-0.258380,0.084926,-0.093071 +-0.123629,0.133746,-0.207195,-0.260435,0.086873,-0.092419 +-0.124681,0.133818,-0.208445,-0.262350,0.088695,-0.091545 +-0.125840,0.133962,-0.209467,-0.264120,0.090391,-0.090445 +-0.127107,0.134173,-0.210263,-0.265742,0.091958,-0.089120 +-0.128482,0.134448,-0.210835,-0.267212,0.093397,-0.087567 +-0.129967,0.134783,-0.211186,-0.268526,0.094707,-0.085786 +-0.131560,0.135172,-0.211319,-0.269683,0.095886,-0.083778 +-0.133263,0.135612,-0.211236,-0.270679,0.096936,-0.081544 +-0.135074,0.136097,-0.210943,-0.271513,0.097855,-0.079085 +-0.136993,0.136623,-0.210443,-0.272182,0.098644,-0.076404 +-0.139020,0.137184,-0.209741,-0.272687,0.099302,-0.073503 +-0.141154,0.137775,-0.208843,-0.273026,0.099831,-0.070385 +-0.143392,0.138390,-0.207754,-0.273198,0.100231,-0.067056 +-0.145735,0.139025,-0.206481,-0.273204,0.100502,-0.063518 +-0.148181,0.139673,-0.205029,-0.273044,0.100645,-0.059778 +-0.150727,0.140328,-0.203406,-0.272719,0.100661,-0.055841 +-0.153372,0.140985,-0.201619,-0.272230,0.100551,-0.051714 +-0.156114,0.141638,-0.199675,-0.271578,0.100317,-0.047403 +-0.158950,0.142280,-0.197583,-0.270766,0.099959,-0.042915 +-0.161879,0.142906,-0.195350,-0.269796,0.099480,-0.038259 +-0.164897,0.143509,-0.192984,-0.268671,0.098880,-0.033443 +-0.168001,0.144083,-0.190495,-0.267393,0.098162,-0.028475 +-0.171189,0.144623,-0.187892,-0.265966,0.097328,-0.023364 +-0.174458,0.145122,-0.185182,-0.264394,0.096379,-0.018121 +-0.177804,0.145574,-0.182377,-0.262681,0.095317,-0.012755 +-0.181224,0.145973,-0.179483,-0.260831,0.094145,-0.007275 +-0.184714,0.146313,-0.176513,-0.258849,0.092864,-0.001694 +-0.188271,0.146589,-0.173474,-0.256739,0.091478,0.003979 +-0.191892,0.146795,-0.170376,-0.254508,0.089988,0.009732 +-0.195571,0.146924,-0.167230,-0.252160,0.088397,0.015554 +-0.199305,0.146973,-0.164044,-0.249702,0.086707,0.021433 +-0.203091,0.146934,-0.160829,-0.247138,0.084921,0.027358 +-0.206924,0.146804,-0.157594,-0.244477,0.083042,0.033318 +-0.210800,0.146577,-0.154349,-0.241723,0.081071,0.039299 +-0.214714,0.146248,-0.151103,-0.238883,0.079013,0.045290 +-0.218662,0.145813,-0.147866,-0.235964,0.076869,0.051279 +-0.222641,0.145267,-0.144647,-0.232973,0.074642,0.057254 +-0.226645,0.144606,-0.141455,-0.229916,0.072335,0.063203 +-0.230669,0.143827,-0.138299,-0.226802,0.069950,0.069114 +-0.234711,0.142925,-0.135188,-0.223636,0.067491,0.074975 +-0.238764,0.141898,-0.132131,-0.220425,0.064960,0.080775 +-0.242825,0.140741,-0.129135,-0.217178,0.062361,0.086502 +-0.246889,0.139453,-0.126209,-0.213901,0.059694,0.092144 +-0.250951,0.138031,-0.123361,-0.210602,0.056965,0.097691 +-0.255008,0.136472,-0.120597,-0.207287,0.054174,0.103131 +-0.259054,0.134774,-0.117926,-0.203963,0.051325,0.108454 +-0.263085,0.132937,-0.115355,-0.200638,0.048420,0.113650 +-0.267097,0.130958,-0.112888,-0.197319,0.045463,0.118709 +-0.271085,0.128837,-0.110534,-0.194012,0.042455,0.123620 +-0.275046,0.126573,-0.108297,-0.190724,0.039399,0.128375 +-0.278974,0.124167,-0.106182,-0.187462,0.036298,0.132966 +-0.282867,0.121617,-0.104196,-0.184232,0.033154,0.137383 +-0.286719,0.118925,-0.102342,-0.181041,0.029970,0.141619 +-0.290526,0.116091,-0.100625,-0.177893,0.026748,0.145666 +-0.294286,0.113116,-0.099048,-0.174796,0.023490,0.149517 +-0.297993,0.110003,-0.097614,-0.171754,0.020198,0.153167 +-0.301645,0.106752,-0.096327,-0.168773,0.016875,0.156608 +-0.305237,0.103366,-0.095188,-0.165859,0.013524,0.159837 +-0.308767,0.099848,-0.094201,-0.163015,0.010145,0.162847 +-0.312230,0.096201,-0.093365,-0.160246,0.006742,0.165636 +-0.315623,0.092427,-0.092683,-0.157557,0.003316,0.168198 +-0.318944,0.088530,-0.092154,-0.154952,-0.000131,0.170532 +-0.322188,0.084515,-0.091780,-0.152433,-0.003597,0.172635 +-0.325354,0.080386,-0.091559,-0.150005,-0.007080,0.174505 +-0.328439,0.076146,-0.091491,-0.147670,-0.010578,0.176142 +-0.331439,0.071802,-0.091575,-0.145431,-0.014089,0.177543 +-0.334352,0.067357,-0.091810,-0.143290,-0.017612,0.178710 +-0.337176,0.062819,-0.092192,-0.141248,-0.021146,0.179643 +-0.339909,0.058191,-0.092720,-0.139308,-0.024687,0.180344 +-0.342548,0.053482,-0.093390,-0.137471,-0.028235,0.180815 +-0.345092,0.048696,-0.094200,-0.135736,-0.031789,0.181057 +-0.347539,0.043840,-0.095146,-0.134106,-0.035346,0.181075 +-0.349886,0.038922,-0.096224,-0.132578,-0.038906,0.180871 +-0.352134,0.033948,-0.097430,-0.131154,-0.042466,0.180451 +-0.354279,0.028925,-0.098758,-0.129833,-0.046025,0.179818 +-0.356321,0.023860,-0.100203,-0.128613,-0.049582,0.178980 +-0.358258,0.018762,-0.101761,-0.127493,-0.053136,0.177941 +-0.360091,0.013639,-0.103426,-0.126472,-0.056684,0.176707 +-0.361817,0.008497,-0.105191,-0.125546,-0.060227,0.175287 +-0.363436,0.003345,-0.107051,-0.124715,-0.063761,0.173687 +-0.364948,-0.001809,-0.108999,-0.123974,-0.067286,0.171916 +-0.366353,-0.006956,-0.111028,-0.123321,-0.070801,0.169982 +-0.367649,-0.012088,-0.113132,-0.122752,-0.074304,0.167893 +-0.368837,-0.017198,-0.115303,-0.122263,-0.077794,0.165659 +-0.369916,-0.022276,-0.117535,-0.121851,-0.081270,0.163289 +-0.370887,-0.027314,-0.119819,-0.121512,-0.084729,0.160794 +-0.371751,-0.032303,-0.122148,-0.121239,-0.088171,0.158184 +-0.372506,-0.037236,-0.124515,-0.121030,-0.091594,0.155469 +-0.373154,-0.042103,-0.126913,-0.120878,-0.094996,0.152659 +-0.373695,-0.046896,-0.129332,-0.120779,-0.098377,0.149767 +-0.374130,-0.051608,-0.131767,-0.120726,-0.101735,0.146803 +-0.374459,-0.056230,-0.134208,-0.120715,-0.105068,0.143779 +-0.374684,-0.060753,-0.136648,-0.120738,-0.108374,0.140705 +-0.374805,-0.065170,-0.139080,-0.120792,-0.111653,0.137595 +-0.374823,-0.069472,-0.141495,-0.120868,-0.114901,0.134460 +-0.374739,-0.073653,-0.143886,-0.120961,-0.118119,0.131310 +-0.374555,-0.077704,-0.146246,-0.121065,-0.121303,0.128159 +-0.374271,-0.081619,-0.148567,-0.121172,-0.124452,0.125018 +-0.373889,-0.085390,-0.150842,-0.121278,-0.127565,0.121899 +-0.373411,-0.089010,-0.153064,-0.121374,-0.130640,0.118814 +-0.372837,-0.092472,-0.155226,-0.121455,-0.133674,0.115773 +-0.372170,-0.095771,-0.157320,-0.121514,-0.136665,0.112789 +-0.371410,-0.098899,-0.159341,-0.121544,-0.139613,0.109872 +-0.370559,-0.101852,-0.161283,-0.121539,-0.142514,0.107035 +-0.369619,-0.104623,-0.163138,-0.121492,-0.145366,0.104287 +-0.368591,-0.107207,-0.164902,-0.121398,-0.148168,0.101639 +-0.367477,-0.109599,-0.166569,-0.121250,-0.150917,0.099101 +-0.366279,-0.111795,-0.168133,-0.121041,-0.153612,0.096684 +-0.364999,-0.113790,-0.169590,-0.120766,-0.156249,0.094397 +-0.363637,-0.115581,-0.170934,-0.120418,-0.158826,0.092250 +-0.362196,-0.117163,-0.172162,-0.119993,-0.161342,0.090251 +-0.360678,-0.118533,-0.173270,-0.119485,-0.163794,0.088408 +-0.359083,-0.119690,-0.174253,-0.118888,-0.166180,0.086730 +-0.357415,-0.120629,-0.175109,-0.118198,-0.168496,0.085225 +-0.355674,-0.121350,-0.175834,-0.117409,-0.170741,0.083899 +-0.353862,-0.121850,-0.176426,-0.116517,-0.172913,0.082760 +-0.351982,-0.122128,-0.176883,-0.115518,-0.175008,0.081813 +-0.350034,-0.122183,-0.177203,-0.114408,-0.177025,0.081063 +-0.348020,-0.122015,-0.177384,-0.113183,-0.178961,0.080517 +-0.345942,-0.121624,-0.177424,-0.111840,-0.180813,0.080179 +-0.343801,-0.121010,-0.177325,-0.110375,-0.182580,0.080052 +-0.341599,-0.120173,-0.177084,-0.108787,-0.184258,0.080140 +-0.339338,-0.119116,-0.176702,-0.107072,-0.185845,0.080446 +-0.337019,-0.117839,-0.176180,-0.105228,-0.187339,0.080972 +-0.334643,-0.116344,-0.175518,-0.103254,-0.188737,0.081719 +-0.332211,-0.114634,-0.174717,-0.101149,-0.190038,0.082690 +-0.329726,-0.112711,-0.173778,-0.098911,-0.191239,0.083884 +-0.327188,-0.110578,-0.172704,-0.096540,-0.192337,0.085301 +-0.324599,-0.108240,-0.171497,-0.094037,-0.193330,0.086941 +-0.321960,-0.105699,-0.170158,-0.091400,-0.194217,0.088802 +-0.319272,-0.102961,-0.168692,-0.088630,-0.194995,0.090882 +-0.316536,-0.100029,-0.167100,-0.085729,-0.195663,0.093180 +-0.313753,-0.096909,-0.165387,-0.082698,-0.196217,0.095691 +-0.310925,-0.093605,-0.163557,-0.079539,-0.196658,0.098414 +-0.308052,-0.090124,-0.161612,-0.076253,-0.196982,0.101342 +-0.305135,-0.086471,-0.159559,-0.072844,-0.197189,0.104472 +-0.302175,-0.082653,-0.157400,-0.069313,-0.197277,0.107799 +-0.299173,-0.078676,-0.155141,-0.065665,-0.197244,0.111317 +-0.296130,-0.074546,-0.152787,-0.061902,-0.197089,0.115020 +-0.293046,-0.070271,-0.150344,-0.058030,-0.196811,0.118901 +-0.289922,-0.065859,-0.147816,-0.054051,-0.196410,0.122953 +-0.286759,-0.061316,-0.145209,-0.049971,-0.195883,0.127168 +-0.283557,-0.056650,-0.142530,-0.045794,-0.195232,0.131540 +-0.280317,-0.051870,-0.139783,-0.041526,-0.194454,0.136058 +-0.277040,-0.046983,-0.136976,-0.037172,-0.193550,0.140716 +-0.273725,-0.041997,-0.134113,-0.032738,-0.192519,0.145503 +-0.270373,-0.036922,-0.131202,-0.028231,-0.191362,0.150410 +-0.266985,-0.031766,-0.128250,-0.023656,-0.190078,0.155428 +-0.263560,-0.026537,-0.125261,-0.019020,-0.188668,0.160546 +-0.260100,-0.021244,-0.122243,-0.014330,-0.187132,0.165756 +-0.256605,-0.015896,-0.119202,-0.009593,-0.185471,0.171045 +-0.253074,-0.010503,-0.116145,-0.004817,-0.183686,0.176404 +-0.249508,-0.005072,-0.113079,-0.000008,-0.181777,0.181822 +-0.245907,0.000386,-0.110008,0.004826,-0.179747,0.187287 +-0.242271,0.005863,-0.106941,0.009677,-0.177596,0.192790 +-0.238601,0.011350,-0.103883,0.014537,-0.175326,0.198319 +-0.234896,0.016838,-0.100841,0.019399,-0.172939,0.203862 +-0.231157,0.022318,-0.097821,0.024253,-0.170437,0.209410 +-0.227383,0.027781,-0.094828,0.029093,-0.167822,0.214949 +-0.223575,0.033217,-0.091869,0.033911,-0.165097,0.220471 +-0.219733,0.038619,-0.088950,0.038697,-0.162264,0.225962 +-0.215857,0.043978,-0.086075,0.043443,-0.159326,0.231414 +-0.211947,0.049284,-0.083252,0.048143,-0.156286,0.236813 +-0.208003,0.054531,-0.080484,0.052787,-0.153147,0.242151 +-0.204025,0.059709,-0.077777,0.057367,-0.149913,0.247417 +-0.200013,0.064810,-0.075136,0.061876,-0.146587,0.252599 +-0.195967,0.069827,-0.072565,0.066305,-0.143174,0.257689 +-0.191887,0.074752,-0.070069,0.070648,-0.139676,0.262676 +-0.187774,0.079578,-0.067652,0.074895,-0.136098,0.267550 +-0.183627,0.084296,-0.065318,0.079040,-0.132445,0.272303 +-0.179446,0.088901,-0.063071,0.083075,-0.128721,0.276925 +-0.175232,0.093385,-0.060914,0.086993,-0.124930,0.281408 +-0.170984,0.097743,-0.058850,0.090788,-0.121078,0.285743 +-0.166703,0.101967,-0.056882,0.094452,-0.117169,0.289922 +-0.162389,0.106052,-0.055013,0.097979,-0.113209,0.293938 +-0.158043,0.109992,-0.053245,0.101362,-0.109202,0.297784 +-0.153663,0.113782,-0.051580,0.104596,-0.105154,0.301453 +-0.149252,0.117417,-0.050020,0.107675,-0.101071,0.304938 +-0.144808,0.120893,-0.048566,0.110594,-0.096958,0.308234 +-0.140332,0.124203,-0.047219,0.113347,-0.092820,0.311335 +-0.135825,0.127346,-0.045981,0.115929,-0.088664,0.314236 +-0.131286,0.130317,-0.044852,0.118336,-0.084496,0.316933 +-0.126716,0.133112,-0.043832,0.120565,-0.080320,0.319421 +-0.122116,0.135728,-0.042921,0.122610,-0.076144,0.321697 +-0.117486,0.138164,-0.042119,0.124469,-0.071973,0.323758 +-0.112827,0.140416,-0.041426,0.126138,-0.067814,0.325602 +-0.108138,0.142482,-0.040841,0.127615,-0.063672,0.327225 +-0.103421,0.144361,-0.040362,0.128897,-0.059554,0.328627 +-0.098676,0.146051,-0.039989,0.129982,-0.055466,0.329806 +-0.093904,0.147552,-0.039720,0.130870,-0.051413,0.330761 +-0.089105,0.148862,-0.039553,0.131557,-0.047403,0.331493 +-0.084279,0.149982,-0.039487,0.132044,-0.043440,0.332002 +-0.079429,0.150912,-0.039518,0.132329,-0.039532,0.332287 +-0.074554,0.151651,-0.039645,0.132414,-0.035684,0.332351 +-0.069654,0.152201,-0.039866,0.132297,-0.031902,0.332195 +-0.064732,0.152563,-0.040177,0.131980,-0.028192,0.331820 +-0.059788,0.152738,-0.040575,0.131464,-0.024560,0.331231 +-0.054822,0.152727,-0.041058,0.130749,-0.021012,0.330428 +-0.049836,0.152533,-0.041621,0.129839,-0.017552,0.329416 +-0.044831,0.152158,-0.042263,0.128734,-0.014187,0.328197 +-0.039806,0.151604,-0.042979,0.127436,-0.010922,0.326777 +-0.034764,0.150875,-0.043765,0.125950,-0.007762,0.325159 +-0.029706,0.149973,-0.044619,0.124278,-0.004712,0.323348 +-0.024632,0.148902,-0.045536,0.122422,-0.001777,0.321348 +-0.019543,0.147665,-0.046512,0.120388,0.001039,0.319166 +-0.014441,0.146267,-0.047544,0.118178,0.003730,0.316807 +-0.009327,0.144711,-0.048627,0.115798,0.006293,0.314275 +-0.004201,0.143002,-0.049759,0.113251,0.008723,0.311578 +0.000934,0.141144,-0.050934,0.110543,0.011016,0.308721 +0.006079,0.139142,-0.052149,0.107678,0.013169,0.305711 +0.011231,0.137001,-0.053400,0.104662,0.015178,0.302554 +0.016389,0.134727,-0.054683,0.101500,0.017040,0.299258 +0.021553,0.132324,-0.055995,0.098197,0.018751,0.295827 +0.026721,0.129797,-0.057331,0.094761,0.020310,0.292270 +0.031891,0.127153,-0.058688,0.091196,0.021713,0.288594 +0.037063,0.124397,-0.060062,0.087509,0.022959,0.284805 +0.042235,0.121536,-0.061450,0.083706,0.024045,0.280910 +0.047406,0.118573,-0.062849,0.079794,0.024969,0.276916 +0.052575,0.115517,-0.064254,0.075779,0.025730,0.272831 +0.057740,0.112373,-0.065663,0.071668,0.026327,0.268661 +0.062899,0.109147,-0.067074,0.067467,0.026759,0.264413 +0.068053,0.105844,-0.068482,0.063183,0.027025,0.260093 +0.073198,0.102473,-0.069885,0.058823,0.027125,0.255709 +0.078335,0.099038,-0.071281,0.054393,0.027058,0.251267 +0.083461,0.095546,-0.072667,0.049901,0.026825,0.246773 +0.088575,0.092004,-0.074042,0.045352,0.026427,0.242233 +0.093676,0.088417,-0.075402,0.040755,0.025864,0.237655 +0.098763,0.084791,-0.076746,0.036115,0.025137,0.233042 +0.103833,0.081134,-0.078073,0.031438,0.024247,0.228401 +0.108887,0.077451,-0.079381,0.026733,0.023196,0.223738 +0.113921,0.073748,-0.080668,0.022003,0.021986,0.219058 +0.118936,0.070032,-0.081934,0.017257,0.020618,0.214364 +0.123929,0.066308,-0.083178,0.012500,0.019096,0.209663 +0.128899,0.062582,-0.084399,0.007739,0.017421,0.204958 +0.133846,0.058860,-0.085596,0.002978,0.015598,0.200253 +0.138766,0.055148,-0.086769,-0.001776,0.013627,0.195552 +0.143660,0.051451,-0.087918,-0.006518,0.011514,0.190859 +0.148525,0.047776,-0.089043,-0.011243,0.009262,0.186177 +0.153360,0.044126,-0.090145,-0.015945,0.006874,0.181507 +0.158164,0.040508,-0.091223,-0.020620,0.004354,0.176854 +0.162936,0.036927,-0.092279,-0.025263,0.001707,0.172219 +0.167673,0.033387,-0.093312,-0.029869,-0.001063,0.167603 +0.172375,0.029894,-0.094325,-0.034435,-0.003951,0.163009 +0.177040,0.026452,-0.095318,-0.038957,-0.006953,0.158437 +0.181667,0.023065,-0.096293,-0.043430,-0.010064,0.153888 +0.186254,0.019739,-0.097250,-0.047851,-0.013278,0.149364 +0.190800,0.016476,-0.098191,-0.052218,-0.016591,0.144863 +0.195303,0.013282,-0.099119,-0.056528,-0.019997,0.140385 +0.199762,0.010160,-0.100034,-0.060777,-0.023490,0.135932 +0.204175,0.007114,-0.100939,-0.064963,-0.027065,0.131500 +0.208542,0.004146,-0.101835,-0.069085,-0.030717,0.127091 +0.212860,0.001262,-0.102725,-0.073140,-0.034439,0.122701 +0.217127,-0.001537,-0.103610,-0.077127,-0.038225,0.118331 +0.221344,-0.004247,-0.104494,-0.081045,-0.042071,0.113977 +0.225507,-0.006865,-0.105377,-0.084892,-0.045969,0.109638 +0.229616,-0.009389,-0.106262,-0.088668,-0.049913,0.105311 +0.233668,-0.011816,-0.107152,-0.092373,-0.053899,0.100994 +0.237663,-0.014144,-0.108049,-0.096006,-0.057919,0.096685 +0.241598,-0.016371,-0.108954,-0.099567,-0.061967,0.092380 +0.245473,-0.018495,-0.109871,-0.103056,-0.066039,0.088076 +0.249285,-0.020514,-0.110801,-0.106474,-0.070127,0.083770 +0.253033,-0.022427,-0.111746,-0.109822,-0.074225,0.079459 +0.256715,-0.024231,-0.112709,-0.113100,-0.078328,0.075139 +0.260330,-0.025926,-0.113691,-0.116309,-0.082430,0.070806 +0.263876,-0.027511,-0.114695,-0.119452,-0.086525,0.066458 +0.267351,-0.028983,-0.115722,-0.122529,-0.090608,0.062090 +0.270753,-0.030344,-0.116774,-0.125542,-0.094673,0.057699 +0.274082,-0.031591,-0.117853,-0.128493,-0.098713,0.053281 +0.277334,-0.032725,-0.118960,-0.131384,-0.102725,0.048831 +0.280509,-0.033745,-0.120096,-0.134216,-0.106703,0.044348 +0.283605,-0.034649,-0.121263,-0.136993,-0.110641,0.039826 +0.286619,-0.035440,-0.122462,-0.139717,-0.114535,0.035263 +0.289550,-0.036115,-0.123693,-0.142390,-0.118380,0.030655 +0.292396,-0.036676,-0.124956,-0.145015,-0.122171,0.025998 +0.295156,-0.037122,-0.126254,-0.147594,-0.125905,0.021289 +0.297828,-0.037454,-0.127585,-0.150130,-0.129575,0.016526 +0.300409,-0.037671,-0.128950,-0.152626,-0.133180,0.011705 +0.302898,-0.037776,-0.130349,-0.155084,-0.136714,0.006824 +0.305293,-0.037767,-0.131781,-0.157508,-0.140174,0.001880 +0.307592,-0.037645,-0.133247,-0.159900,-0.143557,-0.003129 +0.309793,-0.037412,-0.134743,-0.162263,-0.146859,-0.008205 +0.311895,-0.037068,-0.136271,-0.164600,-0.150077,-0.013351 +0.313896,-0.036614,-0.137829,-0.166913,-0.153209,-0.018566 +0.315793,-0.036051,-0.139415,-0.169205,-0.156251,-0.023854 +0.317585,-0.035379,-0.141027,-0.171479,-0.159203,-0.029214 +0.319270,-0.034600,-0.142663,-0.173738,-0.162060,-0.034647 +0.320847,-0.033715,-0.144322,-0.175983,-0.164823,-0.040153 +0.322313,-0.032725,-0.146001,-0.178218,-0.167488,-0.045733 +0.323666,-0.031632,-0.147697,-0.180443,-0.170055,-0.051386 +0.324905,-0.030435,-0.149407,-0.182663,-0.172522,-0.057111 +0.326029,-0.029138,-0.151128,-0.184878,-0.174888,-0.062908 +0.327034,-0.027740,-0.152856,-0.187090,-0.177154,-0.068774 +0.327920,-0.026243,-0.154590,-0.189301,-0.179317,-0.074708 +0.328685,-0.024650,-0.156323,-0.191513,-0.181378,-0.080707 +0.329328,-0.022960,-0.158053,-0.193727,-0.183338,-0.086770 +0.329846,-0.021176,-0.159776,-0.195944,-0.185195,-0.092892 +0.330238,-0.019298,-0.161487,-0.198165,-0.186951,-0.099072 +0.330503,-0.017329,-0.163181,-0.200391,-0.188606,-0.105304 +0.330638,-0.015270,-0.164854,-0.202623,-0.190161,-0.111586 +0.330644,-0.013122,-0.166502,-0.204860,-0.191617,-0.117911 +0.330518,-0.010887,-0.168119,-0.207104,-0.192976,-0.124277 +0.330259,-0.008566,-0.169700,-0.209354,-0.194238,-0.130677 +0.329866,-0.006161,-0.171240,-0.211610,-0.195406,-0.137106 +0.329338,-0.003674,-0.172734,-0.213871,-0.196481,-0.143558 +0.328673,-0.001105,-0.174176,-0.216137,-0.197464,-0.150026 +0.327871,0.001542,-0.175562,-0.218407,-0.198359,-0.156506 +0.326931,0.004268,-0.176885,-0.220680,-0.199168,-0.162989 +0.325852,0.007069,-0.178140,-0.222954,-0.199892,-0.169468 +0.324632,0.009945,-0.179322,-0.225229,-0.200535,-0.175937 +0.323273,0.012894,-0.180424,-0.227502,-0.201099,-0.182387 +0.321772,0.015914,-0.181443,-0.229771,-0.201586,-0.188811 +0.320130,0.019003,-0.182372,-0.232035,-0.202000,-0.195200 +0.318346,0.022160,-0.183205,-0.234292,-0.202344,-0.201547 +0.316421,0.025382,-0.183938,-0.236537,-0.202621,-0.207842 +0.314353,0.028669,-0.184565,-0.238770,-0.202834,-0.214078 +0.312143,0.032018,-0.185081,-0.240987,-0.202985,-0.220245 +0.309791,0.035428,-0.185481,-0.243185,-0.203079,-0.226334 +0.307297,0.038896,-0.185759,-0.245361,-0.203118,-0.232337 +0.304662,0.042421,-0.185912,-0.247512,-0.203107,-0.238245 +0.301886,0.046000,-0.185935,-0.249634,-0.203047,-0.244048 +0.298970,0.049633,-0.185823,-0.251724,-0.202943,-0.249737 +0.295915,0.053316,-0.185571,-0.253778,-0.202798,-0.255303 +0.292721,0.057048,-0.185177,-0.255792,-0.202614,-0.260737 +0.289390,0.060826,-0.184636,-0.257763,-0.202397,-0.266030 +0.285923,0.064650,-0.183945,-0.259687,-0.202148,-0.271173 +0.282320,0.068515,-0.183100,-0.261559,-0.201870,-0.276157 +0.278584,0.072420,-0.182099,-0.263376,-0.201568,-0.280973 +0.274717,0.076363,-0.180939,-0.265133,-0.201244,-0.285613 +0.270719,0.080342,-0.179617,-0.266827,-0.200901,-0.290069 +0.266594,0.084354,-0.178132,-0.268453,-0.200542,-0.294331 +0.262342,0.088396,-0.176482,-0.270007,-0.200170,-0.298392 +0.257967,0.092467,-0.174665,-0.271486,-0.199787,-0.302245 +0.253470,0.096563,-0.172681,-0.272885,-0.199397,-0.305881 +0.248855,0.100681,-0.170528,-0.274200,-0.199002,-0.309294 +0.244123,0.104821,-0.168207,-0.275428,-0.198603,-0.312477 +0.239278,0.108977,-0.165717,-0.276565,-0.198204,-0.315423 +0.234322,0.113149,-0.163060,-0.277606,-0.197807,-0.318126 +0.229260,0.117332,-0.160235,-0.278549,-0.197413,-0.320581 +0.224093,0.121525,-0.157244,-0.279390,-0.197024,-0.322782 +0.218825,0.125723,-0.154090,-0.280125,-0.196642,-0.324724 +0.213460,0.129925,-0.150773,-0.280752,-0.196269,-0.326402 +0.208002,0.134126,-0.147297,-0.281267,-0.195905,-0.327813 +0.202454,0.138324,-0.143664,-0.281667,-0.195553,-0.328954 +0.196821,0.142516,-0.139877,-0.281951,-0.195212,-0.329820 +0.191105,0.146698,-0.135941,-0.282115,-0.194885,-0.330410 +0.185312,0.150867,-0.131858,-0.282158,-0.194570,-0.330722 +0.179446,0.155020,-0.127635,-0.282077,-0.194270,-0.330753 +0.173511,0.159153,-0.123275,-0.281870,-0.193984,-0.330503 +0.167512,0.163263,-0.118784,-0.281537,-0.193712,-0.329972 +0.161452,0.167346,-0.114167,-0.281076,-0.193454,-0.329160 +0.155338,0.171400,-0.109431,-0.280485,-0.193211,-0.328067 +0.149174,0.175419,-0.104581,-0.279765,-0.192981,-0.326694 +0.142964,0.179402,-0.099625,-0.278915,-0.192765,-0.325044 +0.136713,0.183344,-0.094569,-0.277934,-0.192560,-0.323118 +0.130428,0.187242,-0.089421,-0.276824,-0.192367,-0.320920 +0.124112,0.191091,-0.084188,-0.275584,-0.192185,-0.318453 +0.117771,0.194889,-0.078879,-0.274215,-0.192011,-0.315721 +0.111410,0.198632,-0.073502,-0.272718,-0.191845,-0.312729 +0.105035,0.202316,-0.068065,-0.271096,-0.191685,-0.309481 +0.098650,0.205938,-0.062576,-0.269348,-0.191529,-0.305984 +0.092261,0.209493,-0.057046,-0.267478,-0.191376,-0.302244 +0.085873,0.212979,-0.051483,-0.265487,-0.191224,-0.298266 +0.079492,0.216392,-0.045897,-0.263379,-0.191070,-0.294059 +0.073124,0.219729,-0.040296,-0.261156,-0.190911,-0.289630 +0.066773,0.222985,-0.034692,-0.258821,-0.190747,-0.284988 +0.060444,0.226157,-0.029093,-0.256379,-0.190574,-0.280140 +0.054144,0.229243,-0.023511,-0.253832,-0.190390,-0.275096 +0.047877,0.232239,-0.017954,-0.251185,-0.190191,-0.269866 +0.041649,0.235141,-0.012433,-0.248442,-0.189976,-0.264458 +0.035465,0.237947,-0.006958,-0.245608,-0.189741,-0.258884 +0.029330,0.240653,-0.001540,-0.242688,-0.189484,-0.253154 +0.023250,0.243256,0.003811,-0.239687,-0.189202,-0.247279 +0.017229,0.245754,0.009086,-0.236611,-0.188891,-0.241270 +0.011272,0.248144,0.014273,-0.233464,-0.188549,-0.235139 +0.005384,0.250422,0.019363,-0.230253,-0.188172,-0.228897 +-0.000429,0.252587,0.024346,-0.226984,-0.187758,-0.222557 +-0.006164,0.254637,0.029213,-0.223663,-0.187303,-0.216130 +-0.011815,0.256568,0.033952,-0.220297,-0.186805,-0.209629 +-0.017379,0.258379,0.038555,-0.216892,-0.186259,-0.203066 +-0.022850,0.260068,0.043013,-0.213455,-0.185664,-0.196454 +-0.028225,0.261632,0.047316,-0.209993,-0.185016,-0.189806 +-0.033500,0.263071,0.051455,-0.206513,-0.184312,-0.183134 +-0.038670,0.264382,0.055421,-0.203022,-0.183549,-0.176451 +-0.043732,0.265565,0.059207,-0.199527,-0.182725,-0.169770 +-0.048682,0.266618,0.062804,-0.196036,-0.181836,-0.163103 +-0.053517,0.267540,0.066204,-0.192555,-0.180880,-0.156464 +-0.058233,0.268331,0.069400,-0.189093,-0.179854,-0.149864 +-0.062828,0.268989,0.072385,-0.185656,-0.178756,-0.143316 +-0.067299,0.269515,0.075152,-0.182252,-0.177583,-0.136832 +-0.071642,0.269908,0.077695,-0.178889,-0.176333,-0.130425 +-0.075856,0.270168,0.080008,-0.175573,-0.175004,-0.124105 +-0.079938,0.270296,0.082085,-0.172312,-0.173593,-0.117885 +-0.083886,0.270291,0.083922,-0.169113,-0.172099,-0.111775 +-0.087698,0.270155,0.085513,-0.165983,-0.170520,-0.105787 +-0.091372,0.269888,0.086856,-0.162929,-0.168854,-0.099932 +-0.094907,0.269491,0.087945,-0.159958,-0.167100,-0.094219 +-0.098302,0.268966,0.088779,-0.157077,-0.165257,-0.088658 +-0.101555,0.268313,0.089353,-0.154292,-0.163323,-0.083259 +-0.104666,0.267536,0.089668,-0.151610,-0.161298,-0.078030 +-0.107635,0.266634,0.089719,-0.149036,-0.159180,-0.072981 +-0.110461,0.265611,0.089508,-0.146576,-0.156970,-0.068119 +-0.113143,0.264469,0.089032,-0.144237,-0.154666,-0.063451 +-0.115683,0.263211,0.088293,-0.142024,-0.152268,-0.058985 +-0.118080,0.261838,0.087290,-0.139941,-0.149777,-0.054728 +-0.120334,0.260354,0.086024,-0.137995,-0.147192,-0.050684 +-0.122448,0.258763,0.084498,-0.136188,-0.144514,-0.046860 +-0.124421,0.257066,0.082713,-0.134526,-0.141744,-0.043260 +-0.126256,0.255269,0.080671,-0.133013,-0.138882,-0.039889 +-0.127953,0.253373,0.078377,-0.131652,-0.135929,-0.036749 +-0.129514,0.251384,0.075834,-0.130447,-0.132887,-0.033844 +-0.130942,0.249305,0.073045,-0.129401,-0.129756,-0.031176 +-0.132238,0.247140,0.070016,-0.128515,-0.126538,-0.028747 +-0.133404,0.244894,0.066752,-0.127793,-0.123236,-0.026557 +-0.134444,0.242571,0.063258,-0.127236,-0.119850,-0.024608 +-0.135360,0.240176,0.059541,-0.126846,-0.116384,-0.022899 +-0.136155,0.237712,0.055607,-0.126624,-0.112838,-0.021428 +-0.136832,0.235186,0.051463,-0.126570,-0.109217,-0.020196 +-0.137394,0.232602,0.047117,-0.126685,-0.105522,-0.019198 +-0.137846,0.229964,0.042577,-0.126969,-0.101757,-0.018434 +-0.138190,0.227279,0.037850,-0.127422,-0.097924,-0.017899 +-0.138431,0.224551,0.032947,-0.128042,-0.094026,-0.017589 +-0.138572,0.221786,0.027874,-0.128828,-0.090067,-0.017500 +-0.138618,0.218988,0.022643,-0.129778,-0.086051,-0.017627 +-0.138573,0.216164,0.017263,-0.130891,-0.081981,-0.017963 +-0.138441,0.213318,0.011743,-0.132164,-0.077861,-0.018504 +-0.138228,0.210455,0.006094,-0.133594,-0.073694,-0.019242 +-0.137937,0.207583,0.000327,-0.135179,-0.069485,-0.020169 +-0.137574,0.204704,-0.005548,-0.136913,-0.065239,-0.021278 +-0.137143,0.201826,-0.011520,-0.138795,-0.060958,-0.022560 +-0.136650,0.198953,-0.017577,-0.140818,-0.056647,-0.024008 +-0.136100,0.196091,-0.023709,-0.142979,-0.052312,-0.025611 +-0.135497,0.193245,-0.029904,-0.145273,-0.047956,-0.027361 +-0.134847,0.190420,-0.036150,-0.147694,-0.043584,-0.029247 +-0.134156,0.187621,-0.042436,-0.150237,-0.039201,-0.031258 +-0.133428,0.184853,-0.048750,-0.152896,-0.034812,-0.033386 +-0.132669,0.182122,-0.055081,-0.155664,-0.030420,-0.035617 +-0.131884,0.179431,-0.061416,-0.158536,-0.026031,-0.037942 +-0.131079,0.176786,-0.067745,-0.161505,-0.021651,-0.040349 +-0.130259,0.174191,-0.074055,-0.164563,-0.017282,-0.042826 +-0.129430,0.171650,-0.080335,-0.167703,-0.012932,-0.045362 +-0.128596,0.169168,-0.086574,-0.170919,-0.008603,-0.047944 +-0.127764,0.166749,-0.092761,-0.174203,-0.004302,-0.050561 +-0.126939,0.164397,-0.098884,-0.177546,-0.000032,-0.053200 +-0.126125,0.162114,-0.104932,-0.180942,0.004200,-0.055850 +-0.125328,0.159906,-0.110895,-0.184382,0.008392,-0.058498 +-0.124554,0.157774,-0.116762,-0.187858,0.012537,-0.061132 +-0.123806,0.155722,-0.122524,-0.191362,0.016631,-0.063740 +-0.123091,0.153753,-0.128169,-0.194885,0.020670,-0.066310 +-0.122414,0.151870,-0.133689,-0.198421,0.024650,-0.068831 +-0.121778,0.150074,-0.139074,-0.201959,0.028565,-0.071289 +-0.121189,0.148368,-0.144315,-0.205492,0.032412,-0.073675 +-0.120652,0.146753,-0.149404,-0.209012,0.036186,-0.075976 +-0.120170,0.145231,-0.154332,-0.212510,0.039883,-0.078182 +-0.119748,0.143804,-0.159092,-0.215979,0.043499,-0.080281 +-0.119390,0.142472,-0.163676,-0.219409,0.047031,-0.082263 +-0.119100,0.141236,-0.168077,-0.222794,0.050474,-0.084119 +-0.118883,0.140097,-0.172289,-0.226124,0.053825,-0.085838 +-0.118742,0.139055,-0.176305,-0.229393,0.057081,-0.087411 +-0.118679,0.138109,-0.180121,-0.232593,0.060238,-0.088828 +-0.118700,0.137260,-0.183731,-0.235716,0.063293,-0.090082 +-0.118806,0.136506,-0.187130,-0.238755,0.066243,-0.091164 +-0.119001,0.135846,-0.190314,-0.241703,0.069085,-0.092066 +-0.119288,0.135280,-0.193281,-0.244553,0.071816,-0.092782 +-0.119669,0.134806,-0.196025,-0.247299,0.074434,-0.093304 +-0.120147,0.134421,-0.198547,-0.249934,0.076937,-0.093628 +-0.120723,0.134125,-0.200842,-0.252452,0.079322,-0.093746 +-0.121400,0.133914,-0.202910,-0.254848,0.081587,-0.093655 +-0.122180,0.133786,-0.204749,-0.257117,0.083731,-0.093350 +-0.123064,0.133738,-0.206360,-0.259252,0.085751,-0.092827 +-0.124054,0.133767,-0.207743,-0.261249,0.087647,-0.092082 +-0.125150,0.133870,-0.208897,-0.263105,0.089416,-0.091115 +-0.126354,0.134042,-0.209825,-0.264813,0.091058,-0.089921 +-0.127666,0.134280,-0.210528,-0.266372,0.092573,-0.088501 +-0.129087,0.134580,-0.211008,-0.267778,0.093958,-0.086854 +-0.130616,0.134938,-0.211268,-0.269027,0.095213,-0.084978 +-0.132255,0.135349,-0.211310,-0.270117,0.096339,-0.082876 +-0.134003,0.135808,-0.211140,-0.271045,0.097334,-0.080549 +-0.135859,0.136311,-0.210760,-0.271811,0.098199,-0.077997 +-0.137824,0.136852,-0.210175,-0.272412,0.098934,-0.075224 +-0.139895,0.137426,-0.209391,-0.272848,0.099538,-0.072232 +-0.142072,0.138028,-0.208413,-0.273118,0.100013,-0.069026 +-0.144354,0.138653,-0.207246,-0.273221,0.100359,-0.065609 +-0.146740,0.139293,-0.205898,-0.273158,0.100577,-0.061986 +-0.149228,0.139945,-0.204374,-0.272929,0.100667,-0.058164 +-0.151815,0.140602,-0.202682,-0.272535,0.100630,-0.054147 +-0.154501,0.141258,-0.200829,-0.271978,0.100469,-0.049942 +-0.157283,0.141907,-0.198822,-0.271260,0.100183,-0.045557 +-0.160158,0.142543,-0.196670,-0.270382,0.099774,-0.040998 +-0.163123,0.143160,-0.194381,-0.269347,0.099245,-0.036274 +-0.166178,0.143751,-0.191963,-0.268158,0.098596,-0.031394 +-0.169317,0.144312,-0.189426,-0.266817,0.097829,-0.026365 +-0.172539,0.144836,-0.186777,-0.265330,0.096947,-0.021199 +-0.175841,0.145316,-0.184026,-0.263698,0.095950,-0.015903 +-0.179218,0.145746,-0.181183,-0.261928,0.094843,-0.010488 +-0.182668,0.146122,-0.178256,-0.260022,0.093625,-0.004965 +-0.186186,0.146436,-0.175256,-0.257986,0.092300,0.000656 +-0.189770,0.146683,-0.172191,-0.255825,0.090870,0.006363 +-0.193415,0.146858,-0.169072,-0.253545,0.089338,0.012146 +-0.197118,0.146955,-0.165909,-0.251150,0.087706,0.017994 +-0.200874,0.146968,-0.162710,-0.248648,0.085976,0.023893 +-0.204680,0.146892,-0.159485,-0.246043,0.084150,0.029834 +-0.208531,0.146722,-0.156245,-0.243342,0.082233,0.035804 +-0.212424,0.146453,-0.152998,-0.240551,0.080225,0.041791 +-0.216353,0.146080,-0.149755,-0.237678,0.078131,0.047782 +-0.220314,0.145599,-0.146524,-0.234728,0.075952,0.053767 +-0.224304,0.145006,-0.143315,-0.231709,0.073691,0.059733 +-0.228317,0.144297,-0.140137,-0.228627,0.071352,0.065667 +-0.232349,0.143467,-0.136999,-0.225490,0.068936,0.071559 +-0.236396,0.142513,-0.133909,-0.222305,0.066447,0.077396 +-0.240453,0.141432,-0.130876,-0.219079,0.063887,0.083167 +-0.244515,0.140221,-0.127909,-0.215818,0.061259,0.088860 +-0.248579,0.138878,-0.125014,-0.212531,0.058566,0.094464 +-0.252640,0.137399,-0.122200,-0.209224,0.055811,0.099968 +-0.256692,0.135782,-0.119475,-0.205905,0.052995,0.105360 +-0.260733,0.134027,-0.116844,-0.202580,0.050123,0.110632 +-0.264756,0.132131,-0.114315,-0.199256,0.047196,0.115772 +-0.268759,0.130093,-0.111895,-0.195941,0.044217,0.120770 +-0.272737,0.127913,-0.109588,-0.192642,0.041189,0.125618 +-0.276684,0.125589,-0.107402,-0.189364,0.038114,0.130306 +-0.280598,0.123123,-0.105340,-0.186114,0.034995,0.134825 +-0.284474,0.120514,-0.103409,-0.182900,0.031834,0.139167 +-0.288308,0.117763,-0.101611,-0.179725,0.028634,0.143326 +-0.292097,0.114870,-0.099951,-0.176598,0.025396,0.147292 +-0.295835,0.111838,-0.098434,-0.173523,0.022124,0.151060 +-0.299520,0.108667,-0.097061,-0.170506,0.018819,0.154624 +-0.303147,0.105360,-0.095835,-0.167552,0.015485,0.157978 +-0.306713,0.101918,-0.094759,-0.164667,0.012121,0.161116 +-0.310216,0.098346,-0.093834,-0.161854,0.008732,0.164035 +-0.313650,0.094646,-0.093063,-0.159118,0.005319,0.166730 +-0.317013,0.090820,-0.092444,-0.156463,0.001884,0.169197 +-0.320303,0.086874,-0.091980,-0.153893,-0.001571,0.171436 +-0.323515,0.082811,-0.091669,-0.151412,-0.005044,0.173442 +-0.326647,0.078635,-0.091512,-0.149022,-0.008533,0.175215 +-0.329697,0.074351,-0.091508,-0.146727,-0.012037,0.176753 +-0.332661,0.069964,-0.091655,-0.144528,-0.015554,0.178057 +-0.335538,0.065480,-0.091951,-0.142428,-0.019081,0.179127 +-0.338324,0.060904,-0.092394,-0.140429,-0.022618,0.179963 +-0.341019,0.056242,-0.092981,-0.138531,-0.026163,0.180568 +-0.343618,0.051500,-0.093711,-0.136737,-0.029713,0.180943 +-0.346122,0.046684,-0.094578,-0.135045,-0.033269,0.181091 +-0.348528,0.041801,-0.095579,-0.133458,-0.036827,0.181017 +-0.350834,0.036859,-0.096711,-0.131973,-0.040387,0.180722 +-0.353038,0.031863,-0.097968,-0.130592,-0.043947,0.180213 +-0.355141,0.026822,-0.099345,-0.129313,-0.047505,0.179494 +-0.357139,0.021743,-0.100838,-0.128135,-0.051061,0.178571 +-0.359033,0.016633,-0.102441,-0.127057,-0.054613,0.177451 +-0.360822,0.011501,-0.104149,-0.126075,-0.058159,0.176139 +-0.362504,0.006354,-0.105954,-0.125189,-0.061698,0.174643 +-0.364079,0.001201,-0.107851,-0.124396,-0.065229,0.172971 +-0.365546,-0.003951,-0.109834,-0.123692,-0.068750,0.171131 +-0.366905,-0.009093,-0.111895,-0.123074,-0.072260,0.169131 +-0.368156,-0.014217,-0.114028,-0.122539,-0.075758,0.166981 +-0.369299,-0.019315,-0.116225,-0.122083,-0.079242,0.164689 +-0.370333,-0.024377,-0.118479,-0.121702,-0.082711,0.162266 +-0.371260,-0.029396,-0.120783,-0.121390,-0.086163,0.159722 +-0.372078,-0.034362,-0.123129,-0.121145,-0.089597,0.157066 +-0.372788,-0.039269,-0.125510,-0.120960,-0.093012,0.154311 +-0.373392,-0.044107,-0.127917,-0.120831,-0.096406,0.151465 +-0.373889,-0.048867,-0.130344,-0.120751,-0.099777,0.148542 +-0.374280,-0.053542,-0.132782,-0.120717,-0.103125,0.145551 +-0.374565,-0.058124,-0.135224,-0.120721,-0.106447,0.142505 +-0.374747,-0.062604,-0.137661,-0.120757,-0.109742,0.139415 +-0.374825,-0.066974,-0.140087,-0.120821,-0.113008,0.136293 +-0.374800,-0.071227,-0.142493,-0.120905,-0.116244,0.133150 +-0.374674,-0.075355,-0.144872,-0.121003,-0.119448,0.129999 +-0.374449,-0.079350,-0.147217,-0.121109,-0.122618,0.126851 +-0.374124,-0.083206,-0.149520,-0.121217,-0.125752,0.123718 +-0.373702,-0.086915,-0.151773,-0.121319,-0.128849,0.120611 +-0.373184,-0.090470,-0.153971,-0.121410,-0.131907,0.117543 +-0.372571,-0.093865,-0.156105,-0.121482,-0.134924,0.114524 +-0.371864,-0.097093,-0.158170,-0.121530,-0.137897,0.111567 +-0.371067,-0.100149,-0.160159,-0.121546,-0.140825,0.108682 +-0.370178,-0.103027,-0.162066,-0.121525,-0.143706,0.105880 +-0.369202,-0.105721,-0.163884,-0.121459,-0.146538,0.103172 +-0.368138,-0.108226,-0.165608,-0.121343,-0.149318,0.100569 +-0.366989,-0.110537,-0.167233,-0.121170,-0.152045,0.098080 +-0.365756,-0.112650,-0.168753,-0.120935,-0.154716,0.095716 +-0.364442,-0.114560,-0.170163,-0.120630,-0.157328,0.093486 +-0.363047,-0.116264,-0.171460,-0.120251,-0.159881,0.091400 +-0.361574,-0.117759,-0.172638,-0.119792,-0.162370,0.089464 +-0.360023,-0.119041,-0.173694,-0.119248,-0.164795,0.087690 +-0.358398,-0.120107,-0.174625,-0.118613,-0.167152,0.086083 +-0.356699,-0.120956,-0.175427,-0.117882,-0.169439,0.084651 +-0.354929,-0.121585,-0.176097,-0.117051,-0.171654,0.083402 +-0.353088,-0.121992,-0.176633,-0.116115,-0.173794,0.082342 +-0.351179,-0.122178,-0.177033,-0.115070,-0.175857,0.081477 +-0.349204,-0.122140,-0.177295,-0.113913,-0.177841,0.080811 +-0.347163,-0.121880,-0.177418,-0.112639,-0.179742,0.080351 +-0.345059,-0.121396,-0.177400,-0.111246,-0.181559,0.080100 +-0.342892,-0.120689,-0.177242,-0.109730,-0.183289,0.080062 +-0.340666,-0.119760,-0.176942,-0.108089,-0.184929,0.080240 +-0.338380,-0.118611,-0.176502,-0.106320,-0.186478,0.080638 +-0.336037,-0.117243,-0.175921,-0.104423,-0.187933,0.081256 +-0.333638,-0.115658,-0.175201,-0.102394,-0.189291,0.082096 +-0.331184,-0.113859,-0.174343,-0.100234,-0.190550,0.083159 +-0.328677,-0.111849,-0.173348,-0.097941,-0.191708,0.084446 +-0.326117,-0.109630,-0.172218,-0.095515,-0.192763,0.085956 +-0.323507,-0.107207,-0.170955,-0.092956,-0.193712,0.087688 +-0.320848,-0.104584,-0.169563,-0.090264,-0.194554,0.089641 +-0.318139,-0.101764,-0.168045,-0.087439,-0.195286,0.091812 +-0.315384,-0.098753,-0.166402,-0.084484,-0.195907,0.094199 +-0.312582,-0.095556,-0.164640,-0.081400,-0.196415,0.096799 +-0.309735,-0.092178,-0.162761,-0.078187,-0.196807,0.099607 +-0.306844,-0.088625,-0.160771,-0.074850,-0.197083,0.102620 +-0.303909,-0.084902,-0.158673,-0.071390,-0.197240,0.105833 +-0.300931,-0.081017,-0.156472,-0.067810,-0.197278,0.109240 +-0.297912,-0.076976,-0.154173,-0.064113,-0.197194,0.112835 +-0.294852,-0.072785,-0.151781,-0.060304,-0.196988,0.116613 +-0.291751,-0.068452,-0.149302,-0.056387,-0.196659,0.120566 +-0.288611,-0.063984,-0.146741,-0.052365,-0.196206,0.124687 +-0.285432,-0.059389,-0.144103,-0.048244,-0.195628,0.128968 +-0.282214,-0.054675,-0.141395,-0.044029,-0.194923,0.133402 +-0.278958,-0.049849,-0.138622,-0.039725,-0.194093,0.137979 +-0.275665,-0.044920,-0.135791,-0.035337,-0.193136,0.142692 +-0.272335,-0.039896,-0.132908,-0.030872,-0.192053,0.147530 +-0.268968,-0.034786,-0.129979,-0.026335,-0.190843,0.152485 +-0.265564,-0.029599,-0.127010,-0.021734,-0.189507,0.157546 +-0.262125,-0.024342,-0.124009,-0.017075,-0.188044,0.162703 +-0.258650,-0.019025,-0.120980,-0.012365,-0.186456,0.167947 +-0.255140,-0.013658,-0.117932,-0.007611,-0.184743,0.173267 +-0.251594,-0.008247,-0.114870,-0.002820,-0.182907,0.178651 +-0.248014,-0.002804,-0.111801,0.002001,-0.180947,0.184090 +-0.244398,0.002663,-0.108732,0.006843,-0.178867,0.189573 +-0.240748,0.008145,-0.105668,0.011698,-0.176666,0.195088 +-0.237063,0.013634,-0.102615,0.016560,-0.174347,0.200624 +-0.233344,0.019120,-0.099582,0.021420,-0.171912,0.206170 +-0.229591,0.024593,-0.096572,0.026269,-0.169363,0.211716 +-0.225803,0.030046,-0.093593,0.031101,-0.166702,0.217249 +-0.221981,0.035469,-0.090649,0.035906,-0.163931,0.222760 +-0.218125,0.040854,-0.087748,0.040677,-0.161054,0.228236 +-0.214235,0.046192,-0.084894,0.045405,-0.158073,0.233667 +-0.210310,0.051475,-0.082093,0.050082,-0.154992,0.239042 +-0.206352,0.056694,-0.079350,0.054701,-0.151813,0.244351 +-0.202360,0.061841,-0.076670,0.059252,-0.148540,0.249583 +-0.198334,0.066908,-0.074057,0.063729,-0.145178,0.254729 +-0.194274,0.071888,-0.071517,0.068123,-0.141728,0.259777 +-0.190180,0.076772,-0.069054,0.072427,-0.138197,0.264718 +-0.186052,0.081554,-0.066671,0.076632,-0.134587,0.269543 +-0.181891,0.086226,-0.064373,0.080732,-0.130904,0.274242 +-0.177697,0.090782,-0.062163,0.084720,-0.127152,0.278807 +-0.173469,0.095214,-0.060044,0.088588,-0.123335,0.283230 +-0.169207,0.099517,-0.058020,0.092329,-0.119459,0.287501 +-0.164913,0.103684,-0.056092,0.095936,-0.115528,0.291613 +-0.160585,0.107709,-0.054265,0.099404,-0.111547,0.295560 +-0.156225,0.111588,-0.052540,0.102726,-0.107523,0.299332 +-0.151832,0.115314,-0.050918,0.105896,-0.103460,0.302926 +-0.147407,0.118883,-0.049402,0.108909,-0.099363,0.306333 +-0.142950,0.122290,-0.047992,0.111759,-0.095239,0.309548 +-0.138461,0.125532,-0.046691,0.114442,-0.091093,0.312566 +-0.133940,0.128603,-0.045498,0.116952,-0.086931,0.315383 +-0.129389,0.131501,-0.044414,0.119285,-0.082759,0.317994 +-0.124806,0.134222,-0.043439,0.121438,-0.078583,0.320394 +-0.120194,0.136764,-0.042574,0.123406,-0.074408,0.322581 +-0.115552,0.139123,-0.041818,0.125186,-0.070241,0.324552 +-0.110880,0.141298,-0.041169,0.126776,-0.066089,0.326304 +-0.106179,0.143286,-0.040629,0.128172,-0.061956,0.327835 +-0.101450,0.145087,-0.040194,0.129373,-0.057849,0.329145 +-0.096694,0.146699,-0.039864,0.130376,-0.053775,0.330231 +-0.091910,0.148120,-0.039638,0.131180,-0.049739,0.331093 +-0.087100,0.149352,-0.039513,0.131784,-0.045748,0.331732 +-0.082264,0.150392,-0.039488,0.132187,-0.041808,0.332147 +-0.077403,0.151243,-0.039560,0.132389,-0.037924,0.332341 +-0.072518,0.151903,-0.039726,0.132390,-0.034102,0.332313 +-0.067610,0.152375,-0.039984,0.132190,-0.030350,0.332065 +-0.062678,0.152658,-0.040332,0.131790,-0.026672,0.331601 +-0.057725,0.152756,-0.040766,0.131191,-0.023074,0.330922 +-0.052750,0.152669,-0.041283,0.130394,-0.019561,0.330032 +-0.047756,0.152399,-0.041879,0.129402,-0.016140,0.328933 +-0.042742,0.151949,-0.042552,0.128217,-0.012816,0.327631 +-0.037711,0.151322,-0.043298,0.126841,-0.009594,0.326128 +-0.032662,0.150520,-0.044112,0.125277,-0.006479,0.324429 +-0.027597,0.149548,-0.044993,0.123528,-0.003476,0.322539 +-0.022516,0.148407,-0.045935,0.121597,-0.000590,0.320463 +-0.017422,0.147103,-0.046935,0.119490,0.002174,0.318206 +-0.012315,0.145638,-0.047988,0.117209,0.004812,0.315774 +-0.007196,0.144018,-0.049092,0.114758,0.007320,0.313173 +-0.002066,0.142247,-0.050242,0.112144,0.009693,0.310409 +0.003074,0.140328,-0.051435,0.109370,0.011929,0.307487 +0.008221,0.138268,-0.052665,0.106441,0.014022,0.304415 +0.013376,0.136071,-0.053930,0.103364,0.015970,0.301200 +0.018537,0.133742,-0.055226,0.100142,0.017770,0.297846 +0.023703,0.131287,-0.056548,0.096784,0.019418,0.294362 +0.028872,0.128711,-0.057893,0.093293,0.020913,0.290755 +0.034043,0.126020,-0.059258,0.089677,0.022251,0.287031 +0.039215,0.123219,-0.060638,0.085941,0.023430,0.283197 +0.044387,0.120315,-0.062031,0.082092,0.024449,0.279260 +0.049557,0.117313,-0.063433,0.078136,0.025305,0.275227 +0.054724,0.114219,-0.064840,0.074080,0.025998,0.271106 +0.059887,0.111040,-0.066250,0.069930,0.026527,0.266902 +0.065044,0.107782,-0.067660,0.065694,0.026890,0.262624 +0.070195,0.104450,-0.069066,0.061378,0.027087,0.258277 +0.075337,0.101051,-0.070467,0.056988,0.027117,0.253868 +0.080469,0.097592,-0.071859,0.052531,0.026981,0.249403 +0.085590,0.094078,-0.073241,0.048015,0.026680,0.244890 +0.090699,0.090516,-0.074609,0.043445,0.026213,0.240333 +0.095794,0.086913,-0.075963,0.038829,0.025581,0.235739 +0.100874,0.083273,-0.077301,0.034173,0.024786,0.231115 +0.105938,0.079605,-0.078620,0.029484,0.023829,0.226464 +0.110984,0.075912,-0.079919,0.024768,0.022712,0.221793 +0.116010,0.072203,-0.081198,0.020031,0.021436,0.217106 +0.121016,0.068483,-0.082455,0.015279,0.020003,0.212409 +0.126000,0.064757,-0.083689,0.010520,0.018418,0.207706 +0.130960,0.061033,-0.084900,0.005758,0.016681,0.203000 +0.135896,0.057314,-0.086087,0.000999,0.014796,0.198297 +0.140805,0.053608,-0.087250,-0.003751,0.012765,0.193599 +0.145687,0.049919,-0.088389,-0.008486,0.010594,0.188910 +0.150540,0.046254,-0.089504,-0.013202,0.008285,0.184232 +0.155362,0.042617,-0.090596,-0.017894,0.005841,0.179570 +0.160153,0.039014,-0.091665,-0.022556,0.003268,0.174923 +0.164911,0.035449,-0.092711,-0.027184,0.000570,0.170296 +0.169633,0.031928,-0.093736,-0.031774,-0.002250,0.165689 +0.174320,0.028455,-0.094741,-0.036322,-0.005187,0.161104 +0.178970,0.025036,-0.095726,-0.040824,-0.008234,0.156542 +0.183580,0.021674,-0.096693,-0.045276,-0.011389,0.152003 +0.188150,0.018373,-0.097643,-0.049675,-0.014645,0.147488 +0.192678,0.015139,-0.098579,-0.054018,-0.017997,0.142997 +0.197163,0.011974,-0.099501,-0.058303,-0.021440,0.138530 +0.201603,0.008883,-0.100412,-0.062526,-0.024968,0.134085 +0.205998,0.005869,-0.101313,-0.066686,-0.028576,0.129663 +0.210344,0.002936,-0.102206,-0.070780,-0.032257,0.125262 +0.214641,0.000087,-0.103094,-0.074807,-0.036007,0.120881 +0.218888,-0.002675,-0.103978,-0.078765,-0.039818,0.116517 +0.223082,-0.005347,-0.104861,-0.082654,-0.043686,0.112170 +0.227223,-0.007926,-0.105745,-0.086472,-0.047604,0.107836 +0.231308,-0.010411,-0.106632,-0.090218,-0.051567,0.103514 +0.235337,-0.012797,-0.107524,-0.093893,-0.055567,0.099201 +0.239307,-0.015083,-0.108424,-0.097496,-0.059600,0.094894 +0.243218,-0.017268,-0.109334,-0.101027,-0.063659,0.090589 +0.247067,-0.019348,-0.110256,-0.104487,-0.067738,0.086285 +0.250852,-0.021323,-0.111192,-0.107875,-0.071831,0.081977 +0.254573,-0.023191,-0.112144,-0.111194,-0.075932,0.077663 +0.258227,-0.024950,-0.113115,-0.114443,-0.080035,0.073338 +0.261814,-0.026599,-0.114106,-0.117625,-0.084135,0.069000 +0.265330,-0.028137,-0.115119,-0.120740,-0.088226,0.064644 +0.268775,-0.029563,-0.116157,-0.123790,-0.092302,0.060266 +0.272147,-0.030877,-0.117220,-0.126777,-0.096357,0.055864 +0.275444,-0.032077,-0.118310,-0.129703,-0.100386,0.051434 +0.278665,-0.033163,-0.119429,-0.132569,-0.104384,0.046971 +0.281807,-0.034135,-0.120578,-0.135378,-0.108346,0.042472 +0.284869,-0.034992,-0.121758,-0.138133,-0.112267,0.037933 +0.287848,-0.035735,-0.122970,-0.140835,-0.116141,0.033351 +0.290745,-0.036362,-0.124214,-0.143488,-0.119964,0.028723 +0.293555,-0.036875,-0.125492,-0.146093,-0.123732,0.024045 +0.296278,-0.037274,-0.126804,-0.148654,-0.127440,0.019314 +0.298912,-0.037558,-0.128149,-0.151173,-0.131083,0.014528 +0.301455,-0.037729,-0.129528,-0.153653,-0.134659,0.009682 +0.303906,-0.037786,-0.130941,-0.156096,-0.138163,0.004775 +0.306261,-0.037730,-0.132387,-0.158507,-0.141591,-0.000196 +0.308520,-0.037562,-0.133865,-0.160886,-0.144940,-0.005233 +0.310680,-0.037283,-0.135375,-0.163238,-0.148208,-0.010338 +0.312740,-0.036893,-0.136916,-0.165565,-0.151391,-0.015512 +0.314698,-0.036393,-0.138485,-0.167869,-0.154486,-0.020757 +0.316552,-0.035784,-0.140082,-0.170153,-0.157490,-0.026075 +0.318299,-0.035068,-0.141705,-0.172421,-0.160403,-0.031465 +0.319940,-0.034245,-0.143351,-0.174673,-0.163221,-0.036929 +0.321470,-0.033316,-0.145018,-0.176914,-0.165943,-0.042466 +0.322890,-0.032283,-0.146704,-0.179144,-0.168568,-0.048076 +0.324196,-0.031146,-0.148406,-0.181367,-0.171093,-0.053759 +0.325387,-0.029908,-0.150121,-0.183585,-0.173519,-0.059514 +0.326461,-0.028568,-0.151846,-0.185798,-0.175843,-0.065340 +0.327417,-0.027129,-0.153577,-0.188010,-0.178066,-0.071234 +0.328253,-0.025592,-0.155311,-0.190221,-0.180187,-0.077196 +0.328968,-0.023958,-0.157044,-0.192434,-0.182206,-0.083222 +0.329558,-0.022229,-0.158771,-0.194649,-0.184123,-0.089310 +0.330024,-0.020406,-0.160489,-0.196868,-0.185938,-0.095457 +0.330364,-0.018490,-0.162194,-0.199091,-0.187652,-0.101658 +0.330575,-0.016483,-0.163880,-0.201319,-0.189265,-0.107912 +0.330657,-0.014387,-0.165543,-0.203553,-0.190779,-0.114212 +0.330608,-0.012202,-0.167179,-0.205793,-0.192194,-0.120555 +0.330427,-0.009931,-0.168781,-0.208039,-0.193513,-0.126935 +0.330112,-0.007576,-0.170346,-0.210292,-0.194735,-0.133348 +0.329663,-0.005136,-0.171867,-0.212550,-0.195864,-0.139787 +0.329078,-0.002615,-0.173340,-0.214813,-0.196901,-0.146247 +0.328356,-0.000013,-0.174760,-0.217081,-0.197847,-0.152721 +0.327497,0.002667,-0.176120,-0.219352,-0.198706,-0.159203 +0.326499,0.005424,-0.177415,-0.221626,-0.199479,-0.165685 +0.325361,0.008257,-0.178641,-0.223901,-0.200169,-0.172161 +0.324084,0.011163,-0.179790,-0.226175,-0.200779,-0.178623 +0.322666,0.014142,-0.180859,-0.228447,-0.201311,-0.185063 +0.321106,0.017190,-0.181841,-0.230714,-0.201767,-0.191473 +0.319405,0.020308,-0.182730,-0.232975,-0.202152,-0.197846 +0.317562,0.023492,-0.183523,-0.235227,-0.202468,-0.204172 +0.315578,0.026742,-0.184212,-0.237468,-0.202717,-0.210444 +0.313451,0.030055,-0.184793,-0.239694,-0.202904,-0.216652 +0.311181,0.033429,-0.185261,-0.241904,-0.203031,-0.222788 +0.308771,0.036864,-0.185611,-0.244093,-0.203102,-0.228843 +0.306218,0.040356,-0.185838,-0.246259,-0.203120,-0.234807 +0.303524,0.043904,-0.185938,-0.248398,-0.203087,-0.240672 +0.300690,0.047505,-0.185905,-0.250508,-0.203009,-0.246429 +0.297716,0.051159,-0.185735,-0.252583,-0.202887,-0.252068 +0.294603,0.054863,-0.185425,-0.254621,-0.202726,-0.257580 +0.291352,0.058614,-0.184970,-0.256618,-0.202528,-0.262957 +0.287964,0.062412,-0.184367,-0.258569,-0.202297,-0.268189 +0.284440,0.066253,-0.183612,-0.260472,-0.202035,-0.273267 +0.280782,0.070135,-0.182703,-0.262322,-0.201747,-0.278182 +0.276991,0.074056,-0.181636,-0.264114,-0.201436,-0.282926 +0.273070,0.078014,-0.180409,-0.265845,-0.201103,-0.287490 +0.269019,0.082007,-0.179020,-0.267512,-0.200753,-0.291866 +0.264840,0.086032,-0.177466,-0.269108,-0.200389,-0.296045 +0.260537,0.090086,-0.175746,-0.270632,-0.200012,-0.300021 +0.256111,0.094168,-0.173860,-0.272078,-0.199626,-0.303784 +0.251564,0.098273,-0.171806,-0.273443,-0.199233,-0.307328 +0.246900,0.102401,-0.169583,-0.274722,-0.198836,-0.310646 +0.242121,0.106548,-0.167192,-0.275912,-0.198437,-0.313731 +0.237230,0.110711,-0.164632,-0.277010,-0.198039,-0.316577 +0.232229,0.114888,-0.161905,-0.278011,-0.197642,-0.319178 +0.227122,0.119076,-0.159011,-0.278911,-0.197250,-0.321528 +0.221913,0.123271,-0.155952,-0.279709,-0.196864,-0.323621 +0.216605,0.127471,-0.152730,-0.280399,-0.196486,-0.325454 +0.211201,0.131673,-0.149346,-0.280980,-0.196117,-0.327022 +0.205705,0.135873,-0.145804,-0.281447,-0.195757,-0.328321 +0.200121,0.140069,-0.142107,-0.281800,-0.195410,-0.329348 +0.194452,0.144257,-0.138257,-0.282034,-0.195074,-0.330099 +0.188704,0.148434,-0.134260,-0.282148,-0.194752,-0.330574 +0.182880,0.152597,-0.130118,-0.282139,-0.194444,-0.330769 +0.176985,0.156742,-0.125837,-0.282006,-0.194149,-0.330683 +0.171023,0.160866,-0.121422,-0.281747,-0.193869,-0.330317 +0.164998,0.164965,-0.116878,-0.281361,-0.193603,-0.329668 +0.158915,0.169036,-0.112211,-0.280846,-0.193351,-0.328739 +0.152779,0.173076,-0.107426,-0.280201,-0.193114,-0.327530 +0.146595,0.177081,-0.102532,-0.279427,-0.192890,-0.326041 +0.140368,0.181047,-0.097533,-0.278523,-0.192678,-0.324276 +0.134102,0.184971,-0.092438,-0.277488,-0.192479,-0.322237 +0.127804,0.188849,-0.087254,-0.276324,-0.192290,-0.319926 +0.121477,0.192678,-0.081989,-0.275030,-0.192111,-0.317349 +0.115127,0.196453,-0.076650,-0.273608,-0.191941,-0.314508 +0.108759,0.200172,-0.071247,-0.272059,-0.191778,-0.311409 +0.102379,0.203831,-0.065787,-0.270384,-0.191620,-0.308056 +0.095992,0.207425,-0.060280,-0.268585,-0.191466,-0.304457 +0.089603,0.210952,-0.054735,-0.266664,-0.191313,-0.300617 +0.083218,0.214408,-0.049161,-0.264624,-0.191160,-0.296543 +0.076841,0.217790,-0.043568,-0.262468,-0.191004,-0.292243 +0.070479,0.221093,-0.037965,-0.260198,-0.190844,-0.287724 +0.064137,0.224315,-0.032361,-0.257818,-0.190676,-0.282995 +0.057819,0.227452,-0.026768,-0.255332,-0.190499,-0.278065 +0.051532,0.230501,-0.021195,-0.252743,-0.190309,-0.272942 +0.045281,0.233458,-0.015652,-0.250055,-0.190104,-0.267637 +0.039071,0.236320,-0.010149,-0.247274,-0.189881,-0.262159 +0.032906,0.239085,-0.004697,-0.244404,-0.189637,-0.256519 +0.026794,0.241748,0.000695,-0.241449,-0.189370,-0.250727 +0.020737,0.244308,0.006015,-0.238416,-0.189076,-0.244795 +0.014742,0.246761,0.011255,-0.235310,-0.188753,-0.238734 +0.008814,0.249105,0.016403,-0.232135,-0.188397,-0.232555 +0.002956,0.251337,0.021450,-0.228900,-0.188005,-0.226271 +-0.002825,0.253454,0.026386,-0.225608,-0.187574,-0.219893 +-0.008525,0.255455,0.031200,-0.222268,-0.187101,-0.213433 +-0.014141,0.257336,0.035884,-0.218885,-0.186584,-0.206905 +-0.019666,0.259096,0.040428,-0.215466,-0.186018,-0.200320 +-0.025098,0.260734,0.044822,-0.212018,-0.185401,-0.193692 +-0.030432,0.262246,0.049058,-0.208547,-0.184730,-0.187032 +-0.035663,0.263632,0.053126,-0.205062,-0.184002,-0.180354 +-0.040789,0.264890,0.057019,-0.201568,-0.183214,-0.173670 +-0.045805,0.266019,0.060727,-0.198074,-0.182363,-0.166994 +-0.050708,0.267018,0.064243,-0.194586,-0.181446,-0.160337 +-0.055494,0.267885,0.067559,-0.191112,-0.180462,-0.153713 +-0.060160,0.268621,0.070668,-0.187660,-0.179406,-0.147133 +-0.064704,0.269224,0.073563,-0.184236,-0.178277,-0.140610 +-0.069122,0.269695,0.076238,-0.180848,-0.177072,-0.134156 +-0.073411,0.270033,0.078685,-0.177503,-0.175790,-0.127784 +-0.077570,0.270238,0.080901,-0.174209,-0.174427,-0.121504 +-0.081597,0.270310,0.082879,-0.170973,-0.172982,-0.115329 +-0.085488,0.270251,0.084614,-0.167802,-0.171452,-0.109269 +-0.089243,0.270060,0.086102,-0.164703,-0.169838,-0.103335 +-0.092859,0.269739,0.087340,-0.161683,-0.168135,-0.097537 +-0.096336,0.269288,0.088323,-0.158748,-0.166345,-0.091886 +-0.099672,0.268710,0.089049,-0.155906,-0.164464,-0.086391 +-0.102867,0.268005,0.089516,-0.153163,-0.162492,-0.081062 +-0.105919,0.267175,0.089721,-0.150525,-0.160428,-0.075907 +-0.108828,0.266223,0.089663,-0.147998,-0.158272,-0.070935 +-0.111594,0.265151,0.089342,-0.145588,-0.156022,-0.066153 +-0.114217,0.263960,0.088757,-0.143301,-0.153680,-0.061568 +-0.116697,0.262653,0.087907,-0.141141,-0.151243,-0.057188 +-0.119035,0.261234,0.086795,-0.139115,-0.148713,-0.053019 +-0.121231,0.259705,0.085421,-0.137226,-0.146089,-0.049067 +-0.123286,0.258069,0.083786,-0.135479,-0.143373,-0.045335 +-0.125201,0.256330,0.081894,-0.133879,-0.140565,-0.041830 +-0.126979,0.254492,0.079748,-0.132428,-0.137665,-0.038554 +-0.128619,0.252557,0.077349,-0.131132,-0.134674,-0.035512 +-0.130124,0.250530,0.074703,-0.129992,-0.131595,-0.032705 +-0.131497,0.248415,0.071814,-0.129012,-0.128428,-0.030136 +-0.132739,0.246216,0.068686,-0.128195,-0.125175,-0.027807 +-0.133852,0.243937,0.065326,-0.127541,-0.121837,-0.025717 +-0.134840,0.241583,0.061738,-0.127053,-0.118418,-0.023868 +-0.135705,0.239159,0.057930,-0.126733,-0.114918,-0.022258 +-0.136451,0.236669,0.053908,-0.126581,-0.111341,-0.020887 +-0.137080,0.234118,0.049679,-0.126598,-0.107689,-0.019752 +-0.137595,0.231511,0.045251,-0.126783,-0.103964,-0.018852 +-0.138002,0.228853,0.040633,-0.127137,-0.100170,-0.018183 +-0.138302,0.226149,0.035831,-0.127659,-0.096310,-0.017743 +-0.138501,0.223405,0.030856,-0.128348,-0.092386,-0.017525 +-0.138602,0.220626,0.025717,-0.129203,-0.088403,-0.017527 +-0.138610,0.217816,0.020422,-0.130222,-0.084364,-0.017742 +-0.138528,0.214982,0.014983,-0.131401,-0.080273,-0.018164 +-0.138362,0.212128,0.009408,-0.132740,-0.076133,-0.018787 +-0.138116,0.209261,0.003709,-0.134235,-0.071948,-0.019605 +-0.137795,0.206385,-0.002105,-0.135882,-0.067723,-0.020609 +-0.137403,0.203507,-0.008021,-0.137679,-0.063461,-0.021791 +-0.136946,0.200630,-0.014030,-0.139620,-0.059168,-0.023143 +-0.136428,0.197761,-0.020120,-0.141701,-0.054847,-0.024657 +-0.135855,0.194905,-0.026279,-0.143918,-0.050502,-0.026322 +-0.135232,0.192067,-0.032497,-0.146265,-0.046139,-0.028129 +-0.134564,0.189252,-0.038761,-0.148738,-0.041762,-0.030069 +-0.133857,0.186465,-0.045060,-0.151329,-0.037376,-0.032130 +-0.133116,0.183712,-0.051382,-0.154035,-0.032984,-0.034302 +-0.132345,0.180997,-0.057716,-0.156847,-0.028594,-0.036574 +-0.131551,0.178325,-0.064050,-0.159760,-0.024208,-0.038934 +-0.130740,0.175700,-0.070373,-0.162766,-0.019831,-0.041372 +-0.129915,0.173127,-0.076672,-0.165860,-0.015470,-0.043874 +-0.129083,0.170610,-0.082937,-0.169032,-0.011128,-0.046431 +-0.128250,0.168154,-0.089155,-0.172277,-0.006810,-0.049029 +-0.127420,0.165762,-0.095317,-0.175587,-0.002521,-0.051657 +-0.126598,0.163438,-0.101410,-0.178953,0.001733,-0.054302 +-0.125791,0.161186,-0.107424,-0.182368,0.005949,-0.056953 +-0.125003,0.159009,-0.113348,-0.185824,0.010122,-0.059596 +-0.124239,0.156911,-0.119173,-0.189313,0.014247,-0.062221 +-0.123505,0.154893,-0.124887,-0.192826,0.018319,-0.064815 +-0.122805,0.152959,-0.130481,-0.196355,0.022333,-0.067366 +-0.122144,0.151112,-0.135946,-0.199893,0.026287,-0.069862 +-0.121527,0.149353,-0.141272,-0.203430,0.030174,-0.072291 +-0.120959,0.147685,-0.146451,-0.206959,0.033991,-0.074643 +-0.120444,0.146108,-0.151474,-0.210471,0.037733,-0.076906 +-0.119986,0.144626,-0.156333,-0.213957,0.041397,-0.079069 +-0.119591,0.143238,-0.161021,-0.217411,0.044979,-0.081121 +-0.119261,0.141946,-0.165529,-0.220823,0.048474,-0.083051 +-0.119001,0.140751,-0.169853,-0.224186,0.051880,-0.084851 +-0.118815,0.139652,-0.173984,-0.227492,0.055192,-0.086510 +-0.118706,0.138650,-0.177918,-0.230733,0.058407,-0.088020 +-0.118678,0.137744,-0.181648,-0.233902,0.061522,-0.089370 +-0.118733,0.136934,-0.185171,-0.236991,0.064533,-0.090553 +-0.118876,0.136220,-0.188481,-0.239993,0.067438,-0.091561 +-0.119109,0.135599,-0.191575,-0.242901,0.070235,-0.092387 +-0.119435,0.135072,-0.194450,-0.245708,0.072919,-0.093023 +-0.119856,0.134635,-0.197102,-0.248409,0.075490,-0.093464 +-0.120374,0.134287,-0.199529,-0.250996,0.077944,-0.093702 +-0.120993,0.134027,-0.201730,-0.253464,0.080279,-0.093734 +-0.121712,0.133851,-0.203703,-0.255808,0.082494,-0.093554 +-0.122535,0.133757,-0.205447,-0.258021,0.084586,-0.093159 +-0.123463,0.133741,-0.206963,-0.260100,0.086555,-0.092544 +-0.124497,0.133801,-0.208251,-0.262039,0.088398,-0.091707 +-0.125638,0.133933,-0.209311,-0.263833,0.090115,-0.090646 +-0.126887,0.134133,-0.210145,-0.265480,0.091704,-0.089358 +-0.128244,0.134398,-0.210755,-0.266976,0.093164,-0.087843 +-0.129710,0.134723,-0.211142,-0.268316,0.094496,-0.086101 +-0.131285,0.135103,-0.211311,-0.269500,0.095697,-0.084131 +-0.132969,0.135535,-0.211265,-0.270523,0.096769,-0.081935 +-0.134762,0.136013,-0.211007,-0.271384,0.097710,-0.079514 +-0.136663,0.136532,-0.210541,-0.272081,0.098520,-0.076870 +-0.138672,0.137087,-0.209873,-0.272614,0.099201,-0.074005 +-0.140788,0.137674,-0.209007,-0.272980,0.099752,-0.070924 +-0.143009,0.138286,-0.207950,-0.273181,0.100173,-0.067629 +-0.145334,0.138917,-0.206707,-0.273215,0.100465,-0.064126 +-0.147763,0.139564,-0.205285,-0.273082,0.100630,-0.060420 +-0.150292,0.140218,-0.203690,-0.272785,0.100667,-0.056516 +-0.152921,0.140875,-0.201930,-0.272323,0.100578,-0.052420 +-0.155647,0.141529,-0.200012,-0.271699,0.100365,-0.048139 +-0.158467,0.142173,-0.197944,-0.270914,0.100028,-0.043681 +-0.161381,0.142802,-0.195734,-0.269970,0.099569,-0.039053 +-0.164384,0.143409,-0.193390,-0.268871,0.098989,-0.034262 +-0.167474,0.143989,-0.190922,-0.267618,0.098291,-0.029319 +-0.170648,0.144535,-0.188337,-0.266216,0.097476,-0.024232 +-0.173903,0.145041,-0.185645,-0.264668,0.096546,-0.019010 +-0.177237,0.145501,-0.182854,-0.262978,0.095503,-0.013664 +-0.180644,0.145910,-0.179975,-0.261151,0.094349,-0.008203 +-0.184123,0.146260,-0.177017,-0.259191,0.093087,-0.002638 +-0.187669,0.146547,-0.173988,-0.257102,0.091718,0.003020 +-0.191279,0.146765,-0.170900,-0.254891,0.090245,0.008760 +-0.194949,0.146908,-0.167761,-0.252562,0.088671,0.014572 +-0.198675,0.146970,-0.164581,-0.250122,0.086998,0.020442 +-0.202452,0.146947,-0.161371,-0.247576,0.085228,0.026361 +-0.206277,0.146832,-0.158138,-0.244930,0.083364,0.032315 +-0.210146,0.146622,-0.154894,-0.242191,0.081408,0.038293 +-0.214054,0.146311,-0.151648,-0.239365,0.079364,0.044283 +-0.217997,0.145894,-0.148409,-0.236459,0.077234,0.050274 +-0.221971,0.145367,-0.145186,-0.233480,0.075021,0.056252 +-0.225971,0.144726,-0.141989,-0.230434,0.072727,0.062206 +-0.229992,0.143966,-0.138826,-0.227328,0.070356,0.068124 +-0.234031,0.143085,-0.135707,-0.224171,0.067909,0.073995 +-0.238083,0.142079,-0.132640,-0.220967,0.065390,0.079806 +-0.242142,0.140945,-0.129633,-0.217726,0.062802,0.085546 +-0.246206,0.139679,-0.126695,-0.214453,0.060147,0.091203 +-0.250269,0.138279,-0.123833,-0.211157,0.057427,0.096766 +-0.254327,0.136743,-0.121055,-0.207844,0.054647,0.102225 +-0.258375,0.135069,-0.118368,-0.204522,0.051807,0.107569 +-0.262409,0.133255,-0.115779,-0.201197,0.048912,0.112787 +-0.266424,0.131300,-0.113295,-0.197876,0.045963,0.117869 +-0.270417,0.129203,-0.110921,-0.194566,0.042963,0.122806 +-0.274383,0.126964,-0.108664,-0.191275,0.039915,0.127588 +-0.278317,0.124581,-0.106529,-0.188008,0.036822,0.132207 +-0.282216,0.122055,-0.104521,-0.184772,0.033685,0.136653 +-0.286075,0.119387,-0.102644,-0.181574,0.030507,0.140920 +-0.289890,0.116576,-0.100904,-0.178418,0.027291,0.144999 +-0.293658,0.113625,-0.099303,-0.175312,0.024039,0.148884 +-0.297374,0.110535,-0.097845,-0.172261,0.020753,0.152568 +-0.301036,0.107307,-0.096533,-0.169269,0.017436,0.156045 +-0.304638,0.103944,-0.095369,-0.166343,0.014089,0.159310 +-0.308178,0.100448,-0.094356,-0.163487,0.010715,0.162357 +-0.311653,0.096822,-0.093495,-0.160706,0.007315,0.165183 +-0.315058,0.093069,-0.092787,-0.158003,0.003893,0.167784 +-0.318391,0.089193,-0.092232,-0.155383,0.000449,0.170157 +-0.321649,0.085198,-0.091832,-0.152850,-0.003013,0.172298 +-0.324828,0.081087,-0.091586,-0.150407,-0.006494,0.174208 +-0.327926,0.076866,-0.091492,-0.148056,-0.009989,0.175883 +-0.330941,0.072538,-0.091551,-0.145800,-0.013499,0.177324 +-0.333869,0.068110,-0.091760,-0.143643,-0.017020,0.178530 +-0.336708,0.063587,-0.092117,-0.141584,-0.020552,0.179503 +-0.339457,0.058975,-0.092621,-0.139627,-0.024092,0.180243 +-0.342112,0.054278,-0.093268,-0.137772,-0.027639,0.180752 +-0.344672,0.049505,-0.094055,-0.136020,-0.031192,0.181032 +-0.347135,0.044660,-0.094978,-0.134372,-0.034749,0.181087 +-0.349499,0.039752,-0.096034,-0.132828,-0.038308,0.180920 +-0.351763,0.034787,-0.097218,-0.131386,-0.041868,0.180536 +-0.353926,0.029771,-0.098526,-0.130048,-0.045427,0.179939 +-0.355985,0.024713,-0.099953,-0.128811,-0.048985,0.179135 +-0.357940,0.019621,-0.101492,-0.127675,-0.052539,0.178129 +-0.359790,0.014501,-0.103139,-0.126637,-0.056089,0.176928 +-0.361534,0.009361,-0.104888,-0.125695,-0.059632,0.175538 +-0.363172,0.004211,-0.106733,-0.124848,-0.063168,0.173968 +-0.364702,-0.000943,-0.108666,-0.124092,-0.066695,0.172225 +-0.366124,-0.006092,-0.110682,-0.123424,-0.070212,0.170318 +-0.367439,-0.011228,-0.112774,-0.122842,-0.073717,0.168254 +-0.368645,-0.016342,-0.114934,-0.122340,-0.077209,0.166044 +-0.369742,-0.021425,-0.117156,-0.121915,-0.080687,0.163696 +-0.370732,-0.026471,-0.119432,-0.121564,-0.084149,0.161222 +-0.371613,-0.031469,-0.121754,-0.121281,-0.087594,0.158630 +-0.372387,-0.036411,-0.124116,-0.121061,-0.091020,0.155931 +-0.373052,-0.041290,-0.126508,-0.120900,-0.094426,0.153137 +-0.373611,-0.046097,-0.128925,-0.120792,-0.097811,0.150258 +-0.374064,-0.050823,-0.131357,-0.120732,-0.101173,0.147305 +-0.374411,-0.055460,-0.133798,-0.120714,-0.104510,0.144290 +-0.374653,-0.060000,-0.136239,-0.120732,-0.107821,0.141224 +-0.374791,-0.064436,-0.138672,-0.120781,-0.111104,0.138120 +-0.374827,-0.068758,-0.141091,-0.120854,-0.114358,0.134987 +-0.374760,-0.072960,-0.143487,-0.120944,-0.117581,0.131840 +-0.374593,-0.077033,-0.145852,-0.121047,-0.120771,0.128688 +-0.374326,-0.080971,-0.148180,-0.121154,-0.123926,0.125545 +-0.373960,-0.084767,-0.150464,-0.121261,-0.127045,0.122421 +-0.373498,-0.088413,-0.152695,-0.121359,-0.130126,0.119329 +-0.372940,-0.091902,-0.154867,-0.121443,-0.133167,0.116280 +-0.372288,-0.095229,-0.156973,-0.121506,-0.136166,0.113286 +-0.371544,-0.098386,-0.159007,-0.121541,-0.139121,0.110357 +-0.370708,-0.101368,-0.160963,-0.121543,-0.142030,0.107505 +-0.369783,-0.104170,-0.162833,-0.121503,-0.144890,0.104741 +-0.368770,-0.106786,-0.164613,-0.121418,-0.147701,0.102076 +-0.367670,-0.109211,-0.166296,-0.121279,-0.150459,0.099519 +-0.366486,-0.111440,-0.167878,-0.121080,-0.153163,0.097081 +-0.365219,-0.113469,-0.169353,-0.120817,-0.155810,0.094772 +-0.363871,-0.115294,-0.170717,-0.120482,-0.158398,0.092600 +-0.362443,-0.116912,-0.171964,-0.120070,-0.160924,0.090576 +-0.360938,-0.118318,-0.173092,-0.119577,-0.163387,0.088706 +-0.359356,-0.119511,-0.174097,-0.118995,-0.165784,0.087000 +-0.357700,-0.120487,-0.174974,-0.118321,-0.168112,0.085465 +-0.355971,-0.121244,-0.175722,-0.117549,-0.170369,0.084109 +-0.354172,-0.121781,-0.176336,-0.116675,-0.172554,0.082938 +-0.352302,-0.122097,-0.176816,-0.115694,-0.174662,0.081958 +-0.350366,-0.122189,-0.177159,-0.114603,-0.176692,0.081175 +-0.348363,-0.122059,-0.177363,-0.113397,-0.178642,0.080595 +-0.346295,-0.121705,-0.177427,-0.112074,-0.180508,0.080221 +-0.344165,-0.121129,-0.177351,-0.110630,-0.182289,0.080058 +-0.341973,-0.120329,-0.177134,-0.109062,-0.183982,0.080110 +-0.339722,-0.119309,-0.176776,-0.107369,-0.185585,0.080379 +-0.337412,-0.118068,-0.176278,-0.105547,-0.187095,0.080868 +-0.335045,-0.116610,-0.175639,-0.103595,-0.188509,0.081578 +-0.332623,-0.114936,-0.174861,-0.101512,-0.189827,0.082511 +-0.330147,-0.113048,-0.173945,-0.099296,-0.191044,0.083668 +-0.327618,-0.110951,-0.172894,-0.096948,-0.192159,0.085047 +-0.325038,-0.108647,-0.171709,-0.094466,-0.193171,0.086650 +-0.322407,-0.106140,-0.170392,-0.091852,-0.194076,0.088474 +-0.319727,-0.103434,-0.168947,-0.089105,-0.194872,0.090518 +-0.316999,-0.100535,-0.167376,-0.086226,-0.195558,0.092779 +-0.314224,-0.097446,-0.165683,-0.083217,-0.196132,0.095255 +-0.311403,-0.094173,-0.163872,-0.080079,-0.196592,0.097942 +-0.308538,-0.090721,-0.161947,-0.076814,-0.196936,0.100836 +-0.305628,-0.087096,-0.159911,-0.073425,-0.197163,0.103933 +-0.302675,-0.083305,-0.157770,-0.069915,-0.197270,0.107227 +-0.299680,-0.079354,-0.155527,-0.066286,-0.197258,0.110713 +-0.296644,-0.075250,-0.153189,-0.062542,-0.197124,0.114385 +-0.293567,-0.070999,-0.150760,-0.058688,-0.196867,0.118237 +-0.290450,-0.066609,-0.148246,-0.054726,-0.196486,0.122260 +-0.287293,-0.062087,-0.145652,-0.050663,-0.195981,0.126449 +-0.284098,-0.057442,-0.142985,-0.046502,-0.195350,0.130795 +-0.280864,-0.052680,-0.140249,-0.042249,-0.194593,0.135289 +-0.277593,-0.047810,-0.137451,-0.037909,-0.193711,0.139924 +-0.274284,-0.042841,-0.134597,-0.033488,-0.192701,0.144690 +-0.270938,-0.037780,-0.131694,-0.028993,-0.191565,0.149578 +-0.267556,-0.032637,-0.128748,-0.024429,-0.190302,0.154578 +-0.264138,-0.027420,-0.125765,-0.019803,-0.188913,0.159680 +-0.260684,-0.022137,-0.122752,-0.015121,-0.187399,0.164875 +-0.257194,-0.016798,-0.119714,-0.010392,-0.185759,0.170151 +-0.253669,-0.011411,-0.116660,-0.005622,-0.183994,0.175499 +-0.250109,-0.005986,-0.113594,-0.000817,-0.182106,0.180908 +-0.246514,-0.000532,-0.110524,0.004013,-0.180096,0.186367 +-0.242884,0.004943,-0.107456,0.008861,-0.177966,0.191864 +-0.239219,0.010429,-0.104396,0.013721,-0.175716,0.197389 +-0.235520,0.015917,-0.101351,0.018582,-0.173348,0.202931 +-0.231787,0.021399,-0.098326,0.023439,-0.170865,0.208478 +-0.228019,0.026865,-0.095328,0.028282,-0.168269,0.214020 +-0.224217,0.032306,-0.092363,0.033103,-0.165562,0.219545 +-0.220381,0.037715,-0.089437,0.037895,-0.162747,0.225043 +-0.216511,0.043081,-0.086555,0.042649,-0.159827,0.230501 +-0.212606,0.048397,-0.083722,0.047357,-0.156803,0.235911 +-0.208668,0.053654,-0.080944,0.052011,-0.153681,0.241260 +-0.204695,0.058844,-0.078227,0.056603,-0.150463,0.246538 +-0.200689,0.063959,-0.075574,0.061124,-0.147152,0.251735 +-0.196649,0.068991,-0.072991,0.065567,-0.143753,0.256841 +-0.192575,0.073932,-0.070483,0.069925,-0.140269,0.261846 +-0.188467,0.078774,-0.068052,0.074189,-0.136705,0.266740 +-0.184325,0.083512,-0.065704,0.078351,-0.133064,0.271514 +-0.180150,0.088136,-0.063442,0.082405,-0.129351,0.276158 +-0.175942,0.092641,-0.061270,0.086344,-0.125571,0.280665 +-0.171700,0.097020,-0.059190,0.090160,-0.121729,0.285025 +-0.167425,0.101267,-0.057206,0.093846,-0.117830,0.289232 +-0.163116,0.105376,-0.055320,0.097396,-0.113877,0.293276 +-0.158775,0.109341,-0.053535,0.100804,-0.109878,0.297151 +-0.154401,0.113157,-0.051852,0.104064,-0.105837,0.300850 +-0.149995,0.116818,-0.050274,0.107169,-0.101759,0.304366 +-0.145556,0.120320,-0.048802,0.110115,-0.097650,0.307694 +-0.141086,0.123659,-0.047438,0.112896,-0.093517,0.310828 +-0.136584,0.126830,-0.046181,0.115507,-0.089363,0.313763 +-0.132050,0.129830,-0.045034,0.117945,-0.085196,0.316494 +-0.127486,0.132655,-0.043995,0.120203,-0.081022,0.319018 +-0.122891,0.135301,-0.043066,0.122279,-0.076845,0.321330 +-0.118266,0.137767,-0.042246,0.124170,-0.072673,0.323427 +-0.113612,0.140050,-0.041535,0.125871,-0.068512,0.325307 +-0.108928,0.142148,-0.040931,0.127380,-0.064366,0.326968 +-0.104215,0.144058,-0.040435,0.128695,-0.060244,0.328407 +-0.099475,0.145780,-0.040044,0.129814,-0.056150,0.329624 +-0.094707,0.147313,-0.039758,0.130734,-0.052091,0.330617 +-0.089912,0.148656,-0.039574,0.131455,-0.048073,0.331386 +-0.085091,0.149808,-0.039491,0.131976,-0.044102,0.331932 +-0.080245,0.150769,-0.039506,0.132295,-0.040185,0.332255 +-0.075374,0.151541,-0.039618,0.132414,-0.036326,0.332356 +-0.070479,0.152122,-0.039823,0.132331,-0.032533,0.332236 +-0.065561,0.152516,-0.040118,0.132047,-0.028810,0.331898 +-0.060620,0.152722,-0.040502,0.131565,-0.025165,0.331345 +-0.055658,0.152742,-0.040971,0.130883,-0.021602,0.330577 +-0.050675,0.152578,-0.041521,0.130005,-0.018127,0.329600 +-0.045673,0.152234,-0.042150,0.128933,-0.014745,0.328416 +-0.040651,0.151710,-0.042853,0.127668,-0.011463,0.327029 +-0.035612,0.151010,-0.043628,0.126213,-0.008285,0.325444 +-0.030556,0.150136,-0.044471,0.124571,-0.005216,0.323665 +-0.025485,0.149093,-0.045377,0.122747,-0.002261,0.321697 +-0.020399,0.147884,-0.046344,0.120742,0.000575,0.319545 +-0.015299,0.146513,-0.047367,0.118562,0.003287,0.317215 +-0.010187,0.144983,-0.048442,0.116209,0.005871,0.314712 +-0.005063,0.143299,-0.049565,0.113690,0.008324,0.312042 +0.000071,0.141466,-0.050733,0.111009,0.010640,0.309212 +0.005214,0.139488,-0.051942,0.108170,0.012817,0.306227 +0.010365,0.137370,-0.053187,0.105179,0.014850,0.303095 +0.015523,0.135118,-0.054466,0.102041,0.016737,0.299821 +0.020686,0.132736,-0.055773,0.098762,0.018474,0.296412 +0.025853,0.130230,-0.057105,0.095347,0.020059,0.292876 +0.031023,0.127605,-0.058459,0.091803,0.021489,0.289219 +0.036195,0.124868,-0.059830,0.088137,0.022761,0.285449 +0.041367,0.122023,-0.061216,0.084353,0.023874,0.281571 +0.046538,0.119078,-0.062613,0.080459,0.024825,0.277594 +0.051707,0.116037,-0.064018,0.076460,0.025614,0.273523 +0.056873,0.112907,-0.065427,0.072365,0.026238,0.269367 +0.062033,0.109694,-0.066837,0.068178,0.026698,0.265131 +0.067188,0.106404,-0.068245,0.063908,0.026992,0.260823 +0.072335,0.103044,-0.069650,0.059560,0.027119,0.256449 +0.077473,0.099619,-0.071047,0.055141,0.027081,0.252017 +0.082601,0.096136,-0.072435,0.050659,0.026876,0.247531 +0.087717,0.092602,-0.073812,0.046120,0.026506,0.242999 +0.092821,0.089022,-0.075175,0.041530,0.025970,0.238426 +0.097910,0.085403,-0.076522,0.036897,0.025270,0.233819 +0.102983,0.081750,-0.077852,0.032226,0.024407,0.229183 +0.108039,0.078071,-0.079163,0.027525,0.023383,0.224523 +0.113077,0.074371,-0.080454,0.022799,0.022200,0.219845 +0.118095,0.070657,-0.081723,0.018055,0.020859,0.215153 +0.123092,0.066933,-0.082971,0.013300,0.019362,0.210453 +0.128066,0.063207,-0.084195,0.008539,0.017713,0.205748 +0.133017,0.059484,-0.085396,0.003777,0.015914,0.201043 +0.137942,0.055770,-0.086574,-0.000979,0.013968,0.196341 +0.142840,0.052071,-0.087727,-0.005723,0.011879,0.191647 +0.147710,0.048391,-0.088856,-0.010451,0.009650,0.186962 +0.152550,0.044737,-0.089961,-0.015157,0.007284,0.182291 +0.157359,0.041113,-0.091044,-0.019837,0.004786,0.177634 +0.162137,0.037526,-0.092103,-0.024485,0.002161,0.172996 +0.166880,0.033979,-0.093140,-0.029098,-0.000589,0.168377 +0.171588,0.030477,-0.094157,-0.033671,-0.003458,0.163779 +0.176259,0.027026,-0.095153,-0.038200,-0.006441,0.159203 +0.180892,0.023630,-0.096130,-0.042682,-0.009534,0.154651 +0.185486,0.020293,-0.097090,-0.047113,-0.012731,0.150122 +0.190039,0.017020,-0.098034,-0.051489,-0.016028,0.145617 +0.194549,0.013814,-0.098964,-0.055808,-0.019419,0.141136 +0.199016,0.010679,-0.099881,-0.060067,-0.022898,0.136678 +0.203437,0.007620,-0.100788,-0.064264,-0.026459,0.132243 +0.207812,0.004639,-0.101685,-0.068397,-0.030099,0.127830 +0.212138,0.001741,-0.102576,-0.072464,-0.033809,0.123437 +0.216414,-0.001073,-0.103462,-0.076462,-0.037585,0.119064 +0.220639,-0.003798,-0.104345,-0.080392,-0.041421,0.114707 +0.224812,-0.006432,-0.105228,-0.084251,-0.045311,0.110366 +0.228929,-0.008972,-0.106113,-0.088039,-0.049248,0.106037 +0.232991,-0.011415,-0.107002,-0.091756,-0.053227,0.101719 +0.236996,-0.013760,-0.107898,-0.095401,-0.057241,0.097408 +0.240942,-0.016005,-0.108801,-0.098974,-0.061286,0.093103 +0.244826,-0.018146,-0.109716,-0.102475,-0.065354,0.088799 +0.248649,-0.020183,-0.110643,-0.105905,-0.069439,0.084494 +0.252408,-0.022113,-0.111586,-0.109264,-0.073536,0.080183 +0.256101,-0.023936,-0.112546,-0.112554,-0.077639,0.075865 +0.259728,-0.025649,-0.113525,-0.115775,-0.081742,0.071535 +0.263285,-0.027252,-0.114525,-0.118929,-0.085838,0.067190 +0.266772,-0.028744,-0.115548,-0.122017,-0.089924,0.062825 +0.270187,-0.030123,-0.116596,-0.125040,-0.093991,0.058438 +0.273528,-0.031390,-0.117670,-0.128001,-0.098037,0.054025 +0.276793,-0.032543,-0.118772,-0.130902,-0.102054,0.049581 +0.279981,-0.033581,-0.119903,-0.133745,-0.106037,0.045103 +0.283090,-0.034506,-0.121065,-0.136531,-0.109983,0.040588 +0.286118,-0.035315,-0.122258,-0.139263,-0.113884,0.036032 +0.289064,-0.036010,-0.123484,-0.141945,-0.117738,0.031432 +0.291924,-0.036590,-0.124742,-0.144577,-0.121539,0.026783 +0.294699,-0.037055,-0.126034,-0.147164,-0.125282,0.022084 +0.297385,-0.037406,-0.127359,-0.149707,-0.128963,0.017330 +0.299982,-0.037643,-0.128719,-0.152209,-0.132579,0.012519 +0.302486,-0.037766,-0.130112,-0.154674,-0.136125,0.007648 +0.304897,-0.037776,-0.131539,-0.157103,-0.139598,0.002715 +0.307212,-0.037674,-0.132998,-0.159500,-0.142994,-0.002283 +0.309430,-0.037459,-0.134490,-0.161868,-0.146310,-0.007348 +0.311549,-0.037134,-0.136013,-0.164209,-0.149542,-0.012482 +0.313567,-0.036698,-0.137565,-0.166526,-0.152689,-0.017685 +0.315482,-0.036153,-0.139146,-0.168821,-0.155747,-0.022961 +0.317292,-0.035499,-0.140754,-0.171098,-0.158714,-0.028308 +0.318995,-0.034739,-0.142387,-0.173359,-0.161587,-0.033729 +0.320590,-0.033871,-0.144042,-0.175607,-0.164366,-0.039223 +0.322074,-0.032899,-0.145718,-0.177843,-0.167047,-0.044791 +0.323447,-0.031823,-0.147411,-0.180070,-0.169631,-0.050432 +0.324705,-0.030643,-0.149118,-0.182290,-0.172115,-0.056145 +0.325848,-0.029363,-0.150838,-0.184506,-0.174498,-0.061929 +0.326874,-0.027982,-0.152566,-0.186719,-0.176780,-0.067784 +0.327780,-0.026502,-0.154298,-0.188930,-0.178961,-0.073706 +0.328565,-0.024924,-0.156032,-0.191142,-0.181039,-0.079695 +0.329229,-0.023250,-0.157763,-0.193355,-0.183016,-0.085747 +0.329768,-0.021482,-0.159487,-0.195571,-0.184890,-0.091860 +0.330181,-0.019620,-0.161200,-0.197792,-0.186663,-0.098030 +0.330467,-0.017666,-0.162898,-0.200017,-0.188335,-0.104254 +0.330625,-0.015622,-0.164575,-0.202248,-0.189907,-0.110527 +0.330652,-0.013489,-0.166227,-0.204484,-0.191380,-0.116846 +0.330548,-0.011268,-0.167850,-0.206727,-0.192755,-0.123205 +0.330312,-0.008962,-0.169437,-0.208976,-0.194033,-0.129600 +0.329942,-0.006571,-0.170984,-0.211230,-0.195216,-0.136024 +0.329436,-0.004097,-0.172486,-0.213491,-0.196306,-0.142473 +0.328794,-0.001542,-0.173938,-0.215756,-0.197305,-0.148939 +0.328015,0.001092,-0.175333,-0.218025,-0.198215,-0.155417 +0.327099,0.003805,-0.176667,-0.220298,-0.199038,-0.161900 +0.326043,0.006593,-0.177934,-0.222572,-0.199776,-0.168380 +0.324847,0.009457,-0.179128,-0.224847,-0.200432,-0.174851 +0.323511,0.012394,-0.180245,-0.227120,-0.201009,-0.181305 +0.322034,0.015402,-0.181278,-0.229391,-0.201509,-0.187734 +0.320416,0.018479,-0.182222,-0.231656,-0.201936,-0.194130 +0.318656,0.021625,-0.183072,-0.233913,-0.202291,-0.200484 +0.316754,0.024837,-0.183822,-0.236161,-0.202579,-0.206789 +0.314710,0.028113,-0.184467,-0.238396,-0.202802,-0.213035 +0.312524,0.031451,-0.185002,-0.240616,-0.202964,-0.219214 +0.310196,0.034851,-0.185422,-0.242817,-0.203067,-0.225317 +0.307726,0.038309,-0.185721,-0.244997,-0.203115,-0.231336 +0.305115,0.041825,-0.185896,-0.247153,-0.203112,-0.237260 +0.302362,0.045396,-0.185940,-0.249280,-0.203060,-0.243081 +0.299470,0.049019,-0.185851,-0.251375,-0.202963,-0.248790 +0.296438,0.052694,-0.185623,-0.253436,-0.202825,-0.254377 +0.293267,0.056418,-0.185254,-0.255457,-0.202648,-0.259834 +0.289959,0.060189,-0.184737,-0.257435,-0.202436,-0.265152 +0.286514,0.064004,-0.184072,-0.259367,-0.202191,-0.270320 +0.282935,0.067863,-0.183253,-0.261248,-0.201919,-0.275332 +0.279221,0.071762,-0.182278,-0.263074,-0.201620,-0.280177 +0.275376,0.075699,-0.181145,-0.264842,-0.201300,-0.284847 +0.271400,0.079672,-0.179851,-0.266547,-0.200960,-0.289334 +0.267296,0.083678,-0.178393,-0.268185,-0.200603,-0.293629 +0.263065,0.087715,-0.176771,-0.269751,-0.200233,-0.297724 +0.258710,0.091781,-0.174982,-0.271243,-0.199852,-0.301612 +0.254234,0.095873,-0.173026,-0.272656,-0.199463,-0.305286 +0.249638,0.099988,-0.170901,-0.273986,-0.199068,-0.308737 +0.244926,0.104124,-0.168608,-0.275228,-0.198670,-0.311958 +0.240099,0.108278,-0.166147,-0.276380,-0.198271,-0.314945 +0.235162,0.112447,-0.163518,-0.277438,-0.197873,-0.317689 +0.230117,0.116629,-0.160721,-0.278398,-0.197479,-0.320186 +0.224968,0.120820,-0.157758,-0.279256,-0.197089,-0.322430 +0.219717,0.125018,-0.154631,-0.280009,-0.196706,-0.324416 +0.214368,0.129219,-0.151341,-0.280654,-0.196331,-0.326139 +0.208925,0.133420,-0.147892,-0.281188,-0.195966,-0.327595 +0.203392,0.137619,-0.144285,-0.281608,-0.195611,-0.328781 +0.197773,0.141812,-0.140524,-0.281912,-0.195269,-0.329694 +0.192071,0.145996,-0.136612,-0.282096,-0.194939,-0.330331 +0.186290,0.150168,-0.132554,-0.282159,-0.194622,-0.330689 +0.180436,0.154323,-0.128354,-0.282099,-0.194319,-0.330767 +0.174512,0.158460,-0.124017,-0.281914,-0.194031,-0.330565 +0.168523,0.162574,-0.119547,-0.281602,-0.193757,-0.330081 +0.162474,0.166662,-0.114951,-0.281162,-0.193497,-0.329316 +0.156369,0.170721,-0.110234,-0.280593,-0.193251,-0.328270 +0.150212,0.174747,-0.105403,-0.279895,-0.193019,-0.326944 +0.144010,0.178736,-0.100464,-0.279067,-0.192800,-0.325340 +0.137766,0.182685,-0.095425,-0.278108,-0.192594,-0.323461 +0.131486,0.186590,-0.090292,-0.277020,-0.192399,-0.321308 +0.125175,0.190448,-0.085073,-0.275801,-0.192215,-0.318886 +0.118837,0.194255,-0.079776,-0.274454,-0.192040,-0.316198 +0.112480,0.198008,-0.074410,-0.272979,-0.191872,-0.313249 +0.106106,0.201702,-0.068982,-0.271377,-0.191712,-0.310044 +0.099722,0.205334,-0.063501,-0.269650,-0.191555,-0.306589 +0.093334,0.208901,-0.057978,-0.267800,-0.191402,-0.302889 +0.086946,0.212399,-0.052419,-0.265830,-0.191249,-0.298950 +0.080563,0.215824,-0.046836,-0.263741,-0.191096,-0.294782 +0.074192,0.219174,-0.041237,-0.261537,-0.190938,-0.290389 +0.067838,0.222444,-0.035633,-0.259221,-0.190775,-0.285782 +0.061505,0.225631,-0.030033,-0.256796,-0.190604,-0.280968 +0.055200,0.228731,-0.024447,-0.254267,-0.190421,-0.275957 +0.048927,0.231742,-0.018885,-0.251636,-0.190226,-0.270757 +0.042692,0.234660,-0.013357,-0.248909,-0.190014,-0.265378 +0.036500,0.237482,-0.007874,-0.246090,-0.189782,-0.259832 +0.030357,0.240205,-0.002446,-0.243185,-0.189529,-0.254127 +0.024267,0.242826,0.002917,-0.240197,-0.189251,-0.248276 +0.018235,0.245342,0.008206,-0.237132,-0.188946,-0.242289 +0.012267,0.247750,0.013408,-0.233997,-0.188609,-0.236177 +0.006368,0.250047,0.018516,-0.230796,-0.188238,-0.229953 +0.000542,0.252232,0.023517,-0.227537,-0.187830,-0.223628 +-0.005206,0.254301,0.028404,-0.224224,-0.187383,-0.217215 +-0.010872,0.256252,0.033165,-0.220865,-0.186892,-0.210725 +-0.016451,0.258083,0.037792,-0.217466,-0.186354,-0.204172 +-0.021938,0.259793,0.042275,-0.214034,-0.185768,-0.197567 +-0.027329,0.261378,0.046604,-0.210576,-0.185129,-0.190924 +-0.032621,0.262838,0.050771,-0.207099,-0.184434,-0.184255 +-0.037809,0.264171,0.054767,-0.203609,-0.183682,-0.177573 +-0.042889,0.265375,0.058584,-0.200114,-0.182868,-0.170891 +-0.047858,0.266450,0.062213,-0.196622,-0.181990,-0.164221 +-0.052713,0.267395,0.065647,-0.193139,-0.181045,-0.157576 +-0.057450,0.268207,0.068878,-0.189673,-0.180031,-0.150969 +-0.062065,0.268888,0.071899,-0.186231,-0.178945,-0.144411 +-0.066557,0.269436,0.074703,-0.182821,-0.177785,-0.137916 +-0.070922,0.269851,0.077284,-0.179451,-0.176548,-0.131495 +-0.075158,0.270134,0.079636,-0.176126,-0.175232,-0.125160 +-0.079262,0.270284,0.081753,-0.172855,-0.173836,-0.118922 +-0.083232,0.270301,0.083630,-0.169645,-0.172356,-0.112793 +-0.087067,0.270187,0.085263,-0.166503,-0.170791,-0.106784 +-0.090764,0.269942,0.086648,-0.163436,-0.169140,-0.100906 +-0.094323,0.269567,0.087780,-0.160451,-0.167401,-0.095168 +-0.097741,0.269063,0.088657,-0.157554,-0.165573,-0.089581 +-0.101019,0.268432,0.089275,-0.154753,-0.163655,-0.084154 +-0.104154,0.267675,0.089633,-0.152053,-0.161645,-0.078896 +-0.107146,0.266794,0.089729,-0.149460,-0.159542,-0.073816 +-0.109996,0.265792,0.089562,-0.146981,-0.157347,-0.068922 +-0.112703,0.264669,0.089131,-0.144621,-0.155059,-0.064221 +-0.115266,0.263430,0.088435,-0.142387,-0.152677,-0.059721 +-0.117687,0.262076,0.087476,-0.140282,-0.150202,-0.055428 +-0.119966,0.260611,0.086255,-0.138312,-0.147633,-0.051348 +-0.122103,0.259037,0.084772,-0.136482,-0.144971,-0.047487 +-0.124100,0.257358,0.083030,-0.134795,-0.142216,-0.043849 +-0.125958,0.255577,0.081032,-0.133257,-0.139369,-0.040439 +-0.127678,0.253698,0.078780,-0.131870,-0.136432,-0.037260 +-0.129262,0.251725,0.076278,-0.130639,-0.133404,-0.034315 +-0.130711,0.249660,0.073530,-0.129565,-0.130288,-0.031607 +-0.132029,0.247510,0.070541,-0.128652,-0.127085,-0.029138 +-0.133217,0.245277,0.067316,-0.127903,-0.123796,-0.026908 +-0.134278,0.242966,0.063861,-0.127318,-0.120424,-0.024919 +-0.135215,0.240583,0.060180,-0.126900,-0.116971,-0.023169 +-0.136030,0.238130,0.056282,-0.126649,-0.113439,-0.021659 +-0.136726,0.235614,0.052173,-0.126567,-0.109830,-0.020386 +-0.137308,0.233040,0.047861,-0.126654,-0.106148,-0.019349 +-0.137778,0.230411,0.043353,-0.126910,-0.102394,-0.018546 +-0.138139,0.227733,0.038657,-0.127334,-0.098572,-0.017973 +-0.138397,0.225012,0.033782,-0.127926,-0.094685,-0.017625 +-0.138555,0.222253,0.028738,-0.128684,-0.090736,-0.017500 +-0.138616,0.219460,0.023532,-0.129607,-0.086730,-0.017591 +-0.138586,0.216640,0.018176,-0.130693,-0.082668,-0.017892 +-0.138469,0.213797,0.012679,-0.131939,-0.078556,-0.018399 +-0.138269,0.210937,0.007052,-0.133343,-0.074397,-0.019104 +-0.137991,0.208066,0.001303,-0.134902,-0.070195,-0.020000 +-0.137640,0.205188,-0.004554,-0.136612,-0.065954,-0.021079 +-0.137220,0.202309,-0.010510,-0.138469,-0.061679,-0.022333 +-0.136737,0.199435,-0.016554,-0.140469,-0.057373,-0.023754 +-0.136196,0.196571,-0.022674,-0.142607,-0.053042,-0.025332 +-0.135602,0.193722,-0.028859,-0.144879,-0.048689,-0.027057 +-0.134960,0.190893,-0.035098,-0.147279,-0.044320,-0.028921 +-0.134275,0.188089,-0.041378,-0.149802,-0.039938,-0.030912 +-0.133552,0.185316,-0.047688,-0.152441,-0.035549,-0.033021 +-0.132798,0.182578,-0.054017,-0.155192,-0.031157,-0.035236 +-0.132017,0.179880,-0.060352,-0.158047,-0.026768,-0.037546 +-0.131216,0.177227,-0.066683,-0.161000,-0.022386,-0.039939 +-0.130398,0.174623,-0.072997,-0.164043,-0.018015,-0.042406 +-0.129570,0.172073,-0.079283,-0.167170,-0.013661,-0.044932 +-0.128736,0.169581,-0.085530,-0.170374,-0.009328,-0.047508 +-0.127904,0.167151,-0.091726,-0.173647,-0.005022,-0.050120 +-0.127077,0.164787,-0.097860,-0.176981,-0.000747,-0.052756 +-0.126260,0.162493,-0.103922,-0.180368,0.003492,-0.055405 +-0.125460,0.160271,-0.109900,-0.183801,0.007691,-0.058054 +-0.124682,0.158126,-0.115784,-0.187272,0.011844,-0.060691 +-0.123930,0.156061,-0.121564,-0.190772,0.015947,-0.063305 +-0.123209,0.154078,-0.127229,-0.194293,0.019996,-0.065882 +-0.122525,0.152180,-0.132771,-0.197826,0.023986,-0.068411 +-0.121882,0.150369,-0.138179,-0.201365,0.027912,-0.070881 +-0.121285,0.148648,-0.143445,-0.204900,0.031771,-0.073280 +-0.120738,0.147018,-0.148560,-0.208422,0.035557,-0.075596 +-0.120246,0.145480,-0.153516,-0.211925,0.039267,-0.077818 +-0.119814,0.144037,-0.158304,-0.215399,0.042898,-0.079936 +-0.119445,0.142689,-0.162918,-0.218836,0.046444,-0.081939 +-0.119144,0.141437,-0.167351,-0.222229,0.049902,-0.083817 +-0.118914,0.140282,-0.171595,-0.225569,0.053269,-0.085559 +-0.118760,0.139223,-0.175645,-0.228849,0.056541,-0.087157 +-0.118684,0.138261,-0.179495,-0.232061,0.059715,-0.088601 +-0.118690,0.137396,-0.183139,-0.235197,0.062787,-0.089883 +-0.118782,0.136626,-0.186574,-0.238250,0.065755,-0.090994 +-0.118962,0.135950,-0.189795,-0.241214,0.068615,-0.091927 +-0.119233,0.135369,-0.192798,-0.244081,0.071365,-0.092675 +-0.119598,0.134879,-0.195580,-0.246845,0.074003,-0.093230 +-0.120060,0.134480,-0.198139,-0.249499,0.076525,-0.093588 +-0.120619,0.134169,-0.200472,-0.252038,0.078930,-0.093741 +-0.121280,0.133944,-0.202578,-0.254455,0.081215,-0.093685 +-0.122042,0.133802,-0.204456,-0.256745,0.083379,-0.093416 +-0.122909,0.133741,-0.206106,-0.258903,0.085420,-0.092930 +-0.123880,0.133757,-0.207527,-0.260924,0.087337,-0.092223 +-0.124958,0.133847,-0.208719,-0.262803,0.089128,-0.091293 +-0.126144,0.134008,-0.209685,-0.264537,0.090792,-0.090138 +-0.127438,0.134236,-0.210426,-0.266121,0.092327,-0.088756 +-0.128840,0.134526,-0.210943,-0.267553,0.093734,-0.087146 +-0.130352,0.134874,-0.211239,-0.268828,0.095011,-0.085309 +-0.131972,0.135277,-0.211318,-0.269945,0.096159,-0.083245 +-0.133702,0.135728,-0.211183,-0.270901,0.097176,-0.080955 +-0.135540,0.136224,-0.210838,-0.271694,0.098063,-0.078441 +-0.137486,0.136759,-0.210287,-0.272323,0.098819,-0.075705 +-0.139539,0.137328,-0.209537,-0.272786,0.099446,-0.072750 +-0.141699,0.137925,-0.208591,-0.273084,0.099942,-0.069579 +-0.143964,0.138546,-0.207455,-0.273215,0.100310,-0.066197 +-0.146332,0.139185,-0.206137,-0.273180,0.100549,-0.062609 +-0.148803,0.139835,-0.204642,-0.272979,0.100660,-0.058819 +-0.151374,0.140491,-0.202978,-0.272613,0.100645,-0.054835 +-0.154043,0.141148,-0.201151,-0.272083,0.100504,-0.050661 +-0.156809,0.141798,-0.199170,-0.271392,0.100239,-0.046306 +-0.159668,0.142437,-0.197041,-0.270540,0.099851,-0.041776 +-0.162619,0.143057,-0.194775,-0.269532,0.099342,-0.037079 +-0.165659,0.143654,-0.192378,-0.268368,0.098713,-0.032224 +-0.168784,0.144220,-0.189860,-0.267053,0.097966,-0.027220 +-0.171993,0.144750,-0.187229,-0.265590,0.097103,-0.022076 +-0.175281,0.145238,-0.184495,-0.263982,0.096126,-0.016801 +-0.178646,0.145678,-0.181667,-0.262234,0.095036,-0.011405 +-0.182083,0.146063,-0.178753,-0.260351,0.093837,-0.005900 +-0.185591,0.146388,-0.175765,-0.258337,0.092530,-0.000295 +-0.189164,0.146647,-0.172710,-0.256197,0.091118,0.005399 +-0.192799,0.146834,-0.169600,-0.253936,0.089603,0.011170 +-0.196492,0.146944,-0.166443,-0.251560,0.087987,0.017007 +-0.200240,0.146971,-0.163249,-0.249075,0.086273,0.022899 +-0.204038,0.146911,-0.160028,-0.246487,0.084463,0.028834 +-0.207882,0.146757,-0.156790,-0.243802,0.082561,0.034800 +-0.211767,0.146505,-0.153543,-0.241026,0.080569,0.040784 +-0.215690,0.146150,-0.150299,-0.238166,0.078489,0.046776 +-0.219647,0.145688,-0.147065,-0.235228,0.076324,0.052763 +-0.223632,0.145114,-0.143852,-0.232220,0.074077,0.058733 +-0.227641,0.144424,-0.140668,-0.229149,0.071750,0.064673 +-0.231671,0.143615,-0.137523,-0.226021,0.069347,0.070573 +-0.235715,0.142682,-0.134424,-0.222843,0.066870,0.076420 +-0.239771,0.141623,-0.131381,-0.219623,0.064322,0.082203 +-0.243833,0.140434,-0.128402,-0.216368,0.061705,0.087910 +-0.247897,0.139113,-0.125495,-0.213084,0.059023,0.093529 +-0.251958,0.137657,-0.122667,-0.209780,0.056278,0.099051 +-0.256012,0.136063,-0.119926,-0.206463,0.053472,0.104463 +-0.260055,0.134331,-0.117279,-0.203138,0.050609,0.109755 +-0.264082,0.132459,-0.114733,-0.199814,0.047691,0.114918 +-0.268089,0.130445,-0.112293,-0.196497,0.044721,0.119941 +-0.272070,0.128289,-0.109968,-0.193195,0.041701,0.124815 +-0.276024,0.125990,-0.107761,-0.189913,0.038634,0.129530 +-0.279943,0.123547,-0.105678,-0.186658,0.035522,0.134078 +-0.283826,0.120962,-0.103724,-0.183437,0.032368,0.138451 +-0.287668,0.118235,-0.101903,-0.180255,0.029174,0.142640 +-0.291464,0.115366,-0.100220,-0.177120,0.025943,0.146640 +-0.295211,0.112357,-0.098678,-0.174036,0.022676,0.150442 +-0.298905,0.109209,-0.097281,-0.171009,0.019377,0.154040 +-0.302542,0.105924,-0.096030,-0.168044,0.016047,0.157429 +-0.306119,0.102506,-0.094929,-0.165146,0.012688,0.160604 +-0.309632,0.098955,-0.093979,-0.162321,0.009303,0.163560 +-0.313078,0.095276,-0.093181,-0.159572,0.005894,0.166293 +-0.316454,0.091471,-0.092537,-0.156903,0.002463,0.168799 +-0.319756,0.087545,-0.092047,-0.154319,-0.000989,0.171076 +-0.322981,0.083501,-0.091711,-0.151823,-0.004459,0.173121 +-0.326127,0.079344,-0.091528,-0.149417,-0.007946,0.174933 +-0.329191,0.075078,-0.091498,-0.147106,-0.011448,0.176511 +-0.332170,0.070708,-0.091620,-0.144891,-0.014962,0.177854 +-0.335061,0.066240,-0.091891,-0.142774,-0.018488,0.178963 +-0.337863,0.061679,-0.092309,-0.140758,-0.022023,0.179839 +-0.340573,0.057031,-0.092873,-0.138843,-0.025567,0.180482 +-0.343189,0.052301,-0.093578,-0.137031,-0.029117,0.180896 +-0.345708,0.047498,-0.094423,-0.135322,-0.032671,0.181082 +-0.348131,0.042626,-0.095402,-0.133717,-0.036229,0.181045 +-0.350453,0.037693,-0.096512,-0.132215,-0.039789,0.180787 +-0.352675,0.032706,-0.097748,-0.130817,-0.043349,0.180313 +-0.354795,0.027672,-0.099106,-0.129521,-0.046908,0.179629 +-0.356811,0.022598,-0.100580,-0.128326,-0.050464,0.178740 +-0.358723,0.017493,-0.102165,-0.127231,-0.054017,0.177652 +-0.360529,0.012364,-0.103855,-0.126233,-0.057564,0.176372 +-0.362229,0.007219,-0.105644,-0.125331,-0.061104,0.174907 +-0.363822,0.002066,-0.107527,-0.124523,-0.064637,0.173264 +-0.365307,-0.003086,-0.109495,-0.123804,-0.068159,0.171451 +-0.366684,-0.008231,-0.111544,-0.123172,-0.071672,0.169477 +-0.367954,-0.013358,-0.113665,-0.122623,-0.075172,0.167352 +-0.369115,-0.018461,-0.115851,-0.122154,-0.078658,0.165083 +-0.370167,-0.023529,-0.118097,-0.121761,-0.082129,0.162682 +-0.371112,-0.028556,-0.120393,-0.121438,-0.085584,0.160157 +-0.371948,-0.033532,-0.122732,-0.121182,-0.089022,0.157520 +-0.372677,-0.038449,-0.125108,-0.120987,-0.092440,0.154780 +-0.373298,-0.043299,-0.127511,-0.120849,-0.095837,0.151949 +-0.373813,-0.048073,-0.129935,-0.120761,-0.099212,0.149038 +-0.374221,-0.052763,-0.132372,-0.120720,-0.102564,0.146058 +-0.374525,-0.057361,-0.134814,-0.120717,-0.105891,0.143020 +-0.374723,-0.061859,-0.137252,-0.120749,-0.109190,0.139937 +-0.374819,-0.066248,-0.139681,-0.120809,-0.112461,0.136819 +-0.374811,-0.070521,-0.142091,-0.120890,-0.115702,0.133679 +-0.374703,-0.074670,-0.144475,-0.120986,-0.118912,0.130528 +-0.374494,-0.078689,-0.146826,-0.121091,-0.122088,0.127379 +-0.374185,-0.082568,-0.149136,-0.121199,-0.125228,0.124242 +-0.373780,-0.086302,-0.151399,-0.121303,-0.128332,0.121130 +-0.373277,-0.089884,-0.153606,-0.121396,-0.131396,0.118055 +-0.372680,-0.093306,-0.155752,-0.121472,-0.134420,0.115027 +-0.371990,-0.096563,-0.157829,-0.121524,-0.137401,0.112059 +-0.371207,-0.099648,-0.159831,-0.121546,-0.140337,0.109161 +-0.370334,-0.102556,-0.161751,-0.121532,-0.143226,0.106344 +-0.369372,-0.105281,-0.163585,-0.121474,-0.146066,0.103620 +-0.368323,-0.107818,-0.165325,-0.121367,-0.148855,0.100998 +-0.367188,-0.110162,-0.166967,-0.121204,-0.151591,0.098490 +-0.365969,-0.112309,-0.168505,-0.120979,-0.154271,0.096104 +-0.364668,-0.114254,-0.169934,-0.120686,-0.156894,0.093851 +-0.363287,-0.115993,-0.171250,-0.120320,-0.159456,0.091740 +-0.361826,-0.117523,-0.172448,-0.119875,-0.161957,0.089778 +-0.360289,-0.118840,-0.173526,-0.119346,-0.164392,0.087976 +-0.358676,-0.119943,-0.174477,-0.118726,-0.166761,0.086341 +-0.356990,-0.120828,-0.175301,-0.118012,-0.169060,0.084879 +-0.355231,-0.121494,-0.175994,-0.117198,-0.171287,0.083599 +-0.353402,-0.121939,-0.176552,-0.116280,-0.173440,0.082507 +-0.351505,-0.122162,-0.176975,-0.115254,-0.175516,0.081608 +-0.349540,-0.122162,-0.177261,-0.114115,-0.177513,0.080909 +-0.347510,-0.121939,-0.177407,-0.112861,-0.179429,0.080414 +-0.345416,-0.121492,-0.177413,-0.111488,-0.181260,0.080127 +-0.343260,-0.120823,-0.177278,-0.109993,-0.183004,0.080053 +-0.341044,-0.119932,-0.177003,-0.108373,-0.184660,0.080195 +-0.338768,-0.118819,-0.176586,-0.106626,-0.186224,0.080555 +-0.336434,-0.117488,-0.176029,-0.104751,-0.187695,0.081136 +-0.334044,-0.115939,-0.175332,-0.102744,-0.189069,0.081939 +-0.331600,-0.114176,-0.174496,-0.100606,-0.190345,0.082965 +-0.329101,-0.112201,-0.173524,-0.098335,-0.191521,0.084215 +-0.326551,-0.110017,-0.172417,-0.095932,-0.192593,0.085687 +-0.323949,-0.107628,-0.171177,-0.093395,-0.193560,0.087382 +-0.321298,-0.105038,-0.169806,-0.090725,-0.194420,0.089297 +-0.318598,-0.102251,-0.168308,-0.087923,-0.195171,0.091432 +-0.315850,-0.099272,-0.166687,-0.084990,-0.195811,0.093783 +-0.313056,-0.096106,-0.164944,-0.081927,-0.196337,0.096347 +-0.310216,-0.092758,-0.163085,-0.078736,-0.196749,0.099121 +-0.307332,-0.089234,-0.161113,-0.075419,-0.197045,0.102100 +-0.304405,-0.085539,-0.159033,-0.071979,-0.197222,0.105280 +-0.301434,-0.081681,-0.156849,-0.068419,-0.197280,0.108654 +-0.298422,-0.077665,-0.154566,-0.064742,-0.197217,0.112219 +-0.295369,-0.073499,-0.152189,-0.060952,-0.197032,0.115966 +-0.292275,-0.069189,-0.149724,-0.057052,-0.196723,0.119890 +-0.289141,-0.064744,-0.147176,-0.053048,-0.196291,0.123983 +-0.285968,-0.060169,-0.144551,-0.048943,-0.195733,0.128238 +-0.282757,-0.055474,-0.141854,-0.044743,-0.195051,0.132647 +-0.279508,-0.050667,-0.139092,-0.040454,-0.194241,0.137201 +-0.276221,-0.045755,-0.136270,-0.036079,-0.193306,0.141891 +-0.272897,-0.040746,-0.133395,-0.031627,-0.192244,0.146709 +-0.269536,-0.035650,-0.130474,-0.027102,-0.191055,0.151645 +-0.266139,-0.030475,-0.127511,-0.022511,-0.189740,0.156689 +-0.262705,-0.025229,-0.124515,-0.017862,-0.188299,0.161831 +-0.259236,-0.019922,-0.121491,-0.013159,-0.186732,0.167061 +-0.255732,-0.014562,-0.118445,-0.008412,-0.185040,0.172368 +-0.252192,-0.009159,-0.115385,-0.003627,-0.183224,0.177743 +-0.248617,-0.003720,-0.112317,0.001189,-0.181285,0.183174 +-0.245008,0.001744,-0.109247,0.006028,-0.179225,0.188650 +-0.241364,0.007224,-0.106181,0.010882,-0.177044,0.194160 +-0.237685,0.012712,-0.103127,0.015743,-0.174745,0.199693 +-0.233971,0.018199,-0.100090,0.020604,-0.172329,0.205239 +-0.230224,0.023675,-0.097075,0.025456,-0.169799,0.210785 +-0.226442,0.029132,-0.094091,0.030291,-0.167156,0.216321 +-0.222625,0.034561,-0.091141,0.035101,-0.164404,0.221836 +-0.218775,0.039953,-0.088232,0.039878,-0.161545,0.227319 +-0.214890,0.045299,-0.085370,0.044614,-0.158581,0.232758 +-0.210972,0.050592,-0.082559,0.049300,-0.155516,0.238144 +-0.207019,0.055822,-0.079806,0.053929,-0.152354,0.243465 +-0.203033,0.060982,-0.077115,0.058493,-0.149097,0.248710 +-0.199012,0.066063,-0.074491,0.062983,-0.145749,0.253871 +-0.194958,0.071058,-0.071939,0.067391,-0.142314,0.258936 +-0.190870,0.075959,-0.069462,0.071710,-0.138796,0.263896 +-0.186748,0.080758,-0.067065,0.075933,-0.135199,0.268741 +-0.182593,0.085449,-0.064753,0.080052,-0.131528,0.273462 +-0.178404,0.090025,-0.062527,0.084058,-0.127787,0.278050 +-0.174181,0.094479,-0.060393,0.087947,-0.123980,0.282497 +-0.169925,0.098803,-0.058353,0.091709,-0.120114,0.286794 +-0.165636,0.102994,-0.056409,0.095340,-0.116191,0.290934 +-0.161314,0.107043,-0.054565,0.098832,-0.112219,0.294909 +-0.156959,0.110947,-0.052822,0.102179,-0.108202,0.298711 +-0.152572,0.114699,-0.051183,0.105375,-0.104144,0.302335 +-0.148152,0.118295,-0.049649,0.108414,-0.100053,0.305774 +-0.143700,0.121729,-0.048222,0.111292,-0.095933,0.309022 +-0.139217,0.124999,-0.046902,0.114003,-0.091791,0.312074 +-0.134701,0.128099,-0.045691,0.116543,-0.087631,0.314924 +-0.130155,0.131026,-0.044588,0.118906,-0.083460,0.317570 +-0.125578,0.133778,-0.043595,0.121089,-0.079284,0.320006 +-0.120971,0.136349,-0.042712,0.123089,-0.075109,0.322229 +-0.116333,0.138740,-0.041937,0.124901,-0.070940,0.324236 +-0.111666,0.140946,-0.041271,0.126522,-0.066785,0.326025 +-0.106971,0.142965,-0.040712,0.127951,-0.062648,0.327594 +-0.102247,0.144798,-0.040260,0.129185,-0.058537,0.328940 +-0.097495,0.146441,-0.039913,0.130221,-0.054457,0.330064 +-0.092716,0.147895,-0.039669,0.131059,-0.050414,0.330964 +-0.087910,0.149158,-0.039527,0.131696,-0.046415,0.331640 +-0.083078,0.150231,-0.039485,0.132133,-0.042466,0.332093 +-0.078222,0.151113,-0.039541,0.132369,-0.038572,0.332324 +-0.073340,0.151806,-0.039692,0.132404,-0.034740,0.332333 +-0.068436,0.152309,-0.039935,0.132237,-0.030975,0.332122 +-0.063508,0.152624,-0.040268,0.131871,-0.027284,0.331694 +-0.058558,0.152752,-0.040687,0.131305,-0.023672,0.331051 +-0.053587,0.152696,-0.041190,0.130542,-0.020145,0.330196 +-0.048596,0.152457,-0.041773,0.129583,-0.016708,0.329132 +-0.043586,0.152037,-0.042434,0.128430,-0.013368,0.327864 +-0.038557,0.151440,-0.043167,0.127085,-0.010128,0.326394 +-0.033511,0.150667,-0.043971,0.125552,-0.006995,0.324727 +-0.028448,0.149723,-0.044840,0.123834,-0.003973,0.322869 +-0.023371,0.148610,-0.045772,0.121934,-0.001067,0.320824 +-0.018279,0.147333,-0.046763,0.119856,0.001718,0.318597 +-0.013173,0.145895,-0.047808,0.117604,0.004378,0.316194 +-0.008056,0.144301,-0.048904,0.115181,0.006908,0.313621 +-0.002928,0.142554,-0.050046,0.112594,0.009304,0.310884 +0.002210,0.140660,-0.051232,0.109846,0.011563,0.307989 +0.007356,0.138624,-0.052456,0.106943,0.013681,0.304942 +0.012510,0.136449,-0.053715,0.103891,0.015653,0.301749 +0.017670,0.134142,-0.055006,0.100693,0.017478,0.298419 +0.022835,0.131708,-0.056324,0.097357,0.019152,0.294956 +0.028003,0.129152,-0.057666,0.093888,0.020673,0.291369 +0.033174,0.126480,-0.059027,0.090293,0.022037,0.287664 +0.038346,0.123697,-0.060405,0.086576,0.023243,0.283848 +0.043518,0.120810,-0.061796,0.082746,0.024289,0.279928 +0.048689,0.117824,-0.063197,0.078807,0.025173,0.275911 +0.053857,0.114745,-0.064603,0.074768,0.025893,0.271804 +0.059020,0.111580,-0.066013,0.070634,0.026450,0.267614 +0.064179,0.108334,-0.067423,0.066411,0.026840,0.263347 +0.069330,0.105014,-0.068830,0.062108,0.027065,0.259011 +0.074474,0.101626,-0.070232,0.057730,0.027124,0.254612 +0.079608,0.098177,-0.071626,0.053284,0.027016,0.250156 +0.084731,0.094672,-0.073009,0.048777,0.026742,0.245651 +0.089842,0.091118,-0.074380,0.044216,0.026303,0.241101 +0.094940,0.087520,-0.075737,0.039607,0.025699,0.236513 +0.100022,0.083887,-0.077077,0.034958,0.024931,0.231893 +0.105089,0.080222,-0.078399,0.030274,0.024001,0.227247 +0.110138,0.076534,-0.079702,0.025561,0.022910,0.222579 +0.115167,0.072827,-0.080985,0.020827,0.021661,0.217894 +0.120177,0.069108,-0.082245,0.016078,0.020255,0.213199 +0.125164,0.065383,-0.083483,0.011319,0.018695,0.208496 +0.130129,0.061658,-0.084698,0.006557,0.016983,0.203791 +0.135069,0.057938,-0.085889,0.001798,0.015122,0.199086 +0.139983,0.054229,-0.087056,-0.002954,0.013116,0.194387 +0.144869,0.050537,-0.088199,-0.007692,0.010968,0.189697 +0.149727,0.046868,-0.089319,-0.012412,0.008682,0.185017 +0.154555,0.043226,-0.090414,-0.017108,0.006261,0.180352 +0.159351,0.039616,-0.091487,-0.021775,0.003709,0.175702 +0.164114,0.036045,-0.092537,-0.026409,0.001031,0.171072 +0.168843,0.032516,-0.093566,-0.031006,-0.001768,0.166461 +0.173536,0.029035,-0.094573,-0.035561,-0.004685,0.161873 +0.178191,0.025606,-0.095562,-0.040071,-0.007715,0.157307 +0.182808,0.022234,-0.096532,-0.044532,-0.010852,0.152764 +0.187385,0.018923,-0.097485,-0.048940,-0.014091,0.148245 +0.191921,0.015677,-0.098423,-0.053293,-0.017427,0.143750 +0.196413,0.012501,-0.099347,-0.057587,-0.020855,0.139278 +0.200861,0.009397,-0.100259,-0.061821,-0.024370,0.134830 +0.205263,0.006370,-0.101162,-0.065992,-0.027964,0.130405 +0.209617,0.003423,-0.102056,-0.070097,-0.031634,0.126000 +0.213923,0.000560,-0.102945,-0.074135,-0.035372,0.121615 +0.218178,-0.002217,-0.103830,-0.078105,-0.039174,0.117249 +0.222382,-0.004905,-0.104713,-0.082006,-0.043033,0.112899 +0.226531,-0.007500,-0.105596,-0.085836,-0.046943,0.108563 +0.230626,-0.010000,-0.106483,-0.089594,-0.050898,0.104239 +0.234665,-0.012403,-0.107374,-0.093281,-0.054893,0.099925 +0.238645,-0.014706,-0.108272,-0.096896,-0.058921,0.095617 +0.242565,-0.016908,-0.109180,-0.100439,-0.062976,0.091312 +0.246424,-0.019006,-0.110100,-0.103911,-0.067051,0.087008 +0.250221,-0.020999,-0.111034,-0.107311,-0.071142,0.082701 +0.253953,-0.022884,-0.111983,-0.110641,-0.075243,0.078388 +0.257618,-0.024662,-0.112951,-0.113902,-0.079346,0.074065 +0.261216,-0.026330,-0.113938,-0.117095,-0.083447,0.069729 +0.264745,-0.027886,-0.114948,-0.120221,-0.087540,0.065377 +0.268202,-0.029332,-0.115981,-0.123282,-0.091618,0.061003 +0.271586,-0.030664,-0.117040,-0.126280,-0.095677,0.056605 +0.274896,-0.031883,-0.118125,-0.129215,-0.099712,0.052180 +0.278129,-0.032989,-0.119239,-0.132092,-0.103715,0.047723 +0.281285,-0.033980,-0.120383,-0.134910,-0.107684,0.043230 +0.284360,-0.034856,-0.121558,-0.137674,-0.111611,0.038698 +0.287354,-0.035618,-0.122764,-0.140385,-0.115494,0.034124 +0.290264,-0.036265,-0.124003,-0.143046,-0.119326,0.029504 +0.293089,-0.036797,-0.125275,-0.145659,-0.123103,0.024835 +0.295827,-0.037215,-0.126581,-0.148227,-0.126821,0.020113 +0.298476,-0.037518,-0.127921,-0.150753,-0.130476,0.015336 +0.301035,-0.037708,-0.129294,-0.153239,-0.134063,0.010500 +0.303501,-0.037784,-0.130701,-0.155688,-0.137579,0.005603 +0.305872,-0.037747,-0.132142,-0.158104,-0.141021,0.000643 +0.308147,-0.037598,-0.133615,-0.160489,-0.144383,-0.004382 +0.310324,-0.037337,-0.135120,-0.162845,-0.147665,-0.009475 +0.312401,-0.036966,-0.136655,-0.165175,-0.150862,-0.014638 +0.314376,-0.036485,-0.138220,-0.167483,-0.153972,-0.019871 +0.316248,-0.035894,-0.139812,-0.169771,-0.156992,-0.025177 +0.318013,-0.035196,-0.141431,-0.172041,-0.159920,-0.030555 +0.319672,-0.034391,-0.143073,-0.174296,-0.162755,-0.036006 +0.321221,-0.033480,-0.144737,-0.176538,-0.165493,-0.041531 +0.322659,-0.032464,-0.146420,-0.178770,-0.168134,-0.047129 +0.323984,-0.031344,-0.148120,-0.180995,-0.170676,-0.052800 +0.325195,-0.030123,-0.149833,-0.183213,-0.173118,-0.058543 +0.326289,-0.028800,-0.151556,-0.185427,-0.175460,-0.064356 +0.327265,-0.027378,-0.153286,-0.187639,-0.177700,-0.070240 +0.328121,-0.025857,-0.155020,-0.189850,-0.179838,-0.076190 +0.328856,-0.024239,-0.156753,-0.192062,-0.181874,-0.082205 +0.329468,-0.022526,-0.158482,-0.194277,-0.183808,-0.088283 +0.329955,-0.020718,-0.160202,-0.196495,-0.185640,-0.094420 +0.330316,-0.018818,-0.161909,-0.198717,-0.187371,-0.100613 +0.330548,-0.016827,-0.163598,-0.200944,-0.189001,-0.106858 +0.330652,-0.014745,-0.165266,-0.203177,-0.190532,-0.113151 +0.330625,-0.012575,-0.166906,-0.205416,-0.191964,-0.119487 +0.330466,-0.010319,-0.168514,-0.207662,-0.193298,-0.125861 +0.330174,-0.007977,-0.170086,-0.209913,-0.194537,-0.132269 +0.329748,-0.005552,-0.171615,-0.212170,-0.195681,-0.138704 +0.329186,-0.003044,-0.173097,-0.214432,-0.196733,-0.145161 +0.328487,-0.000456,-0.174525,-0.216700,-0.197695,-0.151633 +0.327651,0.002211,-0.175896,-0.218970,-0.198568,-0.158114 +0.326676,0.004956,-0.177202,-0.221244,-0.199355,-0.164597 +0.325562,0.007776,-0.178440,-0.223519,-0.200059,-0.171074 +0.324308,0.010670,-0.179603,-0.225793,-0.200682,-0.177539 +0.322914,0.013636,-0.180685,-0.228065,-0.201227,-0.183983 +0.321378,0.016674,-0.181682,-0.230334,-0.201696,-0.190399 +0.319701,0.019780,-0.182588,-0.232596,-0.202092,-0.196779 +0.317882,0.022953,-0.183397,-0.234850,-0.202419,-0.203114 +0.315921,0.026192,-0.184104,-0.237093,-0.202680,-0.209395 +0.313818,0.029494,-0.184703,-0.239322,-0.202877,-0.215614 +0.311572,0.032859,-0.185191,-0.241534,-0.203014,-0.221763 +0.309185,0.036283,-0.185561,-0.243727,-0.203094,-0.227832 +0.306657,0.039765,-0.185809,-0.245897,-0.203120,-0.233812 +0.303987,0.043304,-0.185930,-0.248041,-0.203096,-0.239695 +0.301176,0.046897,-0.185920,-0.250156,-0.203025,-0.245470 +0.298225,0.050542,-0.185773,-0.252237,-0.202911,-0.251130 +0.295136,0.054237,-0.185487,-0.254281,-0.202756,-0.256664 +0.291908,0.057981,-0.185057,-0.256285,-0.202563,-0.262064 +0.288542,0.061771,-0.184479,-0.258245,-0.202338,-0.267321 +0.285041,0.065605,-0.183750,-0.260156,-0.202081,-0.272425 +0.281406,0.069480,-0.182867,-0.262015,-0.201798,-0.277368 +0.277637,0.073395,-0.181826,-0.263817,-0.201490,-0.282141 +0.273737,0.077347,-0.180626,-0.265559,-0.201161,-0.286736 +0.269708,0.081334,-0.179264,-0.267236,-0.200813,-0.291144 +0.265551,0.085354,-0.177738,-0.268845,-0.200451,-0.295357 +0.261268,0.089403,-0.176047,-0.270381,-0.200076,-0.299367 +0.256863,0.093480,-0.174189,-0.271841,-0.199691,-0.303167 +0.252336,0.097582,-0.172162,-0.273219,-0.199300,-0.306749 +0.247692,0.101707,-0.169968,-0.274513,-0.198903,-0.310105 +0.242932,0.105850,-0.167605,-0.275719,-0.198504,-0.313230 +0.238059,0.110011,-0.165074,-0.276832,-0.198106,-0.316116 +0.233076,0.114186,-0.162374,-0.277849,-0.197709,-0.318758 +0.227987,0.118372,-0.159509,-0.278767,-0.197316,-0.321151 +0.222795,0.122566,-0.156477,-0.279582,-0.196929,-0.323288 +0.217503,0.126765,-0.153282,-0.280291,-0.196549,-0.325165 +0.212115,0.130967,-0.149926,-0.280890,-0.196178,-0.326777 +0.206634,0.135168,-0.146410,-0.281377,-0.195817,-0.328122 +0.201064,0.139365,-0.142738,-0.281749,-0.195467,-0.329194 +0.195410,0.143554,-0.138914,-0.282003,-0.195130,-0.329993 +0.189675,0.147733,-0.134941,-0.282137,-0.194805,-0.330514 +0.183864,0.151899,-0.130824,-0.282149,-0.194494,-0.330756 +0.177980,0.156047,-0.126566,-0.282037,-0.194197,-0.330717 +0.172028,0.160175,-0.122173,-0.281799,-0.193915,-0.330398 +0.166014,0.164278,-0.117650,-0.281434,-0.193647,-0.329797 +0.159940,0.168355,-0.113003,-0.280941,-0.193393,-0.328915 +0.153813,0.172400,-0.108238,-0.280319,-0.193153,-0.327752 +0.147637,0.176411,-0.103361,-0.279566,-0.192926,-0.326311 +0.141417,0.180384,-0.098380,-0.278684,-0.192713,-0.324592 +0.135157,0.184315,-0.093300,-0.277671,-0.192511,-0.322598 +0.128864,0.188201,-0.088131,-0.276528,-0.192321,-0.320333 +0.122541,0.192038,-0.082878,-0.275256,-0.192141,-0.317800 +0.116195,0.195823,-0.077551,-0.273856,-0.191969,-0.315003 +0.109830,0.199552,-0.072158,-0.272328,-0.191805,-0.311947 +0.103451,0.203221,-0.066708,-0.270674,-0.191646,-0.308637 +0.097065,0.206826,-0.061208,-0.268895,-0.191491,-0.305079 +0.090676,0.210365,-0.055669,-0.266995,-0.191339,-0.301279 +0.084290,0.213833,-0.050099,-0.264975,-0.191186,-0.297244 +0.077911,0.217227,-0.044508,-0.262838,-0.191031,-0.292981 +0.071546,0.220544,-0.038906,-0.260587,-0.190871,-0.288498 +0.065200,0.223780,-0.033302,-0.258225,-0.190705,-0.283804 +0.058878,0.226931,-0.027707,-0.255757,-0.190529,-0.278907 +0.052586,0.229995,-0.022129,-0.253184,-0.190342,-0.273816 +0.046328,0.232968,-0.016580,-0.250513,-0.190139,-0.268540 +0.040111,0.235846,-0.011070,-0.247748,-0.189920,-0.263091 +0.033938,0.238627,-0.005609,-0.244892,-0.189680,-0.257477 +0.027816,0.241308,-0.000206,-0.241951,-0.189417,-0.251710 +0.021750,0.243886,0.005127,-0.238931,-0.189128,-0.245801 +0.015745,0.246357,0.010381,-0.235836,-0.188809,-0.239760 +0.009805,0.248719,0.015545,-0.232673,-0.188459,-0.233601 +0.003935,0.250970,0.020610,-0.229447,-0.188073,-0.227333 +-0.001859,0.253107,0.025565,-0.226165,-0.187649,-0.220970 +-0.007574,0.255127,0.030401,-0.222832,-0.187184,-0.214523 +-0.013204,0.257029,0.035107,-0.219456,-0.186674,-0.208006 +-0.018745,0.258809,0.039675,-0.216042,-0.186116,-0.201430 +-0.024193,0.260467,0.044095,-0.212598,-0.185508,-0.194808 +-0.029543,0.262001,0.048358,-0.209131,-0.184847,-0.188152 +-0.034792,0.263408,0.052455,-0.205648,-0.184128,-0.181476 +-0.039936,0.264688,0.056377,-0.202155,-0.183351,-0.174793 +-0.044970,0.265838,0.060117,-0.198660,-0.182510,-0.168114 +-0.049892,0.266859,0.063666,-0.195171,-0.181605,-0.161453 +-0.054698,0.267749,0.067016,-0.191694,-0.180632,-0.154822 +-0.059385,0.268507,0.070161,-0.188238,-0.179588,-0.148234 +-0.063949,0.269132,0.073092,-0.184808,-0.178472,-0.141701 +-0.068389,0.269625,0.075804,-0.181414,-0.177280,-0.135235 +-0.072700,0.269985,0.078290,-0.178061,-0.176011,-0.128848 +-0.076881,0.270212,0.080545,-0.174758,-0.174661,-0.122552 +-0.080930,0.270307,0.082563,-0.171512,-0.173230,-0.116358 +-0.084844,0.270270,0.084340,-0.168330,-0.171715,-0.110278 +-0.088622,0.270101,0.085870,-0.165218,-0.170115,-0.104322 +-0.092262,0.269802,0.087150,-0.162184,-0.168427,-0.098501 +-0.095762,0.269373,0.088176,-0.159235,-0.166652,-0.092825 +-0.099122,0.268816,0.088945,-0.156377,-0.164786,-0.087303 +-0.102340,0.268132,0.089456,-0.153617,-0.162830,-0.081945 +-0.105416,0.267323,0.089705,-0.150961,-0.160781,-0.076760 +-0.108349,0.266392,0.089692,-0.148415,-0.158641,-0.071757 +-0.111139,0.265339,0.089414,-0.145985,-0.156407,-0.066942 +-0.113786,0.264168,0.088873,-0.143676,-0.154080,-0.062324 +-0.116291,0.262881,0.088068,-0.141495,-0.151659,-0.057910 +-0.118652,0.261480,0.087000,-0.139446,-0.149144,-0.053705 +-0.120872,0.259969,0.085670,-0.137533,-0.146537,-0.049715 +-0.122951,0.258351,0.084079,-0.135762,-0.143836,-0.045946 +-0.124889,0.256630,0.082230,-0.134137,-0.141043,-0.042402 +-0.126690,0.254807,0.080126,-0.132661,-0.138158,-0.039088 +-0.128353,0.252888,0.077769,-0.131339,-0.135183,-0.036006 +-0.129881,0.250877,0.075165,-0.130173,-0.132118,-0.033160 +-0.131276,0.248776,0.072316,-0.129166,-0.128966,-0.030551 +-0.132539,0.246591,0.069228,-0.128321,-0.125727,-0.028181 +-0.133674,0.244325,0.065906,-0.127639,-0.122404,-0.026051 +-0.134683,0.241983,0.062356,-0.127124,-0.118998,-0.024161 +-0.135568,0.239571,0.058585,-0.126775,-0.115511,-0.022512 +-0.136334,0.237091,0.054598,-0.126595,-0.111947,-0.021100 +-0.136982,0.234550,0.050404,-0.126583,-0.108307,-0.019926 +-0.137516,0.231952,0.046009,-0.126740,-0.104594,-0.018987 +-0.137941,0.229303,0.041421,-0.127066,-0.100812,-0.018280 +-0.138259,0.226606,0.036650,-0.127560,-0.096963,-0.017801 +-0.138475,0.223869,0.031704,-0.128221,-0.093050,-0.017546 +-0.138592,0.221095,0.026591,-0.129048,-0.089076,-0.017511 +-0.138615,0.218290,0.021322,-0.130039,-0.085046,-0.017691 +-0.138548,0.215459,0.015906,-0.131192,-0.080964,-0.018079 +-0.138396,0.212609,0.010353,-0.132504,-0.076831,-0.018669 +-0.138163,0.209744,0.004674,-0.133973,-0.072654,-0.019454 +-0.137854,0.206869,-0.001121,-0.135595,-0.068435,-0.020427 +-0.137473,0.203990,-0.007021,-0.137367,-0.064180,-0.021580 +-0.137027,0.201113,-0.013015,-0.139284,-0.059891,-0.022905 +-0.136519,0.198242,-0.019092,-0.141342,-0.055574,-0.024392 +-0.135955,0.195383,-0.025240,-0.143536,-0.051233,-0.026032 +-0.135340,0.192542,-0.031449,-0.145862,-0.046873,-0.027816 +-0.134679,0.189723,-0.037706,-0.148314,-0.042498,-0.029734 +-0.133978,0.186931,-0.044000,-0.150886,-0.038113,-0.031776 +-0.133242,0.184172,-0.050319,-0.153573,-0.033722,-0.033930 +-0.132476,0.181450,-0.056652,-0.156367,-0.029331,-0.036186 +-0.131686,0.178770,-0.062987,-0.159264,-0.024944,-0.038532 +-0.130877,0.176137,-0.069312,-0.162255,-0.020566,-0.040957 +-0.130054,0.173555,-0.075616,-0.165334,-0.016201,-0.043450 +-0.129223,0.171029,-0.081887,-0.168494,-0.011856,-0.045998 +-0.128390,0.168562,-0.088114,-0.171728,-0.007533,-0.048590 +-0.127559,0.166159,-0.094286,-0.175027,-0.003240,-0.051214 +-0.126735,0.163824,-0.100392,-0.178384,0.001021,-0.053857 +-0.125925,0.161559,-0.106420,-0.181791,0.005244,-0.056508 +-0.125134,0.159370,-0.112360,-0.185241,0.009424,-0.059153 +-0.124365,0.157257,-0.118202,-0.188725,0.013557,-0.061782 +-0.123626,0.155226,-0.123935,-0.192234,0.017639,-0.064382 +-0.122920,0.153278,-0.129550,-0.195762,0.021663,-0.066941 +-0.122252,0.151416,-0.135038,-0.199298,0.025627,-0.069447 +-0.121628,0.149642,-0.140388,-0.202836,0.029526,-0.071888 +-0.121051,0.147958,-0.145592,-0.206367,0.033355,-0.074254 +-0.120527,0.146367,-0.150642,-0.209882,0.037110,-0.076532 +-0.120059,0.144868,-0.155529,-0.213374,0.040788,-0.078713 +-0.119653,0.143465,-0.160246,-0.216834,0.044383,-0.080784 +-0.119312,0.142157,-0.164785,-0.220253,0.047894,-0.082736 +-0.119040,0.140945,-0.169140,-0.223625,0.051314,-0.084559 +-0.118841,0.139830,-0.173304,-0.226941,0.054642,-0.086242 +-0.118719,0.138811,-0.177271,-0.230194,0.057874,-0.087777 +-0.118677,0.137889,-0.181036,-0.233375,0.061006,-0.089155 +-0.118718,0.137064,-0.184594,-0.236478,0.064035,-0.090367 +-0.118846,0.136333,-0.187940,-0.239495,0.066958,-0.091405 +-0.119064,0.135697,-0.191071,-0.242419,0.069773,-0.092261 +-0.119374,0.135154,-0.193982,-0.245244,0.072476,-0.092930 +-0.119778,0.134702,-0.196672,-0.247963,0.075066,-0.093404 +-0.120280,0.134340,-0.199137,-0.250570,0.077540,-0.093677 +-0.120882,0.134065,-0.201376,-0.253058,0.079895,-0.093743 +-0.121584,0.133875,-0.203387,-0.255423,0.082130,-0.093599 +-0.122390,0.133767,-0.205170,-0.257659,0.084243,-0.093240 +-0.123300,0.133738,-0.206725,-0.259760,0.086233,-0.092663 +-0.124316,0.133786,-0.208051,-0.261723,0.088097,-0.091863 +-0.125439,0.133906,-0.209149,-0.263542,0.089835,-0.090840 +-0.126669,0.134095,-0.210021,-0.265214,0.091446,-0.089590 +-0.128008,0.134349,-0.210668,-0.266735,0.092928,-0.088114 +-0.129456,0.134664,-0.211093,-0.268102,0.094281,-0.086410 +-0.131013,0.135035,-0.211298,-0.269312,0.095505,-0.084478 +-0.132679,0.135459,-0.211288,-0.270362,0.096598,-0.082320 +-0.134453,0.135929,-0.211065,-0.271251,0.097561,-0.079936 +-0.136337,0.136442,-0.210634,-0.271976,0.098393,-0.077329 +-0.138327,0.136992,-0.209999,-0.272536,0.099096,-0.074502 +-0.140425,0.137573,-0.209166,-0.272930,0.099668,-0.071456 +-0.142629,0.138181,-0.208141,-0.273159,0.100111,-0.068197 +-0.144937,0.138810,-0.206929,-0.273220,0.100425,-0.064729 +-0.147348,0.139454,-0.205536,-0.273116,0.100611,-0.061056 +-0.149860,0.140108,-0.203970,-0.272846,0.100669,-0.057185 +-0.152473,0.140765,-0.202237,-0.272412,0.100602,-0.053121 +-0.155182,0.141419,-0.200345,-0.271815,0.100409,-0.048871 +-0.157987,0.142066,-0.198302,-0.271057,0.100093,-0.044442 +-0.160885,0.142698,-0.196115,-0.270140,0.099654,-0.039841 +-0.163873,0.143309,-0.193793,-0.269066,0.099095,-0.035078 +-0.166949,0.143894,-0.191345,-0.267839,0.098416,-0.030160 +-0.170109,0.144446,-0.188779,-0.266462,0.097621,-0.025096 +-0.173351,0.144959,-0.186104,-0.264938,0.096710,-0.019896 +-0.176672,0.145427,-0.183329,-0.263272,0.095686,-0.014570 +-0.180067,0.145845,-0.180464,-0.261467,0.094551,-0.009128 +-0.183534,0.146206,-0.177519,-0.259529,0.093306,-0.003580 +-0.187069,0.146504,-0.174501,-0.257462,0.091955,0.002064 +-0.190669,0.146734,-0.171422,-0.255271,0.090500,0.007791 +-0.194329,0.146890,-0.168291,-0.252961,0.088942,0.013591 +-0.198045,0.146966,-0.165118,-0.250539,0.087285,0.019453 +-0.201814,0.146957,-0.161912,-0.248011,0.085532,0.025364 +-0.205632,0.146858,-0.158682,-0.245381,0.083683,0.031313 +-0.209493,0.146664,-0.155440,-0.242658,0.081743,0.037288 +-0.213395,0.146370,-0.152193,-0.239846,0.079714,0.043277 +-0.217333,0.145971,-0.148952,-0.236953,0.077598,0.049268 +-0.221301,0.145463,-0.145726,-0.233985,0.075399,0.055249 +-0.225297,0.144841,-0.142523,-0.230950,0.073118,0.061208 +-0.229315,0.144102,-0.139355,-0.227854,0.070760,0.067134 +-0.233352,0.143242,-0.136228,-0.224704,0.068325,0.073013 +-0.237401,0.142257,-0.133151,-0.221508,0.065818,0.078835 +-0.241460,0.141144,-0.130134,-0.218273,0.063241,0.084587 +-0.245524,0.139901,-0.127183,-0.215005,0.060597,0.090259 +-0.249587,0.138523,-0.124308,-0.211712,0.057888,0.095839 +-0.253646,0.137011,-0.121516,-0.208401,0.055118,0.101316 +-0.257696,0.135360,-0.118813,-0.205080,0.052288,0.106680 +-0.261733,0.133570,-0.116207,-0.201755,0.049402,0.111920 +-0.265752,0.131638,-0.113704,-0.198433,0.046462,0.117025 +-0.269748,0.129565,-0.111312,-0.195121,0.043471,0.121987 +-0.273719,0.127350,-0.109035,-0.191826,0.040431,0.126796 +-0.277659,0.124991,-0.106879,-0.188555,0.037344,0.131443 +-0.281564,0.122489,-0.104849,-0.185313,0.034215,0.135919 +-0.285430,0.119845,-0.102950,-0.182108,0.031044,0.140216 +-0.289253,0.117058,-0.101186,-0.178945,0.027834,0.144328 +-0.293029,0.114131,-0.099562,-0.175830,0.024588,0.148246 +-0.296754,0.111064,-0.098079,-0.172769,0.021307,0.151964 +-0.300425,0.107859,-0.096743,-0.169767,0.017995,0.155476 +-0.304037,0.104518,-0.095554,-0.166830,0.014653,0.158777 +-0.307588,0.101044,-0.094515,-0.163962,0.011283,0.161861 +-0.311074,0.097440,-0.093629,-0.161168,0.007888,0.164724 +-0.314491,0.093708,-0.092895,-0.158451,0.004469,0.167363 +-0.317836,0.089853,-0.092315,-0.155817,0.001029,0.169774 +-0.321107,0.085877,-0.091889,-0.153269,-0.002431,0.171955 +-0.324300,0.081785,-0.091616,-0.150811,-0.005908,0.173903 +-0.327412,0.077582,-0.091497,-0.148444,-0.009401,0.175618 +-0.330440,0.073272,-0.091530,-0.146172,-0.012908,0.177098 +-0.333383,0.068861,-0.091714,-0.143998,-0.016428,0.178344 +-0.336238,0.064353,-0.092047,-0.141923,-0.019958,0.179356 +-0.339001,0.059755,-0.092526,-0.139949,-0.023497,0.180135 +-0.341672,0.055073,-0.093149,-0.138077,-0.027043,0.180682 +-0.344249,0.050312,-0.093913,-0.136307,-0.030595,0.181001 +-0.346728,0.045479,-0.094814,-0.134642,-0.034151,0.181094 +-0.349109,0.040581,-0.095848,-0.133080,-0.037710,0.180964 +-0.351390,0.035624,-0.097011,-0.131621,-0.041270,0.180616 +-0.353570,0.030617,-0.098298,-0.130266,-0.044830,0.180054 +-0.355646,0.025566,-0.099705,-0.129012,-0.048388,0.179284 +-0.357619,0.020478,-0.101226,-0.127858,-0.051943,0.178312 +-0.359487,0.015362,-0.102855,-0.126804,-0.055493,0.177143 +-0.361249,0.010225,-0.104588,-0.125847,-0.059038,0.175785 +-0.362904,0.005076,-0.106416,-0.124984,-0.062575,0.174244 +-0.364453,-0.000078,-0.108335,-0.124213,-0.066103,0.172530 +-0.365893,-0.005228,-0.110338,-0.123530,-0.069622,0.170649 +-0.367226,-0.010367,-0.112418,-0.122934,-0.073129,0.168611 +-0.368450,-0.015485,-0.114567,-0.122419,-0.076624,0.166425 +-0.369566,-0.020574,-0.116779,-0.121982,-0.080104,0.164100 +-0.370573,-0.025626,-0.119046,-0.121618,-0.083569,0.161646 +-0.371473,-0.030633,-0.121361,-0.121324,-0.087017,0.159073 +-0.372264,-0.035586,-0.123717,-0.121094,-0.090446,0.156392 +-0.372948,-0.040476,-0.126105,-0.120923,-0.093856,0.153613 +-0.373525,-0.045295,-0.128518,-0.120807,-0.097244,0.150747 +-0.373995,-0.050035,-0.130948,-0.120739,-0.100610,0.147806 +-0.374360,-0.054688,-0.133388,-0.120714,-0.103951,0.144800 +-0.374620,-0.059245,-0.135829,-0.120727,-0.107267,0.141742 +-0.374775,-0.063698,-0.138264,-0.120771,-0.110555,0.138643 +-0.374828,-0.068040,-0.140686,-0.120840,-0.113813,0.135515 +-0.374778,-0.072263,-0.143086,-0.120928,-0.117042,0.132369 +-0.374628,-0.076358,-0.145457,-0.121029,-0.120237,0.129217 +-0.374377,-0.080320,-0.147792,-0.121136,-0.123399,0.126072 +-0.374028,-0.084140,-0.150084,-0.121243,-0.126524,0.122944 +-0.373582,-0.087811,-0.152324,-0.121343,-0.129611,0.119846 +-0.373040,-0.091327,-0.154507,-0.121430,-0.132659,0.116789 +-0.372404,-0.094682,-0.156624,-0.121497,-0.135665,0.113784 +-0.371675,-0.097868,-0.158671,-0.121537,-0.138628,0.110844 +-0.370855,-0.100880,-0.160640,-0.121545,-0.141544,0.107978 +-0.369944,-0.103713,-0.162525,-0.121513,-0.144413,0.105199 +-0.368946,-0.106360,-0.164320,-0.121436,-0.147233,0.102516 +-0.367861,-0.108817,-0.166020,-0.121306,-0.150000,0.099941 +-0.366691,-0.111080,-0.167620,-0.121118,-0.152713,0.097482 +-0.365438,-0.113143,-0.169113,-0.120866,-0.155369,0.095150 +-0.364103,-0.115002,-0.170496,-0.120543,-0.157967,0.092955 +-0.362689,-0.116655,-0.171763,-0.120145,-0.160504,0.090905 +-0.361196,-0.118097,-0.172912,-0.119665,-0.162978,0.089009 +-0.359627,-0.119325,-0.173937,-0.119099,-0.165386,0.087275 +-0.357983,-0.120338,-0.174836,-0.118441,-0.167726,0.085711 +-0.356267,-0.121132,-0.175605,-0.117685,-0.169995,0.084324 +-0.354479,-0.121706,-0.176242,-0.116829,-0.172192,0.083121 +-0.352621,-0.122059,-0.176745,-0.115866,-0.174313,0.082109 +-0.350695,-0.122189,-0.177111,-0.114794,-0.176357,0.081293 +-0.348704,-0.122097,-0.177338,-0.113608,-0.178320,0.080678 +-0.346647,-0.121780,-0.177426,-0.112305,-0.180201,0.080269 +-0.344527,-0.121241,-0.177374,-0.110881,-0.181996,0.080071 +-0.342346,-0.120479,-0.177181,-0.109334,-0.183704,0.080086 +-0.340104,-0.119496,-0.176846,-0.107662,-0.185322,0.080318 +-0.337804,-0.118292,-0.176371,-0.105862,-0.186848,0.080770 +-0.335447,-0.116870,-0.175756,-0.103932,-0.188279,0.081443 +-0.333034,-0.115232,-0.175001,-0.101871,-0.189612,0.082339 +-0.330567,-0.113380,-0.174108,-0.099678,-0.190847,0.083458 +-0.328046,-0.111318,-0.173080,-0.097352,-0.191979,0.084800 +-0.325474,-0.109048,-0.171917,-0.094892,-0.193008,0.086365 +-0.322852,-0.106575,-0.170622,-0.092300,-0.193931,0.088152 +-0.320180,-0.103903,-0.169198,-0.089575,-0.194746,0.090159 +-0.317460,-0.101035,-0.167649,-0.086718,-0.195451,0.092384 +-0.314693,-0.097977,-0.165976,-0.083731,-0.196044,0.094824 +-0.311880,-0.094735,-0.164185,-0.080614,-0.196523,0.097476 +-0.309022,-0.091313,-0.162278,-0.077371,-0.196886,0.100336 +-0.306120,-0.087717,-0.160260,-0.074003,-0.197133,0.103399 +-0.303174,-0.083953,-0.158136,-0.070512,-0.197261,0.106660 +-0.300186,-0.080029,-0.155911,-0.066903,-0.197268,0.110115 +-0.297157,-0.075950,-0.153588,-0.063179,-0.197155,0.113756 +-0.294086,-0.071723,-0.151174,-0.059343,-0.196918,0.117578 +-0.290976,-0.067356,-0.148674,-0.055399,-0.196559,0.121573 +-0.287826,-0.062856,-0.146093,-0.051352,-0.196074,0.125734 +-0.284637,-0.058230,-0.143437,-0.047207,-0.195465,0.130054 +-0.281410,-0.053488,-0.140713,-0.042969,-0.194729,0.134524 +-0.278145,-0.048635,-0.137925,-0.038644,-0.193868,0.139136 +-0.274842,-0.043682,-0.135080,-0.034236,-0.192880,0.143881 +-0.271503,-0.038636,-0.132185,-0.029753,-0.191765,0.148749 +-0.268127,-0.033506,-0.129246,-0.025200,-0.190523,0.153731 +-0.264715,-0.028301,-0.126268,-0.020584,-0.189156,0.158816 +-0.261266,-0.023028,-0.123260,-0.015911,-0.187662,0.163996 +-0.257783,-0.017698,-0.120226,-0.011189,-0.186043,0.169260 +-0.254264,-0.012319,-0.117174,-0.006425,-0.184299,0.174597 +-0.250709,-0.006900,-0.114109,-0.001626,-0.182432,0.179996 +-0.247120,-0.001450,-0.111040,0.003200,-0.180442,0.185447 +-0.243496,0.004022,-0.107971,0.008046,-0.178332,0.190938 +-0.239837,0.009507,-0.104909,0.012904,-0.176102,0.196460 +-0.236144,0.014995,-0.101861,0.017766,-0.173754,0.201999 +-0.232416,0.020479,-0.098832,0.022624,-0.171290,0.207547 +-0.228654,0.025948,-0.095830,0.027470,-0.168713,0.213090 +-0.224858,0.031394,-0.092859,0.032296,-0.166025,0.218619 +-0.221028,0.036809,-0.089925,0.037093,-0.163227,0.224122 +-0.217163,0.042183,-0.087035,0.041854,-0.160324,0.229588 +-0.213264,0.047508,-0.084194,0.046570,-0.157318,0.235006 +-0.209332,0.052776,-0.081407,0.051234,-0.154212,0.240366 +-0.205365,0.057978,-0.078679,0.055836,-0.151010,0.245657 +-0.201364,0.063106,-0.076015,0.060370,-0.147714,0.250868 +-0.197330,0.068152,-0.073420,0.064827,-0.144330,0.255990 +-0.193261,0.073109,-0.070899,0.069199,-0.140860,0.261013 +-0.189159,0.077968,-0.068455,0.073479,-0.137309,0.265926 +-0.185023,0.082724,-0.066093,0.077660,-0.133680,0.270721 +-0.180854,0.087367,-0.063816,0.081732,-0.129980,0.275388 +-0.176651,0.091893,-0.061628,0.085691,-0.126211,0.279918 +-0.172415,0.096294,-0.059533,0.089528,-0.122379,0.284304 +-0.168145,0.100563,-0.057532,0.093236,-0.118488,0.288536 +-0.163842,0.104696,-0.055630,0.096810,-0.114545,0.292608 +-0.159507,0.108685,-0.053827,0.100242,-0.110553,0.296512 +-0.155138,0.112526,-0.052128,0.103527,-0.106518,0.300241 +-0.150737,0.116214,-0.050532,0.106659,-0.102446,0.303788 +-0.146304,0.119743,-0.049042,0.109632,-0.098342,0.307148 +-0.141839,0.123110,-0.047659,0.112441,-0.094212,0.310315 +-0.137342,0.126309,-0.046385,0.115081,-0.090062,0.313284 +-0.132814,0.129338,-0.045219,0.117548,-0.085897,0.316050 +-0.128255,0.132193,-0.044162,0.119836,-0.081723,0.318609 +-0.123665,0.134869,-0.043214,0.121944,-0.077547,0.320957 +-0.119045,0.137366,-0.042376,0.123865,-0.073373,0.323090 +-0.114395,0.139680,-0.041647,0.125599,-0.069210,0.325007 +-0.109716,0.141809,-0.041025,0.127140,-0.065061,0.326704 +-0.105009,0.143751,-0.040511,0.128488,-0.060934,0.328181 +-0.100273,0.145504,-0.040103,0.129640,-0.056835,0.329435 +-0.095510,0.147069,-0.039799,0.130594,-0.052770,0.330465 +-0.090719,0.148443,-0.039598,0.131348,-0.048745,0.331272 +-0.085903,0.149627,-0.039498,0.131903,-0.044766,0.331856 +-0.081061,0.150621,-0.039497,0.132256,-0.040838,0.332216 +-0.076194,0.151424,-0.039592,0.132408,-0.036970,0.332354 +-0.071303,0.152038,-0.039782,0.132359,-0.033165,0.332272 +-0.066388,0.152463,-0.040062,0.132109,-0.029430,0.331970 +-0.061451,0.152700,-0.040432,0.131660,-0.025771,0.331453 +-0.056493,0.152751,-0.040886,0.131011,-0.022194,0.330721 +-0.051513,0.152619,-0.041423,0.130166,-0.018704,0.329779 +-0.046514,0.152304,-0.042039,0.129126,-0.015306,0.328629 +-0.041496,0.151810,-0.042730,0.127893,-0.012007,0.327276 +-0.036460,0.151139,-0.043493,0.126470,-0.008811,0.325724 +-0.031407,0.150295,-0.044325,0.124860,-0.005724,0.323977 +-0.026338,0.149280,-0.045221,0.123066,-0.002749,0.322041 +-0.021254,0.148099,-0.046178,0.121091,0.000107,0.319919 +-0.016156,0.146754,-0.047191,0.118940,0.002840,0.317619 +-0.011046,0.145251,-0.048258,0.116616,0.005446,0.315144 +-0.005924,0.143593,-0.049373,0.114125,0.007921,0.312502 +-0.000792,0.141784,-0.050534,0.111470,0.010261,0.309698 +0.004350,0.139830,-0.051736,0.108657,0.012461,0.306739 +0.009499,0.137736,-0.052976,0.105691,0.014519,0.303631 +0.014656,0.135505,-0.054249,0.102578,0.016431,0.300380 +0.019818,0.133145,-0.055551,0.099322,0.018193,0.296994 +0.024985,0.130659,-0.056880,0.095930,0.019804,0.293479 +0.030154,0.128054,-0.058230,0.092407,0.021259,0.289842 +0.035326,0.125335,-0.059599,0.088761,0.022558,0.286090 +0.040498,0.122508,-0.060983,0.084996,0.023698,0.282230 +0.045670,0.119579,-0.062378,0.081120,0.024677,0.278268 +0.050839,0.116554,-0.063781,0.077139,0.025493,0.274213 +0.056005,0.113438,-0.065190,0.073059,0.026145,0.270071 +0.061167,0.110239,-0.066600,0.068887,0.026632,0.265848 +0.066323,0.106962,-0.068009,0.064631,0.026954,0.261551 +0.071471,0.103613,-0.069414,0.060295,0.027110,0.257188 +0.076611,0.100198,-0.070813,0.055888,0.027099,0.252765 +0.081740,0.096725,-0.072203,0.051416,0.026922,0.248288 +0.086859,0.093199,-0.073581,0.046886,0.026579,0.243763 +0.091964,0.089626,-0.074947,0.042304,0.026071,0.239197 +0.097056,0.086013,-0.076297,0.037678,0.025399,0.234595 +0.102132,0.082366,-0.077630,0.033013,0.024564,0.229963 +0.107191,0.078691,-0.078944,0.028316,0.023567,0.225307 +0.112232,0.074994,-0.080238,0.023594,0.022410,0.220631 +0.117254,0.071281,-0.081512,0.018853,0.021095,0.215942 +0.122254,0.067559,-0.082763,0.014099,0.019624,0.211243 +0.127233,0.063833,-0.083991,0.009338,0.018001,0.206538 +0.132187,0.060109,-0.085196,0.004577,0.016227,0.201833 +0.137114,0.057949,-0.086377,-0.000178,0.012925,0.197133 +0.142011,0.055627,-0.087540,-0.004923,0.009636,0.192441 +0.146875,0.053148,-0.088686,-0.009653,0.006364,0.187762 +0.151700,0.050517,-0.089822,-0.014363,0.003114,0.183101 +0.156483,0.047737,-0.090946,-0.019047,-0.000107,0.178464 +0.161219,0.044813,-0.092059,-0.023701,-0.003298,0.173856 +0.165907,0.041750,-0.093161,-0.028318,-0.006456,0.169282 +0.170545,0.038551,-0.094253,-0.032895,-0.009582,0.164747 +0.175135,0.035221,-0.095333,-0.037426,-0.012675,0.160257 +0.179675,0.031764,-0.096402,-0.041908,-0.015737,0.155813 +0.184167,0.028185,-0.097460,-0.046344,-0.018767,0.151417 +0.188610,0.024489,-0.098507,-0.050731,-0.021764,0.147068 +0.193004,0.020678,-0.099543,-0.055070,-0.024730,0.142767 +0.197349,0.016758,-0.100569,-0.059362,-0.027663,0.138512 +0.201645,0.012733,-0.101583,-0.063606,-0.030564,0.134306 +0.205892,0.008607,-0.102586,-0.067802,-0.033433,0.130146 +0.210090,0.004385,-0.103578,-0.071951,-0.036270,0.126034 +0.214239,0.000070,-0.104559,-0.076051,-0.039075,0.121969 +0.218339,-0.004332,-0.105530,-0.080104,-0.041848,0.117952 +0.222390,-0.008817,-0.106489,-0.084109,-0.044588,0.113981 +0.226392,-0.013382,-0.107437,-0.088067,-0.047297,0.110059 +0.230346,-0.018021,-0.108374,-0.091976,-0.049973,0.106183 +0.234250,-0.022731,-0.109300,-0.095838,-0.052617,0.102355 +0.238106,-0.027507,-0.110215,-0.099652,-0.055229,0.098574 +0.241912,-0.032345,-0.111120,-0.103418,-0.057809,0.094841 +0.245670,-0.037240,-0.112013,-0.107137,-0.060357,0.091155 +0.249378,-0.042188,-0.112895,-0.110807,-0.062873,0.087516 +0.253038,-0.047186,-0.113766,-0.114430,-0.065357,0.083925 +0.256649,-0.052227,-0.114626,-0.118005,-0.067808,0.080380 +0.260211,-0.057309,-0.115475,-0.121533,-0.070228,0.076884 +0.263724,-0.062427,-0.116313,-0.125012,-0.072615,0.073434 +0.267188,-0.067576,-0.117140,-0.128444,-0.074970,0.070032 +0.270603,-0.072752,-0.117957,-0.131828,-0.077293,0.066678 +0.273969,-0.077951,-0.118762,-0.135164,-0.079584,0.063370 +0.277286,-0.083169,-0.119556,-0.138452,-0.081843,0.060110 +0.280554,-0.088401,-0.120339,-0.141693,-0.084070,0.056897 +0.283773,-0.093642,-0.121111,-0.144886,-0.086264,0.053732 +0.286944,-0.098890,-0.121872,-0.148031,-0.088427,0.050614 +0.290065,-0.104138,-0.122622,-0.151128,-0.090557,0.047543 +0.293137,-0.109383,-0.123361,-0.154178,-0.092656,0.044520 +0.296161,-0.114621,-0.124089,-0.157180,-0.094722,0.041544 +0.299135,-0.119847,-0.124806,-0.160133,-0.096756,0.038615 +0.302061,-0.125057,-0.125512,-0.163040,-0.098758,0.035734 +0.304938,-0.130247,-0.126207,-0.165898,-0.100728,0.032900 +0.307765,-0.135412,-0.126892,-0.168709,-0.102665,0.030113 +0.310544,-0.140548,-0.127565,-0.171472,-0.104571,0.027374 +0.313274,-0.145650,-0.128227,-0.174187,-0.106444,0.024681 +0.315955,-0.150714,-0.128878,-0.176854,-0.108286,0.022037 +0.318587,-0.155737,-0.129518,-0.179473,-0.110095,0.019439 +0.321170,-0.160713,-0.130147,-0.182045,-0.111872,0.016890 +0.323704,-0.165639,-0.130765,-0.184569,-0.113617,0.014387 +0.326189,-0.170509,-0.131372,-0.187045,-0.115330,0.011931 +0.328625,-0.175320,-0.131968,-0.189474,-0.117011,0.009524 +0.331013,-0.180067,-0.132553,-0.191854,-0.118660,0.007163 +0.333351,-0.184747,-0.133127,-0.194187,-0.120276,0.004850 +0.335640,-0.189353,-0.133690,-0.196472,-0.121861,0.002584 +0.337881,-0.193884,-0.134242,-0.198709,-0.123413,0.000365 +0.340072,-0.198333,-0.134783,-0.200899,-0.124933,-0.001806 +0.342215,-0.202697,-0.135313,-0.203041,-0.126421,-0.003930 +0.344308,-0.206971,-0.135832,-0.205135,-0.127877,-0.006007 +0.346353,-0.211151,-0.136340,-0.207181,-0.129301,-0.008036 +0.348349,-0.215233,-0.136837,-0.209179,-0.130693,-0.010018 +0.350296,-0.219212,-0.137323,-0.211130,-0.132052,-0.011953 +0.352194,-0.223085,-0.137798,-0.213033,-0.133380,-0.013840 +0.354043,-0.226846,-0.138262,-0.214888,-0.134675,-0.015680 +0.355842,-0.230491,-0.138715,-0.216695,-0.135939,-0.017473 +0.357594,-0.234017,-0.139157,-0.218454,-0.137170,-0.019218 +0.359296,-0.237418,-0.139588,-0.220166,-0.138369,-0.020916 +0.360949,-0.240690,-0.140008,-0.221830,-0.139536,-0.022566 +0.362553,-0.243830,-0.140417,-0.223446,-0.140671,-0.024170 +0.364108,-0.246832,-0.140815,-0.225015,-0.141773,-0.025725 +0.365615,-0.249693,-0.141201,-0.226535,-0.142844,-0.027234 +0.367072,-0.252408,-0.141577,-0.228008,-0.143882,-0.028695 +0.368480,-0.254973,-0.141942,-0.229433,-0.144889,-0.030109 +0.369840,-0.257392,-0.142296,-0.230810,-0.145863,-0.031476 +0.371151,-0.259668,-0.142639,-0.232140,-0.146805,-0.032795 +0.372412,-0.261806,-0.142971,-0.233422,-0.147715,-0.034067 +0.373625,-0.263810,-0.143292,-0.234655,-0.148593,-0.035292 +0.374789,-0.265685,-0.143602,-0.235842,-0.149439,-0.036469 +0.375903,-0.267435,-0.143901,-0.236980,-0.150253,-0.037599 +0.376969,-0.269063,-0.144189,-0.238071,-0.151034,-0.038681 +0.377986,-0.270575,-0.144466,-0.239113,-0.151784,-0.039716 +0.378954,-0.271975,-0.144732,-0.240108,-0.152501,-0.040704 +0.379873,-0.273267,-0.144986,-0.241056,-0.153186,-0.041645 +0.380743,-0.274455,-0.145230,-0.241955,-0.153839,-0.042538 +0.381565,-0.275544,-0.145463,-0.242807,-0.154460,-0.043384 +0.382337,-0.276538,-0.145685,-0.243611,-0.155049,-0.044182 +0.383060,-0.277442,-0.145896,-0.244367,-0.155606,-0.044933 +0.383735,-0.278259,-0.146096,-0.245075,-0.156131,-0.045637 +0.384360,-0.278995,-0.146285,-0.245736,-0.156623,-0.046294 +0.384936,-0.279653,-0.146462,-0.246349,-0.157084,-0.046903 +0.385464,-0.280237,-0.146629,-0.246914,-0.157512,-0.047465 +0.385943,-0.280753,-0.146785,-0.247431,-0.157908,-0.047979 +0.386372,-0.281204,-0.146930,-0.247900,-0.158272,-0.048446 +0.386753,-0.281594,-0.147064,-0.248322,-0.158604,-0.048866 +0.387085,-0.281929,-0.147187,-0.248696,-0.158904,-0.049239 +0.387368,-0.282212,-0.147299,-0.249022,-0.159172,-0.049564 +0.387603,-0.282448,-0.147399,-0.249300,-0.159407,-0.049841 +0.387796,-0.282641,-0.147489,-0.249531,-0.159611,-0.050072 +0.387950,-0.282795,-0.147568,-0.249716,-0.159782,-0.050257 +0.388070,-0.282914,-0.147636,-0.249859,-0.159921,-0.050400 +0.388160,-0.283004,-0.147693,-0.249967,-0.160029,-0.050507 +0.388224,-0.283068,-0.147738,-0.250043,-0.160105,-0.050584 +0.388266,-0.283111,-0.147773,-0.250095,-0.160157,-0.050636 +0.388292,-0.283137,-0.147797,-0.250125,-0.160187,-0.050666 +0.388305,-0.283150,-0.147810,-0.250141,-0.160203,-0.050682 +0.388310,-0.283154,-0.147815,-0.250146,-0.160208,-0.050687 +0.388310,-0.283155,-0.147815,-0.250147,-0.160209,-0.050688 +0.388309,-0.283155,-0.147815,-0.250147,-0.160209,-0.050685 +0.388309,-0.283154,-0.147816,-0.250148,-0.160208,-0.050684 +0.388305,-0.283150,-0.147820,-0.250153,-0.160203,-0.050680 +0.388294,-0.283140,-0.147830,-0.250165,-0.160191,-0.050667 +0.388274,-0.283120,-0.147850,-0.250189,-0.160167,-0.050644 +0.388241,-0.283087,-0.147883,-0.250228,-0.160128,-0.050604 +0.388192,-0.283038,-0.147932,-0.250287,-0.160069,-0.050545 +0.388124,-0.282969,-0.148001,-0.250370,-0.159986,-0.050463 +0.388032,-0.282878,-0.148092,-0.250479,-0.159877,-0.050353 +0.387915,-0.282760,-0.148210,-0.250620,-0.159736,-0.050213 +0.387768,-0.282614,-0.148356,-0.250795,-0.159561,-0.050037 +0.387589,-0.282435,-0.148535,-0.251010,-0.159346,-0.049822 +0.387374,-0.282220,-0.148750,-0.251267,-0.159089,-0.049565 +0.387121,-0.281966,-0.149004,-0.251571,-0.158785,-0.049261 +0.386825,-0.281670,-0.149300,-0.251926,-0.158431,-0.048907 +0.386484,-0.281329,-0.149641,-0.252334,-0.158022,-0.048498 +0.386094,-0.280939,-0.150031,-0.252802,-0.157554,-0.048031 +0.385652,-0.280497,-0.150473,-0.253331,-0.157025,-0.047501 +0.385155,-0.280000,-0.150970,-0.253927,-0.156429,-0.046906 +0.384599,-0.279445,-0.151525,-0.254592,-0.155764,-0.046240 +0.383982,-0.278827,-0.152143,-0.255331,-0.155025,-0.045501 +0.383300,-0.278145,-0.152825,-0.256149,-0.154207,-0.044684 +0.382549,-0.277395,-0.153575,-0.257047,-0.153309,-0.043785 +0.381728,-0.276573,-0.154395,-0.258032,-0.152332,-0.042800 +0.380832,-0.275677,-0.155283,-0.259106,-0.151280,-0.041727 +0.379857,-0.274703,-0.156234,-0.260273,-0.150157,-0.040560 +0.378803,-0.273648,-0.157247,-0.261537,-0.148966,-0.039295 +0.377671,-0.272508,-0.158317,-0.262902,-0.147712,-0.037930 +0.376465,-0.271281,-0.159442,-0.264373,-0.146399,-0.036460 +0.375188,-0.269962,-0.160618,-0.265952,-0.145030,-0.034880 +0.373842,-0.268551,-0.161842,-0.267644,-0.143609,-0.033188 +0.372432,-0.267047,-0.163110,-0.269452,-0.142140,-0.031380 +0.370960,-0.265455,-0.164420,-0.271382,-0.140627,-0.029451 +0.369430,-0.263777,-0.165768,-0.273435,-0.139074,-0.027397 +0.367845,-0.262017,-0.167151,-0.275614,-0.137485,-0.025215 +0.366208,-0.260179,-0.168566,-0.277913,-0.135863,-0.022901 +0.364523,-0.258264,-0.170009,-0.280330,-0.134213,-0.020451 +0.362793,-0.256277,-0.171478,-0.282861,-0.132539,-0.017861 +0.361020,-0.254221,-0.172968,-0.285501,-0.130844,-0.015127 +0.359209,-0.252099,-0.174477,-0.288247,-0.129132,-0.012245 +0.357362,-0.249914,-0.176002,-0.291095,-0.127407,-0.009212 +0.355483,-0.247670,-0.177539,-0.294041,-0.125673,-0.006023 +0.353575,-0.245369,-0.179085,-0.297081,-0.123935,-0.002675 +0.351641,-0.243016,-0.180636,-0.300212,-0.122194,0.000837 +0.349685,-0.240613,-0.182190,-0.303428,-0.120454,0.004509 +0.347709,-0.238163,-0.183745,-0.306727,-0.118714,0.008339 +0.345717,-0.235670,-0.185299,-0.310105,-0.116973,0.012323 +0.343713,-0.233137,-0.186853,-0.313557,-0.115233,0.016458 +0.341699,-0.230568,-0.188408,-0.317080,-0.113493,0.020737 +0.339678,-0.227964,-0.189962,-0.320670,-0.111752,0.025160 +0.337655,-0.225331,-0.191516,-0.324323,-0.110012,0.029720 +0.335631,-0.222671,-0.193071,-0.328035,-0.108272,0.034414 +0.333607,-0.219987,-0.194625,-0.331802,-0.106532,0.039239 +0.331583,-0.217282,-0.196179,-0.335620,-0.104791,0.044191 +0.329559,-0.214560,-0.197734,-0.339486,-0.103051,0.049265 +0.327535,-0.211824,-0.199288,-0.343395,-0.101311,0.054458 +0.325511,-0.209077,-0.200842,-0.347345,-0.099570,0.059766 +0.323487,-0.206323,-0.202397,-0.351330,-0.097830,0.065185 +0.321464,-0.203564,-0.203951,-0.355346,-0.096090,0.070711 +0.319440,-0.200804,-0.205505,-0.359391,-0.094349,0.076340 +0.317416,-0.198045,-0.207059,-0.363460,-0.092609,0.082069 +0.315392,-0.195285,-0.208614,-0.367549,-0.090869,0.087893 +0.313368,-0.192525,-0.210168,-0.371655,-0.089128,0.093809 +0.311344,-0.189765,-0.211722,-0.375772,-0.087388,0.099812 +0.309320,-0.187005,-0.213277,-0.379899,-0.085648,0.105899 +0.307296,-0.184245,-0.214831,-0.384030,-0.083907,0.112066 +0.305272,-0.181486,-0.216385,-0.388162,-0.082167,0.118309 +0.303248,-0.178726,-0.217940,-0.392294,-0.080427,0.124624 +0.301224,-0.175966,-0.219494,-0.396427,-0.078687,0.131007 +0.299200,-0.173206,-0.221048,-0.400559,-0.076946,0.137455 +0.297176,-0.170446,-0.222603,-0.404691,-0.075206,0.143963 +0.295152,-0.167687,-0.224157,-0.408823,-0.073466,0.150527 +0.293128,-0.164927,-0.225711,-0.412956,-0.071725,0.157145 +0.291105,-0.162167,-0.227266,-0.417088,-0.069985,0.163811 +0.289081,-0.159407,-0.228820,-0.421220,-0.068245,0.170522 +0.287057,-0.156647,-0.230374,-0.425352,-0.066504,0.177274 +0.285033,-0.153887,-0.231929,-0.429485,-0.064764,0.184063 +0.283009,-0.151128,-0.233483,-0.433617,-0.063024,0.190886 +0.280985,-0.148368,-0.235037,-0.437749,-0.061284,0.197737 +0.278961,-0.145608,-0.236592,-0.441881,-0.059543,0.204615 +0.276937,-0.142848,-0.238146,-0.446013,-0.057803,0.211513 +0.274913,-0.140088,-0.239700,-0.450146,-0.056063,0.218430 +0.272889,-0.137328,-0.241255,-0.454278,-0.054322,0.225360 +0.270865,-0.134569,-0.242809,-0.458410,-0.052582,0.232300 +0.268841,-0.131809,-0.244363,-0.462542,-0.050842,0.239246 +0.266817,-0.129049,-0.245918,-0.466675,-0.049101,0.246195 +0.264793,-0.126289,-0.247472,-0.470807,-0.047361,0.253143 +0.262770,-0.123529,-0.249026,-0.474939,-0.045621,0.260092 +0.260746,-0.120770,-0.250581,-0.479071,-0.043881,0.267040 +0.258722,-0.118010,-0.252135,-0.483204,-0.042140,0.273989 +0.256698,-0.115250,-0.253689,-0.487336,-0.040400,0.280937 +0.254674,-0.112490,-0.255244,-0.491468,-0.038660,0.287886 +0.252650,-0.109730,-0.256798,-0.495600,-0.036919,0.294834 +0.250626,-0.106970,-0.258352,-0.499733,-0.035179,0.301783 +0.248602,-0.104211,-0.259907,-0.503865,-0.033439,0.308731 +0.246578,-0.101451,-0.261461,-0.507997,-0.031698,0.315680 +0.244554,-0.098691,-0.263015,-0.512129,-0.029958,0.322628 +0.242530,-0.095931,-0.264570,-0.516261,-0.028218,0.329577 +0.240506,-0.093171,-0.266124,-0.520394,-0.026477,0.336526 +0.238482,-0.090411,-0.267678,-0.524526,-0.024737,0.343474 +0.236458,-0.087652,-0.269233,-0.528658,-0.022997,0.350423 +0.234434,-0.084892,-0.270787,-0.532790,-0.021257,0.357371 +0.232411,-0.082132,-0.272341,-0.536923,-0.019516,0.364320 +0.230387,-0.079372,-0.273896,-0.541055,-0.017776,0.371268 +0.228363,-0.076612,-0.275450,-0.545187,-0.016036,0.378217 +0.226339,-0.073853,-0.277004,-0.549319,-0.014295,0.385165 +0.224315,-0.071093,-0.278559,-0.553452,-0.012555,0.392114 +0.222291,-0.068333,-0.280113,-0.557584,-0.010815,0.399062 +0.220267,-0.065573,-0.281667,-0.561716,-0.009074,0.406011 +0.218243,-0.062813,-0.283222,-0.565848,-0.007334,0.412959 +0.216219,-0.060053,-0.284776,-0.569980,-0.005594,0.419908 +0.214195,-0.057293,-0.286330,-0.574113,-0.003853,0.426856 +0.212171,-0.054534,-0.287885,-0.578245,-0.002113,0.433805 +0.210147,-0.051774,-0.289439,-0.582377,-0.000373,0.440753 +0.208123,-0.049014,-0.290993,-0.586509,0.001367,0.447702 +0.206099,-0.046254,-0.292548,-0.590642,0.003108,0.454650 +0.204075,-0.043494,-0.294102,-0.594774,0.004848,0.461599 +0.202052,-0.040735,-0.295656,-0.598906,0.006588,0.468547 +0.200028,-0.037975,-0.297211,-0.603038,0.008329,0.475496 +0.198004,-0.035215,-0.298765,-0.607171,0.010069,0.482444 +0.195980,-0.032455,-0.300319,-0.611303,0.011809,0.489393 +0.193956,-0.029695,-0.301873,-0.615435,0.013550,0.496341 +0.191932,-0.026936,-0.303428,-0.619567,0.015290,0.503290 +0.189908,-0.024176,-0.304982,-0.623699,0.017030,0.510238 +0.187884,-0.021416,-0.306536,-0.627832,0.018770,0.517187 +0.185860,-0.018656,-0.308091,-0.631964,0.020511,0.524135 +0.183836,-0.015896,-0.309645,-0.636096,0.022251,0.531084 +0.181812,-0.013136,-0.311199,-0.640228,0.023991,0.538032 +0.179788,-0.010377,-0.312754,-0.644361,0.025732,0.544981 +0.177764,-0.007617,-0.314308,-0.648493,0.027472,0.551929 +0.175740,-0.004857,-0.315862,-0.652625,0.029212,0.558878 +0.173717,-0.002097,-0.317417,-0.656757,0.030953,0.565826 +0.171693,0.000663,-0.318971,-0.660890,0.032693,0.572775 +0.169669,0.003423,-0.320525,-0.665022,0.034433,0.579723 +0.167645,0.006182,-0.322080,-0.669154,0.036174,0.586672 +0.165621,0.008942,-0.323634,-0.673286,0.037914,0.593620 +0.163597,0.011702,-0.325188,-0.677419,0.039654,0.600569 +0.161573,0.014462,-0.326743,-0.681551,0.041395,0.607517 +0.159549,0.017222,-0.328297,-0.685683,0.043135,0.614466 +0.157525,0.019982,-0.329851,-0.689815,0.044875,0.621414 +0.155501,0.022741,-0.331406,-0.693947,0.046615,0.628363 +0.153477,0.025501,-0.332960,-0.698080,0.048356,0.635311 +0.151453,0.028261,-0.334514,-0.702212,0.050096,0.642260 +0.149429,0.031021,-0.336069,-0.706344,0.051836,0.649208 +0.147405,0.033781,-0.337623,-0.710476,0.053577,0.656157 +0.145381,0.036540,-0.339177,-0.714609,0.055317,0.663105 +0.143358,0.039300,-0.340732,-0.718741,0.057057,0.670054 +0.141334,0.042060,-0.342286,-0.722873,0.058798,0.677002 +0.139310,0.044820,-0.343840,-0.727005,0.060538,0.683951 +0.137286,0.047580,-0.345395,-0.731138,0.062278,0.690899 +0.135262,0.050340,-0.346949,-0.735270,0.064019,0.697848 +0.133238,0.053100,-0.348503,-0.739402,0.065759,0.704797 +0.131214,0.055859,-0.350058,-0.743534,0.067499,0.711745 +0.129190,0.058619,-0.351612,-0.747666,0.069239,0.718694 +0.127166,0.061379,-0.353166,-0.751799,0.070980,0.725642 +0.125142,0.064139,-0.354721,-0.755931,0.072720,0.732591 +0.123118,0.066899,-0.356275,-0.760063,0.074460,0.739539 +0.121094,0.069658,-0.357829,-0.764195,0.076201,0.746488 +0.119070,0.072418,-0.359384,-0.768328,0.077941,0.753436 +0.117046,0.075178,-0.360938,-0.772460,0.079681,0.760385 +0.115022,0.077938,-0.362492,-0.776592,0.081422,0.767333 +0.112999,0.080698,-0.364047,-0.780724,0.083162,0.774282 +0.110975,0.083458,-0.365601,-0.784857,0.084902,0.781230 +0.108951,0.086217,-0.367155,-0.788989,0.086642,0.788179 +0.106927,0.088977,-0.368710,-0.793121,0.088383,0.795127 +0.104903,0.091737,-0.370264,-0.797253,0.090123,0.802076 +0.102879,0.094497,-0.371818,-0.801386,0.091863,0.809024 +0.100855,0.097257,-0.373373,-0.805518,0.093604,0.815973 +0.098831,0.100017,-0.374927,-0.809650,0.095344,0.822921 +0.096807,0.102776,-0.376481,-0.813782,0.097084,0.829870 +0.094783,0.105536,-0.378036,-0.817914,0.098825,0.836818 +0.092759,0.108296,-0.379590,-0.822047,0.100565,0.843767 +0.090735,0.111056,-0.381144,-0.826179,0.102305,0.850715 +0.088711,0.113816,-0.382699,-0.830311,0.104046,0.857664 +0.086687,0.116575,-0.384253,-0.834443,0.105786,0.864612 +0.084664,0.119335,-0.385807,-0.838576,0.107526,0.871561 +0.082640,0.122095,-0.387362,-0.842708,0.109266,0.878509 +0.080616,0.124855,-0.388916,-0.846840,0.111007,0.885458 +0.078592,0.127615,-0.390470,-0.850972,0.112747,0.892406 +0.076568,0.130375,-0.392025,-0.855105,0.114487,0.899355 +0.074544,0.133134,-0.393579,-0.859237,0.116228,0.906303 +0.072520,0.135894,-0.395133,-0.863369,0.117968,0.913252 +0.070496,0.138654,-0.396687,-0.867501,0.119708,0.920200 +0.068472,0.141414,-0.398242,-0.871633,0.121449,0.927149 +0.066448,0.144174,-0.399796,-0.875766,0.123189,0.934097 +0.064424,0.146934,-0.401350,-0.879898,0.124929,0.941046 +0.062400,0.149693,-0.402905,-0.884030,0.126670,0.947994 +0.060376,0.152453,-0.404459,-0.888162,0.128410,0.954943 +0.058352,0.155213,-0.406013,-0.892295,0.130150,0.961891 +0.056328,0.157973,-0.407568,-0.896427,0.131890,0.968840 +0.054304,0.160733,-0.409122,-0.900559,0.133631,0.975788 +0.052281,0.163492,-0.410676,-0.904691,0.135371,0.982737 +0.050257,0.166252,-0.412231,-0.908824,0.137111,0.989685 +0.048233,0.169012,-0.413785,-0.912956,0.138852,0.996634 +0.046209,0.171772,-0.415339,-0.917088,0.140592,1.003580 +0.044185,0.174532,-0.416894,-0.921220,0.142332,1.010530 +0.042161,0.177292,-0.418448,-0.925353,0.144073,1.017480 +0.040137,0.180051,-0.420002,-0.929485,0.145813,1.024430 +0.038113,0.182811,-0.421557,-0.933617,0.147553,1.031380 +0.036089,0.185571,-0.423111,-0.937749,0.149294,1.038320 +0.034065,0.188331,-0.424665,-0.941881,0.151034,1.045270 +0.032041,0.191091,-0.426220,-0.946014,0.152774,1.052220 +0.030017,0.193851,-0.427774,-0.950146,0.154514,1.059170 +0.027993,0.196610,-0.429328,-0.954278,0.156255,1.066120 +0.025970,0.199370,-0.430883,-0.958410,0.157995,1.073070 +0.023946,0.202130,-0.432437,-0.962543,0.159735,1.080020 +0.021922,0.204890,-0.433991,-0.966675,0.161476,1.086960 +0.019898,0.207650,-0.435546,-0.970807,0.163216,1.093910 +0.017874,0.210410,-0.437100,-0.974939,0.164956,1.100860 +0.015850,0.213169,-0.438654,-0.979072,0.166697,1.107810 +0.013826,0.215929,-0.440209,-0.983204,0.168437,1.114760 +0.011802,0.218689,-0.441763,-0.987336,0.170177,1.121710 +0.009778,0.221449,-0.443317,-0.991468,0.171917,1.128660 +0.007754,0.224209,-0.444872,-0.995600,0.173658,1.135600 +0.005730,0.226968,-0.446426,-0.999733,0.175398,1.142550 +0.003706,0.229728,-0.447980,-1.003860,0.177138,1.149500 +0.001682,0.232488,-0.449535,-1.008000,0.178879,1.156450 +-0.000342,0.235248,-0.451089,-1.012130,0.180619,1.163400 +-0.002366,0.238008,-0.452643,-1.016260,0.182359,1.170350 +-0.004389,0.240768,-0.454198,-1.020390,0.184100,1.177300 +-0.006413,0.243527,-0.455752,-1.024530,0.185840,1.184240 +-0.008437,0.246287,-0.457306,-1.028660,0.187580,1.191190 +-0.010461,0.249047,-0.458861,-1.032790,0.189321,1.198140 +-0.012485,0.251807,-0.460415,-1.036920,0.191061,1.205090 +-0.014509,0.254567,-0.461969,-1.041060,0.192801,1.212040 +-0.016533,0.257327,-0.463524,-1.045190,0.194541,1.218990 +-0.018557,0.260086,-0.465078,-1.049320,0.196282,1.225930 +-0.020581,0.262846,-0.466632,-1.053450,0.198022,1.232880 +-0.022605,0.265606,-0.468187,-1.057580,0.199762,1.239830 +-0.024629,0.268366,-0.469741,-1.061720,0.201503,1.246780 +-0.026653,0.271126,-0.471295,-1.065850,0.203243,1.253730 +-0.028677,0.273885,-0.472850,-1.069980,0.204983,1.260680 +-0.030701,0.276645,-0.474404,-1.074110,0.206724,1.267630 +-0.032724,0.279405,-0.475958,-1.078250,0.208464,1.274570 +-0.034748,0.282165,-0.477513,-1.082380,0.210204,1.281520 +-0.036772,0.284925,-0.479067,-1.086510,0.211945,1.288470 +-0.038796,0.287685,-0.480621,-1.090640,0.213685,1.295420 +-0.040820,0.290444,-0.482176,-1.094770,0.215425,1.302370 +-0.042844,0.293204,-0.483730,-1.098910,0.217165,1.309320 +-0.044868,0.295964,-0.485284,-1.103040,0.218906,1.316270 +-0.046892,0.298724,-0.486839,-1.107170,0.220646,1.323210 +-0.048916,0.301484,-0.488393,-1.111300,0.222386,1.330160 +-0.050940,0.304244,-0.489947,-1.115440,0.224127,1.337110 +-0.052964,0.307003,-0.491501,-1.119570,0.225867,1.344060 +-0.054988,0.309763,-0.493056,-1.123700,0.227607,1.351010 +-0.057012,0.312523,-0.494610,-1.127830,0.229348,1.357960 +-0.059036,0.315283,-0.496164,-1.131960,0.231088,1.364900 +-0.061060,0.318043,-0.497719,-1.136100,0.232828,1.371850 +-0.063084,0.320803,-0.499273,-1.140230,0.234569,1.378800 +-0.065107,0.323562,-0.500827,-1.144360,0.236309,1.385750 +-0.067131,0.326322,-0.502382,-1.148490,0.238049,1.392700 +-0.069155,0.329082,-0.503936,-1.152630,0.239789,1.399650 +-0.071179,0.331842,-0.505490,-1.156760,0.241530,1.406600 +-0.073203,0.334602,-0.507045,-1.160890,0.243270,1.413540 +-0.075227,0.337361,-0.508599,-1.165020,0.245010,1.420490 +-0.077251,0.340121,-0.510153,-1.169150,0.246751,1.427440 +-0.079275,0.342881,-0.511708,-1.173290,0.248491,1.434390 +-0.081299,0.345641,-0.513262,-1.177420,0.250231,1.441340 +-0.083323,0.348401,-0.514816,-1.181550,0.251972,1.448290 +-0.085347,0.351161,-0.516371,-1.185680,0.253712,1.455240 +-0.087371,0.353920,-0.517925,-1.189820,0.255452,1.462180 +-0.089395,0.356680,-0.519479,-1.193950,0.257193,1.469130 +-0.091419,0.359440,-0.521034,-1.198080,0.258933,1.476080 +-0.093442,0.362200,-0.522588,-1.202210,0.260673,1.483030 +-0.095466,0.364960,-0.524142,-1.206340,0.262413,1.489980 +-0.097490,0.367720,-0.525697,-1.210480,0.264154,1.496930 +-0.099514,0.370479,-0.527251,-1.214610,0.265894,1.503880 +-0.101538,0.373239,-0.528805,-1.218740,0.267634,1.510820 +-0.103562,0.375999,-0.530360,-1.222870,0.269375,1.517770 +-0.105586,0.378759,-0.531914,-1.227010,0.271115,1.524720 +-0.107610,0.381519,-0.533468,-1.231140,0.272855,1.531670 +-0.109634,0.384278,-0.535023,-1.235270,0.274596,1.538620 +-0.111658,0.387038,-0.536577,-1.239400,0.276336,1.545570 +-0.113682,0.389798,-0.538131,-1.243530,0.278076,1.552510 +-0.115706,0.392558,-0.539686,-1.247670,0.279816,1.559460 +-0.117730,0.395318,-0.541240,-1.251800,0.281557,1.566410 +-0.119754,0.398078,-0.542794,-1.255930,0.283297,1.573360 +-0.121778,0.400837,-0.544349,-1.260060,0.285037,1.580310 +-0.123801,0.403597,-0.545903,-1.264200,0.286778,1.587260 +-0.125825,0.406357,-0.547457,-1.268330,0.288518,1.594210 +-0.127849,0.409117,-0.549012,-1.272460,0.290258,1.601150 +-0.129873,0.411877,-0.550566,-1.276590,0.291999,1.608100 +-0.131897,0.414637,-0.552120,-1.280720,0.293739,1.615050 +-0.133921,0.417396,-0.553675,-1.284860,0.295479,1.622000 +-0.135945,0.420156,-0.555229,-1.288990,0.297220,1.628950 +-0.137969,0.422916,-0.556783,-1.293120,0.298960,1.635900 +-0.139993,0.425676,-0.558338,-1.297250,0.300700,1.642850 +-0.142017,0.428436,-0.559892,-1.301390,0.302440,1.649790 +-0.144041,0.431196,-0.561446,-1.305520,0.304181,1.656740 +-0.146065,0.433955,-0.563001,-1.309650,0.305921,1.663690 +-0.148089,0.436715,-0.564555,-1.313780,0.307661,1.670640 +-0.150113,0.439475,-0.566109,-1.317910,0.309402,1.677590 +-0.152136,0.442235,-0.567664,-1.322050,0.311142,1.684540 +-0.154160,0.444995,-0.569218,-1.326180,0.312882,1.691480 +-0.156184,0.447754,-0.570772,-1.330310,0.314623,1.698430 +-0.158208,0.450514,-0.572327,-1.334440,0.316363,1.705380 +-0.160232,0.453274,-0.573881,-1.338580,0.318103,1.712330 +-0.162256,0.456034,-0.575435,-1.342710,0.319844,1.719280 +-0.164280,0.458794,-0.576990,-1.346840,0.321584,1.726230 +-0.166304,0.461554,-0.578544,-1.350970,0.323324,1.733180 +-0.168328,0.464313,-0.580098,-1.355100,0.325064,1.740120 +-0.170352,0.467073,-0.581653,-1.359240,0.326805,1.747070 +-0.172376,0.469833,-0.583207,-1.363370,0.328545,1.754020 +-0.174400,0.472593,-0.584761,-1.367500,0.330285,1.760970 +-0.176424,0.475353,-0.586315,-1.371630,0.332026,1.767920 +-0.178448,0.478113,-0.587870,-1.375770,0.333766,1.774870 +-0.180472,0.480872,-0.589424,-1.379900,0.335506,1.781820 +-0.182495,0.483632,-0.590978,-1.384030,0.337247,1.788760 +-0.184519,0.486392,-0.592533,-1.388160,0.338987,1.795710 +-0.186543,0.489152,-0.594087,-1.392290,0.340727,1.802660 +-0.188567,0.491912,-0.595641,-1.396430,0.342468,1.809610 +-0.190591,0.494671,-0.597196,-1.400560,0.344208,1.816560 +-0.192615,0.497431,-0.598750,-1.404690,0.345948,1.823510 +-0.194639,0.500191,-0.600304,-1.408820,0.347688,1.830460 +-0.196663,0.502951,-0.601859,-1.412960,0.349429,1.837400 +-0.198687,0.505711,-0.603413,-1.417090,0.351169,1.844350 +-0.200711,0.508471,-0.604967,-1.421220,0.352909,1.851300 +-0.202735,0.511230,-0.606522,-1.425350,0.354650,1.858250 +-0.204759,0.513990,-0.608076,-1.429480,0.356390,1.865200 +-0.206783,0.516750,-0.609630,-1.433620,0.358130,1.872150 +-0.208807,0.519510,-0.611185,-1.437750,0.359871,1.879090 +-0.210831,0.522270,-0.612739,-1.441880,0.361611,1.886040 +-0.212854,0.525030,-0.614293,-1.446010,0.363351,1.892990 +-0.214878,0.527789,-0.615848,-1.450150,0.365092,1.899940 +-0.216902,0.530549,-0.617402,-1.454280,0.366832,1.906890 +-0.218926,0.533309,-0.618956,-1.458410,0.368572,1.913840 +-0.220950,0.536069,-0.620511,-1.462540,0.370312,1.920790 +-0.222974,0.538829,-0.622065,-1.466680,0.372053,1.927730 +-0.224998,0.541589,-0.623619,-1.470810,0.373793,1.934680 +-0.227022,0.544348,-0.625174,-1.474940,0.375533,1.941630 +-0.229046,0.547108,-0.626728,-1.479070,0.377274,1.948580 +-0.231070,0.549868,-0.628282,-1.483200,0.379014,1.955530 +-0.233094,0.552628,-0.629837,-1.487340,0.380754,1.962480 +-0.235118,0.555388,-0.631391,-1.491470,0.382495,1.969430 +-0.237142,0.558147,-0.632945,-1.495600,0.384235,1.976370 +-0.239166,0.560907,-0.634500,-1.499730,0.385975,1.983320 +-0.241189,0.563667,-0.636054,-1.503870,0.387715,1.990270 +-0.243213,0.566427,-0.637608,-1.508000,0.389456,1.997220 +-0.245237,0.569187,-0.639163,-1.512130,0.391196,2.004170 +-0.247261,0.571947,-0.640717,-1.516260,0.392936,2.011120 +-0.249285,0.574706,-0.642271,-1.520390,0.394677,2.018060 +-0.251309,0.577466,-0.643826,-1.524530,0.396417,2.025010 +-0.253333,0.580226,-0.645380,-1.528660,0.398157,2.031960 +-0.255357,0.582986,-0.646934,-1.532790,0.399898,2.038910 +-0.257381,0.585746,-0.648489,-1.536920,0.401638,2.045860 +-0.259405,0.588506,-0.650043,-1.541060,0.403378,2.052810 +-0.261429,0.591265,-0.651597,-1.545190,0.405119,2.059760 +-0.263453,0.594025,-0.653152,-1.549320,0.406859,2.066700 +-0.265477,0.596785,-0.654706,-1.553450,0.408599,2.073650 +-0.267501,0.599545,-0.656260,-1.557580,0.410339,2.080600 +-0.269525,0.602305,-0.657815,-1.561720,0.412080,2.087550 +-0.271548,0.605065,-0.659369,-1.565850,0.413820,2.094500 +-0.273572,0.607824,-0.660923,-1.569980,0.415560,2.101450 +-0.275596,0.610584,-0.662478,-1.574110,0.417301,2.108400 +-0.277620,0.613344,-0.664032,-1.578250,0.419041,2.115340 +-0.279644,0.616104,-0.665586,-1.582380,0.420781,2.122290 +-0.281668,0.618864,-0.667141,-1.586510,0.422522,2.129240 +-0.283692,0.621623,-0.668695,-1.590640,0.424262,2.136190 +-0.285716,0.624383,-0.670249,-1.594770,0.426002,2.143140 +-0.287740,0.627143,-0.671804,-1.598910,0.427743,2.150090 +-0.289764,0.629903,-0.673358,-1.603040,0.429483,2.157030 +-0.291788,0.632663,-0.674912,-1.607170,0.431223,2.163980 +-0.293812,0.635423,-0.676467,-1.611300,0.432963,2.170930 +-0.295836,0.638182,-0.678021,-1.615440,0.434704,2.177880 +-0.297860,0.640942,-0.679575,-1.619570,0.436444,2.184830 +-0.299883,0.643702,-0.681129,-1.623700,0.438184,2.191780 +-0.301907,0.646462,-0.682684,-1.627830,0.439925,2.198730 +-0.303931,0.649222,-0.684238,-1.631960,0.441665,2.205670 +-0.305955,0.651982,-0.685792,-1.636100,0.443405,2.212620 +-0.307979,0.654741,-0.687347,-1.640230,0.445146,2.219570 +-0.310003,0.657501,-0.688901,-1.644360,0.446886,2.226520 +-0.312027,0.660261,-0.690455,-1.648490,0.448626,2.233470 +-0.314051,0.663021,-0.692010,-1.652630,0.450367,2.240420 +-0.316075,0.665781,-0.693564,-1.656760,0.452107,2.247370 +-0.318099,0.668540,-0.695118,-1.660890,0.453847,2.254310 +-0.320123,0.671300,-0.696673,-1.665020,0.455587,2.261260 +-0.322147,0.674060,-0.698227,-1.669150,0.457328,2.268210 +-0.324171,0.676820,-0.699781,-1.673290,0.459068,2.275160 +-0.326195,0.679580,-0.701336,-1.677420,0.460808,2.282110 +-0.328219,0.682340,-0.702890,-1.681550,0.462549,2.289060 +-0.330242,0.685099,-0.704444,-1.685680,0.464289,2.296010 +-0.332266,0.687859,-0.705999,-1.689820,0.466029,2.302950 +-0.334290,0.690619,-0.707553,-1.693950,0.467770,2.309900 +-0.336314,0.693379,-0.709107,-1.698080,0.469510,2.316850 +-0.338338,0.696139,-0.710662,-1.702210,0.471250,2.323800 +-0.340362,0.698899,-0.712216,-1.706340,0.472990,2.330750 +-0.342386,0.701658,-0.713770,-1.710480,0.474731,2.337700 +-0.344410,0.704418,-0.715325,-1.714610,0.476471,2.344640 +-0.346434,0.707178,-0.716879,-1.718740,0.478211,2.351590 +-0.348458,0.709938,-0.718433,-1.722870,0.479952,2.358540 +-0.350482,0.712698,-0.719988,-1.727010,0.481692,2.365490 +-0.352506,0.715458,-0.721542,-1.731140,0.483432,2.372440 +-0.354530,0.718217,-0.723096,-1.735270,0.485173,2.379390 +-0.356554,0.720977,-0.724651,-1.739400,0.486913,2.386340 +-0.358578,0.723737,-0.726205,-1.743530,0.488653,2.393280 +-0.360601,0.726497,-0.727759,-1.747670,0.490394,2.400230 +-0.362625,0.729257,-0.729314,-1.751800,0.492134,2.407180 +-0.364649,0.732016,-0.730868,-1.755930,0.493874,2.414130 +-0.366673,0.734776,-0.732422,-1.760060,0.495614,2.421070 +-0.368697,0.737536,-0.733977,-1.764200,0.497355,2.428000 +-0.370721,0.740296,-0.735531,-1.768330,0.499095,2.434920 +-0.372745,0.743056,-0.737085,-1.772460,0.500835,2.441820 +-0.374769,0.745816,-0.738640,-1.776590,0.502576,2.448710 +-0.376793,0.748575,-0.740194,-1.780720,0.504316,2.455560 +-0.378817,0.751335,-0.741748,-1.784860,0.506056,2.462390 +-0.380841,0.754095,-0.743303,-1.788990,0.507797,2.469190 +-0.382865,0.756855,-0.744857,-1.793120,0.509537,2.475950 +-0.384889,0.759615,-0.746411,-1.797250,0.511277,2.482670 +-0.386913,0.762375,-0.747966,-1.801390,0.513018,2.489340 +-0.388936,0.765134,-0.749520,-1.805520,0.514758,2.495970 +-0.390960,0.767894,-0.751074,-1.809650,0.516498,2.502550 +-0.392984,0.770654,-0.752629,-1.813780,0.518238,2.509070 +-0.395008,0.773414,-0.754183,-1.817910,0.519979,2.515530 +-0.397032,0.776174,-0.755737,-1.822050,0.521719,2.521930 +-0.399056,0.778933,-0.757292,-1.826180,0.523459,2.528250 +-0.401080,0.781693,-0.758846,-1.830310,0.525200,2.534510 +-0.403104,0.784453,-0.760400,-1.834430,0.526940,2.540700 +-0.405128,0.787213,-0.761955,-1.838530,0.528680,2.546800 +-0.407152,0.789973,-0.763509,-1.842630,0.530421,2.552820 +-0.409176,0.792733,-0.765063,-1.846700,0.532161,2.558750 +-0.411200,0.795492,-0.766618,-1.850750,0.533901,2.564600 +-0.413224,0.798252,-0.768172,-1.854770,0.535642,2.570350 +-0.415248,0.801011,-0.769726,-1.858770,0.537382,2.576000 +-0.417272,0.803767,-0.771281,-1.862720,0.539122,2.581540 +-0.419295,0.806515,-0.772835,-1.866640,0.540862,2.586980 +-0.421319,0.809253,-0.774389,-1.870520,0.542603,2.592320 +-0.423343,0.811978,-0.775943,-1.874350,0.544343,2.597530 +-0.425367,0.814687,-0.777498,-1.878120,0.546083,2.602630 +-0.427391,0.817375,-0.779052,-1.881850,0.547824,2.607610 +-0.429415,0.820040,-0.780606,-1.885510,0.549564,2.612460 +-0.431439,0.822679,-0.782161,-1.889120,0.551304,2.617180 +-0.433463,0.825288,-0.783715,-1.892650,0.553045,2.621770 +-0.435486,0.827864,-0.785269,-1.896120,0.554785,2.626220 +-0.437505,0.830404,-0.786824,-1.899520,0.556525,2.630530 +-0.439517,0.832905,-0.788378,-1.902830,0.558266,2.634690 +-0.441518,0.835363,-0.789932,-1.906070,0.560006,2.638710 +-0.443505,0.837776,-0.791487,-1.909210,0.561746,2.642570 +-0.445476,0.840139,-0.793041,-1.912270,0.563486,2.646280 +-0.447426,0.842450,-0.794595,-1.915240,0.565227,2.649820 +-0.449353,0.844705,-0.796150,-1.918110,0.566967,2.653200 +-0.451253,0.846901,-0.797704,-1.920880,0.568707,2.656410 +-0.453123,0.849035,-0.799258,-1.923540,0.570448,2.659460 +-0.454960,0.851104,-0.800813,-1.926090,0.572188,2.662350 +-0.456761,0.853105,-0.802367,-1.928540,0.573928,2.665070 +-0.458522,0.855033,-0.803921,-1.930860,0.575669,2.667650 +-0.460239,0.856887,-0.805476,-1.933070,0.577409,2.670070 +-0.461911,0.858662,-0.807030,-1.935150,0.579147,2.672350 +-0.463533,0.860356,-0.808581,-1.937130,0.580879,2.674480 +-0.465103,0.861964,-0.810127,-1.938990,0.582601,2.676480 +-0.466617,0.863485,-0.811663,-1.940740,0.584310,2.678340 +-0.468071,0.864914,-0.813188,-1.942400,0.586001,2.680070 +-0.469463,0.866249,-0.814696,-1.943950,0.587670,2.681670 +-0.470790,0.867486,-0.816186,-1.945410,0.589315,2.683160 +-0.472047,0.868623,-0.817654,-1.946780,0.590929,2.684520 +-0.473234,0.869662,-0.819097,-1.948060,0.592511,2.685770 +-0.474351,0.870605,-0.820511,-1.949260,0.594056,2.686900 +-0.475402,0.871457,-0.821893,-1.950370,0.595560,2.687930 +-0.476390,0.872220,-0.823240,-1.951420,0.597018,2.688860 +-0.477319,0.872897,-0.824549,-1.952390,0.598429,2.689680 +-0.478191,0.873492,-0.825816,-1.953290,0.599786,2.690410 +-0.479011,0.874009,-0.827039,-1.954130,0.601087,2.691050 +-0.479780,0.874450,-0.828214,-1.954910,0.602328,2.691600 +-0.480503,0.874818,-0.829337,-1.955640,0.603505,2.692070 +-0.481183,0.875117,-0.830406,-1.956310,0.604613,2.692460 +-0.481823,0.875351,-0.831417,-1.956930,0.605649,2.692770 +-0.482426,0.875521,-0.832369,-1.957510,0.606613,2.693010 +-0.482995,0.875633,-0.833264,-1.958050,0.607507,2.693180 +-0.483534,0.875688,-0.834105,-1.958550,0.608335,2.693280 +-0.484046,0.875690,-0.834896,-1.959020,0.609102,2.693330 +-0.484534,0.875643,-0.835641,-1.959470,0.609811,2.693310 +-0.485001,0.875549,-0.836341,-1.959880,0.610466,2.693250 +-0.485452,0.875411,-0.837001,-1.960280,0.611072,2.693130 +-0.485888,0.875234,-0.837624,-1.960650,0.611631,2.692980 +-0.486313,0.875021,-0.838213,-1.961020,0.612148,2.692780 +-0.486730,0.874773,-0.838771,-1.961370,0.612627,2.692540 +-0.487144,0.874496,-0.839301,-1.961720,0.613071,2.692270 +-0.487556,0.874192,-0.839808,-1.962070,0.613485,2.691970 +-0.487970,0.873863,-0.840293,-1.962420,0.613872,2.691640 +-0.488390,0.873515,-0.840760,-1.962780,0.614236,2.691290 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record3.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record3.offt new file mode 100644 index 00000000..5fc7da05 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record3.offt @@ -0,0 +1,3166 @@ +0.000000,0.000001,0.000000,0.000000,0.000000,0.000001 +0.000000,0.000001,-0.000002,0.000000,0.000000,0.000001 +0.000002,-0.000000,-0.000003,0.000002,-0.000002,-0.000001 +0.000007,-0.000006,-0.000009,0.000009,-0.000009,-0.000007 +0.000020,-0.000018,-0.000021,0.000024,-0.000023,-0.000022 +0.000041,-0.000040,-0.000043,0.000049,-0.000049,-0.000048 +0.000074,-0.000073,-0.000076,0.000089,-0.000089,-0.000088 +0.000122,-0.000121,-0.000124,0.000146,-0.000146,-0.000145 +0.000187,-0.000185,-0.000188,0.000224,-0.000224,-0.000222 +0.000271,-0.000270,-0.000273,0.000325,-0.000325,-0.000324 +0.000378,-0.000376,-0.000379,0.000453,-0.000452,-0.000451 +0.000509,-0.000508,-0.000511,0.000610,-0.000610,-0.000609 +0.000668,-0.000667,-0.000670,0.000800,-0.000800,-0.000799 +0.000857,-0.000855,-0.000858,0.001027,-0.001026,-0.001025 +0.001078,-0.001077,-0.001080,0.001292,-0.001292,-0.001290 +0.001335,-0.001333,-0.001336,0.001599,-0.001599,-0.001598 +0.001629,-0.001628,-0.001631,0.001952,-0.001952,-0.001951 +0.001964,-0.001963,-0.001966,0.002353,-0.002353,-0.002352 +0.002342,-0.002340,-0.002343,0.002806,-0.002805,-0.002804 +0.002765,-0.002764,-0.002767,0.003313,-0.003313,-0.003312 +0.003234,-0.003235,-0.003238,0.003878,-0.003878,-0.003876 +0.003744,-0.003758,-0.003761,0.004504,-0.004503,-0.004502 +0.004295,-0.004333,-0.004336,0.005193,-0.005193,-0.005192 +0.004884,-0.004965,-0.004968,0.005950,-0.005950,-0.005949 +0.005507,-0.005655,-0.005658,0.006777,-0.006777,-0.006775 +0.006163,-0.006407,-0.006410,0.007677,-0.007677,-0.007668 +0.006848,-0.007222,-0.007225,0.008654,-0.008653,-0.008625 +0.007560,-0.008103,-0.008106,0.009710,-0.009709,-0.009643 +0.008296,-0.009054,-0.009057,0.010849,-0.010848,-0.010718 +0.009055,-0.010076,-0.010079,0.012073,-0.012072,-0.011849 +0.009832,-0.011172,-0.011175,0.013381,-0.013381,-0.013031 +0.010627,-0.012345,-0.012348,0.014770,-0.014771,-0.014261 +0.011435,-0.013597,-0.013600,0.016237,-0.016239,-0.015537 +0.012255,-0.014931,-0.014934,0.017779,-0.017782,-0.016855 +0.013083,-0.016350,-0.016353,0.019393,-0.019398,-0.018213 +0.013918,-0.017856,-0.017859,0.021075,-0.021082,-0.019606 +0.014757,-0.019451,-0.019454,0.022822,-0.022832,-0.021032 +0.015597,-0.021139,-0.021142,0.024633,-0.024645,-0.022488 +0.016436,-0.022922,-0.022925,0.026502,-0.026518,-0.023971 +0.017276,-0.024802,-0.024802,0.028428,-0.028447,-0.025477 +0.018116,-0.026783,-0.026772,0.030406,-0.030430,-0.027004 +0.018956,-0.028866,-0.028830,0.032435,-0.032462,-0.028548 +0.019795,-0.031054,-0.030976,0.034511,-0.034542,-0.030106 +0.020635,-0.033350,-0.033206,0.036630,-0.036666,-0.031676 +0.021475,-0.035757,-0.035518,0.038789,-0.038831,-0.033253 +0.022315,-0.038277,-0.037909,0.040987,-0.041034,-0.034835 +0.023154,-0.040911,-0.040377,0.043219,-0.043272,-0.036420 +0.023994,-0.043656,-0.042918,0.045482,-0.045541,-0.038004 +0.024834,-0.046510,-0.045531,0.047773,-0.047839,-0.039588 +0.025674,-0.049470,-0.048213,0.050089,-0.050162,-0.041173 +0.026513,-0.052534,-0.050961,0.052427,-0.052508,-0.042757 +0.027353,-0.055699,-0.053772,0.054784,-0.054872,-0.044342 +0.028193,-0.058962,-0.056645,0.057157,-0.057253,-0.045926 +0.029033,-0.062322,-0.059575,0.059542,-0.059647,-0.047510 +0.029873,-0.065774,-0.062562,0.061937,-0.062050,-0.049095 +0.030712,-0.069318,-0.065601,0.064339,-0.064461,-0.050679 +0.031552,-0.072949,-0.068692,0.066743,-0.066875,-0.052263 +0.032392,-0.076666,-0.071830,0.069148,-0.069289,-0.053848 +0.033232,-0.080466,-0.075013,0.071554,-0.071704,-0.055432 +0.034071,-0.084346,-0.078240,0.073959,-0.074119,-0.057017 +0.034911,-0.088304,-0.081506,0.076364,-0.076534,-0.058601 +0.035751,-0.092337,-0.084810,0.078769,-0.078949,-0.060185 +0.036591,-0.096442,-0.088150,0.081174,-0.081363,-0.061770 +0.037430,-0.100617,-0.091521,0.083580,-0.083778,-0.063354 +0.038270,-0.104860,-0.094922,0.085985,-0.086193,-0.064938 +0.039110,-0.109168,-0.098351,0.088390,-0.088608,-0.066523 +0.039950,-0.113537,-0.101804,0.090795,-0.091022,-0.068107 +0.040789,-0.117966,-0.105279,0.093201,-0.093437,-0.069692 +0.041629,-0.122452,-0.108774,0.095606,-0.095852,-0.071276 +0.042469,-0.126993,-0.112286,0.098011,-0.098267,-0.072860 +0.043309,-0.131585,-0.115811,0.100416,-0.100681,-0.074445 +0.044149,-0.136226,-0.119349,0.102821,-0.103096,-0.076029 +0.044988,-0.140914,-0.122895,0.105227,-0.105511,-0.077614 +0.045828,-0.145646,-0.126448,0.107632,-0.107926,-0.079198 +0.046668,-0.150419,-0.130004,0.110037,-0.110341,-0.080782 +0.047508,-0.155231,-0.133562,0.112442,-0.112755,-0.082367 +0.048347,-0.160079,-0.137119,0.114847,-0.115170,-0.083951 +0.049187,-0.164960,-0.140671,0.117253,-0.117585,-0.085535 +0.050027,-0.169873,-0.144218,0.119658,-0.120000,-0.087120 +0.050867,-0.174814,-0.147754,0.122063,-0.122414,-0.088704 +0.051707,-0.179781,-0.151280,0.124468,-0.124829,-0.090288 +0.052546,-0.184771,-0.154791,0.126874,-0.127244,-0.091873 +0.053386,-0.189781,-0.158284,0.129279,-0.129659,-0.093457 +0.054226,-0.194810,-0.161759,0.131684,-0.132074,-0.095042 +0.055066,-0.199854,-0.165211,0.134089,-0.134488,-0.096626 +0.055905,-0.204911,-0.168639,0.136494,-0.136903,-0.098210 +0.056745,-0.209978,-0.172039,0.138900,-0.139318,-0.099795 +0.057585,-0.215052,-0.175409,0.141305,-0.141733,-0.101379 +0.058425,-0.220132,-0.178747,0.143710,-0.144147,-0.102964 +0.059264,-0.225214,-0.182050,0.146115,-0.146562,-0.104548 +0.060104,-0.230296,-0.185315,0.148520,-0.148977,-0.106132 +0.060944,-0.235378,-0.188540,0.150926,-0.151392,-0.107717 +0.061784,-0.240461,-0.191722,0.153331,-0.153807,-0.109301 +0.062623,-0.245543,-0.194858,0.155736,-0.156221,-0.110885 +0.063463,-0.250625,-0.197946,0.158141,-0.158636,-0.112470 +0.064303,-0.255708,-0.200984,0.160547,-0.161051,-0.114054 +0.065143,-0.260790,-0.203968,0.162952,-0.163466,-0.115639 +0.065982,-0.265873,-0.206897,0.165357,-0.165880,-0.117223 +0.066822,-0.270955,-0.209767,0.167762,-0.168295,-0.118807 +0.067662,-0.276037,-0.212576,0.170167,-0.170710,-0.120392 +0.068502,-0.281120,-0.215321,0.172573,-0.173125,-0.121976 +0.069342,-0.286202,-0.218000,0.174978,-0.175539,-0.123560 +0.070181,-0.291284,-0.220610,0.177383,-0.177954,-0.125145 +0.071021,-0.296364,-0.223149,0.179788,-0.180369,-0.126729 +0.071861,-0.301440,-0.225614,0.182194,-0.182784,-0.128314 +0.072701,-0.306508,-0.228002,0.184599,-0.185199,-0.129898 +0.073540,-0.311566,-0.230311,0.187004,-0.187613,-0.131482 +0.074380,-0.316612,-0.232538,0.189409,-0.190028,-0.133067 +0.075220,-0.321643,-0.234680,0.191814,-0.192443,-0.134651 +0.076060,-0.326657,-0.236736,0.194220,-0.194858,-0.136235 +0.076899,-0.331650,-0.238702,0.196625,-0.197272,-0.137820 +0.077739,-0.336621,-0.240575,0.199030,-0.199687,-0.139401 +0.078579,-0.341566,-0.242354,0.201435,-0.202102,-0.140978 +0.079419,-0.346483,-0.244035,0.203840,-0.204517,-0.142545 +0.080258,-0.351369,-0.245617,0.206246,-0.206932,-0.144102 +0.081098,-0.356222,-0.247096,0.208651,-0.209346,-0.145643 +0.081938,-0.361040,-0.248469,0.211056,-0.211761,-0.147166 +0.082778,-0.365819,-0.249735,0.213461,-0.214176,-0.148669 +0.083618,-0.370557,-0.250891,0.215867,-0.216591,-0.150147 +0.084457,-0.375252,-0.251933,0.218272,-0.219005,-0.151598 +0.085297,-0.379900,-0.252860,0.220677,-0.221420,-0.153018 +0.086137,-0.384500,-0.253668,0.223082,-0.223835,-0.154406 +0.086977,-0.389048,-0.254356,0.225487,-0.226250,-0.155756 +0.087816,-0.393543,-0.254921,0.227893,-0.228665,-0.157067 +0.088656,-0.397980,-0.255359,0.230298,-0.231079,-0.158335 +0.089496,-0.402359,-0.255669,0.232703,-0.233494,-0.159558 +0.090336,-0.406676,-0.255850,0.235108,-0.235909,-0.160731 +0.091176,-0.410928,-0.255900,0.237514,-0.238324,-0.161852 +0.092015,-0.415114,-0.255821,0.239919,-0.240738,-0.162918 +0.092855,-0.419230,-0.255611,0.242324,-0.243153,-0.163925 +0.093695,-0.423274,-0.255272,0.244729,-0.245568,-0.164872 +0.094534,-0.427243,-0.254804,0.247134,-0.247983,-0.165753 +0.095374,-0.431135,-0.254205,0.249540,-0.250396,-0.166567 +0.096214,-0.434947,-0.253476,0.251945,-0.252804,-0.167310 +0.097054,-0.438677,-0.252618,0.254350,-0.255205,-0.167979 +0.097894,-0.442321,-0.251630,0.256755,-0.257595,-0.168571 +0.098733,-0.445878,-0.250512,0.259160,-0.259971,-0.169083 +0.099573,-0.449344,-0.249264,0.261566,-0.262329,-0.169512 +0.100413,-0.452718,-0.247887,0.263971,-0.264668,-0.169855 +0.101253,-0.455996,-0.246381,0.266376,-0.266983,-0.170108 +0.102092,-0.459176,-0.244749,0.268781,-0.269272,-0.170268 +0.102932,-0.462255,-0.242995,0.271187,-0.271531,-0.170333 +0.103772,-0.465231,-0.241119,0.273592,-0.273758,-0.170299 +0.104612,-0.468101,-0.239126,0.275997,-0.275949,-0.170164 +0.105451,-0.470863,-0.237017,0.278402,-0.278101,-0.169923 +0.106291,-0.473513,-0.234796,0.280807,-0.280211,-0.169574 +0.107131,-0.476050,-0.232464,0.283213,-0.282276,-0.169114 +0.107971,-0.478471,-0.230025,0.285618,-0.284292,-0.168539 +0.108811,-0.480772,-0.227481,0.288023,-0.286258,-0.167849 +0.109650,-0.482953,-0.224834,0.290428,-0.288169,-0.167044 +0.110490,-0.485009,-0.222088,0.292834,-0.290022,-0.166130 +0.111330,-0.486938,-0.219244,0.295239,-0.291815,-0.165107 +0.112170,-0.488739,-0.216306,0.297644,-0.293544,-0.163981 +0.113009,-0.490410,-0.213275,0.300046,-0.295207,-0.162753 +0.113849,-0.491950,-0.210156,0.302442,-0.296799,-0.161427 +0.114689,-0.493361,-0.206949,0.304830,-0.298318,-0.160006 +0.115529,-0.494643,-0.203658,0.307206,-0.299761,-0.158493 +0.116368,-0.495794,-0.200286,0.309567,-0.301125,-0.156891 +0.117208,-0.496816,-0.196835,0.311909,-0.302406,-0.155204 +0.118048,-0.497707,-0.193307,0.314230,-0.303602,-0.153434 +0.118888,-0.498469,-0.189705,0.316527,-0.304709,-0.151584 +0.119728,-0.499102,-0.186032,0.318796,-0.305725,-0.149658 +0.120567,-0.499604,-0.182291,0.321035,-0.306645,-0.147659 +0.121407,-0.499976,-0.178483,0.323240,-0.307468,-0.145590 +0.122247,-0.500219,-0.174612,0.325408,-0.308189,-0.143454 +0.123087,-0.500332,-0.170680,0.327536,-0.308806,-0.141254 +0.123926,-0.500315,-0.166690,0.329621,-0.309316,-0.138993 +0.124766,-0.500168,-0.162644,0.331660,-0.309716,-0.136674 +0.125606,-0.499892,-0.158545,0.333650,-0.310002,-0.134301 +0.126446,-0.499485,-0.154396,0.335587,-0.310172,-0.131876 +0.127285,-0.498949,-0.150199,0.337469,-0.310221,-0.129403 +0.128125,-0.498283,-0.145956,0.339292,-0.310148,-0.126884 +0.128965,-0.497487,-0.141671,0.341053,-0.309949,-0.124324 +0.129801,-0.496562,-0.137346,0.342750,-0.309621,-0.121724 +0.130633,-0.495506,-0.132983,0.344378,-0.309161,-0.119089 +0.131457,-0.494321,-0.128585,0.345936,-0.308565,-0.116420 +0.132271,-0.493006,-0.124155,0.347419,-0.307831,-0.113722 +0.133072,-0.491561,-0.119696,0.348825,-0.306956,-0.110998 +0.133857,-0.489986,-0.115209,0.350151,-0.305936,-0.108250 +0.134624,-0.488281,-0.110698,0.351394,-0.304773,-0.105481 +0.135371,-0.486447,-0.106164,0.352556,-0.303469,-0.102695 +0.136094,-0.484483,-0.101612,0.353640,-0.302028,-0.099896 +0.136791,-0.482389,-0.097043,0.354649,-0.300454,-0.097085 +0.137460,-0.480165,-0.092459,0.355586,-0.298748,-0.094266 +0.138098,-0.477811,-0.087864,0.356454,-0.296914,-0.091442 +0.138702,-0.475328,-0.083261,0.357257,-0.294956,-0.088617 +0.139270,-0.472715,-0.078650,0.357998,-0.292875,-0.085793 +0.139799,-0.469971,-0.074037,0.358679,-0.290677,-0.082973 +0.140286,-0.467098,-0.069422,0.359304,-0.288363,-0.080161 +0.140729,-0.464097,-0.064808,0.359876,-0.285936,-0.077360 +0.141127,-0.460969,-0.060199,0.360398,-0.283401,-0.074573 +0.141480,-0.457718,-0.055596,0.360873,-0.280759,-0.071803 +0.141792,-0.454345,-0.051002,0.361304,-0.278014,-0.069052 +0.142065,-0.450854,-0.046420,0.361695,-0.275170,-0.066325 +0.142302,-0.447247,-0.041853,0.362048,-0.272228,-0.063625 +0.142505,-0.443527,-0.037303,0.362366,-0.269193,-0.060953 +0.142676,-0.439697,-0.032772,0.362653,-0.266068,-0.058314 +0.142819,-0.435758,-0.028264,0.362912,-0.262855,-0.055711 +0.142936,-0.431714,-0.023780,0.363146,-0.259557,-0.053146 +0.143030,-0.427567,-0.019324,0.363358,-0.256179,-0.050624 +0.143103,-0.423320,-0.014898,0.363551,-0.252722,-0.048146 +0.143158,-0.418975,-0.010504,0.363728,-0.249191,-0.045716 +0.143197,-0.414535,-0.006146,0.363893,-0.245587,-0.043337 +0.143223,-0.410002,-0.001825,0.364048,-0.241915,-0.041013 +0.143239,-0.405380,0.002455,0.364196,-0.238177,-0.038746 +0.143247,-0.400671,0.006692,0.364341,-0.234376,-0.036540 +0.143250,-0.395876,0.010884,0.364486,-0.230516,-0.034397 +0.143250,-0.391000,0.015027,0.364634,-0.226600,-0.032321 +0.143250,-0.386043,0.019121,0.364788,-0.222629,-0.030314 +0.143250,-0.381006,0.023164,0.364947,-0.218605,-0.028377 +0.143250,-0.375892,0.027155,0.365112,-0.214529,-0.026510 +0.143249,-0.370701,0.031092,0.365283,-0.210402,-0.024715 +0.143249,-0.365434,0.034976,0.365460,-0.206225,-0.022990 +0.143249,-0.360092,0.038805,0.365643,-0.201998,-0.021337 +0.143248,-0.354676,0.042579,0.365832,-0.197723,-0.019756 +0.143248,-0.349187,0.046298,0.366026,-0.193399,-0.018248 +0.143248,-0.343626,0.049960,0.366227,-0.189028,-0.016811 +0.143247,-0.337994,0.053565,0.366433,-0.184611,-0.015447 +0.143247,-0.332292,0.057112,0.366644,-0.180148,-0.014156 +0.143247,-0.326521,0.060601,0.366861,-0.175639,-0.012939 +0.143246,-0.320682,0.064031,0.367084,-0.171087,-0.011794 +0.143246,-0.314776,0.067401,0.367313,-0.166492,-0.010724 +0.143246,-0.308805,0.070711,0.367546,-0.161854,-0.009727 +0.143245,-0.302768,0.073960,0.367786,-0.157174,-0.008804 +0.143245,-0.296668,0.077148,0.368031,-0.152454,-0.007955 +0.143245,-0.290505,0.080273,0.368281,-0.147694,-0.007180 +0.143244,-0.284281,0.083337,0.368536,-0.142894,-0.006480 +0.143244,-0.277997,0.086337,0.368797,-0.138057,-0.005854 +0.143244,-0.271653,0.089273,0.369063,-0.133182,-0.005303 +0.143243,-0.265251,0.092145,0.369334,-0.128271,-0.004826 +0.143243,-0.258792,0.094953,0.369611,-0.123324,-0.004425 +0.143242,-0.252278,0.097695,0.369892,-0.118342,-0.004098 +0.143242,-0.245709,0.100372,0.370179,-0.113327,-0.003846 +0.143241,-0.239086,0.102982,0.370470,-0.108278,-0.003670 +0.143241,-0.232411,0.105526,0.370767,-0.103198,-0.003568 +0.143241,-0.225686,0.108003,0.371068,-0.098087,-0.003541 +0.143240,-0.218910,0.110412,0.371374,-0.092945,-0.003590 +0.143240,-0.212086,0.112753,0.371685,-0.087774,-0.003713 +0.143239,-0.205214,0.115026,0.372001,-0.082575,-0.003911 +0.143239,-0.198296,0.117230,0.372321,-0.077349,-0.004185 +0.143238,-0.191334,0.119365,0.372646,-0.072096,-0.004533 +0.143238,-0.184327,0.121430,0.372976,-0.066818,-0.004957 +0.143237,-0.177279,0.123426,0.373310,-0.061515,-0.005455 +0.143237,-0.170189,0.125351,0.373649,-0.056188,-0.006027 +0.143236,-0.163059,0.127205,0.373991,-0.050839,-0.006675 +0.143236,-0.155891,0.128989,0.374339,-0.045468,-0.007397 +0.143235,-0.148686,0.130701,0.374690,-0.040077,-0.008193 +0.143235,-0.141444,0.132341,0.375046,-0.034666,-0.009063 +0.143234,-0.134168,0.133910,0.375405,-0.029236,-0.010008 +0.143234,-0.126858,0.135406,0.375769,-0.023788,-0.011026 +0.143233,-0.119517,0.136830,0.376137,-0.018323,-0.012118 +0.143233,-0.112145,0.138181,0.376509,-0.012843,-0.013284 +0.143232,-0.104743,0.139459,0.376884,-0.007348,-0.014523 +0.143232,-0.097313,0.140664,0.377264,-0.001839,-0.015835 +0.143231,-0.089856,0.141796,0.377647,0.003683,-0.017220 +0.143231,-0.082375,0.142854,0.378034,0.009217,-0.018677 +0.143230,-0.074869,0.143838,0.378424,0.014761,-0.020207 +0.143229,-0.067340,0.144748,0.378818,0.020316,-0.021809 +0.143229,-0.059790,0.145584,0.379215,0.025879,-0.023482 +0.143228,-0.052220,0.146346,0.379616,0.031451,-0.025227 +0.143228,-0.044631,0.147034,0.380020,0.037029,-0.027044 +0.143227,-0.037025,0.147646,0.380427,0.042613,-0.028931 +0.143227,-0.029403,0.148185,0.380837,0.048201,-0.030888 +0.143226,-0.021767,0.148648,0.381251,0.053794,-0.032916 +0.143225,-0.014117,0.149036,0.381667,0.059390,-0.035013 +0.143225,-0.006456,0.149350,0.382086,0.064987,-0.037180 +0.143224,0.001216,0.149589,0.382509,0.070585,-0.039416 +0.143224,0.008897,0.149752,0.382934,0.076183,-0.041721 +0.143223,0.016585,0.149841,0.383361,0.081780,-0.044093 +0.143222,0.024280,0.149854,0.383792,0.087375,-0.046534 +0.143222,0.031979,0.149793,0.384225,0.092966,-0.049041 +0.143221,0.039682,0.149656,0.384660,0.098554,-0.051616 +0.143221,0.047388,0.149445,0.385098,0.104136,-0.054257 +0.143220,0.055094,0.149158,0.385538,0.109712,-0.056964 +0.143219,0.062799,0.148797,0.385980,0.115281,-0.059736 +0.143219,0.070502,0.148360,0.386425,0.120841,-0.062574 +0.143218,0.078202,0.147849,0.386871,0.126392,-0.065475 +0.143218,0.085897,0.147263,0.387320,0.131934,-0.068441 +0.143217,0.093586,0.146603,0.387770,0.137464,-0.071470 +0.143216,0.101267,0.145868,0.388223,0.142981,-0.074562 +0.143216,0.108939,0.145058,0.388677,0.148486,-0.077716 +0.143215,0.116601,0.144175,0.389132,0.153976,-0.080932 +0.143214,0.124251,0.143217,0.389590,0.159452,-0.084209 +0.143214,0.131889,0.142186,0.390049,0.164911,-0.087547 +0.143213,0.139511,0.141081,0.390509,0.170353,-0.090945 +0.143212,0.147118,0.139902,0.390970,0.175777,-0.094402 +0.143212,0.154708,0.138650,0.391433,0.181181,-0.097917 +0.143211,0.162279,0.137325,0.391897,0.186566,-0.101491 +0.143211,0.169830,0.135928,0.392362,0.191930,-0.105122 +0.143210,0.177360,0.134457,0.392829,0.197272,-0.108810 +0.143209,0.184867,0.132915,0.393296,0.202590,-0.112554 +0.143209,0.192350,0.131300,0.393764,0.207885,-0.116354 +0.143208,0.199808,0.129614,0.394232,0.213155,-0.120208 +0.143207,0.207240,0.127856,0.394702,0.218400,-0.124117 +0.143207,0.214643,0.126028,0.395171,0.223617,-0.128078 +0.143206,0.222017,0.124128,0.395642,0.228807,-0.132093 +0.143205,0.229360,0.122158,0.396113,0.233968,-0.136159 +0.143205,0.236671,0.120118,0.396584,0.239100,-0.140277 +0.143204,0.243949,0.118008,0.397055,0.244201,-0.144445 +0.143203,0.251193,0.115829,0.397527,0.249271,-0.148663 +0.143203,0.258400,0.113581,0.397999,0.254309,-0.152930 +0.143202,0.265570,0.111264,0.398470,0.259313,-0.157245 +0.143202,0.272702,0.108879,0.398942,0.264284,-0.161607 +0.143201,0.279794,0.106427,0.399413,0.269219,-0.166016 +0.143200,0.286845,0.103907,0.399885,0.274118,-0.170471 +0.143200,0.293854,0.101320,0.400355,0.278981,-0.174971 +0.143199,0.300819,0.098668,0.400826,0.283806,-0.179515 +0.143198,0.307739,0.095949,0.401296,0.288593,-0.184103 +0.143198,0.314613,0.093165,0.401765,0.293340,-0.188733 +0.143197,0.321440,0.090316,0.402234,0.298047,-0.193405 +0.143196,0.328218,0.087402,0.402701,0.302713,-0.198117 +0.143196,0.334946,0.084425,0.403168,0.307337,-0.202870 +0.143195,0.341624,0.081385,0.403634,0.311918,-0.207663 +0.143195,0.348249,0.078282,0.404099,0.316456,-0.212493 +0.143194,0.354821,0.075116,0.404563,0.320949,-0.217361 +0.143193,0.361339,0.071889,0.405026,0.325397,-0.222266 +0.143193,0.367801,0.068601,0.405488,0.329800,-0.227206 +0.143192,0.374206,0.065253,0.405948,0.334155,-0.232181 +0.143192,0.380552,0.061844,0.406407,0.338463,-0.237190 +0.143191,0.386840,0.058377,0.406864,0.342723,-0.242232 +0.143190,0.393068,0.054850,0.407319,0.346933,-0.247307 +0.143190,0.399234,0.051266,0.407773,0.351094,-0.252412 +0.143189,0.405337,0.047625,0.408225,0.355204,-0.257548 +0.143188,0.411377,0.043926,0.408676,0.359263,-0.262713 +0.143188,0.417352,0.040172,0.409124,0.363269,-0.267907 +0.143187,0.423262,0.036363,0.409571,0.367223,-0.273128 +0.143187,0.429104,0.032498,0.410015,0.371124,-0.278376 +0.143186,0.434879,0.028580,0.410457,0.374970,-0.283650 +0.143186,0.440584,0.024609,0.410897,0.378761,-0.288948 +0.143185,0.446220,0.020585,0.411334,0.382497,-0.294270 +0.143184,0.451785,0.016509,0.411770,0.386176,-0.299615 +0.143184,0.457278,0.012382,0.412202,0.389799,-0.304981 +0.143183,0.462698,0.008205,0.412632,0.393364,-0.310368 +0.143183,0.468044,0.003978,0.413060,0.396871,-0.315776 +0.143182,0.473315,-0.000298,0.413485,0.400319,-0.321202 +0.143182,0.478510,-0.004622,0.413907,0.403708,-0.326646 +0.143181,0.483628,-0.008993,0.414326,0.407036,-0.332107 +0.143180,0.488669,-0.013410,0.414742,0.410304,-0.337584 +0.143180,0.493631,-0.017874,0.415155,0.413511,-0.343077 +0.143179,0.498514,-0.022382,0.415565,0.416656,-0.348583 +0.143179,0.503316,-0.026934,0.415972,0.419738,-0.354102 +0.143178,0.508037,-0.031530,0.416376,0.422758,-0.359633 +0.143178,0.512676,-0.036168,0.416777,0.425714,-0.365175 +0.143177,0.517232,-0.040847,0.417174,0.428606,-0.370728 +0.143177,0.521704,-0.045568,0.417567,0.431433,-0.376289 +0.143176,0.526092,-0.050328,0.417957,0.434196,-0.381858 +0.143176,0.530394,-0.055128,0.418344,0.436893,-0.387435 +0.143175,0.534611,-0.059965,0.418726,0.439524,-0.393017 +0.143175,0.538740,-0.064840,0.419106,0.442088,-0.398604 +0.143174,0.542782,-0.069752,0.419481,0.444586,-0.404196 +0.143174,0.546736,-0.074699,0.419852,0.447016,-0.409791 +0.143173,0.550600,-0.079680,0.420220,0.449378,-0.415387 +0.143173,0.554375,-0.084696,0.420583,0.451672,-0.420985 +0.143172,0.558059,-0.089744,0.420943,0.453897,-0.426582 +0.143172,0.561652,-0.094825,0.421298,0.456053,-0.432179 +0.143172,0.565154,-0.099936,0.421649,0.458140,-0.437773 +0.143171,0.568563,-0.105078,0.421996,0.460157,-0.443365 +0.143171,0.571879,-0.110248,0.422338,0.462104,-0.448952 +0.143170,0.575102,-0.115448,0.422677,0.463980,-0.454535 +0.143170,0.578231,-0.120674,0.423010,0.465785,-0.460112 +0.143169,0.581264,-0.125927,0.423339,0.467519,-0.465681 +0.143169,0.584203,-0.131205,0.423664,0.469182,-0.471242 +0.143169,0.587046,-0.136508,0.423984,0.470773,-0.476795 +0.143168,0.589792,-0.141835,0.424299,0.472291,-0.482337 +0.143168,0.592442,-0.147184,0.424610,0.473738,-0.487869 +0.143167,0.594995,-0.152555,0.424916,0.475111,-0.493388 +0.143167,0.597449,-0.157946,0.425217,0.476412,-0.498894 +0.143167,0.599806,-0.163358,0.425513,0.477640,-0.504387 +0.143166,0.602064,-0.168788,0.425804,0.478794,-0.509864 +0.143166,0.604223,-0.174235,0.426090,0.479874,-0.515325 +0.143166,0.606283,-0.179700,0.426371,0.480881,-0.520770 +0.143165,0.608243,-0.185180,0.426647,0.481814,-0.526196 +0.143165,0.610102,-0.190676,0.426918,0.482673,-0.531604 +0.143165,0.611862,-0.196185,0.427184,0.483458,-0.536992 +0.143164,0.613520,-0.201707,0.427444,0.484168,-0.542359 +0.143164,0.615078,-0.207240,0.427699,0.484804,-0.547704 +0.143164,0.616534,-0.212785,0.427949,0.485365,-0.553026 +0.143163,0.617889,-0.218339,0.428193,0.485852,-0.558325 +0.143163,0.619142,-0.223903,0.428432,0.486263,-0.563599 +0.143163,0.620293,-0.229474,0.428666,0.486600,-0.568847 +0.143162,0.621341,-0.235052,0.428894,0.486862,-0.574068 +0.143162,0.622287,-0.240636,0.429116,0.487048,-0.579263 +0.143162,0.623131,-0.246225,0.429333,0.487160,-0.584428 +0.143162,0.623871,-0.251818,0.429544,0.487197,-0.589565 +0.143161,0.624509,-0.257413,0.429749,0.487158,-0.594671 +0.143161,0.625044,-0.263011,0.429949,0.487045,-0.599746 +0.143161,0.625475,-0.268609,0.430143,0.486856,-0.604788 +0.143161,0.625804,-0.274207,0.430331,0.486593,-0.609798 +0.143161,0.626029,-0.279804,0.430514,0.486255,-0.614774 +0.143160,0.626151,-0.285398,0.430690,0.485841,-0.619715 +0.143160,0.626170,-0.290990,0.430861,0.485353,-0.624620 +0.143160,0.626085,-0.296577,0.431026,0.484790,-0.629488 +0.143160,0.625897,-0.302159,0.431185,0.484153,-0.634320 +0.143160,0.625605,-0.307735,0.431338,0.483441,-0.639112 +0.143159,0.625211,-0.313304,0.431484,0.482654,-0.643866 +0.143159,0.624713,-0.318865,0.431625,0.481793,-0.648579 +0.143159,0.624112,-0.324416,0.431760,0.480859,-0.653252 +0.143159,0.623409,-0.329957,0.431889,0.479850,-0.657883 +0.143159,0.622602,-0.335487,0.432011,0.478768,-0.662471 +0.143159,0.621693,-0.341005,0.432128,0.477612,-0.667016 +0.143159,0.620681,-0.346509,0.432238,0.476382,-0.671517 +0.143159,0.619567,-0.352000,0.432342,0.475080,-0.675972 +0.143159,0.618351,-0.357475,0.432441,0.473705,-0.680382 +0.143158,0.617033,-0.362934,0.432532,0.472257,-0.684745 +0.143158,0.615613,-0.368376,0.432618,0.470736,-0.689061 +0.143158,0.614092,-0.373800,0.432697,0.469144,-0.693329 +0.143158,0.612470,-0.379204,0.432771,0.467480,-0.697547 +0.143158,0.610747,-0.384589,0.432837,0.465744,-0.701716 +0.143158,0.608923,-0.389953,0.432898,0.463937,-0.705835 +0.143158,0.606999,-0.395295,0.432952,0.462059,-0.709902 +0.143158,0.604975,-0.400613,0.433000,0.460111,-0.713917 +0.143158,0.602852,-0.405908,0.433042,0.458092,-0.717880 +0.143158,0.600629,-0.411178,0.433078,0.456004,-0.721789 +0.143158,0.598308,-0.416423,0.433107,0.453846,-0.725644 +0.143158,0.595888,-0.421640,0.433130,0.451619,-0.729445 +0.143158,0.593371,-0.426830,0.433146,0.449323,-0.733190 +0.143158,0.590756,-0.431991,0.433156,0.446960,-0.736879 +0.143158,0.588044,-0.437123,0.433160,0.444528,-0.740511 +0.143158,0.585236,-0.442224,0.433158,0.442029,-0.744085 +0.143158,0.582332,-0.447294,0.433149,0.439463,-0.747602 +0.143158,0.579332,-0.452331,0.433134,0.436830,-0.751060 +0.143158,0.576238,-0.457336,0.433113,0.434132,-0.754458 +0.143158,0.573049,-0.462306,0.433085,0.431368,-0.757797 +0.143159,0.569766,-0.467241,0.433051,0.428539,-0.761075 +0.143159,0.566390,-0.472140,0.433011,0.425645,-0.764292 +0.143159,0.562922,-0.477003,0.432964,0.422688,-0.767447 +0.143159,0.559362,-0.481828,0.432911,0.419667,-0.770540 +0.143159,0.555710,-0.486614,0.432852,0.416583,-0.773570 +0.143159,0.551968,-0.491362,0.432786,0.413437,-0.776537 +0.143159,0.548135,-0.496068,0.432715,0.410228,-0.779440 +0.143159,0.544214,-0.500734,0.432637,0.406959,-0.782279 +0.143160,0.540204,-0.505358,0.432552,0.403629,-0.785052 +0.143160,0.536106,-0.509939,0.432462,0.400239,-0.787760 +0.143160,0.531920,-0.514477,0.432365,0.396790,-0.790402 +0.143160,0.527649,-0.518970,0.432262,0.393281,-0.792978 +0.143160,0.523292,-0.523419,0.432154,0.389715,-0.795487 +0.143160,0.518850,-0.527821,0.432038,0.386091,-0.797928 +0.143161,0.514324,-0.532176,0.431917,0.382410,-0.800302 +0.143161,0.509714,-0.536484,0.431790,0.378673,-0.802607 +0.143161,0.505023,-0.540743,0.431656,0.374881,-0.804844 +0.143161,0.500250,-0.544954,0.431517,0.371033,-0.807012 +0.143162,0.495396,-0.549114,0.431371,0.367131,-0.809111 +0.143162,0.490462,-0.553224,0.431220,0.363176,-0.811140 +0.143162,0.485450,-0.557283,0.431062,0.359168,-0.813099 +0.143162,0.480359,-0.561290,0.430899,0.355108,-0.814987 +0.143163,0.475191,-0.565243,0.430730,0.350997,-0.816804 +0.143163,0.469948,-0.569144,0.430554,0.346835,-0.818550 +0.143163,0.464628,-0.572990,0.430373,0.342624,-0.820225 +0.143163,0.459235,-0.576781,0.430186,0.338363,-0.821828 +0.143164,0.453768,-0.580517,0.429994,0.334054,-0.823359 +0.143164,0.448229,-0.584196,0.429795,0.329697,-0.824818 +0.143164,0.442619,-0.587818,0.429591,0.325294,-0.826204 +0.143165,0.436938,-0.591383,0.429381,0.320845,-0.827517 +0.143165,0.431188,-0.594890,0.429166,0.316350,-0.828757 +0.143165,0.425370,-0.598338,0.428945,0.311811,-0.829924 +0.143166,0.419485,-0.601727,0.428718,0.307229,-0.831017 +0.143166,0.413533,-0.605055,0.428486,0.302604,-0.832037 +0.143166,0.407516,-0.608323,0.428248,0.297937,-0.832982 +0.143167,0.401435,-0.611529,0.428005,0.293229,-0.833854 +0.143167,0.395292,-0.614674,0.427756,0.288481,-0.834652 +0.143168,0.389086,-0.617756,0.427503,0.283694,-0.835375 +0.143168,0.382820,-0.620776,0.427243,0.278868,-0.836023 +0.143168,0.376494,-0.623732,0.426979,0.274004,-0.836597 +0.143169,0.370110,-0.626624,0.426709,0.269104,-0.837096 +0.143169,0.363669,-0.629451,0.426435,0.264168,-0.837521 +0.143170,0.357171,-0.632213,0.426155,0.259197,-0.837871 +0.143170,0.350619,-0.634910,0.425870,0.254191,-0.838145 +0.143170,0.344012,-0.637541,0.425580,0.249153,-0.838345 +0.143171,0.337353,-0.640105,0.425285,0.244082,-0.838470 +0.143171,0.330643,-0.642603,0.424985,0.238980,-0.838519 +0.143172,0.323883,-0.645032,0.424680,0.233848,-0.838494 +0.143172,0.317073,-0.647395,0.424370,0.228686,-0.838393 +0.143173,0.310216,-0.649688,0.424056,0.223496,-0.838218 +0.143173,0.303312,-0.651914,0.423737,0.218277,-0.837967 +0.143174,0.296363,-0.654070,0.423414,0.213033,-0.837642 +0.143174,0.289370,-0.656156,0.423085,0.207762,-0.837241 +0.143174,0.282334,-0.658173,0.422753,0.202466,-0.836766 +0.143175,0.275257,-0.660120,0.422416,0.197147,-0.836216 +0.143175,0.268139,-0.661996,0.422074,0.191805,-0.835592 +0.143176,0.260983,-0.663801,0.421728,0.186440,-0.834893 +0.143176,0.253788,-0.665535,0.421378,0.181055,-0.834119 +0.143177,0.246558,-0.667197,0.421024,0.175650,-0.833271 +0.143177,0.239292,-0.668788,0.420665,0.170226,-0.832350 +0.143178,0.231993,-0.670306,0.420303,0.164783,-0.831354 +0.143179,0.224661,-0.671752,0.419936,0.159324,-0.830284 +0.143179,0.217298,-0.673126,0.419565,0.153848,-0.829141 +0.143180,0.209905,-0.674426,0.419191,0.148357,-0.827924 +0.143180,0.202483,-0.675654,0.418813,0.142852,-0.826635 +0.143181,0.195035,-0.676808,0.418431,0.137334,-0.825272 +0.143181,0.187561,-0.677888,0.418045,0.131804,-0.823837 +0.143182,0.180062,-0.678895,0.417656,0.126263,-0.822329 +0.143182,0.172540,-0.679828,0.417263,0.120711,-0.820749 +0.143183,0.164996,-0.680687,0.416867,0.115150,-0.819098 +0.143183,0.157432,-0.681471,0.416467,0.109582,-0.817375 +0.143184,0.149849,-0.682181,0.416064,0.104005,-0.815580 +0.143185,0.142248,-0.682817,0.415658,0.098423,-0.813715 +0.143185,0.134631,-0.683378,0.415249,0.092836,-0.811779 +0.143186,0.126999,-0.683864,0.414836,0.087244,-0.809772 +0.143186,0.119353,-0.684276,0.414421,0.081649,-0.807696 +0.143187,0.111695,-0.684612,0.414002,0.076052,-0.805551 +0.143188,0.104027,-0.684874,0.413581,0.070454,-0.803336 +0.143188,0.096349,-0.685060,0.413157,0.064856,-0.801052 +0.143189,0.088662,-0.685172,0.412730,0.059259,-0.798700 +0.143189,0.080969,-0.685209,0.412300,0.053663,-0.796281 +0.143190,0.073271,-0.685170,0.411868,0.048071,-0.793794 +0.143191,0.065569,-0.685056,0.411433,0.042482,-0.791239 +0.143191,0.057864,-0.684868,0.410996,0.036898,-0.788619 +0.143192,0.050158,-0.684604,0.410557,0.031320,-0.785932 +0.143192,0.042453,-0.684265,0.410115,0.025749,-0.783179 +0.143193,0.034749,-0.683852,0.409672,0.020186,-0.780362 +0.143194,0.027048,-0.683364,0.409226,0.014632,-0.777480 +0.143194,0.019351,-0.682801,0.408778,0.009087,-0.774533 +0.143195,0.011660,-0.682163,0.408328,0.003554,-0.771524 +0.143195,0.003977,-0.681451,0.407876,-0.001968,-0.768451 +0.143196,-0.003699,-0.680664,0.407423,-0.007476,-0.765316 +0.143197,-0.011364,-0.679803,0.406967,-0.012971,-0.762119 +0.143197,-0.019018,-0.678868,0.406510,-0.018451,-0.758860 +0.143198,-0.026659,-0.677860,0.406052,-0.023915,-0.755541 +0.143199,-0.034286,-0.676777,0.405592,-0.029363,-0.752162 +0.143199,-0.041898,-0.675621,0.405131,-0.034792,-0.748723 +0.143200,-0.049493,-0.674391,0.404669,-0.040203,-0.745225 +0.143201,-0.057070,-0.673089,0.404205,-0.045594,-0.741669 +0.143201,-0.064628,-0.671713,0.403740,-0.050964,-0.738055 +0.143202,-0.072164,-0.670265,0.403274,-0.056313,-0.734385 +0.143202,-0.079678,-0.668745,0.402807,-0.061639,-0.730658 +0.143203,-0.087169,-0.667152,0.402340,-0.066941,-0.726875 +0.143204,-0.094635,-0.665488,0.401871,-0.072219,-0.723037 +0.143204,-0.102075,-0.663752,0.401402,-0.077471,-0.719145 +0.143205,-0.109486,-0.661945,0.400932,-0.082697,-0.715200 +0.143206,-0.116869,-0.660067,0.400462,-0.087895,-0.711201 +0.143206,-0.124222,-0.658118,0.399991,-0.093066,-0.707151 +0.143207,-0.131543,-0.656100,0.399520,-0.098206,-0.703049 +0.143208,-0.138832,-0.654011,0.399049,-0.103317,-0.698896 +0.143208,-0.146086,-0.651853,0.398577,-0.108397,-0.694693 +0.143209,-0.153304,-0.649626,0.398106,-0.113444,-0.690441 +0.143210,-0.160486,-0.647330,0.397634,-0.118459,-0.686141 +0.143210,-0.167630,-0.644966,0.397162,-0.123440,-0.681793 +0.143211,-0.174734,-0.642534,0.396691,-0.128386,-0.677398 +0.143211,-0.181798,-0.640035,0.396220,-0.133296,-0.672957 +0.143212,-0.188819,-0.637469,0.395749,-0.138170,-0.668471 +0.143213,-0.195798,-0.634836,0.395278,-0.143007,-0.663940 +0.143213,-0.202732,-0.632138,0.394808,-0.147805,-0.659366 +0.143214,-0.209620,-0.629374,0.394339,-0.152565,-0.654749 +0.143215,-0.216462,-0.626545,0.393870,-0.157284,-0.650090 +0.143215,-0.223255,-0.623651,0.393402,-0.161963,-0.645389 +0.143216,-0.229999,-0.620693,0.392934,-0.166600,-0.640648 +0.143217,-0.236692,-0.617672,0.392468,-0.171194,-0.635868 +0.143217,-0.243334,-0.614588,0.392003,-0.175745,-0.631049 +0.143218,-0.249922,-0.611442,0.391538,-0.180252,-0.626193 +0.143218,-0.256456,-0.608233,0.391075,-0.184715,-0.621299 +0.143219,-0.262935,-0.604964,0.390613,-0.189131,-0.616370 +0.143220,-0.269358,-0.601634,0.390153,-0.193501,-0.611405 +0.143220,-0.275722,-0.598244,0.389694,-0.197823,-0.606406 +0.143221,-0.282028,-0.594794,0.389236,-0.202098,-0.601374 +0.143221,-0.288274,-0.591286,0.388780,-0.206323,-0.596310 +0.143222,-0.294459,-0.587719,0.388326,-0.210499,-0.591213 +0.143223,-0.300582,-0.584095,0.387873,-0.214625,-0.586087 +0.143223,-0.306642,-0.580414,0.387422,-0.218700,-0.580930 +0.143224,-0.312637,-0.576677,0.386973,-0.222722,-0.575745 +0.143224,-0.318566,-0.572884,0.386526,-0.226692,-0.570532 +0.143225,-0.324429,-0.569037,0.386081,-0.230609,-0.565293 +0.143226,-0.330225,-0.565135,0.385638,-0.234472,-0.560027 +0.143226,-0.335952,-0.561180,0.385198,-0.238280,-0.554736 +0.143227,-0.341609,-0.557172,0.384759,-0.242033,-0.549421 +0.143227,-0.347196,-0.553111,0.384323,-0.245730,-0.544084 +0.143228,-0.352711,-0.549000,0.383890,-0.249370,-0.538724 +0.143229,-0.358153,-0.544838,0.383459,-0.252953,-0.533342 +0.143229,-0.363522,-0.540626,0.383031,-0.256478,-0.527941 +0.143230,-0.368816,-0.536366,0.382605,-0.259944,-0.522521 +0.143230,-0.374034,-0.532056,0.382182,-0.263350,-0.517082 +0.143231,-0.379176,-0.527700,0.381762,-0.266697,-0.511626 +0.143231,-0.384241,-0.523296,0.381345,-0.269984,-0.506153 +0.143232,-0.389227,-0.518847,0.380931,-0.273209,-0.500666 +0.143232,-0.394134,-0.514352,0.380520,-0.276373,-0.495164 +0.143233,-0.398961,-0.509813,0.380112,-0.279475,-0.489649 +0.143233,-0.403707,-0.505231,0.379707,-0.282514,-0.484121 +0.143234,-0.408371,-0.500606,0.379306,-0.285489,-0.478582 +0.143234,-0.412952,-0.495939,0.378908,-0.288401,-0.473033 +0.143235,-0.417450,-0.491231,0.378513,-0.291248,-0.467474 +0.143235,-0.421864,-0.486483,0.378122,-0.294031,-0.461907 +0.143236,-0.426193,-0.481695,0.377734,-0.296748,-0.456333 +0.143237,-0.430436,-0.476869,0.377350,-0.299399,-0.450752 +0.143237,-0.434592,-0.472006,0.376970,-0.301984,-0.445166 +0.143237,-0.438660,-0.467105,0.376594,-0.304502,-0.439576 +0.143238,-0.442641,-0.462169,0.376221,-0.306953,-0.433982 +0.143238,-0.446533,-0.457198,0.375852,-0.309336,-0.428386 +0.143239,-0.450335,-0.452192,0.375488,-0.311651,-0.422788 +0.143239,-0.454047,-0.447154,0.375127,-0.313897,-0.417191 +0.143240,-0.457668,-0.442083,0.374770,-0.316074,-0.411594 +0.143240,-0.461198,-0.436981,0.374418,-0.318182,-0.405998 +0.143241,-0.464636,-0.431849,0.374070,-0.320221,-0.400406 +0.143241,-0.467980,-0.426687,0.373726,-0.322189,-0.394817 +0.143242,-0.471232,-0.421496,0.373387,-0.324087,-0.389233 +0.143242,-0.474389,-0.416278,0.373051,-0.325914,-0.383654 +0.143242,-0.477452,-0.411033,0.372721,-0.327670,-0.378083 +0.143243,-0.480420,-0.405762,0.372395,-0.329354,-0.372519 +0.143243,-0.483292,-0.400467,0.372073,-0.330967,-0.366963 +0.143244,-0.486068,-0.395147,0.371757,-0.332508,-0.361418 +0.143244,-0.488747,-0.389805,0.371445,-0.333976,-0.355883 +0.143244,-0.491329,-0.384441,0.371137,-0.335372,-0.350360 +0.143245,-0.493814,-0.379055,0.370835,-0.336695,-0.344849 +0.143245,-0.496201,-0.373650,0.370537,-0.337945,-0.339353 +0.143246,-0.498489,-0.368226,0.370244,-0.339122,-0.333871 +0.143246,-0.500678,-0.362783,0.369957,-0.340225,-0.328404 +0.143246,-0.502769,-0.357324,0.369674,-0.341254,-0.322954 +0.143247,-0.504759,-0.351848,0.369397,-0.342210,-0.317522 +0.143247,-0.506650,-0.346357,0.369124,-0.343092,-0.312109 +0.143247,-0.508440,-0.340852,0.368857,-0.343899,-0.306715 +0.143248,-0.510129,-0.335334,0.368595,-0.344632,-0.301342 +0.143248,-0.511718,-0.329804,0.368338,-0.345291,-0.295990 +0.143248,-0.513205,-0.324263,0.368087,-0.345875,-0.290660 +0.143249,-0.514591,-0.318711,0.367841,-0.346384,-0.285354 +0.143249,-0.515875,-0.313150,0.367600,-0.346818,-0.280073 +0.143249,-0.517057,-0.307581,0.367365,-0.347178,-0.274817 +0.143249,-0.518137,-0.302005,0.367136,-0.347463,-0.269587 +0.143250,-0.519114,-0.296423,0.366911,-0.347672,-0.264384 +0.143250,-0.519989,-0.290836,0.366693,-0.347807,-0.259209 +0.143250,-0.520761,-0.285244,0.366480,-0.347867,-0.254064 +0.143250,-0.521430,-0.279649,0.366273,-0.347851,-0.248949 +0.143251,-0.521997,-0.274052,0.366071,-0.347761,-0.243864 +0.143251,-0.522460,-0.268454,0.365876,-0.347595,-0.238811 +0.143251,-0.522820,-0.262856,0.365686,-0.347355,-0.233792 +0.143251,-0.523077,-0.257259,0.365501,-0.347039,-0.228805 +0.143251,-0.523230,-0.251663,0.365323,-0.346649,-0.223854 +0.143252,-0.523280,-0.246071,0.365151,-0.346183,-0.218938 +0.143252,-0.523227,-0.240482,0.364984,-0.345643,-0.214058 +0.143252,-0.523071,-0.234898,0.364823,-0.345029,-0.209215 +0.143252,-0.522811,-0.229320,0.364669,-0.344339,-0.204410 +0.143252,-0.522448,-0.223749,0.364520,-0.343576,-0.199645 +0.143253,-0.521982,-0.218186,0.364377,-0.342738,-0.194919 +0.143253,-0.521413,-0.212632,0.364241,-0.341826,-0.190234 +0.143253,-0.520741,-0.207087,0.364110,-0.340840,-0.185590 +0.143253,-0.519965,-0.201554,0.363986,-0.339780,-0.180989 +0.143253,-0.519088,-0.196032,0.363867,-0.338646,-0.176430 +0.143253,-0.518107,-0.190524,0.363755,-0.337439,-0.171916 +0.143253,-0.517025,-0.185029,0.363649,-0.336159,-0.167447 +0.143253,-0.515840,-0.179549,0.363549,-0.334806,-0.163023 +0.143253,-0.514553,-0.174085,0.363455,-0.333381,-0.158645 +0.143254,-0.513164,-0.168637,0.363368,-0.331882,-0.154315 +0.143254,-0.511674,-0.163208,0.363286,-0.330312,-0.150032 +0.143254,-0.510082,-0.157797,0.363211,-0.328670,-0.145799 +0.143254,-0.508390,-0.152406,0.363142,-0.326956,-0.141615 +0.143254,-0.506597,-0.147036,0.363080,-0.325171,-0.137481 +0.143254,-0.504704,-0.141687,0.363024,-0.323314,-0.133398 +0.143254,-0.502710,-0.136362,0.362974,-0.321388,-0.129366 +0.143254,-0.500617,-0.131059,0.362930,-0.319390,-0.125388 +0.143254,-0.498425,-0.125782,0.362893,-0.317323,-0.121462 +0.143254,-0.496134,-0.120529,0.362861,-0.315187,-0.117590 +0.143254,-0.493745,-0.115304,0.362837,-0.312981,-0.113773 +0.143254,-0.491257,-0.110105,0.362818,-0.310706,-0.110011 +0.143254,-0.488672,-0.104935,0.362806,-0.308363,-0.106304 +0.143254,-0.485990,-0.099794,0.362800,-0.305952,-0.102655 +0.143254,-0.483211,-0.094684,0.362801,-0.303474,-0.099063 +0.143254,-0.480336,-0.089604,0.362808,-0.300928,-0.095528 +0.143254,-0.477366,-0.084557,0.362821,-0.298316,-0.092052 +0.143254,-0.474300,-0.079542,0.362840,-0.295638,-0.088635 +0.143254,-0.471140,-0.074561,0.362866,-0.292894,-0.085278 +0.143253,-0.467886,-0.069615,0.362898,-0.290084,-0.081982 +0.143253,-0.464539,-0.064705,0.362937,-0.287211,-0.078746 +0.143253,-0.461098,-0.059831,0.362981,-0.284273,-0.075572 +0.143253,-0.457566,-0.054994,0.363032,-0.281271,-0.072460 +0.143253,-0.453942,-0.050196,0.363090,-0.278206,-0.069410 +0.143253,-0.450228,-0.045437,0.363153,-0.275079,-0.066424 +0.143253,-0.446423,-0.040718,0.363223,-0.271890,-0.063502 +0.143253,-0.442529,-0.036039,0.363299,-0.268639,-0.060644 +0.143252,-0.438545,-0.031402,0.363381,-0.265327,-0.057850 +0.143252,-0.434474,-0.026808,0.363470,-0.261956,-0.055122 +0.143252,-0.430316,-0.022257,0.363565,-0.258524,-0.052460 +0.143252,-0.426070,-0.017750,0.363665,-0.255034,-0.049864 +0.143252,-0.421739,-0.013288,0.363773,-0.251485,-0.047334 +0.143252,-0.417323,-0.008871,0.363886,-0.247879,-0.044872 +0.143251,-0.412823,-0.004502,0.364005,-0.244216,-0.042478 +0.143251,-0.408239,-0.000179,0.364131,-0.240496,-0.040151 +0.143251,-0.403572,0.004095,0.364262,-0.236720,-0.037893 +0.143251,-0.398824,0.008321,0.364400,-0.232889,-0.035704 +0.143250,-0.393995,0.012497,0.364543,-0.229004,-0.033584 +0.143250,-0.389086,0.016622,0.364693,-0.225065,-0.031534 +0.143250,-0.384097,0.020697,0.364849,-0.221073,-0.029554 +0.143250,-0.379030,0.024719,0.365010,-0.217029,-0.027644 +0.143249,-0.373886,0.028689,0.365178,-0.212934,-0.025805 +0.143249,-0.368665,0.032606,0.365351,-0.208787,-0.024037 +0.143249,-0.363369,0.036469,0.365531,-0.204591,-0.022340 +0.143249,-0.357998,0.040277,0.365716,-0.200345,-0.020715 +0.143248,-0.352554,0.044029,0.365907,-0.196050,-0.019162 +0.143248,-0.347037,0.047726,0.366103,-0.191708,-0.017681 +0.143248,-0.341448,0.051366,0.366306,-0.187319,-0.016273 +0.143247,-0.335789,0.054949,0.366514,-0.182884,-0.014938 +0.143247,-0.330060,0.058473,0.366728,-0.178403,-0.013675 +0.143247,-0.324263,0.061939,0.366947,-0.173878,-0.012486 +0.143246,-0.318398,0.065346,0.367172,-0.169309,-0.011370 +0.143246,-0.312466,0.068693,0.367403,-0.164697,-0.010328 +0.143246,-0.306469,0.071979,0.367639,-0.160043,-0.009360 +0.143245,-0.300408,0.075205,0.367880,-0.155347,-0.008465 +0.143245,-0.294284,0.078368,0.368127,-0.150611,-0.007645 +0.143245,-0.288097,0.081470,0.368379,-0.145836,-0.006899 +0.143244,-0.281849,0.084508,0.368637,-0.141021,-0.006228 +0.143244,-0.275542,0.087484,0.368900,-0.136169,-0.005631 +0.143243,-0.269175,0.090395,0.369168,-0.131280,-0.005109 +0.143243,-0.262751,0.093243,0.369441,-0.126355,-0.004661 +0.143243,-0.256270,0.096025,0.369719,-0.121394,-0.004289 +0.143242,-0.249735,0.098742,0.370003,-0.116399,-0.003991 +0.143242,-0.243145,0.101393,0.370291,-0.111371,-0.003769 +0.143241,-0.236502,0.103977,0.370585,-0.106310,-0.003621 +0.143241,-0.229807,0.106495,0.370883,-0.101218,-0.003549 +0.143240,-0.223062,0.108946,0.371186,-0.096095,-0.003551 +0.143240,-0.216267,0.111329,0.371494,-0.090942,-0.003629 +0.143239,-0.209424,0.113644,0.371807,-0.085760,-0.003781 +0.143239,-0.202535,0.115890,0.372125,-0.080550,-0.004009 +0.143239,-0.195599,0.118067,0.372447,-0.075313,-0.004311 +0.143238,-0.188619,0.120175,0.372774,-0.070050,-0.004689 +0.143238,-0.181597,0.122213,0.373105,-0.064762,-0.005141 +0.143237,-0.174532,0.124181,0.373441,-0.059450,-0.005668 +0.143237,-0.167426,0.126079,0.373781,-0.054115,-0.006270 +0.143236,-0.160282,0.127906,0.374126,-0.048757,-0.006946 +0.143236,-0.153099,0.129662,0.374475,-0.043378,-0.007697 +0.143235,-0.145879,0.131346,0.374828,-0.037979,-0.008522 +0.143235,-0.138624,0.132959,0.375185,-0.032560,-0.009421 +0.143234,-0.131335,0.134499,0.375546,-0.027123,-0.010394 +0.143234,-0.124013,0.135967,0.375911,-0.021669,-0.011441 +0.143233,-0.116659,0.137363,0.376281,-0.016198,-0.012562 +0.143232,-0.109275,0.138686,0.376654,-0.010712,-0.013756 +0.143232,-0.101862,0.139936,0.377031,-0.005211,-0.015023 +0.143231,-0.094422,0.141112,0.377412,0.000303,-0.016364 +0.143231,-0.086956,0.142215,0.377796,0.005830,-0.017777 +0.143230,-0.079464,0.143245,0.378185,0.011368,-0.019262 +0.143230,-0.071949,0.144200,0.378576,0.016916,-0.020820 +0.143229,-0.064412,0.145082,0.378971,0.022474,-0.022450 +0.143229,-0.056854,0.145889,0.379370,0.028041,-0.024151 +0.143228,-0.049277,0.146622,0.379772,0.033615,-0.025924 +0.143228,-0.041681,0.147280,0.380177,0.039195,-0.027768 +0.143227,-0.034069,0.147864,0.380586,0.044781,-0.029682 +0.143226,-0.026441,0.148373,0.380997,0.050372,-0.031667 +0.143226,-0.018799,0.148808,0.381412,0.055966,-0.033722 +0.143225,-0.011145,0.149167,0.381829,0.061562,-0.035846 +0.143225,-0.003479,0.149452,0.382250,0.067160,-0.038040 +0.143224,0.004196,0.149661,0.382673,0.072758,-0.040302 +0.143223,0.011880,0.149796,0.383099,0.078356,-0.042633 +0.143223,0.019571,0.149855,0.383528,0.083952,-0.045032 +0.143222,0.027268,0.149839,0.383959,0.089545,-0.047499 +0.143222,0.034969,0.149749,0.384393,0.095136,-0.050033 +0.143221,0.042673,0.149583,0.384830,0.100721,-0.052633 +0.143220,0.050379,0.149342,0.385268,0.106301,-0.055300 +0.143220,0.058084,0.149027,0.385709,0.111874,-0.058032 +0.143219,0.065789,0.148636,0.386152,0.117440,-0.060830 +0.143219,0.073491,0.148171,0.386598,0.122997,-0.063692 +0.143218,0.081189,0.147630,0.387045,0.128544,-0.066619 +0.143217,0.088882,0.147016,0.387494,0.134081,-0.069609 +0.143217,0.096568,0.146326,0.387946,0.139607,-0.072663 +0.143216,0.104246,0.145562,0.388399,0.145119,-0.075779 +0.143215,0.111914,0.144724,0.388853,0.150619,-0.078957 +0.143215,0.119572,0.143812,0.389310,0.156103,-0.082197 +0.143214,0.127217,0.142826,0.389768,0.161572,-0.085498 +0.143213,0.134849,0.141766,0.390227,0.167025,-0.088859 +0.143213,0.142466,0.140632,0.390688,0.172460,-0.092279 +0.143212,0.150066,0.139425,0.391150,0.177877,-0.095759 +0.143212,0.157649,0.138145,0.391613,0.183274,-0.099298 +0.143211,0.165212,0.136792,0.392078,0.188650,-0.102894 +0.143210,0.172755,0.135366,0.392543,0.194006,-0.106547 +0.143210,0.180276,0.133867,0.393010,0.199339,-0.110257 +0.143209,0.187774,0.132297,0.393477,0.204648,-0.114022 +0.143208,0.195248,0.130654,0.393945,0.209934,-0.117843 +0.143208,0.202696,0.128940,0.394414,0.215194,-0.121719 +0.143207,0.210116,0.127155,0.394884,0.220428,-0.125648 +0.143206,0.217508,0.125299,0.395354,0.225635,-0.129630 +0.143206,0.224871,0.123372,0.395825,0.230814,-0.133665 +0.143205,0.232202,0.121374,0.396296,0.235964,-0.137751 +0.143205,0.239500,0.119307,0.396767,0.241084,-0.141889 +0.143204,0.246765,0.117170,0.397238,0.246173,-0.146076 +0.143203,0.253994,0.114964,0.397710,0.251230,-0.150313 +0.143203,0.261187,0.112690,0.398182,0.256255,-0.154599 +0.143202,0.268343,0.110346,0.398653,0.261246,-0.158932 +0.143201,0.275459,0.107935,0.399125,0.266203,-0.163313 +0.143201,0.282536,0.105457,0.399596,0.271125,-0.167740 +0.143200,0.289570,0.102911,0.400067,0.276010,-0.172212 +0.143199,0.296562,0.100299,0.400538,0.280858,-0.176729 +0.143199,0.303510,0.097620,0.401008,0.285668,-0.181290 +0.143198,0.310412,0.094876,0.401478,0.290440,-0.185895 +0.143198,0.317268,0.092067,0.401947,0.295171,-0.190541 +0.143197,0.324076,0.089193,0.402415,0.299863,-0.195229 +0.143196,0.330835,0.086255,0.402883,0.304512,-0.199957 +0.143196,0.337544,0.083253,0.403349,0.309120,-0.204726 +0.143195,0.344202,0.080188,0.403815,0.313684,-0.209533 +0.143194,0.350807,0.077060,0.404280,0.318205,-0.214378 +0.143194,0.357358,0.073871,0.404743,0.322681,-0.219260 +0.143193,0.363854,0.070620,0.405205,0.327112,-0.224179 +0.143193,0.370293,0.067309,0.405666,0.331496,-0.229133 +0.143192,0.376676,0.063937,0.406126,0.335833,-0.234121 +0.143191,0.383000,0.060505,0.406584,0.340122,-0.239143 +0.143191,0.389264,0.057015,0.407041,0.344363,-0.244198 +0.143190,0.395468,0.053466,0.407496,0.348554,-0.249285 +0.143189,0.401610,0.049860,0.407949,0.352695,-0.254402 +0.143189,0.407689,0.046196,0.408400,0.356785,-0.259549 +0.143188,0.413704,0.042476,0.408850,0.360824,-0.264726 +0.143188,0.419654,0.038700,0.409298,0.364810,-0.269930 +0.143187,0.425537,0.034869,0.409743,0.368743,-0.275162 +0.143186,0.431353,0.030984,0.410187,0.372623,-0.280420 +0.143186,0.437101,0.027045,0.410628,0.376448,-0.285703 +0.143185,0.442780,0.023053,0.411067,0.380218,-0.291011 +0.143185,0.448389,0.019009,0.411504,0.383932,-0.296342 +0.143184,0.453925,0.014913,0.411938,0.387589,-0.301695 +0.143184,0.459390,0.010767,0.412370,0.391190,-0.307070 +0.143183,0.464781,0.006570,0.412799,0.394732,-0.312465 +0.143182,0.470098,0.002324,0.413225,0.398216,-0.317880 +0.143182,0.475340,-0.001970,0.413649,0.401641,-0.323313 +0.143181,0.480506,-0.006313,0.414070,0.405007,-0.328764 +0.143181,0.485594,-0.010702,0.414488,0.408312,-0.334231 +0.143180,0.490604,-0.015137,0.414903,0.411556,-0.339714 +0.143180,0.495536,-0.019618,0.415315,0.414739,-0.345212 +0.143179,0.500387,-0.024143,0.415724,0.417859,-0.350723 +0.143179,0.505158,-0.028713,0.416130,0.420918,-0.356247 +0.143178,0.509847,-0.033325,0.416532,0.423913,-0.361783 +0.143178,0.514454,-0.037979,0.416931,0.426844,-0.367329 +0.143177,0.518978,-0.042675,0.417327,0.429711,-0.372885 +0.143177,0.523417,-0.047411,0.417719,0.432513,-0.378450 +0.143176,0.527772,-0.052186,0.418108,0.435250,-0.384022 +0.143176,0.532041,-0.057001,0.418493,0.437922,-0.389601 +0.143175,0.536224,-0.061853,0.418874,0.440527,-0.395185 +0.143175,0.540319,-0.066742,0.419252,0.443065,-0.400774 +0.143174,0.544327,-0.071667,0.419625,0.445537,-0.406367 +0.143174,0.548246,-0.076628,0.419995,0.447941,-0.411962 +0.143173,0.552076,-0.081623,0.420361,0.450276,-0.417560 +0.143173,0.555816,-0.086651,0.420723,0.452544,-0.423157 +0.143172,0.559465,-0.091712,0.421081,0.454742,-0.428755 +0.143172,0.563022,-0.096805,0.421435,0.456872,-0.434350 +0.143171,0.566488,-0.101928,0.421784,0.458931,-0.439944 +0.143171,0.569861,-0.107081,0.422129,0.460921,-0.445534 +0.143170,0.573141,-0.112263,0.422470,0.462840,-0.451120 +0.143170,0.576328,-0.117473,0.422807,0.464689,-0.456700 +0.143170,0.579419,-0.122710,0.423139,0.466467,-0.462274 +0.143169,0.582416,-0.127973,0.423466,0.468173,-0.467841 +0.143169,0.585318,-0.133261,0.423789,0.469808,-0.473399 +0.143168,0.588123,-0.138573,0.424107,0.471371,-0.478947 +0.143168,0.590832,-0.143908,0.424421,0.472861,-0.484485 +0.143168,0.593444,-0.149266,0.424729,0.474279,-0.490012 +0.143167,0.595959,-0.154645,0.425033,0.475625,-0.495527 +0.143167,0.598376,-0.160044,0.425332,0.476897,-0.501028 +0.143166,0.600694,-0.165463,0.425627,0.478096,-0.506514 +0.143166,0.602914,-0.170900,0.425916,0.479222,-0.511986 +0.143166,0.605034,-0.176354,0.426200,0.480274,-0.517441 +0.143165,0.607055,-0.181825,0.426479,0.481252,-0.522878 +0.143165,0.608976,-0.187311,0.426753,0.482157,-0.528298 +0.143165,0.610797,-0.192812,0.427022,0.482987,-0.533698 +0.143164,0.612517,-0.198326,0.427286,0.483743,-0.539077 +0.143164,0.614137,-0.203853,0.427544,0.484424,-0.544436 +0.143164,0.615655,-0.209391,0.427797,0.485031,-0.549772 +0.143164,0.617072,-0.214940,0.428045,0.485563,-0.555085 +0.143163,0.618387,-0.220498,0.428287,0.486020,-0.560375 +0.143163,0.619601,-0.226064,0.428524,0.486403,-0.565639 +0.143163,0.620712,-0.231638,0.428755,0.486710,-0.570877 +0.143162,0.621720,-0.237219,0.428981,0.486943,-0.576088 +0.143162,0.622627,-0.242805,0.429201,0.487101,-0.581271 +0.143162,0.623430,-0.248395,0.429415,0.487183,-0.586425 +0.143162,0.624131,-0.253989,0.429624,0.487191,-0.591550 +0.143161,0.624729,-0.259586,0.429828,0.487123,-0.596644 +0.143161,0.625224,-0.265183,0.430025,0.486981,-0.601707 +0.143161,0.625615,-0.270782,0.430217,0.486763,-0.606737 +0.143161,0.625904,-0.276379,0.430403,0.486470,-0.611733 +0.143160,0.626089,-0.281976,0.430583,0.486103,-0.616696 +0.143160,0.626170,-0.287569,0.430757,0.485661,-0.621623 +0.143160,0.626149,-0.293159,0.430926,0.485143,-0.626514 +0.143160,0.626024,-0.298745,0.431088,0.484552,-0.631368 +0.143160,0.625796,-0.304324,0.431245,0.483885,-0.636184 +0.143160,0.625465,-0.309898,0.431395,0.483144,-0.640962 +0.143159,0.625030,-0.315463,0.431540,0.482329,-0.645700 +0.143159,0.624492,-0.321020,0.431678,0.481439,-0.650398 +0.143159,0.623852,-0.326568,0.431811,0.480476,-0.655054 +0.143159,0.623108,-0.332105,0.431937,0.479439,-0.659669 +0.143159,0.622262,-0.337630,0.432057,0.478328,-0.664240 +0.143159,0.621313,-0.343143,0.432171,0.477143,-0.668768 +0.143159,0.620261,-0.348642,0.432279,0.475886,-0.673251 +0.143159,0.619107,-0.354127,0.432381,0.474555,-0.677689 +0.143158,0.617852,-0.359596,0.432477,0.473151,-0.682081 +0.143158,0.616494,-0.365048,0.432566,0.471675,-0.686426 +0.143158,0.615035,-0.370483,0.432650,0.470127,-0.690723 +0.143158,0.613474,-0.375900,0.432726,0.468507,-0.694972 +0.143158,0.611813,-0.381297,0.432797,0.466815,-0.699171 +0.143158,0.610051,-0.386674,0.432862,0.465051,-0.703321 +0.143158,0.608188,-0.392029,0.432920,0.463217,-0.707419 +0.143158,0.606225,-0.397362,0.432972,0.461311,-0.711466 +0.143158,0.604163,-0.402671,0.433017,0.459336,-0.715461 +0.143158,0.602001,-0.407957,0.433057,0.457290,-0.719403 +0.143158,0.599740,-0.413217,0.433090,0.455175,-0.723292 +0.143158,0.597381,-0.418451,0.433116,0.452990,-0.727126 +0.143158,0.594923,-0.423658,0.433137,0.450736,-0.730905 +0.143158,0.592368,-0.428836,0.433151,0.448414,-0.734628 +0.143158,0.589715,-0.433986,0.433159,0.446024,-0.738295 +0.143158,0.586966,-0.439106,0.433160,0.443566,-0.741905 +0.143158,0.584120,-0.444195,0.433155,0.441041,-0.745457 +0.143158,0.581179,-0.449253,0.433144,0.438449,-0.748951 +0.143158,0.578143,-0.454277,0.433126,0.435791,-0.752386 +0.143158,0.575011,-0.459269,0.433103,0.433067,-0.755761 +0.143158,0.571786,-0.464225,0.433072,0.430278,-0.759077 +0.143159,0.568467,-0.469147,0.433036,0.427423,-0.762331 +0.143159,0.565055,-0.474032,0.432993,0.424505,-0.765524 +0.143159,0.561551,-0.478880,0.432944,0.421523,-0.768655 +0.143159,0.557955,-0.483690,0.432889,0.418477,-0.771724 +0.143159,0.554268,-0.488462,0.432827,0.415369,-0.774730 +0.143159,0.550491,-0.493193,0.432759,0.412199,-0.777672 +0.143159,0.546624,-0.497884,0.432685,0.408967,-0.780549 +0.143159,0.542668,-0.502534,0.432605,0.405674,-0.783363 +0.143160,0.538623,-0.507141,0.432518,0.402321,-0.786111 +0.143160,0.534492,-0.511706,0.432425,0.398907,-0.788793 +0.143160,0.530273,-0.516226,0.432326,0.395435,-0.791410 +0.143160,0.525968,-0.520702,0.432221,0.391904,-0.793959 +0.143160,0.521578,-0.525133,0.432110,0.388315,-0.796442 +0.143161,0.517103,-0.529517,0.431992,0.384669,-0.798858 +0.143161,0.512545,-0.533854,0.431868,0.380966,-0.801205 +0.143161,0.507903,-0.538143,0.431739,0.377208,-0.803484 +0.143161,0.503180,-0.542383,0.431603,0.373394,-0.805694 +0.143161,0.498375,-0.546575,0.431461,0.369525,-0.807835 +0.143162,0.493490,-0.550716,0.431313,0.365603,-0.809907 +0.143162,0.488526,-0.554806,0.431160,0.361627,-0.811908 +0.143162,0.483483,-0.558844,0.431000,0.357599,-0.813840 +0.143162,0.478363,-0.562830,0.430834,0.353519,-0.815700 +0.143163,0.473165,-0.566764,0.430662,0.349388,-0.817490 +0.143163,0.467892,-0.570643,0.430485,0.345207,-0.819209 +0.143163,0.462544,-0.574468,0.430302,0.340976,-0.820856 +0.143164,0.457122,-0.578237,0.430112,0.336696,-0.822431 +0.143164,0.451627,-0.581951,0.429917,0.332369,-0.823934 +0.143164,0.446060,-0.585609,0.429717,0.327994,-0.825364 +0.143164,0.440422,-0.589209,0.429510,0.323573,-0.826722 +0.143165,0.434715,-0.592751,0.429298,0.319106,-0.828007 +0.143165,0.428938,-0.596235,0.429081,0.314594,-0.829219 +0.143165,0.423094,-0.599660,0.428857,0.310038,-0.830357 +0.143166,0.417182,-0.603026,0.428629,0.305439,-0.831422 +0.143166,0.411205,-0.606330,0.428394,0.300798,-0.832413 +0.143167,0.405164,-0.609575,0.428154,0.296115,-0.833330 +0.143167,0.399058,-0.612757,0.427909,0.291391,-0.834172 +0.143167,0.392891,-0.615878,0.427659,0.286628,-0.834941 +0.143168,0.386661,-0.618936,0.427403,0.281825,-0.835635 +0.143168,0.380372,-0.621931,0.427141,0.276985,-0.836255 +0.143168,0.374023,-0.624862,0.426875,0.272107,-0.836800 +0.143169,0.367617,-0.627729,0.426603,0.267192,-0.837270 +0.143169,0.361154,-0.630531,0.426326,0.262242,-0.837666 +0.143170,0.354634,-0.633268,0.426045,0.257258,-0.837986 +0.143170,0.348061,-0.635939,0.425758,0.252240,-0.838232 +0.143171,0.341434,-0.638544,0.425466,0.247189,-0.838402 +0.143171,0.334755,-0.641082,0.425169,0.242106,-0.838498 +0.143171,0.328025,-0.643554,0.424867,0.236992,-0.838518 +0.143172,0.321245,-0.645957,0.424560,0.231848,-0.838464 +0.143172,0.314417,-0.648293,0.424249,0.226675,-0.838334 +0.143173,0.307542,-0.650560,0.423933,0.221474,-0.838129 +0.143173,0.300620,-0.652759,0.423612,0.216245,-0.837850 +0.143174,0.293654,-0.654888,0.423287,0.210990,-0.837495 +0.143174,0.286644,-0.656947,0.422957,0.205709,-0.837066 +0.143175,0.279592,-0.658937,0.422622,0.200405,-0.836562 +0.143175,0.272499,-0.660856,0.422283,0.195076,-0.835983 +0.143176,0.265366,-0.662705,0.421940,0.189725,-0.835329 +0.143176,0.258195,-0.664482,0.421593,0.184353,-0.834601 +0.143177,0.250986,-0.666188,0.421241,0.178960,-0.833799 +0.143177,0.243742,-0.667823,0.420885,0.173547,-0.832922 +0.143178,0.236463,-0.669386,0.420525,0.168115,-0.831972 +0.143178,0.229151,-0.670876,0.420161,0.162666,-0.830947 +0.143179,0.221807,-0.672294,0.419793,0.157200,-0.829849 +0.143179,0.214432,-0.673639,0.419421,0.151719,-0.828678 +0.143180,0.207028,-0.674911,0.419045,0.146222,-0.827433 +0.143180,0.199596,-0.676110,0.418665,0.140712,-0.826115 +0.143181,0.192137,-0.677236,0.418282,0.135189,-0.824724 +0.143181,0.184653,-0.678288,0.417895,0.129655,-0.823260 +0.143182,0.177145,-0.679266,0.417504,0.124109,-0.821725 +0.143183,0.169615,-0.680170,0.417110,0.118554,-0.820117 +0.143183,0.162063,-0.681000,0.416712,0.112990,-0.818437 +0.143184,0.154491,-0.681756,0.416311,0.107418,-0.816687 +0.143184,0.146901,-0.682437,0.415907,0.101840,-0.814864 +0.143185,0.139294,-0.683044,0.415500,0.096255,-0.812972 +0.143185,0.131671,-0.683576,0.415089,0.090666,-0.811008 +0.143186,0.124033,-0.684033,0.414675,0.085073,-0.808975 +0.143187,0.116383,-0.684415,0.414259,0.079477,-0.806872 +0.143187,0.108720,-0.684723,0.413839,0.073880,-0.804699 +0.143188,0.101048,-0.684955,0.413417,0.068282,-0.802458 +0.143188,0.093366,-0.685113,0.412991,0.062684,-0.800148 +0.143189,0.085677,-0.685195,0.412563,0.057087,-0.797769 +0.143190,0.077982,-0.685202,0.412133,0.051492,-0.795323 +0.143190,0.070282,-0.685135,0.411700,0.045901,-0.792810 +0.143191,0.062579,-0.684992,0.411264,0.040314,-0.790230 +0.143191,0.054874,-0.684774,0.410826,0.034732,-0.787584 +0.143192,0.047168,-0.684482,0.410386,0.029157,-0.784871 +0.143193,0.039462,-0.684114,0.409943,0.023589,-0.782094 +0.143193,0.031759,-0.683671,0.409499,0.018029,-0.779251 +0.143194,0.024060,-0.683154,0.409052,0.012479,-0.776344 +0.143194,0.016365,-0.682562,0.408603,0.006938,-0.773373 +0.143195,0.008677,-0.681895,0.408153,0.001409,-0.770339 +0.143196,0.000997,-0.681154,0.407700,-0.004107,-0.767241 +0.143196,-0.006675,-0.680339,0.407246,-0.009611,-0.764082 +0.143197,-0.014336,-0.679449,0.406790,-0.015100,-0.760861 +0.143198,-0.021985,-0.678486,0.406333,-0.020574,-0.757579 +0.143198,-0.029621,-0.677448,0.405874,-0.026032,-0.754236 +0.143199,-0.037243,-0.676337,0.405413,-0.031472,-0.750834 +0.143200,-0.044848,-0.675152,0.404952,-0.036895,-0.747372 +0.143200,-0.052436,-0.673894,0.404489,-0.042298,-0.743852 +0.143201,-0.060006,-0.672564,0.404025,-0.047681,-0.740273 +0.143201,-0.067555,-0.671160,0.403559,-0.053043,-0.736637 +0.143202,-0.075083,-0.669684,0.403093,-0.058383,-0.732945 +0.143203,-0.082589,-0.668135,0.402626,-0.063700,-0.729196 +0.143203,-0.090070,-0.666515,0.402158,-0.068993,-0.725392 +0.143204,-0.097526,-0.664823,0.401689,-0.074261,-0.721533 +0.143205,-0.104955,-0.663059,0.401220,-0.079503,-0.717620 +0.143205,-0.112355,-0.661224,0.400750,-0.084718,-0.713654 +0.143206,-0.119727,-0.659319,0.400280,-0.089906,-0.709635 +0.143207,-0.127068,-0.657343,0.399809,-0.095064,-0.705565 +0.143207,-0.134376,-0.655297,0.399337,-0.100194,-0.701443 +0.143208,-0.141651,-0.653182,0.398866,-0.105292,-0.697271 +0.143208,-0.148892,-0.650997,0.398394,-0.110360,-0.693049 +0.143209,-0.156096,-0.648743,0.397923,-0.115395,-0.688778 +0.143210,-0.163263,-0.646421,0.397451,-0.120396,-0.684459 +0.143210,-0.170392,-0.644030,0.396979,-0.125364,-0.680093 +0.143211,-0.177481,-0.641572,0.396508,-0.130296,-0.675680 +0.143212,-0.184528,-0.639047,0.396037,-0.135192,-0.671222 +0.143212,-0.191533,-0.636455,0.395566,-0.140052,-0.666718 +0.143213,-0.198495,-0.633797,0.395096,-0.144874,-0.662170 +0.143214,-0.205411,-0.631073,0.394626,-0.149657,-0.657579 +0.143214,-0.212281,-0.628283,0.394157,-0.154401,-0.652945 +0.143215,-0.219104,-0.625429,0.393688,-0.159105,-0.648270 +0.143215,-0.225878,-0.622510,0.393220,-0.163767,-0.643554 +0.143216,-0.232603,-0.619528,0.392753,-0.168388,-0.638798 +0.143217,-0.239276,-0.616482,0.392287,-0.172966,-0.634002 +0.143217,-0.245897,-0.613374,0.391822,-0.177500,-0.629169 +0.143218,-0.252465,-0.610204,0.391359,-0.181990,-0.624298 +0.143219,-0.258978,-0.606972,0.390896,-0.186434,-0.619390 +0.143219,-0.265435,-0.603679,0.390435,-0.190833,-0.614447 +0.143220,-0.271835,-0.600325,0.389975,-0.195184,-0.609469 +0.143220,-0.278177,-0.596912,0.389516,-0.199488,-0.604457 +0.143221,-0.284460,-0.593439,0.389059,-0.203744,-0.599412 +0.143222,-0.290682,-0.589908,0.388603,-0.207950,-0.594335 +0.143222,-0.296843,-0.586319,0.388150,-0.212107,-0.589227 +0.143223,-0.302941,-0.582673,0.387698,-0.216213,-0.584089 +0.143223,-0.308976,-0.578970,0.387247,-0.220267,-0.578921 +0.143224,-0.314946,-0.575211,0.386799,-0.224269,-0.573725 +0.143225,-0.320850,-0.571397,0.386353,-0.228219,-0.568502 +0.143225,-0.326687,-0.567529,0.385909,-0.232115,-0.563252 +0.143226,-0.332456,-0.563606,0.385467,-0.235957,-0.557976 +0.143226,-0.338156,-0.559630,0.385027,-0.239743,-0.552676 +0.143227,-0.343786,-0.555602,0.384590,-0.243475,-0.547352 +0.143228,-0.349345,-0.551522,0.384155,-0.247150,-0.542006 +0.143228,-0.354832,-0.547391,0.383722,-0.250767,-0.536637 +0.143229,-0.360245,-0.543209,0.383292,-0.254328,-0.531248 +0.143229,-0.365585,-0.538978,0.382865,-0.257830,-0.525840 +0.143230,-0.370850,-0.534699,0.382440,-0.261273,-0.520412 +0.143230,-0.376039,-0.530371,0.382019,-0.264657,-0.514966 +0.143231,-0.381151,-0.525996,0.381600,-0.267980,-0.509504 +0.143232,-0.386185,-0.521575,0.381184,-0.271243,-0.504025 +0.143232,-0.391141,-0.517108,0.380771,-0.274445,-0.498532 +0.143233,-0.396017,-0.512596,0.380361,-0.277584,-0.493025 +0.143233,-0.400813,-0.508040,0.379954,-0.280662,-0.487505 +0.143234,-0.405527,-0.503441,0.379551,-0.283676,-0.481972 +0.143234,-0.410159,-0.498800,0.379151,-0.286627,-0.476429 +0.143235,-0.414708,-0.494117,0.378754,-0.289514,-0.470876 +0.143235,-0.419174,-0.489393,0.378361,-0.292336,-0.465314 +0.143236,-0.423554,-0.484629,0.377971,-0.295093,-0.459744 +0.143236,-0.427850,-0.479827,0.377585,-0.297785,-0.454167 +0.143237,-0.432059,-0.474986,0.377202,-0.300410,-0.448585 +0.143237,-0.436181,-0.470108,0.376824,-0.302969,-0.442997 +0.143238,-0.440216,-0.465193,0.376449,-0.305461,-0.437405 +0.143238,-0.444162,-0.460244,0.376077,-0.307886,-0.431810 +0.143239,-0.448019,-0.455259,0.375710,-0.310242,-0.426213 +0.143239,-0.451787,-0.450241,0.375347,-0.312531,-0.420616 +0.143240,-0.455463,-0.445190,0.374988,-0.314750,-0.415018 +0.143240,-0.459049,-0.440107,0.374633,-0.316901,-0.409422 +0.143240,-0.462543,-0.434993,0.374282,-0.318982,-0.403828 +0.143241,-0.465945,-0.429849,0.373936,-0.320993,-0.398236 +0.143241,-0.469253,-0.424676,0.373594,-0.322934,-0.392649 +0.143242,-0.472468,-0.419474,0.373256,-0.324804,-0.387067 +0.143242,-0.475589,-0.414245,0.372923,-0.326604,-0.381491 +0.143243,-0.478615,-0.408990,0.372594,-0.328332,-0.375922 +0.143243,-0.481546,-0.403710,0.372270,-0.329989,-0.370361 +0.143243,-0.484381,-0.398405,0.371950,-0.331573,-0.364810 +0.143244,-0.487119,-0.393077,0.371635,-0.333086,-0.359268 +0.143244,-0.489761,-0.387726,0.371325,-0.334526,-0.353738 +0.143245,-0.492305,-0.382353,0.371019,-0.335894,-0.348220 +0.143245,-0.494752,-0.376960,0.370719,-0.337189,-0.342714 +0.143245,-0.497101,-0.371547,0.370423,-0.338410,-0.337223 +0.143246,-0.499351,-0.366116,0.370132,-0.339559,-0.331747 +0.143246,-0.501501,-0.360666,0.369846,-0.340633,-0.326287 +0.143246,-0.503553,-0.355200,0.369566,-0.341634,-0.320844 +0.143247,-0.505505,-0.349719,0.369290,-0.342561,-0.315419 +0.143247,-0.507356,-0.344222,0.369020,-0.343414,-0.310013 +0.143247,-0.509107,-0.338712,0.368755,-0.344192,-0.304627 +0.143248,-0.510758,-0.333189,0.368495,-0.344897,-0.299262 +0.143248,-0.512307,-0.327655,0.368240,-0.345526,-0.293919 +0.143248,-0.513755,-0.322109,0.367991,-0.346081,-0.288598 +0.143249,-0.515101,-0.316554,0.367747,-0.346561,-0.283302 +0.143249,-0.516346,-0.310990,0.367508,-0.346967,-0.278030 +0.143249,-0.517488,-0.305418,0.367275,-0.347297,-0.272784 +0.143249,-0.518528,-0.299839,0.367048,-0.347553,-0.267564 +0.143250,-0.519466,-0.294255,0.366826,-0.347734,-0.262372 +0.143250,-0.520301,-0.288666,0.366610,-0.347839,-0.257209 +0.143250,-0.521033,-0.283073,0.366399,-0.347870,-0.252075 +0.143250,-0.521662,-0.277477,0.366194,-0.347825,-0.246971 +0.143251,-0.522189,-0.271880,0.365995,-0.347705,-0.241899 +0.143251,-0.522612,-0.266281,0.365801,-0.347511,-0.236859 +0.143251,-0.522932,-0.260683,0.365613,-0.347241,-0.231852 +0.143251,-0.523149,-0.255087,0.365431,-0.346897,-0.226879 +0.143252,-0.523262,-0.249492,0.365255,-0.346477,-0.221941 +0.143252,-0.523272,-0.243901,0.365085,-0.345983,-0.217039 +0.143252,-0.523179,-0.238314,0.364921,-0.345414,-0.212174 +0.143252,-0.522982,-0.232732,0.364763,-0.344770,-0.207346 +0.143252,-0.522682,-0.227157,0.364610,-0.344052,-0.202556 +0.143252,-0.522279,-0.221589,0.364464,-0.343259,-0.197806 +0.143253,-0.521773,-0.216029,0.364323,-0.342393,-0.193096 +0.143253,-0.521164,-0.210479,0.364189,-0.341452,-0.188426 +0.143253,-0.520452,-0.204938,0.364061,-0.340437,-0.183799 +0.143253,-0.519637,-0.199409,0.363939,-0.339349,-0.179214 +0.143253,-0.518719,-0.193893,0.363823,-0.338187,-0.174673 +0.143253,-0.517699,-0.188389,0.363713,-0.336951,-0.170176 +0.143253,-0.516577,-0.182900,0.363609,-0.335643,-0.165724 +0.143253,-0.515352,-0.177426,0.363512,-0.334262,-0.161318 +0.143254,-0.514026,-0.171968,0.363420,-0.332808,-0.156959 +0.143254,-0.512598,-0.166528,0.363335,-0.331281,-0.152647 +0.143254,-0.511068,-0.161106,0.363256,-0.329683,-0.148383 +0.143254,-0.509437,-0.155702,0.363184,-0.328013,-0.144169 +0.143254,-0.507706,-0.150319,0.363117,-0.326271,-0.140004 +0.143254,-0.505874,-0.144958,0.363057,-0.324459,-0.135890 +0.143254,-0.503942,-0.139618,0.363003,-0.322575,-0.131827 +0.143254,-0.501910,-0.134301,0.362956,-0.320621,-0.127816 +0.143254,-0.499778,-0.129008,0.362915,-0.318596,-0.123858 +0.143254,-0.497548,-0.123740,0.362880,-0.316502,-0.119953 +0.143254,-0.495218,-0.118498,0.362851,-0.314339,-0.116102 +0.143254,-0.492791,-0.113283,0.362829,-0.312106,-0.112306 +0.143254,-0.490265,-0.108095,0.362813,-0.309805,-0.108566 +0.143254,-0.487643,-0.102936,0.362803,-0.307435,-0.104881 +0.143254,-0.484923,-0.097807,0.362800,-0.304998,-0.101254 +0.143254,-0.482107,-0.092709,0.362803,-0.302494,-0.097684 +0.143254,-0.479195,-0.087641,0.362812,-0.299922,-0.094172 +0.143254,-0.476187,-0.082607,0.362828,-0.297284,-0.090719 +0.143254,-0.473085,-0.077605,0.362850,-0.294580,-0.087325 +0.143253,-0.469888,-0.072638,0.362878,-0.291811,-0.083992 +0.143253,-0.466598,-0.067705,0.362912,-0.288977,-0.080719 +0.143253,-0.463214,-0.062809,0.362953,-0.286078,-0.077507 +0.143253,-0.459738,-0.057949,0.363000,-0.283115,-0.074357 +0.143253,-0.456171,-0.053127,0.363054,-0.280089,-0.071269 +0.143253,-0.452511,-0.048344,0.363113,-0.277000,-0.068244 +0.143253,-0.448762,-0.043600,0.363179,-0.273848,-0.065282 +0.143253,-0.444922,-0.038897,0.363252,-0.270635,-0.062385 +0.143253,-0.440993,-0.034234,0.363330,-0.267361,-0.059552 +0.143252,-0.436976,-0.029614,0.363415,-0.264026,-0.056784 +0.143252,-0.432870,-0.025036,0.363506,-0.260631,-0.054081 +0.143252,-0.428678,-0.020502,0.363603,-0.257177,-0.051444 +0.143252,-0.424400,-0.016013,0.363706,-0.253664,-0.048874 +0.143252,-0.420035,-0.011568,0.363816,-0.250093,-0.046371 +0.143251,-0.415586,-0.007170,0.363931,-0.246464,-0.043935 +0.143251,-0.411054,-0.002818,0.364053,-0.242778,-0.041567 +0.143251,-0.406438,0.001486,0.364181,-0.239037,-0.039267 +0.143251,-0.401739,0.005741,0.364315,-0.235240,-0.037035 +0.143251,-0.396959,0.009947,0.364455,-0.231388,-0.034873 +0.143250,-0.392099,0.014104,0.364601,-0.227482,-0.032780 +0.143250,-0.387159,0.018210,0.364753,-0.223522,-0.030757 +0.143250,-0.382140,0.022264,0.364911,-0.219510,-0.028804 +0.143250,-0.377043,0.026266,0.365075,-0.215446,-0.026922 +0.143249,-0.371869,0.030216,0.365245,-0.211330,-0.025110 +0.143249,-0.366619,0.034111,0.365420,-0.207164,-0.023370 +0.143249,-0.361293,0.037953,0.365602,-0.202949,-0.021701 +0.143248,-0.355894,0.041740,0.365789,-0.198684,-0.020104 +0.143248,-0.350421,0.045471,0.365982,-0.194371,-0.018579 +0.143248,-0.344876,0.049146,0.366181,-0.190010,-0.017126 +0.143248,-0.339260,0.052763,0.366386,-0.185603,-0.015746 +0.143247,-0.333574,0.056324,0.366596,-0.181150,-0.014439 +0.143247,-0.327818,0.059825,0.366812,-0.176652,-0.013205 +0.143247,-0.321994,0.063269,0.367034,-0.172110,-0.012044 +0.143246,-0.316103,0.066652,0.367261,-0.167524,-0.010957 +0.143246,-0.310146,0.069976,0.367494,-0.162895,-0.009943 +0.143246,-0.304124,0.073238,0.367732,-0.158225,-0.009004 +0.143245,-0.298038,0.076440,0.367975,-0.153514,-0.008138 +0.143245,-0.291890,0.079579,0.368224,-0.148762,-0.007347 +0.143244,-0.285679,0.082657,0.368479,-0.143972,-0.006630 +0.143244,-0.279408,0.085671,0.368738,-0.139143,-0.005987 +0.143244,-0.273077,0.088621,0.369003,-0.134276,-0.005419 +0.143243,-0.266689,0.091508,0.369273,-0.129373,-0.004926 +0.143243,-0.260242,0.094330,0.369548,-0.124434,-0.004508 +0.143242,-0.253740,0.097087,0.369829,-0.119460,-0.004165 +0.143242,-0.247183,0.099779,0.370114,-0.114452,-0.003896 +0.143242,-0.240573,0.102404,0.370405,-0.109411,-0.003703 +0.143241,-0.233909,0.104963,0.370700,-0.104337,-0.003584 +0.143241,-0.227195,0.107455,0.371000,-0.099233,-0.003541 +0.143240,-0.220430,0.109879,0.371305,-0.094098,-0.003572 +0.143240,-0.213617,0.112235,0.371615,-0.088934,-0.003679 +0.143239,-0.206756,0.114524,0.371930,-0.083741,-0.003861 +0.143239,-0.199848,0.116743,0.372249,-0.078521,-0.004117 +0.143238,-0.192895,0.118894,0.372573,-0.073273,-0.004449 +0.143238,-0.185899,0.120974,0.372902,-0.068001,-0.004855 +0.143237,-0.178859,0.122985,0.373235,-0.062703,-0.005337 +0.143237,-0.171779,0.124926,0.373572,-0.057382,-0.005893 +0.143236,-0.164658,0.126796,0.373914,-0.052038,-0.006523 +0.143236,-0.157498,0.128596,0.374261,-0.046672,-0.007229 +0.143235,-0.150301,0.130324,0.374611,-0.041285,-0.008008 +0.143235,-0.143067,0.131980,0.374966,-0.035878,-0.008862 +0.143234,-0.135799,0.133565,0.375325,-0.030452,-0.009790 +0.143234,-0.128497,0.135078,0.375687,-0.025008,-0.010792 +0.143233,-0.121162,0.136518,0.376054,-0.019547,-0.011868 +0.143233,-0.113797,0.137885,0.376425,-0.014071,-0.013017 +0.143232,-0.106401,0.139180,0.376800,-0.008579,-0.014239 +0.143232,-0.098978,0.140401,0.377178,-0.003073,-0.015535 +0.143231,-0.091527,0.141549,0.377561,0.002446,-0.016904 +0.143231,-0.084051,0.142624,0.377947,0.007978,-0.018345 +0.143230,-0.076550,0.143624,0.378336,0.013520,-0.019858 +0.143230,-0.069026,0.144551,0.378729,0.019072,-0.021444 +0.143229,-0.061481,0.145404,0.379126,0.024634,-0.023102 +0.143228,-0.053915,0.146182,0.379526,0.030203,-0.024831 +0.143228,-0.046331,0.146886,0.379929,0.035780,-0.026631 +0.143227,-0.038728,0.147516,0.380335,0.041363,-0.028502 +0.143227,-0.031110,0.148071,0.380745,0.046950,-0.030444 +0.143226,-0.023477,0.148551,0.381158,0.052542,-0.032456 +0.143226,-0.015830,0.148956,0.381574,0.058137,-0.034538 +0.143225,-0.008171,0.149286,0.381992,0.063734,-0.036689 +0.143224,-0.000502,0.149542,0.382414,0.069333,-0.038910 +0.143224,0.007177,0.149722,0.382838,0.074931,-0.041199 +0.143223,0.014864,0.149828,0.383265,0.080528,-0.043556 +0.143223,0.022558,0.149858,0.383695,0.086123,-0.045982 +0.143222,0.030256,0.149813,0.384128,0.091716,-0.048474 +0.143221,0.037959,0.149693,0.384562,0.097304,-0.051034 +0.143221,0.045663,0.149499,0.385000,0.102887,-0.053660 +0.143220,0.053369,0.149229,0.385439,0.108465,-0.056352 +0.143220,0.061075,0.148884,0.385881,0.114035,-0.059110 +0.143219,0.068779,0.148464,0.386325,0.119598,-0.061933 +0.143218,0.076479,0.147970,0.386771,0.125151,-0.064821 +0.143218,0.084176,0.147401,0.387219,0.130695,-0.067772 +0.143217,0.091866,0.146757,0.387669,0.136227,-0.070787 +0.143216,0.099549,0.146039,0.388121,0.141748,-0.073865 +0.143216,0.107223,0.145246,0.388575,0.147255,-0.077005 +0.143215,0.114888,0.144379,0.389030,0.152749,-0.080207 +0.143215,0.122541,0.143438,0.389487,0.158228,-0.083471 +0.143214,0.130181,0.142423,0.389946,0.163691,-0.086795 +0.143213,0.137807,0.141334,0.390406,0.169136,-0.090179 +0.143213,0.145417,0.140172,0.390867,0.174565,-0.093623 +0.143212,0.153011,0.138937,0.391330,0.179974,-0.097126 +0.143211,0.160586,0.137628,0.391793,0.185363,-0.100686 +0.143211,0.168142,0.136247,0.392258,0.190732,-0.104305 +0.143210,0.175677,0.134793,0.392724,0.196078,-0.107980 +0.143209,0.183189,0.133266,0.393191,0.201402,-0.111712 +0.143209,0.190678,0.131668,0.393659,0.206703,-0.115499 +0.143208,0.198142,0.129998,0.394127,0.211978,-0.119341 +0.143207,0.205579,0.128256,0.394596,0.217229,-0.123237 +0.143207,0.212989,0.126443,0.395066,0.222452,-0.127187 +0.143206,0.220369,0.124559,0.395537,0.227648,-0.131190 +0.143206,0.227720,0.122605,0.396007,0.232816,-0.135245 +0.143205,0.235038,0.120580,0.396478,0.237954,-0.139351 +0.143204,0.242324,0.118486,0.396950,0.243063,-0.143508 +0.143204,0.249575,0.116322,0.397421,0.248140,-0.147715 +0.143203,0.256791,0.114090,0.397893,0.253184,-0.151971 +0.143202,0.263969,0.111788,0.398365,0.258196,-0.156275 +0.143202,0.271110,0.109419,0.398836,0.263174,-0.160627 +0.143201,0.278211,0.106981,0.399308,0.268118,-0.165025 +0.143200,0.285271,0.104477,0.399779,0.273025,-0.169470 +0.143200,0.292289,0.101905,0.400250,0.277896,-0.173960 +0.143199,0.299264,0.099267,0.400721,0.282730,-0.178494 +0.143199,0.306194,0.096563,0.401191,0.287525,-0.183072 +0.143198,0.313079,0.093793,0.401660,0.292281,-0.187693 +0.143197,0.319916,0.090959,0.402129,0.296997,-0.192356 +0.143197,0.326706,0.088060,0.402597,0.301672,-0.197059 +0.143196,0.333445,0.085097,0.403064,0.306306,-0.201803 +0.143195,0.340134,0.082071,0.403530,0.310897,-0.206587 +0.143195,0.346772,0.078981,0.403996,0.315444,-0.211409 +0.143194,0.353356,0.075830,0.404460,0.319948,-0.216269 +0.143194,0.359885,0.072617,0.404923,0.324406,-0.221165 +0.143193,0.366360,0.069342,0.405385,0.328819,-0.226097 +0.143192,0.372777,0.066007,0.405845,0.333185,-0.231065 +0.143192,0.379137,0.062612,0.406304,0.337503,-0.236067 +0.143191,0.385439,0.059158,0.406762,0.341774,-0.241101 +0.143190,0.391680,0.055644,0.407218,0.345995,-0.246169 +0.143190,0.397859,0.052073,0.407672,0.350167,-0.251267 +0.143189,0.403977,0.048444,0.408124,0.354289,-0.256396 +0.143189,0.410031,0.044759,0.408575,0.358359,-0.261555 +0.143188,0.416021,0.041017,0.409024,0.362377,-0.266743 +0.143187,0.421945,0.037220,0.409471,0.366343,-0.271958 +0.143187,0.427803,0.033368,0.409916,0.370256,-0.277200 +0.143186,0.433593,0.029462,0.410358,0.374114,-0.282468 +0.143186,0.439314,0.025502,0.410799,0.377918,-0.287760 +0.143185,0.444965,0.021490,0.411237,0.381666,-0.293077 +0.143185,0.450546,0.017425,0.411672,0.385358,-0.298417 +0.143184,0.456055,0.013310,0.412106,0.388993,-0.303778 +0.143183,0.461491,0.009144,0.412536,0.392571,-0.309161 +0.143183,0.466854,0.004928,0.412965,0.396091,-0.314564 +0.143182,0.472142,0.000663,0.413390,0.399553,-0.319986 +0.143182,0.477354,-0.003650,0.413813,0.402955,-0.325426 +0.143181,0.482490,-0.008011,0.414232,0.406297,-0.330884 +0.143181,0.487548,-0.012418,0.414649,0.409578,-0.336358 +0.143180,0.492528,-0.016871,0.415063,0.412799,-0.341846 +0.143180,0.497428,-0.021369,0.415474,0.415957,-0.347349 +0.143179,0.502248,-0.025912,0.415882,0.419054,-0.352866 +0.143178,0.506988,-0.030498,0.416286,0.422088,-0.358394 +0.143178,0.511645,-0.035126,0.416687,0.425058,-0.363934 +0.143177,0.516220,-0.039797,0.417085,0.427964,-0.369484 +0.143177,0.520711,-0.044508,0.417479,0.430806,-0.375044 +0.143176,0.525118,-0.049260,0.417870,0.433583,-0.380611 +0.143176,0.529439,-0.054050,0.418258,0.436295,-0.386186 +0.143175,0.533675,-0.058879,0.418641,0.438941,-0.391767 +0.143175,0.537824,-0.063746,0.419021,0.441520,-0.397354 +0.143174,0.541885,-0.068649,0.419397,0.444033,-0.402945 +0.143174,0.545859,-0.073589,0.419769,0.446478,-0.408539 +0.143173,0.549743,-0.078563,0.420138,0.448855,-0.414135 +0.143173,0.553538,-0.083571,0.420502,0.451165,-0.419732 +0.143173,0.557243,-0.088612,0.420863,0.453405,-0.425330 +0.143172,0.560856,-0.093685,0.421219,0.455577,-0.430927 +0.143172,0.564378,-0.098790,0.421571,0.457679,-0.436522 +0.143171,0.567808,-0.103925,0.421919,0.459712,-0.442114 +0.143171,0.571145,-0.109089,0.422262,0.461674,-0.447703 +0.143170,0.574389,-0.114282,0.422601,0.463566,-0.453286 +0.143170,0.577539,-0.119502,0.422936,0.465388,-0.458864 +0.143169,0.580594,-0.124749,0.423266,0.467138,-0.464435 +0.143169,0.583554,-0.130022,0.423592,0.468816,-0.469999 +0.143169,0.586418,-0.135320,0.423913,0.470423,-0.475553 +0.143168,0.589186,-0.140641,0.424229,0.471958,-0.481098 +0.143168,0.591858,-0.145985,0.424541,0.473420,-0.486632 +0.143167,0.594432,-0.151351,0.424848,0.474810,-0.492154 +0.143167,0.596909,-0.156738,0.425150,0.476127,-0.497663 +0.143167,0.599287,-0.162145,0.425447,0.477371,-0.503159 +0.143166,0.601567,-0.167571,0.425739,0.478542,-0.508640 +0.143166,0.603748,-0.173015,0.426027,0.479639,-0.514105 +0.143166,0.605830,-0.178476,0.426309,0.480663,-0.519553 +0.143165,0.607813,-0.183953,0.426586,0.481612,-0.524984 +0.143165,0.609695,-0.189445,0.426858,0.482488,-0.530396 +0.143165,0.611477,-0.194951,0.427125,0.483289,-0.535788 +0.143164,0.613158,-0.200470,0.427386,0.484016,-0.541160 +0.143164,0.614738,-0.206001,0.427643,0.484668,-0.546510 +0.143164,0.616217,-0.211543,0.427894,0.485246,-0.551837 +0.143163,0.617595,-0.217096,0.428139,0.485749,-0.557141 +0.143163,0.618870,-0.222657,0.428379,0.486178,-0.562421 +0.143163,0.620044,-0.228227,0.428614,0.486531,-0.567675 +0.143163,0.621115,-0.233804,0.428843,0.486810,-0.572902 +0.143162,0.622084,-0.239386,0.429067,0.487013,-0.578103 +0.143162,0.622951,-0.244974,0.429285,0.487142,-0.583275 +0.143162,0.623715,-0.250566,0.429497,0.487195,-0.588418 +0.143162,0.624375,-0.256161,0.429704,0.487174,-0.593531 +0.143161,0.624933,-0.261758,0.429905,0.487077,-0.598613 +0.143161,0.625388,-0.267356,0.430100,0.486905,-0.603663 +0.143161,0.625739,-0.272954,0.430290,0.486658,-0.608680 +0.143161,0.625988,-0.278552,0.430474,0.486337,-0.613663 +0.143160,0.626133,-0.284147,0.430651,0.485940,-0.618612 +0.143160,0.626174,-0.289739,0.430823,0.485469,-0.623525 +0.143160,0.626113,-0.295328,0.430990,0.484923,-0.628402 +0.143160,0.625948,-0.300911,0.431150,0.484302,-0.633242 +0.143160,0.625680,-0.306488,0.431304,0.483606,-0.638043 +0.143160,0.625308,-0.312059,0.431452,0.482837,-0.642806 +0.143159,0.624834,-0.317621,0.431594,0.481992,-0.647528 +0.143159,0.624256,-0.323175,0.431730,0.481074,-0.652210 +0.143159,0.623575,-0.328718,0.431861,0.480082,-0.656850 +0.143159,0.622792,-0.334251,0.431984,0.479016,-0.661448 +0.143159,0.621905,-0.339771,0.432102,0.477877,-0.666003 +0.143159,0.620917,-0.345279,0.432214,0.476664,-0.670514 +0.143159,0.619825,-0.350772,0.432320,0.475378,-0.674979 +0.143159,0.618632,-0.356251,0.432419,0.474019,-0.679399 +0.143158,0.617337,-0.361714,0.432512,0.472587,-0.683773 +0.143158,0.615940,-0.367160,0.432599,0.471083,-0.688099 +0.143158,0.614441,-0.372588,0.432680,0.469507,-0.692378 +0.143158,0.612842,-0.377997,0.432755,0.467858,-0.696608 +0.143158,0.611141,-0.383386,0.432823,0.466139,-0.700788 +0.143158,0.609340,-0.388755,0.432885,0.464347,-0.704917 +0.143158,0.607438,-0.394101,0.432941,0.462485,-0.708996 +0.143158,0.605436,-0.399425,0.432990,0.460553,-0.713023 +0.143158,0.603335,-0.404726,0.433033,0.458550,-0.716998 +0.143158,0.601135,-0.410001,0.433070,0.456477,-0.720919 +0.143158,0.598836,-0.415251,0.433101,0.454335,-0.724786 +0.143158,0.596438,-0.420475,0.433125,0.452123,-0.728599 +0.143158,0.593943,-0.425671,0.433143,0.449843,-0.732357 +0.143158,0.591350,-0.430839,0.433155,0.447494,-0.736058 +0.143158,0.588660,-0.435977,0.433160,0.445078,-0.739703 +0.143158,0.585873,-0.441085,0.433159,0.442594,-0.743291 +0.143158,0.582990,-0.446162,0.433152,0.440043,-0.746820 +0.143158,0.580012,-0.451207,0.433138,0.437425,-0.750291 +0.143158,0.576938,-0.456219,0.433118,0.434741,-0.753703 +0.143158,0.573771,-0.461197,0.433092,0.431992,-0.757055 +0.143159,0.570509,-0.466140,0.433059,0.429178,-0.760347 +0.143159,0.567154,-0.471047,0.433020,0.426298,-0.763578 +0.143159,0.563706,-0.475918,0.432975,0.423355,-0.766747 +0.143159,0.560166,-0.480752,0.432923,0.420348,-0.769854 +0.143159,0.556535,-0.485547,0.432866,0.417278,-0.772898 +0.143159,0.552813,-0.490303,0.432801,0.414146,-0.775879 +0.143159,0.549001,-0.495019,0.432731,0.410952,-0.778796 +0.143159,0.545099,-0.499694,0.432655,0.407696,-0.781649 +0.143160,0.541109,-0.504327,0.432572,0.404379,-0.784437 +0.143160,0.537030,-0.508918,0.432483,0.401003,-0.787160 +0.143160,0.532864,-0.513466,0.432387,0.397567,-0.789817 +0.143160,0.528612,-0.517969,0.432286,0.394072,-0.792407 +0.143160,0.524274,-0.522427,0.432178,0.390518,-0.794931 +0.143160,0.519851,-0.526840,0.432065,0.386907,-0.797388 +0.143161,0.515344,-0.531206,0.431945,0.383239,-0.799777 +0.143161,0.510753,-0.535524,0.431819,0.379514,-0.802098 +0.143161,0.506080,-0.539795,0.431687,0.375734,-0.804350 +0.143161,0.501325,-0.544016,0.431549,0.371899,-0.806533 +0.143161,0.496489,-0.548188,0.431405,0.368009,-0.808647 +0.143162,0.491573,-0.552309,0.431254,0.364066,-0.810692 +0.143162,0.486578,-0.556379,0.431098,0.360070,-0.812666 +0.143162,0.481505,-0.560398,0.430936,0.356021,-0.814570 +0.143163,0.476354,-0.564363,0.430768,0.351922,-0.816404 +0.143163,0.471127,-0.568276,0.430594,0.347771,-0.818166 +0.143163,0.465825,-0.572134,0.430414,0.343570,-0.819857 +0.143163,0.460448,-0.575937,0.430229,0.339321,-0.821476 +0.143164,0.454998,-0.579686,0.430037,0.335022,-0.823023 +0.143164,0.449475,-0.583378,0.429840,0.330676,-0.824498 +0.143164,0.443880,-0.587013,0.429637,0.326283,-0.825900 +0.143165,0.438215,-0.590591,0.429429,0.321844,-0.827229 +0.143165,0.432481,-0.594111,0.429215,0.317360,-0.828486 +0.143165,0.426678,-0.597572,0.428995,0.312831,-0.829669 +0.143166,0.420807,-0.600974,0.428769,0.308258,-0.830779 +0.143166,0.414870,-0.604315,0.428538,0.303643,-0.831815 +0.143166,0.408868,-0.607597,0.428302,0.298985,-0.832777 +0.143167,0.402802,-0.610817,0.428060,0.294286,-0.833665 +0.143167,0.396672,-0.613976,0.427813,0.289547,-0.834480 +0.143167,0.390480,-0.617072,0.427560,0.284768,-0.835219 +0.143168,0.384227,-0.620106,0.427302,0.279951,-0.835885 +0.143168,0.377915,-0.623076,0.427039,0.275096,-0.836475 +0.143169,0.371544,-0.625982,0.426770,0.270204,-0.836991 +0.143169,0.365115,-0.628824,0.426496,0.265275,-0.837432 +0.143169,0.358630,-0.631601,0.426218,0.260312,-0.837799 +0.143170,0.352090,-0.634312,0.425934,0.255314,-0.838090 +0.143170,0.345495,-0.636958,0.425645,0.250283,-0.838307 +0.143171,0.338848,-0.639537,0.425351,0.245220,-0.838448 +0.143171,0.332149,-0.642050,0.425052,0.240125,-0.838515 +0.143172,0.325400,-0.644495,0.424749,0.234999,-0.838506 +0.143172,0.318601,-0.646872,0.424440,0.229844,-0.838422 +0.143172,0.311754,-0.649181,0.424127,0.224659,-0.838264 +0.143173,0.304861,-0.651422,0.423809,0.219447,-0.838030 +0.143173,0.297922,-0.653593,0.423486,0.214208,-0.837721 +0.143174,0.290938,-0.655695,0.423159,0.208943,-0.837338 +0.143174,0.283912,-0.657728,0.422828,0.203653,-0.836879 +0.143175,0.276844,-0.659690,0.422491,0.198339,-0.836346 +0.143175,0.269735,-0.661582,0.422151,0.193002,-0.835738 +0.143176,0.262587,-0.663403,0.421806,0.187643,-0.835056 +0.143176,0.255401,-0.665153,0.421457,0.182262,-0.834299 +0.143177,0.248179,-0.666831,0.421103,0.176861,-0.833468 +0.143177,0.240921,-0.668438,0.420746,0.171441,-0.832562 +0.143178,0.233629,-0.669973,0.420384,0.166003,-0.831583 +0.143178,0.226304,-0.671435,0.420018,0.160547,-0.830530 +0.143179,0.218948,-0.672825,0.419649,0.155075,-0.829403 +0.143179,0.211562,-0.674142,0.419275,0.149587,-0.828203 +0.143180,0.204146,-0.675385,0.418898,0.144085,-0.826930 +0.143181,0.196704,-0.676556,0.418517,0.138570,-0.825583 +0.143181,0.189235,-0.677653,0.418132,0.133043,-0.824164 +0.143182,0.181742,-0.678676,0.417743,0.127504,-0.822673 +0.143182,0.174225,-0.679626,0.417351,0.121954,-0.821109 +0.143183,0.166686,-0.680501,0.416956,0.116395,-0.819474 +0.143183,0.159126,-0.681302,0.416557,0.110828,-0.817766 +0.143184,0.151547,-0.682029,0.416155,0.105254,-0.815988 +0.143184,0.143950,-0.682681,0.415749,0.099673,-0.814138 +0.143185,0.136337,-0.683259,0.415341,0.094086,-0.812218 +0.143186,0.128708,-0.683762,0.414929,0.088496,-0.810227 +0.143186,0.121065,-0.684190,0.414514,0.082901,-0.808167 +0.143187,0.113410,-0.684544,0.414096,0.077305,-0.806037 +0.143187,0.105744,-0.684822,0.413675,0.071707,-0.803837 +0.143188,0.098067,-0.685025,0.413252,0.066109,-0.801569 +0.143189,0.090383,-0.685154,0.412826,0.060511,-0.799233 +0.143189,0.082691,-0.685207,0.412397,0.054915,-0.796828 +0.143190,0.074994,-0.685185,0.411965,0.049322,-0.794356 +0.143190,0.067293,-0.685088,0.411531,0.043732,-0.791817 +0.143191,0.059588,-0.684916,0.411094,0.038147,-0.789211 +0.143192,0.051883,-0.684670,0.410656,0.032568,-0.786539 +0.143192,0.044177,-0.684348,0.410214,0.026995,-0.783801 +0.143193,0.036472,-0.683951,0.409771,0.021430,-0.780998 +0.143193,0.028771,-0.683479,0.409326,0.015874,-0.778130 +0.143194,0.021073,-0.682933,0.408878,0.010327,-0.775198 +0.143195,0.013381,-0.682312,0.408429,0.004791,-0.772203 +0.143195,0.005695,-0.681617,0.407977,-0.000733,-0.769144 +0.143196,-0.001982,-0.680847,0.407524,-0.006245,-0.766023 +0.143197,-0.009650,-0.680002,0.407069,-0.011743,-0.762839 +0.143197,-0.017306,-0.679084,0.406613,-0.017226,-0.759594 +0.143198,-0.024950,-0.678092,0.406155,-0.022694,-0.756289 +0.143198,-0.032581,-0.677026,0.405695,-0.028145,-0.752923 +0.143199,-0.040196,-0.675886,0.405234,-0.033579,-0.749497 +0.143200,-0.047795,-0.674673,0.404772,-0.038994,-0.746013 +0.143200,-0.055376,-0.673387,0.404309,-0.044390,-0.742470 +0.143201,-0.062938,-0.672027,0.403844,-0.049765,-0.738869 +0.143202,-0.070480,-0.670596,0.403379,-0.055118,-0.735211 +0.143202,-0.077999,-0.669091,0.402912,-0.060449,-0.731496 +0.143203,-0.085495,-0.667515,0.402445,-0.065757,-0.727726 +0.143204,-0.092967,-0.665866,0.401976,-0.071040,-0.723901 +0.143204,-0.100412,-0.664147,0.401507,-0.076298,-0.720021 +0.143205,-0.107830,-0.662355,0.401038,-0.081530,-0.716087 +0.143206,-0.115220,-0.660493,0.400567,-0.086735,-0.712101 +0.143206,-0.122580,-0.658560,0.400097,-0.091911,-0.708062 +0.143207,-0.129908,-0.656557,0.399626,-0.097059,-0.703971 +0.143207,-0.137204,-0.654484,0.399154,-0.102176,-0.699830 +0.143208,-0.144466,-0.652342,0.398683,-0.107263,-0.695638 +0.143209,-0.151692,-0.650130,0.398211,-0.112318,-0.691397 +0.143209,-0.158882,-0.647850,0.397740,-0.117340,-0.687108 +0.143210,-0.166035,-0.645501,0.397268,-0.122328,-0.682770 +0.143211,-0.173148,-0.643084,0.396796,-0.127282,-0.678386 +0.143211,-0.180221,-0.640600,0.396325,-0.132201,-0.673955 +0.143212,-0.187252,-0.638049,0.395854,-0.137083,-0.669479 +0.143213,-0.194240,-0.635431,0.395383,-0.141928,-0.664958 +0.143213,-0.201184,-0.632747,0.394913,-0.146735,-0.660393 +0.143214,-0.208083,-0.629998,0.394444,-0.151503,-0.655786 +0.143214,-0.214935,-0.627183,0.393975,-0.156232,-0.651136 +0.143215,-0.221739,-0.624304,0.393506,-0.160920,-0.646444 +0.143216,-0.228494,-0.621360,0.393039,-0.165566,-0.641713 +0.143216,-0.235199,-0.618353,0.392572,-0.170170,-0.636941 +0.143217,-0.241852,-0.615283,0.392107,-0.174731,-0.632131 +0.143218,-0.248453,-0.612151,0.391642,-0.179248,-0.627283 +0.143218,-0.254999,-0.608956,0.391179,-0.183720,-0.622397 +0.143219,-0.261490,-0.605701,0.390717,-0.188147,-0.617476 +0.143219,-0.267926,-0.602384,0.390256,-0.192527,-0.612519 +0.143220,-0.274303,-0.599007,0.389796,-0.196860,-0.607528 +0.143221,-0.280623,-0.595571,0.389338,-0.201146,-0.602503 +0.143221,-0.286882,-0.592076,0.388882,-0.205382,-0.597446 +0.143222,-0.293081,-0.588522,0.388427,-0.209569,-0.592356 +0.143223,-0.299218,-0.584911,0.387974,-0.213706,-0.587237 +0.143223,-0.305291,-0.581243,0.387523,-0.217792,-0.582087 +0.143224,-0.311301,-0.577518,0.387073,-0.221827,-0.576908 +0.143224,-0.317245,-0.573738,0.386626,-0.225809,-0.571701 +0.143225,-0.323123,-0.569902,0.386180,-0.229738,-0.566467 +0.143225,-0.328934,-0.566013,0.385737,-0.233613,-0.561207 +0.143226,-0.334676,-0.562069,0.385296,-0.237433,-0.555922 +0.143227,-0.340349,-0.558073,0.384857,-0.241198,-0.550613 +0.143227,-0.345952,-0.554024,0.384421,-0.244908,-0.545280 +0.143228,-0.351483,-0.549924,0.383987,-0.248561,-0.539925 +0.143228,-0.356941,-0.545774,0.383555,-0.252156,-0.534548 +0.143229,-0.362327,-0.541573,0.383126,-0.255694,-0.529151 +0.143230,-0.367638,-0.537323,0.382700,-0.259173,-0.523735 +0.143230,-0.372873,-0.533025,0.382276,-0.262593,-0.518300 +0.143231,-0.378032,-0.528679,0.381856,-0.265954,-0.512848 +0.143231,-0.383114,-0.524286,0.381438,-0.269254,-0.507379 +0.143232,-0.388118,-0.519846,0.381023,-0.272493,-0.501895 +0.143232,-0.393043,-0.515362,0.380611,-0.275671,-0.496396 +0.143233,-0.397888,-0.510833,0.380203,-0.278786,-0.490884 +0.143233,-0.402652,-0.506260,0.379797,-0.281839,-0.485359 +0.143234,-0.407335,-0.501645,0.379395,-0.284829,-0.479822 +0.143234,-0.411935,-0.496987,0.378996,-0.287755,-0.474275 +0.143235,-0.416451,-0.492288,0.378601,-0.290617,-0.468719 +0.143235,-0.420884,-0.487549,0.378209,-0.293414,-0.463153 +0.143236,-0.425232,-0.482770,0.377821,-0.296146,-0.457581 +0.143236,-0.429494,-0.477952,0.377436,-0.298811,-0.452001 +0.143237,-0.433669,-0.473097,0.377055,-0.301411,-0.446416 +0.143237,-0.437758,-0.468205,0.376678,-0.303944,-0.440827 +0.143238,-0.441758,-0.463276,0.376304,-0.306410,-0.435234 +0.143238,-0.445670,-0.458313,0.375935,-0.308808,-0.429638 +0.143239,-0.449492,-0.453315,0.375569,-0.311138,-0.424041 +0.143239,-0.453224,-0.448284,0.375207,-0.313400,-0.418443 +0.143240,-0.456866,-0.443221,0.374850,-0.315593,-0.412846 +0.143240,-0.460416,-0.438126,0.374497,-0.317717,-0.407250 +0.143241,-0.463874,-0.433000,0.374147,-0.319771,-0.401657 +0.143241,-0.467240,-0.427844,0.373803,-0.321755,-0.396067 +0.143241,-0.470512,-0.422660,0.373462,-0.323668,-0.390482 +0.143242,-0.473691,-0.417448,0.373126,-0.325511,-0.384902 +0.143242,-0.476775,-0.412209,0.372794,-0.327283,-0.379329 +0.143243,-0.479764,-0.406944,0.372467,-0.328983,-0.373763 +0.143243,-0.482657,-0.401654,0.372145,-0.330612,-0.368206 +0.143244,-0.485455,-0.396340,0.371827,-0.332169,-0.362658 +0.143244,-0.488156,-0.391002,0.371514,-0.333654,-0.357120 +0.143244,-0.490760,-0.385643,0.371206,-0.335066,-0.351595 +0.143245,-0.493267,-0.380262,0.370902,-0.336405,-0.346081 +0.143245,-0.495675,-0.374861,0.370603,-0.337672,-0.340581 +0.143245,-0.497986,-0.369441,0.370310,-0.338865,-0.335096 +0.143246,-0.500197,-0.364003,0.370021,-0.339984,-0.329626 +0.143246,-0.502310,-0.358547,0.369737,-0.341030,-0.324172 +0.143247,-0.504322,-0.353075,0.369458,-0.342003,-0.318736 +0.143247,-0.506235,-0.347587,0.369185,-0.342901,-0.313318 +0.143247,-0.508048,-0.342085,0.368916,-0.343725,-0.307920 +0.143248,-0.509760,-0.336570,0.368653,-0.344475,-0.302542 +0.143248,-0.511371,-0.331043,0.368395,-0.345150,-0.297185 +0.143248,-0.512881,-0.325504,0.368143,-0.345750,-0.291851 +0.143248,-0.514290,-0.319954,0.367895,-0.346277,-0.286540 +0.143249,-0.515596,-0.314395,0.367654,-0.346728,-0.281252 +0.143249,-0.516801,-0.308828,0.367417,-0.347104,-0.275990 +0.143249,-0.517904,-0.303254,0.367186,-0.347406,-0.270755 +0.143250,-0.518904,-0.297673,0.366961,-0.347632,-0.265546 +0.143250,-0.519802,-0.292086,0.366741,-0.347784,-0.260365 +0.143250,-0.520597,-0.286495,0.366527,-0.347860,-0.255213 +0.143250,-0.521290,-0.280901,0.366319,-0.347861,-0.250091 +0.143251,-0.521879,-0.275305,0.366116,-0.347788,-0.244999 +0.143251,-0.522365,-0.269707,0.365919,-0.347639,-0.239939 +0.143251,-0.522748,-0.264109,0.365728,-0.347415,-0.234912 +0.143251,-0.523028,-0.258511,0.365542,-0.347116,-0.229918 +0.143251,-0.523205,-0.252915,0.365362,-0.346743,-0.224959 +0.143252,-0.523278,-0.247322,0.365189,-0.346294,-0.220034 +0.143252,-0.523248,-0.241732,0.365021,-0.345771,-0.215146 +0.143252,-0.523115,-0.236147,0.364859,-0.345173,-0.210295 +0.143252,-0.522878,-0.230568,0.364703,-0.344500,-0.205482 +0.143252,-0.522538,-0.224995,0.364553,-0.343753,-0.200708 +0.143253,-0.522095,-0.219430,0.364409,-0.342932,-0.195973 +0.143253,-0.521549,-0.213874,0.364271,-0.342036,-0.191278 +0.143253,-0.520900,-0.208327,0.364139,-0.341067,-0.186625 +0.143253,-0.520148,-0.202791,0.364013,-0.340023,-0.182014 +0.143253,-0.519293,-0.197267,0.363893,-0.338906,-0.177446 +0.143253,-0.518336,-0.191755,0.363780,-0.337716,-0.172922 +0.143253,-0.517276,-0.186257,0.363672,-0.336452,-0.168443 +0.143253,-0.516114,-0.180774,0.363571,-0.335115,-0.164009 +0.143253,-0.514849,-0.175306,0.363476,-0.333706,-0.159621 +0.143254,-0.513483,-0.169855,0.363387,-0.332224,-0.155280 +0.143254,-0.512016,-0.164421,0.363304,-0.330670,-0.150986 +0.143254,-0.510447,-0.159006,0.363228,-0.329043,-0.146742 +0.143254,-0.508777,-0.153611,0.363157,-0.327345,-0.142546 +0.143254,-0.507007,-0.148236,0.363093,-0.325576,-0.138401 +0.143254,-0.505136,-0.142882,0.363036,-0.323736,-0.134307 +0.143254,-0.503165,-0.137551,0.362984,-0.321825,-0.130264 +0.143254,-0.501094,-0.132244,0.362939,-0.319843,-0.126273 +0.143254,-0.498924,-0.126960,0.362900,-0.317792,-0.122336 +0.143254,-0.496655,-0.121702,0.362868,-0.315671,-0.118452 +0.143254,-0.494288,-0.116471,0.362842,-0.313480,-0.114622 +0.143254,-0.491822,-0.111266,0.362822,-0.311221,-0.110848 +0.143254,-0.489259,-0.106089,0.362808,-0.308893,-0.107129 +0.143254,-0.486598,-0.100942,0.362801,-0.306498,-0.103467 +0.143254,-0.483841,-0.095825,0.362800,-0.304034,-0.099861 +0.143254,-0.480988,-0.090738,0.362806,-0.301504,-0.096314 +0.143254,-0.478039,-0.085683,0.362817,-0.298906,-0.092825 +0.143254,-0.474994,-0.080661,0.362835,-0.296243,-0.089395 +0.143254,-0.471855,-0.075673,0.362860,-0.293513,-0.086024 +0.143253,-0.468622,-0.070719,0.362890,-0.290719,-0.082714 +0.143253,-0.465296,-0.065801,0.362927,-0.287859,-0.079465 +0.143253,-0.461876,-0.060918,0.362971,-0.284935,-0.076277 +0.143253,-0.458365,-0.056073,0.363020,-0.281948,-0.073151 +0.143253,-0.454761,-0.051266,0.363076,-0.278897,-0.070087 +0.143253,-0.451067,-0.046498,0.363138,-0.275784,-0.067087 +0.143253,-0.447282,-0.041770,0.363207,-0.272609,-0.064150 +0.143253,-0.443408,-0.037082,0.363281,-0.269372,-0.061277 +0.143252,-0.439444,-0.032436,0.363362,-0.266074,-0.058470 +0.143252,-0.435393,-0.027832,0.363450,-0.262715,-0.055727 +0.143252,-0.431254,-0.023271,0.363543,-0.259297,-0.053050 +0.143252,-0.427028,-0.018754,0.363642,-0.255820,-0.050439 +0.143252,-0.422716,-0.014282,0.363748,-0.252285,-0.047894 +0.143252,-0.418319,-0.009856,0.363860,-0.248691,-0.045417 +0.143251,-0.413837,-0.005475,0.363978,-0.245040,-0.043008 +0.143251,-0.409272,-0.001142,0.364102,-0.241333,-0.040666 +0.143251,-0.404624,0.003143,0.364232,-0.237570,-0.038392 +0.143251,-0.399894,0.007379,0.364369,-0.233751,-0.036188 +0.143251,-0.395082,0.011567,0.364511,-0.229878,-0.034052 +0.143250,-0.390191,0.015703,0.364659,-0.225951,-0.031987 +0.143250,-0.385220,0.019789,0.364813,-0.221971,-0.029991 +0.143250,-0.380171,0.023824,0.364974,-0.217939,-0.028065 +0.143249,-0.375044,0.027805,0.365140,-0.213854,-0.026210 +0.143249,-0.369840,0.031734,0.365312,-0.209719,-0.024426 +0.143249,-0.364561,0.035609,0.365490,-0.205534,-0.022714 +0.143249,-0.359207,0.039429,0.365674,-0.201299,-0.021073 +0.143248,-0.353779,0.043195,0.365864,-0.197015,-0.019503 +0.143248,-0.348278,0.046904,0.366059,-0.192684,-0.018006 +0.143248,-0.342705,0.050557,0.366260,-0.188305,-0.016582 +0.143247,-0.337062,0.054152,0.366467,-0.183880,-0.015230 +0.143247,-0.331348,0.057690,0.366679,-0.179410,-0.013951 +0.143247,-0.325566,0.061169,0.366898,-0.174894,-0.012746 +0.143246,-0.319716,0.064589,0.367121,-0.170335,-0.011613 +0.143246,-0.313799,0.067949,0.367351,-0.165732,-0.010555 +0.143246,-0.307817,0.071249,0.367585,-0.161088,-0.009570 +0.143245,-0.301770,0.074488,0.367826,-0.156401,-0.008659 +0.143245,-0.295659,0.077666,0.368071,-0.151674,-0.007822 +0.143245,-0.289487,0.080781,0.368322,-0.146908,-0.007060 +0.143244,-0.283252,0.083834,0.368579,-0.142102,-0.006372 +0.143244,-0.276958,0.086824,0.368840,-0.137258,-0.005758 +0.143243,-0.270605,0.089749,0.369107,-0.132377,-0.005219 +0.143243,-0.264193,0.092611,0.369379,-0.127460,-0.004755 +0.143243,-0.257725,0.095408,0.369657,-0.122507,-0.004366 +0.143242,-0.251202,0.098140,0.369939,-0.117520,-0.004051 +0.143242,-0.244624,0.100805,0.370226,-0.112499,-0.003812 +0.143241,-0.237993,0.103405,0.370519,-0.107445,-0.003648 +0.143241,-0.231309,0.105938,0.370816,-0.102360,-0.003558 +0.143240,-0.224575,0.108404,0.371118,-0.097244,-0.003544 +0.143240,-0.217792,0.110802,0.371425,-0.092097,-0.003605 +0.143240,-0.210959,0.113132,0.371737,-0.086922,-0.003740 +0.143239,-0.204080,0.115393,0.372053,-0.081718,-0.003951 +0.143239,-0.197155,0.117586,0.372375,-0.076487,-0.004237 +0.143238,-0.190185,0.119709,0.372700,-0.071230,-0.004598 +0.143238,-0.183172,0.121763,0.373031,-0.065948,-0.005033 +0.143237,-0.176116,0.123747,0.373365,-0.060641,-0.005544 +0.143237,-0.169020,0.125661,0.373705,-0.055310,-0.006129 +0.143236,-0.161884,0.127503,0.374048,-0.049958,-0.006788 +0.143236,-0.154709,0.129275,0.374396,-0.044583,-0.007522 +0.143235,-0.147498,0.130975,0.374748,-0.039189,-0.008331 +0.143235,-0.140250,0.132604,0.375105,-0.033774,-0.009213 +0.143234,-0.132969,0.134161,0.375465,-0.028341,-0.010170 +0.143234,-0.125654,0.135645,0.375829,-0.022891,-0.011201 +0.143233,-0.118307,0.137057,0.376198,-0.017424,-0.012305 +0.143233,-0.110930,0.138396,0.376570,-0.011941,-0.013483 +0.143232,-0.103523,0.139662,0.376946,-0.006443,-0.014733 +0.143232,-0.096089,0.140855,0.377326,-0.000932,-0.016057 +0.143231,-0.088628,0.141975,0.377710,0.004592,-0.017454 +0.143230,-0.081142,0.143021,0.378097,0.010127,-0.018924 +0.143230,-0.073633,0.143993,0.378488,0.015674,-0.020465 +0.143229,-0.066100,0.144891,0.378883,0.021230,-0.022079 +0.143229,-0.058547,0.145715,0.379281,0.026795,-0.023764 +0.143228,-0.050974,0.146464,0.379682,0.032367,-0.025521 +0.143228,-0.043382,0.147139,0.380086,0.037946,-0.027349 +0.143227,-0.035773,0.147740,0.380494,0.043531,-0.029248 +0.143226,-0.028149,0.148266,0.380905,0.049120,-0.031217 +0.143226,-0.020510,0.148717,0.381319,0.054714,-0.033256 +0.143225,-0.012859,0.149093,0.381736,0.060310,-0.035365 +0.143225,-0.005196,0.149394,0.382156,0.065907,-0.037543 +0.143224,0.002478,0.149621,0.382578,0.071505,-0.039790 +0.143224,0.010160,0.149772,0.383004,0.077103,-0.042106 +0.143223,0.017849,0.149848,0.383432,0.082700,-0.044490 +0.143222,0.025545,0.149849,0.383863,0.088294,-0.046941 +0.143222,0.033245,0.149776,0.384296,0.093885,-0.049460 +0.143221,0.040949,0.149627,0.384732,0.099472,-0.052045 +0.143221,0.048654,0.149403,0.385170,0.105053,-0.054697 +0.143220,0.056360,0.149104,0.385610,0.110628,-0.057415 +0.143219,0.064065,0.148730,0.386053,0.116195,-0.060198 +0.143219,0.071768,0.148281,0.386498,0.121754,-0.063046 +0.143218,0.079467,0.147758,0.386945,0.127304,-0.065959 +0.143217,0.087161,0.147160,0.387394,0.132843,-0.068935 +0.143217,0.094849,0.146487,0.387844,0.138371,-0.071974 +0.143216,0.102529,0.145740,0.388297,0.143887,-0.075076 +0.143216,0.110199,0.144918,0.388751,0.149389,-0.078241 +0.143215,0.117860,0.144023,0.389207,0.154877,-0.081467 +0.143214,0.125508,0.143053,0.389665,0.160350,-0.084754 +0.143214,0.133143,0.142009,0.390124,0.165806,-0.088101 +0.143213,0.140763,0.140892,0.390585,0.171245,-0.091509 +0.143212,0.148367,0.139701,0.391046,0.176666,-0.094976 +0.143212,0.155954,0.138438,0.391509,0.182068,-0.098501 +0.143211,0.163521,0.137101,0.391974,0.187449,-0.102084 +0.143210,0.171069,0.135691,0.392439,0.192809,-0.105725 +0.143210,0.178595,0.134209,0.392905,0.198147,-0.109422 +0.143209,0.186099,0.132654,0.393372,0.203462,-0.113175 +0.143209,0.193578,0.131028,0.393840,0.208753,-0.116984 +0.143208,0.201032,0.129330,0.394309,0.214019,-0.120847 +0.143207,0.208458,0.127561,0.394779,0.219259,-0.124764 +0.143207,0.215857,0.125720,0.395249,0.224472,-0.128735 +0.143206,0.223226,0.123809,0.395719,0.229657,-0.132758 +0.143205,0.230564,0.121827,0.396190,0.234814,-0.136833 +0.143205,0.237870,0.119776,0.396661,0.239941,-0.140959 +0.143204,0.245142,0.117654,0.397133,0.245037,-0.145135 +0.143203,0.252380,0.115464,0.397604,0.250101,-0.149361 +0.143203,0.259581,0.113205,0.398076,0.255134,-0.153636 +0.143202,0.266745,0.110877,0.398548,0.260133,-0.157958 +0.143201,0.273870,0.108481,0.399019,0.265097,-0.162328 +0.143201,0.280956,0.106017,0.399491,0.270027,-0.166745 +0.143200,0.288000,0.103486,0.399962,0.274920,-0.171207 +0.143200,0.295001,0.100889,0.400433,0.279777,-0.175715 +0.143199,0.301959,0.098225,0.400903,0.284595,-0.180266 +0.143198,0.308872,0.095496,0.401373,0.289376,-0.184861 +0.143198,0.315738,0.092701,0.401842,0.294116,-0.189498 +0.143197,0.322557,0.089841,0.402310,0.298817,-0.194176 +0.143196,0.329327,0.086917,0.402778,0.303476,-0.198896 +0.143196,0.336048,0.083930,0.403245,0.308093,-0.203655 +0.143195,0.342717,0.080879,0.403711,0.312667,-0.208454 +0.143195,0.349333,0.077766,0.404176,0.317197,-0.213291 +0.143194,0.355896,0.074590,0.404640,0.321683,-0.218165 +0.143193,0.362405,0.071353,0.405102,0.326124,-0.223075 +0.143193,0.368857,0.068055,0.405563,0.330519,-0.228021 +0.143192,0.375253,0.064697,0.406023,0.334867,-0.233002 +0.143191,0.381590,0.061278,0.406482,0.339167,-0.238017 +0.143191,0.387868,0.057801,0.406939,0.343418,-0.243064 +0.143190,0.394085,0.054265,0.407394,0.347621,-0.248144 +0.143190,0.400241,0.050672,0.407848,0.351773,-0.253254 +0.143189,0.406334,0.047021,0.408300,0.355875,-0.258395 +0.143188,0.412364,0.043313,0.408750,0.359925,-0.263565 +0.143188,0.418328,0.039550,0.409198,0.363923,-0.268764 +0.143187,0.424226,0.035731,0.409644,0.367868,-0.273989 +0.143187,0.430058,0.031858,0.410088,0.371760,-0.279241 +0.143186,0.435821,0.027931,0.410529,0.375597,-0.284519 +0.143185,0.441516,0.023951,0.410969,0.379379,-0.289821 +0.143185,0.447140,0.019918,0.411406,0.383106,-0.295147 +0.143184,0.452693,0.015834,0.411841,0.386776,-0.300495 +0.143184,0.458174,0.011699,0.412273,0.390389,-0.305865 +0.143183,0.463581,0.007513,0.412703,0.393945,-0.311256 +0.143183,0.468915,0.003278,0.413130,0.397442,-0.316666 +0.143182,0.474174,-0.001005,0.413554,0.400880,-0.322096 +0.143181,0.479356,-0.005337,0.413976,0.404259,-0.327543 +0.143181,0.484462,-0.009716,0.414395,0.407578,-0.333006 +0.143180,0.489490,-0.014141,0.414810,0.410835,-0.338486 +0.143180,0.494439,-0.018612,0.415223,0.414032,-0.343981 +0.143179,0.499309,-0.023127,0.415633,0.417167,-0.349489 +0.143179,0.504098,-0.027687,0.416039,0.420239,-0.355010 +0.143178,0.508805,-0.032289,0.416442,0.423248,-0.360543 +0.143178,0.513431,-0.036934,0.416842,0.426193,-0.366087 +0.143177,0.517973,-0.041620,0.417239,0.429075,-0.371641 +0.143177,0.522431,-0.046347,0.417632,0.431892,-0.377204 +0.143176,0.526805,-0.051114,0.418021,0.434644,-0.382774 +0.143176,0.531093,-0.055920,0.418407,0.437330,-0.388352 +0.143175,0.535295,-0.060764,0.418789,0.439950,-0.393935 +0.143175,0.539411,-0.065645,0.419168,0.442503,-0.399523 +0.143174,0.543438,-0.070562,0.419542,0.444990,-0.405115 +0.143174,0.547377,-0.075515,0.419913,0.447409,-0.410710 +0.143173,0.551227,-0.080502,0.420280,0.449760,-0.416307 +0.143173,0.554987,-0.085523,0.420643,0.452042,-0.421905 +0.143172,0.558656,-0.090577,0.421001,0.454256,-0.427502 +0.143172,0.562234,-0.095663,0.421356,0.456401,-0.433099 +0.143171,0.565721,-0.100779,0.421706,0.458477,-0.438693 +0.143171,0.569115,-0.105926,0.422052,0.460482,-0.444284 +0.143171,0.572416,-0.111101,0.422394,0.462417,-0.449870 +0.143170,0.575623,-0.116305,0.422732,0.464282,-0.455452 +0.143170,0.578736,-0.121536,0.423065,0.466075,-0.461027 +0.143169,0.581754,-0.126793,0.423393,0.467798,-0.466596 +0.143169,0.584677,-0.132075,0.423717,0.469448,-0.472156 +0.143168,0.587504,-0.137382,0.424036,0.471027,-0.477707 +0.143168,0.590234,-0.142713,0.424351,0.472534,-0.483247 +0.143168,0.592868,-0.148065,0.424661,0.473968,-0.488777 +0.143167,0.595405,-0.153440,0.424966,0.475330,-0.494294 +0.143167,0.597843,-0.158835,0.425266,0.476619,-0.499798 +0.143167,0.600184,-0.164249,0.425561,0.477834,-0.505288 +0.143166,0.602426,-0.169682,0.425852,0.478976,-0.510763 +0.143166,0.604568,-0.175132,0.426137,0.480045,-0.516222 +0.143165,0.606612,-0.180600,0.426417,0.481040,-0.521663 +0.143165,0.608555,-0.186083,0.426692,0.481961,-0.527087 +0.143165,0.610398,-0.191580,0.426962,0.482807,-0.532491 +0.143165,0.612141,-0.197091,0.427227,0.483580,-0.537875 +0.143164,0.613783,-0.202615,0.427487,0.484278,-0.543239 +0.143164,0.615324,-0.208151,0.427741,0.484901,-0.548580 +0.143164,0.616764,-0.213697,0.427990,0.485450,-0.553899 +0.143163,0.618102,-0.219253,0.428233,0.485924,-0.559193 +0.143163,0.619338,-0.224818,0.428471,0.486324,-0.564463 +0.143163,0.620472,-0.230390,0.428704,0.486648,-0.569707 +0.143162,0.621504,-0.235970,0.428931,0.486898,-0.574924 +0.143162,0.622433,-0.241554,0.429152,0.487072,-0.580114 +0.143162,0.623259,-0.247144,0.429368,0.487171,-0.585275 +0.143162,0.623983,-0.252737,0.429578,0.487196,-0.590406 +0.143161,0.624604,-0.258333,0.429783,0.487145,-0.595507 +0.143161,0.625122,-0.263931,0.429982,0.487019,-0.600577 +0.143161,0.625537,-0.269529,0.430175,0.486818,-0.605614 +0.143161,0.625848,-0.275127,0.430362,0.486542,-0.610618 +0.143161,0.626056,-0.280724,0.430543,0.486192,-0.615588 +0.143160,0.626161,-0.286318,0.430719,0.485766,-0.620523 +0.143160,0.626163,-0.291909,0.430889,0.485266,-0.625423 +0.143160,0.626061,-0.297495,0.431052,0.484690,-0.630285 +0.143160,0.625856,-0.303076,0.431210,0.484041,-0.635110 +0.143160,0.625548,-0.308651,0.431362,0.483316,-0.639896 +0.143159,0.625136,-0.314219,0.431508,0.482518,-0.644643 +0.143159,0.624622,-0.319778,0.431648,0.481645,-0.649350 +0.143159,0.624004,-0.325327,0.431782,0.480698,-0.654016 +0.143159,0.623283,-0.330867,0.431909,0.479677,-0.658640 +0.143159,0.622460,-0.336395,0.432031,0.478583,-0.663221 +0.143159,0.621534,-0.341910,0.432146,0.477415,-0.667759 +0.143159,0.620505,-0.347413,0.432256,0.476173,-0.672252 +0.143159,0.619374,-0.352901,0.432359,0.474859,-0.676700 +0.143158,0.618141,-0.358373,0.432456,0.473472,-0.681102 +0.143158,0.616807,-0.363830,0.432547,0.472012,-0.685458 +0.143158,0.615370,-0.369269,0.432631,0.470480,-0.689766 +0.143158,0.613832,-0.374689,0.432710,0.468875,-0.694025 +0.143158,0.612193,-0.380091,0.432782,0.467199,-0.698236 +0.143158,0.610454,-0.385472,0.432848,0.465452,-0.702396 +0.143158,0.608613,-0.390832,0.432907,0.463633,-0.706507 +0.143158,0.606673,-0.396170,0.432961,0.461744,-0.710565 +0.143158,0.604633,-0.401485,0.433008,0.459784,-0.714572 +0.143158,0.602493,-0.406776,0.433049,0.457754,-0.718526 +0.143158,0.600254,-0.412042,0.433083,0.455654,-0.722426 +0.143158,0.597917,-0.417282,0.433111,0.453485,-0.726273 +0.143158,0.595481,-0.422495,0.433133,0.451246,-0.730064 +0.143158,0.592948,-0.427680,0.433148,0.448940,-0.733800 +0.143158,0.590317,-0.432837,0.433158,0.446565,-0.737480 +0.143158,0.587589,-0.437963,0.433160,0.444122,-0.741102 +0.143158,0.584765,-0.443059,0.433157,0.441612,-0.744667 +0.143158,0.581845,-0.448124,0.433147,0.439035,-0.748174 +0.143158,0.578830,-0.453156,0.433131,0.436391,-0.751623 +0.143158,0.575720,-0.458155,0.433108,0.433682,-0.755011 +0.143158,0.572516,-0.463119,0.433080,0.430907,-0.758340 +0.143159,0.569218,-0.468049,0.433045,0.428068,-0.761608 +0.143159,0.565827,-0.472942,0.433003,0.425164,-0.764815 +0.143159,0.562343,-0.477799,0.432956,0.422196,-0.767960 +0.143159,0.558768,-0.482617,0.432902,0.419164,-0.771043 +0.143159,0.555101,-0.487397,0.432841,0.416070,-0.774062 +0.143159,0.551344,-0.492138,0.432775,0.412913,-0.777019 +0.143159,0.547497,-0.496838,0.432702,0.409695,-0.779911 +0.143159,0.543561,-0.501497,0.432623,0.406416,-0.782739 +0.143160,0.539536,-0.506114,0.432538,0.403076,-0.785502 +0.143160,0.535424,-0.510688,0.432446,0.399676,-0.788199 +0.143160,0.531224,-0.515219,0.432349,0.396217,-0.790830 +0.143160,0.526939,-0.519705,0.432245,0.392699,-0.793395 +0.143160,0.522567,-0.524145,0.432135,0.389123,-0.795893 +0.143160,0.518112,-0.528540,0.432019,0.385490,-0.798323 +0.143161,0.513572,-0.532887,0.431897,0.381800,-0.800686 +0.143161,0.508949,-0.537187,0.431768,0.378054,-0.802980 +0.143161,0.504244,-0.541439,0.431634,0.374252,-0.805206 +0.143161,0.499457,-0.545641,0.431493,0.370396,-0.807362 +0.143162,0.494590,-0.549793,0.431347,0.366485,-0.809449 +0.143162,0.489644,-0.553895,0.431194,0.362521,-0.811467 +0.143162,0.484618,-0.557945,0.431036,0.358505,-0.813414 +0.143162,0.479515,-0.561943,0.430872,0.354436,-0.815290 +0.143163,0.474335,-0.565888,0.430701,0.350317,-0.817096 +0.143163,0.469078,-0.569780,0.430525,0.346146,-0.818831 +0.143163,0.463747,-0.573617,0.430343,0.341927,-0.820493 +0.143163,0.458341,-0.577399,0.430155,0.337658,-0.822085 +0.143164,0.452863,-0.581125,0.429962,0.333341,-0.823604 +0.143164,0.447312,-0.584795,0.429762,0.328977,-0.825050 +0.143164,0.441690,-0.588408,0.429557,0.324566,-0.826425 +0.143165,0.435998,-0.591964,0.429346,0.320109,-0.827726 +0.143165,0.430237,-0.595461,0.429130,0.315607,-0.828954 +0.143165,0.424407,-0.598899,0.428908,0.311061,-0.830109 +0.143166,0.418511,-0.602278,0.428680,0.306472,-0.831190 +0.143166,0.412548,-0.605596,0.428447,0.301840,-0.832197 +0.143166,0.406521,-0.608854,0.428209,0.297166,-0.833131 +0.143167,0.400430,-0.612050,0.427965,0.292452,-0.833990 +0.143167,0.394276,-0.615185,0.427715,0.287697,-0.834775 +0.143168,0.388061,-0.618257,0.427460,0.282903,-0.835486 +0.143168,0.381785,-0.621266,0.427200,0.278071,-0.836123 +0.143168,0.375449,-0.624211,0.426935,0.273201,-0.836684 +0.143169,0.369055,-0.627093,0.426665,0.268295,-0.837171 +0.143169,0.362605,-0.629909,0.426389,0.263353,-0.837584 +0.143170,0.356098,-0.632661,0.426108,0.258376,-0.837921 +0.143170,0.349536,-0.635347,0.425822,0.253366,-0.838183 +0.143170,0.342921,-0.637967,0.425531,0.248322,-0.838371 +0.143171,0.336254,-0.640520,0.425236,0.243246,-0.838483 +0.143171,0.329535,-0.643007,0.424935,0.238139,-0.838520 +0.143172,0.322767,-0.645425,0.424629,0.233002,-0.838482 +0.143172,0.315949,-0.647776,0.424319,0.227835,-0.838370 +0.143173,0.309084,-0.650059,0.424004,0.222640,-0.838182 +0.143173,0.302173,-0.652273,0.423684,0.217417,-0.837919 +0.143174,0.295217,-0.654417,0.423360,0.212168,-0.837581 +0.143174,0.288216,-0.656493,0.423031,0.206893,-0.837168 +0.143175,0.281174,-0.658498,0.422698,0.201594,-0.836681 +0.143175,0.274089,-0.660433,0.422360,0.196270,-0.836119 +0.143176,0.266965,-0.662297,0.422017,0.190924,-0.835482 +0.143176,0.259803,-0.664091,0.421671,0.185557,-0.834771 +0.143177,0.252602,-0.665813,0.421320,0.180168,-0.833985 +0.143177,0.245366,-0.667464,0.420965,0.174760,-0.833125 +0.143178,0.238095,-0.669042,0.420606,0.169332,-0.832191 +0.143178,0.230790,-0.670549,0.420243,0.163887,-0.831183 +0.143179,0.223453,-0.671983,0.419875,0.158425,-0.830101 +0.143179,0.216085,-0.673345,0.419504,0.152947,-0.828946 +0.143180,0.208687,-0.674633,0.419129,0.147453,-0.827718 +0.143180,0.201261,-0.675848,0.418750,0.141946,-0.826416 +0.143181,0.193808,-0.676991,0.418368,0.136426,-0.825041 +0.143181,0.186330,-0.678059,0.417982,0.130894,-0.823594 +0.143182,0.178827,-0.679054,0.417592,0.125351,-0.822075 +0.143182,0.171302,-0.679974,0.417198,0.119798,-0.820483 +0.143183,0.163754,-0.680821,0.416802,0.114236,-0.818819 +0.143184,0.156187,-0.681593,0.416401,0.108665,-0.817085 +0.143184,0.148601,-0.682291,0.415998,0.103088,-0.815278 +0.143185,0.140997,-0.682914,0.415591,0.097505,-0.813401 +0.143185,0.133378,-0.683463,0.415181,0.091917,-0.811454 +0.143186,0.125743,-0.683937,0.414768,0.086325,-0.809436 +0.143186,0.118095,-0.684336,0.414352,0.080730,-0.807348 +0.143187,0.110436,-0.684660,0.413933,0.075132,-0.805191 +0.143188,0.102765,-0.684910,0.413511,0.069534,-0.802965 +0.143188,0.095086,-0.685084,0.413087,0.063936,-0.800670 +0.143189,0.087398,-0.685183,0.412659,0.058339,-0.798307 +0.143189,0.079704,-0.685207,0.412229,0.052744,-0.795877 +0.143190,0.072005,-0.685156,0.411797,0.047152,-0.793378 +0.143191,0.064303,-0.685030,0.411362,0.041564,-0.790813 +0.143191,0.056598,-0.684830,0.410924,0.035981,-0.788182 +0.143192,0.048892,-0.684554,0.410485,0.030404,-0.785484 +0.143192,0.041186,-0.684203,0.410043,0.024834,-0.782721 +0.143193,0.033483,-0.683777,0.409598,0.019272,-0.779893 +0.143194,0.025782,-0.683276,0.409152,0.013720,-0.777000 +0.143194,0.018087,-0.682701,0.408704,0.008177,-0.774043 +0.143195,0.010397,-0.682051,0.408254,0.002645,-0.771023 +0.143196,0.002714,-0.681326,0.407802,-0.002874,-0.767940 +0.143196,-0.004959,-0.680528,0.407348,-0.008381,-0.764794 +0.143197,-0.012623,-0.679655,0.406892,-0.013873,-0.761587 +0.143197,-0.020275,-0.678708,0.406435,-0.019351,-0.758319 +0.143198,-0.027914,-0.677687,0.405977,-0.024812,-0.754990 +0.143199,-0.035539,-0.676592,0.405517,-0.030256,-0.751600 +0.143199,-0.043148,-0.675424,0.405055,-0.035683,-0.748152 +0.143200,-0.050740,-0.674182,0.404592,-0.041091,-0.744644 +0.143201,-0.058314,-0.672868,0.404129,-0.046478,-0.741079 +0.143201,-0.065868,-0.671480,0.403664,-0.051845,-0.737456 +0.143202,-0.073401,-0.670020,0.403198,-0.057190,-0.733776 +0.143203,-0.080911,-0.668488,0.402731,-0.062512,-0.730040 +0.143203,-0.088398,-0.666884,0.402263,-0.067810,-0.726248 +0.143204,-0.095860,-0.665207,0.401794,-0.073084,-0.722401 +0.143204,-0.103295,-0.663460,0.401325,-0.078332,-0.718500 +0.143205,-0.110702,-0.661641,0.400855,-0.083553,-0.714546 +0.143206,-0.118080,-0.659751,0.400385,-0.088747,-0.710539 +0.143206,-0.125428,-0.657791,0.399914,-0.093913,-0.706480 +0.143207,-0.132744,-0.655761,0.399443,-0.099049,-0.702370 +0.143208,-0.140026,-0.653661,0.398971,-0.104154,-0.698209 +0.143208,-0.147275,-0.651492,0.398500,-0.109229,-0.693998 +0.143209,-0.154487,-0.649253,0.398028,-0.114271,-0.689738 +0.143210,-0.161663,-0.646946,0.397557,-0.119280,-0.685430 +0.143210,-0.168800,-0.644571,0.397085,-0.124255,-0.681074 +0.143211,-0.175898,-0.642128,0.396613,-0.129195,-0.676672 +0.143212,-0.182955,-0.639618,0.396142,-0.134100,-0.672223 +0.143212,-0.189969,-0.637041,0.395671,-0.138968,-0.667730 +0.143213,-0.196941,-0.634397,0.395201,-0.143798,-0.663192 +0.143213,-0.203867,-0.631688,0.394731,-0.148590,-0.658610 +0.143214,-0.210748,-0.628913,0.394262,-0.153343,-0.653986 +0.143215,-0.217582,-0.626073,0.393793,-0.158056,-0.649320 +0.143215,-0.224367,-0.623169,0.393325,-0.162728,-0.644613 +0.143216,-0.231102,-0.620201,0.392858,-0.167358,-0.639865 +0.143217,-0.237787,-0.617169,0.392392,-0.171945,-0.635079 +0.143217,-0.244420,-0.614075,0.391926,-0.176489,-0.630254 +0.143218,-0.251000,-0.610918,0.391462,-0.180989,-0.625391 +0.143218,-0.257525,-0.607700,0.390999,-0.185444,-0.620491 +0.143219,-0.263995,-0.604421,0.390538,-0.189852,-0.615556 +0.143220,-0.270408,-0.601081,0.390077,-0.194215,-0.610586 +0.143220,-0.276763,-0.597681,0.389618,-0.198529,-0.605581 +0.143221,-0.283059,-0.594221,0.389161,-0.202796,-0.600544 +0.143222,-0.289295,-0.590703,0.388705,-0.207013,-0.595474 +0.143222,-0.295470,-0.587127,0.388251,-0.211181,-0.590373 +0.143223,-0.301582,-0.583494,0.387799,-0.215298,-0.585241 +0.143223,-0.307631,-0.579804,0.387348,-0.219364,-0.580080 +0.143224,-0.313616,-0.576057,0.386899,-0.223378,-0.574890 +0.143225,-0.319535,-0.572256,0.386453,-0.227340,-0.569673 +0.143225,-0.325387,-0.568399,0.386008,-0.231248,-0.564429 +0.143226,-0.331171,-0.564488,0.385566,-0.235102,-0.559159 +0.143226,-0.336886,-0.560524,0.385125,-0.238901,-0.553864 +0.143227,-0.342532,-0.556508,0.384687,-0.242645,-0.548546 +0.143227,-0.348107,-0.552439,0.384252,-0.246332,-0.543204 +0.143228,-0.353610,-0.548319,0.383819,-0.249963,-0.537840 +0.143229,-0.359040,-0.544149,0.383388,-0.253536,-0.532456 +0.143229,-0.364397,-0.539929,0.382960,-0.257051,-0.527051 +0.143230,-0.369679,-0.535661,0.382535,-0.260508,-0.521628 +0.143230,-0.374885,-0.531344,0.382113,-0.263905,-0.516186 +0.143231,-0.380014,-0.526979,0.381693,-0.267242,-0.510727 +0.143231,-0.385066,-0.522568,0.381277,-0.270518,-0.505252 +0.143232,-0.390039,-0.518111,0.380863,-0.273734,-0.499762 +0.143232,-0.394933,-0.513609,0.380452,-0.276887,-0.494258 +0.143233,-0.399747,-0.509063,0.380045,-0.279979,-0.488741 +0.143234,-0.404479,-0.504474,0.379641,-0.283007,-0.483211 +0.143234,-0.409130,-0.499842,0.379240,-0.285972,-0.477671 +0.143235,-0.413698,-0.495168,0.378842,-0.288873,-0.472120 +0.143235,-0.418182,-0.490453,0.378448,-0.291710,-0.466560 +0.143236,-0.422582,-0.485698,0.378058,-0.294482,-0.460991 +0.143236,-0.426896,-0.480905,0.377671,-0.297188,-0.455416 +0.143237,-0.431125,-0.476072,0.377288,-0.299828,-0.449834 +0.143237,-0.435266,-0.471203,0.376908,-0.302402,-0.444247 +0.143238,-0.439321,-0.466296,0.376532,-0.304909,-0.438656 +0.143238,-0.443287,-0.461354,0.376160,-0.307349,-0.433062 +0.143239,-0.447164,-0.456377,0.375792,-0.309721,-0.427466 +0.143239,-0.450951,-0.451367,0.375428,-0.312024,-0.421868 +0.143239,-0.454649,-0.446323,0.375068,-0.314260,-0.416271 +0.143240,-0.458255,-0.441247,0.374712,-0.316426,-0.410674 +0.143240,-0.461769,-0.436140,0.374361,-0.318522,-0.405079 +0.143241,-0.465192,-0.431002,0.374013,-0.320549,-0.399487 +0.143241,-0.468521,-0.425836,0.373670,-0.322506,-0.393899 +0.143242,-0.471757,-0.420640,0.373331,-0.324392,-0.388316 +0.143242,-0.474899,-0.415418,0.372997,-0.326207,-0.382738 +0.143243,-0.477946,-0.410168,0.372667,-0.327951,-0.377168 +0.143243,-0.480898,-0.404894,0.372342,-0.329624,-0.371605 +0.143243,-0.483755,-0.399594,0.372021,-0.331225,-0.366051 +0.143244,-0.486515,-0.394271,0.371705,-0.332754,-0.360507 +0.143244,-0.489178,-0.388925,0.371394,-0.334210,-0.354974 +0.143245,-0.491745,-0.383557,0.371087,-0.335594,-0.349453 +0.143245,-0.494213,-0.378168,0.370785,-0.336905,-0.343945 +0.143245,-0.496584,-0.372760,0.370489,-0.338143,-0.338451 +0.143246,-0.498856,-0.367332,0.370197,-0.339308,-0.332971 +0.143246,-0.501029,-0.361887,0.369910,-0.340399,-0.327507 +0.143246,-0.503103,-0.356425,0.369628,-0.341417,-0.322060 +0.143247,-0.505077,-0.350947,0.369351,-0.342360,-0.316631 +0.143247,-0.506951,-0.345453,0.369080,-0.343229,-0.311221 +0.143247,-0.508724,-0.339946,0.368814,-0.344025,-0.305830 +0.143248,-0.510397,-0.334426,0.368552,-0.344745,-0.300460 +0.143248,-0.511969,-0.328894,0.368297,-0.345392,-0.295112 +0.143248,-0.513440,-0.323351,0.368046,-0.345964,-0.289787 +0.143249,-0.514809,-0.317798,0.367801,-0.346461,-0.284485 +0.143249,-0.516076,-0.312236,0.367561,-0.346883,-0.279207 +0.143249,-0.517241,-0.306665,0.367327,-0.347230,-0.273955 +0.143249,-0.518304,-0.301088,0.367098,-0.347502,-0.268730 +0.143250,-0.519265,-0.295505,0.366875,-0.347700,-0.263532 +0.143250,-0.520123,-0.289917,0.366658,-0.347822,-0.258362 +0.143250,-0.520878,-0.284325,0.366446,-0.347869,-0.253221 +0.143250,-0.521531,-0.278729,0.366239,-0.347842,-0.248111 +0.143251,-0.522080,-0.273132,0.366039,-0.347739,-0.243031 +0.143251,-0.522526,-0.267534,0.365844,-0.347561,-0.237984 +0.143251,-0.522869,-0.261936,0.365655,-0.347308,-0.232970 +0.143251,-0.523109,-0.256339,0.365472,-0.346980,-0.227989 +0.143252,-0.523246,-0.250744,0.365294,-0.346577,-0.223043 +0.143252,-0.523279,-0.245152,0.365123,-0.346100,-0.218133 +0.143252,-0.523209,-0.239564,0.364957,-0.345548,-0.213259 +0.143252,-0.523035,-0.233981,0.364797,-0.344921,-0.208423 +0.143252,-0.522759,-0.228404,0.364644,-0.344219,-0.203624 +0.143252,-0.522379,-0.222834,0.364496,-0.343443,-0.198865 +0.143253,-0.521895,-0.217272,0.364354,-0.342593,-0.194146 +0.143253,-0.521309,-0.211720,0.364219,-0.341669,-0.189467 +0.143253,-0.520620,-0.206177,0.364089,-0.340670,-0.184831 +0.143253,-0.519828,-0.200645,0.363966,-0.339598,-0.180236 +0.143253,-0.518934,-0.195126,0.363848,-0.338453,-0.175685 +0.143253,-0.517936,-0.189619,0.363737,-0.337234,-0.171178 +0.143253,-0.516837,-0.184127,0.363632,-0.335942,-0.166716 +0.143253,-0.515635,-0.178650,0.363533,-0.334577,-0.162300 +0.143253,-0.514331,-0.173188,0.363440,-0.333139,-0.157930 +0.143254,-0.512926,-0.167744,0.363354,-0.331629,-0.153608 +0.143254,-0.511419,-0.162317,0.363274,-0.330047,-0.149333 +0.143254,-0.509811,-0.156910,0.363200,-0.328393,-0.145108 +0.143254,-0.508102,-0.151522,0.363132,-0.326667,-0.140932 +0.143254,-0.506293,-0.146155,0.363070,-0.324870,-0.136806 +0.143254,-0.504383,-0.140810,0.363015,-0.323002,-0.132731 +0.143254,-0.502373,-0.135488,0.362966,-0.321064,-0.128709 +0.143254,-0.500264,-0.130190,0.362923,-0.319055,-0.124739 +0.143254,-0.498055,-0.124916,0.362887,-0.316977,-0.120822 +0.143254,-0.495748,-0.119669,0.362857,-0.314829,-0.116959 +0.143254,-0.493342,-0.114447,0.362833,-0.312612,-0.113151 +0.143254,-0.490839,-0.109253,0.362816,-0.310326,-0.109398 +0.143254,-0.488238,-0.104088,0.362805,-0.307972,-0.105701 +0.143254,-0.485540,-0.098952,0.362800,-0.305549,-0.102061 +0.143254,-0.482745,-0.093847,0.362801,-0.303060,-0.098478 +0.143254,-0.479854,-0.088772,0.362809,-0.300503,-0.094953 +0.143254,-0.476868,-0.083730,0.362824,-0.297880,-0.091487 +0.143254,-0.473787,-0.078721,0.362844,-0.295191,-0.088080 +0.143253,-0.470612,-0.073746,0.362871,-0.292436,-0.084732 +0.143253,-0.467342,-0.068806,0.362904,-0.289616,-0.081446 +0.143253,-0.463980,-0.063901,0.362943,-0.286732,-0.078220 +0.143253,-0.460524,-0.059033,0.362989,-0.283784,-0.075056 +0.143253,-0.456977,-0.054203,0.363041,-0.280771,-0.071954 +0.143253,-0.453338,-0.049411,0.363100,-0.277696,-0.068915 +0.143253,-0.449609,-0.044658,0.363164,-0.274559,-0.065939 +0.143253,-0.445789,-0.039946,0.363235,-0.271360,-0.063027 +0.143253,-0.441880,-0.035274,0.363312,-0.268099,-0.060180 +0.143252,-0.437882,-0.030644,0.363395,-0.264777,-0.057397 +0.143252,-0.433797,-0.026057,0.363485,-0.261396,-0.054680 +0.143252,-0.429624,-0.021513,0.363581,-0.257955,-0.052028 +0.143252,-0.425364,-0.017013,0.363683,-0.254455,-0.049443 +0.143252,-0.421019,-0.012559,0.363791,-0.250897,-0.046925 +0.143252,-0.416589,-0.008150,0.363905,-0.247281,-0.044474 +0.143251,-0.412075,-0.003788,0.364025,-0.243608,-0.042091 +0.143251,-0.407478,0.000527,0.364152,-0.239879,-0.039775 +0.143251,-0.402798,0.004793,0.364284,-0.236094,-0.037529 +0.143251,-0.398036,0.009010,0.364423,-0.232254,-0.035351 +0.143250,-0.393193,0.013178,0.364568,-0.228360,-0.033242 +0.143250,-0.388271,0.017295,0.364718,-0.224413,-0.031204 +0.143250,-0.383270,0.021361,0.364875,-0.220412,-0.029235 +0.143250,-0.378190,0.025375,0.365038,-0.216360,-0.027337 +0.143249,-0.373033,0.029337,0.365206,-0.212255,-0.025509 +0.143249,-0.367800,0.033244,0.365380,-0.208101,-0.023753 +0.143249,-0.362492,0.037098,0.365561,-0.203896,-0.022068 +0.143249,-0.357109,0.040897,0.365747,-0.199642,-0.020455 +0.143248,-0.351652,0.044641,0.365939,-0.195340,-0.018914 +0.143248,-0.346123,0.048328,0.366136,-0.190990,-0.017445 +0.143248,-0.340523,0.051959,0.366340,-0.186593,-0.016049 +0.143247,-0.334852,0.055532,0.366549,-0.182151,-0.014725 +0.143247,-0.329112,0.059047,0.366763,-0.177662,-0.013475 +0.143247,-0.323303,0.062503,0.366984,-0.173130,-0.012297 +0.143246,-0.317427,0.065900,0.367210,-0.168554,-0.011194 +0.143246,-0.311485,0.069237,0.367441,-0.163935,-0.010164 +0.143246,-0.305477,0.072514,0.367678,-0.159274,-0.009207 +0.143245,-0.299406,0.075729,0.367920,-0.154571,-0.008325 +0.143245,-0.293271,0.078882,0.368168,-0.149829,-0.007517 +0.143244,-0.287074,0.081973,0.368421,-0.145047,-0.006784 +0.143244,-0.280816,0.085002,0.368680,-0.140226,-0.006125 +0.143244,-0.274499,0.087967,0.368943,-0.135368,-0.005540 +0.143243,-0.268123,0.090868,0.369212,-0.130473,-0.005030 +0.143243,-0.261690,0.093704,0.369486,-0.125542,-0.004595 +0.143242,-0.255200,0.096476,0.369766,-0.120576,-0.004235 +0.143242,-0.248655,0.099182,0.370050,-0.115575,-0.003950 +0.143242,-0.242056,0.101822,0.370339,-0.110542,-0.003739 +0.143241,-0.235405,0.104396,0.370633,-0.105475,-0.003604 +0.143241,-0.228702,0.106903,0.370933,-0.100378,-0.003544 +0.143240,-0.221948,0.109342,0.371237,-0.095250,-0.003559 +0.143240,-0.215146,0.111714,0.371546,-0.090092,-0.003648 +0.143239,-0.208295,0.114018,0.371859,-0.084905,-0.003813 +0.143239,-0.201398,0.116252,0.372177,-0.079691,-0.004053 +0.143238,-0.194455,0.118418,0.372500,-0.074450,-0.004368 +0.143238,-0.187468,0.120515,0.372828,-0.069183,-0.004758 +0.143238,-0.180438,0.122542,0.373160,-0.063891,-0.005222 +0.143237,-0.173367,0.124498,0.373497,-0.058575,-0.005762 +0.143237,-0.166255,0.126384,0.373837,-0.053236,-0.006376 +0.143236,-0.159104,0.128199,0.374183,-0.047874,-0.007064 +0.143236,-0.151915,0.129943,0.374532,-0.042492,-0.007827 +0.143235,-0.144689,0.131616,0.374886,-0.037090,-0.008665 +0.143235,-0.137428,0.133217,0.375244,-0.031668,-0.009576 +0.143234,-0.130134,0.134745,0.375606,-0.026228,-0.010561 +0.143233,-0.122806,0.136202,0.375972,-0.020771,-0.011620 +0.143233,-0.115447,0.137585,0.376342,-0.015297,-0.012753 +0.143232,-0.108059,0.138896,0.376716,-0.009809,-0.013959 +0.143232,-0.100641,0.140134,0.377093,-0.004306,-0.015239 +0.143231,-0.093197,0.141299,0.377475,0.001210,-0.016591 +0.143231,-0.085726,0.142390,0.377860,0.006739,-0.018016 +0.143230,-0.078230,0.143407,0.378249,0.012279,-0.019513 +0.143230,-0.070712,0.144350,0.378641,0.017829,-0.021083 +0.143229,-0.063171,0.145220,0.379037,0.023389,-0.022725 +0.143229,-0.055610,0.146015,0.379436,0.028956,-0.024438 +0.143228,-0.048029,0.146735,0.379838,0.034532,-0.026222 +0.143227,-0.040431,0.147381,0.380244,0.040113,-0.028077 +0.143227,-0.032816,0.147953,0.380653,0.045700,-0.030004 +0.143226,-0.025186,0.148450,0.381065,0.051291,-0.032000 +0.143226,-0.017542,0.148872,0.381480,0.056885,-0.034066 +0.143225,-0.009886,0.149219,0.381898,0.062482,-0.036202 +0.143224,-0.002219,0.149491,0.382319,0.068080,-0.038407 +0.143224,0.005458,0.149688,0.382743,0.073678,-0.040681 +0.143223,0.013144,0.149811,0.383170,0.079276,-0.043023 +0.143223,0.020836,0.149858,0.383599,0.084872,-0.045433 +0.143222,0.028533,0.149830,0.384031,0.090465,-0.047911 +0.143221,0.036235,0.149727,0.384465,0.096054,-0.050456 +0.143221,0.043939,0.149549,0.384902,0.101639,-0.053067 +0.143220,0.051645,0.149296,0.385341,0.107217,-0.055744 +0.143220,0.059351,0.148968,0.385782,0.112789,-0.058488 +0.143219,0.067055,0.148565,0.386226,0.118354,-0.061296 +0.143218,0.074757,0.148087,0.386671,0.123909,-0.064169 +0.143218,0.082454,0.147535,0.387119,0.129455,-0.067106 +0.143217,0.090146,0.146907,0.387568,0.134990,-0.070107 +0.143217,0.097831,0.146206,0.388020,0.140514,-0.073171 +0.143216,0.105507,0.145430,0.388473,0.146024,-0.076297 +0.143215,0.113174,0.144579,0.388928,0.151521,-0.079486 +0.143215,0.120829,0.143655,0.389385,0.157003,-0.082735 +0.143214,0.128473,0.142657,0.389843,0.162470,-0.086046 +0.143213,0.136102,0.141584,0.390303,0.167919,-0.089417 +0.143213,0.143716,0.140439,0.390764,0.173352,-0.092847 +0.143212,0.151314,0.139220,0.391226,0.178765,-0.096337 +0.143211,0.158893,0.137927,0.391689,0.184159,-0.099885 +0.143211,0.166453,0.136562,0.392154,0.189532,-0.103490 +0.143210,0.173993,0.135124,0.392620,0.194884,-0.107153 +0.143210,0.181510,0.133614,0.393086,0.200213,-0.110872 +0.143209,0.189005,0.132032,0.393554,0.205519,-0.114647 +0.143208,0.196474,0.130378,0.394022,0.210800,-0.118477 +0.143208,0.203917,0.128652,0.394491,0.216056,-0.122361 +0.143207,0.211333,0.126855,0.394961,0.221286,-0.126299 +0.143206,0.218721,0.124987,0.395431,0.226488,-0.130290 +0.143206,0.226078,0.123048,0.395902,0.231662,-0.134333 +0.143205,0.233403,0.121039,0.396373,0.236807,-0.138428 +0.143204,0.240696,0.118961,0.396844,0.241922,-0.142574 +0.143204,0.247955,0.116812,0.397316,0.247006,-0.146769 +0.143203,0.255179,0.114595,0.397788,0.252058,-0.151014 +0.143203,0.262366,0.112309,0.398259,0.257078,-0.155308 +0.143202,0.269515,0.109955,0.398731,0.262064,-0.159649 +0.143201,0.276625,0.107533,0.399202,0.267015,-0.164037 +0.143201,0.283695,0.105043,0.399674,0.271930,-0.168472 +0.143200,0.290722,0.102486,0.400145,0.276809,-0.172952 +0.143199,0.297707,0.099863,0.400615,0.281651,-0.177476 +0.143199,0.304648,0.097174,0.401085,0.286455,-0.182044 +0.143198,0.311542,0.094419,0.401555,0.291220,-0.186655 +0.143197,0.318391,0.091599,0.402024,0.295945,-0.191309 +0.143197,0.325191,0.088714,0.402492,0.300630,-0.196003 +0.143196,0.331942,0.085765,0.402959,0.305273,-0.200738 +0.143196,0.338642,0.082753,0.403426,0.309873,-0.205513 +0.143195,0.345291,0.079678,0.403891,0.314431,-0.210327 +0.143194,0.351887,0.076540,0.404356,0.318944,-0.215178 +0.143194,0.358429,0.073341,0.404819,0.323412,-0.220066 +0.143193,0.364916,0.070080,0.405281,0.327835,-0.224991 +0.143192,0.371346,0.066759,0.405742,0.332212,-0.229950 +0.143192,0.377719,0.063377,0.406201,0.336541,-0.234944 +0.143191,0.384034,0.059936,0.406659,0.340822,-0.239972 +0.143191,0.390288,0.056436,0.407116,0.345055,-0.245032 +0.143190,0.396482,0.052877,0.407570,0.349238,-0.250124 +0.143189,0.402614,0.049261,0.408023,0.353371,-0.255246 +0.143189,0.408682,0.045588,0.408474,0.357453,-0.260398 +0.143188,0.414686,0.041859,0.408924,0.361483,-0.265579 +0.143188,0.420625,0.038074,0.409371,0.365460,-0.270789 +0.143187,0.426498,0.034234,0.409816,0.369385,-0.276025 +0.143186,0.432303,0.030340,0.410259,0.373255,-0.281287 +0.143186,0.438040,0.026392,0.410700,0.377071,-0.286574 +0.143185,0.443707,0.022392,0.411139,0.380832,-0.291885 +0.143185,0.449304,0.018339,0.411575,0.384537,-0.297220 +0.143184,0.454829,0.014235,0.412009,0.388185,-0.302577 +0.143184,0.460281,0.010080,0.412440,0.391776,-0.307955 +0.143183,0.465660,0.005875,0.412869,0.395309,-0.313354 +0.143182,0.470965,0.001621,0.413295,0.398783,-0.318771 +0.143182,0.476194,-0.002681,0.413718,0.402199,-0.324208 +0.143181,0.481347,-0.007031,0.414139,0.405554,-0.329661 +0.143181,0.486423,-0.011428,0.414556,0.408849,-0.335131 +0.143180,0.491420,-0.015871,0.414971,0.412083,-0.340617 +0.143180,0.496339,-0.020359,0.415382,0.415256,-0.346117 +0.143179,0.501177,-0.024892,0.415791,0.418366,-0.351630 +0.143179,0.505934,-0.029468,0.416196,0.421414,-0.357156 +0.143178,0.510610,-0.034087,0.416598,0.424399,-0.362694 +0.143178,0.515203,-0.038748,0.416996,0.427319,-0.368242 +0.143177,0.519713,-0.043450,0.417391,0.430176,-0.373799 +0.143177,0.524139,-0.048193,0.417783,0.432968,-0.379365 +0.143176,0.528480,-0.052975,0.418171,0.435694,-0.384938 +0.143175,0.532735,-0.057796,0.418556,0.438354,-0.390518 +0.143175,0.536903,-0.062654,0.418936,0.440949,-0.396103 +0.143175,0.540984,-0.067549,0.419313,0.443476,-0.401693 +0.143174,0.544977,-0.072480,0.419687,0.445937,-0.407287 +0.143174,0.548882,-0.077447,0.420056,0.448329,-0.412882 +0.143173,0.552697,-0.082447,0.420421,0.450654,-0.418480 +0.143173,0.556422,-0.087481,0.420782,0.452910,-0.424077 +0.143172,0.560056,-0.092547,0.421139,0.455097,-0.429674 +0.143172,0.563598,-0.097645,0.421492,0.457215,-0.435270 +0.143171,0.567049,-0.102773,0.421841,0.459263,-0.440863 +0.143171,0.570407,-0.107931,0.422186,0.461241,-0.446453 +0.143170,0.573671,-0.113117,0.422526,0.463149,-0.452037 +0.143170,0.576842,-0.118332,0.422861,0.464986,-0.457617 +0.143170,0.579918,-0.123573,0.423193,0.466752,-0.463190 +0.143169,0.582900,-0.128840,0.423519,0.468447,-0.468755 +0.143169,0.585785,-0.134132,0.423841,0.470070,-0.474311 +0.143168,0.588575,-0.139448,0.424159,0.471621,-0.479858 +0.143168,0.591268,-0.144788,0.424472,0.473099,-0.485395 +0.143168,0.593864,-0.150149,0.424780,0.474506,-0.490920 +0.143167,0.596363,-0.155531,0.425083,0.475839,-0.496432 +0.143167,0.598763,-0.160934,0.425381,0.477099,-0.501931 +0.143166,0.601066,-0.166355,0.425674,0.478286,-0.507415 +0.143166,0.603269,-0.171795,0.425963,0.479400,-0.512883 +0.143166,0.605373,-0.177253,0.426246,0.480440,-0.518336 +0.143165,0.607378,-0.182726,0.426525,0.481406,-0.523770 +0.143165,0.609282,-0.188215,0.426798,0.482298,-0.529186 +0.143165,0.611087,-0.193718,0.427066,0.483116,-0.534583 +0.143164,0.612791,-0.199234,0.427328,0.483860,-0.539960 +0.143164,0.614393,-0.204763,0.427586,0.484529,-0.545315 +0.143164,0.615895,-0.210302,0.427838,0.485123,-0.550647 +0.143163,0.617295,-0.215853,0.428085,0.485643,-0.555956 +0.143163,0.618594,-0.221412,0.428326,0.486088,-0.561242 +0.143163,0.619790,-0.226980,0.428562,0.486459,-0.566501 +0.143163,0.620885,-0.232555,0.428792,0.486754,-0.571735 +0.143162,0.621876,-0.238137,0.429017,0.486974,-0.576942 +0.143162,0.622766,-0.243723,0.429237,0.487119,-0.582120 +0.143162,0.623553,-0.249314,0.429450,0.487190,-0.587270 +0.143162,0.624236,-0.254909,0.429658,0.487185,-0.592390 +0.143161,0.624817,-0.260506,0.429861,0.487105,-0.597479 +0.143161,0.625295,-0.266104,0.430057,0.486950,-0.602536 +0.143161,0.625670,-0.271702,0.430248,0.486720,-0.607560 +0.143161,0.625941,-0.277299,0.430433,0.486415,-0.612551 +0.143160,0.626109,-0.282895,0.430612,0.486035,-0.617508 +0.143160,0.626174,-0.288488,0.430785,0.485581,-0.622429 +0.143160,0.626136,-0.294078,0.430953,0.485051,-0.627314 +0.143160,0.625994,-0.299662,0.431114,0.484447,-0.632162 +0.143160,0.625749,-0.305241,0.431270,0.483768,-0.636972 +0.143160,0.625400,-0.310813,0.431419,0.483015,-0.641744 +0.143159,0.624949,-0.316377,0.431563,0.482188,-0.646475 +0.143159,0.624394,-0.321933,0.431700,0.481286,-0.651166 +0.143159,0.623736,-0.327479,0.431832,0.480311,-0.655816 +0.143159,0.622976,-0.333014,0.431957,0.479261,-0.660423 +0.143159,0.622113,-0.338537,0.432077,0.478138,-0.664988 +0.143159,0.621147,-0.344048,0.432190,0.476942,-0.669508 +0.143159,0.620079,-0.349544,0.432297,0.475672,-0.673984 +0.143159,0.618908,-0.355027,0.432397,0.474329,-0.678414 +0.143158,0.617635,-0.360493,0.432492,0.472914,-0.682798 +0.143158,0.616261,-0.365943,0.432580,0.471426,-0.687136 +0.143158,0.614785,-0.371375,0.432663,0.469865,-0.691425 +0.143158,0.613208,-0.376788,0.432739,0.468233,-0.695665 +0.143158,0.611530,-0.382182,0.432808,0.466530,-0.699857 +0.143158,0.609751,-0.387555,0.432872,0.464754,-0.703998 +0.143158,0.607872,-0.392907,0.432929,0.462908,-0.708088 +0.143158,0.605893,-0.398236,0.432980,0.460991,-0.712127 +0.143158,0.603814,-0.403542,0.433024,0.459004,-0.716113 +0.143158,0.601636,-0.408823,0.433063,0.456947,-0.720046 +0.143158,0.599359,-0.414079,0.433095,0.454820,-0.723926 +0.143158,0.596983,-0.419309,0.433120,0.452624,-0.727751 +0.143158,0.594510,-0.424511,0.433140,0.450359,-0.731521 +0.143158,0.591938,-0.429685,0.433153,0.448026,-0.735235 +0.143158,0.589270,-0.434830,0.433159,0.445625,-0.738892 +0.143158,0.586505,-0.439945,0.433160,0.443156,-0.742493 +0.143158,0.583643,-0.445029,0.433154,0.440619,-0.746036 +0.143158,0.580686,-0.450081,0.433142,0.438017,-0.749520 +0.143158,0.577634,-0.455100,0.433123,0.435348,-0.752945 +0.143158,0.574488,-0.460086,0.433098,0.432613,-0.756310 +0.143159,0.571247,-0.465037,0.433067,0.429813,-0.759616 +0.143159,0.567913,-0.469952,0.433029,0.426948,-0.762860 +0.143159,0.564486,-0.474832,0.432986,0.424019,-0.766043 +0.143159,0.560966,-0.479673,0.432935,0.421027,-0.769164 +0.143159,0.557355,-0.484477,0.432879,0.417971,-0.772222 +0.143159,0.553654,-0.489242,0.432816,0.414852,-0.775217 +0.143159,0.549861,-0.493967,0.432747,0.411672,-0.778149 +0.143159,0.545980,-0.498651,0.432672,0.408430,-0.781016 +0.143159,0.542009,-0.503294,0.432591,0.405127,-0.783819 +0.143160,0.537950,-0.507895,0.432503,0.401764,-0.786556 +0.143160,0.533804,-0.512452,0.432409,0.398341,-0.789228 +0.143160,0.529571,-0.516965,0.432309,0.394859,-0.791833 +0.143160,0.525252,-0.521434,0.432203,0.391318,-0.794372 +0.143160,0.520848,-0.525856,0.432091,0.387720,-0.796844 +0.143161,0.516359,-0.530233,0.431972,0.384064,-0.799248 +0.143161,0.511787,-0.534562,0.431848,0.380352,-0.801584 +0.143161,0.507133,-0.538843,0.431717,0.376585,-0.803852 +0.143161,0.502396,-0.543076,0.431580,0.372762,-0.806051 +0.143161,0.497578,-0.547259,0.431437,0.368884,-0.808180 +0.143162,0.492680,-0.551391,0.431288,0.364953,-0.810241 +0.143162,0.487703,-0.555473,0.431134,0.360968,-0.812231 +0.143162,0.482647,-0.559503,0.430973,0.356932,-0.814150 +0.143162,0.477513,-0.563481,0.430806,0.352843,-0.816000 +0.143163,0.472304,-0.567405,0.430634,0.348704,-0.817778 +0.143163,0.467018,-0.571275,0.430455,0.344515,-0.819484 +0.143163,0.461658,-0.575091,0.430271,0.340276,-0.821120 +0.143164,0.456224,-0.578852,0.430081,0.335988,-0.822683 +0.143164,0.450717,-0.582556,0.429885,0.331653,-0.824174 +0.143164,0.445138,-0.586204,0.429683,0.327270,-0.825592 +0.143165,0.439489,-0.589795,0.429476,0.322841,-0.826938 +0.143165,0.433770,-0.593328,0.429263,0.318367,-0.828211 +0.143165,0.427982,-0.596802,0.429044,0.313848,-0.829411 +0.143166,0.422127,-0.600218,0.428820,0.309285,-0.830537 +0.143166,0.416204,-0.603573,0.428590,0.304679,-0.831590 +0.143166,0.410217,-0.606868,0.428355,0.300031,-0.832568 +0.143167,0.404165,-0.610102,0.428114,0.295341,-0.833473 +0.143167,0.398049,-0.613274,0.427868,0.290611,-0.834304 +0.143167,0.391871,-0.616385,0.427617,0.285841,-0.835060 +0.143168,0.385632,-0.619432,0.427360,0.281032,-0.835742 +0.143168,0.379333,-0.622417,0.427098,0.276185,-0.836350 +0.143169,0.372974,-0.625337,0.426831,0.271301,-0.836882 +0.143169,0.366558,-0.628194,0.426558,0.266381,-0.837340 +0.143169,0.360086,-0.630985,0.426280,0.261426,-0.837723 +0.143170,0.353558,-0.633711,0.425998,0.256435,-0.838032 +0.143170,0.346975,-0.636372,0.425710,0.251412,-0.838265 +0.143171,0.340340,-0.638966,0.425417,0.246356,-0.838423 +0.143171,0.333652,-0.641493,0.425119,0.241267,-0.838506 +0.143171,0.326914,-0.643953,0.424817,0.236149,-0.838514 +0.143172,0.320126,-0.646346,0.424510,0.231000,-0.838448 +0.143172,0.313290,-0.648670,0.424197,0.225822,-0.838306 +0.143173,0.306407,-0.650926,0.423880,0.220616,-0.838089 +0.143173,0.299478,-0.653113,0.423559,0.215383,-0.837797 +0.143174,0.292505,-0.655231,0.423233,0.210124,-0.837430 +0.143174,0.285488,-0.657279,0.422902,0.204839,-0.836988 +0.143175,0.278429,-0.659257,0.422567,0.199530,-0.836472 +0.143175,0.271329,-0.661165,0.422227,0.194198,-0.835880 +0.143176,0.264190,-0.663002,0.421883,0.188844,-0.835215 +0.143176,0.257012,-0.664768,0.421535,0.183468,-0.834475 +0.143177,0.249798,-0.666462,0.421183,0.178071,-0.833660 +0.143177,0.242548,-0.668085,0.420826,0.172655,-0.832771 +0.143178,0.235263,-0.669636,0.420465,0.167221,-0.831808 +0.143178,0.227946,-0.671114,0.420101,0.161769,-0.830772 +0.143179,0.220596,-0.672520,0.419732,0.156300,-0.829662 +0.143179,0.213217,-0.673853,0.419359,0.150816,-0.828478 +0.143180,0.205808,-0.675114,0.418983,0.145318,-0.827221 +0.143180,0.198372,-0.676300,0.418602,0.139805,-0.825891 +0.143181,0.190909,-0.677414,0.418218,0.134280,-0.824488 +0.143182,0.183421,-0.678454,0.417831,0.128744,-0.823013 +0.143182,0.175909,-0.679420,0.417439,0.123197,-0.821465 +0.143183,0.168375,-0.680312,0.417045,0.117640,-0.819846 +0.143183,0.160820,-0.681129,0.416647,0.112075,-0.818155 +0.143184,0.153245,-0.681873,0.416245,0.106502,-0.816392 +0.143184,0.145652,-0.682542,0.415840,0.100922,-0.814558 +0.143185,0.138042,-0.683136,0.415432,0.095337,-0.812654 +0.143185,0.130416,-0.683656,0.415021,0.089747,-0.810679 +0.143186,0.122776,-0.684101,0.414607,0.084153,-0.808634 +0.143187,0.115124,-0.684471,0.414190,0.078557,-0.806519 +0.143187,0.107460,-0.684766,0.413770,0.072960,-0.804335 +0.143188,0.099786,-0.684986,0.413347,0.067361,-0.802083 +0.143188,0.092103,-0.685131,0.412921,0.061763,-0.799761 +0.143189,0.084413,-0.685201,0.412493,0.056167,-0.797372 +0.143190,0.076717,-0.685197,0.412062,0.050573,-0.794915 +0.143190,0.069016,-0.685116,0.411628,0.044982,-0.792391 +0.143191,0.061312,-0.684961,0.411192,0.039396,-0.789800 +0.143191,0.053607,-0.684731,0.410754,0.033816,-0.787142 +0.143192,0.045901,-0.684426,0.410313,0.028241,-0.784419 +0.143193,0.038196,-0.684046,0.409870,0.022675,-0.781631 +0.143193,0.030494,-0.683591,0.409425,0.017116,-0.778777 +0.143194,0.022795,-0.683062,0.408978,0.011567,-0.775860 +0.143195,0.015101,-0.682457,0.408529,0.006029,-0.772878 +0.143195,0.007414,-0.681779,0.408078,0.000502,-0.769834 +0.143196,-0.000265,-0.681025,0.407626,-0.005013,-0.766726 +0.143196,-0.007935,-0.680198,0.407171,-0.010514,-0.763557 +0.143197,-0.015594,-0.679296,0.406715,-0.016001,-0.760326 +0.143198,-0.023241,-0.678320,0.406257,-0.021472,-0.757034 +0.143198,-0.030875,-0.677271,0.405798,-0.026927,-0.753681 +0.143199,-0.038494,-0.676147,0.405338,-0.032365,-0.750269 +0.143200,-0.046097,-0.674951,0.404876,-0.037784,-0.746798 +0.143200,-0.053682,-0.673681,0.404413,-0.043184,-0.743267 +0.143201,-0.061248,-0.672338,0.403948,-0.048564,-0.739680 +0.143202,-0.068794,-0.670922,0.403483,-0.053922,-0.736034 +0.143202,-0.076318,-0.669434,0.403016,-0.059258,-0.732332 +0.143203,-0.083820,-0.667874,0.402549,-0.064571,-0.728575 +0.143203,-0.091297,-0.666242,0.402081,-0.069860,-0.724761 +0.143204,-0.098749,-0.664538,0.401612,-0.075124,-0.720894 +0.143205,-0.106173,-0.662762,0.401143,-0.080362,-0.716972 +0.143205,-0.113569,-0.660916,0.400673,-0.085573,-0.712997 +0.143206,-0.120936,-0.658999,0.400202,-0.090755,-0.708970 +0.143207,-0.128271,-0.657012,0.399731,-0.095910,-0.704891 +0.143207,-0.135574,-0.654954,0.399260,-0.101034,-0.700761 +0.143208,-0.142844,-0.652827,0.398788,-0.106127,-0.696580 +0.143209,-0.150078,-0.650631,0.398317,-0.111189,-0.692350 +0.143209,-0.157277,-0.648366,0.397845,-0.116219,-0.688072 +0.143210,-0.164438,-0.646033,0.397373,-0.121215,-0.683745 +0.143211,-0.171560,-0.643631,0.396902,-0.126177,-0.679371 +0.143211,-0.178642,-0.641162,0.396431,-0.131103,-0.674950 +0.143212,-0.185682,-0.638626,0.395959,-0.135994,-0.670484 +0.143212,-0.192680,-0.636023,0.395489,-0.140847,-0.665973 +0.143213,-0.199634,-0.633354,0.395018,-0.145663,-0.661419 +0.143214,-0.206543,-0.630619,0.394549,-0.150440,-0.656820 +0.143214,-0.213406,-0.627819,0.394080,-0.155177,-0.652180 +0.143215,-0.220221,-0.624954,0.393611,-0.159874,-0.647498 +0.143216,-0.226987,-0.622025,0.393143,-0.164530,-0.642775 +0.143216,-0.233703,-0.619032,0.392677,-0.169143,-0.638012 +0.143217,-0.240368,-0.615976,0.392211,-0.173714,-0.633211 +0.143217,-0.246980,-0.612857,0.391746,-0.178241,-0.628371 +0.143218,-0.253539,-0.609677,0.391282,-0.182723,-0.623494 +0.143219,-0.260043,-0.606434,0.390820,-0.187160,-0.618580 +0.143219,-0.266491,-0.603131,0.390359,-0.191551,-0.613631 +0.143220,-0.272881,-0.599768,0.389899,-0.195895,-0.608648 +0.143221,-0.279214,-0.596345,0.389441,-0.200191,-0.603630 +0.143221,-0.285487,-0.592863,0.388984,-0.204439,-0.598580 +0.143222,-0.291699,-0.589322,0.388529,-0.208637,-0.593498 +0.143222,-0.297850,-0.585724,0.388075,-0.212785,-0.588385 +0.143223,-0.303938,-0.582068,0.387623,-0.216883,-0.583242 +0.143224,-0.309962,-0.578356,0.387174,-0.220929,-0.578069 +0.143224,-0.315921,-0.574588,0.386726,-0.224922,-0.572869 +0.143225,-0.321814,-0.570765,0.386280,-0.228863,-0.567641 +0.143225,-0.327640,-0.566888,0.385836,-0.232750,-0.562386 +0.143226,-0.333397,-0.562956,0.385394,-0.236583,-0.557107 +0.143227,-0.339086,-0.558972,0.384955,-0.240361,-0.551803 +0.143227,-0.344704,-0.554935,0.384518,-0.244083,-0.546475 +0.143228,-0.350251,-0.550846,0.384084,-0.247748,-0.541125 +0.143228,-0.355726,-0.546707,0.383651,-0.251357,-0.535753 +0.143229,-0.361128,-0.542517,0.383222,-0.254907,-0.530361 +0.143229,-0.366456,-0.538278,0.382795,-0.258400,-0.524949 +0.143230,-0.371708,-0.533991,0.382371,-0.261833,-0.519518 +0.143230,-0.376884,-0.529655,0.381950,-0.265207,-0.514069 +0.143231,-0.381984,-0.525273,0.381531,-0.268521,-0.508604 +0.143232,-0.387005,-0.520844,0.381116,-0.271774,-0.503123 +0.143232,-0.391948,-0.516369,0.380703,-0.274965,-0.497628 +0.143233,-0.396811,-0.511850,0.380294,-0.278095,-0.492118 +0.143233,-0.401593,-0.507287,0.379888,-0.281162,-0.486596 +0.143234,-0.406294,-0.502681,0.379485,-0.284166,-0.481062 +0.143234,-0.410912,-0.498033,0.379085,-0.287106,-0.475517 +0.143235,-0.415448,-0.493343,0.378689,-0.289982,-0.469963 +0.143235,-0.419899,-0.488613,0.378296,-0.292794,-0.464399 +0.143236,-0.424266,-0.483842,0.377907,-0.295540,-0.458828 +0.143236,-0.428548,-0.479034,0.377522,-0.298221,-0.453250 +0.143237,-0.432742,-0.474187,0.377140,-0.300835,-0.447666 +0.143237,-0.436850,-0.469303,0.376762,-0.303383,-0.442078 +0.143238,-0.440871,-0.464382,0.376387,-0.305864,-0.436485 +0.143238,-0.444802,-0.459427,0.376017,-0.308278,-0.430890 +0.143239,-0.448645,-0.454437,0.375650,-0.310623,-0.425293 +0.143239,-0.452397,-0.449413,0.375288,-0.312900,-0.419696 +0.143240,-0.456059,-0.444356,0.374929,-0.315108,-0.414098 +0.143240,-0.459630,-0.439268,0.374575,-0.317248,-0.408502 +0.143241,-0.463109,-0.434149,0.374225,-0.319317,-0.402908 +0.143241,-0.466495,-0.429000,0.373879,-0.321317,-0.397318 +0.143241,-0.469788,-0.423823,0.373538,-0.323246,-0.391731 +0.143242,-0.472988,-0.418617,0.373201,-0.325105,-0.386150 +0.143242,-0.476093,-0.413383,0.372868,-0.326893,-0.380575 +0.143243,-0.479103,-0.408124,0.372540,-0.328609,-0.375008 +0.143243,-0.482018,-0.402840,0.372217,-0.330254,-0.369448 +0.143243,-0.484837,-0.397531,0.371898,-0.331827,-0.363898 +0.143244,-0.487560,-0.392199,0.371584,-0.333328,-0.358358 +0.143244,-0.490186,-0.386844,0.371274,-0.334756,-0.352830 +0.143245,-0.492714,-0.381468,0.370969,-0.336112,-0.347314 +0.143245,-0.495145,-0.376071,0.370670,-0.337395,-0.341811 +0.143245,-0.497477,-0.370656,0.370375,-0.338604,-0.336322 +0.143246,-0.499711,-0.365221,0.370085,-0.339740,-0.330848 +0.143246,-0.501846,-0.359769,0.369800,-0.340803,-0.325391 +0.143246,-0.503881,-0.354300,0.369520,-0.341791,-0.319951 +0.143247,-0.505816,-0.348816,0.369245,-0.342706,-0.314529 +0.143247,-0.507651,-0.343318,0.368976,-0.343547,-0.309126 +0.143247,-0.509386,-0.337805,0.368712,-0.344313,-0.303744 +0.143248,-0.511019,-0.332280,0.368452,-0.345005,-0.298382 +0.143248,-0.512552,-0.326744,0.368199,-0.345623,-0.293042 +0.143248,-0.513983,-0.321197,0.367950,-0.346165,-0.287726 +0.143249,-0.515313,-0.315640,0.367707,-0.346633,-0.282433 +0.143249,-0.516541,-0.310075,0.367470,-0.347026,-0.277166 +0.143249,-0.517666,-0.304501,0.367238,-0.347345,-0.271924 +0.143250,-0.518689,-0.298922,0.367011,-0.347588,-0.266709 +0.143250,-0.519610,-0.293337,0.366790,-0.347756,-0.261522 +0.143250,-0.520428,-0.287747,0.366575,-0.347849,-0.256363 +0.143250,-0.521144,-0.282153,0.366365,-0.347867,-0.251234 +0.143251,-0.521756,-0.276557,0.366161,-0.347811,-0.246136 +0.143251,-0.522265,-0.270959,0.365962,-0.347679,-0.241069 +0.143251,-0.522672,-0.265361,0.365770,-0.347472,-0.236034 +0.143251,-0.522975,-0.259763,0.365583,-0.347190,-0.231033 +0.143251,-0.523174,-0.254167,0.365402,-0.346833,-0.226065 +0.143252,-0.523271,-0.248573,0.365227,-0.346401,-0.221133 +0.143252,-0.523264,-0.242982,0.365058,-0.345894,-0.216237 +0.143252,-0.523154,-0.237396,0.364894,-0.345313,-0.211377 +0.143252,-0.522940,-0.231815,0.364737,-0.344657,-0.206556 +0.143252,-0.522623,-0.226241,0.364586,-0.343927,-0.201773 +0.143252,-0.522203,-0.220674,0.364440,-0.343122,-0.197029 +0.143253,-0.521680,-0.215116,0.364301,-0.342243,-0.192325 +0.143253,-0.521054,-0.209567,0.364168,-0.341290,-0.187663 +0.143253,-0.520325,-0.204029,0.364040,-0.340263,-0.183042 +0.143253,-0.519493,-0.198502,0.363919,-0.339163,-0.178465 +0.143253,-0.518559,-0.192987,0.363804,-0.337989,-0.173931 +0.143253,-0.517522,-0.187486,0.363696,-0.336741,-0.169441 +0.143253,-0.516382,-0.181999,0.363593,-0.335421,-0.164997 +0.143253,-0.515141,-0.176528,0.363496,-0.334028,-0.160598 +0.143254,-0.513798,-0.171073,0.363406,-0.332562,-0.156247 +0.143254,-0.512353,-0.165635,0.363322,-0.331024,-0.151943 +0.143254,-0.510807,-0.160216,0.363244,-0.329413,-0.147687 +0.143254,-0.509160,-0.154816,0.363172,-0.327732,-0.143481 +0.143254,-0.507412,-0.149437,0.363107,-0.325978,-0.139324 +0.143254,-0.505563,-0.144078,0.363048,-0.324154,-0.135218 +0.143254,-0.503615,-0.138742,0.362995,-0.322259,-0.131164 +0.143254,-0.501566,-0.133429,0.362949,-0.320293,-0.127162 +0.143254,-0.499418,-0.128140,0.362909,-0.318257,-0.123212 +0.143254,-0.497172,-0.122877,0.362875,-0.316151,-0.119316 +0.143254,-0.494826,-0.117639,0.362847,-0.313976,-0.115474 +0.143254,-0.492382,-0.112428,0.362826,-0.311733,-0.111687 +0.143254,-0.489841,-0.107245,0.362811,-0.309420,-0.107956 +0.143254,-0.487202,-0.102091,0.362802,-0.307040,-0.104281 +0.143254,-0.484467,-0.096967,0.362800,-0.304591,-0.100663 +0.143254,-0.481635,-0.091873,0.362804,-0.302076,-0.097103 +0.143254,-0.478707,-0.086812,0.362814,-0.299493,-0.093600 +0.143254,-0.475684,-0.081782,0.362831,-0.296844,-0.090157 +0.143254,-0.472566,-0.076786,0.362854,-0.294130,-0.086773 +0.143253,-0.469354,-0.071824,0.362883,-0.291350,-0.083450 +0.143253,-0.466048,-0.066898,0.362919,-0.288505,-0.080186 +0.143253,-0.462649,-0.062008,0.362960,-0.285595,-0.076985 +0.143253,-0.459158,-0.057154,0.363009,-0.282622,-0.073845 +0.143253,-0.455575,-0.052339,0.363063,-0.279585,-0.070767 +0.143253,-0.451901,-0.047562,0.363124,-0.276486,-0.067753 +0.143253,-0.448137,-0.042824,0.363191,-0.273324,-0.064802 +0.143253,-0.444282,-0.038128,0.363264,-0.270101,-0.061915 +0.143253,-0.440339,-0.033472,0.363344,-0.266817,-0.059092 +0.143252,-0.436307,-0.028859,0.363429,-0.263472,-0.056335 +0.143252,-0.432187,-0.024288,0.363521,-0.260067,-0.053643 +0.143252,-0.427981,-0.019761,0.363620,-0.256603,-0.051017 +0.143252,-0.423688,-0.015279,0.363724,-0.253081,-0.048458 +0.143252,-0.419310,-0.010842,0.363834,-0.249500,-0.045966 +0.143251,-0.414847,-0.006451,0.363951,-0.245862,-0.043541 +0.143251,-0.410301,-0.002108,0.364074,-0.242167,-0.041184 +0.143251,-0.405671,0.002188,0.364203,-0.238416,-0.038895 +0.143251,-0.400959,0.006436,0.364337,-0.234610,-0.036675 +0.143251,-0.396166,0.010634,0.364478,-0.230749,-0.034524 +0.143250,-0.391292,0.014782,0.364625,-0.226834,-0.032443 +0.143250,-0.386339,0.018880,0.364778,-0.222866,-0.030431 +0.143250,-0.381307,0.022925,0.364937,-0.218845,-0.028490 +0.143250,-0.376198,0.026919,0.365102,-0.214773,-0.026619 +0.143249,-0.371011,0.030860,0.365273,-0.210649,-0.024819 +0.143249,-0.365749,0.034747,0.365450,-0.206475,-0.023091 +0.143249,-0.360411,0.038579,0.365632,-0.202251,-0.021434 +0.143248,-0.355000,0.042357,0.365821,-0.197978,-0.019848 +0.143248,-0.349515,0.046079,0.366015,-0.193657,-0.018335 +0.143248,-0.343958,0.049744,0.366215,-0.189289,-0.016894 +0.143247,-0.338330,0.053353,0.366420,-0.184874,-0.015526 +0.143247,-0.332633,0.056903,0.366631,-0.180414,-0.014231 +0.143247,-0.326866,0.060395,0.366848,-0.175908,-0.013009 +0.143247,-0.321031,0.063829,0.367071,-0.171359,-0.011860 +0.143246,-0.315129,0.067203,0.367299,-0.166766,-0.010785 +0.143246,-0.309161,0.070516,0.367532,-0.162131,-0.009784 +0.143245,-0.303128,0.073769,0.367771,-0.157453,-0.008856 +0.143245,-0.297032,0.076960,0.368016,-0.152735,-0.008003 +0.143245,-0.290873,0.080089,0.368266,-0.147978,-0.007224 +0.143244,-0.284653,0.083156,0.368521,-0.143181,-0.006519 +0.143244,-0.278372,0.086160,0.368781,-0.138345,-0.005889 +0.143244,-0.272031,0.089100,0.369047,-0.133473,-0.005333 +0.143243,-0.265633,0.091976,0.369318,-0.128563,-0.004852 +0.143243,-0.259178,0.094788,0.369594,-0.123618,-0.004446 +0.143242,-0.252666,0.097534,0.369875,-0.118639,-0.004115 +0.143242,-0.246100,0.100215,0.370162,-0.113625,-0.003859 +0.143241,-0.239481,0.102829,0.370453,-0.108579,-0.003678 +0.143241,-0.232809,0.105377,0.370749,-0.103501,-0.003572 +0.143241,-0.226086,0.107858,0.371050,-0.098391,-0.003541 +0.143240,-0.219314,0.110271,0.371356,-0.093251,-0.003585 +0.143240,-0.212492,0.112616,0.371667,-0.088082,-0.003704 +0.143239,-0.205623,0.114893,0.371982,-0.082885,-0.003898 +0.143239,-0.198708,0.117101,0.372302,-0.077660,-0.004167 +0.143238,-0.191748,0.119240,0.372627,-0.072409,-0.004510 +0.143238,-0.184745,0.121310,0.372956,-0.067132,-0.004929 +0.143237,-0.177698,0.123309,0.373290,-0.061830,-0.005423 +0.143237,-0.170611,0.125239,0.373628,-0.056505,-0.005991 +0.143236,-0.163484,0.127097,0.373971,-0.051157,-0.006634 +0.143236,-0.156318,0.128885,0.374318,-0.045788,-0.007352 +0.143235,-0.149114,0.130601,0.374669,-0.040398,-0.008143 +0.143235,-0.141875,0.132246,0.375024,-0.034987,-0.009010 +0.143234,-0.134601,0.133819,0.375384,-0.029559,-0.009950 +0.143234,-0.127293,0.135319,0.375747,-0.024112,-0.010964 +0.143233,-0.119954,0.136747,0.376115,-0.018648,-0.012051 +0.143233,-0.112583,0.138103,0.376487,-0.013169,-0.013213 +0.143232,-0.105183,0.139385,0.376862,-0.007675,-0.014447 +0.143232,-0.097755,0.140595,0.377241,-0.002166,-0.015755 +0.143231,-0.090300,0.141731,0.377624,0.003355,-0.017135 +0.143231,-0.082820,0.142793,0.378010,0.008888,-0.018589 +0.143230,-0.075315,0.143782,0.378401,0.014432,-0.020114 +0.143229,-0.067788,0.144696,0.378794,0.019986,-0.021712 +0.143229,-0.060239,0.145537,0.379191,0.025549,-0.023381 +0.143228,-0.052670,0.146303,0.379592,0.031119,-0.025122 +0.143228,-0.045082,0.146995,0.379996,0.036697,-0.026934 +0.143227,-0.037477,0.147612,0.380403,0.042281,-0.028817 +0.143227,-0.029856,0.148155,0.380813,0.047869,-0.030770 +0.143226,-0.022221,0.148622,0.381226,0.053462,-0.032794 +0.143225,-0.014572,0.149015,0.381642,0.059057,-0.034887 +0.143225,-0.006911,0.149334,0.382061,0.064655,-0.037050 +0.143224,0.000760,0.149577,0.382484,0.070253,-0.039281 +0.143224,0.008440,0.149745,0.382908,0.075851,-0.041582 +0.143223,0.016128,0.149838,0.383336,0.081448,-0.043950 +0.143222,0.023823,0.149856,0.383766,0.087043,-0.046387 +0.143222,0.031522,0.149799,0.384199,0.092634,-0.048890 +0.143221,0.039225,0.149667,0.384634,0.098222,-0.051461 +0.143221,0.046930,0.149459,0.385072,0.103805,-0.054098 +0.143220,0.054636,0.149177,0.385512,0.109381,-0.056801 +0.143219,0.062341,0.148820,0.385954,0.114950,-0.059570 +0.143219,0.070045,0.148388,0.386398,0.120511,-0.062403 +0.143218,0.077745,0.147881,0.386845,0.126063,-0.065301 +0.143218,0.085440,0.147300,0.387293,0.131605,-0.068263 +0.143217,0.093129,0.146644,0.387743,0.137135,-0.071289 +0.143216,0.100811,0.145913,0.388196,0.142654,-0.074377 +0.143216,0.108484,0.145108,0.388650,0.148159,-0.077527 +0.143215,0.116147,0.144229,0.389105,0.153651,-0.080740 +0.143214,0.123797,0.143276,0.389562,0.159127,-0.084013 +0.143214,0.131435,0.142249,0.390021,0.164587,-0.087347 +0.143213,0.139059,0.141148,0.390481,0.170030,-0.090741 +0.143213,0.146667,0.139974,0.390943,0.175455,-0.094195 +0.143212,0.154258,0.138727,0.391406,0.180861,-0.097707 +0.143211,0.161830,0.137406,0.391870,0.186247,-0.101277 +0.143211,0.169382,0.136013,0.392335,0.191612,-0.104905 +0.143210,0.176913,0.134547,0.392801,0.196955,-0.108590 +0.143209,0.184422,0.133009,0.393268,0.202275,-0.112330 +0.143209,0.191907,0.131398,0.393736,0.207572,-0.116127 +0.143208,0.199366,0.129716,0.394204,0.212843,-0.119978 +0.143207,0.206799,0.127963,0.394674,0.218089,-0.123883 +0.143207,0.214204,0.126138,0.395144,0.223308,-0.127842 +0.143206,0.221580,0.124243,0.395614,0.228500,-0.131853 +0.143205,0.228925,0.122277,0.396085,0.233663,-0.135916 +0.143205,0.236238,0.120241,0.396556,0.238796,-0.140031 +0.143204,0.243518,0.118135,0.397027,0.243899,-0.144196 +0.143204,0.250763,0.115960,0.397499,0.248971,-0.148411 +0.143203,0.257973,0.113716,0.397971,0.254011,-0.152675 +0.143202,0.265146,0.111403,0.398442,0.259017,-0.156987 +0.143202,0.272280,0.109023,0.398914,0.263989,-0.161347 +0.143201,0.279374,0.106574,0.399385,0.268927,-0.165753 +0.143200,0.286427,0.104058,0.399857,0.273828,-0.170205 +0.143200,0.293439,0.101476,0.400327,0.278693,-0.174702 +0.143199,0.300406,0.098827,0.400798,0.283521,-0.179244 +0.143198,0.307329,0.096112,0.401268,0.288309,-0.183829 +0.143198,0.314206,0.093332,0.401737,0.293059,-0.188457 +0.143197,0.321036,0.090487,0.402206,0.297768,-0.193126 +0.143197,0.327817,0.087577,0.402674,0.302437,-0.197836 +0.143196,0.334548,0.084604,0.403141,0.307063,-0.202587 +0.143195,0.341229,0.081567,0.403607,0.311647,-0.207377 +0.143195,0.347857,0.078468,0.404072,0.316188,-0.212205 +0.143194,0.354433,0.075306,0.404536,0.320684,-0.217071 +0.143193,0.360953,0.072083,0.404999,0.325135,-0.221973 +0.143193,0.367419,0.068798,0.405460,0.329540,-0.226912 +0.143192,0.373827,0.065453,0.405921,0.333898,-0.231885 +0.143192,0.380177,0.062048,0.406379,0.338209,-0.236892 +0.143191,0.386468,0.058584,0.406837,0.342471,-0.241932 +0.143190,0.392700,0.055061,0.407292,0.346685,-0.247005 +0.143190,0.398869,0.051481,0.407746,0.350848,-0.252108 +0.143189,0.404976,0.047843,0.408199,0.354961,-0.257242 +0.143189,0.411020,0.044148,0.408649,0.359023,-0.262406 +0.143188,0.416999,0.040397,0.409098,0.363033,-0.267598 +0.143187,0.422912,0.036590,0.409544,0.366990,-0.272818 +0.143187,0.428759,0.032729,0.409989,0.370894,-0.278064 +0.143186,0.434538,0.028814,0.410431,0.374743,-0.283336 +0.143186,0.440248,0.024846,0.410871,0.378538,-0.288633 +0.143185,0.445887,0.020825,0.411309,0.382277,-0.293953 +0.143184,0.451457,0.016752,0.411744,0.385960,-0.299297 +0.143184,0.456954,0.012628,0.412177,0.389586,-0.304662 +0.143183,0.462378,0.008454,0.412607,0.393154,-0.310048 +0.143183,0.467728,0.004230,0.413035,0.396664,-0.315454 +0.143182,0.473004,-0.000043,0.413460,0.400116,-0.320879 +0.143182,0.478203,-0.004364,0.413882,0.403508,-0.326322 +0.143181,0.483326,-0.008732,0.414301,0.406840,-0.331783 +0.143181,0.488372,-0.013147,0.414718,0.410112,-0.337259 +0.143180,0.493339,-0.017607,0.415131,0.413322,-0.342750 +0.143179,0.498226,-0.022113,0.415541,0.416471,-0.348255 +0.143179,0.503033,-0.026663,0.415948,0.419557,-0.353774 +0.143178,0.507759,-0.031256,0.416352,0.422580,-0.359304 +0.143178,0.512403,-0.035891,0.416753,0.425540,-0.364846 +0.143177,0.516964,-0.040568,0.417150,0.428436,-0.370398 +0.143177,0.521441,-0.045286,0.417544,0.431267,-0.375958 +0.143176,0.525834,-0.050044,0.417934,0.434034,-0.381527 +0.143176,0.530141,-0.054841,0.418321,0.436734,-0.387103 +0.143175,0.534363,-0.059677,0.418704,0.439369,-0.392685 +0.143175,0.538497,-0.064550,0.419083,0.441938,-0.398273 +0.143174,0.542544,-0.069459,0.419459,0.444439,-0.403864 +0.143174,0.546503,-0.074404,0.419830,0.446873,-0.409458 +0.143173,0.550373,-0.079383,0.420198,0.449240,-0.415055 +0.143173,0.554153,-0.084397,0.420562,0.451538,-0.420652 +0.143172,0.557843,-0.089443,0.420921,0.453767,-0.426250 +0.143172,0.561442,-0.094522,0.421277,0.455927,-0.431846 +0.143172,0.564949,-0.099632,0.421628,0.458018,-0.437441 +0.143171,0.568363,-0.104771,0.421975,0.460039,-0.443033 +0.143171,0.571685,-0.109941,0.422318,0.461990,-0.448621 +0.143170,0.574913,-0.115138,0.422657,0.463871,-0.454204 +0.143170,0.578047,-0.120363,0.422991,0.465680,-0.459781 +0.143169,0.581087,-0.125614,0.423320,0.467418,-0.465350 +0.143169,0.584031,-0.130891,0.423645,0.469085,-0.470912 +0.143169,0.586880,-0.136193,0.423965,0.470680,-0.476465 +0.143168,0.589632,-0.141518,0.424281,0.472203,-0.482008 +0.143168,0.592287,-0.146866,0.424592,0.473654,-0.487540 +0.143167,0.594846,-0.152235,0.424898,0.475032,-0.493061 +0.143167,0.597306,-0.157626,0.425199,0.476337,-0.498568 +0.143167,0.599669,-0.163036,0.425496,0.477569,-0.504061 +0.143166,0.601933,-0.168465,0.425787,0.478727,-0.509539 +0.143166,0.604097,-0.173911,0.426073,0.479812,-0.515002 +0.143166,0.606163,-0.179375,0.426355,0.480824,-0.520447 +0.143165,0.608129,-0.184854,0.426631,0.481761,-0.525875 +0.143165,0.609995,-0.190349,0.426902,0.482624,-0.531283 +0.143165,0.611760,-0.195857,0.427168,0.483414,-0.536672 +0.143164,0.613425,-0.201378,0.427429,0.484128,-0.542041 +0.143164,0.614988,-0.206911,0.427684,0.484768,-0.547387 +0.143164,0.616451,-0.212455,0.427934,0.485334,-0.552711 +0.143163,0.617811,-0.218009,0.428179,0.485825,-0.558011 +0.143163,0.619070,-0.223572,0.428418,0.486241,-0.563286 +0.143163,0.620227,-0.229143,0.428652,0.486582,-0.568536 +0.143162,0.621282,-0.234721,0.428880,0.486848,-0.573759 +0.143162,0.622234,-0.240304,0.429103,0.487039,-0.578955 +0.143162,0.623083,-0.245893,0.429320,0.487156,-0.584122 +0.143162,0.623830,-0.251485,0.429532,0.487197,-0.589261 +0.143161,0.624474,-0.257081,0.429737,0.487163,-0.594368 +0.143161,0.625015,-0.262678,0.429938,0.487054,-0.599445 +0.143161,0.625453,-0.268276,0.430132,0.486870,-0.604490 +0.143161,0.625787,-0.273874,0.430320,0.486611,-0.609501 +0.143161,0.626019,-0.279471,0.430503,0.486277,-0.614479 +0.143160,0.626147,-0.285066,0.430680,0.485868,-0.619422 +0.143160,0.626171,-0.290658,0.430851,0.485384,-0.624330 +0.143160,0.626093,-0.296246,0.431016,0.484826,-0.629200 +0.143160,0.625911,-0.301828,0.431175,0.484193,-0.634034 +0.143160,0.625626,-0.307404,0.431329,0.483485,-0.638829 +0.143159,0.625237,-0.312974,0.431476,0.482703,-0.643585 +0.143159,0.624746,-0.318535,0.431617,0.481847,-0.648301 +0.143159,0.624151,-0.324087,0.431752,0.480916,-0.652976 +0.143159,0.623453,-0.329628,0.431881,0.479912,-0.657609 +0.143159,0.622653,-0.335159,0.432004,0.478834,-0.662200 +0.143159,0.621750,-0.340677,0.432121,0.477682,-0.666747 +0.143159,0.620744,-0.346183,0.432232,0.476457,-0.671251 +0.143159,0.619636,-0.351674,0.432336,0.475159,-0.675709 +0.143159,0.618426,-0.357150,0.432435,0.473788,-0.680121 +0.143158,0.617114,-0.362610,0.432527,0.472345,-0.684487 +0.143158,0.615700,-0.368053,0.432613,0.470829,-0.688806 +0.143158,0.614185,-0.373478,0.432693,0.469241,-0.693076 +0.143158,0.612569,-0.378884,0.432766,0.467581,-0.697298 +0.143158,0.610852,-0.384270,0.432834,0.465849,-0.701470 +0.143158,0.609034,-0.389635,0.432895,0.464046,-0.705591 +0.143158,0.607116,-0.394978,0.432949,0.462173,-0.709662 +0.143158,0.605098,-0.400298,0.432998,0.460228,-0.713680 +0.143158,0.602981,-0.405595,0.433040,0.458214,-0.717646 +0.143158,0.600764,-0.410866,0.433076,0.456130,-0.721558 +0.143158,0.598449,-0.416112,0.433105,0.453976,-0.725417 +0.143158,0.596035,-0.421331,0.433129,0.451753,-0.729221 +0.143158,0.593523,-0.426522,0.433145,0.449462,-0.732969 +0.143158,0.590914,-0.431685,0.433156,0.447102,-0.736661 +0.143158,0.588208,-0.436819,0.433160,0.444674,-0.740297 +0.143158,0.585406,-0.441922,0.433158,0.442179,-0.743875 +0.143158,0.582507,-0.446993,0.433150,0.439617,-0.747395 +0.143158,0.579513,-0.452033,0.433135,0.436989,-0.750856 +0.143158,0.576424,-0.457039,0.433114,0.434294,-0.754258 +0.143158,0.573241,-0.462012,0.433087,0.431534,-0.757601 +0.143159,0.569964,-0.466949,0.433053,0.428709,-0.760882 +0.143159,0.566594,-0.471850,0.433013,0.425819,-0.764103 +0.143159,0.563131,-0.476715,0.432967,0.422865,-0.767262 +0.143159,0.559576,-0.481542,0.432914,0.419848,-0.770358 +0.143159,0.555929,-0.486331,0.432855,0.416768,-0.773392 +0.143159,0.552192,-0.491081,0.432790,0.413625,-0.776363 +0.143159,0.548365,-0.495790,0.432719,0.410421,-0.779269 +0.143159,0.544449,-0.500458,0.432641,0.407155,-0.782112 +0.143160,0.540444,-0.505085,0.432557,0.403829,-0.784889 +0.143160,0.536351,-0.509669,0.432467,0.400442,-0.787601 +0.143160,0.532171,-0.514209,0.432371,0.396996,-0.790247 +0.143160,0.527905,-0.518705,0.432269,0.393491,-0.792827 +0.143160,0.523553,-0.523156,0.432160,0.389928,-0.795340 +0.143160,0.519116,-0.527561,0.432045,0.386308,-0.797785 +0.143161,0.514595,-0.531919,0.431925,0.382630,-0.800163 +0.143161,0.509991,-0.536229,0.431798,0.378897,-0.802472 +0.143161,0.505304,-0.540492,0.431664,0.375107,-0.804714 +0.143161,0.500535,-0.544705,0.431525,0.371263,-0.806886 +0.143162,0.495686,-0.548869,0.431380,0.367365,-0.808988 +0.143162,0.490757,-0.552982,0.431229,0.363413,-0.811021 +0.143162,0.485750,-0.557043,0.431072,0.359408,-0.812984 +0.143162,0.480664,-0.561053,0.430909,0.355351,-0.814877 +0.143163,0.475500,-0.565010,0.430740,0.351243,-0.816698 +0.143163,0.470261,-0.568913,0.430565,0.347084,-0.818449 +0.143163,0.464946,-0.572763,0.430384,0.342875,-0.820128 +0.143163,0.459557,-0.576557,0.430198,0.338617,-0.821735 +0.143164,0.454095,-0.580296,0.430005,0.334311,-0.823270 +0.143164,0.448560,-0.583979,0.429807,0.329957,-0.824733 +0.143164,0.442954,-0.587605,0.429603,0.325557,-0.826123 +0.143165,0.437278,-0.591173,0.429394,0.321110,-0.827441 +0.143165,0.431532,-0.594684,0.429179,0.316618,-0.828685 +0.143165,0.425717,-0.598135,0.428958,0.312082,-0.829857 +0.143166,0.419836,-0.601527,0.428732,0.307502,-0.830954 +0.143166,0.413888,-0.604859,0.428500,0.302880,-0.831978 +0.143166,0.407875,-0.608130,0.428262,0.298216,-0.832928 +0.143167,0.401798,-0.611341,0.428020,0.293510,-0.833804 +0.143167,0.395658,-0.614489,0.427771,0.288764,-0.834606 +0.143167,0.389457,-0.617575,0.427518,0.283979,-0.835334 +0.143168,0.383194,-0.620598,0.427259,0.279155,-0.835987 +0.143168,0.376872,-0.623558,0.426995,0.274294,-0.836565 +0.143169,0.370491,-0.626454,0.426725,0.269396,-0.837069 +0.143169,0.364053,-0.629285,0.426451,0.264462,-0.837498 +0.143169,0.357559,-0.632051,0.426171,0.259493,-0.837852 +0.143170,0.351009,-0.634752,0.425887,0.254490,-0.838131 +0.143170,0.344406,-0.637386,0.425597,0.249453,-0.838335 +0.143171,0.337750,-0.639955,0.425302,0.244384,-0.838464 +0.143171,0.331043,-0.642456,0.425003,0.239284,-0.838518 +0.143172,0.324285,-0.644890,0.424698,0.234154,-0.838497 +0.143172,0.317479,-0.647256,0.424389,0.228993,-0.838401 +0.143173,0.310624,-0.649554,0.424075,0.223805,-0.838230 +0.143173,0.303723,-0.651783,0.423756,0.218588,-0.837984 +0.143173,0.296777,-0.653944,0.423433,0.213345,-0.837663 +0.143174,0.289786,-0.656034,0.423105,0.208076,-0.837267 +0.143174,0.282753,-0.658055,0.422773,0.202782,-0.836797 +0.143175,0.275678,-0.660006,0.422436,0.197464,-0.836251 +0.143175,0.268563,-0.661886,0.422094,0.192123,-0.835631 +0.143176,0.261409,-0.663696,0.421749,0.186760,-0.834936 +0.143176,0.254217,-0.665434,0.421399,0.181376,-0.834167 +0.143177,0.246988,-0.667100,0.421045,0.175971,-0.833324 +0.143177,0.239724,-0.668695,0.420687,0.170548,-0.832406 +0.143178,0.232427,-0.670218,0.420324,0.165107,-0.831415 +0.143178,0.225097,-0.671668,0.419958,0.159648,-0.830350 +0.143179,0.217736,-0.673046,0.419588,0.154174,-0.829211 +0.143180,0.210345,-0.674351,0.419213,0.148684,-0.827999 +0.143180,0.202925,-0.675583,0.418835,0.143180,-0.826713 +0.143181,0.195478,-0.676741,0.418454,0.137662,-0.825355 +0.143181,0.188005,-0.677826,0.418068,0.132133,-0.823924 +0.143182,0.180508,-0.678837,0.417679,0.126592,-0.822421 +0.143182,0.172987,-0.679775,0.417287,0.121041,-0.820845 +0.143183,0.165445,-0.680638,0.416891,0.115481,-0.819198 +0.143183,0.157882,-0.681427,0.416491,0.109912,-0.817479 +0.143184,0.150300,-0.682141,0.416088,0.104337,-0.815689 +0.143185,0.142700,-0.682781,0.415682,0.098755,-0.813827 +0.143185,0.135084,-0.683347,0.415273,0.093168,-0.811896 +0.143186,0.127453,-0.683838,0.414861,0.087576,-0.809894 +0.143186,0.119808,-0.684253,0.414445,0.081982,-0.807822 +0.143187,0.112151,-0.684594,0.414027,0.076385,-0.805680 +0.143187,0.104482,-0.684860,0.413606,0.070787,-0.803469 +0.143188,0.096805,-0.685052,0.413182,0.065189,-0.801190 +0.143189,0.089119,-0.685168,0.412755,0.059591,-0.798842 +0.143189,0.081426,-0.685208,0.412326,0.053996,-0.796426 +0.143190,0.073728,-0.685174,0.411894,0.048403,-0.793943 +0.143190,0.066026,-0.685065,0.411459,0.042814,-0.791393 +0.143191,0.058322,-0.684881,0.411022,0.037230,-0.788776 +0.143192,0.050616,-0.684622,0.410583,0.031651,-0.786093 +0.143192,0.042910,-0.684288,0.410142,0.026080,-0.783345 +0.143193,0.035206,-0.683879,0.409698,0.020516,-0.780531 +0.143194,0.027505,-0.683395,0.409252,0.014961,-0.777653 +0.143194,0.019808,-0.682836,0.408804,0.009416,-0.774710 +0.143195,0.012117,-0.682203,0.408355,0.003882,-0.771704 +0.143195,0.004433,-0.681495,0.407903,-0.001640,-0.768635 +0.143196,-0.003243,-0.680713,0.407450,-0.007150,-0.765504 +0.143197,-0.010909,-0.679856,0.406994,-0.012645,-0.762310 +0.143197,-0.018564,-0.678926,0.406538,-0.018126,-0.759055 +0.143198,-0.026206,-0.677922,0.406079,-0.023591,-0.755740 +0.143199,-0.033834,-0.676843,0.405620,-0.029040,-0.752364 +0.143199,-0.041447,-0.675692,0.405158,-0.034470,-0.748929 +0.143200,-0.049043,-0.674466,0.404696,-0.039882,-0.745434 +0.143200,-0.056621,-0.673168,0.404232,-0.045274,-0.741882 +0.143201,-0.064179,-0.671797,0.403768,-0.050646,-0.738271 +0.143202,-0.071717,-0.670353,0.403302,-0.055996,-0.734604 +0.143202,-0.079233,-0.668837,0.402835,-0.061323,-0.730880 +0.143203,-0.086725,-0.667249,0.402368,-0.066627,-0.727101 +0.143204,-0.094192,-0.665589,0.401899,-0.071906,-0.723267 +0.143204,-0.101633,-0.663857,0.401430,-0.077160,-0.719378 +0.143205,-0.109047,-0.662054,0.400960,-0.082387,-0.715436 +0.143206,-0.116432,-0.660180,0.400490,-0.087588,-0.711440 +0.143206,-0.123786,-0.658236,0.400019,-0.092759,-0.707393 +0.143207,-0.131110,-0.656221,0.399548,-0.097902,-0.703294 +0.143208,-0.138400,-0.654137,0.399077,-0.103014,-0.699144 +0.143208,-0.145656,-0.651983,0.398605,-0.108096,-0.694944 +0.143209,-0.152877,-0.649760,0.398134,-0.113145,-0.690695 +0.143209,-0.160061,-0.647468,0.397662,-0.118162,-0.686398 +0.143210,-0.167207,-0.645109,0.397190,-0.123145,-0.682053 +0.143211,-0.174313,-0.642681,0.396719,-0.128093,-0.677661 +0.143211,-0.181379,-0.640186,0.396248,-0.133006,-0.673222 +0.143212,-0.188404,-0.637623,0.395777,-0.137882,-0.668739 +0.143213,-0.195385,-0.634995,0.395306,-0.142721,-0.664211 +0.143213,-0.202321,-0.632300,0.394836,-0.147522,-0.659639 +0.143214,-0.209213,-0.629540,0.394367,-0.152283,-0.655024 +0.143215,-0.216057,-0.626714,0.393898,-0.157005,-0.650368 +0.143215,-0.222853,-0.623824,0.393430,-0.161686,-0.645670 +0.143216,-0.229600,-0.620871,0.392962,-0.166326,-0.640931 +0.143216,-0.236296,-0.617853,0.392496,-0.170923,-0.636153 +0.143217,-0.242941,-0.614773,0.392030,-0.175476,-0.631337 +0.143218,-0.249532,-0.611630,0.391566,-0.179986,-0.626482 +0.143218,-0.256070,-0.608426,0.391103,-0.184451,-0.621591 +0.143219,-0.262552,-0.605160,0.390641,-0.188870,-0.616664 +0.143220,-0.268978,-0.601833,0.390180,-0.193243,-0.611701 +0.143220,-0.275346,-0.598447,0.389721,-0.197568,-0.606704 +0.143221,-0.281656,-0.595001,0.389263,-0.201845,-0.601674 +0.143221,-0.287905,-0.591496,0.388807,-0.206074,-0.596611 +0.143222,-0.294094,-0.587933,0.388352,-0.210253,-0.591517 +0.143223,-0.300220,-0.584312,0.387900,-0.214381,-0.586392 +0.143223,-0.306283,-0.580634,0.387449,-0.218459,-0.581237 +0.143224,-0.312282,-0.576900,0.387000,-0.222485,-0.576054 +0.143224,-0.318216,-0.573111,0.386552,-0.226458,-0.570843 +0.143225,-0.324083,-0.569267,0.386107,-0.230378,-0.565604 +0.143226,-0.329883,-0.565368,0.385664,-0.234244,-0.560340 +0.143226,-0.335614,-0.561416,0.385224,-0.238056,-0.555051 +0.143227,-0.341275,-0.557411,0.384785,-0.241812,-0.549738 +0.143227,-0.346866,-0.553354,0.384349,-0.245512,-0.544401 +0.143228,-0.352385,-0.549246,0.383916,-0.249155,-0.539042 +0.143228,-0.357832,-0.545087,0.383484,-0.252742,-0.533663 +0.143229,-0.363205,-0.540878,0.383056,-0.256270,-0.528262 +0.143230,-0.368503,-0.536620,0.382630,-0.259739,-0.522843 +0.143230,-0.373726,-0.532314,0.382207,-0.263150,-0.517405 +0.143231,-0.378873,-0.527960,0.381787,-0.266500,-0.511950 +0.143231,-0.383942,-0.523559,0.381370,-0.269791,-0.506479 +0.143232,-0.388933,-0.519112,0.380955,-0.273020,-0.500992 +0.143232,-0.393845,-0.514621,0.380544,-0.276187,-0.495491 +0.143233,-0.398676,-0.510084,0.380136,-0.279292,-0.489976 +0.143233,-0.403427,-0.505504,0.379731,-0.282335,-0.484450 +0.143234,-0.408096,-0.500882,0.379329,-0.285314,-0.478911 +0.143234,-0.412683,-0.496217,0.378931,-0.288230,-0.473363 +0.143235,-0.417186,-0.491512,0.378536,-0.291081,-0.467804 +0.143235,-0.421604,-0.486766,0.378145,-0.293867,-0.462238 +0.143236,-0.425938,-0.481981,0.377757,-0.296588,-0.456664 +0.143236,-0.430186,-0.477157,0.377373,-0.299243,-0.451084 +0.143237,-0.434347,-0.472295,0.376993,-0.301832,-0.445498 +0.143237,-0.438421,-0.467397,0.376616,-0.304354,-0.439908 +0.143238,-0.442407,-0.462463,0.376243,-0.306809,-0.434314 +0.143238,-0.446304,-0.457494,0.375874,-0.309196,-0.428718 +0.143239,-0.450112,-0.452491,0.375509,-0.311515,-0.423121 +0.143239,-0.453829,-0.447454,0.375148,-0.313765,-0.417523 +0.143240,-0.457456,-0.442385,0.374791,-0.315947,-0.411926 +0.143240,-0.460991,-0.437285,0.374439,-0.318059,-0.406331 +0.143241,-0.464434,-0.432154,0.374090,-0.320102,-0.400738 +0.143241,-0.467784,-0.426994,0.373746,-0.322074,-0.395149 +0.143242,-0.471041,-0.421805,0.373407,-0.323976,-0.389564 +0.143242,-0.474204,-0.416589,0.373071,-0.325807,-0.383986 +0.143242,-0.477273,-0.411345,0.372740,-0.327567,-0.378413 +0.143243,-0.480246,-0.406076,0.372414,-0.329256,-0.372849 +0.143243,-0.483124,-0.400782,0.372092,-0.330873,-0.367293 +0.143244,-0.485906,-0.395464,0.371775,-0.332418,-0.361747 +0.143244,-0.488591,-0.390123,0.371463,-0.333891,-0.356211 +0.143244,-0.491179,-0.384760,0.371155,-0.335291,-0.350687 +0.143245,-0.493669,-0.379376,0.370853,-0.336618,-0.345176 +0.143245,-0.496062,-0.373972,0.370555,-0.337873,-0.339679 +0.143246,-0.498356,-0.368548,0.370262,-0.339054,-0.334196 +0.143246,-0.500551,-0.363107,0.369974,-0.340161,-0.328728 +0.143246,-0.502647,-0.357648,0.369691,-0.341195,-0.323278 +0.143247,-0.504644,-0.352174,0.369413,-0.342155,-0.317844 +0.143247,-0.506540,-0.346684,0.369140,-0.343041,-0.312430 +0.143247,-0.508336,-0.341180,0.368873,-0.343853,-0.307035 +0.143248,-0.510032,-0.335662,0.368610,-0.344591,-0.301660 +0.143248,-0.511626,-0.330133,0.368353,-0.345254,-0.296307 +0.143248,-0.513120,-0.324592,0.368102,-0.345842,-0.290976 +0.143249,-0.514511,-0.319041,0.367855,-0.346356,-0.285669 +0.143249,-0.515801,-0.313481,0.367614,-0.346795,-0.280386 +0.143249,-0.516990,-0.307912,0.367379,-0.347159,-0.275128 +0.143249,-0.518075,-0.302337,0.367149,-0.347448,-0.269897 +0.143250,-0.519059,-0.296755,0.366925,-0.347662,-0.264692 +0.143250,-0.519940,-0.291168,0.366706,-0.347801,-0.259516 +0.143250,-0.520718,-0.285576,0.366493,-0.347865,-0.254369 +0.143250,-0.521394,-0.279982,0.366285,-0.347854,-0.249252 +0.143251,-0.521966,-0.274385,0.366083,-0.347768,-0.244165 +0.143251,-0.522435,-0.268787,0.365887,-0.347607,-0.239111 +0.143251,-0.522801,-0.263188,0.365697,-0.347371,-0.234089 +0.143251,-0.523064,-0.257591,0.365512,-0.347060,-0.229101 +0.143251,-0.523224,-0.251995,0.365333,-0.346674,-0.224147 +0.143252,-0.523280,-0.246403,0.365161,-0.346213,-0.219228 +0.143252,-0.523233,-0.240814,0.364994,-0.345678,-0.214346 +0.143252,-0.523083,-0.235229,0.364833,-0.345067,-0.209501 +0.143252,-0.522829,-0.229651,0.364678,-0.344382,-0.204695 +0.143252,-0.522473,-0.224080,0.364529,-0.343623,-0.199927 +0.143253,-0.522013,-0.218516,0.364386,-0.342790,-0.195198 +0.143253,-0.521449,-0.212961,0.364249,-0.341882,-0.190511 +0.143253,-0.520783,-0.207416,0.364118,-0.340900,-0.185865 +0.143253,-0.520014,-0.201882,0.363993,-0.339845,-0.181261 +0.143253,-0.519143,-0.196360,0.363874,-0.338716,-0.176700 +0.143253,-0.518168,-0.190850,0.363761,-0.337513,-0.172183 +0.143253,-0.517092,-0.185355,0.363655,-0.336237,-0.167711 +0.143253,-0.515913,-0.179874,0.363555,-0.334889,-0.163284 +0.143253,-0.514632,-0.174409,0.363461,-0.333467,-0.158904 +0.143254,-0.513249,-0.168960,0.363373,-0.331973,-0.154571 +0.143254,-0.511765,-0.163530,0.363291,-0.330407,-0.150285 +0.143254,-0.510180,-0.158118,0.363216,-0.328769,-0.146049 +0.143254,-0.508493,-0.152726,0.363146,-0.327060,-0.141862 +0.143254,-0.506706,-0.147354,0.363083,-0.325279,-0.137725 +0.143254,-0.504819,-0.142004,0.363027,-0.323427,-0.133639 +0.143254,-0.502831,-0.136677,0.362976,-0.321504,-0.129604 +0.143254,-0.500744,-0.131374,0.362932,-0.319511,-0.125622 +0.143254,-0.498558,-0.126094,0.362895,-0.317448,-0.121693 +0.143254,-0.496273,-0.120841,0.362863,-0.315315,-0.117818 +0.143254,-0.493889,-0.115613,0.362838,-0.313114,-0.113998 +0.143254,-0.491408,-0.110413,0.362819,-0.310843,-0.110232 +0.143254,-0.488828,-0.105241,0.362807,-0.308504,-0.106523 +0.143254,-0.486152,-0.100099,0.362800,-0.306097,-0.102870 +0.143254,-0.483379,-0.094986,0.362801,-0.303623,-0.099274 +0.143254,-0.480510,-0.089905,0.362807,-0.301081,-0.095736 +0.143254,-0.477545,-0.084856,0.362820,-0.298473,-0.092257 +0.143254,-0.474485,-0.079839,0.362839,-0.295799,-0.088837 +0.143254,-0.471330,-0.074856,0.362864,-0.293058,-0.085476 +0.143253,-0.468082,-0.069908,0.362896,-0.290253,-0.082176 +0.143253,-0.464740,-0.064996,0.362934,-0.287383,-0.078936 +0.143253,-0.461305,-0.060119,0.362978,-0.284449,-0.075759 +0.143253,-0.457779,-0.055281,0.363029,-0.281451,-0.072643 +0.143253,-0.454160,-0.050480,0.363086,-0.278390,-0.069590 +0.143253,-0.450451,-0.045718,0.363149,-0.275266,-0.066600 +0.143253,-0.446651,-0.040997,0.363219,-0.272081,-0.063673 +0.143252,-0.442764,-0.036318,0.363294,-0.268836,-0.060812 +0.143249,-0.438789,-0.031682,0.363372,-0.265532,-0.058019 +0.143241,-0.434731,-0.027093,0.363451,-0.262173,-0.055296 +0.143225,-0.430591,-0.022551,0.363526,-0.258762,-0.052647 +0.143198,-0.426371,-0.018061,0.363595,-0.255302,-0.050074 +0.143159,-0.422076,-0.013625,0.363655,-0.251796,-0.047581 +0.143103,-0.417706,-0.009245,0.363702,-0.248248,-0.045171 +0.143030,-0.413265,-0.004923,0.363734,-0.244660,-0.042847 +0.142936,-0.408755,-0.000664,0.363747,-0.241035,-0.040612 +0.142818,-0.404179,0.003532,0.363738,-0.237377,-0.038469 +0.142675,-0.399540,0.007661,0.363705,-0.233689,-0.036422 +0.142503,-0.394840,0.011721,0.363643,-0.229973,-0.034473 +0.142300,-0.390081,0.015708,0.363551,-0.226234,-0.032625 +0.142063,-0.385267,0.019622,0.363424,-0.222473,-0.030880 +0.141790,-0.380399,0.023458,0.363260,-0.218695,-0.029234 +0.141477,-0.375481,0.027215,0.363056,-0.214902,-0.027685 +0.141123,-0.370515,0.030889,0.362808,-0.211097,-0.026230 +0.140725,-0.365504,0.034478,0.362513,-0.207284,-0.024864 +0.140281,-0.360450,0.037980,0.362169,-0.203465,-0.023586 +0.139787,-0.355356,0.041392,0.361772,-0.199644,-0.022392 +0.139241,-0.350224,0.044712,0.361318,-0.195824,-0.021278 +0.138640,-0.345057,0.047936,0.360806,-0.192008,-0.020243 +0.137983,-0.339858,0.051062,0.360232,-0.188199,-0.019282 +0.137272,-0.334630,0.054088,0.359592,-0.184400,-0.018393 +0.136509,-0.329374,0.057010,0.358884,-0.180614,-0.017572 +0.135697,-0.324093,0.059827,0.358104,-0.176845,-0.016817 +0.134838,-0.318790,0.062536,0.357250,-0.173095,-0.016124 +0.133935,-0.313468,0.065134,0.356318,-0.169368,-0.015490 +0.132990,-0.308130,0.067619,0.355305,-0.165666,-0.014912 +0.132007,-0.302777,0.069988,0.354208,-0.161993,-0.014388 +0.130987,-0.297412,0.072238,0.353025,-0.158353,-0.013913 +0.129934,-0.292039,0.074367,0.351751,-0.154747,-0.013484 +0.128850,-0.286659,0.076371,0.350383,-0.151179,-0.013100 +0.127737,-0.281275,0.078250,0.348919,-0.147653,-0.012756 +0.126598,-0.275890,0.080003,0.347356,-0.144170,-0.012449 +0.125436,-0.270507,0.081632,0.345690,-0.140736,-0.012176 +0.124253,-0.265127,0.083140,0.343919,-0.137352,-0.011935 +0.123052,-0.259754,0.084529,0.342038,-0.134021,-0.011722 +0.121836,-0.254391,0.085803,0.340046,-0.130748,-0.011534 +0.120606,-0.249039,0.086963,0.337938,-0.127534,-0.011367 +0.119367,-0.243701,0.088013,0.335713,-0.124384,-0.011220 +0.118119,-0.238380,0.088954,0.333366,-0.121299,-0.011088 +0.116867,-0.233079,0.089791,0.330901,-0.118284,-0.010968 +0.115612,-0.227800,0.090524,0.328319,-0.115341,-0.010858 +0.114357,-0.222546,0.091157,0.325624,-0.112474,-0.010754 +0.113101,-0.217319,0.091692,0.322818,-0.109685,-0.010653 +0.111846,-0.212123,0.092133,0.319906,-0.106978,-0.010553 +0.110590,-0.206958,0.092480,0.316891,-0.104356,-0.010453 +0.109335,-0.201829,0.092738,0.313774,-0.101821,-0.010353 +0.108080,-0.196738,0.092909,0.310560,-0.099378,-0.010253 +0.106824,-0.191687,0.092995,0.307252,-0.097028,-0.010153 +0.105569,-0.186678,0.092999,0.303852,-0.094771,-0.010053 +0.104313,-0.181716,0.092923,0.300364,-0.092603,-0.009952 +0.103058,-0.176801,0.092771,0.296791,-0.090521,-0.009852 +0.101803,-0.171937,0.092544,0.293136,-0.088523,-0.009752 +0.100547,-0.167127,0.092245,0.289401,-0.086604,-0.009652 +0.099292,-0.162372,0.091878,0.285592,-0.084763,-0.009552 +0.098036,-0.157676,0.091443,0.281709,-0.082995,-0.009452 +0.096781,-0.153041,0.090945,0.277757,-0.081297,-0.009352 +0.095525,-0.148470,0.090386,0.273738,-0.079668,-0.009252 +0.094270,-0.143965,0.089768,0.269656,-0.078103,-0.009152 +0.093015,-0.139529,0.089093,0.265514,-0.076599,-0.009051 +0.091759,-0.135165,0.088365,0.261315,-0.075153,-0.008951 +0.090504,-0.130874,0.087587,0.257061,-0.073763,-0.008851 +0.089248,-0.126660,0.086760,0.252757,-0.072425,-0.008751 +0.087993,-0.122526,0.085887,0.248405,-0.071135,-0.008651 +0.086738,-0.118473,0.084971,0.244008,-0.069891,-0.008551 +0.085482,-0.114505,0.084014,0.239570,-0.068690,-0.008451 +0.084227,-0.110624,0.083020,0.235093,-0.067529,-0.008351 +0.082972,-0.106833,0.081990,0.230581,-0.066404,-0.008250 +0.081716,-0.103133,0.080927,0.226036,-0.065312,-0.008150 +0.080461,-0.099529,0.079834,0.221463,-0.064251,-0.008050 +0.079205,-0.096022,0.078714,0.216863,-0.063217,-0.007950 +0.077950,-0.092615,0.077568,0.212241,-0.062206,-0.007850 +0.076694,-0.089311,0.076401,0.207598,-0.061217,-0.007750 +0.075439,-0.086112,0.075213,0.202939,-0.060246,-0.007650 +0.074184,-0.083021,0.074009,0.198267,-0.059289,-0.007550 +0.072928,-0.080037,0.072789,0.193584,-0.058344,-0.007449 +0.071673,-0.077156,0.071558,0.188893,-0.057407,-0.007349 +0.070417,-0.074378,0.070317,0.184198,-0.056475,-0.007249 +0.069162,-0.071699,0.069070,0.179503,-0.055546,-0.007149 +0.067907,-0.069116,0.067818,0.174809,-0.054617,-0.007049 +0.066651,-0.066627,0.066565,0.170120,-0.053689,-0.006949 +0.065396,-0.064229,0.065311,0.165439,-0.052760,-0.006849 +0.064141,-0.061920,0.064058,0.160770,-0.051831,-0.006749 +0.062885,-0.059698,0.062804,0.156115,-0.050902,-0.006648 +0.061630,-0.057558,0.061551,0.151478,-0.049973,-0.006548 +0.060374,-0.055500,0.060297,0.146861,-0.049044,-0.006448 +0.059119,-0.053520,0.059044,0.142268,-0.048115,-0.006348 +0.057863,-0.051616,0.057791,0.137702,-0.047186,-0.006248 +0.056608,-0.049785,0.056537,0.133166,-0.046257,-0.006148 +0.055353,-0.048024,0.055284,0.128663,-0.045328,-0.006048 +0.054097,-0.046332,0.054030,0.124196,-0.044399,-0.005948 +0.052842,-0.044705,0.052777,0.119768,-0.043470,-0.005847 +0.051587,-0.043140,0.051524,0.115383,-0.042542,-0.005747 +0.050331,-0.041636,0.050270,0.111043,-0.041613,-0.005647 +0.049076,-0.040189,0.049017,0.106752,-0.040684,-0.005547 +0.047820,-0.038797,0.047763,0.102513,-0.039755,-0.005447 +0.046565,-0.037458,0.046510,0.098328,-0.038826,-0.005347 +0.045310,-0.036168,0.045256,0.094201,-0.037897,-0.005247 +0.044054,-0.034926,0.044003,0.090136,-0.036968,-0.005147 +0.042799,-0.033728,0.042749,0.086135,-0.036039,-0.005047 +0.041543,-0.032572,0.041496,0.082201,-0.035110,-0.004946 +0.040288,-0.031456,0.040243,0.078337,-0.034181,-0.004846 +0.039032,-0.030376,0.038989,0.074547,-0.033252,-0.004746 +0.037777,-0.029330,0.037736,0.070833,-0.032323,-0.004646 +0.036522,-0.028317,0.036482,0.067199,-0.031394,-0.004546 +0.035266,-0.027332,0.035229,0.063649,-0.030466,-0.004446 +0.034011,-0.026373,0.033975,0.060184,-0.029537,-0.004346 +0.032756,-0.025439,0.032722,0.056808,-0.028608,-0.004246 +0.031500,-0.024525,0.031469,0.053524,-0.027679,-0.004145 +0.030245,-0.023630,0.030215,0.050335,-0.026750,-0.004045 +0.028989,-0.022752,0.028962,0.047245,-0.025821,-0.003945 +0.027734,-0.021886,0.027708,0.044257,-0.024892,-0.003845 +0.026479,-0.021032,0.026455,0.041373,-0.023963,-0.003745 +0.025226,-0.020185,0.025204,0.038597,-0.023034,-0.003645 +0.023978,-0.019345,0.023958,0.035931,-0.022105,-0.003545 +0.022738,-0.018507,0.022720,0.033380,-0.021176,-0.003445 +0.021508,-0.017670,0.021491,0.030945,-0.020247,-0.003344 +0.020290,-0.016833,0.020275,0.028631,-0.019318,-0.003244 +0.019088,-0.015997,0.019074,0.026434,-0.018390,-0.003144 +0.017904,-0.015160,0.017891,0.024353,-0.017461,-0.003044 +0.016740,-0.014323,0.016729,0.022385,-0.016532,-0.002944 +0.015600,-0.013488,0.015589,0.020525,-0.015603,-0.002844 +0.014485,-0.012659,0.014476,0.018771,-0.014675,-0.002744 +0.013398,-0.011836,0.013390,0.017121,-0.013753,-0.002644 +0.012343,-0.011024,0.012335,0.015570,-0.012838,-0.002543 +0.011321,-0.010224,0.011314,0.014115,-0.011934,-0.002443 +0.010335,-0.009439,0.010328,0.012755,-0.011044,-0.002343 +0.009387,-0.008672,0.009382,0.011484,-0.010171,-0.002243 +0.008481,-0.007925,0.008476,0.010301,-0.009318,-0.002143 +0.007619,-0.007201,0.007614,0.009202,-0.008488,-0.002043 +0.006803,-0.006503,0.006799,0.008185,-0.007685,-0.001943 +0.006036,-0.005833,0.006032,0.007245,-0.006911,-0.001843 +0.005321,-0.005194,0.005317,0.006380,-0.006170,-0.001742 +0.004660,-0.004587,0.004657,0.005588,-0.005464,-0.001642 +0.004056,-0.004017,0.004052,0.004863,-0.004798,-0.001542 +0.003506,-0.003485,0.003502,0.004205,-0.004173,-0.001442 +0.003008,-0.002995,0.003004,0.003608,-0.003594,-0.001342 +0.002560,-0.002548,0.002556,0.003071,-0.003062,-0.001242 +0.002159,-0.002147,0.002155,0.002591,-0.002582,-0.001142 +0.001802,-0.001790,0.001798,0.002163,-0.002155,-0.001042 +0.001487,-0.001475,0.001483,0.001786,-0.001777,-0.000942 +0.001211,-0.001199,0.001207,0.001455,-0.001446,-0.000841 +0.000972,-0.000959,0.000968,0.001168,-0.001159,-0.000741 +0.000766,-0.000754,0.000762,0.000922,-0.000913,-0.000641 +0.000592,-0.000580,0.000588,0.000713,-0.000705,-0.000541 +0.000447,-0.000434,0.000443,0.000539,-0.000531,-0.000442 +0.000327,-0.000315,0.000323,0.000396,-0.000388,-0.000347 +0.000232,-0.000219,0.000228,0.000282,-0.000273,-0.000259 +0.000157,-0.000145,0.000153,0.000192,-0.000184,-0.000181 +0.000101,-0.000088,0.000097,0.000125,-0.000116,-0.000116 +0.000060,-0.000048,0.000056,0.000076,-0.000068,-0.000068 +0.000033,-0.000021,0.000029,0.000044,-0.000035,-0.000035 +0.000016,-0.000004,0.000012,0.000024,-0.000015,-0.000015 +0.000007,0.000005,0.000004,0.000013,-0.000005,-0.000005 +0.000004,0.000008,0.000000,0.000009,-0.000001,-0.000001 +0.000004,0.000009,-0.000000,0.000009,0.000000,0.000000 +0.000004,0.000009,-0.000000,0.000000,0.000000,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record4.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record4.offt new file mode 100644 index 00000000..c31ec1bf --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record4.offt @@ -0,0 +1,3433 @@ +-0.000000,0.000001,-0.000000,0.000000,0.000001,0.000000 +-0.000000,0.000001,-0.000000,-0.000000,0.000001,0.000000 +-0.000003,0.000004,-0.000003,-0.000003,0.000004,0.000004 +-0.000011,0.000012,-0.000011,-0.000013,0.000014,0.000013 +-0.000026,0.000027,-0.000026,-0.000031,0.000032,0.000031 +-0.000052,0.000053,-0.000052,-0.000062,0.000063,0.000062 +-0.000090,0.000091,-0.000090,-0.000108,0.000108,0.000108 +-0.000144,0.000145,-0.000144,-0.000172,0.000173,0.000172 +-0.000215,0.000216,-0.000216,-0.000258,0.000259,0.000258 +-0.000308,0.000309,-0.000308,-0.000368,0.000369,0.000369 +-0.000423,0.000424,-0.000423,-0.000507,0.000508,0.000507 +-0.000564,0.000565,-0.000565,-0.000676,0.000677,0.000676 +-0.000734,0.000735,-0.000734,-0.000879,0.000880,0.000879 +-0.000935,0.000935,-0.000935,-0.001119,0.001120,0.001120 +-0.001169,0.001170,-0.001169,-0.001400,0.001401,0.001400 +-0.001439,0.001440,-0.001439,-0.001724,0.001724,0.001724 +-0.001748,0.001749,-0.001748,-0.002094,0.002095,0.002094 +-0.002098,0.002099,-0.002098,-0.002514,0.002514,0.002514 +-0.002493,0.002494,-0.002493,-0.002986,0.002987,0.002986 +-0.002934,0.002934,-0.002934,-0.003514,0.003515,0.003514 +-0.003424,0.003424,-0.003424,-0.004101,0.004102,0.004101 +-0.003965,0.003966,-0.003965,-0.004750,0.004751,0.004750 +-0.004561,0.004562,-0.004561,-0.005464,0.005465,0.005465 +-0.005214,0.005215,-0.005214,-0.006247,0.006247,0.006247 +-0.005927,0.005928,-0.005927,-0.007100,0.007101,0.007100 +-0.006701,0.006702,-0.006702,-0.008028,0.008029,0.008029 +-0.007541,0.007542,-0.007541,-0.009034,0.009035,0.009034 +-0.008448,0.008448,-0.008448,-0.010120,0.010121,0.010120 +-0.009423,0.009425,-0.009424,-0.011290,0.011286,0.011290 +-0.010465,0.010474,-0.010473,-0.012547,0.012529,0.012547 +-0.011570,0.011598,-0.011598,-0.013894,0.013845,0.013894 +-0.012738,0.012800,-0.012799,-0.015333,0.015231,0.015334 +-0.013963,0.014082,-0.014082,-0.016869,0.016685,0.016870 +-0.015246,0.015447,-0.015447,-0.018505,0.018203,0.018505 +-0.016581,0.016898,-0.016897,-0.020243,0.019783,0.020243 +-0.017968,0.018437,-0.018436,-0.022086,0.021420,0.022086 +-0.019403,0.020066,-0.020062,-0.024038,0.023113,0.024038 +-0.020883,0.021788,-0.021775,-0.026102,0.024857,0.026102 +-0.022407,0.023605,-0.023570,-0.028280,0.026650,0.028281 +-0.023972,0.025512,-0.025446,-0.030577,0.028488,0.030577 +-0.025574,0.027507,-0.027400,-0.032994,0.030369,0.032995 +-0.027212,0.029589,-0.029429,-0.035536,0.032289,0.035536 +-0.028883,0.031754,-0.031530,-0.038205,0.034246,0.038206 +-0.030584,0.034000,-0.033702,-0.041005,0.036236,0.041005 +-0.032312,0.036324,-0.035941,-0.043938,0.038256,0.043938 +-0.034066,0.038723,-0.038245,-0.047008,0.040303,0.047008 +-0.035842,0.041195,-0.040611,-0.050217,0.042373,0.050217 +-0.037638,0.043738,-0.043037,-0.053569,0.044465,0.053569 +-0.039451,0.046349,-0.045520,-0.057067,0.046574,0.057068 +-0.041278,0.049024,-0.048058,-0.060715,0.048697,0.060715 +-0.043118,0.051762,-0.050648,-0.064514,0.050832,0.064515 +-0.044967,0.054560,-0.053286,-0.068469,0.052975,0.068469 +-0.046823,0.057416,-0.055972,-0.072578,0.055124,0.072579 +-0.048683,0.060326,-0.058701,-0.076844,0.057274,0.076844 +-0.050545,0.063288,-0.061473,-0.081265,0.059425,0.081265 +-0.052407,0.066300,-0.064283,-0.085841,0.061575,0.085842 +-0.054268,0.069359,-0.067129,-0.090573,0.063726,0.090574 +-0.056130,0.072463,-0.070009,-0.095461,0.065877,0.095461 +-0.057992,0.075608,-0.072920,-0.100504,0.068027,0.100504 +-0.059854,0.078792,-0.075860,-0.105702,0.070178,0.105703 +-0.061716,0.082013,-0.078826,-0.111056,0.072328,0.111057 +-0.063578,0.085268,-0.081815,-0.116566,0.074479,0.116566 +-0.065440,0.088554,-0.084824,-0.122231,0.076630,0.122231 +-0.067302,0.091870,-0.087852,-0.128052,0.078780,0.128052 +-0.069163,0.095211,-0.090896,-0.134028,0.080931,0.134028 +-0.071025,0.098576,-0.093952,-0.140160,0.083081,0.140160 +-0.072887,0.101962,-0.097019,-0.146447,0.085232,0.146447 +-0.074749,0.105366,-0.100093,-0.152890,0.087383,0.152890 +-0.076611,0.108787,-0.103173,-0.159488,0.089533,0.159488 +-0.078473,0.112220,-0.106255,-0.166240,0.091684,0.166242 +-0.080335,0.115664,-0.109338,-0.173142,0.093834,0.173151 +-0.082197,0.119116,-0.112421,-0.180192,0.095985,0.180216 +-0.084058,0.122574,-0.115503,-0.187386,0.098136,0.187437 +-0.085920,0.126034,-0.118586,-0.194722,0.100286,0.194813 +-0.087782,0.129495,-0.121669,-0.202196,0.102437,0.202344 +-0.089644,0.132956,-0.124751,-0.209805,0.104587,0.210031 +-0.091506,0.136417,-0.127834,-0.217545,0.106738,0.217873 +-0.093368,0.139878,-0.130917,-0.225415,0.108889,0.225871 +-0.095230,0.143339,-0.133999,-0.233410,0.111039,0.234025 +-0.097092,0.146800,-0.137082,-0.241528,0.113190,0.242334 +-0.098954,0.150261,-0.140164,-0.249765,0.115340,0.250799 +-0.100815,0.153722,-0.143247,-0.258119,0.117491,0.259419 +-0.102677,0.157183,-0.146330,-0.266586,0.119642,0.268194 +-0.104539,0.160644,-0.149412,-0.275163,0.121792,0.277125 +-0.106401,0.164105,-0.152495,-0.283848,0.123943,0.286212 +-0.108263,0.167566,-0.155578,-0.292636,0.126093,0.295454 +-0.110125,0.171027,-0.158660,-0.301525,0.128244,0.304852 +-0.111987,0.174488,-0.161743,-0.310511,0.130395,0.314405 +-0.113849,0.177949,-0.164826,-0.319593,0.132545,0.324114 +-0.115711,0.181410,-0.167908,-0.328766,0.134696,0.333978 +-0.117572,0.184871,-0.170991,-0.338027,0.136846,0.343998 +-0.119434,0.188332,-0.174074,-0.347373,0.138997,0.354173 +-0.121296,0.191793,-0.177156,-0.356802,0.141148,0.364504 +-0.123158,0.195254,-0.180239,-0.366310,0.143298,0.374991 +-0.125020,0.198715,-0.183322,-0.375894,0.145449,0.385632 +-0.126882,0.202176,-0.186404,-0.385550,0.147599,0.396428 +-0.128744,0.205637,-0.189487,-0.395276,0.149750,0.407374 +-0.130606,0.209098,-0.192569,-0.405069,0.151901,0.418467 +-0.132467,0.212559,-0.195652,-0.414926,0.154051,0.429705 +-0.134329,0.216020,-0.198735,-0.424842,0.156202,0.441084 +-0.136191,0.219481,-0.201817,-0.434817,0.158352,0.452601 +-0.138053,0.222941,-0.204900,-0.444845,0.160503,0.464254 +-0.139915,0.226402,-0.207983,-0.454924,0.162654,0.476038 +-0.141777,0.229863,-0.211065,-0.465051,0.164804,0.487951 +-0.143639,0.233324,-0.214148,-0.475223,0.166955,0.499989 +-0.145501,0.236785,-0.217231,-0.485437,0.169105,0.512151 +-0.147363,0.240246,-0.220313,-0.495690,0.171256,0.524431 +-0.149224,0.243707,-0.223396,-0.505978,0.173407,0.536828 +-0.151086,0.247168,-0.226479,-0.516298,0.175557,0.549338 +-0.152948,0.250629,-0.229561,-0.526648,0.177708,0.561959 +-0.154810,0.254090,-0.232644,-0.537024,0.179858,0.574686 +-0.156672,0.257551,-0.235727,-0.547422,0.182009,0.587518 +-0.158534,0.261012,-0.238809,-0.557841,0.184159,0.600450 +-0.160396,0.264473,-0.241892,-0.568277,0.186310,0.613479 +-0.162258,0.267934,-0.244975,-0.578727,0.188461,0.626604 +-0.164120,0.271395,-0.248057,-0.589187,0.190611,0.639820 +-0.165981,0.274856,-0.251140,-0.599654,0.192762,0.653124 +-0.167843,0.278317,-0.254222,-0.610126,0.194912,0.666513 +-0.169705,0.281778,-0.257305,-0.620600,0.197063,0.679985 +-0.171567,0.285239,-0.260388,-0.631073,0.199214,0.693536 +-0.173429,0.288700,-0.263470,-0.641547,0.201364,0.707162 +-0.175291,0.292161,-0.266553,-0.652020,0.203515,0.720862 +-0.177153,0.295622,-0.269636,-0.662493,0.205665,0.734631 +-0.179015,0.299083,-0.272718,-0.672967,0.207816,0.748466 +-0.180876,0.302544,-0.275801,-0.683440,0.209967,0.762365 +-0.182738,0.306005,-0.278884,-0.693914,0.212117,0.776325 +-0.184600,0.309466,-0.281966,-0.704387,0.214268,0.790342 +-0.186462,0.312927,-0.285049,-0.714861,0.216418,0.804413 +-0.188324,0.316388,-0.288132,-0.725334,0.218569,0.818535 +-0.190186,0.319849,-0.291214,-0.735808,0.220720,0.832704 +-0.192048,0.323310,-0.294297,-0.746281,0.222870,0.846919 +-0.193910,0.326771,-0.297380,-0.756755,0.225021,0.861175 +-0.195772,0.330232,-0.300462,-0.767228,0.227171,0.875470 +-0.197633,0.333693,-0.303545,-0.777701,0.229322,0.889801 +-0.199495,0.337154,-0.306627,-0.788175,0.231473,0.904164 +-0.201357,0.340615,-0.309710,-0.798648,0.233623,0.918556 +-0.203219,0.344076,-0.312793,-0.809122,0.235774,0.932974 +-0.205081,0.347537,-0.315875,-0.819595,0.237924,0.947415 +-0.206943,0.350998,-0.318958,-0.830069,0.240075,0.961877 +-0.208805,0.354458,-0.322041,-0.840542,0.242226,0.976355 +-0.210667,0.357919,-0.325123,-0.851016,0.244376,0.990846 +-0.212528,0.361380,-0.328206,-0.861489,0.246527,1.005350 +-0.214390,0.364841,-0.331289,-0.871962,0.248677,1.019860 +-0.216252,0.368302,-0.334371,-0.882436,0.250828,1.034370 +-0.218114,0.371763,-0.337454,-0.892909,0.252979,1.048890 +-0.219976,0.375224,-0.340537,-0.903383,0.255129,1.063400 +-0.221838,0.378685,-0.343619,-0.913856,0.257280,1.077920 +-0.223700,0.382146,-0.346702,-0.924330,0.259430,1.092440 +-0.225562,0.385607,-0.349785,-0.934803,0.261581,1.106950 +-0.227424,0.389068,-0.352867,-0.945277,0.263732,1.121470 +-0.229285,0.392529,-0.355950,-0.955750,0.265882,1.135980 +-0.231147,0.395990,-0.359033,-0.966223,0.268033,1.150500 +-0.233009,0.399451,-0.362115,-0.976697,0.270183,1.165010 +-0.234871,0.402912,-0.365198,-0.987170,0.272334,1.179530 +-0.236733,0.406373,-0.368280,-0.997644,0.274485,1.194040 +-0.238595,0.409834,-0.371363,-1.008120,0.276635,1.208560 +-0.240457,0.413295,-0.374446,-1.018590,0.278786,1.223080 +-0.242319,0.416756,-0.377528,-1.029060,0.280936,1.237590 +-0.244181,0.420217,-0.380611,-1.039540,0.283087,1.252110 +-0.246042,0.423678,-0.383694,-1.050010,0.285238,1.266620 +-0.247904,0.427139,-0.386776,-1.060480,0.287388,1.281140 +-0.249766,0.430600,-0.389859,-1.070960,0.289539,1.295650 +-0.251628,0.434061,-0.392942,-1.081430,0.291689,1.310170 +-0.253490,0.437522,-0.396024,-1.091900,0.293840,1.324680 +-0.255352,0.440983,-0.399107,-1.102380,0.295991,1.339200 +-0.257214,0.444444,-0.402190,-1.112850,0.298141,1.353720 +-0.259076,0.447905,-0.405272,-1.123330,0.300292,1.368230 +-0.260937,0.451366,-0.408355,-1.133800,0.302442,1.382750 +-0.262799,0.454827,-0.411438,-1.144270,0.304593,1.397260 +-0.264661,0.458288,-0.414520,-1.154750,0.306744,1.411780 +-0.266523,0.461749,-0.417603,-1.165220,0.308894,1.426290 +-0.268385,0.465210,-0.420685,-1.175690,0.311045,1.440810 +-0.270247,0.468671,-0.423768,-1.186170,0.313195,1.455330 +-0.272109,0.472132,-0.426851,-1.196640,0.315346,1.469840 +-0.273971,0.475593,-0.429933,-1.207110,0.317497,1.484360 +-0.275833,0.479054,-0.433016,-1.217590,0.319647,1.498870 +-0.277694,0.482515,-0.436099,-1.228060,0.321798,1.513390 +-0.279556,0.485975,-0.439181,-1.238530,0.323948,1.527900 +-0.281418,0.489436,-0.442264,-1.249010,0.326099,1.542420 +-0.283280,0.492897,-0.445347,-1.259480,0.328250,1.556930 +-0.285142,0.496358,-0.448429,-1.269950,0.330400,1.571450 +-0.287004,0.499819,-0.451512,-1.280430,0.332551,1.585970 +-0.288866,0.503280,-0.454595,-1.290900,0.334701,1.600480 +-0.290728,0.506741,-0.457677,-1.301370,0.336852,1.615000 +-0.292589,0.510202,-0.460760,-1.311850,0.339003,1.629510 +-0.294451,0.513663,-0.463843,-1.322320,0.341153,1.644030 +-0.296313,0.517124,-0.466925,-1.332790,0.343304,1.658540 +-0.298175,0.520585,-0.470008,-1.343270,0.345454,1.673060 +-0.300037,0.524046,-0.473090,-1.353740,0.347605,1.687570 +-0.301899,0.527507,-0.476173,-1.364200,0.349756,1.702080 +-0.303761,0.530968,-0.479256,-1.374660,0.351906,1.716590 +-0.305623,0.534429,-0.482338,-1.385110,0.354057,1.731080 +-0.307485,0.537890,-0.485421,-1.395540,0.356207,1.745560 +-0.309346,0.541351,-0.488504,-1.405950,0.358358,1.760020 +-0.311208,0.544812,-0.491586,-1.416340,0.360509,1.774460 +-0.313070,0.548273,-0.494669,-1.426710,0.362659,1.788880 +-0.314932,0.551734,-0.497752,-1.437050,0.364810,1.803270 +-0.316794,0.555195,-0.500834,-1.447360,0.366960,1.817630 +-0.318656,0.558656,-0.503917,-1.457630,0.369111,1.831970 +-0.320518,0.562117,-0.507000,-1.467870,0.371262,1.846260 +-0.322380,0.565578,-0.510082,-1.478070,0.373412,1.860520 +-0.324242,0.569039,-0.513165,-1.488230,0.375563,1.874730 +-0.326103,0.572500,-0.516248,-1.498340,0.377713,1.888910 +-0.327965,0.575961,-0.519330,-1.508400,0.379864,1.903030 +-0.329827,0.579422,-0.522413,-1.518410,0.382015,1.917100 +-0.331689,0.582883,-0.525496,-1.528370,0.384165,1.931120 +-0.333551,0.586344,-0.528578,-1.538270,0.386316,1.945080 +-0.335413,0.589805,-0.531661,-1.548100,0.388466,1.958980 +-0.337275,0.593266,-0.534743,-1.557870,0.390617,1.972820 +-0.339137,0.596727,-0.537826,-1.567570,0.392768,1.986590 +-0.340998,0.600188,-0.540909,-1.577210,0.394918,2.000290 +-0.342860,0.603649,-0.543991,-1.586770,0.397069,2.013920 +-0.344722,0.607110,-0.547074,-1.596250,0.399219,2.027470 +-0.346584,0.610571,-0.550157,-1.605650,0.401370,2.040940 +-0.348446,0.614031,-0.553239,-1.614970,0.403521,2.054330 +-0.350308,0.617492,-0.556322,-1.624200,0.405671,2.067640 +-0.352170,0.620953,-0.559405,-1.633340,0.407822,2.080860 +-0.354032,0.624414,-0.562487,-1.642390,0.409972,2.093980 +-0.355894,0.627875,-0.565570,-1.651340,0.412123,2.107010 +-0.357755,0.631336,-0.568653,-1.660200,0.414274,2.119950 +-0.359617,0.634797,-0.571735,-1.668950,0.416424,2.132780 +-0.361479,0.638258,-0.574818,-1.677600,0.418575,2.145510 +-0.363341,0.641719,-0.577901,-1.686140,0.420725,2.158130 +-0.365203,0.645180,-0.580983,-1.694570,0.422876,2.170650 +-0.367065,0.648641,-0.584066,-1.702880,0.425027,2.183050 +-0.368927,0.652102,-0.587148,-1.711080,0.427177,2.195330 +-0.370789,0.655563,-0.590231,-1.719160,0.429328,2.207490 +-0.372650,0.659024,-0.593314,-1.727110,0.431478,2.219530 +-0.374512,0.662485,-0.596396,-1.734940,0.433629,2.231450 +-0.376374,0.665946,-0.599479,-1.742630,0.435780,2.243240 +-0.378236,0.669407,-0.602562,-1.750200,0.437930,2.254890 +-0.380098,0.672868,-0.605644,-1.757620,0.440081,2.266410 +-0.381960,0.676329,-0.608727,-1.764910,0.442231,2.277790 +-0.383822,0.679790,-0.611810,-1.772060,0.444382,2.289030 +-0.385684,0.683251,-0.614892,-1.779060,0.446533,2.300130 +-0.387546,0.686712,-0.617975,-1.785910,0.448683,2.311080 +-0.389407,0.690173,-0.621058,-1.792610,0.450834,2.321880 +-0.391269,0.693634,-0.624140,-1.799150,0.452984,2.332520 +-0.393131,0.697095,-0.627223,-1.805550,0.455135,2.343010 +-0.394993,0.700556,-0.630306,-1.811780,0.457286,2.353350 +-0.396855,0.704017,-0.633388,-1.817860,0.459436,2.363530 +-0.398717,0.707478,-0.636471,-1.823780,0.461587,2.373550 +-0.400579,0.710939,-0.639554,-1.829550,0.463737,2.383420 +-0.402441,0.714400,-0.642636,-1.835160,0.465888,2.393130 +-0.404303,0.717861,-0.645719,-1.840620,0.468039,2.402680 +-0.406164,0.721322,-0.648801,-1.845920,0.470189,2.412080 +-0.408026,0.724783,-0.651884,-1.851070,0.472340,2.421330 +-0.409888,0.728244,-0.654967,-1.856060,0.474490,2.430420 +-0.411750,0.731705,-0.658049,-1.860890,0.476641,2.439350 +-0.413612,0.735166,-0.661132,-1.865570,0.478792,2.448130 +-0.415474,0.738627,-0.664215,-1.870090,0.480942,2.456760 +-0.417336,0.742088,-0.667297,-1.874460,0.483093,2.465220 +-0.419198,0.745548,-0.670380,-1.878680,0.485243,2.473540 +-0.421059,0.749009,-0.673463,-1.882730,0.487394,2.481690 +-0.422921,0.752470,-0.676545,-1.886640,0.489545,2.489690 +-0.424783,0.755931,-0.679628,-1.890390,0.491695,2.497540 +-0.426644,0.759392,-0.682711,-1.894000,0.493846,2.505230 +-0.428502,0.762852,-0.685793,-1.897470,0.495996,2.512770 +-0.430355,0.766307,-0.688876,-1.900800,0.498147,2.520140 +-0.432199,0.769756,-0.691959,-1.903990,0.500298,2.527370 +-0.434032,0.773196,-0.695041,-1.907040,0.502448,2.534440 +-0.435851,0.776624,-0.698124,-1.909970,0.504599,2.541350 +-0.437655,0.780037,-0.701206,-1.912760,0.506749,2.548110 +-0.439440,0.783434,-0.704289,-1.915440,0.508900,2.554710 +-0.441203,0.786810,-0.707372,-1.917990,0.511051,2.561150 +-0.442943,0.790165,-0.710454,-1.920420,0.513201,2.567440 +-0.444656,0.793495,-0.713537,-1.922740,0.515352,2.573580 +-0.446340,0.796798,-0.716620,-1.924950,0.517502,2.579560 +-0.447993,0.800070,-0.719702,-1.927040,0.519653,2.585380 +-0.449611,0.803310,-0.722785,-1.929030,0.521804,2.591050 +-0.451192,0.806515,-0.725868,-1.930920,0.523954,2.596560 +-0.452734,0.809682,-0.728950,-1.932710,0.526105,2.601920 +-0.454234,0.812809,-0.732033,-1.934400,0.528255,2.607120 +-0.455689,0.815893,-0.735116,-1.936000,0.530406,2.612170 +-0.457097,0.818931,-0.738198,-1.937510,0.532557,2.617060 +-0.458455,0.821921,-0.741281,-1.938930,0.534707,2.621790 +-0.459760,0.824860,-0.744362,-1.940270,0.536858,2.626370 +-0.461011,0.827746,-0.747438,-1.941530,0.539008,2.630800 +-0.462203,0.830577,-0.750507,-1.942710,0.541159,2.635070 +-0.463336,0.833348,-0.753567,-1.943810,0.543310,2.639180 +-0.464410,0.836059,-0.756615,-1.944840,0.545460,2.643140 +-0.465428,0.838705,-0.759648,-1.945810,0.547611,2.646940 +-0.466392,0.841286,-0.762664,-1.946710,0.549761,2.650590 +-0.467305,0.843797,-0.765660,-1.947540,0.551912,2.654080 +-0.468169,0.846237,-0.768633,-1.948320,0.554063,2.657410 +-0.468987,0.848603,-0.771581,-1.949040,0.556213,2.660590 +-0.469762,0.850892,-0.774501,-1.949710,0.558364,2.663620 +-0.470495,0.853102,-0.777392,-1.950330,0.560514,2.666490 +-0.471191,0.855230,-0.780249,-1.950900,0.562665,2.669200 +-0.471851,0.857274,-0.783071,-1.951430,0.564815,2.671760 +-0.472478,0.859230,-0.785854,-1.951920,0.566961,2.674160 +-0.473075,0.861097,-0.788597,-1.952370,0.569101,2.676420 +-0.473644,0.862871,-0.791297,-1.952780,0.571231,2.678530 +-0.474187,0.864551,-0.793950,-1.953170,0.573348,2.680500 +-0.474708,0.866133,-0.796556,-1.953530,0.575450,2.682330 +-0.475209,0.867615,-0.799110,-1.953860,0.577532,2.684020 +-0.475693,0.868994,-0.801610,-1.954170,0.579592,2.685570 +-0.476162,0.870268,-0.804055,-1.954460,0.581627,2.687000 +-0.476618,0.871434,-0.806440,-1.954740,0.583634,2.688300 +-0.477065,0.872490,-0.808764,-1.955000,0.585609,2.689470 +-0.477505,0.873436,-0.811024,-1.955250,0.587549,2.690530 +-0.477940,0.874273,-0.813217,-1.955500,0.589452,2.691460 +-0.478373,0.875006,-0.815341,-1.955740,0.591314,2.692280 +-0.478808,0.875635,-0.817393,-1.955990,0.593132,2.692990 +-0.479245,0.876165,-0.819370,-1.956240,0.594903,2.693590 +-0.479689,0.876597,-0.821271,-1.956490,0.596624,2.694090 +-0.480141,0.876935,-0.823092,-1.956750,0.598292,2.694480 +-0.480604,0.877180,-0.824832,-1.957030,0.599903,2.694770 +-0.481081,0.877335,-0.826493,-1.957320,0.601455,2.694960 +-0.481574,0.877403,-0.828077,-1.957630,0.602944,2.695070 +-0.482086,0.877387,-0.829588,-1.957960,0.604368,2.695080 +-0.482619,0.877289,-0.831028,-1.958310,0.605723,2.695000 +-0.483177,0.877111,-0.832399,-1.958700,0.607005,2.694850 +-0.483761,0.876857,-0.833704,-1.959110,0.608213,2.694610 +-0.484375,0.876529,-0.834946,-1.959560,0.609343,2.694290 +-0.485021,0.876129,-0.836128,-1.960050,0.610394,2.693900 +-0.485701,0.875661,-0.837251,-1.960580,0.611370,2.693430 +-0.486418,0.875126,-0.838318,-1.961150,0.612274,2.692900 +-0.487175,0.874527,-0.839333,-1.961760,0.613108,2.692300 +-0.487974,0.873867,-0.840297,-1.962430,0.613877,2.691650 +-0.488818,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-0.489708,0.872375,-0.842083,-1.963922,0.615226,2.690153 +-0.490642,0.871548,-0.842905,-1.964749,0.615808,2.689326 +-0.491616,0.870672,-0.843673,-1.965625,0.616324,2.688450 +-0.492624,0.869752,-0.844385,-1.966545,0.616773,2.687530 +-0.493663,0.868791,-0.845038,-1.967507,0.617152,2.686569 +-0.494728,0.867793,-0.845629,-1.968504,0.617459,2.685571 +-0.495813,0.866764,-0.846154,-1.969533,0.617694,2.684542 +-0.496915,0.865707,-0.846612,-1.970590,0.617855,2.683485 +-0.498028,0.864628,-0.847000,-1.971669,0.617941,2.682406 +-0.499146,0.863531,-0.847318,-1.972766,0.617952,2.681309 +-0.500266,0.862421,-0.847563,-1.973876,0.617888,2.680200 +-0.501382,0.861304,-0.847734,-1.974993,0.617749,2.679082 +-0.502489,0.860184,-0.847830,-1.976113,0.617536,2.677962 +-0.503582,0.859066,-0.847852,-1.977231,0.617250,2.676845 +-0.504656,0.857956,-0.847798,-1.978341,0.616892,2.675734 +-0.505707,0.856858,-0.847670,-1.979439,0.616464,2.674636 +-0.506729,0.855777,-0.847468,-1.980520,0.615967,2.673555 +-0.507718,0.854718,-0.847192,-1.981579,0.615404,2.672496 +-0.508670,0.853686,-0.846844,-1.982611,0.614778,2.671464 +-0.509580,0.852686,-0.846426,-1.983611,0.614090,2.670464 +-0.510444,0.851721,-0.845939,-1.984576,0.613345,2.669499 +-0.511259,0.850797,-0.845386,-1.985500,0.612546,2.668575 +-0.512020,0.849918,-0.844769,-1.986380,0.611696,2.667696 +-0.512724,0.849086,-0.844090,-1.987211,0.610799,2.666864 +-0.513369,0.848307,-0.843354,-1.987990,0.609859,2.666085 +-0.513951,0.847584,-0.842562,-1.988713,0.608881,2.665362 +-0.514467,0.846919,-0.841720,-1.989378,0.607868,2.664697 +-0.514916,0.846317,-0.840830,-1.989980,0.606825,2.664095 +-0.515294,0.845779,-0.839896,-1.990518,0.605757,2.663557 +-0.515602,0.845308,-0.838923,-1.990989,0.604669,2.663086 +-0.515836,0.844906,-0.837916,-1.991391,0.603566,2.662684 +-0.515997,0.844575,-0.836878,-1.991722,0.602452,2.662353 +-0.516083,0.844316,-0.835814,-1.991981,0.601333,2.662095 +-0.516094,0.844132,-0.834729,-1.992166,0.600213,2.661910 +-0.516030,0.844021,-0.833628,-1.992276,0.599098,2.661799 +-0.515891,0.843985,-0.832516,-1.992312,0.597993,2.661764 +-0.515678,0.844025,-0.831398,-1.992272,0.596902,2.661803 +-0.515392,0.844139,-0.830279,-1.992158,0.595831,2.661918 +-0.515034,0.844328,-0.829164,-1.991969,0.594784,2.662106 +-0.514606,0.844591,-0.828058,-1.991707,0.593766,2.662369 +-0.514109,0.844925,-0.826965,-1.991372,0.592782,2.662703 +-0.513546,0.845331,-0.825892,-1.990966,0.591836,2.663109 +-0.512920,0.845805,-0.824842,-1.990492,0.590932,2.663583 +-0.512232,0.846347,-0.823820,-1.989950,0.590074,2.664125 +-0.511487,0.846953,-0.822832,-1.989344,0.589267,2.664731 +-0.510688,0.847620,-0.821881,-1.988677,0.588513,2.665399 +-0.509838,0.848347,-0.820971,-1.987950,0.587817,2.666125 +-0.508941,0.849129,-0.820107,-1.987168,0.587181,2.666907 +-0.508001,0.849963,-0.819293,-1.986335,0.586608,2.667741 +-0.507022,0.850845,-0.818532,-1.985452,0.586101,2.668623 +-0.506010,0.851771,-0.817828,-1.984526,0.585662,2.669549 +-0.504967,0.852737,-0.817184,-1.983560,0.585293,2.670516 +-0.503899,0.853740,-0.816602,-1.982557,0.584996,2.671518 +-0.502811,0.854773,-0.816086,-1.981524,0.584771,2.672551 +-0.501708,0.855833,-0.815638,-1.980464,0.584621,2.673611 +-0.500594,0.856915,-0.815259,-1.979382,0.584545,2.674693 +-0.499475,0.858014,-0.814951,-1.978283,0.584545,2.675792 +-0.498355,0.859125,-0.814717,-1.977172,0.584619,2.676903 +-0.497240,0.860243,-0.814556,-1.976054,0.584768,2.678021 +-0.496135,0.861363,-0.814470,-1.974934,0.584991,2.679141 +-0.495044,0.862480,-0.814459,-1.973817,0.585288,2.680258 +-0.493973,0.863589,-0.814523,-1.972708,0.585655,2.681367 +-0.492926,0.864685,-0.814661,-1.971612,0.586093,2.682463 +-0.491908,0.865763,-0.814874,-1.970534,0.586599,2.683541 +-0.490924,0.866819,-0.815160,-1.969479,0.587171,2.684597 +-0.489978,0.867846,-0.815517,-1.968451,0.587806,2.685625 +-0.489074,0.868842,-0.815945,-1.967455,0.588502,2.686620 +-0.488216,0.869801,-0.816441,-1.966496,0.589254,2.687579 +-0.487409,0.870719,-0.817004,-1.965578,0.590061,2.688498 +-0.486655,0.871593,-0.817630,-1.964705,0.590918,2.689371 +-0.485959,0.872417,-0.818316,-1.963880,0.591821,2.690195 +-0.485323,0.873188,-0.819061,-1.963109,0.592766,2.690966 +-0.484750,0.873904,-0.819859,-1.962393,0.593750,2.691682 +-0.484243,0.874560,-0.820709,-1.961737,0.594767,2.692338 +-0.483804,0.875154,-0.821605,-1.961144,0.595814,2.692932 +-0.483435,0.875682,-0.822544,-1.960615,0.596885,2.693461 +-0.483138,0.876144,-0.823522,-1.960153,0.597975,2.693922 +-0.482913,0.876536,-0.824534,-1.959761,0.599080,2.694314 +-0.482763,0.876857,-0.825576,-1.959440,0.600195,2.694635 +-0.482688,0.877105,-0.826643,-1.959192,0.601315,2.694884 +-0.482687,0.877280,-0.827731,-1.959017,0.602434,2.695058 +-0.482761,0.877380,-0.828833,-1.958917,0.603548,2.695158 +-0.482911,0.877405,-0.829946,-1.958892,0.604651,2.695183 +-0.483134,0.877355,-0.831065,-1.958942,0.605740,2.695133 +-0.483430,0.877231,-0.832184,-1.959067,0.606808,2.695009 +-0.483798,0.877031,-0.833298,-1.959266,0.607851,2.694810 +-0.484236,0.876759,-0.834403,-1.959538,0.608864,2.694537 +-0.484742,0.876414,-0.835493,-1.959883,0.609843,2.694193 +-0.485314,0.875999,-0.836563,-1.960298,0.610784,2.693777 +-0.485949,0.875515,-0.837609,-1.960782,0.611682,2.693293 +-0.486644,0.874965,-0.838627,-1.961333,0.612533,2.692743 +-0.487397,0.874350,-0.839610,-1.961947,0.613333,2.692128 +-0.488203,0.873674,-0.840556,-1.962623,0.614079,2.691452 +-0.489060,0.872940,-0.841459,-1.963358,0.614767,2.690718 +-0.489963,0.872150,-0.842316,-1.964147,0.615394,2.689928 +-0.490909,0.871309,-0.843123,-1.964988,0.615958,2.689088 +-0.491893,0.870421,-0.843877,-1.965876,0.616456,2.688199 +-0.492910,0.869489,-0.844573,-1.966808,0.616885,2.687267 +-0.493956,0.868517,-0.845208,-1.967780,0.617245,2.686295 +-0.495027,0.867510,-0.845781,-1.968787,0.617532,2.685289 +-0.496118,0.866473,-0.846288,-1.969824,0.617746,2.684251 +-0.497223,0.865410,-0.846727,-1.970888,0.617886,2.683188 +-0.498338,0.864325,-0.847096,-1.971972,0.617951,2.682103 +-0.499457,0.863224,-0.847393,-1.973073,0.617941,2.681002 +-0.500577,0.862112,-0.847617,-1.974185,0.617857,2.679890 +-0.501690,0.860993,-0.847768,-1.975304,0.617697,2.678771 +-0.502794,0.859873,-0.847844,-1.976424,0.617464,2.677652 +-0.503882,0.858757,-0.847844,-1.977540,0.617158,2.676535 +-0.504950,0.857650,-0.847770,-1.978648,0.616780,2.675428 +-0.505994,0.856556,-0.847621,-1.979741,0.616332,2.674334 +-0.507007,0.855481,-0.847398,-1.980817,0.615817,2.673259 +-0.507986,0.854429,-0.847103,-1.981868,0.615236,2.672207 +-0.508927,0.853405,-0.846735,-1.982892,0.614593,2.671183 +-0.509824,0.852414,-0.846298,-1.983883,0.613889,2.670192 +-0.510675,0.851461,-0.845792,-1.984837,0.613129,2.669239 +-0.511475,0.850548,-0.845221,-1.985749,0.612315,2.668327 +-0.512221,0.849682,-0.844586,-1.986615,0.611452,2.667460 +-0.512909,0.848865,-0.843891,-1.987433,0.610542,2.666643 +-0.513537,0.848101,-0.843139,-1.988196,0.609591,2.665879 +-0.514101,0.847393,-0.842333,-1.988904,0.608603,2.665171 +-0.514598,0.846746,-0.841477,-1.989551,0.607581,2.664524 +-0.515028,0.846161,-0.840575,-1.990136,0.606531,2.663939 +-0.515387,0.845641,-0.839630,-1.990656,0.605457,2.663419 +-0.515674,0.845189,-0.838647,-1.991108,0.604364,2.662967 +-0.515888,0.844807,-0.837630,-1.991490,0.603258,2.662585 +-0.516028,0.844496,-0.836585,-1.991801,0.602142,2.662274 +-0.516094,0.844258,-0.835514,-1.992039,0.601022,2.662036 +-0.516084,0.844093,-0.834425,-1.992204,0.599903,2.661872 +-0.515999,0.844004,-0.833320,-1.992293,0.598790,2.661782 +-0.515839,0.843989,-0.832206,-1.992308,0.597688,2.661767 +-0.515606,0.844049,-0.831087,-1.992248,0.596603,2.661827 +-0.515300,0.844184,-0.829969,-1.992113,0.595538,2.661963 +-0.514922,0.844394,-0.828856,-1.991903,0.594499,2.662172 +-0.514474,0.844676,-0.827753,-1.991621,0.593490,2.662454 +-0.513959,0.845031,-0.826665,-1.991266,0.592515,2.662809 +-0.513378,0.845456,-0.825598,-1.990841,0.591581,2.663234 +-0.512735,0.845949,-0.824555,-1.990348,0.590689,2.663727 +-0.512031,0.846509,-0.823542,-1.989789,0.589845,2.664287 +-0.511271,0.847132,-0.822564,-1.989165,0.589052,2.664910 +-0.510457,0.847816,-0.821624,-1.988481,0.588314,2.665594 +-0.509594,0.848558,-0.820726,-1.987739,0.587634,2.666337 +-0.508684,0.849355,-0.819876,-1.986942,0.587016,2.667133 +-0.507733,0.850203,-0.819076,-1.986094,0.586461,2.667981 +-0.506744,0.851098,-0.818331,-1.985200,0.585972,2.668876 +-0.505723,0.852035,-0.817643,-1.984262,0.585552,2.669814 +-0.504673,0.853012,-0.817016,-1.983285,0.585203,2.670790 +-0.503599,0.854024,-0.816452,-1.982273,0.584926,2.671802 +-0.502506,0.855065,-0.815955,-1.981232,0.584722,2.672843 +-0.501399,0.856132,-0.815525,-1.980166,0.584592,2.673910 +-0.500283,0.857219,-0.815166,-1.979078,0.584538,2.674997 +-0.499164,0.858321,-0.814879,-1.977976,0.584558,2.676100 +-0.498045,0.859435,-0.814665,-1.976862,0.584653,2.677213 +-0.496932,0.860554,-0.814525,-1.975743,0.584823,2.678332 +-0.495830,0.861674,-0.814459,-1.974624,0.585066,2.679452 +-0.494745,0.862789,-0.814469,-1.973508,0.585383,2.680567 +-0.493680,0.863895,-0.814554,-1.972402,0.585770,2.681673 +-0.492640,0.864986,-0.814713,-1.971311,0.586227,2.682765 +-0.491631,0.866059,-0.814946,-1.970238,0.586752,2.683837 +-0.490657,0.867107,-0.815252,-1.969190,0.587341,2.684885 +-0.489722,0.868126,-0.815629,-1.968171,0.587993,2.685904 +-0.488831,0.869112,-0.816076,-1.967185,0.588705,2.686890 +-0.487987,0.870060,-0.816591,-1.966237,0.589473,2.687839 +-0.487194,0.870966,-0.817171,-1.965331,0.590294,2.688745 +-0.486456,0.871826,-0.817814,-1.964471,0.591164,2.689605 +-0.485776,0.872636,-0.818517,-1.963661,0.592079,2.690415 +-0.485158,0.873393,-0.819277,-1.962904,0.593036,2.691171 +-0.484603,0.874092,-0.820090,-1.962205,0.594029,2.691870 +-0.484114,0.874731,-0.820953,-1.961566,0.595055,2.692509 +-0.483695,0.875307,-0.821862,-1.960990,0.596109,2.693085 +-0.483345,0.875817,-0.822812,-1.960480,0.597186,2.693596 +-0.483068,0.876260,-0.823800,-1.960037,0.598281,2.694038 +-0.482864,0.876632,-0.824821,-1.959665,0.599389,2.694411 +-0.482735,0.876933,-0.825870,-1.959364,0.600506,2.694711 +-0.482680,0.877161,-0.826943,-1.959136,0.601626,2.694939 +-0.482700,0.877315,-0.828035,-1.958982,0.602744,2.695093 +-0.482795,0.877395,-0.829141,-1.958903,0.603855,2.695173 +-0.482965,0.877399,-0.830256,-1.958898,0.604955,2.695177 +-0.483209,0.877328,-0.831376,-1.958969,0.606038,2.695106 +-0.483525,0.877183,-0.832494,-1.959114,0.607100,2.694961 +-0.483912,0.876963,-0.833606,-1.959334,0.608135,2.694741 +-0.484370,0.876671,-0.834707,-1.959627,0.609140,2.694449 +-0.484894,0.876306,-0.835792,-1.959991,0.610109,2.694084 +-0.485484,0.875872,-0.836856,-1.960426,0.611038,2.693650 +-0.486136,0.875369,-0.837895,-1.960928,0.611923,2.693147 +-0.486848,0.874800,-0.838903,-1.961497,0.612760,2.692578 +-0.487616,0.874168,-0.839877,-1.962129,0.613545,2.691946 +-0.488436,0.873476,-0.840811,-1.962821,0.614276,2.691254 +-0.489306,0.872726,-0.841702,-1.963571,0.614947,2.690504 +-0.490222,0.871922,-0.842546,-1.964375,0.615557,2.689700 +-0.491178,0.871067,-0.843338,-1.965230,0.616103,2.688846 +-0.492172,0.870166,-0.844076,-1.966131,0.616582,2.687945 +-0.493198,0.869223,-0.844755,-1.967074,0.616992,2.687001 +-0.494251,0.868241,-0.845374,-1.968056,0.617332,2.686019 +-0.495328,0.867225,-0.845928,-1.969072,0.617599,2.685003 +-0.496423,0.866180,-0.846417,-1.970117,0.617792,2.683958 +-0.497532,0.865110,-0.846836,-1.971187,0.617912,2.682889 +-0.498648,0.864021,-0.847186,-1.972276,0.617956,2.681799 +-0.499768,0.862916,-0.847463,-1.973381,0.617925,2.680694 +-0.500887,0.861802,-0.847667,-1.974495,0.617820,2.679580 +-0.501998,0.860682,-0.847796,-1.975615,0.617640,2.678460 +-0.503098,0.859563,-0.847851,-1.976734,0.617386,2.677341 +-0.504181,0.858449,-0.847831,-1.977849,0.617060,2.676227 +-0.505243,0.857344,-0.847736,-1.978953,0.616663,2.675123 +-0.506278,0.856255,-0.847567,-1.980042,0.616196,2.674033 +-0.507282,0.855186,-0.847324,-1.981111,0.615662,2.672964 +-0.508251,0.854142,-0.847008,-1.982156,0.615064,2.671920 +-0.509180,0.853127,-0.846621,-1.983171,0.614403,2.670905 +-0.510066,0.852146,-0.846164,-1.984152,0.613684,2.669924 +-0.510903,0.851203,-0.845640,-1.985094,0.612908,2.668981 +-0.511688,0.850303,-0.845051,-1.985994,0.612080,2.668081 +-0.512418,0.849450,-0.844399,-1.986847,0.611204,2.667228 +-0.513090,0.848647,-0.843688,-1.987650,0.610282,2.666425 +-0.513700,0.847898,-0.842921,-1.988399,0.609320,2.665677 +-0.514246,0.847207,-0.842101,-1.989090,0.608322,2.664986 +-0.514725,0.846577,-0.841231,-1.989720,0.607292,2.664355 +-0.515135,0.846010,-0.840316,-1.990287,0.606235,2.663788 +-0.515474,0.845509,-0.839361,-1.990788,0.605155,2.663287 +-0.515741,0.845076,-0.838368,-1.991221,0.604058,2.662854 +-0.515935,0.844713,-0.837343,-1.991584,0.602948,2.662491 +-0.516054,0.844422,-0.836290,-1.991875,0.601831,2.662201 +-0.516098,0.844205,-0.835214,-1.992093,0.600711,2.661983 +-0.516068,0.844061,-0.834119,-1.992236,0.599593,2.661839 +-0.515962,0.843992,-0.833012,-1.992305,0.598483,2.661770 +-0.515782,0.843998,-0.831896,-1.992299,0.597385,2.661776 +-0.515528,0.844079,-0.830777,-1.992218,0.596305,2.661857 +-0.515202,0.844235,-0.829659,-1.992062,0.595246,2.662013 +-0.514805,0.844465,-0.828548,-1.991832,0.594215,2.662243 +-0.514338,0.844767,-0.827449,-1.991530,0.593215,2.662546 +-0.513804,0.845142,-0.826367,-1.991155,0.592252,2.662920 +-0.513206,0.845586,-0.825306,-1.990711,0.591329,2.663364 +-0.512545,0.846098,-0.824271,-1.990199,0.590450,2.663876 +-0.511826,0.846675,-0.823267,-1.989622,0.589620,2.664454 +-0.511050,0.847316,-0.822299,-1.988981,0.588842,2.665094 +-0.510222,0.848017,-0.821370,-1.988280,0.588119,2.665795 +-0.509346,0.848774,-0.820485,-1.987523,0.587456,2.666552 +-0.508424,0.849586,-0.819649,-1.986712,0.586855,2.667364 +-0.507462,0.850447,-0.818864,-1.985850,0.586318,2.668225 +-0.506464,0.851354,-0.818134,-1.984943,0.585849,2.669132 +-0.505434,0.852303,-0.817463,-1.983994,0.585448,2.670081 +-0.504377,0.853290,-0.816853,-1.983007,0.585119,2.671068 +-0.503297,0.854310,-0.816307,-1.981987,0.584862,2.672088 +-0.502200,0.855359,-0.815828,-1.980938,0.584679,2.673137 +-0.501090,0.856432,-0.815418,-1.979866,0.584570,2.674210 +-0.499973,0.857523,-0.815079,-1.978774,0.584536,2.675302 +-0.498853,0.858630,-0.814812,-1.977667,0.584577,2.676408 +-0.497735,0.859745,-0.814618,-1.976552,0.584693,2.677523 +-0.496625,0.860865,-0.814499,-1.975432,0.584883,2.678643 +-0.495527,0.861984,-0.814455,-1.974313,0.585147,2.679762 +-0.494447,0.863097,-0.814485,-1.973200,0.585483,2.680875 +-0.493388,0.864200,-0.814590,-1.972098,0.585890,2.681978 +-0.492357,0.865286,-0.814770,-1.971011,0.586366,2.683064 +-0.491357,0.866352,-0.815024,-1.969945,0.586909,2.684130 +-0.490394,0.867393,-0.815349,-1.968904,0.587516,2.685171 +-0.489470,0.868403,-0.815746,-1.967894,0.588185,2.686182 +-0.488592,0.869379,-0.816212,-1.966918,0.588913,2.687158 +-0.487762,0.870316,-0.816746,-1.965981,0.589696,2.688094 +-0.486984,0.871210,-0.817344,-1.965087,0.590531,2.688988 +-0.486261,0.872056,-0.818004,-1.964241,0.591414,2.689835 +-0.485598,0.872852,-0.818723,-1.963445,0.592341,2.690630 +-0.484997,0.873593,-0.819498,-1.962704,0.593308,2.691371 +-0.484460,0.874276,-0.820325,-1.962022,0.594311,2.692054 +-0.483991,0.874897,-0.821201,-1.961400,0.595345,2.692676 +-0.483590,0.875455,-0.822121,-1.960842,0.596406,2.693234 +-0.483261,0.875947,-0.823083,-1.960350,0.597488,2.693725 +-0.483004,0.876370,-0.824080,-1.959927,0.598587,2.694149 +-0.482821,0.876723,-0.825110,-1.959574,0.599698,2.694501 +-0.482712,0.877004,-0.826166,-1.959293,0.600816,2.694782 +-0.482678,0.877211,-0.827245,-1.959086,0.601936,2.694990 +-0.482719,0.877345,-0.828341,-1.958952,0.603053,2.695123 +-0.482835,0.877403,-0.829450,-1.958894,0.604162,2.695181 +-0.483025,0.877387,-0.830567,-1.958910,0.605258,2.695165 +-0.483289,0.877295,-0.831686,-1.959002,0.606335,2.695073 +-0.483625,0.877129,-0.832803,-1.959168,0.607390,2.694907 +-0.484032,0.876889,-0.833913,-1.959408,0.608418,2.694667 +-0.484508,0.876576,-0.835010,-1.959721,0.609413,2.694355 +-0.485051,0.876192,-0.836090,-1.960105,0.610371,2.693971 +-0.485659,0.875739,-0.837147,-1.960558,0.611288,2.693517 +-0.486328,0.875218,-0.838178,-1.961080,0.612160,2.692996 +-0.487055,0.874631,-0.839177,-1.961666,0.612983,2.692409 +-0.487838,0.873982,-0.840140,-1.962315,0.613754,2.691760 +-0.488673,0.873273,-0.841063,-1.963024,0.614468,2.691051 +-0.489556,0.872508,-0.841941,-1.963789,0.615123,2.690286 +-0.490484,0.871690,-0.842771,-1.964608,0.615715,2.689468 +-0.491451,0.870822,-0.843549,-1.965475,0.616243,2.688600 +-0.492454,0.869909,-0.844270,-1.966389,0.616703,2.687687 +-0.493488,0.868954,-0.844933,-1.967343,0.617094,2.686732 +-0.494548,0.867962,-0.845534,-1.968335,0.617413,2.685740 +-0.495631,0.866938,-0.846071,-1.969359,0.617660,2.684716 +-0.496730,0.865885,-0.846540,-1.970412,0.617833,2.683664 +-0.497841,0.864810,-0.846940,-1.971488,0.617931,2.682588 +-0.498959,0.863715,-0.847270,-1.972582,0.617955,2.681494 +-0.500079,0.862608,-0.847527,-1.973690,0.617904,2.680386 +-0.501196,0.861491,-0.847710,-1.974806,0.617777,2.679269 +-0.502305,0.860371,-0.847819,-1.975926,0.617577,2.678149 +-0.503401,0.859253,-0.847853,-1.977044,0.617303,2.677031 +-0.504478,0.858141,-0.847812,-1.978156,0.616957,2.675919 +-0.505533,0.857040,-0.847697,-1.979257,0.616540,2.674818 +-0.506560,0.855956,-0.847507,-1.980341,0.616055,2.673734 +-0.507555,0.854893,-0.847243,-1.981404,0.615503,2.672672 +-0.508513,0.853857,-0.846907,-1.982441,0.614887,2.671635 +-0.509431,0.852851,-0.846501,-1.983447,0.614209,2.670629 +-0.510303,0.851880,-0.846025,-1.984417,0.613474,2.669658 +-0.511126,0.850949,-0.845483,-1.985348,0.612683,2.668727 +-0.511896,0.850061,-0.844876,-1.986236,0.611842,2.667839 +-0.512611,0.849222,-0.844208,-1.987075,0.610952,2.667000 +-0.513265,0.848434,-0.843481,-1.987863,0.610019,2.666212 +-0.513858,0.847701,-0.842698,-1.988596,0.609047,2.665479 +-0.514385,0.847026,-0.841864,-1.989271,0.608039,2.664804 +-0.514845,0.846413,-0.840982,-1.989884,0.607001,2.664191 +-0.515236,0.845864,-0.840055,-1.990433,0.605937,2.663642 +-0.515555,0.845382,-0.839088,-1.990915,0.604852,2.663160 +-0.515802,0.844968,-0.838086,-1.991329,0.603751,2.662746 +-0.515975,0.844625,-0.837053,-1.991672,0.602639,2.662403 +-0.516074,0.844355,-0.835993,-1.991943,0.601520,2.662133 +-0.516097,0.844157,-0.834912,-1.992140,0.600400,2.661935 +-0.516046,0.844034,-0.833813,-1.992263,0.599284,2.661812 +-0.515919,0.843986,-0.832703,-1.992311,0.598177,2.661764 +-0.515719,0.844013,-0.831585,-1.992284,0.597083,2.661791 +-0.515445,0.844115,-0.830466,-1.992182,0.596009,2.661893 +-0.515099,0.844291,-0.829350,-1.992006,0.594957,2.662070 +-0.514682,0.844542,-0.828242,-1.991756,0.593934,2.662320 +-0.514197,0.844864,-0.827147,-1.991433,0.592944,2.662642 +-0.513645,0.845258,-0.826070,-1.991039,0.591991,2.663036 +-0.513029,0.845721,-0.825015,-1.990576,0.591080,2.663499 +-0.512351,0.846252,-0.823989,-1.990045,0.590214,2.664030 +-0.511616,0.846847,-0.822994,-1.989450,0.589398,2.664625 +-0.510825,0.847505,-0.822037,-1.988793,0.588635,2.665283 +-0.509983,0.848221,-0.821120,-1.988076,0.587929,2.666000 +-0.509094,0.848994,-0.820248,-1.987303,0.587283,2.666772 +-0.508161,0.849820,-0.819425,-1.986477,0.586699,2.667598 +-0.507189,0.850694,-0.818655,-1.985603,0.586181,2.668472 +-0.506181,0.851613,-0.817942,-1.984684,0.585731,2.669391 +-0.505143,0.852573,-0.817287,-1.983724,0.585350,2.670352 +-0.504079,0.853570,-0.816695,-1.982727,0.585040,2.671348 +-0.502994,0.854598,-0.816168,-1.981699,0.584804,2.672377 +-0.501893,0.855654,-0.815708,-1.980643,0.584641,2.673433 +-0.500781,0.856733,-0.815317,-1.979564,0.584553,2.674511 +-0.499662,0.857829,-0.814998,-1.978468,0.584540,2.675608 +-0.498542,0.858939,-0.814751,-1.977358,0.584601,2.676717 +-0.497426,0.860056,-0.814578,-1.976241,0.584738,2.677834 +-0.496319,0.861176,-0.814479,-1.975121,0.584949,2.678954 +-0.495225,0.862294,-0.814456,-1.974003,0.585233,2.680072 +-0.494150,0.863404,-0.814507,-1.972893,0.585589,2.681183 +-0.493099,0.864503,-0.814633,-1.971794,0.586015,2.682281 +-0.492076,0.865584,-0.814833,-1.970713,0.586510,2.683363 +-0.491086,0.866644,-0.815107,-1.969653,0.587071,2.684422 +-0.490133,0.867677,-0.815453,-1.968620,0.587696,2.685455 +-0.489222,0.868678,-0.815869,-1.967619,0.588381,2.686456 +-0.488356,0.869644,-0.816354,-1.966654,0.589125,2.687422 +-0.487540,0.870569,-0.816905,-1.965728,0.589922,2.688347 +-0.486777,0.871450,-0.817521,-1.964847,0.590771,2.689228 +-0.486071,0.872283,-0.818197,-1.964015,0.591667,2.690061 +-0.485425,0.873063,-0.818932,-1.963234,0.592606,2.690841 +-0.484841,0.873788,-0.819722,-1.962509,0.593583,2.691566 +-0.484323,0.874454,-0.820563,-1.961843,0.594595,2.692233 +-0.483873,0.875059,-0.821452,-1.961238,0.595637,2.692837 +-0.483492,0.875599,-0.822384,-1.960698,0.596704,2.693377 +-0.483182,0.876072,-0.823356,-1.960226,0.597792,2.693850 +-0.482946,0.876475,-0.824363,-1.959822,0.598895,2.694254 +-0.482783,0.876808,-0.825400,-1.959489,0.600008,2.694587 +-0.482695,0.877069,-0.826463,-1.959228,0.601127,2.694847 +-0.482682,0.877256,-0.827548,-1.959041,0.602247,2.695034 +-0.482744,0.877369,-0.828648,-1.958929,0.603362,2.695147 +-0.482880,0.877406,-0.829760,-1.958891,0.604468,2.695184 +-0.483091,0.877369,-0.830878,-1.958928,0.605559,2.695147 +-0.483375,0.877257,-0.831997,-1.959041,0.606631,2.695035 +-0.483731,0.877070,-0.833112,-1.959227,0.607678,2.694848 +-0.484158,0.876810,-0.834219,-1.959488,0.608697,2.694588 +-0.484653,0.876477,-0.835312,-1.959820,0.609682,2.694255 +-0.485214,0.876073,-0.836386,-1.960224,0.610630,2.693852 +-0.485838,0.875601,-0.837436,-1.960696,0.611535,2.693379 +-0.486524,0.875061,-0.838459,-1.961236,0.612394,2.692839 +-0.487267,0.874457,-0.839448,-1.961840,0.613203,2.692235 +-0.488065,0.873791,-0.840401,-1.962506,0.613958,2.691569 +-0.488914,0.873066,-0.841311,-1.963231,0.614656,2.690844 +-0.489809,0.872286,-0.842177,-1.964011,0.615294,2.690064 +-0.490748,0.871453,-0.842992,-1.964844,0.615868,2.689232 +-0.491726,0.870573,-0.843755,-1.965725,0.616377,2.688351 +-0.492738,0.869647,-0.844460,-1.966650,0.616818,2.687426 +-0.493780,0.868682,-0.845107,-1.967615,0.617189,2.686460 +-0.494847,0.867681,-0.845690,-1.968616,0.617489,2.685459 +-0.495934,0.866648,-0.846208,-1.969649,0.617715,2.684426 +-0.497037,0.865589,-0.846658,-1.970708,0.617868,2.683367 +-0.498151,0.864507,-0.847039,-1.971790,0.617946,2.682286 +-0.499270,0.863409,-0.847348,-1.972888,0.617948,2.681187 +-0.500390,0.862298,-0.847585,-1.973999,0.617876,2.680076 +-0.501505,0.861180,-0.847748,-1.975117,0.617729,2.678959 +-0.502611,0.860060,-0.847836,-1.976237,0.617508,2.677839 +-0.503702,0.858943,-0.847849,-1.977354,0.617214,2.676721 +-0.504774,0.857834,-0.847788,-1.978463,0.616848,2.675612 +-0.505821,0.856737,-0.847651,-1.979560,0.616412,2.674516 +-0.506840,0.855659,-0.847441,-1.980638,0.615908,2.673437 +-0.507825,0.854603,-0.847157,-1.981694,0.615338,2.672381 +-0.508772,0.853574,-0.846801,-1.982723,0.614705,2.671352 +-0.509678,0.852577,-0.846375,-1.983720,0.614011,2.670356 +-0.510537,0.851617,-0.845881,-1.984680,0.613260,2.669395 +-0.511345,0.850698,-0.845321,-1.985599,0.612455,2.668476 +-0.512101,0.849823,-0.844697,-1.986474,0.611599,2.667601 +-0.512799,0.848998,-0.844012,-1.987300,0.610697,2.666776 +-0.513436,0.848224,-0.843269,-1.988073,0.609753,2.666003 +-0.514011,0.847507,-0.842472,-1.988790,0.608770,2.665286 +-0.514520,0.846850,-0.841624,-1.989448,0.607754,2.664628 +-0.514961,0.846254,-0.840729,-1.990043,0.606708,2.664032 +-0.515332,0.845723,-0.839790,-1.990574,0.605638,2.663501 +-0.515631,0.845260,-0.838814,-1.991037,0.604548,2.663038 +-0.515858,0.844866,-0.837802,-1.991431,0.603443,2.662644 +-0.516010,0.844543,-0.836761,-1.991754,0.602329,2.662321 +-0.516088,0.844292,-0.835695,-1.992005,0.601209,2.662071 +-0.516091,0.844116,-0.834608,-1.992181,0.600090,2.661894 +-0.516018,0.844013,-0.833506,-1.992284,0.598976,2.661792 +-0.515871,0.843986,-0.832393,-1.992311,0.597872,2.661764 +-0.515650,0.844034,-0.831275,-1.992263,0.596783,2.661812 +-0.515356,0.844157,-0.830156,-1.992141,0.595714,2.661935 +-0.514990,0.844354,-0.829041,-1.991944,0.594670,2.662132 +-0.514554,0.844624,-0.827936,-1.991673,0.593656,2.662402 +-0.514050,0.844967,-0.826846,-1.991331,0.592676,2.662745 +-0.513480,0.845380,-0.825774,-1.990917,0.591734,2.663158 +-0.512847,0.845862,-0.824727,-1.990435,0.590835,2.663640 +-0.512153,0.846411,-0.823709,-1.989887,0.589983,2.664189 +-0.511402,0.847023,-0.822725,-1.989274,0.589181,2.664802 +-0.510597,0.847698,-0.821778,-1.988599,0.588434,2.665476 +-0.509741,0.848431,-0.820873,-1.987867,0.587744,2.666209 +-0.508839,0.849218,-0.820015,-1.987079,0.587115,2.666997 +-0.507895,0.850058,-0.819206,-1.986239,0.586549,2.667836 +-0.506912,0.850945,-0.818451,-1.985352,0.586049,2.668723 +-0.505896,0.851876,-0.817754,-1.984421,0.585618,2.669654 +-0.504850,0.852847,-0.817116,-1.983451,0.585257,2.670625 +-0.503780,0.853852,-0.816542,-1.982445,0.584967,2.671631 +-0.502690,0.854889,-0.816033,-1.981408,0.584751,2.672667 +-0.501585,0.855952,-0.815592,-1.980345,0.584609,2.673730 +-0.500470,0.857036,-0.815221,-1.979261,0.584542,2.674814 +-0.499351,0.858136,-0.814922,-1.978161,0.584549,2.675914 +-0.498232,0.859248,-0.814695,-1.977049,0.584632,2.677026 +-0.497117,0.860367,-0.814543,-1.975930,0.584789,2.678145 +-0.496013,0.861487,-0.814465,-1.974810,0.585021,2.679265 +-0.494925,0.862603,-0.814462,-1.973694,0.585325,2.680381 +-0.493856,0.863711,-0.814534,-1.972586,0.585700,2.681489 +-0.492812,0.864805,-0.814681,-1.971492,0.586146,2.682583 +-0.491798,0.865881,-0.814902,-1.970416,0.586659,2.683659 +-0.490817,0.866934,-0.815196,-1.969364,0.587238,2.684712 +-0.489876,0.867958,-0.815561,-1.968339,0.587880,2.685736 +-0.488977,0.868950,-0.815997,-1.967347,0.588582,2.686728 +-0.488125,0.869905,-0.816500,-1.966392,0.589341,2.687683 +-0.487323,0.870818,-0.817070,-1.965479,0.590153,2.688596 +-0.486576,0.871686,-0.817703,-1.964611,0.591015,2.689464 +-0.485886,0.872505,-0.818396,-1.963792,0.591923,2.690283 +-0.485257,0.873270,-0.819146,-1.963027,0.592873,2.691048 +-0.484691,0.873979,-0.819951,-1.962318,0.593861,2.691757 +-0.484191,0.874629,-0.820805,-1.961669,0.594882,2.692407 +-0.483760,0.875215,-0.821707,-1.961082,0.595931,2.692993 +-0.483399,0.875737,-0.822650,-1.960560,0.597004,2.693515 +-0.483109,0.876191,-0.823632,-1.960106,0.598096,2.693969 +-0.482893,0.876575,-0.824648,-1.959722,0.599203,2.694353 +-0.482751,0.876888,-0.825693,-1.959409,0.600319,2.694666 +-0.482684,0.877128,-0.826763,-1.959169,0.601438,2.694906 +-0.482691,0.877295,-0.827852,-1.959002,0.602557,2.695073 +-0.482774,0.877387,-0.828956,-1.958911,0.603670,2.695165 +-0.482932,0.877403,-0.830070,-1.958894,0.604772,2.695182 +-0.483163,0.877345,-0.831188,-1.958952,0.605859,2.695123 +-0.483467,0.877212,-0.832307,-1.959085,0.606924,2.694990 +-0.483843,0.877005,-0.833421,-1.959292,0.607964,2.694783 +-0.484288,0.876724,-0.834524,-1.959573,0.608974,2.694503 +-0.484802,0.876372,-0.835612,-1.959925,0.609949,2.694150 +-0.485381,0.875949,-0.836680,-1.960348,0.610885,2.693727 +-0.486023,0.875458,-0.837723,-1.960840,0.611778,2.693236 +-0.486725,0.874900,-0.838737,-1.961397,0.612624,2.692678 +-0.487483,0.874278,-0.839717,-1.962019,0.613418,2.692056 +-0.488296,0.873596,-0.840658,-1.962702,0.614158,2.691374 +-0.489158,0.872855,-0.841556,-1.963442,0.614839,2.690633 +-0.490066,0.872060,-0.842408,-1.964237,0.615460,2.689838 +-0.491016,0.871214,-0.843209,-1.965084,0.616016,2.688992 +-0.492004,0.870320,-0.843956,-1.965977,0.616507,2.688098 +-0.493024,0.869383,-0.844646,-1.966914,0.616929,2.687161 +-0.494074,0.868408,-0.845275,-1.967890,0.617280,2.686186 +-0.495147,0.867397,-0.845840,-1.968900,0.617559,2.685175 +-0.496239,0.866357,-0.846340,-1.969941,0.617765,2.684135 +-0.497346,0.865291,-0.846771,-1.971007,0.617897,2.683069 +-0.498461,0.864204,-0.847132,-1.972093,0.617954,2.681982 +-0.499581,0.863102,-0.847421,-1.973195,0.617936,2.680880 +-0.500700,0.861988,-0.847638,-1.974309,0.617843,2.679767 +-0.501813,0.860869,-0.847780,-1.975428,0.617675,2.678648 +-0.502915,0.859750,-0.847847,-1.976547,0.617434,2.677528 +-0.504001,0.858634,-0.847840,-1.977663,0.617119,2.676412 +-0.505067,0.857528,-0.847757,-1.978769,0.616734,2.675306 +-0.506107,0.856436,-0.847600,-1.979861,0.616279,2.674214 +-0.507117,0.855363,-0.847369,-1.980934,0.615756,2.673141 +-0.508092,0.854314,-0.847065,-1.981983,0.615168,2.672092 +-0.509028,0.853294,-0.846690,-1.983003,0.614518,2.671072 +-0.509921,0.852307,-0.846245,-1.983990,0.613808,2.670085 +-0.510766,0.851358,-0.845732,-1.984940,0.613042,2.669136 +-0.511561,0.850450,-0.845154,-1.985847,0.612222,2.668228 +-0.512300,0.849589,-0.844512,-1.986708,0.611353,2.667367 +-0.512982,0.848778,-0.843811,-1.987520,0.610439,2.666556 +-0.513602,0.848020,-0.843053,-1.988277,0.609484,2.665798 +-0.514159,0.847319,-0.842241,-1.988978,0.608491,2.665097 +-0.514649,0.846678,-0.841380,-1.989619,0.607466,2.664456 +-0.515071,0.846100,-0.840472,-1.990197,0.606413,2.663878 +-0.515422,0.845588,-0.839523,-1.990709,0.605337,2.663366 +-0.515701,0.845143,-0.838536,-1.991154,0.604243,2.662922 +-0.515907,0.844769,-0.837516,-1.991528,0.603135,2.662547 +-0.516039,0.844466,-0.836467,-1.991831,0.602018,2.662244 +-0.516096,0.844236,-0.835395,-1.992061,0.600898,2.662014 +-0.516078,0.844080,-0.834303,-1.992217,0.599780,2.661858 +-0.515985,0.843998,-0.833198,-1.992299,0.598668,2.661777 +-0.515817,0.843992,-0.832083,-1.992305,0.597568,2.661770 +-0.515576,0.844061,-0.830964,-1.992237,0.596484,2.661839 +-0.515261,0.844204,-0.829846,-1.992093,0.595422,2.661982 +-0.514876,0.844421,-0.828733,-1.991876,0.594385,2.662200 +-0.514421,0.844712,-0.827632,-1.991585,0.593380,2.662490 +-0.513898,0.845074,-0.826546,-1.991223,0.592410,2.662852 +-0.513310,0.845507,-0.825481,-1.990790,0.591480,2.663285 +-0.512660,0.846008,-0.824442,-1.990289,0.590593,2.663786 +-0.511950,0.846574,-0.823432,-1.989723,0.589755,2.664353 +-0.511183,0.847205,-0.822458,-1.989092,0.588968,2.664983 +-0.510364,0.847896,-0.821522,-1.988402,0.588236,2.665674 +-0.509495,0.848644,-0.820630,-1.987653,0.587563,2.666422 +-0.508581,0.849446,-0.819785,-1.986851,0.586951,2.667225 +-0.507626,0.850299,-0.818991,-1.985998,0.586403,2.668078 +-0.506633,0.851199,-0.818252,-1.985098,0.585922,2.668977 +-0.505608,0.852142,-0.817571,-1.984156,0.585510,2.669920 +-0.504555,0.853122,-0.816950,-1.983175,0.585169,2.670901 +-0.503479,0.854137,-0.816394,-1.982160,0.584900,2.671915 +-0.502384,0.855182,-0.815904,-1.981115,0.584704,2.672960 +-0.501276,0.856251,-0.815482,-1.980046,0.584583,2.674029 +-0.500160,0.857340,-0.815131,-1.978957,0.584536,2.675118 +-0.499040,0.858444,-0.814852,-1.977853,0.584565,2.676222 +-0.497921,0.859558,-0.814646,-1.976739,0.584668,2.677336 +-0.496810,0.860678,-0.814514,-1.975619,0.584846,2.678456 +-0.495709,0.861797,-0.814457,-1.974500,0.585098,2.679575 +-0.494626,0.862912,-0.814475,-1.973385,0.585422,2.680690 +-0.493563,0.864016,-0.814568,-1.972281,0.585817,2.681794 +-0.492527,0.865106,-0.814735,-1.971191,0.586282,2.682884 +-0.491522,0.866176,-0.814976,-1.970121,0.586814,2.683954 +-0.490552,0.867221,-0.815290,-1.969076,0.587410,2.684999 +-0.489622,0.868237,-0.815675,-1.968060,0.588069,2.686015 +-0.488735,0.869219,-0.816130,-1.967078,0.588787,2.686997 +-0.487897,0.870163,-0.816652,-1.966135,0.589561,2.687941 +-0.487110,0.871064,-0.817239,-1.965233,0.590388,2.688842 +-0.486378,0.871918,-0.817889,-1.964379,0.591263,2.689697 +-0.485705,0.872723,-0.818599,-1.963574,0.592183,2.690501 +-0.485093,0.873473,-0.819364,-1.962824,0.593144,2.691251 +-0.484545,0.874166,-0.820183,-1.962132,0.594141,2.691944 +-0.484065,0.874798,-0.821051,-1.961499,0.595170,2.692576 +-0.483652,0.875367,-0.821965,-1.960930,0.596227,2.693145 +-0.483311,0.875870,-0.822919,-1.960427,0.597306,2.693648 +-0.483042,0.876304,-0.823911,-1.959993,0.598402,2.694083 +-0.482846,0.876669,-0.824935,-1.959628,0.599512,2.694447 +-0.482725,0.876962,-0.825988,-1.959335,0.600629,2.694740 +-0.482678,0.877182,-0.827063,-1.959115,0.601749,2.694960 +-0.482707,0.877328,-0.828157,-1.958969,0.602867,2.695106 +-0.482810,0.877399,-0.829264,-1.958898,0.603978,2.695177 +-0.482988,0.877395,-0.830380,-1.958902,0.605076,2.695173 +-0.483240,0.877316,-0.831499,-1.958981,0.606157,2.695094 +-0.483564,0.877162,-0.832617,-1.959135,0.607216,2.694940 +-0.483960,0.876934,-0.833728,-1.959363,0.608248,2.694713 +-0.484424,0.876634,-0.834828,-1.959663,0.609249,2.694412 +-0.484956,0.876262,-0.835911,-1.960036,0.610213,2.694040 +-0.485553,0.875819,-0.836972,-1.960478,0.611138,2.693598 +-0.486212,0.875309,-0.838008,-1.960988,0.612018,2.693087 +-0.486930,0.874734,-0.839013,-1.961564,0.612849,2.692512 +-0.487704,0.874095,-0.839982,-1.962202,0.613629,2.691873 +-0.488530,0.873396,-0.840912,-1.962901,0.614353,2.691174 +-0.489405,0.872640,-0.841798,-1.963658,0.615018,2.690418 +-0.490326,0.871830,-0.842636,-1.964467,0.615621,2.689608 +-0.491287,0.870970,-0.843422,-1.965327,0.616159,2.688748 +-0.492284,0.870064,-0.844154,-1.966233,0.616631,2.687842 +-0.493313,0.869116,-0.844827,-1.967181,0.617033,2.686894 +-0.494369,0.868130,-0.845438,-1.968167,0.617365,2.685908 +-0.495448,0.867111,-0.845986,-1.969186,0.617624,2.684889 +-0.496545,0.866063,-0.846466,-1.970234,0.617809,2.683841 +-0.497655,0.864991,-0.846878,-1.971306,0.617920,2.682769 +-0.498772,0.863899,-0.847220,-1.972398,0.617956,2.681678 +-0.499892,0.862793,-0.847489,-1.973504,0.617917,2.680572 +-0.501010,0.861678,-0.847685,-1.974619,0.617804,2.679456 +-0.502120,0.860558,-0.847806,-1.975739,0.617615,2.678337 +-0.503219,0.859439,-0.847853,-1.976858,0.617354,2.677218 +-0.504300,0.858326,-0.847824,-1.977971,0.617019,2.676104 +-0.505359,0.857223,-0.847721,-1.979074,0.616614,2.675001 +-0.506391,0.856136,-0.847543,-1.980161,0.616140,2.673914 +-0.507391,0.855069,-0.847292,-1.981228,0.615599,2.672847 +-0.508356,0.854028,-0.846968,-1.982269,0.614994,2.671806 +-0.509280,0.853016,-0.846573,-1.983281,0.614327,2.670795 +-0.510160,0.852039,-0.846109,-1.984258,0.613601,2.669818 +-0.510992,0.851101,-0.845578,-1.985196,0.612819,2.668880 +-0.511772,0.850206,-0.844982,-1.986091,0.611986,2.667985 +-0.512495,0.849359,-0.844324,-1.986939,0.611104,2.667137 +-0.513160,0.848562,-0.843606,-1.987736,0.610178,2.666340 +-0.513763,0.847819,-0.842833,-1.988478,0.609212,2.665597 +-0.514302,0.847135,-0.842007,-1.989162,0.608210,2.664913 +-0.514773,0.846511,-0.841132,-1.989786,0.607177,2.664289 +-0.515176,0.845951,-0.840213,-1.990346,0.606117,2.663729 +-0.515507,0.845458,-0.839253,-1.990840,0.605035,2.663236 +-0.515766,0.845032,-0.838256,-1.991265,0.603936,2.662811 +-0.515951,0.844678,-0.837228,-1.991620,0.602825,2.662456 +-0.516063,0.844395,-0.836172,-1.991902,0.601707,2.662173 +-0.516099,0.844185,-0.835094,-1.992112,0.600587,2.661963 +-0.516060,0.844050,-0.833998,-1.992247,0.599470,2.661828 +-0.515946,0.843989,-0.832889,-1.992308,0.598361,2.661767 +-0.515757,0.844003,-0.831772,-1.992294,0.597265,2.661782 +-0.515496,0.844093,-0.830653,-1.992204,0.596187,2.661871 +-0.515162,0.844257,-0.829536,-1.992040,0.595131,2.662035 +-0.514756,0.844495,-0.828426,-1.991802,0.594103,2.662273 +-0.514282,0.844805,-0.827329,-1.991492,0.593107,2.662584 +-0.513741,0.845187,-0.826248,-1.991110,0.592148,2.662966 +-0.513136,0.845639,-0.825190,-1.990658,0.591229,2.663417 +-0.512469,0.846158,-0.824158,-1.990139,0.590356,2.663937 +-0.511743,0.846743,-0.823158,-1.989554,0.589531,2.664521 +-0.510961,0.847391,-0.822194,-1.988907,0.588759,2.665169 +-0.510128,0.848098,-0.821270,-1.988199,0.588043,2.665876 +-0.509246,0.848861,-0.820391,-1.987436,0.587387,2.666640 +-0.508320,0.849678,-0.819559,-1.986619,0.586792,2.667456 +-0.507354,0.850545,-0.818780,-1.985752,0.586263,2.668323 +-0.506352,0.851457,-0.818057,-1.984840,0.585801,2.669235 +-0.505318,0.852410,-0.817392,-1.983887,0.585408,2.670188 +-0.504258,0.853401,-0.816789,-1.982896,0.585087,2.671179 +-0.503177,0.854424,-0.816251,-1.981873,0.584838,2.672203 +-0.502078,0.855476,-0.815780,-1.980821,0.584663,2.673254 +-0.500967,0.856551,-0.815377,-1.979746,0.584562,2.674330 +-0.499849,0.857645,-0.815046,-1.978652,0.584537,2.675423 +-0.498729,0.858753,-0.814787,-1.977545,0.584586,2.676531 +-0.497612,0.859869,-0.814602,-1.976428,0.584710,2.677647 +-0.496503,0.860989,-0.814491,-1.975308,0.584909,2.678767 +-0.495407,0.862107,-0.814454,-1.974190,0.585180,2.679885 +-0.494328,0.863220,-0.814493,-1.973078,0.585525,2.680998 +-0.493273,0.864320,-0.814607,-1.971977,0.585939,2.682099 +-0.492245,0.865405,-0.814795,-1.970892,0.586423,2.683183 +-0.491249,0.866469,-0.815056,-1.969829,0.586973,2.684247 +-0.490290,0.867506,-0.815390,-1.968791,0.587587,2.685284 +-0.489371,0.868513,-0.815794,-1.967784,0.588263,2.686291 +-0.488498,0.869485,-0.816268,-1.966812,0.588996,2.687263 +-0.487673,0.870417,-0.816809,-1.965880,0.589785,2.688195 +-0.486901,0.871306,-0.817414,-1.964991,0.590626,2.689084 +-0.486185,0.872147,-0.818080,-1.964150,0.591514,2.689925 +-0.485529,0.872936,-0.818806,-1.963361,0.592446,2.690715 +-0.484934,0.873671,-0.819586,-1.962626,0.593417,2.691449 +-0.484405,0.874347,-0.820419,-1.961950,0.594424,2.692125 +-0.483943,0.874962,-0.821300,-1.961335,0.595461,2.692740 +-0.483551,0.875513,-0.822226,-1.960784,0.596524,2.693291 +-0.483229,0.875997,-0.823191,-1.960300,0.597609,2.693775 +-0.482980,0.876413,-0.824192,-1.959884,0.598709,2.694191 +-0.482805,0.876758,-0.825225,-1.959539,0.599822,2.694536 +-0.482704,0.877030,-0.826284,-1.959267,0.600940,2.694809 +-0.482679,0.877230,-0.827365,-1.959067,0.602060,2.695008 +-0.482728,0.877355,-0.828463,-1.958942,0.603176,2.695133 +-0.482852,0.877405,-0.829573,-1.958892,0.604284,2.695183 +-0.483051,0.877380,-0.830691,-1.958917,0.605378,2.695158 +-0.483323,0.877281,-0.831810,-1.959017,0.606453,2.695059 +-0.483667,0.877106,-0.832926,-1.959191,0.607505,2.694884 +-0.484082,0.876858,-0.834035,-1.959439,0.608529,2.694636 +-0.484565,0.876538,-0.835130,-1.959760,0.609520,2.694316 +-0.485115,0.876146,-0.836208,-1.960151,0.610474,2.693924 +-0.485730,0.875684,-0.837263,-1.960613,0.611387,2.693463 +-0.486405,0.875156,-0.838290,-1.961141,0.612254,2.692934 +-0.487139,0.874562,-0.839285,-1.961735,0.613071,2.692341 +-0.487928,0.873907,-0.840244,-1.962391,0.613836,2.691685 +-0.488768,0.873191,-0.841162,-1.963106,0.614543,2.690970 +-0.489657,0.872420,-0.842035,-1.963877,0.615191,2.690198 +-0.490588,0.871596,-0.842860,-1.964701,0.615777,2.689374 +-0.491560,0.870723,-0.843631,-1.965574,0.616297,2.688501 +-0.492566,0.869805,-0.844347,-1.966492,0.616750,2.687583 +-0.493604,0.868846,-0.845003,-1.967451,0.617132,2.686624 +-0.494667,0.867850,-0.845597,-1.968447,0.617444,2.685629 +-0.495751,0.866823,-0.846126,-1.969474,0.617683,2.684601 +-0.496852,0.865768,-0.846588,-1.970530,0.617847,2.683546 +-0.497964,0.864690,-0.846980,-1.971608,0.617938,2.682468 +-0.499083,0.863594,-0.847302,-1.972704,0.617953,2.681372 +-0.500203,0.862485,-0.847551,-1.973813,0.617893,2.680263 +-0.501319,0.861368,-0.847726,-1.974930,0.617759,2.679146 +-0.502427,0.860248,-0.847827,-1.976050,0.617550,2.678026 +-0.503521,0.859130,-0.847852,-1.977168,0.617268,2.676908 +-0.504596,0.858019,-0.847803,-1.978279,0.616914,2.675797 +-0.505648,0.856920,-0.847679,-1.979378,0.616490,2.674698 +-0.506672,0.855838,-0.847481,-1.980460,0.615997,2.673616 +-0.507663,0.854777,-0.847209,-1.981520,0.615438,2.672556 +-0.508617,0.853744,-0.846866,-1.982553,0.614815,2.671522 +-0.509529,0.852741,-0.846451,-1.983556,0.614131,2.670520 +-0.510396,0.851775,-0.845968,-1.984522,0.613389,2.669553 +-0.511214,0.850848,-0.845419,-1.985449,0.612593,2.668627 +-0.511978,0.849966,-0.844805,-1.986331,0.611746,2.667744 +-0.512686,0.849132,-0.844130,-1.987165,0.610851,2.666910 +-0.513334,0.848350,-0.843397,-1.987947,0.609914,2.666128 +-0.513919,0.847623,-0.842608,-1.988674,0.608937,2.665401 +-0.514440,0.846955,-0.841769,-1.989342,0.607926,2.664733 +-0.514892,0.846349,-0.840881,-1.989948,0.606885,2.664127 +-0.515275,0.845807,-0.839950,-1.990490,0.605818,2.663586 +-0.515586,0.845333,-0.838979,-1.990965,0.604731,2.663111 +-0.515825,0.844927,-0.837974,-1.991370,0.603629,2.662705 +-0.515990,0.844592,-0.836937,-1.991705,0.602515,2.662370 +-0.516080,0.844329,-0.835875,-1.991968,0.601396,2.662107 +-0.516095,0.844140,-0.834791,-1.992157,0.600277,2.661918 +-0.516036,0.844025,-0.833691,-1.992272,0.599161,2.661803 +-0.515901,0.843985,-0.832579,-1.992312,0.598055,2.661764 +-0.515692,0.844021,-0.831462,-1.992276,0.596964,2.661799 +-0.515410,0.844131,-0.830342,-1.992166,0.595891,2.661909 +-0.515056,0.844316,-0.829227,-1.991982,0.594843,2.662094 +-0.514632,0.844574,-0.828120,-1.991723,0.593823,2.662352 +-0.514139,0.844904,-0.827027,-1.991393,0.592837,2.662683 +-0.513580,0.845306,-0.825952,-1.990991,0.591888,2.663084 +-0.512957,0.845777,-0.824901,-1.990521,0.590982,2.663555 +-0.512273,0.846314,-0.823877,-1.989983,0.590122,2.664093 +-0.511531,0.846917,-0.822887,-1.989380,0.589311,2.664695 +-0.510735,0.847581,-0.821933,-1.988716,0.588555,2.665359 +-0.509887,0.848304,-0.821021,-1.987993,0.587855,2.666082 +-0.508993,0.849083,-0.820155,-1.987214,0.587215,2.666861 +-0.508055,0.849914,-0.819338,-1.986383,0.586639,2.667692 +-0.507079,0.850793,-0.818574,-1.985504,0.586128,2.668572 +-0.506068,0.851717,-0.817866,-1.984580,0.585685,2.669496 +-0.505027,0.852682,-0.817219,-1.983615,0.585312,2.670460 +-0.503960,0.853682,-0.816633,-1.982615,0.585011,2.671460 +-0.502873,0.854714,-0.816113,-1.981583,0.584782,2.672492 +-0.501771,0.855773,-0.815661,-1.980525,0.584627,2.673551 +-0.500657,0.856853,-0.815278,-1.979444,0.584548,2.674632 +-0.499538,0.857951,-0.814967,-1.978346,0.584543,2.675730 +-0.498418,0.859062,-0.814728,-1.977235,0.584613,2.676840 +-0.497303,0.860180,-0.814563,-1.976118,0.584758,2.677958 +-0.496197,0.861300,-0.814473,-1.974998,0.584977,2.679078 +-0.495105,0.862417,-0.814457,-1.973880,0.585269,2.680195 +-0.494033,0.863527,-0.814517,-1.972771,0.585633,2.681305 +-0.492985,0.864623,-0.814651,-1.971674,0.586067,2.682402 +-0.491965,0.865703,-0.814860,-1.970594,0.586569,2.683481 +-0.490979,0.866759,-0.815142,-1.969538,0.587137,2.684538 +-0.490030,0.867789,-0.815495,-1.968508,0.587769,2.685567 +-0.489124,0.868787,-0.815919,-1.967511,0.588461,2.686565 +-0.488264,0.869748,-0.816412,-1.966549,0.589210,2.687526 +-0.487453,0.870669,-0.816970,-1.965629,0.590014,2.688447 +-0.486697,0.871544,-0.817593,-1.964753,0.590868,2.689323 +-0.485997,0.872371,-0.818276,-1.963926,0.591768,2.690150 +-0.485357,0.873146,-0.819017,-1.963151,0.592712,2.690924 +-0.484781,0.873865,-0.819813,-1.962432,0.593693,2.691643 +-0.484270,0.874524,-0.820659,-1.961773,0.594709,2.692302 +-0.483827,0.875122,-0.821553,-1.961175,0.595754,2.692900 +-0.483454,0.875654,-0.822490,-1.960643,0.596823,2.693432 +-0.483153,0.876120,-0.823466,-1.960177,0.597913,2.693898 +-0.482924,0.876516,-0.824476,-1.959781,0.599017,2.694294 +-0.482770,0.876841,-0.825517,-1.959456,0.600132,2.694619 +-0.482690,0.877093,-0.826582,-1.959204,0.601251,2.694871 +-0.482685,0.877272,-0.827669,-1.959025,0.602371,2.695050 +-0.482755,0.877376,-0.828770,-1.958921,0.603485,2.695155 +-0.482900,0.877406,-0.829883,-1.958891,0.604589,2.695184 +-0.483119,0.877360,-0.831001,-1.958937,0.605678,2.695138 +-0.483411,0.877240,-0.832120,-1.959058,0.606748,2.695018 +-0.483775,0.877045,-0.833235,-1.959252,0.607793,2.694823 +-0.484209,0.876776,-0.834340,-1.959521,0.608808,2.694555 +-0.484711,0.876436,-0.835431,-1.959861,0.609789,2.694214 +-0.485280,0.876025,-0.836503,-1.960273,0.610732,2.693803 +-0.485911,0.875544,-0.837551,-1.960753,0.611632,2.693323 +-0.486603,0.874998,-0.838570,-1.961300,0.612486,2.692776 +-0.487353,0.874386,-0.839556,-1.961911,0.613289,2.692165 +-0.488156,0.873714,-0.840503,-1.962583,0.614038,2.691492 +-0.489010,0.872983,-0.841409,-1.963314,0.614729,2.690761 +-0.489911,0.872196,-0.842269,-1.964101,0.615360,2.689975 +-0.490854,0.871358,-0.843079,-1.964939,0.615928,2.689137 +-0.491836,0.870473,-0.843835,-1.965825,0.616430,2.688251 +-0.492852,0.869543,-0.844535,-1.966754,0.616863,2.687321 +-0.493896,0.868573,-0.845174,-1.967724,0.617226,2.686351 +-0.494966,0.867568,-0.845750,-1.968729,0.617518,2.685346 +-0.496056,0.866532,-0.846261,-1.969765,0.617736,2.684311 +-0.497160,0.865470,-0.846704,-1.970827,0.617880,2.683249 +-0.498274,0.864387,-0.847077,-1.971910,0.617950,2.682165 +-0.499394,0.863287,-0.847378,-1.973010,0.617944,2.681065 +-0.500513,0.862175,-0.847607,-1.974122,0.617863,2.679953 +-0.501628,0.861057,-0.847761,-1.975240,0.617708,2.678835 +-0.502732,0.859937,-0.847841,-1.976360,0.617479,2.677715 +-0.503821,0.858820,-0.847846,-1.977477,0.617177,2.676598 +-0.504891,0.857712,-0.847776,-1.978585,0.616803,2.675490 +-0.505935,0.856617,-0.847632,-1.979680,0.616360,2.674395 +-0.506950,0.855541,-0.847413,-1.980756,0.615848,2.673319 +-0.507932,0.854488,-0.847121,-1.981810,0.615271,2.672266 +-0.508875,0.853462,-0.846758,-1.982835,0.614631,2.671240 +-0.509775,0.852469,-0.846324,-1.983828,0.613931,2.670248 +-0.510628,0.851513,-0.845822,-1.984784,0.613173,2.669292 +-0.511432,0.850599,-0.845255,-1.985698,0.612363,2.668377 +-0.512180,0.849730,-0.844624,-1.986568,0.611502,2.667508 +-0.512872,0.848910,-0.843932,-1.987388,0.610595,2.666688 +-0.513503,0.848142,-0.843183,-1.988155,0.609646,2.665921 +-0.514070,0.847432,-0.842380,-1.988865,0.608660,2.665210 +-0.514572,0.846781,-0.841527,-1.989516,0.607640,2.664559 +-0.515005,0.846192,-0.840627,-1.990105,0.606591,2.663970 +-0.515369,0.845669,-0.839684,-1.990628,0.605518,2.663447 +-0.515660,0.845213,-0.838703,-1.991084,0.604427,2.662991 +-0.515878,0.844827,-0.837689,-1.991471,0.603320,2.662605 +-0.516022,0.844512,-0.836644,-1.991786,0.602205,2.662290 +-0.516092,0.844269,-0.835576,-1.992028,0.601085,2.662047 +-0.516086,0.844101,-0.834487,-1.992196,0.599966,2.661879 +-0.516006,0.844007,-0.833383,-1.992290,0.598853,2.661785 +-0.515850,0.843988,-0.832270,-1.992309,0.597751,2.661766 +-0.515621,0.844044,-0.831151,-1.992253,0.596664,2.661822 +-0.515319,0.844175,-0.830032,-1.992122,0.595597,2.661953 +-0.514945,0.844380,-0.828918,-1.991917,0.594557,2.662158 +-0.514502,0.844658,-0.827815,-1.991639,0.593546,2.662436 +-0.513990,0.845009,-0.826726,-1.991288,0.592570,2.662787 +-0.513413,0.845430,-0.825658,-1.990867,0.591632,2.663208 +-0.512773,0.845919,-0.824613,-1.990378,0.590738,2.663697 +-0.512073,0.846475,-0.823599,-1.989822,0.589892,2.664253 +-0.511315,0.847095,-0.822618,-1.989202,0.589096,2.664873 +-0.510504,0.847776,-0.821676,-1.988521,0.588354,2.665554 +-0.509644,0.848515,-0.820776,-1.987782,0.587671,2.666293 +-0.508737,0.849309,-0.819923,-1.986988,0.587049,2.667087 +-0.507788,0.850153,-0.819120,-1.986144,0.586490,2.667932 +-0.506801,0.851046,-0.818372,-1.985251,0.585998,2.668824 +-0.505781,0.851981,-0.817680,-1.984316,0.585574,2.669759 +-0.504733,0.852956,-0.817050,-1.983341,0.585221,2.670734 +-0.503660,0.853966,-0.816482,-1.982332,0.584940,2.671744 +-0.502568,0.855005,-0.815981,-1.981292,0.584732,2.672783 +-0.501462,0.856071,-0.815548,-1.980227,0.584598,2.673849 +-0.500347,0.857157,-0.815185,-1.979140,0.584539,2.674935 +-0.499227,0.858259,-0.814893,-1.978038,0.584555,2.676037 +-0.498108,0.859372,-0.814675,-1.976926,0.584646,2.677150 +-0.496995,0.860490,-0.814531,-1.975807,0.584811,2.678269 +-0.495892,0.861610,-0.814461,-1.974687,0.585051,2.679388 +-0.494805,0.862726,-0.814467,-1.973571,0.585363,2.680504 +-0.493739,0.863833,-0.814547,-1.972465,0.585746,2.681611 +-0.492698,0.864925,-0.814702,-1.971372,0.586199,2.682703 +-0.491688,0.865999,-0.814931,-1.970299,0.586720,2.683777 +-0.490711,0.867048,-0.815233,-1.969249,0.587306,2.684826 +-0.489774,0.868069,-0.815606,-1.968228,0.587955,2.685847 +-0.488880,0.869057,-0.816049,-1.967240,0.588663,2.686835 +-0.488033,0.870008,-0.816560,-1.966289,0.589428,2.687786 +-0.487238,0.870916,-0.817137,-1.965381,0.590246,2.688695 +-0.486496,0.871779,-0.817776,-1.964518,0.591113,2.689557 +-0.485813,0.872592,-0.818476,-1.963705,0.592026,2.690370 +-0.485191,0.873351,-0.819233,-1.962946,0.592981,2.691130 +-0.484632,0.874054,-0.820043,-1.962243,0.593972,2.691832 +-0.484140,0.874696,-0.820903,-1.961601,0.594996,2.692475 +-0.483716,0.875276,-0.821809,-1.961021,0.596048,2.693054 +-0.483363,0.875790,-0.822757,-1.960507,0.597124,2.693568 +-0.483082,0.876237,-0.823743,-1.960060,0.598218,2.694015 +-0.482874,0.876613,-0.824762,-1.959684,0.599326,2.694391 +-0.482740,0.876918,-0.825810,-1.959379,0.600442,2.694696 +-0.482681,0.877150,-0.826882,-1.959147,0.601562,2.694928 +-0.482697,0.877309,-0.827973,-1.958989,0.602681,2.695087 +-0.482788,0.877392,-0.829078,-1.958905,0.603793,2.695170 +-0.482954,0.877401,-0.830193,-1.958896,0.604893,2.695179 +-0.483193,0.877334,-0.831312,-1.958963,0.605978,2.695112 +-0.483505,0.877193,-0.832430,-1.959104,0.607041,2.694971 +-0.483889,0.876978,-0.833543,-1.959320,0.608078,2.694756 +-0.484342,0.876689,-0.834645,-1.959608,0.609084,2.694467 +-0.484863,0.876329,-0.835731,-1.959968,0.610055,2.694107 +-0.485449,0.875898,-0.836797,-1.960399,0.610986,2.693676 +-0.486097,0.875399,-0.837837,-1.960898,0.611874,2.693177 +-0.486806,0.874834,-0.838847,-1.961463,0.612714,2.692612 +-0.487571,0.874206,-0.839823,-1.962091,0.613502,2.691984 +-0.488389,0.873517,-0.840759,-1.962781,0.614236,2.691295 +-0.489256,0.872770,-0.841653,-1.963527,0.614911,2.690548 +-0.490169,0.871969,-0.842499,-1.964328,0.615524,2.689747 +-0.491123,0.871117,-0.843295,-1.965180,0.616074,2.688895 +-0.492115,0.870219,-0.844036,-1.966079,0.616557,2.687997 +-0.493139,0.869277,-0.844718,-1.967020,0.616971,2.687056 +-0.494191,0.868298,-0.845341,-1.968000,0.617314,2.686076 +-0.495267,0.867284,-0.845899,-1.969014,0.617586,2.685062 +-0.496361,0.866240,-0.846391,-1.970057,0.617783,2.684018 +-0.497469,0.865171,-0.846814,-1.971126,0.617907,2.682950 +-0.498585,0.864083,-0.847168,-1.972214,0.617956,2.681861 +-0.499705,0.862979,-0.847449,-1.973318,0.617929,2.680757 +-0.500823,0.861865,-0.847657,-1.974432,0.617828,2.679643 +-0.501935,0.860746,-0.847791,-1.975551,0.617652,2.678524 +-0.503036,0.859626,-0.847850,-1.976671,0.617402,2.677404 +-0.504120,0.858511,-0.847834,-1.977786,0.617080,2.676290 +-0.505183,0.857407,-0.847744,-1.978891,0.616687,2.675185 +-0.506220,0.856316,-0.847578,-1.979981,0.616224,2.674095 +-0.507226,0.855246,-0.847339,-1.981051,0.615694,2.673024 +-0.508198,0.854200,-0.847027,-1.982097,0.615099,2.671978 +-0.509129,0.853183,-0.846644,-1.983114,0.614442,2.670961 +-0.510017,0.852200,-0.846192,-1.984097,0.613726,2.669978 +-0.510857,0.851255,-0.845671,-1.985042,0.612954,2.669033 +-0.511645,0.850353,-0.845086,-1.985944,0.612128,2.668131 +-0.512378,0.849497,-0.844438,-1.986800,0.611254,2.667275 +-0.513053,0.848691,-0.843730,-1.987606,0.610336,2.666469 +-0.513667,0.847939,-0.842966,-1.988358,0.609376,2.665718 +-0.514216,0.847245,-0.842148,-1.989052,0.608380,2.665023 +-0.514699,0.846611,-0.841282,-1.989686,0.607351,2.664389 +-0.515113,0.846040,-0.840369,-1.990257,0.606295,2.663818 +-0.515457,0.845535,-0.839416,-1.990762,0.605217,2.663313 +-0.515728,0.845099,-0.838425,-1.991199,0.604121,2.662877 +-0.515926,0.844732,-0.837402,-1.991565,0.603012,2.662510 +-0.516049,0.844437,-0.836350,-1.991860,0.601894,2.662215 +-0.516098,0.844215,-0.835275,-1.992082,0.600774,2.661993 +-0.516071,0.844067,-0.834182,-1.992230,0.599656,2.661845 +-0.515970,0.843994,-0.833075,-1.992303,0.598546,2.661772 +-0.515794,0.843996,-0.831959,-1.992301,0.597447,2.661774 +-0.515545,0.844073,-0.830840,-1.992224,0.596365,2.661851 +-0.515222,0.844224,-0.829722,-1.992073,0.595306,2.662002 +-0.514829,0.844450,-0.828611,-1.991847,0.594273,2.662228 +-0.514366,0.844748,-0.827511,-1.991549,0.593271,2.662527 +-0.513836,0.845119,-0.826427,-1.991178,0.592305,2.662897 +-0.513241,0.845559,-0.825365,-1.990738,0.591380,2.663337 +-0.512584,0.846067,-0.824329,-1.990230,0.590498,2.663845 +-0.511868,0.846641,-0.823323,-1.989656,0.589665,2.664419 +-0.511095,0.847278,-0.822352,-1.989019,0.588884,2.665056 +-0.510270,0.847975,-0.821422,-1.988322,0.588159,2.665754 +-0.509396,0.848730,-0.820534,-1.987567,0.587492,2.666508 +-0.508477,0.849538,-0.819695,-1.986759,0.586887,2.667316 +-0.507518,0.850397,-0.818907,-1.985901,0.586347,2.668175 +-0.506521,0.851301,-0.818174,-1.984996,0.585873,2.669079 +-0.505493,0.852248,-0.817499,-1.984049,0.585469,2.670026 +-0.504437,0.853233,-0.816886,-1.983064,0.585136,2.671011 +-0.503359,0.854251,-0.816336,-1.982046,0.584875,2.672030 +-0.502263,0.855299,-0.815854,-1.980998,0.584687,2.673077 +-0.501153,0.856370,-0.815440,-1.979927,0.584574,2.674148 +-0.500036,0.857461,-0.815097,-1.978836,0.584536,2.675239 +-0.498916,0.858567,-0.814825,-1.977730,0.584572,2.676345 +-0.497798,0.859682,-0.814627,-1.976615,0.584684,2.677460 +-0.496687,0.860801,-0.814504,-1.975496,0.584870,2.678580 +-0.495589,0.861921,-0.814455,-1.974376,0.585130,2.679699 +-0.494507,0.863034,-0.814481,-1.973263,0.585462,2.680812 +-0.493448,0.864137,-0.814582,-1.972160,0.585865,2.681916 +-0.492415,0.865225,-0.814758,-1.971072,0.586337,2.683003 +-0.491413,0.866293,-0.815007,-1.970005,0.586876,2.684071 +-0.490447,0.867335,-0.815329,-1.968962,0.587480,2.685113 +-0.489522,0.868347,-0.815722,-1.967950,0.588146,2.686125 +-0.488640,0.869325,-0.816184,-1.966972,0.588870,2.687103 +-0.487807,0.870264,-0.816714,-1.966033,0.589650,2.688043 +-0.487026,0.871161,-0.817308,-1.965137,0.590482,2.688939 +-0.486301,0.872010,-0.817965,-1.964287,0.591362,2.689788 +-0.485634,0.872808,-0.818680,-1.963489,0.592287,2.690586 +-0.485029,0.873552,-0.819452,-1.962745,0.593252,2.691330 +-0.484489,0.874238,-0.820277,-1.962059,0.594253,2.692017 +-0.484016,0.874864,-0.821150,-1.961433,0.595286,2.692642 +-0.483611,0.875426,-0.822068,-1.960872,0.596345,2.693204 +-0.483278,0.875921,-0.823027,-1.960376,0.597426,2.693699 +-0.483017,0.876348,-0.824023,-1.959949,0.598524,2.694126 +-0.482829,0.876705,-0.825050,-1.959592,0.599635,2.694483 +-0.482716,0.876990,-0.826105,-1.959307,0.600753,2.694768 +-0.482678,0.877202,-0.827183,-1.959095,0.601873,2.694980 +-0.482715,0.877339,-0.828279,-1.958958,0.602990,2.695117 +-0.482826,0.877402,-0.829387,-1.958895,0.604100,2.695180 +-0.483013,0.877390,-0.830504,-1.958907,0.605196,2.695168 +-0.483272,0.877302,-0.831623,-1.958995,0.606275,2.695081 +-0.483605,0.877140,-0.832740,-1.959157,0.607331,2.694919 +-0.484008,0.876905,-0.833850,-1.959392,0.608360,2.694683 +-0.484480,0.876596,-0.834948,-1.959701,0.609357,2.694374 +-0.485019,0.876216,-0.836029,-1.960081,0.610318,2.693994 +-0.485623,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-0.486288,0.875249,-0.838120,-1.961048,0.612112,2.693027 +-0.487012,0.874666,-0.839122,-1.961631,0.612938,2.692444 +-0.487792,0.874020,-0.840087,-1.962277,0.613712,2.691799 +-0.488625,0.873315,-0.841012,-1.962982,0.614429,2.691093 +-0.489505,0.872553,-0.841893,-1.963744,0.615087,2.690331 +-0.490430,0.871737,-0.842725,-1.964560,0.615684,2.689515 +-0.491395,0.870872,-0.843506,-1.965425,0.616215,2.688650 +-0.492396,0.869961,-0.844231,-1.966336,0.616679,2.687740 +-0.493428,0.869009,-0.844897,-1.967288,0.617073,2.686787 +-0.494488,0.868019,-0.845502,-1.968278,0.617397,2.685797 +-0.495569,0.866997,-0.846042,-1.969301,0.617648,2.684775 +-0.496667,0.865946,-0.846515,-1.970352,0.617825,2.683724 +-0.497778,0.864871,-0.846920,-1.971426,0.617928,2.682649 +-0.498896,0.863778,-0.847253,-1.972519,0.617956,2.681556 +-0.500016,0.862671,-0.847514,-1.973627,0.617908,2.680449 +-0.501133,0.861555,-0.847702,-1.974743,0.617786,2.679333 +-0.502242,0.860435,-0.847815,-1.975862,0.617590,2.678213 +-0.503339,0.859316,-0.847853,-1.976981,0.617320,2.677094 +-0.504418,0.858203,-0.847817,-1.978094,0.616978,2.675982 +-0.505474,0.857102,-0.847705,-1.979195,0.616565,2.674880 +-0.506503,0.856017,-0.847519,-1.980280,0.616084,2.673795 +-0.507500,0.854953,-0.847260,-1.981344,0.615536,2.672731 +-0.508460,0.853915,-0.846928,-1.982383,0.614923,2.671693 +-0.509380,0.852907,-0.846526,-1.983390,0.614249,2.670685 +-0.510255,0.851934,-0.846054,-1.984363,0.613517,2.669712 +-0.511081,0.851000,-0.845515,-1.985297,0.612730,2.668778 +-0.511854,0.850110,-0.844912,-1.986187,0.611891,2.667888 +-0.512572,0.849268,-0.844247,-1.987029,0.611004,2.667046 +-0.513230,0.848477,-0.843523,-1.987820,0.610073,2.666255 +-0.513826,0.847741,-0.842744,-1.988556,0.609103,2.665519 +-0.514357,0.847063,-0.841912,-1.989234,0.608097,2.664841 +-0.514821,0.846446,-0.841033,-1.989851,0.607061,2.664224 +-0.515216,0.845893,-0.840109,-1.990404,0.605998,2.663671 +-0.515539,0.845407,-0.839144,-1.990890,0.604914,2.663185 +-0.515790,0.844990,-0.838144,-1.991307,0.603814,2.662768 +-0.515967,0.844643,-0.837112,-1.991654,0.602702,2.662421 +-0.516070,0.844368,-0.836054,-1.991929,0.601584,2.662146 +-0.516098,0.844166,-0.834973,-1.992131,0.600464,2.661945 +-0.516051,0.844039,-0.833876,-1.992258,0.599347,2.661817 +-0.515929,0.843987,-0.832766,-1.992310,0.598239,2.661765 +-0.515732,0.844010,-0.831649,-1.992288,0.597145,2.661788 +-0.515462,0.844107,-0.830529,-1.992190,0.596069,2.661885 +-0.515120,0.844280,-0.829413,-1.992018,0.595016,2.662058 +-0.514707,0.844525,-0.828304,-1.991772,0.593991,2.662304 +-0.514226,0.844844,-0.827208,-1.991453,0.592999,2.662622 +-0.513678,0.845234,-0.826130,-1.991063,0.592044,2.663012 +-0.513065,0.845693,-0.825074,-1.990604,0.591130,2.663471 +-0.512391,0.846220,-0.824046,-1.990077,0.590262,2.663998 +-0.511659,0.846812,-0.823050,-1.989485,0.589443,2.664590 +-0.510871,0.847466,-0.822090,-1.988831,0.588677,2.665244 +-0.510032,0.848179,-0.821171,-1.988118,0.587968,2.665957 +-0.509146,0.848949,-0.820296,-1.987348,0.587318,2.666727 +-0.508215,0.849772,-0.819471,-1.986525,0.586731,2.667550 +-0.507245,0.850643,-0.818698,-1.985654,0.586209,2.668421 +-0.506239,0.851560,-0.817980,-1.984737,0.585754,2.669338 +-0.505202,0.852518,-0.817322,-1.983779,0.585369,2.670296 +-0.504140,0.853513,-0.816727,-1.982785,0.585056,2.671291 +-0.503056,0.854539,-0.816196,-1.981758,0.584815,2.672318 +-0.501956,0.855594,-0.815732,-1.980703,0.584648,2.673372 +-0.500844,0.856671,-0.815337,-1.979626,0.584556,2.674450 +-0.499725,0.857767,-0.815014,-1.978530,0.584538,2.675545 +-0.498605,0.858876,-0.814763,-1.977422,0.584596,2.676654 +-0.497489,0.859992,-0.814586,-1.976305,0.584728,2.677771 +-0.496381,0.861112,-0.814483,-1.975185,0.584935,2.678891 +-0.495287,0.862231,-0.814455,-1.974067,0.585215,2.680009 +-0.494211,0.863342,-0.814502,-1.972955,0.585567,2.681120 +-0.493158,0.864441,-0.814624,-1.971856,0.585989,2.682219 +-0.492133,0.865524,-0.814820,-1.970773,0.586480,2.683302 +-0.491141,0.866585,-0.815089,-1.969713,0.587038,2.684363 +-0.490186,0.867619,-0.815431,-1.968678,0.587659,2.685397 +-0.489272,0.868622,-0.815843,-1.967675,0.588341,2.686400 +-0.488404,0.869590,-0.816325,-1.966707,0.589081,2.687368 +-0.487585,0.870518,-0.816872,-1.965779,0.589876,2.688296 +-0.486819,0.871401,-0.817484,-1.964896,0.590722,2.689179 +-0.486110,0.872237,-0.818158,-1.964060,0.591615,2.690015 +-0.485460,0.873020,-0.818889,-1.963277,0.592551,2.690799 +-0.484873,0.873749,-0.819676,-1.962548,0.593527,2.691527 +-0.484351,0.874418,-0.820514,-1.961879,0.594537,2.692196 +-0.483896,0.875026,-0.821401,-1.961271,0.595577,2.692804 +-0.483511,0.875570,-0.822331,-1.960727,0.596643,2.693348 +-0.483198,0.876047,-0.823300,-1.960250,0.597730,2.693825 +-0.482957,0.876454,-0.824305,-1.959843,0.598832,2.694233 +-0.482790,0.876791,-0.825341,-1.959506,0.599945,2.694570 +-0.482698,0.877056,-0.826403,-1.959241,0.601064,2.694834 +-0.482681,0.877247,-0.827486,-1.959050,0.602184,2.695026 +-0.482738,0.877364,-0.828585,-1.958933,0.603299,2.695142 +-0.482871,0.877406,-0.829697,-1.958891,0.604406,2.695184 +-0.483077,0.877373,-0.830814,-1.958924,0.605498,2.695151 +-0.483357,0.877265,-0.831933,-1.959032,0.606571,2.695043 +-0.483709,0.877082,-0.833049,-1.959215,0.607620,2.694861 +-0.484132,0.876826,-0.834156,-1.959471,0.608640,2.694604 +-0.484623,0.876498,-0.835250,-1.959799,0.609628,2.694276 +-0.485180,0.876098,-0.836325,-1.960199,0.610577,2.693876 +-0.485801,0.875629,-0.837378,-1.960668,0.611485,2.693408 +-0.486483,0.875093,-0.838402,-1.961204,0.612347,2.692872 +-0.487224,0.874493,-0.839393,-1.961804,0.613158,2.692271 +-0.488018,0.873830,-0.840348,-1.962467,0.613917,2.691609 +-0.488864,0.873109,-0.841261,-1.963188,0.614618,2.690887 +-0.489758,0.872331,-0.842129,-1.963966,0.615259,2.690110 +-0.490694,0.871502,-0.842947,-1.964795,0.615838,2.689280 +-0.491669,0.870624,-0.843713,-1.965673,0.616350,2.688402 +-0.492680,0.869701,-0.844422,-1.966596,0.616795,2.687479 +-0.493720,0.868738,-0.845072,-1.967559,0.617170,2.686516 +-0.494786,0.867738,-0.845659,-1.968559,0.617474,2.685517 +-0.495872,0.866707,-0.846180,-1.969590,0.617704,2.684486 +-0.496975,0.865649,-0.846635,-1.970648,0.617861,2.683428 +-0.498088,0.864569,-0.847019,-1.971728,0.617943,2.682347 +-0.499207,0.863472,-0.847333,-1.972826,0.617950,2.681250 +-0.500326,0.862361,-0.847574,-1.973936,0.617882,2.680140 +-0.501442,0.861244,-0.847741,-1.975053,0.617739,2.679022 +-0.502548,0.860124,-0.847833,-1.976173,0.617522,2.677902 +-0.503640,0.859006,-0.847851,-1.977291,0.617232,2.676784 +-0.504713,0.857896,-0.847793,-1.978401,0.616871,2.675675 +-0.505763,0.856799,-0.847661,-1.979498,0.616438,2.674577 +-0.506783,0.855719,-0.847455,-1.980578,0.615938,2.673497 +-0.507770,0.854662,-0.847175,-1.981635,0.615372,2.672440 +-0.508720,0.853631,-0.846823,-1.982666,0.614742,2.671410 +-0.509628,0.852633,-0.846401,-1.983664,0.614052,2.670411 +-0.510489,0.851670,-0.845911,-1.984627,0.613304,2.669449 +-0.511301,0.850749,-0.845354,-1.985549,0.612502,2.668527 +-0.512059,0.849871,-0.844734,-1.986426,0.611649,2.667650 +-0.512761,0.849043,-0.844052,-1.987254,0.610750,2.666821 +-0.513402,0.848267,-0.843312,-1.988030,0.609807,2.666045 +-0.513980,0.847546,-0.842518,-1.988751,0.608827,2.665325 +-0.514493,0.846885,-0.841673,-1.989412,0.607812,2.664663 +-0.514938,0.846286,-0.840780,-1.990011,0.606768,2.664064 +-0.515313,0.845752,-0.839845,-1.990546,0.605699,2.663530 +-0.515616,0.845284,-0.838870,-1.991013,0.604610,2.663062 +-0.515847,0.844886,-0.837860,-1.991411,0.603506,2.662664 +-0.516003,0.844559,-0.836821,-1.991738,0.602392,2.662337 +-0.516085,0.844305,-0.835756,-1.991993,0.601273,2.662083 +-0.516092,0.844124,-0.834670,-1.992173,0.600153,2.661902 +-0.516024,0.844017,-0.833569,-1.992280,0.599038,2.661795 +-0.515881,0.843986,-0.832456,-1.992311,0.597934,2.661764 +-0.515665,0.844029,-0.831338,-1.992268,0.596844,2.661807 +-0.515374,0.844148,-0.830219,-1.992149,0.595774,2.661926 +-0.515013,0.844340,-0.829104,-1.991957,0.594729,2.662119 +-0.514581,0.844607,-0.827998,-1.991690,0.593712,2.662385 +-0.514080,0.844945,-0.826907,-1.991352,0.592730,2.662723 +-0.513514,0.845355,-0.825835,-1.990943,0.591786,2.663133 +-0.512884,0.845833,-0.824786,-1.990464,0.590885,2.663611 +-0.512194,0.846378,-0.823766,-1.989919,0.590030,2.664156 +-0.511446,0.846987,-0.822779,-1.989310,0.589225,2.664765 +-0.510644,0.847658,-0.821830,-1.988639,0.588474,2.665436 +-0.509791,0.848388,-0.820923,-1.987910,0.587781,2.666166 +-0.508891,0.849172,-0.820062,-1.987125,0.587149,2.666951 +-0.507949,0.850009,-0.819251,-1.986288,0.586579,2.667787 +-0.506969,0.850893,-0.818493,-1.985404,0.586076,2.668672 +-0.505954,0.851822,-0.817792,-1.984475,0.585640,2.669600 +-0.504910,0.852791,-0.817151,-1.983507,0.585275,2.670569 +-0.503841,0.853795,-0.816573,-1.982503,0.584982,2.671573 +-0.502752,0.854830,-0.816060,-1.981468,0.584761,2.672608 +-0.501648,0.855891,-0.815615,-1.980406,0.584615,2.673669 +-0.500534,0.856974,-0.815240,-1.979323,0.584543,2.674752 +-0.499414,0.858074,-0.814937,-1.978224,0.584547,2.675852 +-0.498295,0.859185,-0.814706,-1.977112,0.584625,2.676963 +-0.497180,0.860303,-0.814550,-1.975994,0.584778,2.678081 +-0.496076,0.861423,-0.814468,-1.974874,0.585005,2.679201 +-0.494986,0.862540,-0.814460,-1.973757,0.585306,2.680318 +-0.493916,0.863648,-0.814528,-1.972649,0.585677,2.681427 +-0.492870,0.864744,-0.814671,-1.971553,0.586119,2.682522 +-0.491854,0.865821,-0.814887,-1.970476,0.586628,2.683599 +-0.490872,0.866875,-0.815177,-1.969423,0.587204,2.684653 +-0.489928,0.867901,-0.815539,-1.968396,0.587842,2.685679 +-0.489026,0.868895,-0.815970,-1.967402,0.588541,2.686673 +-0.488172,0.869852,-0.816470,-1.966445,0.589296,2.687630 +-0.487367,0.870768,-0.817036,-1.965530,0.590106,2.688546 +-0.486616,0.871638,-0.817665,-1.964659,0.590965,2.689416 +-0.485923,0.872460,-0.818355,-1.963837,0.591871,2.690238 +-0.485291,0.873228,-0.819102,-1.963069,0.592818,2.691006 +-0.484721,0.873941,-0.819904,-1.962357,0.593804,2.691719 +-0.484218,0.874593,-0.820756,-1.961704,0.594823,2.692372 +-0.483782,0.875184,-0.821655,-1.961113,0.595871,2.692962 +-0.483417,0.875709,-0.822596,-1.960588,0.596943,2.693487 +-0.483124,0.876167,-0.823576,-1.960130,0.598034,2.693945 +-0.482903,0.876555,-0.824590,-1.959742,0.599140,2.694333 +-0.482757,0.876872,-0.825633,-1.959425,0.600255,2.694650 +-0.482686,0.877117,-0.826701,-1.959180,0.601375,2.694895 +-0.482689,0.877287,-0.827790,-1.959010,0.602494,2.695065 +-0.482768,0.877383,-0.828893,-1.958914,0.603607,2.695162 +-0.482921,0.877404,-0.830006,-1.958893,0.604710,2.695183 +-0.483148,0.877350,-0.831125,-1.958947,0.605798,2.695129 +-0.483448,0.877222,-0.832244,-1.959075,0.606865,2.695000 +-0.483820,0.877019,-0.833358,-1.959278,0.607906,2.694797 +-0.484261,0.876742,-0.834462,-1.959555,0.608918,2.694520 +-0.484771,0.876394,-0.835551,-1.959903,0.609895,2.694172 +-0.485346,0.875975,-0.836620,-1.960322,0.610834,2.693753 +-0.485985,0.875487,-0.837665,-1.960810,0.611729,2.693265 +-0.486683,0.874933,-0.838680,-1.961364,0.612577,2.692711 +-0.487439,0.874315,-0.839662,-1.961982,0.613374,2.692093 +-0.488248,0.873636,-0.840606,-1.962661,0.614117,2.691414 +-0.489108,0.872898,-0.841507,-1.963399,0.614802,2.690677 +-0.490013,0.872106,-0.842361,-1.964191,0.615426,2.689884 +-0.490961,0.871263,-0.843165,-1.965034,0.615987,2.689041 +-0.491947,0.870372,-0.843916,-1.965925,0.616481,2.688150 +-0.492966,0.869437,-0.844608,-1.966860,0.616907,2.687216 +-0.494014,0.868464,-0.845241,-1.967833,0.617262,2.686242 +-0.495086,0.867455,-0.845810,-1.968842,0.617545,2.685233 +-0.496177,0.866416,-0.846313,-1.969881,0.617755,2.684194 +-0.497283,0.865352,-0.846749,-1.970946,0.617891,2.683130 +-0.498398,0.864266,-0.847114,-1.972031,0.617953,2.682044 +-0.499518,0.863164,-0.847407,-1.973133,0.617939,2.680943 +-0.500637,0.862052,-0.847627,-1.974245,0.617850,2.679830 +-0.501750,0.860933,-0.847774,-1.975364,0.617686,2.678711 +-0.502853,0.859813,-0.847846,-1.976484,0.617449,2.677591 +-0.503940,0.858697,-0.847842,-1.977600,0.617139,2.676475 +-0.505007,0.857590,-0.847764,-1.978707,0.616758,2.675368 +-0.506049,0.856497,-0.847611,-1.979800,0.616306,2.674276 +-0.507061,0.855423,-0.847384,-1.980874,0.615787,2.673201 +-0.508038,0.854373,-0.847085,-1.981924,0.615203,2.672151 +-0.508976,0.853351,-0.846713,-1.982946,0.614556,2.671129 +-0.509872,0.852362,-0.846272,-1.983935,0.613850,2.670140 +-0.510720,0.851410,-0.845763,-1.984887,0.613086,2.669188 +-0.511517,0.850500,-0.845188,-1.985797,0.612270,2.668279 +-0.512260,0.849636,-0.844550,-1.986661,0.611404,2.667415 +-0.512945,0.848822,-0.843852,-1.987475,0.610492,2.666600 +-0.513569,0.848061,-0.843097,-1.988236,0.609539,2.665839 +-0.514129,0.847357,-0.842288,-1.988940,0.608548,2.665135 +-0.514623,0.846713,-0.841430,-1.989585,0.607525,2.664491 +-0.515049,0.846131,-0.840525,-1.990166,0.606474,2.663909 +-0.515404,0.845615,-0.839578,-1.990682,0.605399,2.663393 +-0.515688,0.845167,-0.838593,-1.991130,0.604305,2.662945 +-0.515898,0.844788,-0.837575,-1.991509,0.603198,2.662566 +-0.516034,0.844481,-0.836528,-1.991816,0.602081,2.662259 +-0.516095,0.844247,-0.835456,-1.992050,0.600962,2.662025 +-0.516081,0.844087,-0.834366,-1.992211,0.599843,2.661865 +-0.515992,0.844001,-0.833261,-1.992296,0.598731,2.661779 +-0.515829,0.843990,-0.832146,-1.992307,0.597630,2.661768 +-0.515591,0.844055,-0.831027,-1.992243,0.596545,2.661833 +-0.515281,0.844194,-0.829909,-1.992103,0.595481,2.661972 +-0.514900,0.844407,-0.828796,-1.991890,0.594443,2.662185 +-0.514448,0.844694,-0.827694,-1.991604,0.593436,2.662472 +-0.513930,0.845052,-0.826607,-1.991245,0.592464,2.662830 +-0.513345,0.845480,-0.825541,-1.990817,0.591531,2.663259 +-0.512698,0.845977,-0.824500,-1.990320,0.590642,2.663756 +-0.511992,0.846541,-0.823489,-1.989757,0.589801,2.664319 +-0.511228,0.847167,-0.822512,-1.989130,0.589011,2.664946 +-0.510412,0.847855,-0.821574,-1.988442,0.588276,2.665633 +-0.509546,0.848600,-0.820679,-1.987697,0.587599,2.666378 +-0.508634,0.849400,-0.819832,-1.986898,0.586984,2.667178 +-0.507681,0.850250,-0.819035,-1.986047,0.586433,2.668028 +-0.506690,0.851147,-0.818292,-1.985150,0.585948,2.668925 +-0.505667,0.852087,-0.817608,-1.984210,0.585532,2.669865 +-0.504615,0.853066,-0.816984,-1.983231,0.585186,2.670844 +-0.503540,0.854079,-0.816424,-1.982218,0.584913,2.671857 +-0.502447,0.855122,-0.815930,-1.981175,0.584713,2.672900 +-0.501339,0.856190,-0.815504,-1.980107,0.584588,2.673968 +-0.500223,0.857278,-0.815149,-1.979019,0.584537,2.675056 +-0.499103,0.858381,-0.814866,-1.977916,0.584561,2.676159 +-0.497985,0.859495,-0.814655,-1.976802,0.584660,2.677273 +-0.496872,0.860614,-0.814519,-1.975683,0.584834,2.678392 +-0.495771,0.861734,-0.814458,-1.974563,0.585081,2.679512 +-0.494687,0.862849,-0.814472,-1.973448,0.585402,2.680627 +-0.493623,0.863954,-0.814560,-1.972343,0.585793,2.681732 +-0.492585,0.865045,-0.814724,-1.971252,0.586254,2.682823 +-0.491578,0.866116,-0.814961,-1.970181,0.586782,2.683894 +-0.490606,0.867163,-0.815270,-1.969135,0.587375,2.684941 +-0.489673,0.868180,-0.815651,-1.968117,0.588030,2.685958 +-0.488784,0.869164,-0.816102,-1.967133,0.588745,2.686942 +-0.487943,0.870110,-0.816621,-1.966187,0.589516,2.687888 +-0.487153,0.871014,-0.817204,-1.965283,0.590339,2.688792 +-0.486418,0.871871,-0.817851,-1.964426,0.591212,2.689650 +-0.485741,0.872679,-0.818557,-1.963619,0.592130,2.690457 +-0.485126,0.873432,-0.819320,-1.962865,0.593088,2.691210 +-0.484575,0.874128,-0.820135,-1.962169,0.594084,2.691906 +-0.484090,0.874764,-0.821001,-1.961533,0.595111,2.692542 +-0.483674,0.875336,-0.821912,-1.960961,0.596166,2.693114 +-0.483329,0.875843,-0.822864,-1.960454,0.597244,2.693621 +-0.483055,0.876282,-0.823854,-1.960015,0.598340,2.694060 +-0.482855,0.876650,-0.824877,-1.959647,0.599449,2.694429 +-0.482730,0.876947,-0.825927,-1.959350,0.600566,2.694726 +-0.482679,0.877171,-0.827002,-1.959126,0.601686,2.694950 +-0.482703,0.877321,-0.828095,-1.958976,0.602804,2.695100 +-0.482803,0.877397,-0.829201,-1.958900,0.603915,2.695175 +-0.482976,0.877397,-0.830317,-1.958900,0.605014,2.695175 +-0.483224,0.877322,-0.831436,-1.958975,0.606096,2.695100 +-0.483544,0.877173,-0.832554,-1.959124,0.607157,2.694951 +-0.483935,0.876949,-0.833665,-1.959348,0.608190,2.694727 +-0.484396,0.876653,-0.834766,-1.959644,0.609193,2.694431 +-0.484924,0.876284,-0.835850,-1.960013,0.610160,2.694063 +-0.485517,0.875846,-0.836913,-1.960451,0.611087,2.693624 +-0.486173,0.875340,-0.837950,-1.960957,0.611969,2.693118 +-0.486887,0.874768,-0.838957,-1.961529,0.612804,2.692546 +-0.487658,0.874132,-0.839928,-1.962165,0.613586,2.691911 +-0.488482,0.873437,-0.840860,-1.962860,0.614313,2.691215 +-0.489355,0.872684,-0.841749,-1.963613,0.614982,2.690462 +-0.490272,0.871877,-0.842590,-1.964420,0.615588,2.689655 +-0.491231,0.871020,-0.843379,-1.965277,0.616131,2.688798 +-0.492226,0.870117,-0.844114,-1.966181,0.616606,2.687895 +-0.493254,0.869171,-0.844790,-1.967126,0.617012,2.686949 +-0.494309,0.868187,-0.845405,-1.968110,0.617348,2.685965 +-0.495387,0.867170,-0.845956,-1.969128,0.617611,2.684948 +-0.496483,0.866123,-0.846441,-1.970174,0.617801,2.683901 +-0.497592,0.865052,-0.846857,-1.971245,0.617916,2.682830 +-0.498709,0.863962,-0.847202,-1.972336,0.617956,2.681740 +-0.499829,0.862856,-0.847476,-1.973441,0.617922,2.680635 +-0.500947,0.861742,-0.847676,-1.974556,0.617812,2.679520 +-0.502058,0.860622,-0.847801,-1.975675,0.617628,2.678400 +-0.503157,0.859503,-0.847852,-1.976794,0.617370,2.677281 +-0.504239,0.858389,-0.847828,-1.977908,0.617040,2.676167 +-0.505299,0.857285,-0.847729,-1.979012,0.616639,2.675063 +-0.506333,0.856197,-0.847556,-1.980100,0.616169,2.673975 +-0.507336,0.855129,-0.847308,-1.981168,0.615632,2.672907 +-0.508302,0.854086,-0.846989,-1.982211,0.615030,2.671864 +-0.509229,0.853073,-0.846598,-1.983224,0.614366,2.670851 +-0.510112,0.852094,-0.846137,-1.984203,0.613643,2.669872 +-0.510946,0.851153,-0.845610,-1.985144,0.612865,2.668932 +-0.511729,0.850256,-0.845017,-1.986041,0.612034,2.668034 +-0.512456,0.849405,-0.844362,-1.986892,0.611155,2.667183 +-0.513124,0.848605,-0.843648,-1.987692,0.610231,2.666383 +-0.513731,0.847860,-0.842878,-1.988437,0.609267,2.665638 +-0.514273,0.847172,-0.842055,-1.989125,0.608267,2.664950 +-0.514748,0.846545,-0.841183,-1.989752,0.607236,2.664323 +-0.515155,0.845981,-0.840266,-1.990316,0.606177,2.663759 +-0.515490,0.845484,-0.839308,-1.990813,0.605097,2.663262 +-0.515753,0.845055,-0.838313,-1.991243,0.603999,2.662833 +-0.515943,0.844696,-0.837287,-1.991601,0.602888,2.662474 +-0.516058,0.844409,-0.836232,-1.991888,0.601771,2.662187 +-0.516099,0.844195,-0.835155,-1.992102,0.600651,2.661973 +-0.516064,0.844055,-0.834060,-1.992242,0.599533,2.661834 +-0.515954,0.843990,-0.832952,-1.992307,0.598424,2.661769 +-0.515770,0.844001,-0.831836,-1.992297,0.597327,2.661779 +-0.515512,0.844086,-0.830716,-1.992211,0.596247,2.661864 +-0.515182,0.844246,-0.829599,-1.992052,0.595190,2.662024 +-0.514781,0.844479,-0.828489,-1.991818,0.594160,2.662257 +-0.514311,0.844786,-0.827390,-1.991511,0.593163,2.662564 +-0.513774,0.845164,-0.826309,-1.991133,0.592201,2.662942 +-0.513172,0.845612,-0.825249,-1.990685,0.591280,2.663390 +-0.512508,0.846127,-0.824216,-1.990170,0.590404,2.663905 +-0.511785,0.846708,-0.823214,-1.989589,0.589576,2.664487 +-0.511007,0.847352,-0.822248,-1.988945,0.588801,2.665130 +-0.510176,0.848056,-0.821321,-1.988241,0.588082,2.665834 +-0.509297,0.848817,-0.820439,-1.987480,0.587422,2.666595 +-0.508373,0.849631,-0.819605,-1.986666,0.586824,2.667409 +-0.507409,0.850494,-0.818823,-1.985803,0.586291,2.668273 +-0.506409,0.851404,-0.818096,-1.984893,0.585825,2.669182 +-0.505378,0.852355,-0.817428,-1.983942,0.585429,2.670133 +-0.504319,0.853344,-0.816822,-1.982953,0.585103,2.671122 +-0.503238,0.854366,-0.816280,-1.981931,0.584850,2.672144 +-0.502141,0.855416,-0.815805,-1.980881,0.584671,2.673194 +-0.501030,0.856490,-0.815398,-1.979807,0.584566,2.674268 +-0.499912,0.857583,-0.815063,-1.978714,0.584536,2.675361 +-0.498792,0.858690,-0.814800,-1.977608,0.584581,2.676468 +-0.497675,0.859805,-0.814610,-1.976492,0.584701,2.677584 +-0.496565,0.860925,-0.814495,-1.975372,0.584895,2.678703 +-0.495468,0.862044,-0.814454,-1.974253,0.585163,2.679822 +-0.494389,0.863157,-0.814489,-1.973140,0.585503,2.680935 +-0.493332,0.864259,-0.814598,-1.972039,0.585914,2.682037 +-0.492302,0.865344,-0.814782,-1.970953,0.586394,2.683122 +-0.491304,0.866409,-0.815039,-1.969888,0.586940,2.684187 +-0.490343,0.867448,-0.815369,-1.968849,0.587551,2.685226 +-0.489422,0.868457,-0.815770,-1.967840,0.588223,2.686235 +-0.488546,0.869431,-0.816239,-1.966866,0.588953,2.687209 +-0.487718,0.870366,-0.816776,-1.965932,0.589739,2.688144 +-0.486943,0.871257,-0.817378,-1.965040,0.590577,2.689035 +-0.486224,0.872101,-0.818041,-1.964196,0.591462,2.689879 +-0.485564,0.872893,-0.818763,-1.963404,0.592392,2.690671 +-0.484966,0.873631,-0.819541,-1.962666,0.593361,2.691409 +-0.484433,0.874311,-0.820371,-1.961987,0.594366,2.692089 +-0.483967,0.874929,-0.821249,-1.961368,0.595402,2.692707 +-0.483571,0.875484,-0.822172,-1.960814,0.596463,2.693262 +-0.483245,0.875972,-0.823136,-1.960325,0.597547,2.693750 +-0.482992,0.876391,-0.824135,-1.959906,0.598647,2.694169 +-0.482813,0.876740,-0.825166,-1.959557,0.599758,2.694518 +-0.482708,0.877017,-0.826224,-1.959280,0.600877,2.694795 +-0.482678,0.877221,-0.827303,-1.959077,0.601997,2.694999 +-0.482723,0.877350,-0.828401,-1.958947,0.603113,2.695128 +-0.482843,0.877404,-0.829510,-1.958893,0.604222,2.695182 +-0.483038,0.877384,-0.830627,-1.958913,0.605316,2.695162 +-0.483306,0.877288,-0.831747,-1.959009,0.606393,2.695066 +-0.483646,0.877118,-0.832863,-1.959179,0.607446,2.694896 +-0.484056,0.876874,-0.833972,-1.959423,0.608472,2.694652 +-0.484536,0.876558,-0.835069,-1.959740,0.609465,2.694336 +-0.485082,0.876170,-0.836147,-1.960127,0.610421,2.693948 +-0.485693,0.875712,-0.837204,-1.960585,0.611336,2.693491 +-0.486365,0.875188,-0.838233,-1.961110,0.612206,2.692966 +-0.487096,0.874598,-0.839230,-1.961699,0.613026,2.692376 +-0.487882,0.873945,-0.840191,-1.962352,0.613794,2.691723 +-0.488720,0.873233,-0.841111,-1.963064,0.614505,2.691012 +-0.489605,0.872465,-0.841987,-1.963832,0.615156,2.690243 +-0.490535,0.871644,-0.842814,-1.964653,0.615745,2.689422 +-0.491504,0.870774,-0.843589,-1.965523,0.616269,2.688552 +-0.492509,0.869858,-0.844308,-1.966439,0.616726,2.687636 +-0.493544,0.868901,-0.844967,-1.967396,0.617113,2.686680 +-0.494606,0.867908,-0.845565,-1.968389,0.617428,2.685686 +-0.495689,0.866882,-0.846098,-1.969415,0.617671,2.684660 +-0.496789,0.865828,-0.846564,-1.970469,0.617840,2.683606 +-0.497901,0.864751,-0.846960,-1.971546,0.617935,2.682529 +-0.499019,0.863656,-0.847285,-1.972641,0.617954,2.681434 +-0.500139,0.862548,-0.847539,-1.973749,0.617899,2.680326 +-0.501256,0.861431,-0.847718,-1.974866,0.617768,2.679209 +-0.502364,0.860311,-0.847823,-1.975986,0.617564,2.678089 +-0.503459,0.859193,-0.847853,-1.977104,0.617286,2.676971 +-0.504536,0.858081,-0.847808,-1.978216,0.616936,2.675859 +-0.505589,0.856981,-0.847688,-1.979316,0.616515,2.674760 +-0.506615,0.855898,-0.847494,-1.980399,0.616026,2.673676 +-0.507608,0.854837,-0.847227,-1.981460,0.615471,2.672615 +-0.508564,0.853802,-0.846887,-1.982496,0.614852,2.671580 +-0.509479,0.852797,-0.846477,-1.983500,0.614171,2.670576 +-0.510349,0.851829,-0.845998,-1.984469,0.613433,2.669607 +-0.511169,0.850900,-0.845452,-1.985397,0.612639,2.668678 +-0.511936,0.850015,-0.844842,-1.986282,0.611795,2.667793 +-0.512647,0.849178,-0.844170,-1.987119,0.610903,2.666956 +-0.513299,0.848393,-0.843440,-1.987904,0.609968,2.666171 +-0.513888,0.847663,-0.842655,-1.988634,0.608993,2.665441 +-0.514412,0.846992,-0.841818,-1.989306,0.607984,2.664770 +-0.514868,0.846382,-0.840933,-1.989915,0.606944,2.664160 +-0.515255,0.845836,-0.840004,-1.990461,0.605879,2.663614 +-0.515571,0.845358,-0.839035,-1.990940,0.604793,2.663136 +-0.515813,0.844948,-0.838031,-1.991349,0.603691,2.662726 +-0.515982,0.844609,-0.836996,-1.991688,0.602579,2.662387 +-0.516077,0.844342,-0.835935,-1.991955,0.601460,2.662120 +-0.516096,0.844149,-0.834853,-1.992148,0.600340,2.661927 +-0.516041,0.844030,-0.833754,-1.992267,0.599224,2.661808 +-0.515911,0.843986,-0.832643,-1.992311,0.598118,2.661764 +-0.515706,0.844017,-0.831525,-1.992280,0.597025,2.661795 +-0.515428,0.844123,-0.830406,-1.992174,0.595951,2.661901 +-0.515078,0.844303,-0.829290,-1.991994,0.594901,2.662081 +-0.514658,0.844557,-0.828182,-1.991740,0.593880,2.662335 +-0.514168,0.844884,-0.827088,-1.991413,0.592892,2.662662 +-0.513613,0.845281,-0.826012,-1.991016,0.591941,2.663059 +-0.512994,0.845748,-0.824959,-1.990549,0.591032,2.663526 +-0.512313,0.846282,-0.823934,-1.990015,0.590169,2.664060 +-0.511575,0.846881,-0.822942,-1.989416,0.589356,2.664659 +-0.510781,0.847542,-0.821986,-1.988755,0.588596,2.665320 +-0.509937,0.848262,-0.821072,-1.988035,0.587893,2.666040 +-0.509045,0.849037,-0.820203,-1.987260,0.587250,2.666816 +-0.508110,0.849866,-0.819383,-1.986431,0.586670,2.667644 +-0.507135,0.850742,-0.818616,-1.985555,0.586155,2.668521 +-0.506126,0.851664,-0.817905,-1.984633,0.585708,2.669442 +-0.505086,0.852626,-0.817254,-1.983671,0.585331,2.670404 +-0.504021,0.853625,-0.816665,-1.982673,0.585026,2.671403 +-0.502935,0.854655,-0.816141,-1.981642,0.584793,2.672433 +-0.501833,0.855712,-0.815685,-1.980585,0.584634,2.673490 +-0.500720,0.856792,-0.815298,-1.979506,0.584550,2.674570 +-0.499602,0.857889,-0.814983,-1.978408,0.584541,2.675667 +-0.498482,0.858999,-0.814740,-1.977298,0.584607,2.676777 +-0.497366,0.860116,-0.814571,-1.976181,0.584748,2.677894 +-0.496259,0.861236,-0.814476,-1.975061,0.584962,2.679014 +-0.495167,0.862354,-0.814456,-1.973943,0.585250,2.680132 +-0.494093,0.863464,-0.814512,-1.972833,0.585610,2.681242 +-0.493043,0.864562,-0.814642,-1.971735,0.586040,2.682340 +-0.492022,0.865642,-0.814846,-1.970655,0.586539,2.683420 +-0.491034,0.866700,-0.815124,-1.969597,0.587103,2.684478 +-0.490083,0.867731,-0.815473,-1.968566,0.587731,2.685510 +-0.489174,0.868731,-0.815893,-1.967566,0.588420,2.686509 +-0.488311,0.869695,-0.816382,-1.966603,0.589166,2.687473 +-0.487498,0.870618,-0.816937,-1.965680,0.589967,2.688396 +-0.486738,0.871496,-0.817556,-1.964801,0.590818,2.689274 +-0.486035,0.872326,-0.818236,-1.963971,0.591716,2.690104 +-0.485392,0.873104,-0.818974,-1.963193,0.592657,2.690882 +-0.484812,0.873826,-0.819766,-1.962472,0.593637,2.691604 +-0.484297,0.874489,-0.820610,-1.961809,0.594651,2.692267 +-0.483850,0.875090,-0.821501,-1.961208,0.595694,2.692868 +-0.483473,0.875626,-0.822436,-1.960671,0.596762,2.693404 +-0.483168,0.876095,-0.823410,-1.960202,0.597851,2.693873 +-0.482935,0.876495,-0.824418,-1.959802,0.598954,2.694273 +-0.482776,0.876824,-0.825457,-1.959473,0.600068,2.694602 +-0.482692,0.877081,-0.826521,-1.959216,0.601188,2.694859 +-0.482683,0.877264,-0.827607,-1.959033,0.602307,2.695042 +-0.482749,0.877372,-0.828708,-1.958925,0.603422,2.695151 +-0.482890,0.877406,-0.829820,-1.958891,0.604527,2.695184 +-0.483105,0.877365,-0.830938,-1.958932,0.605617,2.695143 +-0.483393,0.877248,-0.832057,-1.959049,0.606688,2.695027 +-0.483753,0.877058,-0.833172,-1.959239,0.607734,2.694836 +-0.484183,0.876794,-0.834278,-1.959504,0.608751,2.694572 +-0.484681,0.876457,-0.835370,-1.959840,0.609734,2.694235 +-0.485246,0.876050,-0.836443,-1.960247,0.610680,2.693828 +-0.485874,0.875573,-0.837492,-1.960724,0.611582,2.693352 +-0.486562,0.875030,-0.838513,-1.961267,0.612439,2.692808 +-0.487309,0.874423,-0.839501,-1.961874,0.613245,2.692201 +-0.488109,0.873753,-0.840451,-1.962544,0.613997,2.691532 +-0.488961,0.873026,-0.841359,-1.963272,0.614692,2.690804 +-0.489859,0.872242,-0.842222,-1.964055,0.615326,2.690020 +-0.490800,0.871407,-0.843035,-1.964890,0.615898,2.689185 +-0.491779,0.870524,-0.843794,-1.965773,0.616403,2.688302 +-0.492793,0.869596,-0.844497,-1.966701,0.616840,2.687375 +-0.493837,0.868629,-0.845140,-1.967668,0.617207,2.686407 +-0.494905,0.867626,-0.845719,-1.968671,0.617503,2.685404 +-0.495993,0.866592,-0.846234,-1.969705,0.617725,2.684370 +-0.497097,0.865531,-0.846681,-1.970766,0.617874,2.683309 +-0.498211,0.864449,-0.847058,-1.971848,0.617948,2.682227 +-0.499330,0.863349,-0.847363,-1.972948,0.617946,2.681128 +-0.500450,0.862238,-0.847596,-1.974059,0.617870,2.680016 +-0.501565,0.861120,-0.847755,-1.975177,0.617719,2.678898 +-0.502670,0.860000,-0.847839,-1.976297,0.617494,2.677778 +-0.503760,0.858883,-0.847848,-1.977414,0.617196,2.676661 +-0.504831,0.857774,-0.847782,-1.978523,0.616826,2.675553 +-0.505877,0.856679,-0.847642,-1.979618,0.616387,2.674457 +-0.506894,0.855601,-0.847427,-1.980696,0.615879,2.673379 +-0.507877,0.854547,-0.847140,-1.981751,0.615305,2.672325 +-0.508822,0.853519,-0.846780,-1.982778,0.614669,2.671298 +-0.509725,0.852525,-0.846351,-1.983772,0.613972,2.670303 +-0.510581,0.851567,-0.845853,-1.984731,0.613218,2.669345 +-0.511387,0.850649,-0.845289,-1.985648,0.612410,2.668428 +-0.512140,0.849777,-0.844661,-1.986520,0.611552,2.667556 +-0.512834,0.848955,-0.843973,-1.987343,0.610647,2.666733 +-0.513469,0.848184,-0.843227,-1.988113,0.609701,2.665963 +-0.514040,0.847470,-0.842427,-1.988827,0.608716,2.665249 +-0.514545,0.846816,-0.841577,-1.989481,0.607698,2.664594 +-0.514983,0.846224,-0.840679,-1.990073,0.606651,2.664002 +-0.515350,0.845697,-0.839739,-1.990601,0.605580,2.663475 +-0.515645,0.845237,-0.838760,-1.991060,0.604489,2.663015 +-0.515868,0.844847,-0.837747,-1.991451,0.603383,2.662625 +-0.516016,0.844527,-0.836704,-1.991770,0.602268,2.662306 +-0.516090,0.844281,-0.835637,-1.992016,0.601149,2.662059 +-0.516089,0.844108,-0.834549,-1.992189,0.600030,2.661886 +-0.516012,0.844010,-0.833446,-1.992287,0.598916,2.661788 +-0.515861,0.843987,-0.832333,-1.992310,0.597813,2.661765 +-0.515636,0.844039,-0.831214,-1.992258,0.596725,2.661817 +-0.515338,0.844165,-0.830095,-1.992132,0.595657,2.661944 +-0.514968,0.844366,-0.828981,-1.991931,0.594615,2.662144 +-0.514529,0.844641,-0.827877,-1.991657,0.593602,2.662419 +-0.514021,0.844987,-0.826787,-1.991310,0.592624,2.662765 +-0.513447,0.845404,-0.825717,-1.990893,0.591684,2.663182 +-0.512811,0.845890,-0.824672,-1.990407,0.590788,2.663668 +-0.512114,0.846442,-0.823655,-1.989855,0.589938,2.664220 +-0.511360,0.847058,-0.822673,-1.989239,0.589139,2.664836 +-0.510552,0.847736,-0.821728,-1.988561,0.588395,2.665514 +-0.509694,0.848472,-0.820826,-1.987826,0.587708,2.666250 +-0.508789,0.849262,-0.819970,-1.987035,0.587082,2.667040 +-0.507843,0.850104,-0.819164,-1.986193,0.586520,2.667883 +-0.506858,0.850994,-0.818412,-1.985303,0.586024,2.668772 +-0.505840,0.851927,-0.817718,-1.984370,0.585596,2.669705 +-0.504793,0.852900,-0.817084,-1.983397,0.585239,2.670678 +-0.503722,0.853908,-0.816513,-1.982390,0.584954,2.671686 +-0.502631,0.854946,-0.816008,-1.981351,0.584741,2.672724 +-0.501525,0.856010,-0.815570,-1.980287,0.584603,2.673788 +-0.500410,0.857095,-0.815203,-1.979202,0.584540,2.674873 +-0.499291,0.858196,-0.814908,-1.978101,0.584552,2.675974 +-0.498171,0.859308,-0.814685,-1.976989,0.584638,2.677087 +-0.497058,0.860427,-0.814537,-1.975870,0.584800,2.678205 +-0.495954,0.861547,-0.814463,-1.974750,0.585035,2.679325 +-0.494867,0.862663,-0.814464,-1.973634,0.585343,2.680441 +-0.493799,0.863770,-0.814540,-1.972527,0.585723,2.681548 +-0.492757,0.864864,-0.814691,-1.971433,0.586172,2.682642 +-0.491744,0.865938,-0.814916,-1.970359,0.586689,2.683717 +-0.490766,0.866989,-0.815214,-1.969308,0.587271,2.684768 +-0.489826,0.868012,-0.815583,-1.968285,0.587916,2.685791 +-0.488930,0.869002,-0.816022,-1.967295,0.588621,2.686781 +-0.488080,0.869955,-0.816529,-1.966342,0.589383,2.687733 +-0.487281,0.870866,-0.817102,-1.965431,0.590198,2.688644 +-0.486537,0.871731,-0.817738,-1.964566,0.591063,2.689510 +-0.485850,0.872547,-0.818435,-1.963750,0.591973,2.690325 +-0.485224,0.873310,-0.819188,-1.962987,0.592926,2.691088 +-0.484662,0.874016,-0.819996,-1.962281,0.593915,2.691794 +-0.484166,0.874662,-0.820853,-1.961635,0.594937,2.692440 +-0.483739,0.875245,-0.821757,-1.961052,0.595988,2.693023 +-0.483381,0.875763,-0.822702,-1.960534,0.597063,2.693541 +-0.483096,0.876213,-0.823686,-1.960084,0.598156,2.693991 +-0.482884,0.876594,-0.824704,-1.959703,0.599263,2.694372 +-0.482746,0.876903,-0.825750,-1.959394,0.600379,2.694681 +-0.482682,0.877139,-0.826821,-1.959158,0.601499,2.694917 +-0.482694,0.877302,-0.827911,-1.958996,0.602617,2.695080 +-0.482781,0.877389,-0.829016,-1.958908,0.603730,2.695168 +-0.482942,0.877402,-0.830130,-1.958895,0.604831,2.695180 +-0.483177,0.877340,-0.831249,-1.958957,0.605917,2.695118 +-0.483486,0.877203,-0.832367,-1.959094,0.606981,2.694981 +-0.483865,0.876992,-0.833480,-1.959305,0.608020,2.694770 +-0.484314,0.876707,-0.834583,-1.959590,0.609028,2.694485 +-0.484831,0.876351,-0.835670,-1.959946,0.610001,2.694129 +-0.485414,0.875924,-0.836737,-1.960373,0.610935,2.693702 +-0.486059,0.875429,-0.837779,-1.960868,0.611825,2.693207 +-0.486764,0.874868,-0.838791,-1.961429,0.612668,2.692646 +-0.487526,0.874243,-0.839768,-1.962054,0.613459,2.692021 +-0.488341,0.873557,-0.840707,-1.962740,0.614196,2.691335 +-0.489206,0.872814,-0.841604,-1.963484,0.614874,2.690592 +-0.490116,0.872015,-0.842453,-1.964282,0.615491,2.689794 +-0.491068,0.871167,-0.843251,-1.965131,0.616045,2.688945 +-0.492058,0.870271,-0.843995,-1.966026,0.616531,2.688049 +-0.493080,0.869332,-0.844681,-1.966965,0.616949,2.687110 +-0.494131,0.868354,-0.845307,-1.967943,0.617297,2.686132 +-0.495205,0.867342,-0.845869,-1.968955,0.617572,2.685120 +-0.496298,0.866300,-0.846365,-1.969997,0.617774,2.684078 +-0.497406,0.865233,-0.846792,-1.971065,0.617902,2.683011 +-0.498522,0.864145,-0.847150,-1.972152,0.617955,2.681923 +-0.499641,0.863042,-0.847435,-1.973255,0.617933,2.680820 +-0.500760,0.861928,-0.847647,-1.974369,0.617836,2.679706 +-0.501873,0.860809,-0.847785,-1.975488,0.617664,2.678587 +-0.502974,0.859689,-0.847849,-1.976608,0.617418,2.677468 +-0.504059,0.858574,-0.847837,-1.977723,0.617100,2.676353 +-0.505124,0.857469,-0.847751,-1.978828,0.616711,2.675247 +-0.506162,0.856378,-0.847590,-1.979919,0.616252,2.674156 +-0.507170,0.855306,-0.847355,-1.980991,0.615726,2.673084 +-0.508144,0.854258,-0.847047,-1.982039,0.615135,2.672037 +-0.509077,0.853240,-0.846668,-1.983057,0.614481,2.671018 +-0.509968,0.852255,-0.846219,-1.984042,0.613768,2.670033 +-0.510810,0.851308,-0.845703,-1.984990,0.612999,2.669086 +-0.511602,0.850403,-0.845121,-1.985894,0.612177,2.668181 +-0.512338,0.849544,-0.844476,-1.986753,0.611305,2.667322 +-0.513017,0.848735,-0.843772,-1.987562,0.610389,2.666513 +-0.513634,0.847980,-0.843010,-1.988317,0.609431,2.665759 +-0.514187,0.847283,-0.842196,-1.989014,0.608437,2.665061 +-0.514674,0.846645,-0.841332,-1.989652,0.607410,2.664423 +-0.515092,0.846071,-0.840422,-1.990226,0.606356,2.663849 +-0.515439,0.845562,-0.839471,-1.990735,0.605279,2.663340 +-0.515714,0.845121,-0.838482,-1.991176,0.604183,2.662900 +-0.515916,0.844751,-0.837460,-1.991546,0.603075,2.662529 +-0.516044,0.844452,-0.836410,-1.991845,0.601958,2.662230 +-0.516097,0.844226,-0.835337,-1.992072,0.600838,2.662004 +-0.516075,0.844073,-0.834244,-1.992224,0.599720,2.661852 +-0.515978,0.843996,-0.833138,-1.992301,0.598608,2.661774 +-0.515806,0.843994,-0.832023,-1.992303,0.597509,2.661772 +-0.515561,0.844066,-0.830903,-1.992231,0.596426,2.661845 +-0.515242,0.844214,-0.829785,-1.992083,0.595365,2.661992 +-0.514853,0.844435,-0.828674,-1.991862,0.594330,2.662213 +-0.514394,0.844730,-0.827573,-1.991568,0.593327,2.662508 +-0.513868,0.845096,-0.826488,-1.991201,0.592359,2.662874 +-0.513277,0.845532,-0.825425,-1.990765,0.591431,2.663310 +-0.512623,0.846037,-0.824387,-1.990261,0.590547,2.663815 +-0.511910,0.846607,-0.823379,-1.989690,0.589711,2.664385 +-0.511141,0.847240,-0.822406,-1.989057,0.588927,2.665019 +-0.510318,0.847934,-0.821473,-1.988363,0.588198,2.665713 +-0.509447,0.848686,-0.820583,-1.987611,0.587528,2.666464 +-0.508531,0.849491,-0.819741,-1.986806,0.586920,2.667269 +-0.507573,0.850347,-0.818950,-1.985950,0.586376,2.668125 +-0.506579,0.851249,-0.818214,-1.985048,0.585898,2.669027 +-0.505552,0.852193,-0.817536,-1.984104,0.585490,2.669972 +-0.504498,0.853176,-0.816919,-1.983121,0.585153,2.670954 +-0.503420,0.854193,-0.816366,-1.982104,0.584887,2.671971 +-0.502325,0.855239,-0.815879,-1.981058,0.584696,2.673017 +-0.501216,0.856309,-0.815461,-1.979988,0.584578,2.674087 +-0.500100,0.857399,-0.815114,-1.978898,0.584536,2.675177 +-0.498980,0.858504,-0.814839,-1.977793,0.584568,2.676282 +-0.497861,0.859619,-0.814637,-1.976679,0.584676,2.677397 +-0.496750,0.860738,-0.814509,-1.975559,0.584858,2.678516 +-0.495651,0.861857,-0.814456,-1.974440,0.585113,2.679636 +-0.494568,0.862971,-0.814478,-1.973326,0.585441,2.680750 +-0.493507,0.864075,-0.814575,-1.972222,0.585840,2.681854 +-0.492472,0.865164,-0.814746,-1.971133,0.586309,2.682942 +-0.491469,0.866233,-0.814991,-1.970064,0.586844,2.684011 +-0.490501,0.867276,-0.815309,-1.969021,0.587444,2.685055 +-0.489573,0.868291,-0.815698,-1.968006,0.588106,2.686069 +-0.488689,0.869271,-0.816156,-1.967026,0.588827,2.687049 +-0.487853,0.870212,-0.816682,-1.966085,0.589604,2.687990 +-0.487069,0.871111,-0.817273,-1.965186,0.590434,2.688889 +-0.486340,0.871963,-0.817926,-1.964334,0.591311,2.689741 +-0.485670,0.872764,-0.818638,-1.963533,0.592234,2.690543 +-0.485062,0.873512,-0.819407,-1.962786,0.593197,2.691290 +-0.484518,0.874201,-0.820229,-1.962096,0.594196,2.691979 +-0.484041,0.874830,-0.821099,-1.961467,0.595226,2.692608 +-0.483632,0.875395,-0.822015,-1.960902,0.596284,2.693174 +-0.483295,0.875895,-0.822972,-1.960402,0.597364,2.693673 +-0.483030,0.876326,-0.823966,-1.959971,0.598462,2.694104 +-0.482838,0.876687,-0.824991,-1.959610,0.599572,2.694465 +-0.482720,0.876976,-0.826045,-1.959321,0.600690,2.694754 +-0.482678,0.877192,-0.827122,-1.959105,0.601810,2.694970 +-0.482711,0.877333,-0.828216,-1.958964,0.602927,2.695112 +-0.482818,0.877400,-0.829324,-1.958897,0.604037,2.695179 +-0.483000,0.877392,-0.830440,-1.958905,0.605135,2.695171 +-0.483256,0.877309,-0.831560,-1.958988,0.606214,2.695088 +-0.483584,0.877152,-0.832677,-1.959145,0.607272,2.694930 +-0.483983,0.876920,-0.833788,-1.959377,0.608303,2.694698 +-0.484451,0.876616,-0.834886,-1.959682,0.609302,2.694394 +-0.484987,0.876239,-0.835968,-1.960058,0.610264,2.694018 +-0.485587,0.875794,-0.837029,-1.960504,0.611186,2.693572 +-0.486249,0.875280,-0.838063,-1.961017,0.612064,2.693058 +-0.486970,0.874701,-0.839066,-1.961596,0.612893,2.692479 +-0.487747,0.874059,-0.840033,-1.962239,0.613669,2.691837 +-0.488576,0.873356,-0.840961,-1.962941,0.614390,2.691135 +-0.489454,0.872597,-0.841844,-1.963700,0.615052,2.690375 +-0.490376,0.871785,-0.842680,-1.964512,0.615651,2.689563 +-0.491339,0.870922,-0.843463,-1.965375,0.616186,2.688701 +-0.492338,0.870014,-0.844192,-1.966283,0.616654,2.687792 +-0.493369,0.869064,-0.844861,-1.967233,0.617053,2.686842 +-0.494427,0.868076,-0.845469,-1.968221,0.617380,2.685854 +-0.495507,0.867055,-0.846013,-1.969242,0.617636,2.684833 +-0.496605,0.866006,-0.846490,-1.970291,0.617817,2.683784 +-0.497715,0.864932,-0.846899,-1.971365,0.617924,2.682711 +-0.498832,0.863840,-0.847236,-1.972457,0.617956,2.681618 +-0.499952,0.862734,-0.847501,-1.973564,0.617913,2.680512 +-0.501070,0.861618,-0.847693,-1.974679,0.617795,2.679396 +-0.502180,0.860498,-0.847811,-1.975799,0.617603,2.678276 +-0.503277,0.859379,-0.847853,-1.976918,0.617337,2.677157 +-0.504357,0.858266,-0.847821,-1.978031,0.616999,2.676044 +-0.505415,0.857164,-0.847713,-1.979133,0.616591,2.674942 +-0.506445,0.856078,-0.847532,-1.980219,0.616113,2.673856 +-0.507444,0.855012,-0.847277,-1.981285,0.615568,2.672791 +-0.508407,0.853973,-0.846949,-1.982325,0.614959,2.671751 +-0.509329,0.852963,-0.846550,-1.983334,0.614289,2.670741 +-0.510207,0.851988,-0.846082,-1.984309,0.613560,2.669766 +-0.511035,0.851052,-0.845547,-1.985245,0.612776,2.668830 +-0.511812,0.850159,-0.844948,-1.986138,0.611939,2.667938 +-0.512533,0.849314,-0.844286,-1.986983,0.611055,2.667092 +-0.513194,0.848520,-0.843566,-1.987777,0.610127,2.666298 +-0.513794,0.847781,-0.842789,-1.988516,0.609159,2.665559 +-0.514329,0.847099,-0.841961,-1.989198,0.608155,2.664878 +-0.514797,0.846479,-0.841084,-1.989818,0.607120,2.664257 +-0.515195,0.845923,-0.840162,-1.990374,0.606059,2.663701 +-0.515523,0.845433,-0.839200,-1.990864,0.604976,2.663211 +-0.515778,0.845011,-0.838201,-1.991286,0.603877,2.662790 +-0.515959,0.844660,-0.837171,-1.991637,0.602765,2.662439 +-0.516066,0.844382,-0.836114,-1.991916,0.601647,2.662160 +-0.516098,0.844176,-0.835035,-1.992121,0.600527,2.661954 +-0.516055,0.844044,-0.833938,-1.992253,0.599410,2.661823 +-0.515937,0.843988,-0.832829,-1.992309,0.598302,2.661766 +-0.515745,0.844006,-0.831712,-1.992291,0.597206,2.661785 +-0.515480,0.844100,-0.830593,-1.992197,0.596129,2.661878 +-0.515141,0.844268,-0.829476,-1.992029,0.595075,2.662046 +-0.514733,0.844510,-0.828367,-1.991788,0.594049,2.662288 +-0.514255,0.844824,-0.827270,-1.991473,0.593054,2.662602 +-0.513710,0.845210,-0.826191,-1.991087,0.592097,2.662988 +-0.513101,0.845665,-0.825134,-1.990632,0.591181,2.663444 +-0.512431,0.846188,-0.824104,-1.990109,0.590310,2.663967 +-0.511702,0.846776,-0.823105,-1.989521,0.589488,2.664555 +-0.510917,0.847427,-0.822143,-1.988870,0.588719,2.665205 +-0.510081,0.848137,-0.821222,-1.988160,0.588006,2.665916 +-0.509197,0.848904,-0.820345,-1.987393,0.587353,2.666682 +-0.508269,0.849724,-0.819516,-1.986573,0.586762,2.667502 +-0.507300,0.850593,-0.818740,-1.985704,0.586236,2.668371 +-0.506297,0.851507,-0.818020,-1.984790,0.585778,2.669285 +-0.505262,0.852463,-0.817358,-1.983834,0.585389,2.670241 +-0.504201,0.853455,-0.816759,-1.982842,0.585072,2.671233 +-0.503118,0.854480,-0.816224,-1.981817,0.584827,2.672259 +-0.502018,0.855534,-0.815756,-1.980764,0.584656,2.673312 +-0.500907,0.856610,-0.815358,-1.979687,0.584559,2.674388 +-0.499789,0.857704,-0.815030,-1.978593,0.584537,2.675483 +-0.498669,0.858813,-0.814775,-1.977485,0.584591,2.676591 +-0.497552,0.859929,-0.814594,-1.976368,0.584719,2.677707 +-0.496443,0.861049,-0.814487,-1.975248,0.584921,2.678827 +-0.495348,0.862167,-0.814454,-1.974130,0.585197,2.679946 +-0.494271,0.863279,-0.814497,-1.973018,0.585545,2.681057 +-0.493217,0.864379,-0.814615,-1.971918,0.585964,2.682158 +-0.492190,0.865463,-0.814807,-1.970834,0.586451,2.683241 +-0.491196,0.866525,-0.815072,-1.969772,0.587004,2.684303 +-0.490239,0.867561,-0.815410,-1.968736,0.587622,2.685339 +-0.489323,0.868566,-0.815818,-1.967731,0.588301,2.686345 +-0.488452,0.869536,-0.816296,-1.966761,0.589038,2.687314 +-0.487630,0.870466,-0.816840,-1.965831,0.589829,2.688244 +-0.486861,0.871352,-0.817448,-1.964945,0.590672,2.689131 +-0.486148,0.872191,-0.818118,-1.964106,0.591563,2.689969 +-0.485495,0.872977,-0.818846,-1.963320,0.592497,2.690756 +-0.484904,0.873709,-0.819630,-1.962588,0.593471,2.691487 +-0.484379,0.874382,-0.820466,-1.961915,0.594479,2.692160 +-0.483920,0.874994,-0.821349,-1.961304,0.595518,2.692772 +-0.483531,0.875541,-0.822277,-1.960756,0.596582,2.693319 +-0.483214,0.876021,-0.823244,-1.960276,0.597668,2.693800 +-0.482969,0.876433,-0.824247,-1.959864,0.598769,2.694211 +-0.482798,0.876774,-0.825281,-1.959523,0.599882,2.694552 +-0.482701,0.877043,-0.826342,-1.959254,0.601000,2.694821 +-0.482680,0.877238,-0.827424,-1.959059,0.602120,2.695017 +-0.482733,0.877360,-0.828523,-1.958938,0.603236,2.695138 +-0.482861,0.877406,-0.829633,-1.958891,0.604343,2.695184 +-0.483064,0.877377,-0.830751,-1.958920,0.605436,2.695155 +-0.483340,0.877273,-0.831870,-1.959024,0.606511,2.695051 +-0.483688,0.877095,-0.832986,-1.959202,0.607561,2.694873 +-0.484106,0.876843,-0.834094,-1.959454,0.608583,2.694621 +-0.484593,0.876518,-0.835189,-1.959779,0.609573,2.694296 +-0.485147,0.876123,-0.836265,-1.960175,0.610525,2.693901 +-0.485764,0.875658,-0.837319,-1.960639,0.611435,2.693436 +-0.486443,0.875126,-0.838345,-1.961172,0.612299,2.692904 +-0.487180,0.874529,-0.839338,-1.961769,0.613114,2.692307 +-0.487972,0.873869,-0.840295,-1.962428,0.613875,2.691648 +-0.488815,0.873151,-0.841211,-1.963146,0.614580,2.690929 +-0.489706,0.872377,-0.842081,-1.963920,0.615225,2.690155 +-0.490640,0.871550,-0.842902,-1.964747,0.615807,2.689328 +-0.491613,0.870675,-0.843671,-1.965622,0.616323,2.688453 +-0.492622,0.869754,-0.844383,-1.966543,0.616772,2.687533 +-0.493660,0.868793,-0.845036,-1.967504,0.617151,2.686571 +-0.494725,0.867796,-0.845627,-1.968501,0.617459,2.685574 +-0.495810,0.866767,-0.846153,-1.969531,0.617693,2.684545 +-0.496912,0.865710,-0.846611,-1.970587,0.617854,2.683488 +-0.498024,0.864631,-0.846999,-1.971666,0.617940,2.682409 +-0.499143,0.863534,-0.847317,-1.972763,0.617952,2.681312 +-0.500263,0.862425,-0.847562,-1.973873,0.617888,2.680203 +-0.501379,0.861307,-0.847733,-1.974990,0.617749,2.679085 +-0.502486,0.860187,-0.847830,-1.976110,0.617537,2.677965 +-0.503579,0.859069,-0.847852,-1.977228,0.617251,2.676848 +-0.504653,0.857959,-0.847798,-1.978338,0.616893,2.675737 +-0.505704,0.856861,-0.847670,-1.979436,0.616465,2.674639 +-0.506726,0.855780,-0.847468,-1.980517,0.615968,2.673558 +-0.507715,0.854721,-0.847193,-1.981576,0.615406,2.672499 +-0.508667,0.853689,-0.846845,-1.982608,0.614779,2.671467 +-0.509577,0.852688,-0.846427,-1.983609,0.614092,2.670467 +-0.510442,0.851724,-0.845940,-1.984573,0.613348,2.669502 +-0.511256,0.850800,-0.845387,-1.985497,0.612548,2.668578 +-0.512018,0.849920,-0.844770,-1.986377,0.611699,2.667698 +-0.512722,0.849089,-0.844092,-1.987209,0.610802,2.666867 +-0.513367,0.848309,-0.843356,-1.987988,0.609862,2.666087 +-0.513949,0.847586,-0.842565,-1.988711,0.608883,2.665364 +-0.514466,0.846921,-0.841722,-1.989376,0.607871,2.664699 +-0.514914,0.846318,-0.840832,-1.989979,0.606828,2.664096 +-0.515293,0.845780,-0.839899,-1.990517,0.605760,2.663558 +-0.515601,0.845309,-0.838926,-1.990988,0.604672,2.663087 +-0.515836,0.844907,-0.837918,-1.991390,0.603569,2.662685 +-0.515997,0.844576,-0.836880,-1.991721,0.602455,2.662354 +-0.516083,0.844317,-0.835817,-1.991980,0.601336,2.662095 +-0.516094,0.844132,-0.834732,-1.992165,0.600216,2.661910 +-0.516030,0.844021,-0.833631,-1.992276,0.599101,2.661799 +-0.515892,0.843985,-0.832519,-1.992312,0.597996,2.661764 +-0.515679,0.844025,-0.831401,-1.992272,0.596905,2.661803 +-0.515393,0.844139,-0.830282,-1.992158,0.595834,2.661917 +-0.515035,0.844328,-0.829167,-1.991970,0.594787,2.662106 +-0.514607,0.844590,-0.828061,-1.991707,0.593769,2.662368 +-0.514110,0.844924,-0.826968,-1.991373,0.592785,2.662702 +-0.513548,0.845330,-0.825895,-1.990968,0.591838,2.663108 +-0.512921,0.845804,-0.824845,-1.990493,0.590934,2.663582 +-0.512234,0.846345,-0.823823,-1.989952,0.590077,2.664123 +-0.511490,0.846951,-0.822834,-1.989346,0.589269,2.664729 +-0.510690,0.847618,-0.821883,-1.988679,0.588515,2.665397 +-0.509840,0.848345,-0.820973,-1.987952,0.587819,2.666123 +-0.508944,0.849126,-0.820110,-1.987171,0.587183,2.666905 +-0.508004,0.849960,-0.819295,-1.986337,0.586610,2.667738 +-0.507025,0.850842,-0.818534,-1.985455,0.586102,2.668620 +-0.506012,0.851768,-0.817830,-1.984529,0.585663,2.669547 +-0.504970,0.852735,-0.817185,-1.983562,0.585294,2.670513 +-0.503902,0.853737,-0.816604,-1.982560,0.584996,2.671515 +-0.502814,0.854770,-0.816087,-1.981527,0.584772,2.672548 +-0.501711,0.855830,-0.815639,-1.980467,0.584621,2.673608 +-0.500597,0.856912,-0.815260,-1.979385,0.584545,2.674690 +-0.499478,0.858011,-0.814952,-1.978286,0.584545,2.675789 +-0.498358,0.859122,-0.814717,-1.977175,0.584619,2.676900 +-0.497243,0.860240,-0.814557,-1.976057,0.584768,2.678018 +-0.496138,0.861360,-0.814470,-1.974937,0.584991,2.679138 +-0.495047,0.862477,-0.814459,-1.973820,0.585287,2.680255 +-0.493976,0.863586,-0.814522,-1.972711,0.585654,2.681364 +-0.492929,0.864682,-0.814661,-1.971615,0.586092,2.682460 +-0.491911,0.865760,-0.814873,-1.970537,0.586598,2.683538 +-0.490927,0.866816,-0.815159,-1.969481,0.587169,2.684594 +-0.489980,0.867844,-0.815516,-1.968454,0.587804,2.685622 +-0.489076,0.868839,-0.815944,-1.967458,0.588500,2.686618 +-0.488219,0.869799,-0.816440,-1.966499,0.589252,2.687577 +-0.487411,0.870717,-0.817002,-1.965580,0.590058,2.688495 +-0.486657,0.871590,-0.817628,-1.964707,0.590915,2.689368 +-0.485961,0.872415,-0.818314,-1.963883,0.591818,2.690193 +-0.485325,0.873186,-0.819058,-1.963111,0.592764,2.690964 +-0.484752,0.873902,-0.819857,-1.962395,0.593747,2.691680 +-0.484244,0.874558,-0.820706,-1.961739,0.594764,2.692336 +-0.483805,0.875152,-0.821602,-1.961145,0.595811,2.692930 +-0.483436,0.875681,-0.822542,-1.960616,0.596882,2.693459 +-0.483138,0.876143,-0.823519,-1.960154,0.597972,2.693921 +-0.482914,0.876535,-0.824532,-1.959762,0.599077,2.694313 +-0.482763,0.876856,-0.825573,-1.959441,0.600192,2.694634 +-0.482688,0.877105,-0.826640,-1.959192,0.601311,2.694883 +-0.482687,0.877280,-0.827728,-1.959018,0.602431,2.695058 +-0.482761,0.877380,-0.828830,-1.958917,0.603545,2.695158 +-0.482910,0.877405,-0.829943,-1.958892,0.604648,2.695183 +-0.483133,0.877356,-0.831062,-1.958942,0.605737,2.695134 +-0.483429,0.877231,-0.832181,-1.959066,0.606805,2.695009 +-0.483797,0.877032,-0.833295,-1.959265,0.607848,2.694810 +-0.484234,0.876760,-0.834399,-1.959537,0.608862,2.694538 +-0.484740,0.876415,-0.835490,-1.959882,0.609841,2.694194 +-0.485312,0.876000,-0.836560,-1.960297,0.610782,2.693779 +-0.485947,0.875517,-0.837606,-1.960781,0.611679,2.693295 +-0.486642,0.874966,-0.838624,-1.961331,0.612530,2.692744 +-0.487395,0.874352,-0.839608,-1.961945,0.613331,2.692130 +-0.488201,0.873676,-0.840553,-1.962621,0.614077,2.691454 +-0.489058,0.872942,-0.841457,-1.963355,0.614765,2.690720 +-0.489961,0.872153,-0.842314,-1.964145,0.615393,2.689931 +-0.490906,0.871312,-0.843121,-1.964985,0.615957,2.689090 +-0.491890,0.870424,-0.843875,-1.965874,0.616455,2.688202 +-0.492907,0.869491,-0.844571,-1.966806,0.616884,2.687270 +-0.493954,0.868520,-0.845207,-1.967777,0.617244,2.686298 +-0.495024,0.867513,-0.845780,-1.968784,0.617531,2.685291 +-0.496115,0.866476,-0.846287,-1.969821,0.617745,2.684254 +-0.497220,0.865412,-0.846726,-1.970885,0.617886,2.683191 +-0.498335,0.864328,-0.847095,-1.971969,0.617951,2.682106 +-0.499454,0.863227,-0.847392,-1.973070,0.617942,2.681005 +-0.500573,0.862115,-0.847617,-1.974182,0.617857,2.679893 +-0.501687,0.860996,-0.847768,-1.975301,0.617698,2.678775 +-0.502791,0.859876,-0.847843,-1.976421,0.617465,2.677655 +-0.503879,0.858760,-0.847844,-1.977537,0.617159,2.676538 +-0.504948,0.857653,-0.847770,-1.978644,0.616781,2.675431 +-0.505991,0.856559,-0.847622,-1.979738,0.616334,2.674337 +-0.507004,0.855483,-0.847399,-1.980814,0.615819,2.673262 +-0.507984,0.854432,-0.847103,-1.981866,0.615238,2.672210 +-0.508924,0.853408,-0.846736,-1.982889,0.614595,2.671186 +-0.509822,0.852417,-0.846299,-1.983880,0.613891,2.670195 +-0.510673,0.851463,-0.845793,-1.984834,0.613131,2.669241 +-0.511473,0.850551,-0.845222,-1.985746,0.612317,2.668329 +-0.512219,0.849684,-0.844588,-1.986613,0.611454,2.667462 +-0.512908,0.848867,-0.843893,-1.987430,0.610545,2.666645 +-0.513535,0.848103,-0.843141,-1.988194,0.609594,2.665881 +-0.514099,0.847395,-0.842336,-1.988902,0.608605,2.665173 +-0.514597,0.846747,-0.841480,-1.989550,0.607584,2.664526 +-0.515027,0.846162,-0.840577,-1.990135,0.606534,2.663940 +-0.515386,0.845642,-0.839632,-1.990655,0.605460,2.663421 +-0.515674,0.845190,-0.838650,-1.991107,0.604367,2.662968 +-0.515888,0.844808,-0.837633,-1.991489,0.603261,2.662586 +-0.516028,0.844497,-0.836587,-1.991801,0.602145,2.662275 +-0.516093,0.844258,-0.835517,-1.992039,0.601025,2.662036 +-0.516084,0.844094,-0.834428,-1.992203,0.599906,2.661872 +-0.515999,0.844004,-0.833323,-1.992293,0.598793,2.661782 +-0.515840,0.843989,-0.832209,-1.992308,0.597692,2.661767 +-0.515607,0.844049,-0.831091,-1.992248,0.596606,2.661827 +-0.515301,0.844184,-0.829972,-1.992113,0.595541,2.661962 +-0.514923,0.844393,-0.828859,-1.991904,0.594501,2.662171 +-0.514476,0.844675,-0.827756,-1.991622,0.593492,2.662454 +-0.513961,0.845030,-0.826668,-1.991267,0.592518,2.662808 +-0.513380,0.845454,-0.825601,-1.990843,0.591583,2.663233 +-0.512737,0.845948,-0.824558,-1.990350,0.590691,2.663726 +-0.512033,0.846507,-0.823545,-1.989790,0.589847,2.664285 +-0.511273,0.847130,-0.822566,-1.989167,0.589054,2.664908 +-0.510459,0.847814,-0.821626,-1.988483,0.588316,2.665592 +-0.509596,0.848556,-0.820729,-1.987741,0.587636,2.666335 +-0.508687,0.849353,-0.819878,-1.986944,0.587017,2.667131 +-0.507736,0.850200,-0.819078,-1.986097,0.586462,2.667979 +-0.506747,0.851095,-0.818333,-1.985202,0.585974,2.668873 +-0.505726,0.852033,-0.817645,-1.984264,0.585554,2.669811 +-0.504676,0.853010,-0.817017,-1.983288,0.585204,2.670788 +-0.503602,0.854021,-0.816454,-1.982276,0.584927,2.671799 +-0.502509,0.855062,-0.815956,-1.981235,0.584723,2.672840 +-0.501402,0.856129,-0.815526,-1.980169,0.584593,2.673907 +-0.500287,0.857216,-0.815167,-1.979081,0.584538,2.674994 +-0.499167,0.858318,-0.814880,-1.977979,0.584558,2.676097 +-0.498048,0.859432,-0.814665,-1.976865,0.584653,2.677210 +-0.496935,0.860551,-0.814525,-1.975746,0.584822,2.678329 +-0.495833,0.861671,-0.814459,-1.974627,0.585066,2.679449 +-0.494747,0.862786,-0.814469,-1.973511,0.585382,2.680564 +-0.493683,0.863892,-0.814553,-1.972405,0.585769,2.681670 +-0.492643,0.864983,-0.814712,-1.971314,0.586226,2.682762 +-0.491634,0.866056,-0.814945,-1.970241,0.586750,2.683834 +-0.490660,0.867104,-0.815251,-1.969193,0.587339,2.684882 +-0.489725,0.868123,-0.815628,-1.968174,0.587991,2.685902 +-0.488833,0.869110,-0.816075,-1.967188,0.588703,2.686888 +-0.487989,0.870058,-0.816590,-1.966239,0.589471,2.687836 +-0.487196,0.870964,-0.817170,-1.965333,0.590291,2.688742 +-0.486458,0.871824,-0.817812,-1.964473,0.591161,2.689602 +-0.485778,0.872634,-0.818515,-1.963663,0.592077,2.690412 +-0.485159,0.873391,-0.819275,-1.962906,0.593033,2.691169 +-0.484604,0.874090,-0.820088,-1.962207,0.594026,2.691868 +-0.484116,0.874729,-0.820951,-1.961568,0.595052,2.692508 +-0.483696,0.875306,-0.821859,-1.960992,0.596106,2.693084 +-0.483346,0.875816,-0.822809,-1.960481,0.597183,2.693594 +-0.483069,0.876259,-0.823797,-1.960038,0.598277,2.694037 +-0.482865,0.876631,-0.824818,-1.959666,0.599386,2.694410 +-0.482735,0.876933,-0.825867,-1.959365,0.600502,2.694711 +-0.482680,0.877161,-0.826940,-1.959136,0.601622,2.694939 +-0.482700,0.877315,-0.828032,-1.958982,0.602741,2.695093 +-0.482795,0.877394,-0.829138,-1.958903,0.603852,2.695173 +-0.482965,0.877399,-0.830253,-1.958898,0.604952,2.695177 +-0.483208,0.877328,-0.831372,-1.958969,0.606035,2.695107 +-0.483524,0.877183,-0.832491,-1.959114,0.607097,2.694961 +-0.483911,0.876964,-0.833603,-1.959333,0.608133,2.694742 +-0.484368,0.876671,-0.834704,-1.959626,0.609137,2.694450 +-0.484893,0.876307,-0.835789,-1.959990,0.610106,2.694085 +-0.485482,0.875873,-0.836853,-1.960424,0.611035,2.693651 +-0.486134,0.875370,-0.837892,-1.960927,0.611921,2.693149 +-0.486845,0.874802,-0.838900,-1.961495,0.612758,2.692580 +-0.487613,0.874170,-0.839874,-1.962127,0.613543,2.691948 +-0.488434,0.873478,-0.840809,-1.962819,0.614274,2.691256 +-0.489304,0.872728,-0.841700,-1.963569,0.614945,2.690506 +-0.490219,0.871924,-0.842543,-1.964373,0.615556,2.689702 +-0.491176,0.871070,-0.843336,-1.965227,0.616102,2.688848 +-0.492169,0.870169,-0.844074,-1.966128,0.616581,2.687947 +-0.493195,0.869225,-0.844754,-1.967072,0.616991,2.687004 +-0.494249,0.868244,-0.845372,-1.968053,0.617331,2.686022 +-0.495325,0.867228,-0.845927,-1.969069,0.617598,2.685006 +-0.496420,0.866183,-0.846415,-1.970114,0.617792,2.683961 +-0.497529,0.865113,-0.846835,-1.971184,0.617911,2.682891 +-0.498645,0.864024,-0.847185,-1.972273,0.617956,2.681802 +-0.499765,0.862919,-0.847462,-1.973378,0.617926,2.680697 +-0.500883,0.861805,-0.847666,-1.974492,0.617820,2.679583 +-0.501995,0.860685,-0.847796,-1.975612,0.617640,2.678464 +-0.503095,0.859566,-0.847851,-1.976731,0.617387,2.677344 +-0.504178,0.858452,-0.847831,-1.977846,0.617061,2.676230 +-0.505240,0.857347,-0.847737,-1.978950,0.616664,2.675126 +-0.506275,0.856258,-0.847567,-1.980039,0.616197,2.674036 +-0.507280,0.855189,-0.847324,-1.981108,0.615664,2.672967 +-0.508249,0.854144,-0.847009,-1.982153,0.615066,2.671923 +-0.509178,0.853129,-0.846622,-1.983168,0.614405,2.670907 +-0.510063,0.852148,-0.846165,-1.984149,0.613686,2.669926 +-0.510900,0.851205,-0.845641,-1.985092,0.612910,2.668984 +-0.511686,0.850305,-0.845052,-1.985992,0.612083,2.668084 +-0.512416,0.849452,-0.844401,-1.986845,0.611206,2.667230 +-0.513088,0.848649,-0.843690,-1.987648,0.610285,2.666427 +-0.513698,0.847900,-0.842923,-1.988397,0.609323,2.665679 +-0.514244,0.847209,-0.842103,-1.989088,0.608325,2.664987 +-0.514723,0.846579,-0.841234,-1.989719,0.607295,2.664357 +-0.515134,0.846011,-0.840319,-1.990286,0.606238,2.663789 +-0.515473,0.845510,-0.839363,-1.990787,0.605158,2.663288 +-0.515740,0.845077,-0.838371,-1.991220,0.604061,2.662855 +-0.515934,0.844714,-0.837346,-1.991583,0.602952,2.662492 +-0.516054,0.844423,-0.836293,-1.991874,0.601834,2.662201 +-0.516098,0.844205,-0.835217,-1.992092,0.600714,2.661983 +-0.516068,0.844061,-0.834122,-1.992236,0.599596,2.661839 +-0.515962,0.843992,-0.833015,-1.992305,0.598486,2.661770 +-0.515783,0.843998,-0.831899,-1.992299,0.597388,2.661776 +-0.515529,0.844079,-0.830780,-1.992218,0.596308,2.661857 +-0.515203,0.844235,-0.829662,-1.992063,0.595249,2.662013 +-0.514806,0.844464,-0.828551,-1.991833,0.594218,2.662242 +-0.514339,0.844767,-0.827452,-1.991531,0.593218,2.662545 +-0.513806,0.845141,-0.826370,-1.991157,0.592254,2.662919 +-0.513208,0.845585,-0.825308,-1.990713,0.591331,2.663363 +-0.512547,0.846096,-0.824274,-1.990201,0.590452,2.663875 +-0.511828,0.846674,-0.823270,-1.989623,0.589622,2.664452 +-0.511052,0.847314,-0.822301,-1.988983,0.588844,2.665092 +-0.510224,0.848015,-0.821373,-1.988282,0.588121,2.665793 +-0.509348,0.848772,-0.820488,-1.987525,0.587458,2.666550 +-0.508427,0.849583,-0.819651,-1.986714,0.586857,2.667361 +-0.507465,0.850444,-0.818866,-1.985853,0.586320,2.668222 +-0.506467,0.851351,-0.818136,-1.984946,0.585850,2.669129 +-0.505437,0.852300,-0.817464,-1.983997,0.585449,2.670078 +-0.504380,0.853287,-0.816854,-1.983010,0.585120,2.671065 +-0.503300,0.854307,-0.816309,-1.981990,0.584863,2.672085 +-0.502203,0.855356,-0.815830,-1.980941,0.584679,2.673134 +-0.501093,0.856429,-0.815420,-1.979869,0.584570,2.674207 +-0.499976,0.857520,-0.815080,-1.978777,0.584536,2.675299 +-0.498856,0.858627,-0.814813,-1.977671,0.584577,2.676405 +-0.497738,0.859742,-0.814619,-1.976555,0.584692,2.677520 +-0.496628,0.860862,-0.814499,-1.975435,0.584882,2.678640 +-0.495530,0.861981,-0.814455,-1.974316,0.585146,2.679759 +-0.494450,0.863094,-0.814485,-1.973203,0.585482,2.680872 +-0.493391,0.864197,-0.814590,-1.972101,0.585889,2.681975 +-0.492360,0.865283,-0.814770,-1.971014,0.586365,2.683061 +-0.491360,0.866349,-0.815023,-1.969948,0.586907,2.684128 +-0.490396,0.867390,-0.815348,-1.968907,0.587514,2.685168 +-0.489473,0.868401,-0.815745,-1.967896,0.588183,2.686179 +-0.488594,0.869377,-0.816211,-1.966920,0.588911,2.687155 +-0.487764,0.870314,-0.816744,-1.965983,0.589693,2.688092 +-0.486986,0.871208,-0.817342,-1.965090,0.590528,2.688986 +-0.486263,0.872054,-0.818002,-1.964243,0.591411,2.689832 +-0.485600,0.872850,-0.818721,-1.963447,0.592338,2.690628 +-0.484999,0.873591,-0.819495,-1.962706,0.593305,2.691369 +-0.484462,0.874274,-0.820323,-1.962023,0.594308,2.692052 +-0.483992,0.874896,-0.821198,-1.961401,0.595342,2.692674 +-0.483591,0.875454,-0.822119,-1.960843,0.596403,2.693232 +-0.483262,0.875946,-0.823080,-1.960351,0.597485,2.693724 +-0.483005,0.876369,-0.824077,-1.959928,0.598584,2.694147 +-0.482821,0.876722,-0.825107,-1.959575,0.599695,2.694500 +-0.482712,0.877003,-0.826163,-1.959294,0.600813,2.694781 +-0.482678,0.877211,-0.827242,-1.959086,0.601933,2.694989 +-0.482719,0.877345,-0.828338,-1.958953,0.603050,2.695123 +-0.482835,0.877403,-0.829447,-1.958894,0.604159,2.695181 +-0.483025,0.877387,-0.830564,-1.958910,0.605255,2.695165 +-0.483288,0.877296,-0.831683,-1.959002,0.606333,2.695074 +-0.483624,0.877130,-0.832800,-1.959167,0.607387,2.694908 +-0.484031,0.876890,-0.833910,-1.959407,0.608415,2.694668 +-0.484507,0.876577,-0.835007,-1.959720,0.609410,2.694356 +-0.485050,0.876194,-0.836087,-1.960104,0.610368,2.693972 +-0.485657,0.875740,-0.837144,-1.960557,0.611286,2.693518 +-0.486326,0.875219,-0.838175,-1.961078,0.612158,2.692997 +-0.487053,0.874633,-0.839174,-1.961664,0.612981,2.692411 +-0.487836,0.873984,-0.840138,-1.962313,0.613752,2.691762 +-0.488671,0.873275,-0.841061,-1.963022,0.614466,2.691053 +-0.489554,0.872510,-0.841939,-1.963787,0.615121,2.690288 +-0.490481,0.871692,-0.842769,-1.964605,0.615714,2.689470 +-0.491448,0.870824,-0.843546,-1.965473,0.616241,2.688602 +-0.492451,0.869911,-0.844268,-1.966386,0.616702,2.687689 +-0.493485,0.868957,-0.844932,-1.967341,0.617093,2.686735 +-0.494545,0.867965,-0.845533,-1.968332,0.617412,2.685743 +-0.495628,0.866941,-0.846069,-1.969356,0.617659,2.684719 +-0.496727,0.865888,-0.846539,-1.970409,0.617833,2.683666 +-0.497838,0.864813,-0.846939,-1.971485,0.617931,2.682591 +-0.498956,0.863718,-0.847269,-1.972579,0.617955,2.681497 +-0.500076,0.862611,-0.847526,-1.973686,0.617904,2.680389 +-0.501193,0.861494,-0.847710,-1.974803,0.617778,2.679272 +-0.502302,0.860374,-0.847819,-1.975923,0.617577,2.678153 +-0.503398,0.859256,-0.847853,-1.977041,0.617304,2.677034 +-0.504475,0.858144,-0.847813,-1.978153,0.616958,2.675922 +-0.505530,0.857043,-0.847697,-1.979254,0.616541,2.674821 +-0.506557,0.855959,-0.847507,-1.980338,0.616056,2.673737 +-0.507552,0.854896,-0.847244,-1.981401,0.615504,2.672674 +-0.508511,0.853859,-0.846908,-1.982438,0.614888,2.671638 +-0.509428,0.852853,-0.846502,-1.983444,0.614211,2.670631 +-0.510301,0.851882,-0.846027,-1.984415,0.613476,2.669661 +-0.511124,0.850951,-0.845484,-1.985346,0.612686,2.668729 +-0.511894,0.850064,-0.844878,-1.986233,0.611844,2.667842 +-0.512609,0.849224,-0.844210,-1.987073,0.610955,2.667002 +-0.513264,0.848436,-0.843483,-1.987861,0.610022,2.666214 +-0.513856,0.847703,-0.842700,-1.988594,0.609049,2.665481 +-0.514384,0.847028,-0.841866,-1.989269,0.608042,2.664806 +-0.514844,0.846415,-0.840984,-1.989883,0.607004,2.664193 +-0.515235,0.845865,-0.840058,-1.990432,0.605940,2.663644 +-0.515555,0.845383,-0.839091,-1.990914,0.604855,2.663161 +-0.515802,0.844969,-0.838089,-1.991328,0.603754,2.662747 +-0.515975,0.844626,-0.837056,-1.991671,0.602642,2.662404 +-0.516074,0.844355,-0.835996,-1.991942,0.601523,2.662133 +-0.516097,0.844158,-0.834915,-1.992139,0.600403,2.661936 +-0.516046,0.844035,-0.833816,-1.992263,0.599287,2.661813 +-0.515920,0.843986,-0.832706,-1.992311,0.598180,2.661764 +-0.515719,0.844013,-0.831588,-1.992284,0.597086,2.661791 +-0.515446,0.844115,-0.830469,-1.992182,0.596011,2.661893 +-0.515100,0.844291,-0.829353,-1.992006,0.594960,2.662069 +-0.514683,0.844541,-0.828245,-1.991756,0.593937,2.662319 +-0.514198,0.844863,-0.827150,-1.991434,0.592947,2.662641 +-0.513646,0.845257,-0.826073,-1.991040,0.591994,2.663035 +-0.513030,0.845720,-0.825018,-1.990577,0.591082,2.663498 +-0.512353,0.846250,-0.823992,-1.990047,0.590217,2.664028 +-0.511618,0.846845,-0.822997,-1.989452,0.589400,2.664624 +-0.510828,0.847503,-0.822039,-1.988794,0.588638,2.665281 +-0.509986,0.848219,-0.821122,-1.988078,0.587931,2.665998 +-0.509097,0.848992,-0.820251,-1.987305,0.587285,2.666770 +-0.508164,0.849817,-0.819428,-1.986480,0.586701,2.667596 +-0.507191,0.850692,-0.818658,-1.985606,0.586182,2.668470 +-0.506184,0.851611,-0.817943,-1.984686,0.585732,2.669389 +-0.505146,0.852571,-0.817289,-1.983726,0.585351,2.670349 +-0.504082,0.853567,-0.816696,-1.982730,0.585041,2.671345 +-0.502997,0.854596,-0.816169,-1.981702,0.584804,2.672374 +-0.501896,0.855651,-0.815709,-1.980646,0.584641,2.673430 +-0.500784,0.856730,-0.815318,-1.979567,0.584553,2.674508 +-0.499665,0.857826,-0.814999,-1.978471,0.584539,2.675604 +-0.498545,0.858936,-0.814752,-1.977362,0.584601,2.676714 +-0.497429,0.860053,-0.814578,-1.976244,0.584738,2.677831 +-0.496322,0.861173,-0.814479,-1.975124,0.584948,2.678951 +-0.495228,0.862291,-0.814455,-1.974006,0.585232,2.680069 +-0.494153,0.863401,-0.814507,-1.972896,0.585588,2.681180 +-0.493102,0.864500,-0.814632,-1.971797,0.586014,2.682278 +-0.492079,0.865581,-0.814833,-1.970716,0.586509,2.683360 +-0.491089,0.866641,-0.815106,-1.969656,0.587069,2.684419 +-0.490136,0.867674,-0.815452,-1.968623,0.587694,2.685452 +-0.489224,0.868675,-0.815868,-1.967622,0.588379,2.686454 +-0.488359,0.869641,-0.816352,-1.966656,0.589122,2.687419 +-0.487542,0.870566,-0.816904,-1.965731,0.589920,2.688345 +-0.486779,0.871448,-0.817519,-1.964850,0.590769,2.689226 +-0.486073,0.872280,-0.818195,-1.964017,0.591664,2.690059 +-0.485427,0.873061,-0.818930,-1.963236,0.592603,2.690839 +-0.484843,0.873786,-0.819720,-1.962511,0.593580,2.691564 +-0.484325,0.874453,-0.820561,-1.961844,0.594592,2.692231 +-0.483874,0.875057,-0.821450,-1.961240,0.595634,2.692835 +-0.483493,0.875597,-0.822382,-1.960700,0.596701,2.693375 +-0.483183,0.876070,-0.823353,-1.960227,0.597789,2.693849 +-0.482946,0.876474,-0.824360,-1.959823,0.598892,2.694253 +-0.482783,0.876808,-0.825397,-1.959490,0.600005,2.694586 +-0.482695,0.877068,-0.826460,-1.959229,0.601124,2.694847 +-0.482682,0.877256,-0.827545,-1.959042,0.602244,2.695034 +-0.482743,0.877368,-0.828645,-1.958929,0.603359,2.695147 +-0.482880,0.877406,-0.829757,-1.958891,0.604465,2.695184 +-0.483091,0.877369,-0.830875,-1.958928,0.605556,2.695147 +-0.483375,0.877257,-0.831994,-1.959040,0.606628,2.695035 +-0.483730,0.877070,-0.833109,-1.959227,0.607676,2.694849 +-0.484157,0.876810,-0.834216,-1.959487,0.608694,2.694589 +-0.484651,0.876478,-0.835309,-1.959819,0.609680,2.694256 +-0.485212,0.876075,-0.836383,-1.960223,0.610627,2.693853 +-0.485836,0.875602,-0.837434,-1.960695,0.611533,2.693380 +-0.486522,0.875063,-0.838456,-1.961234,0.612392,2.692841 +-0.487265,0.874459,-0.839446,-1.961838,0.613201,2.692237 +-0.488063,0.873793,-0.840398,-1.962504,0.613956,2.691571 +-0.488911,0.873068,-0.841309,-1.963229,0.614654,2.690846 +-0.489807,0.872288,-0.842174,-1.964009,0.615292,2.690066 +-0.490746,0.871456,-0.842990,-1.964841,0.615867,2.689234 +-0.491723,0.870575,-0.843753,-1.965722,0.616376,2.688353 +-0.492735,0.869650,-0.844459,-1.966647,0.616817,2.687428 +-0.493777,0.868685,-0.845105,-1.967612,0.617189,2.686463 +-0.494844,0.867684,-0.845688,-1.968613,0.617488,2.685462 +-0.495931,0.866651,-0.846207,-1.969646,0.617715,2.684429 +-0.497034,0.865592,-0.846657,-1.970705,0.617867,2.683370 +-0.498148,0.864510,-0.847038,-1.971787,0.617945,2.682289 +-0.499267,0.863412,-0.847348,-1.972885,0.617948,2.681190 +-0.500387,0.862301,-0.847585,-1.973996,0.617876,2.680080 +-0.501502,0.861184,-0.847748,-1.975114,0.617729,2.678962 +-0.502608,0.860063,-0.847836,-1.976234,0.617509,2.677842 +-0.503699,0.858946,-0.847850,-1.977351,0.617215,2.676724 +-0.504771,0.857837,-0.847788,-1.978460,0.616849,2.675615 +-0.505818,0.856740,-0.847652,-1.979557,0.616413,2.674519 +-0.506837,0.855662,-0.847441,-1.980635,0.615909,2.673440 +-0.507822,0.854606,-0.847158,-1.981692,0.615340,2.672384 +-0.508770,0.853577,-0.846802,-1.982720,0.614706,2.671355 +-0.509675,0.852580,-0.846377,-1.983717,0.614013,2.670358 +-0.510534,0.851620,-0.845883,-1.984677,0.613262,2.669398 +-0.511343,0.850700,-0.845322,-1.985597,0.612457,2.668478 +-0.512098,0.849826,-0.844698,-1.986472,0.611602,2.667604 +-0.512797,0.849000,-0.844014,-1.987297,0.610700,2.666778 +-0.513435,0.848227,-0.843271,-1.988071,0.609756,2.666005 +-0.514009,0.847509,-0.842474,-1.988788,0.608773,2.665288 +-0.514519,0.846851,-0.841626,-1.989446,0.607757,2.664630 +-0.514960,0.846256,-0.840731,-1.990042,0.606711,2.664034 +-0.515331,0.845725,-0.839793,-1.990572,0.605641,2.663503 +-0.515631,0.845261,-0.838816,-1.991036,0.604551,2.663039 +-0.515857,0.844867,-0.837805,-1.991430,0.603446,2.662645 +-0.516010,0.844544,-0.836764,-1.991754,0.602332,2.662322 +-0.516088,0.844293,-0.835698,-1.992004,0.601212,2.662071 +-0.516091,0.844116,-0.834611,-1.992181,0.600093,2.661894 +-0.516019,0.844014,-0.833509,-1.992284,0.598979,2.661792 +-0.515872,0.843986,-0.832396,-1.992311,0.597875,2.661764 +-0.515651,0.844034,-0.831278,-1.992263,0.596786,2.661812 +-0.515357,0.844156,-0.830159,-1.992141,0.595717,2.661934 +-0.514991,0.844353,-0.829044,-1.991944,0.594673,2.662131 +-0.514555,0.844623,-0.827939,-1.991674,0.593659,2.662401 +-0.514051,0.844966,-0.826849,-1.991332,0.592678,2.662744 +-0.513482,0.845379,-0.825777,-1.990919,0.591736,2.663157 +-0.512848,0.845860,-0.824730,-1.990437,0.590837,2.663639 +-0.512155,0.846409,-0.823712,-1.989888,0.589985,2.664187 +-0.511404,0.847022,-0.822727,-1.989275,0.589183,2.664800 +-0.510599,0.847696,-0.821780,-1.988601,0.588436,2.665474 +-0.509744,0.848428,-0.820876,-1.987869,0.587746,2.666207 +-0.508842,0.849216,-0.820017,-1.987081,0.587116,2.666994 +-0.507897,0.850055,-0.819208,-1.986242,0.586550,2.667834 +-0.506915,0.850942,-0.818453,-1.985355,0.586050,2.668721 +-0.505899,0.851873,-0.817756,-1.984424,0.585619,2.669651 +-0.504853,0.852844,-0.817118,-1.983453,0.585257,2.670622 +-0.503783,0.853850,-0.816543,-1.982448,0.584968,2.671628 +-0.502693,0.854886,-0.816034,-1.981411,0.584751,2.672664 +-0.501588,0.855949,-0.815593,-1.980348,0.584609,2.673727 +-0.500473,0.857033,-0.815222,-1.979264,0.584542,2.674811 +-0.499354,0.858133,-0.814923,-1.978164,0.584549,2.675911 +-0.498235,0.859245,-0.814696,-1.977052,0.584632,2.677023 +-0.497120,0.860364,-0.814543,-1.975934,0.584789,2.678142 +-0.496016,0.861484,-0.814465,-1.974814,0.585020,2.679262 +-0.494928,0.862600,-0.814462,-1.973697,0.585324,2.680378 +-0.493859,0.863708,-0.814534,-1.972589,0.585699,2.681486 +-0.492815,0.864802,-0.814681,-1.971495,0.586145,2.682580 +-0.491800,0.865878,-0.814901,-1.970419,0.586658,2.683656 +-0.490820,0.866931,-0.815195,-1.969366,0.587237,2.684709 +-0.489878,0.867955,-0.815560,-1.968342,0.587878,2.685733 +-0.488979,0.868947,-0.815995,-1.967350,0.588580,2.686725 +-0.488127,0.869902,-0.816499,-1.966395,0.589339,2.687680 +-0.487325,0.870816,-0.817068,-1.965481,0.590151,2.688594 +-0.486578,0.871684,-0.817701,-1.964613,0.591013,2.689462 +-0.485888,0.872502,-0.818394,-1.963795,0.591921,2.690281 +-0.485258,0.873268,-0.819144,-1.963029,0.592871,2.691046 +-0.484692,0.873977,-0.819948,-1.962320,0.593858,2.691755 +-0.484193,0.874627,-0.820803,-1.961670,0.594879,2.692405 +-0.483761,0.875214,-0.821704,-1.961083,0.595928,2.692992 +-0.483400,0.875735,-0.822648,-1.960562,0.597001,2.693514 +-0.483110,0.876190,-0.823630,-1.960108,0.598093,2.693968 +-0.482894,0.876574,-0.824645,-1.959723,0.599200,2.694352 +-0.482751,0.876887,-0.825690,-1.959410,0.600315,2.694665 +-0.482684,0.877128,-0.826760,-1.959169,0.601435,2.694906 +-0.482691,0.877294,-0.827849,-1.959003,0.602554,2.695073 +-0.482774,0.877386,-0.828953,-1.958911,0.603667,2.695165 +-0.482931,0.877403,-0.830067,-1.958894,0.604769,2.695182 +-0.483162,0.877345,-0.831185,-1.958952,0.605856,2.695124 +-0.483466,0.877213,-0.832304,-1.959085,0.606921,2.694991 +-0.483842,0.877006,-0.833417,-1.959292,0.607962,2.694784 +-0.484287,0.876725,-0.834521,-1.959572,0.608972,2.694504 +-0.484800,0.876373,-0.835609,-1.959924,0.609947,2.694151 +-0.485379,0.875950,-0.836677,-1.960347,0.610883,2.693728 +-0.486021,0.875459,-0.837720,-1.960838,0.611776,2.693237 +-0.486723,0.874901,-0.838734,-1.961396,0.612621,2.692680 +-0.487481,0.874280,-0.839714,-1.962017,0.613416,2.692058 +-0.488293,0.873598,-0.840655,-1.962700,0.614156,2.691376 +-0.489155,0.872857,-0.841554,-1.963440,0.614837,2.690635 +-0.490063,0.872062,-0.842406,-1.964235,0.615458,2.689840 +-0.491013,0.871216,-0.843207,-1.965081,0.616015,2.688994 +-0.492001,0.870323,-0.843954,-1.965975,0.616506,2.688101 +-0.493021,0.869386,-0.844644,-1.966911,0.616927,2.687164 +-0.494071,0.868410,-0.845273,-1.967887,0.617279,2.686188 +-0.495144,0.867400,-0.845839,-1.968897,0.617558,2.685178 +-0.496236,0.866359,-0.846339,-1.969938,0.617765,2.684138 +-0.497343,0.865294,-0.846770,-1.971004,0.617897,2.683072 +-0.498458,0.864207,-0.847131,-1.972090,0.617954,2.681985 +-0.499578,0.863105,-0.847421,-1.973192,0.617936,2.680883 +-0.500697,0.861992,-0.847637,-1.974306,0.617843,2.679770 +-0.501810,0.860873,-0.847780,-1.975425,0.617676,2.678651 +-0.502912,0.859753,-0.847847,-1.976544,0.617434,2.677531 +-0.503998,0.858637,-0.847840,-1.977660,0.617120,2.676415 +-0.505064,0.857531,-0.847758,-1.978766,0.616735,2.675309 +-0.506104,0.856439,-0.847601,-1.979858,0.616280,2.674217 +-0.507114,0.855366,-0.847370,-1.980931,0.615758,2.673144 +-0.508089,0.854317,-0.847066,-1.981980,0.615170,2.672095 +-0.509026,0.853297,-0.846691,-1.983000,0.614520,2.671075 +-0.509918,0.852310,-0.846246,-1.983988,0.613810,2.670088 +-0.510764,0.851360,-0.845734,-1.984937,0.613044,2.669138 +-0.511558,0.850453,-0.845155,-1.985844,0.612224,2.668231 +-0.512298,0.849591,-0.844514,-1.986706,0.611356,2.667369 +-0.512980,0.848780,-0.843813,-1.987517,0.610442,2.666558 +-0.513601,0.848022,-0.843055,-1.988275,0.609486,2.665800 +-0.514157,0.847321,-0.842243,-1.988977,0.608494,2.665099 +-0.514648,0.846680,-0.841382,-1.989618,0.607469,2.664458 +-0.515070,0.846102,-0.840475,-1.990196,0.606416,2.663880 +-0.515421,0.845589,-0.839526,-1.990708,0.605340,2.663367 +-0.515701,0.845145,-0.838539,-1.991153,0.604246,2.662923 +-0.515907,0.844770,-0.837519,-1.991527,0.603138,2.662548 +-0.516039,0.844467,-0.836470,-1.991830,0.602021,2.662245 +-0.516096,0.844236,-0.835398,-1.992061,0.600901,2.662015 +-0.516078,0.844080,-0.834306,-1.992217,0.599783,2.661858 +-0.515985,0.843998,-0.833201,-1.992299,0.598671,2.661777 +-0.515818,0.843992,-0.832086,-1.992305,0.597571,2.661770 +-0.515576,0.844060,-0.830967,-1.992237,0.596487,2.661838 +-0.515262,0.844203,-0.829849,-1.992094,0.595425,2.661982 +-0.514877,0.844421,-0.828736,-1.991877,0.594388,2.662199 +-0.514422,0.844711,-0.827635,-1.991586,0.593383,2.662489 +-0.513900,0.845073,-0.826549,-1.991224,0.592413,2.662851 +-0.513312,0.845506,-0.825484,-1.990792,0.591482,2.663284 +-0.512662,0.846006,-0.824445,-1.990291,0.590596,2.663784 +-0.511952,0.846573,-0.823435,-1.989724,0.589757,2.664351 +-0.511186,0.847203,-0.822460,-1.989094,0.588970,2.664981 +-0.510366,0.847894,-0.821525,-1.988404,0.588238,2.665672 +-0.509498,0.848642,-0.820632,-1.987655,0.587565,2.666420 +-0.508584,0.849444,-0.819787,-1.986853,0.586953,2.667222 +-0.507628,0.850297,-0.818993,-1.986000,0.586405,2.668075 +-0.506636,0.851197,-0.818254,-1.985101,0.585924,2.668975 +-0.505611,0.852139,-0.817572,-1.984158,0.585511,2.669917 +-0.504558,0.853120,-0.816952,-1.983177,0.585170,2.670898 +-0.503482,0.854134,-0.816395,-1.982163,0.584900,2.671913 +-0.502387,0.855179,-0.815905,-1.981118,0.584705,2.672957 +-0.501279,0.856248,-0.815483,-1.980049,0.584583,2.674026 +-0.500163,0.857337,-0.815132,-1.978960,0.584536,2.675115 +-0.499043,0.858441,-0.814852,-1.977856,0.584564,2.676219 +-0.497925,0.859555,-0.814646,-1.976742,0.584668,2.677333 +-0.496813,0.860675,-0.814514,-1.975623,0.584845,2.678453 +-0.495712,0.861794,-0.814457,-1.974503,0.585097,2.679572 +-0.494629,0.862909,-0.814475,-1.973389,0.585421,2.680687 +-0.493566,0.864013,-0.814567,-1.972284,0.585816,2.681791 +-0.492530,0.865103,-0.814734,-1.971194,0.586280,2.682881 +-0.491525,0.866173,-0.814975,-1.970124,0.586812,2.683951 +-0.490555,0.867218,-0.815289,-1.969079,0.587408,2.684996 +-0.489624,0.868234,-0.815674,-1.968063,0.588067,2.686012 +-0.488738,0.869216,-0.816128,-1.967081,0.588785,2.686994 +-0.487899,0.870160,-0.816650,-1.966137,0.589559,2.687938 +-0.487112,0.871061,-0.817238,-1.965236,0.590385,2.688840 +-0.486380,0.871916,-0.817887,-1.964381,0.591260,2.689694 +-0.485707,0.872720,-0.818596,-1.963577,0.592180,2.690499 +-0.485095,0.873471,-0.819362,-1.962826,0.593141,2.691249 +-0.484547,0.874164,-0.820181,-1.962133,0.594138,2.691942 +-0.484066,0.874796,-0.821049,-1.961501,0.595167,2.692574 +-0.483654,0.875365,-0.821962,-1.960932,0.596224,2.693143 +-0.483312,0.875868,-0.822917,-1.960429,0.597303,2.693647 +-0.483043,0.876303,-0.823908,-1.959994,0.598399,2.694082 +-0.482847,0.876668,-0.824933,-1.959629,0.599509,2.694446 +-0.482725,0.876961,-0.825985,-1.959336,0.600626,2.694740 +-0.482678,0.877181,-0.827060,-1.959116,0.601746,2.694960 +-0.482707,0.877327,-0.828154,-1.958970,0.602864,2.695106 +-0.482810,0.877399,-0.829261,-1.958898,0.603975,2.695177 +-0.482988,0.877395,-0.830377,-1.958902,0.605073,2.695173 +-0.483239,0.877316,-0.831496,-1.958981,0.606154,2.695094 +-0.483563,0.877163,-0.832614,-1.959135,0.607213,2.694941 +-0.483958,0.876935,-0.833725,-1.959362,0.608245,2.694713 +-0.484423,0.876635,-0.834825,-1.959662,0.609246,2.694413 +-0.484955,0.876263,-0.835908,-1.960034,0.610211,2.694041 +-0.485551,0.875821,-0.836969,-1.960476,0.611135,2.693599 +-0.486210,0.875311,-0.838005,-1.960986,0.612015,2.693089 +-0.486928,0.874735,-0.839010,-1.961562,0.612847,2.692513 +-0.487701,0.874097,-0.839979,-1.962201,0.613627,2.691875 +-0.488528,0.873398,-0.840909,-1.962899,0.614351,2.691176 +-0.489403,0.872642,-0.841795,-1.963655,0.615016,2.690420 +-0.490323,0.871832,-0.842634,-1.964465,0.615619,2.689610 +-0.491284,0.870973,-0.843420,-1.965325,0.616158,2.688751 +-0.492281,0.870067,-0.844152,-1.966230,0.616630,2.687845 +-0.493310,0.869119,-0.844825,-1.967178,0.617032,2.686897 +-0.494366,0.868133,-0.845437,-1.968164,0.617364,2.685911 +-0.495445,0.867114,-0.845984,-1.969183,0.617623,2.684892 +-0.496542,0.866066,-0.846465,-1.970231,0.617809,2.683844 +-0.497652,0.864994,-0.846877,-1.971303,0.617920,2.682772 +-0.498769,0.863902,-0.847219,-1.972395,0.617956,2.681681 +-0.499889,0.862797,-0.847488,-1.973501,0.617918,2.680575 +-0.501007,0.861681,-0.847684,-1.974616,0.617804,2.679459 +-0.502117,0.860562,-0.847806,-1.975736,0.617616,2.678340 +-0.503216,0.859442,-0.847853,-1.976855,0.617354,2.677221 +-0.504297,0.858329,-0.847825,-1.977968,0.617020,2.676107 +-0.505356,0.857226,-0.847722,-1.979071,0.616616,2.675004 +-0.506388,0.856139,-0.847544,-1.980158,0.616142,2.673917 +-0.507389,0.855072,-0.847293,-1.981225,0.615601,2.672850 +-0.508353,0.854031,-0.846969,-1.982266,0.614996,2.671809 +-0.509278,0.853019,-0.846575,-1.983278,0.614329,2.670797 +-0.510158,0.852042,-0.846111,-1.984255,0.613603,2.669820 +-0.510990,0.851104,-0.845579,-1.985193,0.612821,2.668882 +-0.511769,0.850209,-0.844984,-1.986088,0.611988,2.667987 +-0.512493,0.849361,-0.844325,-1.986936,0.611106,2.667139 +-0.513159,0.848564,-0.843608,-1.987733,0.610181,2.666342 +-0.513762,0.847821,-0.842835,-1.988476,0.609214,2.665599 +-0.514300,0.847136,-0.842009,-1.989161,0.608213,2.664915 +-0.514772,0.846513,-0.841135,-1.989784,0.607179,2.664291 +-0.515175,0.845953,-0.840215,-1.990345,0.606120,2.663731 +-0.515506,0.845459,-0.839255,-1.990838,0.605038,2.663237 +-0.515765,0.845033,-0.838259,-1.991264,0.603939,2.662812 +-0.515951,0.844678,-0.837230,-1.991619,0.602828,2.662457 +-0.516062,0.844395,-0.836175,-1.991902,0.601710,2.662174 +-0.516099,0.844186,-0.835097,-1.992112,0.600590,2.661964 +-0.516060,0.844050,-0.834001,-1.992247,0.599473,2.661828 +-0.515946,0.843989,-0.832892,-1.992308,0.598364,2.661767 +-0.515758,0.844003,-0.831775,-1.992294,0.597268,2.661781 +-0.515496,0.844092,-0.830656,-1.992205,0.596190,2.661871 +-0.515163,0.844256,-0.829539,-1.992041,0.595134,2.662034 +-0.514758,0.844494,-0.828429,-1.991803,0.594106,2.662272 +-0.514284,0.844804,-0.827332,-1.991493,0.593110,2.662583 +-0.513743,0.845186,-0.826251,-1.991111,0.592150,2.662964 +-0.513138,0.845638,-0.825193,-1.990659,0.591232,2.663416 +-0.512471,0.846157,-0.824161,-1.990140,0.590358,2.663935 +-0.511745,0.846741,-0.823161,-1.989556,0.589533,2.664520 +-0.510963,0.847389,-0.822197,-1.988908,0.588761,2.665167 +-0.510130,0.848096,-0.821273,-1.988202,0.588045,2.665874 +-0.509248,0.848859,-0.820393,-1.987438,0.587388,2.666637 +-0.508322,0.849676,-0.819562,-1.986621,0.586794,2.667454 +-0.507356,0.850542,-0.818782,-1.985755,0.586264,2.668320 +-0.506354,0.851454,-0.818059,-1.984843,0.585802,2.669232 +-0.505321,0.852408,-0.817394,-1.983890,0.585409,2.670186 +-0.504261,0.853398,-0.816791,-1.982899,0.585088,2.671176 +-0.503180,0.854422,-0.816252,-1.981876,0.584839,2.672200 +-0.502081,0.855473,-0.815781,-1.980824,0.584663,2.673251 +-0.500970,0.856548,-0.815379,-1.979749,0.584562,2.674327 +-0.499852,0.857642,-0.815047,-1.978655,0.584536,2.675420 +-0.498732,0.858749,-0.814788,-1.977548,0.584586,2.676528 +-0.497615,0.859866,-0.814602,-1.976431,0.584710,2.677644 +-0.496506,0.860986,-0.814491,-1.975312,0.584908,2.678764 +-0.495410,0.862104,-0.814454,-1.974193,0.585180,2.679882 +-0.494331,0.863216,-0.814493,-1.973081,0.585524,2.680995 +-0.493276,0.864317,-0.814606,-1.971980,0.585938,2.682096 +-0.492248,0.865402,-0.814794,-1.970895,0.586421,2.683180 +-0.491252,0.866466,-0.815055,-1.969831,0.586971,2.684244 +-0.490292,0.867503,-0.815389,-1.968794,0.587585,2.685281 +-0.489374,0.868510,-0.815793,-1.967787,0.588261,2.686289 +-0.488500,0.869482,-0.816267,-1.966815,0.588994,2.687260 +-0.487675,0.870415,-0.816807,-1.965882,0.589783,2.688193 +-0.486903,0.871304,-0.817412,-1.964994,0.590623,2.689082 +-0.486187,0.872145,-0.818078,-1.964152,0.591511,2.689923 +-0.485530,0.872934,-0.818804,-1.963363,0.592443,2.690713 +-0.484936,0.873669,-0.819584,-1.962628,0.593414,2.691447 +-0.484407,0.874346,-0.820417,-1.961952,0.594421,2.692124 +-0.483944,0.874961,-0.821298,-1.961337,0.595458,2.692739 +-0.483552,0.875512,-0.822223,-1.960786,0.596521,2.693290 +-0.483230,0.875996,-0.823189,-1.960301,0.597606,2.693774 +-0.482981,0.876412,-0.824190,-1.959885,0.598706,2.694190 +-0.482805,0.876757,-0.825222,-1.959540,0.599818,2.694535 +-0.482705,0.877030,-0.826281,-1.959267,0.600937,2.694808 +-0.482679,0.877229,-0.827362,-1.959068,0.602057,2.695008 +-0.482728,0.877355,-0.828460,-1.958942,0.603173,2.695133 +-0.482852,0.877405,-0.829570,-1.958892,0.604281,2.695183 +-0.483050,0.877380,-0.830687,-1.958917,0.605375,2.695159 +-0.483322,0.877281,-0.831807,-1.959016,0.606450,2.695059 +-0.483666,0.877107,-0.832923,-1.959190,0.607502,2.694885 +-0.484080,0.876859,-0.834032,-1.959438,0.608526,2.694637 +-0.484564,0.876539,-0.835127,-1.959759,0.609518,2.694317 +-0.485114,0.876147,-0.836205,-1.960150,0.610472,2.693925 +-0.485728,0.875686,-0.837260,-1.960611,0.611384,2.693464 +-0.486403,0.875157,-0.838287,-1.961140,0.612251,2.692936 +-0.487137,0.874564,-0.839283,-1.961733,0.613069,2.692342 +-0.487926,0.873908,-0.840242,-1.962389,0.613834,2.691687 +-0.488766,0.873193,-0.841160,-1.963104,0.614542,2.690972 +-0.489654,0.872422,-0.842033,-1.963875,0.615190,2.690200 +-0.490586,0.871598,-0.842857,-1.964699,0.615775,2.689377 +-0.491557,0.870725,-0.843629,-1.965572,0.616296,2.688504 +-0.492564,0.869808,-0.844345,-1.966490,0.616748,2.687586 +-0.493601,0.868849,-0.845001,-1.967448,0.617131,2.686627 +-0.494664,0.867853,-0.845595,-1.968444,0.617443,2.685631 +-0.495748,0.866826,-0.846125,-1.969471,0.617682,2.684604 +-0.496849,0.865770,-0.846587,-1.970527,0.617847,2.683549 +-0.497961,0.864693,-0.846979,-1.971605,0.617938,2.682471 +-0.499080,0.863597,-0.847301,-1.972701,0.617953,2.681375 +-0.500200,0.862488,-0.847550,-1.973809,0.617894,2.680266 +-0.501316,0.861371,-0.847725,-1.974926,0.617759,2.679149 +-0.502424,0.860251,-0.847826,-1.976047,0.617551,2.678029 +-0.503518,0.859133,-0.847852,-1.977165,0.617269,2.676911 +-0.504593,0.858022,-0.847803,-1.978276,0.616915,2.675800 +-0.505645,0.856923,-0.847680,-1.979375,0.616491,2.674701 +-0.506669,0.855841,-0.847482,-1.980457,0.615998,2.673619 +-0.507660,0.854780,-0.847210,-1.981517,0.615439,2.672558 +-0.508614,0.853747,-0.846867,-1.982550,0.614817,2.671525 +-0.509527,0.852744,-0.846453,-1.983553,0.614133,2.670522 +-0.510394,0.851778,-0.845970,-1.984520,0.613391,2.669556 +-0.511212,0.850851,-0.845420,-1.985446,0.612595,2.668629 +-0.511976,0.849968,-0.844807,-1.986329,0.611748,2.667747 +-0.512684,0.849134,-0.844132,-1.987163,0.610854,2.666912 +-0.513332,0.848352,-0.843399,-1.987945,0.609916,2.666130 +-0.513918,0.847625,-0.842611,-1.988672,0.608940,2.665403 +-0.514438,0.846957,-0.841771,-1.989340,0.607929,2.664735 +-0.514891,0.846351,-0.840884,-1.989946,0.606888,2.664129 +-0.515274,0.845809,-0.839953,-1.990488,0.605821,2.663587 +-0.515586,0.845334,-0.838982,-1.990963,0.604734,2.663112 +-0.515824,0.844928,-0.837976,-1.991369,0.603632,2.662706 +-0.515989,0.844593,-0.836940,-1.991705,0.602518,2.662371 +-0.516080,0.844330,-0.835878,-1.991967,0.601399,2.662108 +-0.516095,0.844140,-0.834794,-1.992157,0.600280,2.661919 +-0.516036,0.844026,-0.833694,-1.992272,0.599164,2.661804 +-0.515901,0.843985,-0.832583,-1.992312,0.598058,2.661764 +-0.515693,0.844021,-0.831465,-1.992277,0.596967,2.661799 +-0.515411,0.844131,-0.830346,-1.992167,0.595894,2.661909 +-0.515057,0.844315,-0.829230,-1.991982,0.594846,2.662093 +-0.514633,0.844573,-0.828123,-1.991724,0.593826,2.662351 +-0.514140,0.844903,-0.827030,-1.991394,0.592840,2.662681 +-0.513581,0.845305,-0.825955,-1.990992,0.591891,2.663083 +-0.512959,0.845775,-0.824903,-1.990522,0.590984,2.663553 +-0.512275,0.846313,-0.823880,-1.989984,0.590124,2.664091 +-0.511533,0.846915,-0.822889,-1.989382,0.589313,2.664693 +-0.510737,0.847579,-0.821936,-1.988718,0.588557,2.665357 +-0.509890,0.848302,-0.821024,-1.987995,0.587857,2.666080 +-0.508996,0.849081,-0.820157,-1.987216,0.587217,2.666859 +-0.508058,0.849912,-0.819340,-1.986385,0.586640,2.667690 +-0.507082,0.850791,-0.818576,-1.985506,0.586129,2.668569 +-0.506071,0.851715,-0.817868,-1.984582,0.585686,2.669493 +-0.505030,0.852679,-0.817220,-1.983618,0.585313,2.670457 +-0.503963,0.853679,-0.816635,-1.982618,0.585011,2.671457 +-0.502876,0.854711,-0.816115,-1.981586,0.584783,2.672489 +-0.501774,0.855770,-0.815662,-1.980528,0.584628,2.673548 +-0.500660,0.856850,-0.815279,-1.979447,0.584548,2.674628 +-0.499541,0.857948,-0.814968,-1.978349,0.584543,2.675727 +-0.498421,0.859059,-0.814729,-1.977238,0.584613,2.676837 +-0.497306,0.860176,-0.814564,-1.976121,0.584757,2.677955 +-0.496200,0.861296,-0.814473,-1.975001,0.584976,2.679075 +-0.495108,0.862414,-0.814457,-1.973883,0.585268,2.680192 +-0.494036,0.863523,-0.814517,-1.972774,0.585632,2.681302 +-0.492987,0.864620,-0.814651,-1.971677,0.586065,2.682399 +-0.491968,0.865700,-0.814859,-1.970597,0.586567,2.683478 +-0.490981,0.866757,-0.815141,-1.969541,0.587135,2.684535 +-0.490033,0.867786,-0.815494,-1.968511,0.587767,2.685564 +-0.489126,0.868784,-0.815918,-1.967513,0.588459,2.686562 +-0.488266,0.869745,-0.816410,-1.966552,0.589208,2.687523 +-0.487455,0.870666,-0.816969,-1.965631,0.590011,2.688444 +-0.486699,0.871542,-0.817591,-1.964755,0.590865,2.689320 +-0.485999,0.872369,-0.818274,-1.963928,0.591766,2.690147 +-0.485359,0.873144,-0.819015,-1.963153,0.592709,2.690922 +-0.484782,0.873863,-0.819810,-1.962434,0.593691,2.691641 +-0.484271,0.874523,-0.820657,-1.961775,0.594706,2.692301 +-0.483828,0.875120,-0.821551,-1.961177,0.595751,2.692898 +-0.483455,0.875653,-0.822487,-1.960644,0.596820,2.693431 +-0.483153,0.876118,-0.823463,-1.960179,0.597910,2.693897 +-0.482925,0.876515,-0.824473,-1.959782,0.599014,2.694293 +-0.482770,0.876840,-0.825514,-1.959457,0.600129,2.694618 +-0.482690,0.877093,-0.826579,-1.959204,0.601248,2.694871 +-0.482685,0.877272,-0.827665,-1.959025,0.602367,2.695050 +-0.482755,0.877376,-0.828767,-1.958921,0.603482,2.695154 +-0.482900,0.877406,-0.829880,-1.958891,0.604586,2.695184 +-0.483118,0.877360,-0.830998,-1.958937,0.605676,2.695139 +-0.483410,0.877240,-0.832117,-1.959057,0.606745,2.695018 +-0.483774,0.877045,-0.833232,-1.959252,0.607790,2.694824 +-0.484208,0.876777,-0.834337,-1.959520,0.608805,2.694555 +-0.484710,0.876437,-0.835428,-1.959860,0.609786,2.694215 +-0.485278,0.876026,-0.836500,-1.960271,0.610729,2.693804 +-0.485909,0.875546,-0.837548,-1.960751,0.611630,2.693324 +-0.486601,0.874999,-0.838567,-1.961298,0.612484,2.692777 +-0.487351,0.874388,-0.839553,-1.961909,0.613287,2.692166 +-0.488154,0.873716,-0.840501,-1.962581,0.614036,2.691494 +-0.489008,0.872985,-0.841407,-1.963312,0.614728,2.690763 +-0.489909,0.872199,-0.842267,-1.964099,0.615359,2.689977 +-0.490852,0.871361,-0.843077,-1.964936,0.615926,2.689139 +-0.491833,0.870475,-0.843833,-1.965822,0.616428,2.688253 +-0.492849,0.869545,-0.844533,-1.966752,0.616862,2.687323 +-0.493894,0.868576,-0.845172,-1.967721,0.617225,2.686354 +-0.494963,0.867571,-0.845749,-1.968726,0.617517,2.685349 +-0.496053,0.866535,-0.846260,-1.969762,0.617735,2.684313 +-0.497157,0.865473,-0.846703,-1.970824,0.617880,2.683251 +-0.498271,0.864390,-0.847076,-1.971907,0.617949,2.682168 +-0.499391,0.863290,-0.847377,-1.973007,0.617944,2.681068 +-0.500510,0.862178,-0.847606,-1.974119,0.617864,2.679956 +-0.501625,0.861060,-0.847761,-1.975237,0.617709,2.678838 +-0.502729,0.859940,-0.847841,-1.976357,0.617480,2.677718 +-0.503818,0.858823,-0.847846,-1.977474,0.617178,2.676601 +-0.504888,0.857715,-0.847777,-1.978582,0.616804,2.675493 +-0.505932,0.856620,-0.847632,-1.979677,0.616361,2.674398 +-0.506948,0.855544,-0.847414,-1.980753,0.615850,2.673322 +-0.507929,0.854490,-0.847122,-1.981807,0.615273,2.672269 +-0.508872,0.853465,-0.846759,-1.982832,0.614633,2.671243 +-0.509772,0.852472,-0.846325,-1.983825,0.613933,2.670250 +-0.510626,0.851516,-0.845824,-1.984781,0.613176,2.669294 +-0.511429,0.850601,-0.845256,-1.985696,0.612365,2.668379 +-0.512179,0.849732,-0.844626,-1.986565,0.611504,2.667510 +-0.512870,0.848912,-0.843934,-1.987385,0.610598,2.666690 +-0.513501,0.848144,-0.843185,-1.988153,0.609649,2.665923 +-0.514069,0.847434,-0.842383,-1.988863,0.608662,2.665212 +-0.514571,0.846782,-0.841529,-1.989515,0.607643,2.664561 +-0.515004,0.846194,-0.840629,-1.990103,0.606594,2.663972 +-0.515368,0.845670,-0.839687,-1.990627,0.605521,2.663448 +-0.515659,0.845214,-0.838706,-1.991083,0.604430,2.662992 +-0.515878,0.844828,-0.837692,-1.991470,0.603324,2.662606 +-0.516022,0.844512,-0.836647,-1.991785,0.602208,2.662290 +-0.516092,0.844270,-0.835579,-1.992027,0.601088,2.662048 +-0.516086,0.844101,-0.834490,-1.992196,0.599969,2.661879 +-0.516006,0.844007,-0.833386,-1.992290,0.598856,2.661785 +-0.515851,0.843988,-0.832273,-1.992309,0.597754,2.661766 +-0.515622,0.844044,-0.831154,-1.992254,0.596667,2.661822 +-0.515320,0.844174,-0.830035,-1.992123,0.595600,2.661952 +-0.514946,0.844379,-0.828922,-1.991918,0.594559,2.662157 +-0.514503,0.844657,-0.827818,-1.991640,0.593549,2.662436 +-0.513992,0.845008,-0.826729,-1.991289,0.592572,2.662786 +-0.513415,0.845428,-0.825660,-1.990869,0.591635,2.663207 +-0.512775,0.845918,-0.824616,-1.990379,0.590741,2.663696 +-0.512075,0.846474,-0.823602,-1.989824,0.589894,2.664252 +-0.511317,0.847093,-0.822621,-1.989204,0.589098,2.664871 +-0.510507,0.847774,-0.821678,-1.988523,0.588356,2.665552 +-0.509646,0.848513,-0.820778,-1.987784,0.587673,2.666291 +-0.508739,0.849306,-0.819925,-1.986991,0.587051,2.667085 +-0.507791,0.850151,-0.819122,-1.986146,0.586492,2.667929 +-0.506804,0.851043,-0.818374,-1.985254,0.585999,2.668821 +-0.505784,0.851979,-0.817682,-1.984318,0.585575,2.669757 +-0.504736,0.852953,-0.817051,-1.983344,0.585222,2.670731 +-0.503663,0.853963,-0.816484,-1.982334,0.584940,2.671741 +-0.502571,0.855002,-0.815982,-1.981295,0.584732,2.672781 +-0.501465,0.856068,-0.815549,-1.980230,0.584598,2.673846 +-0.500350,0.857154,-0.815186,-1.979143,0.584539,2.674932 +-0.499230,0.858256,-0.814894,-1.978042,0.584554,2.676034 +-0.498111,0.859369,-0.814675,-1.976929,0.584645,2.677147 +-0.496998,0.860487,-0.814531,-1.975810,0.584811,2.678266 +-0.495895,0.861607,-0.814461,-1.974690,0.585050,2.679385 +-0.494808,0.862723,-0.814466,-1.973574,0.585362,2.680501 +-0.493742,0.863830,-0.814547,-1.972468,0.585745,2.681608 +-0.492701,0.864922,-0.814701,-1.971375,0.586198,2.682700 +-0.491690,0.865996,-0.814930,-1.970302,0.586719,2.683774 +-0.490714,0.867045,-0.815232,-1.969252,0.587304,2.684824 +-0.489777,0.868067,-0.815605,-1.968231,0.587953,2.685845 +-0.488883,0.869055,-0.816048,-1.967242,0.588661,2.686833 +-0.488036,0.870005,-0.816559,-1.966292,0.589426,2.687783 +-0.487240,0.870914,-0.817135,-1.965383,0.590244,2.688692 +-0.486498,0.871777,-0.817774,-1.964520,0.591111,2.689555 +-0.485815,0.872590,-0.818474,-1.963707,0.592024,2.690368 +-0.485193,0.873349,-0.819230,-1.962948,0.592978,2.691127 +-0.484634,0.874052,-0.820040,-1.962245,0.593969,2.691830 +-0.484141,0.874695,-0.820900,-1.961602,0.594993,2.692473 +-0.483718,0.875275,-0.821806,-1.961022,0.596046,2.693053 +-0.483364,0.875789,-0.822755,-1.960508,0.597121,2.693567 +-0.483083,0.876236,-0.823740,-1.960062,0.598215,2.694014 +-0.482874,0.876612,-0.824759,-1.959685,0.599323,2.694390 +-0.482740,0.876917,-0.825807,-1.959380,0.600439,2.694696 +-0.482681,0.877150,-0.826879,-1.959147,0.601559,2.694928 +-0.482697,0.877308,-0.827970,-1.958989,0.602678,2.695086 +-0.482788,0.877392,-0.829075,-1.958905,0.603790,2.695170 +-0.482953,0.877401,-0.830190,-1.958896,0.604890,2.695179 +-0.483192,0.877334,-0.831309,-1.958963,0.605975,2.695113 +-0.483504,0.877193,-0.832427,-1.959104,0.607038,2.694972 +-0.483888,0.876978,-0.833540,-1.959319,0.608075,2.694756 +-0.484340,0.876690,-0.834642,-1.959607,0.609081,2.694468 +-0.484861,0.876330,-0.835728,-1.959967,0.610052,2.694108 +-0.485447,0.875899,-0.836794,-1.960398,0.610984,2.693678 +-0.486095,0.875401,-0.837834,-1.960897,0.611872,2.693179 +-0.486804,0.874836,-0.838844,-1.961461,0.612712,2.692614 +-0.487568,0.874208,-0.839820,-1.962090,0.613500,2.691986 +-0.488386,0.873519,-0.840757,-1.962779,0.614234,2.691297 +-0.489254,0.872772,-0.841650,-1.963525,0.614909,2.690550 +-0.490166,0.871971,-0.842497,-1.964326,0.615523,2.689749 +-0.491121,0.871119,-0.843293,-1.965178,0.616072,2.688898 +-0.492112,0.870221,-0.844034,-1.966076,0.616556,2.687999 +-0.493136,0.869280,-0.844717,-1.967017,0.616970,2.687058 +-0.494188,0.868300,-0.845339,-1.967997,0.617313,2.686078 +-0.495264,0.867286,-0.845897,-1.969011,0.617585,2.685065 +-0.496358,0.866243,-0.846390,-1.970054,0.617783,2.684021 +-0.497466,0.865174,-0.846813,-1.971123,0.617907,2.682953 +-0.498582,0.864086,-0.847167,-1.972211,0.617955,2.681864 +-0.499702,0.862982,-0.847448,-1.973315,0.617929,2.680760 +-0.500820,0.861868,-0.847657,-1.974429,0.617828,2.679646 +-0.501932,0.860749,-0.847791,-1.975548,0.617653,2.678527 +-0.503033,0.859629,-0.847850,-1.976668,0.617403,2.677407 +-0.504117,0.858515,-0.847835,-1.977783,0.617081,2.676293 +-0.505180,0.857410,-0.847744,-1.978888,0.616688,2.675188 +-0.506217,0.856319,-0.847579,-1.979978,0.616226,2.674098 +-0.507224,0.855249,-0.847340,-1.981048,0.615696,2.673027 +-0.508195,0.854203,-0.847028,-1.982094,0.615101,2.671981 +-0.509126,0.853186,-0.846645,-1.983111,0.614444,2.670964 +-0.510014,0.852203,-0.846193,-1.984094,0.613728,2.669981 +-0.510854,0.851258,-0.845673,-1.985039,0.612956,2.669036 +-0.511643,0.850355,-0.845088,-1.985942,0.612131,2.668133 +-0.512376,0.849499,-0.844440,-1.986798,0.611257,2.667277 +-0.513052,0.848693,-0.843732,-1.987604,0.610338,2.666471 +-0.513665,0.847941,-0.842968,-1.988356,0.609379,2.665720 +-0.514215,0.847247,-0.842151,-1.989050,0.608382,2.665025 +-0.514698,0.846613,-0.841284,-1.989685,0.607354,2.664391 +-0.515112,0.846042,-0.840372,-1.990255,0.606298,2.663820 +-0.515456,0.845537,-0.839418,-1.990761,0.605220,2.663315 +-0.515727,0.845100,-0.838428,-1.991197,0.604124,2.662878 +-0.515925,0.844733,-0.837404,-1.991564,0.603015,2.662511 +-0.516049,0.844438,-0.836353,-1.991860,0.601897,2.662216 +-0.516098,0.844215,-0.835278,-1.992082,0.600777,2.661994 +-0.516072,0.844067,-0.834185,-1.992230,0.599660,2.661846 +-0.515970,0.843994,-0.833078,-1.992303,0.598549,2.661772 +-0.515795,0.843996,-0.831962,-1.992301,0.597450,2.661774 +-0.515545,0.844072,-0.830843,-1.992225,0.596368,2.661851 +-0.515223,0.844224,-0.829725,-1.992073,0.595309,2.662002 +-0.514830,0.844449,-0.828614,-1.991848,0.594276,2.662227 +-0.514368,0.844748,-0.827514,-1.991550,0.593274,2.662526 +-0.513838,0.845118,-0.826430,-1.991180,0.592308,2.662896 +-0.513243,0.845558,-0.825368,-1.990740,0.591382,2.663336 +-0.512586,0.846066,-0.824331,-1.990232,0.590501,2.663844 +-0.511870,0.846639,-0.823326,-1.989658,0.589668,2.664418 +-0.511098,0.847276,-0.822355,-1.989021,0.588886,2.665054 +-0.510273,0.847973,-0.821424,-1.988324,0.588161,2.665752 +-0.509399,0.848728,-0.820537,-1.987569,0.587494,2.666506 +-0.508480,0.849536,-0.819697,-1.986761,0.586889,2.667314 +-0.507520,0.850394,-0.818909,-1.985903,0.586348,2.668172 +-0.506524,0.851299,-0.818176,-1.984998,0.585875,2.669077 +-0.505496,0.852245,-0.817501,-1.984052,0.585470,2.670024 +-0.504440,0.853230,-0.816887,-1.983067,0.585136,2.671008 +-0.503362,0.854248,-0.816338,-1.982049,0.584875,2.672027 +-0.502266,0.855296,-0.815855,-1.981001,0.584687,2.673074 +-0.501156,0.856367,-0.815441,-1.979930,0.584574,2.674145 +-0.500039,0.857458,-0.815097,-1.978839,0.584536,2.675236 +-0.498919,0.858564,-0.814826,-1.977733,0.584572,2.676342 +-0.497801,0.859679,-0.814628,-1.976618,0.584684,2.677457 +-0.496690,0.860798,-0.814504,-1.975499,0.584870,2.678577 +-0.495592,0.861918,-0.814455,-1.974380,0.585129,2.679696 +-0.494510,0.863031,-0.814481,-1.973266,0.585461,2.680809 +-0.493450,0.864134,-0.814582,-1.972163,0.585864,2.681913 +-0.492417,0.865222,-0.814757,-1.971075,0.586336,2.683000 +-0.491416,0.866290,-0.815007,-1.970008,0.586875,2.684068 +-0.490450,0.867332,-0.815328,-1.968965,0.587478,2.685110 +-0.489524,0.868344,-0.815721,-1.967953,0.588144,2.686123 +-0.488643,0.869322,-0.816183,-1.966975,0.588868,2.687101 +-0.487809,0.870262,-0.816712,-1.966035,0.589648,2.688040 +-0.487028,0.871158,-0.817306,-1.965139,0.590480,2.688936 +-0.486303,0.872008,-0.817963,-1.964290,0.591360,2.689786 +-0.485636,0.872806,-0.818678,-1.963491,0.592285,2.690584 +-0.485031,0.873550,-0.819450,-1.962747,0.593250,2.691328 +-0.484490,0.874237,-0.820274,-1.962060,0.594250,2.692015 +-0.484017,0.874862,-0.821148,-1.961435,0.595283,2.692640 +-0.483612,0.875424,-0.822066,-1.960873,0.596342,2.693202 +-0.483279,0.875920,-0.823025,-1.960377,0.597423,2.693698 +-0.483017,0.876347,-0.824020,-1.959950,0.598521,2.694125 +-0.482830,0.876704,-0.825048,-1.959593,0.599632,2.694482 +-0.482716,0.876989,-0.826103,-1.959308,0.600750,2.694767 +-0.482678,0.877201,-0.827180,-1.959096,0.601870,2.694979 +-0.482714,0.877339,-0.828276,-1.958958,0.602987,2.695117 +-0.482826,0.877402,-0.829384,-1.958895,0.604097,2.695180 +-0.483012,0.877390,-0.830500,-1.958907,0.605193,2.695168 +-0.483272,0.877303,-0.831620,-1.958994,0.606272,2.695081 +-0.483603,0.877141,-0.832737,-1.959156,0.607328,2.694919 +-0.484006,0.876905,-0.833847,-1.959392,0.608357,2.694684 +-0.484478,0.876597,-0.834945,-1.959700,0.609354,2.694375 +-0.485017,0.876217,-0.836026,-1.960080,0.610315,2.693995 +-0.485621,0.875768,-0.837085,-1.960529,0.611235,2.693546 +-0.486286,0.875250,-0.838118,-1.961047,0.612110,2.693029 +-0.487010,0.874668,-0.839119,-1.961629,0.612936,2.692446 +-0.487790,0.874022,-0.840084,-1.962275,0.613710,2.691800 +-0.488622,0.873317,-0.841009,-1.962980,0.614427,2.691095 +-0.489503,0.872555,-0.841890,-1.963742,0.615086,2.690333 +-0.490427,0.871740,-0.842723,-1.964558,0.615682,2.689518 +-0.491392,0.870875,-0.843504,-1.965423,0.616213,2.688653 +-0.492393,0.869964,-0.844229,-1.966333,0.616678,2.687742 +-0.493426,0.869012,-0.844896,-1.967285,0.617072,2.686790 +-0.494485,0.868022,-0.845500,-1.968275,0.617396,2.685800 +-0.495566,0.866999,-0.846041,-1.969298,0.617647,2.684778 +-0.496664,0.865949,-0.846514,-1.970349,0.617825,2.683727 +-0.497775,0.864874,-0.846919,-1.971423,0.617928,2.682652 +-0.498893,0.863781,-0.847252,-1.972516,0.617956,2.681559 +-0.500013,0.862674,-0.847514,-1.973623,0.617909,2.680452 +-0.501130,0.861558,-0.847701,-1.974739,0.617787,2.679336 +-0.502239,0.860438,-0.847815,-1.975859,0.617591,2.678216 +-0.503336,0.859319,-0.847853,-1.976978,0.617321,2.677097 +-0.504415,0.858207,-0.847817,-1.978091,0.616979,2.675985 +-0.505471,0.857105,-0.847706,-1.979192,0.616567,2.674883 +-0.506500,0.856020,-0.847520,-1.980277,0.616085,2.673798 +-0.507497,0.854956,-0.847261,-1.981341,0.615537,2.672734 +-0.508458,0.853917,-0.846929,-1.982380,0.614925,2.671696 +-0.509378,0.852909,-0.846527,-1.983388,0.614251,2.670688 +-0.510252,0.851936,-0.846055,-1.984361,0.613519,2.669715 +-0.511079,0.851003,-0.845517,-1.985294,0.612732,2.668781 +-0.511852,0.850113,-0.844914,-1.986184,0.611893,2.667891 +-0.512570,0.849270,-0.844249,-1.987027,0.611006,2.667048 +-0.513228,0.848479,-0.843525,-1.987818,0.610076,2.666257 +-0.513824,0.847743,-0.842746,-1.988555,0.609105,2.665521 +-0.514356,0.847065,-0.841915,-1.989233,0.608100,2.664843 +-0.514820,0.846448,-0.841035,-1.989850,0.607064,2.664226 +-0.515215,0.845895,-0.840111,-1.990402,0.606001,2.663673 +-0.515538,0.845408,-0.839147,-1.990889,0.604917,2.663187 +-0.515790,0.844991,-0.838147,-1.991306,0.603817,2.662769 +-0.515967,0.844644,-0.837115,-1.991654,0.602705,2.662422 +-0.516070,0.844369,-0.836057,-1.991929,0.601587,2.662147 +-0.516098,0.844167,-0.834976,-1.992130,0.600467,2.661945 +-0.516051,0.844040,-0.833879,-1.992258,0.599350,2.661818 +-0.515929,0.843987,-0.832769,-1.992310,0.598242,2.661765 +-0.515733,0.844009,-0.831652,-1.992288,0.597148,2.661788 +-0.515463,0.844107,-0.830532,-1.992190,0.596072,2.661885 +-0.515121,0.844279,-0.829416,-1.992018,0.595019,2.662057 +-0.514709,0.844525,-0.828307,-1.991772,0.593994,2.662303 +-0.514227,0.844843,-0.827211,-1.991454,0.593002,2.662621 +-0.513679,0.845233,-0.826133,-1.991064,0.592047,2.663011 +-0.513067,0.845692,-0.825077,-1.990605,0.591133,2.663470 +-0.512393,0.846218,-0.824049,-1.990079,0.590264,2.663997 +-0.511661,0.846810,-0.823053,-1.989487,0.589445,2.664588 +-0.510874,0.847464,-0.822092,-1.988833,0.588679,2.665242 +-0.510035,0.848177,-0.821173,-1.988120,0.587970,2.665955 +-0.509148,0.848947,-0.820299,-1.987350,0.587320,2.666725 +-0.508218,0.849769,-0.819473,-1.986528,0.586732,2.667547 +-0.507247,0.850641,-0.818700,-1.985656,0.586210,2.668419 +-0.506242,0.851558,-0.817982,-1.984740,0.585755,2.669336 +-0.505205,0.852515,-0.817324,-1.983782,0.585370,2.670293 +-0.504143,0.853510,-0.816728,-1.982787,0.585057,2.671288 +-0.503059,0.854537,-0.816197,-1.981761,0.584816,2.672315 +-0.501959,0.855591,-0.815733,-1.980706,0.584648,2.673369 +-0.500847,0.856668,-0.815338,-1.979629,0.584556,2.674447 +-0.499728,0.857764,-0.815015,-1.978533,0.584538,2.675542 +-0.498608,0.858872,-0.814764,-1.977425,0.584596,2.676651 +-0.497492,0.859989,-0.814586,-1.976308,0.584728,2.677768 +-0.496384,0.861109,-0.814483,-1.975188,0.584934,2.678888 +-0.495290,0.862228,-0.814455,-1.974070,0.585214,2.680006 +-0.494214,0.863339,-0.814502,-1.972958,0.585566,2.681117 +-0.493161,0.864438,-0.814623,-1.971859,0.585988,2.682216 +-0.492136,0.865521,-0.814819,-1.970776,0.586479,2.683299 +-0.491144,0.866582,-0.815089,-1.969715,0.587036,2.684360 +-0.490189,0.867616,-0.815430,-1.968681,0.587657,2.685394 +-0.489275,0.868620,-0.815842,-1.967678,0.588339,2.686398 +-0.488406,0.869587,-0.816323,-1.966710,0.589079,2.687366 +-0.487587,0.870515,-0.816871,-1.965782,0.589874,2.688293 +-0.486821,0.871399,-0.817482,-1.964898,0.590719,2.689177 +-0.486112,0.872235,-0.818156,-1.964063,0.591612,2.690013 +-0.485462,0.873018,-0.818887,-1.963279,0.592549,2.690796 +-0.484874,0.873747,-0.819674,-1.962550,0.593524,2.691525 +-0.484352,0.874417,-0.820512,-1.961881,0.594534,2.692195 +-0.483897,0.875025,-0.821398,-1.961272,0.595574,2.692803 +-0.483512,0.875568,-0.822328,-1.960729,0.596640,2.693347 +-0.483199,0.876045,-0.823297,-1.960252,0.597727,2.693824 +-0.482958,0.876453,-0.824302,-1.959844,0.598829,2.694232 +-0.482791,0.876791,-0.825338,-1.959507,0.599942,2.694569 +-0.482698,0.877056,-0.826400,-1.959242,0.601061,2.694834 +-0.482680,0.877247,-0.827483,-1.959050,0.602181,2.695025 +-0.482738,0.877364,-0.828582,-1.958933,0.603296,2.695142 +-0.482870,0.877406,-0.829693,-1.958891,0.604403,2.695184 +-0.483077,0.877373,-0.830811,-1.958924,0.605495,2.695151 +-0.483357,0.877265,-0.831930,-1.959032,0.606568,2.695043 +-0.483708,0.877083,-0.833046,-1.959214,0.607617,2.694861 +-0.484131,0.876827,-0.834153,-1.959470,0.608638,2.694605 +-0.484621,0.876499,-0.835247,-1.959798,0.609625,2.694277 +-0.485178,0.876099,-0.836323,-1.960198,0.610575,2.693877 +-0.485799,0.875631,-0.837375,-1.960666,0.611482,2.693409 +-0.486481,0.875095,-0.838399,-1.961202,0.612344,2.692873 +-0.487221,0.874495,-0.839391,-1.961802,0.613156,2.692273 +-0.488016,0.873832,-0.840345,-1.962465,0.613915,2.691610 +-0.488862,0.873111,-0.841259,-1.963186,0.614616,2.690889 +-0.489755,0.872334,-0.842127,-1.963963,0.615258,2.690112 +-0.490691,0.871504,-0.842945,-1.964793,0.615836,2.689282 +-0.491667,0.870626,-0.843711,-1.965671,0.616349,2.688404 +-0.492677,0.869704,-0.844420,-1.966594,0.616794,2.687482 +-0.493717,0.868740,-0.845070,-1.967557,0.617169,2.686519 +-0.494783,0.867741,-0.845657,-1.968556,0.617473,2.685519 +-0.495869,0.866710,-0.846179,-1.969587,0.617704,2.684489 +-0.496971,0.865652,-0.846633,-1.970645,0.617861,2.683431 +-0.498085,0.864572,-0.847018,-1.971725,0.617943,2.682350 +-0.499204,0.863475,-0.847332,-1.972823,0.617950,2.681253 +-0.500323,0.862365,-0.847573,-1.973933,0.617882,2.680143 +-0.501439,0.861247,-0.847740,-1.975050,0.617740,2.679025 +-0.502545,0.860127,-0.847833,-1.976170,0.617523,2.677905 +-0.503637,0.859009,-0.847851,-1.977288,0.617233,2.676788 +-0.504711,0.857899,-0.847793,-1.978398,0.616872,2.675678 +-0.505760,0.856802,-0.847661,-1.979495,0.616440,2.674580 +-0.506780,0.855722,-0.847455,-1.980575,0.615940,2.673500 +-0.507768,0.854665,-0.847176,-1.981632,0.615374,2.672443 +-0.508717,0.853634,-0.846824,-1.982663,0.614744,2.671412 +-0.509625,0.852636,-0.846403,-1.983662,0.614054,2.670414 +-0.510487,0.851673,-0.845912,-1.984624,0.613306,2.669451 +-0.511299,0.850751,-0.845356,-1.985546,0.612504,2.668529 +-0.512057,0.849874,-0.844735,-1.986423,0.611651,2.667652 +-0.512759,0.849045,-0.844054,-1.987252,0.610752,2.666823 +-0.513400,0.848269,-0.843314,-1.988028,0.609810,2.666047 +-0.513979,0.847548,-0.842520,-1.988749,0.608830,2.665327 +-0.514492,0.846887,-0.841675,-1.989410,0.607815,2.664665 +-0.514937,0.846288,-0.840783,-1.990010,0.606771,2.664066 +-0.515312,0.845753,-0.839847,-1.990544,0.605702,2.663531 +-0.515616,0.845285,-0.838873,-1.991012,0.604613,2.663064 +-0.515846,0.844887,-0.837863,-1.991410,0.603509,2.662665 +-0.516003,0.844560,-0.836824,-1.991737,0.602395,2.662338 +-0.516085,0.844305,-0.835759,-1.991992,0.601276,2.662083 +-0.516092,0.844124,-0.834673,-1.992173,0.600156,2.661902 +-0.516025,0.844017,-0.833572,-1.992280,0.599042,2.661796 +-0.515882,0.843986,-0.832459,-1.992311,0.597937,2.661764 +-0.515665,0.844029,-0.831341,-1.992268,0.596847,2.661807 +-0.515375,0.844147,-0.830222,-1.992150,0.595777,2.661925 +-0.515014,0.844340,-0.829107,-1.991957,0.594731,2.662118 +-0.514582,0.844606,-0.828001,-1.991691,0.593715,2.662384 +-0.514082,0.844944,-0.826910,-1.991353,0.592733,2.662722 +-0.513516,0.845353,-0.825837,-1.990944,0.591789,2.663132 +-0.512886,0.845831,-0.824789,-1.990466,0.590887,2.663610 +-0.512196,0.846376,-0.823769,-1.989921,0.590032,2.664154 +-0.511448,0.846985,-0.822782,-1.989312,0.589227,2.664764 +-0.510646,0.847656,-0.821833,-1.988641,0.588476,2.665434 +-0.509793,0.848385,-0.820926,-1.987912,0.587783,2.666164 +-0.508894,0.849170,-0.820064,-1.987127,0.587150,2.666948 +-0.507952,0.850007,-0.819253,-1.986291,0.586581,2.667785 +-0.506971,0.850891,-0.818495,-1.985406,0.586077,2.668669 +-0.505957,0.851819,-0.817794,-1.984478,0.585641,2.669598 +-0.504913,0.852788,-0.817152,-1.983509,0.585276,2.670566 +-0.503844,0.853792,-0.816574,-1.982505,0.584982,2.671570 +-0.502755,0.854827,-0.816061,-1.981470,0.584762,2.672605 +-0.501651,0.855888,-0.815616,-1.980409,0.584615,2.673666 +-0.500537,0.856971,-0.815241,-1.979326,0.584543,2.674749 +-0.499417,0.858071,-0.814938,-1.978227,0.584547,2.675849 +-0.498298,0.859182,-0.814707,-1.977115,0.584625,2.676960 +-0.497183,0.860300,-0.814550,-1.975997,0.584778,2.678078 +-0.496079,0.861420,-0.814468,-1.974877,0.585005,2.679198 +-0.494989,0.862537,-0.814460,-1.973760,0.585305,2.680315 +-0.493919,0.863645,-0.814528,-1.972652,0.585676,2.681424 +-0.492873,0.864741,-0.814670,-1.971556,0.586118,2.682519 +-0.491857,0.865818,-0.814887,-1.970479,0.586627,2.683596 +-0.490875,0.866872,-0.815176,-1.969425,0.587202,2.684650 +-0.489931,0.867898,-0.815537,-1.968399,0.587840,2.685676 +-0.489029,0.868892,-0.815969,-1.967405,0.588539,2.686670 +-0.488174,0.869849,-0.816469,-1.966448,0.589294,2.687627 +-0.487369,0.870765,-0.817034,-1.965532,0.590103,2.688543 +-0.486618,0.871636,-0.817663,-1.964661,0.590963,2.689414 +-0.485925,0.872457,-0.818353,-1.963840,0.591868,2.690236 +-0.485292,0.873226,-0.819100,-1.963071,0.592816,2.691004 +-0.484723,0.873939,-0.819901,-1.962358,0.593801,2.691717 +-0.484219,0.874592,-0.820753,-1.961705,0.594820,2.692370 +-0.483784,0.875182,-0.821652,-1.961115,0.595868,2.692960 +-0.483418,0.875708,-0.822593,-1.960589,0.596940,2.693486 +-0.483125,0.876166,-0.823573,-1.960131,0.598031,2.693944 +-0.482904,0.876554,-0.824587,-1.959743,0.599137,2.694332 +-0.482757,0.876871,-0.825630,-1.959426,0.600252,2.694650 +-0.482686,0.877116,-0.826698,-1.959181,0.601372,2.694894 +-0.482689,0.877287,-0.827787,-1.959010,0.602491,2.695065 +-0.482767,0.877383,-0.828890,-1.958910,0.603604,2.695160 +-0.482917,0.877402,-0.830006,-1.958890,0.604709,2.695180 +-0.483137,0.877341,-0.831132,-1.958930,0.605802,2.695120 +-0.483424,0.877198,-0.832265,-1.959040,0.606880,2.694970 +-0.483776,0.876970,-0.833403,-1.959210,0.607940,2.694740 +-0.484190,0.876654,-0.834543,-1.959440,0.608979,2.694410 +-0.484664,0.876248,-0.835682,-1.959720,0.609994,2.694000 +-0.485194,0.875750,-0.836819,-1.960060,0.610981,2.693480 +-0.485778,0.875156,-0.837949,-1.960450,0.611937,2.692870 +-0.486414,0.874465,-0.839072,-1.960880,0.612861,2.692160 +-0.487099,0.873673,-0.840184,-1.961360,0.613747,2.691340 +-0.487831,0.872778,-0.841282,-1.961880,0.614594,2.690410 +-0.488606,0.871777,-0.842364,-1.962430,0.615397,2.689370 +-0.489423,0.870668,-0.843428,-1.963020,0.616155,2.688210 +-0.490278,0.869450,-0.844470,-1.963640,0.616864,2.686940 +-0.491169,0.868126,-0.845489,-1.964290,0.617520,2.685540 +-0.492094,0.866699,-0.846481,-1.964960,0.618121,2.684020 +-0.493049,0.865170,-0.847444,-1.965650,0.618663,2.682380 +-0.494033,0.863543,-0.848376,-1.966370,0.619144,2.680600 +-0.495043,0.861820,-0.849273,-1.967090,0.619561,2.678690 +-0.496076,0.860004,-0.850133,-1.967830,0.619909,2.676640 +-0.497129,0.858098,-0.850955,-1.968580,0.620187,2.674450 +-0.498200,0.856103,-0.851734,-1.969340,0.620390,2.672120 +-0.499286,0.854023,-0.852468,-1.970100,0.620516,2.669640 +-0.500385,0.851859,-0.853156,-1.970860,0.620562,2.667020 +-0.501494,0.849616,-0.853793,-1.971610,0.620525,2.664240 +-0.502610,0.847295,-0.854378,-1.972360,0.620402,2.661310 +-0.503732,0.844899,-0.854908,-1.973100,0.620188,2.658220 +-0.504856,0.842430,-0.855381,-1.973820,0.619882,2.654980 +-0.505979,0.839892,-0.855793,-1.974540,0.619480,2.651580 +-0.507099,0.837286,-0.856143,-1.975230,0.618980,2.648020 +-0.508215,0.834615,-0.856427,-1.975900,0.618377,2.644310 +-0.509322,0.831883,-0.856644,-1.976540,0.617669,2.640450 +-0.510418,0.829091,-0.856790,-1.977160,0.616857,2.636420 +-0.511501,0.826242,-0.856862,-1.977750,0.615942,2.632250 +-0.512568,0.823338,-0.856859,-1.978300,0.614928,2.627910 +-0.513617,0.820383,-0.856778,-1.978810,0.613818,2.623430 +-0.514644,0.817379,-0.856615,-1.979290,0.612615,2.618780 +-0.515648,0.814328,-0.856369,-1.979720,0.611322,2.613980 +-0.516626,0.811234,-0.856037,-1.980100,0.609943,2.609030 +-0.517575,0.808098,-0.855616,-1.980430,0.608480,2.603920 +-0.518492,0.804923,-0.855104,-1.980710,0.606937,2.598650 +-0.519375,0.801712,-0.854498,-1.980940,0.605317,2.593230 +-0.520222,0.798468,-0.853796,-1.981100,0.603622,2.587650 +-0.521030,0.795193,-0.852994,-1.981200,0.601856,2.581920 +-0.521795,0.791889,-0.852091,-1.981240,0.600023,2.576030 +-0.522516,0.788560,-0.851083,-1.981210,0.598124,2.569990 +-0.523191,0.785207,-0.849968,-1.981100,0.596164,2.563790 +-0.523815,0.781834,-0.848744,-1.980930,0.594146,2.557440 +-0.524387,0.778443,-0.847408,-1.980670,0.592071,2.550930 +-0.524905,0.775037,-0.845957,-1.980330,0.589945,2.544260 +-0.525365,0.771618,-0.844394,-1.979910,0.587769,2.537440 +-0.525765,0.768188,-0.842720,-1.979400,0.585546,2.530470 +-0.526103,0.764752,-0.840939,-1.978800,0.583281,2.523330 +-0.526375,0.761310,-0.839052,-1.978110,0.580976,2.516050 +-0.526579,0.757865,-0.837063,-1.977320,0.578634,2.508600 +-0.526713,0.754421,-0.834974,-1.976440,0.576258,2.501000 +-0.526774,0.750976,-0.832787,-1.975440,0.573852,2.493250 +-0.526760,0.747532,-0.830506,-1.974350,0.571418,2.485340 +-0.526667,0.744087,-0.828132,-1.973140,0.568959,2.477280 +-0.526494,0.740643,-0.825669,-1.971820,0.566480,2.469050 +-0.526237,0.737198,-0.823119,-1.970390,0.563982,2.460680 +-0.525894,0.733753,-0.820484,-1.968840,0.561469,2.452150 +-0.525463,0.730309,-0.817768,-1.967160,0.558944,2.443460 +-0.524940,0.726864,-0.814972,-1.965370,0.556410,2.434620 +-0.524324,0.723420,-0.812100,-1.963440,0.553871,2.425620 +-0.523611,0.719975,-0.809154,-1.961380,0.551329,2.416460 +-0.522802,0.716530,-0.806136,-1.959190,0.548786,2.407150 +-0.521900,0.713086,-0.803049,-1.956870,0.546244,2.397690 +-0.520906,0.709641,-0.799897,-1.954400,0.543701,2.388070 +-0.519824,0.706197,-0.796680,-1.951790,0.541159,2.378290 +-0.518655,0.702752,-0.793403,-1.949030,0.538616,2.368360 +-0.517404,0.699307,-0.790067,-1.946130,0.536074,2.358280 +-0.516071,0.695863,-0.786676,-1.943070,0.533532,2.348030 +-0.514661,0.692418,-0.783231,-1.939850,0.530989,2.337630 +-0.513175,0.688974,-0.779735,-1.936480,0.528447,2.327080 +-0.511616,0.685529,-0.776192,-1.932960,0.525904,2.316370 +-0.509986,0.682085,-0.772603,-1.929280,0.523362,2.305510 +-0.508289,0.678640,-0.768971,-1.925440,0.520819,2.294500 +-0.506526,0.675195,-0.765298,-1.921450,0.518277,2.283350 +-0.504701,0.671751,-0.761589,-1.917300,0.515735,2.272050 +-0.502816,0.668306,-0.757844,-1.913000,0.513192,2.260610 +-0.500873,0.664862,-0.754066,-1.908540,0.510650,2.249030 +-0.498876,0.661417,-0.750259,-1.903930,0.508107,2.237320 +-0.496827,0.657972,-0.746425,-1.899160,0.505565,2.225480 +-0.494728,0.654528,-0.742565,-1.894240,0.503022,2.213510 +-0.492581,0.651083,-0.738684,-1.889160,0.500480,2.201420 +-0.490391,0.647639,-0.734783,-1.883920,0.497938,2.189210 +-0.488158,0.644194,-0.730865,-1.878530,0.495395,2.176880 +-0.485887,0.640750,-0.726933,-1.872980,0.492853,2.164430 +-0.483578,0.637305,-0.722990,-1.867280,0.490310,2.151870 +-0.481236,0.633860,-0.719037,-1.861420,0.487768,2.139210 +-0.478862,0.630416,-0.715078,-1.855410,0.485225,2.126430 +-0.476460,0.626971,-0.711114,-1.849240,0.482683,2.113560 +-0.474031,0.623527,-0.707150,-1.842920,0.480140,2.100580 +-0.471578,0.620082,-0.703185,-1.836440,0.477598,2.087510 +-0.469105,0.616637,-0.699220,-1.829800,0.475056,2.074350 +-0.466613,0.613193,-0.695256,-1.823010,0.472513,2.061090 +-0.464105,0.609748,-0.691291,-1.816060,0.469971,2.047750 +-0.461584,0.606304,-0.687327,-1.808960,0.467428,2.034330 +-0.459052,0.602859,-0.683362,-1.801700,0.464886,2.020820 +-0.456512,0.599415,-0.679397,-1.794290,0.462343,2.007240 +-0.453967,0.595970,-0.675433,-1.786720,0.459801,1.993580 +-0.451419,0.592525,-0.671468,-1.779000,0.457259,1.979850 +-0.448870,0.589081,-0.667503,-1.771120,0.454716,1.966050 +-0.446321,0.585636,-0.663539,-1.763080,0.452174,1.952190 +-0.443772,0.582192,-0.659574,-1.754890,0.449631,1.938260 +-0.441223,0.578747,-0.655609,-1.746550,0.447089,1.924280 +-0.438674,0.575302,-0.651645,-1.738050,0.444546,1.910240 +-0.436126,0.571858,-0.647680,-1.729390,0.442004,1.896140 +-0.433577,0.568413,-0.643715,-1.720580,0.439462,1.882000 +-0.431028,0.564969,-0.639751,-1.711610,0.436919,1.867810 +-0.428479,0.561524,-0.635786,-1.702480,0.434377,1.853580 +-0.425930,0.558079,-0.631821,-1.693200,0.431834,1.839300 +-0.423382,0.554635,-0.627857,-1.683770,0.429292,1.824990 +-0.420833,0.551190,-0.623892,-1.674180,0.426749,1.810650 +-0.418284,0.547746,-0.619927,-1.664430,0.424207,1.796270 +-0.415735,0.544301,-0.615963,-1.654530,0.421664,1.781870 +-0.413186,0.540857,-0.611998,-1.644480,0.419122,1.767440 +-0.410637,0.537412,-0.608033,-1.634280,0.416580,1.752990 +-0.408089,0.533967,-0.604069,-1.623940,0.414037,1.738520 +-0.405540,0.530523,-0.600104,-1.613450,0.411495,1.724040 +-0.402991,0.527078,-0.596139,-1.602830,0.408952,1.709540 +-0.400442,0.523634,-0.592175,-1.592070,0.406410,1.695030 +-0.397893,0.520189,-0.588210,-1.581170,0.403867,1.680520 +-0.395344,0.516744,-0.584245,-1.570150,0.401325,1.666010 +-0.392796,0.513300,-0.580281,-1.559000,0.398783,1.651490 +-0.390247,0.509855,-0.576316,-1.547730,0.396240,1.636980 +-0.387698,0.506411,-0.572351,-1.536330,0.393698,1.622460 +-0.385149,0.502966,-0.568387,-1.524820,0.391155,1.607940 +-0.382600,0.499522,-0.564422,-1.513200,0.388613,1.593430 +-0.380051,0.496077,-0.560457,-1.501470,0.386070,1.578910 +-0.377503,0.492632,-0.556493,-1.489620,0.383528,1.564400 +-0.374954,0.489188,-0.552528,-1.477680,0.380986,1.549880 +-0.372405,0.485743,-0.548563,-1.465630,0.378443,1.535370 +-0.369856,0.482299,-0.544599,-1.453480,0.375901,1.520850 +-0.367307,0.478854,-0.540634,-1.441240,0.373358,1.506340 +-0.364759,0.475409,-0.536669,-1.428910,0.370816,1.491820 +-0.362210,0.471965,-0.532705,-1.416480,0.368273,1.477300 +-0.359661,0.468520,-0.528740,-1.403970,0.365731,1.462790 +-0.357112,0.465076,-0.524775,-1.391380,0.363188,1.448270 +-0.354563,0.461631,-0.520811,-1.378710,0.360646,1.433760 +-0.352014,0.458187,-0.516846,-1.365960,0.358104,1.419240 +-0.349466,0.454742,-0.512881,-1.353140,0.355561,1.404730 +-0.346917,0.451297,-0.508917,-1.340250,0.353019,1.390210 +-0.344368,0.447853,-0.504952,-1.327290,0.350476,1.375700 +-0.341819,0.444408,-0.500987,-1.314260,0.347934,1.361180 +-0.339270,0.440964,-0.497023,-1.301180,0.345391,1.346660 +-0.336721,0.437519,-0.493058,-1.288040,0.342849,1.332150 +-0.334173,0.434074,-0.489093,-1.274840,0.340307,1.317630 +-0.331624,0.430630,-0.485129,-1.261590,0.337764,1.303120 +-0.329075,0.427185,-0.481164,-1.248290,0.335222,1.288600 +-0.326526,0.423741,-0.477199,-1.234950,0.332679,1.274090 +-0.323977,0.420296,-0.473235,-1.221560,0.330137,1.259570 +-0.321428,0.416851,-0.469270,-1.208140,0.327594,1.245050 +-0.318880,0.413407,-0.465305,-1.194680,0.325052,1.230540 +-0.316331,0.409962,-0.461341,-1.181190,0.322510,1.216020 +-0.313782,0.406518,-0.457376,-1.167660,0.319967,1.201510 +-0.311233,0.403073,-0.453411,-1.154110,0.317425,1.186990 +-0.308684,0.399629,-0.449447,-1.140540,0.314882,1.172480 +-0.306135,0.396184,-0.445482,-1.126940,0.312340,1.157960 +-0.303587,0.392739,-0.441517,-1.113330,0.309797,1.143450 +-0.301038,0.389295,-0.437553,-1.099700,0.307255,1.128930 +-0.298489,0.385850,-0.433588,-1.086060,0.304712,1.114410 +-0.295940,0.382406,-0.429624,-1.072420,0.302170,1.099900 +-0.293391,0.378961,-0.425659,-1.058760,0.299628,1.085380 +-0.290843,0.375516,-0.421694,-1.045110,0.297085,1.070870 +-0.288294,0.372072,-0.417730,-1.031460,0.294543,1.056350 +-0.285745,0.368627,-0.413765,-1.017800,0.292000,1.041840 +-0.283196,0.365183,-0.409800,-1.004150,0.289458,1.027320 +-0.280647,0.361738,-0.405836,-0.990497,0.286915,1.012810 +-0.278098,0.358294,-0.401871,-0.976843,0.284373,0.998302 +-0.275550,0.354849,-0.397906,-0.963189,0.281831,0.983804 +-0.273001,0.351404,-0.393942,-0.949536,0.279288,0.969319 +-0.270452,0.347960,-0.389977,-0.935882,0.276746,0.954848 +-0.267903,0.344515,-0.386012,-0.922230,0.274203,0.940397 +-0.265354,0.341071,-0.382048,-0.908581,0.271661,0.925966 +-0.262805,0.337626,-0.378083,-0.894941,0.269118,0.911560 +-0.260257,0.334181,-0.374118,-0.881310,0.266576,0.897182 +-0.257708,0.330737,-0.370154,-0.867693,0.264034,0.882834 +-0.255159,0.327292,-0.366189,-0.854093,0.261491,0.868521 +-0.252610,0.323848,-0.362224,-0.840512,0.258949,0.854244 +-0.250061,0.320403,-0.358260,-0.826955,0.256406,0.840008 +-0.247512,0.316959,-0.354295,-0.813423,0.253864,0.825814 +-0.244964,0.313514,-0.350330,-0.799921,0.251321,0.811667 +-0.242415,0.310069,-0.346366,-0.786450,0.248779,0.797570 +-0.239866,0.306625,-0.342401,-0.773015,0.246236,0.783525 +-0.237317,0.303180,-0.338436,-0.759618,0.243694,0.769536 +-0.234768,0.299736,-0.334472,-0.746263,0.241152,0.755605 +-0.232220,0.296291,-0.330507,-0.732953,0.238609,0.741736 +-0.229671,0.292846,-0.326542,-0.719690,0.236067,0.727933 +-0.227122,0.289402,-0.322578,-0.706478,0.233524,0.714197 +-0.224573,0.285957,-0.318613,-0.693320,0.230982,0.700533 +-0.222024,0.282513,-0.314648,-0.680219,0.228439,0.686943 +-0.219475,0.279068,-0.310684,-0.667179,0.225897,0.673430 +-0.216927,0.275623,-0.306719,-0.654201,0.223355,0.659998 +-0.214378,0.272179,-0.302754,-0.641290,0.220812,0.646649 +-0.211829,0.268734,-0.298790,-0.628449,0.218270,0.633388 +-0.209280,0.265290,-0.294825,-0.615680,0.215727,0.620216 +-0.206731,0.261845,-0.290860,-0.602987,0.213185,0.607137 +-0.204182,0.258401,-0.286896,-0.590373,0.210642,0.594154 +-0.201634,0.254956,-0.282931,-0.577841,0.208100,0.581271 +-0.199085,0.251511,-0.278966,-0.565393,0.205558,0.568490 +-0.196536,0.248067,-0.275002,-0.553034,0.203015,0.555814 +-0.193987,0.244622,-0.271037,-0.540767,0.200473,0.543247 +-0.191438,0.241178,-0.267072,-0.528594,0.197930,0.530791 +-0.188889,0.237733,-0.263108,-0.516518,0.195388,0.518450 +-0.186341,0.234288,-0.259143,-0.504543,0.192845,0.506227 +-0.183792,0.230844,-0.255178,-0.492671,0.190303,0.494125 +-0.181243,0.227399,-0.251214,-0.480907,0.187760,0.482147 +-0.178694,0.223955,-0.247249,-0.469252,0.185218,0.470296 +-0.176145,0.220510,-0.243284,-0.457711,0.182676,0.458576 +-0.173596,0.217066,-0.239320,-0.446285,0.180133,0.446989 +-0.171048,0.213621,-0.235355,-0.434979,0.177591,0.435538 +-0.168499,0.210176,-0.231390,-0.423796,0.175048,0.424228 +-0.165950,0.206732,-0.227426,-0.412737,0.172506,0.413060 +-0.163401,0.203287,-0.223461,-0.401808,0.169963,0.402037 +-0.160852,0.199843,-0.219496,-0.391010,0.167421,0.391164 +-0.158304,0.196398,-0.215532,-0.380347,0.164879,0.380443 +-0.155755,0.192953,-0.211567,-0.369822,0.162336,0.369877 +-0.153206,0.189509,-0.207602,-0.359438,0.159794,0.359466 +-0.150657,0.186064,-0.203638,-0.349199,0.157251,0.349210 +-0.148108,0.182620,-0.199673,-0.339106,0.154709,0.339111 +-0.145559,0.179175,-0.195708,-0.329164,0.152166,0.329166 +-0.143011,0.175730,-0.191744,-0.319375,0.149624,0.319378 +-0.140462,0.172286,-0.187779,-0.309742,0.147082,0.309744 +-0.137913,0.168841,-0.183814,-0.300265,0.144539,0.300267 +-0.135364,0.165397,-0.179850,-0.290942,0.141997,0.290945 +-0.132815,0.161952,-0.175885,-0.281776,0.139454,0.281778 +-0.130266,0.158508,-0.171921,-0.272765,0.136912,0.272767 +-0.127718,0.155063,-0.167956,-0.263909,0.134369,0.263911 +-0.125169,0.151618,-0.163991,-0.255209,0.131827,0.255211 +-0.122620,0.148174,-0.160027,-0.246664,0.129284,0.246667 +-0.120071,0.144729,-0.156062,-0.238275,0.126742,0.238278 +-0.117522,0.141285,-0.152097,-0.230042,0.124200,0.230044 +-0.114973,0.137840,-0.148135,-0.221964,0.121657,0.221966 +-0.112425,0.134395,-0.144177,-0.214042,0.119115,0.214044 +-0.109876,0.130951,-0.140225,-0.206275,0.116572,0.206277 +-0.107327,0.127506,-0.136284,-0.198663,0.114030,0.198665 +-0.104778,0.124062,-0.132355,-0.191207,0.111487,0.191210 +-0.102229,0.120618,-0.128440,-0.183907,0.108945,0.183909 +-0.099681,0.117179,-0.124543,-0.176762,0.106403,0.176764 +-0.097132,0.113745,-0.120666,-0.169773,0.103860,0.169775 +-0.094583,0.110320,-0.116812,-0.162939,0.101318,0.162941 +-0.092034,0.106907,-0.112983,-0.156261,0.098775,0.156263 +-0.089485,0.103508,-0.109181,-0.149738,0.096233,0.149740 +-0.086936,0.100126,-0.105411,-0.143371,0.093690,0.143373 +-0.084388,0.096762,-0.101673,-0.137159,0.091148,0.137162 +-0.081839,0.093421,-0.097970,-0.131103,0.088606,0.131105 +-0.079290,0.090104,-0.094306,-0.125203,0.086063,0.125205 +-0.076742,0.086814,-0.090683,-0.119458,0.083521,0.119460 +-0.074197,0.083553,-0.087103,-0.113868,0.080978,0.113870 +-0.071658,0.080325,-0.083569,-0.108434,0.078436,0.108436 +-0.069127,0.077132,-0.080084,-0.103155,0.075893,0.103158 +-0.066608,0.073976,-0.076650,-0.098032,0.073351,0.098035 +-0.064101,0.070860,-0.073270,-0.093065,0.070809,0.093067 +-0.061611,0.067786,-0.069945,-0.088253,0.068269,0.088255 +-0.059140,0.064758,-0.066681,-0.083597,0.065734,0.083599 +-0.056690,0.061778,-0.063477,-0.079096,0.063208,0.079098 +-0.054264,0.058848,-0.060338,-0.074750,0.060694,0.074753 +-0.051865,0.055971,-0.057265,-0.070560,0.058194,0.070563 +-0.049494,0.053149,-0.054262,-0.066526,0.055712,0.066528 +-0.047156,0.050386,-0.051331,-0.062647,0.053252,0.062649 +-0.044852,0.047684,-0.048474,-0.058922,0.050815,0.058924 +-0.042584,0.045045,-0.045695,-0.055348,0.048405,0.055350 +-0.040356,0.042471,-0.042995,-0.051921,0.046026,0.051923 +-0.038171,0.039967,-0.040378,-0.048638,0.043680,0.048640 +-0.036030,0.037533,-0.037845,-0.045497,0.041371,0.045499 +-0.033936,0.035174,-0.035400,-0.042494,0.039101,0.042496 +-0.031893,0.032891,-0.033046,-0.039626,0.036874,0.039629 +-0.029902,0.030686,-0.030783,-0.036891,0.034693,0.036893 +-0.027965,0.028563,-0.028617,-0.034284,0.032561,0.034286 +-0.026087,0.026525,-0.026548,-0.031803,0.030481,0.031805 +-0.024269,0.024573,-0.024579,-0.029444,0.028456,0.029446 +-0.022514,0.022710,-0.022711,-0.027205,0.026489,0.027208 +-0.020824,0.020940,-0.020939,-0.025083,0.024584,0.025085 +-0.019203,0.019262,-0.019262,-0.023074,0.022744,0.023076 +-0.017652,0.017678,-0.017677,-0.021175,0.020970,0.021177 +-0.016174,0.016182,-0.016182,-0.019384,0.019268,0.019386 +-0.014772,0.014773,-0.014773,-0.017696,0.017640,0.017698 +-0.013449,0.013449,-0.013448,-0.016109,0.016088,0.016111 +-0.012206,0.012206,-0.012206,-0.014620,0.014616,0.014622 +-0.011042,0.011042,-0.011042,-0.013226,0.013228,0.013228 +-0.009955,0.009955,-0.009954,-0.011923,0.011926,0.011925 +-0.008941,0.008941,-0.008941,-0.010709,0.010712,0.010711 +-0.007999,0.007999,-0.007999,-0.009580,0.009583,0.009582 +-0.007125,0.007125,-0.007125,-0.008533,0.008536,0.008536 +-0.006318,0.006318,-0.006317,-0.007566,0.007569,0.007568 +-0.005574,0.005574,-0.005573,-0.006674,0.006677,0.006677 +-0.004890,0.004890,-0.004890,-0.005856,0.005859,0.005858 +-0.004265,0.004265,-0.004265,-0.005107,0.005110,0.005109 +-0.003696,0.003696,-0.003696,-0.004425,0.004428,0.004427 +-0.003180,0.003180,-0.003179,-0.003807,0.003809,0.003809 +-0.002714,0.002714,-0.002713,-0.003248,0.003251,0.003251 +-0.002296,0.002296,-0.002296,-0.002748,0.002751,0.002750 +-0.001923,0.001923,-0.001923,-0.002301,0.002304,0.002304 +-0.001593,0.001593,-0.001593,-0.001906,0.001909,0.001908 +-0.001304,0.001304,-0.001303,-0.001559,0.001562,0.001561 +-0.001051,0.001051,-0.001051,-0.001256,0.001259,0.001259 +-0.000834,0.000834,-0.000833,-0.000996,0.000999,0.000998 +-0.000648,0.000648,-0.000648,-0.000774,0.000777,0.000776 +-0.000493,0.000493,-0.000493,-0.000588,0.000591,0.000590 +-0.000365,0.000365,-0.000364,-0.000434,0.000437,0.000436 +-0.000261,0.000261,-0.000260,-0.000310,0.000312,0.000312 +-0.000179,0.000179,-0.000178,-0.000211,0.000214,0.000214 +-0.000116,0.000116,-0.000116,-0.000136,0.000139,0.000138 +-0.000070,0.000070,-0.000070,-0.000081,0.000084,0.000083 +-0.000038,0.000038,-0.000038,-0.000043,0.000046,0.000045 +-0.000018,0.000018,-0.000018,-0.000019,0.000022,0.000021 +-0.000007,0.000007,-0.000006,-0.000005,0.000008,0.000008 +-0.000002,0.000002,-0.000001,0.000001,0.000002,0.000002 +-0.000001,0.000001,-0.000000,0.000002,0.000001,0.000000 +-0.000001,0.000001,-0.000000,0.000002,0.000001,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record5.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record5.offt new file mode 100644 index 00000000..a89a0b23 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record5.offt @@ -0,0 +1,1933 @@ +-0.000000,0.000001,-0.000000,0.000000,0.000001,0.000000 +-0.000000,0.000001,-0.000000,-0.000000,0.000001,0.000000 +-0.000003,0.000004,-0.000003,-0.000003,0.000004,0.000004 +-0.000011,0.000012,-0.000011,-0.000013,0.000014,0.000013 +-0.000026,0.000027,-0.000026,-0.000031,0.000032,0.000031 +-0.000052,0.000053,-0.000052,-0.000062,0.000063,0.000062 +-0.000090,0.000091,-0.000090,-0.000108,0.000108,0.000108 +-0.000144,0.000145,-0.000144,-0.000172,0.000173,0.000172 +-0.000215,0.000216,-0.000216,-0.000258,0.000259,0.000258 +-0.000308,0.000309,-0.000308,-0.000368,0.000369,0.000369 +-0.000423,0.000424,-0.000423,-0.000507,0.000508,0.000507 +-0.000564,0.000565,-0.000565,-0.000676,0.000677,0.000676 +-0.000734,0.000735,-0.000734,-0.000879,0.000880,0.000879 +-0.000935,0.000935,-0.000935,-0.001119,0.001120,0.001120 +-0.001169,0.001170,-0.001169,-0.001400,0.001401,0.001400 +-0.001439,0.001440,-0.001439,-0.001724,0.001724,0.001724 +-0.001748,0.001749,-0.001748,-0.002094,0.002095,0.002094 +-0.002098,0.002099,-0.002098,-0.002514,0.002514,0.002514 +-0.002493,0.002494,-0.002493,-0.002986,0.002987,0.002986 +-0.002934,0.002934,-0.002934,-0.003514,0.003515,0.003514 +-0.003424,0.003424,-0.003424,-0.004101,0.004102,0.004101 +-0.003965,0.003966,-0.003965,-0.004750,0.004751,0.004750 +-0.004561,0.004562,-0.004561,-0.005464,0.005465,0.005465 +-0.005214,0.005215,-0.005214,-0.006247,0.006247,0.006247 +-0.005927,0.005928,-0.005927,-0.007100,0.007101,0.007100 +-0.006701,0.006702,-0.006702,-0.008028,0.008029,0.008029 +-0.007541,0.007542,-0.007541,-0.009034,0.009035,0.009034 +-0.008448,0.008448,-0.008448,-0.010120,0.010121,0.010120 +-0.009423,0.009425,-0.009424,-0.011290,0.011286,0.011290 +-0.010465,0.010474,-0.010473,-0.012547,0.012529,0.012547 +-0.011570,0.011598,-0.011598,-0.013894,0.013845,0.013894 +-0.012738,0.012800,-0.012799,-0.015333,0.015231,0.015334 +-0.013963,0.014082,-0.014082,-0.016869,0.016685,0.016870 +-0.015246,0.015447,-0.015447,-0.018505,0.018203,0.018505 +-0.016581,0.016898,-0.016897,-0.020243,0.019783,0.020243 +-0.017968,0.018437,-0.018436,-0.022086,0.021420,0.022086 +-0.019403,0.020066,-0.020062,-0.024038,0.023113,0.024038 +-0.020883,0.021788,-0.021775,-0.026102,0.024857,0.026102 +-0.022407,0.023605,-0.023570,-0.028280,0.026650,0.028281 +-0.023972,0.025512,-0.025446,-0.030577,0.028488,0.030577 +-0.025574,0.027507,-0.027400,-0.032994,0.030369,0.032995 +-0.027212,0.029589,-0.029429,-0.035536,0.032289,0.035536 +-0.028883,0.031754,-0.031530,-0.038205,0.034246,0.038206 +-0.030584,0.034000,-0.033702,-0.041005,0.036236,0.041005 +-0.032312,0.036324,-0.035941,-0.043938,0.038256,0.043938 +-0.034066,0.038723,-0.038245,-0.047008,0.040303,0.047008 +-0.035842,0.041195,-0.040611,-0.050217,0.042373,0.050217 +-0.037638,0.043738,-0.043037,-0.053569,0.044465,0.053569 +-0.039451,0.046349,-0.045520,-0.057067,0.046574,0.057068 +-0.041278,0.049024,-0.048058,-0.060715,0.048697,0.060715 +-0.043118,0.051762,-0.050648,-0.064514,0.050832,0.064515 +-0.044967,0.054560,-0.053286,-0.068469,0.052975,0.068469 +-0.046823,0.057416,-0.055972,-0.072578,0.055124,0.072579 +-0.048683,0.060326,-0.058701,-0.076844,0.057274,0.076844 +-0.050545,0.063288,-0.061473,-0.081265,0.059425,0.081265 +-0.052407,0.066300,-0.064283,-0.085841,0.061575,0.085842 +-0.054268,0.069359,-0.067129,-0.090573,0.063726,0.090574 +-0.056130,0.072463,-0.070009,-0.095461,0.065877,0.095461 +-0.057992,0.075608,-0.072920,-0.100504,0.068027,0.100504 +-0.059854,0.078792,-0.075860,-0.105702,0.070178,0.105703 +-0.061716,0.082013,-0.078826,-0.111056,0.072328,0.111057 +-0.063578,0.085268,-0.081815,-0.116566,0.074479,0.116566 +-0.065440,0.088554,-0.084824,-0.122231,0.076630,0.122231 +-0.067302,0.091870,-0.087852,-0.128052,0.078780,0.128052 +-0.069163,0.095211,-0.090896,-0.134028,0.080931,0.134028 +-0.071025,0.098576,-0.093952,-0.140160,0.083081,0.140160 +-0.072887,0.101962,-0.097019,-0.146447,0.085232,0.146447 +-0.074749,0.105366,-0.100093,-0.152890,0.087383,0.152890 +-0.076611,0.108787,-0.103173,-0.159488,0.089533,0.159488 +-0.078473,0.112220,-0.106255,-0.166240,0.091684,0.166242 +-0.080335,0.115664,-0.109338,-0.173142,0.093834,0.173151 +-0.082197,0.119116,-0.112421,-0.180192,0.095985,0.180216 +-0.084058,0.122574,-0.115503,-0.187386,0.098136,0.187437 +-0.085920,0.126034,-0.118586,-0.194722,0.100286,0.194813 +-0.087782,0.129495,-0.121669,-0.202196,0.102437,0.202344 +-0.089644,0.132956,-0.124751,-0.209805,0.104587,0.210031 +-0.091506,0.136417,-0.127834,-0.217545,0.106738,0.217873 +-0.093368,0.139878,-0.130917,-0.225415,0.108889,0.225871 +-0.095230,0.143339,-0.133999,-0.233410,0.111039,0.234025 +-0.097092,0.146800,-0.137082,-0.241528,0.113190,0.242334 +-0.098954,0.150261,-0.140164,-0.249765,0.115340,0.250799 +-0.100815,0.153722,-0.143247,-0.258119,0.117491,0.259419 +-0.102677,0.157183,-0.146330,-0.266586,0.119642,0.268194 +-0.104539,0.160644,-0.149412,-0.275163,0.121792,0.277125 +-0.106401,0.164105,-0.152495,-0.283848,0.123943,0.286212 +-0.108263,0.167566,-0.155578,-0.292636,0.126093,0.295454 +-0.110125,0.171027,-0.158660,-0.301525,0.128244,0.304852 +-0.111987,0.174488,-0.161743,-0.310511,0.130395,0.314405 +-0.113849,0.177949,-0.164826,-0.319593,0.132545,0.324114 +-0.115711,0.181410,-0.167908,-0.328766,0.134696,0.333978 +-0.117572,0.184871,-0.170991,-0.338027,0.136846,0.343998 +-0.119434,0.188332,-0.174074,-0.347373,0.138997,0.354173 +-0.121296,0.191793,-0.177156,-0.356802,0.141148,0.364504 +-0.123158,0.195254,-0.180239,-0.366310,0.143298,0.374991 +-0.125020,0.198715,-0.183322,-0.375894,0.145449,0.385632 +-0.126882,0.202176,-0.186404,-0.385550,0.147599,0.396428 +-0.128744,0.205637,-0.189487,-0.395276,0.149750,0.407374 +-0.130606,0.209098,-0.192569,-0.405069,0.151901,0.418467 +-0.132467,0.212559,-0.195652,-0.414926,0.154051,0.429705 +-0.134329,0.216020,-0.198735,-0.424842,0.156202,0.441084 +-0.136191,0.219481,-0.201817,-0.434817,0.158352,0.452601 +-0.138053,0.222941,-0.204900,-0.444845,0.160503,0.464254 +-0.139915,0.226402,-0.207983,-0.454924,0.162654,0.476038 +-0.141777,0.229863,-0.211065,-0.465051,0.164804,0.487951 +-0.143639,0.233324,-0.214148,-0.475223,0.166955,0.499989 +-0.145501,0.236785,-0.217231,-0.485437,0.169105,0.512151 +-0.147363,0.240246,-0.220313,-0.495690,0.171256,0.524431 +-0.149224,0.243707,-0.223396,-0.505978,0.173407,0.536828 +-0.151086,0.247168,-0.226479,-0.516298,0.175557,0.549338 +-0.152948,0.250629,-0.229561,-0.526648,0.177708,0.561959 +-0.154810,0.254090,-0.232644,-0.537024,0.179858,0.574686 +-0.156672,0.257551,-0.235727,-0.547422,0.182009,0.587518 +-0.158534,0.261012,-0.238809,-0.557841,0.184159,0.600450 +-0.160396,0.264473,-0.241892,-0.568277,0.186310,0.613479 +-0.162258,0.267934,-0.244975,-0.578727,0.188461,0.626604 +-0.164120,0.271395,-0.248057,-0.589187,0.190611,0.639820 +-0.165981,0.274856,-0.251140,-0.599654,0.192762,0.653124 +-0.167843,0.278317,-0.254222,-0.610126,0.194912,0.666513 +-0.169705,0.281778,-0.257305,-0.620600,0.197063,0.679985 +-0.171567,0.285239,-0.260388,-0.631073,0.199214,0.693536 +-0.173429,0.288700,-0.263470,-0.641547,0.201364,0.707162 +-0.175291,0.292161,-0.266553,-0.652020,0.203515,0.720862 +-0.177153,0.295622,-0.269636,-0.662493,0.205665,0.734631 +-0.179015,0.299083,-0.272718,-0.672967,0.207816,0.748466 +-0.180876,0.302544,-0.275801,-0.683440,0.209967,0.762365 +-0.182738,0.306005,-0.278884,-0.693914,0.212117,0.776325 +-0.184600,0.309466,-0.281966,-0.704387,0.214268,0.790342 +-0.186462,0.312927,-0.285049,-0.714861,0.216418,0.804413 +-0.188324,0.316388,-0.288132,-0.725334,0.218569,0.818535 +-0.190186,0.319849,-0.291214,-0.735808,0.220720,0.832704 +-0.192048,0.323310,-0.294297,-0.746281,0.222870,0.846919 +-0.193910,0.326771,-0.297380,-0.756755,0.225021,0.861175 +-0.195772,0.330232,-0.300462,-0.767228,0.227171,0.875470 +-0.197633,0.333693,-0.303545,-0.777701,0.229322,0.889801 +-0.199495,0.337154,-0.306627,-0.788175,0.231473,0.904164 +-0.201357,0.340615,-0.309710,-0.798648,0.233623,0.918556 +-0.203219,0.344076,-0.312793,-0.809122,0.235774,0.932974 +-0.205081,0.347537,-0.315875,-0.819595,0.237924,0.947415 +-0.206943,0.350998,-0.318958,-0.830069,0.240075,0.961877 +-0.208805,0.354458,-0.322041,-0.840542,0.242226,0.976355 +-0.210667,0.357919,-0.325123,-0.851016,0.244376,0.990846 +-0.212528,0.361380,-0.328206,-0.861489,0.246527,1.005350 +-0.214390,0.364841,-0.331289,-0.871962,0.248677,1.019860 +-0.216252,0.368302,-0.334371,-0.882436,0.250828,1.034370 +-0.218114,0.371763,-0.337454,-0.892909,0.252979,1.048890 +-0.219976,0.375224,-0.340537,-0.903383,0.255129,1.063400 +-0.221838,0.378685,-0.343619,-0.913856,0.257280,1.077920 +-0.223700,0.382146,-0.346702,-0.924330,0.259430,1.092440 +-0.225562,0.385607,-0.349785,-0.934803,0.261581,1.106950 +-0.227424,0.389068,-0.352867,-0.945277,0.263732,1.121470 +-0.229285,0.392529,-0.355950,-0.955750,0.265882,1.135980 +-0.231147,0.395990,-0.359033,-0.966223,0.268033,1.150500 +-0.233009,0.399451,-0.362115,-0.976697,0.270183,1.165010 +-0.234871,0.402912,-0.365198,-0.987170,0.272334,1.179530 +-0.236733,0.406373,-0.368280,-0.997644,0.274485,1.194040 +-0.238595,0.409834,-0.371363,-1.008120,0.276635,1.208560 +-0.240457,0.413295,-0.374446,-1.018590,0.278786,1.223080 +-0.242319,0.416756,-0.377528,-1.029060,0.280936,1.237590 +-0.244181,0.420217,-0.380611,-1.039540,0.283087,1.252110 +-0.246042,0.423678,-0.383694,-1.050010,0.285238,1.266620 +-0.247904,0.427139,-0.386776,-1.060480,0.287388,1.281140 +-0.249766,0.430600,-0.389859,-1.070960,0.289539,1.295650 +-0.251628,0.434061,-0.392942,-1.081430,0.291689,1.310170 +-0.253490,0.437522,-0.396024,-1.091900,0.293840,1.324680 +-0.255352,0.440983,-0.399107,-1.102380,0.295991,1.339200 +-0.257214,0.444444,-0.402190,-1.112850,0.298141,1.353720 +-0.259076,0.447905,-0.405272,-1.123330,0.300292,1.368230 +-0.260937,0.451366,-0.408355,-1.133800,0.302442,1.382750 +-0.262799,0.454827,-0.411438,-1.144270,0.304593,1.397260 +-0.264661,0.458288,-0.414520,-1.154750,0.306744,1.411780 +-0.266523,0.461749,-0.417603,-1.165220,0.308894,1.426290 +-0.268385,0.465210,-0.420685,-1.175690,0.311045,1.440810 +-0.270247,0.468671,-0.423768,-1.186170,0.313195,1.455330 +-0.272109,0.472132,-0.426851,-1.196640,0.315346,1.469840 +-0.273971,0.475593,-0.429933,-1.207110,0.317497,1.484360 +-0.275833,0.479054,-0.433016,-1.217590,0.319647,1.498870 +-0.277694,0.482515,-0.436099,-1.228060,0.321798,1.513390 +-0.279556,0.485975,-0.439181,-1.238530,0.323948,1.527900 +-0.281418,0.489436,-0.442264,-1.249010,0.326099,1.542420 +-0.283280,0.492897,-0.445347,-1.259480,0.328250,1.556930 +-0.285142,0.496358,-0.448429,-1.269950,0.330400,1.571450 +-0.287004,0.499819,-0.451512,-1.280430,0.332551,1.585970 +-0.288866,0.503280,-0.454595,-1.290900,0.334701,1.600480 +-0.290728,0.506741,-0.457677,-1.301370,0.336852,1.615000 +-0.292589,0.510202,-0.460760,-1.311850,0.339003,1.629510 +-0.294451,0.513663,-0.463843,-1.322320,0.341153,1.644030 +-0.296313,0.517124,-0.466925,-1.332790,0.343304,1.658540 +-0.298175,0.520585,-0.470008,-1.343270,0.345454,1.673060 +-0.300037,0.524046,-0.473090,-1.353740,0.347605,1.687570 +-0.301899,0.527507,-0.476173,-1.364200,0.349756,1.702080 +-0.303761,0.530968,-0.479256,-1.374660,0.351906,1.716590 +-0.305623,0.534429,-0.482338,-1.385110,0.354057,1.731080 +-0.307485,0.537890,-0.485421,-1.395540,0.356207,1.745560 +-0.309346,0.541351,-0.488504,-1.405950,0.358358,1.760020 +-0.311208,0.544812,-0.491586,-1.416340,0.360509,1.774460 +-0.313070,0.548273,-0.494669,-1.426710,0.362659,1.788880 +-0.314932,0.551734,-0.497752,-1.437050,0.364810,1.803270 +-0.316794,0.555195,-0.500834,-1.447360,0.366960,1.817630 +-0.318656,0.558656,-0.503917,-1.457630,0.369111,1.831970 +-0.320518,0.562117,-0.507000,-1.467870,0.371262,1.846260 +-0.322380,0.565578,-0.510082,-1.478070,0.373412,1.860520 +-0.324242,0.569039,-0.513165,-1.488230,0.375563,1.874730 +-0.326103,0.572500,-0.516248,-1.498340,0.377713,1.888910 +-0.327965,0.575961,-0.519330,-1.508400,0.379864,1.903030 +-0.329827,0.579422,-0.522413,-1.518410,0.382015,1.917100 +-0.331689,0.582883,-0.525496,-1.528370,0.384165,1.931120 +-0.333551,0.586344,-0.528578,-1.538270,0.386316,1.945080 +-0.335413,0.589805,-0.531661,-1.548100,0.388466,1.958980 +-0.337275,0.593266,-0.534743,-1.557870,0.390617,1.972820 +-0.339137,0.596727,-0.537826,-1.567570,0.392768,1.986590 +-0.340998,0.600188,-0.540909,-1.577210,0.394918,2.000290 +-0.342860,0.603649,-0.543991,-1.586770,0.397069,2.013920 +-0.344722,0.607110,-0.547074,-1.596250,0.399219,2.027470 +-0.346584,0.610571,-0.550157,-1.605650,0.401370,2.040940 +-0.348446,0.614031,-0.553239,-1.614970,0.403521,2.054330 +-0.350308,0.617492,-0.556322,-1.624200,0.405671,2.067640 +-0.352170,0.620953,-0.559405,-1.633340,0.407822,2.080860 +-0.354032,0.624414,-0.562487,-1.642390,0.409972,2.093980 +-0.355894,0.627875,-0.565570,-1.651340,0.412123,2.107010 +-0.357755,0.631336,-0.568653,-1.660200,0.414274,2.119950 +-0.359617,0.634797,-0.571735,-1.668950,0.416424,2.132780 +-0.361479,0.638258,-0.574818,-1.677600,0.418575,2.145510 +-0.363341,0.641719,-0.577901,-1.686140,0.420725,2.158130 +-0.365203,0.645180,-0.580983,-1.694570,0.422876,2.170650 +-0.367065,0.648641,-0.584066,-1.702880,0.425027,2.183050 +-0.368927,0.652102,-0.587148,-1.711080,0.427177,2.195330 +-0.370789,0.655563,-0.590231,-1.719160,0.429328,2.207490 +-0.372650,0.659024,-0.593314,-1.727110,0.431478,2.219530 +-0.374512,0.662485,-0.596396,-1.734940,0.433629,2.231450 +-0.376374,0.665946,-0.599479,-1.742630,0.435780,2.243240 +-0.378236,0.669407,-0.602562,-1.750200,0.437930,2.254890 +-0.380098,0.672868,-0.605644,-1.757620,0.440081,2.266410 +-0.381960,0.676329,-0.608727,-1.764910,0.442231,2.277790 +-0.383822,0.679790,-0.611810,-1.772060,0.444382,2.289030 +-0.385684,0.683251,-0.614892,-1.779060,0.446533,2.300130 +-0.387546,0.686712,-0.617975,-1.785910,0.448683,2.311080 +-0.389407,0.690173,-0.621058,-1.792610,0.450834,2.321880 +-0.391269,0.693634,-0.624140,-1.799150,0.452984,2.332520 +-0.393131,0.697095,-0.627223,-1.805550,0.455135,2.343010 +-0.394993,0.700556,-0.630306,-1.811780,0.457286,2.353350 +-0.396855,0.704017,-0.633388,-1.817860,0.459436,2.363530 +-0.398717,0.707478,-0.636471,-1.823780,0.461587,2.373550 +-0.400579,0.710939,-0.639554,-1.829550,0.463737,2.383420 +-0.402441,0.714400,-0.642636,-1.835160,0.465888,2.393130 +-0.404303,0.717861,-0.645719,-1.840620,0.468039,2.402680 +-0.406164,0.721322,-0.648801,-1.845920,0.470189,2.412080 +-0.408026,0.724783,-0.651884,-1.851070,0.472340,2.421330 +-0.409888,0.728244,-0.654967,-1.856060,0.474490,2.430420 +-0.411750,0.731705,-0.658049,-1.860890,0.476641,2.439350 +-0.413612,0.735166,-0.661132,-1.865570,0.478792,2.448130 +-0.415474,0.738627,-0.664215,-1.870090,0.480942,2.456760 +-0.417336,0.742088,-0.667297,-1.874460,0.483093,2.465220 +-0.419198,0.745548,-0.670380,-1.878680,0.485243,2.473540 +-0.421059,0.749009,-0.673463,-1.882730,0.487394,2.481690 +-0.422921,0.752470,-0.676545,-1.886640,0.489545,2.489690 +-0.424783,0.755931,-0.679628,-1.890390,0.491695,2.497540 +-0.426644,0.759392,-0.682711,-1.894000,0.493846,2.505230 +-0.428502,0.762852,-0.685793,-1.897470,0.495996,2.512770 +-0.430355,0.766307,-0.688876,-1.900800,0.498147,2.520140 +-0.432199,0.769756,-0.691959,-1.903990,0.500298,2.527370 +-0.434032,0.773196,-0.695041,-1.907040,0.502448,2.534440 +-0.435851,0.776624,-0.698124,-1.909970,0.504599,2.541350 +-0.437655,0.780037,-0.701206,-1.912760,0.506749,2.548110 +-0.439440,0.783434,-0.704289,-1.915440,0.508900,2.554710 +-0.441203,0.786810,-0.707372,-1.917990,0.511051,2.561150 +-0.442943,0.790165,-0.710454,-1.920420,0.513201,2.567440 +-0.444656,0.793495,-0.713537,-1.922740,0.515352,2.573580 +-0.446340,0.796798,-0.716620,-1.924950,0.517502,2.579560 +-0.447993,0.800070,-0.719702,-1.927040,0.519653,2.585380 +-0.449611,0.803310,-0.722785,-1.929030,0.521804,2.591050 +-0.451192,0.806515,-0.725868,-1.930920,0.523954,2.596560 +-0.452734,0.809682,-0.728950,-1.932710,0.526105,2.601920 +-0.454234,0.812809,-0.732033,-1.934400,0.528255,2.607120 +-0.455689,0.815893,-0.735116,-1.936000,0.530406,2.612170 +-0.457097,0.818931,-0.738198,-1.937510,0.532557,2.617060 +-0.458455,0.821921,-0.741281,-1.938930,0.534707,2.621790 +-0.459760,0.824860,-0.744362,-1.940270,0.536858,2.626370 +-0.461011,0.827746,-0.747438,-1.941530,0.539008,2.630800 +-0.462203,0.830577,-0.750507,-1.942710,0.541159,2.635070 +-0.463336,0.833348,-0.753567,-1.943810,0.543310,2.639180 +-0.464410,0.836059,-0.756615,-1.944840,0.545460,2.643140 +-0.465428,0.838705,-0.759648,-1.945810,0.547611,2.646940 +-0.466392,0.841286,-0.762664,-1.946710,0.549761,2.650590 +-0.467305,0.843797,-0.765660,-1.947540,0.551912,2.654080 +-0.468169,0.846237,-0.768633,-1.948320,0.554063,2.657410 +-0.468987,0.848603,-0.771581,-1.949040,0.556213,2.660590 +-0.469762,0.850892,-0.774501,-1.949710,0.558364,2.663620 +-0.470495,0.853102,-0.777392,-1.950330,0.560514,2.666490 +-0.471191,0.855230,-0.780249,-1.950900,0.562665,2.669200 +-0.471851,0.857274,-0.783071,-1.951430,0.564815,2.671760 +-0.472478,0.859230,-0.785854,-1.951920,0.566961,2.674160 +-0.473075,0.861097,-0.788597,-1.952370,0.569101,2.676420 +-0.473644,0.862871,-0.791297,-1.952780,0.571231,2.678530 +-0.474187,0.864551,-0.793950,-1.953170,0.573348,2.680500 +-0.474708,0.866133,-0.796556,-1.953530,0.575450,2.682330 +-0.475209,0.867615,-0.799110,-1.953860,0.577532,2.684020 +-0.475693,0.868994,-0.801610,-1.954170,0.579592,2.685570 +-0.476162,0.870268,-0.804055,-1.954460,0.581627,2.687000 +-0.476618,0.871434,-0.806440,-1.954740,0.583634,2.688300 +-0.477065,0.872490,-0.808764,-1.955000,0.585609,2.689470 +-0.477505,0.873436,-0.811024,-1.955250,0.587549,2.690530 +-0.477940,0.874273,-0.813217,-1.955500,0.589452,2.691460 +-0.478373,0.875006,-0.815341,-1.955740,0.591314,2.692280 +-0.478808,0.875635,-0.817393,-1.955990,0.593132,2.692990 +-0.479245,0.876165,-0.819370,-1.956240,0.594903,2.693590 +-0.479689,0.876597,-0.821271,-1.956490,0.596624,2.694090 +-0.480141,0.876935,-0.823092,-1.956750,0.598292,2.694480 +-0.480604,0.877180,-0.824832,-1.957030,0.599903,2.694770 +-0.481081,0.877335,-0.826493,-1.957320,0.601455,2.694960 +-0.481574,0.877403,-0.828077,-1.957630,0.602944,2.695070 +-0.482086,0.877387,-0.829588,-1.957960,0.604368,2.695080 +-0.482619,0.877289,-0.831028,-1.958310,0.605723,2.695000 +-0.483177,0.877111,-0.832399,-1.958700,0.607005,2.694850 +-0.483761,0.876857,-0.833704,-1.959110,0.608213,2.694610 +-0.484375,0.876529,-0.834946,-1.959560,0.609343,2.694290 +-0.485021,0.876129,-0.836128,-1.960050,0.610394,2.693900 +-0.485701,0.875661,-0.837251,-1.960580,0.611370,2.693430 +-0.486418,0.875126,-0.838318,-1.961150,0.612274,2.692900 +-0.487175,0.874527,-0.839333,-1.961760,0.613108,2.692300 +-0.487974,0.873867,-0.840297,-1.962430,0.613877,2.691650 +-0.488818,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-0.490791,0.871415,-0.843027,-1.964882,0.615892,2.689194 +-0.492943,0.869458,-0.844594,-1.966839,0.616898,2.687237 +-0.495229,0.867319,-0.845881,-1.968978,0.617577,2.685097 +-0.497603,0.865041,-0.846861,-1.971256,0.617917,2.682820 +-0.500013,0.862673,-0.847514,-1.973624,0.617909,2.680452 +-0.502410,0.860264,-0.847826,-1.976033,0.617554,2.678042 +-0.504745,0.857864,-0.847790,-1.978433,0.616859,2.675642 +-0.506967,0.855523,-0.847409,-1.980774,0.615839,2.673301 +-0.509032,0.853289,-0.846688,-1.983008,0.614515,2.671068 +-0.510896,0.851210,-0.845644,-1.985087,0.612914,2.668988 +-0.512521,0.849329,-0.844298,-1.986968,0.611071,2.667107 +-0.513871,0.847684,-0.842679,-1.988613,0.609023,2.665462 +-0.514920,0.846310,-0.840819,-1.989987,0.606813,2.664088 +-0.515646,0.845236,-0.838758,-1.991061,0.604487,2.663014 +-0.516033,0.844484,-0.836539,-1.991813,0.602093,2.662262 +-0.516073,0.844070,-0.834207,-1.992227,0.599682,2.661848 +-0.515765,0.844002,-0.831812,-1.992295,0.597303,2.661780 +-0.515117,0.844281,-0.829403,-1.992016,0.595007,2.662060 +-0.514141,0.844903,-0.827030,-1.991394,0.592840,2.662681 +-0.512857,0.845854,-0.824744,-1.990443,0.590849,2.663632 +-0.511293,0.847114,-0.822591,-1.989184,0.589074,2.664892 +-0.509481,0.848656,-0.820616,-1.987641,0.587553,2.666434 +-0.507459,0.850450,-0.818861,-1.985847,0.586316,2.668228 +-0.505268,0.852457,-0.817362,-1.983840,0.585391,2.670235 +-0.502955,0.854635,-0.816150,-1.981662,0.584797,2.672414 +-0.500568,0.856940,-0.815251,-1.979357,0.584544,2.674718 +-0.498156,0.859323,-0.814683,-1.976974,0.584640,2.677102 +-0.495770,0.861735,-0.814458,-1.974562,0.585082,2.679513 +-0.493459,0.864125,-0.814581,-1.972172,0.585860,2.681903 +-0.491272,0.866444,-0.815049,-1.969853,0.586959,2.684222 +-0.489254,0.868643,-0.815853,-1.967655,0.588355,2.686421 +-0.487447,0.870676,-0.816975,-1.965621,0.590020,2.688454 +-0.485889,0.872501,-0.818393,-1.963796,0.591919,2.690279 +-0.484611,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-0.483642,0.875381,-0.821990,-1.960916,0.596256,2.693160 +-0.483001,0.876376,-0.824096,-1.959921,0.598604,2.694154 +-0.482701,0.877044,-0.826348,-1.959253,0.601007,2.694823 +-0.482748,0.877372,-0.828700,-1.958925,0.603414,2.695150 +-0.483143,0.877352,-0.831104,-1.958945,0.605777,2.695130 +-0.483875,0.876985,-0.833508,-1.959312,0.608045,2.694764 +-0.484931,0.876279,-0.835863,-1.960018,0.610172,2.694058 +-0.486288,0.875249,-0.838121,-1.961048,0.612112,2.693027 +-0.487918,0.873915,-0.840233,-1.962382,0.613827,2.691693 +-0.489787,0.872306,-0.842156,-1.963991,0.615279,2.690084 +-0.491856,0.870455,-0.843850,-1.965843,0.616439,2.688233 +-0.494081,0.868400,-0.845279,-1.967897,0.617282,2.686178 +-0.496418,0.866185,-0.846414,-1.970112,0.617792,2.683964 +-0.498816,0.863856,-0.847232,-1.972441,0.617956,2.681634 +-0.501226,0.861461,-0.847714,-1.974836,0.617773,2.679239 +-0.503598,0.859050,-0.847851,-1.977247,0.617245,2.676829 +-0.505882,0.856674,-0.847641,-1.979623,0.616384,2.674452 +-0.508031,0.854381,-0.847087,-1.981916,0.615208,2.672159 +-0.509999,0.852219,-0.846201,-1.984078,0.613741,2.669998 +-0.511747,0.850235,-0.845002,-1.986062,0.612014,2.668013 +-0.513237,0.848468,-0.843514,-1.987829,0.610062,2.666246 +-0.514439,0.846956,-0.841769,-1.989341,0.607927,2.664734 +-0.515328,0.845730,-0.839803,-1.990567,0.605652,2.663508 +-0.515884,0.844816,-0.837656,-1.991482,0.603286,2.662594 +-0.516096,0.844232,-0.835375,-1.992065,0.600877,2.662010 +-0.515961,0.843992,-0.833005,-1.992305,0.598476,2.661770 +-0.515480,0.844099,-0.830596,-1.992198,0.596133,2.661878 +-0.514665,0.844553,-0.828199,-1.991745,0.593896,2.662331 +-0.513531,0.845342,-0.825864,-1.990955,0.591812,2.663120 +-0.512102,0.846452,-0.823639,-1.989846,0.589925,2.664230 +-0.510408,0.847858,-0.821571,-1.988440,0.588273,2.665636 +-0.508485,0.849531,-0.819702,-1.986766,0.586892,2.667309 +-0.506373,0.851437,-0.818071,-1.984860,0.585810,2.669215 +-0.504115,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-0.501758,0.855784,-0.815657,-1.980513,0.584626,2.673562 +-0.499353,0.858135,-0.814922,-1.978163,0.584549,2.675913 +-0.496947,0.860538,-0.814526,-1.975759,0.584820,2.678317 +-0.494593,0.862945,-0.814476,-1.973352,0.585433,2.680724 +-0.492339,0.865306,-0.814774,-1.970992,0.586375,2.683084 +-0.490231,0.867570,-0.815413,-1.968727,0.587627,2.685348 +-0.488314,0.869691,-0.816380,-1.966606,0.589163,2.687469 +-0.486628,0.871624,-0.817654,-1.964673,0.590951,2.689402 +-0.485208,0.873330,-0.819210,-1.962967,0.592953,2.691108 +-0.484083,0.874773,-0.821015,-1.961524,0.595127,2.692551 +-0.483277,0.875923,-0.823030,-1.960375,0.597429,2.693701 +-0.482806,0.876755,-0.825215,-1.959542,0.599811,2.694533 +-0.482681,0.877253,-0.827524,-1.959044,0.602223,2.695031 +-0.482904,0.877406,-0.829908,-1.958892,0.604614,2.695184 +-0.483471,0.877210,-0.832318,-1.959087,0.606935,2.694989 +-0.484368,0.876671,-0.834704,-1.959626,0.609137,2.694449 +-0.485579,0.875799,-0.837016,-1.960498,0.611176,2.693578 +-0.487078,0.874613,-0.839206,-1.961684,0.613007,2.692391 +-0.488832,0.873136,-0.841228,-1.963161,0.614593,2.690914 +-0.490807,0.871401,-0.843041,-1.964896,0.615902,2.689179 +-0.492961,0.869442,-0.844605,-1.966855,0.616905,2.687220 +-0.495248,0.867301,-0.845890,-1.968996,0.617581,2.685079 +-0.497622,0.865023,-0.846867,-1.971274,0.617918,2.682801 +-0.500032,0.862654,-0.847517,-1.973643,0.617907,2.680433 +-0.502429,0.860245,-0.847827,-1.976052,0.617549,2.678023 +-0.504763,0.857845,-0.847789,-1.978452,0.616852,2.675623 +-0.506984,0.855505,-0.847404,-1.980793,0.615829,2.673283 +-0.509048,0.853272,-0.846681,-1.983025,0.614503,2.671050 +-0.510910,0.851194,-0.845635,-1.985103,0.612901,2.668973 +-0.512532,0.849315,-0.844287,-1.986983,0.611056,2.667093 +-0.513881,0.847672,-0.842665,-1.988625,0.609006,2.665450 +-0.514927,0.846300,-0.840803,-1.989997,0.606795,2.664079 +-0.515650,0.845229,-0.838741,-1.991068,0.604468,2.663007 +-0.516034,0.844479,-0.836520,-1.991818,0.602074,2.662258 +-0.516072,0.844068,-0.834188,-1.992229,0.599663,2.661846 +-0.515762,0.844003,-0.831793,-1.992295,0.597285,2.661781 +-0.515110,0.844285,-0.829384,-1.992012,0.594989,2.662063 +-0.514132,0.844909,-0.827012,-1.991388,0.592824,2.662688 +-0.512846,0.845863,-0.824726,-1.990435,0.590834,2.663641 +-0.511280,0.847125,-0.822574,-1.989172,0.589061,2.664903 +-0.509466,0.848670,-0.820601,-1.987627,0.587542,2.666448 +-0.507442,0.850465,-0.818848,-1.985832,0.586308,2.668243 +-0.505250,0.852474,-0.817351,-1.983824,0.585385,2.670252 +-0.502937,0.854653,-0.816142,-1.981644,0.584793,2.672432 +-0.500549,0.856959,-0.815245,-1.979338,0.584544,2.674737 +-0.498137,0.859343,-0.814680,-1.976955,0.584642,2.677121 +-0.495751,0.861754,-0.814458,-1.974543,0.585087,2.679532 +-0.493441,0.864144,-0.814583,-1.972153,0.585868,2.681922 +-0.491255,0.866462,-0.815054,-1.969835,0.586969,2.684240 +-0.489239,0.868659,-0.815860,-1.967638,0.588368,2.686438 +-0.487433,0.870691,-0.816985,-1.965606,0.590035,2.688469 +-0.485877,0.872515,-0.818405,-1.963782,0.591935,2.690293 +-0.484602,0.874092,-0.820091,-1.962205,0.594030,2.691870 +-0.483636,0.875391,-0.822007,-1.960907,0.596275,2.693169 +-0.482997,0.876383,-0.824113,-1.959914,0.598623,2.694161 +-0.482700,0.877048,-0.826366,-1.959249,0.601026,2.694827 +-0.482750,0.877373,-0.828719,-1.958924,0.603433,2.695151 +-0.483147,0.877351,-0.831123,-1.958946,0.605795,2.695129 +-0.483883,0.876981,-0.833527,-1.959316,0.608063,2.694759 +-0.484941,0.876272,-0.835882,-1.960025,0.610188,2.694051 +-0.486300,0.875239,-0.838138,-1.961058,0.612127,2.693017 +-0.487932,0.873903,-0.840249,-1.962394,0.613839,2.691681 +-0.489803,0.872292,-0.842170,-1.964005,0.615289,2.690070 +-0.491873,0.870439,-0.843862,-1.965858,0.616447,2.688217 +-0.494100,0.868383,-0.845289,-1.967914,0.617288,2.686161 +-0.496437,0.866167,-0.846422,-1.970130,0.617794,2.683946 +-0.498835,0.863837,-0.847237,-1.972460,0.617956,2.681616 +-0.501245,0.861442,-0.847716,-1.974855,0.617770,2.679220 +-0.503616,0.859031,-0.847851,-1.977266,0.617240,2.676809 +-0.505899,0.856655,-0.847638,-1.979642,0.616376,2.674433 +-0.508047,0.854363,-0.847081,-1.981934,0.615197,2.672141 +-0.510014,0.852203,-0.846193,-1.984094,0.613728,2.669981 +-0.511760,0.850220,-0.844991,-1.986077,0.611999,2.667998 +-0.513248,0.848455,-0.843502,-1.987842,0.610046,2.666233 +-0.514448,0.846945,-0.841754,-1.989352,0.607909,2.664723 +-0.515333,0.845721,-0.839787,-1.990576,0.605634,2.663499 +-0.515887,0.844810,-0.837639,-1.991487,0.603267,2.662588 +-0.516097,0.844229,-0.835356,-1.992068,0.600858,2.662007 +-0.515959,0.843991,-0.832986,-1.992306,0.598457,2.661769 +-0.515475,0.844102,-0.830577,-1.992196,0.596114,2.661880 +-0.514657,0.844558,-0.828181,-1.991740,0.593878,2.662336 +-0.513520,0.845350,-0.825846,-1.990947,0.591796,2.663128 +-0.512089,0.846462,-0.823622,-1.989836,0.589911,2.664240 +-0.510394,0.847870,-0.821555,-1.988427,0.588261,2.665648 +-0.508469,0.849545,-0.819688,-1.986752,0.586882,2.667324 +-0.506355,0.851453,-0.818059,-1.984844,0.585803,2.669231 +-0.504096,0.853553,-0.816704,-1.982744,0.585045,2.671332 +-0.501739,0.855803,-0.815649,-1.980495,0.584624,2.673581 +-0.499333,0.858154,-0.814918,-1.978144,0.584550,2.675932 +-0.496928,0.860558,-0.814524,-1.975740,0.584823,2.678336 +-0.494575,0.862964,-0.814477,-1.973333,0.585439,2.680743 +-0.492321,0.865324,-0.814778,-1.970973,0.586384,2.683102 +-0.490215,0.867587,-0.815419,-1.968710,0.587638,2.685365 +-0.488300,0.869707,-0.816389,-1.966590,0.589176,2.687485 +-0.486616,0.871639,-0.817666,-1.964658,0.590966,2.689417 +-0.485198,0.873343,-0.819223,-1.962954,0.592969,2.691121 +-0.484075,0.874783,-0.821030,-1.961514,0.595145,2.692562 +-0.483272,0.875930,-0.823047,-1.960367,0.597448,2.693709 +-0.482804,0.876760,-0.825233,-1.959537,0.599830,2.694538 +-0.482682,0.877255,-0.827543,-1.959042,0.602242,2.695033 +-0.482907,0.877405,-0.829927,-1.958892,0.604633,2.695184 +-0.483476,0.877207,-0.832337,-1.959090,0.606953,2.694986 +-0.484377,0.876666,-0.834723,-1.959632,0.609154,2.694444 +-0.485590,0.875791,-0.837034,-1.960506,0.611191,2.693569 +-0.487091,0.874602,-0.839223,-1.961695,0.613021,2.692380 +-0.488847,0.873123,-0.841244,-1.963174,0.614605,2.690902 +-0.490824,0.871386,-0.843054,-1.964911,0.615911,2.689164 +-0.492978,0.869426,-0.844617,-1.966871,0.616911,2.687204 +-0.495267,0.867284,-0.845899,-1.969013,0.617585,2.685062 +-0.497641,0.865004,-0.846874,-1.971293,0.617919,2.682783 +-0.500051,0.862635,-0.847521,-1.973662,0.617906,2.680414 +-0.502448,0.860226,-0.847828,-1.976071,0.617545,2.678004 +-0.504781,0.857826,-0.847787,-1.978471,0.616845,2.675604 +-0.507002,0.855486,-0.847400,-1.980811,0.615820,2.673265 +-0.509064,0.853255,-0.846674,-1.983042,0.614491,2.671033 +-0.510924,0.851179,-0.845625,-1.985118,0.612887,2.668957 +-0.512544,0.849301,-0.844275,-1.986997,0.611040,2.667079 +-0.513890,0.847660,-0.842651,-1.988637,0.608989,2.665438 +-0.514934,0.846291,-0.840788,-1.990007,0.606777,2.664069 +-0.515655,0.845221,-0.838724,-1.991076,0.604449,2.663000 +-0.516036,0.844475,-0.836502,-1.991822,0.602055,2.662253 +-0.516071,0.844066,-0.834169,-1.992231,0.599644,2.661844 +-0.515758,0.844003,-0.831773,-1.992294,0.597266,2.661782 +-0.515104,0.844289,-0.829365,-1.992008,0.594971,2.662067 +-0.514123,0.844916,-0.826993,-1.991381,0.592807,2.662694 +-0.512834,0.845871,-0.824708,-1.990426,0.590819,2.663650 +-0.511266,0.847136,-0.822558,-1.989161,0.589048,2.664914 +-0.509450,0.848683,-0.820586,-1.987614,0.587531,2.666461 +-0.507425,0.850480,-0.818835,-1.985817,0.586299,2.668258 +-0.505232,0.852490,-0.817340,-1.983807,0.585379,2.670268 +-0.502918,0.854671,-0.816133,-1.981626,0.584790,2.672449 +-0.500530,0.856978,-0.815239,-1.979319,0.584543,2.674756 +-0.498118,0.859362,-0.814677,-1.976935,0.584644,2.677140 +-0.495733,0.861773,-0.814457,-1.974524,0.585092,2.679552 +-0.493424,0.864163,-0.814586,-1.972134,0.585875,2.681941 +-0.491239,0.866480,-0.815059,-1.969817,0.586979,2.684258 +-0.489223,0.868676,-0.815868,-1.967621,0.588380,2.686454 +-0.487420,0.870707,-0.816995,-1.965591,0.590049,2.688485 +-0.485866,0.872528,-0.818417,-1.963769,0.591951,2.690307 +-0.484594,0.874104,-0.820105,-1.962193,0.594047,2.691882 +-0.483629,0.875400,-0.822023,-1.960897,0.596293,2.693178 +-0.482993,0.876389,-0.824130,-1.959908,0.598642,2.694168 +-0.482699,0.877052,-0.826385,-1.959245,0.601045,2.694830 +-0.482752,0.877374,-0.828738,-1.958923,0.603452,2.695153 +-0.483152,0.877349,-0.831142,-1.958948,0.605814,2.695127 +-0.483890,0.876977,-0.833546,-1.959320,0.608080,2.694755 +-0.484951,0.876265,-0.835900,-1.960032,0.610204,2.694044 +-0.486312,0.875230,-0.838156,-1.961067,0.612142,2.693008 +-0.487946,0.873891,-0.840265,-1.962406,0.613852,2.691670 +-0.489818,0.872278,-0.842185,-1.964019,0.615300,2.690056 +-0.491890,0.870423,-0.843875,-1.965874,0.616455,2.688202 +-0.494118,0.868366,-0.845300,-1.967931,0.617293,2.686144 +-0.496455,0.866149,-0.846430,-1.970148,0.617797,2.683927 +-0.498854,0.863819,-0.847242,-1.972479,0.617956,2.681597 +-0.501264,0.861423,-0.847719,-1.974874,0.617767,2.679201 +-0.503635,0.859012,-0.847851,-1.977285,0.617234,2.676790 +-0.505917,0.856636,-0.847635,-1.979661,0.616368,2.674415 +-0.508063,0.854345,-0.847076,-1.981952,0.615187,2.672123 +-0.510029,0.852186,-0.846185,-1.984111,0.613715,2.669965 +-0.511773,0.850205,-0.844981,-1.986092,0.611984,2.667983 +-0.513259,0.848442,-0.843489,-1.987855,0.610029,2.666220 +-0.514456,0.846934,-0.841740,-1.989363,0.607891,2.664712 +-0.515339,0.845713,-0.839770,-1.990584,0.605615,2.663491 +-0.515890,0.844804,-0.837621,-1.991493,0.603248,2.662582 +-0.516097,0.844226,-0.835337,-1.992071,0.600839,2.662004 +-0.515956,0.843991,-0.832967,-1.992306,0.598438,2.661769 +-0.515470,0.844104,-0.830558,-1.992193,0.596096,2.661882 +-0.514649,0.844563,-0.828162,-1.991735,0.593861,2.662341 +-0.513510,0.845357,-0.825828,-1.990940,0.591780,2.663136 +-0.512077,0.846472,-0.823605,-1.989825,0.589897,2.664250 +-0.510380,0.847882,-0.821539,-1.988415,0.588249,2.665660 +-0.508453,0.849560,-0.819674,-1.986737,0.586873,2.667338 +-0.506338,0.851469,-0.818048,-1.984828,0.585795,2.669247 +-0.504078,0.853571,-0.816694,-1.982726,0.585040,2.671349 +-0.501720,0.855821,-0.815642,-1.980476,0.584622,2.673599 +-0.499314,0.858173,-0.814913,-1.978125,0.584551,2.675951 +-0.496909,0.860577,-0.814523,-1.975720,0.584827,2.678355 +-0.494556,0.862983,-0.814478,-1.973314,0.585445,2.680762 +-0.492304,0.865342,-0.814782,-1.970955,0.586393,2.683121 +-0.490199,0.867605,-0.815426,-1.968692,0.587650,2.685383 +-0.488286,0.869723,-0.816398,-1.966574,0.589190,2.687501 +-0.486603,0.871653,-0.817677,-1.964644,0.590981,2.689431 +-0.485188,0.873355,-0.819237,-1.962942,0.592986,2.691134 +-0.484068,0.874794,-0.821045,-1.961503,0.595163,2.692572 +-0.483267,0.875938,-0.823064,-1.960359,0.597467,2.693716 +-0.482802,0.876765,-0.825251,-1.959532,0.599849,2.694544 +-0.482682,0.877258,-0.827561,-1.959039,0.602261,2.695036 +-0.482911,0.877405,-0.829946,-1.958892,0.604651,2.695183 +-0.483482,0.877205,-0.832357,-1.959093,0.606971,2.694983 +-0.484385,0.876660,-0.834742,-1.959637,0.609171,2.694438 +-0.485601,0.875783,-0.837052,-1.960514,0.611207,2.693561 +-0.487104,0.874591,-0.839240,-1.961706,0.613034,2.692370 +-0.488862,0.873111,-0.841259,-1.963187,0.614616,2.690889 +-0.490840,0.871371,-0.843068,-1.964926,0.615920,2.689149 +-0.492996,0.869409,-0.844628,-1.966888,0.616918,2.687188 +-0.495285,0.867266,-0.845908,-1.969031,0.617589,2.685044 +-0.497660,0.864986,-0.846880,-1.971311,0.617921,2.682764 +-0.500070,0.862616,-0.847525,-1.973681,0.617904,2.680394 +-0.502467,0.860207,-0.847829,-1.976090,0.617541,2.677985 +-0.504799,0.857807,-0.847785,-1.978490,0.616838,2.675585 +-0.507019,0.855468,-0.847395,-1.980829,0.615811,2.673246 +-0.509079,0.853238,-0.846667,-1.983059,0.614480,2.671016 +-0.510938,0.851163,-0.845616,-1.985134,0.612873,2.668941 +-0.512556,0.849286,-0.844263,-1.987011,0.611024,2.667065 +-0.513900,0.847648,-0.842637,-1.988649,0.608972,2.665426 +-0.514941,0.846281,-0.840772,-1.990016,0.606758,2.664059 +-0.515659,0.845214,-0.838707,-1.991083,0.604430,2.662992 +-0.516038,0.844470,-0.836484,-1.991827,0.602036,2.662248 +-0.516070,0.844064,-0.834150,-1.992233,0.599625,2.661842 +-0.515754,0.844004,-0.831754,-1.992293,0.597247,2.661782 +-0.515097,0.844292,-0.829346,-1.992005,0.594953,2.662070 +-0.514113,0.844922,-0.826975,-1.991375,0.592790,2.662700 +-0.512823,0.845880,-0.824691,-1.990417,0.590804,2.663658 +-0.511252,0.847147,-0.822541,-1.989150,0.589034,2.664925 +-0.509435,0.848696,-0.820572,-1.987601,0.587520,2.666475 +-0.507408,0.850495,-0.818822,-1.985802,0.586291,2.668274 +-0.505214,0.852507,-0.817330,-1.983790,0.585373,2.670285 +-0.502899,0.854689,-0.816125,-1.981608,0.584787,2.672467 +-0.500511,0.856996,-0.815233,-1.979301,0.584543,2.674775 +-0.498099,0.859381,-0.814673,-1.976916,0.584647,2.677159 +-0.495714,0.861793,-0.814457,-1.974505,0.585096,2.679571 +-0.493406,0.864181,-0.814588,-1.972116,0.585883,2.681960 +-0.491222,0.866498,-0.815064,-1.969799,0.586989,2.684276 +-0.489208,0.868693,-0.815876,-1.967604,0.588392,2.686471 +-0.487407,0.870722,-0.817005,-1.965575,0.590063,2.688500 +-0.485855,0.872542,-0.818430,-1.963755,0.591967,2.690320 +-0.484585,0.874115,-0.820119,-1.962182,0.594064,2.691893 +-0.483623,0.875409,-0.822039,-1.960888,0.596311,2.693187 +-0.482990,0.876396,-0.824148,-1.959901,0.598661,2.694174 +-0.482698,0.877056,-0.826403,-1.959241,0.601064,2.694834 +-0.482754,0.877376,-0.828757,-1.958922,0.603472,2.695154 +-0.483156,0.877347,-0.831161,-1.958950,0.605832,2.695126 +-0.483897,0.876973,-0.833565,-1.959325,0.608098,2.694751 +-0.484960,0.876258,-0.835919,-1.960039,0.610220,2.694037 +-0.486324,0.875220,-0.838173,-1.961077,0.612156,2.692998 +-0.487960,0.873880,-0.840281,-1.962418,0.613864,2.691658 +-0.489834,0.872264,-0.842199,-1.964033,0.615310,2.690042 +-0.491907,0.870408,-0.843887,-1.965889,0.616463,2.688186 +-0.494136,0.868349,-0.845310,-1.967948,0.617298,2.686127 +-0.496474,0.866131,-0.846438,-1.970166,0.617799,2.683909 +-0.498873,0.863800,-0.847247,-1.972497,0.617956,2.681578 +-0.501283,0.861404,-0.847721,-1.974893,0.617764,2.679182 +-0.503653,0.858993,-0.847850,-1.977304,0.617228,2.676771 +-0.505935,0.856618,-0.847632,-1.979679,0.616360,2.674396 +-0.508080,0.854328,-0.847070,-1.981970,0.615176,2.672106 +-0.510044,0.852170,-0.846176,-1.984127,0.613703,2.669948 +-0.511786,0.850190,-0.844970,-1.986107,0.611969,2.667968 +-0.513270,0.848429,-0.843476,-1.987868,0.610013,2.666207 +-0.514464,0.846923,-0.841725,-1.989374,0.607874,2.664701 +-0.515345,0.845704,-0.839754,-1.990593,0.605596,2.663482 +-0.515893,0.844798,-0.837603,-1.991499,0.603229,2.662576 +-0.516097,0.844222,-0.835319,-1.992075,0.600819,2.662001 +-0.515954,0.843990,-0.832947,-1.992307,0.598419,2.661769 +-0.515465,0.844106,-0.830539,-1.992191,0.596078,2.661884 +-0.514641,0.844568,-0.828143,-1.991730,0.593844,2.662346 +-0.513500,0.845365,-0.825810,-1.990932,0.591764,2.663143 +-0.512065,0.846482,-0.823588,-1.989815,0.589882,2.664260 +-0.510365,0.847895,-0.821524,-1.988403,0.588237,2.665673 +-0.508437,0.849574,-0.819660,-1.986723,0.586863,2.667352 +-0.506321,0.851485,-0.818036,-1.984812,0.585788,2.669263 +-0.504060,0.853588,-0.816685,-1.982709,0.585035,2.671366 +-0.501701,0.855839,-0.815635,-1.980458,0.584620,2.673617 +-0.499295,0.858192,-0.814909,-1.978106,0.584552,2.675970 +-0.496890,0.860596,-0.814521,-1.975701,0.584831,2.678374 +-0.494538,0.863002,-0.814480,-1.973295,0.585452,2.680781 +-0.492287,0.865361,-0.814785,-1.970936,0.586402,2.683139 +-0.490183,0.867622,-0.815432,-1.968675,0.587661,2.685400 +-0.488271,0.869739,-0.816407,-1.966558,0.589203,2.687517 +-0.486591,0.871668,-0.817688,-1.964629,0.590996,2.689446 +-0.485178,0.873368,-0.819250,-1.962929,0.593003,2.691146 +-0.484060,0.874804,-0.821060,-1.961493,0.595181,2.692582 +-0.483262,0.875946,-0.823081,-1.960351,0.597486,2.693724 +-0.482799,0.876771,-0.825269,-1.959526,0.599868,2.694549 +-0.482683,0.877260,-0.827580,-1.959037,0.602280,2.695039 +-0.482914,0.877405,-0.829966,-1.958892,0.604670,2.695183 +-0.483488,0.877202,-0.832376,-1.959096,0.606989,2.694980 +-0.484394,0.876654,-0.834761,-1.959643,0.609188,2.694432 +-0.485612,0.875775,-0.837070,-1.960523,0.611222,2.693553 +-0.487117,0.874581,-0.839257,-1.961716,0.613048,2.692359 +-0.488877,0.873098,-0.841274,-1.963199,0.614628,2.690876 +-0.490857,0.871356,-0.843081,-1.964941,0.615929,2.689135 +-0.493014,0.869393,-0.844639,-1.966904,0.616925,2.687171 +-0.495304,0.867248,-0.845917,-1.969049,0.617593,2.685027 +-0.497679,0.864967,-0.846887,-1.971330,0.617922,2.682745 +-0.500090,0.862597,-0.847529,-1.973700,0.617903,2.680375 +-0.502486,0.860187,-0.847830,-1.976110,0.617537,2.677966 +-0.504817,0.857788,-0.847784,-1.978509,0.616831,2.675567 +-0.507036,0.855450,-0.847391,-1.980847,0.615801,2.673228 +-0.509095,0.853221,-0.846660,-1.983077,0.614468,2.670999 +-0.510952,0.851147,-0.845606,-1.985150,0.612859,2.668925 +-0.512568,0.849272,-0.844251,-1.987025,0.611009,2.667051 +-0.513909,0.847636,-0.842623,-1.988661,0.608955,2.665414 +-0.514949,0.846271,-0.840756,-1.990026,0.606740,2.664049 +-0.515663,0.845207,-0.838690,-1.991090,0.604411,2.662985 +-0.516039,0.844466,-0.836466,-1.991832,0.602016,2.662244 +-0.516068,0.844062,-0.834131,-1.992235,0.599605,2.661840 +-0.515750,0.844005,-0.831735,-1.992292,0.597229,2.661783 +-0.515091,0.844296,-0.829327,-1.992001,0.594936,2.662074 +-0.514104,0.844928,-0.826956,-1.991369,0.592774,2.662707 +-0.512811,0.845889,-0.824673,-1.990408,0.590789,2.663667 +-0.511239,0.847158,-0.822525,-1.989139,0.589021,2.664937 +-0.509420,0.848710,-0.820557,-1.987587,0.587509,2.666488 +-0.507391,0.850511,-0.818809,-1.985786,0.586282,2.668289 +-0.505196,0.852524,-0.817319,-1.983773,0.585367,2.670302 +-0.502880,0.854707,-0.816117,-1.981590,0.584783,2.672485 +-0.500491,0.857015,-0.815228,-1.979282,0.584542,2.674793 +-0.498080,0.859400,-0.814670,-1.976897,0.584649,2.677178 +-0.495695,0.861812,-0.814457,-1.974485,0.585101,2.679590 +-0.493388,0.864200,-0.814591,-1.972097,0.585890,2.681978 +-0.491205,0.866516,-0.815070,-1.969781,0.586999,2.684294 +-0.489193,0.868710,-0.815884,-1.967587,0.588405,2.686488 +-0.487393,0.870737,-0.817016,-1.965560,0.590077,2.688516 +-0.485843,0.872556,-0.818442,-1.963742,0.591983,2.690334 +-0.484576,0.874127,-0.820134,-1.962171,0.594082,2.691905 +-0.483617,0.875418,-0.822055,-1.960879,0.596330,2.693196 +-0.482986,0.876403,-0.824165,-1.959894,0.598680,2.694181 +-0.482697,0.877060,-0.826421,-1.959237,0.601083,2.694838 +-0.482756,0.877377,-0.828776,-1.958920,0.603491,2.695155 +-0.483161,0.877346,-0.831180,-1.958951,0.605851,2.695124 +-0.483904,0.876968,-0.833584,-1.959329,0.608115,2.694746 +-0.484970,0.876251,-0.835937,-1.960046,0.610237,2.694030 +-0.486336,0.875211,-0.838190,-1.961086,0.612171,2.692989 +-0.487974,0.873868,-0.840297,-1.962429,0.613877,2.691646 +-0.489850,0.872250,-0.842214,-1.964047,0.615320,2.690028 +-0.491924,0.870392,-0.843900,-1.965905,0.616471,2.688170 +-0.494154,0.868332,-0.845320,-1.967965,0.617304,2.686110 +-0.496493,0.866113,-0.846445,-1.970184,0.617802,2.683891 +-0.498893,0.863781,-0.847252,-1.972516,0.617956,2.681559 +-0.501302,0.861385,-0.847724,-1.974913,0.617761,2.679163 +-0.503672,0.858974,-0.847850,-1.977323,0.617223,2.676752 +-0.505952,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-0.508096,0.854310,-0.847064,-1.981987,0.615166,2.672088 +-0.510059,0.852153,-0.846168,-1.984144,0.613690,2.669932 +-0.511799,0.850175,-0.844959,-1.986122,0.611955,2.667953 +-0.513280,0.848416,-0.843463,-1.987882,0.609996,2.666194 +-0.514472,0.846912,-0.841710,-1.989385,0.607856,2.664690 +-0.515350,0.845696,-0.839737,-1.990601,0.605578,2.663474 +-0.515896,0.844792,-0.837586,-1.991505,0.603210,2.662570 +-0.516098,0.844219,-0.835300,-1.992078,0.600800,2.661997 +-0.515951,0.843990,-0.832928,-1.992307,0.598400,2.661768 +-0.515460,0.844108,-0.830520,-1.992189,0.596059,2.661887 +-0.514633,0.844573,-0.828124,-1.991724,0.593827,2.662351 +-0.513490,0.845373,-0.825791,-1.990924,0.591749,2.663151 +-0.512052,0.846492,-0.823571,-1.989805,0.589868,2.664270 +-0.510351,0.847907,-0.821508,-1.988390,0.588225,2.665685 +-0.508421,0.849588,-0.819646,-1.986709,0.586853,2.667367 +-0.506303,0.851501,-0.818024,-1.984796,0.585781,2.669279 +-0.504041,0.853606,-0.816675,-1.982692,0.585031,2.671384 +-0.501682,0.855858,-0.815628,-1.980439,0.584618,2.673636 +-0.499276,0.858211,-0.814904,-1.978087,0.584552,2.675989 +-0.496871,0.860615,-0.814519,-1.975682,0.584834,2.678393 +-0.494520,0.863022,-0.814481,-1.973276,0.585458,2.680800 +-0.492269,0.865379,-0.814789,-1.970918,0.586410,2.683158 +-0.490167,0.867640,-0.815439,-1.968657,0.587672,2.685418 +-0.488257,0.869755,-0.816416,-1.966542,0.589216,2.687534 +-0.486579,0.871682,-0.817700,-1.964615,0.591011,2.689460 +-0.485167,0.873380,-0.819264,-1.962917,0.593019,2.691159 +-0.484052,0.874814,-0.821076,-1.961483,0.595199,2.692592 +-0.483257,0.875954,-0.823097,-1.960343,0.597504,2.693732 +-0.482797,0.876776,-0.825287,-1.959521,0.599888,2.694554 +-0.482683,0.877263,-0.827599,-1.959034,0.602299,2.695041 +-0.482917,0.877405,-0.829985,-1.958892,0.604689,2.695183 +-0.483494,0.877199,-0.832395,-1.959099,0.607007,2.694977 +-0.484402,0.876649,-0.834779,-1.959649,0.609205,2.694427 +-0.485623,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-0.487130,0.874570,-0.839273,-1.961727,0.613061,2.692348 +-0.488892,0.873085,-0.841289,-1.963212,0.614639,2.690863 +-0.490873,0.871342,-0.843094,-1.964956,0.615938,2.689120 +-0.493032,0.869377,-0.844651,-1.966921,0.616931,2.687155 +-0.495322,0.867231,-0.845926,-1.969066,0.617597,2.685009 +-0.497698,0.864949,-0.846893,-1.971348,0.617923,2.682727 +-0.500109,0.862578,-0.847533,-1.973719,0.617901,2.680356 +-0.502505,0.860168,-0.847831,-1.976129,0.617532,2.677946 +-0.504835,0.857769,-0.847782,-1.978528,0.616824,2.675548 +-0.507053,0.855432,-0.847386,-1.980865,0.615792,2.673210 +-0.509110,0.853203,-0.846653,-1.983094,0.614456,2.670982 +-0.510966,0.851131,-0.845596,-1.985166,0.612846,2.668910 +-0.512580,0.849258,-0.844239,-1.987039,0.610993,2.667037 +-0.513919,0.847624,-0.842609,-1.988673,0.608938,2.665402 +-0.514955,0.846261,-0.840741,-1.990036,0.606722,2.664040 +-0.515668,0.845200,-0.838673,-1.991097,0.604392,2.662978 +-0.516041,0.844461,-0.836448,-1.991836,0.601997,2.662239 +-0.516067,0.844060,-0.834113,-1.992237,0.599586,2.661838 +-0.515746,0.844006,-0.831716,-1.992291,0.597210,2.661784 +-0.515084,0.844300,-0.829307,-1.991997,0.594918,2.662078 +-0.514095,0.844935,-0.826937,-1.991362,0.592757,2.662713 +-0.512800,0.845898,-0.824655,-1.990399,0.590774,2.663676 +-0.511225,0.847170,-0.822509,-1.989127,0.589008,2.664948 +-0.509404,0.848723,-0.820542,-1.987574,0.587498,2.666501 +-0.507374,0.850526,-0.818796,-1.985771,0.586274,2.668304 +-0.505178,0.852541,-0.817308,-1.983757,0.585361,2.670319 +-0.502861,0.854725,-0.816108,-1.981572,0.584780,2.672503 +-0.500472,0.857034,-0.815222,-1.979263,0.584542,2.674812 +-0.498061,0.859419,-0.814667,-1.976878,0.584651,2.677197 +-0.495676,0.861831,-0.814456,-1.974466,0.585106,2.679609 +-0.493370,0.864219,-0.814593,-1.972078,0.585898,2.681997 +-0.491188,0.866534,-0.815075,-1.969763,0.587009,2.684312 +-0.489178,0.868727,-0.815891,-1.967570,0.588417,2.686505 +-0.487380,0.870753,-0.817026,-1.965544,0.590092,2.688531 +-0.485832,0.872569,-0.818455,-1.963728,0.591999,2.690347 +-0.484567,0.874138,-0.820148,-1.962159,0.594099,2.691916 +-0.483610,0.875427,-0.822071,-1.960870,0.596348,2.693205 +-0.482982,0.876409,-0.824183,-1.959888,0.598699,2.694187 +-0.482696,0.877064,-0.826440,-1.959233,0.601103,2.694842 +-0.482758,0.877378,-0.828795,-1.958919,0.603510,2.695156 +-0.483166,0.877344,-0.831199,-1.958953,0.605869,2.695122 +-0.483911,0.876964,-0.833603,-1.959333,0.608133,2.694742 +-0.484980,0.876244,-0.835955,-1.960053,0.610253,2.694023 +-0.486348,0.875201,-0.838208,-1.961096,0.612185,2.692979 +-0.487988,0.873856,-0.840313,-1.962441,0.613890,2.691634 +-0.489866,0.872236,-0.842228,-1.964061,0.615331,2.690015 +-0.491942,0.870377,-0.843912,-1.965921,0.616478,2.688155 +-0.494173,0.868315,-0.845330,-1.967982,0.617309,2.686093 +-0.496512,0.866095,-0.846453,-1.970202,0.617805,2.683873 +-0.498912,0.863762,-0.847257,-1.972535,0.617956,2.681540 +-0.501321,0.861365,-0.847726,-1.974932,0.617758,2.679144 +-0.503690,0.858955,-0.847850,-1.977342,0.617217,2.676733 +-0.505970,0.856581,-0.847625,-1.979717,0.616343,2.674359 +-0.508113,0.854292,-0.847058,-1.982005,0.615155,2.672070 +-0.510073,0.852137,-0.846159,-1.984160,0.613677,2.669915 +-0.511811,0.850160,-0.844948,-1.986137,0.611940,2.667938 +-0.513291,0.848403,-0.843450,-1.987895,0.609980,2.666181 +-0.514481,0.846901,-0.841695,-1.989396,0.607838,2.664679 +-0.515356,0.845687,-0.839721,-1.990610,0.605559,2.663465 +-0.515899,0.844786,-0.837568,-1.991511,0.603190,2.662564 +-0.516098,0.844216,-0.835282,-1.992081,0.600781,2.661994 +-0.515949,0.843989,-0.832909,-1.992308,0.598381,2.661768 +-0.515454,0.844111,-0.830500,-1.992186,0.596041,2.661889 +-0.514625,0.844578,-0.828105,-1.991719,0.593810,2.662356 +-0.513479,0.845380,-0.825773,-1.990917,0.591733,2.663158 +-0.512039,0.846502,-0.823554,-1.989795,0.589854,2.664280 +-0.510336,0.847919,-0.821492,-1.988378,0.588213,2.665697 +-0.508405,0.849603,-0.819632,-1.986694,0.586843,2.667381 +-0.506286,0.851517,-0.818012,-1.984780,0.585773,2.669295 +-0.504023,0.853623,-0.816666,-1.982674,0.585026,2.671401 +-0.501663,0.855876,-0.815621,-1.980421,0.584616,2.673654 +-0.499257,0.858230,-0.814900,-1.978068,0.584553,2.676008 +-0.496852,0.860634,-0.814518,-1.975663,0.584838,2.678413 +-0.494501,0.863041,-0.814482,-1.973257,0.585464,2.680819 +-0.492252,0.865398,-0.814793,-1.970899,0.586419,2.683176 +-0.490151,0.867657,-0.815445,-1.968640,0.587683,2.685435 +-0.488243,0.869771,-0.816425,-1.966526,0.589230,2.687550 +-0.486566,0.871697,-0.817711,-1.964600,0.591026,2.689475 +-0.485157,0.873393,-0.819277,-1.962904,0.593036,2.691171 +-0.484045,0.874824,-0.821091,-1.961473,0.595217,2.692603 +-0.483252,0.875962,-0.823114,-1.960335,0.597523,2.693740 +-0.482795,0.876781,-0.825305,-1.959516,0.599907,2.694559 +-0.482684,0.877265,-0.827618,-1.959032,0.602318,2.695044 +-0.482920,0.877404,-0.830004,-1.958893,0.604708,2.695183 +-0.483500,0.877196,-0.832414,-1.959102,0.607025,2.694974 +-0.484411,0.876643,-0.834798,-1.959654,0.609222,2.694421 +-0.485633,0.875758,-0.837106,-1.960539,0.611253,2.693536 +-0.487143,0.874559,-0.839290,-1.961738,0.613075,2.692338 +-0.488907,0.873072,-0.841305,-1.963225,0.614651,2.690850 +-0.490890,0.871327,-0.843108,-1.964970,0.615947,2.689105 +-0.493049,0.869360,-0.844662,-1.966937,0.616938,2.687138 +-0.495341,0.867213,-0.845935,-1.969084,0.617601,2.684991 +-0.497717,0.864930,-0.846899,-1.971367,0.617924,2.682708 +-0.500128,0.862559,-0.847536,-1.973738,0.617900,2.680337 +-0.502523,0.860149,-0.847832,-1.976148,0.617528,2.677927 +-0.504854,0.857751,-0.847780,-1.978547,0.616817,2.675529 +-0.507070,0.855413,-0.847382,-1.980884,0.615782,2.673192 +-0.509126,0.853186,-0.846646,-1.983111,0.614445,2.670964 +-0.510980,0.851116,-0.845587,-1.985182,0.612832,2.668894 +-0.512591,0.849244,-0.844227,-1.987053,0.610978,2.667023 +-0.513928,0.847612,-0.842595,-1.988685,0.608921,2.665390 +-0.514962,0.846252,-0.840725,-1.990045,0.606704,2.664030 +-0.515672,0.845193,-0.838655,-1.991104,0.604374,2.662971 +-0.516043,0.844456,-0.836429,-1.991841,0.601978,2.662235 +-0.516066,0.844058,-0.834094,-1.992239,0.599567,2.661837 +-0.515742,0.844007,-0.831697,-1.992290,0.597191,2.661785 +-0.515078,0.844303,-0.829288,-1.991994,0.594900,2.662082 +-0.514086,0.844941,-0.826919,-1.991356,0.592741,2.662719 +-0.512789,0.845907,-0.824638,-1.990390,0.590759,2.663685 +-0.511212,0.847181,-0.822492,-1.989116,0.588995,2.664959 +-0.509389,0.848737,-0.820527,-1.987561,0.587487,2.666515 +-0.507358,0.850541,-0.818783,-1.985756,0.586265,2.668319 +-0.505160,0.852557,-0.817297,-1.983740,0.585355,2.670335 +-0.502843,0.854743,-0.816100,-1.981554,0.584777,2.672521 +-0.500453,0.857053,-0.815216,-1.979244,0.584541,2.674831 +-0.498041,0.859438,-0.814664,-1.976859,0.584653,2.677216 +-0.495658,0.861850,-0.814456,-1.974447,0.585111,2.679628 +-0.493352,0.864238,-0.814595,-1.972059,0.585905,2.682016 +-0.491172,0.866552,-0.815080,-1.969745,0.587019,2.684330 +-0.489163,0.868744,-0.815899,-1.967553,0.588429,2.686522 +-0.487367,0.870768,-0.817036,-1.965529,0.590106,2.688546 +-0.485821,0.872583,-0.818467,-1.963715,0.592015,2.690361 +-0.484558,0.874149,-0.820163,-1.962148,0.594116,2.691928 +-0.483604,0.875436,-0.822087,-1.960861,0.596366,2.693214 +-0.482979,0.876416,-0.824200,-1.959881,0.598718,2.694194 +-0.482695,0.877068,-0.826458,-1.959229,0.601122,2.694846 +-0.482759,0.877379,-0.828814,-1.958918,0.603529,2.695157 +-0.483170,0.877343,-0.831219,-1.958955,0.605888,2.695121 +-0.483919,0.876959,-0.833622,-1.959338,0.608150,2.694738 +-0.484989,0.876237,-0.835974,-1.960060,0.610269,2.694016 +-0.486360,0.875192,-0.838225,-1.961105,0.612200,2.692970 +-0.488002,0.873844,-0.840329,-1.962453,0.613902,2.691622 +-0.489881,0.872223,-0.842242,-1.964075,0.615341,2.690001 +-0.491959,0.870361,-0.843924,-1.965936,0.616486,2.688139 +-0.494191,0.868298,-0.845340,-1.967999,0.617314,2.686076 +-0.496531,0.866077,-0.846461,-1.970221,0.617807,2.683855 +-0.498931,0.863743,-0.847262,-1.972554,0.617955,2.681521 +-0.501340,0.861346,-0.847728,-1.974951,0.617755,2.679124 +-0.503709,0.858936,-0.847849,-1.977361,0.617212,2.676714 +-0.505988,0.856562,-0.847622,-1.979735,0.616335,2.674340 +-0.508129,0.854274,-0.847052,-1.982023,0.615144,2.672052 +-0.510088,0.852120,-0.846151,-1.984177,0.613664,2.669899 +-0.511824,0.850145,-0.844937,-1.986152,0.611925,2.667923 +-0.513302,0.848390,-0.843437,-1.987908,0.609964,2.666168 +-0.514489,0.846890,-0.841680,-1.989407,0.607821,2.664669 +-0.515362,0.845679,-0.839704,-1.990618,0.605541,2.663457 +-0.515902,0.844780,-0.837550,-1.991517,0.603171,2.662558 +-0.516098,0.844213,-0.835263,-1.992084,0.600762,2.661991 +-0.515946,0.843989,-0.832890,-1.992308,0.598362,2.661767 +-0.515449,0.844113,-0.830481,-1.992184,0.596023,2.661891 +-0.514618,0.844583,-0.828086,-1.991714,0.593792,2.662361 +-0.513469,0.845388,-0.825755,-1.990909,0.591717,2.663166 +-0.512027,0.846512,-0.823537,-1.989785,0.589840,2.664290 +-0.510322,0.847932,-0.821477,-1.988365,0.588201,2.665710 +-0.508389,0.849617,-0.819618,-1.986680,0.586834,2.667395 +-0.506268,0.851533,-0.818000,-1.984764,0.585766,2.669312 +-0.504004,0.853640,-0.816656,-1.982657,0.585021,2.671419 +-0.501644,0.855894,-0.815614,-1.980403,0.584615,2.673673 +-0.499237,0.858249,-0.814896,-1.978049,0.584554,2.676027 +-0.496833,0.860654,-0.814516,-1.975644,0.584841,2.678432 +-0.494483,0.863060,-0.814483,-1.973238,0.585470,2.680838 +-0.492234,0.865416,-0.814797,-1.970881,0.586428,2.683194 +-0.490135,0.867675,-0.815452,-1.968623,0.587694,2.685453 +-0.488228,0.869788,-0.816434,-1.966510,0.589243,2.687566 +-0.486554,0.871711,-0.817722,-1.964586,0.591042,2.689489 +-0.485147,0.873405,-0.819291,-1.962892,0.593053,2.691184 +-0.484037,0.874835,-0.821106,-1.961462,0.595235,2.692613 +-0.483247,0.875970,-0.823131,-1.960328,0.597542,2.693748 +-0.482793,0.876786,-0.825323,-1.959511,0.599926,2.694564 +-0.482684,0.877268,-0.827636,-1.959029,0.602338,2.695046 +-0.482924,0.877404,-0.830023,-1.958893,0.604727,2.695182 +-0.483506,0.877192,-0.832433,-1.959105,0.607043,2.694971 +-0.484419,0.876637,-0.834817,-1.959660,0.609239,2.694415 +-0.485644,0.875750,-0.837124,-1.960547,0.611268,2.693528 +-0.487156,0.874549,-0.839307,-1.961748,0.613089,2.692327 +-0.488922,0.873059,-0.841320,-1.963238,0.614662,2.690837 +-0.490906,0.871312,-0.843121,-1.964985,0.615957,2.689090 +-0.493067,0.869344,-0.844673,-1.966953,0.616944,2.687122 +-0.495360,0.867195,-0.845944,-1.969102,0.617605,2.684973 +-0.497736,0.864912,-0.846906,-1.971386,0.617925,2.682690 +-0.500147,0.862540,-0.847540,-1.973757,0.617898,2.680318 +-0.502542,0.860130,-0.847833,-1.976167,0.617524,2.677908 +-0.504872,0.857732,-0.847778,-1.978565,0.616810,2.675510 +-0.507087,0.855395,-0.847377,-1.980902,0.615773,2.673173 +-0.509142,0.853169,-0.846638,-1.983128,0.614433,2.670947 +-0.510993,0.851100,-0.845577,-1.985197,0.612818,2.668878 +-0.512603,0.849230,-0.844215,-1.987067,0.610962,2.667009 +-0.513938,0.847600,-0.842581,-1.988697,0.608904,2.665378 +-0.514969,0.846242,-0.840709,-1.990055,0.606686,2.664020 +-0.515676,0.845185,-0.838638,-1.991112,0.604355,2.662964 +-0.516044,0.844452,-0.836411,-1.991845,0.601959,2.662230 +-0.516065,0.844057,-0.834075,-1.992240,0.599548,2.661835 +-0.515738,0.844008,-0.831678,-1.992289,0.597173,2.661786 +-0.515071,0.844307,-0.829269,-1.991990,0.594882,2.662085 +-0.514077,0.844948,-0.826900,-1.991350,0.592724,2.662726 +-0.512777,0.845916,-0.824620,-1.990381,0.590744,2.663694 +-0.511198,0.847192,-0.822476,-1.989105,0.588982,2.664970 +-0.509373,0.848750,-0.820512,-1.987547,0.587476,2.666528 +-0.507341,0.850556,-0.818770,-1.985741,0.586257,2.668335 +-0.505142,0.852574,-0.817287,-1.983723,0.585349,2.670352 +-0.502824,0.854761,-0.816092,-1.981536,0.584773,2.672539 +-0.500434,0.857071,-0.815210,-1.979226,0.584541,2.674850 +-0.498022,0.859457,-0.814661,-1.976840,0.584656,2.677236 +-0.495639,0.861869,-0.814456,-1.974428,0.585116,2.679647 +-0.493334,0.864257,-0.814598,-1.972041,0.585913,2.682035 +-0.491155,0.866570,-0.815085,-1.969727,0.587029,2.684348 +-0.489147,0.868761,-0.815907,-1.967537,0.588441,2.686539 +-0.487353,0.870783,-0.817046,-1.965514,0.590120,2.688562 +-0.485810,0.872596,-0.818480,-1.963701,0.592031,2.690374 +-0.484549,0.874161,-0.820177,-1.962136,0.594134,2.691939 +-0.483598,0.875445,-0.822103,-1.960852,0.596385,2.693223 +-0.482975,0.876422,-0.824218,-1.959875,0.598737,2.694200 +-0.482694,0.877072,-0.826477,-1.959225,0.601141,2.694850 +-0.482761,0.877380,-0.828833,-1.958917,0.603548,2.695158 +-0.483175,0.877341,-0.831238,-1.958956,0.605906,2.695119 +-0.483926,0.876955,-0.833641,-1.959342,0.608168,2.694733 +-0.484999,0.876230,-0.835992,-1.960067,0.610285,2.694009 +-0.486372,0.875182,-0.838243,-1.961115,0.612214,2.692960 +-0.488016,0.873832,-0.840345,-1.962465,0.613915,2.691610 +-0.489897,0.872209,-0.842257,-1.964089,0.615351,2.689987 +-0.491976,0.870345,-0.843937,-1.965952,0.616494,2.688123 +-0.494209,0.868281,-0.845350,-1.968016,0.617319,2.686059 +-0.496550,0.866058,-0.846468,-1.970239,0.617810,2.683837 +-0.498950,0.863724,-0.847267,-1.972573,0.617955,2.681502 +-0.501359,0.861327,-0.847731,-1.974970,0.617752,2.679105 +-0.503728,0.858917,-0.847849,-1.977380,0.617206,2.676695 +-0.506005,0.856543,-0.847619,-1.979754,0.616327,2.674322 +-0.508145,0.854257,-0.847046,-1.982041,0.615134,2.672035 +-0.510103,0.852104,-0.846143,-1.984193,0.613651,2.669882 +-0.511837,0.850130,-0.844927,-1.986167,0.611910,2.667908 +-0.513312,0.848377,-0.843424,-1.987921,0.609947,2.666155 +-0.514497,0.846880,-0.841665,-1.989417,0.607803,2.664658 +-0.515367,0.845670,-0.839688,-1.990627,0.605522,2.663449 +-0.515905,0.844774,-0.837533,-1.991523,0.603152,2.662552 +-0.516098,0.844210,-0.835244,-1.992087,0.600743,2.661988 +-0.515943,0.843989,-0.832871,-1.992308,0.598343,2.661767 +-0.515444,0.844116,-0.830462,-1.992182,0.596005,2.661894 +-0.514610,0.844588,-0.828067,-1.991709,0.593775,2.662366 +-0.513459,0.845396,-0.825737,-1.990901,0.591701,2.663174 +-0.512014,0.846522,-0.823519,-1.989775,0.589826,2.664300 +-0.510307,0.847944,-0.821461,-1.988353,0.588189,2.665722 +-0.508372,0.849631,-0.819604,-1.986666,0.586824,2.667410 +-0.506251,0.851549,-0.817988,-1.984748,0.585759,2.669328 +-0.503986,0.853658,-0.816647,-1.982639,0.585017,2.671436 +-0.501625,0.855913,-0.815607,-1.980384,0.584613,2.673691 +-0.499218,0.858268,-0.814891,-1.978030,0.584555,2.676046 +-0.496814,0.860673,-0.814514,-1.975624,0.584845,2.678451 +-0.494465,0.863079,-0.814484,-1.973219,0.585477,2.680857 +-0.492217,0.865435,-0.814801,-1.970862,0.586437,2.683213 +-0.490119,0.867692,-0.815458,-1.968605,0.587706,2.685470 +-0.488214,0.869804,-0.816443,-1.966493,0.589256,2.687582 +-0.486542,0.871726,-0.817734,-1.964572,0.591057,2.689504 +-0.485137,0.873418,-0.819304,-1.962879,0.593070,2.691196 +-0.484030,0.874845,-0.821122,-1.961452,0.595253,2.692623 +-0.483242,0.875977,-0.823148,-1.960320,0.597560,2.693756 +-0.482790,0.876791,-0.825341,-1.959506,0.599945,2.694570 +-0.482685,0.877270,-0.827655,-1.959027,0.602357,2.695048 +-0.482927,0.877404,-0.830042,-1.958893,0.604745,2.695182 +-0.483512,0.877189,-0.832452,-1.959108,0.607061,2.694968 +-0.484428,0.876631,-0.834835,-1.959666,0.609256,2.694410 +-0.485655,0.875741,-0.837142,-1.960556,0.611283,2.693519 +-0.487169,0.874538,-0.839324,-1.961759,0.613102,2.692316 +-0.488937,0.873046,-0.841335,-1.963251,0.614674,2.690824 +-0.490923,0.871297,-0.843135,-1.965000,0.615966,2.689075 +-0.493085,0.869327,-0.844684,-1.966970,0.616951,2.687105 +-0.495378,0.867178,-0.845952,-1.969120,0.617609,2.684956 +-0.497755,0.864893,-0.846912,-1.971404,0.617927,2.682671 +-0.500166,0.862521,-0.847544,-1.973776,0.617896,2.680299 +-0.502561,0.860111,-0.847834,-1.976186,0.617519,2.677889 +-0.504890,0.857713,-0.847776,-1.978584,0.616803,2.675491 +-0.507104,0.855377,-0.847373,-1.980920,0.615763,2.673155 +-0.509157,0.853152,-0.846631,-1.983145,0.614421,2.670930 +-0.511007,0.851084,-0.845567,-1.985213,0.612804,2.668862 +-0.512615,0.849217,-0.844203,-1.987081,0.610946,2.666995 +-0.513947,0.847588,-0.842567,-1.988709,0.608887,2.665366 +-0.514976,0.846233,-0.840693,-1.990065,0.606668,2.664011 +-0.515681,0.845178,-0.838621,-1.991119,0.604336,2.662957 +-0.516046,0.844447,-0.836393,-1.991850,0.601940,2.662226 +-0.516064,0.844055,-0.834056,-1.992242,0.599529,2.661833 +-0.515734,0.844009,-0.831658,-1.992288,0.597154,2.661787 +-0.515064,0.844311,-0.829250,-1.991986,0.594865,2.662089 +-0.514068,0.844954,-0.826882,-1.991343,0.592708,2.662732 +-0.512766,0.845925,-0.824602,-1.990372,0.590729,2.663703 +-0.511185,0.847204,-0.822459,-1.989093,0.588969,2.664982 +-0.509358,0.848763,-0.820497,-1.987534,0.587465,2.666542 +-0.507324,0.850572,-0.818758,-1.985725,0.586248,2.668350 +-0.505124,0.852591,-0.817276,-1.983706,0.585344,2.670369 +-0.502805,0.854779,-0.816083,-1.981518,0.584770,2.672557 +-0.500415,0.857090,-0.815205,-1.979207,0.584540,2.674868 +-0.498003,0.859477,-0.814658,-1.976821,0.584658,2.677255 +-0.495620,0.861888,-0.814455,-1.974409,0.585121,2.679667 +-0.493316,0.864275,-0.814600,-1.972022,0.585921,2.682053 +-0.491138,0.866588,-0.815090,-1.969709,0.587039,2.684366 +-0.489132,0.868777,-0.815915,-1.967520,0.588454,2.686556 +-0.487340,0.870799,-0.817057,-1.965498,0.590135,2.688577 +-0.485799,0.872609,-0.818492,-1.963688,0.592047,2.690388 +-0.484540,0.874172,-0.820192,-1.962125,0.594151,2.691950 +-0.483591,0.875454,-0.822119,-1.960843,0.596403,2.693232 +-0.482971,0.876429,-0.824235,-1.959868,0.598756,2.694207 +-0.482693,0.877076,-0.826495,-1.959222,0.601160,2.694854 +-0.482763,0.877381,-0.828852,-1.958916,0.603567,2.695159 +-0.483179,0.877339,-0.831257,-1.958958,0.605925,2.695117 +-0.483933,0.876951,-0.833660,-1.959347,0.608185,2.694729 +-0.485009,0.876223,-0.836010,-1.960074,0.610301,2.694001 +-0.486384,0.875173,-0.838260,-1.961125,0.612229,2.692951 +-0.488030,0.873820,-0.840361,-1.962477,0.613927,2.691598 +-0.489913,0.872195,-0.842271,-1.964102,0.615362,2.689973 +-0.491993,0.870329,-0.843949,-1.965968,0.616502,2.688108 +-0.494227,0.868264,-0.845361,-1.968033,0.617325,2.686042 +-0.496569,0.866040,-0.846476,-1.970257,0.617812,2.683818 +-0.498969,0.863705,-0.847272,-1.972592,0.617955,2.681483 +-0.501378,0.861308,-0.847733,-1.974989,0.617749,2.679086 +-0.503746,0.858898,-0.847848,-1.977400,0.617200,2.676676 +-0.506023,0.856525,-0.847616,-1.979772,0.616319,2.674303 +-0.508162,0.854239,-0.847040,-1.982058,0.615123,2.672017 +-0.510118,0.852087,-0.846134,-1.984210,0.613638,2.669866 +-0.511850,0.850115,-0.844916,-1.986182,0.611896,2.667894 +-0.513323,0.848364,-0.843411,-1.987933,0.609931,2.666142 +-0.514505,0.846869,-0.841650,-1.989428,0.607785,2.664647 +-0.515373,0.845662,-0.839671,-1.990635,0.605504,2.663440 +-0.515908,0.844768,-0.837515,-1.991529,0.603133,2.662547 +-0.516098,0.844207,-0.835226,-1.992090,0.600723,2.661985 +-0.515941,0.843988,-0.832852,-1.992309,0.598325,2.661766 +-0.515438,0.844118,-0.830443,-1.992179,0.595987,2.661896 +-0.514602,0.844593,-0.828049,-1.991704,0.593758,2.662371 +-0.513448,0.845403,-0.825719,-1.990894,0.591686,2.663182 +-0.512002,0.846532,-0.823502,-1.989765,0.589812,2.664311 +-0.510293,0.847956,-0.821445,-1.988341,0.588177,2.665735 +-0.508356,0.849646,-0.819590,-1.986651,0.586814,2.667424 +-0.506233,0.851565,-0.817977,-1.984732,0.585752,2.669344 +-0.503967,0.853675,-0.816637,-1.982622,0.585012,2.671453 +-0.501606,0.855931,-0.815600,-1.980366,0.584611,2.673709 +-0.499199,0.858287,-0.814887,-1.978011,0.584556,2.676065 +-0.496796,0.860692,-0.814513,-1.975605,0.584849,2.678470 +-0.494446,0.863098,-0.814485,-1.973200,0.585483,2.680876 +-0.492200,0.865453,-0.814805,-1.970844,0.586446,2.683231 +-0.490103,0.867709,-0.815465,-1.968588,0.587717,2.685488 +-0.488200,0.869820,-0.816452,-1.966477,0.589270,2.687598 +-0.486530,0.871740,-0.817745,-1.964557,0.591072,2.689518 +-0.485127,0.873430,-0.819318,-1.962867,0.593086,2.691208 +-0.484022,0.874855,-0.821137,-1.961442,0.595270,2.692633 +-0.483237,0.875985,-0.823165,-1.960312,0.597579,2.693763 +-0.482788,0.876797,-0.825359,-1.959500,0.599964,2.694575 +-0.482685,0.877273,-0.827674,-1.959024,0.602376,2.695051 +-0.482930,0.877404,-0.830061,-1.958894,0.604764,2.695182 +-0.483518,0.877186,-0.832471,-1.959111,0.607079,2.694964 +-0.484436,0.876626,-0.834854,-1.959672,0.609273,2.694404 +-0.485666,0.875733,-0.837160,-1.960564,0.611299,2.693511 +-0.487182,0.874527,-0.839340,-1.961770,0.613116,2.692305 +-0.488952,0.873033,-0.841350,-1.963264,0.614685,2.690811 +-0.490939,0.871282,-0.843148,-1.965015,0.615975,2.689060 +-0.493103,0.869311,-0.844696,-1.966986,0.616958,2.687089 +-0.495397,0.867160,-0.845961,-1.969137,0.617613,2.684938 +-0.497774,0.864874,-0.846919,-1.971423,0.617928,2.682653 +-0.500186,0.862502,-0.847547,-1.973795,0.617895,2.680280 +-0.502580,0.860092,-0.847835,-1.976206,0.617515,2.677870 +-0.504908,0.857694,-0.847775,-1.978603,0.616796,2.675472 +-0.507121,0.855359,-0.847368,-1.980938,0.615754,2.673137 +-0.509173,0.853135,-0.846624,-1.983162,0.614409,2.670913 +-0.511021,0.851068,-0.845558,-1.985229,0.612790,2.668847 +-0.512627,0.849203,-0.844191,-1.987095,0.610931,2.666981 +-0.513957,0.847576,-0.842553,-1.988721,0.608870,2.665354 +-0.514983,0.846223,-0.840678,-1.990074,0.606650,2.664001 +-0.515685,0.845171,-0.838604,-1.991126,0.604317,2.662949 +-0.516047,0.844443,-0.836375,-1.991854,0.601921,2.662221 +-0.516062,0.844053,-0.834037,-1.992244,0.599510,2.661831 +-0.515730,0.844010,-0.831639,-1.992287,0.597136,2.661788 +-0.515058,0.844315,-0.829231,-1.991982,0.594847,2.662093 +-0.514059,0.844960,-0.826863,-1.991337,0.592691,2.662739 +-0.512754,0.845934,-0.824585,-1.990363,0.590714,2.663712 +-0.511171,0.847215,-0.822443,-1.989082,0.588956,2.664993 +-0.509343,0.848777,-0.820483,-1.987520,0.587454,2.666555 +-0.507307,0.850587,-0.818745,-1.985710,0.586240,2.668365 +-0.505106,0.852608,-0.817265,-1.983689,0.585338,2.670386 +-0.502786,0.854797,-0.816075,-1.981500,0.584767,2.672575 +-0.500396,0.857109,-0.815199,-1.979188,0.584540,2.674887 +-0.497984,0.859496,-0.814655,-1.976801,0.584660,2.677274 +-0.495602,0.861907,-0.814455,-1.974390,0.585126,2.679686 +-0.493298,0.864294,-0.814603,-1.972003,0.585928,2.682072 +-0.491122,0.866606,-0.815096,-1.969691,0.587049,2.684384 +-0.489117,0.868794,-0.815923,-1.967503,0.588466,2.686572 +-0.487327,0.870814,-0.817067,-1.965483,0.590149,2.688592 +-0.485787,0.872623,-0.818505,-1.963674,0.592063,2.690401 +-0.484532,0.874184,-0.820206,-1.962114,0.594169,2.691962 +-0.483585,0.875463,-0.822135,-1.960834,0.596421,2.693241 +-0.482968,0.876435,-0.824253,-1.959862,0.598775,2.694213 +-0.482693,0.877079,-0.826513,-1.959218,0.601180,2.694857 +-0.482765,0.877382,-0.828871,-1.958915,0.603586,2.695160 +-0.483184,0.877337,-0.831276,-1.958960,0.605943,2.695116 +-0.483941,0.876946,-0.833679,-1.959351,0.608203,2.694724 +-0.485019,0.876216,-0.836029,-1.960081,0.610317,2.693994 +-0.486396,0.875163,-0.838277,-1.961134,0.612243,2.692941 +-0.488044,0.873808,-0.840377,-1.962489,0.613940,2.691587 +-0.489929,0.872181,-0.842285,-1.964116,0.615372,2.689959 +-0.492010,0.870314,-0.843961,-1.965983,0.616510,2.688092 +-0.494246,0.868247,-0.845371,-1.968051,0.617330,2.686025 +-0.496588,0.866022,-0.846484,-1.970275,0.617815,2.683800 +-0.498989,0.863686,-0.847277,-1.972611,0.617955,2.681465 +-0.501398,0.861289,-0.847735,-1.975009,0.617746,2.679067 +-0.503765,0.858878,-0.847848,-1.977419,0.617194,2.676657 +-0.506041,0.856506,-0.847613,-1.979791,0.616310,2.674284 +-0.508178,0.854221,-0.847035,-1.982076,0.615112,2.671999 +-0.510132,0.852071,-0.846126,-1.984226,0.613625,2.669849 +-0.511863,0.850100,-0.844905,-1.986197,0.611881,2.667879 +-0.513333,0.848351,-0.843398,-1.987946,0.609915,2.666129 +-0.514513,0.846858,-0.841635,-1.989439,0.607768,2.664636 +-0.515379,0.845654,-0.839655,-1.990643,0.605485,2.663432 +-0.515911,0.844763,-0.837497,-1.991534,0.603114,2.662541 +-0.516098,0.844204,-0.835207,-1.992094,0.600704,2.661982 +-0.515938,0.843988,-0.832833,-1.992309,0.598306,2.661766 +-0.515433,0.844120,-0.830424,-1.992177,0.595968,2.661899 +-0.514594,0.844598,-0.828030,-1.991699,0.593741,2.662376 +-0.513438,0.845411,-0.825701,-1.990886,0.591670,2.663189 +-0.511989,0.846543,-0.823485,-1.989754,0.589798,2.664321 +-0.510278,0.847969,-0.821430,-1.988328,0.588165,2.665747 +-0.508340,0.849660,-0.819577,-1.986637,0.586804,2.667438 +-0.506216,0.851582,-0.817965,-1.984716,0.585745,2.669360 +-0.503949,0.853693,-0.816628,-1.982604,0.585008,2.671471 +-0.501587,0.855950,-0.815593,-1.980347,0.584609,2.673728 +-0.499180,0.858306,-0.814883,-1.977992,0.584557,2.676084 +-0.496777,0.860711,-0.814511,-1.975586,0.584853,2.678489 +-0.494428,0.863117,-0.814486,-1.973181,0.585490,2.680895 +-0.492182,0.865471,-0.814809,-1.970826,0.586455,2.683250 +-0.490087,0.867727,-0.815472,-1.968570,0.587728,2.685505 +-0.488186,0.869836,-0.816461,-1.966461,0.589283,2.687614 +-0.486517,0.871754,-0.817757,-1.964543,0.591087,2.689533 +-0.485117,0.873443,-0.819331,-1.962854,0.593103,2.691221 +-0.484014,0.874865,-0.821152,-1.961432,0.595288,2.692644 +-0.483232,0.875993,-0.823182,-1.960304,0.597598,2.693771 +-0.482786,0.876802,-0.825377,-1.959495,0.599983,2.694580 +-0.482686,0.877275,-0.827693,-1.959022,0.602395,2.695053 +-0.482933,0.877403,-0.830080,-1.958894,0.604783,2.695181 +-0.483524,0.877183,-0.832491,-1.959114,0.607097,2.694961 +-0.484445,0.876620,-0.834873,-1.959677,0.609289,2.694398 +-0.485677,0.875725,-0.837178,-1.960573,0.611314,2.693503 +-0.487195,0.874516,-0.839357,-1.961781,0.613129,2.692295 +-0.488967,0.873020,-0.841366,-1.963277,0.614697,2.690798 +-0.490956,0.871267,-0.843161,-1.965030,0.615984,2.689046 +-0.493121,0.869294,-0.844707,-1.967003,0.616964,2.687073 +-0.495416,0.867142,-0.845970,-1.969155,0.617617,2.684920 +-0.497794,0.864856,-0.846925,-1.971441,0.617929,2.682634 +-0.500205,0.862483,-0.847551,-1.973814,0.617893,2.680261 +-0.502599,0.860072,-0.847836,-1.976225,0.617511,2.677851 +-0.504926,0.857675,-0.847773,-1.978622,0.616789,2.675453 +-0.507138,0.855341,-0.847364,-1.980957,0.615744,2.673119 +-0.509188,0.853118,-0.846617,-1.983179,0.614397,2.670896 +-0.511035,0.851053,-0.845548,-1.985244,0.612776,2.668831 +-0.512638,0.849189,-0.844179,-1.987108,0.610915,2.666967 +-0.513966,0.847564,-0.842539,-1.988733,0.608852,2.665342 +-0.514990,0.846213,-0.840662,-1.990084,0.606631,2.663992 +-0.515689,0.845164,-0.838587,-1.991133,0.604298,2.662942 +-0.516049,0.844438,-0.836357,-1.991859,0.601901,2.662217 +-0.516061,0.844051,-0.834018,-1.992246,0.599491,2.661830 +-0.515726,0.844011,-0.831620,-1.992286,0.597117,2.661789 +-0.515051,0.844318,-0.829212,-1.991979,0.594829,2.662097 +-0.514049,0.844967,-0.826845,-1.991330,0.592675,2.662745 +-0.512743,0.845943,-0.824567,-1.990354,0.590699,2.663721 +-0.511157,0.847226,-0.822427,-1.989071,0.588943,2.665005 +-0.509327,0.848790,-0.820468,-1.987507,0.587443,2.666568 +-0.507290,0.850602,-0.818732,-1.985695,0.586231,2.668380 +-0.505088,0.852624,-0.817255,-1.983673,0.585332,2.670403 +-0.502767,0.854815,-0.816067,-1.981482,0.584764,2.672593 +-0.500376,0.857128,-0.815193,-1.979169,0.584539,2.674906 +-0.497965,0.859515,-0.814652,-1.976782,0.584663,2.677293 +-0.495583,0.861927,-0.814455,-1.974370,0.585132,2.679705 +-0.493280,0.864313,-0.814606,-1.971984,0.585936,2.682091 +-0.491105,0.866624,-0.815101,-1.969674,0.587060,2.684402 +-0.489102,0.868811,-0.815931,-1.967486,0.588479,2.686589 +-0.487313,0.870829,-0.817077,-1.965468,0.590163,2.688607 +-0.485776,0.872636,-0.818517,-1.963661,0.592079,2.690415 +-0.484523,0.874195,-0.820221,-1.962102,0.594186,2.691973 +-0.483579,0.875472,-0.822152,-1.960825,0.596440,2.693250 +-0.482964,0.876442,-0.824270,-1.959856,0.598794,2.694220 +-0.482692,0.877083,-0.826532,-1.959214,0.601199,2.694861 +-0.482767,0.877383,-0.828890,-1.958914,0.603605,2.695161 +-0.483189,0.877336,-0.831295,-1.958961,0.605962,2.695114 +-0.483948,0.876942,-0.833698,-1.959356,0.608220,2.694720 +-0.485029,0.876209,-0.836047,-1.960088,0.610333,2.693987 +-0.486408,0.875153,-0.838295,-1.961144,0.612258,2.692932 +-0.488059,0.873797,-0.840393,-1.962501,0.613952,2.691575 +-0.489945,0.872167,-0.842300,-1.964130,0.615382,2.689945 +-0.492028,0.870298,-0.843974,-1.965999,0.616518,2.688076 +-0.494264,0.868229,-0.845381,-1.968068,0.617335,2.686008 +-0.496607,0.866004,-0.846491,-1.970293,0.617817,2.683782 +-0.499008,0.863668,-0.847282,-1.972630,0.617954,2.681446 +-0.501417,0.861269,-0.847738,-1.975028,0.617743,2.679048 +-0.503783,0.858859,-0.847847,-1.977438,0.617189,2.676638 +-0.506058,0.856488,-0.847609,-1.979810,0.616302,2.674266 +-0.508194,0.854203,-0.847029,-1.982094,0.615102,2.671982 +-0.510147,0.852055,-0.846117,-1.984243,0.613613,2.669833 +-0.511876,0.850086,-0.844894,-1.986212,0.611866,2.667864 +-0.513344,0.848338,-0.843385,-1.987959,0.609898,2.666116 +-0.514522,0.846847,-0.841620,-1.989450,0.607750,2.664625 +-0.515384,0.845645,-0.839638,-1.990652,0.605466,2.663424 +-0.515913,0.844757,-0.837479,-1.991540,0.603095,2.662535 +-0.516098,0.844200,-0.835189,-1.992097,0.600685,2.661979 +-0.515935,0.843988,-0.832814,-1.992310,0.598287,2.661766 +-0.515428,0.844123,-0.830405,-1.992174,0.595950,2.661901 +-0.514586,0.844603,-0.828011,-1.991694,0.593724,2.662381 +-0.513427,0.845419,-0.825683,-1.990878,0.591654,2.663197 +-0.511977,0.846553,-0.823468,-1.989744,0.589784,2.664331 +-0.510263,0.847981,-0.821414,-1.988316,0.588153,2.665760 +-0.508324,0.849675,-0.819563,-1.986622,0.586795,2.667453 +-0.506198,0.851598,-0.817953,-1.984699,0.585737,2.669376 +-0.503930,0.853710,-0.816618,-1.982587,0.585003,2.671488 +-0.501568,0.855968,-0.815586,-1.980329,0.584607,2.673746 +-0.499160,0.858325,-0.814878,-1.977973,0.584558,2.676103 +-0.496758,0.860730,-0.814509,-1.975567,0.584856,2.678509 +-0.494409,0.863136,-0.814487,-1.973162,0.585496,2.680914 +-0.492165,0.865490,-0.814813,-1.970807,0.586464,2.683268 +-0.490071,0.867744,-0.815478,-1.968553,0.587739,2.685522 +-0.488171,0.869852,-0.816470,-1.966445,0.589297,2.687630 +-0.486505,0.871769,-0.817768,-1.964528,0.591103,2.689547 +-0.485107,0.873455,-0.819345,-1.962842,0.593120,2.691233 +-0.484007,0.874876,-0.821168,-1.961422,0.595306,2.692654 +-0.483227,0.876001,-0.823198,-1.960297,0.597617,2.693779 +-0.482784,0.876807,-0.825395,-1.959490,0.600003,2.694585 +-0.482686,0.877278,-0.827711,-1.959020,0.602414,2.695056 +-0.482937,0.877403,-0.830100,-1.958894,0.604802,2.695181 +-0.483530,0.877180,-0.832510,-1.959117,0.607115,2.694958 +-0.484454,0.876614,-0.834892,-1.959683,0.609306,2.694392 +-0.485688,0.875716,-0.837196,-1.960581,0.611329,2.693494 +-0.487208,0.874506,-0.839374,-1.961792,0.613143,2.692284 +-0.488982,0.873007,-0.841381,-1.963290,0.614708,2.690785 +-0.490972,0.871253,-0.843175,-1.965045,0.615993,2.689031 +-0.493138,0.869278,-0.844718,-1.967019,0.616971,2.687056 +-0.495434,0.867124,-0.845979,-1.969173,0.617621,2.684903 +-0.497813,0.864837,-0.846931,-1.971460,0.617930,2.682615 +-0.500224,0.862464,-0.847555,-1.973834,0.617891,2.680242 +-0.502618,0.860053,-0.847836,-1.976244,0.617506,2.677831 +-0.504944,0.857656,-0.847771,-1.978641,0.616782,2.675434 +-0.507155,0.855322,-0.847359,-1.980975,0.615735,2.673101 +-0.509204,0.853101,-0.846610,-1.983196,0.614385,2.670879 +-0.511048,0.851037,-0.845538,-1.985260,0.612762,2.668815 +-0.512650,0.849175,-0.844167,-1.987122,0.610899,2.666953 +-0.513975,0.847552,-0.842525,-1.988745,0.608835,2.665331 +-0.514997,0.846204,-0.840646,-1.990093,0.606613,2.663982 +-0.515693,0.845157,-0.838570,-1.991140,0.604279,2.662935 +-0.516050,0.844434,-0.836338,-1.991863,0.601882,2.662212 +-0.516060,0.844050,-0.833999,-1.992247,0.599472,2.661828 +-0.515722,0.844012,-0.831601,-1.992285,0.597098,2.661790 +-0.515044,0.844322,-0.829193,-1.991975,0.594811,2.662100 +-0.514040,0.844973,-0.826826,-1.991324,0.592658,2.662752 +-0.512731,0.845952,-0.824549,-1.990345,0.590684,2.663730 +-0.511144,0.847238,-0.822410,-1.989059,0.588930,2.665016 +-0.509312,0.848804,-0.820453,-1.987493,0.587433,2.666582 +-0.507273,0.850618,-0.818719,-1.985680,0.586223,2.668396 +-0.505070,0.852641,-0.817244,-1.983656,0.585326,2.670419 +-0.502749,0.854833,-0.816059,-1.981464,0.584761,2.672611 +-0.500357,0.857146,-0.815188,-1.979151,0.584539,2.674925 +-0.497946,0.859534,-0.814649,-1.976763,0.584665,2.677312 +-0.495564,0.861946,-0.814455,-1.974351,0.585137,2.679724 +-0.493262,0.864332,-0.814608,-1.971966,0.585944,2.682110 +-0.491088,0.866642,-0.815106,-1.969656,0.587070,2.684420 +-0.489087,0.868828,-0.815938,-1.967469,0.588491,2.686606 +-0.487300,0.870844,-0.817088,-1.965453,0.590178,2.688623 +-0.485765,0.872650,-0.818530,-1.963647,0.592095,2.690428 +-0.484514,0.874206,-0.820235,-1.962091,0.594203,2.691984 +-0.483573,0.875481,-0.822168,-1.960816,0.596458,2.693259 +-0.482961,0.876448,-0.824288,-1.959849,0.598813,2.694226 +-0.482691,0.877087,-0.826550,-1.959210,0.601218,2.694865 +-0.482769,0.877384,-0.828909,-1.958913,0.603624,2.695162 +-0.483194,0.877334,-0.831315,-1.958963,0.605980,2.695112 +-0.483955,0.876937,-0.833717,-1.959360,0.608238,2.694715 +-0.485038,0.876202,-0.836066,-1.960095,0.610350,2.693980 +-0.486420,0.875144,-0.838312,-1.961153,0.612272,2.692922 +-0.488073,0.873785,-0.840409,-1.962513,0.613965,2.691563 +-0.489961,0.872153,-0.842314,-1.964144,0.615392,2.689931 +-0.492045,0.870282,-0.843986,-1.966015,0.616525,2.688061 +-0.494282,0.868212,-0.845391,-1.968085,0.617340,2.685990 +-0.496626,0.865986,-0.846499,-1.970312,0.617820,2.683764 +-0.499027,0.863649,-0.847287,-1.972649,0.617954,2.681427 +-0.501436,0.861250,-0.847740,-1.975047,0.617740,2.679028 +-0.503802,0.858840,-0.847847,-1.977457,0.617183,2.676618 +-0.506076,0.856469,-0.847606,-1.979828,0.616294,2.674247 +-0.508211,0.854186,-0.847023,-1.982111,0.615091,2.671964 +-0.510162,0.852038,-0.846109,-1.984259,0.613600,2.669816 +-0.511888,0.850071,-0.844883,-1.986226,0.611851,2.667849 +-0.513354,0.848325,-0.843371,-1.987972,0.609882,2.666103 +-0.514530,0.846837,-0.841605,-1.989461,0.607732,2.664615 +-0.515390,0.845637,-0.839622,-1.990660,0.605448,2.663415 +-0.515916,0.844751,-0.837462,-1.991546,0.603076,2.662529 +-0.516099,0.844197,-0.835170,-1.992100,0.600666,2.661976 +-0.515933,0.843987,-0.832795,-1.992310,0.598268,2.661766 +-0.515422,0.844125,-0.830385,-1.992172,0.595932,2.661903 +-0.514578,0.844608,-0.827992,-1.991689,0.593707,2.662387 +-0.513417,0.845427,-0.825664,-1.990870,0.591638,2.663205 +-0.511964,0.846563,-0.823451,-1.989734,0.589770,2.664341 +-0.510249,0.847994,-0.821399,-1.988303,0.588141,2.665772 +-0.508308,0.849689,-0.819549,-1.986608,0.586785,2.667467 +-0.506180,0.851614,-0.817941,-1.984683,0.585730,2.669392 +-0.503912,0.853728,-0.816609,-1.982570,0.584999,2.671506 +-0.501549,0.855987,-0.815579,-1.980311,0.584606,2.673765 +-0.499141,0.858344,-0.814874,-1.977954,0.584559,2.676122 +-0.496739,0.860750,-0.814508,-1.975548,0.584860,2.678528 +-0.494391,0.863155,-0.814489,-1.973143,0.585502,2.680933 +-0.492148,0.865508,-0.814817,-1.970789,0.586473,2.683286 +-0.490055,0.867762,-0.815485,-1.968535,0.587751,2.685540 +-0.488157,0.869868,-0.816479,-1.966429,0.589310,2.687646 +-0.486493,0.871783,-0.817780,-1.964514,0.591118,2.689561 +-0.485097,0.873467,-0.819358,-1.962830,0.593137,2.691246 +-0.483999,0.874886,-0.821183,-1.961411,0.595324,2.692664 +-0.483222,0.876008,-0.823215,-1.960289,0.597635,2.693786 +-0.482782,0.876812,-0.825413,-1.959485,0.600022,2.694590 +-0.482687,0.877280,-0.827730,-1.959017,0.602433,2.695058 +-0.482940,0.877402,-0.830119,-1.958895,0.604821,2.695181 +-0.483536,0.877177,-0.832529,-1.959120,0.607133,2.694955 +-0.484462,0.876608,-0.834910,-1.959689,0.609323,2.694386 +-0.485699,0.875708,-0.837213,-1.960589,0.611345,2.693486 +-0.487221,0.874495,-0.839390,-1.961802,0.613156,2.692273 +-0.488997,0.872994,-0.841396,-1.963303,0.614719,2.690772 +-0.490989,0.871238,-0.843188,-1.965059,0.616002,2.689016 +-0.493156,0.869261,-0.844729,-1.967036,0.616977,2.687040 +-0.495453,0.867107,-0.845988,-1.969190,0.617625,2.684885 +-0.497832,0.864819,-0.846937,-1.971479,0.617931,2.682597 +-0.500243,0.862444,-0.847558,-1.973853,0.617890,2.680223 +-0.502637,0.860034,-0.847837,-1.976263,0.617502,2.677812 +-0.504962,0.857637,-0.847769,-1.978660,0.616775,2.675415 +-0.507172,0.855304,-0.847354,-1.980993,0.615725,2.673082 +-0.509220,0.853084,-0.846602,-1.983214,0.614374,2.670862 +-0.511062,0.851021,-0.845528,-1.985276,0.612748,2.668800 +-0.512662,0.849161,-0.844155,-1.987136,0.610884,2.666939 +-0.513985,0.847541,-0.842511,-1.988757,0.608818,2.665319 +-0.515004,0.846194,-0.840630,-1.990103,0.606595,2.663972 +-0.515698,0.845150,-0.838552,-1.991147,0.604260,2.662928 +-0.516052,0.844430,-0.836320,-1.991867,0.601863,2.662208 +-0.516058,0.844048,-0.833980,-1.992249,0.599453,2.661826 +-0.515718,0.844013,-0.831582,-1.992284,0.597080,2.661792 +-0.515037,0.844326,-0.829174,-1.991971,0.594794,2.662104 +-0.514031,0.844980,-0.826808,-1.991317,0.592642,2.662758 +-0.512719,0.845961,-0.824532,-1.990336,0.590669,2.663739 +-0.511130,0.847249,-0.822394,-1.989048,0.588917,2.665027 +-0.509296,0.848817,-0.820438,-1.987480,0.587422,2.666595 +-0.507256,0.850633,-0.818706,-1.985664,0.586214,2.668411 +-0.505052,0.852658,-0.817233,-1.983639,0.585320,2.670436 +-0.502730,0.854851,-0.816050,-1.981446,0.584758,2.672629 +-0.500338,0.857165,-0.815182,-1.979132,0.584539,2.674943 +-0.497927,0.859553,-0.814646,-1.976744,0.584667,2.677331 +-0.495546,0.861965,-0.814455,-1.974332,0.585142,2.679743 +-0.493245,0.864350,-0.814611,-1.971947,0.585952,2.682128 +-0.491071,0.866659,-0.815111,-1.969638,0.587080,2.684438 +-0.489072,0.868844,-0.815946,-1.967453,0.588503,2.686623 +-0.487287,0.870860,-0.817098,-1.965437,0.590192,2.688638 +-0.485754,0.872663,-0.818542,-1.963634,0.592111,2.690441 +-0.484505,0.874217,-0.820250,-1.962080,0.594221,2.691996 +-0.483566,0.875490,-0.822184,-1.960807,0.596477,2.693268 +-0.482957,0.876454,-0.824305,-1.959843,0.598832,2.694233 +-0.482690,0.877091,-0.826569,-1.959207,0.601237,2.694869 +-0.482771,0.877385,-0.828928,-1.958912,0.603643,2.695163 +-0.483198,0.877332,-0.831334,-1.958965,0.605998,2.695110 +-0.483963,0.876933,-0.833736,-1.959365,0.608255,2.694711 +-0.485048,0.876195,-0.836084,-1.960102,0.610366,2.693973 +-0.486433,0.875134,-0.838329,-1.961163,0.612286,2.692912 +-0.488087,0.873773,-0.840425,-1.962525,0.613977,2.691551 +-0.489976,0.872139,-0.842328,-1.964158,0.615403,2.689917 +-0.492062,0.870267,-0.843998,-1.966031,0.616533,2.688045 +-0.494300,0.868195,-0.845401,-1.968102,0.617345,2.685973 +-0.496645,0.865967,-0.846506,-1.970330,0.617822,2.683745 +-0.499046,0.863630,-0.847292,-1.972667,0.617954,2.681408 +-0.501455,0.861231,-0.847742,-1.975066,0.617737,2.679009 +-0.503820,0.858821,-0.847846,-1.977476,0.617177,2.676599 +-0.506093,0.856450,-0.847603,-1.979847,0.616285,2.674229 +-0.508227,0.854168,-0.847017,-1.982129,0.615080,2.671946 +-0.510176,0.852022,-0.846100,-1.984275,0.613587,2.669800 +-0.511901,0.850056,-0.844872,-1.986241,0.611836,2.667834 +-0.513365,0.848312,-0.843358,-1.987985,0.609865,2.666090 +-0.514538,0.846826,-0.841590,-1.989471,0.607715,2.664604 +-0.515395,0.845629,-0.839605,-1.990668,0.605429,2.663407 +-0.515919,0.844745,-0.837444,-1.991552,0.603057,2.662524 +-0.516099,0.844194,-0.835151,-1.992103,0.600647,2.661973 +-0.515930,0.843987,-0.832776,-1.992310,0.598249,2.661765 +-0.515417,0.844128,-0.830366,-1.992169,0.595914,2.661906 +-0.514570,0.844614,-0.827973,-1.991683,0.593689,2.662392 +-0.513407,0.845435,-0.825646,-1.990863,0.591623,2.663213 +-0.511951,0.846573,-0.823434,-1.989724,0.589756,2.664352 +-0.510234,0.848006,-0.821383,-1.988291,0.588129,2.665785 +-0.508291,0.849704,-0.819535,-1.986593,0.586776,2.667482 +-0.506163,0.851630,-0.817929,-1.984667,0.585723,2.669408 +-0.503893,0.853745,-0.816599,-1.982552,0.584994,2.671523 +-0.501530,0.856005,-0.815572,-1.980292,0.584604,2.673783 +-0.499122,0.858363,-0.814870,-1.977935,0.584560,2.676141 +-0.496720,0.860769,-0.814506,-1.975528,0.584864,2.678547 +-0.494373,0.863174,-0.814490,-1.973124,0.585509,2.680952 +-0.492130,0.865527,-0.814821,-1.970770,0.586482,2.683305 +-0.490039,0.867779,-0.815491,-1.968518,0.587762,2.685557 +-0.488143,0.869884,-0.816489,-1.966413,0.589323,2.687662 +-0.486481,0.871798,-0.817791,-1.964500,0.591133,2.689576 +-0.485087,0.873480,-0.819372,-1.962817,0.593153,2.691258 +-0.483992,0.874896,-0.821198,-1.961401,0.595342,2.692674 +-0.483217,0.876016,-0.823232,-1.960281,0.597654,2.693794 +-0.482779,0.876817,-0.825431,-1.959480,0.600041,2.694595 +-0.482688,0.877282,-0.827749,-1.959015,0.602453,2.695060 +-0.482944,0.877402,-0.830138,-1.958895,0.604839,2.695180 +-0.483542,0.877174,-0.832548,-1.959123,0.607151,2.694952 +-0.484471,0.876602,-0.834929,-1.959695,0.609340,2.694380 +-0.485710,0.875699,-0.837231,-1.960598,0.611360,2.693477 +-0.487235,0.874484,-0.839407,-1.961813,0.613170,2.692262 +-0.489012,0.872981,-0.841411,-1.963316,0.614731,2.690759 +-0.491006,0.871223,-0.843201,-1.965074,0.616011,2.689001 +-0.493174,0.869245,-0.844740,-1.967052,0.616984,2.687023 +-0.495472,0.867089,-0.845997,-1.969208,0.617628,2.684867 +-0.497851,0.864800,-0.846944,-1.971497,0.617932,2.682578 +-0.500262,0.862425,-0.847562,-1.973872,0.617888,2.680204 +-0.502655,0.860015,-0.847838,-1.976282,0.617497,2.677793 +-0.504980,0.857618,-0.847767,-1.978679,0.616768,2.675397 +-0.507189,0.855286,-0.847350,-1.981011,0.615716,2.673064 +-0.509235,0.853066,-0.846595,-1.983231,0.614362,2.670845 +-0.511076,0.851006,-0.845519,-1.985291,0.612734,2.668784 +-0.512673,0.849147,-0.844143,-1.987150,0.610868,2.666925 +-0.513994,0.847529,-0.842497,-1.988768,0.608801,2.665307 +-0.515011,0.846185,-0.840615,-1.990112,0.606577,2.663963 +-0.515702,0.845143,-0.838535,-1.991154,0.604241,2.662921 +-0.516053,0.844425,-0.836302,-1.991872,0.601844,2.662203 +-0.516057,0.844046,-0.833961,-1.992251,0.599434,2.661825 +-0.515714,0.844014,-0.831562,-1.992283,0.597061,2.661793 +-0.515031,0.844330,-0.829155,-1.991967,0.594776,2.662108 +-0.514022,0.844986,-0.826789,-1.991311,0.592625,2.662765 +-0.512708,0.845970,-0.824514,-1.990327,0.590654,2.663748 +-0.511116,0.847261,-0.822378,-1.989037,0.588904,2.665039 +-0.509281,0.848831,-0.820424,-1.987466,0.587411,2.666609 +-0.507239,0.850648,-0.818693,-1.985649,0.586206,2.668426 +-0.505034,0.852675,-0.817223,-1.983622,0.585314,2.670453 +-0.502711,0.854869,-0.816042,-1.981428,0.584754,2.672647 +-0.500319,0.857184,-0.815176,-1.979113,0.584538,2.674962 +-0.497907,0.859572,-0.814644,-1.976725,0.584670,2.677351 +-0.495527,0.861984,-0.814455,-1.974313,0.585147,2.679762 +-0.493227,0.864369,-0.814613,-1.971928,0.585959,2.682147 +-0.491055,0.866677,-0.815117,-1.969620,0.587090,2.684456 +-0.489057,0.868861,-0.815954,-1.967436,0.588516,2.686639 +-0.487274,0.870875,-0.817108,-1.965422,0.590207,2.688653 +-0.485743,0.872677,-0.818555,-1.963621,0.592127,2.690455 +-0.484496,0.874229,-0.820264,-1.962068,0.594238,2.692007 +-0.483560,0.875499,-0.822200,-1.960798,0.596495,2.693277 +-0.482954,0.876461,-0.824323,-1.959836,0.598851,2.694239 +-0.482690,0.877094,-0.826587,-1.959203,0.601256,2.694872 +-0.482773,0.877386,-0.828947,-1.958911,0.603662,2.695164 +-0.483203,0.877330,-0.831353,-1.958967,0.606017,2.695108 +-0.483970,0.876928,-0.833755,-1.959369,0.608272,2.694706 +-0.485058,0.876188,-0.836102,-1.960110,0.610382,2.693966 +-0.486445,0.875124,-0.838347,-1.961173,0.612301,2.692903 +-0.488101,0.873761,-0.840441,-1.962536,0.613990,2.691539 +-0.489992,0.872125,-0.842342,-1.964172,0.615413,2.689903 +-0.492079,0.870251,-0.844010,-1.966046,0.616541,2.688029 +-0.494319,0.868178,-0.845411,-1.968119,0.617351,2.685956 +-0.496664,0.865949,-0.846514,-1.970348,0.617825,2.683727 +-0.499065,0.863611,-0.847297,-1.972686,0.617953,2.681389 +-0.501474,0.861212,-0.847744,-1.975085,0.617734,2.678990 +-0.503839,0.858802,-0.847846,-1.977495,0.617171,2.676580 +-0.506111,0.856432,-0.847599,-1.979865,0.616277,2.674210 +-0.508243,0.854150,-0.847011,-1.982147,0.615069,2.671929 +-0.510191,0.852005,-0.846091,-1.984292,0.613574,2.669783 +-0.511914,0.850041,-0.844861,-1.986256,0.611821,2.667819 +-0.513376,0.848299,-0.843345,-1.987998,0.609849,2.666077 +-0.514546,0.846815,-0.841575,-1.989482,0.607697,2.664593 +-0.515401,0.845620,-0.839589,-1.990677,0.605411,2.663399 +-0.515922,0.844740,-0.837426,-1.991557,0.603038,2.662518 +-0.516099,0.844191,-0.835133,-1.992106,0.600627,2.661970 +-0.515927,0.843987,-0.832757,-1.992310,0.598230,2.661765 +-0.515411,0.844130,-0.830347,-1.992167,0.595895,2.661908 +-0.514562,0.844619,-0.827954,-1.991678,0.593672,2.662397 +-0.513396,0.845442,-0.825628,-1.990855,0.591607,2.663221 +-0.511939,0.846584,-0.823417,-1.989713,0.589742,2.664362 +-0.510220,0.848019,-0.821367,-1.988278,0.588117,2.665797 +-0.508275,0.849718,-0.819521,-1.986579,0.586766,2.667496 +-0.506145,0.851646,-0.817918,-1.984651,0.585716,2.669424 +-0.503875,0.853763,-0.816590,-1.982535,0.584990,2.671541 +-0.501511,0.856023,-0.815565,-1.980274,0.584602,2.673802 +-0.499103,0.858382,-0.814865,-1.977916,0.584561,2.676160 +-0.496701,0.860788,-0.814505,-1.975509,0.584868,2.678566 +-0.494355,0.863193,-0.814491,-1.973105,0.585515,2.680971 +-0.492113,0.865545,-0.814825,-1.970752,0.586491,2.683323 +-0.490023,0.867797,-0.815498,-1.968501,0.587773,2.685575 +-0.488129,0.869900,-0.816498,-1.966397,0.589337,2.687678 +-0.486468,0.871812,-0.817803,-1.964485,0.591148,2.689590 +-0.485077,0.873492,-0.819386,-1.962805,0.593170,2.691270 +-0.483985,0.874906,-0.821214,-1.961391,0.595360,2.692684 +-0.483212,0.876024,-0.823249,-1.960273,0.597673,2.693802 +-0.482777,0.876822,-0.825449,-1.959475,0.600060,2.694600 +-0.482688,0.877285,-0.827768,-1.959013,0.602472,2.695063 +-0.482947,0.877402,-0.830157,-1.958896,0.604858,2.695180 +-0.483548,0.877170,-0.832567,-1.959127,0.607169,2.694949 +-0.484479,0.876596,-0.834948,-1.959701,0.609357,2.694374 +-0.485721,0.875691,-0.837249,-1.960606,0.611375,2.693469 +-0.487248,0.874473,-0.839424,-1.961824,0.613183,2.692251 +-0.489027,0.872968,-0.841426,-1.963329,0.614742,2.690746 +-0.491022,0.871208,-0.843214,-1.965089,0.616020,2.688986 +-0.493192,0.869228,-0.844752,-1.967069,0.616990,2.687007 +-0.495490,0.867071,-0.846005,-1.969226,0.617632,2.684849 +-0.497870,0.864781,-0.846950,-1.971516,0.617933,2.682559 +-0.500281,0.862406,-0.847565,-1.973891,0.617886,2.680184 +-0.502674,0.859996,-0.847839,-1.976302,0.617493,2.677774 +-0.504999,0.857599,-0.847765,-1.978698,0.616761,2.675378 +-0.507206,0.855268,-0.847345,-1.981029,0.615706,2.673046 +-0.509251,0.853049,-0.846588,-1.983248,0.614350,2.670828 +-0.511090,0.850990,-0.845509,-1.985307,0.612721,2.668768 +-0.512685,0.849133,-0.844131,-1.987164,0.610852,2.666911 +-0.514004,0.847517,-0.842483,-1.988780,0.608784,2.665295 +-0.515017,0.846175,-0.840599,-1.990122,0.606559,2.663953 +-0.515706,0.845136,-0.838518,-1.991161,0.604223,2.662914 +-0.516054,0.844421,-0.836284,-1.991876,0.601825,2.662199 +-0.516056,0.844045,-0.833942,-1.992252,0.599414,2.661823 +-0.515710,0.844016,-0.831543,-1.992281,0.597043,2.661794 +-0.515024,0.844334,-0.829136,-1.991963,0.594758,2.662112 +-0.514012,0.844993,-0.826771,-1.991304,0.592609,2.662771 +-0.512696,0.845979,-0.824497,-1.990318,0.590640,2.663757 +-0.511103,0.847272,-0.822361,-1.989025,0.588891,2.665050 +-0.509265,0.848844,-0.820409,-1.987453,0.587400,2.666622 +-0.507222,0.850664,-0.818681,-1.985634,0.586198,2.668442 +-0.505016,0.852692,-0.817212,-1.983605,0.585309,2.670470 +-0.502692,0.854887,-0.816034,-1.981410,0.584751,2.672665 +-0.500300,0.857203,-0.815171,-1.979094,0.584538,2.674981 +-0.497888,0.859592,-0.814641,-1.976706,0.584672,2.677370 +-0.495508,0.862003,-0.814454,-1.974294,0.585152,2.679781 +-0.493209,0.864388,-0.814616,-1.971909,0.585967,2.682166 +-0.491038,0.866695,-0.815122,-1.969602,0.587100,2.684474 +-0.489042,0.868878,-0.815962,-1.967419,0.588528,2.686656 +-0.487260,0.870890,-0.817119,-1.965407,0.590221,2.688668 +-0.485732,0.872690,-0.818568,-1.963607,0.592144,2.690468 +-0.484488,0.874240,-0.820279,-1.962057,0.594256,2.692018 +-0.483554,0.875508,-0.822216,-1.960789,0.596513,2.693286 +-0.482950,0.876467,-0.824340,-1.959830,0.598870,2.694245 +-0.482689,0.877098,-0.826606,-1.959199,0.601276,2.694876 +-0.482775,0.877387,-0.828966,-1.958910,0.603681,2.695165 +-0.483208,0.877328,-0.831372,-1.958969,0.606035,2.695107 +-0.483977,0.876923,-0.833774,-1.959374,0.608290,2.694702 +-0.485068,0.876180,-0.836121,-1.960117,0.610398,2.693958 +-0.486457,0.875115,-0.838364,-1.961182,0.612315,2.692893 +-0.488115,0.873749,-0.840457,-1.962548,0.614002,2.691527 +-0.490008,0.872111,-0.842357,-1.964186,0.615423,2.689889 +-0.492097,0.870235,-0.844023,-1.966062,0.616549,2.688013 +-0.494337,0.868161,-0.845421,-1.968136,0.617356,2.685939 +-0.496683,0.865931,-0.846522,-1.970366,0.617827,2.683709 +-0.499085,0.863592,-0.847302,-1.972705,0.617953,2.681370 +-0.501493,0.861193,-0.847747,-1.975104,0.617731,2.678971 +-0.503857,0.858783,-0.847845,-1.977514,0.617166,2.676561 +-0.506129,0.856413,-0.847596,-1.979884,0.616268,2.674191 +-0.508259,0.854133,-0.847005,-1.982164,0.615058,2.671911 +-0.510206,0.851989,-0.846083,-1.984308,0.613561,2.669767 +-0.511926,0.850026,-0.844850,-1.986271,0.611807,2.667805 +-0.513386,0.848286,-0.843332,-1.988011,0.609832,2.666064 +-0.514554,0.846804,-0.841560,-1.989493,0.607679,2.664583 +-0.515406,0.845612,-0.839572,-1.990685,0.605392,2.663390 +-0.515925,0.844734,-0.837408,-1.991563,0.603019,2.662512 +-0.516099,0.844188,-0.835114,-1.992109,0.600608,2.661967 +-0.515925,0.843987,-0.832737,-1.992311,0.598211,2.661765 +-0.515406,0.844133,-0.830328,-1.992164,0.595877,2.661911 +-0.514554,0.844624,-0.827935,-1.991673,0.593655,2.662402 +-0.513386,0.845450,-0.825610,-1.990847,0.591591,2.663228 +-0.511926,0.846594,-0.823400,-1.989703,0.589728,2.664372 +-0.510205,0.848031,-0.821352,-1.988266,0.588106,2.665810 +-0.508259,0.849733,-0.819508,-1.986565,0.586756,2.667511 +-0.506128,0.851662,-0.817906,-1.984635,0.585709,2.669440 +-0.503856,0.853780,-0.816580,-1.982517,0.584985,2.671558 +-0.501492,0.856042,-0.815558,-1.980255,0.584600,2.673820 +-0.499084,0.858401,-0.814861,-1.977896,0.584562,2.676179 +-0.496682,0.860807,-0.814503,-1.975490,0.584871,2.678585 +-0.494336,0.863212,-0.814492,-1.973086,0.585522,2.680990 +-0.492096,0.865563,-0.814829,-1.970734,0.586500,2.683342 +-0.490007,0.867814,-0.815505,-1.968483,0.587785,2.685592 +-0.488114,0.869916,-0.816507,-1.966381,0.589350,2.687694 +-0.486456,0.871826,-0.817814,-1.964471,0.591164,2.689604 +-0.485068,0.873505,-0.819399,-1.962793,0.593187,2.691283 +-0.483977,0.874916,-0.821229,-1.961381,0.595378,2.692694 +-0.483208,0.876031,-0.823266,-1.960266,0.597692,2.693809 +-0.482775,0.876827,-0.825467,-1.959470,0.600079,2.694605 +-0.482689,0.877287,-0.827787,-1.959010,0.602491,2.695065 +-0.482767,0.877383,-0.828890,-1.958910,0.603604,2.695160 +-0.482917,0.877402,-0.830006,-1.958890,0.604709,2.695180 +-0.483137,0.877341,-0.831132,-1.958930,0.605802,2.695120 +-0.483424,0.877198,-0.832265,-1.959040,0.606880,2.694970 +-0.483776,0.876970,-0.833403,-1.959210,0.607940,2.694740 +-0.484190,0.876654,-0.834543,-1.959440,0.608979,2.694410 +-0.484664,0.876248,-0.835682,-1.959720,0.609994,2.694000 +-0.485194,0.875750,-0.836819,-1.960060,0.610981,2.693480 +-0.485778,0.875156,-0.837949,-1.960450,0.611937,2.692870 +-0.486414,0.874465,-0.839072,-1.960880,0.612861,2.692160 +-0.487099,0.873673,-0.840184,-1.961360,0.613747,2.691340 +-0.487831,0.872778,-0.841282,-1.961880,0.614594,2.690410 +-0.488606,0.871777,-0.842364,-1.962430,0.615397,2.689370 +-0.489423,0.870668,-0.843428,-1.963020,0.616155,2.688210 +-0.490278,0.869450,-0.844470,-1.963640,0.616864,2.686940 +-0.491169,0.868126,-0.845489,-1.964290,0.617520,2.685540 +-0.492094,0.866699,-0.846481,-1.964960,0.618121,2.684020 +-0.493049,0.865170,-0.847444,-1.965650,0.618663,2.682380 +-0.494033,0.863543,-0.848376,-1.966370,0.619144,2.680600 +-0.495043,0.861820,-0.849273,-1.967090,0.619561,2.678690 +-0.496076,0.860004,-0.850133,-1.967830,0.619909,2.676640 +-0.497129,0.858098,-0.850955,-1.968580,0.620187,2.674450 +-0.498200,0.856103,-0.851734,-1.969340,0.620390,2.672120 +-0.499286,0.854023,-0.852468,-1.970100,0.620516,2.669640 +-0.500385,0.851859,-0.853156,-1.970860,0.620562,2.667020 +-0.501494,0.849616,-0.853793,-1.971610,0.620525,2.664240 +-0.502610,0.847295,-0.854378,-1.972360,0.620402,2.661310 +-0.503732,0.844899,-0.854908,-1.973100,0.620188,2.658220 +-0.504856,0.842430,-0.855381,-1.973820,0.619882,2.654980 +-0.505979,0.839892,-0.855793,-1.974540,0.619480,2.651580 +-0.507099,0.837286,-0.856143,-1.975230,0.618980,2.648020 +-0.508215,0.834615,-0.856427,-1.975900,0.618377,2.644310 +-0.509322,0.831883,-0.856644,-1.976540,0.617669,2.640450 +-0.510418,0.829091,-0.856790,-1.977160,0.616857,2.636420 +-0.511501,0.826242,-0.856862,-1.977750,0.615942,2.632250 +-0.512568,0.823338,-0.856859,-1.978300,0.614928,2.627910 +-0.513617,0.820383,-0.856778,-1.978810,0.613818,2.623430 +-0.514644,0.817379,-0.856615,-1.979290,0.612615,2.618780 +-0.515648,0.814328,-0.856369,-1.979720,0.611322,2.613980 +-0.516626,0.811234,-0.856037,-1.980100,0.609943,2.609030 +-0.517575,0.808098,-0.855616,-1.980430,0.608480,2.603920 +-0.518492,0.804923,-0.855104,-1.980710,0.606937,2.598650 +-0.519375,0.801712,-0.854498,-1.980940,0.605317,2.593230 +-0.520222,0.798468,-0.853796,-1.981100,0.603622,2.587650 +-0.521030,0.795193,-0.852994,-1.981200,0.601856,2.581920 +-0.521795,0.791889,-0.852091,-1.981240,0.600023,2.576030 +-0.522516,0.788560,-0.851083,-1.981210,0.598124,2.569990 +-0.523191,0.785207,-0.849968,-1.981100,0.596164,2.563790 +-0.523815,0.781834,-0.848744,-1.980930,0.594146,2.557440 +-0.524387,0.778443,-0.847408,-1.980670,0.592071,2.550930 +-0.524905,0.775037,-0.845957,-1.980330,0.589945,2.544260 +-0.525365,0.771618,-0.844394,-1.979910,0.587769,2.537440 +-0.525765,0.768188,-0.842720,-1.979400,0.585546,2.530470 +-0.526103,0.764752,-0.840939,-1.978800,0.583281,2.523330 +-0.526375,0.761310,-0.839052,-1.978110,0.580976,2.516050 +-0.526579,0.757865,-0.837063,-1.977320,0.578634,2.508600 +-0.526713,0.754421,-0.834974,-1.976440,0.576258,2.501000 +-0.526774,0.750976,-0.832787,-1.975440,0.573852,2.493250 +-0.526760,0.747532,-0.830506,-1.974350,0.571418,2.485340 +-0.526667,0.744087,-0.828132,-1.973140,0.568959,2.477280 +-0.526494,0.740643,-0.825669,-1.971820,0.566480,2.469050 +-0.526237,0.737198,-0.823119,-1.970390,0.563982,2.460680 +-0.525894,0.733753,-0.820484,-1.968840,0.561469,2.452150 +-0.525463,0.730309,-0.817768,-1.967160,0.558944,2.443460 +-0.524940,0.726864,-0.814972,-1.965370,0.556410,2.434620 +-0.524324,0.723420,-0.812100,-1.963440,0.553871,2.425620 +-0.523611,0.719975,-0.809154,-1.961380,0.551329,2.416460 +-0.522802,0.716530,-0.806136,-1.959190,0.548786,2.407150 +-0.521900,0.713086,-0.803049,-1.956870,0.546244,2.397690 +-0.520906,0.709641,-0.799897,-1.954400,0.543701,2.388070 +-0.519824,0.706197,-0.796680,-1.951790,0.541159,2.378290 +-0.518655,0.702752,-0.793403,-1.949030,0.538616,2.368360 +-0.517404,0.699307,-0.790067,-1.946130,0.536074,2.358280 +-0.516071,0.695863,-0.786676,-1.943070,0.533532,2.348030 +-0.514661,0.692418,-0.783231,-1.939850,0.530989,2.337630 +-0.513175,0.688974,-0.779735,-1.936480,0.528447,2.327080 +-0.511616,0.685529,-0.776192,-1.932960,0.525904,2.316370 +-0.509986,0.682085,-0.772603,-1.929280,0.523362,2.305510 +-0.508289,0.678640,-0.768971,-1.925440,0.520819,2.294500 +-0.506526,0.675195,-0.765298,-1.921450,0.518277,2.283350 +-0.504701,0.671751,-0.761589,-1.917300,0.515735,2.272050 +-0.502816,0.668306,-0.757844,-1.913000,0.513192,2.260610 +-0.500873,0.664862,-0.754066,-1.908540,0.510650,2.249030 +-0.498876,0.661417,-0.750259,-1.903930,0.508107,2.237320 +-0.496827,0.657972,-0.746425,-1.899160,0.505565,2.225480 +-0.494728,0.654528,-0.742565,-1.894240,0.503022,2.213510 +-0.492581,0.651083,-0.738684,-1.889160,0.500480,2.201420 +-0.490391,0.647639,-0.734783,-1.883920,0.497938,2.189210 +-0.488158,0.644194,-0.730865,-1.878530,0.495395,2.176880 +-0.485887,0.640750,-0.726933,-1.872980,0.492853,2.164430 +-0.483578,0.637305,-0.722990,-1.867280,0.490310,2.151870 +-0.481236,0.633860,-0.719037,-1.861420,0.487768,2.139210 +-0.478862,0.630416,-0.715078,-1.855410,0.485225,2.126430 +-0.476460,0.626971,-0.711114,-1.849240,0.482683,2.113560 +-0.474031,0.623527,-0.707150,-1.842920,0.480140,2.100580 +-0.471578,0.620082,-0.703185,-1.836440,0.477598,2.087510 +-0.469105,0.616637,-0.699220,-1.829800,0.475056,2.074350 +-0.466613,0.613193,-0.695256,-1.823010,0.472513,2.061090 +-0.464105,0.609748,-0.691291,-1.816060,0.469971,2.047750 +-0.461584,0.606304,-0.687327,-1.808960,0.467428,2.034330 +-0.459052,0.602859,-0.683362,-1.801700,0.464886,2.020820 +-0.456512,0.599415,-0.679397,-1.794290,0.462343,2.007240 +-0.453967,0.595970,-0.675433,-1.786720,0.459801,1.993580 +-0.451419,0.592525,-0.671468,-1.779000,0.457259,1.979850 +-0.448870,0.589081,-0.667503,-1.771120,0.454716,1.966050 +-0.446321,0.585636,-0.663539,-1.763080,0.452174,1.952190 +-0.443772,0.582192,-0.659574,-1.754890,0.449631,1.938260 +-0.441223,0.578747,-0.655609,-1.746550,0.447089,1.924280 +-0.438674,0.575302,-0.651645,-1.738050,0.444546,1.910240 +-0.436126,0.571858,-0.647680,-1.729390,0.442004,1.896140 +-0.433577,0.568413,-0.643715,-1.720580,0.439462,1.882000 +-0.431028,0.564969,-0.639751,-1.711610,0.436919,1.867810 +-0.428479,0.561524,-0.635786,-1.702480,0.434377,1.853580 +-0.425930,0.558079,-0.631821,-1.693200,0.431834,1.839300 +-0.423382,0.554635,-0.627857,-1.683770,0.429292,1.824990 +-0.420833,0.551190,-0.623892,-1.674180,0.426749,1.810650 +-0.418284,0.547746,-0.619927,-1.664430,0.424207,1.796270 +-0.415735,0.544301,-0.615963,-1.654530,0.421664,1.781870 +-0.413186,0.540857,-0.611998,-1.644480,0.419122,1.767440 +-0.410637,0.537412,-0.608033,-1.634280,0.416580,1.752990 +-0.408089,0.533967,-0.604069,-1.623940,0.414037,1.738520 +-0.405540,0.530523,-0.600104,-1.613450,0.411495,1.724040 +-0.402991,0.527078,-0.596139,-1.602830,0.408952,1.709540 +-0.400442,0.523634,-0.592175,-1.592070,0.406410,1.695030 +-0.397893,0.520189,-0.588210,-1.581170,0.403867,1.680520 +-0.395344,0.516744,-0.584245,-1.570150,0.401325,1.666010 +-0.392796,0.513300,-0.580281,-1.559000,0.398783,1.651490 +-0.390247,0.509855,-0.576316,-1.547730,0.396240,1.636980 +-0.387698,0.506411,-0.572351,-1.536330,0.393698,1.622460 +-0.385149,0.502966,-0.568387,-1.524820,0.391155,1.607940 +-0.382600,0.499522,-0.564422,-1.513200,0.388613,1.593430 +-0.380051,0.496077,-0.560457,-1.501470,0.386070,1.578910 +-0.377503,0.492632,-0.556493,-1.489620,0.383528,1.564400 +-0.374954,0.489188,-0.552528,-1.477680,0.380986,1.549880 +-0.372405,0.485743,-0.548563,-1.465630,0.378443,1.535370 +-0.369856,0.482299,-0.544599,-1.453480,0.375901,1.520850 +-0.367307,0.478854,-0.540634,-1.441240,0.373358,1.506340 +-0.364759,0.475409,-0.536669,-1.428910,0.370816,1.491820 +-0.362210,0.471965,-0.532705,-1.416480,0.368273,1.477300 +-0.359661,0.468520,-0.528740,-1.403970,0.365731,1.462790 +-0.357112,0.465076,-0.524775,-1.391380,0.363188,1.448270 +-0.354563,0.461631,-0.520811,-1.378710,0.360646,1.433760 +-0.352014,0.458187,-0.516846,-1.365960,0.358104,1.419240 +-0.349466,0.454742,-0.512881,-1.353140,0.355561,1.404730 +-0.346917,0.451297,-0.508917,-1.340250,0.353019,1.390210 +-0.344368,0.447853,-0.504952,-1.327290,0.350476,1.375700 +-0.341819,0.444408,-0.500987,-1.314260,0.347934,1.361180 +-0.339270,0.440964,-0.497023,-1.301180,0.345391,1.346660 +-0.336721,0.437519,-0.493058,-1.288040,0.342849,1.332150 +-0.334173,0.434074,-0.489093,-1.274840,0.340307,1.317630 +-0.331624,0.430630,-0.485129,-1.261590,0.337764,1.303120 +-0.329075,0.427185,-0.481164,-1.248290,0.335222,1.288600 +-0.326526,0.423741,-0.477199,-1.234950,0.332679,1.274090 +-0.323977,0.420296,-0.473235,-1.221560,0.330137,1.259570 +-0.321428,0.416851,-0.469270,-1.208140,0.327594,1.245050 +-0.318880,0.413407,-0.465305,-1.194680,0.325052,1.230540 +-0.316331,0.409962,-0.461341,-1.181190,0.322510,1.216020 +-0.313782,0.406518,-0.457376,-1.167660,0.319967,1.201510 +-0.311233,0.403073,-0.453411,-1.154110,0.317425,1.186990 +-0.308684,0.399629,-0.449447,-1.140540,0.314882,1.172480 +-0.306135,0.396184,-0.445482,-1.126940,0.312340,1.157960 +-0.303587,0.392739,-0.441517,-1.113330,0.309797,1.143450 +-0.301038,0.389295,-0.437553,-1.099700,0.307255,1.128930 +-0.298489,0.385850,-0.433588,-1.086060,0.304712,1.114410 +-0.295940,0.382406,-0.429624,-1.072420,0.302170,1.099900 +-0.293391,0.378961,-0.425659,-1.058760,0.299628,1.085380 +-0.290843,0.375516,-0.421694,-1.045110,0.297085,1.070870 +-0.288294,0.372072,-0.417730,-1.031460,0.294543,1.056350 +-0.285745,0.368627,-0.413765,-1.017800,0.292000,1.041840 +-0.283196,0.365183,-0.409800,-1.004150,0.289458,1.027320 +-0.280647,0.361738,-0.405836,-0.990497,0.286915,1.012810 +-0.278098,0.358294,-0.401871,-0.976843,0.284373,0.998302 +-0.275550,0.354849,-0.397906,-0.963189,0.281831,0.983804 +-0.273001,0.351404,-0.393942,-0.949536,0.279288,0.969319 +-0.270452,0.347960,-0.389977,-0.935882,0.276746,0.954848 +-0.267903,0.344515,-0.386012,-0.922230,0.274203,0.940397 +-0.265354,0.341071,-0.382048,-0.908581,0.271661,0.925966 +-0.262805,0.337626,-0.378083,-0.894941,0.269118,0.911560 +-0.260257,0.334181,-0.374118,-0.881310,0.266576,0.897182 +-0.257708,0.330737,-0.370154,-0.867693,0.264034,0.882834 +-0.255159,0.327292,-0.366189,-0.854093,0.261491,0.868521 +-0.252610,0.323848,-0.362224,-0.840512,0.258949,0.854244 +-0.250061,0.320403,-0.358260,-0.826955,0.256406,0.840008 +-0.247512,0.316959,-0.354295,-0.813423,0.253864,0.825814 +-0.244964,0.313514,-0.350330,-0.799921,0.251321,0.811667 +-0.242415,0.310069,-0.346366,-0.786450,0.248779,0.797570 +-0.239866,0.306625,-0.342401,-0.773015,0.246236,0.783525 +-0.237317,0.303180,-0.338436,-0.759618,0.243694,0.769536 +-0.234768,0.299736,-0.334472,-0.746263,0.241152,0.755605 +-0.232220,0.296291,-0.330507,-0.732953,0.238609,0.741736 +-0.229671,0.292846,-0.326542,-0.719690,0.236067,0.727933 +-0.227122,0.289402,-0.322578,-0.706478,0.233524,0.714197 +-0.224573,0.285957,-0.318613,-0.693320,0.230982,0.700533 +-0.222024,0.282513,-0.314648,-0.680219,0.228439,0.686943 +-0.219475,0.279068,-0.310684,-0.667179,0.225897,0.673430 +-0.216927,0.275623,-0.306719,-0.654201,0.223355,0.659998 +-0.214378,0.272179,-0.302754,-0.641290,0.220812,0.646649 +-0.211829,0.268734,-0.298790,-0.628449,0.218270,0.633388 +-0.209280,0.265290,-0.294825,-0.615680,0.215727,0.620216 +-0.206731,0.261845,-0.290860,-0.602987,0.213185,0.607137 +-0.204182,0.258401,-0.286896,-0.590373,0.210642,0.594154 +-0.201634,0.254956,-0.282931,-0.577841,0.208100,0.581271 +-0.199085,0.251511,-0.278966,-0.565393,0.205558,0.568490 +-0.196536,0.248067,-0.275002,-0.553034,0.203015,0.555814 +-0.193987,0.244622,-0.271037,-0.540767,0.200473,0.543247 +-0.191438,0.241178,-0.267072,-0.528594,0.197930,0.530791 +-0.188889,0.237733,-0.263108,-0.516518,0.195388,0.518450 +-0.186341,0.234288,-0.259143,-0.504543,0.192845,0.506227 +-0.183792,0.230844,-0.255178,-0.492671,0.190303,0.494125 +-0.181243,0.227399,-0.251214,-0.480907,0.187760,0.482147 +-0.178694,0.223955,-0.247249,-0.469252,0.185218,0.470296 +-0.176145,0.220510,-0.243284,-0.457711,0.182676,0.458576 +-0.173596,0.217066,-0.239320,-0.446285,0.180133,0.446989 +-0.171048,0.213621,-0.235355,-0.434979,0.177591,0.435538 +-0.168499,0.210176,-0.231390,-0.423796,0.175048,0.424228 +-0.165950,0.206732,-0.227426,-0.412737,0.172506,0.413060 +-0.163401,0.203287,-0.223461,-0.401808,0.169963,0.402037 +-0.160852,0.199843,-0.219496,-0.391010,0.167421,0.391164 +-0.158304,0.196398,-0.215532,-0.380347,0.164879,0.380443 +-0.155755,0.192953,-0.211567,-0.369822,0.162336,0.369877 +-0.153206,0.189509,-0.207602,-0.359438,0.159794,0.359466 +-0.150657,0.186064,-0.203638,-0.349199,0.157251,0.349210 +-0.148108,0.182620,-0.199673,-0.339106,0.154709,0.339111 +-0.145559,0.179175,-0.195708,-0.329164,0.152166,0.329166 +-0.143011,0.175730,-0.191744,-0.319375,0.149624,0.319378 +-0.140462,0.172286,-0.187779,-0.309742,0.147082,0.309744 +-0.137913,0.168841,-0.183814,-0.300265,0.144539,0.300267 +-0.135364,0.165397,-0.179850,-0.290942,0.141997,0.290945 +-0.132815,0.161952,-0.175885,-0.281776,0.139454,0.281778 +-0.130266,0.158508,-0.171921,-0.272765,0.136912,0.272767 +-0.127718,0.155063,-0.167956,-0.263909,0.134369,0.263911 +-0.125169,0.151618,-0.163991,-0.255209,0.131827,0.255211 +-0.122620,0.148174,-0.160027,-0.246664,0.129284,0.246667 +-0.120071,0.144729,-0.156062,-0.238275,0.126742,0.238278 +-0.117522,0.141285,-0.152097,-0.230042,0.124200,0.230044 +-0.114973,0.137840,-0.148135,-0.221964,0.121657,0.221966 +-0.112425,0.134395,-0.144177,-0.214042,0.119115,0.214044 +-0.109876,0.130951,-0.140225,-0.206275,0.116572,0.206277 +-0.107327,0.127506,-0.136284,-0.198663,0.114030,0.198665 +-0.104778,0.124062,-0.132355,-0.191207,0.111487,0.191210 +-0.102229,0.120618,-0.128440,-0.183907,0.108945,0.183909 +-0.099681,0.117179,-0.124543,-0.176762,0.106403,0.176764 +-0.097132,0.113745,-0.120666,-0.169773,0.103860,0.169775 +-0.094583,0.110320,-0.116812,-0.162939,0.101318,0.162941 +-0.092034,0.106907,-0.112983,-0.156261,0.098775,0.156263 +-0.089485,0.103508,-0.109181,-0.149738,0.096233,0.149740 +-0.086936,0.100126,-0.105411,-0.143371,0.093690,0.143373 +-0.084388,0.096762,-0.101673,-0.137159,0.091148,0.137162 +-0.081839,0.093421,-0.097970,-0.131103,0.088606,0.131105 +-0.079290,0.090104,-0.094306,-0.125203,0.086063,0.125205 +-0.076742,0.086814,-0.090683,-0.119458,0.083521,0.119460 +-0.074197,0.083553,-0.087103,-0.113868,0.080978,0.113870 +-0.071658,0.080325,-0.083569,-0.108434,0.078436,0.108436 +-0.069127,0.077132,-0.080084,-0.103155,0.075893,0.103158 +-0.066608,0.073976,-0.076650,-0.098032,0.073351,0.098035 +-0.064101,0.070860,-0.073270,-0.093065,0.070809,0.093067 +-0.061611,0.067786,-0.069945,-0.088253,0.068269,0.088255 +-0.059140,0.064758,-0.066681,-0.083597,0.065734,0.083599 +-0.056690,0.061778,-0.063477,-0.079096,0.063208,0.079098 +-0.054264,0.058848,-0.060338,-0.074750,0.060694,0.074753 +-0.051865,0.055971,-0.057265,-0.070560,0.058194,0.070563 +-0.049494,0.053149,-0.054262,-0.066526,0.055712,0.066528 +-0.047156,0.050386,-0.051331,-0.062647,0.053252,0.062649 +-0.044852,0.047684,-0.048474,-0.058922,0.050815,0.058924 +-0.042584,0.045045,-0.045695,-0.055348,0.048405,0.055350 +-0.040356,0.042471,-0.042995,-0.051921,0.046026,0.051923 +-0.038171,0.039967,-0.040378,-0.048638,0.043680,0.048640 +-0.036030,0.037533,-0.037845,-0.045497,0.041371,0.045499 +-0.033936,0.035174,-0.035400,-0.042494,0.039101,0.042496 +-0.031893,0.032891,-0.033046,-0.039626,0.036874,0.039629 +-0.029902,0.030686,-0.030783,-0.036891,0.034693,0.036893 +-0.027965,0.028563,-0.028617,-0.034284,0.032561,0.034286 +-0.026087,0.026525,-0.026548,-0.031803,0.030481,0.031805 +-0.024269,0.024573,-0.024579,-0.029444,0.028456,0.029446 +-0.022514,0.022710,-0.022711,-0.027205,0.026489,0.027208 +-0.020824,0.020940,-0.020939,-0.025083,0.024584,0.025085 +-0.019203,0.019262,-0.019262,-0.023074,0.022744,0.023076 +-0.017652,0.017678,-0.017677,-0.021175,0.020970,0.021177 +-0.016174,0.016182,-0.016182,-0.019384,0.019268,0.019386 +-0.014772,0.014773,-0.014773,-0.017696,0.017640,0.017698 +-0.013449,0.013449,-0.013448,-0.016109,0.016088,0.016111 +-0.012206,0.012206,-0.012206,-0.014620,0.014616,0.014622 +-0.011042,0.011042,-0.011042,-0.013226,0.013228,0.013228 +-0.009955,0.009955,-0.009954,-0.011923,0.011926,0.011925 +-0.008941,0.008941,-0.008941,-0.010709,0.010712,0.010711 +-0.007999,0.007999,-0.007999,-0.009580,0.009583,0.009582 +-0.007125,0.007125,-0.007125,-0.008533,0.008536,0.008536 +-0.006318,0.006318,-0.006317,-0.007566,0.007569,0.007568 +-0.005574,0.005574,-0.005573,-0.006674,0.006677,0.006677 +-0.004890,0.004890,-0.004890,-0.005856,0.005859,0.005858 +-0.004265,0.004265,-0.004265,-0.005107,0.005110,0.005109 +-0.003696,0.003696,-0.003696,-0.004425,0.004428,0.004427 +-0.003180,0.003180,-0.003179,-0.003807,0.003809,0.003809 +-0.002714,0.002714,-0.002713,-0.003248,0.003251,0.003251 +-0.002296,0.002296,-0.002296,-0.002748,0.002751,0.002750 +-0.001923,0.001923,-0.001923,-0.002301,0.002304,0.002304 +-0.001593,0.001593,-0.001593,-0.001906,0.001909,0.001908 +-0.001304,0.001304,-0.001303,-0.001559,0.001562,0.001561 +-0.001051,0.001051,-0.001051,-0.001256,0.001259,0.001259 +-0.000834,0.000834,-0.000833,-0.000996,0.000999,0.000998 +-0.000648,0.000648,-0.000648,-0.000774,0.000777,0.000776 +-0.000493,0.000493,-0.000493,-0.000588,0.000591,0.000590 +-0.000365,0.000365,-0.000364,-0.000434,0.000437,0.000436 +-0.000261,0.000261,-0.000260,-0.000310,0.000312,0.000312 +-0.000179,0.000179,-0.000178,-0.000211,0.000214,0.000214 +-0.000116,0.000116,-0.000116,-0.000136,0.000139,0.000138 +-0.000070,0.000070,-0.000070,-0.000081,0.000084,0.000083 +-0.000038,0.000038,-0.000038,-0.000043,0.000046,0.000045 +-0.000018,0.000018,-0.000018,-0.000019,0.000022,0.000021 +-0.000007,0.000007,-0.000006,-0.000005,0.000008,0.000008 +-0.000002,0.000002,-0.000001,0.000001,0.000002,0.000002 +-0.000001,0.000001,-0.000000,0.000002,0.000001,0.000000 +-0.000001,0.000001,-0.000000,0.000002,0.000001,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record6.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record6.offt new file mode 100644 index 00000000..6f9d67db --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record6.offt @@ -0,0 +1,1951 @@ +-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000 +-0.000000,0.000009,-0.000001,0.000002,0.000002,0.000000 +-0.000001,0.000010,-0.000002,0.000000,0.000003,0.000002 +-0.000006,0.000015,-0.000007,-0.000006,0.000009,0.000007 +-0.000018,0.000026,-0.000018,-0.000019,0.000023,0.000021 +-0.000038,0.000047,-0.000039,-0.000044,0.000047,0.000045 +-0.000070,0.000078,-0.000070,-0.000081,0.000085,0.000083 +-0.000115,0.000124,-0.000116,-0.000136,0.000140,0.000138 +-0.000178,0.000187,-0.000179,-0.000211,0.000215,0.000213 +-0.000260,0.000268,-0.000260,-0.000309,0.000313,0.000311 +-0.000363,0.000372,-0.000364,-0.000434,0.000437,0.000435 +-0.000492,0.000500,-0.000492,-0.000587,0.000591,0.000589 +-0.000647,0.000656,-0.000648,-0.000773,0.000777,0.000775 +-0.000832,0.000841,-0.000833,-0.000995,0.000998,0.000997 +-0.001049,0.001058,-0.001050,-0.001255,0.001259,0.001257 +-0.001301,0.001310,-0.001302,-0.001557,0.001561,0.001559 +-0.001591,0.001600,-0.001592,-0.001904,0.001908,0.001906 +-0.001921,0.001929,-0.001921,-0.002299,0.002303,0.002301 +-0.002293,0.002302,-0.002294,-0.002745,0.002749,0.002747 +-0.002711,0.002719,-0.002711,-0.003246,0.003249,0.003247 +-0.003176,0.003185,-0.003177,-0.003803,0.003807,0.003805 +-0.003692,0.003701,-0.003693,-0.004421,0.004425,0.004423 +-0.004261,0.004270,-0.004262,-0.005103,0.005107,0.005105 +-0.004886,0.004894,-0.004886,-0.005851,0.005855,0.005853 +-0.005569,0.005577,-0.005569,-0.006669,0.006673,0.006671 +-0.006312,0.006321,-0.006313,-0.007560,0.007564,0.007562 +-0.007120,0.007128,-0.007120,-0.008527,0.008531,0.008529 +-0.007993,0.008001,-0.007993,-0.009574,0.009577,0.009575 +-0.008931,0.008943,-0.008935,-0.010702,0.010704,0.010704 +-0.009934,0.009956,-0.009948,-0.011916,0.011910,0.011917 +-0.010996,0.011043,-0.011035,-0.013218,0.013192,0.013219 +-0.012117,0.012207,-0.012199,-0.014611,0.014545,0.014613 +-0.013294,0.013449,-0.013441,-0.016100,0.015969,0.016101 +-0.014523,0.014773,-0.014765,-0.017686,0.017458,0.017687 +-0.015802,0.016181,-0.016173,-0.019373,0.019011,0.019374 +-0.017129,0.017676,-0.017668,-0.021164,0.020624,0.021166 +-0.018502,0.019260,-0.019252,-0.023062,0.022294,0.023064 +-0.019916,0.020937,-0.020924,-0.025070,0.024017,0.025072 +-0.021371,0.022707,-0.022683,-0.027192,0.025792,0.027194 +-0.022863,0.024568,-0.024524,-0.029430,0.027614,0.029432 +-0.024389,0.026519,-0.026446,-0.031788,0.029480,0.031789 +-0.025948,0.028557,-0.028446,-0.034268,0.031388,0.034270 +-0.027536,0.030678,-0.030522,-0.036874,0.033334,0.036876 +-0.029152,0.032881,-0.032670,-0.039609,0.035315,0.039611 +-0.030791,0.035163,-0.034888,-0.042476,0.037329,0.042477 +-0.032452,0.037521,-0.037174,-0.045478,0.039371,0.045479 +-0.034133,0.039952,-0.039525,-0.048618,0.041439,0.048620 +-0.035829,0.042455,-0.041939,-0.051900,0.043530,0.051901 +-0.037540,0.045026,-0.044412,-0.055326,0.045640,0.055327 +-0.039262,0.047662,-0.046943,-0.058899,0.047767,0.058901 +-0.040993,0.050362,-0.049528,-0.062623,0.049908,0.062625 +-0.042730,0.053123,-0.052165,-0.066501,0.052058,0.066503 +-0.044471,0.055941,-0.054852,-0.070534,0.054216,0.070536 +-0.046212,0.058815,-0.057585,-0.074723,0.056378,0.074725 +-0.047954,0.061742,-0.060363,-0.079068,0.058541,0.079069 +-0.049695,0.064719,-0.063183,-0.083568,0.060704,0.083569 +-0.051437,0.067744,-0.066041,-0.088223,0.062868,0.088225 +-0.053179,0.070813,-0.068936,-0.093034,0.065031,0.093036 +-0.054920,0.073926,-0.071865,-0.098000,0.067194,0.098002 +-0.056662,0.077077,-0.074825,-0.103122,0.069357,0.103124 +-0.058403,0.080267,-0.077814,-0.108398,0.071520,0.108402 +-0.060145,0.083491,-0.080828,-0.113823,0.073683,0.113835 +-0.061887,0.086747,-0.083867,-0.119396,0.075846,0.119423 +-0.063628,0.090032,-0.086926,-0.125114,0.078009,0.125167 +-0.065370,0.093344,-0.090003,-0.130972,0.080172,0.131067 +-0.067111,0.096681,-0.093097,-0.136968,0.082335,0.137122 +-0.068853,0.100039,-0.096203,-0.143099,0.084498,0.143333 +-0.070595,0.103417,-0.099320,-0.149362,0.086661,0.149699 +-0.072336,0.106810,-0.102444,-0.155754,0.088824,0.156221 +-0.074078,0.110218,-0.105574,-0.162271,0.090987,0.162898 +-0.075819,0.113637,-0.108707,-0.168910,0.093150,0.169731 +-0.077561,0.117065,-0.111840,-0.175669,0.095314,0.176719 +-0.079303,0.120498,-0.114973,-0.182544,0.097477,0.183863 +-0.081044,0.123936,-0.118106,-0.189532,0.099640,0.191162 +-0.082786,0.127374,-0.121239,-0.196629,0.101803,0.198617 +-0.084528,0.130812,-0.124373,-0.203834,0.103966,0.206227 +-0.086269,0.134251,-0.127506,-0.211143,0.106129,0.213993 +-0.088011,0.137689,-0.130639,-0.218552,0.108292,0.221915 +-0.089752,0.141127,-0.133772,-0.226059,0.110455,0.229992 +-0.091494,0.144565,-0.136905,-0.233660,0.112618,0.238224 +-0.093235,0.148004,-0.140038,-0.241352,0.114781,0.246612 +-0.094977,0.151442,-0.143171,-0.249133,0.116944,0.255156 +-0.096719,0.154880,-0.146305,-0.256998,0.119107,0.263855 +-0.098460,0.158319,-0.149438,-0.264946,0.121271,0.272709 +-0.100202,0.161757,-0.152571,-0.272973,0.123434,0.281719 +-0.101944,0.165195,-0.155704,-0.281075,0.125597,0.290885 +-0.103685,0.168633,-0.158837,-0.289250,0.127760,0.300206 +-0.105427,0.172072,-0.161970,-0.297494,0.129923,0.309683 +-0.107168,0.175510,-0.165104,-0.305805,0.132086,0.319315 +-0.108910,0.178948,-0.168237,-0.314179,0.134249,0.329103 +-0.110652,0.182387,-0.171370,-0.322614,0.136412,0.339046 +-0.112393,0.185825,-0.174503,-0.331105,0.138575,0.349145 +-0.114135,0.189263,-0.177636,-0.339651,0.140738,0.359399 +-0.115876,0.192702,-0.180769,-0.348247,0.142901,0.369809 +-0.117618,0.196140,-0.183902,-0.356891,0.145064,0.380374 +-0.119360,0.199578,-0.187036,-0.365580,0.147227,0.391094 +-0.121101,0.203016,-0.190169,-0.374310,0.149390,0.401967 +-0.122843,0.206455,-0.193302,-0.383079,0.151554,0.412988 +-0.124584,0.209893,-0.196435,-0.391883,0.153717,0.424155 +-0.126326,0.213331,-0.199568,-0.400719,0.155880,0.435465 +-0.128068,0.216770,-0.202701,-0.409584,0.158043,0.446915 +-0.129809,0.220208,-0.205834,-0.418475,0.160206,0.458501 +-0.131551,0.223646,-0.208968,-0.427390,0.162369,0.470220 +-0.133292,0.227085,-0.212101,-0.436323,0.164532,0.482070 +-0.135034,0.230523,-0.215234,-0.445274,0.166695,0.494047 +-0.136776,0.233961,-0.218367,-0.454238,0.168858,0.506149 +-0.138517,0.237399,-0.221500,-0.463213,0.171021,0.518371 +-0.140259,0.240838,-0.224633,-0.472195,0.173184,0.530711 +-0.142001,0.244276,-0.227767,-0.481181,0.175347,0.543166 +-0.143742,0.247714,-0.230900,-0.490168,0.177510,0.555732 +-0.145484,0.251153,-0.234033,-0.499155,0.179674,0.568408 +-0.147225,0.254591,-0.237166,-0.508143,0.181837,0.581188 +-0.148967,0.258029,-0.240299,-0.517130,0.184000,0.594071 +-0.150709,0.261467,-0.243432,-0.526117,0.186163,0.607053 +-0.152450,0.264906,-0.246565,-0.535105,0.188326,0.620131 +-0.154192,0.268344,-0.249699,-0.544092,0.190489,0.633303 +-0.155933,0.271782,-0.252832,-0.553079,0.192652,0.646564 +-0.157675,0.275221,-0.255965,-0.562066,0.194815,0.659912 +-0.159417,0.278659,-0.259098,-0.571054,0.196978,0.673343 +-0.161158,0.282097,-0.262231,-0.580041,0.199141,0.686855 +-0.162900,0.285536,-0.265364,-0.589028,0.201304,0.700445 +-0.164641,0.288974,-0.268497,-0.598016,0.203467,0.714109 +-0.166383,0.292412,-0.271631,-0.607003,0.205630,0.727844 +-0.168125,0.295850,-0.274764,-0.615990,0.207794,0.741647 +-0.169866,0.299289,-0.277897,-0.624978,0.209957,0.755515 +-0.171608,0.302727,-0.281030,-0.633965,0.212120,0.769446 +-0.173349,0.306165,-0.284163,-0.642952,0.214283,0.783435 +-0.175091,0.309604,-0.287296,-0.651940,0.216446,0.797479 +-0.176833,0.313042,-0.290429,-0.660927,0.218609,0.811576 +-0.178574,0.316480,-0.293563,-0.669914,0.220772,0.825723 +-0.180316,0.319919,-0.296696,-0.678902,0.222935,0.839916 +-0.182057,0.323357,-0.299829,-0.687889,0.225098,0.854152 +-0.183799,0.326795,-0.302962,-0.696876,0.227261,0.868429 +-0.185541,0.330233,-0.306095,-0.705864,0.229424,0.882742 +-0.187282,0.333672,-0.309228,-0.714851,0.231587,0.897089 +-0.189024,0.337110,-0.312362,-0.723838,0.233750,0.911467 +-0.190765,0.340548,-0.315495,-0.732826,0.235914,0.925873 +-0.192507,0.343987,-0.318628,-0.741813,0.238077,0.940303 +-0.194249,0.347425,-0.321761,-0.750800,0.240240,0.954755 +-0.195990,0.350863,-0.324894,-0.759788,0.242403,0.969225 +-0.197732,0.354301,-0.328027,-0.768775,0.244566,0.983711 +-0.199474,0.357740,-0.331160,-0.777762,0.246729,0.998208 +-0.201215,0.361178,-0.334294,-0.786750,0.248892,1.012710 +-0.202957,0.364616,-0.337427,-0.795737,0.251055,1.027230 +-0.204698,0.368055,-0.340560,-0.804724,0.253218,1.041740 +-0.206440,0.371493,-0.343693,-0.813712,0.255381,1.056260 +-0.208182,0.374931,-0.346826,-0.822699,0.257544,1.070770 +-0.209923,0.378370,-0.349959,-0.831686,0.259707,1.085290 +-0.211665,0.381808,-0.353092,-0.840674,0.261870,1.099800 +-0.213406,0.385246,-0.356226,-0.849661,0.264034,1.114320 +-0.215148,0.388684,-0.359359,-0.858648,0.266197,1.128840 +-0.216890,0.392123,-0.362492,-0.867636,0.268360,1.143350 +-0.218631,0.395561,-0.365625,-0.876623,0.270523,1.157870 +-0.220373,0.398999,-0.368758,-0.885610,0.272686,1.172380 +-0.222114,0.402438,-0.371891,-0.894598,0.274849,1.186900 +-0.223856,0.405876,-0.375024,-0.903585,0.277012,1.201410 +-0.225598,0.409314,-0.378158,-0.912572,0.279175,1.215930 +-0.227339,0.412753,-0.381291,-0.921560,0.281338,1.230450 +-0.229081,0.416191,-0.384424,-0.930547,0.283501,1.244960 +-0.230822,0.419629,-0.387557,-0.939534,0.285664,1.259480 +-0.232564,0.423067,-0.390690,-0.948522,0.287827,1.273990 +-0.234306,0.426506,-0.393823,-0.957509,0.289990,1.288510 +-0.236047,0.429944,-0.396957,-0.966496,0.292153,1.303020 +-0.237789,0.433382,-0.400090,-0.975483,0.294317,1.317540 +-0.239530,0.436821,-0.403223,-0.984471,0.296480,1.332050 +-0.241272,0.440259,-0.406356,-0.993458,0.298643,1.346570 +-0.243014,0.443697,-0.409489,-1.002450,0.300806,1.361090 +-0.244755,0.447135,-0.412622,-1.011430,0.302969,1.375600 +-0.246497,0.450574,-0.415755,-1.020420,0.305132,1.390120 +-0.248239,0.454012,-0.418889,-1.029410,0.307295,1.404630 +-0.249980,0.457450,-0.422022,-1.038390,0.309458,1.419150 +-0.251722,0.460889,-0.425155,-1.047380,0.311621,1.433660 +-0.253463,0.464327,-0.428288,-1.056370,0.313784,1.448180 +-0.255205,0.467765,-0.431421,-1.065360,0.315947,1.462700 +-0.256947,0.471204,-0.434554,-1.074340,0.318110,1.477210 +-0.258688,0.474642,-0.437687,-1.083330,0.320273,1.491730 +-0.260430,0.478080,-0.440821,-1.092320,0.322437,1.506240 +-0.262171,0.481518,-0.443954,-1.101310,0.324600,1.520760 +-0.263913,0.484957,-0.447087,-1.110290,0.326763,1.535270 +-0.265655,0.488395,-0.450220,-1.119280,0.328926,1.549790 +-0.267396,0.491833,-0.453353,-1.128270,0.331089,1.564300 +-0.269138,0.495272,-0.456486,-1.137260,0.333252,1.578820 +-0.270879,0.498710,-0.459620,-1.146240,0.335415,1.593340 +-0.272621,0.502148,-0.462753,-1.155230,0.337578,1.607850 +-0.274363,0.505587,-0.465886,-1.164220,0.339741,1.622370 +-0.276104,0.509025,-0.469019,-1.173200,0.341904,1.636880 +-0.277846,0.512463,-0.472152,-1.182190,0.344067,1.651400 +-0.279587,0.515901,-0.475285,-1.191180,0.346230,1.665910 +-0.281329,0.519340,-0.478418,-1.200170,0.348393,1.680430 +-0.283071,0.522778,-0.481552,-1.209150,0.350557,1.694940 +-0.284812,0.526216,-0.484685,-1.218140,0.352720,1.709440 +-0.286554,0.529655,-0.487818,-1.227130,0.354883,1.723930 +-0.288295,0.533093,-0.490951,-1.236120,0.357046,1.738410 +-0.290037,0.536531,-0.494084,-1.245100,0.359209,1.752870 +-0.291779,0.539969,-0.497217,-1.254090,0.361372,1.767310 +-0.293520,0.543408,-0.500350,-1.263080,0.363535,1.781730 +-0.295262,0.546846,-0.503484,-1.272070,0.365698,1.796120 +-0.297003,0.550284,-0.506617,-1.281050,0.367861,1.810480 +-0.298745,0.553723,-0.509750,-1.290040,0.370024,1.824810 +-0.300487,0.557161,-0.512883,-1.299030,0.372187,1.839100 +-0.302228,0.560599,-0.516016,-1.308010,0.374350,1.853360 +-0.303970,0.564038,-0.519149,-1.317000,0.376513,1.867570 +-0.305712,0.567476,-0.522282,-1.325990,0.378677,1.881740 +-0.307453,0.570914,-0.525416,-1.334980,0.380840,1.895860 +-0.309195,0.574352,-0.528549,-1.343960,0.383003,1.909930 +-0.310936,0.577791,-0.531682,-1.352950,0.385166,1.923940 +-0.312678,0.581229,-0.534815,-1.361940,0.387329,1.937900 +-0.314420,0.584667,-0.537948,-1.370930,0.389492,1.951800 +-0.316161,0.588106,-0.541081,-1.379910,0.391655,1.965630 +-0.317903,0.591544,-0.544215,-1.388900,0.393818,1.979400 +-0.319644,0.594982,-0.547348,-1.397890,0.395981,1.993100 +-0.321386,0.598421,-0.550481,-1.406880,0.398144,2.006720 +-0.323128,0.601859,-0.553614,-1.415860,0.400307,2.020270 +-0.324869,0.605297,-0.556747,-1.424850,0.402470,2.033740 +-0.326611,0.608735,-0.559880,-1.433840,0.404633,2.047120 +-0.328352,0.612174,-0.563013,-1.442820,0.406797,2.060420 +-0.330094,0.615612,-0.566147,-1.451810,0.408960,2.073640 +-0.331836,0.619050,-0.569280,-1.460800,0.411123,2.086760 +-0.333577,0.622489,-0.572413,-1.469790,0.413286,2.099790 +-0.335319,0.625927,-0.575546,-1.478770,0.415449,2.112710 +-0.337060,0.629365,-0.578679,-1.487760,0.417612,2.125540 +-0.338802,0.632803,-0.581812,-1.496730,0.419775,2.138270 +-0.340544,0.636242,-0.584945,-1.505700,0.421938,2.150880 +-0.342285,0.639680,-0.588079,-1.514650,0.424101,2.163390 +-0.344027,0.643118,-0.591212,-1.523590,0.426264,2.175780 +-0.345768,0.646557,-0.594345,-1.532510,0.428427,2.188060 +-0.347510,0.649995,-0.597478,-1.541410,0.430590,2.200220 +-0.349252,0.653433,-0.600611,-1.550280,0.432753,2.212250 +-0.350993,0.656872,-0.603744,-1.559130,0.434916,2.224160 +-0.352735,0.660310,-0.606878,-1.567940,0.437080,2.235940 +-0.354477,0.663748,-0.610011,-1.576720,0.439243,2.247590 +-0.356218,0.667186,-0.613144,-1.585460,0.441406,2.259100 +-0.357960,0.670625,-0.616277,-1.594160,0.443569,2.270470 +-0.359701,0.674063,-0.619410,-1.602820,0.445732,2.281710 +-0.361443,0.677501,-0.622543,-1.611430,0.447895,2.292800 +-0.363185,0.680940,-0.625676,-1.619990,0.450058,2.303740 +-0.364926,0.684378,-0.628810,-1.628490,0.452221,2.314530 +-0.366668,0.687816,-0.631943,-1.636940,0.454384,2.325160 +-0.368409,0.691255,-0.635076,-1.645330,0.456547,2.335640 +-0.370151,0.694693,-0.638209,-1.653660,0.458710,2.345970 +-0.371893,0.698131,-0.641342,-1.661920,0.460873,2.356140 +-0.373634,0.701569,-0.644475,-1.670120,0.463036,2.366160 +-0.375376,0.705008,-0.647608,-1.678240,0.465200,2.376010 +-0.377117,0.708446,-0.650742,-1.686290,0.467363,2.385720 +-0.378859,0.711884,-0.653875,-1.694260,0.469526,2.395270 +-0.380601,0.715323,-0.657008,-1.702140,0.471689,2.404660 +-0.382342,0.718761,-0.660141,-1.709950,0.473852,2.413900 +-0.384084,0.722199,-0.663274,-1.717670,0.476015,2.422980 +-0.385825,0.725637,-0.666407,-1.725290,0.478178,2.431900 +-0.387567,0.729076,-0.669540,-1.732820,0.480341,2.440670 +-0.389309,0.732514,-0.672674,-1.740260,0.482504,2.449290 +-0.391050,0.735952,-0.675807,-1.747600,0.484667,2.457750 +-0.392792,0.739391,-0.678940,-1.754830,0.486830,2.466050 +-0.394533,0.742829,-0.682073,-1.761960,0.488993,2.474200 +-0.396275,0.746267,-0.685206,-1.768970,0.491156,2.482190 +-0.398017,0.749706,-0.688339,-1.775880,0.493320,2.490030 +-0.399758,0.753144,-0.691473,-1.782670,0.495483,2.497710 +-0.401500,0.756582,-0.694606,-1.789340,0.497646,2.505240 +-0.403242,0.760019,-0.697739,-1.795890,0.499809,2.512610 +-0.404983,0.763451,-0.700872,-1.802320,0.501972,2.519820 +-0.406725,0.766876,-0.704005,-1.808620,0.504135,2.526880 +-0.408466,0.770293,-0.707138,-1.814780,0.506298,2.533790 +-0.410208,0.773697,-0.710271,-1.820810,0.508461,2.540540 +-0.411950,0.777086,-0.713405,-1.826710,0.510624,2.547130 +-0.413691,0.780459,-0.716538,-1.832470,0.512787,2.553570 +-0.415433,0.783811,-0.719671,-1.838080,0.514950,2.559850 +-0.417174,0.787141,-0.722804,-1.843540,0.517113,2.565970 +-0.418916,0.790446,-0.725937,-1.848860,0.519276,2.571950 +-0.420658,0.793724,-0.729070,-1.854020,0.521440,2.577760 +-0.422399,0.796971,-0.732203,-1.859030,0.523603,2.583420 +-0.424141,0.800186,-0.735331,-1.863890,0.525766,2.588930 +-0.425882,0.803365,-0.738455,-1.868580,0.527929,2.594270 +-0.427624,0.806506,-0.741569,-1.873120,0.530092,2.599470 +-0.429366,0.809607,-0.744672,-1.877510,0.532255,2.604510 +-0.431107,0.812665,-0.747762,-1.881740,0.534418,2.609390 +-0.432849,0.815677,-0.750836,-1.885820,0.536581,2.614110 +-0.434590,0.818640,-0.753890,-1.889740,0.538744,2.618690 +-0.436332,0.821552,-0.756923,-1.893520,0.540907,2.623100 +-0.438074,0.824411,-0.759932,-1.897160,0.543070,2.627360 +-0.439815,0.827214,-0.762914,-1.900650,0.545233,2.631470 +-0.441554,0.829958,-0.765867,-1.904000,0.547396,2.635420 +-0.443288,0.832641,-0.768788,-1.907220,0.549560,2.639210 +-0.445014,0.835260,-0.771675,-1.910310,0.551723,2.642850 +-0.446730,0.837812,-0.774525,-1.913260,0.553886,2.646330 +-0.448433,0.840295,-0.777335,-1.916090,0.556049,2.649660 +-0.450121,0.842707,-0.780102,-1.918800,0.558211,2.652840 +-0.451791,0.845044,-0.782825,-1.921390,0.560370,2.655870 +-0.453441,0.847304,-0.785500,-1.923860,0.562522,2.658750 +-0.455067,0.849485,-0.788126,-1.926220,0.564665,2.661500 +-0.456667,0.851583,-0.790698,-1.928470,0.566795,2.664100 +-0.458239,0.853597,-0.793216,-1.930610,0.568909,2.666570 +-0.459780,0.855524,-0.795675,-1.932650,0.571003,2.668910 +-0.461288,0.857361,-0.798074,-1.934580,0.573076,2.671120 +-0.462759,0.859105,-0.800410,-1.936420,0.575124,2.673200 +-0.464192,0.860754,-0.802681,-1.938160,0.577143,2.675160 +-0.465583,0.862305,-0.804883,-1.939810,0.579131,2.677000 +-0.466931,0.863758,-0.807014,-1.941370,0.581084,2.678730 +-0.468232,0.865113,-0.809072,-1.942850,0.582999,2.680340 +-0.469483,0.866374,-0.811054,-1.944240,0.584874,2.681840 +-0.470683,0.867543,-0.812958,-1.945560,0.586704,2.683230 +-0.471829,0.868623,-0.814780,-1.946790,0.588488,2.684520 +-0.472918,0.869616,-0.816519,-1.947960,0.590222,2.685710 +-0.473949,0.870525,-0.818177,-1.949060,0.591902,2.686800 +-0.474924,0.871352,-0.819756,-1.950080,0.593526,2.687790 +-0.475846,0.872101,-0.821258,-1.951050,0.595091,2.688690 +-0.476718,0.872773,-0.822687,-1.951950,0.596592,2.689510 +-0.477542,0.873371,-0.824045,-1.952800,0.598029,2.690240 +-0.478321,0.873899,-0.825335,-1.953590,0.599396,2.690880 +-0.479057,0.874358,-0.826559,-1.954330,0.600692,2.691450 +-0.479753,0.874751,-0.827720,-1.955020,0.601913,2.691940 +-0.480411,0.875081,-0.828820,-1.955670,0.603060,2.692360 +-0.481035,0.875350,-0.829862,-1.956270,0.604135,2.692710 +-0.481626,0.875561,-0.830848,-1.956840,0.605143,2.692990 +-0.482188,0.875716,-0.831782,-1.957370,0.606087,2.693200 +-0.482722,0.875818,-0.832665,-1.957870,0.606968,2.693360 +-0.483233,0.875870,-0.833501,-1.958340,0.607791,2.693460 +-0.483721,0.875875,-0.834292,-1.958780,0.608559,2.693500 +-0.484190,0.875834,-0.835040,-1.959200,0.609275,2.693500 +-0.484642,0.875751,-0.835749,-1.959600,0.609941,2.693440 +-0.485080,0.875627,-0.836420,-1.959980,0.610561,2.693340 +-0.485507,0.875467,-0.837057,-1.960340,0.611138,2.693200 +-0.485925,0.875272,-0.837661,-1.960700,0.611675,2.693020 +-0.486336,0.875044,-0.838236,-1.961050,0.612176,2.692800 +-0.486744,0.874787,-0.838784,-1.961390,0.612643,2.692550 +-0.487151,0.874503,-0.839308,-1.961730,0.613079,2.692280 +-0.487559,0.874194,-0.839810,-1.962080,0.613488,2.691970 +-0.487971,0.873864,-0.840294,-1.962430,0.613873,2.691640 +-0.488390,0.873515,-0.840760,-1.962780,0.614237,2.691290 +-0.488818,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-0.489779,0.872313,-0.842149,-1.963985,0.615274,2.690091 +-0.490791,0.871415,-0.843027,-1.964882,0.615892,2.689194 +-0.491847,0.870462,-0.843844,-1.965835,0.616435,2.688241 +-0.492943,0.869458,-0.844594,-1.966839,0.616898,2.687237 +-0.494072,0.868409,-0.845274,-1.967888,0.617279,2.686187 +-0.495229,0.867319,-0.845881,-1.968978,0.617577,2.685097 +-0.496408,0.866195,-0.846410,-1.970103,0.617790,2.683973 +-0.497603,0.865041,-0.846861,-1.971256,0.617917,2.682820 +-0.498806,0.863866,-0.847229,-1.972431,0.617956,2.681644 +-0.500013,0.862673,-0.847514,-1.973624,0.617909,2.680452 +-0.501216,0.861471,-0.847713,-1.974826,0.617774,2.679249 +-0.502410,0.860264,-0.847826,-1.976033,0.617554,2.678042 +-0.503588,0.859060,-0.847852,-1.977237,0.617248,2.676838 +-0.504745,0.857864,-0.847790,-1.978433,0.616859,2.675642 +-0.505873,0.856683,-0.847643,-1.979614,0.616388,2.674461 +-0.506967,0.855523,-0.847409,-1.980774,0.615839,2.673301 +-0.508022,0.854390,-0.847090,-1.981907,0.615213,2.672168 +-0.509032,0.853289,-0.846688,-1.983008,0.614515,2.671068 +-0.509992,0.852228,-0.846206,-1.984069,0.613747,2.670006 +-0.510896,0.851210,-0.845644,-1.985087,0.612914,2.668988 +-0.511741,0.850242,-0.845007,-1.986055,0.612021,2.668020 +-0.512521,0.849329,-0.844298,-1.986968,0.611071,2.667107 +-0.513232,0.848474,-0.843521,-1.987823,0.610070,2.666253 +-0.513871,0.847684,-0.842679,-1.988613,0.609023,2.665462 +-0.514435,0.846961,-0.841777,-1.989336,0.607935,2.664739 +-0.514920,0.846310,-0.840819,-1.989987,0.606813,2.664088 +-0.515325,0.845734,-0.839811,-1.990563,0.605661,2.663512 +-0.515646,0.845236,-0.838758,-1.991061,0.604487,2.663014 +-0.515882,0.844819,-0.837665,-1.991479,0.603295,2.662597 +-0.516033,0.844484,-0.836539,-1.991813,0.602093,2.662262 +-0.516096,0.844234,-0.835384,-1.992063,0.600887,2.662012 +-0.516073,0.844070,-0.834207,-1.992227,0.599682,2.661848 +-0.515962,0.843992,-0.833014,-1.992305,0.598485,2.661770 +-0.515765,0.844002,-0.831812,-1.992295,0.597303,2.661780 +-0.515483,0.844098,-0.830606,-1.992199,0.596142,2.661876 +-0.515117,0.844281,-0.829403,-1.992016,0.595007,2.662060 +-0.514669,0.844550,-0.828209,-1.991747,0.593904,2.662328 +-0.514141,0.844903,-0.827030,-1.991394,0.592840,2.662681 +-0.513536,0.845338,-0.825873,-1.990959,0.591820,2.663117 +-0.512857,0.845854,-0.824744,-1.990443,0.590849,2.663632 +-0.512108,0.846446,-0.823648,-1.989851,0.589932,2.664225 +-0.511293,0.847114,-0.822591,-1.989184,0.589074,2.664892 +-0.510416,0.847851,-0.821579,-1.988446,0.588279,2.665630 +-0.509481,0.848656,-0.820616,-1.987641,0.587553,2.666434 +-0.508494,0.849524,-0.819709,-1.986773,0.586897,2.667302 +-0.507459,0.850450,-0.818861,-1.985847,0.586316,2.668228 +-0.506382,0.851429,-0.818077,-1.984868,0.585814,2.669207 +-0.505268,0.852457,-0.817362,-1.983840,0.585391,2.670235 +-0.504124,0.853527,-0.816718,-1.982770,0.585052,2.671306 +-0.502955,0.854635,-0.816150,-1.981662,0.584797,2.672414 +-0.501768,0.855775,-0.815660,-1.980522,0.584627,2.673553 +-0.500568,0.856940,-0.815251,-1.979357,0.584544,2.674718 +-0.499362,0.858125,-0.814925,-1.978172,0.584549,2.675903 +-0.498156,0.859323,-0.814683,-1.976974,0.584640,2.677102 +-0.496957,0.860529,-0.814527,-1.975768,0.584818,2.678307 +-0.495770,0.861735,-0.814458,-1.974562,0.585082,2.679513 +-0.494602,0.862936,-0.814476,-1.973361,0.585430,2.680714 +-0.493459,0.864125,-0.814581,-1.972172,0.585860,2.681903 +-0.492347,0.865296,-0.814772,-1.971001,0.586371,2.683075 +-0.491272,0.866444,-0.815049,-1.969853,0.586959,2.684222 +-0.490239,0.867561,-0.815410,-1.968736,0.587622,2.685339 +-0.489254,0.868643,-0.815853,-1.967655,0.588355,2.686421 +-0.488322,0.869683,-0.816375,-1.966615,0.589156,2.687461 +-0.487447,0.870676,-0.816975,-1.965621,0.590020,2.688454 +-0.486634,0.871617,-0.817649,-1.964680,0.590943,2.689395 +-0.485889,0.872501,-0.818393,-1.963796,0.591919,2.690279 +-0.485213,0.873324,-0.819203,-1.962973,0.592944,2.691102 +-0.484611,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-0.484087,0.874768,-0.821007,-1.961529,0.595118,2.692546 +-0.483642,0.875381,-0.821990,-1.960916,0.596256,2.693160 +-0.483279,0.875919,-0.823022,-1.960379,0.597420,2.693697 +-0.483001,0.876376,-0.824096,-1.959921,0.598604,2.694154 +-0.482808,0.876752,-0.825206,-1.959545,0.599802,2.694530 +-0.482701,0.877044,-0.826348,-1.959253,0.601007,2.694823 +-0.482681,0.877251,-0.827514,-1.959046,0.602213,2.695030 +-0.482748,0.877372,-0.828700,-1.958925,0.603414,2.695150 +-0.482903,0.877406,-0.829899,-1.958891,0.604604,2.695184 +-0.483143,0.877352,-0.831104,-1.958945,0.605777,2.695130 +-0.483468,0.877212,-0.832309,-1.959085,0.606926,2.694990 +-0.483875,0.876985,-0.833508,-1.959312,0.608045,2.694764 +-0.484364,0.876674,-0.834695,-1.959623,0.609129,2.694452 +-0.484931,0.876279,-0.835863,-1.960018,0.610172,2.694058 +-0.485574,0.875803,-0.837007,-1.960494,0.611168,2.693582 +-0.486288,0.875249,-0.838121,-1.961048,0.612112,2.693027 +-0.487071,0.874618,-0.839198,-1.961679,0.613000,2.692396 +-0.487918,0.873915,-0.840233,-1.962382,0.613827,2.691693 +-0.488825,0.873143,-0.841221,-1.963154,0.614588,2.690921 +-0.489787,0.872306,-0.842156,-1.963991,0.615279,2.690084 +-0.490799,0.871408,-0.843034,-1.964889,0.615897,2.689186 +-0.491856,0.870455,-0.843850,-1.965843,0.616439,2.688233 +-0.492952,0.869450,-0.844600,-1.966847,0.616901,2.687228 +-0.494081,0.868400,-0.845279,-1.967897,0.617282,2.686178 +-0.495239,0.867310,-0.845885,-1.968987,0.617579,2.685088 +-0.496418,0.866185,-0.846414,-1.970112,0.617792,2.683964 +-0.497612,0.865032,-0.846864,-1.971265,0.617917,2.682810 +-0.498816,0.863856,-0.847232,-1.972441,0.617956,2.681634 +-0.500022,0.862664,-0.847515,-1.973633,0.617908,2.680442 +-0.501226,0.861461,-0.847714,-1.974836,0.617773,2.679239 +-0.502420,0.860255,-0.847826,-1.976042,0.617552,2.678033 +-0.503598,0.859050,-0.847851,-1.977247,0.617245,2.676829 +-0.504754,0.857855,-0.847790,-1.978443,0.616855,2.675633 +-0.505882,0.856674,-0.847641,-1.979623,0.616384,2.674452 +-0.506976,0.855514,-0.847406,-1.980783,0.615834,2.673292 +-0.508031,0.854381,-0.847087,-1.981916,0.615208,2.672159 +-0.509040,0.853281,-0.846685,-1.983016,0.614509,2.671059 +-0.509999,0.852219,-0.846201,-1.984078,0.613741,2.669998 +-0.510903,0.851202,-0.845640,-1.985095,0.612908,2.668981 +-0.511747,0.850235,-0.845002,-1.986062,0.612014,2.668013 +-0.512526,0.849322,-0.844293,-1.986976,0.611063,2.667100 +-0.513237,0.848468,-0.843514,-1.987829,0.610062,2.666246 +-0.513876,0.847678,-0.842672,-1.988619,0.609014,2.665456 +-0.514439,0.846956,-0.841769,-1.989341,0.607927,2.664734 +-0.514924,0.846305,-0.840811,-1.989992,0.606804,2.664083 +-0.515328,0.845730,-0.839803,-1.990567,0.605652,2.663508 +-0.515648,0.845232,-0.838750,-1.991065,0.604477,2.663011 +-0.515884,0.844816,-0.837656,-1.991482,0.603286,2.662594 +-0.516034,0.844482,-0.836530,-1.991815,0.602084,2.662260 +-0.516096,0.844232,-0.835375,-1.992065,0.600877,2.662010 +-0.516072,0.844069,-0.834198,-1.992228,0.599672,2.661847 +-0.515961,0.843992,-0.833005,-1.992305,0.598476,2.661770 +-0.515763,0.844002,-0.831802,-1.992295,0.597294,2.661780 +-0.515480,0.844099,-0.830596,-1.992198,0.596133,2.661878 +-0.515114,0.844283,-0.829393,-1.992014,0.594998,2.662061 +-0.514665,0.844553,-0.828199,-1.991745,0.593896,2.662331 +-0.514136,0.844906,-0.827021,-1.991391,0.592832,2.662684 +-0.513531,0.845342,-0.825864,-1.990955,0.591812,2.663120 +-0.512851,0.845858,-0.824735,-1.990439,0.590841,2.663636 +-0.512102,0.846452,-0.823639,-1.989846,0.589925,2.664230 +-0.511286,0.847119,-0.822583,-1.989178,0.589067,2.664897 +-0.510408,0.847858,-0.821571,-1.988440,0.588273,2.665636 +-0.509473,0.848663,-0.820609,-1.987634,0.587547,2.666441 +-0.508485,0.849531,-0.819702,-1.986766,0.586892,2.667309 +-0.507450,0.850457,-0.818854,-1.985840,0.586312,2.668236 +-0.506373,0.851437,-0.818071,-1.984860,0.585810,2.669215 +-0.505259,0.852465,-0.817356,-1.983832,0.585388,2.670243 +-0.504115,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-0.502946,0.854644,-0.816146,-1.981653,0.584795,2.672423 +-0.501758,0.855784,-0.815657,-1.980513,0.584626,2.673562 +-0.500559,0.856950,-0.815248,-1.979347,0.584544,2.674728 +-0.499353,0.858135,-0.814922,-1.978163,0.584549,2.675913 +-0.498147,0.859333,-0.814681,-1.976964,0.584641,2.677111 +-0.496947,0.860538,-0.814526,-1.975759,0.584820,2.678317 +-0.495761,0.861745,-0.814458,-1.974553,0.585084,2.679523 +-0.494593,0.862945,-0.814476,-1.973352,0.585433,2.680724 +-0.493450,0.864134,-0.814582,-1.972163,0.585864,2.681913 +-0.492339,0.865306,-0.814774,-1.970992,0.586375,2.683084 +-0.491264,0.866453,-0.815052,-1.969844,0.586964,2.684231 +-0.490231,0.867570,-0.815413,-1.968727,0.587627,2.685348 +-0.489246,0.868651,-0.815856,-1.967646,0.588362,2.686429 +-0.488314,0.869691,-0.816380,-1.966606,0.589163,2.687469 +-0.487440,0.870684,-0.816980,-1.965614,0.590028,2.688462 +-0.486628,0.871624,-0.817654,-1.964673,0.590951,2.689402 +-0.485883,0.872508,-0.818399,-1.963789,0.591927,2.690286 +-0.485208,0.873330,-0.819210,-1.962967,0.592953,2.691108 +-0.484607,0.874087,-0.820083,-1.962211,0.594021,2.691865 +-0.484083,0.874773,-0.821015,-1.961524,0.595127,2.692551 +-0.483639,0.875386,-0.821999,-1.960911,0.596265,2.693164 +-0.483277,0.875923,-0.823030,-1.960375,0.597429,2.693701 +-0.482999,0.876380,-0.824104,-1.959918,0.598613,2.694158 +-0.482806,0.876755,-0.825215,-1.959542,0.599811,2.694533 +-0.482700,0.877046,-0.826357,-1.959251,0.601016,2.694825 +-0.482681,0.877253,-0.827524,-1.959044,0.602223,2.695031 +-0.482749,0.877373,-0.828710,-1.958925,0.603424,2.695151 +-0.482904,0.877406,-0.829908,-1.958892,0.604614,2.695184 +-0.483145,0.877351,-0.831113,-1.958946,0.605786,2.695130 +-0.483471,0.877210,-0.832318,-1.959087,0.606935,2.694989 +-0.483879,0.876983,-0.833517,-1.959314,0.608054,2.694761 +-0.484368,0.876671,-0.834704,-1.959626,0.609137,2.694449 +-0.484936,0.876276,-0.835873,-1.960021,0.610180,2.694054 +-0.485579,0.875799,-0.837016,-1.960498,0.611176,2.693578 +-0.486294,0.875244,-0.838129,-1.961053,0.612120,2.693022 +-0.487078,0.874613,-0.839206,-1.961684,0.613007,2.692391 +-0.487925,0.873909,-0.840241,-1.962388,0.613833,2.691687 +-0.488832,0.873136,-0.841228,-1.963161,0.614593,2.690914 +-0.489795,0.872299,-0.842163,-1.963998,0.615284,2.690077 +-0.490807,0.871401,-0.843041,-1.964896,0.615902,2.689179 +-0.491864,0.870447,-0.843856,-1.965850,0.616443,2.688225 +-0.492961,0.869442,-0.844605,-1.966855,0.616905,2.687220 +-0.494091,0.868392,-0.845284,-1.967905,0.617285,2.686170 +-0.495248,0.867301,-0.845890,-1.968996,0.617581,2.685079 +-0.496427,0.866176,-0.846418,-1.970121,0.617793,2.683955 +-0.497622,0.865023,-0.846867,-1.971274,0.617918,2.682801 +-0.498825,0.863847,-0.847234,-1.972450,0.617956,2.681625 +-0.500032,0.862654,-0.847517,-1.973643,0.617907,2.680433 +-0.501235,0.861452,-0.847715,-1.974845,0.617771,2.679230 +-0.502429,0.860245,-0.847827,-1.976052,0.617549,2.678023 +-0.503607,0.859041,-0.847851,-1.977256,0.617242,2.676819 +-0.504763,0.857845,-0.847789,-1.978452,0.616852,2.675623 +-0.505891,0.856664,-0.847639,-1.979633,0.616380,2.674443 +-0.506984,0.855505,-0.847404,-1.980793,0.615829,2.673283 +-0.508039,0.854372,-0.847084,-1.981925,0.615203,2.672150 +-0.509048,0.853272,-0.846681,-1.983025,0.614503,2.671050 +-0.510007,0.852211,-0.846197,-1.984086,0.613735,2.669989 +-0.510910,0.851194,-0.845635,-1.985103,0.612901,2.668973 +-0.511754,0.850227,-0.844997,-1.986070,0.612006,2.668005 +-0.512532,0.849315,-0.844287,-1.986983,0.611056,2.667093 +-0.513243,0.848461,-0.843508,-1.987836,0.610054,2.666239 +-0.513881,0.847672,-0.842665,-1.988625,0.609006,2.665450 +-0.514443,0.846950,-0.841762,-1.989347,0.607918,2.664728 +-0.514927,0.846300,-0.840803,-1.989997,0.606795,2.664079 +-0.515330,0.845726,-0.839795,-1.990572,0.605643,2.663504 +-0.515650,0.845229,-0.838741,-1.991068,0.604468,2.663007 +-0.515885,0.844813,-0.837648,-1.991485,0.603276,2.662591 +-0.516034,0.844479,-0.836520,-1.991818,0.602074,2.662258 +-0.516097,0.844231,-0.835365,-1.992067,0.600867,2.662009 +-0.516072,0.844068,-0.834188,-1.992229,0.599663,2.661846 +-0.515960,0.843992,-0.832995,-1.992306,0.598466,2.661770 +-0.515762,0.844003,-0.831793,-1.992295,0.597285,2.661781 +-0.515478,0.844100,-0.830587,-1.992197,0.596123,2.661879 +-0.515110,0.844285,-0.829384,-1.992012,0.594989,2.662063 +-0.514661,0.844555,-0.828190,-1.991742,0.593887,2.662333 +-0.514132,0.844909,-0.827012,-1.991388,0.592824,2.662688 +-0.513525,0.845346,-0.825855,-1.990951,0.591804,2.663124 +-0.512846,0.845863,-0.824726,-1.990435,0.590834,2.663641 +-0.512096,0.846457,-0.823631,-1.989841,0.589918,2.664235 +-0.511280,0.847125,-0.822574,-1.989172,0.589061,2.664903 +-0.510401,0.847864,-0.821563,-1.988433,0.588267,2.665642 +-0.509466,0.848670,-0.820601,-1.987627,0.587542,2.666448 +-0.508477,0.849538,-0.819695,-1.986759,0.586887,2.667316 +-0.507442,0.850465,-0.818848,-1.985832,0.586308,2.668243 +-0.506364,0.851445,-0.818065,-1.984852,0.585806,2.669223 +-0.505250,0.852474,-0.817351,-1.983824,0.585385,2.670252 +-0.504106,0.853545,-0.816709,-1.982752,0.585047,2.671323 +-0.502937,0.854653,-0.816142,-1.981644,0.584793,2.672432 +-0.501749,0.855793,-0.815653,-1.980504,0.584625,2.673572 +-0.500549,0.856959,-0.815245,-1.979338,0.584544,2.674737 +-0.499343,0.858144,-0.814920,-1.978153,0.584550,2.675922 +-0.498137,0.859343,-0.814680,-1.976955,0.584642,2.677121 +-0.496938,0.860548,-0.814525,-1.975749,0.584822,2.678326 +-0.495751,0.861754,-0.814458,-1.974543,0.585087,2.679532 +-0.494584,0.862955,-0.814477,-1.973342,0.585436,2.680733 +-0.493441,0.864144,-0.814583,-1.972153,0.585868,2.681922 +-0.492330,0.865315,-0.814776,-1.970982,0.586380,2.683093 +-0.491255,0.866462,-0.815054,-1.969835,0.586969,2.684240 +-0.490223,0.867578,-0.815416,-1.968719,0.587633,2.685357 +-0.489239,0.868659,-0.815860,-1.967638,0.588368,2.686438 +-0.488307,0.869699,-0.816384,-1.966598,0.589170,2.687477 +-0.487433,0.870691,-0.816985,-1.965606,0.590035,2.688469 +-0.486622,0.871632,-0.817660,-1.964666,0.590958,2.689410 +-0.485877,0.872515,-0.818405,-1.963782,0.591935,2.690293 +-0.485203,0.873337,-0.819217,-1.962961,0.592961,2.691115 +-0.484602,0.874092,-0.820091,-1.962205,0.594030,2.691870 +-0.484079,0.874778,-0.821022,-1.961519,0.595136,2.692556 +-0.483636,0.875391,-0.822007,-1.960907,0.596275,2.693169 +-0.483274,0.875926,-0.823039,-1.960371,0.597439,2.693705 +-0.482997,0.876383,-0.824113,-1.959914,0.598623,2.694161 +-0.482805,0.876757,-0.825224,-1.959540,0.599821,2.694536 +-0.482700,0.877048,-0.826366,-1.959249,0.601026,2.694827 +-0.482681,0.877254,-0.827533,-1.959043,0.602232,2.695032 +-0.482750,0.877373,-0.828719,-1.958924,0.603433,2.695151 +-0.482906,0.877406,-0.829918,-1.958892,0.604623,2.695184 +-0.483147,0.877351,-0.831123,-1.958946,0.605795,2.695129 +-0.483473,0.877209,-0.832328,-1.959088,0.606944,2.694987 +-0.483883,0.876981,-0.833527,-1.959316,0.608063,2.694759 +-0.484373,0.876668,-0.834714,-1.959629,0.609146,2.694447 +-0.484941,0.876272,-0.835882,-1.960025,0.610188,2.694051 +-0.485585,0.875795,-0.837025,-1.960502,0.611183,2.693573 +-0.486300,0.875239,-0.838138,-1.961058,0.612127,2.693017 +-0.487084,0.874607,-0.839215,-1.961690,0.613014,2.692386 +-0.487932,0.873903,-0.840249,-1.962394,0.613839,2.691681 +-0.488840,0.873130,-0.841236,-1.963167,0.614599,2.690908 +-0.489803,0.872292,-0.842170,-1.964005,0.615289,2.690070 +-0.490815,0.871393,-0.843047,-1.964904,0.615906,2.689171 +-0.491873,0.870439,-0.843862,-1.965858,0.616447,2.688217 +-0.492969,0.869434,-0.844611,-1.966863,0.616908,2.687212 +-0.494100,0.868383,-0.845289,-1.967914,0.617288,2.686161 +-0.495257,0.867292,-0.845894,-1.969005,0.617583,2.685071 +-0.496437,0.866167,-0.846422,-1.970130,0.617794,2.683946 +-0.497631,0.865014,-0.846870,-1.971283,0.617919,2.682792 +-0.498835,0.863837,-0.847237,-1.972460,0.617956,2.681616 +-0.500042,0.862645,-0.847519,-1.973652,0.617907,2.680423 +-0.501245,0.861442,-0.847716,-1.974855,0.617770,2.679220 +-0.502438,0.860235,-0.847827,-1.976062,0.617547,2.678014 +-0.503616,0.859031,-0.847851,-1.977266,0.617240,2.676809 +-0.504772,0.857836,-0.847788,-1.978461,0.616849,2.675614 +-0.505899,0.856655,-0.847638,-1.979642,0.616376,2.674433 +-0.506993,0.855495,-0.847402,-1.980802,0.615825,2.673274 +-0.508047,0.854363,-0.847081,-1.981934,0.615197,2.672141 +-0.509056,0.853264,-0.846678,-1.983034,0.614497,2.671042 +-0.510014,0.852203,-0.846193,-1.984094,0.613728,2.669981 +-0.510917,0.851187,-0.845630,-1.985111,0.612894,2.668965 +-0.511760,0.850220,-0.844991,-1.986077,0.611999,2.667998 +-0.512538,0.849308,-0.844281,-1.986990,0.611048,2.667086 +-0.513248,0.848455,-0.843502,-1.987842,0.610046,2.666233 +-0.513886,0.847666,-0.842658,-1.988631,0.608997,2.665444 +-0.514448,0.846945,-0.841754,-1.989352,0.607909,2.664723 +-0.514931,0.846295,-0.840796,-1.990002,0.606786,2.664074 +-0.515333,0.845721,-0.839787,-1.990576,0.605634,2.663499 +-0.515652,0.845225,-0.838732,-1.991072,0.604458,2.663003 +-0.515887,0.844810,-0.837639,-1.991487,0.603267,2.662588 +-0.516035,0.844477,-0.836511,-1.991820,0.602064,2.662255 +-0.516097,0.844229,-0.835356,-1.992068,0.600858,2.662007 +-0.516071,0.844067,-0.834179,-1.992230,0.599653,2.661845 +-0.515959,0.843991,-0.832986,-1.992306,0.598457,2.661769 +-0.515760,0.844003,-0.831783,-1.992294,0.597275,2.661781 +-0.515475,0.844102,-0.830577,-1.992196,0.596114,2.661880 +-0.515107,0.844287,-0.829374,-1.992010,0.594980,2.662065 +-0.514657,0.844558,-0.828181,-1.991740,0.593878,2.662336 +-0.514127,0.844913,-0.827003,-1.991385,0.592815,2.662691 +-0.513520,0.845350,-0.825846,-1.990947,0.591796,2.663128 +-0.512840,0.845867,-0.824717,-1.990430,0.590826,2.663645 +-0.512089,0.846462,-0.823622,-1.989836,0.589911,2.664240 +-0.511273,0.847130,-0.822566,-1.989167,0.589054,2.664909 +-0.510394,0.847870,-0.821555,-1.988427,0.588261,2.665648 +-0.509458,0.848676,-0.820594,-1.987621,0.587536,2.666454 +-0.508469,0.849545,-0.819688,-1.986752,0.586882,2.667324 +-0.507433,0.850473,-0.818842,-1.985824,0.586304,2.668251 +-0.506355,0.851453,-0.818059,-1.984844,0.585803,2.669231 +-0.505241,0.852482,-0.817346,-1.983815,0.585382,2.670260 +-0.504096,0.853553,-0.816704,-1.982744,0.585045,2.671332 +-0.502927,0.854662,-0.816137,-1.981635,0.584792,2.672440 +-0.501739,0.855803,-0.815649,-1.980495,0.584624,2.673581 +-0.500539,0.856968,-0.815242,-1.979329,0.584543,2.674747 +-0.499333,0.858154,-0.814918,-1.978144,0.584550,2.675932 +-0.498128,0.859352,-0.814678,-1.976945,0.584643,2.677130 +-0.496928,0.860558,-0.814524,-1.975740,0.584823,2.678336 +-0.495742,0.861764,-0.814457,-1.974533,0.585089,2.679542 +-0.494575,0.862964,-0.814477,-1.973333,0.585439,2.680743 +-0.493432,0.864153,-0.814584,-1.972144,0.585871,2.681931 +-0.492321,0.865324,-0.814778,-1.970973,0.586384,2.683102 +-0.491247,0.866471,-0.815057,-1.969826,0.586974,2.684249 +-0.490215,0.867587,-0.815419,-1.968710,0.587638,2.685365 +-0.489231,0.868668,-0.815864,-1.967629,0.588374,2.686446 +-0.488300,0.869707,-0.816389,-1.966590,0.589176,2.687485 +-0.487427,0.870699,-0.816990,-1.965598,0.590042,2.688477 +-0.486616,0.871639,-0.817666,-1.964658,0.590966,2.689417 +-0.485872,0.872522,-0.818411,-1.963776,0.591943,2.690300 +-0.485198,0.873343,-0.819223,-1.962954,0.592969,2.691121 +-0.484598,0.874098,-0.820098,-1.962199,0.594038,2.691876 +-0.484075,0.874783,-0.821030,-1.961514,0.595145,2.692562 +-0.483632,0.875395,-0.822015,-1.960902,0.596284,2.693173 +-0.483272,0.875930,-0.823047,-1.960367,0.597448,2.693709 +-0.482995,0.876386,-0.824122,-1.959911,0.598632,2.694164 +-0.482804,0.876760,-0.825233,-1.959537,0.599830,2.694538 +-0.482699,0.877050,-0.826375,-1.959247,0.601035,2.694829 +-0.482682,0.877255,-0.827543,-1.959042,0.602242,2.695033 +-0.482751,0.877374,-0.828729,-1.958923,0.603443,2.695152 +-0.482907,0.877405,-0.829927,-1.958892,0.604633,2.695184 +-0.483150,0.877350,-0.831132,-1.958947,0.605805,2.695128 +-0.483476,0.877207,-0.832337,-1.959090,0.606953,2.694986 +-0.483886,0.876979,-0.833536,-1.959318,0.608071,2.694757 +-0.484377,0.876666,-0.834723,-1.959632,0.609154,2.694444 +-0.484946,0.876269,-0.835891,-1.960028,0.610196,2.694047 +-0.485590,0.875791,-0.837034,-1.960506,0.611191,2.693569 +-0.486306,0.875235,-0.838147,-1.961063,0.612134,2.693013 +-0.487091,0.874602,-0.839223,-1.961695,0.613021,2.692380 +-0.487939,0.873897,-0.840257,-1.962400,0.613846,2.691675 +-0.488847,0.873123,-0.841244,-1.963174,0.614605,2.690902 +-0.489810,0.872285,-0.842178,-1.964012,0.615294,2.690063 +-0.490824,0.871386,-0.843054,-1.964911,0.615911,2.689164 +-0.491881,0.870431,-0.843868,-1.965866,0.616451,2.688209 +-0.492978,0.869426,-0.844617,-1.966871,0.616911,2.687204 +-0.494109,0.868375,-0.845295,-1.967922,0.617290,2.686153 +-0.495267,0.867284,-0.845899,-1.969013,0.617585,2.685062 +-0.496446,0.866158,-0.846426,-1.970139,0.617796,2.683936 +-0.497641,0.865004,-0.846874,-1.971293,0.617919,2.682783 +-0.498845,0.863828,-0.847239,-1.972469,0.617956,2.681606 +-0.500051,0.862635,-0.847521,-1.973662,0.617906,2.680414 +-0.501254,0.861433,-0.847718,-1.974865,0.617769,2.679211 +-0.502448,0.860226,-0.847828,-1.976071,0.617545,2.678004 +-0.503625,0.859022,-0.847851,-1.977275,0.617237,2.676800 +-0.504781,0.857826,-0.847787,-1.978471,0.616845,2.675604 +-0.505908,0.856646,-0.847636,-1.979651,0.616372,2.674424 +-0.507002,0.855486,-0.847400,-1.980811,0.615820,2.673265 +-0.508055,0.854354,-0.847078,-1.981943,0.615192,2.672132 +-0.509064,0.853255,-0.846674,-1.983042,0.614491,2.671033 +-0.510022,0.852195,-0.846189,-1.984102,0.613722,2.669973 +-0.510924,0.851179,-0.845625,-1.985118,0.612887,2.668957 +-0.511766,0.850212,-0.844986,-1.986085,0.611991,2.667990 +-0.512544,0.849301,-0.844275,-1.986997,0.611040,2.667079 +-0.513253,0.848448,-0.843495,-1.987849,0.610037,2.666226 +-0.513890,0.847660,-0.842651,-1.988637,0.608989,2.665438 +-0.514452,0.846939,-0.841747,-1.989358,0.607900,2.664718 +-0.514934,0.846291,-0.840788,-1.990007,0.606777,2.664069 +-0.515336,0.845717,-0.839778,-1.990580,0.605624,2.663495 +-0.515655,0.845221,-0.838724,-1.991076,0.604449,2.663000 +-0.515888,0.844807,-0.837630,-1.991490,0.603257,2.662585 +-0.516036,0.844475,-0.836502,-1.991822,0.602055,2.662253 +-0.516097,0.844227,-0.835347,-1.992070,0.600848,2.662006 +-0.516071,0.844066,-0.834169,-1.992231,0.599644,2.661844 +-0.515957,0.843991,-0.832976,-1.992306,0.598448,2.661769 +-0.515758,0.844003,-0.831773,-1.992294,0.597266,2.661782 +-0.515473,0.844103,-0.830568,-1.992194,0.596105,2.661881 +-0.515104,0.844289,-0.829365,-1.992008,0.594971,2.662067 +-0.514653,0.844560,-0.828171,-1.991737,0.593870,2.662338 +-0.514123,0.844916,-0.826993,-1.991381,0.592807,2.662694 +-0.513515,0.845354,-0.825837,-1.990944,0.591788,2.663132 +-0.512834,0.845871,-0.824708,-1.990426,0.590819,2.663650 +-0.512083,0.846467,-0.823613,-1.989831,0.589904,2.664245 +-0.511266,0.847136,-0.822558,-1.989161,0.589048,2.664914 +-0.510387,0.847876,-0.821547,-1.988421,0.588255,2.665654 +-0.509450,0.848683,-0.820586,-1.987614,0.587531,2.666461 +-0.508461,0.849553,-0.819681,-1.986745,0.586877,2.667331 +-0.507425,0.850480,-0.818835,-1.985817,0.586299,2.668258 +-0.506347,0.851461,-0.818054,-1.984836,0.585799,2.669239 +-0.505232,0.852490,-0.817340,-1.983807,0.585379,2.670268 +-0.504087,0.853562,-0.816699,-1.982735,0.585042,2.671340 +-0.502918,0.854671,-0.816133,-1.981626,0.584790,2.672449 +-0.501730,0.855812,-0.815646,-1.980485,0.584623,2.673590 +-0.500530,0.856978,-0.815239,-1.979319,0.584543,2.674756 +-0.499324,0.858163,-0.814916,-1.978134,0.584550,2.675941 +-0.498118,0.859362,-0.814677,-1.976935,0.584644,2.677140 +-0.496919,0.860567,-0.814524,-1.975730,0.584825,2.678345 +-0.495733,0.861773,-0.814457,-1.974524,0.585092,2.679552 +-0.494566,0.862974,-0.814478,-1.973323,0.585442,2.680752 +-0.493424,0.864163,-0.814586,-1.972134,0.585875,2.681941 +-0.492313,0.865333,-0.814780,-1.970964,0.586388,2.683111 +-0.491239,0.866480,-0.815059,-1.969817,0.586979,2.684258 +-0.490207,0.867596,-0.815423,-1.968701,0.587644,2.685374 +-0.489223,0.868676,-0.815868,-1.967621,0.588380,2.686454 +-0.488293,0.869715,-0.816393,-1.966582,0.589183,2.687493 +-0.487420,0.870707,-0.816995,-1.965591,0.590049,2.688485 +-0.486610,0.871646,-0.817671,-1.964651,0.590973,2.689424 +-0.485866,0.872528,-0.818417,-1.963769,0.591951,2.690307 +-0.485193,0.873349,-0.819230,-1.962948,0.592978,2.691127 +-0.484594,0.874104,-0.820105,-1.962193,0.594047,2.691882 +-0.484071,0.874788,-0.821037,-1.961509,0.595154,2.692567 +-0.483629,0.875400,-0.822023,-1.960897,0.596293,2.693178 +-0.483269,0.875934,-0.823055,-1.960363,0.597457,2.693713 +-0.482993,0.876389,-0.824130,-1.959908,0.598642,2.694168 +-0.482803,0.876763,-0.825242,-1.959534,0.599840,2.694541 +-0.482699,0.877052,-0.826385,-1.959245,0.601045,2.694830 +-0.482682,0.877257,-0.827552,-1.959041,0.602251,2.695035 +-0.482752,0.877374,-0.828738,-1.958923,0.603452,2.695153 +-0.482909,0.877405,-0.829937,-1.958892,0.604642,2.695183 +-0.483152,0.877349,-0.831142,-1.958948,0.605814,2.695127 +-0.483479,0.877206,-0.832347,-1.959091,0.606962,2.694984 +-0.483890,0.876977,-0.833546,-1.959320,0.608080,2.694755 +-0.484381,0.876663,-0.834732,-1.959634,0.609163,2.694441 +-0.484951,0.876265,-0.835900,-1.960032,0.610204,2.694044 +-0.485595,0.875787,-0.837043,-1.960510,0.611199,2.693565 +-0.486312,0.875230,-0.838156,-1.961067,0.612142,2.693008 +-0.487097,0.874597,-0.839231,-1.961700,0.613027,2.692375 +-0.487946,0.873891,-0.840265,-1.962406,0.613852,2.691670 +-0.488855,0.873117,-0.841251,-1.963180,0.614611,2.690895 +-0.489818,0.872278,-0.842185,-1.964019,0.615300,2.690056 +-0.490832,0.871379,-0.843061,-1.964919,0.615915,2.689157 +-0.491890,0.870423,-0.843875,-1.965874,0.616455,2.688202 +-0.492987,0.869418,-0.844622,-1.966880,0.616915,2.687196 +-0.494118,0.868366,-0.845300,-1.967931,0.617293,2.686144 +-0.495276,0.867275,-0.845903,-1.969022,0.617587,2.685053 +-0.496455,0.866149,-0.846430,-1.970148,0.617797,2.683927 +-0.497650,0.864995,-0.846877,-1.971302,0.617920,2.682773 +-0.498854,0.863819,-0.847242,-1.972479,0.617956,2.681597 +-0.500061,0.862626,-0.847523,-1.973671,0.617905,2.680404 +-0.501264,0.861423,-0.847719,-1.974874,0.617767,2.679201 +-0.502457,0.860216,-0.847828,-1.976081,0.617543,2.677994 +-0.503635,0.859012,-0.847851,-1.977285,0.617234,2.676790 +-0.504790,0.857817,-0.847786,-1.978480,0.616842,2.675595 +-0.505917,0.856636,-0.847635,-1.979661,0.616368,2.674415 +-0.507010,0.855477,-0.847398,-1.980820,0.615815,2.673255 +-0.508063,0.854345,-0.847076,-1.981952,0.615187,2.672123 +-0.509071,0.853246,-0.846671,-1.983051,0.614486,2.671025 +-0.510029,0.852186,-0.846185,-1.984111,0.613715,2.669965 +-0.510931,0.851171,-0.845620,-1.985126,0.612880,2.668949 +-0.511773,0.850205,-0.844981,-1.986092,0.611984,2.667983 +-0.512550,0.849294,-0.844269,-1.987004,0.611032,2.667072 +-0.513259,0.848442,-0.843489,-1.987855,0.610029,2.666220 +-0.513895,0.847654,-0.842644,-1.988643,0.608980,2.665432 +-0.514456,0.846934,-0.841740,-1.989363,0.607891,2.664712 +-0.514938,0.846286,-0.840780,-1.990011,0.606768,2.664064 +-0.515339,0.845713,-0.839770,-1.990584,0.605615,2.663491 +-0.515657,0.845218,-0.838715,-1.991079,0.604440,2.662996 +-0.515890,0.844804,-0.837621,-1.991493,0.603248,2.662582 +-0.516037,0.844472,-0.836493,-1.991825,0.602045,2.662251 +-0.516097,0.844226,-0.835337,-1.992071,0.600839,2.662004 +-0.516070,0.844065,-0.834160,-1.992232,0.599634,2.661843 +-0.515956,0.843991,-0.832967,-1.992306,0.598438,2.661769 +-0.515756,0.844004,-0.831764,-1.992293,0.597257,2.661782 +-0.515470,0.844104,-0.830558,-1.992193,0.596096,2.661882 +-0.515101,0.844290,-0.829355,-1.992007,0.594962,2.662069 +-0.514649,0.844563,-0.828162,-1.991735,0.593861,2.662341 +-0.514118,0.844919,-0.826984,-1.991378,0.592799,2.662697 +-0.513510,0.845357,-0.825828,-1.990940,0.591780,2.663136 +-0.512829,0.845876,-0.824700,-1.990421,0.590811,2.663654 +-0.512077,0.846472,-0.823605,-1.989825,0.589897,2.664250 +-0.511259,0.847142,-0.822550,-1.989156,0.589041,2.664920 +-0.510380,0.847882,-0.821539,-1.988415,0.588249,2.665660 +-0.509443,0.848690,-0.820579,-1.987607,0.587525,2.666468 +-0.508453,0.849560,-0.819674,-1.986737,0.586873,2.667338 +-0.507417,0.850488,-0.818829,-1.985809,0.586295,2.668266 +-0.506338,0.851469,-0.818048,-1.984828,0.585795,2.669247 +-0.505223,0.852499,-0.817335,-1.983798,0.585376,2.670277 +-0.504078,0.853571,-0.816694,-1.982726,0.585040,2.671349 +-0.502908,0.854680,-0.816129,-1.981617,0.584788,2.672458 +-0.501720,0.855821,-0.815642,-1.980476,0.584622,2.673599 +-0.500520,0.856987,-0.815236,-1.979310,0.584543,2.674765 +-0.499314,0.858173,-0.814913,-1.978125,0.584551,2.675951 +-0.498108,0.859371,-0.814675,-1.976926,0.584646,2.677149 +-0.496909,0.860577,-0.814523,-1.975720,0.584827,2.678355 +-0.495723,0.861783,-0.814457,-1.974514,0.585094,2.679561 +-0.494556,0.862983,-0.814478,-1.973314,0.585445,2.680762 +-0.493415,0.864172,-0.814587,-1.972125,0.585879,2.681950 +-0.492304,0.865342,-0.814782,-1.970955,0.586393,2.683121 +-0.491230,0.866489,-0.815062,-1.969808,0.586984,2.684267 +-0.490199,0.867605,-0.815426,-1.968692,0.587650,2.685383 +-0.489216,0.868685,-0.815872,-1.967612,0.588386,2.686463 +-0.488286,0.869723,-0.816398,-1.966574,0.589190,2.687501 +-0.487413,0.870714,-0.817000,-1.965583,0.590056,2.688492 +-0.486603,0.871653,-0.817677,-1.964644,0.590981,2.689431 +-0.485860,0.872535,-0.818424,-1.963762,0.591959,2.690313 +-0.485188,0.873355,-0.819237,-1.962942,0.592986,2.691134 +-0.484589,0.874109,-0.820112,-1.962188,0.594056,2.691888 +-0.484068,0.874794,-0.821045,-1.961503,0.595163,2.692572 +-0.483626,0.875404,-0.822031,-1.960893,0.596302,2.693182 +-0.483267,0.875938,-0.823064,-1.960359,0.597467,2.693716 +-0.482991,0.876393,-0.824139,-1.959904,0.598651,2.694171 +-0.482802,0.876765,-0.825251,-1.959532,0.599849,2.694544 +-0.482698,0.877054,-0.826394,-1.959243,0.601055,2.694832 +-0.482682,0.877258,-0.827561,-1.959039,0.602261,2.695036 +-0.482753,0.877375,-0.828748,-1.958922,0.603462,2.695153 +-0.482911,0.877405,-0.829946,-1.958892,0.604651,2.695183 +-0.483154,0.877348,-0.831151,-1.958949,0.605823,2.695126 +-0.483482,0.877205,-0.832357,-1.959093,0.606971,2.694983 +-0.483893,0.876975,-0.833555,-1.959322,0.608089,2.694753 +-0.484385,0.876660,-0.834742,-1.959637,0.609171,2.694438 +-0.484955,0.876262,-0.835909,-1.960035,0.610212,2.694040 +-0.485601,0.875783,-0.837052,-1.960514,0.611207,2.693561 +-0.486318,0.875225,-0.838164,-1.961072,0.612149,2.693003 +-0.487104,0.874591,-0.839240,-1.961706,0.613034,2.692370 +-0.487953,0.873885,-0.840273,-1.962412,0.613858,2.691664 +-0.488862,0.873111,-0.841259,-1.963187,0.614616,2.690889 +-0.489826,0.872271,-0.842192,-1.964026,0.615305,2.690049 +-0.490840,0.871371,-0.843068,-1.964926,0.615920,2.689149 +-0.491899,0.870416,-0.843881,-1.965882,0.616459,2.688194 +-0.492996,0.869409,-0.844628,-1.966888,0.616918,2.687188 +-0.494127,0.868358,-0.845305,-1.967939,0.617296,2.686136 +-0.495285,0.867266,-0.845908,-1.969031,0.617589,2.685044 +-0.496465,0.866140,-0.846434,-1.970157,0.617798,2.683918 +-0.497660,0.864986,-0.846880,-1.971311,0.617921,2.682764 +-0.498864,0.863809,-0.847245,-1.972488,0.617956,2.681587 +-0.500070,0.862616,-0.847525,-1.973681,0.617904,2.680394 +-0.501274,0.861413,-0.847720,-1.974884,0.617766,2.679192 +-0.502467,0.860207,-0.847829,-1.976090,0.617541,2.677985 +-0.503644,0.859003,-0.847851,-1.977295,0.617231,2.676781 +-0.504799,0.857807,-0.847785,-1.978490,0.616838,2.675585 +-0.505926,0.856627,-0.847633,-1.979670,0.616364,2.674405 +-0.507019,0.855468,-0.847395,-1.980829,0.615811,2.673246 +-0.508072,0.854336,-0.847073,-1.981961,0.615182,2.672115 +-0.509079,0.853238,-0.846667,-1.983059,0.614480,2.671016 +-0.510036,0.852178,-0.846180,-1.984119,0.613709,2.669956 +-0.510938,0.851163,-0.845616,-1.985134,0.612873,2.668941 +-0.511779,0.850197,-0.844975,-1.986100,0.611977,2.667975 +-0.512556,0.849286,-0.844263,-1.987011,0.611024,2.667065 +-0.513264,0.848435,-0.843482,-1.987862,0.610021,2.666213 +-0.513900,0.847648,-0.842637,-1.988649,0.608972,2.665426 +-0.514460,0.846928,-0.841732,-1.989369,0.607882,2.664707 +-0.514941,0.846281,-0.840772,-1.990016,0.606758,2.664059 +-0.515342,0.845708,-0.839762,-1.990589,0.605606,2.663487 +-0.515659,0.845214,-0.838707,-1.991083,0.604430,2.662992 +-0.515891,0.844801,-0.837612,-1.991496,0.603238,2.662579 +-0.516038,0.844470,-0.836484,-1.991827,0.602036,2.662248 +-0.516097,0.844224,-0.835328,-1.992073,0.600829,2.662002 +-0.516070,0.844064,-0.834150,-1.992233,0.599625,2.661842 +-0.515955,0.843991,-0.832957,-1.992307,0.598429,2.661769 +-0.515754,0.844004,-0.831754,-1.992293,0.597247,2.661782 +-0.515467,0.844105,-0.830548,-1.992192,0.596087,2.661883 +-0.515097,0.844292,-0.829346,-1.992005,0.594953,2.662070 +-0.514645,0.844565,-0.828152,-1.991732,0.593853,2.662343 +-0.514113,0.844922,-0.826975,-1.991375,0.592790,2.662700 +-0.513505,0.845361,-0.825819,-1.990936,0.591772,2.663139 +-0.512823,0.845880,-0.824691,-1.990417,0.590804,2.663658 +-0.512071,0.846477,-0.823596,-1.989820,0.589889,2.664255 +-0.511252,0.847147,-0.822541,-1.989150,0.589034,2.664925 +-0.510372,0.847888,-0.821531,-1.988409,0.588243,2.665667 +-0.509435,0.848696,-0.820572,-1.987601,0.587520,2.666475 +-0.508445,0.849567,-0.819667,-1.986730,0.586868,2.667345 +-0.507408,0.850495,-0.818822,-1.985802,0.586291,2.668274 +-0.506329,0.851477,-0.818042,-1.984820,0.585792,2.669255 +-0.505214,0.852507,-0.817330,-1.983790,0.585373,2.670285 +-0.504069,0.853580,-0.816690,-1.982718,0.585038,2.671358 +-0.502899,0.854689,-0.816125,-1.981608,0.584787,2.672467 +-0.501711,0.855830,-0.815639,-1.980467,0.584621,2.673608 +-0.500511,0.856996,-0.815233,-1.979301,0.584543,2.674775 +-0.499305,0.858182,-0.814911,-1.978115,0.584551,2.675960 +-0.498099,0.859381,-0.814673,-1.976916,0.584647,2.677159 +-0.496900,0.860586,-0.814522,-1.975711,0.584829,2.678365 +-0.495714,0.861793,-0.814457,-1.974505,0.585096,2.679571 +-0.494547,0.862993,-0.814479,-1.973304,0.585448,2.680771 +-0.493406,0.864181,-0.814588,-1.972116,0.585883,2.681960 +-0.492295,0.865352,-0.814784,-1.970945,0.586397,2.683130 +-0.491222,0.866498,-0.815064,-1.969799,0.586989,2.684276 +-0.490191,0.867613,-0.815429,-1.968684,0.587655,2.685392 +-0.489208,0.868693,-0.815876,-1.967604,0.588392,2.686471 +-0.488278,0.869731,-0.816402,-1.966566,0.589196,2.687509 +-0.487407,0.870722,-0.817005,-1.965575,0.590063,2.688500 +-0.486597,0.871661,-0.817683,-1.964637,0.590988,2.689439 +-0.485855,0.872542,-0.818430,-1.963755,0.591967,2.690320 +-0.485183,0.873362,-0.819244,-1.962936,0.592994,2.691140 +-0.484585,0.874115,-0.820119,-1.962182,0.594064,2.691893 +-0.484064,0.874799,-0.821053,-1.961498,0.595172,2.692577 +-0.483623,0.875409,-0.822039,-1.960888,0.596311,2.693187 +-0.483264,0.875942,-0.823072,-1.960355,0.597476,2.693720 +-0.482990,0.876396,-0.824148,-1.959901,0.598661,2.694174 +-0.482801,0.876768,-0.825260,-1.959529,0.599859,2.694546 +-0.482698,0.877056,-0.826403,-1.959241,0.601064,2.694834 +-0.482682,0.877259,-0.827571,-1.959038,0.602271,2.695037 +-0.482754,0.877376,-0.828757,-1.958922,0.603472,2.695154 +-0.482912,0.877405,-0.829956,-1.958892,0.604661,2.695183 +-0.483156,0.877347,-0.831161,-1.958950,0.605832,2.695126 +-0.483485,0.877203,-0.832366,-1.959094,0.606980,2.694981 +-0.483897,0.876973,-0.833565,-1.959325,0.608098,2.694751 +-0.484390,0.876657,-0.834751,-1.959640,0.609180,2.694435 +-0.484960,0.876258,-0.835919,-1.960039,0.610220,2.694037 +-0.485606,0.875779,-0.837061,-1.960518,0.611214,2.693557 +-0.486324,0.875220,-0.838173,-1.961077,0.612156,2.692998 +-0.487110,0.874586,-0.839248,-1.961711,0.613041,2.692364 +-0.487960,0.873880,-0.840281,-1.962418,0.613864,2.691658 +-0.488870,0.873104,-0.841267,-1.963193,0.614622,2.690882 +-0.489834,0.872264,-0.842199,-1.964033,0.615310,2.690042 +-0.490848,0.871364,-0.843074,-1.964933,0.615925,2.689142 +-0.491907,0.870408,-0.843887,-1.965889,0.616463,2.688186 +-0.493005,0.869401,-0.844634,-1.966896,0.616921,2.687179 +-0.494136,0.868349,-0.845310,-1.967948,0.617298,2.686127 +-0.495295,0.867257,-0.845912,-1.969040,0.617591,2.685035 +-0.496474,0.866131,-0.846438,-1.970166,0.617799,2.683909 +-0.497669,0.864977,-0.846883,-1.971321,0.617921,2.682755 +-0.498873,0.863800,-0.847247,-1.972497,0.617956,2.681578 +-0.500080,0.862607,-0.847527,-1.973690,0.617903,2.680385 +-0.501283,0.861404,-0.847721,-1.974893,0.617764,2.679182 +-0.502476,0.860197,-0.847829,-1.976100,0.617539,2.677975 +-0.503653,0.858993,-0.847850,-1.977304,0.617228,2.676771 +-0.504808,0.857798,-0.847784,-1.978499,0.616835,2.675576 +-0.505935,0.856618,-0.847632,-1.979679,0.616360,2.674396 +-0.507027,0.855459,-0.847393,-1.980838,0.615806,2.673237 +-0.508080,0.854328,-0.847070,-1.981970,0.615176,2.672106 +-0.509087,0.853229,-0.846663,-1.983068,0.614474,2.671007 +-0.510044,0.852170,-0.846176,-1.984127,0.613703,2.669948 +-0.510945,0.851155,-0.845611,-1.985142,0.612866,2.668933 +-0.511786,0.850190,-0.844970,-1.986107,0.611969,2.667968 +-0.512562,0.849279,-0.844257,-1.987018,0.611017,2.667058 +-0.513270,0.848429,-0.843476,-1.987868,0.610013,2.666207 +-0.513905,0.847642,-0.842630,-1.988655,0.608963,2.665420 +-0.514464,0.846923,-0.841725,-1.989374,0.607874,2.664701 +-0.514945,0.846276,-0.840764,-1.990021,0.606749,2.664054 +-0.515345,0.845704,-0.839754,-1.990593,0.605596,2.663482 +-0.515661,0.845211,-0.838698,-1.991086,0.604421,2.662989 +-0.515893,0.844798,-0.837603,-1.991499,0.603229,2.662576 +-0.516039,0.844468,-0.836475,-1.991829,0.602026,2.662246 +-0.516097,0.844222,-0.835319,-1.992075,0.600819,2.662001 +-0.516069,0.844063,-0.834141,-1.992234,0.599615,2.661841 +-0.515954,0.843990,-0.832947,-1.992307,0.598419,2.661769 +-0.515752,0.844005,-0.831745,-1.992292,0.597238,2.661783 +-0.515465,0.844106,-0.830539,-1.992191,0.596078,2.661884 +-0.515094,0.844294,-0.829336,-1.992003,0.594944,2.662072 +-0.514641,0.844568,-0.828143,-1.991730,0.593844,2.662346 +-0.514109,0.844925,-0.826965,-1.991372,0.592782,2.662703 +-0.513500,0.845365,-0.825810,-1.990932,0.591764,2.663143 +-0.512817,0.845885,-0.824682,-1.990412,0.590796,2.663663 +-0.512065,0.846482,-0.823588,-1.989815,0.589882,2.664260 +-0.511246,0.847153,-0.822533,-1.989144,0.589028,2.664931 +-0.510365,0.847895,-0.821524,-1.988403,0.588237,2.665673 +-0.509427,0.848703,-0.820564,-1.987594,0.587514,2.666481 +-0.508437,0.849574,-0.819660,-1.986723,0.586863,2.667352 +-0.507400,0.850503,-0.818816,-1.985794,0.586286,2.668281 +-0.506321,0.851485,-0.818036,-1.984812,0.585788,2.669263 +-0.505205,0.852515,-0.817324,-1.983782,0.585370,2.670294 +-0.504060,0.853588,-0.816685,-1.982709,0.585035,2.671366 +-0.502890,0.854698,-0.816121,-1.981599,0.584785,2.672476 +-0.501701,0.855839,-0.815635,-1.980458,0.584620,2.673617 +-0.500501,0.857006,-0.815230,-1.979291,0.584542,2.674784 +-0.499295,0.858192,-0.814909,-1.978106,0.584552,2.675970 +-0.498089,0.859390,-0.814672,-1.976907,0.584648,2.677169 +-0.496890,0.860596,-0.814521,-1.975701,0.584831,2.678374 +-0.495705,0.861802,-0.814457,-1.974495,0.585099,2.679580 +-0.494538,0.863002,-0.814480,-1.973295,0.585452,2.680781 +-0.493397,0.864191,-0.814589,-1.972106,0.585887,2.681969 +-0.492287,0.865361,-0.814785,-1.970936,0.586402,2.683139 +-0.491213,0.866507,-0.815067,-1.969790,0.586994,2.684285 +-0.490183,0.867622,-0.815432,-1.968675,0.587661,2.685400 +-0.489201,0.868702,-0.815880,-1.967596,0.588398,2.686480 +-0.488271,0.869739,-0.816407,-1.966558,0.589203,2.687517 +-0.487400,0.870730,-0.817011,-1.965567,0.590070,2.688508 +-0.486591,0.871668,-0.817688,-1.964629,0.590996,2.689446 +-0.485849,0.872549,-0.818436,-1.963748,0.591975,2.690327 +-0.485178,0.873368,-0.819250,-1.962929,0.593003,2.691146 +-0.484580,0.874121,-0.820127,-1.962176,0.594073,2.691899 +-0.484060,0.874804,-0.821060,-1.961493,0.595181,2.692582 +-0.483620,0.875413,-0.822047,-1.960884,0.596320,2.693192 +-0.483262,0.875946,-0.823081,-1.960351,0.597486,2.693724 +-0.482988,0.876399,-0.824157,-1.959898,0.598670,2.694178 +-0.482799,0.876771,-0.825269,-1.959526,0.599868,2.694549 +-0.482697,0.877058,-0.826412,-1.959239,0.601074,2.694836 +-0.482683,0.877260,-0.827580,-1.959037,0.602280,2.695039 +-0.482755,0.877376,-0.828767,-1.958921,0.603481,2.695154 +-0.482914,0.877405,-0.829966,-1.958892,0.604670,2.695183 +-0.483159,0.877347,-0.831171,-1.958950,0.605842,2.695125 +-0.483488,0.877202,-0.832376,-1.959096,0.606989,2.694980 +-0.483901,0.876970,-0.833574,-1.959327,0.608107,2.694749 +-0.484394,0.876654,-0.834761,-1.959643,0.609188,2.694432 +-0.484965,0.876255,-0.835928,-1.960042,0.610228,2.694033 +-0.485612,0.875775,-0.837070,-1.960523,0.611222,2.693553 +-0.486330,0.875216,-0.838182,-1.961082,0.612163,2.692994 +-0.487117,0.874581,-0.839257,-1.961716,0.613048,2.692359 +-0.487967,0.873874,-0.840289,-1.962423,0.613871,2.691652 +-0.488877,0.873098,-0.841274,-1.963199,0.614628,2.690876 +-0.489842,0.872257,-0.842206,-1.964040,0.615315,2.690035 +-0.490857,0.871356,-0.843081,-1.964941,0.615929,2.689135 +-0.491916,0.870400,-0.843893,-1.965897,0.616467,2.688178 +-0.493014,0.869393,-0.844639,-1.966904,0.616925,2.687171 +-0.494145,0.868341,-0.845315,-1.967957,0.617301,2.686119 +-0.495304,0.867248,-0.845917,-1.969049,0.617593,2.685027 +-0.496484,0.866122,-0.846442,-1.970175,0.617801,2.683900 +-0.497679,0.864967,-0.846887,-1.971330,0.617922,2.682745 +-0.498883,0.863790,-0.847250,-1.972507,0.617956,2.681568 +-0.500090,0.862597,-0.847529,-1.973700,0.617903,2.680375 +-0.501293,0.861394,-0.847723,-1.974903,0.617763,2.679172 +-0.502486,0.860187,-0.847830,-1.976110,0.617537,2.677966 +-0.503663,0.858983,-0.847850,-1.977314,0.617226,2.676762 +-0.504817,0.857788,-0.847784,-1.978509,0.616831,2.675567 +-0.505944,0.856608,-0.847630,-1.979689,0.616356,2.674387 +-0.507036,0.855450,-0.847391,-1.980847,0.615801,2.673228 +-0.508088,0.854319,-0.847067,-1.981979,0.615171,2.672097 +-0.509095,0.853221,-0.846660,-1.983077,0.614468,2.670999 +-0.510051,0.852162,-0.846172,-1.984136,0.613696,2.669940 +-0.510952,0.851147,-0.845606,-1.985150,0.612859,2.668925 +-0.511792,0.850182,-0.844964,-1.986115,0.611962,2.667961 +-0.512568,0.849272,-0.844251,-1.987025,0.611009,2.667051 +-0.513275,0.848422,-0.843469,-1.987875,0.610005,2.666200 +-0.513909,0.847636,-0.842623,-1.988661,0.608955,2.665414 +-0.514468,0.846918,-0.841717,-1.989380,0.607865,2.664696 +-0.514949,0.846271,-0.840756,-1.990026,0.606740,2.664049 +-0.515348,0.845700,-0.839745,-1.990597,0.605587,2.663478 +-0.515663,0.845207,-0.838690,-1.991090,0.604411,2.662985 +-0.515894,0.844795,-0.837595,-1.991502,0.603219,2.662573 +-0.516039,0.844466,-0.836466,-1.991832,0.602016,2.662244 +-0.516097,0.844221,-0.835310,-1.992076,0.600810,2.661999 +-0.516068,0.844062,-0.834131,-1.992235,0.599605,2.661840 +-0.515952,0.843990,-0.832938,-1.992307,0.598410,2.661768 +-0.515750,0.844005,-0.831735,-1.992292,0.597229,2.661783 +-0.515462,0.844107,-0.830529,-1.992190,0.596069,2.661886 +-0.515091,0.844296,-0.829327,-1.992001,0.594936,2.662074 +-0.514637,0.844570,-0.828133,-1.991727,0.593835,2.662348 +-0.514104,0.844928,-0.826956,-1.991369,0.592774,2.662707 +-0.513495,0.845369,-0.825801,-1.990928,0.591757,2.663147 +-0.512811,0.845889,-0.824673,-1.990408,0.590789,2.663667 +-0.512058,0.846487,-0.823579,-1.989810,0.589875,2.664265 +-0.511239,0.847158,-0.822525,-1.989139,0.589021,2.664937 +-0.510358,0.847901,-0.821516,-1.988396,0.588231,2.665679 +-0.509420,0.848710,-0.820557,-1.987587,0.587509,2.666488 +-0.508429,0.849581,-0.819653,-1.986716,0.586858,2.667359 +-0.507391,0.850511,-0.818809,-1.985786,0.586282,2.668289 +-0.506312,0.851493,-0.818030,-1.984804,0.585784,2.669271 +-0.505196,0.852524,-0.817319,-1.983773,0.585367,2.670302 +-0.504050,0.853597,-0.816680,-1.982700,0.585033,2.671375 +-0.502880,0.854707,-0.816117,-1.981590,0.584783,2.672485 +-0.501692,0.855849,-0.815632,-1.980449,0.584619,2.673627 +-0.500491,0.857015,-0.815228,-1.979282,0.584542,2.674793 +-0.499285,0.858201,-0.814907,-1.978096,0.584552,2.675979 +-0.498080,0.859400,-0.814670,-1.976897,0.584649,2.677178 +-0.496881,0.860606,-0.814520,-1.975692,0.584832,2.678384 +-0.495695,0.861812,-0.814457,-1.974485,0.585101,2.679590 +-0.494529,0.863012,-0.814480,-1.973285,0.585455,2.680790 +-0.493388,0.864200,-0.814591,-1.972097,0.585890,2.681978 +-0.492278,0.865370,-0.814787,-1.970927,0.586406,2.683148 +-0.491205,0.866516,-0.815070,-1.969781,0.586999,2.684294 +-0.490175,0.867631,-0.815436,-1.968666,0.587666,2.685409 +-0.489193,0.868710,-0.815884,-1.967587,0.588405,2.686488 +-0.488264,0.869747,-0.816411,-1.966550,0.589210,2.687525 +-0.487393,0.870737,-0.817016,-1.965560,0.590077,2.688516 +-0.486585,0.871675,-0.817694,-1.964622,0.591004,2.689453 +-0.485843,0.872556,-0.818442,-1.963742,0.591983,2.690334 +-0.485172,0.873374,-0.819257,-1.962923,0.593011,2.691152 +-0.484576,0.874127,-0.820134,-1.962171,0.594082,2.691905 +-0.484056,0.874809,-0.821068,-1.961488,0.595190,2.692587 +-0.483617,0.875418,-0.822055,-1.960879,0.596330,2.693196 +-0.483259,0.875950,-0.823089,-1.960347,0.597495,2.693728 +-0.482986,0.876403,-0.824165,-1.959894,0.598680,2.694181 +-0.482798,0.876773,-0.825278,-1.959524,0.599878,2.694551 +-0.482697,0.877060,-0.826421,-1.959237,0.601083,2.694838 +-0.482683,0.877262,-0.827589,-1.959036,0.602290,2.695040 +-0.482756,0.877377,-0.828776,-1.958920,0.603491,2.695155 +-0.482915,0.877405,-0.829975,-1.958892,0.604680,2.695183 +-0.483161,0.877346,-0.831180,-1.958951,0.605851,2.695124 +-0.483491,0.877200,-0.832385,-1.959097,0.606998,2.694978 +-0.483904,0.876968,-0.833584,-1.959329,0.608115,2.694746 +-0.484398,0.876651,-0.834770,-1.959646,0.609197,2.694430 +-0.484970,0.876251,-0.835937,-1.960046,0.610237,2.694030 +-0.485617,0.875770,-0.837079,-1.960527,0.611230,2.693549 +-0.486336,0.875211,-0.838190,-1.961086,0.612171,2.692989 +-0.487123,0.874575,-0.839265,-1.961722,0.613055,2.692354 +-0.487974,0.873868,-0.840297,-1.962429,0.613877,2.691646 +-0.488885,0.873091,-0.841282,-1.963206,0.614634,2.690870 +-0.489850,0.872250,-0.842214,-1.964047,0.615320,2.690028 +-0.490865,0.871349,-0.843088,-1.964948,0.615934,2.689127 +-0.491924,0.870392,-0.843900,-1.965905,0.616471,2.688170 +-0.493023,0.869385,-0.844645,-1.966912,0.616928,2.687163 +-0.494154,0.868332,-0.845320,-1.967965,0.617304,2.686110 +-0.495313,0.867240,-0.845921,-1.969058,0.617595,2.685018 +-0.496493,0.866113,-0.846445,-1.970184,0.617802,2.683891 +-0.497688,0.864958,-0.846890,-1.971339,0.617922,2.682736 +-0.498893,0.863781,-0.847252,-1.972516,0.617956,2.681559 +-0.500099,0.862588,-0.847531,-1.973709,0.617902,2.680366 +-0.501302,0.861385,-0.847724,-1.974913,0.617761,2.679163 +-0.502495,0.860178,-0.847830,-1.976119,0.617535,2.677956 +-0.503672,0.858974,-0.847850,-1.977323,0.617223,2.676752 +-0.504826,0.857779,-0.847783,-1.978518,0.616828,2.675557 +-0.505952,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-0.507044,0.855441,-0.847389,-1.980856,0.615797,2.673219 +-0.508096,0.854310,-0.847064,-1.981987,0.615166,2.672088 +-0.509103,0.853212,-0.846656,-1.983085,0.614462,2.670990 +-0.510059,0.852153,-0.846168,-1.984144,0.613690,2.669932 +-0.510959,0.851139,-0.845601,-1.985158,0.612852,2.668917 +-0.511799,0.850175,-0.844959,-1.986122,0.611955,2.667953 +-0.512574,0.849265,-0.844245,-1.987032,0.611001,2.667044 +-0.513280,0.848416,-0.843463,-1.987882,0.609996,2.666194 +-0.513914,0.847630,-0.842616,-1.988667,0.608946,2.665408 +-0.514472,0.846912,-0.841710,-1.989385,0.607856,2.664690 +-0.514952,0.846266,-0.840749,-1.990031,0.606731,2.664045 +-0.515350,0.845696,-0.839737,-1.990601,0.605578,2.663474 +-0.515666,0.845203,-0.838681,-1.991094,0.604402,2.662982 +-0.515896,0.844792,-0.837586,-1.991505,0.603210,2.662570 +-0.516040,0.844463,-0.836457,-1.991834,0.602007,2.662241 +-0.516098,0.844219,-0.835300,-1.992078,0.600800,2.661997 +-0.516068,0.844061,-0.834122,-1.992236,0.599596,2.661839 +-0.515951,0.843990,-0.832928,-1.992307,0.598400,2.661768 +-0.515748,0.844006,-0.831725,-1.992291,0.597219,2.661784 +-0.515460,0.844108,-0.830520,-1.992189,0.596059,2.661887 +-0.515087,0.844298,-0.829317,-1.991999,0.594927,2.662076 +-0.514633,0.844573,-0.828124,-1.991724,0.593827,2.662351 +-0.514100,0.844932,-0.826947,-1.991366,0.592766,2.662710 +-0.513490,0.845373,-0.825791,-1.990924,0.591749,2.663151 +-0.512806,0.845894,-0.824664,-1.990403,0.590781,2.663672 +-0.512052,0.846492,-0.823571,-1.989805,0.589868,2.664270 +-0.511232,0.847164,-0.822517,-1.989133,0.589015,2.664942 +-0.510351,0.847907,-0.821508,-1.988390,0.588225,2.665685 +-0.509412,0.848716,-0.820549,-1.987581,0.587503,2.666495 +-0.508421,0.849588,-0.819646,-1.986709,0.586853,2.667367 +-0.507383,0.850518,-0.818803,-1.985779,0.586278,2.668296 +-0.506303,0.851501,-0.818024,-1.984796,0.585781,2.669279 +-0.505187,0.852532,-0.817313,-1.983765,0.585364,2.670310 +-0.504041,0.853606,-0.816675,-1.982692,0.585031,2.671384 +-0.502871,0.854716,-0.816112,-1.981581,0.584782,2.672494 +-0.501682,0.855858,-0.815628,-1.980439,0.584618,2.673636 +-0.500482,0.857025,-0.815225,-1.979273,0.584542,2.674803 +-0.499276,0.858211,-0.814904,-1.978087,0.584552,2.675989 +-0.498070,0.859410,-0.814669,-1.976888,0.584650,2.677188 +-0.496871,0.860615,-0.814519,-1.975682,0.584834,2.678393 +-0.495686,0.861821,-0.814456,-1.974476,0.585104,2.679599 +-0.494520,0.863022,-0.814481,-1.973276,0.585458,2.680800 +-0.493379,0.864210,-0.814592,-1.972088,0.585894,2.681988 +-0.492269,0.865379,-0.814789,-1.970918,0.586410,2.683158 +-0.491197,0.866525,-0.815072,-1.969772,0.587004,2.684303 +-0.490167,0.867640,-0.815439,-1.968657,0.587672,2.685418 +-0.489185,0.868718,-0.815887,-1.967579,0.588411,2.686497 +-0.488257,0.869755,-0.816416,-1.966542,0.589216,2.687534 +-0.487387,0.870745,-0.817021,-1.965552,0.590085,2.688523 +-0.486579,0.871682,-0.817700,-1.964615,0.591011,2.689460 +-0.485838,0.872562,-0.818449,-1.963735,0.591991,2.690340 +-0.485167,0.873380,-0.819264,-1.962917,0.593019,2.691159 +-0.484571,0.874132,-0.820141,-1.962165,0.594090,2.691911 +-0.484052,0.874814,-0.821076,-1.961483,0.595199,2.692592 +-0.483613,0.875423,-0.822063,-1.960875,0.596339,2.693201 +-0.483257,0.875954,-0.823097,-1.960343,0.597504,2.693732 +-0.482984,0.876406,-0.824174,-1.959891,0.598689,2.694184 +-0.482797,0.876776,-0.825287,-1.959521,0.599888,2.694554 +-0.482697,0.877062,-0.826431,-1.959235,0.601093,2.694840 +-0.482683,0.877263,-0.827599,-1.959034,0.602299,2.695041 +-0.482757,0.877377,-0.828786,-1.958920,0.603500,2.695155 +-0.482917,0.877405,-0.829985,-1.958892,0.604689,2.695183 +-0.483163,0.877345,-0.831190,-1.958952,0.605860,2.695123 +-0.483494,0.877199,-0.832395,-1.959099,0.607007,2.694977 +-0.483908,0.876966,-0.833593,-1.959331,0.608124,2.694744 +-0.484402,0.876649,-0.834779,-1.959649,0.609205,2.694427 +-0.484975,0.876248,-0.835946,-1.960049,0.610245,2.694026 +-0.485623,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-0.486342,0.875206,-0.838199,-1.961091,0.612178,2.692984 +-0.487130,0.874570,-0.839273,-1.961727,0.613061,2.692348 +-0.487981,0.873862,-0.840305,-1.962435,0.613883,2.691640 +-0.488892,0.873085,-0.841289,-1.963212,0.614639,2.690863 +-0.489858,0.872243,-0.842221,-1.964054,0.615326,2.690022 +-0.490873,0.871342,-0.843094,-1.964956,0.615938,2.689120 +-0.491933,0.870384,-0.843906,-1.965913,0.616475,2.688163 +-0.493032,0.869377,-0.844651,-1.966921,0.616931,2.687155 +-0.494163,0.868324,-0.845325,-1.967974,0.617306,2.686102 +-0.495322,0.867231,-0.845926,-1.969066,0.617597,2.685009 +-0.496503,0.866104,-0.846449,-1.970193,0.617803,2.683882 +-0.497698,0.864949,-0.846893,-1.971348,0.617923,2.682727 +-0.498902,0.863771,-0.847255,-1.972526,0.617956,2.681550 +-0.500109,0.862578,-0.847533,-1.973719,0.617901,2.680356 +-0.501312,0.861375,-0.847725,-1.974922,0.617760,2.679153 +-0.502505,0.860168,-0.847831,-1.976129,0.617532,2.677946 +-0.503681,0.858964,-0.847850,-1.977333,0.617220,2.676743 +-0.504835,0.857769,-0.847782,-1.978528,0.616824,2.675548 +-0.505961,0.856590,-0.847627,-1.979707,0.616347,2.674368 +-0.507053,0.855432,-0.847386,-1.980865,0.615792,2.673210 +-0.508104,0.854301,-0.847061,-1.981996,0.615160,2.672079 +-0.509110,0.853203,-0.846653,-1.983094,0.614456,2.670982 +-0.510066,0.852145,-0.846164,-1.984152,0.613683,2.669923 +-0.510966,0.851131,-0.845596,-1.985166,0.612846,2.668910 +-0.511805,0.850167,-0.844954,-1.986130,0.611947,2.667946 +-0.512580,0.849258,-0.844239,-1.987039,0.610993,2.667037 +-0.513286,0.848409,-0.843456,-1.987888,0.609988,2.666187 +-0.513919,0.847624,-0.842609,-1.988673,0.608938,2.665402 +-0.514477,0.846907,-0.841702,-1.989390,0.607847,2.664685 +-0.514955,0.846261,-0.840741,-1.990036,0.606722,2.664040 +-0.515353,0.845692,-0.839729,-1.990606,0.605569,2.663470 +-0.515668,0.845200,-0.838673,-1.991097,0.604392,2.662978 +-0.515897,0.844789,-0.837577,-1.991508,0.603200,2.662567 +-0.516041,0.844461,-0.836448,-1.991836,0.601997,2.662239 +-0.516098,0.844218,-0.835291,-1.992079,0.600791,2.661996 +-0.516067,0.844060,-0.834113,-1.992237,0.599586,2.661838 +-0.515950,0.843990,-0.832919,-1.992307,0.598391,2.661768 +-0.515746,0.844006,-0.831716,-1.992291,0.597210,2.661784 +-0.515457,0.844110,-0.830510,-1.992187,0.596050,2.661888 +-0.515084,0.844300,-0.829307,-1.991997,0.594918,2.662078 +-0.514629,0.844575,-0.828115,-1.991722,0.593818,2.662353 +-0.514095,0.844935,-0.826937,-1.991362,0.592757,2.662713 +-0.513484,0.845376,-0.825782,-1.990921,0.591741,2.663155 +-0.512800,0.845898,-0.824655,-1.990399,0.590774,2.663676 +-0.512046,0.846497,-0.823562,-1.989800,0.589861,2.664275 +-0.511225,0.847170,-0.822509,-1.989127,0.589008,2.664948 +-0.510343,0.847913,-0.821500,-1.988384,0.588219,2.665691 +-0.509404,0.848723,-0.820542,-1.987574,0.587498,2.666501 +-0.508413,0.849596,-0.819639,-1.986702,0.586848,2.667374 +-0.507374,0.850526,-0.818796,-1.985771,0.586274,2.668304 +-0.506294,0.851509,-0.818018,-1.984788,0.585777,2.669287 +-0.505178,0.852541,-0.817308,-1.983757,0.585361,2.670319 +-0.504032,0.853614,-0.816670,-1.982683,0.585028,2.671392 +-0.502861,0.854725,-0.816108,-1.981572,0.584780,2.672503 +-0.501673,0.855867,-0.815625,-1.980430,0.584617,2.673645 +-0.500472,0.857034,-0.815222,-1.979263,0.584542,2.674812 +-0.499266,0.858220,-0.814902,-1.978077,0.584553,2.675998 +-0.498061,0.859419,-0.814667,-1.976878,0.584651,2.677197 +-0.496862,0.860625,-0.814518,-1.975672,0.584836,2.678403 +-0.495676,0.861831,-0.814456,-1.974466,0.585106,2.679609 +-0.494510,0.863031,-0.814481,-1.973266,0.585461,2.680809 +-0.493370,0.864219,-0.814593,-1.972078,0.585898,2.681997 +-0.492260,0.865389,-0.814791,-1.970909,0.586415,2.683167 +-0.491188,0.866534,-0.815075,-1.969763,0.587009,2.684312 +-0.490159,0.867648,-0.815442,-1.968649,0.587678,2.685427 +-0.489178,0.868727,-0.815891,-1.967570,0.588417,2.686505 +-0.488250,0.869763,-0.816420,-1.966534,0.589223,2.687542 +-0.487380,0.870753,-0.817026,-1.965544,0.590092,2.688531 +-0.486573,0.871690,-0.817705,-1.964608,0.591019,2.689468 +-0.485832,0.872569,-0.818455,-1.963728,0.591999,2.690347 +-0.485162,0.873387,-0.819271,-1.962911,0.593028,2.691165 +-0.484567,0.874138,-0.820148,-1.962159,0.594099,2.691916 +-0.484049,0.874819,-0.821083,-1.961478,0.595208,2.692598 +-0.483610,0.875427,-0.822071,-1.960870,0.596348,2.693205 +-0.483254,0.875958,-0.823106,-1.960339,0.597514,2.693736 +-0.482982,0.876409,-0.824183,-1.959888,0.598699,2.694187 +-0.482796,0.876779,-0.825296,-1.959519,0.599897,2.694557 +-0.482696,0.877064,-0.826440,-1.959233,0.601103,2.694842 +-0.482683,0.877264,-0.827608,-1.959033,0.602309,2.695042 +-0.482758,0.877378,-0.828795,-1.958919,0.603510,2.695156 +-0.482919,0.877405,-0.829994,-1.958893,0.604698,2.695183 +-0.483166,0.877344,-0.831199,-1.958953,0.605869,2.695122 +-0.483497,0.877197,-0.832404,-1.959100,0.607016,2.694975 +-0.483911,0.876964,-0.833603,-1.959333,0.608133,2.694742 +-0.484406,0.876646,-0.834789,-1.959651,0.609214,2.694424 +-0.484980,0.876244,-0.835955,-1.960053,0.610253,2.694023 +-0.485628,0.875762,-0.837097,-1.960535,0.611245,2.693540 +-0.486348,0.875201,-0.838208,-1.961096,0.612185,2.692979 +-0.487136,0.874565,-0.839282,-1.961732,0.613068,2.692343 +-0.487988,0.873856,-0.840313,-1.962441,0.613890,2.691634 +-0.488900,0.873078,-0.841297,-1.963219,0.614645,2.690857 +-0.489866,0.872236,-0.842228,-1.964061,0.615331,2.690015 +-0.490881,0.871334,-0.843101,-1.964963,0.615943,2.689112 +-0.491942,0.870377,-0.843912,-1.965921,0.616478,2.688155 +-0.493040,0.869368,-0.844656,-1.966929,0.616935,2.687147 +-0.494173,0.868315,-0.845330,-1.967982,0.617309,2.686093 +-0.495332,0.867222,-0.845930,-1.969075,0.617599,2.685000 +-0.496512,0.866095,-0.846453,-1.970202,0.617805,2.683873 +-0.497708,0.864939,-0.846896,-1.971358,0.617924,2.682718 +-0.498912,0.863762,-0.847257,-1.972535,0.617956,2.681540 +-0.500118,0.862569,-0.847534,-1.973729,0.617900,2.680347 +-0.501321,0.861365,-0.847726,-1.974932,0.617758,2.679144 +-0.502514,0.860159,-0.847831,-1.976138,0.617530,2.677937 +-0.503690,0.858955,-0.847850,-1.977342,0.617217,2.676733 +-0.504844,0.857760,-0.847781,-1.978537,0.616821,2.675538 +-0.505970,0.856581,-0.847625,-1.979717,0.616343,2.674359 +-0.507061,0.855423,-0.847384,-1.980875,0.615787,2.673201 +-0.508113,0.854292,-0.847058,-1.982005,0.615155,2.672070 +-0.509118,0.853195,-0.846649,-1.983102,0.614450,2.670973 +-0.510073,0.852137,-0.846159,-1.984160,0.613677,2.669915 +-0.510973,0.851123,-0.845592,-1.985174,0.612839,2.668902 +-0.511811,0.850160,-0.844948,-1.986137,0.611940,2.667938 +-0.512586,0.849251,-0.844233,-1.987046,0.610985,2.667030 +-0.513291,0.848403,-0.843450,-1.987895,0.609980,2.666181 +-0.513924,0.847618,-0.842602,-1.988679,0.608929,2.665396 +-0.514481,0.846901,-0.841695,-1.989396,0.607838,2.664679 +-0.514959,0.846257,-0.840733,-1.990040,0.606713,2.664035 +-0.515356,0.845687,-0.839721,-1.990610,0.605559,2.663465 +-0.515670,0.845196,-0.838664,-1.991101,0.604383,2.662974 +-0.515899,0.844786,-0.837568,-1.991511,0.603190,2.662564 +-0.516042,0.844459,-0.836439,-1.991838,0.601988,2.662237 +-0.516098,0.844216,-0.835282,-1.992081,0.600781,2.661994 +-0.516067,0.844059,-0.834103,-1.992238,0.599577,2.661838 +-0.515949,0.843989,-0.832909,-1.992308,0.598381,2.661768 +-0.515744,0.844007,-0.831706,-1.992291,0.597201,2.661785 +-0.515454,0.844111,-0.830500,-1.992186,0.596041,2.661889 +-0.515081,0.844302,-0.829298,-1.991996,0.594909,2.662080 +-0.514625,0.844578,-0.828105,-1.991719,0.593810,2.662356 +-0.514091,0.844938,-0.826928,-1.991359,0.592749,2.662716 +-0.513479,0.845380,-0.825773,-1.990917,0.591733,2.663158 +-0.512794,0.845903,-0.824646,-1.990395,0.590766,2.663681 +-0.512039,0.846502,-0.823554,-1.989795,0.589854,2.664280 +-0.511219,0.847175,-0.822500,-1.989122,0.589002,2.664954 +-0.510336,0.847919,-0.821492,-1.988378,0.588213,2.665697 +-0.509397,0.848730,-0.820534,-1.987567,0.587492,2.666508 +-0.508405,0.849603,-0.819632,-1.986694,0.586843,2.667381 +-0.507366,0.850534,-0.818790,-1.985764,0.586269,2.668312 +-0.506286,0.851517,-0.818012,-1.984780,0.585773,2.669295 +-0.505169,0.852549,-0.817303,-1.983748,0.585358,2.670327 +-0.504023,0.853623,-0.816666,-1.982674,0.585026,2.671401 +-0.502852,0.854734,-0.816104,-1.981563,0.584778,2.672512 +-0.501663,0.855876,-0.815621,-1.980421,0.584616,2.673654 +-0.500463,0.857043,-0.815219,-1.979254,0.584541,2.674821 +-0.499257,0.858230,-0.814900,-1.978068,0.584553,2.676008 +-0.498051,0.859429,-0.814666,-1.976868,0.584652,2.677207 +-0.496852,0.860634,-0.814518,-1.975663,0.584838,2.678413 +-0.495667,0.861840,-0.814456,-1.974457,0.585109,2.679619 +-0.494501,0.863041,-0.814482,-1.973257,0.585464,2.680819 +-0.493361,0.864228,-0.814594,-1.972069,0.585902,2.682007 +-0.492252,0.865398,-0.814793,-1.970899,0.586419,2.683176 +-0.491180,0.866543,-0.815077,-1.969754,0.587014,2.684321 +-0.490151,0.867657,-0.815445,-1.968640,0.587683,2.685435 +-0.489170,0.868735,-0.815895,-1.967562,0.588423,2.686513 +-0.488243,0.869771,-0.816425,-1.966526,0.589230,2.687550 +-0.487373,0.870760,-0.817031,-1.965537,0.590099,2.688539 +-0.486566,0.871697,-0.817711,-1.964600,0.591026,2.689475 +-0.485827,0.872576,-0.818461,-1.963721,0.592007,2.690354 +-0.485157,0.873393,-0.819277,-1.962904,0.593036,2.691171 +-0.484562,0.874144,-0.820155,-1.962153,0.594108,2.691922 +-0.484045,0.874824,-0.821091,-1.961473,0.595217,2.692603 +-0.483607,0.875432,-0.822079,-1.960866,0.596357,2.693210 +-0.483252,0.875962,-0.823114,-1.960335,0.597523,2.693740 +-0.482980,0.876412,-0.824191,-1.959885,0.598708,2.694191 +-0.482795,0.876781,-0.825305,-1.959516,0.599907,2.694559 +-0.482696,0.877066,-0.826449,-1.959231,0.601112,2.694844 +-0.482684,0.877265,-0.827618,-1.959032,0.602318,2.695044 +-0.482759,0.877378,-0.828805,-1.958919,0.603519,2.695157 +-0.482920,0.877404,-0.830004,-1.958893,0.604708,2.695183 +-0.483168,0.877343,-0.831209,-1.958954,0.605879,2.695122 +-0.483500,0.877196,-0.832414,-1.959102,0.607025,2.694974 +-0.483915,0.876962,-0.833612,-1.959336,0.608142,2.694740 +-0.484411,0.876643,-0.834798,-1.959654,0.609222,2.694421 +-0.484985,0.876241,-0.835965,-1.960056,0.610261,2.694019 +-0.485633,0.875758,-0.837106,-1.960539,0.611253,2.693536 +-0.486354,0.875196,-0.838216,-1.961101,0.612192,2.692975 +-0.487143,0.874559,-0.839290,-1.961738,0.613075,2.692338 +-0.487995,0.873850,-0.840321,-1.962447,0.613896,2.691628 +-0.488907,0.873072,-0.841305,-1.963225,0.614651,2.690850 +-0.489874,0.872229,-0.842235,-1.964068,0.615336,2.690008 +-0.490890,0.871327,-0.843108,-1.964970,0.615947,2.689105 +-0.491950,0.870369,-0.843918,-1.965928,0.616482,2.688147 +-0.493049,0.869360,-0.844662,-1.966937,0.616938,2.687138 +-0.494182,0.868306,-0.845335,-1.967991,0.617312,2.686085 +-0.495341,0.867213,-0.845935,-1.969084,0.617601,2.684991 +-0.496522,0.866086,-0.846457,-1.970212,0.617806,2.683864 +-0.497717,0.864930,-0.846899,-1.971367,0.617924,2.682708 +-0.498921,0.863753,-0.847260,-1.972545,0.617955,2.681531 +-0.500128,0.862559,-0.847536,-1.973738,0.617900,2.680337 +-0.501331,0.861356,-0.847727,-1.974941,0.617757,2.679134 +-0.502523,0.860149,-0.847832,-1.976148,0.617528,2.677927 +-0.503700,0.858945,-0.847849,-1.977352,0.617214,2.676723 +-0.504854,0.857751,-0.847780,-1.978547,0.616817,2.675529 +-0.505979,0.856571,-0.847624,-1.979726,0.616339,2.674349 +-0.507070,0.855413,-0.847382,-1.980884,0.615782,2.673192 +-0.508121,0.854283,-0.847055,-1.982014,0.615150,2.672061 +-0.509126,0.853186,-0.846646,-1.983111,0.614445,2.670964 +-0.510081,0.852129,-0.846155,-1.984169,0.613671,2.669907 +-0.510980,0.851116,-0.845587,-1.985182,0.612832,2.668894 +-0.511818,0.850153,-0.844943,-1.986145,0.611933,2.667931 +-0.512591,0.849244,-0.844227,-1.987053,0.610978,2.667023 +-0.513296,0.848396,-0.843443,-1.987901,0.609972,2.666174 +-0.513928,0.847612,-0.842595,-1.988685,0.608921,2.665390 +-0.514485,0.846896,-0.841688,-1.989401,0.607830,2.664674 +-0.514962,0.846252,-0.840725,-1.990045,0.606704,2.664030 +-0.515359,0.845683,-0.839712,-1.990614,0.605550,2.663461 +-0.515672,0.845193,-0.838655,-1.991104,0.604374,2.662971 +-0.515900,0.844783,-0.837559,-1.991514,0.603181,2.662561 +-0.516043,0.844456,-0.836429,-1.991841,0.601978,2.662235 +-0.516098,0.844214,-0.835272,-1.992083,0.600771,2.661993 +-0.516066,0.844058,-0.834094,-1.992239,0.599567,2.661837 +-0.515947,0.843989,-0.832900,-1.992308,0.598372,2.661767 +-0.515742,0.844007,-0.831697,-1.992290,0.597191,2.661785 +-0.515452,0.844112,-0.830491,-1.992185,0.596032,2.661890 +-0.515078,0.844303,-0.829288,-1.991994,0.594900,2.662082 +-0.514622,0.844580,-0.828096,-1.991717,0.593801,2.662358 +-0.514086,0.844941,-0.826919,-1.991356,0.592741,2.662719 +-0.513474,0.845384,-0.825764,-1.990913,0.591725,2.663162 +-0.512789,0.845907,-0.824638,-1.990390,0.590759,2.663685 +-0.512033,0.846507,-0.823545,-1.989790,0.589847,2.664285 +-0.511212,0.847181,-0.822492,-1.989116,0.588995,2.664959 +-0.510329,0.847925,-0.821484,-1.988372,0.588207,2.665704 +-0.509389,0.848737,-0.820527,-1.987561,0.587487,2.666515 +-0.508397,0.849610,-0.819625,-1.986687,0.586838,2.667388 +-0.507358,0.850541,-0.818783,-1.985756,0.586265,2.668319 +-0.506277,0.851525,-0.818006,-1.984772,0.585770,2.669303 +-0.505160,0.852557,-0.817297,-1.983740,0.585355,2.670335 +-0.504013,0.853632,-0.816661,-1.982665,0.585024,2.671410 +-0.502843,0.854743,-0.816100,-1.981554,0.584777,2.672521 +-0.501654,0.855885,-0.815617,-1.980412,0.584616,2.673663 +-0.500453,0.857053,-0.815216,-1.979244,0.584541,2.674831 +-0.499247,0.858239,-0.814898,-1.978058,0.584554,2.676017 +-0.498041,0.859438,-0.814664,-1.976859,0.584653,2.677216 +-0.496843,0.860644,-0.814517,-1.975653,0.584840,2.678422 +-0.495658,0.861850,-0.814456,-1.974447,0.585111,2.679628 +-0.494492,0.863050,-0.814482,-1.973247,0.585467,2.680828 +-0.493352,0.864238,-0.814595,-1.972059,0.585905,2.682016 +-0.492243,0.865407,-0.814795,-1.970890,0.586424,2.683185 +-0.491172,0.866552,-0.815080,-1.969745,0.587019,2.684330 +-0.490143,0.867666,-0.815449,-1.968631,0.587689,2.685444 +-0.489163,0.868744,-0.815899,-1.967553,0.588429,2.686522 +-0.488236,0.869780,-0.816429,-1.966518,0.589236,2.687558 +-0.487367,0.870768,-0.817036,-1.965529,0.590106,2.688546 +-0.486560,0.871704,-0.817717,-1.964593,0.591034,2.689482 +-0.485821,0.872583,-0.818467,-1.963715,0.592015,2.690361 +-0.485152,0.873399,-0.819284,-1.962898,0.593044,2.691177 +-0.484558,0.874149,-0.820163,-1.962148,0.594116,2.691928 +-0.484041,0.874830,-0.821099,-1.961468,0.595226,2.692608 +-0.483604,0.875436,-0.822087,-1.960861,0.596366,2.693214 +-0.483249,0.875966,-0.823123,-1.960331,0.597532,2.693744 +-0.482979,0.876416,-0.824200,-1.959881,0.598718,2.694194 +-0.482794,0.876784,-0.825314,-1.959513,0.599916,2.694562 +-0.482695,0.877068,-0.826458,-1.959229,0.601122,2.694846 +-0.482684,0.877267,-0.827627,-1.959031,0.602328,2.695045 +-0.482759,0.877379,-0.828814,-1.958918,0.603529,2.695157 +-0.482922,0.877404,-0.830013,-1.958893,0.604717,2.695183 +-0.483170,0.877343,-0.831219,-1.958955,0.605888,2.695121 +-0.483503,0.877194,-0.832424,-1.959103,0.607034,2.694972 +-0.483919,0.876959,-0.833622,-1.959338,0.608150,2.694738 +-0.484415,0.876640,-0.834807,-1.959657,0.609230,2.694418 +-0.484989,0.876237,-0.835974,-1.960060,0.610269,2.694016 +-0.485639,0.875754,-0.837115,-1.960543,0.611260,2.693532 +-0.486360,0.875192,-0.838225,-1.961105,0.612200,2.692970 +-0.487149,0.874554,-0.839298,-1.961743,0.613082,2.692332 +-0.488002,0.873844,-0.840329,-1.962453,0.613902,2.691622 +-0.488915,0.873066,-0.841312,-1.963232,0.614657,2.690844 +-0.489881,0.872223,-0.842242,-1.964075,0.615341,2.690001 +-0.490898,0.871319,-0.843114,-1.964978,0.615952,2.689098 +-0.491959,0.870361,-0.843924,-1.965936,0.616486,2.688139 +-0.493058,0.869352,-0.844668,-1.966945,0.616941,2.687130 +-0.494191,0.868298,-0.845340,-1.967999,0.617314,2.686076 +-0.495350,0.867204,-0.845939,-1.969093,0.617603,2.684982 +-0.496531,0.866077,-0.846461,-1.970221,0.617807,2.683855 +-0.497727,0.864921,-0.846903,-1.971376,0.617925,2.682699 +-0.498931,0.863743,-0.847262,-1.972554,0.617955,2.681521 +-0.500138,0.862549,-0.847538,-1.973748,0.617899,2.680328 +-0.501340,0.861346,-0.847728,-1.974951,0.617755,2.679124 +-0.502533,0.860140,-0.847832,-1.976158,0.617526,2.677918 +-0.503709,0.858936,-0.847849,-1.977361,0.617212,2.676714 +-0.504863,0.857741,-0.847779,-1.978556,0.616814,2.675519 +-0.505988,0.856562,-0.847622,-1.979735,0.616335,2.674340 +-0.507078,0.855404,-0.847380,-1.980893,0.615778,2.673182 +-0.508129,0.854274,-0.847052,-1.982023,0.615144,2.672052 +-0.509134,0.853178,-0.846642,-1.983119,0.614439,2.670956 +-0.510088,0.852120,-0.846151,-1.984177,0.613664,2.669899 +-0.510986,0.851108,-0.845582,-1.985189,0.612825,2.668886 +-0.511824,0.850145,-0.844937,-1.986152,0.611925,2.667923 +-0.512597,0.849237,-0.844221,-1.987060,0.610970,2.667016 +-0.513302,0.848390,-0.843437,-1.987908,0.609964,2.666168 +-0.513933,0.847606,-0.842588,-1.988691,0.608912,2.665384 +-0.514489,0.846890,-0.841680,-1.989407,0.607821,2.664669 +-0.514966,0.846247,-0.840717,-1.990050,0.606695,2.664025 +-0.515362,0.845679,-0.839704,-1.990618,0.605541,2.663457 +-0.515674,0.845189,-0.838647,-1.991108,0.604364,2.662967 +-0.515902,0.844780,-0.837550,-1.991517,0.603171,2.662558 +-0.516043,0.844454,-0.836420,-1.991843,0.601968,2.662232 +-0.516098,0.844213,-0.835263,-1.992084,0.600762,2.661991 +-0.516065,0.844058,-0.834084,-1.992240,0.599558,2.661836 +-0.515946,0.843989,-0.832890,-1.992308,0.598362,2.661767 +-0.515740,0.844008,-0.831687,-1.992290,0.597182,2.661786 +-0.515449,0.844113,-0.830481,-1.992184,0.596023,2.661891 +-0.515074,0.844305,-0.829279,-1.991992,0.594891,2.662083 +-0.514618,0.844583,-0.828086,-1.991714,0.593792,2.662361 +-0.514082,0.844944,-0.826910,-1.991353,0.592733,2.662722 +-0.513469,0.845388,-0.825755,-1.990909,0.591717,2.663166 +-0.512783,0.845912,-0.824629,-1.990386,0.590751,2.663690 +-0.512027,0.846512,-0.823537,-1.989785,0.589840,2.664290 +-0.511205,0.847187,-0.822484,-1.989110,0.588989,2.664965 +-0.510322,0.847932,-0.821477,-1.988365,0.588201,2.665710 +-0.509381,0.848743,-0.820520,-1.987554,0.587481,2.666521 +-0.508389,0.849617,-0.819618,-1.986680,0.586834,2.667395 +-0.507349,0.850549,-0.818777,-1.985748,0.586261,2.668327 +-0.506268,0.851533,-0.818000,-1.984764,0.585766,2.669312 +-0.505151,0.852566,-0.817292,-1.983731,0.585352,2.670344 +-0.504004,0.853640,-0.816656,-1.982657,0.585021,2.671419 +-0.502833,0.854752,-0.816096,-1.981545,0.584775,2.672530 +-0.501644,0.855894,-0.815614,-1.980403,0.584615,2.673673 +-0.500444,0.857062,-0.815213,-1.979235,0.584541,2.674840 +-0.499237,0.858249,-0.814896,-1.978049,0.584554,2.676027 +-0.498032,0.859448,-0.814663,-1.976849,0.584655,2.677226 +-0.496833,0.860654,-0.814516,-1.975644,0.584841,2.678432 +-0.495648,0.861860,-0.814456,-1.974438,0.585114,2.679638 +-0.494483,0.863060,-0.814483,-1.973238,0.585470,2.680838 +-0.493343,0.864247,-0.814597,-1.972050,0.585909,2.682025 +-0.492234,0.865416,-0.814797,-1.970881,0.586428,2.683194 +-0.491163,0.866561,-0.815082,-1.969736,0.587024,2.684339 +-0.490135,0.867675,-0.815452,-1.968623,0.587694,2.685453 +-0.489155,0.868752,-0.815903,-1.967545,0.588435,2.686530 +-0.488228,0.869788,-0.816434,-1.966510,0.589243,2.687566 +-0.487360,0.870776,-0.817041,-1.965521,0.590113,2.688554 +-0.486554,0.871711,-0.817722,-1.964586,0.591042,2.689489 +-0.485815,0.872589,-0.818474,-1.963708,0.592023,2.690367 +-0.485147,0.873405,-0.819291,-1.962892,0.593053,2.691184 +-0.484554,0.874155,-0.820170,-1.962142,0.594125,2.691933 +-0.484037,0.874835,-0.821106,-1.961462,0.595235,2.692613 +-0.483601,0.875441,-0.822095,-1.960857,0.596375,2.693219 +-0.483247,0.875970,-0.823131,-1.960328,0.597542,2.693748 +-0.482977,0.876419,-0.824209,-1.959878,0.598727,2.694197 +-0.482793,0.876786,-0.825323,-1.959511,0.599926,2.694564 +-0.482695,0.877070,-0.826467,-1.959227,0.601131,2.694848 +-0.482684,0.877268,-0.827636,-1.959029,0.602338,2.695046 +-0.482760,0.877380,-0.828824,-1.958918,0.603538,2.695158 +-0.482924,0.877404,-0.830023,-1.958893,0.604727,2.695182 +-0.483172,0.877342,-0.831228,-1.958955,0.605897,2.695120 +-0.483506,0.877192,-0.832433,-1.959105,0.607043,2.694971 +-0.483922,0.876957,-0.833631,-1.959340,0.608159,2.694735 +-0.484419,0.876637,-0.834817,-1.959660,0.609239,2.694415 +-0.484994,0.876234,-0.835983,-1.960063,0.610277,2.694012 +-0.485644,0.875750,-0.837124,-1.960547,0.611268,2.693528 +-0.486366,0.875187,-0.838234,-1.961110,0.612207,2.692965 +-0.487156,0.874549,-0.839307,-1.961748,0.613089,2.692327 +-0.488009,0.873838,-0.840337,-1.962459,0.613908,2.691616 +-0.488922,0.873059,-0.841320,-1.963238,0.614662,2.690837 +-0.489889,0.872216,-0.842249,-1.964082,0.615346,2.689994 +-0.490906,0.871312,-0.843121,-1.964985,0.615957,2.689090 +-0.491967,0.870353,-0.843930,-1.965944,0.616490,2.688131 +-0.493067,0.869344,-0.844673,-1.966953,0.616944,2.687122 +-0.494200,0.868289,-0.845345,-1.968008,0.617317,2.686067 +-0.495360,0.867195,-0.845944,-1.969102,0.617605,2.684973 +-0.496541,0.866067,-0.846465,-1.970230,0.617809,2.683846 +-0.497736,0.864912,-0.846906,-1.971386,0.617925,2.682690 +-0.498941,0.863734,-0.847265,-1.972563,0.617955,2.681512 +-0.500147,0.862540,-0.847540,-1.973757,0.617898,2.680318 +-0.501350,0.861337,-0.847730,-1.974961,0.617754,2.679115 +-0.502542,0.860130,-0.847833,-1.976167,0.617524,2.677908 +-0.503718,0.858926,-0.847849,-1.977371,0.617209,2.676704 +-0.504872,0.857732,-0.847778,-1.978565,0.616810,2.675510 +-0.505997,0.856553,-0.847621,-1.979744,0.616331,2.674331 +-0.507087,0.855395,-0.847377,-1.980902,0.615773,2.673173 +-0.508137,0.854265,-0.847049,-1.982032,0.615139,2.672044 +-0.509142,0.853169,-0.846638,-1.983128,0.614433,2.670947 +-0.510095,0.852112,-0.846147,-1.984185,0.613658,2.669890 +-0.510993,0.851100,-0.845577,-1.985197,0.612818,2.668878 +-0.511831,0.850138,-0.844932,-1.986159,0.611918,2.667916 +-0.512603,0.849230,-0.844215,-1.987067,0.610962,2.667009 +-0.513307,0.848383,-0.843430,-1.987914,0.609956,2.666161 +-0.513938,0.847600,-0.842581,-1.988697,0.608904,2.665378 +-0.514493,0.846885,-0.841673,-1.989412,0.607812,2.664663 +-0.514969,0.846242,-0.840709,-1.990055,0.606686,2.664020 +-0.515365,0.845675,-0.839696,-1.990622,0.605532,2.663453 +-0.515676,0.845185,-0.838638,-1.991112,0.604355,2.662964 +-0.515903,0.844777,-0.837541,-1.991520,0.603162,2.662555 +-0.516044,0.844452,-0.836411,-1.991845,0.601959,2.662230 +-0.516098,0.844211,-0.835254,-1.992086,0.600752,2.661990 +-0.516065,0.844057,-0.834075,-1.992240,0.599548,2.661835 +-0.515945,0.843989,-0.832881,-1.992308,0.598353,2.661767 +-0.515738,0.844008,-0.831678,-1.992289,0.597173,2.661786 +-0.515446,0.844114,-0.830472,-1.992183,0.596014,2.661893 +-0.515071,0.844307,-0.829269,-1.991990,0.594882,2.662085 +-0.514614,0.844585,-0.828077,-1.991712,0.593784,2.662363 +-0.514077,0.844948,-0.826900,-1.991350,0.592724,2.662726 +-0.513464,0.845392,-0.825746,-1.990905,0.591709,2.663170 +-0.512777,0.845916,-0.824620,-1.990381,0.590744,2.663694 +-0.512021,0.846517,-0.823528,-1.989780,0.589833,2.664295 +-0.511198,0.847192,-0.822476,-1.989105,0.588982,2.664970 +-0.510314,0.847938,-0.821469,-1.988359,0.588195,2.665716 +-0.509373,0.848750,-0.820512,-1.987547,0.587476,2.666528 +-0.508380,0.849624,-0.819611,-1.986673,0.586829,2.667402 +-0.507341,0.850556,-0.818770,-1.985741,0.586257,2.668335 +-0.506259,0.851541,-0.817994,-1.984756,0.585763,2.669320 +-0.505142,0.852574,-0.817287,-1.983723,0.585349,2.670352 +-0.503995,0.853649,-0.816651,-1.982648,0.585019,2.671427 +-0.502824,0.854761,-0.816092,-1.981536,0.584773,2.672539 +-0.501635,0.855904,-0.815610,-1.980393,0.584614,2.673682 +-0.500434,0.857071,-0.815210,-1.979226,0.584541,2.674850 +-0.499228,0.858258,-0.814893,-1.978039,0.584555,2.676036 +-0.498022,0.859457,-0.814661,-1.976840,0.584656,2.677236 +-0.496824,0.860663,-0.814515,-1.975634,0.584843,2.678441 +-0.495639,0.861869,-0.814456,-1.974428,0.585116,2.679647 +-0.494474,0.863069,-0.814483,-1.973228,0.585474,2.680847 +-0.493334,0.864257,-0.814598,-1.972041,0.585913,2.682035 +-0.492226,0.865425,-0.814799,-1.970872,0.586433,2.683204 +-0.491155,0.866570,-0.815085,-1.969727,0.587029,2.684348 +-0.490127,0.867683,-0.815455,-1.968614,0.587700,2.685461 +-0.489147,0.868761,-0.815907,-1.967537,0.588441,2.686539 +-0.488221,0.869796,-0.816438,-1.966501,0.589250,2.687574 +-0.487353,0.870783,-0.817046,-1.965514,0.590120,2.688562 +-0.486548,0.871718,-0.817728,-1.964579,0.591049,2.689497 +-0.485810,0.872596,-0.818480,-1.963701,0.592031,2.690374 +-0.485142,0.873412,-0.819298,-1.962886,0.593061,2.691190 +-0.484549,0.874161,-0.820177,-1.962136,0.594134,2.691939 +-0.484033,0.874840,-0.821114,-1.961457,0.595244,2.692618 +-0.483598,0.875445,-0.822103,-1.960852,0.596385,2.693223 +-0.483244,0.875974,-0.823139,-1.960324,0.597551,2.693752 +-0.482975,0.876422,-0.824218,-1.959875,0.598737,2.694200 +-0.482791,0.876789,-0.825332,-1.959508,0.599935,2.694567 +-0.482694,0.877072,-0.826477,-1.959225,0.601141,2.694850 +-0.482684,0.877269,-0.827646,-1.959028,0.602347,2.695047 +-0.482761,0.877380,-0.828833,-1.958917,0.603548,2.695158 +-0.482925,0.877404,-0.830033,-1.958893,0.604736,2.695182 +-0.483175,0.877341,-0.831238,-1.958956,0.605906,2.695119 +-0.483509,0.877191,-0.832443,-1.959106,0.607052,2.694969 +-0.483926,0.876955,-0.833641,-1.959342,0.608168,2.694733 +-0.484424,0.876634,-0.834826,-1.959663,0.609247,2.694412 +-0.484681,0.876456,-0.835369,-1.959840,0.609734,2.694230 +-0.484952,0.876258,-0.835906,-1.960030,0.610208,2.694040 +-0.485235,0.876037,-0.836433,-1.960230,0.610667,2.693810 +-0.485527,0.875790,-0.836949,-1.960450,0.611108,2.693560 +-0.485826,0.875515,-0.837450,-1.960660,0.611528,2.693280 +-0.486128,0.875209,-0.837934,-1.960880,0.611923,2.692970 +-0.486431,0.874870,-0.838398,-1.961100,0.612290,2.692620 +-0.486733,0.874494,-0.838840,-1.961320,0.612627,2.692230 +-0.487032,0.874080,-0.839256,-1.961520,0.612929,2.691800 +-0.487323,0.873624,-0.839646,-1.961720,0.613195,2.691320 +-0.487605,0.873125,-0.840005,-1.961910,0.613421,2.690790 +-0.487876,0.872579,-0.840332,-1.962070,0.613603,2.690210 +-0.488132,0.871984,-0.840623,-1.962220,0.613739,2.689570 +-0.488372,0.871338,-0.840877,-1.962350,0.613826,2.688880 +-0.488591,0.870637,-0.841090,-1.962450,0.613860,2.688130 +-0.488789,0.869879,-0.841260,-1.962520,0.613839,2.687310 +-0.488962,0.869062,-0.841384,-1.962560,0.613759,2.686420 +-0.489107,0.868183,-0.841460,-1.962570,0.613617,2.685460 +-0.489223,0.867239,-0.841485,-1.962530,0.613410,2.684430 +-0.489306,0.866228,-0.841457,-1.962460,0.613134,2.683320 +-0.489354,0.865148,-0.841373,-1.962340,0.612788,2.682130 +-0.489364,0.863995,-0.841230,-1.962170,0.612367,2.680860 +-0.489334,0.862766,-0.841026,-1.961960,0.611869,2.679500 +-0.489261,0.861461,-0.840757,-1.961690,0.611291,2.678050 +-0.489143,0.860075,-0.840423,-1.961360,0.610629,2.676510 +-0.488976,0.858606,-0.840019,-1.960970,0.609880,2.674880 +-0.488759,0.857051,-0.839544,-1.960520,0.609041,2.673140 +-0.488488,0.855409,-0.838995,-1.960010,0.608110,2.671310 +-0.488162,0.853676,-0.838369,-1.959420,0.607087,2.669360 +-0.487777,0.851852,-0.837663,-1.958770,0.605975,2.667310 +-0.487330,0.849939,-0.836876,-1.958030,0.604778,2.665150 +-0.486821,0.847940,-0.836003,-1.957220,0.603499,2.662880 +-0.486245,0.845857,-0.835044,-1.956330,0.602140,2.660490 +-0.485600,0.843692,-0.833995,-1.955350,0.600706,2.657970 +-0.484883,0.841449,-0.832853,-1.954290,0.599198,2.655340 +-0.484093,0.839130,-0.831616,-1.953130,0.597621,2.652570 +-0.483228,0.836738,-0.830282,-1.951880,0.595977,2.649680 +-0.482290,0.834275,-0.828848,-1.950530,0.594269,2.646650 +-0.481283,0.831743,-0.827313,-1.949080,0.592501,2.643490 +-0.480209,0.829146,-0.825679,-1.947530,0.590675,2.640190 +-0.479071,0.826486,-0.823950,-1.945870,0.588795,2.636740 +-0.477870,0.823766,-0.822128,-1.944100,0.586863,2.633150 +-0.476610,0.820988,-0.820215,-1.942220,0.584884,2.629420 +-0.475294,0.818154,-0.818214,-1.940230,0.582860,2.625530 +-0.473923,0.815268,-0.816128,-1.938110,0.580794,2.621480 +-0.472501,0.812332,-0.813960,-1.935870,0.578689,2.617280 +-0.471030,0.809349,-0.811711,-1.933510,0.576548,2.612930 +-0.469513,0.806320,-0.809384,-1.931020,0.574375,2.608420 +-0.467952,0.803250,-0.806983,-1.928400,0.572172,2.603750 +-0.466350,0.800139,-0.804509,-1.925640,0.569943,2.598930 +-0.464709,0.796992,-0.801965,-1.922750,0.567691,2.593950 +-0.463032,0.793810,-0.799355,-1.919710,0.565419,2.588820 +-0.461322,0.790597,-0.796679,-1.916530,0.563130,2.583530 +-0.459582,0.787354,-0.793942,-1.913210,0.560826,2.578090 +-0.457813,0.784084,-0.791145,-1.909730,0.558513,2.572490 +-0.456018,0.780791,-0.788292,-1.906100,0.556191,2.566730 +-0.454201,0.777476,-0.785384,-1.902320,0.553865,2.560820 +-0.452363,0.774142,-0.782425,-1.898380,0.551537,2.554750 +-0.450508,0.770791,-0.779417,-1.894280,0.549210,2.548530 +-0.448637,0.767427,-0.776362,-1.890030,0.546882,2.542160 +-0.446754,0.764052,-0.773264,-1.885620,0.544554,2.535620 +-0.444861,0.760669,-0.770124,-1.881060,0.542227,2.528930 +-0.442961,0.757280,-0.766946,-1.876340,0.539899,2.522090 +-0.441055,0.753887,-0.763732,-1.871470,0.537571,2.515090 +-0.439148,0.750493,-0.760484,-1.866440,0.535244,2.507940 +-0.437240,0.747100,-0.757206,-1.861260,0.532916,2.500630 +-0.435333,0.743706,-0.753899,-1.855920,0.530589,2.493160 +-0.433425,0.740313,-0.750567,-1.850420,0.528261,2.485540 +-0.431517,0.736919,-0.747212,-1.844770,0.525933,2.477760 +-0.429610,0.733526,-0.743836,-1.838970,0.523606,2.469830 +-0.427702,0.730132,-0.740442,-1.833010,0.521278,2.461740 +-0.425794,0.726739,-0.737034,-1.826890,0.518950,2.453500 +-0.423887,0.723345,-0.733612,-1.820640,0.516623,2.445100 +-0.421979,0.719951,-0.730181,-1.814230,0.514295,2.436550 +-0.420071,0.716558,-0.726742,-1.807690,0.511967,2.427840 +-0.418163,0.713164,-0.723298,-1.801000,0.509640,2.418970 +-0.416256,0.709771,-0.719852,-1.794180,0.507312,2.409950 +-0.414348,0.706377,-0.716405,-1.787230,0.504984,2.400770 +-0.412440,0.702984,-0.712959,-1.780150,0.502657,2.391440 +-0.410533,0.699590,-0.709513,-1.772950,0.500329,2.381950 +-0.408625,0.696197,-0.706066,-1.765620,0.498001,2.372310 +-0.406717,0.692803,-0.702620,-1.758170,0.495674,2.362510 +-0.404810,0.689410,-0.699174,-1.750600,0.493346,2.352560 +-0.402902,0.686016,-0.695727,-1.742920,0.491019,2.342450 +-0.400994,0.682622,-0.692281,-1.735130,0.488691,2.332180 +-0.399087,0.679229,-0.688835,-1.727230,0.486363,2.321760 +-0.397179,0.675835,-0.685388,-1.719230,0.484036,2.311180 +-0.395271,0.672442,-0.681942,-1.711130,0.481708,2.300450 +-0.393364,0.669048,-0.678496,-1.702930,0.479380,2.289570 +-0.391456,0.665655,-0.675049,-1.694630,0.477053,2.278540 +-0.389548,0.662261,-0.671603,-1.686250,0.474725,2.267360 +-0.387641,0.658868,-0.668157,-1.677770,0.472397,2.256040 +-0.385733,0.655474,-0.664710,-1.669210,0.470070,2.244580 +-0.383825,0.652081,-0.661264,-1.660560,0.467742,2.232990 +-0.381917,0.648687,-0.657818,-1.651840,0.465414,2.221260 +-0.380010,0.645293,-0.654371,-1.643040,0.463087,2.209400 +-0.378102,0.641900,-0.650925,-1.634170,0.460759,2.197410 +-0.376194,0.638506,-0.647479,-1.625220,0.458432,2.185300 +-0.374287,0.635113,-0.644032,-1.616210,0.456104,2.173070 +-0.372379,0.631719,-0.640586,-1.607140,0.453776,2.160720 +-0.370471,0.628326,-0.637140,-1.598010,0.451449,2.148260 +-0.368564,0.624932,-0.633693,-1.588810,0.449121,2.135690 +-0.366656,0.621539,-0.630247,-1.579570,0.446793,2.123000 +-0.364748,0.618145,-0.626801,-1.570270,0.444466,2.110220 +-0.362841,0.614751,-0.623354,-1.560920,0.442138,2.097330 +-0.360933,0.611358,-0.619908,-1.551530,0.439810,2.084340 +-0.359025,0.607964,-0.616462,-1.542100,0.437483,2.071250 +-0.357118,0.604571,-0.613015,-1.532630,0.435155,2.058080 +-0.355210,0.601177,-0.609569,-1.523120,0.432827,2.044810 +-0.353302,0.597784,-0.606123,-1.513580,0.430500,2.031450 +-0.351395,0.594390,-0.602676,-1.504010,0.428172,2.018020 +-0.349487,0.590997,-0.599230,-1.494410,0.425844,2.004500 +-0.347579,0.587603,-0.595784,-1.484790,0.423517,1.990900 +-0.345672,0.584210,-0.592337,-1.475150,0.421189,1.977240 +-0.343764,0.580816,-0.588891,-1.465490,0.418862,1.963500 +-0.341856,0.577422,-0.585445,-1.455820,0.416534,1.949690 +-0.339948,0.574029,-0.581998,-1.446130,0.414206,1.935810 +-0.338041,0.570635,-0.578552,-1.436440,0.411879,1.921880 +-0.336133,0.567242,-0.575105,-1.426750,0.409551,1.907890 +-0.334225,0.563848,-0.571659,-1.417050,0.407223,1.893840 +-0.332318,0.560455,-0.568213,-1.407350,0.404896,1.879740 +-0.330410,0.557061,-0.564766,-1.397660,0.402568,1.865590 +-0.328502,0.553668,-0.561320,-1.387960,0.400240,1.851390 +-0.326595,0.550274,-0.557874,-1.378260,0.397913,1.837150 +-0.324687,0.546881,-0.554427,-1.368570,0.395585,1.822870 +-0.322779,0.543487,-0.550981,-1.358870,0.393257,1.808560 +-0.320872,0.540093,-0.547535,-1.349170,0.390930,1.794210 +-0.318964,0.536700,-0.544088,-1.339470,0.388602,1.779830 +-0.317056,0.533306,-0.540642,-1.329780,0.386274,1.765420 +-0.315149,0.529913,-0.537196,-1.320080,0.383947,1.750990 +-0.313241,0.526519,-0.533749,-1.310380,0.381619,1.736540 +-0.311333,0.523126,-0.530303,-1.300690,0.379292,1.722060 +-0.309426,0.519732,-0.526857,-1.290990,0.376964,1.707580 +-0.307518,0.516339,-0.523410,-1.281290,0.374636,1.693080 +-0.305610,0.512945,-0.519964,-1.271590,0.372309,1.678570 +-0.303703,0.509552,-0.516518,-1.261900,0.369981,1.664060 +-0.301795,0.506158,-0.513071,-1.252200,0.367653,1.649540 +-0.299887,0.502764,-0.509625,-1.242500,0.365326,1.635030 +-0.297979,0.499371,-0.506179,-1.232800,0.362998,1.620510 +-0.296072,0.495977,-0.502732,-1.223110,0.360670,1.606000 +-0.294164,0.492584,-0.499286,-1.213410,0.358343,1.591480 +-0.292256,0.489190,-0.495840,-1.203710,0.356015,1.576970 +-0.290349,0.485797,-0.492393,-1.194020,0.353687,1.562450 +-0.288441,0.482403,-0.488947,-1.184320,0.351360,1.547940 +-0.286533,0.479010,-0.485501,-1.174620,0.349032,1.533420 +-0.284626,0.475616,-0.482054,-1.164920,0.346704,1.518900 +-0.282718,0.472223,-0.478608,-1.155230,0.344377,1.504390 +-0.280810,0.468829,-0.475162,-1.145530,0.342049,1.489870 +-0.278903,0.465435,-0.471715,-1.135830,0.339722,1.475360 +-0.276995,0.462042,-0.468269,-1.126140,0.337394,1.460840 +-0.275087,0.458648,-0.464823,-1.116440,0.335066,1.446330 +-0.273180,0.455255,-0.461376,-1.106740,0.332739,1.431810 +-0.271272,0.451861,-0.457930,-1.097040,0.330411,1.417290 +-0.269364,0.448468,-0.454484,-1.087350,0.328083,1.402780 +-0.267457,0.445074,-0.451037,-1.077650,0.325756,1.388260 +-0.265549,0.441681,-0.447591,-1.067950,0.323428,1.373750 +-0.263641,0.438287,-0.444145,-1.058260,0.321100,1.359230 +-0.261734,0.434894,-0.440698,-1.048560,0.318773,1.344720 +-0.259826,0.431500,-0.437252,-1.038860,0.316445,1.330200 +-0.257918,0.428106,-0.433806,-1.029160,0.314117,1.315690 +-0.256010,0.424713,-0.430359,-1.019470,0.311790,1.301170 +-0.254103,0.421319,-0.426913,-1.009770,0.309462,1.286650 +-0.252195,0.417926,-0.423467,-1.000070,0.307134,1.272140 +-0.250287,0.414532,-0.420020,-0.990375,0.304807,1.257620 +-0.248380,0.411139,-0.416574,-0.980678,0.302479,1.243110 +-0.246472,0.407745,-0.413128,-0.970981,0.300152,1.228590 +-0.244564,0.404352,-0.409681,-0.961284,0.297824,1.214080 +-0.242657,0.400958,-0.406235,-0.951587,0.295496,1.199560 +-0.240749,0.397565,-0.402789,-0.941890,0.293169,1.185050 +-0.238841,0.394171,-0.399342,-0.932192,0.290841,1.170530 +-0.236934,0.390777,-0.395896,-0.922495,0.288513,1.156010 +-0.235026,0.387384,-0.392449,-0.912798,0.286186,1.141500 +-0.233118,0.383990,-0.389003,-0.903101,0.283858,1.126980 +-0.231211,0.380597,-0.385557,-0.893404,0.281530,1.112470 +-0.229303,0.377203,-0.382110,-0.883706,0.279203,1.097950 +-0.227395,0.373810,-0.378664,-0.874009,0.276875,1.083440 +-0.225488,0.370416,-0.375218,-0.864312,0.274547,1.068920 +-0.223580,0.367023,-0.371771,-0.854615,0.272220,1.054400 +-0.221672,0.363629,-0.368325,-0.844918,0.269892,1.039890 +-0.219765,0.360235,-0.364879,-0.835221,0.267564,1.025370 +-0.217857,0.356842,-0.361432,-0.825523,0.265237,1.010860 +-0.215949,0.353448,-0.357986,-0.815826,0.262909,0.996357 +-0.214041,0.350055,-0.354540,-0.806129,0.260582,0.981861 +-0.212134,0.346661,-0.351093,-0.796432,0.258254,0.967377 +-0.210226,0.343268,-0.347647,-0.786735,0.255926,0.952909 +-0.208318,0.339874,-0.344201,-0.777038,0.253599,0.938460 +-0.206411,0.336481,-0.340754,-0.767340,0.251271,0.924032 +-0.204503,0.333087,-0.337308,-0.757643,0.248943,0.909630 +-0.202595,0.329694,-0.333862,-0.747946,0.246616,0.895256 +-0.200688,0.326300,-0.330415,-0.738249,0.244288,0.880913 +-0.198780,0.322906,-0.326969,-0.728552,0.241960,0.866604 +-0.196872,0.319513,-0.323523,-0.718854,0.239633,0.852332 +-0.194965,0.316119,-0.320076,-0.709157,0.237305,0.838101 +-0.193057,0.312726,-0.316630,-0.699460,0.234977,0.823914 +-0.191149,0.309332,-0.313184,-0.689763,0.232650,0.809774 +-0.189242,0.305939,-0.309737,-0.680066,0.230322,0.795683 +-0.187334,0.302545,-0.306291,-0.670369,0.227994,0.781645 +-0.185426,0.299152,-0.302845,-0.660671,0.225667,0.767664 +-0.183519,0.295758,-0.299398,-0.650974,0.223339,0.753741 +-0.181611,0.292365,-0.295952,-0.641277,0.221012,0.739881 +-0.179703,0.288971,-0.292506,-0.631580,0.218684,0.726086 +-0.177796,0.285577,-0.289059,-0.621883,0.216356,0.712360 +-0.175888,0.282184,-0.285613,-0.612186,0.214029,0.698706 +-0.173980,0.278790,-0.282167,-0.602488,0.211701,0.685126 +-0.172072,0.275397,-0.278720,-0.592791,0.209373,0.671624 +-0.170165,0.272003,-0.275274,-0.583094,0.207046,0.658203 +-0.168257,0.268610,-0.271828,-0.573397,0.204718,0.644866 +-0.166349,0.265216,-0.268381,-0.563700,0.202390,0.631616 +-0.164442,0.261823,-0.264935,-0.554002,0.200063,0.618456 +-0.162534,0.258429,-0.261489,-0.544305,0.197735,0.605390 +-0.160626,0.255036,-0.258042,-0.534609,0.195407,0.592421 +-0.158719,0.251642,-0.254596,-0.524915,0.193080,0.579551 +-0.156811,0.248248,-0.251150,-0.515228,0.190752,0.566783 +-0.154903,0.244855,-0.247703,-0.505551,0.188424,0.554122 +-0.152996,0.241461,-0.244257,-0.495886,0.186097,0.541569 +-0.151088,0.238068,-0.240811,-0.486237,0.183769,0.529129 +-0.149180,0.234674,-0.237364,-0.476606,0.181442,0.516804 +-0.147273,0.231281,-0.233918,-0.466998,0.179114,0.504597 +-0.145365,0.227887,-0.230472,-0.457414,0.176786,0.492511 +-0.143457,0.224494,-0.227025,-0.447859,0.174459,0.480550 +-0.141550,0.221100,-0.223579,-0.438335,0.172131,0.468717 +-0.139642,0.217707,-0.220132,-0.428845,0.169803,0.457014 +-0.137734,0.214313,-0.216686,-0.419393,0.167476,0.445445 +-0.135827,0.210919,-0.213240,-0.409981,0.165148,0.434013 +-0.133919,0.207526,-0.209793,-0.400613,0.162820,0.422721 +-0.132011,0.204132,-0.206347,-0.391292,0.160493,0.411573 +-0.130103,0.200739,-0.202901,-0.382021,0.158165,0.400570 +-0.128196,0.197345,-0.199454,-0.372802,0.155837,0.389717 +-0.126288,0.193952,-0.196008,-0.363640,0.153510,0.379017 +-0.124380,0.190558,-0.192562,-0.354537,0.151182,0.368471 +-0.122473,0.187165,-0.189115,-0.345497,0.148854,0.358081 +-0.120565,0.183771,-0.185669,-0.336522,0.146527,0.347847 +-0.118657,0.180378,-0.182223,-0.327615,0.144199,0.337768 +-0.116750,0.176984,-0.178776,-0.318780,0.141872,0.327844 +-0.114842,0.173590,-0.175330,-0.310020,0.139544,0.318077 +-0.112934,0.170197,-0.171884,-0.301338,0.137216,0.308464 +-0.111027,0.166803,-0.168437,-0.292737,0.134889,0.299007 +-0.109119,0.163410,-0.164991,-0.284220,0.132561,0.289706 +-0.107211,0.160016,-0.161545,-0.275790,0.130233,0.280560 +-0.105304,0.156623,-0.158098,-0.267451,0.127906,0.271570 +-0.103396,0.153229,-0.154652,-0.259205,0.125578,0.262735 +-0.101488,0.149836,-0.151206,-0.251055,0.123250,0.254056 +-0.099581,0.146442,-0.147759,-0.243006,0.120923,0.245532 +-0.097673,0.143048,-0.144313,-0.235059,0.118595,0.237164 +-0.095765,0.139655,-0.140867,-0.227218,0.116267,0.228952 +-0.093857,0.136261,-0.137420,-0.219486,0.113940,0.220895 +-0.091950,0.132868,-0.133974,-0.211866,0.111612,0.212993 +-0.090042,0.129474,-0.130528,-0.204361,0.109284,0.205247 +-0.088135,0.126081,-0.127081,-0.196975,0.106957,0.197656 +-0.086227,0.122687,-0.123635,-0.189710,0.104629,0.190221 +-0.084319,0.119294,-0.120190,-0.182570,0.102302,0.182942 +-0.082411,0.115904,-0.116750,-0.175557,0.099974,0.175818 +-0.080504,0.112518,-0.113315,-0.168675,0.097646,0.168850 +-0.078596,0.109141,-0.109891,-0.161927,0.095319,0.162037 +-0.076688,0.105774,-0.106478,-0.155316,0.092991,0.155379 +-0.074781,0.102419,-0.103079,-0.148845,0.090663,0.148877 +-0.072873,0.099081,-0.099698,-0.142518,0.088336,0.142531 +-0.070965,0.095760,-0.096336,-0.136336,0.086008,0.136340 +-0.069058,0.092461,-0.092996,-0.130304,0.083680,0.130305 +-0.067150,0.089185,-0.089681,-0.124425,0.081353,0.124425 +-0.065242,0.085934,-0.086394,-0.118701,0.079025,0.118701 +-0.063335,0.082712,-0.083136,-0.113132,0.076697,0.113132 +-0.061427,0.079522,-0.079912,-0.107719,0.074370,0.107719 +-0.059519,0.076365,-0.076722,-0.102461,0.072042,0.102461 +-0.057612,0.073245,-0.073570,-0.097359,0.069714,0.097359 +-0.055704,0.070163,-0.070459,-0.092412,0.067387,0.092413 +-0.053796,0.067123,-0.067390,-0.087622,0.065059,0.087622 +-0.051888,0.064127,-0.064368,-0.082986,0.062732,0.082986 +-0.049981,0.061178,-0.061393,-0.078506,0.060405,0.078506 +-0.048076,0.058278,-0.058469,-0.074181,0.058083,0.074181 +-0.046176,0.055430,-0.055599,-0.070012,0.055769,0.070013 +-0.044284,0.052637,-0.052784,-0.065999,0.053465,0.065999 +-0.042401,0.049901,-0.050028,-0.062141,0.051175,0.062141 +-0.040532,0.047224,-0.047334,-0.058436,0.048902,0.058436 +-0.038677,0.044610,-0.044703,-0.054882,0.046649,0.054882 +-0.036841,0.042061,-0.042138,-0.051474,0.044418,0.051474 +-0.035025,0.039579,-0.039642,-0.048211,0.042214,0.048211 +-0.033232,0.037167,-0.037218,-0.045088,0.040039,0.045088 +-0.031465,0.034828,-0.034868,-0.042104,0.037896,0.042104 +-0.029727,0.032564,-0.032595,-0.039254,0.035789,0.039254 +-0.028019,0.030379,-0.030402,-0.036536,0.033721,0.036536 +-0.026345,0.028273,-0.028290,-0.033946,0.031694,0.033946 +-0.024707,0.026251,-0.026262,-0.031481,0.029712,0.031482 +-0.023107,0.024314,-0.024322,-0.029139,0.027778,0.029139 +-0.021549,0.022466,-0.022472,-0.026916,0.025895,0.026916 +-0.020035,0.020709,-0.020713,-0.024809,0.024066,0.024809 +-0.018567,0.019044,-0.019049,-0.022815,0.022294,0.022815 +-0.017148,0.017472,-0.017476,-0.020931,0.020583,0.020931 +-0.015781,0.015988,-0.015992,-0.019153,0.018935,0.019153 +-0.014469,0.014591,-0.014595,-0.017479,0.017354,0.017479 +-0.013213,0.013277,-0.013282,-0.015906,0.015842,0.015906 +-0.012017,0.012045,-0.012050,-0.014430,0.014403,0.014430 +-0.010882,0.010892,-0.010896,-0.013048,0.013041,0.013048 +-0.009813,0.009814,-0.009819,-0.011757,0.011757,0.011758 +-0.008810,0.008811,-0.008815,-0.010555,0.010555,0.010555 +-0.007877,0.007878,-0.007882,-0.009437,0.009437,0.009437 +-0.007013,0.007013,-0.007018,-0.008401,0.008401,0.008401 +-0.006214,0.006214,-0.006219,-0.007444,0.007444,0.007444 +-0.005478,0.005478,-0.005483,-0.006563,0.006563,0.006563 +-0.004803,0.004803,-0.004808,-0.005754,0.005754,0.005754 +-0.004185,0.004186,-0.004190,-0.005014,0.005014,0.005014 +-0.003623,0.003623,-0.003628,-0.004340,0.004341,0.004341 +-0.003114,0.003114,-0.003119,-0.003730,0.003731,0.003730 +-0.002655,0.002655,-0.002659,-0.003180,0.003180,0.003180 +-0.002243,0.002243,-0.002248,-0.002687,0.002687,0.002687 +-0.001876,0.001876,-0.001881,-0.002247,0.002248,0.002248 +-0.001552,0.001552,-0.001557,-0.001859,0.001859,0.001859 +-0.001267,0.001267,-0.001272,-0.001518,0.001518,0.001518 +-0.001020,0.001020,-0.001024,-0.001221,0.001221,0.001221 +-0.000807,0.000807,-0.000811,-0.000966,0.000966,0.000966 +-0.000626,0.000626,-0.000630,-0.000749,0.000749,0.000749 +-0.000474,0.000474,-0.000479,-0.000567,0.000568,0.000567 +-0.000349,0.000349,-0.000354,-0.000418,0.000418,0.000418 +-0.000248,0.000248,-0.000253,-0.000297,0.000297,0.000297 +-0.000169,0.000169,-0.000174,-0.000202,0.000202,0.000202 +-0.000109,0.000109,-0.000113,-0.000130,0.000130,0.000130 +-0.000065,0.000065,-0.000069,-0.000077,0.000078,0.000077 +-0.000035,0.000035,-0.000039,-0.000041,0.000042,0.000041 +-0.000016,0.000016,-0.000020,-0.000019,0.000019,0.000019 +-0.000005,0.000006,-0.000010,-0.000006,0.000006,0.000006 +-0.000001,0.000001,-0.000006,-0.000001,0.000001,0.000001 +-0.000000,0.000000,-0.000005,0.000000,0.000000,0.000000 +-0.000000,0.000000,-0.000005,0.000000,0.000000,0.000000 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record7.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record7.offt new file mode 100644 index 00000000..f9e05742 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/record7.offt @@ -0,0 +1,15600 @@ +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-0,9e-06,-1e-06,2e-06,2e-06,0, +-4.18667e-08,9.02093e-06,-1.04187e-06,1.95813e-06,2.02093e-06,4.18667e-08, +-2.78002e-07,9.16447e-06,-1.278e-06,1.67106e-06,2.16447e-06,3.28943e-07, +-5.74616e-07,9.42568e-06,-1.57462e-06,1.10693e-06,2.42568e-06,8.93066e-07, +-7.55965e-07,9.67001e-06,-1.75597e-06,5.00122e-07,2.67001e-06,1.49988e-06, +-9.10621e-07,9.89961e-06,-1.91062e-06,1.00608e-07,2.89961e-06,1.89939e-06, +-9.98045e-07,9.99805e-06,-1.99805e-06,1.63037e-09,2.99805e-06,1.99837e-06, +-1e-06,1e-05,-2e-06,-1.45323e-22,3e-06,2e-06, +-1e-06,1e-05,-2e-06,-1.45323e-22,3e-06,2e-06, +-1.04187e-06,1.00349e-05,-2.04187e-06,-4.18667e-08,3.04187e-06,2.03489e-06, +-1.33493e-06,1.02791e-05,-2.33493e-06,-3.34933e-07,3.33493e-06,2.27911e-06, +-2.04663e-06,1.0915e-05,-3.04663e-06,-1.09986e-06,4.09986e-06,2.91504e-06, +-3.00957e-06,1.18476e-05,-4.00957e-06,-2.25764e-06,5.25764e-06,3.84758e-06, +-3.97607e-06,1.28495e-05,-4.97607e-06,-3.55896e-06,6.55896e-06,4.84954e-06, +-4.86441e-06,1.38259e-05,-5.86441e-06,-4.75271e-06,7.75271e-06,5.82587e-06, +-5.58922e-06,1.45882e-05,-6.58922e-06,-5.58787e-06,8.58787e-06,6.58816e-06, +-5.93745e-06,1.49375e-05,-6.93745e-06,-5.93745e-06,8.93745e-06,6.93748e-06, +-5.99993e-06,1.49999e-05,-6.99993e-06,-5.99983e-06,8.99983e-06,6.9999e-06, +-6.0264e-06,1.50263e-05,-7.0264e-06,-6.0263e-06,9.0263e-06,7.02632e-06, +-6.26811e-06,1.5268e-05,-7.26811e-06,-6.26803e-06,9.26803e-06,7.26798e-06, +-6.97543e-06,1.59711e-05,-7.97132e-06,-6.97617e-06,9.97617e-06,7.97608e-06, +-8.252e-06,1.71773e-05,-9.17749e-06,-8.31077e-06,1.13549e-05,9.35476e-06, +-9.88716e-06,1.86543e-05,-1.06545e-05,-1.00973e-05,1.32875e-05,1.12873e-05, +-1.16376e-05,2.01838e-05,-1.21839e-05,-1.20848e-05,1.55232e-05,1.3523e-05, +-1.33913e-05,2.17133e-05,-1.37133e-05,-1.40913e-05,1.78108e-05,1.58106e-05, +-1.5185e-05,2.32847e-05,-1.52846e-05,-1.60749e-05,1.99828e-05,1.79827e-05, +-1.7226e-05,2.51072e-05,-1.71071e-05,-1.82129e-05,2.22068e-05,2.02067e-05, +-1.9633e-05,2.74013e-05,-1.94012e-05,-2.07564e-05,2.47339e-05,2.27339e-05, +-2.22047e-05,3.00872e-05,-2.2087e-05,-2.38761e-05,2.77464e-05,2.57464e-05, +-2.47879e-05,3.29188e-05,-2.49186e-05,-2.74078e-05,3.10934e-05,2.90934e-05, +-2.7371e-05,3.5758e-05,-2.77579e-05,-3.11003e-05,3.45363e-05,3.25363e-05, +-2.99438e-05,3.85827e-05,-3.05827e-05,-3.47024e-05,3.79273e-05,3.59273e-05, +-3.24632e-05,4.12996e-05,-3.32996e-05,-3.79628e-05,4.1046e-05,3.9046e-05, +-3.47992e-05,4.37559e-05,-3.57559e-05,-4.07142e-05,4.37248e-05,4.17248e-05, +-3.71193e-05,4.61191e-05,-3.81191e-05,-4.3124e-05,4.61311e-05,4.41311e-05, +-3.96744e-05,4.86404e-05,-4.06404e-05,-4.54434e-05,4.85163e-05,4.65163e-05, +-4.25904e-05,5.14705e-05,-4.34705e-05,-4.79236e-05,5.11314e-05,4.91314e-05, +-4.56699e-05,5.44324e-05,-4.64324e-05,-5.08157e-05,5.42277e-05,5.22277e-05, +-4.87607e-05,5.73996e-05,-4.93996e-05,-5.43298e-05,5.7958e-05,5.5958e-05, +-5.18514e-05,6.03668e-05,-5.23668e-05,-5.83605e-05,6.21417e-05,6.01417e-05, +-5.49422e-05,6.3334e-05,-5.5334e-05,-6.26575e-05,6.65279e-05,6.45279e-05, +-5.80748e-05,6.63431e-05,-5.83431e-05,-6.70533e-05,7.09778e-05,6.89778e-05, +-6.14586e-05,6.96033e-05,-6.16033e-05,-7.17153e-05,7.56788e-05,7.36788e-05, +-6.53448e-05,7.3366e-05,-6.5366e-05,-7.68948e-05,8.08823e-05,7.88823e-05, +-6.99204e-05,7.78545e-05,-6.98545e-05,-8.27972e-05,8.67969e-05,8.47969e-05, +-7.50409e-05,8.2998e-05,-7.4998e-05,-8.93084e-05,9.33154e-05,9.13154e-05, +-8.04553e-05,8.85476e-05,-8.05476e-05,-9.61777e-05,0.000100188,9.81875e-05, +-8.59235e-05,9.42522e-05,-8.62522e-05,-0.000103154,0.000107162,0.000105162, +-9.13787e-05,9.99332e-05,-9.19332e-05,-0.000109986,0.000113989,0.000111989, +-9.68217e-05,0.00010556,-9.756e-05,-0.000116506,0.000120499,0.000118499, +-0.000102432,0.000111306,-0.000103306,-0.000122882,0.000126861,0.000124861, +-0.000108439,0.000117399,-0.000109399,-0.000129365,0.000133325,0.000131325, +-0.000114782,0.00012378,-0.00011578,-0.000136205,0.000140143,0.000138143, +-0.000121227,0.000130227,-0.000122227,-0.000143638,0.000147553,0.000145553, +-0.000127674,0.000136673,-0.000128673,-0.000151626,0.000155534,0.000153534, +-0.000134121,0.00014312,-0.00013512,-0.000159924,0.000163843,0.000161843, +-0.000140567,0.000149567,-0.000141567,-0.000168286,0.00017223,0.00017023, +-0.000147056,0.000156056,-0.000148056,-0.000176562,0.000180525,0.000178525, +-0.000153796,0.000162796,-0.000154796,-0.000184919,0.000188898,0.000186898, +-0.000161038,0.000170038,-0.000162038,-0.000193608,0.000197598,0.000195598, +-0.000168942,0.000177914,-0.000169914,-0.000202881,0.000206878,0.000204878, +-0.000177332,0.00018623,-0.00017823,-0.000212891,0.000216892,0.000214892, +-0.000185957,0.000194734,-0.000186734,-0.000223458,0.000227461,0.000225461, +-0.000194616,0.000203256,-0.000195256,-0.000234331,0.000238335,0.000236335, +-0.000203276,0.000211778,-0.000203778,-0.000245259,0.000249262,0.000247262, +-0.000211977,0.000220342,-0.000212342,-0.000256075,0.000260077,0.000258077, +-0.000220929,0.000229156,-0.000221156,-0.000266945,0.000270946,0.000268946, +-0.000230383,0.000238474,-0.000230474,-0.000278121,0.000282122,0.000280122, +-0.00024043,0.000248445,-0.000240445,-0.000289854,0.000293855,0.000291855, +-0.000250855,0.000258891,-0.000250891,-0.000302335,0.000306309,0.000304309, +-0.000261408,0.000269558,-0.000261558,-0.00031542,0.000319333,0.000317333, +-0.000271959,0.000280244,-0.000272244,-0.00032886,0.000332702,0.000330702, +-0.00028251,0.000290928,-0.000282928,-0.000342404,0.000346164,0.000344164, +-0.000293102,0.000301654,-0.000293654,-0.000355883,0.000359552,0.000357552, +-0.000303946,0.000312631,-0.000304631,-0.000369465,0.000373033,0.000371033, +-0.000315292,0.000324111,-0.000316111,-0.000383402,0.000386858,0.000384858, +-0.000327358,0.000336282,-0.000328282,-0.000397945,0.000401279,0.000399279, +-0.000340056,0.000349004,-0.000341004,-0.000413241,0.000416488,0.000414488, +-0.000353136,0.000362026,-0.000354026,-0.000429107,0.000432348,0.000430348, +-0.000366352,0.000375117,-0.000367117,-0.000445292,0.000448606,0.000446606, +-0.000379574,0.00038821,-0.00038021,-0.000461558,0.000465012,0.000463012, +-0.000392837,0.000401343,-0.000393343,-0.000477812,0.000481399,0.000479399, +-0.000406352,0.000414729,-0.000406729,-0.000494233,0.000497934,0.000495934, +-0.00042037,0.000428616,-0.000420616,-0.000511071,0.000514868,0.000512868, +-0.000435096,0.000443233,-0.000435233,-0.000528579,0.000532453,0.000530453, +-0.000450419,0.00045852,-0.00045052,-0.000546927,0.00055086,0.00054886, +-0.000466088,0.000474228,-0.000466228,-0.000565955,0.000569933,0.000567933, +-0.000481854,0.000490107,-0.000482107,-0.000585411,0.000589423,0.000587423, +-0.000497588,0.000505961,-0.000497961,-0.000605044,0.000609079,0.000607079, +-0.000513364,0.000521851,-0.000513851,-0.000624686,0.000628735,0.000626735, +-0.000529392,0.000537992,-0.000529992,-0.000644505,0.000648557,0.000646557, +-0.000545921,0.000554635,-0.000546635,-0.000664752,0.000668797,0.000666797, +-0.00056319,0.000572012,-0.000564012,-0.000685678,0.000689706,0.000687706, +-0.000581175,0.000590076,-0.000582076,-0.000707464,0.000711454,0.000709472, +-0.000599633,0.000608581,-0.000600581,-0.000729957,0.000733875,0.000731951, +-0.000618312,0.000627276,-0.000619276,-0.000752905,0.000756719,0.000754893, +-0.00063702,0.000645988,-0.000637988,-0.000776058,0.000779736,0.000778046, +-0.000655769,0.000664743,-0.000656743,-0.000799252,0.000802795,0.000801243, +-0.00067477,0.000683749,-0.000675749,-0.000822658,0.00082608,0.000824651, +-0.000694273,0.000703257,-0.000695257,-0.000846527,0.000849843,0.000848521, +-0.000714518,0.000723507,-0.000715507,-0.000871109,0.000874335,0.000873105, +-0.000735501,0.000744494,-0.000736494,-0.000896567,0.000899737,0.000898564, +-0.000756979,0.000765975,-0.000757975,-0.000922726,0.000925894,0.000924724, +-0.000778703,0.000787699,-0.000779699,-0.000949335,0.000952556,0.000951334, +-0.000800464,0.000809461,-0.000801461,-0.000976144,0.000979472,0.000978143, +-0.000822268,0.000831266,-0.000823266,-0.00100302,0.00100647,0.00100501, +-0.000844323,0.000853321,-0.000845321,-0.00103014,0.00103373,0.00103214, +-0.00086688,0.000875879,-0.000867879,-0.00105776,0.00106149,0.00105976, +-0.000890189,0.000899188,-0.000891188,-0.00108614,0.00109,0.00108814, +-0.000914319,0.000923318,-0.000915318,-0.00111546,0.00111944,0.00111746, +-0.000939047,0.000948046,-0.000940046,-0.00114557,0.00114964,0.00114757, +-0.000964121,0.000973121,-0.000965121,-0.00117623,0.00118034,0.00117823, +-0.000989301,0.000998301,-0.000990301,-0.00120718,0.00121129,0.00120918, +-0.00101453,0.00102353,-0.00101553,-0.00123826,0.00124234,0.00124026, +-0.00104,0.001049,-0.001041,-0.00126963,0.00127363,0.00127163, +-0.00106598,0.00107498,-0.00106698,-0.00130154,0.00130543,0.00130354, +-0.00109271,0.00110171,-0.00109371,-0.00133425,0.00133799,0.00133625, +-0.0011203,0.0011293,-0.0011213,-0.00136792,0.0013715,0.00136992, +-0.00114854,0.00115754,-0.00114954,-0.00140236,0.00140586,0.00140436, +-0.00117718,0.00118618,-0.00117818,-0.00143733,0.0014408,0.00143932, +-0.00120597,0.00121497,-0.00120697,-0.00147257,0.00147608,0.00147457, +-0.00123482,0.00124382,-0.00123582,-0.00150792,0.00151153,0.00150992, +-0.00126391,0.00127291,-0.00126491,-0.00154355,0.00154731,0.00154555, +-0.00129351,0.00130251,-0.00129451,-0.00157971,0.00158369,0.00158171, +-0.00132386,0.00133286,-0.00132486,-0.00161664,0.0016209,0.00161864, +-0.0013551,0.00136408,-0.00135608,-0.00165457,0.00165909,0.00165657, +-0.00138703,0.00139598,-0.00138798,-0.00169338,0.00169808,0.00169538, +-0.00141942,0.0014283,-0.0014203,-0.00173284,0.0017376,0.00173484, +-0.001452,0.00146079,-0.00145279,-0.00177268,0.00177742,0.00177468, +-0.00148464,0.00149334,-0.00148534,-0.00181274,0.00181736,0.00181474, +-0.00151753,0.00152614,-0.00151814,-0.00185319,0.00185759,0.00185519, +-0.00155092,0.00155945,-0.00155145,-0.00189428,0.00189835,0.00189628, +-0.00158507,0.0015935,-0.0015855,-0.00193626,0.00193991,0.00193826, +-0.00162013,0.00162849,-0.00162049,-0.00197924,0.00198249,0.00198124, +-0.00165593,0.00166426,-0.00165626,-0.00202303,0.00202601,0.00202503, +-0.00169222,0.00170055,-0.00169255,-0.00206738,0.00207022,0.00206938, +-0.00172875,0.00173712,-0.00172912,-0.00211202,0.00211488,0.00211407, +-0.00176534,0.0017738,-0.0017658,-0.0021568,0.00215982,0.00215902, +-0.00180217,0.00181076,-0.00180276,-0.00220188,0.0022052,0.0022044, +-0.00183949,0.00184824,-0.00184024,-0.00224751,0.00225127,0.00225045, +-0.00187755,0.0018865,-0.0018785,-0.00229394,0.00229829,0.00229744, +-0.00191655,0.00192569,-0.00191769,-0.00234142,0.00234633,0.00234543, +-0.00195638,0.00196563,-0.00195763,-0.00238989,0.00239516,0.0023942, +-0.00199679,0.00200605,-0.00199805,-0.00243913,0.00244454,0.0024435, +-0.00203752,0.00204672,-0.00203872,-0.00248887,0.00249422,0.00249308, +-0.00207842,0.00208746,-0.00207946,-0.00253895,0.00254402,0.00254277, +-0.00211963,0.00212845,-0.00212045,-0.00258953,0.00259412,0.00259275, +-0.00216143,0.00216992,-0.00216192,-0.00264088,0.00264477,0.00264325, +-0.00220405,0.00221214,-0.00220414,-0.00269322,0.00269621,0.00269454, +-0.0022476,0.00225532,-0.00224732,-0.00274657,0.00274869,0.00274685, +-0.00229188,0.00229937,-0.00229137,-0.00280069,0.00280222,0.00280025, +-0.00233663,0.00234402,-0.00233602,-0.00285532,0.00285656,0.00285448, +-0.0023816,0.00238904,-0.00238104,-0.00291021,0.00291144,0.00290932, +-0.00242664,0.00243425,-0.00242625,-0.0029652,0.00296672,0.00296458, +-0.00247192,0.00247982,-0.00247182,-0.00302046,0.00302255,0.00302044, +-0.00251772,0.00252601,-0.00251801,-0.00307623,0.00307919,0.00307714, +-0.00256426,0.00257306,-0.00256506,-0.00313276,0.00313687,0.00313492, +-0.00261179,0.00262108,-0.00261308,-0.00319031,0.00319562,0.00319376, +-0.00266022,0.00266987,-0.00266187,-0.003249,0.00325521,0.00325339, +-0.00270932,0.00271917,-0.00271117,-0.00330862,0.00331537,0.00331358, +-0.00275882,0.00276872,-0.00276072,-0.00336891,0.00337586,0.00337407, +-0.00280857,0.00281837,-0.00281037,-0.00342972,0.00343651,0.00343469, +-0.00285874,0.00286828,-0.00286028,-0.0034912,0.0034975,0.00349562, +-0.00290956,0.0029187,-0.0029107,-0.00355362,0.00355905,0.0035571, +-0.0029613,0.00296988,-0.00296188,-0.0036172,0.00362144,0.00361938, +-0.00301405,0.00302206,-0.00301406,-0.00368189,0.00368492,0.00368271, +-0.00306762,0.00307523,-0.00306723,-0.00374746,0.00374956,0.00374724, +-0.00312176,0.00312913,-0.00312113,-0.00381365,0.00381516,0.00381276, +-0.0031762,0.00318352,-0.00317552,-0.00388021,0.00388146,0.00387902, +-0.00323078,0.00323822,-0.00323022,-0.00394697,0.0039483,0.00394585, +-0.00328567,0.00329341,-0.00328541,-0.0040141,0.00401585,0.00401344, +-0.00334113,0.00334934,-0.00334134,-0.00408185,0.00408435,0.00408201, +-0.0033974,0.00340626,-0.00339826,-0.00415047,0.00415405,0.00415182, +-0.00345472,0.00346424,-0.00345624,-0.00422022,0.00422497,0.00422283, +-0.00351308,0.00352308,-0.00351508,-0.0042912,0.00429687,0.0042948, +-0.00357224,0.00358251,-0.00357451,-0.00436321,0.0043695,0.00436748, +-0.00363194,0.00364229,-0.00363429,-0.00443599,0.00444261,0.00444061, +-0.00369203,0.00370225,-0.00369425,-0.00450939,0.00451603,0.00451404, +-0.00375266,0.00376256,-0.00375456,-0.00458357,0.00458992,0.00458792, +-0.0038141,0.00382346,-0.00381546,-0.00465877,0.00466455,0.00466252, +-0.00387658,0.00388522,-0.00387722,-0.00473525,0.00474016,0.00473807, +-0.00394018,0.00394806,-0.00394006,-0.00481302,0.004817,0.00481483, +-0.00400469,0.00401199,-0.00400399,-0.00489184,0.00489509,0.00489286, +-0.00406985,0.00407676,-0.00406876,-0.00497146,0.00497422,0.00497192, +-0.00413541,0.00414214,-0.00413414,-0.00505163,0.00505412,0.00505177, +-0.0042012,0.00420793,-0.00419993,-0.00513218,0.00513464,0.00513224, +-0.00426739,0.00427433,-0.00426633,-0.00521328,0.00521593,0.0052135, +-0.00433423,0.00434156,-0.00433356,-0.00529518,0.00529826,0.0052958, +-0.00440198,0.0044099,-0.0044019,-0.00537813,0.00538186,0.00537939, +-0.00447085,0.0044794,-0.0044714,-0.00546237,0.00546681,0.00546432, +-0.00454082,0.00454985,-0.00454185,-0.00554789,0.00555288,0.00555039, +-0.00461164,0.004621,-0.004613,-0.00563444,0.00563985,0.00563738, +-0.00468305,0.00469259,-0.00468459,-0.00572177,0.00572757,0.0057251, +-0.00475488,0.00476447,-0.00475647,-0.00580972,0.00581585,0.00581339, +-0.00482731,0.00483679,-0.00482879,-0.00589844,0.00590487,0.00590242, +-0.00490058,0.0049098,-0.0049018,-0.0059882,0.00599487,0.00599244, +-0.00497495,0.00498377,-0.00497577,-0.00607924,0.00608611,0.00608369, +-0.00505056,0.00505892,-0.00505092,-0.00617171,0.00617872,0.00617632, +-0.00512722,0.00513522,-0.00512722,-0.00626543,0.0062725,0.00627012, +-0.0052047,0.00521243,-0.00520443,-0.00636014,0.0063672,0.00636484, +-0.00528272,0.00529029,-0.00528229,-0.0064556,0.0064626,0.00646025, +-0.00536113,0.00536865,-0.00536065,-0.00655163,0.00655856,0.00655624, +-0.0054401,0.00544766,-0.00543966,-0.0066484,0.00665525,0.00665296, +-0.00551987,0.00552758,-0.00551958,-0.00674617,0.00675294,0.00675066, +-0.00560069,0.00560865,-0.00560065,-0.00684518,0.00685185,0.0068496, +-0.00568274,0.00569094,-0.00568294,-0.0069456,0.00695216,0.00694993, +-0.00576584,0.00577422,-0.00576622,-0.00704726,0.00705368,0.00705147, +-0.00584974,0.00585824,-0.00585024,-0.00714991,0.00715617,0.00715396, +-0.00593419,0.00594275,-0.00593475,-0.00725329,0.00725936,0.00725717, +-0.00601903,0.00602758,-0.00601958,-0.00735725,0.00736309,0.00736092, +-0.00610441,0.0061129,-0.0061049,-0.00746193,0.00746753,0.00746537, +-0.00619059,0.00619895,-0.00619095,-0.0075676,0.00757293,0.00757079, +-0.00627783,0.006286,-0.006278,-0.00767452,0.00767954,0.00767741, +-0.00636627,0.00637425,-0.00636625,-0.00778282,0.00778754,0.00778544, +-0.00645572,0.00646361,-0.00645561,-0.00789234,0.00789679,0.00789473, +-0.00654594,0.00655383,-0.00654583,-0.00800281,0.00800702,0.00800504, +-0.00663667,0.00664466,-0.00663666,-0.008114,0.00811799,0.0081161, +-0.00672775,0.00673593,-0.00672793,-0.00822573,0.00822953,0.00822776, +-0.00681935,0.00682781,-0.00681981,-0.00833817,0.0083418,0.00834018, +-0.00691171,0.00692056,-0.00691256,-0.00845158,0.00845507,0.00845361, +-0.00700508,0.00701441,-0.00700641,-0.00856619,0.00856958,0.0085683, +-0.00709965,0.00710951,-0.00710151,-0.00868222,0.00868547,0.00868442, +-0.00719526,0.00720567,-0.00719767,-0.00879954,0.00880255,0.0088018, +-0.00729165,0.00730263,-0.00729463,-0.00891789,0.00892058,0.00892018, +-0.00738857,0.00740015,-0.00739215,-0.00903704,0.00903931,0.00903931, +-0.00748585,0.00749807,-0.00749007,-0.0091568,0.00915856,0.00915902, +-0.00758367,0.00759653,-0.00758853,-0.00927734,0.0092785,0.00927948, +-0.00768227,0.00769581,-0.00768781,-0.00939893,0.00939939,0.00940095, +-0.00778191,0.00779614,-0.00778814,-0.0095218,0.00952148,0.00952367, +-0.0078827,0.00789773,-0.00788973,-0.00964614,0.00964491,0.00964785, +-0.00798445,0.00800047,-0.00799247,-0.00977177,0.00976952,0.00977334, +-0.00808689,0.00810409,-0.00809609,-0.00989845,0.00989506,0.00989991, +-0.00818979,0.00820836,-0.00820036,-0.0100259,0.0100213,0.0100273, +-0.00829297,0.0083131,-0.0083051,-0.010154,0.010148,0.0101553, +-0.0083966,0.00841848,-0.00841048,-0.0102829,0.0102753,0.0102842, +-0.00850094,0.00852475,-0.00851675,-0.0104129,0.0104036,0.0104141, +-0.00860623,0.00863216,-0.00862416,-0.0105441,0.0105331,0.0105454, +-0.00871265,0.00874088,-0.00873288,-0.0106769,0.0106639,0.0106781, +-0.00882006,0.00885075,-0.00884275,-0.0108109,0.0107958,0.0108122, +-0.0089282,0.00896151,-0.00895351,-0.0109461,0.0109285,0.0109474, +-0.00903682,0.00907291,-0.00906491,-0.0110821,0.0110619,0.0110835, +-0.00914575,0.00918479,-0.00917679,-0.0112188,0.0111957,0.0112202, +-0.00925517,0.00929731,-0.00928931,-0.0113564,0.0113301,0.0113578, +-0.00936532,0.00941072,-0.00940272,-0.011495,0.0114653,0.0114965, +-0.00947645,0.00952527,-0.00951727,-0.011635,0.0116017,0.0116366, +-0.00958869,0.00964115,-0.00963315,-0.0117766,0.0117394,0.0117781, +-0.00970182,0.0097582,-0.0097502,-0.0119195,0.0118781,0.0119211, +-0.00981561,0.00987617,-0.00986817,-0.0120635,0.0120178,0.0120652, +-0.00992979,0.00999481,-0.00998681,-0.0122085,0.012158,0.0122101, +-0.0100442,0.010114,-0.010106,-0.0123541,0.0122986,0.0123558, +-0.010159,0.0102338,-0.0102258,-0.0125007,0.0124398,0.0125023, +-0.0102745,0.0103545,-0.0103465,-0.0126483,0.0125819,0.01265, +-0.0103908,0.0104764,-0.0104684,-0.0127974,0.0127251,0.012799, +-0.0105083,0.0105997,-0.0105917,-0.012948,0.0128696,0.0129496, +-0.0106266,0.0107241,-0.0107161,-0.0131001,0.013015,0.0131017, +-0.0107456,0.0108496,-0.0108416,-0.0132533,0.0131613,0.0132549, +-0.010865,0.0109757,-0.0109677,-0.0134075,0.013308,0.013409, +-0.0109847,0.0111024,-0.0110944,-0.0135624,0.0134552,0.0135639, +-0.0111048,0.0112299,-0.0112219,-0.0137182,0.0136029,0.0137197, +-0.0112255,0.0113582,-0.0113502,-0.0138752,0.0137514,0.0138766, +-0.0113471,0.0114878,-0.0114798,-0.0140336,0.0139009,0.014035, +-0.0114698,0.0116188,-0.0116108,-0.0141936,0.0140516,0.014195, +-0.0115933,0.011751,-0.011743,-0.0143551,0.0142033,0.0143564, +-0.0117174,0.0118842,-0.0118762,-0.0145178,0.0143558,0.0145191, +-0.0118418,0.0120182,-0.0120102,-0.0146814,0.0145088,0.0146827, +-0.0119664,0.0121527,-0.0121447,-0.0148459,0.0146622,0.0148471, +-0.0120913,0.0122879,-0.0122799,-0.0150112,0.0148161,0.0150124, +-0.0122168,0.0124241,-0.0124161,-0.0151778,0.0149708,0.015179, +-0.0123432,0.0125615,-0.0125535,-0.0153459,0.0151265,0.015347, +-0.0124706,0.0127004,-0.0126924,-0.0155155,0.0152833,0.0155167, +-0.0125988,0.0128405,-0.0128325,-0.0156867,0.0154411,0.0156879, +-0.0127276,0.0129817,-0.0129737,-0.0158591,0.0155997,0.0158603, +-0.0128567,0.0131236,-0.0131156,-0.0160325,0.0157586,0.0160337, +-0.0129861,0.0132661,-0.0132581,-0.0162067,0.0159179,0.0162079, +-0.0131158,0.0134093,-0.0134013,-0.0163819,0.0160776,0.0163831, +-0.013246,0.0135536,-0.0135456,-0.0165583,0.016238,0.0165596, +-0.0133772,0.0136992,-0.0136912,-0.0167362,0.0163994,0.0167376, +-0.0135093,0.0138461,-0.0138381,-0.0169158,0.016562,0.0169172, +-0.0136422,0.0139944,-0.0139864,-0.0170969,0.0167254,0.0170984, +-0.0137756,0.0141438,-0.0141358,-0.0172793,0.0168896,0.0172809, +-0.0139094,0.0142939,-0.0142859,-0.0174628,0.0170542,0.0174644, +-0.0140432,0.0144447,-0.0144367,-0.0176471,0.0172191,0.0176487, +-0.0141774,0.0145963,-0.0145883,-0.0178324,0.0173845,0.0178341, +-0.0143121,0.0147489,-0.0147409,-0.0180191,0.0175506,0.0180207, +-0.0144476,0.0149028,-0.0148948,-0.0182072,0.0177176,0.0182089, +-0.014584,0.0150582,-0.0150501,-0.0183971,0.0178857,0.0183988, +-0.0147213,0.0152149,-0.0152068,-0.0185885,0.0180547,0.0185903, +-0.014859,0.0153727,-0.0153646,-0.0187813,0.0182243,0.0187831, +-0.014997,0.0155314,-0.0155231,-0.0189752,0.0183944,0.018977, +-0.0151352,0.0156907,-0.0156823,-0.0191699,0.0185646,0.0191717, +-0.0152736,0.0158509,-0.0158422,-0.0193657,0.0187352,0.0193676, +-0.0154125,0.0160121,-0.0160032,-0.0195629,0.0189065,0.0195647, +-0.0155522,0.0161747,-0.0161656,-0.0197616,0.0190786,0.0197634, +-0.0156928,0.0163388,-0.0163293,-0.019962,0.0192518,0.0199639, +-0.0158342,0.0165043,-0.0164944,-0.0201641,0.0194259,0.020166, +-0.0159761,0.0166708,-0.0166606,-0.0203675,0.0196007,0.0203694, +-0.0161182,0.0168382,-0.0168275,-0.0205721,0.0197758,0.020574, +-0.0162604,0.0170063,-0.016995,-0.0207775,0.0199511,0.0207795, +-0.0164028,0.0171752,-0.0171634,-0.0209841,0.0201268,0.020986, +-0.0165458,0.0173452,-0.0173328,-0.021192,0.0203032,0.021194, +-0.0166895,0.0175166,-0.0175035,-0.0214016,0.0204805,0.0214035, +-0.0168341,0.0176894,-0.0176756,-0.0216129,0.0206587,0.0216149, +-0.0169794,0.0178637,-0.017849,-0.0218259,0.0208378,0.0218279, +-0.0171251,0.018039,-0.0180234,-0.0220403,0.0210174,0.0220423, +-0.0172711,0.0182152,-0.0181986,-0.0222558,0.0211974,0.0222578, +-0.0174171,0.018392,-0.0183744,-0.0224723,0.0213775,0.0224743, +-0.0175634,0.0185697,-0.0185509,-0.0226899,0.0215579,0.0226919, +-0.0177102,0.0187485,-0.0187285,-0.022909,0.0217389,0.022911, +-0.0178577,0.0189287,-0.0189073,-0.0231297,0.0219207,0.0231316, +-0.0180061,0.0191103,-0.0190875,-0.0233522,0.0221035,0.0233542, +-0.0181551,0.0192933,-0.019269,-0.0235763,0.0222871,0.0235783, +-0.0183046,0.0194774,-0.0194515,-0.023802,0.0224713,0.0238039, +-0.0184541,0.0196624,-0.0196347,-0.0240288,0.0226557,0.0240307, +-0.0186036,0.019848,-0.0198185,-0.0242566,0.0228403,0.0242585, +-0.0187533,0.0200344,-0.0200031,-0.0244856,0.0230253,0.0244875, +-0.0189033,0.0202219,-0.0201886,-0.024716,0.0232107,0.0247179, +-0.019054,0.0204108,-0.0203754,-0.0249481,0.023397,0.0249499, +-0.0192055,0.0206012,-0.0205636,-0.025182,0.0235842,0.0251839, +-0.0193577,0.0207928,-0.020753,-0.0254177,0.0237722,0.0254195, +-0.0195104,0.0209856,-0.0209434,-0.0256549,0.0239607,0.0256566, +-0.0196634,0.0211792,-0.0211345,-0.0258932,0.0241494,0.025895, +-0.0198164,0.0213734,-0.0213261,-0.0261326,0.0243383,0.0261344, +-0.0199697,0.0215684,-0.0215184,-0.0263732,0.0245273,0.026375, +-0.0201235,0.0217645,-0.0217117,-0.0266153,0.0247169,0.026617, +-0.020278,0.0219619,-0.0219062,-0.0268591,0.0249073,0.0268608, +-0.0204333,0.0221608,-0.0221021,-0.0271047,0.0250985,0.0271065, +-0.0205891,0.022361,-0.0222992,-0.0273522,0.0252905,0.027354, +-0.0207452,0.0225622,-0.0224972,-0.0276011,0.025483,0.0276029, +-0.0209013,0.0227642,-0.0226959,-0.0278513,0.0256757,0.0278531, +-0.0210574,0.0229668,-0.0228951,-0.0281026,0.0258685,0.0281044, +-0.0212138,0.0231702,-0.0230951,-0.0283551,0.0260616,0.028357, +-0.0213707,0.0233746,-0.0232959,-0.0286092,0.0262552,0.028611, +-0.0215284,0.0235803,-0.023498,-0.028865,0.0264495,0.0288668, +-0.0216867,0.0237875,-0.0237014,-0.0291227,0.0266447,0.0291246, +-0.0218455,0.0239959,-0.0239059,-0.0293822,0.0268405,0.0293841, +-0.0220045,0.0242054,-0.0241114,-0.0296433,0.0270368,0.0296452, +-0.0221636,0.0244156,-0.0243174,-0.0299057,0.0272333,0.0299076, +-0.0223227,0.0246264,-0.024524,-0.0301692,0.0274298,0.0301711, +-0.022482,0.0248379,-0.0247312,-0.0304339,0.0276265,0.0304358, +-0.0226419,0.0250505,-0.0249394,-0.0307002,0.0278238,0.0307021, +-0.0228024,0.0252643,-0.0251486,-0.0309683,0.0280218,0.0309703, +-0.0229636,0.0254796,-0.0253592,-0.0312384,0.0282206,0.0312403, +-0.0231252,0.0256961,-0.0255709,-0.0315103,0.0284201,0.0315122, +-0.0232869,0.0259135,-0.0257835,-0.0317838,0.0286199,0.0317857, +-0.0234486,0.0261317,-0.0259967,-0.0320586,0.0288198,0.0320605, +-0.0236104,0.0263505,-0.0262103,-0.0323346,0.0290197,0.0323365, +-0.0237724,0.02657,-0.0264246,-0.0326119,0.02922,0.0326138, +-0.0239349,0.0267904,-0.0266397,-0.0328908,0.0294207,0.0328927, +-0.0240981,0.0270122,-0.026856,-0.0331715,0.0296221,0.0331733, +-0.0242619,0.0272352,-0.0270736,-0.0334542,0.0298243,0.033456, +-0.024426,0.0274595,-0.0272922,-0.0337388,0.0300271,0.0337406, +-0.0245902,0.0276848,-0.0275117,-0.0340249,0.0302301,0.0340268, +-0.0247544,0.0279107,-0.0277318,-0.0343125,0.0304332,0.0343143, +-0.0249186,0.0281372,-0.0279523,-0.0346012,0.0306363,0.034603, +-0.0250831,0.0283643,-0.0281734,-0.0348914,0.0308396,0.0348931, +-0.0252481,0.0285924,-0.0283953,-0.0351831,0.0310435,0.0351848, +-0.0254138,0.0288217,-0.0286183,-0.0354767,0.0312481,0.0354784, +-0.02558,0.0290524,-0.0288426,-0.0357723,0.0314534,0.035774, +-0.0257464,0.0292842,-0.029068,-0.0360698,0.0316591,0.0360714, +-0.0259128,0.029517,-0.0292941,-0.036369,0.031865,0.0363706, +-0.0260793,0.0297504,-0.0295208,-0.0366696,0.0320709,0.0366711, +-0.0262457,0.0299842,-0.0297479,-0.0369713,0.0322768,0.0369729, +-0.0264124,0.0302188,-0.0299756,-0.0372745,0.032483,0.0372761, +-0.0265796,0.0304542,-0.030204,-0.0375793,0.0326896,0.0375809, +-0.0267475,0.0306909,-0.0304335,-0.0378861,0.032897,0.0378877, +-0.0269158,0.0309288,-0.0306643,-0.0381949,0.033105,0.0381965, +-0.0270843,0.0311679,-0.030896,-0.0385056,0.0333135,0.0385072, +-0.0272528,0.0314079,-0.0311286,-0.038818,0.033522,0.0388197, +-0.0274213,0.0316485,-0.0313617,-0.0391319,0.0337306,0.0391335, +-0.0275898,0.0318896,-0.0315952,-0.039447,0.0339393,0.0394486, +-0.0277586,0.0321313,-0.0318292,-0.0397636,0.0341481,0.0397652, +-0.0279279,0.032374,-0.0320639,-0.0400818,0.0343575,0.0400834, +-0.0280978,0.0326177,-0.0322998,-0.040402,0.0345676,0.0404036, +-0.028268,0.0328628,-0.0325368,-0.0407243,0.0347782,0.0407259, +-0.0284384,0.033109,-0.0327748,-0.0410486,0.0349891,0.0410501, +-0.0286088,0.033356,-0.0330135,-0.0413746,0.0352001,0.0413761, +-0.0287791,0.0336036,-0.0332528,-0.0417021,0.035411,0.0417036, +-0.0289495,0.0338517,-0.0334924,-0.0420309,0.035622,0.0420323, +-0.0291202,0.0341004,-0.0337324,-0.0423611,0.0358333,0.0423625, +-0.0292913,0.0343499,-0.0339732,-0.0426931,0.036045,0.0426945, +-0.029463,0.0346005,-0.0342151,-0.0430271,0.0362574,0.0430284, +-0.0296349,0.0348524,-0.034458,-0.0433632,0.0364703,0.0433645, +-0.0298069,0.0351053,-0.034702,-0.0437013,0.0366833,0.0437026, +-0.0299789,0.0353591,-0.0349466,-0.0440411,0.0368964,0.0440425, +-0.0301508,0.0356135,-0.0351918,-0.0443825,0.0371094,0.0443838, +-0.0303228,0.0358682,-0.0354373,-0.0447252,0.0373225,0.0447265, +-0.0304951,0.0361235,-0.0356832,-0.0450694,0.0375359,0.0450708, +-0.0306678,0.0363797,-0.0359298,-0.0454154,0.0377497,0.0454167, +-0.030841,0.0366369,-0.0361775,-0.0457633,0.0379641,0.0457647, +-0.0310144,0.0368953,-0.0364262,-0.0461135,0.038179,0.0461149, +-0.0311879,0.0371548,-0.0366759,-0.0464657,0.0383939,0.0464671, +-0.0313613,0.0374151,-0.0369263,-0.0468197,0.0386089,0.0468211, +-0.0315347,0.037676,-0.0371772,-0.0471752,0.0388239,0.0471767, +-0.0317081,0.0379372,-0.0374282,-0.0475321,0.0390389,0.0475336, +-0.0318818,0.038199,-0.0376798,-0.0478906,0.0392541,0.0478921, +-0.032056,0.0384615,-0.037932,-0.0482508,0.0394698,0.0482524, +-0.0322305,0.0387252,-0.0381852,-0.0486131,0.0396861,0.0486147, +-0.0324052,0.03899,-0.0384394,-0.0489776,0.0399026,0.0489792, +-0.0325798,0.0392559,-0.0386946,-0.0493443,0.0401192,0.0493459, +-0.0327544,0.0395225,-0.0389504,-0.0497127,0.0403358,0.0497143, +-0.0329291,0.0397896,-0.0392067,-0.0500827,0.0405523,0.0500844, +-0.0331037,0.0400571,-0.0394632,-0.0504542,0.0407689,0.0504558, +-0.0332786,0.0403251,-0.0397201,-0.0508272,0.0409857,0.0508289, +-0.033454,0.0405938,-0.0399776,-0.051202,0.0412031,0.0512037, +-0.0336296,0.0408636,-0.0402361,-0.0515789,0.0414208,0.0515807, +-0.0338053,0.0411345,-0.0404957,-0.0519581,0.0416388,0.0519599, +-0.033981,0.0414064,-0.0407561,-0.0523395,0.0418568,0.0523412, +-0.0341567,0.0416791,-0.0410172,-0.0527226,0.0420748,0.0527244, +-0.0343324,0.0419522,-0.0412787,-0.0531074,0.0422928,0.0531092, +-0.0345081,0.0422257,-0.0415403,-0.0534937,0.0425108,0.0534954, +-0.0346841,0.0424997,-0.0418024,-0.0538815,0.0427291,0.0538833, +-0.0348604,0.0427744,-0.0420652,-0.0542712,0.0429479,0.054273, +-0.035037,0.0430501,-0.0423288,-0.0546631,0.043167,0.0546649, +-0.0352135,0.0433269,-0.0425934,-0.0550572,0.0433861,0.055059, +-0.03539,0.0436047,-0.042859,-0.0554535,0.0436053,0.0554553, +-0.0355665,0.0438833,-0.0431251,-0.0558517,0.0438245,0.0558535, +-0.035743,0.0441623,-0.0433916,-0.0562515,0.0440436,0.0562534, +-0.0359195,0.0444416,-0.0436583,-0.0566528,0.0442627,0.0566547, +-0.0360963,0.0447213,-0.0439254,-0.0570558,0.0444821,0.0570577, +-0.0362734,0.0450018,-0.044193,-0.0574607,0.044702,0.0574625, +-0.0364507,0.0452833,-0.0444615,-0.0578677,0.0449221,0.0578696, +-0.0366279,0.0455659,-0.0447311,-0.058277,0.0451423,0.0582789, +-0.0368052,0.0458495,-0.0450015,-0.0586885,0.0453624,0.0586904, +-0.0369824,0.0461337,-0.0452725,-0.059102,0.0455826,0.0591039, +-0.0371597,0.0464184,-0.0455439,-0.0595171,0.0458028,0.059519, +-0.037337,0.0467034,-0.0458154,-0.0599338,0.046023,0.0599357, +-0.0375145,0.0469888,-0.0460874,-0.0603521,0.0462435,0.060354, +-0.0376923,0.047275,-0.0463599,-0.0607724,0.0464643,0.0607742, +-0.0378702,0.047562,-0.0466332,-0.0611948,0.0466853,0.0611966, +-0.0380481,0.0478502,-0.0469076,-0.0616196,0.0469063,0.0616214, +-0.038226,0.0481394,-0.0471828,-0.0620466,0.0471274,0.0620484, +-0.0384038,0.0484292,-0.0474586,-0.0624756,0.0473484,0.0624773, +-0.0385816,0.0487194,-0.0477347,-0.0629063,0.0475693,0.062908, +-0.0387595,0.0490099,-0.048011,-0.0633385,0.0477903,0.0633402, +-0.0389376,0.0493009,-0.0482876,-0.0637725,0.0480115,0.0637741, +-0.039116,0.0495925,-0.0485648,-0.0642083,0.0482331,0.0642099, +-0.0392944,0.0498851,-0.0488428,-0.0646464,0.0484549,0.064648, +-0.0394728,0.0501788,-0.0491218,-0.0650869,0.0486767,0.0650885, +-0.0396513,0.0504733,-0.0494016,-0.0655296,0.0488985,0.0655312, +-0.0398297,0.0507686,-0.049682,-0.0659743,0.0491203,0.0659759, +-0.0400082,0.0510643,-0.0499627,-0.0664208,0.0493421,0.0664223, +-0.0401867,0.0513602,-0.0502435,-0.0668687,0.0495639,0.0668702, +-0.0403654,0.0516565,-0.0505246,-0.0673185,0.049786,0.06732, +-0.0405443,0.0519535,-0.0508063,-0.0677702,0.0500083,0.0677717, +-0.0407233,0.0522514,-0.0510888,-0.0682241,0.0502308,0.0682256, +-0.0409023,0.0525503,-0.0513723,-0.0686804,0.0504533,0.068682, +-0.0410812,0.0528502,-0.0516565,-0.069139,0.0506757,0.0691406, +-0.0412602,0.0531507,-0.0519413,-0.0695996,0.0508982,0.0696012, +-0.0414392,0.0534516,-0.0522264,-0.070062,0.0511207,0.0700636, +-0.0416182,0.0537527,-0.0525117,-0.0705259,0.0513432,0.0705275, +-0.0417975,0.0540542,-0.0527972,-0.0709916,0.0515659,0.0709932, +-0.0419769,0.0543564,-0.0530833,-0.0714594,0.0517889,0.071461, +-0.0421563,0.0546595,-0.0533702,-0.0719293,0.052012,0.0719309, +-0.0423358,0.0549636,-0.053658,-0.0724017,0.0522351,0.0724034, +-0.0425152,0.0552686,-0.0539466,-0.0728764,0.0524582,0.0728781, +-0.0426947,0.0555742,-0.0542357,-0.0733531,0.0526813,0.0733548, +-0.0428741,0.0558802,-0.0545251,-0.0738316,0.0529044,0.0738333, +-0.0430536,0.0561865,-0.0548146,-0.0743117,0.0531275,0.0743134, +-0.0432333,0.0564931,-0.0551043,-0.0747936,0.0533509,0.0747953, +-0.0434132,0.0568003,-0.0553946,-0.0752775,0.0535745,0.0752792, +-0.0435932,0.0571085,-0.0556856,-0.0757637,0.0537982,0.0757654, +-0.0437731,0.0574176,-0.0559776,-0.0762523,0.0540219,0.076254, +-0.043953,0.0577276,-0.0562704,-0.0767432,0.0542456,0.076745, +-0.0441329,0.0580382,-0.0565636,-0.0772362,0.0544692,0.077238, +-0.0443129,0.0583492,-0.0568571,-0.077731,0.0546929,0.0777327, +-0.0444928,0.0586603,-0.0571506,-0.0782274,0.0549166,0.0782292, +-0.044673,0.0589718,-0.0574444,-0.0787255,0.0551406,0.0787273, +-0.0448534,0.0592838,-0.0577388,-0.0792258,0.0553648,0.0792276, +-0.0450337,0.0595967,-0.0580338,-0.0797283,0.0555891,0.0797301, +-0.0452141,0.0599106,-0.0583298,-0.0802333,0.0558133,0.0802351, +-0.0453945,0.0602254,-0.0586265,-0.0807406,0.0560375,0.0807425, +-0.0455748,0.0605407,-0.0589237,-0.08125,0.0562618,0.0812518, +-0.0457552,0.0608564,-0.0592211,-0.0817611,0.056486,0.081763, +-0.0459355,0.0611723,-0.0595186,-0.0822739,0.0567103,0.0822759, +-0.0461161,0.0614885,-0.0598162,-0.0827885,0.0569347,0.0827905, +-0.0462969,0.0618053,-0.0601144,-0.0833052,0.0571595,0.0833072, +-0.0464777,0.062123,-0.0604133,-0.0838241,0.0573843,0.0838262, +-0.0466585,0.0624416,-0.0607131,-0.0843455,0.0576091,0.0843477, +-0.0468393,0.0627611,-0.0610136,-0.0848692,0.0578338,0.0848715, +-0.0470201,0.0630811,-0.0613145,-0.085395,0.0580586,0.0853974, +-0.0472009,0.0634014,-0.0616156,-0.0859226,0.0582834,0.0859251, +-0.0473818,0.0637218,-0.0619168,-0.0864518,0.0585083,0.0864545, +-0.0475628,0.0640425,-0.0622183,-0.0869827,0.0587333,0.0869857, +-0.047744,0.0643638,-0.0625202,-0.0875158,0.0589586,0.087519, +-0.0479253,0.0646859,-0.0628229,-0.0880511,0.0591839,0.0880546, +-0.0481065,0.0650089,-0.0631265,-0.0885889,0.0594092,0.0885927, +-0.0482877,0.0653327,-0.0634306,-0.089129,0.0596345,0.0891331, +-0.0484689,0.0656571,-0.0637352,-0.0896711,0.0598598,0.0896756, +-0.0486501,0.0659818,-0.0640399,-0.090215,0.0600851,0.09022, +-0.0488313,0.0663066,-0.0643445,-0.0907605,0.0603103,0.090766, +-0.0490128,0.0666317,-0.0646493,-0.0913078,0.0605359,0.0913138, +-0.0491944,0.0669573,-0.0649545,-0.0918571,0.0607617,0.0918637, +-0.049376,0.0672838,-0.0652603,-0.0924088,0.0609875,0.092416, +-0.0495576,0.0676112,-0.0655669,-0.0929628,0.0612133,0.0929708, +-0.0497393,0.0679393,-0.0658743,-0.0935192,0.0614391,0.0935279, +-0.0499209,0.0682679,-0.0661821,-0.0940775,0.061665,0.0940871, +-0.0501025,0.0685968,-0.0664901,-0.0946377,0.0618908,0.0946482, +-0.0502842,0.0689257,-0.0667982,-0.0951994,0.0621167,0.0952109, +-0.0504661,0.0692549,-0.0671066,-0.0957629,0.0623428,0.0957755, +-0.0506481,0.0695846,-0.0674154,-0.0963284,0.0625691,0.0963422, +-0.0508302,0.0699151,-0.0677251,-0.0968962,0.0627954,0.0969112, +-0.0510122,0.0702465,-0.0680354,-0.0974664,0.0630217,0.0974828, +-0.0511942,0.0705786,-0.0683463,-0.0980388,0.0632481,0.0980567, +-0.0513763,0.0709112,-0.0686574,-0.0986132,0.0634744,0.0986327, +-0.0515583,0.071244,-0.0689686,-0.0991894,0.0637007,0.0992105, +-0.0517404,0.0715769,-0.0692798,-0.0997671,0.0639271,0.0997901, +-0.0519227,0.0719101,-0.0695912,-0.100347,0.0641537,0.100371, +-0.0521051,0.0722438,-0.0699032,-0.100928,0.0643805,0.100955, +-0.0522875,0.0725782,-0.0702159,-0.101512,0.0646073,0.101541, +-0.0524699,0.0729135,-0.0705293,-0.102098,0.0648341,0.102129, +-0.0526523,0.0732495,-0.0708432,-0.102686,0.0650609,0.10272, +-0.0528347,0.0735859,-0.0711572,-0.103276,0.0652877,0.103313, +-0.0530171,0.0739226,-0.0714713,-0.103868,0.0655145,0.103908, +-0.0531996,0.0742592,-0.0717855,-0.104462,0.0657413,0.104504, +-0.0533822,0.0745962,-0.0720998,-0.105057,0.0659684,0.105102, +-0.053565,0.0749336,-0.0724147,-0.105654,0.0661956,0.105703, +-0.0537478,0.0752718,-0.0727303,-0.106253,0.0664229,0.106305, +-0.0539306,0.0756109,-0.0730466,-0.106855,0.0666502,0.106911, +-0.0541134,0.0759505,-0.0733632,-0.107459,0.0668774,0.107518, +-0.0542962,0.0762906,-0.07368,-0.108065,0.0671047,0.108128, +-0.0544789,0.0766308,-0.0739967,-0.108672,0.0673319,0.10874, +-0.0546617,0.0769709,-0.0743135,-0.109281,0.0675591,0.109353, +-0.0548447,0.0773111,-0.0746304,-0.109892,0.0677866,0.109968, +-0.0550279,0.0776518,-0.0749479,-0.110504,0.0680143,0.110586, +-0.0552111,0.0779931,-0.0752661,-0.111119,0.068242,0.111205, +-0.0553942,0.0783352,-0.0755849,-0.111736,0.0684698,0.111827, +-0.0555774,0.078678,-0.0759041,-0.112356,0.0686975,0.112452, +-0.0557605,0.0790213,-0.0762234,-0.112977,0.0689252,0.113079, +-0.0559437,0.0793648,-0.0765426,-0.1136,0.0691529,0.113707, +-0.0561269,0.0797084,-0.0768619,-0.114224,0.0693806,0.114338, +-0.0563103,0.0800522,-0.0771814,-0.11485,0.0696086,0.11497, +-0.0564938,0.0803965,-0.0775014,-0.115477,0.0698368,0.115604, +-0.0566773,0.0807415,-0.0778221,-0.116107,0.0700649,0.116241, +-0.0568608,0.0810873,-0.0781434,-0.11674,0.0702931,0.11688, +-0.0570444,0.0814336,-0.0784649,-0.117374,0.0705213,0.117522, +-0.0572278,0.0817802,-0.0787864,-0.11801,0.0707494,0.118166, +-0.0574113,0.0821268,-0.0791079,-0.118648,0.0709776,0.118811, +-0.0575949,0.0824735,-0.0794294,-0.119287,0.0712057,0.119458, +-0.0577786,0.0828204,-0.0797512,-0.119928,0.0714342,0.120108, +-0.0579625,0.0831677,-0.0800735,-0.120571,0.0716627,0.120759, +-0.0581464,0.0835158,-0.0803964,-0.121216,0.0718914,0.121413, +-0.0583303,0.0838647,-0.0807198,-0.121863,0.07212,0.122069, +-0.0585141,0.084214,-0.0810434,-0.122512,0.0723486,0.122728, +-0.058698,0.0845635,-0.0813669,-0.123163,0.0725771,0.123388, +-0.0588818,0.084913,-0.0816904,-0.123815,0.0728057,0.124051, +-0.0590657,0.0852624,-0.082014,-0.124469,0.0730343,0.124716, +-0.0592498,0.0856122,-0.0823378,-0.125125,0.0732631,0.125382, +-0.059434,0.0859624,-0.0826621,-0.125782,0.0734921,0.12605, +-0.0596182,0.0863133,-0.082987,-0.126441,0.0737212,0.126721, +-0.0598024,0.0866649,-0.0833123,-0.127103,0.0739502,0.127394, +-0.0599866,0.0870169,-0.0836377,-0.127767,0.0741792,0.12807, +-0.0601708,0.0873691,-0.0839631,-0.128432,0.0744082,0.128748, +-0.060355,0.0877212,-0.0842885,-0.129099,0.0746371,0.129428, +-0.0605392,0.0880734,-0.0846139,-0.129767,0.0748662,0.130109, +-0.0607236,0.0884258,-0.0849395,-0.130437,0.0750954,0.130793, +-0.0609082,0.0887787,-0.0852657,-0.131109,0.0753249,0.131478, +-0.0610927,0.0891323,-0.0855924,-0.131783,0.0755543,0.132166, +-0.0612773,0.0894865,-0.0859193,-0.132458,0.0757838,0.132857, +-0.0614618,0.0898411,-0.0862464,-0.133136,0.0760132,0.133549, +-0.0616464,0.0901957,-0.0865734,-0.133816,0.0762427,0.134244, +-0.0618309,0.0905503,-0.0869005,-0.134497,0.0764721,0.134941, +-0.0620155,0.090905,-0.0872275,-0.135179,0.0767016,0.13564, +-0.0622003,0.0912599,-0.0875549,-0.135863,0.0769313,0.13634, +-0.0623852,0.0916153,-0.0878827,-0.136549,0.0771612,0.137043, +-0.06257,0.0919714,-0.0882109,-0.137237,0.077391,0.137748, +-0.0627549,0.092328,-0.0885394,-0.137926,0.0776208,0.138456, +-0.0629398,0.0926847,-0.0888678,-0.138618,0.0778507,0.139166, +-0.0631246,0.0930415,-0.0891962,-0.139312,0.0780805,0.139878, +-0.0633095,0.0933982,-0.0895246,-0.140007,0.0783103,0.140592, +-0.0634943,0.093755,-0.089853,-0.140703,0.0785401,0.141308, +-0.0636794,0.094112,-0.0901817,-0.1414,0.0787702,0.142025, +-0.0638646,0.0944695,-0.0905108,-0.1421,0.0790004,0.142745, +-0.0640498,0.0948277,-0.0908404,-0.142801,0.0792306,0.143467, +-0.064235,0.0951863,-0.0911701,-0.143505,0.0794608,0.144192, +-0.0644201,0.0955451,-0.0914998,-0.14421,0.0796911,0.144919, +-0.0646053,0.0959038,-0.0918295,-0.144917,0.0799213,0.145649, +-0.0647905,0.0962626,-0.0921593,-0.145625,0.0801515,0.14638, +-0.0649757,0.0966215,-0.092489,-0.146335,0.0803818,0.147113, +-0.0651611,0.0969806,-0.092819,-0.147046,0.0806123,0.147848, +-0.0653466,0.0973402,-0.0931495,-0.147759,0.0808429,0.148585, +-0.0655321,0.0977003,-0.0934803,-0.148474,0.0810735,0.149324, +-0.0657176,0.0980607,-0.0938111,-0.149191,0.0813041,0.150066, +-0.0659031,0.0984212,-0.094142,-0.149909,0.0815347,0.150811, +-0.0660886,0.0987817,-0.0944728,-0.150629,0.0817652,0.151557, +-0.066274,0.0991421,-0.0948036,-0.151351,0.0819958,0.152306, +-0.0664595,0.0995026,-0.0951344,-0.152074,0.0822264,0.153056, +-0.0666452,0.0998634,-0.0954655,-0.152798,0.0824572,0.153808, +-0.066831,0.100225,-0.095797,-0.153524,0.0826882,0.154562, +-0.0670168,0.100586,-0.0961288,-0.154252,0.0829192,0.155319, +-0.0672026,0.100948,-0.0964607,-0.154982,0.0831501,0.156078, +-0.0673884,0.10131,-0.0967926,-0.155713,0.0833811,0.156839, +-0.0675742,0.101672,-0.0971245,-0.156446,0.0836121,0.157603, +-0.06776,0.102035,-0.0974564,-0.157181,0.083843,0.158369, +-0.0679458,0.102397,-0.0977884,-0.157917,0.084074,0.159136, +-0.0681318,0.102759,-0.0981206,-0.158654,0.0843053,0.159905, +-0.0683179,0.103122,-0.0984532,-0.159392,0.0845366,0.160677, +-0.068504,0.103485,-0.098786,-0.160133,0.0847679,0.161451, +-0.06869,0.103849,-0.0991188,-0.160875,0.0849992,0.162227, +-0.0688761,0.104212,-0.0994516,-0.16162,0.0852305,0.163006, +-0.0690621,0.104575,-0.0997844,-0.162366,0.0854618,0.163787, +-0.0692482,0.104939,-0.100117,-0.163113,0.0856931,0.16457, +-0.0694342,0.105302,-0.10045,-0.163861,0.0859244,0.165355, +-0.0696205,0.105666,-0.100783,-0.164611,0.0861559,0.166141, +-0.0698069,0.10603,-0.101116,-0.165362,0.0863875,0.16693, +-0.0699932,0.106394,-0.10145,-0.166115,0.0866192,0.167721, +-0.0701796,0.106759,-0.101784,-0.16687,0.0868509,0.168515, +-0.0703659,0.107123,-0.102117,-0.167626,0.0870825,0.169311, +-0.0705523,0.107488,-0.102451,-0.168384,0.0873142,0.170109, +-0.0707386,0.107853,-0.102785,-0.169144,0.0875458,0.170909, +-0.070925,0.108217,-0.103118,-0.169904,0.0877775,0.171711, +-0.0711116,0.108582,-0.103452,-0.170666,0.0880094,0.172515, +-0.0712982,0.108948,-0.103787,-0.171429,0.0882414,0.173321, +-0.0714848,0.109313,-0.104121,-0.172194,0.0884734,0.174129, +-0.0716715,0.109679,-0.104456,-0.172961,0.0887054,0.17494, +-0.0718581,0.110045,-0.10479,-0.17373,0.0889374,0.175753, +-0.0720447,0.110411,-0.105124,-0.1745,0.0891694,0.176569, +-0.0722313,0.110776,-0.105459,-0.175272,0.0894013,0.177386, +-0.072418,0.111142,-0.105793,-0.176044,0.0896334,0.178206, +-0.0726048,0.111508,-0.106128,-0.176818,0.0898656,0.179027, +-0.0727917,0.111875,-0.106463,-0.177593,0.090098,0.17985, +-0.0729786,0.112241,-0.106799,-0.17837,0.0903303,0.180676, +-0.0731655,0.112608,-0.107134,-0.179148,0.0905626,0.181504, +-0.0733524,0.112975,-0.107469,-0.179929,0.0907949,0.182335, +-0.0735393,0.113342,-0.107804,-0.180711,0.0910273,0.183167, +-0.0737262,0.113708,-0.108139,-0.181494,0.0912596,0.184002, +-0.0739131,0.114075,-0.108475,-0.182278,0.091492,0.184839, +-0.0741002,0.114442,-0.10881,-0.183063,0.0917245,0.185677, +-0.0742874,0.11481,-0.109146,-0.18385,0.0919572,0.186518, +-0.0744745,0.115177,-0.109482,-0.184638,0.0921898,0.187361, +-0.0746617,0.115545,-0.109818,-0.185428,0.0924225,0.188206, +-0.0748488,0.115913,-0.110154,-0.18622,0.0926551,0.189054, +-0.075036,0.11628,-0.110489,-0.187013,0.0928877,0.189904, +-0.0752231,0.116648,-0.110825,-0.187808,0.0931204,0.190756, +-0.0754103,0.117016,-0.111161,-0.188603,0.0933531,0.19161, +-0.0755977,0.117384,-0.111497,-0.1894,0.0935859,0.192466, +-0.0757851,0.117752,-0.111834,-0.190198,0.0938189,0.193324, +-0.0759725,0.118121,-0.11217,-0.190997,0.0940518,0.194184, +-0.0761599,0.118489,-0.112507,-0.191798,0.0942848,0.195047, +-0.0763473,0.118858,-0.112843,-0.192601,0.0945177,0.195912, +-0.0765347,0.119226,-0.11318,-0.193406,0.0947507,0.19678, +-0.0767221,0.119594,-0.113516,-0.194211,0.0949836,0.197649, +-0.0769095,0.119963,-0.113853,-0.195017,0.0952166,0.19852, +-0.0770971,0.120332,-0.11419,-0.195825,0.0954497,0.199393, +-0.0772847,0.120701,-0.114527,-0.196634,0.095683,0.200269, +-0.0774724,0.12107,-0.114864,-0.197444,0.0959162,0.201146, +-0.0776601,0.121439,-0.115201,-0.198256,0.0961495,0.202027, +-0.0778477,0.121809,-0.115538,-0.19907,0.0963827,0.202909, +-0.0780354,0.122178,-0.115875,-0.199885,0.096616,0.203794, +-0.078223,0.122547,-0.116212,-0.200701,0.0968492,0.204681, +-0.0784107,0.122917,-0.116549,-0.201518,0.0970825,0.205569, +-0.0785985,0.123286,-0.116887,-0.202336,0.0973159,0.20646, +-0.0787864,0.123656,-0.117224,-0.203156,0.0975495,0.207352, +-0.0789743,0.124026,-0.117562,-0.203977,0.0977831,0.208247, +-0.0791622,0.124396,-0.1179,-0.204799,0.0980166,0.209145, +-0.0793501,0.124766,-0.118237,-0.205623,0.0982502,0.210045, +-0.079538,0.125136,-0.118575,-0.206449,0.0984837,0.210947, +-0.0797259,0.125506,-0.118913,-0.207275,0.0987173,0.211851, +-0.0799138,0.125876,-0.119251,-0.208103,0.0989509,0.212757, +-0.0801019,0.126246,-0.119589,-0.208931,0.0991847,0.213665, +-0.08029,0.126617,-0.119927,-0.209761,0.0994185,0.214575, +-0.0804781,0.126988,-0.120265,-0.210592,0.0996524,0.215487, +-0.0806663,0.127358,-0.120603,-0.211425,0.0998862,0.216402, +-0.0808544,0.127729,-0.120941,-0.212259,0.10012,0.21732, +-0.0810425,0.1281,-0.12128,-0.213095,0.100354,0.218239, +-0.0812306,0.12847,-0.121618,-0.213932,0.100588,0.219161, +-0.0814188,0.128841,-0.121956,-0.214769,0.100822,0.220084, +-0.0816071,0.129212,-0.122295,-0.215608,0.101056,0.221009, +-0.0817955,0.129583,-0.122633,-0.216447,0.10129,0.221936, +-0.0819838,0.129955,-0.122972,-0.217288,0.101524,0.222866, +-0.0821722,0.130326,-0.123311,-0.218131,0.101758,0.223798, +-0.0823606,0.130697,-0.12365,-0.218975,0.101992,0.224733, +-0.0825489,0.131069,-0.123988,-0.219821,0.102226,0.22567, +-0.0827373,0.13144,-0.124327,-0.220667,0.10246,0.226609, +-0.0829257,0.131811,-0.124666,-0.221514,0.102695,0.22755, +-0.0831142,0.132183,-0.125005,-0.222363,0.102929,0.228492, +-0.0833028,0.132555,-0.125344,-0.223212,0.103163,0.229437, +-0.0834914,0.132927,-0.125683,-0.224063,0.103398,0.230384, +-0.08368,0.133299,-0.126022,-0.224915,0.103632,0.231334, +-0.0838685,0.133671,-0.126362,-0.225769,0.103866,0.232286, +-0.0840571,0.134042,-0.126701,-0.226624,0.104101,0.233241, +-0.0842457,0.134414,-0.12704,-0.227479,0.104335,0.234197, +-0.0844343,0.134786,-0.127379,-0.228336,0.10457,0.235155, +-0.0846231,0.135159,-0.127719,-0.229194,0.104804,0.236115, +-0.0848119,0.135531,-0.128058,-0.230052,0.105039,0.237077, +-0.0850007,0.135903,-0.128398,-0.230912,0.105274,0.238042, +-0.0851895,0.136276,-0.128738,-0.231774,0.105508,0.239009, +-0.0853783,0.136648,-0.129078,-0.232637,0.105743,0.239978, +-0.085567,0.137021,-0.129417,-0.233501,0.105978,0.24095, +-0.0857558,0.137393,-0.129757,-0.234366,0.106212,0.241924, +-0.0859446,0.137766,-0.130097,-0.235232,0.106447,0.242899, +-0.0861336,0.138139,-0.130436,-0.236098,0.106682,0.243877, +-0.0863226,0.138512,-0.130777,-0.236966,0.106917,0.244856, +-0.0865116,0.138885,-0.131117,-0.237835,0.107152,0.245838, +-0.0867006,0.139258,-0.131457,-0.238706,0.107387,0.246823, +-0.0868896,0.139631,-0.131797,-0.239577,0.107621,0.24781, +-0.0870786,0.140004,-0.132137,-0.24045,0.107856,0.248799, +-0.0872676,0.140377,-0.132477,-0.241324,0.108091,0.249791, +-0.0874566,0.14075,-0.132817,-0.242199,0.108326,0.250783, +-0.0876458,0.141123,-0.133158,-0.243074,0.108561,0.251778, +-0.087835,0.141496,-0.133498,-0.24395,0.108796,0.252775, +-0.0880242,0.14187,-0.133839,-0.244828,0.109032,0.253775, +-0.0882134,0.142243,-0.134179,-0.245707,0.109267,0.254777, +-0.0884027,0.142617,-0.13452,-0.246588,0.109502,0.255781, +-0.0885919,0.14299,-0.13486,-0.247469,0.109737,0.256788, +-0.0887811,0.143364,-0.135201,-0.248352,0.109972,0.257797, +-0.0889703,0.143737,-0.135541,-0.249235,0.110207,0.258807, +-0.0891597,0.144111,-0.135882,-0.250119,0.110443,0.259819, +-0.0893491,0.144485,-0.136223,-0.251003,0.110678,0.260834, +-0.0895385,0.144859,-0.136564,-0.251889,0.110914,0.261851, +-0.089728,0.145233,-0.136905,-0.252777,0.111149,0.26287, +-0.0899174,0.145607,-0.137246,-0.253666,0.111385,0.263892, +-0.0901068,0.145981,-0.137587,-0.254556,0.11162,0.264916, +-0.0902962,0.146355,-0.137928,-0.255446,0.111855,0.265942, +-0.0904857,0.146729,-0.138269,-0.256337,0.112091,0.26697, +-0.0906753,0.147104,-0.13861,-0.257229,0.112326,0.268, +-0.0908649,0.147478,-0.138952,-0.258122,0.112562,0.269032, +-0.0910545,0.147853,-0.139293,-0.259016,0.112798,0.270066, +-0.0912441,0.148227,-0.139634,-0.259912,0.113033,0.271103, +-0.0914337,0.148602,-0.139976,-0.260809,0.113269,0.272143, +-0.0916233,0.148976,-0.140317,-0.261706,0.113505,0.273184, +-0.0918129,0.14935,-0.140658,-0.262605,0.11374,0.274228, +-0.0920026,0.149725,-0.141,-0.263504,0.113976,0.275273, +-0.0921924,0.1501,-0.141341,-0.264404,0.114212,0.276321, +-0.0923822,0.150475,-0.141683,-0.265304,0.114448,0.27737, +-0.092572,0.150849,-0.142025,-0.266206,0.114684,0.278422, +-0.0927618,0.151224,-0.142366,-0.267109,0.11492,0.279476, +-0.0929516,0.151599,-0.142708,-0.268014,0.115156,0.280533, +-0.0931414,0.151974,-0.14305,-0.268919,0.115391,0.281592, +-0.0933312,0.152349,-0.143392,-0.269825,0.115627,0.282653, +-0.0935211,0.152724,-0.143733,-0.270732,0.115863,0.283716, +-0.0937111,0.153099,-0.144075,-0.271639,0.116099,0.284781, +-0.0939011,0.153475,-0.144417,-0.272547,0.116336,0.285848, +-0.0940911,0.15385,-0.14476,-0.273457,0.116572,0.286917, +-0.094281,0.154225,-0.145102,-0.274367,0.116808,0.287989, +-0.094471,0.154601,-0.145444,-0.275279,0.117044,0.289064, +-0.094661,0.154976,-0.145786,-0.276192,0.11728,0.29014, +-0.094851,0.155351,-0.146128,-0.277105,0.117516,0.291219, +-0.095041,0.155727,-0.14647,-0.278019,0.117752,0.292299, +-0.0952312,0.156102,-0.146812,-0.278934,0.117989,0.293381, +-0.0954214,0.156478,-0.147155,-0.279849,0.118225,0.294466, +-0.0956115,0.156854,-0.147497,-0.280765,0.118461,0.295553, +-0.0958017,0.15723,-0.14784,-0.281683,0.118698,0.296642, +-0.0959919,0.157605,-0.148182,-0.282602,0.118934,0.297734, +-0.0961821,0.157981,-0.148525,-0.283522,0.11917,0.298828, +-0.0963723,0.158357,-0.148867,-0.284442,0.119407,0.299924, +-0.0965625,0.158733,-0.14921,-0.285363,0.119643,0.301022, +-0.0967529,0.159109,-0.149552,-0.286284,0.11988,0.302122, +-0.0969432,0.159485,-0.149895,-0.287206,0.120116,0.303224, +-0.0971336,0.159861,-0.150238,-0.28813,0.120353,0.304328, +-0.097324,0.160237,-0.150581,-0.289054,0.120589,0.305435, +-0.0975144,0.160613,-0.150924,-0.28998,0.120826,0.306545, +-0.0977047,0.160989,-0.151266,-0.290906,0.121063,0.307657, +-0.0978951,0.161366,-0.151609,-0.291833,0.121299,0.30877, +-0.0980855,0.161742,-0.151952,-0.292761,0.121536,0.309886, +-0.098276,0.162118,-0.152295,-0.293689,0.121773,0.311003, +-0.0984665,0.162495,-0.152638,-0.294617,0.122009,0.312122, +-0.0986571,0.162871,-0.152981,-0.295547,0.122246,0.313244, +-0.0988476,0.163248,-0.153325,-0.296478,0.122483,0.314369, +-0.0990382,0.163624,-0.153668,-0.29741,0.12272,0.315496, +-0.0992287,0.164001,-0.154011,-0.298343,0.122957,0.316625, +-0.0994192,0.164377,-0.154354,-0.299277,0.123193,0.317756, +-0.0996098,0.164754,-0.154697,-0.30021,0.12343,0.318889, +-0.0998005,0.165131,-0.15504,-0.301145,0.123667,0.320024, +-0.0999913,0.165508,-0.155384,-0.30208,0.123904,0.321161, +-0.100182,0.165885,-0.155728,-0.303016,0.124141,0.322301, +-0.100373,0.166262,-0.156071,-0.303953,0.124378,0.323443, +-0.100563,0.166639,-0.156415,-0.304891,0.124615,0.324587, +-0.100754,0.167016,-0.156758,-0.30583,0.124852,0.325734, +-0.100945,0.167393,-0.157102,-0.30677,0.125089,0.326883, +-0.101136,0.16777,-0.157445,-0.30771,0.125327,0.328033, +-0.101327,0.168147,-0.157789,-0.30865,0.125564,0.329185, +-0.101518,0.168524,-0.158133,-0.309591,0.125801,0.33034, +-0.101709,0.168902,-0.158477,-0.310533,0.126038,0.331497, +-0.101899,0.169279,-0.158821,-0.311477,0.126276,0.332657, +-0.10209,0.169656,-0.159164,-0.312421,0.126513,0.333819, +-0.102281,0.170034,-0.159508,-0.313366,0.12675,0.334983, +-0.102472,0.170411,-0.159852,-0.314312,0.126988,0.336149, +-0.102663,0.170788,-0.160196,-0.315257,0.127225,0.337317, +-0.102854,0.171166,-0.16054,-0.316204,0.127462,0.338487, +-0.103045,0.171544,-0.160885,-0.317151,0.1277,0.339659, +-0.103237,0.171922,-0.161229,-0.318099,0.127937,0.340834, +-0.103428,0.172299,-0.161573,-0.319048,0.128175,0.342011, +-0.103619,0.172677,-0.161917,-0.319998,0.128412,0.343191, +-0.10381,0.173055,-0.162262,-0.320949,0.12865,0.344372, +-0.104001,0.173433,-0.162606,-0.3219,0.128887,0.345556, +-0.104192,0.173811,-0.16295,-0.322852,0.129125,0.346742, +-0.104384,0.174189,-0.163295,-0.323804,0.129363,0.347929, +-0.104575,0.174567,-0.163639,-0.324756,0.129601,0.349119, +-0.104766,0.174945,-0.163984,-0.32571,0.129838,0.350311, +-0.104958,0.175323,-0.164329,-0.326665,0.130076,0.351506, +-0.105149,0.175702,-0.164673,-0.327621,0.130314,0.352703, +-0.10534,0.17608,-0.165018,-0.328577,0.130552,0.353902, +-0.105532,0.176458,-0.165362,-0.329534,0.13079,0.355103, +-0.105723,0.176836,-0.165707,-0.330491,0.131027,0.356306, +-0.105915,0.177215,-0.166052,-0.331448,0.131265,0.357511, +-0.106106,0.177594,-0.166397,-0.332407,0.131503,0.358718, +-0.106298,0.177972,-0.166742,-0.333366,0.131742,0.359928, +-0.106489,0.178351,-0.167087,-0.334326,0.13198,0.36114, +-0.106681,0.17873,-0.167432,-0.335287,0.132218,0.362354, +-0.106872,0.179109,-0.167778,-0.336249,0.132456,0.363571, +-0.107064,0.179488,-0.168123,-0.337211,0.132694,0.36479, +-0.107256,0.179866,-0.168468,-0.338173,0.132932,0.36601, +-0.107447,0.180245,-0.168813,-0.339136,0.13317,0.367233, +-0.107639,0.180625,-0.169159,-0.3401,0.133409,0.368457, +-0.107831,0.181004,-0.169504,-0.341064,0.133647,0.369684, +-0.108023,0.181383,-0.16985,-0.34203,0.133886,0.370914, +-0.108215,0.181762,-0.170196,-0.342996,0.134124,0.372146, +-0.108407,0.182142,-0.170541,-0.343963,0.134362,0.37338, +-0.108598,0.182521,-0.170887,-0.344931,0.134601,0.374616, +-0.10879,0.1829,-0.171232,-0.345898,0.134839,0.375854, +-0.108982,0.18328,-0.171578,-0.346866,0.135078,0.377093, +-0.109174,0.18366,-0.171924,-0.347835,0.135317,0.378335, +-0.109366,0.18404,-0.17227,-0.348804,0.135555,0.379579, +-0.109559,0.184419,-0.172616,-0.349775,0.135794,0.380826, +-0.109751,0.184799,-0.172962,-0.350746,0.136033,0.382076, +-0.109943,0.185179,-0.173308,-0.351719,0.136271,0.383327, +-0.110135,0.185559,-0.173654,-0.352691,0.13651,0.38458, +-0.110327,0.185939,-0.174,-0.353664,0.136749,0.385836, +-0.110519,0.186319,-0.174347,-0.354637,0.136988,0.387093, +-0.110711,0.186699,-0.174693,-0.35561,0.137227,0.388352, +-0.110904,0.187079,-0.17504,-0.356584,0.137466,0.389613, +-0.111096,0.18746,-0.175386,-0.35756,0.137705,0.390877, +-0.111288,0.18784,-0.175733,-0.358536,0.137944,0.392144, +-0.111481,0.18822,-0.176079,-0.359513,0.138183,0.393413, +-0.111673,0.188601,-0.176426,-0.36049,0.138422,0.394683, +-0.111865,0.188981,-0.176772,-0.361468,0.138661,0.395956, +-0.112058,0.189362,-0.177119,-0.362445,0.1389,0.39723, +-0.112251,0.189743,-0.177466,-0.363424,0.13914,0.398506, +-0.112443,0.190124,-0.177813,-0.364403,0.139379,0.399785, +-0.112636,0.190505,-0.17816,-0.365383,0.139618,0.401066, +-0.112829,0.190885,-0.178508,-0.366364,0.139858,0.40235, +-0.113021,0.191266,-0.178855,-0.367346,0.140097,0.403636, +-0.113214,0.191647,-0.179202,-0.368328,0.140337,0.404923, +-0.113406,0.192028,-0.179549,-0.369309,0.140576,0.406213, +-0.113599,0.19241,-0.179896,-0.370292,0.140816,0.407504, +-0.113792,0.192791,-0.180244,-0.371275,0.141055,0.408797, +-0.113985,0.193173,-0.180591,-0.372258,0.141295,0.410093, +-0.114178,0.193554,-0.180939,-0.373243,0.141535,0.411391, +-0.114371,0.193936,-0.181287,-0.374228,0.141775,0.412692, +-0.114564,0.194317,-0.181634,-0.375214,0.142014,0.413995, +-0.114757,0.194699,-0.181982,-0.3762,0.142254,0.415299, +-0.11495,0.195081,-0.18233,-0.377187,0.142494,0.416606, +-0.115143,0.195462,-0.182677,-0.378173,0.142734,0.417914, +-0.115336,0.195845,-0.183026,-0.379161,0.142974,0.419224, +-0.115529,0.196227,-0.183374,-0.380149,0.143214,0.420537, +-0.115722,0.196609,-0.183722,-0.381138,0.143454,0.421852, +-0.115916,0.196991,-0.18407,-0.382127,0.143694,0.42317, +-0.116109,0.197373,-0.184418,-0.383117,0.143934,0.42449, +-0.116302,0.197755,-0.184766,-0.384108,0.144175,0.425811, +-0.116495,0.198138,-0.185115,-0.385098,0.144415,0.427134, +-0.116689,0.19852,-0.185463,-0.386089,0.144655,0.428459, +-0.116882,0.198903,-0.185812,-0.38708,0.144896,0.429786, +-0.117076,0.199286,-0.18616,-0.388072,0.145136,0.431116, +-0.117269,0.199669,-0.186509,-0.389065,0.145377,0.432448, +-0.117463,0.200051,-0.186858,-0.390059,0.145617,0.433782, +-0.117656,0.200434,-0.187207,-0.391053,0.145858,0.435119, +-0.11785,0.200817,-0.187556,-0.392047,0.146098,0.436457, +-0.118043,0.2012,-0.187904,-0.393042,0.146339,0.437797, +-0.118237,0.201583,-0.188253,-0.394037,0.146579,0.439138, +-0.118431,0.201966,-0.188603,-0.395032,0.14682,0.440482, +-0.118625,0.20235,-0.188952,-0.396028,0.147061,0.441828, +-0.118819,0.202733,-0.189302,-0.397025,0.147302,0.443177, +-0.119012,0.203117,-0.189651,-0.398022,0.147543,0.444528, +-0.119206,0.203501,-0.19,-0.39902,0.147784,0.44588, +-0.1194,0.203884,-0.19035,-0.400018,0.148025,0.447235, +-0.119594,0.204268,-0.190699,-0.401016,0.148266,0.448592, +-0.119788,0.204651,-0.191049,-0.402015,0.148507,0.44995, +-0.119982,0.205036,-0.191399,-0.403014,0.148748,0.45131, +-0.120176,0.20542,-0.191749,-0.404013,0.14899,0.452672, +-0.120371,0.205804,-0.192099,-0.405014,0.149231,0.454037, +-0.120565,0.206188,-0.192449,-0.406015,0.149472,0.455405, +-0.120759,0.206572,-0.192799,-0.407016,0.149714,0.456774, +-0.120953,0.206957,-0.193149,-0.408018,0.149955,0.458145, +-0.121147,0.207341,-0.193499,-0.40902,0.150196,0.459518, +-0.121342,0.207725,-0.193849,-0.410021,0.150438,0.460892, +-0.121536,0.20811,-0.1942,-0.411023,0.15068,0.462269, +-0.121731,0.208495,-0.19455,-0.412026,0.150922,0.463648, +-0.121925,0.20888,-0.194901,-0.413029,0.151163,0.465029, +-0.12212,0.209265,-0.195252,-0.414034,0.151405,0.466412, +-0.122314,0.20965,-0.195602,-0.415038,0.151647,0.467798, +-0.122509,0.210035,-0.195953,-0.416043,0.151889,0.469185, +-0.122703,0.21042,-0.196304,-0.417048,0.15213,0.470574, +-0.122898,0.210805,-0.196655,-0.418054,0.152372,0.471964, +-0.123093,0.211191,-0.197006,-0.41906,0.152615,0.473357, +-0.123288,0.211576,-0.197357,-0.420066,0.152857,0.474752, +-0.123483,0.211962,-0.197708,-0.421073,0.153099,0.476149, +-0.123678,0.212348,-0.19806,-0.422081,0.153341,0.477548, +-0.123872,0.212733,-0.198411,-0.423089,0.153583,0.47895, +-0.124067,0.213119,-0.198762,-0.424098,0.153826,0.480353, +-0.124262,0.213505,-0.199114,-0.425106,0.154068,0.481758, +-0.124457,0.21389,-0.199465,-0.426114,0.15431,0.483164, +-0.124653,0.214277,-0.199817,-0.427122,0.154553,0.484573, +-0.124848,0.214663,-0.200169,-0.428131,0.154796,0.485983, +-0.125043,0.21505,-0.200521,-0.42914,0.155038,0.487397, +-0.125238,0.215436,-0.200873,-0.430151,0.155281,0.488812, +-0.125433,0.215822,-0.201225,-0.431161,0.155524,0.490229, +-0.125629,0.216209,-0.201577,-0.432173,0.155766,0.491648, +-0.125824,0.216595,-0.201929,-0.433184,0.156009,0.493068, +-0.126019,0.216982,-0.202281,-0.434195,0.156252,0.494491, +-0.126215,0.217369,-0.202633,-0.435207,0.156495,0.495915, +-0.12641,0.217756,-0.202986,-0.436219,0.156738,0.497341, +-0.126606,0.218143,-0.203339,-0.437232,0.156981,0.49877, +-0.126802,0.21853,-0.203691,-0.438246,0.157224,0.5002, +-0.126997,0.218917,-0.204044,-0.43926,0.157467,0.501633, +-0.127193,0.219304,-0.204397,-0.440275,0.15771,0.503068, +-0.127388,0.219692,-0.204749,-0.441289,0.157954,0.504504, +-0.127584,0.220079,-0.205102,-0.442303,0.158197,0.505941, +-0.12778,0.220467,-0.205456,-0.443318,0.158441,0.507381, +-0.127976,0.220855,-0.205809,-0.444334,0.158684,0.508822, +-0.128172,0.221243,-0.206162,-0.44535,0.158928,0.510266, +-0.128368,0.221631,-0.206516,-0.446367,0.159171,0.511713, +-0.128564,0.222019,-0.206869,-0.447384,0.159415,0.513161, +-0.12876,0.222407,-0.207222,-0.448401,0.159658,0.51461, +-0.128956,0.222795,-0.207576,-0.449418,0.159902,0.516062, +-0.129152,0.223183,-0.20793,-0.450436,0.160146,0.517514, +-0.129349,0.223571,-0.208284,-0.451454,0.16039,0.518969, +-0.129545,0.22396,-0.208638,-0.452472,0.160634,0.520426, +-0.129741,0.224349,-0.208992,-0.453491,0.160878,0.521885, +-0.129938,0.224738,-0.209346,-0.454511,0.161122,0.523346, +-0.130134,0.225126,-0.2097,-0.455531,0.161366,0.524809, +-0.13033,0.225515,-0.210054,-0.456551,0.16161,0.526274, +-0.130527,0.225904,-0.210408,-0.457571,0.161854,0.52774, +-0.130723,0.226293,-0.210762,-0.458591,0.162099,0.529208, +-0.13092,0.226682,-0.211117,-0.459612,0.162343,0.530678, +-0.131117,0.227072,-0.211472,-0.460634,0.162588,0.532149, +-0.131313,0.227461,-0.211827,-0.461656,0.162832,0.533623, +-0.13151,0.227851,-0.212181,-0.462678,0.163077,0.5351, +-0.131707,0.22824,-0.212536,-0.463701,0.163321,0.536578, +-0.131904,0.22863,-0.212891,-0.464724,0.163566,0.538057, +-0.1321,0.229019,-0.213246,-0.465746,0.16381,0.539538, +-0.132297,0.229409,-0.213601,-0.466769,0.164055,0.54102, +-0.132494,0.229799,-0.213956,-0.467793,0.1643,0.542505, +-0.132691,0.23019,-0.214312,-0.468817,0.164545,0.543991, +-0.132889,0.23058,-0.214667,-0.469842,0.16479,0.54548, +-0.133086,0.23097,-0.215023,-0.470867,0.165035,0.54697, +-0.133283,0.231361,-0.215378,-0.471892,0.16528,0.548463, +-0.13348,0.231751,-0.215734,-0.472918,0.165525,0.549957, +-0.133677,0.232141,-0.216089,-0.473943,0.16577,0.551452, +-0.133874,0.232532,-0.216445,-0.474968,0.166016,0.552949, +-0.134072,0.232923,-0.216801,-0.475994,0.166261,0.554448, +-0.134269,0.233314,-0.217158,-0.47702,0.166507,0.555949, +-0.134467,0.233705,-0.217514,-0.478047,0.166752,0.557452, +-0.134664,0.234096,-0.21787,-0.479075,0.166998,0.558957, +-0.134862,0.234487,-0.218226,-0.480103,0.167243,0.560463, +-0.135059,0.234878,-0.218582,-0.481131,0.167489,0.561972, +-0.135257,0.235269,-0.218939,-0.482159,0.167734,0.563481, +-0.135455,0.235661,-0.219295,-0.483187,0.16798,0.564992, +-0.135653,0.236053,-0.219652,-0.484215,0.168226,0.566505, +-0.13585,0.236444,-0.220009,-0.485244,0.168472,0.56802, +-0.136048,0.236836,-0.220366,-0.486274,0.168718,0.569537, +-0.136246,0.237228,-0.220723,-0.487304,0.168964,0.571056, +-0.136444,0.23762,-0.22108,-0.488335,0.16921,0.572577, +-0.136642,0.238012,-0.221437,-0.489366,0.169456,0.574099, +-0.13684,0.238404,-0.221794,-0.490397,0.169702,0.575623, +-0.137038,0.238797,-0.222151,-0.491427,0.169948,0.577148, +-0.137236,0.239189,-0.222509,-0.492458,0.170195,0.578674, +-0.137435,0.239582,-0.222866,-0.49349,0.170441,0.580203, +-0.137633,0.239975,-0.223224,-0.494523,0.170688,0.581734, +-0.137831,0.240367,-0.223582,-0.495556,0.170935,0.583267, +-0.13803,0.24076,-0.22394,-0.496589,0.171181,0.584801, +-0.138228,0.241153,-0.224297,-0.497622,0.171428,0.586337, +-0.138426,0.241546,-0.224655,-0.498656,0.171674,0.587874, +-0.138625,0.241939,-0.225013,-0.49969,0.171921,0.589413, +-0.138824,0.242332,-0.225372,-0.500724,0.172168,0.590953, +-0.139022,0.242726,-0.22573,-0.501759,0.172415,0.592495, +-0.139221,0.24312,-0.226089,-0.502794,0.172662,0.59404, +-0.13942,0.243513,-0.226447,-0.50383,0.172909,0.595586, +-0.139618,0.243907,-0.226806,-0.504866,0.173156,0.597134, +-0.139817,0.244301,-0.227164,-0.505902,0.173403,0.598683, +-0.140016,0.244694,-0.227523,-0.506938,0.17365,0.600233, +-0.140215,0.245088,-0.227881,-0.507974,0.173898,0.601785, +-0.140414,0.245482,-0.228241,-0.509011,0.174145,0.603339, +-0.140613,0.245877,-0.2286,-0.510048,0.174393,0.604894, +-0.140812,0.246271,-0.228959,-0.511086,0.17464,0.606452, +-0.141011,0.246666,-0.229318,-0.512125,0.174888,0.608011, +-0.141211,0.24706,-0.229678,-0.513163,0.175135,0.609572, +-0.14141,0.247455,-0.230037,-0.514201,0.175383,0.611135, +-0.141609,0.247849,-0.230396,-0.51524,0.17563,0.612698, +-0.141808,0.248244,-0.230756,-0.516279,0.175878,0.614263, +-0.142008,0.248639,-0.231116,-0.517318,0.176126,0.61583, +-0.142207,0.249034,-0.231476,-0.518358,0.176374,0.617398, +-0.142407,0.24943,-0.231836,-0.519398,0.176623,0.618969, +-0.142606,0.249825,-0.232196,-0.520439,0.176871,0.620541, +-0.142806,0.25022,-0.232556,-0.52148,0.177119,0.622115, +-0.143005,0.250615,-0.232916,-0.522521,0.177367,0.62369, +-0.143205,0.251011,-0.233276,-0.523562,0.177615,0.625266, +-0.143405,0.251406,-0.233636,-0.524603,0.177863,0.626844, +-0.143605,0.251802,-0.233997,-0.525644,0.178112,0.628423, +-0.143805,0.252198,-0.234357,-0.526686,0.17836,0.630004, +-0.144005,0.252595,-0.234718,-0.527728,0.178609,0.631587, +-0.144205,0.252991,-0.235079,-0.528771,0.178857,0.633172, +-0.144405,0.253387,-0.23544,-0.529815,0.179106,0.634758, +-0.144605,0.253783,-0.2358,-0.530858,0.179355,0.636346, +-0.144805,0.254179,-0.236161,-0.531902,0.179603,0.637935, +-0.145005,0.254576,-0.236522,-0.532945,0.179852,0.639525, +-0.145205,0.254972,-0.236884,-0.53399,0.180101,0.641116, +-0.145405,0.255369,-0.237245,-0.535035,0.18035,0.64271, +-0.145606,0.255766,-0.237607,-0.53608,0.180599,0.644305, +-0.145806,0.256163,-0.237968,-0.537126,0.180849,0.645902, +-0.146007,0.25656,-0.23833,-0.538172,0.181098,0.647501, +-0.146207,0.256957,-0.238692,-0.539218,0.181347,0.649101, +-0.146407,0.257354,-0.239053,-0.540264,0.181596,0.650701, +-0.146608,0.257752,-0.239415,-0.541309,0.181845,0.652304, +-0.146809,0.258149,-0.239777,-0.542356,0.182095,0.653907, +-0.147009,0.258547,-0.240139,-0.543402,0.182345,0.655513, +-0.14721,0.258945,-0.240502,-0.54445,0.182594,0.65712, +-0.147411,0.259343,-0.240864,-0.545498,0.182844,0.658729, +-0.147612,0.259741,-0.241226,-0.546546,0.183093,0.660339, +-0.147813,0.260138,-0.241589,-0.547595,0.183343,0.661951, +-0.148013,0.260536,-0.241951,-0.548643,0.183593,0.663564, +-0.148214,0.260934,-0.242314,-0.549692,0.183843,0.665178, +-0.148416,0.261333,-0.242677,-0.550741,0.184093,0.666793, +-0.148617,0.261732,-0.24304,-0.55179,0.184343,0.66841, +-0.148818,0.26213,-0.243403,-0.55284,0.184593,0.670029, +-0.149019,0.262529,-0.243766,-0.553891,0.184843,0.67165, +-0.14922,0.262928,-0.244129,-0.554942,0.185093,0.673272, +-0.149422,0.263326,-0.244492,-0.555993,0.185343,0.674895, +-0.149623,0.263725,-0.244855,-0.557043,0.185594,0.676519, +-0.149824,0.264124,-0.245218,-0.558094,0.185844,0.678145, +-0.150026,0.264523,-0.245582,-0.559145,0.186095,0.679772, +-0.150228,0.264923,-0.245946,-0.560196,0.186345,0.6814, +-0.150429,0.265322,-0.24631,-0.561248,0.186596,0.68303, +-0.150631,0.265722,-0.246674,-0.562301,0.186847,0.684662, +-0.150833,0.266121,-0.247038,-0.563354,0.187097,0.686296, +-0.151034,0.266521,-0.247401,-0.564408,0.187348,0.68793, +-0.151236,0.266921,-0.247765,-0.565461,0.187599,0.689565, +-0.151438,0.26732,-0.24813,-0.566515,0.18785,0.691202, +-0.15164,0.267721,-0.248494,-0.567569,0.188101,0.69284, +-0.151842,0.268121,-0.248859,-0.568624,0.188352,0.694479, +-0.152044,0.268522,-0.249223,-0.569679,0.188604,0.696121, +-0.152246,0.268922,-0.249588,-0.570735,0.188855,0.697764, +-0.152448,0.269322,-0.249953,-0.571791,0.189106,0.699408, +-0.15265,0.269723,-0.250317,-0.572846,0.189357,0.701053, +-0.152852,0.270123,-0.250682,-0.573902,0.189608,0.702699, +-0.153054,0.270524,-0.251047,-0.574958,0.18986,0.704347, +-0.153257,0.270925,-0.251412,-0.576015,0.190112,0.705995, +-0.153459,0.271326,-0.251778,-0.577072,0.190363,0.707646, +-0.153662,0.271728,-0.252143,-0.57813,0.190615,0.709298, +-0.153864,0.272129,-0.252509,-0.579188,0.190867,0.710951, +-0.154067,0.27253,-0.252874,-0.580247,0.191119,0.712606, +-0.154269,0.272932,-0.25324,-0.581305,0.19137,0.714262, +-0.154472,0.273333,-0.253605,-0.582363,0.191622,0.715919, +-0.154675,0.273734,-0.253971,-0.583422,0.191874,0.717576, +-0.154877,0.274136,-0.254337,-0.584481,0.192127,0.719235, +-0.15508,0.274539,-0.254703,-0.58554,0.192379,0.720896, +-0.155283,0.274941,-0.255069,-0.5866,0.192631,0.722558, +-0.155486,0.275343,-0.255436,-0.587661,0.192883,0.724222, +-0.155689,0.275745,-0.255802,-0.588721,0.193136,0.725887, +-0.155892,0.276147,-0.256168,-0.589782,0.193388,0.727554, +-0.156095,0.276549,-0.256534,-0.590843,0.19364,0.729221, +-0.156298,0.276952,-0.256901,-0.591904,0.193893,0.730888, +-0.156502,0.277355,-0.257268,-0.592965,0.194146,0.732558, +-0.156705,0.277758,-0.257635,-0.594027,0.194398,0.734228, +-0.156908,0.278161,-0.258002,-0.59509,0.194651,0.735901, +-0.157112,0.278564,-0.258369,-0.596153,0.194904,0.737575, +-0.157315,0.278967,-0.258736,-0.597216,0.195157,0.73925, +-0.157518,0.27937,-0.259103,-0.598278,0.19541,0.740926, +-0.157722,0.279773,-0.25947,-0.599342,0.195663,0.742602, +-0.157925,0.280176,-0.259837,-0.600405,0.195916,0.74428, +-0.158129,0.28058,-0.260205,-0.601469,0.196169,0.745959, +-0.158333,0.280984,-0.260573,-0.602533,0.196422,0.74764, +-0.158537,0.281387,-0.26094,-0.603598,0.196676,0.749322, +-0.15874,0.281791,-0.261308,-0.604663,0.196929,0.751005, +-0.158944,0.282195,-0.261676,-0.605729,0.197183,0.75269, +-0.159148,0.282599,-0.262044,-0.606794,0.197436,0.754375, +-0.159352,0.283003,-0.262412,-0.607859,0.197689,0.756062, +-0.159556,0.283407,-0.26278,-0.608925,0.197943,0.757749, +-0.15976,0.283812,-0.263148,-0.609991,0.198197,0.759437, +-0.159964,0.284216,-0.263517,-0.611058,0.198451,0.761127, +-0.160168,0.284621,-0.263885,-0.612125,0.198705,0.762818, +-0.160372,0.285026,-0.264254,-0.613193,0.198958,0.764511, +-0.160577,0.285431,-0.264623,-0.61426,0.199212,0.766205, +-0.160781,0.285835,-0.264991,-0.615328,0.199466,0.7679, +-0.160985,0.28624,-0.26536,-0.616396,0.19972,0.769595, +-0.16119,0.286645,-0.265729,-0.617464,0.199974,0.771292, +-0.161394,0.287051,-0.266098,-0.618533,0.200229,0.772989, +-0.161599,0.287456,-0.266467,-0.619602,0.200483,0.774688, +-0.161803,0.287862,-0.266837,-0.620672,0.200738,0.776388, +-0.162008,0.288268,-0.267206,-0.621742,0.200992,0.77809, +-0.162213,0.288673,-0.267575,-0.622812,0.201247,0.779793, +-0.162417,0.289079,-0.267945,-0.623882,0.201501,0.781497, +-0.162622,0.289484,-0.268314,-0.624952,0.201755,0.783201, +-0.162827,0.28989,-0.268684,-0.626022,0.20201,0.784906, +-0.163032,0.290296,-0.269054,-0.627093,0.202265,0.786612, +-0.163237,0.290703,-0.269424,-0.628164,0.20252,0.78832, +-0.163442,0.291109,-0.269794,-0.629236,0.202775,0.790029, +-0.163647,0.291516,-0.270164,-0.630309,0.20303,0.791739, +-0.163852,0.291922,-0.270534,-0.631381,0.203285,0.793451, +-0.164057,0.292329,-0.270905,-0.632454,0.20354,0.795163, +-0.164262,0.292735,-0.271275,-0.633526,0.203795,0.796876, +-0.164468,0.293142,-0.271645,-0.634599,0.20405,0.798589, +-0.164673,0.293549,-0.272016,-0.635672,0.204306,0.800304, +-0.164879,0.293957,-0.272387,-0.636746,0.204561,0.80202, +-0.165084,0.294364,-0.272758,-0.63782,0.204817,0.803737, +-0.16529,0.294771,-0.273129,-0.638895,0.205072,0.805456, +-0.165495,0.295179,-0.2735,-0.63997,0.205328,0.807175, +-0.165701,0.295586,-0.273871,-0.641045,0.205583,0.808896, +-0.165906,0.295993,-0.274242,-0.642119,0.205839,0.810617, +-0.166112,0.296401,-0.274613,-0.643194,0.206095,0.812338, +-0.166318,0.296809,-0.274985,-0.644269,0.206351,0.814061, +-0.166524,0.297217,-0.275356,-0.645345,0.206607,0.815785, +-0.16673,0.297626,-0.275728,-0.646421,0.206863,0.81751, +-0.166936,0.298034,-0.2761,-0.647498,0.207119,0.819237, +-0.167141,0.298442,-0.276472,-0.648575,0.207375,0.820964, +-0.167347,0.29885,-0.276843,-0.649653,0.207631,0.822692, +-0.167553,0.299258,-0.277215,-0.65073,0.207887,0.824421, +-0.16776,0.299667,-0.277587,-0.651807,0.208143,0.82615, +-0.167966,0.300076,-0.27796,-0.652885,0.2084,0.827881, +-0.168172,0.300485,-0.278332,-0.653963,0.208657,0.829612, +-0.168379,0.300894,-0.278705,-0.655042,0.208913,0.831345, +-0.168585,0.301303,-0.279077,-0.656121,0.20917,0.833079, +-0.168791,0.301712,-0.27945,-0.657201,0.209426,0.834814, +-0.168998,0.302121,-0.279822,-0.658281,0.209683,0.83655, +-0.169204,0.302531,-0.280195,-0.65936,0.20994,0.838286, +-0.169411,0.30294,-0.280568,-0.66044,0.210197,0.840023, +-0.169618,0.30335,-0.280941,-0.66152,0.210454,0.841761, +-0.169824,0.30376,-0.281314,-0.662601,0.210711,0.843499, +-0.170031,0.30417,-0.281688,-0.663682,0.210968,0.84524, +-0.170238,0.30458,-0.282061,-0.664764,0.211225,0.846981, +-0.170445,0.30499,-0.282434,-0.665846,0.211482,0.848723, +-0.170652,0.3054,-0.282808,-0.666928,0.211739,0.850466, +-0.170858,0.30581,-0.283181,-0.66801,0.211997,0.852209, +-0.171065,0.30622,-0.283555,-0.669092,0.212254,0.853953, +-0.171273,0.306631,-0.283929,-0.670174,0.212512,0.855698, +-0.17148,0.307041,-0.284303,-0.671257,0.212769,0.857443, +-0.171687,0.307452,-0.284677,-0.672341,0.213027,0.85919, +-0.171894,0.307863,-0.285051,-0.673425,0.213285,0.860939, +-0.172102,0.308274,-0.285425,-0.67451,0.213542,0.862688, +-0.172309,0.308685,-0.2858,-0.675594,0.2138,0.864437, +-0.172516,0.309096,-0.286174,-0.676679,0.214058,0.866187, +-0.172724,0.309507,-0.286548,-0.677764,0.214316,0.867938, +-0.172931,0.309919,-0.286923,-0.678849,0.214574,0.869689, +-0.173139,0.31033,-0.287298,-0.679935,0.214832,0.871441, +-0.173347,0.310742,-0.287673,-0.681022,0.215091,0.873195, +-0.173555,0.311154,-0.288048,-0.682109,0.215349,0.87495, +-0.173762,0.311566,-0.288423,-0.683196,0.215607,0.876705, +-0.17397,0.311978,-0.288798,-0.684283,0.215865,0.878461, +-0.174178,0.312389,-0.289173,-0.685369,0.216124,0.880217, +-0.174386,0.312801,-0.289548,-0.686457,0.216382,0.881974, +-0.174594,0.313214,-0.289924,-0.687544,0.216641,0.883732, +-0.174802,0.313627,-0.2903,-0.688633,0.2169,0.88549, +-0.17501,0.314039,-0.290676,-0.689722,0.217159,0.88725, +-0.175218,0.314452,-0.291051,-0.690811,0.217417,0.889011, +-0.175426,0.314864,-0.291427,-0.6919,0.217676,0.890772, +-0.175634,0.315277,-0.291803,-0.692989,0.217935,0.892534, +-0.175842,0.31569,-0.292179,-0.694078,0.218194,0.894297, +-0.176051,0.316103,-0.292555,-0.695168,0.218453,0.896059, +-0.176259,0.316516,-0.292931,-0.696258,0.218712,0.897823, +-0.176468,0.316929,-0.293308,-0.697348,0.218972,0.899587, +-0.176677,0.317343,-0.293684,-0.698439,0.219231,0.901353, +-0.176885,0.317756,-0.294061,-0.699531,0.21949,0.90312, +-0.177094,0.31817,-0.294437,-0.700623,0.21975,0.904887, +-0.177302,0.318583,-0.294814,-0.701714,0.220009,0.906655, +-0.177511,0.318997,-0.29519,-0.702806,0.220268,0.908423, +-0.17772,0.319411,-0.295567,-0.703898,0.220528,0.910191, +-0.177929,0.319825,-0.295944,-0.70499,0.220788,0.91196, +-0.178138,0.320239,-0.296322,-0.706083,0.221048,0.91373, +-0.178347,0.320654,-0.296699,-0.707177,0.221308,0.915501, +-0.178556,0.321068,-0.297077,-0.708271,0.221568,0.917273, +-0.178765,0.321483,-0.297454,-0.709365,0.221827,0.919046, +-0.178974,0.321897,-0.297831,-0.710459,0.222087,0.920819, +-0.179183,0.322311,-0.298209,-0.711552,0.222347,0.922592, +-0.179392,0.322726,-0.298586,-0.712646,0.222607,0.924366, +-0.179601,0.323141,-0.298964,-0.713741,0.222868,0.92614, +-0.179811,0.323556,-0.299342,-0.714836,0.223128,0.927915, +-0.18002,0.323972,-0.299721,-0.715931,0.223389,0.929691, +-0.18023,0.324387,-0.300099,-0.717027,0.223649,0.931468, +-0.180439,0.324802,-0.300477,-0.718124,0.22391,0.933246, +-0.180649,0.325218,-0.300855,-0.71922,0.22417,0.935024, +-0.180858,0.325633,-0.301233,-0.720316,0.22443,0.936802, +-0.181068,0.326048,-0.301612,-0.721412,0.224691,0.938581, +-0.181278,0.326464,-0.30199,-0.722509,0.224952,0.94036, +-0.181488,0.326881,-0.302369,-0.723606,0.225213,0.94214, +-0.181697,0.327297,-0.302748,-0.724704,0.225474,0.943921, +-0.181907,0.327713,-0.303127,-0.725802,0.225735,0.945702, +-0.182117,0.328129,-0.303506,-0.726901,0.225996,0.947485, +-0.182327,0.328545,-0.303885,-0.727999,0.226257,0.949267, +-0.182537,0.328961,-0.304264,-0.729098,0.226518,0.95105, +-0.182747,0.329378,-0.304643,-0.730197,0.226779,0.952833, +-0.182957,0.329795,-0.305023,-0.731296,0.227041,0.954617, +-0.183168,0.330212,-0.305403,-0.732396,0.227302,0.956401, +-0.183378,0.330629,-0.305783,-0.733496,0.227564,0.958186, +-0.183588,0.331046,-0.306162,-0.734597,0.227825,0.959972, +-0.183799,0.331463,-0.306542,-0.735698,0.228087,0.961759, +-0.184009,0.33188,-0.306922,-0.736798,0.228348,0.963546, +-0.184219,0.332297,-0.307301,-0.737899,0.22861,0.965333, +-0.18443,0.332714,-0.307681,-0.739,0.228872,0.96712, +-0.18464,0.333131,-0.308062,-0.740101,0.229134,0.968908, +-0.184851,0.333549,-0.308442,-0.741203,0.229396,0.970696, +-0.185062,0.333967,-0.308823,-0.742305,0.229658,0.972486, +-0.185273,0.334385,-0.309203,-0.743408,0.22992,0.974276, +-0.185483,0.334803,-0.309584,-0.744511,0.230182,0.976067, +-0.185694,0.33522,-0.309964,-0.745614,0.230444,0.977857, +-0.185905,0.335638,-0.310345,-0.746717,0.230706,0.979648, +-0.186116,0.336056,-0.310725,-0.74782,0.230968,0.981439, +-0.186327,0.336475,-0.311106,-0.748924,0.231231,0.983231, +-0.186538,0.336894,-0.311488,-0.750028,0.231493,0.985023, +-0.186749,0.337312,-0.311869,-0.751133,0.231756,0.986816, +-0.18696,0.337731,-0.31225,-0.752238,0.232018,0.98861, +-0.187171,0.338149,-0.312631,-0.753343,0.232281,0.990404, +-0.187383,0.338568,-0.313012,-0.754448,0.232543,0.992199, +-0.187594,0.338987,-0.313394,-0.755553,0.232806,0.993993, +-0.187805,0.339406,-0.313775,-0.756659,0.233069,0.995788, +-0.188017,0.339825,-0.314157,-0.757765,0.233332,0.997583, +-0.188228,0.340244,-0.314539,-0.758871,0.233595,0.999379, +-0.18844,0.340664,-0.314921,-0.759978,0.233858,1.00118, +-0.188651,0.341083,-0.315303,-0.761085,0.234121,1.00297, +-0.188863,0.341502,-0.315685,-0.762192,0.234384,1.00477, +-0.189074,0.341922,-0.316066,-0.763299,0.234647,1.00657, +-0.189286,0.342341,-0.316448,-0.764406,0.23491,1.00837, +-0.189497,0.342761,-0.316831,-0.765513,0.235173,1.01016, +-0.189709,0.343181,-0.317213,-0.766621,0.235437,1.01196, +-0.189921,0.343601,-0.317596,-0.767729,0.2357,1.01376, +-0.190133,0.344021,-0.317978,-0.768838,0.235964,1.01556, +-0.190345,0.344441,-0.318361,-0.769946,0.236227,1.01736, +-0.190557,0.344862,-0.318743,-0.771055,0.236491,1.01916, +-0.190769,0.345282,-0.319126,-0.772164,0.236754,1.02096, +-0.190981,0.345702,-0.319509,-0.773273,0.237018,1.02276, +-0.191193,0.346122,-0.319892,-0.774382,0.237282,1.02456, +-0.191405,0.346543,-0.320275,-0.775492,0.237545,1.02636, +-0.191617,0.346964,-0.320658,-0.776602,0.237809,1.02817, +-0.19183,0.347385,-0.321041,-0.777712,0.238073,1.02997, +-0.192042,0.347806,-0.321424,-0.778823,0.238337,1.03177, +-0.192254,0.348226,-0.321808,-0.779933,0.238601,1.03358, +-0.192466,0.348647,-0.322191,-0.781043,0.238865,1.03538, +-0.192679,0.349068,-0.322574,-0.782154,0.239129,1.03718, +-0.192891,0.349489,-0.322958,-0.783265,0.239393,1.03899, +-0.193104,0.349911,-0.323341,-0.784376,0.239658,1.04079, +-0.193317,0.350332,-0.323725,-0.785488,0.239922,1.04259, +-0.193529,0.350754,-0.324109,-0.7866,0.240187,1.0444, +-0.193742,0.351175,-0.324493,-0.787712,0.240451,1.0462, +-0.193954,0.351597,-0.324877,-0.788824,0.240715,1.04801, +-0.194167,0.352018,-0.325261,-0.789936,0.24098,1.04982, +-0.19438,0.35244,-0.325645,-0.791048,0.241244,1.05162, +-0.194592,0.352862,-0.326029,-0.79216,0.241509,1.05343, +-0.194805,0.353284,-0.326413,-0.793273,0.241773,1.05523, +-0.195018,0.353706,-0.326797,-0.794386,0.242038,1.05704, +-0.195231,0.354128,-0.327182,-0.7955,0.242303,1.05885, +-0.195444,0.35455,-0.327566,-0.796613,0.242568,1.06066, +-0.195657,0.354972,-0.327951,-0.797727,0.242833,1.06246, +-0.19587,0.355395,-0.328335,-0.79884,0.243097,1.06427, +-0.196083,0.355817,-0.32872,-0.799954,0.243362,1.06608, +-0.196296,0.356239,-0.329105,-0.801068,0.243627,1.06789, +-0.19651,0.356662,-0.32949,-0.802182,0.243892,1.0697, +-0.196723,0.357085,-0.329875,-0.803297,0.244158,1.07151, +-0.196936,0.357508,-0.33026,-0.804412,0.244423,1.07332, +-0.197149,0.35793,-0.330644,-0.805526,0.244688,1.07513, +-0.197363,0.358353,-0.331029,-0.806641,0.244953,1.07694, +-0.197576,0.358776,-0.331414,-0.807756,0.245218,1.07875, +-0.197789,0.359199,-0.331799,-0.808871,0.245484,1.08056, +-0.198003,0.359622,-0.332185,-0.809986,0.245749,1.08237, +-0.198216,0.360045,-0.33257,-0.811101,0.246015,1.08418, +-0.19843,0.360468,-0.332956,-0.812217,0.24628,1.08599, +-0.198643,0.360892,-0.333341,-0.813333,0.246546,1.0878, +-0.198857,0.361315,-0.333727,-0.81445,0.246811,1.08961, +-0.199071,0.361738,-0.334112,-0.815566,0.247077,1.09142, +-0.199284,0.362162,-0.334498,-0.816682,0.247342,1.09323, +-0.199498,0.362585,-0.334883,-0.817798,0.247608,1.09504, +-0.199711,0.363009,-0.335269,-0.818914,0.247874,1.09686, +-0.199925,0.363433,-0.335655,-0.820031,0.24814,1.09867, +-0.200139,0.363856,-0.336041,-0.821148,0.248406,1.10048, +-0.200353,0.36428,-0.336427,-0.822266,0.248672,1.10229, +-0.200567,0.364704,-0.336813,-0.823383,0.248937,1.10411, +-0.200781,0.365128,-0.3372,-0.8245,0.249203,1.10592, +-0.200995,0.365552,-0.337586,-0.825618,0.249469,1.10773, +-0.201209,0.365976,-0.337972,-0.826735,0.249735,1.10955, +-0.201423,0.3664,-0.338358,-0.827853,0.250001,1.11136, +-0.201637,0.366825,-0.338745,-0.828971,0.250268,1.11317, +-0.201851,0.367249,-0.339131,-0.830089,0.250534,1.11499, +-0.202065,0.367674,-0.339518,-0.831208,0.2508,1.1168, +-0.202279,0.368098,-0.339904,-0.832327,0.251067,1.11862, +-0.202494,0.368523,-0.340291,-0.833445,0.251333,1.12043, +-0.202708,0.368947,-0.340677,-0.834564,0.251599,1.12225, +-0.202922,0.369371,-0.341064,-0.835682,0.251865,1.12406, +-0.203136,0.369796,-0.341451,-0.836801,0.252132,1.12587, +-0.203351,0.370221,-0.341838,-0.83792,0.252399,1.12769, +-0.203565,0.370646,-0.342225,-0.83904,0.252665,1.1295, +-0.20378,0.371071,-0.342612,-0.840159,0.252932,1.13132, +-0.203994,0.371496,-0.342999,-0.841279,0.253198,1.13313, +-0.204208,0.371921,-0.343386,-0.842398,0.253465,1.13495, +-0.204423,0.372346,-0.343773,-0.843517,0.253732,1.13677, +-0.204637,0.372771,-0.34416,-0.844637,0.253998,1.13858, +-0.204852,0.373196,-0.344547,-0.845757,0.254265,1.1404, +-0.205067,0.373621,-0.344934,-0.846877,0.254532,1.14221, +-0.205281,0.374047,-0.345322,-0.847997,0.254799,1.14403, +-0.205496,0.374472,-0.345709,-0.849118,0.255066,1.14585, +-0.205711,0.374898,-0.346097,-0.850238,0.255333,1.14766, +-0.205925,0.375323,-0.346484,-0.851358,0.255599,1.14948, +-0.20614,0.375748,-0.346871,-0.852479,0.255866,1.1513, +-0.206355,0.376174,-0.347259,-0.853599,0.256133,1.15311, +-0.206569,0.376599,-0.347646,-0.854719,0.2564,1.15493, +-0.206784,0.377025,-0.348034,-0.85584,0.256668,1.15675, +-0.206999,0.377451,-0.348422,-0.85696,0.256935,1.15856, +-0.207214,0.377877,-0.34881,-0.858082,0.257202,1.16038, +-0.207429,0.378303,-0.349198,-0.859203,0.257469,1.1622, +-0.207644,0.378728,-0.349585,-0.860324,0.257736,1.16402, +-0.207859,0.379154,-0.349973,-0.861445,0.258004,1.16583, +-0.208074,0.37958,-0.350361,-0.862566,0.258271,1.16765, +-0.208289,0.380006,-0.350749,-0.863688,0.258538,1.16947, +-0.208504,0.380432,-0.351137,-0.86481,0.258806,1.17129, +-0.208719,0.380859,-0.351526,-0.865932,0.259073,1.1731, +-0.208934,0.381285,-0.351914,-0.867054,0.259341,1.17492, +-0.209149,0.381711,-0.352302,-0.868175,0.259608,1.17674, +-0.209364,0.382137,-0.35269,-0.869297,0.259876,1.17856, +-0.20958,0.382564,-0.353078,-0.870419,0.260143,1.18038, +-0.209795,0.38299,-0.353466,-0.871541,0.26041,1.1822, +-0.21001,0.383416,-0.353855,-0.872663,0.260678,1.18401, +-0.210225,0.383843,-0.354243,-0.873785,0.260946,1.18583, +-0.210441,0.384269,-0.354632,-0.874908,0.261214,1.18765, +-0.210656,0.384696,-0.35502,-0.876031,0.261481,1.18947, +-0.210871,0.385123,-0.355409,-0.877153,0.261749,1.19129, +-0.211087,0.385549,-0.355797,-0.878275,0.262017,1.19311, +-0.211302,0.385976,-0.356186,-0.879398,0.262284,1.19493, +-0.211517,0.386402,-0.356575,-0.880521,0.262552,1.19675, +-0.211733,0.386829,-0.356963,-0.881643,0.26282,1.19856, +-0.211948,0.387256,-0.357352,-0.882767,0.263088,1.20038, +-0.212164,0.387683,-0.357741,-0.88389,0.263356,1.2022, +-0.21238,0.38811,-0.35813,-0.885013,0.263624,1.20402, +-0.212595,0.388537,-0.358519,-0.886136,0.263892,1.20584, +-0.212811,0.388964,-0.358908,-0.887259,0.26416,1.20766, +-0.213026,0.389391,-0.359296,-0.888382,0.264428,1.20948, +-0.213242,0.389818,-0.359685,-0.889505,0.264696,1.2113, +-0.213457,0.390245,-0.360074,-0.890629,0.264964,1.21312, +-0.213673,0.390672,-0.360463,-0.891752,0.265232,1.21494, +-0.213889,0.3911,-0.360853,-0.892876,0.2655,1.21676, +-0.214105,0.391527,-0.361242,-0.894,0.265768,1.21858, +-0.21432,0.391954,-0.361631,-0.895123,0.266036,1.2204, +-0.214536,0.392381,-0.36202,-0.896246,0.266305,1.22222, +-0.214752,0.392808,-0.362409,-0.89737,0.266573,1.22404, +-0.214967,0.393236,-0.362798,-0.898494,0.266841,1.22585, +-0.215183,0.393663,-0.363188,-0.899617,0.267109,1.22767, +-0.215399,0.394091,-0.363577,-0.900742,0.267378,1.22949, +-0.215615,0.394518,-0.363966,-0.901866,0.267646,1.23131, +-0.215831,0.394946,-0.364356,-0.90299,0.267914,1.23313, +-0.216047,0.395373,-0.364745,-0.904114,0.268183,1.23495, +-0.216263,0.395801,-0.365135,-0.905238,0.268451,1.23677, +-0.216479,0.396228,-0.365524,-0.906362,0.26872,1.23859, +-0.216694,0.396656,-0.365914,-0.907486,0.268988,1.24041, +-0.21691,0.397084,-0.366303,-0.90861,0.269257,1.24223, +-0.217127,0.397512,-0.366693,-0.909734,0.269525,1.24405, +-0.217343,0.397939,-0.367082,-0.910859,0.269794,1.24587, +-0.217559,0.398367,-0.367472,-0.911983,0.270062,1.24769, +-0.217775,0.398795,-0.367862,-0.913108,0.270331,1.24951, +-0.217991,0.399223,-0.368251,-0.914232,0.270599,1.25133, +-0.218207,0.399651,-0.368641,-0.915356,0.270868,1.25315, +-0.218423,0.400078,-0.369031,-0.91648,0.271136,1.25497, +-0.218639,0.400506,-0.369421,-0.917605,0.271405,1.25679, +-0.218855,0.400934,-0.36981,-0.91873,0.271674,1.25861, +-0.219071,0.401363,-0.3702,-0.919854,0.271943,1.26043, +-0.219288,0.401791,-0.37059,-0.920979,0.272211,1.26225, +-0.219504,0.402219,-0.37098,-0.922104,0.27248,1.26407, +-0.21972,0.402647,-0.37137,-0.923228,0.272749,1.2659, +-0.219936,0.403075,-0.37176,-0.924353,0.273018,1.26772, +-0.220152,0.403503,-0.37215,-0.925478,0.273286,1.26954, +-0.220369,0.403931,-0.37254,-0.926602,0.273555,1.27136, +-0.220585,0.404359,-0.37293,-0.927727,0.273824,1.27318, +-0.220801,0.404788,-0.37332,-0.928852,0.274093,1.275, +-0.221018,0.405216,-0.37371,-0.929978,0.274362,1.27682, +-0.221234,0.405644,-0.3741,-0.931103,0.274631,1.27864, +-0.22145,0.406073,-0.374491,-0.932228,0.2749,1.28046, +-0.221667,0.406501,-0.374881,-0.933353,0.275169,1.28228, +-0.221883,0.406929,-0.375271,-0.934478,0.275438,1.2841, +-0.222099,0.407358,-0.375661,-0.935603,0.275707,1.28592, +-0.222316,0.407786,-0.376051,-0.936728,0.275976,1.28774, +-0.222532,0.408215,-0.376442,-0.937853,0.276245,1.28956, +-0.222749,0.408643,-0.376832,-0.938978,0.276514,1.29138, +-0.222965,0.409072,-0.377222,-0.940104,0.276783,1.2932, +-0.223182,0.4095,-0.377613,-0.941229,0.277052,1.29502, +-0.223398,0.409929,-0.378003,-0.942354,0.277321,1.29684, +-0.223615,0.410357,-0.378393,-0.943479,0.27759,1.29866, +-0.223831,0.410786,-0.378784,-0.944605,0.277859,1.30048, +-0.224048,0.411214,-0.379174,-0.94573,0.278128,1.3023, +-0.224264,0.411643,-0.379565,-0.946855,0.278397,1.30412, +-0.224481,0.412072,-0.379955,-0.947981,0.278667,1.30594, +-0.224697,0.4125,-0.380345,-0.949106,0.278936,1.30776, +-0.224914,0.412929,-0.380736,-0.950231,0.279205,1.30958, +-0.22513,0.413357,-0.381126,-0.951356,0.279474,1.3114, +-0.225347,0.413786,-0.381517,-0.952481,0.279743,1.31322, +-0.225564,0.414215,-0.381907,-0.953607,0.280012,1.31504, +-0.22578,0.414644,-0.382298,-0.954732,0.280282,1.31686, +-0.225997,0.415073,-0.382688,-0.955858,0.280551,1.31868, +-0.226214,0.415501,-0.383079,-0.956983,0.28082,1.3205, +-0.22643,0.41593,-0.38347,-0.958109,0.28109,1.32232, +-0.226647,0.416359,-0.38386,-0.959234,0.281359,1.32414, +-0.226864,0.416788,-0.384251,-0.960359,0.281628,1.32596, +-0.22708,0.417217,-0.384642,-0.961485,0.281898,1.32778, +-0.227297,0.417646,-0.385032,-0.962611,0.282167,1.3296, +-0.227514,0.418075,-0.385423,-0.963736,0.282436,1.33142, +-0.227731,0.418504,-0.385814,-0.964862,0.282706,1.33324, +-0.227947,0.418933,-0.386205,-0.965987,0.282975,1.33506, +-0.228164,0.419362,-0.386595,-0.967113,0.283245,1.33688, +-0.228381,0.419791,-0.386986,-0.968239,0.283514,1.3387, +-0.228598,0.42022,-0.387377,-0.969364,0.283783,1.34052, +-0.228815,0.420649,-0.387768,-0.97049,0.284053,1.34234, +-0.229031,0.421078,-0.388159,-0.971615,0.284322,1.34416, +-0.229248,0.421507,-0.38855,-0.972741,0.284592,1.34598, +-0.229465,0.421936,-0.38894,-0.973867,0.284862,1.3478, +-0.229682,0.422365,-0.389331,-0.974993,0.285131,1.34962, +-0.229899,0.422794,-0.389722,-0.976118,0.285401,1.35144, +-0.230116,0.423223,-0.390113,-0.977244,0.28567,1.35326, +-0.230333,0.423652,-0.390504,-0.978369,0.28594,1.35508, +-0.230549,0.424081,-0.390895,-0.979495,0.286209,1.3569, +-0.230766,0.424511,-0.391286,-0.98062,0.286479,1.35872, +-0.230983,0.42494,-0.391677,-0.981746,0.286748,1.36054, +-0.2312,0.425369,-0.392068,-0.982872,0.287018,1.36236, +-0.231417,0.425798,-0.392459,-0.983998,0.287288,1.36418, +-0.231634,0.426228,-0.39285,-0.985124,0.287557,1.366, +-0.231851,0.426657,-0.393241,-0.98625,0.287827,1.36782, +-0.232068,0.427086,-0.393632,-0.987375,0.288096,1.36964, +-0.232285,0.427515,-0.394023,-0.988501,0.288366,1.37146, +-0.232502,0.427945,-0.394414,-0.989627,0.288636,1.37328, +-0.232719,0.428374,-0.394805,-0.990753,0.288906,1.3751, +-0.232936,0.428803,-0.395196,-0.991878,0.289175,1.37692, +-0.233153,0.429233,-0.395588,-0.993004,0.289445,1.37874, +-0.23337,0.429662,-0.395979,-0.99413,0.289715,1.38056, +-0.233587,0.430091,-0.39637,-0.995256,0.289984,1.38238, +-0.233804,0.430521,-0.396761,-0.996381,0.290254,1.3842, +-0.234021,0.43095,-0.397152,-0.997507,0.290524,1.38601, +-0.234238,0.43138,-0.397543,-0.998632,0.290794,1.38783, +-0.234455,0.431809,-0.397934,-0.999758,0.291063,1.38965, +-0.234672,0.432238,-0.398326,-1.00088,0.291333,1.39147, +-0.23489,0.432668,-0.398717,-1.00201,0.291603,1.39329, +-0.235107,0.433097,-0.399108,-1.00314,0.291873,1.39511, +-0.235324,0.433527,-0.399499,-1.00426,0.292142,1.39693, +-0.235541,0.433956,-0.39989,-1.00539,0.292412,1.39875, +-0.235758,0.434385,-0.400282,-1.00651,0.292682,1.40057, +-0.235975,0.434815,-0.400673,-1.00764,0.292952,1.40239, +-0.236192,0.435245,-0.401064,-1.00876,0.293222,1.40421, +-0.236409,0.435674,-0.401455,-1.00989,0.293492,1.40603, +-0.236626,0.436104,-0.401847,-1.01102,0.293762,1.40784, +-0.236844,0.436533,-0.402238,-1.01214,0.294031,1.40966, +-0.237061,0.436963,-0.402629,-1.01327,0.294301,1.41148, +-0.237278,0.437392,-0.403021,-1.01439,0.294571,1.4133, +-0.237495,0.437822,-0.403412,-1.01552,0.294841,1.41512, +-0.237712,0.438251,-0.403803,-1.01664,0.295111,1.41694, +-0.23793,0.438681,-0.404195,-1.01777,0.295381,1.41876, +-0.238147,0.439111,-0.404586,-1.0189,0.295651,1.42058, +-0.238364,0.43954,-0.404977,-1.02002,0.295921,1.4224, +-0.238581,0.43997,-0.405369,-1.02115,0.296191,1.42422, +-0.238798,0.440399,-0.40576,-1.02227,0.296461,1.42603, +-0.239016,0.440829,-0.406152,-1.0234,0.29673,1.42785, +-0.239233,0.441259,-0.406543,-1.02452,0.297,1.42967, +-0.23945,0.441688,-0.406934,-1.02565,0.29727,1.43149, +-0.239667,0.442118,-0.407326,-1.02678,0.29754,1.43331, +-0.239885,0.442547,-0.407717,-1.0279,0.29781,1.43513, +-0.240102,0.442977,-0.408109,-1.02903,0.29808,1.43695, +-0.240319,0.443407,-0.4085,-1.03015,0.29835,1.43876, +-0.240536,0.443836,-0.408891,-1.03128,0.29862,1.44058, +-0.240754,0.444266,-0.409283,-1.0324,0.29889,1.4424, +-0.240971,0.444696,-0.409674,-1.03353,0.29916,1.44422, +-0.241188,0.445125,-0.410066,-1.03465,0.29943,1.44604, +-0.241405,0.445555,-0.410457,-1.03578,0.2997,1.44786, +-0.241623,0.445985,-0.410849,-1.03691,0.29997,1.44967, +-0.24184,0.446414,-0.41124,-1.03803,0.30024,1.45149, +-0.242057,0.446844,-0.411632,-1.03916,0.30051,1.45331, +-0.242275,0.447274,-0.412023,-1.04028,0.30078,1.45513, +-0.242492,0.447704,-0.412415,-1.04141,0.30105,1.45695, +-0.242709,0.448133,-0.412806,-1.04253,0.30132,1.45877, +-0.242927,0.448563,-0.413198,-1.04366,0.30159,1.46058, +-0.243144,0.448993,-0.413589,-1.04478,0.30186,1.4624, +-0.243361,0.449423,-0.413981,-1.04591,0.302131,1.46422, +-0.243579,0.449852,-0.414372,-1.04704,0.302401,1.46604, +-0.243796,0.450282,-0.414764,-1.04816,0.302671,1.46786, +-0.244013,0.450712,-0.415155,-1.04929,0.302941,1.46968, +-0.244231,0.451141,-0.415547,-1.05041,0.303211,1.47149, +-0.244448,0.451571,-0.415938,-1.05154,0.303481,1.47331, +-0.244665,0.452001,-0.41633,-1.05266,0.303751,1.47513, +-0.244883,0.452431,-0.416721,-1.05379,0.304021,1.47695, +-0.2451,0.452861,-0.417113,-1.05491,0.304291,1.47876, +-0.245318,0.45329,-0.417505,-1.05604,0.304561,1.48058, +-0.245535,0.45372,-0.417896,-1.05716,0.304831,1.4824, +-0.245752,0.45415,-0.418288,-1.05829,0.305102,1.48422, +-0.24597,0.45458,-0.418679,-1.05942,0.305372,1.48604, +-0.246187,0.45501,-0.419071,-1.06054,0.305642,1.48785, +-0.246405,0.455439,-0.419462,-1.06167,0.305912,1.48967, +-0.246622,0.455869,-0.419854,-1.06279,0.306182,1.49149, +-0.246839,0.456299,-0.420246,-1.06392,0.306452,1.49331, +-0.247057,0.456729,-0.420637,-1.06504,0.306722,1.49512, +-0.247274,0.457159,-0.421029,-1.06617,0.306993,1.49694, +-0.247492,0.457589,-0.42142,-1.06729,0.307263,1.49876, +-0.247709,0.458018,-0.421812,-1.06842,0.307533,1.50058, +-0.247926,0.458448,-0.422204,-1.06954,0.307803,1.50239, +-0.248144,0.458878,-0.422595,-1.07067,0.308073,1.50421, +-0.248361,0.459308,-0.422987,-1.07179,0.308343,1.50603, +-0.248579,0.459738,-0.423379,-1.07292,0.308614,1.50785, +-0.248796,0.460168,-0.42377,-1.07404,0.308884,1.50966, +-0.249014,0.460598,-0.424162,-1.07517,0.309154,1.51148, +-0.249231,0.461027,-0.424553,-1.0763,0.309424,1.5133, +-0.249449,0.461457,-0.424945,-1.07742,0.309694,1.51512, +-0.249666,0.461887,-0.425337,-1.07855,0.309964,1.51693, +-0.249884,0.462317,-0.425728,-1.07967,0.310235,1.51875, +-0.250101,0.462747,-0.42612,-1.0808,0.310505,1.52057, +-0.250318,0.463177,-0.426512,-1.08192,0.310775,1.52238, +-0.250536,0.463607,-0.426903,-1.08305,0.311045,1.5242, +-0.250753,0.464037,-0.427295,-1.08417,0.311315,1.52602, +-0.250971,0.464466,-0.427687,-1.0853,0.311586,1.52784, +-0.251188,0.464896,-0.428078,-1.08642,0.311856,1.52965, +-0.251406,0.465326,-0.42847,-1.08755,0.312126,1.53147, +-0.251623,0.465756,-0.428862,-1.08867,0.312396,1.53329, +-0.251841,0.466186,-0.429253,-1.0898,0.312667,1.5351, +-0.252058,0.466616,-0.429645,-1.09092,0.312937,1.53692, +-0.252276,0.467046,-0.430037,-1.09205,0.313207,1.53874, +-0.252493,0.467476,-0.430428,-1.09317,0.313477,1.54055, +-0.252711,0.467906,-0.43082,-1.0943,0.313748,1.54237, +-0.252928,0.468335,-0.431212,-1.09542,0.314018,1.54419, +-0.253146,0.468765,-0.431603,-1.09655,0.314288,1.54601, +-0.253363,0.469195,-0.431995,-1.09767,0.314558,1.54782, +-0.253581,0.469625,-0.432387,-1.0988,0.314829,1.54964, +-0.253799,0.470055,-0.432779,-1.09992,0.315099,1.55145, +-0.254016,0.470485,-0.43317,-1.10105,0.315369,1.55327, +-0.254234,0.470915,-0.433562,-1.10217,0.315639,1.55509, +-0.254451,0.471345,-0.433954,-1.1033,0.31591,1.55691, +-0.254669,0.471775,-0.434346,-1.10442,0.31618,1.55872, +-0.254886,0.472205,-0.434737,-1.10555,0.31645,1.56054, +-0.255104,0.472635,-0.435129,-1.10667,0.316721,1.56236, +-0.255321,0.473065,-0.435521,-1.1078,0.316991,1.56417, +-0.255539,0.473495,-0.435913,-1.10892,0.317261,1.56599, +-0.255757,0.473925,-0.436304,-1.11005,0.317532,1.5678, +-0.255974,0.474355,-0.436696,-1.11117,0.317802,1.56962, +-0.256192,0.474785,-0.437088,-1.1123,0.318072,1.57144, +-0.256409,0.475215,-0.43748,-1.11343,0.318343,1.57325, +-0.256627,0.475645,-0.437872,-1.11455,0.318613,1.57507, +-0.256844,0.476075,-0.438263,-1.11568,0.318883,1.57689, +-0.257062,0.476505,-0.438655,-1.1168,0.319154,1.5787, +-0.25728,0.476935,-0.439047,-1.11793,0.319424,1.58052, +-0.257497,0.477365,-0.439439,-1.11905,0.319694,1.58234, +-0.257715,0.477795,-0.439831,-1.12018,0.319965,1.58415, +-0.257933,0.478225,-0.440223,-1.1213,0.320235,1.58597, +-0.25815,0.478655,-0.440614,-1.12243,0.320505,1.58778, +-0.258368,0.479085,-0.441006,-1.12355,0.320776,1.5896, +-0.258585,0.479516,-0.441398,-1.12468,0.321046,1.59142, +-0.258803,0.479946,-0.44179,-1.1258,0.321317,1.59323, +-0.259021,0.480376,-0.442182,-1.12693,0.321587,1.59505, +-0.259238,0.480806,-0.442574,-1.12806,0.321858,1.59686, +-0.259456,0.481236,-0.442966,-1.12918,0.322128,1.59868, +-0.259674,0.481666,-0.443358,-1.13031,0.322398,1.6005, +-0.259891,0.482096,-0.44375,-1.13143,0.322669,1.60231, +-0.260109,0.482527,-0.444142,-1.13256,0.322939,1.60413, +-0.260327,0.482957,-0.444534,-1.13368,0.32321,1.60594, +-0.260545,0.483387,-0.444926,-1.13481,0.32348,1.60776, +-0.260762,0.483818,-0.445318,-1.13594,0.323751,1.60957, +-0.26098,0.484248,-0.44571,-1.13706,0.324021,1.61139, +-0.261198,0.484678,-0.446102,-1.13819,0.324292,1.61321, +-0.261416,0.485108,-0.446494,-1.13931,0.324562,1.61502, +-0.261633,0.485539,-0.446886,-1.14044,0.324833,1.61684, +-0.261851,0.485969,-0.447278,-1.14157,0.325104,1.61865, +-0.262069,0.4864,-0.44767,-1.14269,0.325374,1.62047, +-0.262287,0.48683,-0.448063,-1.14382,0.325645,1.62228, +-0.262505,0.48726,-0.448455,-1.14494,0.325915,1.6241, +-0.262723,0.487691,-0.448847,-1.14607,0.326186,1.62591, +-0.26294,0.488121,-0.449239,-1.1472,0.326457,1.62773, +-0.263158,0.488552,-0.449631,-1.14832,0.326727,1.62955, +-0.263376,0.488982,-0.450023,-1.14945,0.326998,1.63136, +-0.263594,0.489413,-0.450416,-1.15058,0.327269,1.63318, +-0.263812,0.489843,-0.450808,-1.1517,0.327539,1.63499, +-0.26403,0.490274,-0.4512,-1.15283,0.32781,1.6368, +-0.264248,0.490704,-0.451593,-1.15396,0.328081,1.63862, +-0.264465,0.491135,-0.451985,-1.15509,0.328351,1.64043, +-0.264683,0.491566,-0.452378,-1.15621,0.328622,1.64225, +-0.264901,0.491996,-0.45277,-1.15734,0.328893,1.64407, +-0.265119,0.492427,-0.453162,-1.15847,0.329164,1.64588, +-0.265337,0.492858,-0.453555,-1.15959,0.329435,1.64769, +-0.265555,0.493289,-0.453947,-1.16072,0.329705,1.64951, +-0.265773,0.493719,-0.45434,-1.16185,0.329976,1.65132, +-0.265991,0.49415,-0.454732,-1.16298,0.330247,1.65314, +-0.266209,0.494581,-0.455125,-1.1641,0.330518,1.65495, +-0.266427,0.495012,-0.455517,-1.16523,0.330789,1.65677, +-0.266645,0.495443,-0.45591,-1.16636,0.33106,1.65858, +-0.266863,0.495874,-0.456303,-1.16749,0.331331,1.6604, +-0.267081,0.496304,-0.456695,-1.16862,0.331601,1.66221, +-0.2673,0.496736,-0.457088,-1.16974,0.331872,1.66402, +-0.267518,0.497167,-0.457481,-1.17087,0.332144,1.66584, +-0.267736,0.497598,-0.457873,-1.172,0.332415,1.66765, +-0.267954,0.498029,-0.458266,-1.17313,0.332686,1.66946, +-0.268172,0.49846,-0.458659,-1.17426,0.332957,1.67128, +-0.26839,0.498891,-0.459052,-1.17539,0.333228,1.67309, +-0.268608,0.499322,-0.459445,-1.17652,0.333499,1.67491, +-0.268827,0.499753,-0.459837,-1.17764,0.33377,1.67672, +-0.269045,0.500185,-0.46023,-1.17877,0.334041,1.67853, +-0.269263,0.500616,-0.460624,-1.1799,0.334312,1.68034, +-0.269482,0.501047,-0.461017,-1.18103,0.334583,1.68216, +-0.2697,0.501479,-0.46141,-1.18216,0.334854,1.68397, +-0.269918,0.50191,-0.461803,-1.18329,0.335126,1.68578, +-0.270136,0.502342,-0.462196,-1.18442,0.335397,1.6876, +-0.270355,0.502773,-0.462589,-1.18555,0.335668,1.68941, +-0.270573,0.503205,-0.462982,-1.18668,0.335939,1.69122, +-0.270792,0.503636,-0.463375,-1.18781,0.336211,1.69304, +-0.27101,0.504068,-0.463769,-1.18894,0.336482,1.69485, +-0.271228,0.5045,-0.464162,-1.19007,0.336754,1.69666, +-0.271447,0.504931,-0.464555,-1.1912,0.337025,1.69847, +-0.271665,0.505363,-0.464949,-1.19233,0.337296,1.70028, +-0.271884,0.505795,-0.465342,-1.19346,0.337568,1.7021, +-0.272102,0.506227,-0.465735,-1.19459,0.337839,1.70391, +-0.272321,0.506658,-0.466129,-1.19572,0.338111,1.70572, +-0.272539,0.50709,-0.466522,-1.19685,0.338382,1.70753, +-0.272758,0.507523,-0.466916,-1.19799,0.338654,1.70934, +-0.272977,0.507955,-0.46731,-1.19912,0.338925,1.71115, +-0.273195,0.508387,-0.467703,-1.20025,0.339197,1.71297, +-0.273414,0.508819,-0.468097,-1.20138,0.339469,1.71478, +-0.273632,0.509251,-0.468491,-1.20251,0.33974,1.71659, +-0.273851,0.509683,-0.468884,-1.20365,0.340012,1.7184, +-0.27407,0.510115,-0.469278,-1.20478,0.340283,1.72021, +-0.274288,0.510547,-0.469672,-1.20591,0.340555,1.72202, +-0.274507,0.51098,-0.470066,-1.20704,0.340827,1.72383, +-0.274726,0.511412,-0.47046,-1.20817,0.341099,1.72564, +-0.274945,0.511845,-0.470854,-1.20931,0.341371,1.72745, +-0.275164,0.512277,-0.471248,-1.21044,0.341643,1.72926, +-0.275383,0.51271,-0.471642,-1.21157,0.341915,1.73107, +-0.275601,0.513142,-0.472036,-1.21271,0.342186,1.73288, +-0.27582,0.513575,-0.47243,-1.21384,0.342458,1.73469, +-0.276039,0.514007,-0.472824,-1.21498,0.34273,1.7365, +-0.276258,0.51444,-0.473219,-1.21611,0.343003,1.73831, +-0.276477,0.514873,-0.473613,-1.21724,0.343275,1.74012, +-0.276696,0.515306,-0.474008,-1.21838,0.343547,1.74192, +-0.276915,0.515739,-0.474402,-1.21951,0.343819,1.74373, +-0.277134,0.516172,-0.474797,-1.22065,0.344091,1.74554, +-0.277353,0.516605,-0.475191,-1.22178,0.344363,1.74735, +-0.277572,0.517038,-0.475586,-1.22292,0.344635,1.74916, +-0.277792,0.517471,-0.47598,-1.22405,0.344908,1.75097, +-0.278011,0.517905,-0.476375,-1.22519,0.34518,1.75277, +-0.27823,0.518338,-0.47677,-1.22633,0.345452,1.75458, +-0.278449,0.518772,-0.477165,-1.22746,0.345725,1.75639, +-0.278669,0.519205,-0.47756,-1.2286,0.345997,1.75819, +-0.278888,0.519638,-0.477955,-1.22973,0.34627,1.76, +-0.279107,0.520072,-0.478349,-1.23087,0.346542,1.76181, +-0.279326,0.520505,-0.478744,-1.23201,0.346815,1.76361, +-0.279546,0.520939,-0.479139,-1.23314,0.347087,1.76542, +-0.279765,0.521373,-0.479535,-1.23428,0.34736,1.76722, +-0.279985,0.521807,-0.47993,-1.23542,0.347633,1.76903, +-0.280204,0.522241,-0.480325,-1.23655,0.347905,1.77084, +-0.280424,0.522675,-0.480721,-1.23769,0.348178,1.77264, +-0.280643,0.523108,-0.481116,-1.23883,0.348451,1.77445, +-0.280863,0.523542,-0.481511,-1.23997,0.348723,1.77625, +-0.281082,0.523976,-0.481907,-1.24111,0.348996,1.77806, +-0.281302,0.524411,-0.482302,-1.24225,0.349269,1.77986, +-0.281522,0.524845,-0.482698,-1.24338,0.349542,1.78166, +-0.281741,0.52528,-0.483094,-1.24452,0.349815,1.78347, +-0.281961,0.525714,-0.48349,-1.24566,0.350088,1.78527, +-0.282181,0.526149,-0.483886,-1.2468,0.350361,1.78707, +-0.282401,0.526583,-0.484282,-1.24794,0.350634,1.78888, +-0.28262,0.527018,-0.484677,-1.24908,0.350907,1.79068, +-0.28284,0.527452,-0.485073,-1.25022,0.351181,1.79248, +-0.28306,0.527887,-0.485469,-1.25136,0.351454,1.79428, +-0.28328,0.528322,-0.485866,-1.25251,0.351727,1.79608, +-0.2835,0.528757,-0.486262,-1.25365,0.352001,1.79789, +-0.28372,0.529192,-0.486658,-1.25479,0.352274,1.79969, +-0.28394,0.529627,-0.487055,-1.25593,0.352547,1.80149, +-0.28416,0.530062,-0.487451,-1.25707,0.352821,1.80329, +-0.28438,0.530497,-0.487848,-1.25821,0.353094,1.80509, +-0.2846,0.530932,-0.488244,-1.25936,0.353368,1.80689, +-0.284821,0.531368,-0.488641,-1.2605,0.353641,1.80869, +-0.285041,0.531803,-0.489037,-1.26164,0.353915,1.81049, +-0.285261,0.532239,-0.489434,-1.26279,0.354189,1.81229, +-0.285482,0.532675,-0.489831,-1.26393,0.354463,1.81408, +-0.285702,0.53311,-0.490228,-1.26507,0.354736,1.81588, +-0.285922,0.533546,-0.490625,-1.26622,0.35501,1.81768, +-0.286142,0.533982,-0.491022,-1.26736,0.355284,1.81948, +-0.286363,0.534418,-0.491419,-1.2685,0.355558,1.82128, +-0.286583,0.534854,-0.491816,-1.26965,0.355832,1.82307, +-0.286804,0.53529,-0.492214,-1.27079,0.356106,1.82487, +-0.287025,0.535726,-0.492611,-1.27194,0.35638,1.82666, +-0.287245,0.536163,-0.493009,-1.27309,0.356654,1.82846, +-0.287466,0.536599,-0.493406,-1.27423,0.356928,1.83026, +-0.287686,0.537035,-0.493804,-1.27538,0.357202,1.83205, +-0.287907,0.537472,-0.494201,-1.27652,0.357477,1.83385, +-0.288128,0.537908,-0.494599,-1.27767,0.357751,1.83564, +-0.288349,0.538345,-0.494997,-1.27882,0.358025,1.83743, +-0.28857,0.538782,-0.495395,-1.27996,0.3583,1.83923, +-0.288791,0.539219,-0.495793,-1.28111,0.358574,1.84102, +-0.289011,0.539656,-0.496191,-1.28226,0.358849,1.84281, +-0.289232,0.540093,-0.496589,-1.28341,0.359123,1.84461, +-0.289453,0.54053,-0.496987,-1.28456,0.359398,1.8464, +-0.289674,0.540967,-0.497385,-1.2857,0.359672,1.84819, +-0.289895,0.541404,-0.497783,-1.28685,0.359947,1.84998, +-0.290116,0.541841,-0.498182,-1.288,0.360222,1.85177, +-0.290338,0.542279,-0.498581,-1.28915,0.360497,1.85356, +-0.290559,0.542717,-0.498979,-1.2903,0.360772,1.85535, +-0.29078,0.543155,-0.499378,-1.29145,0.361047,1.85714, +-0.291002,0.543592,-0.499777,-1.2926,0.361322,1.85893, +-0.291223,0.54403,-0.500176,-1.29375,0.361597,1.86072, +-0.291444,0.544468,-0.500575,-1.2949,0.361872,1.86251, +-0.291665,0.544906,-0.500973,-1.29605,0.362147,1.86429, +-0.291887,0.545344,-0.501373,-1.2972,0.362422,1.86608, +-0.292109,0.545782,-0.501772,-1.29836,0.362698,1.86787, +-0.29233,0.546221,-0.502171,-1.29951,0.362973,1.86965, +-0.292552,0.546659,-0.502571,-1.30066,0.363249,1.87144, +-0.292774,0.547098,-0.50297,-1.30181,0.363524,1.87323, +-0.292995,0.547536,-0.50337,-1.30297,0.363799,1.87501, +-0.293217,0.547975,-0.503769,-1.30412,0.364075,1.87679, +-0.293439,0.548414,-0.504169,-1.30527,0.36435,1.87858, +-0.293661,0.548852,-0.504569,-1.30643,0.364626,1.88036, +-0.293883,0.549292,-0.504969,-1.30758,0.364902,1.88214, +-0.294105,0.549731,-0.505369,-1.30874,0.365178,1.88393, +-0.294327,0.55017,-0.505769,-1.30989,0.365454,1.88571, +-0.294549,0.55061,-0.506169,-1.31105,0.36573,1.88749, +-0.294771,0.551049,-0.506569,-1.3122,0.366006,1.88927, +-0.294993,0.551488,-0.50697,-1.31336,0.366282,1.89105, +-0.295215,0.551928,-0.50737,-1.31451,0.366558,1.89283, +-0.295437,0.552367,-0.50777,-1.31567,0.366834,1.89461, +-0.295659,0.552807,-0.508171,-1.31683,0.36711,1.89639, +-0.295882,0.553247,-0.508572,-1.31798,0.367387,1.89816, +-0.296104,0.553688,-0.508973,-1.31914,0.367663,1.89994, +-0.296327,0.554128,-0.509374,-1.3203,0.367939,1.90172, +-0.296549,0.554568,-0.509775,-1.32146,0.368216,1.9035, +-0.296771,0.555008,-0.510176,-1.32262,0.368492,1.90527, +-0.296994,0.555448,-0.510577,-1.32378,0.368769,1.90705, +-0.297217,0.555889,-0.510978,-1.32493,0.369045,1.90882, +-0.297439,0.55633,-0.51138,-1.32609,0.369322,1.91059, +-0.297662,0.556771,-0.511781,-1.32725,0.369599,1.91237, +-0.297885,0.557212,-0.512183,-1.32841,0.369876,1.91414, +-0.298108,0.557653,-0.512585,-1.32958,0.370153,1.91591, +-0.298331,0.558094,-0.512987,-1.33074,0.37043,1.91768, +-0.298553,0.558535,-0.513388,-1.3319,0.370707,1.91945, +-0.298776,0.558976,-0.51379,-1.33306,0.370984,1.92122, +-0.298999,0.559417,-0.514192,-1.33422,0.371261,1.92299, +-0.299223,0.559859,-0.514595,-1.33538,0.371539,1.92476, +-0.299446,0.560301,-0.514997,-1.33655,0.371816,1.92653, +-0.299669,0.560743,-0.5154,-1.33771,0.372094,1.9283, +-0.299892,0.561185,-0.515802,-1.33887,0.372371,1.93006, +-0.300116,0.561627,-0.516205,-1.34004,0.372649,1.93183, +-0.300339,0.562069,-0.516607,-1.3412,0.372926,1.9336, +-0.300562,0.562511,-0.51701,-1.34236,0.373204,1.93536, +-0.300786,0.562953,-0.517413,-1.34353,0.373481,1.93713, +-0.301009,0.563396,-0.517816,-1.34469,0.373759,1.93889, +-0.301233,0.563838,-0.518219,-1.34586,0.374037,1.94065, +-0.301457,0.564281,-0.518623,-1.34702,0.374315,1.94241, +-0.30168,0.564724,-0.519026,-1.34819,0.374593,1.94418, +-0.301904,0.565167,-0.519429,-1.34936,0.374871,1.94594, +-0.302128,0.56561,-0.519833,-1.35052,0.375149,1.9477, +-0.302351,0.566053,-0.520236,-1.35169,0.375427,1.94946, +-0.302575,0.566496,-0.52064,-1.35286,0.375706,1.95121, +-0.302799,0.566939,-0.521044,-1.35403,0.375984,1.95297, +-0.303024,0.567383,-0.521448,-1.3552,0.376263,1.95473, +-0.303248,0.567827,-0.521852,-1.35636,0.376542,1.95648, +-0.303472,0.568271,-0.522256,-1.35753,0.37682,1.95824, +-0.303696,0.568715,-0.522661,-1.3587,0.377099,1.96, +-0.30392,0.569158,-0.523065,-1.35987,0.377377,1.96175, +-0.304144,0.569602,-0.523469,-1.36104,0.377656,1.9635, +-0.304369,0.570046,-0.523874,-1.36221,0.377935,1.96526, +-0.304593,0.570491,-0.524278,-1.36338,0.378214,1.96701, +-0.304818,0.570936,-0.524684,-1.36456,0.378493,1.96876, +-0.305042,0.571381,-0.525089,-1.36573,0.378772,1.97051, +-0.305267,0.571825,-0.525494,-1.3669,0.379051,1.97226, +-0.305491,0.57227,-0.525899,-1.36807,0.379331,1.97401, +-0.305716,0.572715,-0.526304,-1.36925,0.37961,1.97575, +-0.305941,0.57316,-0.526709,-1.37042,0.379889,1.9775, +-0.306166,0.573605,-0.527115,-1.37159,0.380169,1.97925, +-0.306391,0.57405,-0.52752,-1.37277,0.380448,1.98099, +-0.306616,0.574496,-0.527926,-1.37394,0.380728,1.98274, +-0.306841,0.574942,-0.528333,-1.37512,0.381008,1.98448, +-0.307066,0.575388,-0.528739,-1.37629,0.381288,1.98622, +-0.307291,0.575834,-0.529145,-1.37747,0.381567,1.98797, +-0.307516,0.57628,-0.529551,-1.37864,0.381847,1.98971, +-0.307741,0.576725,-0.529957,-1.37982,0.382127,1.99145, +-0.307966,0.577172,-0.530363,-1.381,0.382407,1.99319, +-0.308192,0.577618,-0.53077,-1.38217,0.382688,1.99492, +-0.308418,0.578065,-0.531177,-1.38335,0.382968,1.99666, +-0.308643,0.578512,-0.531584,-1.38453,0.383248,1.9984, +-0.308869,0.578959,-0.531991,-1.38571,0.383529,2.00013, +-0.309094,0.579406,-0.532398,-1.38689,0.383809,2.00187, +-0.30932,0.579852,-0.532805,-1.38807,0.38409,2.0036, +-0.309545,0.580299,-0.533212,-1.38925,0.38437,2.00534, +-0.309771,0.580746,-0.533619,-1.39043,0.384651,2.00707, +-0.309997,0.581194,-0.534027,-1.39161,0.384932,2.0088, +-0.310223,0.581642,-0.534434,-1.39279,0.385213,2.01053, +-0.310449,0.58209,-0.534842,-1.39397,0.385494,2.01226, +-0.310676,0.582538,-0.53525,-1.39515,0.385775,2.01399, +-0.310902,0.582986,-0.535658,-1.39633,0.386056,2.01571, +-0.311128,0.583434,-0.536066,-1.39751,0.386337,2.01744, +-0.311354,0.583882,-0.536474,-1.3987,0.386618,2.01917, +-0.31158,0.58433,-0.536883,-1.39988,0.3869,2.02089, +-0.311807,0.584779,-0.537291,-1.40106,0.387181,2.02261, +-0.312033,0.585228,-0.5377,-1.40225,0.387463,2.02433, +-0.31226,0.585677,-0.538109,-1.40343,0.387745,2.02606, +-0.312487,0.586126,-0.538518,-1.40461,0.388026,2.02778, +-0.312713,0.586575,-0.538927,-1.4058,0.388308,2.0295, +-0.31294,0.587024,-0.539336,-1.40698,0.38859,2.03122, +-0.313166,0.587473,-0.539745,-1.40817,0.388872,2.03293, +-0.313393,0.587923,-0.540154,-1.40936,0.389154,2.03465, +-0.31362,0.588372,-0.540564,-1.41054,0.389436,2.03636, +-0.313848,0.588823,-0.540974,-1.41173,0.389718,2.03808, +-0.314075,0.589273,-0.541384,-1.41291,0.390001,2.03979, +-0.314302,0.589723,-0.541794,-1.4141,0.390283,2.0415, +-0.314529,0.590173,-0.542204,-1.41529,0.390566,2.04321, +-0.314756,0.590623,-0.542614,-1.41648,0.390848,2.04492, +-0.314983,0.591074,-0.543024,-1.41767,0.391131,2.04663, +-0.315211,0.591524,-0.543434,-1.41885,0.391413,2.04834, +-0.315438,0.591975,-0.543845,-1.42004,0.391696,2.05005, +-0.315666,0.592426,-0.544256,-1.42123,0.391979,2.05175, +-0.315894,0.592878,-0.544667,-1.42242,0.392262,2.05346, +-0.316121,0.593329,-0.545078,-1.42361,0.392546,2.05516, +-0.316349,0.593781,-0.545489,-1.4248,0.392829,2.05686, +-0.316577,0.594232,-0.5459,-1.42599,0.393112,2.05856, +-0.316805,0.594683,-0.546311,-1.42719,0.393395,2.06026, +-0.317033,0.595135,-0.546722,-1.42838,0.393678,2.06196, +-0.317261,0.595587,-0.547134,-1.42957,0.393962,2.06366, +-0.317489,0.59604,-0.547546,-1.43076,0.394246,2.06536, +-0.317717,0.596492,-0.547958,-1.43195,0.39453,2.06705, +-0.317946,0.596945,-0.54837,-1.43314,0.394814,2.06875, +-0.318174,0.597397,-0.548783,-1.43434,0.395097,2.07044, +-0.318402,0.59785,-0.549195,-1.43553,0.395381,2.07213, +-0.31863,0.598303,-0.549607,-1.43672,0.395665,2.07382, +-0.318859,0.598755,-0.550019,-1.43792,0.395949,2.07551, +-0.319088,0.599209,-0.550432,-1.43911,0.396234,2.0772, +-0.319317,0.599663,-0.550845,-1.44031,0.396518,2.07889, +-0.319545,0.600116,-0.551259,-1.4415,0.396803,2.08057, +-0.319774,0.60057,-0.551672,-1.4427,0.397087,2.08226, +-0.320003,0.601024,-0.552085,-1.44389,0.397372,2.08394, +-0.320232,0.601478,-0.552498,-1.44509,0.397657,2.08563, +-0.320461,0.601932,-0.552912,-1.44628,0.397941,2.08731, +-0.32069,0.602386,-0.553325,-1.44748,0.398226,2.08899, +-0.32092,0.60284,-0.553739,-1.44867,0.398511,2.09066, +-0.321149,0.603295,-0.554153,-1.44987,0.398797,2.09234, +-0.321378,0.60375,-0.554568,-1.45107,0.399082,2.09402, +-0.321608,0.604206,-0.554982,-1.45226,0.399367,2.09569, +-0.321837,0.604661,-0.555396,-1.45346,0.399653,2.09737, +-0.322067,0.605116,-0.555811,-1.45466,0.399938,2.09904, +-0.322296,0.605571,-0.556225,-1.45586,0.400223,2.10071, +-0.322526,0.606026,-0.55664,-1.45705,0.400509,2.10238, +-0.322756,0.606482,-0.557055,-1.45825,0.400795,2.10405, +-0.322986,0.606938,-0.55747,-1.45945,0.401081,2.10571, +-0.323216,0.607395,-0.557886,-1.46065,0.401367,2.10738, +-0.323446,0.607851,-0.558302,-1.46185,0.401653,2.10904, +-0.323676,0.608307,-0.558717,-1.46305,0.401939,2.11071, +-0.323906,0.608764,-0.559133,-1.46425,0.402225,2.11237, +-0.324136,0.60922,-0.559548,-1.46545,0.402512,2.11403, +-0.324367,0.609677,-0.559964,-1.46665,0.402798,2.11569, +-0.324597,0.610134,-0.56038,-1.46785,0.403085,2.11734, +-0.324828,0.610592,-0.560797,-1.46905,0.403372,2.119, +-0.325059,0.611049,-0.561214,-1.47025,0.403659,2.12065, +-0.32529,0.611507,-0.561631,-1.47145,0.403945,2.12231, +-0.32552,0.611965,-0.562047,-1.47265,0.404232,2.12396, +-0.325751,0.612423,-0.562464,-1.47385,0.404519,2.12561, +-0.325982,0.61288,-0.562881,-1.47505,0.404806,2.12726, +-0.326213,0.613338,-0.563298,-1.47625,0.405093,2.12891, +-0.326444,0.613797,-0.563715,-1.47745,0.405381,2.13055, +-0.326675,0.614256,-0.564133,-1.47865,0.405669,2.1322, +-0.326907,0.614715,-0.564551,-1.47985,0.405956,2.13384, +-0.327138,0.615174,-0.564969,-1.48106,0.406244,2.13548, +-0.327369,0.615633,-0.565387,-1.48226,0.406532,2.13712, +-0.327601,0.616092,-0.565805,-1.48346,0.40682,2.13876, +-0.327832,0.616551,-0.566223,-1.48466,0.407107,2.1404, +-0.328064,0.61701,-0.566641,-1.48586,0.407395,2.14204, +-0.328296,0.61747,-0.56706,-1.48706,0.407684,2.14367, +-0.328528,0.61793,-0.567479,-1.48827,0.407972,2.1453, +-0.32876,0.618391,-0.567898,-1.48947,0.408261,2.14693, +-0.328992,0.618851,-0.568318,-1.49067,0.408549,2.14856, +-0.329224,0.619312,-0.568737,-1.49187,0.408838,2.15019, +-0.329456,0.619772,-0.569156,-1.49308,0.409127,2.15182, +-0.329688,0.620233,-0.569575,-1.49428,0.409415,2.15345, +-0.32992,0.620694,-0.569995,-1.49548,0.409704,2.15507, +-0.330153,0.621155,-0.570415,-1.49669,0.409993,2.15669, +-0.330385,0.621617,-0.570835,-1.49789,0.410283,2.15831, +-0.330618,0.622079,-0.571256,-1.49909,0.410572,2.15993, +-0.330851,0.622541,-0.571677,-1.5003,0.410862,2.16155, +-0.331083,0.623002,-0.572097,-1.5015,0.411151,2.16317, +-0.331316,0.623464,-0.572518,-1.5027,0.411441,2.16478, +-0.331549,0.623926,-0.572938,-1.5039,0.41173,2.16639, +-0.331782,0.624389,-0.573359,-1.50511,0.41202,2.16801, +-0.332015,0.624851,-0.57378,-1.50631,0.41231,2.16961, +-0.332248,0.625314,-0.574202,-1.50751,0.4126,2.17122, +-0.332482,0.625778,-0.574624,-1.50872,0.412891,2.17283, +-0.332715,0.626241,-0.575046,-1.50992,0.413181,2.17443, +-0.332949,0.626705,-0.575468,-1.51112,0.413471,2.17604, +-0.333182,0.627168,-0.57589,-1.51233,0.413761,2.17764, +-0.333415,0.627631,-0.576311,-1.51353,0.414052,2.17924, +-0.333649,0.628095,-0.576734,-1.51473,0.414342,2.18084, +-0.333883,0.628559,-0.577156,-1.51594,0.414633,2.18243, +-0.334117,0.629024,-0.577579,-1.51714,0.414925,2.18403, +-0.334351,0.629489,-0.578003,-1.51834,0.415216,2.18562, +-0.334586,0.629954,-0.578426,-1.51955,0.415507,2.18722, +-0.33482,0.630419,-0.578849,-1.52075,0.415798,2.18881, +-0.335054,0.630884,-0.579272,-1.52195,0.41609,2.19039, +-0.335288,0.631349,-0.579696,-1.52316,0.416381,2.19198, +-0.335522,0.631814,-0.580119,-1.52436,0.416672,2.19356, +-0.335757,0.632279,-0.580543,-1.52556,0.416964,2.19515, +-0.335992,0.632746,-0.580967,-1.52677,0.417256,2.19673, +-0.336227,0.633212,-0.581392,-1.52797,0.417549,2.19831, +-0.336462,0.633679,-0.581817,-1.52917,0.417841,2.19989, +-0.336696,0.634145,-0.582241,-1.53037,0.418133,2.20146, +-0.336931,0.634612,-0.582666,-1.53158,0.418425,2.20304, +-0.337166,0.635078,-0.583091,-1.53278,0.418717,2.20461, +-0.337401,0.635545,-0.583516,-1.53398,0.41901,2.20618, +-0.337637,0.636012,-0.583941,-1.53518,0.419303,2.20775, +-0.337872,0.63648,-0.584367,-1.53638,0.419596,2.20932, +-0.338108,0.636948,-0.584793,-1.53759,0.419889,2.21088, +-0.338344,0.637416,-0.585219,-1.53879,0.420182,2.21245, +-0.338579,0.637884,-0.585645,-1.53999,0.420475,2.21401, +-0.338815,0.638352,-0.586071,-1.54119,0.420768,2.21557, +-0.339051,0.63882,-0.586498,-1.54239,0.421061,2.21713, +-0.339286,0.639289,-0.586924,-1.54359,0.421355,2.21868, +-0.339523,0.639757,-0.587351,-1.5448,0.421649,2.22024, +-0.339759,0.640227,-0.587778,-1.546,0.421943,2.22179, +-0.339995,0.640696,-0.588206,-1.5472,0.422237,2.22334, +-0.340232,0.641166,-0.588633,-1.5484,0.422531,2.22489, +-0.340468,0.641636,-0.589061,-1.5496,0.422825,2.22644, +-0.340705,0.642106,-0.589488,-1.5508,0.423119,2.22798, +-0.340941,0.642576,-0.589916,-1.552,0.423413,2.22953, +-0.341178,0.643046,-0.590344,-1.5532,0.423708,2.23107, +-0.341415,0.643516,-0.590772,-1.5544,0.424002,2.23261, +-0.341652,0.643987,-0.591201,-1.5556,0.424298,2.23415, +-0.341889,0.644458,-0.59163,-1.5568,0.424593,2.23568, +-0.342126,0.64493,-0.592059,-1.558,0.424888,2.23722, +-0.342363,0.645401,-0.592488,-1.55919,0.425183,2.23875, +-0.342601,0.645873,-0.592917,-1.56039,0.425478,2.24028, +-0.342838,0.646344,-0.593346,-1.56159,0.425773,2.24181, +-0.343075,0.646816,-0.593776,-1.56279,0.426069,2.24333, +-0.343313,0.647288,-0.594206,-1.56399,0.426364,2.24486, +-0.343551,0.647761,-0.594636,-1.56518,0.42666,2.24638, +-0.343789,0.648234,-0.595067,-1.56638,0.426957,2.2479, +-0.344027,0.648707,-0.595497,-1.56758,0.427253,2.24942, +-0.344265,0.64918,-0.595928,-1.56877,0.427549,2.25093, +-0.344503,0.649653,-0.596358,-1.56997,0.427845,2.25245, +-0.344741,0.650126,-0.596789,-1.57117,0.428141,2.25396, +-0.344979,0.650599,-0.59722,-1.57236,0.428437,2.25547, +-0.345218,0.651073,-0.597651,-1.57356,0.428734,2.25698, +-0.345457,0.651548,-0.598083,-1.57475,0.429031,2.25848, +-0.345696,0.652022,-0.598515,-1.57595,0.429328,2.25999, +-0.345934,0.652497,-0.598947,-1.57714,0.429626,2.26149, +-0.346173,0.652972,-0.599379,-1.57833,0.429923,2.26299, +-0.346412,0.653446,-0.599811,-1.57953,0.43022,2.26449, +-0.346651,0.653921,-0.600244,-1.58072,0.430517,2.26598, +-0.34689,0.654396,-0.600676,-1.58191,0.430814,2.26748, +-0.347129,0.654872,-0.601109,-1.58311,0.431112,2.26897, +-0.347369,0.655348,-0.601542,-1.5843,0.43141,2.27046, +-0.347608,0.655824,-0.601976,-1.58549,0.431708,2.27194, +-0.347848,0.656301,-0.602409,-1.58668,0.432007,2.27343, +-0.348088,0.656777,-0.602843,-1.58787,0.432305,2.27491, +-0.348327,0.657254,-0.603277,-1.58906,0.432603,2.2764, +-0.348567,0.65773,-0.60371,-1.59025,0.432901,2.27787, +-0.348807,0.658207,-0.604144,-1.59144,0.4332,2.27935, +-0.349047,0.658684,-0.604579,-1.59263,0.433499,2.28083, +-0.349287,0.659162,-0.605014,-1.59381,0.433798,2.2823, +-0.349528,0.65964,-0.605449,-1.595,0.434097,2.28377, +-0.349768,0.660118,-0.605884,-1.59619,0.434396,2.28524, +-0.350009,0.660596,-0.606319,-1.59737,0.434695,2.2867, +-0.350249,0.661075,-0.606755,-1.59856,0.434995,2.28817, +-0.350489,0.661553,-0.60719,-1.59975,0.435294,2.28963, +-0.35073,0.662031,-0.607625,-1.60093,0.435593,2.29109, +-0.350971,0.66251,-0.608061,-1.60212,0.435893,2.29255, +-0.351212,0.66299,-0.608498,-1.6033,0.436193,2.294, +-0.351454,0.66347,-0.608935,-1.60448,0.436494,2.29545, +-0.351695,0.66395,-0.609371,-1.60567,0.436794,2.2969, +-0.351936,0.66443,-0.609808,-1.60685,0.437094,2.29835, +-0.352177,0.664909,-0.610245,-1.60803,0.437394,2.2998, +-0.352419,0.665389,-0.610682,-1.60921,0.437695,2.30124, +-0.35266,0.665869,-0.611119,-1.61039,0.437995,2.30269, +-0.352902,0.66635,-0.611556,-1.61157,0.438296,2.30412, +-0.353144,0.666831,-0.611994,-1.61275,0.438597,2.30556, +-0.353386,0.667313,-0.612432,-1.61392,0.438899,2.307, +-0.353628,0.667795,-0.612871,-1.6151,0.4392,2.30843, +-0.35387,0.668276,-0.613309,-1.61627,0.439501,2.30986, +-0.354112,0.668758,-0.613747,-1.61745,0.439802,2.31129, +-0.354355,0.66924,-0.614186,-1.61862,0.440104,2.31272, +-0.354597,0.669722,-0.614624,-1.6198,0.440405,2.31414, +-0.35484,0.670204,-0.615064,-1.62097,0.440707,2.31556, +-0.355083,0.670687,-0.615503,-1.62215,0.44101,2.31698, +-0.355325,0.67117,-0.615943,-1.62332,0.441312,2.3184, +-0.355568,0.671654,-0.616383,-1.62449,0.441614,2.31981, +-0.355811,0.672137,-0.616823,-1.62566,0.441916,2.32122, +-0.356054,0.67262,-0.617262,-1.62683,0.442219,2.32263, +-0.356297,0.673103,-0.617702,-1.628,0.442521,2.32404, +-0.35654,0.673587,-0.618142,-1.62917,0.442824,2.32544, +-0.356783,0.674071,-0.618583,-1.63033,0.443127,2.32685, +-0.357027,0.674555,-0.619024,-1.6315,0.44343,2.32825, +-0.357271,0.67504,-0.619465,-1.63266,0.443733,2.32965, +-0.357514,0.675525,-0.619906,-1.63382,0.444036,2.33104, +-0.357758,0.67601,-0.620348,-1.63499,0.44434,2.33244, +-0.358002,0.676495,-0.620789,-1.63615,0.444643,2.33383, +-0.358246,0.67698,-0.62123,-1.63731,0.444946,2.33522, +-0.35849,0.677465,-0.621672,-1.63847,0.44525,2.3366, +-0.358734,0.677951,-0.622114,-1.63963,0.445554,2.33798, +-0.358978,0.678438,-0.622557,-1.64079,0.445858,2.33937, +-0.359223,0.678924,-0.623,-1.64195,0.446163,2.34075, +-0.359467,0.679411,-0.623443,-1.64311,0.446467,2.34212, +-0.359712,0.679898,-0.623886,-1.64426,0.446772,2.3435, +-0.359956,0.680384,-0.624328,-1.64542,0.447076,2.34487, +-0.360201,0.680871,-0.624771,-1.64657,0.44738,2.34624, +-0.360446,0.681358,-0.625214,-1.64773,0.447685,2.3476, +-0.360691,0.681845,-0.625658,-1.64888,0.44799,2.34897, +-0.360936,0.682333,-0.626102,-1.65003,0.448295,2.35033, +-0.361182,0.682822,-0.626547,-1.65118,0.448601,2.35169, +-0.361427,0.68331,-0.626991,-1.65232,0.448906,2.35305, +-0.361672,0.683798,-0.627435,-1.65347,0.449211,2.3544, +-0.361917,0.684287,-0.62788,-1.65462,0.449517,2.35576, +-0.362163,0.684775,-0.628324,-1.65576,0.449822,2.35711, +-0.362408,0.685264,-0.628769,-1.65691,0.450128,2.35845, +-0.362654,0.685753,-0.629214,-1.65805,0.450434,2.3598, +-0.3629,0.686242,-0.62966,-1.65919,0.45074,2.36114, +-0.363147,0.686732,-0.630105,-1.66033,0.451046,2.36248, +-0.363393,0.687222,-0.630551,-1.66147,0.451353,2.36382, +-0.363639,0.687712,-0.630997,-1.66261,0.451659,2.36515, +-0.363885,0.688202,-0.631443,-1.66375,0.451965,2.36648, +-0.364131,0.688692,-0.631888,-1.66488,0.452272,2.36781, +-0.364377,0.689182,-0.632335,-1.66602,0.452578,2.36914, +-0.364624,0.689672,-0.632781,-1.66715,0.452885,2.37047, +-0.364871,0.690163,-0.633228,-1.66828,0.453193,2.37179, +-0.365118,0.690655,-0.633675,-1.66941,0.4535,2.37311, +-0.365365,0.691146,-0.634123,-1.67054,0.453807,2.37443, +-0.365611,0.691638,-0.63457,-1.67167,0.454115,2.37574, +-0.365858,0.692129,-0.635017,-1.67279,0.454422,2.37705, +-0.366105,0.692621,-0.635464,-1.67392,0.454729,2.37836, +-0.366352,0.693113,-0.635912,-1.67504,0.455037,2.37967, +-0.3666,0.693605,-0.63636,-1.67617,0.455345,2.38097, +-0.366847,0.694098,-0.636809,-1.67729,0.455653,2.38228, +-0.367095,0.694591,-0.637257,-1.67841,0.455961,2.38358, +-0.367343,0.695084,-0.637706,-1.67953,0.45627,2.38487, +-0.36759,0.695577,-0.638154,-1.68065,0.456578,2.38617, +-0.367838,0.69607,-0.638603,-1.68176,0.456886,2.38746, +-0.368086,0.696563,-0.639052,-1.68288,0.457194,2.38875, +-0.368334,0.697056,-0.639501,-1.68399,0.457503,2.39003, +-0.368582,0.69755,-0.63995,-1.6851,0.457812,2.39132, +-0.36883,0.698044,-0.6404,-1.68621,0.458121,2.3926, +-0.369079,0.698539,-0.64085,-1.68732,0.45843,2.39388, +-0.369327,0.699034,-0.6413,-1.68842,0.45874,2.39516, +-0.369575,0.699528,-0.64175,-1.68953,0.459049,2.39643, +-0.369824,0.700023,-0.6422,-1.69063,0.459358,2.3977, +-0.370072,0.700517,-0.64265,-1.69173,0.459667,2.39897, +-0.370321,0.701012,-0.6431,-1.69284,0.459977,2.40024, +-0.37057,0.701507,-0.643551,-1.69394,0.460287,2.4015, +-0.370819,0.702003,-0.644003,-1.69503,0.460597,2.40276, +-0.371068,0.702499,-0.644454,-1.69613,0.460907,2.40402, +-0.371317,0.702995,-0.644905,-1.69722,0.461217,2.40527, +-0.371566,0.703491,-0.645357,-1.69832,0.461527,2.40653, +-0.371816,0.703988,-0.645808,-1.69941,0.461837,2.40778, +-0.372065,0.704484,-0.64626,-1.7005,0.462148,2.40902, +-0.372314,0.70498,-0.646712,-1.70159,0.462458,2.41027, +-0.372564,0.705477,-0.647164,-1.70267,0.462769,2.41151, +-0.372814,0.705974,-0.647616,-1.70376,0.46308,2.41275, +-0.373064,0.706472,-0.648069,-1.70484,0.463391,2.41399, +-0.373314,0.70697,-0.648522,-1.70592,0.463702,2.41522, +-0.373564,0.707467,-0.648975,-1.707,0.464013,2.41645, +-0.373814,0.707965,-0.649427,-1.70808,0.464324,2.41768, +-0.374063,0.708462,-0.64988,-1.70916,0.464636,2.41891, +-0.374314,0.70896,-0.650333,-1.71023,0.464947,2.42013, +-0.374564,0.709458,-0.650787,-1.71131,0.465259,2.42135, +-0.374815,0.709957,-0.651241,-1.71238,0.465571,2.42257, +-0.375065,0.710456,-0.651695,-1.71345,0.465883,2.42379, +-0.375316,0.710955,-0.652149,-1.71451,0.466195,2.425, +-0.375566,0.711454,-0.652603,-1.71558,0.466507,2.42621, +-0.375817,0.711953,-0.653057,-1.71664,0.466819,2.42742, +-0.376068,0.712452,-0.653511,-1.71771,0.467131,2.42863, +-0.376319,0.712951,-0.653965,-1.71877,0.467443,2.42983, +-0.37657,0.713451,-0.65442,-1.71983,0.467755,2.43103, +-0.376821,0.713951,-0.654875,-1.72089,0.468068,2.43223, +-0.377072,0.714451,-0.655331,-1.72194,0.468381,2.43342, +-0.377324,0.714952,-0.655786,-1.72299,0.468694,2.43461, +-0.377575,0.715452,-0.656241,-1.72405,0.469007,2.4358, +-0.377826,0.715952,-0.656697,-1.72509,0.46932,2.43699, +-0.378078,0.716453,-0.657152,-1.72614,0.469633,2.43817, +-0.378329,0.716953,-0.657608,-1.72719,0.469946,2.43935, +-0.378581,0.717455,-0.658064,-1.72823,0.470259,2.44053, +-0.378833,0.717956,-0.65852,-1.72928,0.470573,2.44171, +-0.379085,0.718458,-0.658977,-1.73032,0.470887,2.44288, +-0.379337,0.71896,-0.659434,-1.73135,0.471201,2.44405, +-0.379589,0.719462,-0.65989,-1.73239,0.471514,2.44522, +-0.379841,0.719963,-0.660347,-1.73343,0.471828,2.44638, +-0.380093,0.720465,-0.660803,-1.73446,0.472142,2.44754, +-0.380346,0.720967,-0.66126,-1.73549,0.472456,2.4487, +-0.380598,0.721469,-0.661717,-1.73652,0.47277,2.44986, +-0.380851,0.721972,-0.662175,-1.73755,0.473085,2.45101, +-0.381104,0.722475,-0.662633,-1.73857,0.4734,2.45217, +-0.381357,0.722978,-0.663091,-1.73959,0.473714,2.45331, +-0.381609,0.723482,-0.663549,-1.74061,0.474029,2.45446, +-0.381862,0.723985,-0.664007,-1.74163,0.474344,2.4556, +-0.382115,0.724488,-0.664465,-1.74265,0.474658,2.45674, +-0.382368,0.724991,-0.664923,-1.74367,0.474973,2.45788, +-0.382621,0.725495,-0.665382,-1.74468,0.475289,2.45902, +-0.382875,0.725999,-0.665841,-1.74569,0.475604,2.46015, +-0.383128,0.726504,-0.6663,-1.7467,0.47592,2.46128, +-0.383382,0.727008,-0.66676,-1.74771,0.476235,2.4624, +-0.383635,0.727512,-0.667219,-1.74872,0.476551,2.46353, +-0.383889,0.728017,-0.667678,-1.74972,0.476866,2.46465, +-0.384142,0.728521,-0.668137,-1.75072,0.477182,2.46577, +-0.384396,0.729026,-0.668597,-1.75172,0.477498,2.46688, +-0.38465,0.729531,-0.669057,-1.75272,0.477814,2.468, +-0.384904,0.730036,-0.669517,-1.75371,0.47813,2.46911, +-0.385158,0.730541,-0.669978,-1.75471,0.478447,2.47021, +-0.385412,0.731046,-0.670438,-1.75569,0.478763,2.47132, +-0.385667,0.731552,-0.670898,-1.75668,0.479079,2.47242, +-0.385921,0.732057,-0.671359,-1.75767,0.479396,2.47352, +-0.386175,0.732562,-0.671819,-1.75865,0.479712,2.47462, +-0.386429,0.733067,-0.67228,-1.75963,0.480029,2.47571, +-0.386684,0.733573,-0.672741,-1.76061,0.480346,2.4768, +-0.386939,0.734079,-0.673202,-1.76159,0.480663,2.47789, +-0.387194,0.734586,-0.673664,-1.76257,0.48098,2.47897, +-0.387448,0.735092,-0.674126,-1.76354,0.481297,2.48006, +-0.387703,0.735598,-0.674587,-1.76451,0.481615,2.48114, +-0.387958,0.736104,-0.675049,-1.76548,0.481932,2.48221, +-0.388213,0.73661,-0.67551,-1.76644,0.482249,2.48329, +-0.388468,0.737116,-0.675972,-1.76741,0.482566,2.48436, +-0.388723,0.737623,-0.676435,-1.76837,0.482884,2.48543, +-0.388979,0.738129,-0.676897,-1.76933,0.483202,2.48649, +-0.389234,0.738636,-0.67736,-1.77028,0.48352,2.48756, +-0.38949,0.739143,-0.677823,-1.77124,0.483838,2.48862, +-0.389745,0.739649,-0.678286,-1.77219,0.484156,2.48968, +-0.390001,0.740156,-0.678749,-1.77314,0.484475,2.49073, +-0.390256,0.740662,-0.679212,-1.77409,0.484793,2.49178, +-0.390512,0.741169,-0.679675,-1.77504,0.485111,2.49283, +-0.390768,0.741676,-0.680138,-1.77598,0.48543,2.49388, +-0.391024,0.742183,-0.680602,-1.77692,0.485749,2.49492, +-0.39128,0.742691,-0.681066,-1.77786,0.486067,2.49596, +-0.391537,0.743198,-0.68153,-1.7788,0.486386,2.497, +-0.391793,0.743705,-0.681994,-1.77973,0.486705,2.49804, +-0.392049,0.744211,-0.682458,-1.78066,0.487024,2.49907, +-0.392305,0.744718,-0.682922,-1.78159,0.487343,2.5001, +-0.392561,0.745226,-0.683387,-1.78252,0.487662,2.50113, +-0.392818,0.745733,-0.683851,-1.78345,0.487982,2.50215, +-0.393075,0.74624,-0.684317,-1.78437,0.488301,2.50317, +-0.393332,0.746747,-0.684782,-1.78529,0.488621,2.50419, +-0.393589,0.747254,-0.685247,-1.78621,0.488941,2.50521, +-0.393846,0.747761,-0.685713,-1.78712,0.489261,2.50622, +-0.394103,0.748268,-0.686178,-1.78803,0.48958,2.50723, +-0.394359,0.748775,-0.686643,-1.78894,0.4899,2.50824, +-0.394616,0.749282,-0.687109,-1.78985,0.49022,2.50925, +-0.394874,0.749789,-0.687575,-1.79076,0.49054,2.51025, +-0.395132,0.750296,-0.688041,-1.79166,0.490861,2.51125, +-0.395389,0.750803,-0.688508,-1.79256,0.491182,2.51224, +-0.395647,0.75131,-0.688974,-1.79346,0.491502,2.51324, +-0.395904,0.751817,-0.689441,-1.79435,0.491823,2.51423, +-0.396162,0.752324,-0.689908,-1.79525,0.492144,2.51522, +-0.396419,0.752831,-0.690374,-1.79614,0.492464,2.5162, +-0.396677,0.753338,-0.690841,-1.79703,0.492785,2.51719, +-0.396935,0.753844,-0.691308,-1.79792,0.493107,2.51817, +-0.397194,0.754351,-0.691776,-1.7988,0.493428,2.51914, +-0.397452,0.754857,-0.692244,-1.79968,0.49375,2.52012, +-0.39771,0.755364,-0.692712,-1.80056,0.494071,2.52109, +-0.397968,0.75587,-0.69318,-1.80143,0.494393,2.52206, +-0.398227,0.756376,-0.693647,-1.80231,0.494714,2.52302, +-0.398485,0.756883,-0.694115,-1.80318,0.495035,2.52399, +-0.398743,0.757389,-0.694583,-1.80405,0.495357,2.52495, +-0.399002,0.757894,-0.695051,-1.80491,0.495679,2.5259, +-0.399261,0.7584,-0.69552,-1.80578,0.496002,2.52686, +-0.39952,0.758906,-0.69599,-1.80663,0.496324,2.52781, +-0.399779,0.759411,-0.696459,-1.80749,0.496646,2.52876, +-0.400038,0.759917,-0.696928,-1.80835,0.496969,2.52971, +-0.400297,0.760423,-0.697397,-1.8092,0.497291,2.53065, +-0.400556,0.760928,-0.697866,-1.81005,0.497614,2.53159, +-0.400815,0.761433,-0.698336,-1.8109,0.497936,2.53253, +-0.401075,0.761938,-0.698805,-1.81174,0.498259,2.53346, +-0.401335,0.762442,-0.699276,-1.81259,0.498583,2.53439, +-0.401594,0.762947,-0.699746,-1.81343,0.498906,2.53532, +-0.401854,0.763451,-0.700217,-1.81426,0.499229,2.53625, +-0.402114,0.763955,-0.700687,-1.8151,0.499553,2.53717, +-0.402373,0.76446,-0.701157,-1.81593,0.499876,2.5381, +-0.402633,0.764964,-0.701628,-1.81676,0.500199,2.53901, +-0.402893,0.765468,-0.702098,-1.81759,0.500523,2.53993, +-0.403153,0.765972,-0.70257,-1.81841,0.500847,2.54084, +-0.403414,0.766475,-0.703041,-1.81923,0.501171,2.54175, +-0.403674,0.766977,-0.703513,-1.82005,0.501495,2.54266, +-0.403935,0.76748,-0.703985,-1.82086,0.501819,2.54356, +-0.404195,0.767983,-0.704456,-1.82168,0.502143,2.54446, +-0.404455,0.768486,-0.704928,-1.82249,0.502468,2.54536, +-0.404716,0.768988,-0.705399,-1.8233,0.502792,2.54626, +-0.404977,0.769491,-0.705871,-1.8241,0.503116,2.54715, +-0.405238,0.769992,-0.706343,-1.8249,0.503441,2.54804, +-0.405499,0.770493,-0.706816,-1.8257,0.503766,2.54893, +-0.40576,0.770994,-0.707289,-1.8265,0.504091,2.54981, +-0.406021,0.771495,-0.707762,-1.82729,0.504417,2.55069, +-0.406282,0.771996,-0.708235,-1.82809,0.504742,2.55157, +-0.406543,0.772496,-0.708708,-1.82887,0.505067,2.55245, +-0.406805,0.772997,-0.709181,-1.82966,0.505392,2.55332, +-0.407066,0.773498,-0.709654,-1.83044,0.505717,2.55419, +-0.407328,0.773997,-0.710127,-1.83122,0.506043,2.55506, +-0.40759,0.774497,-0.710601,-1.832,0.506369,2.55592, +-0.407852,0.774995,-0.711075,-1.83278,0.506695,2.55679, +-0.408114,0.775494,-0.711549,-1.83355,0.507022,2.55765, +-0.408376,0.775992,-0.712023,-1.83432,0.507348,2.5585, +-0.408638,0.77649,-0.712497,-1.83508,0.507674,2.55936, +-0.4089,0.776988,-0.712971,-1.83585,0.508,2.56021, +-0.409162,0.777486,-0.713445,-1.83661,0.508326,2.56106, +-0.409424,0.777984,-0.71392,-1.83737,0.508653,2.5619, +-0.409687,0.778481,-0.714395,-1.83812,0.50898,2.56274, +-0.40995,0.778977,-0.71487,-1.83888,0.509307,2.56358, +-0.410213,0.779472,-0.715345,-1.83963,0.509634,2.56442, +-0.410475,0.779967,-0.715819,-1.84037,0.509961,2.56525, +-0.410738,0.780463,-0.716294,-1.84112,0.510288,2.56608, +-0.411001,0.780958,-0.716769,-1.84186,0.510615,2.56691, +-0.411264,0.781453,-0.717244,-1.8426,0.510943,2.56774, +-0.411527,0.781947,-0.717719,-1.84334,0.511271,2.56856, +-0.411791,0.782441,-0.718195,-1.84407,0.511599,2.56938, +-0.412054,0.782934,-0.718671,-1.8448,0.511927,2.5702, +-0.412318,0.783427,-0.719146,-1.84553,0.512255,2.57101, +-0.412581,0.783919,-0.719622,-1.84625,0.512583,2.57182, +-0.412845,0.784411,-0.720098,-1.84697,0.512912,2.57263, +-0.413109,0.784903,-0.720573,-1.84769,0.51324,2.57344, +-0.413373,0.785395,-0.721049,-1.84841,0.513568,2.57424, +-0.413637,0.785886,-0.721526,-1.84913,0.513897,2.57504, +-0.413901,0.786377,-0.722002,-1.84984,0.514227,2.57584, +-0.414166,0.786866,-0.722478,-1.85055,0.514556,2.57663, +-0.41443,0.787355,-0.722954,-1.85125,0.514885,2.57742, +-0.414695,0.787844,-0.723431,-1.85195,0.515215,2.57821, +-0.414959,0.788332,-0.723907,-1.85265,0.515544,2.579, +-0.415224,0.78882,-0.724383,-1.85335,0.515873,2.57978, +-0.415489,0.789308,-0.72486,-1.85405,0.516203,2.58056, +-0.415754,0.789796,-0.725336,-1.85474,0.516533,2.58134, +-0.416019,0.790283,-0.725812,-1.85543,0.516863,2.58211, +-0.416285,0.790768,-0.726289,-1.85612,0.517194,2.58288, +-0.41655,0.791253,-0.726765,-1.8568,0.517524,2.58365, +-0.416815,0.791738,-0.727242,-1.85748,0.517855,2.58442, +-0.417081,0.792222,-0.727718,-1.85816,0.518185,2.58518, +-0.417346,0.792705,-0.728194,-1.85883,0.518515,2.58594, +-0.417611,0.793188,-0.728671,-1.8595,0.518846,2.5867, +-0.417877,0.793671,-0.729147,-1.86017,0.519177,2.58745, +-0.418144,0.794152,-0.729624,-1.86084,0.519509,2.58821, +-0.41841,0.794633,-0.7301,-1.8615,0.51984,2.58896, +-0.418676,0.795113,-0.730577,-1.86216,0.520172,2.5897, +-0.418943,0.795592,-0.731053,-1.86282,0.520504,2.59045, +-0.419209,0.796072,-0.731529,-1.86348,0.520836,2.59119, +-0.419476,0.796551,-0.732006,-1.86413,0.521167,2.59193, +-0.419742,0.79703,-0.732482,-1.86478,0.521499,2.59266, +-0.420009,0.797508,-0.732958,-1.86543,0.521832,2.59339, +-0.420277,0.797986,-0.733435,-1.86607,0.522165,2.59412, +-0.420544,0.798462,-0.733911,-1.86671,0.522498,2.59485, +-0.420812,0.798938,-0.734387,-1.86735,0.522831,2.59557, +-0.421079,0.799413,-0.734863,-1.86799,0.523164,2.59629, +-0.421346,0.799887,-0.73534,-1.86862,0.523497,2.59701, +-0.421614,0.800361,-0.735816,-1.86926,0.52383,2.59773, +-0.421881,0.800834,-0.736291,-1.86988,0.524163,2.59844, +-0.422149,0.801306,-0.736767,-1.87051,0.524497,2.59915, +-0.422418,0.801778,-0.737242,-1.87113,0.524831,2.59985, +-0.422686,0.802248,-0.737718,-1.87175,0.525165,2.60056, +-0.422955,0.802717,-0.738193,-1.87237,0.5255,2.60126, +-0.423223,0.803186,-0.738668,-1.87299,0.525834,2.60196, +-0.423491,0.803654,-0.739144,-1.8736,0.526168,2.60265, +-0.42376,0.804122,-0.739619,-1.87421,0.526503,2.60335, +-0.424029,0.804589,-0.740094,-1.87481,0.526837,2.60403, +-0.424298,0.805056,-0.740569,-1.87542,0.527172,2.60472, +-0.424567,0.805522,-0.741043,-1.87602,0.527508,2.6054, +-0.424837,0.805986,-0.741518,-1.87662,0.527844,2.60609, +-0.425106,0.80645,-0.741992,-1.87721,0.52818,2.60676, +-0.425376,0.806913,-0.742467,-1.8778,0.528515,2.60744, +-0.425645,0.807375,-0.742941,-1.87839,0.528851,2.60811, +-0.425915,0.807836,-0.743415,-1.87898,0.529187,2.60878, +-0.426184,0.808297,-0.743889,-1.87957,0.529523,2.60945, +-0.426455,0.808758,-0.744363,-1.88015,0.52986,2.61011, +-0.426725,0.809217,-0.744836,-1.88073,0.530197,2.61077, +-0.426996,0.809674,-0.745309,-1.88131,0.530534,2.61143, +-0.427267,0.810131,-0.745783,-1.88188,0.530872,2.61209, +-0.427537,0.810587,-0.746256,-1.88245,0.531209,2.61274, +-0.427808,0.811043,-0.746729,-1.88302,0.531547,2.61339, +-0.428079,0.811498,-0.747202,-1.88359,0.531885,2.61404, +-0.42835,0.811953,-0.747675,-1.88416,0.532223,2.61468, +-0.428621,0.812407,-0.748148,-1.88472,0.532561,2.61532, +-0.428893,0.81286,-0.74862,-1.88528,0.5329,2.61596, +-0.429164,0.813311,-0.749091,-1.88584,0.533239,2.6166, +-0.429436,0.813762,-0.749563,-1.88639,0.533578,2.61723, +-0.429708,0.814211,-0.750034,-1.88694,0.533918,2.61786, +-0.429979,0.814659,-0.750505,-1.88749,0.534257,2.61849, +-0.430251,0.815107,-0.750976,-1.88804,0.534596,2.61911, +-0.430523,0.815554,-0.751447,-1.88858,0.534936,2.61973, +-0.430795,0.816,-0.751917,-1.88912,0.535275,2.62035, +-0.431068,0.816445,-0.752387,-1.88966,0.535616,2.62097, +-0.43134,0.816888,-0.752856,-1.8902,0.535957,2.62158, +-0.431613,0.81733,-0.753325,-1.89073,0.536298,2.62219, +-0.431885,0.817771,-0.753794,-1.89126,0.536639,2.6228, +-0.432158,0.818212,-0.754263,-1.89179,0.53698,2.6234, +-0.43243,0.818652,-0.754732,-1.89232,0.537321,2.624, +-0.432703,0.819091,-0.755201,-1.89284,0.537663,2.6246, +-0.432976,0.819531,-0.755669,-1.89336,0.538005,2.6252, +-0.43325,0.819972,-0.756137,-1.89388,0.538347,2.62579, +-0.433523,0.820412,-0.756604,-1.8944,0.53869,2.62638, +-0.433796,0.820854,-0.75707,-1.89491,0.539034,2.62697, +-0.43407,0.821296,-0.757536,-1.89542,0.539377,2.62755, +-0.434343,0.821737,-0.758003,-1.89593,0.53972,2.62813, +-0.434616,0.822179,-0.758468,-1.89643,0.540063,2.62871, +-0.43489,0.822621,-0.758933,-1.89694,0.540407,2.62929, +-0.435163,0.823064,-0.759397,-1.89744,0.54075,2.62986, +-0.435437,0.823506,-0.759861,-1.89794,0.541095,2.63043, +-0.435711,0.823949,-0.760324,-1.89843,0.54144,2.631, +-0.435985,0.824391,-0.760787,-1.89893,0.541785,2.63156, +-0.436259,0.824833,-0.76125,-1.89942,0.542131,2.63212, +-0.436532,0.825274,-0.761712,-1.89991,0.542476,2.63268, +-0.436806,0.825714,-0.762174,-1.90039,0.542821,2.63324, +-0.43708,0.826154,-0.762634,-1.90088,0.543167,2.63379, +-0.437354,0.826593,-0.763094,-1.90136,0.543513,2.63434, +-0.437628,0.827032,-0.763554,-1.90184,0.54386,2.63488, +-0.437902,0.82747,-0.764013,-1.90232,0.544207,2.63543, +-0.438176,0.827907,-0.764472,-1.90279,0.544555,2.63597, +-0.43845,0.828343,-0.76493,-1.90326,0.544902,2.63651, +-0.438724,0.828777,-0.765387,-1.90373,0.545249,2.63705, +-0.438998,0.82921,-0.765843,-1.9042,0.545597,2.63758, +-0.439272,0.829641,-0.766298,-1.90466,0.545944,2.63811, +-0.439545,0.830071,-0.766752,-1.90513,0.546292,2.63863, +-0.439819,0.830501,-0.767206,-1.90559,0.546641,2.63916, +-0.440092,0.830928,-0.767659,-1.90604,0.546989,2.63968, +-0.440366,0.831355,-0.768112,-1.9065,0.547338,2.6402, +-0.440639,0.83178,-0.768563,-1.90695,0.547687,2.64071, +-0.440913,0.832202,-0.769013,-1.9074,0.548035,2.64122, +-0.441186,0.832623,-0.769462,-1.90784,0.548384,2.64173, +-0.441459,0.833041,-0.769909,-1.90829,0.548732,2.64224, +-0.441732,0.833458,-0.770355,-1.90873,0.549081,2.64274, +-0.442004,0.833873,-0.770801,-1.90917,0.549429,2.64324, +-0.442276,0.834287,-0.771245,-1.90961,0.549778,2.64374, +-0.442547,0.834698,-0.771689,-1.91004,0.550126,2.64424, +-0.442819,0.835108,-0.772131,-1.91047,0.550475,2.64473, +-0.443091,0.835514,-0.772571,-1.9109,0.550823,2.64522, +-0.443362,0.835919,-0.77301,-1.91132,0.551171,2.6457, +-0.443633,0.836321,-0.773447,-1.91175,0.551519,2.64619, +-0.443904,0.836721,-0.773883,-1.91217,0.551867,2.64667, +-0.444174,0.837118,-0.774317,-1.91258,0.552214,2.64714, +-0.444444,0.837514,-0.774751,-1.913,0.55256,2.64762, +-0.444712,0.837908,-0.775183,-1.91341,0.552907,2.64809, +-0.444981,0.838299,-0.775614,-1.91382,0.553254,2.64856, +-0.44525,0.838688,-0.776043,-1.91422,0.5536,2.64903, +-0.445518,0.839073,-0.77647,-1.91463,0.553947,2.64949, +-0.445786,0.839456,-0.776896,-1.91503,0.554294,2.64995, +-0.446054,0.839836,-0.777319,-1.91543,0.554641,2.6504, +-0.446321,0.840215,-0.777742,-1.91582,0.55499,2.65086, +-0.446587,0.840591,-0.778163,-1.91621,0.555338,2.65131, +-0.446852,0.840964,-0.778583,-1.9166,0.555687,2.65175, +-0.447117,0.841336,-0.779001,-1.91699,0.556036,2.6522, +-0.447381,0.841704,-0.779417,-1.91737,0.556385,2.65264, +-0.447645,0.842069,-0.779831,-1.91776,0.556734,2.65308, +-0.447908,0.842432,-0.780243,-1.91814,0.557082,2.65351, +-0.448171,0.842792,-0.780653,-1.91851,0.55743,2.65394, +-0.448433,0.843149,-0.781063,-1.91888,0.557779,2.65437, +-0.448694,0.843505,-0.78147,-1.91925,0.558127,2.6548, +-0.448954,0.843858,-0.781877,-1.91962,0.558475,2.65522, +-0.449213,0.844208,-0.782281,-1.91999,0.558823,2.65564, +-0.449472,0.844556,-0.782683,-1.92035,0.55917,2.65606, +-0.44973,0.8449,-0.783084,-1.92071,0.559516,2.65647, +-0.449988,0.845242,-0.783482,-1.92106,0.559861,2.65688, +-0.450245,0.845581,-0.783879,-1.92142,0.560206,2.65729, +-0.450501,0.845918,-0.784274,-1.92177,0.56055,2.6577, +-0.450756,0.846253,-0.784667,-1.92212,0.560894,2.6581, +-0.451009,0.846585,-0.78506,-1.92246,0.561237,2.6585, +-0.451262,0.846915,-0.78545,-1.92281,0.56158,2.65889, +-0.451514,0.847242,-0.785838,-1.92315,0.561921,2.65929, +-0.451766,0.847566,-0.786224,-1.92349,0.56226,2.65967, +-0.452017,0.847887,-0.786609,-1.92382,0.562599,2.66006, +-0.452267,0.848206,-0.786991,-1.92415,0.562936,2.66044, +-0.452516,0.848523,-0.787372,-1.92448,0.563273,2.66082, +-0.452764,0.848837,-0.787751,-1.92481,0.563609,2.6612, +-0.45301,0.84915,-0.788129,-1.92514,0.563945,2.66157, +-0.453256,0.84946,-0.788505,-1.92546,0.564278,2.66195, +-0.453501,0.849767,-0.788879,-1.92578,0.564611,2.66231, +-0.453745,0.850071,-0.789251,-1.9261,0.564942,2.66268, +-0.453989,0.850373,-0.789621,-1.92641,0.565271,2.66304, +-0.454232,0.850672,-0.789989,-1.92672,0.565599,2.6634, +-0.454474,0.85097,-0.790356,-1.92703,0.565926,2.66376, +-0.454714,0.851265,-0.790721,-1.92734,0.566253,2.66411, +-0.454953,0.851558,-0.791085,-1.92765,0.566578,2.66446, +-0.455191,0.851849,-0.791447,-1.92795,0.566902,2.66481, +-0.455429,0.852137,-0.791807,-1.92825,0.567224,2.66515, +-0.455666,0.852423,-0.792165,-1.92855,0.567544,2.66549, +-0.455902,0.852706,-0.792521,-1.92885,0.567863,2.66583, +-0.456137,0.852987,-0.792875,-1.92914,0.568181,2.66617, +-0.456371,0.853266,-0.793227,-1.92943,0.568497,2.6665, +-0.456604,0.853543,-0.793579,-1.92972,0.568813,2.66683, +-0.456835,0.853818,-0.793929,-1.93001,0.569127,2.66716, +-0.457065,0.85409,-0.794277,-1.93029,0.56944,2.66748, +-0.457295,0.854361,-0.794623,-1.93057,0.569752,2.6678, +-0.457523,0.854628,-0.794967,-1.93086,0.570061,2.66812, +-0.457752,0.854894,-0.795309,-1.93113,0.570369,2.66844, +-0.457979,0.855157,-0.79565,-1.93141,0.570676,2.66875, +-0.458204,0.855418,-0.795989,-1.93169,0.570981,2.66906, +-0.458429,0.855677,-0.796327,-1.93196,0.571286,2.66937, +-0.458652,0.855935,-0.796663,-1.93223,0.571589,2.66967, +-0.458874,0.85619,-0.796998,-1.93249,0.571892,2.66997, +-0.459095,0.856443,-0.797331,-1.93276,0.572192,2.67027, +-0.459316,0.856694,-0.797662,-1.93302,0.572491,2.67057, +-0.459536,0.856942,-0.797991,-1.93328,0.572789,2.67086, +-0.459755,0.857188,-0.798318,-1.93354,0.573085,2.67116, +-0.459972,0.857432,-0.798644,-1.9338,0.57338,2.67144, +-0.460188,0.857675,-0.798969,-1.93406,0.573674,2.67173, +-0.460403,0.857915,-0.799292,-1.93431,0.573967,2.67202, +-0.460617,0.858154,-0.799614,-1.93456,0.574259,2.6723, +-0.46083,0.858391,-0.799934,-1.93481,0.574549,2.67258, +-0.461043,0.858625,-0.800252,-1.93506,0.574838,2.67285, +-0.461254,0.858857,-0.800568,-1.93531,0.575126,2.67313, +-0.461465,0.859086,-0.800883,-1.93555,0.575412,2.6734, +-0.461675,0.859314,-0.801196,-1.93579,0.575697,2.67367, +-0.461883,0.859541,-0.801508,-1.93603,0.575982,2.67393, +-0.46209,0.859765,-0.801819,-1.93627,0.576265,2.6742, +-0.462295,0.859988,-0.802128,-1.93651,0.576548,2.67446, +-0.4625,0.860209,-0.802436,-1.93674,0.576829,2.67472, +-0.462705,0.860427,-0.802741,-1.93698,0.577108,2.67498, +-0.462908,0.860643,-0.803045,-1.93721,0.577386,2.67523, +-0.463111,0.860857,-0.803347,-1.93744,0.577664,2.67549, +-0.463312,0.861069,-0.803648,-1.93767,0.57794,2.67574, +-0.463511,0.86128,-0.803948,-1.93789,0.578215,2.67598, +-0.46371,0.86149,-0.804247,-1.93812,0.57849,2.67623, +-0.463908,0.861697,-0.804544,-1.93834,0.578764,2.67647, +-0.464104,0.861902,-0.804839,-1.93856,0.579036,2.67672, +-0.464301,0.862105,-0.805133,-1.93878,0.579307,2.67696, +-0.464496,0.862306,-0.805425,-1.939,0.579577,2.67719, +-0.464691,0.862505,-0.805715,-1.93922,0.579846,2.67743, +-0.464884,0.862703,-0.806004,-1.93943,0.580114,2.67766, +-0.465076,0.862899,-0.806292,-1.93965,0.580382,2.67789, +-0.465266,0.863094,-0.806579,-1.93986,0.580648,2.67812, +-0.465456,0.863286,-0.806864,-1.94007,0.580914,2.67834, +-0.465645,0.863477,-0.807148,-1.94028,0.581179,2.67857, +-0.465833,0.863666,-0.80743,-1.94049,0.581442,2.67879, +-0.466021,0.863852,-0.80771,-1.94069,0.581704,2.67901, +-0.466208,0.864037,-0.807989,-1.9409,0.581965,2.67923, +-0.466393,0.86422,-0.808266,-1.9411,0.582226,2.67944, +-0.466577,0.864402,-0.808542,-1.9413,0.582485,2.67966, +-0.46676,0.864583,-0.808818,-1.9415,0.582745,2.67987, +-0.466942,0.864761,-0.809091,-1.9417,0.583003,2.68008, +-0.467123,0.864938,-0.809364,-1.9419,0.583261,2.68029, +-0.467304,0.865113,-0.809634,-1.94209,0.583517,2.6805, +-0.467483,0.865286,-0.809902,-1.94229,0.583771,2.6807, +-0.467662,0.865457,-0.810168,-1.94248,0.584025,2.6809, +-0.46784,0.865626,-0.810431,-1.94267,0.584279,2.6811, +-0.468016,0.865795,-0.810693,-1.94286,0.584532,2.6813, +-0.468191,0.865961,-0.810953,-1.94305,0.584784,2.6815, +-0.468364,0.866127,-0.811212,-1.94324,0.585035,2.68169, +-0.468536,0.86629,-0.811469,-1.94343,0.585285,2.68188, +-0.468707,0.86645,-0.811725,-1.94361,0.585534,2.68207, +-0.468877,0.866609,-0.811978,-1.94379,0.585781,2.68226, +-0.469046,0.866767,-0.81223,-1.94397,0.586028,2.68245, +-0.469213,0.866922,-0.812479,-1.94415,0.586274,2.68263, +-0.469378,0.867077,-0.812727,-1.94433,0.586519,2.68281, +-0.469542,0.867229,-0.812973,-1.9445,0.586764,2.68299, +-0.469704,0.867381,-0.813219,-1.94468,0.587008,2.68317, +-0.469866,0.86753,-0.813463,-1.94485,0.58725,2.68335, +-0.470027,0.867677,-0.813705,-1.94502,0.587491,2.68352, +-0.470188,0.867822,-0.813946,-1.94519,0.587731,2.68369, +-0.470347,0.867964,-0.814184,-1.94536,0.58797,2.68386, +-0.470504,0.868103,-0.814421,-1.94553,0.588209,2.68403, +-0.470661,0.868239,-0.814657,-1.94569,0.588446,2.6842, +-0.470815,0.868372,-0.814891,-1.94586,0.588683,2.68437, +-0.470969,0.868501,-0.815124,-1.94602,0.588919,2.68453, +-0.471122,0.868626,-0.815355,-1.94618,0.589154,2.68469, +-0.471274,0.868747,-0.815586,-1.94634,0.589387,2.68485, +-0.471426,0.868864,-0.815814,-1.9465,0.589619,2.68501, +-0.471576,0.868977,-0.816041,-1.94666,0.58985,2.68516, +-0.471725,0.869088,-0.816266,-1.94682,0.590081,2.68531, +-0.471872,0.869195,-0.81649,-1.94697,0.59031,2.68547, +-0.472018,0.869299,-0.816712,-1.94712,0.590539,2.68562, +-0.472164,0.8694,-0.816932,-1.94728,0.590767,2.68577, +-0.472308,0.8695,-0.817152,-1.94743,0.590994,2.68591, +-0.472452,0.869597,-0.817371,-1.94758,0.591219,2.68606, +-0.472595,0.869692,-0.817588,-1.94773,0.591443,2.6862, +-0.472737,0.869786,-0.817804,-1.94788,0.591666,2.68634, +-0.472877,0.869878,-0.818018,-1.94802,0.591888,2.68648, +-0.473017,0.869969,-0.818232,-1.94817,0.592109,2.68662, +-0.473155,0.87006,-0.818445,-1.94831,0.592329,2.68676, +-0.473293,0.870149,-0.818657,-1.94845,0.592549,2.68689, +-0.47343,0.870239,-0.818868,-1.9486,0.592767,2.68703, +-0.473567,0.870328,-0.819078,-1.94874,0.592984,2.68716, +-0.473703,0.870417,-0.819286,-1.94888,0.5932,2.68729, +-0.473839,0.870506,-0.819493,-1.94902,0.593414,2.68742, +-0.473973,0.870594,-0.819698,-1.94916,0.593628,2.68754, +-0.474106,0.870683,-0.819902,-1.9493,0.593841,2.68766, +-0.474238,0.870771,-0.820105,-1.94943,0.594053,2.68778, +-0.474369,0.870859,-0.820307,-1.94957,0.594264,2.68789, +-0.4745,0.870948,-0.820509,-1.9497,0.594474,2.688, +-0.47463,0.871036,-0.820709,-1.94984,0.594683,2.68811, +-0.474759,0.871124,-0.820907,-1.94997,0.59489,2.68821, +-0.474888,0.871212,-0.821105,-1.9501,0.595096,2.68831, +-0.475015,0.871299,-0.821301,-1.95023,0.595301,2.68841, +-0.475141,0.871384,-0.821496,-1.95036,0.595506,2.6885, +-0.475266,0.871469,-0.82169,-1.95049,0.595709,2.68859, +-0.475391,0.871553,-0.821883,-1.95062,0.595912,2.68868, +-0.475514,0.871637,-0.822076,-1.95074,0.596113,2.68877, +-0.475638,0.871721,-0.822267,-1.95087,0.596313,2.68885, +-0.475761,0.871803,-0.822457,-1.951,0.596511,2.68894, +-0.475884,0.871886,-0.822645,-1.95112,0.596708,2.68902, +-0.476005,0.871967,-0.822833,-1.95124,0.596905,2.6891, +-0.476125,0.872047,-0.823019,-1.95137,0.5971,2.68918, +-0.476245,0.872126,-0.823205,-1.95149,0.597295,2.68926, +-0.476363,0.872204,-0.82339,-1.95161,0.597489,2.68934, +-0.476481,0.872282,-0.823575,-1.95173,0.597681,2.68942, +-0.476599,0.872359,-0.823757,-1.95185,0.597872,2.6895, +-0.476716,0.872436,-0.823939,-1.95196,0.598061,2.68958, +-0.476832,0.872512,-0.824119,-1.95208,0.598249,2.68966, +-0.476948,0.872588,-0.824298,-1.9522,0.598437,2.68974, +-0.477062,0.872661,-0.824477,-1.95231,0.598623,2.68981, +-0.477176,0.872734,-0.824655,-1.95243,0.598809,2.68989, +-0.477288,0.872806,-0.824832,-1.95254,0.598993,2.68997, +-0.477401,0.872877,-0.825008,-1.95265,0.599176,2.69004, +-0.477513,0.872948,-0.825182,-1.95277,0.599357,2.69012, +-0.477624,0.873018,-0.825355,-1.95288,0.599537,2.69019, +-0.477735,0.873087,-0.825528,-1.95299,0.599716,2.69027, +-0.477846,0.873155,-0.825699,-1.9531,0.599894,2.69034, +-0.477955,0.873222,-0.825869,-1.95321,0.600071,2.69041, +-0.478063,0.873287,-0.826039,-1.95332,0.600247,2.69049, +-0.47817,0.873352,-0.826208,-1.95342,0.600421,2.69056, +-0.478277,0.873416,-0.826376,-1.95353,0.600595,2.69063, +-0.478384,0.873479,-0.826542,-1.95364,0.600766,2.6907, +-0.478491,0.873542,-0.826707,-1.95374,0.600936,2.69077, +-0.478597,0.873604,-0.826871,-1.95385,0.601105,2.69084, +-0.478702,0.873664,-0.827034,-1.95395,0.601273,2.6909, +-0.478805,0.873724,-0.827197,-1.95405,0.60144,2.69097, +-0.478908,0.873782,-0.827358,-1.95415,0.601607,2.69104, +-0.479011,0.873839,-0.827519,-1.95425,0.601772,2.6911, +-0.479112,0.873895,-0.827678,-1.95435,0.601935,2.69116, +-0.479214,0.873951,-0.827836,-1.95445,0.602097,2.69123, +-0.479315,0.874006,-0.827993,-1.95455,0.602257,2.69129, +-0.479415,0.87406,-0.828148,-1.95465,0.602416,2.69135, +-0.479514,0.874113,-0.828303,-1.95475,0.602574,2.69141, +-0.479613,0.874164,-0.828457,-1.95484,0.602731,2.69147, +-0.47971,0.874214,-0.82861,-1.95494,0.602887,2.69153, +-0.479807,0.874263,-0.828762,-1.95503,0.603042,2.69158, +-0.479904,0.874311,-0.828913,-1.95513,0.603195,2.69164, +-0.48,0.874359,-0.829062,-1.95522,0.603347,2.69169, +-0.480096,0.874406,-0.82921,-1.95531,0.603497,2.69175, +-0.480191,0.874452,-0.829356,-1.95541,0.603646,2.6918, +-0.480286,0.874497,-0.829502,-1.9555,0.603794,2.69185, +-0.480379,0.87454,-0.829647,-1.95559,0.603941,2.6919, +-0.480471,0.874582,-0.829792,-1.95568,0.604087,2.69195, +-0.480563,0.874623,-0.829935,-1.95576,0.604232,2.692, +-0.480654,0.874664,-0.830077,-1.95585,0.604375,2.69205, +-0.480745,0.874703,-0.830217,-1.95594,0.604517,2.69209, +-0.480836,0.874742,-0.830355,-1.95602,0.604657,2.69214, +-0.480925,0.87478,-0.830493,-1.95611,0.604795,2.69219, +-0.481014,0.874817,-0.83063,-1.9562,0.604933,2.69223, +-0.481102,0.874852,-0.830766,-1.95628,0.60507,2.69227, +-0.481188,0.874886,-0.830901,-1.95636,0.605206,2.69231, +-0.481275,0.874919,-0.831035,-1.95645,0.60534,2.69235, +-0.481361,0.874952,-0.831168,-1.95653,0.605474,2.69239, +-0.481446,0.874983,-0.831299,-1.95661,0.605605,2.69243, +-0.481532,0.875014,-0.831429,-1.95669,0.605735,2.69247, +-0.481616,0.875044,-0.831558,-1.95677,0.605864,2.6925, +-0.4817,0.875073,-0.831686,-1.95685,0.605991,2.69254, +-0.481783,0.8751,-0.831813,-1.95692,0.606118,2.69257, +-0.481865,0.875127,-0.831939,-1.957,0.606244,2.69261, +-0.481946,0.875152,-0.832064,-1.95708,0.606368,2.69264, +-0.482027,0.875177,-0.832188,-1.95715,0.606491,2.69267, +-0.482108,0.875201,-0.832311,-1.95723,0.606613,2.6927, +-0.482188,0.875224,-0.832432,-1.9573,0.606733,2.69273, +-0.482267,0.875246,-0.832552,-1.95738,0.606852,2.69276, +-0.482346,0.875268,-0.832671,-1.95745,0.606969,2.69278, +-0.482423,0.875288,-0.83279,-1.95752,0.607086,2.69281, +-0.4825,0.875306,-0.832908,-1.95759,0.607202,2.69283, +-0.482576,0.875324,-0.833025,-1.95766,0.607317,2.69285, +-0.482652,0.875341,-0.833141,-1.95773,0.607431,2.69288, +-0.482728,0.875358,-0.833255,-1.9578,0.607543,2.6929, +-0.482804,0.875374,-0.833368,-1.95787,0.607653,2.69292, +-0.482879,0.87539,-0.83348,-1.95794,0.607762,2.69294, +-0.482953,0.875404,-0.833591,-1.95801,0.607871,2.69296, +-0.483026,0.875416,-0.833702,-1.95808,0.607979,2.69298, +-0.483099,0.875428,-0.833812,-1.95814,0.608085,2.693, +-0.483171,0.875439,-0.833921,-1.95821,0.608191,2.69301, +-0.483242,0.87545,-0.834029,-1.95827,0.608296,2.69303, +-0.483314,0.87546,-0.834135,-1.95834,0.608398,2.69304, +-0.483385,0.875469,-0.834241,-1.9584,0.6085,2.69305, +-0.483455,0.875478,-0.834345,-1.95847,0.6086,2.69307, +-0.483525,0.875485,-0.834449,-1.95853,0.6087,2.69308, +-0.483594,0.875492,-0.834553,-1.95859,0.608799,2.69309, +-0.483662,0.875497,-0.834655,-1.95866,0.608897,2.6931, +-0.48373,0.875502,-0.834757,-1.95872,0.608994,2.69311, +-0.483798,0.875506,-0.834858,-1.95878,0.60909,2.69311, +-0.483866,0.875509,-0.834958,-1.95884,0.609185,2.69312, +-0.483933,0.875513,-0.835056,-1.9589,0.609278,2.69313, +-0.484001,0.875515,-0.835154,-1.95896,0.60937,2.69314, +-0.484067,0.875517,-0.835251,-1.95902,0.609462,2.69314, +-0.484133,0.875517,-0.835348,-1.95908,0.609553,2.69314, +-0.484198,0.875517,-0.835444,-1.95913,0.609643,2.69315, +-0.484263,0.875516,-0.835539,-1.95919,0.609732,2.69315, +-0.484327,0.875515,-0.835634,-1.95925,0.60982,2.69315, +-0.484392,0.875513,-0.835727,-1.95931,0.609907,2.69315, +-0.484456,0.875511,-0.835819,-1.95936,0.609993,2.69315, +-0.48452,0.875509,-0.835911,-1.95942,0.610078,2.69315, +-0.484584,0.875505,-0.836002,-1.95947,0.610162,2.69315, +-0.484646,0.875501,-0.836092,-1.95953,0.610246,2.69315, +-0.484708,0.875495,-0.836182,-1.95958,0.610329,2.69315, +-0.484771,0.875489,-0.836272,-1.95964,0.610411,2.69315, +-0.484833,0.875481,-0.83636,-1.95969,0.610492,2.69314, +-0.484895,0.875474,-0.836448,-1.95974,0.610572,2.69314, +-0.484957,0.875466,-0.836534,-1.9598,0.610651,2.69313, +-0.485019,0.875457,-0.83662,-1.95985,0.610729,2.69313, +-0.485079,0.875447,-0.836706,-1.9599,0.610806,2.69312, +-0.48514,0.875436,-0.836791,-1.95996,0.610883,2.69311, +-0.4852,0.875423,-0.836875,-1.96001,0.61096,2.6931, +-0.48526,0.87541,-0.83696,-1.96006,0.611036,2.6931, +-0.48532,0.875396,-0.837043,-1.96011,0.611111,2.69308, +-0.48538,0.875382,-0.837125,-1.96017,0.611184,2.69307, +-0.48544,0.875367,-0.837206,-1.96022,0.611257,2.69306, +-0.485499,0.875352,-0.837287,-1.96027,0.611329,2.69305, +-0.485558,0.875335,-0.837368,-1.96032,0.6114,2.69304, +-0.485617,0.875317,-0.837448,-1.96037,0.611472,2.69302, +-0.485675,0.875298,-0.837528,-1.96042,0.611542,2.693, +-0.485734,0.875278,-0.837607,-1.96047,0.611612,2.69299, +-0.485792,0.875258,-0.837685,-1.96052,0.611682,2.69297, +-0.485851,0.875237,-0.837763,-1.96057,0.61175,2.69295, +-0.485909,0.875215,-0.83784,-1.96062,0.611817,2.69293, +-0.485967,0.875193,-0.837916,-1.96067,0.611883,2.69291, +-0.486024,0.875169,-0.837992,-1.96072,0.611949,2.69289, +-0.486082,0.875144,-0.838067,-1.96077,0.612015,2.69287, +-0.486139,0.875118,-0.838143,-1.96081,0.61208,2.69285, +-0.486197,0.875091,-0.838218,-1.96086,0.612145,2.69282, +-0.486254,0.875064,-0.838292,-1.96091,0.612209,2.6928, +-0.486311,0.875036,-0.838365,-1.96096,0.612272,2.69277, +-0.486368,0.875008,-0.838438,-1.96101,0.612334,2.69275, +-0.486425,0.874979,-0.83851,-1.96106,0.612395,2.69272, +-0.486482,0.874949,-0.838582,-1.96111,0.612456,2.69269, +-0.486539,0.874917,-0.838654,-1.96115,0.612517,2.69267, +-0.486595,0.874885,-0.838725,-1.9612,0.612578,2.69264, +-0.486652,0.874852,-0.838796,-1.96125,0.612638,2.6926, +-0.486709,0.874818,-0.838867,-1.9613,0.612697,2.69257, +-0.486765,0.874784,-0.838936,-1.96135,0.612756,2.69254, +-0.486822,0.87475,-0.839005,-1.9614,0.612813,2.69251, +-0.486878,0.874714,-0.839073,-1.96144,0.61287,2.69247, +-0.486935,0.874678,-0.839142,-1.96149,0.612927,2.69244, +-0.486991,0.874641,-0.83921,-1.96154,0.612983,2.6924, +-0.487047,0.874603,-0.839278,-1.96159,0.613039,2.69237, +-0.487103,0.874564,-0.839345,-1.96164,0.613095,2.69233, +-0.48716,0.874525,-0.839412,-1.96168,0.61315,2.69229, +-0.487216,0.874486,-0.839479,-1.96173,0.613205,2.69225, +-0.487272,0.874446,-0.839544,-1.96178,0.613257,2.69221, +-0.487329,0.874406,-0.839609,-1.96183,0.613309,2.69217, +-0.487385,0.874365,-0.839674,-1.96187,0.613359,2.69213, +-0.487442,0.874323,-0.839739,-1.96192,0.613407,2.69209, +-0.487498,0.874281,-0.839804,-1.96197,0.613454,2.69205, +-0.487555,0.874238,-0.839869,-1.96202,0.6135,2.69201, +-0.487611,0.874194,-0.839933,-1.96206,0.613546,2.69197, +-0.487667,0.874151,-0.839996,-1.96211,0.613591,2.69192, +-0.487723,0.874107,-0.840059,-1.96216,0.613635,2.69188, +-0.48778,0.874063,-0.840121,-1.96221,0.61368,2.69183, +-0.487836,0.874018,-0.840183,-1.96226,0.613725,2.69179, +-0.487893,0.873972,-0.840245,-1.96231,0.613771,2.69174, +-0.48795,0.873926,-0.840307,-1.96235,0.613816,2.6917, +-0.488007,0.873879,-0.840369,-1.9624,0.613862,2.69165, +-0.488064,0.873833,-0.840431,-1.96245,0.613907,2.69161, +-0.48812,0.873786,-0.840491,-1.9625,0.613953,2.69156, +-0.488177,0.873739,-0.840551,-1.96255,0.613998,2.69151, +-0.488233,0.873692,-0.840611,-1.9626,0.614043,2.69147, +-0.488289,0.873644,-0.840671,-1.96265,0.614087,2.69142, +-0.488346,0.873595,-0.840731,-1.9627,0.614132,2.69137, +-0.488404,0.873545,-0.840791,-1.96275,0.614177,2.69132, +-0.488463,0.873494,-0.840852,-1.9628,0.614222,2.69127, +-0.488523,0.873442,-0.840913,-1.96285,0.614267,2.69122, +-0.488584,0.873389,-0.840974,-1.96291,0.614311,2.69117, +-0.488647,0.873336,-0.841035,-1.96296,0.614357,2.69111, +-0.488711,0.873281,-0.841097,-1.96302,0.614402,2.69106, +-0.488777,0.873225,-0.84116,-1.96307,0.614448,2.691, +-0.488845,0.873168,-0.841223,-1.96313,0.614496,2.69095, +-0.488915,0.873109,-0.841288,-1.96318,0.614543,2.69089, +-0.488987,0.873048,-0.841354,-1.96324,0.614591,2.69082, +-0.48906,0.872985,-0.841421,-1.96331,0.614638,2.69076, +-0.489134,0.872921,-0.841489,-1.96337,0.614686,2.6907, +-0.48921,0.872856,-0.841557,-1.96343,0.614734,2.69063, +-0.489288,0.872789,-0.841627,-1.9635,0.614783,2.69057, +-0.489368,0.87272,-0.841698,-1.96357,0.614832,2.6905, +-0.48945,0.872649,-0.841769,-1.96364,0.614881,2.69043, +-0.489534,0.872576,-0.841841,-1.96371,0.61493,2.69035, +-0.48962,0.872502,-0.841913,-1.96379,0.614979,2.69028, +-0.489707,0.872426,-0.841985,-1.96386,0.615028,2.6902, +-0.489795,0.872349,-0.842058,-1.96394,0.615077,2.69013, +-0.489885,0.872271,-0.84213,-1.96402,0.615125,2.69005, +-0.489976,0.872191,-0.842203,-1.9641,0.615174,2.68997, +-0.49007,0.872109,-0.842277,-1.96418,0.615222,2.68989, +-0.490165,0.872025,-0.842351,-1.96427,0.615271,2.6898, +-0.490262,0.87194,-0.842425,-1.96435,0.615319,2.68972, +-0.490361,0.871853,-0.842499,-1.96444,0.615368,2.68963, +-0.490461,0.871764,-0.842573,-1.96453,0.615416,2.68954, +-0.490562,0.871675,-0.842647,-1.96462,0.615465,2.68945, +-0.490664,0.871584,-0.842721,-1.96471,0.615513,2.68936, +-0.490768,0.871492,-0.842795,-1.9648,0.615561,2.68927, +-0.490874,0.871398,-0.842869,-1.9649,0.615608,2.68918, +-0.490981,0.871303,-0.842943,-1.96499,0.615654,2.68908, +-0.49109,0.871205,-0.843017,-1.96509,0.615701,2.68898, +-0.4912,0.871107,-0.843091,-1.96519,0.615747,2.68889, +-0.491311,0.871007,-0.843166,-1.96529,0.615793,2.68879, +-0.491424,0.870906,-0.84324,-1.96539,0.61584,2.68868, +-0.491537,0.870804,-0.843313,-1.96549,0.615886,2.68858, +-0.491651,0.8707,-0.843387,-1.9656,0.615931,2.68848, +-0.491768,0.870595,-0.843459,-1.9657,0.615976,2.68837, +-0.491885,0.870489,-0.843532,-1.96581,0.61602,2.68827, +-0.492004,0.87038,-0.843604,-1.96592,0.616063,2.68816, +-0.492125,0.870271,-0.843676,-1.96603,0.616106,2.68805, +-0.492246,0.87016,-0.843748,-1.96614,0.616149,2.68794, +-0.492367,0.870049,-0.84382,-1.96625,0.616191,2.68783, +-0.49249,0.869937,-0.843892,-1.96636,0.616234,2.68771, +-0.492614,0.869823,-0.843964,-1.96647,0.616276,2.6876, +-0.492739,0.869708,-0.844034,-1.96659,0.616317,2.68749, +-0.492865,0.869591,-0.844104,-1.96671,0.616357,2.68737, +-0.492992,0.869473,-0.844173,-1.96682,0.616396,2.68725, +-0.493121,0.869354,-0.844242,-1.96694,0.616435,2.68713, +-0.49325,0.869234,-0.844311,-1.96706,0.616473,2.68701, +-0.49338,0.869114,-0.84438,-1.96718,0.616511,2.68689, +-0.49351,0.868992,-0.844448,-1.9673,0.616548,2.68677, +-0.493641,0.86887,-0.844516,-1.96743,0.616585,2.68665, +-0.493774,0.868746,-0.844583,-1.96755,0.61662,2.68652, +-0.493907,0.86862,-0.84465,-1.96768,0.616655,2.6864, +-0.494042,0.868494,-0.844715,-1.9678,0.616689,2.68627, +-0.494177,0.868366,-0.84478,-1.96793,0.616721,2.68614, +-0.494313,0.868238,-0.844844,-1.96806,0.616754,2.68602, +-0.494449,0.868109,-0.844908,-1.96819,0.616786,2.68589, +-0.494585,0.86798,-0.844971,-1.96832,0.616818,2.68576, +-0.494723,0.867849,-0.845034,-1.96845,0.616848,2.68563, +-0.494861,0.867718,-0.845096,-1.96858,0.616878,2.6855, +-0.495,0.867585,-0.845157,-1.96871,0.616907,2.68536, +-0.49514,0.867451,-0.845217,-1.96885,0.616935,2.68523, +-0.495281,0.867316,-0.845276,-1.96898,0.616962,2.68509, +-0.495422,0.867181,-0.845334,-1.96912,0.616988,2.68496, +-0.495563,0.867046,-0.845393,-1.96925,0.617014,2.68482, +-0.495705,0.866909,-0.845451,-1.96939,0.617039,2.68469, +-0.495847,0.866773,-0.845508,-1.96952,0.617063,2.68455, +-0.495989,0.866635,-0.845564,-1.96966,0.617086,2.68441, +-0.496133,0.866496,-0.845619,-1.9698,0.617108,2.68427, +-0.496277,0.866356,-0.845673,-1.96994,0.617129,2.68413, +-0.496422,0.866215,-0.845726,-1.97008,0.617149,2.68399, +-0.496567,0.866074,-0.845778,-1.97022,0.617169,2.68385, +-0.496711,0.865933,-0.84583,-1.97036,0.617188,2.68371, +-0.496856,0.865792,-0.845881,-1.97051,0.617206,2.68357, +-0.497001,0.86565,-0.845932,-1.97065,0.617223,2.68343, +-0.497147,0.865507,-0.845981,-1.97079,0.61724,2.68329, +-0.497293,0.865363,-0.846029,-1.97093,0.617255,2.68314, +-0.49744,0.865219,-0.846076,-1.97108,0.617269,2.683, +-0.497587,0.865074,-0.846122,-1.97122,0.617282,2.68285, +-0.497734,0.864929,-0.846167,-1.97137,0.617294,2.68271, +-0.497881,0.864784,-0.846212,-1.97151,0.617306,2.68256, +-0.498028,0.864639,-0.846256,-1.97166,0.617317,2.68242, +-0.498175,0.864493,-0.8463,-1.9718,0.617327,2.68227, +-0.498323,0.864347,-0.846342,-1.97195,0.617336,2.68213, +-0.498471,0.8642,-0.846382,-1.9721,0.617344,2.68198, +-0.49862,0.864052,-0.846422,-1.97224,0.61735,2.68183, +-0.498768,0.863904,-0.846461,-1.97239,0.617356,2.68168, +-0.498916,0.863756,-0.846498,-1.97254,0.617361,2.68153, +-0.499064,0.863609,-0.846536,-1.97269,0.617365,2.68139, +-0.499212,0.863461,-0.846572,-1.97284,0.617369,2.68124, +-0.49936,0.863313,-0.846608,-1.97298,0.617372,2.68109, +-0.499509,0.863164,-0.846642,-1.97313,0.617374,2.68094, +-0.499657,0.863014,-0.846675,-1.97328,0.617374,2.68079, +-0.499805,0.862864,-0.846707,-1.97343,0.617374,2.68064, +-0.499953,0.862714,-0.846736,-1.97358,0.617372,2.68049, +-0.5001,0.862564,-0.846763,-1.97373,0.61737,2.68034, +-0.500246,0.862415,-0.846788,-1.97388,0.617367,2.68019, +-0.500391,0.862265,-0.84681,-1.97403,0.617364,2.68004, +-0.500536,0.862117,-0.84683,-1.97418,0.61736,2.67989, +-0.50068,0.861969,-0.846849,-1.97433,0.617354,2.67975, +-0.500825,0.861821,-0.846866,-1.97448,0.617348,2.6796, +-0.500969,0.861673,-0.846882,-1.97462,0.61734,2.67945, +-0.501114,0.861525,-0.846898,-1.97477,0.61733,2.6793, +-0.50126,0.861378,-0.846912,-1.97492,0.61732,2.67916, +-0.501405,0.86123,-0.846926,-1.97507,0.61731,2.67901, +-0.501551,0.861082,-0.846939,-1.97521,0.617298,2.67886, +-0.501696,0.860934,-0.846953,-1.97536,0.617285,2.67871, +-0.501842,0.860785,-0.846967,-1.97551,0.617271,2.67856, +-0.501988,0.860635,-0.846982,-1.97566,0.617255,2.67841, +-0.502133,0.860485,-0.846997,-1.97581,0.617238,2.67826, +-0.502279,0.860335,-0.847012,-1.97596,0.61722,2.67811, +-0.502424,0.860185,-0.847028,-1.97611,0.6172,2.67796, +-0.50257,0.860035,-0.847043,-1.97626,0.61718,2.67781, +-0.502715,0.859885,-0.847058,-1.97641,0.617158,2.67766, +-0.50286,0.859735,-0.847073,-1.97656,0.617136,2.67751, +-0.503005,0.859584,-0.847087,-1.97671,0.617112,2.67736, +-0.50315,0.859433,-0.847099,-1.97686,0.617086,2.67721, +-0.503295,0.859281,-0.847111,-1.97702,0.617058,2.67706, +-0.503439,0.85913,-0.847121,-1.97717,0.617029,2.67691, +-0.503584,0.858978,-0.84713,-1.97732,0.616999,2.67676, +-0.503729,0.858827,-0.847138,-1.97747,0.616968,2.67661, +-0.503873,0.858677,-0.847145,-1.97762,0.616936,2.67645, +-0.504017,0.858526,-0.84715,-1.97777,0.616902,2.6763, +-0.50416,0.858375,-0.847154,-1.97792,0.616867,2.67615, +-0.504303,0.858223,-0.847156,-1.97807,0.61683,2.676, +-0.504446,0.858071,-0.847157,-1.97823,0.616791,2.67585, +-0.50459,0.85792,-0.847156,-1.97838,0.61675,2.6757, +-0.504733,0.857768,-0.847156,-1.97853,0.616708,2.67555, +-0.504876,0.857618,-0.847154,-1.97868,0.616665,2.6754, +-0.505018,0.857467,-0.847152,-1.97883,0.616621,2.67525, +-0.50516,0.857317,-0.847149,-1.97898,0.616575,2.67509, +-0.505301,0.857166,-0.847145,-1.97913,0.616527,2.67494, +-0.505442,0.857015,-0.847139,-1.97928,0.616477,2.67479, +-0.505582,0.856865,-0.847132,-1.97943,0.616426,2.67464, +-0.505723,0.856714,-0.847124,-1.97958,0.616372,2.67449, +-0.505863,0.856564,-0.847115,-1.97973,0.616317,2.67434, +-0.506003,0.856414,-0.847104,-1.97988,0.616261,2.67419, +-0.506143,0.856265,-0.847093,-1.98003,0.616204,2.67404, +-0.506282,0.856116,-0.847081,-1.98018,0.616144,2.67389, +-0.50642,0.855967,-0.847067,-1.98033,0.616083,2.67375, +-0.506557,0.855818,-0.847052,-1.98048,0.61602,2.6736, +-0.506694,0.855669,-0.847034,-1.98063,0.615954,2.67345, +-0.506831,0.85552,-0.847016,-1.98078,0.615887,2.6733, +-0.506967,0.855372,-0.846996,-1.98092,0.615818,2.67315, +-0.507103,0.855225,-0.846975,-1.98107,0.615747,2.673, +-0.507239,0.855078,-0.846953,-1.98122,0.615676,2.67286, +-0.507374,0.854932,-0.84693,-1.98137,0.615602,2.67271, +-0.507508,0.854786,-0.846905,-1.98151,0.615526,2.67256, +-0.507641,0.854639,-0.846878,-1.98166,0.615448,2.67242, +-0.507774,0.854493,-0.846849,-1.9818,0.615367,2.67227, +-0.507906,0.854347,-0.846819,-1.98195,0.615285,2.67213, +-0.508038,0.854202,-0.846787,-1.98209,0.615201,2.67198, +-0.50817,0.854058,-0.846754,-1.98224,0.615115,2.67184, +-0.508301,0.853915,-0.846719,-1.98238,0.615028,2.67169, +-0.508431,0.853773,-0.846683,-1.98252,0.614938,2.67155, +-0.50856,0.853633,-0.846645,-1.98266,0.614847,2.67141, +-0.508688,0.853495,-0.846605,-1.9828,0.614753,2.67127, +-0.508815,0.853358,-0.846563,-1.98294,0.614658,2.67114, +-0.508939,0.853223,-0.84652,-1.98307,0.614561,2.671, +-0.509062,0.853088,-0.846475,-1.98321,0.614462,2.67087, +-0.509183,0.852954,-0.846428,-1.98334,0.614363,2.67073, +-0.509302,0.852821,-0.846381,-1.98348,0.614262,2.6706, +-0.509419,0.852689,-0.846331,-1.98361,0.61416,2.67047, +-0.509534,0.852559,-0.84628,-1.98374,0.614056,2.67034, +-0.509648,0.85243,-0.846226,-1.98387,0.61395,2.67021, +-0.50976,0.852303,-0.846171,-1.98399,0.613844,2.67008, +-0.509871,0.852177,-0.846114,-1.98412,0.613736,2.66996, +-0.509981,0.852052,-0.846055,-1.98424,0.613627,2.66983, +-0.51009,0.851928,-0.845996,-1.98437,0.613517,2.66971, +-0.510198,0.851805,-0.845934,-1.98449,0.613407,2.66958, +-0.510305,0.851684,-0.845872,-1.98461,0.613295,2.66946, +-0.51041,0.851564,-0.845807,-1.98473,0.613183,2.66934, +-0.510514,0.851445,-0.84574,-1.98485,0.613069,2.66922, +-0.510616,0.851328,-0.845671,-1.98497,0.612953,2.66911, +-0.510717,0.851212,-0.845601,-1.98509,0.612838,2.66899, +-0.510818,0.851097,-0.84553,-1.9852,0.612721,2.66887, +-0.510917,0.850982,-0.845457,-1.98531,0.612604,2.66876, +-0.511015,0.850868,-0.845383,-1.98543,0.612487,2.66865, +-0.511112,0.850756,-0.845308,-1.98554,0.612369,2.66853, +-0.511208,0.850644,-0.84523,-1.98565,0.61225,2.66842, +-0.511302,0.850535,-0.845151,-1.98576,0.612129,2.66831, +-0.511395,0.850426,-0.84507,-1.98587,0.612008,2.6682, +-0.511486,0.850319,-0.844988,-1.98598,0.611887,2.6681, +-0.511577,0.850213,-0.844904,-1.98608,0.611765,2.66799, +-0.511667,0.850107,-0.84482,-1.98619,0.611642,2.66789, +-0.511756,0.850003,-0.844734,-1.98629,0.61152,2.66778, +-0.511844,0.849899,-0.844647,-1.9864,0.611397,2.66768, +-0.51193,0.849797,-0.844559,-1.9865,0.611273,2.66758, +-0.512015,0.849697,-0.844469,-1.9866,0.611148,2.66747, +-0.512098,0.849597,-0.844377,-1.9867,0.611022,2.66738, +-0.512181,0.849499,-0.844284,-1.9868,0.610896,2.66728, +-0.512263,0.849401,-0.84419,-1.9869,0.610769,2.66718, +-0.512344,0.849304,-0.844096,-1.98699,0.610643,2.66708, +-0.512424,0.849208,-0.844,-1.98709,0.610516,2.66699, +-0.512503,0.849113,-0.843904,-1.98718,0.610389,2.66689, +-0.512581,0.849019,-0.843805,-1.98728,0.610261,2.6668, +-0.512657,0.848927,-0.843706,-1.98737,0.610132,2.6667, +-0.512732,0.848835,-0.843605,-1.98746,0.610002,2.66661, +-0.512806,0.848745,-0.843503,-1.98755,0.609872,2.66652, +-0.512879,0.848656,-0.843401,-1.98764,0.609742,2.66643, +-0.512951,0.848567,-0.843297,-1.98773,0.609612,2.66635, +-0.513023,0.848479,-0.843194,-1.98782,0.609481,2.66626, +-0.513093,0.848392,-0.843089,-1.98791,0.60935,2.66617, +-0.513162,0.848306,-0.842982,-1.98799,0.609219,2.66608, +-0.51323,0.848222,-0.842875,-1.98808,0.609087,2.666, +-0.513296,0.848139,-0.842766,-1.98816,0.608954,2.66592, +-0.513362,0.848057,-0.842657,-1.98824,0.60882,2.66583, +-0.513426,0.847975,-0.842546,-1.98832,0.608687,2.66575, +-0.51349,0.847895,-0.842436,-1.9884,0.608553,2.66567, +-0.513553,0.847815,-0.842325,-1.98848,0.608419,2.66559, +-0.513616,0.847736,-0.842213,-1.98856,0.608285,2.66551, +-0.513676,0.847658,-0.842099,-1.98864,0.608151,2.66544, +-0.513736,0.847581,-0.841985,-1.98872,0.608015,2.66536, +-0.513794,0.847506,-0.841869,-1.98879,0.607879,2.66528, +-0.513851,0.847432,-0.841753,-1.98887,0.607742,2.66521, +-0.513908,0.847358,-0.841636,-1.98894,0.607606,2.66514, +-0.513963,0.847285,-0.841519,-1.98901,0.607469,2.66506, +-0.514018,0.847213,-0.841401,-1.98908,0.607332,2.66499, +-0.514072,0.847142,-0.841282,-1.98916,0.607195,2.66492, +-0.514125,0.847072,-0.841162,-1.98923,0.607057,2.66485, +-0.514176,0.847003,-0.841041,-1.98929,0.606919,2.66478, +-0.514226,0.846935,-0.840919,-1.98936,0.60678,2.66471, +-0.514275,0.846869,-0.840797,-1.98943,0.60664,2.66465, +-0.514324,0.846803,-0.840674,-1.98949,0.606501,2.66458, +-0.514371,0.846738,-0.84055,-1.98956,0.606361,2.66452, +-0.514418,0.846673,-0.840426,-1.98962,0.606222,2.66445, +-0.514464,0.846609,-0.840301,-1.98969,0.606082,2.66439, +-0.514509,0.846547,-0.840176,-1.98975,0.605941,2.66432, +-0.514552,0.846486,-0.840049,-1.98981,0.6058,2.66426, +-0.514594,0.846426,-0.839921,-1.98987,0.605658,2.6642, +-0.514636,0.846367,-0.839792,-1.98993,0.605516,2.66415, +-0.514676,0.846309,-0.839663,-1.98999,0.605374,2.66409, +-0.514716,0.846251,-0.839534,-1.99005,0.605231,2.66403, +-0.514755,0.846194,-0.839404,-1.9901,0.605089,2.66397, +-0.514793,0.846138,-0.839274,-1.99016,0.604947,2.66392, +-0.514829,0.846083,-0.839142,-1.99021,0.604803,2.66386, +-0.514865,0.84603,-0.83901,-1.99027,0.60466,2.66381, +-0.514899,0.845978,-0.838876,-1.99032,0.604515,2.66376, +-0.514932,0.845927,-0.838742,-1.99037,0.604371,2.6637, +-0.514964,0.845876,-0.838607,-1.99042,0.604226,2.66365, +-0.514996,0.845826,-0.838473,-1.99047,0.604082,2.6636, +-0.515027,0.845777,-0.838337,-1.99052,0.603937,2.66356, +-0.515057,0.845729,-0.838201,-1.99057,0.603792,2.66351, +-0.515086,0.845682,-0.838064,-1.99062,0.603647,2.66346, +-0.515113,0.845637,-0.837926,-1.99066,0.603501,2.66341, +-0.515139,0.845592,-0.837788,-1.9907,0.603355,2.66337, +-0.515164,0.845549,-0.837648,-1.99075,0.603208,2.66333, +-0.515188,0.845506,-0.837509,-1.99079,0.603062,2.66328, +-0.515212,0.845464,-0.837369,-1.99083,0.602916,2.66324, +-0.515235,0.845423,-0.837229,-1.99087,0.60277,2.6632, +-0.515257,0.845383,-0.837089,-1.99091,0.602624,2.66316, +-0.515278,0.845344,-0.836948,-1.99095,0.602477,2.66312, +-0.515297,0.845306,-0.836806,-1.99099,0.60233,2.66308, +-0.515315,0.84527,-0.836663,-1.99103,0.602183,2.66305, +-0.515332,0.845234,-0.83652,-1.99106,0.602036,2.66301, +-0.515349,0.8452,-0.836377,-1.9911,0.601889,2.66298, +-0.515364,0.845166,-0.836233,-1.99113,0.601743,2.66294, +-0.515379,0.845133,-0.83609,-1.99116,0.601596,2.66291, +-0.515393,0.8451,-0.835946,-1.9912,0.601449,2.66288, +-0.515406,0.845069,-0.835802,-1.99123,0.601303,2.66285, +-0.515417,0.84504,-0.835657,-1.99126,0.601156,2.66282, +-0.515427,0.845012,-0.835511,-1.99129,0.601009,2.66279, +-0.515436,0.844985,-0.835365,-1.99131,0.600863,2.66276, +-0.515445,0.844958,-0.835219,-1.99134,0.600716,2.66274, +-0.515453,0.844932,-0.835073,-1.99136,0.60057,2.66271, +-0.51546,0.844907,-0.834927,-1.99139,0.600424,2.66269, +-0.515466,0.844883,-0.83478,-1.99141,0.600278,2.66266, +-0.515471,0.84486,-0.834633,-1.99144,0.600133,2.66264, +-0.515474,0.844839,-0.834486,-1.99146,0.599987,2.66262, +-0.515476,0.844819,-0.834338,-1.99148,0.599841,2.6626, +-0.515478,0.8448,-0.83419,-1.9915,0.599695,2.66258, +-0.515479,0.844782,-0.834041,-1.99152,0.59955,2.66256, +-0.515479,0.844764,-0.833893,-1.99153,0.599404,2.66254, +-0.515478,0.844747,-0.833745,-1.99155,0.599259,2.66253, +-0.515477,0.844731,-0.833597,-1.99157,0.599114,2.66251, +-0.515474,0.844717,-0.833449,-1.99158,0.59897,2.66249, +-0.51547,0.844703,-0.833299,-1.99159,0.598826,2.66248, +-0.515465,0.844691,-0.83315,-1.99161,0.598681,2.66247, +-0.515459,0.84468,-0.833,-1.99162,0.598537,2.66246, +-0.515452,0.84467,-0.83285,-1.99163,0.598393,2.66245, +-0.515444,0.844661,-0.832701,-1.99164,0.598249,2.66244, +-0.515435,0.844652,-0.832551,-1.99165,0.598105,2.66243, +-0.515426,0.844644,-0.832402,-1.99165,0.597962,2.66242, +-0.515415,0.844637,-0.832252,-1.99166,0.597819,2.66242, +-0.515402,0.844632,-0.832102,-1.99166,0.597677,2.66241, +-0.515389,0.844628,-0.831951,-1.99167,0.597535,2.66241, +-0.515373,0.844625,-0.8318,-1.99167,0.597392,2.6624, +-0.515357,0.844623,-0.831649,-1.99167,0.59725,2.6624, +-0.51534,0.844621,-0.831499,-1.99168,0.597108,2.6624, +-0.515322,0.84462,-0.831349,-1.99168,0.596966,2.6624, +-0.515303,0.84462,-0.831199,-1.99168,0.596825,2.6624, +-0.515282,0.844621,-0.831048,-1.99168,0.596684,2.6624, +-0.51526,0.844623,-0.830897,-1.99167,0.596544,2.6624, +-0.515236,0.844627,-0.830746,-1.99167,0.596405,2.66241, +-0.51521,0.844632,-0.830595,-1.99167,0.596265,2.66241, +-0.515183,0.844638,-0.830444,-1.99166,0.596125,2.66242, +-0.515156,0.844644,-0.830293,-1.99165,0.595986,2.66242, +-0.515127,0.844651,-0.830143,-1.99165,0.595846,2.66243, +-0.515097,0.844658,-0.829993,-1.99164,0.595708,2.66244, +-0.515065,0.844667,-0.829842,-1.99163,0.59557,2.66245, +-0.515032,0.844678,-0.829691,-1.99162,0.595432,2.66246, +-0.514996,0.84469,-0.82954,-1.99161,0.595296,2.66247, +-0.514959,0.844704,-0.829389,-1.99159,0.595159,2.66248, +-0.514921,0.844718,-0.829238,-1.99158,0.595023,2.6625, +-0.514882,0.844733,-0.829088,-1.99156,0.594887,2.66251, +-0.514841,0.84475,-0.828938,-1.99155,0.59475,2.66253, +-0.514799,0.844767,-0.828788,-1.99153,0.594615,2.66255, +-0.514755,0.844786,-0.828638,-1.99151,0.59448,2.66256, +-0.51471,0.844807,-0.828487,-1.99149,0.594346,2.66259, +-0.514662,0.844829,-0.828337,-1.99147,0.594213,2.66261, +-0.514613,0.844853,-0.828187,-1.99144,0.59408,2.66263, +-0.514562,0.844878,-0.828037,-1.99142,0.593948,2.66266, +-0.51451,0.844904,-0.827887,-1.99139,0.593815,2.66268, +-0.514457,0.844932,-0.827738,-1.99137,0.593683,2.66271, +-0.514402,0.84496,-0.82759,-1.99134,0.593551,2.66274, +-0.514345,0.844991,-0.827441,-1.99131,0.59342,2.66277, +-0.514286,0.845023,-0.827292,-1.99127,0.59329,2.6628, +-0.514225,0.845057,-0.827142,-1.99124,0.593161,2.66283, +-0.514162,0.845092,-0.826993,-1.9912,0.593033,2.66287, +-0.514098,0.845129,-0.826845,-1.99117,0.592904,2.66291, +-0.514032,0.845167,-0.826697,-1.99113,0.592777,2.66295, +-0.513965,0.845207,-0.82655,-1.99109,0.592649,2.66298, +-0.513897,0.845247,-0.826403,-1.99105,0.592522,2.66303, +-0.513826,0.84529,-0.826256,-1.99101,0.592396,2.66307, +-0.513753,0.845335,-0.826109,-1.99096,0.592271,2.66311, +-0.513678,0.845382,-0.825962,-1.99092,0.592147,2.66316, +-0.513601,0.84543,-0.825815,-1.99087,0.592023,2.66321, +-0.513522,0.84548,-0.825669,-1.99082,0.5919,2.66326, +-0.513442,0.845532,-0.825523,-1.99077,0.591777,2.66331, +-0.51336,0.845585,-0.825378,-1.99071,0.591655,2.66336, +-0.513277,0.845639,-0.825234,-1.99066,0.591533,2.66342, +-0.513191,0.845696,-0.825089,-1.9906,0.591412,2.66347, +-0.513103,0.845755,-0.824945,-1.99054,0.591292,2.66353, +-0.513013,0.845815,-0.824801,-1.99048,0.591173,2.66359, +-0.512921,0.845878,-0.824657,-1.99042,0.591056,2.66366, +-0.512828,0.845942,-0.824514,-1.99035,0.59094,2.66372, +-0.512733,0.846008,-0.824372,-1.99029,0.590824,2.66379, +-0.512637,0.846075,-0.824231,-1.99022,0.59071,2.66385, +-0.512539,0.846144,-0.82409,-1.99015,0.590597,2.66392, +-0.512439,0.846215,-0.823949,-1.99008,0.590485,2.66399, +-0.512338,0.846288,-0.823809,-1.99001,0.590375,2.66407, +-0.512234,0.846363,-0.823669,-1.98993,0.590267,2.66414, +-0.51213,0.846439,-0.82353,-1.98986,0.59016,2.66422, +-0.512024,0.846517,-0.823392,-1.98978,0.590054,2.6643, +-0.511918,0.846597,-0.823255,-1.9897,0.589949,2.66438, +-0.51181,0.846677,-0.823119,-1.98962,0.589845,2.66446, +-0.511701,0.846759,-0.822984,-1.98954,0.589743,2.66454, +-0.511591,0.846843,-0.822849,-1.98945,0.589642,2.66462, +-0.51148,0.846929,-0.822715,-1.98937,0.589543,2.66471, +-0.511367,0.847017,-0.822581,-1.98928,0.589446,2.6648, +-0.511253,0.847106,-0.822449,-1.98919,0.589349,2.66488, +-0.511139,0.847196,-0.822318,-1.9891,0.589254,2.66497, +-0.511024,0.847287,-0.822188,-1.98901,0.589159,2.66507, +-0.510908,0.84738,-0.822059,-1.98892,0.589066,2.66516, +-0.510792,0.847473,-0.821931,-1.98882,0.588973,2.66525, +-0.510674,0.847569,-0.821804,-1.98873,0.588882,2.66535, +-0.510556,0.847666,-0.821678,-1.98863,0.588793,2.66544, +-0.510436,0.847764,-0.821552,-1.98853,0.588705,2.66554, +-0.510316,0.847864,-0.821428,-1.98843,0.588618,2.66564, +-0.510195,0.847965,-0.821305,-1.98833,0.588532,2.66574, +-0.510074,0.848066,-0.821183,-1.98823,0.588447,2.66584, +-0.509952,0.848168,-0.821063,-1.98813,0.588363,2.66595, +-0.50983,0.848271,-0.820944,-1.98803,0.58828,2.66605, +-0.509707,0.848376,-0.820826,-1.98792,0.588199,2.66615, +-0.509583,0.848482,-0.820708,-1.98782,0.588119,2.66626, +-0.509458,0.848589,-0.820592,-1.98771,0.588041,2.66637, +-0.509333,0.848697,-0.820476,-1.9876,0.587964,2.66648, +-0.509207,0.848806,-0.820362,-1.98749,0.587887,2.66658, +-0.509082,0.848916,-0.820249,-1.98738,0.587812,2.66669, +-0.508956,0.849025,-0.820138,-1.98727,0.587737,2.6668, +-0.508829,0.849136,-0.820028,-1.98716,0.587663,2.66691, +-0.508702,0.849248,-0.819919,-1.98705,0.587591,2.66703, +-0.508574,0.849362,-0.819811,-1.98694,0.58752,2.66714, +-0.508445,0.849476,-0.819703,-1.98682,0.587451,2.66725, +-0.508315,0.849591,-0.819597,-1.98671,0.587382,2.66737, +-0.508186,0.849707,-0.819492,-1.98659,0.587315,2.66749, +-0.508056,0.849824,-0.819389,-1.98647,0.587248,2.6676, +-0.507926,0.849941,-0.819287,-1.98636,0.587182,2.66772, +-0.507796,0.850059,-0.819188,-1.98624,0.587118,2.66784, +-0.507665,0.850178,-0.819091,-1.98612,0.587054,2.66796, +-0.507533,0.850298,-0.818997,-1.986,0.586992,2.66808, +-0.507401,0.850419,-0.818906,-1.98588,0.586932,2.6682, +-0.507268,0.85054,-0.818818,-1.98576,0.586872,2.66832, +-0.507135,0.850661,-0.818733,-1.98564,0.586813,2.66844, +-0.507002,0.850782,-0.818651,-1.98552,0.586755,2.66856, +-0.506869,0.850903,-0.818571,-1.98539,0.586698,2.66868, +-0.506735,0.851024,-0.818494,-1.98527,0.586642,2.6688, +-0.506601,0.851146,-0.81842,-1.98515,0.586587,2.66892, +-0.506466,0.851268,-0.818347,-1.98503,0.586534,2.66905, +-0.506331,0.851392,-0.818276,-1.9849,0.586482,2.66917, +-0.506196,0.851517,-0.818206,-1.98478,0.586431,2.6693, +-0.506061,0.851642,-0.818138,-1.98465,0.586381,2.66942, +-0.505926,0.851768,-0.818071,-1.98453,0.586331,2.66955, +-0.50579,0.851894,-0.818004,-1.9844,0.586282,2.66967, +-0.505655,0.852021,-0.817939,-1.98428,0.586235,2.6698, +-0.505518,0.852149,-0.817874,-1.98415,0.586189,2.66993, +-0.505381,0.852279,-0.81781,-1.98402,0.586144,2.67006, +-0.505243,0.852409,-0.817746,-1.98389,0.5861,2.67019, +-0.505105,0.85254,-0.817682,-1.98376,0.586058,2.67032, +-0.504966,0.852671,-0.817618,-1.98363,0.586016,2.67045, +-0.504828,0.852802,-0.817554,-1.98349,0.585975,2.67058, +-0.504689,0.852934,-0.817491,-1.98336,0.585934,2.67071, +-0.50455,0.853067,-0.817428,-1.98323,0.585895,2.67085, +-0.50441,0.8532,-0.817365,-1.9831,0.585856,2.67098, +-0.50427,0.853335,-0.817304,-1.98296,0.585819,2.67111, +-0.504129,0.853469,-0.817243,-1.98283,0.585784,2.67125, +-0.503987,0.853604,-0.817183,-1.98269,0.585749,2.67138, +-0.503846,0.853739,-0.817124,-1.98256,0.585715,2.67152, +-0.503704,0.853874,-0.817065,-1.98242,0.585682,2.67165, +-0.503562,0.85401,-0.817006,-1.98229,0.585649,2.67179, +-0.50342,0.854145,-0.816947,-1.98215,0.585618,2.67192, +-0.503278,0.854282,-0.81689,-1.98202,0.585588,2.67206, +-0.503135,0.854419,-0.816833,-1.98188,0.585559,2.6722, +-0.502991,0.854558,-0.816778,-1.98174,0.585531,2.67234, +-0.502848,0.854697,-0.816723,-1.9816,0.585505,2.67247, +-0.502704,0.854836,-0.816669,-1.98146,0.585479,2.67261, +-0.50256,0.854975,-0.816616,-1.98132,0.585454,2.67275, +-0.502417,0.855114,-0.816563,-1.98118,0.585429,2.67289, +-0.502273,0.855254,-0.816511,-1.98104,0.585406,2.67303, +-0.502128,0.855395,-0.81646,-1.9809,0.585384,2.67317, +-0.501983,0.855537,-0.81641,-1.98076,0.585363,2.67331, +-0.501838,0.855679,-0.816361,-1.98062,0.585343,2.67346, +-0.501692,0.855822,-0.816313,-1.98048,0.585325,2.6736, +-0.501546,0.855964,-0.816266,-1.98033,0.585307,2.67374, +-0.501401,0.856107,-0.816219,-1.98019,0.58529,2.67389, +-0.501255,0.85625,-0.816172,-1.98005,0.585273,2.67403, +-0.50111,0.856394,-0.816127,-1.9799,0.585258,2.67417, +-0.500963,0.856538,-0.816082,-1.97976,0.585244,2.67432, +-0.500817,0.856683,-0.816039,-1.97961,0.585231,2.67446, +-0.50067,0.856828,-0.815997,-1.97947,0.585219,2.67461, +-0.500523,0.856974,-0.815956,-1.97932,0.585208,2.67475, +-0.500377,0.85712,-0.815915,-1.97918,0.585199,2.6749, +-0.50023,0.857265,-0.815875,-1.97903,0.585189,2.67504, +-0.500084,0.857411,-0.815836,-1.97889,0.585181,2.67519, +-0.499937,0.857557,-0.815798,-1.97874,0.585173,2.67534, +-0.49979,0.857704,-0.815761,-1.97859,0.585167,2.67548, +-0.499642,0.857851,-0.815725,-1.97845,0.585162,2.67563, +-0.499495,0.857999,-0.815691,-1.9783,0.585158,2.67578, +-0.499348,0.858147,-0.815657,-1.97815,0.585155,2.67593, +-0.499201,0.858295,-0.815624,-1.978,0.585153,2.67607, +-0.499054,0.858443,-0.815592,-1.97785,0.585151,2.67622, +-0.498907,0.858591,-0.81556,-1.97771,0.58515,2.67637, +-0.498759,0.858739,-0.81553,-1.97756,0.58515,2.67652, +-0.498612,0.858887,-0.8155,-1.97741,0.585151,2.67667, +-0.498466,0.859035,-0.815472,-1.97726,0.585153,2.67681, +-0.498319,0.859182,-0.815446,-1.97711,0.585156,2.67696, +-0.498174,0.859329,-0.815421,-1.97697,0.585159,2.67711, +-0.49803,0.859474,-0.815399,-1.97682,0.585163,2.67725, +-0.497887,0.859618,-0.815379,-1.97668,0.585167,2.6774, +-0.497745,0.859762,-0.81536,-1.97654,0.585171,2.67754, +-0.497605,0.859904,-0.815343,-1.97639,0.585176,2.67768, +-0.497466,0.860046,-0.815327,-1.97625,0.585181,2.67782, +-0.497327,0.860188,-0.815312,-1.97611,0.585188,2.67797, +-0.497189,0.860329,-0.815298,-1.97597,0.585195,2.67811, +-0.497051,0.860471,-0.815284,-1.97583,0.585205,2.67825, +-0.496913,0.860614,-0.815271,-1.97568,0.585215,2.67839, +-0.496775,0.860756,-0.815258,-1.97554,0.585228,2.67853, +-0.496637,0.860899,-0.815244,-1.9754,0.585242,2.67868, +-0.496498,0.861043,-0.815232,-1.97525,0.585259,2.67882, +-0.496359,0.861187,-0.81522,-1.97511,0.585277,2.67897, +-0.496219,0.861333,-0.815209,-1.97496,0.585297,2.67911, +-0.496078,0.861479,-0.815198,-1.97482,0.585319,2.67926, +-0.495937,0.861626,-0.815189,-1.97467,0.585342,2.6794, +-0.495796,0.861773,-0.815179,-1.97452,0.585367,2.67955, +-0.495656,0.86192,-0.815169,-1.97438,0.585392,2.6797, +-0.495515,0.862067,-0.81516,-1.97423,0.585419,2.67984, +-0.495373,0.862215,-0.815151,-1.97408,0.585447,2.67999, +-0.495231,0.862363,-0.815143,-1.97393,0.585476,2.68014, +-0.49509,0.862512,-0.815136,-1.97378,0.585508,2.68029, +-0.494948,0.862661,-0.81513,-1.97364,0.585541,2.68044, +-0.494806,0.862811,-0.815125,-1.97349,0.585576,2.68059, +-0.494664,0.862961,-0.815122,-1.97334,0.585612,2.68074, +-0.494523,0.86311,-0.815119,-1.97319,0.585649,2.68089, +-0.494381,0.86326,-0.815118,-1.97304,0.585687,2.68104, +-0.49424,0.863409,-0.815118,-1.97289,0.585726,2.68119, +-0.494099,0.863559,-0.815119,-1.97274,0.585767,2.68134, +-0.493959,0.863708,-0.815121,-1.97259,0.585808,2.68149, +-0.49382,0.863856,-0.815125,-1.97244,0.585851,2.68163, +-0.493682,0.864004,-0.815129,-1.97229,0.585893,2.68178, +-0.493545,0.864151,-0.815133,-1.97215,0.585936,2.68193, +-0.49341,0.864297,-0.815138,-1.972,0.585979,2.68207, +-0.493277,0.864441,-0.815143,-1.97186,0.586023,2.68222, +-0.493145,0.864584,-0.815148,-1.97171,0.586066,2.68236, +-0.493013,0.864725,-0.815155,-1.97157,0.586111,2.6825, +-0.492882,0.864866,-0.815163,-1.97143,0.586156,2.68264, +-0.492752,0.865007,-0.815172,-1.97129,0.586203,2.68278, +-0.492622,0.865147,-0.815183,-1.97115,0.58625,2.68292, +-0.492492,0.865287,-0.815195,-1.97101,0.5863,2.68306, +-0.492361,0.865427,-0.815209,-1.97087,0.586352,2.6832, +-0.492231,0.865567,-0.815224,-1.97073,0.586406,2.68335, +-0.492101,0.865708,-0.815242,-1.97059,0.586462,2.68349, +-0.49197,0.865849,-0.815261,-1.97045,0.586521,2.68363, +-0.49184,0.865991,-0.815283,-1.97031,0.586583,2.68377, +-0.49171,0.866133,-0.815306,-1.97016,0.586648,2.68391, +-0.49158,0.866275,-0.81533,-1.97002,0.586716,2.68405, +-0.49145,0.866417,-0.815356,-1.96988,0.586787,2.68419, +-0.49132,0.866558,-0.815383,-1.96974,0.586861,2.68434, +-0.49119,0.8667,-0.815411,-1.9696,0.586937,2.68448, +-0.491061,0.86684,-0.815441,-1.96946,0.587016,2.68462, +-0.490932,0.86698,-0.815472,-1.96932,0.587098,2.68476, +-0.490805,0.867119,-0.815505,-1.96918,0.587183,2.6849, +-0.490678,0.867258,-0.81554,-1.96904,0.587271,2.68504, +-0.490552,0.867397,-0.815577,-1.9689,0.58736,2.68518, +-0.490427,0.867536,-0.815615,-1.96876,0.587452,2.68531, +-0.490302,0.867675,-0.815654,-1.96862,0.587545,2.68545, +-0.490177,0.867814,-0.815694,-1.96848,0.58764,2.68559, +-0.490053,0.867953,-0.815737,-1.96834,0.587737,2.68573, +-0.48993,0.868092,-0.81578,-1.96821,0.587837,2.68587, +-0.489809,0.868232,-0.815826,-1.96807,0.587938,2.68601, +-0.489689,0.868372,-0.815874,-1.96793,0.588041,2.68615, +-0.489569,0.868511,-0.815924,-1.96779,0.588146,2.68629, +-0.489451,0.86865,-0.815975,-1.96765,0.588252,2.68643, +-0.489333,0.868788,-0.816027,-1.96751,0.588359,2.68657, +-0.489216,0.868926,-0.81608,-1.96737,0.588468,2.6867, +-0.4891,0.869063,-0.816136,-1.96723,0.588577,2.68684, +-0.488986,0.8692,-0.816193,-1.9671,0.588689,2.68698, +-0.488873,0.869337,-0.816252,-1.96696,0.588802,2.68711, +-0.488761,0.869473,-0.816314,-1.96682,0.588917,2.68725, +-0.488651,0.869609,-0.816377,-1.96669,0.589032,2.68739, +-0.488542,0.869743,-0.816441,-1.96655,0.589148,2.68752, +-0.488433,0.869877,-0.816507,-1.96642,0.589265,2.68765, +-0.488325,0.870009,-0.816574,-1.96629,0.589383,2.68779, +-0.488219,0.87014,-0.816643,-1.96616,0.589501,2.68792, +-0.488114,0.870271,-0.816713,-1.96603,0.589621,2.68805, +-0.48801,0.870401,-0.816786,-1.9659,0.589742,2.68818, +-0.487908,0.870531,-0.816861,-1.96577,0.589864,2.68831, +-0.487807,0.870659,-0.816937,-1.96564,0.589987,2.68844, +-0.487708,0.870785,-0.817015,-1.96551,0.59011,2.68856, +-0.487609,0.87091,-0.817093,-1.96539,0.590233,2.68869, +-0.487511,0.871034,-0.817174,-1.96526,0.590357,2.68881, +-0.487414,0.871156,-0.817255,-1.96514,0.590482,2.68893, +-0.487318,0.871278,-0.817339,-1.96502,0.590608,2.68906, +-0.487225,0.871398,-0.817424,-1.9649,0.590734,2.68918, +-0.487133,0.871518,-0.817511,-1.96478,0.590861,2.6893, +-0.487042,0.871636,-0.817599,-1.96466,0.590989,2.68941, +-0.486952,0.871752,-0.817689,-1.96454,0.591117,2.68953, +-0.486862,0.871867,-0.817779,-1.96443,0.591245,2.68965, +-0.486774,0.87198,-0.817871,-1.96432,0.591374,2.68976, +-0.486687,0.872092,-0.817964,-1.96421,0.591503,2.68987, +-0.486602,0.872202,-0.818059,-1.96409,0.591632,2.68998, +-0.486518,0.872312,-0.818155,-1.96398,0.591763,2.69009, +-0.486435,0.872421,-0.818253,-1.96388,0.591894,2.6902, +-0.486354,0.872528,-0.818352,-1.96377,0.592026,2.69031, +-0.486274,0.872633,-0.818451,-1.96366,0.592157,2.69041, +-0.486194,0.872737,-0.818552,-1.96356,0.592289,2.69051, +-0.486115,0.872838,-0.818653,-1.96346,0.592421,2.69062, +-0.486038,0.872938,-0.818756,-1.96336,0.592553,2.69072, +-0.485962,0.873034,-0.81886,-1.96326,0.592686,2.69081, +-0.485887,0.873128,-0.818965,-1.96317,0.59282,2.69091, +-0.485814,0.873219,-0.819071,-1.96308,0.592954,2.691, +-0.485742,0.873306,-0.819179,-1.96299,0.593089,2.69108, +-0.485671,0.87339,-0.819287,-1.96291,0.593223,2.69117, +-0.4856,0.873471,-0.819395,-1.96283,0.593358,2.69125, +-0.485531,0.87355,-0.819505,-1.96275,0.593493,2.69133, +-0.485462,0.873625,-0.819615,-1.96267,0.593628,2.6914, +-0.485396,0.873699,-0.819726,-1.9626,0.593763,2.69148, +-0.48533,0.873771,-0.819839,-1.96253,0.5939,2.69155, +-0.485266,0.873841,-0.819953,-1.96246,0.594037,2.69162, +-0.485203,0.873909,-0.820067,-1.96239,0.594174,2.69169, +-0.485141,0.873976,-0.820183,-1.96232,0.594311,2.69175, +-0.485079,0.874042,-0.820298,-1.96225,0.594448,2.69182, +-0.485019,0.874107,-0.820414,-1.96219,0.594586,2.69189, +-0.484959,0.874171,-0.820531,-1.96213,0.594723,2.69195, +-0.484901,0.874234,-0.820649,-1.96206,0.594861,2.69201, +-0.484844,0.874296,-0.820769,-1.962,0.595,2.69207, +-0.484788,0.874358,-0.820889,-1.96194,0.59514,2.69214, +-0.484734,0.87442,-0.82101,-1.96188,0.59528,2.6922, +-0.48468,0.874481,-0.821131,-1.96182,0.595419,2.69226, +-0.484628,0.874543,-0.821253,-1.96175,0.595559,2.69232, +-0.484575,0.874604,-0.821375,-1.96169,0.595699,2.69238, +-0.484524,0.874665,-0.821498,-1.96163,0.595839,2.69244, +-0.484475,0.874725,-0.821622,-1.96157,0.595979,2.6925, +-0.484426,0.874785,-0.821747,-1.96151,0.596121,2.69256, +-0.484379,0.874843,-0.821873,-1.96145,0.596262,2.69262, +-0.484334,0.8749,-0.822,-1.9614,0.596404,2.69268, +-0.484288,0.874957,-0.822127,-1.96134,0.596547,2.69274, +-0.484244,0.875014,-0.822255,-1.96128,0.596688,2.69279, +-0.4842,0.87507,-0.822382,-1.96123,0.59683,2.69285, +-0.484157,0.875125,-0.822511,-1.96117,0.596973,2.6929, +-0.484116,0.87518,-0.822641,-1.96112,0.597116,2.69296, +-0.484076,0.875233,-0.822771,-1.96106,0.597259,2.69301, +-0.484037,0.875285,-0.822903,-1.96101,0.597403,2.69306, +-0.483999,0.875336,-0.823035,-1.96096,0.597547,2.69311, +-0.483963,0.875387,-0.823167,-1.96091,0.597692,2.69317, +-0.483926,0.875438,-0.8233,-1.96086,0.597836,2.69322, +-0.483891,0.875488,-0.823434,-1.96081,0.59798,2.69327, +-0.483856,0.875537,-0.823568,-1.96076,0.598124,2.69332, +-0.483823,0.875585,-0.823702,-1.96071,0.598269,2.69336, +-0.483791,0.875632,-0.823838,-1.96066,0.598414,2.69341, +-0.483761,0.875678,-0.823975,-1.96062,0.59856,2.69346, +-0.483731,0.875723,-0.824112,-1.96057,0.598707,2.6935, +-0.483703,0.875767,-0.82425,-1.96053,0.598853,2.69355, +-0.483674,0.875811,-0.824388,-1.96049,0.598999,2.69359, +-0.483647,0.875854,-0.824526,-1.96044,0.599145,2.69363, +-0.483621,0.875896,-0.824665,-1.9604,0.599291,2.69367, +-0.483596,0.875937,-0.824804,-1.96036,0.599437,2.69372, +-0.483572,0.875977,-0.824945,-1.96032,0.599584,2.69376, +-0.483549,0.876016,-0.825086,-1.96028,0.599731,2.69379, +-0.483528,0.876054,-0.825227,-1.96024,0.599878,2.69383, +-0.483507,0.876091,-0.825369,-1.96021,0.600025,2.69387, +-0.483487,0.876127,-0.825511,-1.96017,0.600171,2.69391, +-0.483468,0.876163,-0.825653,-1.96013,0.600318,2.69394, +-0.48345,0.876198,-0.825795,-1.9601,0.600465,2.69398, +-0.483433,0.876231,-0.825938,-1.96007,0.600612,2.69401, +-0.483418,0.876264,-0.826082,-1.96003,0.600758,2.69404, +-0.483403,0.876295,-0.826226,-1.96,0.600905,2.69407, +-0.48339,0.876325,-0.826371,-1.95997,0.601052,2.6941, +-0.483378,0.876354,-0.826516,-1.95994,0.601199,2.69413, +-0.483366,0.876383,-0.826661,-1.95991,0.601346,2.69416, +-0.483354,0.876411,-0.826806,-1.95989,0.601492,2.69419, +-0.483344,0.876438,-0.826951,-1.95986,0.601638,2.69422, +-0.483335,0.876464,-0.827097,-1.95983,0.601784,2.69424, +-0.483328,0.876489,-0.827243,-1.95981,0.601931,2.69427, +-0.483322,0.876512,-0.82739,-1.95979,0.602077,2.69429, +-0.483316,0.876534,-0.827537,-1.95976,0.602223,2.69431, +-0.483312,0.876556,-0.827685,-1.95974,0.602369,2.69433, +-0.483308,0.876577,-0.827832,-1.95972,0.602515,2.69436, +-0.483304,0.876597,-0.827979,-1.9597,0.602661,2.69438, +-0.483302,0.876616,-0.828126,-1.95968,0.602806,2.69439, +-0.483301,0.876634,-0.828274,-1.95966,0.602951,2.69441, +-0.483301,0.876651,-0.828422,-1.95965,0.603096,2.69443, +-0.483303,0.876666,-0.828571,-1.95963,0.603241,2.69444, +-0.483305,0.87668,-0.82872,-1.95962,0.603386,2.69446, +-0.483308,0.876694,-0.828869,-1.9596,0.603531,2.69447, +-0.483312,0.876707,-0.829018,-1.95959,0.603676,2.69449, +-0.483316,0.876719,-0.829167,-1.95958,0.60382,2.6945, +-0.483321,0.876731,-0.829316,-1.95957,0.603964,2.69451, +-0.483327,0.876741,-0.829465,-1.95956,0.604107,2.69452, +-0.483335,0.876749,-0.829615,-1.95955,0.60425,2.69453, +-0.483344,0.876757,-0.829765,-1.95954,0.604394,2.69453, +-0.483355,0.876763,-0.829915,-1.95953,0.604537,2.69454, +-0.483366,0.876769,-0.830066,-1.95953,0.60468,2.69455, +-0.483378,0.876774,-0.830215,-1.95952,0.604823,2.69455, +-0.483391,0.876779,-0.830365,-1.95952,0.604966,2.69456, +-0.483406,0.876782,-0.830515,-1.95951,0.605108,2.69456, +-0.483421,0.876784,-0.830665,-1.95951,0.60525,2.69456, +-0.483439,0.876785,-0.830816,-1.95951,0.605391,2.69456, +-0.483457,0.876785,-0.830967,-1.95951,0.605532,2.69456, +-0.483478,0.876784,-0.831118,-1.95951,0.605673,2.69456, +-0.483499,0.876782,-0.831269,-1.95951,0.605814,2.69456, +-0.483521,0.87678,-0.831419,-1.95952,0.605955,2.69456, +-0.483544,0.876777,-0.831569,-1.95952,0.606095,2.69455, +-0.483569,0.876773,-0.83172,-1.95952,0.606235,2.69455, +-0.483595,0.876768,-0.83187,-1.95953,0.606375,2.69455, +-0.483623,0.876761,-0.832021,-1.95954,0.606513,2.69454, +-0.483652,0.876753,-0.832172,-1.95954,0.606652,2.69453, +-0.483683,0.876744,-0.832323,-1.95955,0.60679,2.69452, +-0.483716,0.876734,-0.832474,-1.95956,0.606928,2.69451, +-0.483749,0.876723,-0.832625,-1.95957,0.607066,2.6945, +-0.483784,0.876711,-0.832775,-1.95959,0.607204,2.69449, +-0.483819,0.876698,-0.832925,-1.9596,0.607341,2.69448, +-0.483857,0.876684,-0.833075,-1.95961,0.607477,2.69446, +-0.483897,0.876668,-0.833226,-1.95963,0.607613,2.69445, +-0.483938,0.876651,-0.833377,-1.95965,0.607748,2.69443, +-0.483981,0.876632,-0.833527,-1.95967,0.607883,2.69441, +-0.484025,0.876612,-0.833678,-1.95969,0.608017,2.69439, +-0.484071,0.876591,-0.833828,-1.95971,0.608151,2.69437, +-0.484118,0.876569,-0.833977,-1.95973,0.608286,2.69435, +-0.484166,0.876546,-0.834126,-1.95975,0.608419,2.69432, +-0.484216,0.876521,-0.834276,-1.95978,0.608552,2.6943, +-0.484269,0.876494,-0.834426,-1.9598,0.608684,2.69427, +-0.484323,0.876466,-0.834575,-1.95983,0.608815,2.69424, +-0.484379,0.876436,-0.834725,-1.95986,0.608946,2.69421, +-0.484436,0.876405,-0.834874,-1.95989,0.609076,2.69418, +-0.484495,0.876373,-0.835023,-1.95992,0.609206,2.69415, +-0.484555,0.876339,-0.835171,-1.95996,0.609336,2.69412, +-0.484617,0.876305,-0.835319,-1.95999,0.609465,2.69408, +-0.48468,0.876268,-0.835467,-1.96003,0.609594,2.69405, +-0.484746,0.876229,-0.835615,-1.96007,0.609721,2.69401, +-0.484814,0.876189,-0.835763,-1.96011,0.609848,2.69397, +-0.484884,0.876147,-0.835911,-1.96015,0.609974,2.69393, +-0.484955,0.876103,-0.836058,-1.96019,0.610099,2.69388, +-0.485028,0.876058,-0.836205,-1.96024,0.610225,2.69384, +-0.485102,0.876012,-0.836351,-1.96028,0.61035,2.69379, +-0.485178,0.875964,-0.836497,-1.96033,0.610474,2.69374, +-0.485256,0.875915,-0.836643,-1.96038,0.610598,2.69369, +-0.485337,0.875863,-0.836789,-1.96043,0.61072,2.69364, +-0.485419,0.875809,-0.836934,-1.96049,0.610841,2.69359, +-0.485504,0.875753,-0.83708,-1.96054,0.610962,2.69353, +-0.48559,0.875696,-0.837225,-1.9606,0.611083,2.69347, +-0.485677,0.875637,-0.837368,-1.96066,0.611203,2.69342, +-0.485767,0.875577,-0.837511,-1.96072,0.611323,2.69336, +-0.485858,0.875515,-0.837653,-1.96078,0.611443,2.69329, +-0.485951,0.87545,-0.837792,-1.96085,0.611564,2.69323, +-0.486047,0.875384,-0.837931,-1.96091,0.611686,2.69316, +-0.486144,0.875316,-0.838068,-1.96098,0.611807,2.69309, +-0.486243,0.875246,-0.838205,-1.96105,0.611928,2.69302, +-0.486343,0.875174,-0.83834,-1.96112,0.612049,2.69295, +-0.486444,0.875102,-0.838475,-1.9612,0.612169,2.69288, +-0.486546,0.875027,-0.83861,-1.96127,0.612289,2.69281, +-0.48665,0.874952,-0.838743,-1.96135,0.612409,2.69273, +-0.486756,0.874874,-0.838875,-1.96142,0.612528,2.69265, +-0.486863,0.874794,-0.839005,-1.9615,0.612646,2.69257, +-0.486971,0.874712,-0.839134,-1.96158,0.612764,2.69249, +-0.487081,0.874629,-0.839262,-1.96167,0.612881,2.69241, +-0.487191,0.874545,-0.839389,-1.96175,0.612996,2.69232, +-0.487302,0.874459,-0.839515,-1.96184,0.61311,2.69224, +-0.487414,0.874373,-0.839639,-1.96192,0.613222,2.69215, +-0.487527,0.874284,-0.839763,-1.96201,0.613334,2.69206, +-0.487641,0.874194,-0.839885,-1.9621,0.613444,2.69197, +-0.487756,0.874102,-0.840005,-1.96219,0.613553,2.69188, +-0.487873,0.874009,-0.840124,-1.96229,0.61366,2.69179, +-0.48799,0.873914,-0.840243,-1.96238,0.613766,2.69169, +-0.488108,0.873819,-0.84036,-1.96248,0.613869,2.6916, +-0.488226,0.873722,-0.840477,-1.96257,0.613971,2.6915, +-0.488345,0.873625,-0.840593,-1.96267,0.614069,2.6914, +-0.488464,0.873526,-0.840708,-1.96277,0.614165,2.6913, +-0.488585,0.873425,-0.840821,-1.96287,0.614258,2.6912, +-0.488706,0.873323,-0.840934,-1.96297,0.614348,2.6911, +-0.488829,0.87322,-0.841044,-1.96308,0.614434,2.691, +-0.488952,0.873116,-0.841154,-1.96318,0.614517,2.69089, +-0.489075,0.873011,-0.841263,-1.96329,0.614596,2.69079, +-0.489199,0.872906,-0.841371,-1.96339,0.614673,2.69068, +-0.489322,0.872799,-0.841479,-1.9635,0.614747,2.69058, +-0.489447,0.872692,-0.841585,-1.96361,0.614818,2.69047, +-0.489572,0.872584,-0.84169,-1.96371,0.614886,2.69036, +-0.489698,0.872474,-0.841793,-1.96382,0.614953,2.69025, +-0.489825,0.872363,-0.841895,-1.96393,0.615018,2.69014, +-0.489953,0.872251,-0.841996,-1.96405,0.615081,2.69003, +-0.490081,0.872139,-0.842097,-1.96416,0.615143,2.68992, +-0.490208,0.872026,-0.842196,-1.96427,0.615204,2.6898, +-0.490336,0.871913,-0.842295,-1.96438,0.615263,2.68969, +-0.490465,0.871798,-0.842393,-1.9645,0.615322,2.68958, +-0.490594,0.871683,-0.84249,-1.96461,0.615379,2.68946, +-0.490724,0.871567,-0.842585,-1.96473,0.615435,2.68934, +-0.490855,0.871449,-0.84268,-1.96485,0.61549,2.68923, +-0.490986,0.871331,-0.842773,-1.96497,0.615545,2.68911, +-0.491117,0.871213,-0.842865,-1.96508,0.6156,2.68899, +-0.491249,0.871094,-0.842957,-1.9652,0.615655,2.68887, +-0.49138,0.870975,-0.843048,-1.96532,0.615709,2.68875, +-0.491512,0.870855,-0.843138,-1.96544,0.615763,2.68863, +-0.491645,0.870734,-0.843227,-1.96556,0.615817,2.68851, +-0.491778,0.870612,-0.843315,-1.96569,0.615869,2.68839, +-0.491913,0.870489,-0.843401,-1.96581,0.61592,2.68827, +-0.492047,0.870365,-0.843486,-1.96593,0.615971,2.68814, +-0.492182,0.870241,-0.843571,-1.96606,0.61602,2.68802, +-0.492316,0.870117,-0.843655,-1.96618,0.616069,2.6879, +-0.492451,0.869993,-0.843738,-1.9663,0.616117,2.68777, +-0.492586,0.869868,-0.843821,-1.96643,0.616165,2.68765, +-0.492722,0.869742,-0.843902,-1.96656,0.616211,2.68752, +-0.492859,0.869615,-0.843981,-1.96668,0.616255,2.68739, +-0.492996,0.869487,-0.84406,-1.96681,0.616299,2.68727, +-0.493133,0.869359,-0.844137,-1.96694,0.616342,2.68714, +-0.493271,0.86923,-0.844214,-1.96707,0.616385,2.68701, +-0.493409,0.869101,-0.84429,-1.9672,0.616427,2.68688, +-0.493546,0.868971,-0.844366,-1.96733,0.616469,2.68675, +-0.493684,0.868841,-0.844441,-1.96746,0.61651,2.68662, +-0.493823,0.868711,-0.844514,-1.96759,0.61655,2.68649, +-0.493962,0.868579,-0.844586,-1.96772,0.616588,2.68636, +-0.494103,0.868446,-0.844657,-1.96785,0.616626,2.68622, +-0.494243,0.868313,-0.844727,-1.96798,0.616662,2.68609, +-0.494383,0.868179,-0.844797,-1.96812,0.616698,2.68596, +-0.494524,0.868046,-0.844865,-1.96825,0.616733,2.68582, +-0.494664,0.867912,-0.844934,-1.96838,0.616767,2.68569, +-0.494805,0.867778,-0.845001,-1.96852,0.616801,2.68556, +-0.494946,0.867643,-0.845067,-1.96865,0.616833,2.68542, +-0.495089,0.867507,-0.845131,-1.96879,0.616864,2.68528, +-0.495231,0.86737,-0.845194,-1.96893,0.616894,2.68515, +-0.495374,0.867232,-0.845257,-1.96906,0.616922,2.68501, +-0.495517,0.867095,-0.845319,-1.9692,0.616951,2.68487, +-0.49566,0.866957,-0.84538,-1.96934,0.616978,2.68473, +-0.495803,0.866819,-0.84544,-1.96948,0.617005,2.6846, +-0.495946,0.866681,-0.8455,-1.96962,0.617031,2.68446, +-0.496089,0.866541,-0.845558,-1.96976,0.617056,2.68432, +-0.496234,0.866401,-0.845615,-1.9699,0.61708,2.68418, +-0.496378,0.866261,-0.845671,-1.97004,0.617102,2.68404, +-0.496523,0.866119,-0.845725,-1.97018,0.617124,2.6839, +-0.496668,0.865978,-0.845779,-1.97032,0.617144,2.68376, +-0.496813,0.865837,-0.845833,-1.97046,0.617164,2.68361, +-0.496958,0.865695,-0.845885,-1.9706,0.617184,2.68347, +-0.497103,0.865553,-0.845937,-1.97074,0.617202,2.68333, +-0.497248,0.86541,-0.845987,-1.97089,0.617219,2.68319, +-0.497394,0.865267,-0.846036,-1.97103,0.617235,2.68304, +-0.49754,0.865123,-0.846084,-1.97117,0.61725,2.6829, +-0.497687,0.864978,-0.846131,-1.97132,0.617264,2.68276, +-0.497833,0.864834,-0.846177,-1.97146,0.617277,2.68261, +-0.497979,0.86469,-0.846223,-1.97161,0.617289,2.68247, +-0.498125,0.864545,-0.846267,-1.97175,0.617301,2.68232, +-0.498271,0.8644,-0.846311,-1.9719,0.617311,2.68218, +-0.498418,0.864255,-0.846354,-1.97204,0.617321,2.68203, +-0.498565,0.864109,-0.846395,-1.97219,0.617329,2.68189, +-0.498712,0.863962,-0.846435,-1.97233,0.617336,2.68174, +-0.498859,0.863815,-0.846474,-1.97248,0.617342,2.68159, +-0.499006,0.863668,-0.846512,-1.97263,0.617348,2.68145, +-0.499152,0.863521,-0.846549,-1.97278,0.617353,2.6813, +-0.499299,0.863375,-0.846586,-1.97292,0.617357,2.68115, +-0.499446,0.863228,-0.846622,-1.97307,0.61736,2.68101, +-0.499593,0.86308,-0.846656,-1.97322,0.617362,2.68086, +-0.49974,0.862932,-0.846689,-1.97337,0.617363,2.68071, +-0.499887,0.862783,-0.846721,-1.97351,0.617362,2.68056, +-0.500034,0.862635,-0.846752,-1.97366,0.617361,2.68041, +-0.500181,0.862486,-0.846782,-1.97381,0.617359,2.68026, +-0.500328,0.862337,-0.846811,-1.97396,0.617356,2.68012, +-0.500475,0.862189,-0.84684,-1.97411,0.617353,2.67997, +-0.500621,0.86204,-0.846867,-1.97426,0.617349,2.67982, +-0.500768,0.861891,-0.846894,-1.97441,0.617344,2.67967, +-0.500915,0.861742,-0.846919,-1.97456,0.617337,2.67952, +-0.501061,0.861592,-0.846942,-1.97471,0.617329,2.67937, +-0.501208,0.861442,-0.846965,-1.97486,0.61732,2.67922, +-0.501354,0.861292,-0.846987,-1.97501,0.61731,2.67907, +-0.5015,0.861142,-0.847008,-1.97516,0.617299,2.67892, +-0.501646,0.860993,-0.847028,-1.9753,0.617288,2.67877, +-0.501792,0.860844,-0.847048,-1.97545,0.617275,2.67862, +-0.501937,0.860694,-0.847066,-1.9756,0.617261,2.67847, +-0.502083,0.860544,-0.847083,-1.97575,0.617245,2.67832, +-0.502228,0.860393,-0.847098,-1.97591,0.617228,2.67817, +-0.502374,0.860242,-0.847113,-1.97606,0.617209,2.67802, +-0.502519,0.860092,-0.847126,-1.97621,0.617189,2.67787, +-0.502664,0.859942,-0.847139,-1.97636,0.617169,2.67772, +-0.502808,0.859792,-0.847152,-1.9765,0.617148,2.67757, +-0.502952,0.859642,-0.847163,-1.97665,0.617125,2.67742, +-0.503096,0.859492,-0.847173,-1.9768,0.6171,2.67727, +-0.50324,0.859342,-0.847182,-1.97695,0.617074,2.67712, +-0.503384,0.859191,-0.847189,-1.97711,0.617047,2.67697, +-0.503528,0.859041,-0.847195,-1.97726,0.617018,2.67682, +-0.503671,0.85889,-0.847201,-1.97741,0.616987,2.67667, +-0.503815,0.858741,-0.847206,-1.97756,0.616956,2.67652, +-0.503957,0.858591,-0.84721,-1.97771,0.616923,2.67637, +-0.5041,0.858442,-0.847213,-1.97786,0.616889,2.67622, +-0.504242,0.858292,-0.847215,-1.978,0.616854,2.67607, +-0.504383,0.858142,-0.847216,-1.97815,0.616816,2.67592, +-0.504525,0.857991,-0.847216,-1.97831,0.616777,2.67577, +-0.504667,0.857841,-0.847214,-1.97846,0.616736,2.67562, +-0.504808,0.857691,-0.847212,-1.97861,0.616694,2.67547, +-0.50495,0.857542,-0.847209,-1.97875,0.616651,2.67532, +-0.505091,0.857393,-0.847206,-1.9789,0.616606,2.67517, +-0.505231,0.857245,-0.847201,-1.97905,0.61656,2.67502, +-0.50537,0.857096,-0.847195,-1.9792,0.616512,2.67487, +-0.505509,0.856946,-0.847188,-1.97935,0.616462,2.67472, +-0.505648,0.856797,-0.84718,-1.9795,0.61641,2.67458, +-0.505787,0.856648,-0.84717,-1.97965,0.616356,2.67443, +-0.505925,0.8565,-0.847159,-1.9798,0.616301,2.67428, +-0.506064,0.856352,-0.847148,-1.97994,0.616245,2.67413, +-0.506202,0.856205,-0.847135,-1.98009,0.616187,2.67398, +-0.506339,0.856058,-0.847122,-1.98024,0.616127,2.67384, +-0.506475,0.855911,-0.847106,-1.98039,0.616066,2.67369, +-0.50661,0.855764,-0.847089,-1.98053,0.616002,2.67354, +-0.506745,0.855617,-0.847071,-1.98068,0.615937,2.67339, +-0.50688,0.85547,-0.847051,-1.98083,0.615869,2.67325, +-0.507015,0.855324,-0.84703,-1.98097,0.6158,2.6731, +-0.507149,0.855179,-0.847007,-1.98112,0.61573,2.67296, +-0.507283,0.855034,-0.846984,-1.98126,0.615658,2.67281, +-0.507416,0.854889,-0.846959,-1.98141,0.615584,2.67267, +-0.507548,0.854744,-0.846933,-1.98155,0.615508,2.67252, +-0.50768,0.854599,-0.846905,-1.9817,0.61543,2.67238, +-0.507811,0.854455,-0.846875,-1.98184,0.61535,2.67223, +-0.507941,0.854311,-0.846843,-1.98199,0.615267,2.67209, +-0.508072,0.854167,-0.84681,-1.98213,0.615183,2.67195, +-0.508202,0.854025,-0.846776,-1.98227,0.615098,2.6718, +-0.508332,0.853883,-0.84674,-1.98241,0.615011,2.67166, +-0.508461,0.853743,-0.846703,-1.98255,0.614921,2.67152, +-0.508588,0.853605,-0.846664,-1.98269,0.61483,2.67138, +-0.508715,0.853468,-0.846623,-1.98283,0.614737,2.67125, +-0.50884,0.853332,-0.846579,-1.98297,0.614641,2.67111, +-0.508963,0.853197,-0.846535,-1.9831,0.614545,2.67098, +-0.509085,0.853064,-0.846489,-1.98323,0.614447,2.67084, +-0.509205,0.852931,-0.846441,-1.98337,0.614347,2.67071, +-0.509323,0.852798,-0.846392,-1.9835,0.614247,2.67058, +-0.509439,0.852667,-0.846342,-1.98363,0.614145,2.67045, +-0.509554,0.852537,-0.84629,-1.98376,0.614041,2.67032, +-0.509666,0.852409,-0.846235,-1.98389,0.613936,2.67019, +-0.509778,0.852283,-0.846179,-1.98401,0.613829,2.67006, +-0.509888,0.852157,-0.846121,-1.98414,0.613721,2.66994, +-0.509997,0.852033,-0.846062,-1.98426,0.613613,2.66981, +-0.510105,0.85191,-0.846001,-1.98439,0.613504,2.66969, +-0.510212,0.851788,-0.845939,-1.98451,0.613393,2.66957, +-0.510319,0.851667,-0.845876,-1.98463,0.613282,2.66945, +-0.510424,0.851548,-0.84581,-1.98475,0.61317,2.66933, +-0.510527,0.85143,-0.845743,-1.98487,0.613056,2.66921, +-0.510629,0.851314,-0.845674,-1.98498,0.612941,2.66909, +-0.510729,0.851198,-0.845603,-1.9851,0.612825,2.66898, +-0.510829,0.851084,-0.845531,-1.98521,0.612709,2.66886, +-0.510928,0.85097,-0.845458,-1.98533,0.612592,2.66875, +-0.511026,0.850856,-0.845383,-1.98544,0.612475,2.66863, +-0.511122,0.850744,-0.845307,-1.98555,0.612357,2.66852, +-0.511218,0.850633,-0.845229,-1.98566,0.612238,2.66841, +-0.511312,0.850524,-0.84515,-1.98577,0.612118,2.6683, +-0.511404,0.850415,-0.845068,-1.98588,0.611997,2.66819, +-0.511495,0.850308,-0.844985,-1.98599,0.611876,2.66809, +-0.511586,0.850202,-0.844902,-1.98609,0.611754,2.66798, +-0.511675,0.850097,-0.844817,-1.9862,0.611632,2.66788, +-0.511764,0.849993,-0.844731,-1.9863,0.611509,2.66777, +-0.511852,0.849889,-0.844644,-1.98641,0.611386,2.66767, +-0.511938,0.849787,-0.844555,-1.98651,0.611262,2.66757, +-0.512023,0.849687,-0.844464,-1.98661,0.611137,2.66746, +-0.512107,0.849588,-0.844372,-1.98671,0.611012,2.66737, +-0.512189,0.84949,-0.844279,-1.98681,0.610886,2.66727, +-0.512271,0.849392,-0.844185,-1.9869,0.610759,2.66717, +-0.512351,0.849296,-0.844091,-1.987,0.610633,2.66707, +-0.512431,0.8492,-0.843995,-1.9871,0.610506,2.66698, +-0.51251,0.849105,-0.843898,-1.98719,0.610379,2.66688, +-0.512588,0.849011,-0.8438,-1.98729,0.610251,2.66679, +-0.512664,0.848919,-0.8437,-1.98738,0.610122,2.6667, +-0.512738,0.848828,-0.843599,-1.98747,0.609993,2.66661, +-0.512812,0.848738,-0.843497,-1.98756,0.609863,2.66652, +-0.512885,0.848649,-0.843394,-1.98765,0.609733,2.66643, +-0.512957,0.84856,-0.843291,-1.98774,0.609603,2.66634, +-0.513028,0.848473,-0.843187,-1.98782,0.609472,2.66625, +-0.513099,0.848386,-0.843082,-1.98791,0.609342,2.66616, +-0.513168,0.8483,-0.842976,-1.988,0.60921,2.66608, +-0.513235,0.848216,-0.842868,-1.98808,0.609078,2.66599, +-0.513301,0.848133,-0.842759,-1.98816,0.608945,2.66591, +-0.513367,0.848051,-0.84265,-1.98825,0.608811,2.66583, +-0.513431,0.84797,-0.84254,-1.98833,0.608678,2.66575, +-0.513495,0.84789,-0.842429,-1.98841,0.608544,2.66567, +-0.513558,0.84781,-0.842318,-1.98849,0.608411,2.66559, +-0.51362,0.847731,-0.842206,-1.98857,0.608277,2.66551, +-0.513681,0.847653,-0.842092,-1.98864,0.608142,2.66543, +-0.51374,0.847577,-0.841978,-1.98872,0.608007,2.66535, +-0.513798,0.847502,-0.841862,-1.9888,0.60787,2.66528, +-0.513855,0.847427,-0.841746,-1.98887,0.607734,2.66521, +-0.513911,0.847354,-0.841629,-1.98894,0.607597,2.66513, +-0.513967,0.847281,-0.841512,-1.98902,0.607461,2.66506, +-0.514022,0.847209,-0.841394,-1.98909,0.607324,2.66499, +-0.514076,0.847137,-0.841275,-1.98916,0.607187,2.66492, +-0.514129,0.847067,-0.841156,-1.98923,0.607049,2.66485, +-0.51418,0.846998,-0.841035,-1.9893,0.606911,2.66478, +-0.51423,0.846931,-0.840913,-1.98937,0.606771,2.66471, +-0.514279,0.846864,-0.84079,-1.98943,0.606632,2.66464, +-0.514327,0.846799,-0.840667,-1.9895,0.606492,2.66458, +-0.514375,0.846733,-0.840543,-1.98956,0.606353,2.66451, +-0.514422,0.846669,-0.840419,-1.98963,0.606213,2.66445, +-0.514468,0.846605,-0.840294,-1.98969,0.606073,2.66438, +-0.514512,0.846543,-0.840168,-1.98975,0.605933,2.66432, +-0.514556,0.846482,-0.840041,-1.98982,0.605791,2.66426, +-0.514597,0.846422,-0.839913,-1.98988,0.605649,2.6642, +-0.514638,0.846363,-0.839784,-1.98993,0.605507,2.66414, +-0.514679,0.846305,-0.839655,-1.98999,0.605365,2.66408, +-0.514718,0.846248,-0.839526,-1.99005,0.605223,2.66403, +-0.514757,0.846191,-0.839396,-1.99011,0.605081,2.66397, +-0.514795,0.846135,-0.839266,-1.99016,0.604938,2.66391, +-0.514832,0.84608,-0.839134,-1.99022,0.604795,2.66386, +-0.514867,0.846027,-0.839002,-1.99027,0.604651,2.6638, +-0.514901,0.845975,-0.838868,-1.99032,0.604507,2.66375, +-0.514934,0.845923,-0.838734,-1.99037,0.604362,2.6637, +-0.514966,0.845873,-0.8386,-1.99042,0.604218,2.66365, +-0.514998,0.845823,-0.838465,-1.99047,0.604073,2.6636, +-0.515029,0.845774,-0.83833,-1.99052,0.603929,2.66355, +-0.515059,0.845726,-0.838194,-1.99057,0.603784,2.6635, +-0.515088,0.845679,-0.838057,-1.99062,0.603639,2.66346, +-0.515115,0.845634,-0.837919,-1.99066,0.603493,2.66341, +-0.515141,0.845589,-0.83778,-1.99071,0.603346,2.66337, +-0.515166,0.845546,-0.837641,-1.99075,0.6032,2.66332, +-0.51519,0.845503,-0.837501,-1.99079,0.603054,2.66328, +-0.515214,0.845462,-0.837362,-1.99084,0.602908,2.66324, +-0.515237,0.84542,-0.837222,-1.99088,0.602762,2.6632, +-0.515259,0.84538,-0.837081,-1.99092,0.602616,2.66316, +-0.515279,0.845341,-0.83694,-1.99096,0.602469,2.66312, +-0.515298,0.845304,-0.836798,-1.99099,0.602322,2.66308, +-0.515316,0.845267,-0.836655,-1.99103,0.602175,2.66305, +-0.515333,0.845232,-0.836512,-1.99106,0.602028,2.66301, +-0.51535,0.845198,-0.836369,-1.9911,0.601881,2.66298, +-0.515365,0.845164,-0.836226,-1.99113,0.601735,2.66294, +-0.51538,0.845131,-0.836082,-1.99117,0.601588,2.66291, +-0.515394,0.845099,-0.835939,-1.9912,0.601442,2.66288, +-0.515407,0.845068,-0.835794,-1.99123,0.601295,2.66285, +-0.515418,0.845038,-0.835649,-1.99126,0.601148,2.66282, +-0.515428,0.84501,-0.835503,-1.99129,0.601002,2.66279, +-0.515437,0.844983,-0.835357,-1.99131,0.600855,2.66276, +-0.515445,0.844957,-0.835211,-1.99134,0.600708,2.66273, +-0.515453,0.844931,-0.835065,-1.99137,0.600562,2.66271, +-0.51546,0.844906,-0.834919,-1.99139,0.600416,2.66268, +-0.515466,0.844882,-0.834773,-1.99142,0.60027,2.66266, +-0.515471,0.844859,-0.834626,-1.99144,0.600125,2.66264, +-0.515474,0.844838,-0.834478,-1.99146,0.599979,2.66262, +-0.515477,0.844818,-0.83433,-1.99148,0.599833,2.6626, +-0.515478,0.844799,-0.834182,-1.9915,0.599688,2.66258, +-0.515479,0.844781,-0.834034,-1.99152,0.599542,2.66256, +-0.515479,0.844763,-0.833885,-1.99153,0.599397,2.66254, +-0.515478,0.844746,-0.833737,-1.99155,0.599252,2.66252, +-0.515477,0.84473,-0.833589,-1.99157,0.599107,2.66251, +-0.515474,0.844716,-0.83344,-1.99158,0.598963,2.66249, +-0.51547,0.844703,-0.833291,-1.99159,0.598819,2.66248, +-0.515465,0.844691,-0.833141,-1.99161,0.598674,2.66247, +-0.515458,0.84468,-0.832992,-1.99162,0.59853,2.66246, +-0.515451,0.84467,-0.832842,-1.99163,0.598386,2.66245, +-0.515443,0.84466,-0.832692,-1.99164,0.598242,2.66244, +-0.515435,0.844651,-0.832543,-1.99165,0.598098,2.66243, +-0.515425,0.844644,-0.832393,-1.99165,0.597955,2.66242, +-0.515414,0.844637,-0.832244,-1.99166,0.597812,2.66242, +-0.515402,0.844632,-0.832093,-1.99167,0.59767,2.66241, +-0.515388,0.844628,-0.831942,-1.99167,0.597528,2.66241, +-0.515372,0.844625,-0.831791,-1.99167,0.597385,2.6624, +-0.515356,0.844623,-0.831641,-1.99167,0.597243,2.6624, +-0.515339,0.844621,-0.83149,-1.99168,0.597101,2.6624, +-0.515321,0.84462,-0.83134,-1.99168,0.596959,2.6624, +-0.515302,0.84462,-0.83119,-1.99168,0.596817,2.6624, +-0.515281,0.844621,-0.831039,-1.99168,0.596677,2.6624, +-0.515258,0.844624,-0.830888,-1.99167,0.596537,2.6624, +-0.515234,0.844628,-0.830737,-1.99167,0.596397,2.66241, +-0.515208,0.844633,-0.830586,-1.99166,0.596257,2.66241, +-0.515182,0.844638,-0.830435,-1.99166,0.596118,2.66242, +-0.515154,0.844644,-0.830284,-1.99165,0.595978,2.66242, +-0.515125,0.844651,-0.830134,-1.99165,0.595839,2.66243, +-0.515095,0.844659,-0.829983,-1.99164,0.5957,2.66244, +-0.515063,0.844668,-0.829833,-1.99163,0.595562,2.66245, +-0.515029,0.844679,-0.829682,-1.99162,0.595424,2.66246, +-0.514994,0.844691,-0.829531,-1.99161,0.595288,2.66247, +-0.514957,0.844705,-0.82938,-1.99159,0.595151,2.66248, +-0.514919,0.844719,-0.829229,-1.99158,0.595015,2.6625, +-0.514879,0.844734,-0.829078,-1.99156,0.594878,2.66251, +-0.514839,0.844751,-0.828928,-1.99155,0.594742,2.66253, +-0.514796,0.844768,-0.828779,-1.99153,0.594607,2.66255, +-0.514753,0.844788,-0.828628,-1.99151,0.594472,2.66257, +-0.514707,0.844808,-0.828478,-1.99149,0.594338,2.66259, +-0.514659,0.844831,-0.828328,-1.99147,0.594205,2.66261, +-0.514609,0.844855,-0.828177,-1.99144,0.594072,2.66263, +-0.514559,0.84488,-0.828027,-1.99142,0.593939,2.66266, +-0.514507,0.844906,-0.827878,-1.99139,0.593807,2.66268, +-0.514453,0.844934,-0.827729,-1.99136,0.593675,2.66271, +-0.514398,0.844962,-0.82758,-1.99133,0.593543,2.66274, +-0.514341,0.844993,-0.827431,-1.9913,0.593412,2.66277, +-0.514282,0.845025,-0.827282,-1.99127,0.593282,2.6628, +-0.514221,0.845059,-0.827133,-1.99124,0.593153,2.66284, +-0.514158,0.845095,-0.826984,-1.9912,0.593024,2.66287, +-0.514094,0.845132,-0.826836,-1.99117,0.592896,2.66291, +-0.514028,0.84517,-0.826688,-1.99113,0.592768,2.66295, +-0.513961,0.845209,-0.826541,-1.99109,0.592641,2.66299, +-0.513892,0.84525,-0.826394,-1.99105,0.592514,2.66303, +-0.513821,0.845293,-0.826247,-1.991,0.592388,2.66307, +-0.513748,0.845338,-0.826099,-1.99096,0.592263,2.66312, +-0.513673,0.845385,-0.825952,-1.99091,0.592139,2.66316, +-0.513596,0.845434,-0.825806,-1.99086,0.592016,2.66321, +-0.513517,0.845484,-0.825659,-1.99081,0.591893,2.66326, +-0.513437,0.845535,-0.825514,-1.99076,0.59177,2.66331, +-0.513355,0.845588,-0.825369,-1.99071,0.591647,2.66337, +-0.513271,0.845643,-0.825225,-1.99065,0.591526,2.66342, +-0.513186,0.8457,-0.82508,-1.9906,0.591405,2.66348, +-0.513098,0.845758,-0.824936,-1.99054,0.591285,2.66354, +-0.513008,0.845819,-0.824792,-1.99048,0.591166,2.6636, +-0.512916,0.845882,-0.824648,-1.99042,0.591049,2.66366, +-0.512822,0.845946,-0.824505,-1.99035,0.590933,2.66372, +-0.512728,0.846012,-0.824363,-1.99029,0.590817,2.66379, +-0.512631,0.846079,-0.824222,-1.99022,0.590703,2.66386, +-0.512533,0.846148,-0.824081,-1.99015,0.59059,2.66393, +-0.512433,0.84622,-0.82394,-1.99008,0.590479,2.664, +-0.512331,0.846293,-0.8238,-1.99,0.590369,2.66407, +-0.512228,0.846368,-0.82366,-1.98993,0.590261,2.66415, +-0.512123,0.846445,-0.823521,-1.98985,0.590154,2.66422, +-0.512018,0.846523,-0.823383,-1.98977,0.590048,2.6643, +-0.511911,0.846602,-0.823246,-1.9897,0.589943,2.66438, +-0.511804,0.846682,-0.82311,-1.98961,0.589839,2.66446, +-0.511695,0.846765,-0.822975,-1.98953,0.589737,2.66454, +-0.511584,0.846849,-0.822841,-1.98945,0.589636,2.66463, +-0.511473,0.846935,-0.822707,-1.98936,0.589537,2.66471, +-0.51136,0.847023,-0.822573,-1.98927,0.58944,2.6648, +-0.511246,0.847112,-0.822441,-1.98919,0.589344,2.66489, +-0.511132,0.847202,-0.82231,-1.9891,0.589248,2.66498, +-0.511017,0.847293,-0.82218,-1.989,0.589154,2.66507, +-0.510901,0.847385,-0.822051,-1.98891,0.58906,2.66516, +-0.510785,0.847479,-0.821924,-1.98882,0.588968,2.66526, +-0.510667,0.847575,-0.821797,-1.98872,0.588877,2.66535, +-0.510548,0.847672,-0.82167,-1.98863,0.588788,2.66545, +-0.510428,0.84777,-0.821545,-1.98853,0.5887,2.66555, +-0.510308,0.84787,-0.821421,-1.98843,0.588614,2.66565, +-0.510187,0.847971,-0.821298,-1.98833,0.588528,2.66575, +-0.510066,0.848072,-0.821176,-1.98823,0.588443,2.66585, +-0.509945,0.848174,-0.821056,-1.98812,0.588359,2.66595, +-0.509822,0.848277,-0.820937,-1.98802,0.588276,2.66606, +-0.509699,0.848382,-0.820819,-1.98792,0.588195,2.66616, +-0.509575,0.848488,-0.820701,-1.98781,0.588115,2.66627, +-0.50945,0.848596,-0.820585,-1.9877,0.588037,2.66637, +-0.509325,0.848704,-0.820469,-1.98759,0.587959,2.66648, +-0.509199,0.848813,-0.820355,-1.98748,0.587883,2.66659, +-0.509074,0.848922,-0.820242,-1.98738,0.587807,2.6667, +-0.508948,0.849032,-0.820131,-1.98727,0.587732,2.66681, +-0.508821,0.849143,-0.820021,-1.98715,0.587659,2.66692, +-0.508694,0.849255,-0.819912,-1.98704,0.587587,2.66703, +-0.508565,0.849368,-0.819804,-1.98693,0.587516,2.66715, +-0.508436,0.849483,-0.819697,-1.98681,0.587446,2.66726, +-0.508307,0.849599,-0.81959,-1.9867,0.587378,2.66738, +-0.508177,0.849715,-0.819485,-1.98658,0.587311,2.66749, +-0.508048,0.849832,-0.819382,-1.98647,0.587244,2.66761, +-0.507918,0.849949,-0.819281,-1.98635,0.587178,2.66773, +-0.507787,0.850068,-0.819182,-1.98623,0.587114,2.66785, +-0.507656,0.850187,-0.819085,-1.98611,0.58705,2.66796, +-0.507525,0.850307,-0.818991,-1.98599,0.586988,2.66809, +-0.507392,0.850428,-0.8189,-1.98587,0.586928,2.66821, +-0.507259,0.850549,-0.818811,-1.98575,0.586868,2.66833, +-0.507126,0.85067,-0.818727,-1.98563,0.58681,2.66845, +-0.506993,0.85079,-0.818645,-1.98551,0.586752,2.66857, +-0.50686,0.850911,-0.818565,-1.98539,0.586695,2.66869, +-0.506726,0.851033,-0.818489,-1.98526,0.586638,2.66881, +-0.506592,0.851154,-0.818414,-1.98514,0.586584,2.66893, +-0.506457,0.851277,-0.818341,-1.98502,0.58653,2.66905, +-0.506322,0.851401,-0.81827,-1.9849,0.586478,2.66918, +-0.506187,0.851525,-0.818201,-1.98477,0.586427,2.6693, +-0.506052,0.851651,-0.818133,-1.98465,0.586377,2.66943, +-0.505917,0.851776,-0.818065,-1.98452,0.586328,2.66955, +-0.505782,0.851902,-0.817999,-1.98439,0.586279,2.66968, +-0.505647,0.852029,-0.817934,-1.98427,0.586232,2.66981, +-0.50551,0.852157,-0.817869,-1.98414,0.586185,2.66994, +-0.505373,0.852287,-0.817805,-1.98401,0.586141,2.67006, +-0.505235,0.852416,-0.817741,-1.98388,0.586097,2.67019, +-0.505097,0.852547,-0.817678,-1.98375,0.586055,2.67033, +-0.504958,0.852677,-0.817614,-1.98362,0.586013,2.67046, +-0.50482,0.852808,-0.81755,-1.98349,0.585972,2.67059, +-0.504681,0.85294,-0.817486,-1.98336,0.585931,2.67072, +-0.504542,0.853072,-0.817423,-1.98323,0.585892,2.67085, +-0.504403,0.853205,-0.817361,-1.98309,0.585854,2.67098, +-0.504262,0.853339,-0.8173,-1.98296,0.585817,2.67112, +-0.504121,0.853474,-0.817239,-1.98282,0.585781,2.67125, +-0.503979,0.853609,-0.81718,-1.98269,0.585747,2.67139, +-0.503838,0.853744,-0.81712,-1.98255,0.585713,2.67152, +-0.503696,0.853879,-0.817061,-1.98242,0.58568,2.67166, +-0.503555,0.854015,-0.817002,-1.98228,0.585647,2.67179, +-0.503413,0.854151,-0.816943,-1.98215,0.585616,2.67193, +-0.50327,0.854288,-0.816886,-1.98201,0.585586,2.67207, +-0.503127,0.854426,-0.81683,-1.98187,0.585557,2.6722, +-0.502984,0.854564,-0.816774,-1.98173,0.58553,2.67234, +-0.50284,0.854703,-0.81672,-1.98159,0.585503,2.67248, +-0.502696,0.854843,-0.816666,-1.98145,0.585477,2.67262, +-0.502552,0.854982,-0.816612,-1.98132,0.585452,2.67276, +-0.502409,0.855122,-0.816559,-1.98118,0.585428,2.6729, +-0.502264,0.855262,-0.816507,-1.98104,0.585404,2.67304, +-0.50212,0.855403,-0.816456,-1.98089,0.585382,2.67318, +-0.501974,0.855545,-0.816406,-1.98075,0.585362,2.67332, +-0.501829,0.855688,-0.816358,-1.98061,0.585342,2.67347, +-0.501683,0.85583,-0.81631,-1.98047,0.585324,2.67361, +-0.501537,0.855974,-0.816262,-1.98032,0.585306,2.67375, +-0.501391,0.856117,-0.816215,-1.98018,0.585289,2.67389, +-0.501245,0.85626,-0.816169,-1.98004,0.585272,2.67404, +-0.501099,0.856403,-0.816124,-1.97989,0.585257,2.67418, +-0.500952,0.856548,-0.816079,-1.97975,0.585243,2.67433, +-0.500805,0.856693,-0.816036,-1.97961,0.58523,2.67447, +-0.500659,0.856838,-0.815994,-1.97946,0.585218,2.67462, +-0.500512,0.856984,-0.815953,-1.97931,0.585208,2.67476, +-0.500365,0.85713,-0.815913,-1.97917,0.585198,2.67491, +-0.500219,0.857276,-0.815873,-1.97902,0.585189,2.67505, +-0.500072,0.857421,-0.815834,-1.97888,0.58518,2.6752, +-0.499926,0.857568,-0.815795,-1.97873,0.585173,2.67535, +-0.499778,0.857714,-0.815758,-1.97858,0.585166,2.67549, +-0.499631,0.857862,-0.815723,-1.97844,0.585161,2.67564, +-0.499484,0.85801,-0.815688,-1.97829,0.585157,2.67579, +-0.499337,0.858158,-0.815655,-1.97814,0.585155,2.67594, +-0.49919,0.858306,-0.815622,-1.97799,0.585152,2.67608, +-0.499043,0.858454,-0.81559,-1.97784,0.585151,2.67623, +-0.498896,0.858602,-0.815558,-1.9777,0.58515,2.67638, +-0.498749,0.85875,-0.815527,-1.97755,0.58515,2.67653, +-0.498602,0.858899,-0.815498,-1.9774,0.585151,2.67668, +-0.498454,0.859048,-0.81547,-1.97725,0.585154,2.67683, +-0.498307,0.859197,-0.815443,-1.9771,0.585157,2.67698, +-0.49816,0.859347,-0.815417,-1.97695,0.585162,2.67713, +-0.498013,0.859497,-0.815392,-1.9768,0.585168,2.67728, +-0.497866,0.859646,-0.815368,-1.97665,0.585174,2.67742, +-0.49772,0.859795,-0.815344,-1.9765,0.585181,2.67757, +-0.497573,0.859945,-0.815321,-1.97635,0.585188,2.67772, +-0.497427,0.860095,-0.8153,-1.9762,0.585197,2.67787, +-0.49728,0.860245,-0.815279,-1.97605,0.585208,2.67802, +-0.497134,0.860396,-0.81526,-1.9759,0.58522,2.67817, +-0.496987,0.860546,-0.815242,-1.97575,0.585233,2.67832, +-0.496841,0.860697,-0.815225,-1.9756,0.585247,2.67848, +-0.496694,0.860847,-0.815209,-1.97545,0.585262,2.67863, +-0.496549,0.860997,-0.815193,-1.9753,0.585278,2.67878, +-0.496404,0.861147,-0.815178,-1.97515,0.585296,2.67893, +-0.496258,0.861298,-0.815164,-1.975,0.585314,2.67908, +-0.496113,0.861449,-0.815152,-1.97485,0.585335,2.67923, +-0.495968,0.8616,-0.815141,-1.9747,0.585357,2.67938, +-0.495823,0.861751,-0.815131,-1.97455,0.58538,2.67953, +-0.495678,0.861902,-0.815122,-1.9744,0.585405,2.67968, +-0.495533,0.862052,-0.815114,-1.97425,0.58543,2.67983, +-0.495389,0.862202,-0.815106,-1.9741,0.585457,2.67998, +-0.495245,0.862353,-0.815099,-1.97394,0.585485,2.68013, +-0.495102,0.862503,-0.815093,-1.97379,0.585514,2.68028, +-0.494959,0.862654,-0.815089,-1.97364,0.585545,2.68043, +-0.494816,0.862805,-0.815086,-1.97349,0.585578,2.68058, +-0.494673,0.862956,-0.815084,-1.97334,0.585613,2.68073, +-0.49453,0.863106,-0.815082,-1.97319,0.585649,2.68088, +-0.494387,0.863256,-0.815082,-1.97304,0.585686,2.68103, +-0.494244,0.863406,-0.815081,-1.97289,0.585724,2.68118, +-0.494103,0.863555,-0.815082,-1.97274,0.585764,2.68133, +-0.493962,0.863705,-0.815084,-1.97259,0.585805,2.68148, +-0.493821,0.863855,-0.815088,-1.97244,0.585849,2.68163, +-0.493681,0.864005,-0.815093,-1.97229,0.585894,2.68178, +-0.49354,0.864155,-0.815099,-1.97214,0.585941,2.68193, +-0.493399,0.864304,-0.815105,-1.97199,0.585989,2.68208, +-0.493259,0.864453,-0.815112,-1.97184,0.586039,2.68223, +-0.49312,0.864602,-0.815121,-1.9717,0.58609,2.68238, +-0.492981,0.86475,-0.81513,-1.97155,0.586142,2.68253, +-0.492842,0.864898,-0.81514,-1.9714,0.586197,2.68268, +-0.492705,0.865047,-0.815152,-1.97125,0.586253,2.68282, +-0.492568,0.865195,-0.815166,-1.9711,0.586312,2.68297, +-0.49243,0.865344,-0.815181,-1.97095,0.586372,2.68312, +-0.492293,0.865491,-0.815197,-1.97081,0.586434,2.68327, +-0.492156,0.865638,-0.815213,-1.97066,0.586497,2.68342, +-0.492019,0.865785,-0.815231,-1.97051,0.586562,2.68356, +-0.491882,0.865931,-0.815251,-1.97037,0.586629,2.68371, +-0.491745,0.866078,-0.815272,-1.97022,0.586697,2.68386, +-0.491607,0.866224,-0.815294,-1.97007,0.586768,2.684, +-0.491469,0.86637,-0.815319,-1.96993,0.586841,2.68415, +-0.491332,0.866516,-0.815345,-1.96978,0.586916,2.68429, +-0.491195,0.866661,-0.815372,-1.96964,0.586992,2.68444, +-0.491058,0.866806,-0.8154,-1.96949,0.58707,2.68458, +-0.490923,0.86695,-0.81543,-1.96935,0.58715,2.68473, +-0.490787,0.867093,-0.815461,-1.9692,0.587231,2.68487, +-0.490652,0.867236,-0.815494,-1.96906,0.587315,2.68501, +-0.490516,0.86738,-0.815528,-1.96892,0.587401,2.68516, +-0.490382,0.867523,-0.815565,-1.96877,0.587489,2.6853, +-0.490247,0.867665,-0.815604,-1.96863,0.587579,2.68544, +-0.490114,0.867807,-0.815643,-1.96849,0.58767,2.68558, +-0.489982,0.867948,-0.815684,-1.96835,0.587763,2.68573, +-0.489851,0.868088,-0.815727,-1.96821,0.587857,2.68587, +-0.489721,0.868227,-0.815771,-1.96807,0.587953,2.68601, +-0.489591,0.868366,-0.815817,-1.96793,0.588051,2.68614, +-0.489462,0.868505,-0.815865,-1.96779,0.588151,2.68628, +-0.489334,0.868643,-0.815915,-1.96765,0.588253,2.68642, +-0.489207,0.86878,-0.815966,-1.96752,0.588356,2.68656, +-0.489081,0.868917,-0.816019,-1.96738,0.588459,2.68669, +-0.488958,0.869052,-0.816073,-1.96725,0.588564,2.68683, +-0.488835,0.869186,-0.816129,-1.96711,0.58867,2.68696, +-0.488714,0.869319,-0.816186,-1.96698,0.588777,2.6871, +-0.488593,0.869451,-0.816245,-1.96685,0.588885,2.68723, +-0.488474,0.869583,-0.816306,-1.96671,0.588995,2.68736, +-0.488355,0.869714,-0.816369,-1.96658,0.589106,2.68749, +-0.488238,0.869844,-0.816434,-1.96645,0.589218,2.68762, +-0.488123,0.869973,-0.8165,-1.96632,0.589331,2.68775, +-0.48801,0.870101,-0.816567,-1.9662,0.589444,2.68788, +-0.487898,0.870227,-0.816636,-1.96607,0.589558,2.688, +-0.487788,0.870352,-0.816706,-1.96595,0.589673,2.68813, +-0.487678,0.870476,-0.816778,-1.96582,0.589789,2.68825, +-0.48757,0.8706,-0.816852,-1.9657,0.589906,2.68838, +-0.487463,0.870722,-0.816927,-1.96557,0.590024,2.6885, +-0.487357,0.870844,-0.817004,-1.96545,0.590143,2.68862, +-0.487253,0.870964,-0.817083,-1.96533,0.590262,2.68874, +-0.487151,0.871082,-0.817162,-1.96521,0.590382,2.68886, +-0.487051,0.8712,-0.817242,-1.9651,0.590502,2.68898, +-0.486954,0.871315,-0.817324,-1.96498,0.590622,2.68909, +-0.486859,0.871431,-0.817408,-1.96487,0.590744,2.68921, +-0.486767,0.871545,-0.817494,-1.96475,0.590866,2.68932, +-0.486678,0.871658,-0.81758,-1.96464,0.59099,2.68944, +-0.486593,0.87177,-0.817669,-1.96453,0.591114,2.68955, +-0.48651,0.871881,-0.817758,-1.96442,0.591238,2.68966, +-0.486431,0.87199,-0.817848,-1.96431,0.591362,2.68977, +-0.486354,0.872098,-0.817939,-1.9642,0.591487,2.68988, +-0.48628,0.872205,-0.818031,-1.96409,0.591612,2.68998, +-0.486208,0.87231,-0.818125,-1.96399,0.591738,2.69009, +-0.486138,0.872415,-0.81822,-1.96388,0.591865,2.69019, +-0.486069,0.872519,-0.818317,-1.96378,0.591992,2.6903, +-0.486002,0.872622,-0.818415,-1.96368,0.59212,2.6904, +-0.485937,0.872723,-0.818513,-1.96357,0.592248,2.6905, +-0.485872,0.872823,-0.818613,-1.96347,0.592377,2.6906, +-0.485808,0.872921,-0.818713,-1.96338,0.592505,2.6907, +-0.485746,0.873016,-0.818814,-1.96328,0.592634,2.69079, +-0.485684,0.87311,-0.818916,-1.96319,0.592764,2.69089, +-0.485624,0.8732,-0.81902,-1.9631,0.592894,2.69098, +-0.485563,0.873288,-0.819125,-1.96301,0.593025,2.69107, +-0.485503,0.873372,-0.819231,-1.96293,0.593157,2.69115, +-0.485443,0.873453,-0.819338,-1.96284,0.593289,2.69123, +-0.485383,0.873532,-0.819445,-1.96277,0.593421,2.69131, +-0.485323,0.873607,-0.819553,-1.96269,0.593553,2.69139, +-0.485264,0.873681,-0.819661,-1.96262,0.593685,2.69146, +-0.485206,0.873752,-0.819771,-1.96255,0.593818,2.69153, +-0.485148,0.873821,-0.819882,-1.96248,0.593952,2.6916, +-0.485092,0.873889,-0.819994,-1.96241,0.594087,2.69167, +-0.485036,0.873955,-0.820108,-1.96234,0.594221,2.69173, +-0.484981,0.87402,-0.820221,-1.96228,0.594356,2.6918, +-0.484926,0.874084,-0.820335,-1.96221,0.594492,2.69186, +-0.484872,0.874147,-0.82045,-1.96215,0.594627,2.69192, +-0.484819,0.874209,-0.820565,-1.96209,0.594762,2.69199, +-0.484767,0.87427,-0.820682,-1.96203,0.594898,2.69205, +-0.484716,0.874331,-0.8208,-1.96197,0.595035,2.69211, +-0.484666,0.874392,-0.820918,-1.96191,0.595173,2.69217, +-0.484617,0.874452,-0.821038,-1.96184,0.595311,2.69223, +-0.484568,0.874513,-0.821158,-1.96178,0.595449,2.69229, +-0.48452,0.874573,-0.821279,-1.96172,0.595587,2.69235, +-0.484472,0.874633,-0.8214,-1.96166,0.595725,2.69241, +-0.484425,0.874693,-0.821521,-1.9616,0.595864,2.69247, +-0.48438,0.874752,-0.821644,-1.96155,0.596003,2.69253, +-0.484335,0.87481,-0.821768,-1.96149,0.596143,2.69259, +-0.484291,0.874867,-0.821893,-1.96143,0.596283,2.69265, +-0.484249,0.874924,-0.822019,-1.96137,0.596424,2.6927, +-0.484207,0.87498,-0.822145,-1.96132,0.596565,2.69276, +-0.484166,0.875035,-0.822272,-1.96126,0.596706,2.69281, +-0.484125,0.875091,-0.822398,-1.96121,0.596847,2.69287, +-0.484085,0.875145,-0.822526,-1.96115,0.596988,2.69292, +-0.484046,0.875199,-0.822655,-1.9611,0.59713,2.69298, +-0.484009,0.875251,-0.822785,-1.96105,0.597273,2.69303, +-0.483973,0.875303,-0.822915,-1.96099,0.597416,2.69308, +-0.483938,0.875353,-0.823047,-1.96094,0.597559,2.69313, +-0.483903,0.875404,-0.823179,-1.96089,0.597703,2.69318, +-0.483869,0.875454,-0.823311,-1.96084,0.597846,2.69323, +-0.483836,0.875503,-0.823444,-1.96079,0.59799,2.69328, +-0.483803,0.875551,-0.823577,-1.96075,0.598133,2.69333, +-0.483772,0.875599,-0.823711,-1.9607,0.598278,2.69338, +-0.483742,0.875645,-0.823847,-1.96065,0.598423,2.69342, +-0.483713,0.875691,-0.823983,-1.96061,0.598568,2.69347, +-0.483685,0.875735,-0.82412,-1.96056,0.598714,2.69351, +-0.483658,0.875779,-0.824257,-1.96052,0.598859,2.69356, +-0.483631,0.875822,-0.824394,-1.96048,0.599005,2.6936, +-0.483605,0.875865,-0.824532,-1.96043,0.59915,2.69364, +-0.48358,0.875907,-0.82467,-1.96039,0.599296,2.69369, +-0.483557,0.875947,-0.824809,-1.96035,0.599442,2.69373, +-0.483534,0.875987,-0.82495,-1.96031,0.599588,2.69377, +-0.483513,0.876025,-0.82509,-1.96027,0.599735,2.6938, +-0.483493,0.876063,-0.825232,-1.96023,0.599882,2.69384, +-0.483474,0.876099,-0.825373,-1.9602,0.600029,2.69388, +-0.483455,0.876135,-0.825515,-1.96016,0.600175,2.69391, +-0.483437,0.876171,-0.825657,-1.96013,0.600322,2.69395, +-0.483419,0.876205,-0.825799,-1.96009,0.600468,2.69398, +-0.483403,0.876239,-0.825942,-1.96006,0.600615,2.69402, +-0.483389,0.876271,-0.826085,-1.96003,0.600762,2.69405, +-0.483375,0.876301,-0.82623,-1.96,0.600909,2.69408, +-0.483363,0.876331,-0.826374,-1.95997,0.601056,2.69411, +-0.483351,0.87636,-0.826519,-1.95994,0.601202,2.69414, +-0.48334,0.876389,-0.826664,-1.95991,0.601349,2.69417, +-0.48333,0.876417,-0.826809,-1.95988,0.601495,2.69419, +-0.48332,0.876444,-0.826954,-1.95985,0.601642,2.69422, +-0.483312,0.876469,-0.8271,-1.95983,0.601788,2.69425, +-0.483305,0.876494,-0.827246,-1.9598,0.601934,2.69427, +-0.4833,0.876517,-0.827393,-1.95978,0.60208,2.69429, +-0.483295,0.876539,-0.827541,-1.95976,0.602226,2.69432, +-0.483291,0.87656,-0.827688,-1.95974,0.602372,2.69434, +-0.483288,0.876581,-0.827835,-1.95972,0.602518,2.69436, +-0.483285,0.876601,-0.827982,-1.9597,0.602664,2.69438, +-0.483283,0.87662,-0.828129,-1.95968,0.602809,2.6944, +-0.483282,0.876638,-0.828277,-1.95966,0.602954,2.69442, +-0.483283,0.876654,-0.828425,-1.95964,0.603099,2.69443, +-0.483284,0.876669,-0.828573,-1.95963,0.603243,2.69445, +-0.483285,0.876681,-0.828721,-1.95962,0.603387,2.69446, +-0.483287,0.876692,-0.828869,-1.95961,0.603529,2.69447, +-0.483288,0.8767,-0.829015,-1.9596,0.603671,2.69448, +-0.48329,0.876707,-0.829161,-1.95959,0.603811,2.69449, +-0.483292,0.876713,-0.829307,-1.95958,0.60395,2.69449, +-0.483295,0.876717,-0.829452,-1.95958,0.604089,2.6945, +-0.483299,0.876721,-0.829598,-1.95958,0.604228,2.6945, +-0.483304,0.876723,-0.829744,-1.95957,0.604367,2.6945, +-0.483311,0.876726,-0.829889,-1.95957,0.604506,2.6945, +-0.483319,0.876728,-0.830035,-1.95957,0.604645,2.69451, +-0.483329,0.876731,-0.83018,-1.95957,0.604785,2.69451, +-0.483341,0.876733,-0.830326,-1.95956,0.604924,2.69451, +-0.483354,0.876735,-0.830472,-1.95956,0.605063,2.69451, +-0.48337,0.876736,-0.830619,-1.95956,0.605203,2.69451, +-0.483388,0.876737,-0.830767,-1.95956,0.605342,2.69452, +-0.483408,0.876736,-0.830915,-1.95956,0.605481,2.69451, +-0.483429,0.876735,-0.831064,-1.95956,0.60562,2.69451, +-0.483451,0.876734,-0.831212,-1.95956,0.605759,2.69451, +-0.483474,0.876733,-0.831361,-1.95956,0.605898,2.69451, +-0.483498,0.876731,-0.831509,-1.95957,0.606036,2.69451, +-0.483524,0.876728,-0.831658,-1.95957,0.606175,2.69451, +-0.483551,0.876725,-0.831808,-1.95957,0.606313,2.6945, +-0.48358,0.876721,-0.831958,-1.95958,0.60645,2.6945, +-0.483611,0.876715,-0.832108,-1.95958,0.606588,2.69449, +-0.483643,0.876708,-0.832258,-1.95959,0.606726,2.69449, +-0.483676,0.8767,-0.832409,-1.9596,0.606864,2.69448, +-0.48371,0.876691,-0.832559,-1.95961,0.607001,2.69447, +-0.483746,0.876681,-0.832709,-1.95962,0.607139,2.69446, +-0.483783,0.876669,-0.832859,-1.95963,0.607276,2.69445, +-0.483821,0.876655,-0.83301,-1.95964,0.607412,2.69443, +-0.483862,0.87664,-0.83316,-1.95966,0.607548,2.69442, +-0.483904,0.876623,-0.833312,-1.95967,0.607683,2.6944, +-0.483948,0.876605,-0.833463,-1.95969,0.607818,2.69438, +-0.483993,0.876586,-0.833614,-1.95971,0.607953,2.69436, +-0.484039,0.876566,-0.833764,-1.95973,0.608089,2.69434, +-0.484086,0.876545,-0.833915,-1.95975,0.608224,2.69432, +-0.484135,0.876523,-0.834065,-1.95977,0.608358,2.6943, +-0.484186,0.876499,-0.834215,-1.9598,0.608492,2.69428, +-0.484239,0.876473,-0.834366,-1.95982,0.608625,2.69425, +-0.484294,0.876446,-0.834517,-1.95985,0.608757,2.69422, +-0.48435,0.876417,-0.834668,-1.95988,0.608889,2.6942, +-0.484408,0.876387,-0.834818,-1.95991,0.60902,2.69417, +-0.484468,0.876356,-0.834968,-1.95994,0.609152,2.69413, +-0.484528,0.876323,-0.835117,-1.95997,0.609283,2.6941, +-0.48459,0.876289,-0.835266,-1.96001,0.609414,2.69407, +-0.484655,0.876254,-0.835416,-1.96004,0.609544,2.69403, +-0.484721,0.876216,-0.835565,-1.96008,0.609673,2.69399, +-0.48479,0.876176,-0.835715,-1.96012,0.609801,2.69395, +-0.48486,0.876135,-0.835864,-1.96016,0.609928,2.69391, +-0.484932,0.876092,-0.836013,-1.9602,0.610055,2.69387, +-0.485005,0.876048,-0.836161,-1.96025,0.610182,2.69383, +-0.48508,0.876003,-0.836309,-1.96029,0.610308,2.69378, +-0.485156,0.875956,-0.836456,-1.96034,0.610434,2.69373, +-0.485235,0.875907,-0.836603,-1.96039,0.610558,2.69368, +-0.485316,0.875855,-0.83675,-1.96044,0.610682,2.69363, +-0.485399,0.875802,-0.836898,-1.96049,0.610805,2.69358, +-0.485484,0.875747,-0.837045,-1.96055,0.610926,2.69353, +-0.48557,0.875691,-0.837191,-1.96061,0.611048,2.69347, +-0.485658,0.875632,-0.837336,-1.96066,0.611169,2.69341, +-0.485748,0.875573,-0.83748,-1.96072,0.611291,2.69335, +-0.48584,0.875511,-0.837623,-1.96079,0.611413,2.69329, +-0.485934,0.875448,-0.837764,-1.96085,0.611535,2.69323, +-0.48603,0.875382,-0.837904,-1.96092,0.611657,2.69316, +-0.486127,0.875314,-0.838042,-1.96098,0.61178,2.69309, +-0.486227,0.875245,-0.83818,-1.96105,0.611903,2.69302, +-0.486327,0.875174,-0.838317,-1.96112,0.612025,2.69295, +-0.486429,0.875101,-0.838453,-1.9612,0.612146,2.69288, +-0.486531,0.875028,-0.838588,-1.96127,0.612267,2.69281, +-0.486636,0.874952,-0.838723,-1.96135,0.612388,2.69273, +-0.486742,0.874874,-0.838856,-1.96142,0.612508,2.69265, +-0.486849,0.874795,-0.838987,-1.9615,0.612628,2.69257, +-0.486958,0.874713,-0.839117,-1.96158,0.612747,2.69249, +-0.487068,0.874631,-0.839246,-1.96167,0.612864,2.69241, +-0.487179,0.874546,-0.839373,-1.96175,0.612981,2.69232, +-0.487291,0.874461,-0.8395,-1.96184,0.613095,2.69224, +-0.487403,0.874374,-0.839625,-1.96192,0.613209,2.69215, +-0.487517,0.874286,-0.839749,-1.96201,0.613321,2.69206, +-0.487631,0.874196,-0.839872,-1.9621,0.613432,2.69197, +-0.487747,0.874105,-0.839993,-1.96219,0.613541,2.69188, +-0.487865,0.874011,-0.840113,-1.96229,0.61365,2.69179, +-0.487982,0.873917,-0.840231,-1.96238,0.613756,2.69169, +-0.488101,0.873821,-0.840349,-1.96248,0.61386,2.6916, +-0.488219,0.873724,-0.840467,-1.96257,0.613962,2.6915, +-0.488339,0.873627,-0.840584,-1.96267,0.614061,2.6914, +-0.488459,0.873528,-0.840699,-1.96277,0.614158,2.69131, +-0.48858,0.873427,-0.840814,-1.96287,0.614251,2.69121, +-0.488702,0.873325,-0.840926,-1.96297,0.614341,2.6911, +-0.488825,0.873222,-0.841038,-1.96308,0.614428,2.691, +-0.488948,0.873117,-0.841148,-1.96318,0.614511,2.6909, +-0.489072,0.873012,-0.841258,-1.96328,0.614591,2.69079, +-0.489196,0.872906,-0.841366,-1.96339,0.614668,2.69068, +-0.48932,0.8728,-0.841474,-1.9635,0.614742,2.69058, +-0.489445,0.872692,-0.841581,-1.9636,0.614813,2.69047, +-0.489571,0.872583,-0.841686,-1.96371,0.614882,2.69036, +-0.489697,0.872473,-0.84179,-1.96382,0.614949,2.69025, +-0.489825,0.872362,-0.841892,-1.96393,0.615015,2.69014, +-0.489953,0.87225,-0.841994,-1.96405,0.615078,2.69003, +-0.490081,0.872137,-0.842095,-1.96416,0.61514,2.68992, +-0.490209,0.872024,-0.842195,-1.96427,0.615201,2.6898, +-0.490337,0.871911,-0.842294,-1.96439,0.615261,2.68969, +-0.490466,0.871796,-0.842392,-1.9645,0.615319,2.68957, +-0.490596,0.871681,-0.842489,-1.96462,0.615377,2.68946, +-0.490726,0.871564,-0.842585,-1.96473,0.615433,2.68934, +-0.490857,0.871447,-0.842679,-1.96485,0.615488,2.68922, +-0.490989,0.871329,-0.842772,-1.96497,0.615544,2.68911, +-0.491121,0.87121,-0.842865,-1.96509,0.615599,2.68899, +-0.491252,0.871091,-0.842957,-1.96521,0.615654,2.68887, +-0.491384,0.870971,-0.843048,-1.96533,0.615708,2.68875, +-0.491516,0.870851,-0.843139,-1.96545,0.615763,2.68863, +-0.491649,0.87073,-0.843228,-1.96557,0.615817,2.68851, +-0.491783,0.870608,-0.843315,-1.96569,0.615869,2.68839, +-0.491917,0.870485,-0.843402,-1.96581,0.615921,2.68826, +-0.492052,0.870361,-0.843487,-1.96594,0.615972,2.68814, +-0.492187,0.870237,-0.843572,-1.96606,0.616022,2.68801, +-0.492322,0.870113,-0.843656,-1.96618,0.616071,2.68789, +-0.492457,0.869988,-0.843739,-1.96631,0.616119,2.68777, +-0.492592,0.869862,-0.843822,-1.96643,0.616166,2.68764, +-0.492728,0.869736,-0.843903,-1.96656,0.616212,2.68751, +-0.492865,0.869609,-0.843983,-1.96669,0.616257,2.68739, +-0.493002,0.869481,-0.844062,-1.96682,0.616301,2.68726, +-0.49314,0.869352,-0.84414,-1.96695,0.616344,2.68713, +-0.493278,0.869223,-0.844217,-1.96707,0.616386,2.687, +-0.493416,0.869094,-0.844293,-1.9672,0.616428,2.68687, +-0.493554,0.868964,-0.844369,-1.96733,0.61647,2.68674, +-0.493692,0.868834,-0.844444,-1.96746,0.616511,2.68661, +-0.493831,0.868703,-0.844517,-1.96759,0.616551,2.68648, +-0.49397,0.868571,-0.844589,-1.96773,0.61659,2.68635, +-0.494111,0.868439,-0.84466,-1.96786,0.616627,2.68622, +-0.494251,0.868305,-0.84473,-1.96799,0.616664,2.68608, +-0.494392,0.868172,-0.8448,-1.96813,0.616699,2.68595, +-0.494532,0.868038,-0.844868,-1.96826,0.616735,2.68582, +-0.494673,0.867904,-0.844936,-1.96839,0.616769,2.68568, +-0.494814,0.86777,-0.845004,-1.96853,0.616802,2.68555, +-0.494955,0.867634,-0.84507,-1.96866,0.616835,2.68541, +-0.495098,0.867498,-0.845134,-1.9688,0.616865,2.68528, +-0.49524,0.867361,-0.845198,-1.96894,0.616895,2.68514, +-0.495383,0.867223,-0.84526,-1.96907,0.616924,2.685, +-0.495526,0.867086,-0.845322,-1.96921,0.616952,2.68486, +-0.495669,0.866948,-0.845383,-1.96935,0.61698,2.68473, +-0.495812,0.86681,-0.845443,-1.96949,0.617007,2.68459, +-0.495956,0.866671,-0.845503,-1.96963,0.617033,2.68445, +-0.496099,0.866531,-0.845561,-1.96977,0.617057,2.68431, +-0.496244,0.866391,-0.845618,-1.96991,0.617081,2.68417, +-0.496389,0.86625,-0.845673,-1.97005,0.617103,2.68403, +-0.496534,0.866109,-0.845728,-1.97019,0.617125,2.68389, +-0.496679,0.865967,-0.845782,-1.97033,0.617145,2.68375, +-0.496823,0.865826,-0.845835,-1.97047,0.617165,2.6836, +-0.496968,0.865684,-0.845888,-1.97061,0.617185,2.68346, +-0.497113,0.865543,-0.84594,-1.97075,0.617203,2.68332, +-0.497258,0.8654,-0.84599,-1.9709,0.61722,2.68318, +-0.497404,0.865257,-0.846039,-1.97104,0.617236,2.68303, +-0.49755,0.865113,-0.846087,-1.97118,0.61725,2.68289, +-0.497696,0.864969,-0.846134,-1.97133,0.617264,2.68275, +-0.497842,0.864824,-0.84618,-1.97147,0.617277,2.6826, +-0.497988,0.86468,-0.846225,-1.97162,0.617289,2.68246, +-0.498134,0.864536,-0.84627,-1.97176,0.617301,2.68231, +-0.49828,0.864391,-0.846314,-1.97191,0.617312,2.68217, +-0.498426,0.864246,-0.846356,-1.97205,0.617321,2.68202, +-0.498573,0.8641,-0.846397,-1.9722,0.617329,2.68188, +-0.49872,0.863954,-0.846437,-1.97234,0.617336,2.68173, +-0.498866,0.863807,-0.846475,-1.97249,0.617342,2.68159, +-0.499013,0.863661,-0.846513,-1.97264,0.617348,2.68144, +-0.499159,0.863514,-0.846551,-1.97278,0.617352,2.68129, +-0.499305,0.863368,-0.846588,-1.97293,0.617357,2.68115, +-0.499452,0.863221,-0.846623,-1.97308,0.61736,2.681, +-0.499599,0.863074,-0.846658,-1.97322,0.617362,2.68085, +-0.499746,0.862926,-0.84669,-1.97337,0.617362,2.6807, +-0.499892,0.862778,-0.846722,-1.97352,0.617362,2.68056, +-0.500038,0.86263,-0.846751,-1.97367,0.61736,2.68041, +-0.500183,0.862481,-0.846778,-1.97382,0.617358,2.68026, +-0.500328,0.862333,-0.846802,-1.97396,0.617356,2.68011, +-0.500471,0.862185,-0.846824,-1.97411,0.617352,2.67996, +-0.500614,0.862038,-0.846844,-1.97426,0.617348,2.67982, +-0.500757,0.861892,-0.846863,-1.97441,0.617343,2.67967, +-0.5009,0.861745,-0.84688,-1.97455,0.617336,2.67952, +-0.501043,0.861599,-0.846895,-1.9747,0.617328,2.67938, +-0.501187,0.861453,-0.84691,-1.97484,0.617319,2.67923, +-0.50133,0.861307,-0.846924,-1.97499,0.617309,2.67909, +-0.501474,0.861161,-0.846937,-1.97514,0.617299,2.67894, +-0.501618,0.861015,-0.84695,-1.97528,0.617287,2.67879, +-0.501761,0.860868,-0.846963,-1.97543,0.617274,2.67865, +-0.501905,0.860722,-0.846977,-1.97558,0.61726,2.6785, +-0.502049,0.860574,-0.846991,-1.97572,0.617245,2.67835, +-0.502192,0.860426,-0.847005,-1.97587,0.617227,2.6782, +-0.502336,0.860278,-0.84702,-1.97602,0.617209,2.67806, +-0.50248,0.860129,-0.847035,-1.97617,0.617189,2.67791, +-0.502623,0.859981,-0.84705,-1.97632,0.617169,2.67776, +-0.502766,0.859833,-0.847065,-1.97646,0.617148,2.67761, +-0.50291,0.859685,-0.847079,-1.97661,0.617125,2.67746, +-0.503053,0.859536,-0.847093,-1.97676,0.617101,2.67731, +-0.503196,0.859386,-0.847105,-1.97691,0.617075,2.67716, +-0.503339,0.859237,-0.847117,-1.97706,0.617048,2.67702, +-0.503483,0.859087,-0.847127,-1.97721,0.617019,2.67687, +-0.503626,0.858937,-0.847135,-1.97736,0.616989,2.67672, +-0.503769,0.858787,-0.847143,-1.97751,0.616958,2.67657, +-0.503911,0.858638,-0.847149,-1.97766,0.616925,2.67642, +-0.504054,0.858489,-0.847154,-1.97781,0.616892,2.67627, +-0.504195,0.858339,-0.847158,-1.97796,0.616856,2.67612, +-0.504337,0.858189,-0.84716,-1.97811,0.616819,2.67597, +-0.504479,0.858039,-0.84716,-1.97826,0.61678,2.67582, +-0.504621,0.857889,-0.84716,-1.97841,0.616739,2.67567, +-0.504763,0.857739,-0.847159,-1.97856,0.616697,2.67552, +-0.504904,0.857589,-0.847157,-1.97871,0.616654,2.67537, +-0.505046,0.85744,-0.847155,-1.97886,0.61661,2.67522, +-0.505186,0.85729,-0.847152,-1.97901,0.616564,2.67507, +-0.505326,0.857141,-0.847147,-1.97916,0.616516,2.67492, +-0.505466,0.856991,-0.847142,-1.97931,0.616467,2.67477, +-0.505605,0.856841,-0.847134,-1.97946,0.616415,2.67462, +-0.505745,0.856692,-0.847126,-1.97961,0.616362,2.67447, +-0.505884,0.856542,-0.847116,-1.97975,0.616307,2.67432, +-0.506024,0.856394,-0.847106,-1.9799,0.616251,2.67417, +-0.506162,0.856245,-0.847094,-1.98005,0.616193,2.67402, +-0.5063,0.856097,-0.847082,-1.9802,0.616134,2.67388, +-0.506437,0.855949,-0.847068,-1.98035,0.616073,2.67373, +-0.506574,0.8558,-0.847052,-1.9805,0.616009,2.67358, +-0.50671,0.855652,-0.847035,-1.98065,0.615944,2.67343, +-0.506846,0.855504,-0.847016,-1.98079,0.615877,2.67328, +-0.506982,0.855356,-0.846996,-1.98094,0.615808,2.67313, +-0.507118,0.855209,-0.846975,-1.98109,0.615737,2.67299, +-0.507253,0.855063,-0.846953,-1.98123,0.615666,2.67284, +-0.507388,0.854917,-0.846929,-1.98138,0.615592,2.6727, +-0.507521,0.854771,-0.846904,-1.98153,0.615516,2.67255, +-0.507654,0.854625,-0.846877,-1.98167,0.615438,2.6724, +-0.507786,0.854479,-0.846847,-1.98182,0.615358,2.67226, +-0.507918,0.854334,-0.846817,-1.98196,0.615275,2.67211, +-0.50805,0.854189,-0.846785,-1.98211,0.615191,2.67197, +-0.508181,0.854045,-0.846751,-1.98225,0.615106,2.67182, +-0.508312,0.853902,-0.846717,-1.9824,0.615018,2.67168, +-0.508442,0.853761,-0.846681,-1.98254,0.614929,2.67154, +-0.508571,0.853621,-0.846642,-1.98268,0.614837,2.6714, +-0.508699,0.853483,-0.846602,-1.98281,0.614744,2.67126, +-0.508825,0.853346,-0.84656,-1.98295,0.614648,2.67112, +-0.508949,0.853211,-0.846516,-1.98309,0.614551,2.67099, +-0.509072,0.853076,-0.846471,-1.98322,0.614453,2.67085, +-0.509193,0.852943,-0.846424,-1.98335,0.614354,2.67072, +-0.509312,0.85281,-0.846376,-1.98349,0.614253,2.67059, +-0.509429,0.852678,-0.846327,-1.98362,0.614151,2.67046, +-0.509544,0.852548,-0.846275,-1.98375,0.614047,2.67033, +-0.509657,0.85242,-0.846222,-1.98388,0.613941,2.6702, +-0.509769,0.852293,-0.846166,-1.984,0.613834,2.67007, +-0.50988,0.852167,-0.846109,-1.98413,0.613726,2.66994, +-0.509989,0.852042,-0.84605,-1.98426,0.613617,2.66982, +-0.510098,0.851918,-0.84599,-1.98438,0.613507,2.6697, +-0.510206,0.851795,-0.845929,-1.9845,0.613397,2.66957, +-0.510313,0.851673,-0.845866,-1.98462,0.613285,2.66945, +-0.510419,0.851553,-0.845801,-1.98474,0.613172,2.66933, +-0.510523,0.851434,-0.845734,-1.98486,0.613058,2.66921, +-0.510625,0.851317,-0.845665,-1.98498,0.612943,2.6691, +-0.510726,0.851201,-0.845595,-1.9851,0.612827,2.66898, +-0.510826,0.851086,-0.845523,-1.98521,0.612711,2.66886, +-0.510925,0.850971,-0.84545,-1.98533,0.612594,2.66875, +-0.511024,0.850857,-0.845376,-1.98544,0.612476,2.66864, +-0.511121,0.850745,-0.8453,-1.98555,0.612358,2.66852, +-0.511217,0.850634,-0.845223,-1.98566,0.612239,2.66841, +-0.511311,0.850524,-0.845143,-1.98577,0.612118,2.6683, +-0.511403,0.850416,-0.845062,-1.98588,0.611997,2.66819, +-0.511495,0.850308,-0.84498,-1.98599,0.611875,2.66809, +-0.511585,0.850202,-0.844896,-1.98609,0.611753,2.66798, +-0.511675,0.850097,-0.844812,-1.9862,0.611631,2.66787, +-0.511764,0.849992,-0.844726,-1.9863,0.611508,2.66777, +-0.511852,0.849889,-0.844639,-1.98641,0.611385,2.66767, +-0.511938,0.849787,-0.84455,-1.98651,0.61126,2.66756, +-0.512023,0.849686,-0.844459,-1.98661,0.611135,2.66746, +-0.512107,0.849587,-0.844368,-1.98671,0.611009,2.66737, +-0.512189,0.849489,-0.844275,-1.98681,0.610883,2.66727, +-0.512271,0.849391,-0.844181,-1.98691,0.610757,2.66717, +-0.512352,0.849295,-0.844086,-1.987,0.61063,2.66707, +-0.512432,0.849199,-0.84399,-1.9871,0.610503,2.66698, +-0.51251,0.849104,-0.843893,-1.98719,0.610375,2.66688, +-0.512588,0.84901,-0.843795,-1.98729,0.610247,2.66679, +-0.512664,0.848918,-0.843695,-1.98738,0.610118,2.6667, +-0.512739,0.848827,-0.843594,-1.98747,0.609989,2.6666, +-0.512812,0.848737,-0.843492,-1.98756,0.609858,2.66651, +-0.512885,0.848647,-0.843389,-1.98765,0.609728,2.66643, +-0.512958,0.848559,-0.843286,-1.98774,0.609598,2.66634, +-0.513029,0.848471,-0.843182,-1.98783,0.609467,2.66625, +-0.513099,0.848384,-0.843077,-1.98791,0.609336,2.66616, +-0.513169,0.848298,-0.84297,-1.988,0.609205,2.66608, +-0.513236,0.848214,-0.842863,-1.98808,0.609072,2.66599, +-0.513303,0.848131,-0.842754,-1.98817,0.608939,2.66591, +-0.513368,0.848049,-0.842644,-1.98825,0.608806,2.66583, +-0.513432,0.847967,-0.842534,-1.98833,0.608672,2.66575, +-0.513496,0.847887,-0.842423,-1.98841,0.608538,2.66567, +-0.513559,0.847807,-0.842312,-1.98849,0.608404,2.66559, +-0.513621,0.847728,-0.8422,-1.98857,0.60827,2.66551, +-0.513682,0.84765,-0.842086,-1.98865,0.608135,2.66543, +-0.513742,0.847573,-0.841972,-1.98872,0.608,2.66535, +-0.5138,0.847498,-0.841856,-1.9888,0.607863,2.66528, +-0.513857,0.847424,-0.84174,-1.98887,0.607727,2.6652, +-0.513913,0.847351,-0.841623,-1.98895,0.60759,2.66513, +-0.513969,0.847278,-0.841505,-1.98902,0.607453,2.66506, +-0.514024,0.847205,-0.841387,-1.98909,0.607316,2.66498, +-0.514078,0.847134,-0.841268,-1.98916,0.607179,2.66491, +-0.51413,0.847064,-0.841148,-1.98923,0.607041,2.66484, +-0.514181,0.846996,-0.841027,-1.9893,0.606903,2.66477, +-0.514231,0.846928,-0.840905,-1.98937,0.606763,2.66471, +-0.51428,0.846862,-0.840782,-1.98944,0.606624,2.66464, +-0.514329,0.846796,-0.840659,-1.9895,0.606484,2.66457, +-0.514376,0.846731,-0.840535,-1.98957,0.606345,2.66451, +-0.514423,0.846666,-0.840411,-1.98963,0.606205,2.66444, +-0.514469,0.846602,-0.840287,-1.98969,0.606065,2.66438, +-0.514514,0.84654,-0.840161,-1.98976,0.605924,2.66432, +-0.514557,0.846479,-0.840034,-1.98982,0.605783,2.66426, +-0.514599,0.846419,-0.839906,-1.98988,0.605641,2.6642, +-0.51464,0.84636,-0.839777,-1.98994,0.605499,2.66414, +-0.51468,0.846302,-0.839648,-1.99,0.605356,2.66408, +-0.514719,0.846245,-0.839518,-1.99005,0.605214,2.66402, +-0.514758,0.846188,-0.839388,-1.99011,0.605072,2.66397, +-0.514796,0.846132,-0.839257,-1.99017,0.604929,2.66391, +-0.514833,0.846077,-0.839125,-1.99022,0.604786,2.66386, +-0.514868,0.846024,-0.838991,-1.99027,0.604642,2.6638, +-0.514902,0.845972,-0.838857,-1.99033,0.604498,2.66375, +-0.514935,0.845921,-0.838723,-1.99038,0.604353,2.6637, +-0.514967,0.845871,-0.838587,-1.99043,0.604208,2.66365, +-0.514999,0.845821,-0.838452,-1.99048,0.604064,2.6636, +-0.51503,0.845772,-0.838316,-1.99053,0.603919,2.66355, +-0.51506,0.845724,-0.83818,-1.99057,0.603774,2.6635, +-0.515088,0.845677,-0.838043,-1.99062,0.603629,2.66346, +-0.515116,0.845632,-0.837904,-1.99067,0.603483,2.66341, +-0.515142,0.845587,-0.837766,-1.99071,0.603336,2.66337, +-0.515167,0.845544,-0.837626,-1.99075,0.60319,2.66332, +-0.515191,0.845502,-0.837487,-1.9908,0.603043,2.66328, +-0.515214,0.84546,-0.837347,-1.99084,0.602896,2.66324, +-0.515237,0.845418,-0.837207,-1.99088,0.60275,2.6632, +-0.515259,0.845378,-0.837066,-1.99092,0.602603,2.66316, +-0.51528,0.845339,-0.836925,-1.99096,0.602456,2.66312, +-0.515299,0.845302,-0.836783,-1.991,0.602309,2.66308, +-0.515317,0.845265,-0.83664,-1.99103,0.602162,2.66304, +-0.515334,0.84523,-0.836497,-1.99107,0.602015,2.66301, +-0.51535,0.845196,-0.836354,-1.9911,0.601868,2.66297, +-0.515366,0.845162,-0.836211,-1.99114,0.601722,2.66294, +-0.515381,0.845129,-0.836067,-1.99117,0.601575,2.66291, +-0.515395,0.845097,-0.835924,-1.9912,0.601428,2.66287, +-0.515407,0.845066,-0.835779,-1.99123,0.601282,2.66284, +-0.515419,0.845036,-0.835634,-1.99126,0.601135,2.66281, +-0.515429,0.845008,-0.835488,-1.99129,0.600988,2.66279, +-0.515438,0.844981,-0.835342,-1.99132,0.600842,2.66276, +-0.515446,0.844955,-0.835196,-1.99134,0.600695,2.66273, +-0.515453,0.844929,-0.83505,-1.99137,0.600549,2.66271, +-0.51546,0.844904,-0.834904,-1.99139,0.600403,2.66268, +-0.515466,0.84488,-0.834758,-1.99142,0.600257,2.66266, +-0.515471,0.844858,-0.834611,-1.99144,0.600112,2.66264, +-0.515475,0.844836,-0.834464,-1.99146,0.599966,2.66261, +-0.515477,0.844817,-0.834316,-1.99148,0.59982,2.66259, +-0.515478,0.844798,-0.834168,-1.9915,0.599674,2.66258, +-0.515479,0.844779,-0.83402,-1.99152,0.599529,2.66256, +-0.515479,0.844762,-0.833872,-1.99154,0.599383,2.66254, +-0.515478,0.844745,-0.833724,-1.99155,0.599238,2.66252, +-0.515477,0.844729,-0.833576,-1.99157,0.599094,2.66251, +-0.515474,0.844715,-0.833427,-1.99158,0.59895,2.66249, +-0.51547,0.844702,-0.833278,-1.9916,0.598805,2.66248, +-0.515464,0.84469,-0.833128,-1.99161,0.598661,2.66247, +-0.515458,0.844679,-0.832978,-1.99162,0.598517,2.66246, +-0.515451,0.844669,-0.832829,-1.99163,0.598373,2.66245, +-0.515443,0.844659,-0.832679,-1.99164,0.598229,2.66244, +-0.515434,0.844651,-0.83253,-1.99165,0.598085,2.66243, +-0.515424,0.844643,-0.832381,-1.99165,0.597942,2.66242, +-0.515413,0.844637,-0.832231,-1.99166,0.5978,2.66241, +-0.515401,0.844631,-0.832081,-1.99167,0.597658,2.66241, +-0.515387,0.844628,-0.83193,-1.99167,0.597515,2.66241, +-0.515371,0.844625,-0.831779,-1.99167,0.597373,2.6624, +-0.515355,0.844623,-0.831629,-1.99167,0.597231,2.6624, +-0.515338,0.844621,-0.831478,-1.99168,0.597089,2.6624, +-0.51532,0.84462,-0.831328,-1.99168,0.596948,2.6624, +-0.5153,0.84462,-0.831178,-1.99168,0.596807,2.6624, +-0.515279,0.844621,-0.831028,-1.99168,0.596666,2.6624, +-0.515257,0.844624,-0.830877,-1.99167,0.596526,2.6624, +-0.515232,0.844628,-0.830726,-1.99167,0.596387,2.66241, +-0.515207,0.844633,-0.830574,-1.99166,0.596247,2.66241, +-0.51518,0.844638,-0.830423,-1.99166,0.596107,2.66242, +-0.515152,0.844645,-0.830273,-1.99165,0.595968,2.66242, +-0.515123,0.844652,-0.830123,-1.99165,0.595828,2.66243, +-0.515093,0.84466,-0.829972,-1.99164,0.59569,2.66244, +-0.515061,0.844669,-0.829822,-1.99163,0.595552,2.66245, +-0.515027,0.84468,-0.829671,-1.99162,0.595414,2.66246, +-0.514992,0.844692,-0.82952,-1.99161,0.595278,2.66247, +-0.514954,0.844705,-0.829369,-1.99159,0.595141,2.66248, +-0.514916,0.84472,-0.829218,-1.99158,0.595005,2.6625, +-0.514877,0.844735,-0.829068,-1.99156,0.594869,2.66251, +-0.514836,0.844752,-0.828918,-1.99155,0.594733,2.66253, +-0.514794,0.84477,-0.828768,-1.99153,0.594597,2.66255, +-0.51475,0.844789,-0.828618,-1.99151,0.594463,2.66257, +-0.514704,0.84481,-0.828468,-1.99149,0.594329,2.66259, +-0.514656,0.844832,-0.828317,-1.99146,0.594196,2.66261, +-0.514606,0.844856,-0.828167,-1.99144,0.594063,2.66263, +-0.514555,0.844882,-0.828017,-1.99142,0.59393,2.66266, +-0.514503,0.844908,-0.827868,-1.99139,0.593798,2.66269, +-0.514449,0.844935,-0.827719,-1.99136,0.593666,2.66271, +-0.514394,0.844964,-0.82757,-1.99133,0.593534,2.66274, +-0.514337,0.844995,-0.827421,-1.9913,0.593404,2.66277, +-0.514278,0.845027,-0.827272,-1.99127,0.593274,2.66281, +-0.514217,0.845061,-0.827123,-1.99124,0.593145,2.66284, +-0.514154,0.845097,-0.826974,-1.9912,0.593016,2.66288, +-0.51409,0.845134,-0.826826,-1.99116,0.592888,2.66291, +-0.514024,0.845172,-0.826678,-1.99113,0.59276,2.66295, +-0.513957,0.845212,-0.826531,-1.99109,0.592633,2.66299, +-0.513888,0.845253,-0.826384,-1.99104,0.592506,2.66303, +-0.513817,0.845296,-0.826237,-1.991,0.59238,2.66307, +-0.513743,0.845341,-0.82609,-1.99096,0.592255,2.66312, +-0.513668,0.845388,-0.825943,-1.99091,0.592131,2.66317, +-0.513591,0.845437,-0.825796,-1.99086,0.592008,2.66322, +-0.513512,0.845487,-0.82565,-1.99081,0.591885,2.66327, +-0.513432,0.845539,-0.825505,-1.99076,0.591762,2.66332, +-0.51335,0.845592,-0.82536,-1.99071,0.59164,2.66337, +-0.513266,0.845647,-0.825216,-1.99065,0.591519,2.66342, +-0.51318,0.845703,-0.825071,-1.99059,0.591398,2.66348, +-0.513092,0.845762,-0.824927,-1.99054,0.591279,2.66354, +-0.513002,0.845823,-0.824783,-1.99047,0.591161,2.6636, +-0.51291,0.845886,-0.824639,-1.99041,0.591044,2.66366, +-0.512817,0.845951,-0.824496,-1.99035,0.590929,2.66373, +-0.512722,0.846016,-0.824354,-1.99028,0.590813,2.66379, +-0.512625,0.846084,-0.824213,-1.99021,0.590699,2.66386, +-0.512527,0.846153,-0.824072,-1.99014,0.590586,2.66393, +-0.512427,0.846224,-0.823932,-1.99007,0.590474,2.664, +-0.512325,0.846297,-0.823791,-1.99,0.590363,2.66408, +-0.512222,0.846373,-0.823651,-1.98992,0.590254,2.66415, +-0.512117,0.846449,-0.823513,-1.98985,0.590147,2.66423, +-0.512011,0.846527,-0.823375,-1.98977,0.590041,2.66431, +-0.511905,0.846607,-0.823238,-1.98969,0.589936,2.66438, +-0.511797,0.846688,-0.823102,-1.98961,0.589832,2.66447, +-0.511688,0.84677,-0.822967,-1.98953,0.58973,2.66455, +-0.511578,0.846854,-0.822832,-1.98944,0.589629,2.66463, +-0.511466,0.84694,-0.822698,-1.98936,0.589531,2.66472, +-0.511353,0.847028,-0.822565,-1.98927,0.589433,2.66481, +-0.511239,0.847117,-0.822433,-1.98918,0.589337,2.6649, +-0.511125,0.847208,-0.822301,-1.98909,0.589242,2.66499, +-0.51101,0.847299,-0.822172,-1.989,0.589147,2.66508, +-0.510894,0.847391,-0.822043,-1.98891,0.589054,2.66517, +-0.510778,0.847485,-0.821915,-1.98881,0.588962,2.66526, +-0.51066,0.847581,-0.821789,-1.98872,0.588871,2.66536, +-0.510541,0.847678,-0.821662,-1.98862,0.588782,2.66546, +-0.510421,0.847776,-0.821537,-1.98852,0.588694,2.66555, +-0.510301,0.847876,-0.821413,-1.98842,0.588608,2.66565, +-0.51018,0.847977,-0.82129,-1.98832,0.588522,2.66575, +-0.510059,0.848078,-0.821168,-1.98822,0.588437,2.66586, +-0.509937,0.84818,-0.821048,-1.98812,0.588353,2.66596, +-0.509815,0.848284,-0.820929,-1.98801,0.588271,2.66606, +-0.509692,0.848389,-0.820811,-1.98791,0.588189,2.66617, +-0.509568,0.848495,-0.820694,-1.9878,0.58811,2.66627, +-0.509443,0.848602,-0.820577,-1.98769,0.588031,2.66638, +-0.509318,0.848711,-0.820462,-1.98759,0.587954,2.66649, +-0.509192,0.848819,-0.820348,-1.98748,0.587878,2.6666, +-0.509066,0.848929,-0.820236,-1.98737,0.587802,2.66671, +-0.50894,0.849039,-0.820125,-1.98726,0.587728,2.66682, +-0.508813,0.84915,-0.820015,-1.98715,0.587654,2.66693, +-0.508686,0.849262,-0.819906,-1.98704,0.587582,2.66704, +-0.508558,0.849375,-0.819797,-1.98692,0.587511,2.66715, +-0.508429,0.84949,-0.81969,-1.98681,0.587442,2.66727, +-0.508299,0.849605,-0.819584,-1.98669,0.587374,2.66738, +-0.50817,0.84972,-0.819479,-1.98658,0.587306,2.6675, +-0.50804,0.849836,-0.819376,-1.98646,0.58724,2.66761, +-0.50791,0.849953,-0.819275,-1.98634,0.587174,2.66773, +-0.50778,0.85007,-0.819176,-1.98623,0.587109,2.66785, +-0.507649,0.850188,-0.819079,-1.98611,0.587046,2.66797, +-0.507517,0.850308,-0.818985,-1.98599,0.586984,2.66809, +-0.507384,0.850428,-0.818894,-1.98587,0.586924,2.66821, +-0.507251,0.85055,-0.818806,-1.98575,0.586864,2.66833, +-0.507118,0.850672,-0.818721,-1.98563,0.586806,2.66845, +-0.506985,0.850794,-0.818639,-1.9855,0.586748,2.66857, +-0.506852,0.850917,-0.81856,-1.98538,0.586691,2.6687, +-0.506718,0.851041,-0.818483,-1.98526,0.586635,2.66882, +-0.506584,0.851166,-0.818408,-1.98513,0.58658,2.66894, +-0.506449,0.851291,-0.818336,-1.98501,0.586527,2.66907, +-0.506313,0.851417,-0.818265,-1.98488,0.586475,2.66919, +-0.506177,0.851543,-0.818195,-1.98475,0.586424,2.66932, +-0.506041,0.851669,-0.818127,-1.98463,0.586374,2.66945, +-0.505904,0.851795,-0.81806,-1.9845,0.586324,2.66957, +-0.505768,0.851921,-0.817994,-1.98438,0.586275,2.6697, +-0.505631,0.852048,-0.817928,-1.98425,0.586228,2.66983, +-0.505494,0.852175,-0.817864,-1.98412,0.586181,2.66995, +-0.505356,0.852303,-0.8178,-1.98399,0.586136,2.67008, +-0.505218,0.852433,-0.817736,-1.98387,0.586093,2.67021, +-0.50508,0.852563,-0.817672,-1.98374,0.58605,2.67034, +-0.504941,0.852693,-0.817608,-1.9836,0.586008,2.67047, +-0.504803,0.852824,-0.817544,-1.98347,0.585967,2.6706, +-0.504664,0.852955,-0.81748,-1.98334,0.585927,2.67073, +-0.504525,0.853087,-0.817417,-1.98321,0.585887,2.67087, +-0.504386,0.853219,-0.817355,-1.98308,0.585849,2.671, +-0.504245,0.853353,-0.817294,-1.98294,0.585812,2.67113, +-0.504104,0.853488,-0.817233,-1.98281,0.585777,2.67127, +-0.503963,0.853623,-0.817173,-1.98267,0.585743,2.6714, +-0.503822,0.853758,-0.817114,-1.98254,0.585709,2.67154, +-0.50368,0.853894,-0.817054,-1.9824,0.585676,2.67167, +-0.503539,0.85403,-0.816996,-1.98227,0.585644,2.67181, +-0.503397,0.854167,-0.816937,-1.98213,0.585612,2.67195, +-0.503255,0.854304,-0.81688,-1.98199,0.585582,2.67208, +-0.503111,0.854442,-0.816824,-1.98185,0.585554,2.67222, +-0.502968,0.854581,-0.816769,-1.98172,0.585526,2.67236, +-0.502824,0.854721,-0.816715,-1.98158,0.5855,2.6725, +-0.50268,0.85486,-0.816661,-1.98144,0.585474,2.67264, +-0.502536,0.855,-0.816607,-1.9813,0.585449,2.67278, +-0.502392,0.85514,-0.816554,-1.98116,0.585425,2.67292, +-0.502247,0.85528,-0.816502,-1.98102,0.585401,2.67306, +-0.502102,0.855421,-0.816451,-1.98088,0.585379,2.6732, +-0.501957,0.855563,-0.816401,-1.98073,0.585359,2.67334, +-0.501811,0.855705,-0.816352,-1.98059,0.585339,2.67348, +-0.501665,0.855848,-0.816304,-1.98045,0.585321,2.67363, +-0.501519,0.855991,-0.816256,-1.98031,0.585303,2.67377, +-0.501373,0.856134,-0.81621,-1.98016,0.585286,2.67391, +-0.501227,0.856277,-0.816163,-1.98002,0.58527,2.67406, +-0.501081,0.856421,-0.816118,-1.97988,0.585254,2.6742, +-0.500935,0.856565,-0.816074,-1.97973,0.58524,2.67434, +-0.500788,0.85671,-0.816031,-1.97959,0.585228,2.67449, +-0.500641,0.856856,-0.815989,-1.97944,0.585216,2.67463, +-0.500495,0.857001,-0.815948,-1.9793,0.585206,2.67478, +-0.500348,0.857147,-0.815908,-1.97915,0.585196,2.67493, +-0.500202,0.857293,-0.815868,-1.979,0.585187,2.67507, +-0.500055,0.857439,-0.815829,-1.97886,0.585178,2.67522, +-0.499908,0.857585,-0.815791,-1.97871,0.585171,2.67536, +-0.499761,0.857732,-0.815754,-1.97857,0.585165,2.67551, +-0.499614,0.857879,-0.815718,-1.97842,0.58516,2.67566, +-0.499467,0.858027,-0.815684,-1.97827,0.585156,2.6758, +-0.49932,0.858175,-0.81565,-1.97812,0.585153,2.67595, +-0.499173,0.858323,-0.815617,-1.97797,0.585151,2.6761, +-0.499026,0.858471,-0.815585,-1.97783,0.58515,2.67625, +-0.498879,0.858618,-0.815554,-1.97768,0.585149,2.6764, +-0.498732,0.858766,-0.815523,-1.97753,0.585149,2.67654, +-0.498585,0.858914,-0.815494,-1.97738,0.58515,2.67669, +-0.498439,0.859062,-0.815466,-1.97724,0.585153,2.67684, +-0.498293,0.859209,-0.81544,-1.97709,0.585156,2.67699, +-0.498148,0.859355,-0.815416,-1.97694,0.58516,2.67713, +-0.498004,0.8595,-0.815393,-1.9768,0.585165,2.67728, +-0.497862,0.859644,-0.815372,-1.97665,0.58517,2.67742, +-0.497721,0.859787,-0.815353,-1.97651,0.585175,2.67757, +-0.497581,0.85993,-0.815334,-1.97637,0.585181,2.67771, +-0.497442,0.860071,-0.815317,-1.97623,0.585188,2.67785, +-0.497303,0.860213,-0.8153,-1.97608,0.585196,2.67799, +-0.497165,0.860354,-0.815283,-1.97594,0.585206,2.67813, +-0.497027,0.860496,-0.815266,-1.9758,0.585217,2.67827, +-0.49689,0.860638,-0.81525,-1.97566,0.58523,2.67842, +-0.496752,0.86078,-0.815233,-1.97552,0.585244,2.67856, +-0.496614,0.860923,-0.815217,-1.97537,0.585259,2.6787, +-0.496475,0.861066,-0.815201,-1.97523,0.585276,2.67884, +-0.496336,0.861211,-0.815186,-1.97509,0.585295,2.67899, +-0.496196,0.861356,-0.815173,-1.97494,0.585316,2.67913, +-0.496055,0.861502,-0.81516,-1.9748,0.585338,2.67928, +-0.495915,0.861648,-0.815148,-1.97465,0.585361,2.67943, +-0.495775,0.861795,-0.815138,-1.9745,0.585386,2.67957, +-0.495634,0.861942,-0.815129,-1.97436,0.585411,2.67972, +-0.495493,0.862089,-0.81512,-1.97421,0.585437,2.67987, +-0.495352,0.862236,-0.815113,-1.97406,0.585465,2.68001, +-0.495211,0.862384,-0.815108,-1.97391,0.585495,2.68016, +-0.495069,0.862533,-0.815104,-1.97376,0.585526,2.68031, +-0.494928,0.862682,-0.815101,-1.97362,0.585558,2.68046, +-0.494786,0.862831,-0.815099,-1.97347,0.585593,2.68061, +-0.494645,0.862981,-0.815097,-1.97332,0.585628,2.68076, +-0.494503,0.86313,-0.815096,-1.97317,0.585665,2.68091, +-0.494362,0.863279,-0.815096,-1.97302,0.585703,2.68106, +-0.494221,0.863429,-0.815096,-1.97287,0.585742,2.68121, +-0.49408,0.863579,-0.815098,-1.97272,0.585783,2.68136, +-0.493938,0.863729,-0.815101,-1.97257,0.585826,2.68151, +-0.493796,0.863879,-0.815105,-1.97242,0.585871,2.68166, +-0.493654,0.86403,-0.815111,-1.97227,0.585917,2.68181, +-0.493512,0.86418,-0.815117,-1.97212,0.585964,2.68196, +-0.49337,0.864329,-0.815124,-1.97197,0.586013,2.68211, +-0.493229,0.864478,-0.815131,-1.97182,0.586063,2.68226, +-0.493089,0.864627,-0.81514,-1.97167,0.586114,2.68241, +-0.492949,0.864777,-0.81515,-1.97152,0.586167,2.68255, +-0.492811,0.864926,-0.815161,-1.97137,0.586222,2.6827, +-0.492673,0.865076,-0.815174,-1.97122,0.586279,2.68285, +-0.492535,0.865225,-0.815189,-1.97107,0.586339,2.683, +-0.492397,0.865375,-0.815204,-1.97092,0.586399,2.68315, +-0.49226,0.865523,-0.815221,-1.97077,0.586462,2.6833, +-0.492123,0.865671,-0.815238,-1.97063,0.586525,2.68345, +-0.491986,0.86582,-0.815257,-1.97048,0.586591,2.6836, +-0.491851,0.865968,-0.815277,-1.97033,0.586659,2.68375, +-0.491716,0.866116,-0.815299,-1.97018,0.586729,2.68389, +-0.491581,0.866265,-0.815323,-1.97003,0.586802,2.68404, +-0.491446,0.866413,-0.815349,-1.96988,0.586876,2.68419, +-0.491311,0.86656,-0.815375,-1.96974,0.586952,2.68434, +-0.491177,0.866707,-0.815403,-1.96959,0.58703,2.68449, +-0.491042,0.866853,-0.815432,-1.96944,0.587109,2.68463, +-0.490907,0.866999,-0.815463,-1.9693,0.58719,2.68478, +-0.490772,0.867145,-0.815495,-1.96915,0.587274,2.68492, +-0.490637,0.867291,-0.815529,-1.96901,0.587359,2.68507, +-0.490501,0.867437,-0.815565,-1.96886,0.587447,2.68522, +-0.490366,0.867582,-0.815603,-1.96872,0.587537,2.68536, +-0.490232,0.867726,-0.815642,-1.96857,0.587629,2.6855, +-0.490098,0.86787,-0.815682,-1.96843,0.587721,2.68565, +-0.489965,0.868012,-0.815724,-1.96828,0.587816,2.68579, +-0.489833,0.868154,-0.815768,-1.96814,0.587912,2.68593, +-0.4897,0.868296,-0.815813,-1.968,0.588011,2.68607, +-0.489568,0.868438,-0.815861,-1.96786,0.588111,2.68622, +-0.489437,0.868578,-0.81591,-1.96772,0.588213,2.68636, +-0.489307,0.868718,-0.815961,-1.96758,0.588316,2.6865, +-0.489178,0.868857,-0.816014,-1.96744,0.588421,2.68664, +-0.489051,0.868995,-0.816068,-1.9673,0.588526,2.68677, +-0.488925,0.869131,-0.816123,-1.96717,0.588632,2.68691, +-0.4888,0.869267,-0.81618,-1.96703,0.58874,2.68704, +-0.488676,0.869401,-0.816239,-1.9669,0.588849,2.68718, +-0.488553,0.869536,-0.816299,-1.96676,0.58896,2.68731, +-0.488431,0.869669,-0.816362,-1.96663,0.589072,2.68745, +-0.48831,0.869802,-0.816426,-1.9665,0.589185,2.68758, +-0.488191,0.869932,-0.816492,-1.96636,0.589298,2.68771, +-0.488074,0.870062,-0.816559,-1.96624,0.589413,2.68784, +-0.487959,0.87019,-0.816627,-1.96611,0.589527,2.68797, +-0.487846,0.870317,-0.816697,-1.96598,0.589643,2.68809, +-0.487733,0.870443,-0.816769,-1.96585,0.58976,2.68822, +-0.487622,0.870568,-0.816843,-1.96573,0.589878,2.68835, +-0.487512,0.870693,-0.816918,-1.9656,0.589997,2.68847, +-0.487404,0.870816,-0.816995,-1.96548,0.590117,2.68859, +-0.487297,0.870938,-0.817073,-1.96536,0.590237,2.68872, +-0.487192,0.871058,-0.817153,-1.96524,0.590357,2.68884, +-0.48709,0.871176,-0.817233,-1.96512,0.590478,2.68895, +-0.486991,0.871293,-0.817315,-1.965,0.5906,2.68907, +-0.486894,0.87141,-0.817399,-1.96489,0.590722,2.68919, +-0.4868,0.871525,-0.817484,-1.96477,0.590846,2.6893, +-0.48671,0.87164,-0.817571,-1.96466,0.59097,2.68942, +-0.486623,0.871753,-0.81766,-1.96454,0.591095,2.68953, +-0.486539,0.871865,-0.817749,-1.96443,0.59122,2.68964, +-0.486458,0.871975,-0.817839,-1.96432,0.591345,2.68975, +-0.48638,0.872084,-0.817931,-1.96421,0.591471,2.68986, +-0.486304,0.872191,-0.818023,-1.96411,0.591597,2.68997, +-0.486231,0.872297,-0.818117,-1.964,0.591724,2.69008, +-0.486159,0.872403,-0.818213,-1.96389,0.591851,2.69018, +-0.48609,0.872508,-0.81831,-1.96379,0.59198,2.69029, +-0.486022,0.872611,-0.818408,-1.96369,0.592109,2.69039, +-0.485955,0.872713,-0.818507,-1.96358,0.592238,2.69049, +-0.485889,0.872813,-0.818607,-1.96348,0.592367,2.69059, +-0.485825,0.872912,-0.818707,-1.96339,0.592496,2.69069, +-0.485761,0.873008,-0.818808,-1.96329,0.592626,2.69079, +-0.485699,0.873102,-0.818911,-1.9632,0.592756,2.69088, +-0.485638,0.873193,-0.819015,-1.9631,0.592887,2.69097, +-0.485577,0.873281,-0.819121,-1.96302,0.593019,2.69106, +-0.485516,0.873366,-0.819227,-1.96293,0.593152,2.69114, +-0.485456,0.873447,-0.819334,-1.96285,0.593284,2.69123, +-0.485395,0.873526,-0.819442,-1.96277,0.593417,2.6913, +-0.485335,0.873602,-0.81955,-1.96269,0.593549,2.69138, +-0.485275,0.873676,-0.819659,-1.96262,0.593682,2.69145, +-0.485216,0.873748,-0.819769,-1.96255,0.593816,2.69153, +-0.485158,0.873817,-0.819881,-1.96248,0.593951,2.6916, +-0.485101,0.873885,-0.819993,-1.96241,0.594086,2.69166, +-0.485045,0.873952,-0.820107,-1.96235,0.594221,2.69173, +-0.484989,0.874017,-0.820221,-1.96228,0.594357,2.6918, +-0.484934,0.874082,-0.820336,-1.96222,0.594492,2.69186, +-0.48488,0.874145,-0.820451,-1.96215,0.594628,2.69192, +-0.484826,0.874207,-0.820567,-1.96209,0.594764,2.69199, +-0.484774,0.874269,-0.820683,-1.96203,0.594901,2.69205, +-0.484722,0.87433,-0.820802,-1.96197,0.595038,2.69211, +-0.484672,0.87439,-0.820921,-1.96191,0.595176,2.69217, +-0.484623,0.874451,-0.821041,-1.96185,0.595315,2.69223, +-0.484574,0.874512,-0.821161,-1.96179,0.595453,2.69229, +-0.484525,0.874572,-0.821282,-1.96172,0.595592,2.69235, +-0.484477,0.874633,-0.821404,-1.96166,0.59573,2.69241, +-0.48443,0.874693,-0.821526,-1.9616,0.595869,2.69247, +-0.484384,0.874752,-0.821649,-1.96155,0.596009,2.69253, +-0.484339,0.87481,-0.821773,-1.96149,0.596149,2.69259, +-0.484295,0.874867,-0.821898,-1.96143,0.59629,2.69265, +-0.484252,0.874924,-0.822024,-1.96137,0.596431,2.6927, +-0.48421,0.87498,-0.822151,-1.96132,0.596572,2.69276, +-0.484169,0.875036,-0.822278,-1.96126,0.596713,2.69281, +-0.484128,0.875091,-0.822405,-1.96121,0.596855,2.69287, +-0.484088,0.875146,-0.822533,-1.96115,0.596996,2.69292, +-0.484049,0.875199,-0.822662,-1.9611,0.597138,2.69298, +-0.484012,0.875252,-0.822792,-1.96105,0.597281,2.69303, +-0.483975,0.875303,-0.822923,-1.96099,0.597424,2.69308, +-0.48394,0.875354,-0.823054,-1.96094,0.597568,2.69313, +-0.483905,0.875405,-0.823187,-1.96089,0.597712,2.69318, +-0.483871,0.875454,-0.823319,-1.96084,0.597855,2.69323, +-0.483838,0.875504,-0.823452,-1.96079,0.597999,2.69328, +-0.483805,0.875553,-0.823585,-1.96074,0.598143,2.69333, +-0.483774,0.8756,-0.82372,-1.9607,0.598287,2.69338, +-0.483743,0.875647,-0.823855,-1.96065,0.598432,2.69343, +-0.483715,0.875692,-0.823992,-1.96061,0.598578,2.69347, +-0.483687,0.875736,-0.824129,-1.96056,0.598723,2.69351, +-0.483659,0.87578,-0.824266,-1.96052,0.598869,2.69356, +-0.483633,0.875823,-0.824403,-1.96047,0.599015,2.6936, +-0.483607,0.875866,-0.824541,-1.96043,0.59916,2.69364, +-0.483582,0.875908,-0.82468,-1.96039,0.599306,2.69369, +-0.483558,0.875949,-0.824819,-1.96035,0.599452,2.69373, +-0.483536,0.875988,-0.824959,-1.96031,0.599599,2.69377, +-0.483515,0.876026,-0.8251,-1.96027,0.599745,2.6938, +-0.483494,0.876064,-0.825241,-1.96023,0.599892,2.69384, +-0.483475,0.8761,-0.825383,-1.9602,0.600039,2.69388, +-0.483456,0.876136,-0.825524,-1.96016,0.600186,2.69391, +-0.483438,0.876172,-0.825666,-1.96013,0.600333,2.69395, +-0.483421,0.876206,-0.825809,-1.96009,0.600479,2.69398, +-0.483405,0.87624,-0.825952,-1.96006,0.600626,2.69402, +-0.48339,0.876272,-0.826095,-1.96003,0.600773,2.69405, +-0.483377,0.876302,-0.82624,-1.95999,0.600919,2.69408, +-0.483364,0.876332,-0.826384,-1.95996,0.601066,2.69411, +-0.483353,0.876361,-0.826529,-1.95994,0.601213,2.69414, +-0.483342,0.87639,-0.826674,-1.95991,0.601359,2.69417, +-0.483331,0.876418,-0.826819,-1.95988,0.601506,2.6942, +-0.483322,0.876444,-0.826964,-1.95985,0.601652,2.69422, +-0.483314,0.87647,-0.82711,-1.95983,0.601798,2.69425, +-0.483307,0.876494,-0.827256,-1.9598,0.601944,2.69427, +-0.483301,0.876517,-0.827403,-1.95978,0.60209,2.6943, +-0.483297,0.876539,-0.827551,-1.95976,0.602237,2.69432, +-0.483293,0.876561,-0.827698,-1.95974,0.602383,2.69434, +-0.483289,0.876582,-0.827845,-1.95972,0.602529,2.69436, +-0.483286,0.876602,-0.827992,-1.9597,0.602674,2.69438, +-0.483285,0.876621,-0.82814,-1.95968,0.60282,2.6944, +-0.483284,0.876638,-0.828288,-1.95966,0.602965,2.69442, +-0.483285,0.876655,-0.828436,-1.95964,0.60311,2.69443, +-0.483287,0.87667,-0.828585,-1.95963,0.603255,2.69445, +-0.483289,0.876684,-0.828734,-1.95961,0.6034,2.69446, +-0.483293,0.876697,-0.828883,-1.9596,0.603545,2.69448, +-0.483297,0.87671,-0.829032,-1.95959,0.60369,2.69449, +-0.483302,0.876722,-0.829181,-1.95957,0.603834,2.6945, +-0.483307,0.876734,-0.82933,-1.95956,0.603978,2.69451, +-0.483314,0.876743,-0.829479,-1.95955,0.604122,2.69452, +-0.483323,0.876752,-0.829629,-1.95955,0.604265,2.69453, +-0.483332,0.876759,-0.82978,-1.95954,0.604408,2.69454, +-0.483343,0.876765,-0.82993,-1.95953,0.604552,2.69454, +-0.483355,0.876771,-0.83008,-1.95953,0.604695,2.69455, +-0.483368,0.876776,-0.83023,-1.95952,0.604838,2.69455, +-0.483381,0.87678,-0.83038,-1.95952,0.604981,2.69456, +-0.483396,0.876784,-0.83053,-1.95951,0.605124,2.69456, +-0.483412,0.876786,-0.83068,-1.95951,0.605265,2.69456, +-0.48343,0.876787,-0.830831,-1.95951,0.605406,2.69456, +-0.483449,0.876786,-0.830982,-1.95951,0.605547,2.69456, +-0.48347,0.876785,-0.831133,-1.95951,0.605686,2.69456, +-0.483491,0.876783,-0.831284,-1.95951,0.605824,2.69456, +-0.483513,0.87678,-0.831435,-1.95952,0.605961,2.69456, +-0.483536,0.876777,-0.831584,-1.95952,0.606097,2.69456, +-0.483561,0.876773,-0.831733,-1.95952,0.606232,2.69455, +-0.483586,0.876768,-0.831881,-1.95953,0.606365,2.69455, +-0.483614,0.876761,-0.832027,-1.95954,0.606499,2.69454, +-0.483643,0.876753,-0.832173,-1.95954,0.606632,2.69453, +-0.483674,0.876744,-0.832318,-1.95955,0.606766,2.69452, +-0.483706,0.876734,-0.832463,-1.95956,0.606899,2.69451, +-0.483739,0.876723,-0.832608,-1.95957,0.607033,2.6945, +-0.483773,0.876711,-0.832752,-1.95959,0.607167,2.69449, +-0.483809,0.876698,-0.832898,-1.9596,0.607301,2.69448, +-0.483846,0.876684,-0.833044,-1.95961,0.607435,2.69446, +-0.483886,0.876668,-0.83319,-1.95963,0.607568,2.69445, +-0.483927,0.876651,-0.833337,-1.95965,0.607701,2.69443, +-0.48397,0.876632,-0.833485,-1.95967,0.607833,2.69441, +-0.484014,0.876612,-0.833632,-1.95969,0.607966,2.69439, +-0.484059,0.876591,-0.833779,-1.95971,0.608098,2.69437, +-0.484106,0.87657,-0.833926,-1.95973,0.60823,2.69435, +-0.484154,0.876547,-0.834073,-1.95975,0.608362,2.69432, +-0.484204,0.876522,-0.834221,-1.95978,0.608493,2.6943, +-0.484256,0.876496,-0.834369,-1.9598,0.608623,2.69427, +-0.484309,0.876467,-0.834517,-1.95983,0.608753,2.69425, +-0.484365,0.876438,-0.834665,-1.95986,0.608883,2.69422, +-0.484422,0.876407,-0.834814,-1.95989,0.609013,2.69419, +-0.48448,0.876375,-0.834961,-1.95992,0.609143,2.69415, +-0.48454,0.876342,-0.835109,-1.95996,0.609273,2.69412, +-0.484601,0.876307,-0.835257,-1.95999,0.609402,2.69409, +-0.484664,0.876271,-0.835404,-1.96003,0.609531,2.69405, +-0.48473,0.876233,-0.835553,-1.96006,0.609658,2.69401, +-0.484797,0.876193,-0.835701,-1.9601,0.609785,2.69397, +-0.484866,0.876151,-0.835849,-1.96015,0.609911,2.69393, +-0.484937,0.876108,-0.835997,-1.96019,0.610038,2.69389, +-0.485009,0.876063,-0.836144,-1.96023,0.610164,2.69384, +-0.485083,0.876017,-0.836291,-1.96028,0.61029,2.6938, +-0.485159,0.87597,-0.836437,-1.96033,0.610415,2.69375, +-0.485236,0.87592,-0.836584,-1.96038,0.61054,2.6937, +-0.485316,0.875869,-0.836731,-1.96043,0.610664,2.69365, +-0.485399,0.875815,-0.836878,-1.96048,0.610786,2.69359, +-0.485483,0.87576,-0.837024,-1.96054,0.610908,2.69354, +-0.485569,0.875703,-0.83717,-1.96059,0.61103,2.69348, +-0.485656,0.875645,-0.837315,-1.96065,0.611151,2.69342, +-0.485745,0.875585,-0.837459,-1.96071,0.611272,2.69336, +-0.485836,0.875523,-0.837602,-1.96077,0.611394,2.6933, +-0.485929,0.875459,-0.837743,-1.96084,0.611516,2.69324, +-0.486024,0.875393,-0.837883,-1.9609,0.611638,2.69317, +-0.486122,0.875325,-0.838022,-1.96097,0.61176,2.6931, +-0.48622,0.875255,-0.83816,-1.96104,0.611883,2.69303, +-0.48632,0.875184,-0.838297,-1.96111,0.612005,2.69296, +-0.486421,0.875111,-0.838433,-1.96119,0.612126,2.69289, +-0.486524,0.875037,-0.838569,-1.96126,0.612247,2.69282, +-0.486628,0.874962,-0.838704,-1.96134,0.612368,2.69274, +-0.486734,0.874884,-0.838838,-1.96141,0.612489,2.69266, +-0.486841,0.874804,-0.83897,-1.96149,0.612609,2.69258, +-0.48695,0.874723,-0.8391,-1.96157,0.612728,2.6925, +-0.48706,0.87464,-0.839229,-1.96166,0.612846,2.69242, +-0.487171,0.874555,-0.839357,-1.96174,0.612963,2.69233, +-0.487282,0.87447,-0.839484,-1.96183,0.613078,2.69225, +-0.487395,0.874383,-0.83961,-1.96191,0.613192,2.69216, +-0.487508,0.874294,-0.839735,-1.962,0.613304,2.69207, +-0.487623,0.874204,-0.839857,-1.96209,0.613416,2.69198, +-0.487739,0.874112,-0.839979,-1.96218,0.613526,2.69189, +-0.487856,0.874019,-0.840099,-1.96228,0.613635,2.6918, +-0.487974,0.873924,-0.840218,-1.96237,0.613742,2.6917, +-0.488092,0.873828,-0.840337,-1.96247,0.613847,2.69161, +-0.488211,0.873731,-0.840454,-1.96257,0.613949,2.69151, +-0.488331,0.873633,-0.840571,-1.96266,0.614049,2.69141, +-0.488451,0.873534,-0.840688,-1.96276,0.614146,2.69131, +-0.488572,0.873434,-0.840802,-1.96286,0.61424,2.69121, +-0.488694,0.873331,-0.840916,-1.96297,0.614331,2.69111, +-0.488818,0.873228,-0.841028,-1.96307,0.614418,2.69101, +-0.488941,0.873123,-0.841139,-1.96317,0.614502,2.6909, +-0.489065,0.873018,-0.841248,-1.96328,0.614582,2.6908, +-0.48919,0.872912,-0.841357,-1.96339,0.614659,2.69069, +-0.489314,0.872805,-0.841466,-1.96349,0.614734,2.69058, +-0.489439,0.872697,-0.841573,-1.9636,0.614806,2.69048, +-0.489566,0.872588,-0.841678,-1.96371,0.614875,2.69037, +-0.489693,0.872478,-0.841782,-1.96382,0.614943,2.69026, +-0.48982,0.872366,-0.841885,-1.96393,0.615008,2.69014, +-0.489948,0.872254,-0.841987,-1.96404,0.615072,2.69003, +-0.490077,0.872141,-0.842088,-1.96416,0.615135,2.68992, +-0.490205,0.872028,-0.842189,-1.96427,0.615196,2.68981, +-0.490334,0.871914,-0.842288,-1.96438,0.615256,2.68969, +-0.490463,0.871799,-0.842387,-1.9645,0.615315,2.68958, +-0.490593,0.871683,-0.842484,-1.96461,0.615372,2.68946, +-0.490724,0.871566,-0.84258,-1.96473,0.615429,2.68934, +-0.490855,0.871448,-0.842675,-1.96485,0.615485,2.68923, +-0.490987,0.87133,-0.842769,-1.96497,0.61554,2.68911, +-0.491119,0.871211,-0.842862,-1.96509,0.615595,2.68899, +-0.491251,0.871091,-0.842954,-1.96521,0.61565,2.68887, +-0.491383,0.870972,-0.843045,-1.96533,0.615705,2.68875, +-0.491516,0.870851,-0.843136,-1.96545,0.615759,2.68863, +-0.491649,0.87073,-0.843225,-1.96557,0.615813,2.68851, +-0.491783,0.870607,-0.843313,-1.96569,0.615866,2.68839, +-0.491918,0.870484,-0.843399,-1.96581,0.615917,2.68826, +-0.492053,0.87036,-0.843485,-1.96594,0.615967,2.68814, +-0.492188,0.870236,-0.84357,-1.96606,0.616017,2.68801, +-0.492324,0.870111,-0.843654,-1.96619,0.616066,2.68789, +-0.492459,0.869986,-0.843738,-1.96631,0.616115,2.68776, +-0.492594,0.86986,-0.843821,-1.96644,0.616162,2.68764, +-0.492731,0.869733,-0.843902,-1.96656,0.616209,2.68751, +-0.492868,0.869606,-0.843982,-1.96669,0.616254,2.68738, +-0.493005,0.869477,-0.844061,-1.96682,0.616298,2.68726, +-0.493144,0.869348,-0.844139,-1.96695,0.616341,2.68713, +-0.493282,0.869219,-0.844216,-1.96708,0.616384,2.687, +-0.49342,0.86909,-0.844293,-1.96721,0.616426,2.68687, +-0.493558,0.86896,-0.844369,-1.96734,0.616468,2.68674, +-0.493696,0.86883,-0.844444,-1.96747,0.616509,2.68661, +-0.493835,0.868699,-0.844517,-1.9676,0.616549,2.68648, +-0.493975,0.868567,-0.84459,-1.96773,0.616587,2.68635, +-0.494116,0.868434,-0.844661,-1.96786,0.616625,2.68621, +-0.494256,0.868301,-0.844731,-1.968,0.616661,2.68608, +-0.494397,0.868167,-0.8448,-1.96813,0.616697,2.68595, +-0.494538,0.868034,-0.844869,-1.96826,0.616732,2.68581, +-0.494679,0.867899,-0.844937,-1.9684,0.616767,2.68568, +-0.49482,0.867765,-0.845004,-1.96853,0.6168,2.68554, +-0.494962,0.867629,-0.84507,-1.96867,0.616833,2.68541, +-0.495104,0.867492,-0.845135,-1.9688,0.616864,2.68527, +-0.495247,0.867355,-0.845198,-1.96894,0.616893,2.68513, +-0.49539,0.867217,-0.845261,-1.96908,0.616922,2.685, +-0.495533,0.867079,-0.845323,-1.96922,0.61695,2.68486, +-0.495677,0.866941,-0.845384,-1.96936,0.616978,2.68472, +-0.49582,0.866803,-0.845444,-1.96949,0.617005,2.68458, +-0.495963,0.866664,-0.845504,-1.96963,0.617031,2.68444, +-0.496107,0.866524,-0.845562,-1.96977,0.617056,2.6843, +-0.496252,0.866384,-0.845619,-1.96991,0.61708,2.68416, +-0.496397,0.866242,-0.845675,-1.97005,0.617102,2.68402, +-0.496542,0.866101,-0.845729,-1.9702,0.617123,2.68388, +-0.496687,0.865959,-0.845783,-1.97034,0.617144,2.68374, +-0.496832,0.865818,-0.845837,-1.97048,0.617164,2.6836, +-0.496977,0.865676,-0.84589,-1.97062,0.617183,2.68345, +-0.497123,0.865534,-0.845941,-1.97076,0.617202,2.68331, +-0.497268,0.865391,-0.845992,-1.97091,0.617219,2.68317, +-0.497415,0.865247,-0.846041,-1.97105,0.617235,2.68303, +-0.497561,0.865103,-0.846089,-1.97119,0.617249,2.68288, +-0.497707,0.864959,-0.846135,-1.97134,0.617263,2.68274, +-0.497853,0.864814,-0.846182,-1.97148,0.617276,2.68259, +-0.497999,0.864669,-0.846227,-1.97163,0.617288,2.68245, +-0.498145,0.864525,-0.846272,-1.97177,0.6173,2.6823, +-0.498292,0.86438,-0.846315,-1.97192,0.617311,2.68216, +-0.498438,0.864234,-0.846358,-1.97206,0.61732,2.68201, +-0.498585,0.864088,-0.846399,-1.97221,0.617328,2.68187, +-0.498732,0.863941,-0.846439,-1.97236,0.617335,2.68172, +-0.498879,0.863794,-0.846477,-1.9725,0.617341,2.68157, +-0.499026,0.863647,-0.846515,-1.97265,0.617347,2.68143, +-0.499173,0.863501,-0.846553,-1.9728,0.617351,2.68128, +-0.49932,0.863354,-0.846589,-1.97294,0.617355,2.68113, +-0.499467,0.863207,-0.846625,-1.97309,0.617359,2.68099, +-0.499614,0.863059,-0.84666,-1.97324,0.617361,2.68084, +-0.499761,0.862911,-0.846693,-1.97339,0.617361,2.68069, +-0.499908,0.862762,-0.846724,-1.97353,0.617361,2.68054, +-0.500055,0.862613,-0.846755,-1.97368,0.617359,2.68039, +-0.500202,0.862465,-0.846785,-1.97383,0.617357,2.68024, +-0.500349,0.862316,-0.846814,-1.97398,0.617354,2.68009, +-0.500495,0.862168,-0.846843,-1.97413,0.617351,2.67995, +-0.500642,0.862019,-0.84687,-1.97428,0.617347,2.6798, +-0.500788,0.86187,-0.846896,-1.97443,0.617342,2.67965, +-0.500935,0.861721,-0.846921,-1.97458,0.617335,2.6795, +-0.501081,0.861571,-0.846945,-1.97473,0.617327,2.67935, +-0.501228,0.861421,-0.846967,-1.97488,0.617318,2.6792, +-0.501375,0.861271,-0.846989,-1.97503,0.617308,2.67905, +-0.501521,0.861121,-0.84701,-1.97518,0.617297,2.6789, +-0.501667,0.860972,-0.84703,-1.97533,0.617285,2.67875, +-0.501812,0.860822,-0.84705,-1.97547,0.617272,2.6786, +-0.501958,0.860672,-0.847068,-1.97562,0.617258,2.67845, +-0.502103,0.860522,-0.847084,-1.97578,0.617242,2.6783, +-0.502249,0.860371,-0.8471,-1.97593,0.617225,2.67815, +-0.502394,0.86022,-0.847114,-1.97608,0.617206,2.678, +-0.50254,0.86007,-0.847128,-1.97623,0.617186,2.67785, +-0.502685,0.85992,-0.847141,-1.97638,0.617166,2.6777, +-0.50283,0.85977,-0.847153,-1.97653,0.617144,2.67755, +-0.502974,0.85962,-0.847164,-1.97668,0.617121,2.6774, +-0.503118,0.85947,-0.847174,-1.97683,0.617097,2.67725, +-0.503262,0.859319,-0.847182,-1.97698,0.61707,2.6771, +-0.503406,0.859168,-0.84719,-1.97713,0.617042,2.67695, +-0.50355,0.859017,-0.847196,-1.97728,0.617013,2.6768, +-0.503694,0.858867,-0.847201,-1.97743,0.616983,2.67665, +-0.503837,0.858717,-0.847206,-1.97758,0.616951,2.6765, +-0.50398,0.858567,-0.847211,-1.97773,0.616918,2.67635, +-0.504123,0.858418,-0.847214,-1.97788,0.616884,2.6762, +-0.504265,0.858268,-0.847216,-1.97803,0.616848,2.67605, +-0.504406,0.858117,-0.847216,-1.97818,0.616811,2.6759, +-0.504548,0.857967,-0.847215,-1.97833,0.616771,2.67575, +-0.50469,0.857817,-0.847214,-1.97848,0.61673,2.6756, +-0.504831,0.857667,-0.847211,-1.97863,0.616688,2.67545, +-0.504973,0.857518,-0.847209,-1.97878,0.616644,2.6753, +-0.505114,0.857369,-0.847205,-1.97893,0.616599,2.67515, +-0.505254,0.857221,-0.8472,-1.97908,0.616553,2.675, +-0.505393,0.857072,-0.847195,-1.97923,0.616505,2.67485, +-0.505532,0.856923,-0.847187,-1.97937,0.616454,2.6747, +-0.505671,0.856774,-0.847179,-1.97952,0.616402,2.67455, +-0.50581,0.856625,-0.847169,-1.97967,0.616348,2.6744, +-0.505948,0.856476,-0.847158,-1.97982,0.616293,2.67425, +-0.506086,0.856328,-0.847146,-1.97997,0.616236,2.67411, +-0.506224,0.856181,-0.847133,-1.98012,0.616178,2.67396, +-0.506361,0.856034,-0.847119,-1.98026,0.616118,2.67381, +-0.506497,0.855887,-0.847104,-1.98041,0.616057,2.67367, +-0.506633,0.85574,-0.847087,-1.98056,0.615993,2.67352, +-0.506768,0.855592,-0.847068,-1.98071,0.615927,2.67337, +-0.506903,0.855445,-0.847048,-1.98085,0.615859,2.67322, +-0.507038,0.855299,-0.847027,-1.981,0.61579,2.67308, +-0.507172,0.855153,-0.847004,-1.98114,0.615719,2.67293, +-0.507306,0.855008,-0.846981,-1.98129,0.615646,2.67279, +-0.50744,0.854863,-0.846956,-1.98143,0.615572,2.67264, +-0.507572,0.854719,-0.846929,-1.98158,0.615496,2.6725, +-0.507703,0.854574,-0.846901,-1.98172,0.615417,2.67235, +-0.507834,0.854429,-0.84687,-1.98187,0.615337,2.67221, +-0.507965,0.854285,-0.846838,-1.98201,0.615254,2.67206, +-0.508095,0.854142,-0.846805,-1.98216,0.61517,2.67192, +-0.508225,0.854,-0.846771,-1.9823,0.615084,2.67178, +-0.508355,0.853858,-0.846735,-1.98244,0.614996,2.67164, +-0.508484,0.853718,-0.846697,-1.98258,0.614906,2.6715, +-0.508611,0.85358,-0.846658,-1.98272,0.614815,2.67136, +-0.508738,0.853443,-0.846616,-1.98286,0.614721,2.67122, +-0.508863,0.853308,-0.846573,-1.98299,0.614625,2.67109, +-0.508986,0.853174,-0.846528,-1.98313,0.614528,2.67095, +-0.509107,0.85304,-0.846482,-1.98326,0.61443,2.67082, +-0.509227,0.852907,-0.846434,-1.98339,0.614331,2.67069, +-0.509345,0.852775,-0.846385,-1.98352,0.61423,2.67055, +-0.509461,0.852645,-0.846334,-1.98365,0.614128,2.67042, +-0.509575,0.852516,-0.846282,-1.98378,0.614024,2.67029, +-0.509687,0.852388,-0.846227,-1.98391,0.613918,2.67017, +-0.509798,0.852262,-0.84617,-1.98404,0.613811,2.67004, +-0.509908,0.852137,-0.846112,-1.98416,0.613703,2.66991, +-0.510017,0.852013,-0.846053,-1.98428,0.613595,2.66979, +-0.510125,0.85189,-0.845992,-1.98441,0.613485,2.66967, +-0.510232,0.851768,-0.84593,-1.98453,0.613375,2.66955, +-0.510338,0.851647,-0.845866,-1.98465,0.613264,2.66943, +-0.510442,0.851528,-0.8458,-1.98477,0.613151,2.66931, +-0.510545,0.851411,-0.845733,-1.98489,0.613037,2.66919, +-0.510647,0.851294,-0.845663,-1.985,0.612922,2.66907, +-0.510747,0.851179,-0.845592,-1.98512,0.612806,2.66896, +-0.510846,0.851064,-0.84552,-1.98523,0.61269,2.66884, +-0.510945,0.85095,-0.845446,-1.98535,0.612573,2.66873, +-0.511043,0.850837,-0.845372,-1.98546,0.612456,2.66862, +-0.51114,0.850725,-0.845295,-1.98557,0.612338,2.6685, +-0.511235,0.850614,-0.845217,-1.98568,0.612219,2.66839, +-0.511328,0.850505,-0.845137,-1.98579,0.612099,2.66828, +-0.511421,0.850397,-0.845056,-1.9859,0.611978,2.66817, +-0.511512,0.85029,-0.844973,-1.98601,0.611857,2.66807, +-0.511602,0.850184,-0.844889,-1.98611,0.611735,2.66796, +-0.511691,0.850079,-0.844804,-1.98622,0.611613,2.66786, +-0.51178,0.849975,-0.844718,-1.98632,0.61149,2.66775, +-0.511867,0.849872,-0.844631,-1.98642,0.611367,2.66765, +-0.511953,0.849771,-0.844542,-1.98653,0.611243,2.66755, +-0.512038,0.849671,-0.844451,-1.98663,0.611118,2.66745, +-0.512121,0.849572,-0.844359,-1.98673,0.610993,2.66735, +-0.512203,0.849474,-0.844266,-1.98682,0.610867,2.66725, +-0.512284,0.849377,-0.844171,-1.98692,0.61074,2.66716, +-0.512365,0.849281,-0.844077,-1.98702,0.610614,2.66706, +-0.512444,0.849185,-0.843981,-1.98711,0.610487,2.66696, +-0.512523,0.84909,-0.843884,-1.98721,0.61036,2.66687, +-0.5126,0.848997,-0.843785,-1.9873,0.610232,2.66677, +-0.512676,0.848905,-0.843685,-1.98739,0.610103,2.66668, +-0.51275,0.848814,-0.843584,-1.98748,0.609974,2.66659, +-0.512824,0.848725,-0.843482,-1.98757,0.609844,2.6665, +-0.512896,0.848636,-0.84338,-1.98766,0.609714,2.66641, +-0.512968,0.848547,-0.843276,-1.98775,0.609584,2.66633, +-0.51304,0.848459,-0.843172,-1.98784,0.609454,2.66624, +-0.51311,0.848373,-0.843067,-1.98792,0.609323,2.66615, +-0.513179,0.848287,-0.842961,-1.98801,0.609191,2.66607, +-0.513246,0.848203,-0.842853,-1.98809,0.609059,2.66598, +-0.513312,0.848121,-0.842745,-1.98818,0.608926,2.6659, +-0.513377,0.848039,-0.842635,-1.98826,0.608793,2.66582, +-0.513441,0.847958,-0.842525,-1.98834,0.608659,2.66574, +-0.513505,0.847877,-0.842414,-1.98842,0.608526,2.66566, +-0.513568,0.847797,-0.842303,-1.9885,0.608392,2.66558, +-0.51363,0.847719,-0.84219,-1.98858,0.608258,2.6655, +-0.51369,0.847641,-0.842077,-1.98866,0.608124,2.66542, +-0.513749,0.847565,-0.841962,-1.98873,0.607988,2.66534, +-0.513807,0.84749,-0.841847,-1.98881,0.607852,2.66527, +-0.513864,0.847416,-0.84173,-1.98888,0.607715,2.66519, +-0.51392,0.847343,-0.841613,-1.98895,0.607579,2.66512, +-0.513975,0.84727,-0.841496,-1.98903,0.607442,2.66505, +-0.51403,0.847198,-0.841378,-1.9891,0.607305,2.66498, +-0.514084,0.847127,-0.841259,-1.98917,0.607168,2.66491, +-0.514136,0.847057,-0.841139,-1.98924,0.607031,2.66484, +-0.514187,0.846989,-0.841018,-1.98931,0.606892,2.66477, +-0.514237,0.846921,-0.840896,-1.98938,0.606753,2.6647, +-0.514286,0.846855,-0.840773,-1.98944,0.606614,2.66463, +-0.514334,0.84679,-0.84065,-1.98951,0.606474,2.66457, +-0.514381,0.846724,-0.840527,-1.98957,0.606334,2.6645, +-0.514428,0.84666,-0.840402,-1.98964,0.606195,2.66444, +-0.514474,0.846597,-0.840278,-1.9897,0.606055,2.66437, +-0.514518,0.846534,-0.840152,-1.98976,0.605914,2.66431, +-0.514561,0.846474,-0.840025,-1.98982,0.605773,2.66425, +-0.514603,0.846414,-0.839896,-1.98988,0.605631,2.66419, +-0.514644,0.846355,-0.839767,-1.98994,0.605489,2.66413, +-0.514684,0.846297,-0.839638,-1.99,0.605347,2.66408, +-0.514724,0.84624,-0.839508,-1.99006,0.605204,2.66402, +-0.514762,0.846183,-0.839378,-1.99011,0.605062,2.66396, +-0.5148,0.846127,-0.839246,-1.99017,0.60492,2.66391, +-0.514837,0.846073,-0.839114,-1.99022,0.604776,2.66385, +-0.514872,0.84602,-0.838981,-1.99028,0.604633,2.6638, +-0.514906,0.845968,-0.838847,-1.99033,0.604488,2.66375, +-0.514938,0.845917,-0.838712,-1.99038,0.604344,2.66369, +-0.51497,0.845867,-0.838578,-1.99043,0.604199,2.66364, +-0.515002,0.845817,-0.838443,-1.99048,0.604054,2.66359, +-0.515033,0.845768,-0.838308,-1.99053,0.60391,2.66355, +-0.515063,0.84572,-0.838173,-1.99058,0.603765,2.6635, +-0.515091,0.845673,-0.838037,-1.99062,0.60362,2.66345, +-0.515118,0.845628,-0.8379,-1.99067,0.603474,2.66341, +-0.515144,0.845584,-0.837762,-1.99071,0.603329,2.66336, +-0.515169,0.84554,-0.837624,-1.99076,0.603183,2.66332, +-0.515193,0.845498,-0.837485,-1.9908,0.603037,2.66328, +-0.515217,0.845456,-0.837346,-1.99084,0.602892,2.66323, +-0.515239,0.845415,-0.837207,-1.99088,0.602746,2.66319, +-0.515261,0.845375,-0.837067,-1.99092,0.602601,2.66315, +-0.515282,0.845337,-0.836926,-1.99096,0.602454,2.66311, +-0.515301,0.845299,-0.836785,-1.991,0.602308,2.66308, +-0.515319,0.845263,-0.836642,-1.99103,0.602162,2.66304, +-0.515335,0.845228,-0.8365,-1.99107,0.602015,2.66301, +-0.515351,0.845194,-0.836357,-1.9911,0.601869,2.66297, +-0.515367,0.84516,-0.836214,-1.99114,0.601722,2.66294, +-0.515382,0.845127,-0.836071,-1.99117,0.601576,2.66291, +-0.515395,0.845095,-0.835927,-1.9912,0.60143,2.66287, +-0.515408,0.845065,-0.835783,-1.99123,0.601283,2.66284, +-0.515419,0.845035,-0.835638,-1.99126,0.601137,2.66281, +-0.515429,0.845007,-0.835493,-1.99129,0.60099,2.66279, +-0.515438,0.84498,-0.835347,-1.99132,0.600844,2.66276, +-0.515446,0.844954,-0.835201,-1.99134,0.600698,2.66273, +-0.515454,0.844929,-0.835055,-1.99137,0.600552,2.66271, +-0.515461,0.844904,-0.834909,-1.99139,0.600406,2.66268, +-0.515467,0.84488,-0.834763,-1.99142,0.60026,2.66266, +-0.515471,0.844857,-0.834616,-1.99144,0.600114,2.66264, +-0.515475,0.844836,-0.834468,-1.99146,0.599969,2.66261, +-0.515477,0.844816,-0.83432,-1.99148,0.599823,2.66259, +-0.515478,0.844798,-0.834172,-1.9915,0.599677,2.66258, +-0.515478,0.84478,-0.834024,-1.99152,0.599531,2.66256, +-0.515478,0.844762,-0.833875,-1.99153,0.599386,2.66254, +-0.515478,0.844745,-0.833727,-1.99155,0.599241,2.66252, +-0.515476,0.84473,-0.833579,-1.99157,0.599096,2.66251, +-0.515474,0.844715,-0.83343,-1.99158,0.598952,2.66249, +-0.515469,0.844702,-0.833281,-1.99159,0.598808,2.66248, +-0.515464,0.844691,-0.833131,-1.99161,0.598663,2.66247, +-0.515457,0.84468,-0.832981,-1.99162,0.598519,2.66246, +-0.51545,0.84467,-0.832831,-1.99163,0.598375,2.66245, +-0.515442,0.84466,-0.832682,-1.99164,0.598231,2.66244, +-0.515433,0.844652,-0.832532,-1.99165,0.598087,2.66243, +-0.515424,0.844644,-0.832382,-1.99165,0.597944,2.66242, +-0.515413,0.844637,-0.832232,-1.99166,0.597801,2.66242, +-0.5154,0.844632,-0.832082,-1.99166,0.597658,2.66241, +-0.515386,0.844629,-0.831931,-1.99167,0.597516,2.66241, +-0.51537,0.844626,-0.83178,-1.99167,0.597373,2.6624, +-0.515354,0.844624,-0.831629,-1.99167,0.597231,2.6624, +-0.515337,0.844622,-0.831479,-1.99168,0.597089,2.6624, +-0.515319,0.844621,-0.831328,-1.99168,0.596947,2.6624, +-0.515299,0.844621,-0.831178,-1.99168,0.596805,2.6624, +-0.515278,0.844622,-0.831027,-1.99167,0.596664,2.6624, +-0.515255,0.844625,-0.830876,-1.99167,0.596524,2.6624, +-0.515231,0.844629,-0.830725,-1.99167,0.596384,2.66241, +-0.515205,0.844634,-0.830573,-1.99166,0.596245,2.66241, +-0.515178,0.84464,-0.830422,-1.99166,0.596105,2.66242, +-0.51515,0.844646,-0.830271,-1.99165,0.595965,2.66242, +-0.515121,0.844653,-0.830121,-1.99164,0.595826,2.66243, +-0.515091,0.844661,-0.82997,-1.99164,0.595687,2.66244, +-0.515059,0.844671,-0.829819,-1.99163,0.595548,2.66245, +-0.515025,0.844681,-0.829668,-1.99162,0.595411,2.66246, +-0.514989,0.844694,-0.829517,-1.9916,0.595274,2.66247, +-0.514952,0.844707,-0.829366,-1.99159,0.595138,2.66249, +-0.514914,0.844722,-0.829215,-1.99158,0.595001,2.6625, +-0.514874,0.844737,-0.829064,-1.99156,0.594865,2.66252, +-0.514833,0.844754,-0.828914,-1.99154,0.594729,2.66253, +-0.514791,0.844772,-0.828764,-1.99153,0.594593,2.66255, +-0.514747,0.844791,-0.828614,-1.99151,0.594458,2.66257, +-0.514701,0.844812,-0.828463,-1.99149,0.594324,2.66259, +-0.514653,0.844835,-0.828313,-1.99146,0.594191,2.66261, +-0.514603,0.844859,-0.828162,-1.99144,0.594058,2.66264, +-0.514552,0.844884,-0.828012,-1.99141,0.593926,2.66266, +-0.5145,0.84491,-0.827863,-1.99139,0.593793,2.66269, +-0.514446,0.844938,-0.827714,-1.99136,0.593661,2.66272, +-0.514391,0.844967,-0.827565,-1.99133,0.593529,2.66274, +-0.514334,0.844997,-0.827416,-1.9913,0.593398,2.66278, +-0.514275,0.84503,-0.827266,-1.99127,0.593268,2.66281, +-0.514214,0.845064,-0.827117,-1.99123,0.593139,2.66284, +-0.514151,0.8451,-0.826968,-1.9912,0.593011,2.66288, +-0.514086,0.845137,-0.82682,-1.99116,0.592883,2.66291, +-0.51402,0.845175,-0.826672,-1.99112,0.592755,2.66295, +-0.513953,0.845215,-0.826524,-1.99108,0.592627,2.66299, +-0.513884,0.845256,-0.826377,-1.99104,0.5925,2.66303, +-0.513812,0.845299,-0.82623,-1.991,0.592374,2.66308, +-0.513739,0.845344,-0.826083,-1.99095,0.592249,2.66312, +-0.513664,0.845391,-0.825936,-1.99091,0.592125,2.66317, +-0.513586,0.84544,-0.825789,-1.99086,0.592002,2.66322, +-0.513507,0.84549,-0.825643,-1.99081,0.591879,2.66327, +-0.513427,0.845542,-0.825497,-1.99076,0.591756,2.66332, +-0.513345,0.845595,-0.825352,-1.9907,0.591634,2.66337, +-0.513261,0.84565,-0.825208,-1.99065,0.591512,2.66343, +-0.513175,0.845707,-0.825063,-1.99059,0.591391,2.66349, +-0.513087,0.845766,-0.824919,-1.99053,0.591272,2.66354, +-0.512997,0.845827,-0.824775,-1.99047,0.591153,2.66361, +-0.512905,0.84589,-0.824631,-1.99041,0.591036,2.66367, +-0.512811,0.845955,-0.824488,-1.99034,0.59092,2.66373, +-0.512716,0.84602,-0.824346,-1.99028,0.590805,2.6638, +-0.51262,0.846088,-0.824205,-1.99021,0.590691,2.66387, +-0.512521,0.846157,-0.824064,-1.99014,0.590578,2.66394, +-0.512421,0.846228,-0.823923,-1.99007,0.590466,2.66401, +-0.512319,0.846302,-0.823783,-1.99,0.590356,2.66408, +-0.512215,0.846377,-0.823643,-1.98992,0.590248,2.66416, +-0.512111,0.846454,-0.823504,-1.98984,0.590141,2.66423, +-0.512005,0.846532,-0.823366,-1.98976,0.590035,2.66431, +-0.511898,0.846612,-0.823229,-1.98969,0.589931,2.66439, +-0.511791,0.846692,-0.823094,-1.9896,0.589827,2.66447, +-0.511682,0.846775,-0.822959,-1.98952,0.589725,2.66455, +-0.511571,0.846859,-0.822824,-1.98944,0.589624,2.66464, +-0.511459,0.846945,-0.82269,-1.98935,0.589526,2.66472, +-0.511346,0.847033,-0.822557,-1.98926,0.589428,2.66481, +-0.511232,0.847122,-0.822424,-1.98917,0.589332,2.6649, +-0.511118,0.847213,-0.822293,-1.98908,0.589237,2.66499, +-0.511003,0.847304,-0.822164,-1.98899,0.589143,2.66508, +-0.510887,0.847397,-0.822035,-1.9889,0.589049,2.66518, +-0.510771,0.847491,-0.821908,-1.98881,0.588957,2.66527, +-0.510653,0.847586,-0.821781,-1.98871,0.588866,2.66536, +-0.510534,0.847684,-0.821655,-1.98861,0.588777,2.66546, +-0.510414,0.847782,-0.821529,-1.98851,0.58869,2.66556, +-0.510294,0.847882,-0.821405,-1.98842,0.588603,2.66566, +-0.510173,0.847983,-0.821282,-1.98831,0.588518,2.66576, +-0.510052,0.848084,-0.821161,-1.98821,0.588433,2.66586, +-0.50993,0.848187,-0.821041,-1.98811,0.588349,2.66596, +-0.509808,0.84829,-0.820922,-1.98801,0.588267,2.66607, +-0.509685,0.848395,-0.820804,-1.9879,0.588185,2.66617, +-0.50956,0.848501,-0.820687,-1.9878,0.588106,2.66628, +-0.509435,0.848609,-0.82057,-1.98769,0.588028,2.66639, +-0.50931,0.848717,-0.820455,-1.98758,0.58795,2.6665, +-0.509184,0.848826,-0.820341,-1.98747,0.587874,2.6666, +-0.509058,0.848936,-0.820229,-1.98736,0.587799,2.66671, +-0.508932,0.849046,-0.820118,-1.98725,0.587724,2.66682, +-0.508805,0.849157,-0.820008,-1.98714,0.587651,2.66693, +-0.508678,0.849269,-0.819899,-1.98703,0.587579,2.66705, +-0.50855,0.849382,-0.819791,-1.98691,0.587508,2.66716, +-0.508421,0.849497,-0.819684,-1.9868,0.587439,2.66727, +-0.508291,0.849612,-0.819578,-1.98669,0.587371,2.66739, +-0.508161,0.849728,-0.819473,-1.98657,0.587304,2.66751, +-0.508032,0.849844,-0.81937,-1.98645,0.587237,2.66762, +-0.507902,0.849962,-0.819269,-1.98634,0.587171,2.66774, +-0.507771,0.85008,-0.819169,-1.98622,0.587107,2.66786, +-0.50764,0.850199,-0.819073,-1.9861,0.587043,2.66798, +-0.507508,0.850319,-0.818979,-1.98598,0.586982,2.6681, +-0.507376,0.85044,-0.818888,-1.98586,0.586921,2.66822, +-0.507243,0.850561,-0.8188,-1.98574,0.586862,2.66834, +-0.50711,0.850682,-0.818715,-1.98561,0.586803,2.66846, +-0.506976,0.850803,-0.818633,-1.98549,0.586745,2.66858, +-0.506843,0.850925,-0.818554,-1.98537,0.586688,2.6687, +-0.506709,0.851046,-0.818477,-1.98525,0.586632,2.66882, +-0.506575,0.851169,-0.818403,-1.98513,0.586578,2.66895, +-0.50644,0.851292,-0.81833,-1.98501,0.586524,2.66907, +-0.506305,0.851416,-0.81826,-1.98488,0.586472,2.66919, +-0.506169,0.851541,-0.81819,-1.98476,0.586422,2.66932, +-0.506034,0.851667,-0.818122,-1.98463,0.586372,2.66945, +-0.505898,0.851793,-0.818055,-1.9845,0.586322,2.66957, +-0.505762,0.851919,-0.817989,-1.98438,0.586274,2.6697, +-0.505626,0.852047,-0.817923,-1.98425,0.586226,2.66983, +-0.505489,0.852175,-0.817859,-1.98412,0.58618,2.66995, +-0.505352,0.852305,-0.817795,-1.98399,0.586135,2.67008, +-0.505213,0.852435,-0.817731,-1.98386,0.586092,2.67021, +-0.505075,0.852566,-0.817667,-1.98373,0.586049,2.67034, +-0.504936,0.852697,-0.817603,-1.9836,0.586008,2.67048, +-0.504797,0.852829,-0.817539,-1.98347,0.585967,2.67061, +-0.504658,0.852961,-0.817476,-1.98334,0.585926,2.67074, +-0.504519,0.853093,-0.817413,-1.9832,0.585887,2.67087, +-0.504379,0.853227,-0.817351,-1.98307,0.585849,2.671, +-0.504238,0.853361,-0.817289,-1.98294,0.585812,2.67114, +-0.504097,0.853496,-0.817229,-1.9828,0.585776,2.67127, +-0.503955,0.853632,-0.817169,-1.98267,0.585742,2.67141, +-0.503813,0.853768,-0.81711,-1.98253,0.585708,2.67155, +-0.503672,0.853904,-0.81705,-1.98239,0.585675,2.67168, +-0.50353,0.85404,-0.816991,-1.98226,0.585643,2.67182, +-0.503388,0.854177,-0.816933,-1.98212,0.585611,2.67196, +-0.503245,0.854315,-0.816876,-1.98198,0.585581,2.67209, +-0.503102,0.854454,-0.81682,-1.98184,0.585553,2.67223, +-0.502958,0.854593,-0.816765,-1.9817,0.585525,2.67237, +-0.502814,0.854733,-0.81671,-1.98157,0.585499,2.67251, +-0.50267,0.854872,-0.816656,-1.98143,0.585473,2.67265, +-0.502525,0.855012,-0.816603,-1.98129,0.585448,2.67279, +-0.502381,0.855152,-0.81655,-1.98115,0.585424,2.67293, +-0.502237,0.855293,-0.816498,-1.981,0.585401,2.67307, +-0.502092,0.855434,-0.816447,-1.98086,0.585379,2.67321, +-0.501946,0.855576,-0.816397,-1.98072,0.585358,2.67335, +-0.5018,0.855719,-0.816348,-1.98058,0.585339,2.6735, +-0.501654,0.855862,-0.8163,-1.98044,0.58532,2.67364, +-0.501508,0.856005,-0.816253,-1.98029,0.585303,2.67378, +-0.501362,0.856148,-0.816206,-1.98015,0.585286,2.67393, +-0.501216,0.856292,-0.81616,-1.98001,0.585269,2.67407, +-0.50107,0.856435,-0.816114,-1.97986,0.585254,2.67421, +-0.500923,0.85658,-0.81607,-1.97972,0.58524,2.67436, +-0.500776,0.856725,-0.816027,-1.97957,0.585227,2.6745, +-0.500629,0.85687,-0.815985,-1.97943,0.585216,2.67465, +-0.500483,0.857016,-0.815944,-1.97928,0.585205,2.67479, +-0.500336,0.857162,-0.815904,-1.97914,0.585195,2.67494, +-0.500189,0.857308,-0.815864,-1.97899,0.585186,2.67509, +-0.500043,0.857453,-0.815825,-1.97884,0.585178,2.67523, +-0.499896,0.857599,-0.815787,-1.9787,0.58517,2.67538, +-0.499749,0.857746,-0.81575,-1.97855,0.585164,2.67552, +-0.499602,0.857893,-0.815715,-1.9784,0.585159,2.67567, +-0.499455,0.858041,-0.81568,-1.97826,0.585156,2.67582, +-0.499308,0.858189,-0.815647,-1.97811,0.585153,2.67597, +-0.499161,0.858337,-0.815614,-1.97796,0.585151,2.67612, +-0.499014,0.858485,-0.815582,-1.97781,0.58515,2.67626, +-0.498867,0.858633,-0.815551,-1.97766,0.585149,2.67641, +-0.49872,0.858781,-0.81552,-1.97752,0.585149,2.67656, +-0.498573,0.858929,-0.815491,-1.97737,0.58515,2.67671, +-0.498426,0.859078,-0.815463,-1.97722,0.585153,2.67686, +-0.498279,0.859227,-0.815436,-1.97707,0.585157,2.67701, +-0.498132,0.859377,-0.815411,-1.97692,0.585162,2.67715, +-0.497985,0.859526,-0.815386,-1.97677,0.585167,2.6773, +-0.497839,0.859675,-0.815361,-1.97662,0.585174,2.67745, +-0.497692,0.859824,-0.815338,-1.97647,0.585181,2.6776, +-0.497546,0.859973,-0.815315,-1.97632,0.585189,2.67775, +-0.4974,0.860123,-0.815294,-1.97617,0.585198,2.6779, +-0.497253,0.860273,-0.815274,-1.97602,0.585209,2.67805, +-0.497107,0.860423,-0.815255,-1.97587,0.585221,2.6782, +-0.496961,0.860574,-0.815237,-1.97572,0.585234,2.67835, +-0.496815,0.860724,-0.81522,-1.97557,0.585248,2.6785, +-0.496669,0.860874,-0.815204,-1.97542,0.585264,2.67865, +-0.496523,0.861024,-0.815188,-1.97527,0.58528,2.6788, +-0.496378,0.861174,-0.815174,-1.97512,0.585297,2.67895, +-0.496233,0.861324,-0.81516,-1.97497,0.585316,2.6791, +-0.496089,0.861475,-0.815148,-1.97482,0.585337,2.67925, +-0.495944,0.861626,-0.815137,-1.97467,0.585359,2.6794, +-0.495799,0.861776,-0.815128,-1.97452,0.585383,2.67955, +-0.495654,0.861927,-0.815119,-1.97437,0.585407,2.67971, +-0.49551,0.862077,-0.81511,-1.97422,0.585433,2.67986, +-0.495366,0.862227,-0.815103,-1.97407,0.58546,2.68001, +-0.495222,0.862377,-0.815096,-1.97392,0.585488,2.68016, +-0.495079,0.862527,-0.81509,-1.97377,0.585518,2.68031, +-0.494936,0.862678,-0.815086,-1.97362,0.585549,2.68046, +-0.494793,0.862829,-0.815084,-1.97347,0.585582,2.68061, +-0.49465,0.862979,-0.815082,-1.97332,0.585617,2.68076, +-0.494507,0.86313,-0.81508,-1.97317,0.585653,2.68091, +-0.494365,0.863279,-0.81508,-1.97302,0.585691,2.68106, +-0.494222,0.863429,-0.81508,-1.97287,0.585729,2.68121, +-0.494081,0.863578,-0.815081,-1.97272,0.585769,2.68136, +-0.49394,0.863728,-0.815083,-1.97257,0.585811,2.68151, +-0.4938,0.863878,-0.815087,-1.97242,0.585854,2.68166, +-0.493659,0.864028,-0.815092,-1.97227,0.5859,2.68181, +-0.493519,0.864177,-0.815098,-1.97212,0.585947,2.68196, +-0.493378,0.864327,-0.815104,-1.97197,0.585995,2.6821, +-0.493238,0.864475,-0.815112,-1.97182,0.586045,2.68225, +-0.493099,0.864624,-0.81512,-1.97167,0.586096,2.6824, +-0.49296,0.864772,-0.815129,-1.97153,0.586149,2.68255, +-0.492822,0.86492,-0.81514,-1.97138,0.586204,2.6827, +-0.492685,0.865068,-0.815152,-1.97123,0.586261,2.68285, +-0.492548,0.865217,-0.815166,-1.97108,0.58632,2.68299, +-0.492411,0.865365,-0.815181,-1.97093,0.58638,2.68314, +-0.492274,0.865512,-0.815197,-1.97078,0.586442,2.68329, +-0.492137,0.865659,-0.815214,-1.97064,0.586506,2.68344, +-0.492,0.865806,-0.815233,-1.97049,0.586571,2.68358, +-0.491863,0.865952,-0.815252,-1.97035,0.586638,2.68373, +-0.491726,0.866098,-0.815273,-1.9702,0.586706,2.68388, +-0.491588,0.866244,-0.815296,-1.97005,0.586777,2.68402, +-0.491451,0.86639,-0.815321,-1.96991,0.586851,2.68417, +-0.491313,0.866536,-0.815347,-1.96976,0.586926,2.68431, +-0.491177,0.866681,-0.815374,-1.96962,0.587002,2.68446, +-0.49104,0.866826,-0.815403,-1.96947,0.58708,2.6846, +-0.490905,0.866969,-0.815433,-1.96933,0.58716,2.68475, +-0.490769,0.867113,-0.815464,-1.96918,0.587242,2.68489, +-0.490634,0.867256,-0.815497,-1.96904,0.587326,2.68503, +-0.490499,0.867399,-0.815532,-1.9689,0.587412,2.68518, +-0.490364,0.867542,-0.815569,-1.96876,0.5875,2.68532, +-0.49023,0.867684,-0.815608,-1.96861,0.58759,2.68546, +-0.490098,0.867826,-0.815648,-1.96847,0.587682,2.6856, +-0.489966,0.867966,-0.815689,-1.96833,0.587775,2.68574, +-0.489835,0.868106,-0.815732,-1.96819,0.587869,2.68588, +-0.489705,0.868245,-0.815776,-1.96805,0.587966,2.68602, +-0.489575,0.868384,-0.815822,-1.96791,0.588064,2.68616, +-0.489446,0.868523,-0.81587,-1.96777,0.588164,2.6863, +-0.489318,0.868661,-0.815921,-1.96764,0.588266,2.68644, +-0.489191,0.868798,-0.815972,-1.9675,0.588369,2.68658, +-0.489066,0.868934,-0.816026,-1.96736,0.588473,2.68671, +-0.488942,0.869069,-0.81608,-1.96723,0.588578,2.68685, +-0.48882,0.869203,-0.816136,-1.96709,0.588683,2.68698, +-0.488699,0.869336,-0.816193,-1.96696,0.588791,2.68711, +-0.488578,0.869468,-0.816253,-1.96683,0.588899,2.68725, +-0.488459,0.8696,-0.816314,-1.9667,0.589009,2.68738, +-0.488341,0.869731,-0.816377,-1.96657,0.589121,2.68751, +-0.488224,0.869861,-0.816442,-1.96644,0.589233,2.68764, +-0.488109,0.86999,-0.816508,-1.96631,0.589345,2.68777, +-0.487996,0.870117,-0.816576,-1.96618,0.589459,2.6879, +-0.487884,0.870243,-0.816645,-1.96605,0.589573,2.68802, +-0.487774,0.870368,-0.816715,-1.96593,0.589688,2.68815, +-0.487665,0.870492,-0.816787,-1.96581,0.589804,2.68827, +-0.487557,0.870615,-0.816861,-1.96568,0.589921,2.68839, +-0.48745,0.870738,-0.816937,-1.96556,0.590039,2.68852, +-0.487345,0.870859,-0.817014,-1.96544,0.590158,2.68864, +-0.487241,0.870979,-0.817093,-1.96532,0.590277,2.68876, +-0.487139,0.871098,-0.817172,-1.9652,0.590397,2.68888, +-0.487039,0.871215,-0.817253,-1.96508,0.590517,2.68899, +-0.486942,0.87133,-0.817335,-1.96497,0.590638,2.68911, +-0.486847,0.871445,-0.817419,-1.96485,0.590759,2.68922, +-0.486755,0.87156,-0.817504,-1.96474,0.590882,2.68934, +-0.486666,0.871673,-0.817591,-1.96462,0.591005,2.68945, +-0.486581,0.871785,-0.81768,-1.96451,0.591129,2.68956, +-0.486499,0.871895,-0.817769,-1.9644,0.591253,2.68967, +-0.48642,0.872004,-0.817859,-1.96429,0.591378,2.68978, +-0.486343,0.872112,-0.817951,-1.96419,0.591502,2.68989, +-0.486269,0.872218,-0.818043,-1.96408,0.591628,2.69, +-0.486197,0.872324,-0.818137,-1.96397,0.591754,2.6901, +-0.486127,0.872429,-0.818233,-1.96387,0.59188,2.69021, +-0.486059,0.872532,-0.818329,-1.96376,0.592008,2.69031, +-0.485992,0.872635,-0.818427,-1.96366,0.592136,2.69041, +-0.485926,0.872736,-0.818526,-1.96356,0.592264,2.69051, +-0.485861,0.872836,-0.818625,-1.96346,0.592393,2.69061, +-0.485798,0.872933,-0.818726,-1.96336,0.592521,2.69071, +-0.485736,0.873029,-0.818827,-1.96327,0.59265,2.69081, +-0.485674,0.873122,-0.818929,-1.96318,0.59278,2.6909, +-0.485614,0.873212,-0.819033,-1.96309,0.592911,2.69099, +-0.485554,0.873299,-0.819138,-1.963,0.593042,2.69108, +-0.485494,0.873384,-0.819244,-1.96291,0.593174,2.69116, +-0.485434,0.873465,-0.819351,-1.96283,0.593305,2.69124, +-0.485374,0.873543,-0.819458,-1.96275,0.593437,2.69132, +-0.485314,0.873619,-0.819566,-1.96268,0.593569,2.6914, +-0.485255,0.873692,-0.819675,-1.96261,0.593702,2.69147, +-0.485197,0.873763,-0.819785,-1.96253,0.593835,2.69154, +-0.485139,0.873832,-0.819896,-1.96247,0.593969,2.69161, +-0.485083,0.873899,-0.820008,-1.9624,0.594103,2.69168, +-0.485027,0.873965,-0.820122,-1.96233,0.594238,2.69174, +-0.484973,0.87403,-0.820235,-1.96227,0.594374,2.69181, +-0.484918,0.874094,-0.820349,-1.9622,0.594509,2.69187, +-0.484864,0.874157,-0.820464,-1.96214,0.594644,2.69194, +-0.484811,0.874219,-0.82058,-1.96208,0.594779,2.692, +-0.484759,0.87428,-0.820696,-1.96202,0.594916,2.69206, +-0.484709,0.874341,-0.820814,-1.96196,0.595053,2.69212, +-0.484659,0.874401,-0.820933,-1.9619,0.59519,2.69218, +-0.48461,0.874462,-0.821053,-1.96184,0.595329,2.69224, +-0.484561,0.874522,-0.821173,-1.96178,0.595467,2.6923, +-0.484513,0.874582,-0.821294,-1.96171,0.595605,2.69236, +-0.484466,0.874642,-0.821415,-1.96165,0.595743,2.69242, +-0.484419,0.874702,-0.821537,-1.9616,0.595882,2.69248, +-0.484373,0.874761,-0.82166,-1.96154,0.596021,2.69254, +-0.484328,0.874819,-0.821784,-1.96148,0.596161,2.6926, +-0.484285,0.874876,-0.821909,-1.96142,0.596301,2.69265, +-0.484243,0.874932,-0.822035,-1.96137,0.596442,2.69271, +-0.484201,0.874988,-0.822161,-1.96131,0.596583,2.69277, +-0.484159,0.875043,-0.822288,-1.96125,0.596724,2.69282, +-0.484119,0.875099,-0.822415,-1.9612,0.596865,2.69288, +-0.484079,0.875153,-0.822543,-1.96114,0.597006,2.69293, +-0.484041,0.875207,-0.822672,-1.96109,0.597148,2.69298, +-0.484004,0.875259,-0.822801,-1.96104,0.597291,2.69304, +-0.483968,0.875311,-0.822932,-1.96099,0.597434,2.69309, +-0.483932,0.875361,-0.823064,-1.96094,0.597578,2.69314, +-0.483898,0.875411,-0.823196,-1.96089,0.597721,2.69319, +-0.483864,0.875461,-0.823328,-1.96084,0.597865,2.69324, +-0.483831,0.87551,-0.823461,-1.96079,0.598008,2.69329, +-0.483798,0.875559,-0.823594,-1.96074,0.598152,2.69334, +-0.483767,0.875606,-0.823728,-1.96069,0.598296,2.69338, +-0.483737,0.875652,-0.823864,-1.96064,0.598441,2.69343, +-0.483708,0.875697,-0.824,-1.9606,0.598586,2.69348, +-0.483681,0.875742,-0.824137,-1.96056,0.598732,2.69352, +-0.483654,0.875785,-0.824274,-1.96051,0.598878,2.69356, +-0.483627,0.875828,-0.824412,-1.96047,0.599023,2.69361, +-0.483602,0.875871,-0.82455,-1.96043,0.599169,2.69365, +-0.483577,0.875913,-0.824688,-1.96038,0.599314,2.69369, +-0.483553,0.875953,-0.824827,-1.96034,0.599461,2.69373, +-0.483531,0.875992,-0.824967,-1.9603,0.599607,2.69377, +-0.48351,0.87603,-0.825108,-1.96027,0.599754,2.69381, +-0.48349,0.876068,-0.82525,-1.96023,0.599901,2.69385, +-0.483471,0.876104,-0.825391,-1.96019,0.600047,2.69388, +-0.483452,0.87614,-0.825533,-1.96016,0.600193,2.69392, +-0.483434,0.876175,-0.825675,-1.96012,0.60034,2.69395, +-0.483417,0.87621,-0.825817,-1.96009,0.600486,2.69399, +-0.483401,0.876243,-0.82596,-1.96005,0.600633,2.69402, +-0.483387,0.876275,-0.826104,-1.96002,0.60078,2.69405, +-0.483374,0.876306,-0.826248,-1.95999,0.600927,2.69408, +-0.483361,0.876335,-0.826393,-1.95996,0.601074,2.69411, +-0.48335,0.876364,-0.826538,-1.95993,0.601221,2.69414, +-0.483339,0.876393,-0.826682,-1.9599,0.601367,2.69417, +-0.483328,0.87642,-0.826827,-1.95988,0.601514,2.6942, +-0.483319,0.876447,-0.826973,-1.95985,0.60166,2.69423, +-0.483311,0.876473,-0.827118,-1.95982,0.601806,2.69425, +-0.483304,0.876497,-0.827265,-1.9598,0.601953,2.69428, +-0.483299,0.87652,-0.827412,-1.95978,0.602099,2.6943, +-0.483294,0.876542,-0.827559,-1.95976,0.602245,2.69432, +-0.483291,0.876563,-0.827706,-1.95973,0.602391,2.69434, +-0.483287,0.876583,-0.827854,-1.95971,0.602537,2.69436, +-0.483285,0.876603,-0.828001,-1.95969,0.602682,2.69438, +-0.483283,0.876622,-0.828148,-1.95967,0.602828,2.6944, +-0.483282,0.87664,-0.828296,-1.95966,0.602973,2.69442, +-0.483283,0.876656,-0.828444,-1.95964,0.603117,2.69443, +-0.483284,0.876671,-0.828592,-1.95963,0.603262,2.69445, +-0.483287,0.876683,-0.82874,-1.95961,0.603405,2.69446, +-0.483289,0.876695,-0.828887,-1.9596,0.603547,2.69447, +-0.483292,0.876704,-0.829034,-1.95959,0.603688,2.69448, +-0.483295,0.876713,-0.82918,-1.95958,0.603828,2.69449, +-0.483298,0.87672,-0.829325,-1.95958,0.603968,2.6945, +-0.483303,0.876727,-0.829471,-1.95957,0.604106,2.6945, +-0.483309,0.876733,-0.829616,-1.95956,0.604245,2.69451, +-0.483316,0.876738,-0.829761,-1.95956,0.604383,2.69452, +-0.483324,0.876743,-0.829906,-1.95955,0.604522,2.69452, +-0.483334,0.876749,-0.830051,-1.95955,0.60466,2.69453, +-0.483346,0.876754,-0.830196,-1.95954,0.604799,2.69453, +-0.483359,0.876759,-0.830342,-1.95954,0.604939,2.69454, +-0.483373,0.876763,-0.830488,-1.95953,0.605078,2.69454, +-0.48339,0.876767,-0.830634,-1.95953,0.605216,2.69455, +-0.483408,0.87677,-0.830782,-1.95953,0.605355,2.69455, +-0.483428,0.876771,-0.83093,-1.95953,0.605494,2.69455, +-0.483449,0.876772,-0.831078,-1.95953,0.605633,2.69455, +-0.483471,0.876771,-0.831227,-1.95953,0.605772,2.69455, +-0.483494,0.876769,-0.831375,-1.95953,0.60591,2.69455, +-0.483518,0.876767,-0.831523,-1.95953,0.606049,2.69454, +-0.483543,0.876763,-0.831672,-1.95953,0.606187,2.69454, +-0.48357,0.876757,-0.831821,-1.95954,0.606325,2.69454, +-0.483599,0.87675,-0.831971,-1.95955,0.606462,2.69453, +-0.483629,0.876742,-0.832121,-1.95956,0.6066,2.69452, +-0.483661,0.876733,-0.832272,-1.95956,0.606738,2.69451, +-0.483694,0.876723,-0.832422,-1.95957,0.606875,2.6945, +-0.483728,0.876712,-0.832572,-1.95959,0.607013,2.69449, +-0.483763,0.8767,-0.832722,-1.9596,0.60715,2.69448, +-0.483799,0.876687,-0.832872,-1.95961,0.607287,2.69447, +-0.483838,0.876673,-0.833023,-1.95962,0.607423,2.69445, +-0.483878,0.876658,-0.833174,-1.95964,0.607559,2.69444, +-0.48392,0.876641,-0.833325,-1.95966,0.607694,2.69442, +-0.483963,0.876622,-0.833476,-1.95967,0.607829,2.6944, +-0.484008,0.876603,-0.833627,-1.95969,0.607965,2.69438, +-0.484054,0.876582,-0.833777,-1.95971,0.6081,2.69436, +-0.484101,0.87656,-0.833928,-1.95974,0.608235,2.69434, +-0.48415,0.876537,-0.834078,-1.95976,0.608369,2.69432, +-0.484201,0.876513,-0.834228,-1.95978,0.608503,2.69429, +-0.484253,0.876486,-0.834379,-1.95981,0.608636,2.69426, +-0.484308,0.876458,-0.83453,-1.95984,0.608768,2.69424, +-0.484364,0.876429,-0.834681,-1.95987,0.608899,2.69421, +-0.484422,0.876398,-0.834832,-1.9599,0.609031,2.69418, +-0.484481,0.876366,-0.834981,-1.95993,0.609163,2.69414, +-0.484541,0.876333,-0.835131,-1.95996,0.609294,2.69411, +-0.484603,0.876298,-0.83528,-1.96,0.609425,2.69408, +-0.484668,0.876262,-0.83543,-1.96004,0.609555,2.69404, +-0.484734,0.876223,-0.835579,-1.96007,0.609684,2.694, +-0.484802,0.876183,-0.835729,-1.96011,0.609812,2.69396, +-0.484872,0.876141,-0.835878,-1.96016,0.609939,2.69392, +-0.484944,0.876098,-0.836027,-1.9602,0.610066,2.69388, +-0.485017,0.876053,-0.836175,-1.96024,0.610193,2.69383, +-0.485092,0.876007,-0.836323,-1.96029,0.61032,2.69379, +-0.485168,0.875959,-0.83647,-1.96034,0.610446,2.69374, +-0.485247,0.87591,-0.836618,-1.96039,0.61057,2.69369, +-0.485328,0.875858,-0.836765,-1.96044,0.610694,2.69364, +-0.485411,0.875804,-0.836912,-1.96049,0.610817,2.69358, +-0.485496,0.875748,-0.837059,-1.96055,0.610939,2.69353, +-0.485582,0.875691,-0.837205,-1.96061,0.611061,2.69347, +-0.485671,0.875632,-0.837351,-1.96066,0.611183,2.69341, +-0.485761,0.875572,-0.837495,-1.96073,0.611304,2.69335, +-0.485852,0.87551,-0.837638,-1.96079,0.611426,2.69329, +-0.485946,0.875446,-0.837779,-1.96085,0.611548,2.69322, +-0.486042,0.87538,-0.837919,-1.96092,0.61167,2.69316, +-0.48614,0.875311,-0.838057,-1.96099,0.611793,2.69309, +-0.486239,0.875241,-0.838195,-1.96106,0.611915,2.69302, +-0.48634,0.87517,-0.838332,-1.96113,0.612037,2.69295, +-0.486441,0.875097,-0.838468,-1.9612,0.612159,2.69287, +-0.486544,0.875022,-0.838604,-1.96127,0.61228,2.6928, +-0.486649,0.874946,-0.838738,-1.96135,0.6124,2.69272, +-0.486755,0.874868,-0.838871,-1.96143,0.612521,2.69265, +-0.486863,0.874788,-0.839003,-1.96151,0.61264,2.69257, +-0.486972,0.874707,-0.839133,-1.96159,0.612759,2.69248, +-0.487082,0.874623,-0.839261,-1.96167,0.612876,2.6924, +-0.487193,0.874539,-0.839389,-1.96176,0.612993,2.69232, +-0.487304,0.874453,-0.839515,-1.96184,0.613107,2.69223, +-0.487417,0.874366,-0.839641,-1.96193,0.61322,2.69214, +-0.48753,0.874277,-0.839764,-1.96202,0.613332,2.69206, +-0.487645,0.874187,-0.839887,-1.96211,0.613443,2.69197, +-0.487761,0.874095,-0.840008,-1.9622,0.613553,2.69187, +-0.487878,0.874001,-0.840127,-1.9623,0.613661,2.69178, +-0.487996,0.873906,-0.840246,-1.96239,0.613767,2.69168, +-0.488115,0.873811,-0.840364,-1.96249,0.613871,2.69159, +-0.488233,0.873714,-0.840481,-1.96258,0.613973,2.69149, +-0.488353,0.873616,-0.840597,-1.96268,0.614072,2.69139, +-0.488473,0.873517,-0.840713,-1.96278,0.614168,2.69129, +-0.488594,0.873416,-0.840827,-1.96288,0.614261,2.69119, +-0.488716,0.873314,-0.84094,-1.96298,0.614351,2.69109, +-0.488839,0.87321,-0.841051,-1.96309,0.614438,2.69099, +-0.488963,0.873106,-0.841161,-1.96319,0.614521,2.69088, +-0.489086,0.873,-0.84127,-1.9633,0.6146,2.69078, +-0.489211,0.872894,-0.841379,-1.9634,0.614677,2.69067, +-0.489335,0.872788,-0.841487,-1.96351,0.614751,2.69057, +-0.48946,0.87268,-0.841593,-1.96362,0.614822,2.69046, +-0.489586,0.872571,-0.841699,-1.96373,0.614891,2.69035, +-0.489712,0.87246,-0.841802,-1.96384,0.614958,2.69024, +-0.48984,0.872349,-0.841905,-1.96395,0.615023,2.69013, +-0.489968,0.872237,-0.842006,-1.96406,0.615087,2.69001, +-0.490096,0.872124,-0.842107,-1.96417,0.615149,2.6899, +-0.490224,0.872011,-0.842207,-1.96429,0.61521,2.68979, +-0.490353,0.871897,-0.842306,-1.9644,0.615269,2.68968, +-0.490482,0.871783,-0.842405,-1.96451,0.615327,2.68956, +-0.490611,0.871667,-0.842502,-1.96463,0.615384,2.68945, +-0.490742,0.87155,-0.842597,-1.96475,0.615441,2.68933, +-0.490873,0.871433,-0.842692,-1.96486,0.615496,2.68921, +-0.491005,0.871314,-0.842785,-1.96498,0.615551,2.68909, +-0.491136,0.871196,-0.842877,-1.9651,0.615606,2.68897, +-0.491268,0.871077,-0.842969,-1.96522,0.615661,2.68885, +-0.4914,0.870957,-0.84306,-1.96534,0.615715,2.68873, +-0.491532,0.870837,-0.84315,-1.96546,0.615769,2.68861, +-0.491665,0.870715,-0.843239,-1.96558,0.615823,2.68849, +-0.491799,0.870593,-0.843327,-1.9657,0.615875,2.68837, +-0.491934,0.87047,-0.843413,-1.96583,0.615926,2.68825, +-0.492068,0.870346,-0.843498,-1.96595,0.615976,2.68812, +-0.492203,0.870222,-0.843583,-1.96608,0.616026,2.688, +-0.492338,0.870098,-0.843667,-1.9662,0.616075,2.68788, +-0.492473,0.869973,-0.84375,-1.96632,0.616123,2.68775, +-0.492609,0.869847,-0.843832,-1.96645,0.61617,2.68763, +-0.492745,0.869721,-0.843913,-1.96658,0.616216,2.6875, +-0.492882,0.869594,-0.843993,-1.9667,0.616261,2.68737, +-0.493019,0.869466,-0.844072,-1.96683,0.616305,2.68724, +-0.493157,0.869337,-0.844149,-1.96696,0.616348,2.68711, +-0.493295,0.869208,-0.844226,-1.96709,0.61639,2.68699, +-0.493433,0.869078,-0.844302,-1.96722,0.616432,2.68686, +-0.493571,0.868949,-0.844378,-1.96735,0.616474,2.68673, +-0.493709,0.868818,-0.844453,-1.96748,0.616515,2.6866, +-0.493848,0.868687,-0.844526,-1.96761,0.616555,2.68647, +-0.493988,0.868555,-0.844598,-1.96774,0.616593,2.68633, +-0.494128,0.868422,-0.844669,-1.96787,0.616631,2.6862, +-0.494268,0.868289,-0.844739,-1.96801,0.616667,2.68607, +-0.494409,0.868155,-0.844808,-1.96814,0.616703,2.68593, +-0.49455,0.868021,-0.844877,-1.96828,0.616738,2.6858, +-0.49469,0.867887,-0.844945,-1.96841,0.616772,2.68567, +-0.494831,0.867753,-0.845012,-1.96854,0.616805,2.68553, +-0.494973,0.867618,-0.845078,-1.96868,0.616838,2.6854, +-0.495115,0.867481,-0.845142,-1.96882,0.616868,2.68526, +-0.495258,0.867344,-0.845205,-1.96895,0.616898,2.68512, +-0.495401,0.867207,-0.845268,-1.96909,0.616927,2.68499, +-0.495544,0.867069,-0.845329,-1.96923,0.616955,2.68485, +-0.495686,0.866931,-0.84539,-1.96937,0.616982,2.68471, +-0.495829,0.866793,-0.84545,-1.9695,0.617009,2.68457, +-0.495972,0.866655,-0.84551,-1.96964,0.617035,2.68443, +-0.496115,0.866516,-0.845568,-1.96978,0.61706,2.68429, +-0.496259,0.866376,-0.845624,-1.96992,0.617083,2.68415, +-0.496404,0.866235,-0.84568,-1.97006,0.617105,2.68401, +-0.496548,0.866094,-0.845734,-1.9702,0.617126,2.68387, +-0.496693,0.865953,-0.845788,-1.97034,0.617147,2.68373, +-0.496838,0.865811,-0.845841,-1.97049,0.617167,2.68359, +-0.496983,0.86567,-0.845894,-1.97063,0.617186,2.68345, +-0.497128,0.865528,-0.845945,-1.97077,0.617204,2.68331, +-0.497273,0.865385,-0.845996,-1.97091,0.617221,2.68316, +-0.497419,0.865242,-0.846044,-1.97106,0.617237,2.68302, +-0.497565,0.865098,-0.846092,-1.9712,0.617252,2.68288, +-0.49771,0.864954,-0.846139,-1.97134,0.617265,2.68273, +-0.497856,0.86481,-0.846184,-1.97149,0.617278,2.68259, +-0.498001,0.864667,-0.84623,-1.97163,0.61729,2.68245, +-0.498147,0.864523,-0.846274,-1.97177,0.617302,2.6823, +-0.498293,0.864378,-0.846318,-1.97192,0.617312,2.68216, +-0.498439,0.864234,-0.84636,-1.97206,0.617322,2.68201, +-0.498586,0.864088,-0.846401,-1.97221,0.61733,2.68187, +-0.498732,0.863942,-0.84644,-1.97236,0.617337,2.68172, +-0.498879,0.863795,-0.846479,-1.9725,0.617343,2.68157, +-0.499025,0.863649,-0.846517,-1.97265,0.617348,2.68143, +-0.499171,0.863503,-0.846554,-1.97279,0.617352,2.68128, +-0.499317,0.863356,-0.846591,-1.97294,0.617356,2.68113, +-0.499464,0.86321,-0.846626,-1.97309,0.617359,2.68099, +-0.499611,0.863063,-0.84666,-1.97323,0.617361,2.68084, +-0.499757,0.862915,-0.846693,-1.97338,0.617362,2.68069, +-0.499903,0.862767,-0.846724,-1.97353,0.617361,2.68055, +-0.500049,0.862619,-0.846753,-1.97368,0.61736,2.6804, +-0.500194,0.86247,-0.84678,-1.97383,0.617357,2.68025, +-0.500338,0.862322,-0.846804,-1.97398,0.617355,2.6801, +-0.500482,0.862175,-0.846826,-1.97412,0.617351,2.67995, +-0.500625,0.862028,-0.846846,-1.97427,0.617347,2.67981, +-0.500767,0.861881,-0.846864,-1.97442,0.617342,2.67966, +-0.50091,0.861735,-0.846881,-1.97456,0.617335,2.67951, +-0.501053,0.861589,-0.846897,-1.97471,0.617327,2.67937, +-0.501196,0.861443,-0.846911,-1.97485,0.617318,2.67922, +-0.50134,0.861297,-0.846925,-1.975,0.617308,2.67907, +-0.501483,0.861151,-0.846938,-1.97515,0.617297,2.67893, +-0.501627,0.861005,-0.846951,-1.97529,0.617285,2.67878, +-0.501771,0.860858,-0.846964,-1.97544,0.617272,2.67864, +-0.501915,0.860711,-0.846977,-1.97559,0.617258,2.67849, +-0.50206,0.860562,-0.846991,-1.97573,0.617242,2.67834, +-0.502204,0.860414,-0.847005,-1.97588,0.617225,2.67819, +-0.502348,0.860265,-0.84702,-1.97603,0.617206,2.67804, +-0.502492,0.860116,-0.847035,-1.97618,0.617187,2.67789, +-0.502636,0.859968,-0.84705,-1.97633,0.617166,2.67775, +-0.502779,0.859819,-0.847065,-1.97648,0.617145,2.6776, +-0.502923,0.85967,-0.847079,-1.97663,0.617122,2.67745, +-0.503067,0.859521,-0.847093,-1.97678,0.617098,2.6773, +-0.503211,0.859371,-0.847105,-1.97693,0.617072,2.67715, +-0.503354,0.859221,-0.847116,-1.97708,0.617044,2.677, +-0.503498,0.85907,-0.847126,-1.97723,0.617015,2.67685, +-0.503641,0.85892,-0.847135,-1.97738,0.616985,2.6767, +-0.503785,0.85877,-0.847142,-1.97753,0.616953,2.67655, +-0.503928,0.858621,-0.847149,-1.97768,0.616921,2.6764, +-0.50407,0.858471,-0.847154,-1.97783,0.616887,2.67625, +-0.504212,0.858321,-0.847157,-1.97798,0.616852,2.6761, +-0.504354,0.85817,-0.847159,-1.97813,0.616814,2.67595, +-0.504496,0.85802,-0.847159,-1.97828,0.616775,2.6758, +-0.504638,0.857869,-0.847159,-1.97843,0.616734,2.67565, +-0.50478,0.857719,-0.847158,-1.97858,0.616692,2.6755, +-0.504922,0.857569,-0.847156,-1.97873,0.616649,2.67535, +-0.505063,0.85742,-0.847154,-1.97888,0.616604,2.6752, +-0.505204,0.857271,-0.84715,-1.97903,0.616558,2.67505, +-0.505344,0.857121,-0.847146,-1.97918,0.61651,2.6749, +-0.505484,0.856971,-0.84714,-1.97933,0.61646,2.67475, +-0.505624,0.856821,-0.847132,-1.97948,0.616408,2.6746, +-0.505763,0.856671,-0.847124,-1.97963,0.616354,2.67445, +-0.505903,0.856522,-0.847114,-1.97978,0.616299,2.6743, +-0.506042,0.856373,-0.847103,-1.97992,0.616243,2.67415, +-0.506181,0.856224,-0.847092,-1.98007,0.616185,2.674, +-0.506319,0.856076,-0.847079,-1.98022,0.616126,2.67385, +-0.506456,0.855928,-0.847065,-1.98037,0.616064,2.67371, +-0.506593,0.855779,-0.847049,-1.98052,0.616,2.67356, +-0.506729,0.855631,-0.847032,-1.98067,0.615935,2.67341, +-0.506865,0.855483,-0.847013,-1.98081,0.615867,2.67326, +-0.507001,0.855336,-0.846992,-1.98096,0.615798,2.67311, +-0.507137,0.855189,-0.846971,-1.98111,0.615727,2.67297, +-0.507273,0.855043,-0.846949,-1.98125,0.615655,2.67282, +-0.507407,0.854897,-0.846925,-1.9814,0.615581,2.67267, +-0.507541,0.854751,-0.8469,-1.98155,0.615505,2.67253, +-0.507673,0.854605,-0.846872,-1.98169,0.615427,2.67238, +-0.507805,0.854459,-0.846843,-1.98184,0.615346,2.67224, +-0.507937,0.854314,-0.846812,-1.98198,0.615264,2.67209, +-0.508069,0.854169,-0.84678,-1.98213,0.615179,2.67195, +-0.5082,0.854025,-0.846746,-1.98227,0.615093,2.6718, +-0.50833,0.853882,-0.846712,-1.98241,0.615006,2.67166, +-0.50846,0.853741,-0.846675,-1.98256,0.614916,2.67152, +-0.508589,0.853602,-0.846637,-1.9827,0.614824,2.67138, +-0.508716,0.853464,-0.846596,-1.98283,0.61473,2.67124, +-0.508842,0.853327,-0.846554,-1.98297,0.614635,2.67111, +-0.508966,0.853192,-0.84651,-1.9831,0.614537,2.67097, +-0.509089,0.853058,-0.846464,-1.98324,0.614439,2.67084, +-0.509209,0.852924,-0.846418,-1.98337,0.614339,2.6707, +-0.509328,0.852792,-0.846369,-1.98351,0.614238,2.67057, +-0.509445,0.85266,-0.84632,-1.98364,0.614136,2.67044, +-0.509559,0.85253,-0.846268,-1.98377,0.614032,2.67031, +-0.509673,0.852402,-0.846214,-1.98389,0.613926,2.67018, +-0.509784,0.852276,-0.846158,-1.98402,0.613819,2.67005, +-0.509895,0.85215,-0.846101,-1.98415,0.61371,2.66993, +-0.510004,0.852026,-0.846042,-1.98427,0.613601,2.6698, +-0.510113,0.851902,-0.845982,-1.9844,0.613492,2.66968, +-0.510221,0.851779,-0.84592,-1.98452,0.613381,2.66956, +-0.510327,0.851658,-0.845857,-1.98464,0.613269,2.66944, +-0.510432,0.851538,-0.845792,-1.98476,0.613156,2.66932, +-0.510536,0.85142,-0.845725,-1.98488,0.613042,2.6692, +-0.510638,0.851303,-0.845656,-1.985,0.612927,2.66908, +-0.510739,0.851187,-0.845585,-1.98511,0.612811,2.66896, +-0.510839,0.851072,-0.845513,-1.98523,0.612694,2.66885, +-0.510938,0.850957,-0.84544,-1.98534,0.612577,2.66874, +-0.511036,0.850844,-0.845366,-1.98545,0.61246,2.66862, +-0.511133,0.850731,-0.84529,-1.98557,0.612341,2.66851, +-0.511228,0.85062,-0.845212,-1.98568,0.612222,2.6684, +-0.511322,0.85051,-0.845133,-1.98579,0.612102,2.66829, +-0.511415,0.850402,-0.845051,-1.9859,0.61198,2.66818, +-0.511506,0.850295,-0.844969,-1.986,0.611858,2.66807, +-0.511597,0.850189,-0.844885,-1.98611,0.611736,2.66797, +-0.511686,0.850083,-0.8448,-1.98621,0.611614,2.66786, +-0.511775,0.849979,-0.844714,-1.98632,0.611491,2.66776, +-0.511863,0.849876,-0.844627,-1.98642,0.611368,2.66765, +-0.511949,0.849774,-0.844538,-1.98652,0.611243,2.66755, +-0.512034,0.849673,-0.844447,-1.98662,0.611118,2.66745, +-0.512117,0.849574,-0.844355,-1.98672,0.610992,2.66735, +-0.5122,0.849476,-0.844262,-1.98682,0.610866,2.66725, +-0.512281,0.849379,-0.844168,-1.98692,0.610739,2.66716, +-0.512362,0.849282,-0.844073,-1.98702,0.610612,2.66706, +-0.512442,0.849186,-0.843977,-1.98711,0.610486,2.66696, +-0.512521,0.849091,-0.84388,-1.98721,0.610358,2.66687, +-0.512598,0.848997,-0.843782,-1.9873,0.61023,2.66678, +-0.512674,0.848905,-0.843682,-1.98739,0.610101,2.66668, +-0.512749,0.848814,-0.843581,-1.98748,0.609971,2.66659, +-0.512822,0.848724,-0.843479,-1.98757,0.609841,2.6665, +-0.512895,0.848635,-0.843376,-1.98766,0.609711,2.66641, +-0.512967,0.848547,-0.843272,-1.98775,0.60958,2.66633, +-0.513039,0.848459,-0.843168,-1.98784,0.60945,2.66624, +-0.513109,0.848372,-0.843063,-1.98793,0.609319,2.66615, +-0.513178,0.848287,-0.842956,-1.98801,0.609187,2.66607, +-0.513245,0.848203,-0.842849,-1.98809,0.609054,2.66598, +-0.513311,0.84812,-0.84274,-1.98818,0.608921,2.6659, +-0.513377,0.848038,-0.84263,-1.98826,0.608788,2.66582, +-0.513441,0.847957,-0.84252,-1.98834,0.608654,2.66573, +-0.513505,0.847876,-0.842409,-1.98842,0.60852,2.66565, +-0.513568,0.847796,-0.842297,-1.9885,0.608387,2.66557, +-0.513629,0.847718,-0.842185,-1.98858,0.608252,2.6655, +-0.51369,0.84764,-0.842071,-1.98866,0.608117,2.66542, +-0.513749,0.847564,-0.841957,-1.98873,0.607982,2.66534, +-0.513807,0.847489,-0.841841,-1.98881,0.607845,2.66527, +-0.513864,0.847415,-0.841724,-1.98888,0.607709,2.66519, +-0.51392,0.847341,-0.841607,-1.98896,0.607572,2.66512, +-0.513976,0.847268,-0.84149,-1.98903,0.607435,2.66505, +-0.514031,0.847196,-0.841372,-1.9891,0.607298,2.66497, +-0.514085,0.847125,-0.841253,-1.98917,0.607161,2.6649, +-0.514137,0.847055,-0.841133,-1.98924,0.607023,2.66483, +-0.514188,0.846986,-0.841012,-1.98931,0.606885,2.66476, +-0.514238,0.846919,-0.840889,-1.98938,0.606745,2.6647, +-0.514287,0.846853,-0.840766,-1.98944,0.606606,2.66463, +-0.514335,0.846787,-0.840642,-1.98951,0.606466,2.66457, +-0.514383,0.846722,-0.840517,-1.98958,0.606326,2.6645, +-0.514429,0.846657,-0.840392,-1.98964,0.606187,2.66444, +-0.514475,0.846594,-0.840266,-1.9897,0.606047,2.66437, +-0.514519,0.846532,-0.840139,-1.98977,0.605906,2.66431, +-0.514562,0.846471,-0.840011,-1.98983,0.605764,2.66425, +-0.514604,0.846412,-0.839882,-1.98989,0.605622,2.66419, +-0.514645,0.846353,-0.839753,-1.98994,0.60548,2.66413, +-0.514685,0.846295,-0.839624,-1.99,0.605338,2.66407, +-0.514725,0.846238,-0.839495,-1.99006,0.605196,2.66402, +-0.514763,0.846181,-0.839366,-1.99012,0.605053,2.66396, +-0.514801,0.846125,-0.839237,-1.99017,0.604911,2.6639, +-0.514838,0.846071,-0.839107,-1.99023,0.604768,2.66385, +-0.514873,0.846017,-0.838976,-1.99028,0.604625,2.6638, +-0.514906,0.845966,-0.838845,-1.99033,0.604482,2.66374, +-0.514939,0.845915,-0.838712,-1.99038,0.604339,2.66369, +-0.514971,0.845865,-0.838579,-1.99043,0.604196,2.66364, +-0.515003,0.845815,-0.838446,-1.99048,0.604053,2.66359, +-0.515033,0.845767,-0.838312,-1.99053,0.60391,2.66354, +-0.515063,0.845719,-0.838177,-1.99058,0.603767,2.6635, +-0.515091,0.845673,-0.838041,-1.99062,0.603622,2.66345, +-0.515118,0.845628,-0.837904,-1.99067,0.603478,2.66341, +-0.515144,0.845584,-0.837767,-1.99071,0.603333,2.66336, +-0.515168,0.845541,-0.837628,-1.99076,0.603187,2.66332, +-0.515192,0.845499,-0.83749,-1.9908,0.603042,2.66328, +-0.515216,0.845457,-0.837351,-1.99084,0.602896,2.66324, +-0.515238,0.845417,-0.837212,-1.99088,0.602751,2.6632, +-0.51526,0.845377,-0.837072,-1.99092,0.602605,2.66316, +-0.515281,0.845338,-0.836931,-1.99096,0.602459,2.66312, +-0.5153,0.845301,-0.836789,-1.991,0.602313,2.66308, +-0.515317,0.845265,-0.836647,-1.99103,0.602166,2.66304, +-0.515334,0.84523,-0.836504,-1.99107,0.60202,2.66301, +-0.51535,0.845195,-0.836361,-1.9911,0.601873,2.66297, +-0.515366,0.845162,-0.836218,-1.99114,0.601727,2.66294, +-0.51538,0.845129,-0.836075,-1.99117,0.601581,2.66291, +-0.515394,0.845097,-0.835931,-1.9912,0.601434,2.66288, +-0.515407,0.845066,-0.835787,-1.99123,0.601287,2.66284, +-0.515418,0.845037,-0.835642,-1.99126,0.601141,2.66282, +-0.515427,0.845009,-0.835496,-1.99129,0.600994,2.66279, +-0.515436,0.844982,-0.83535,-1.99131,0.600848,2.66276, +-0.515444,0.844956,-0.835204,-1.99134,0.600701,2.66273, +-0.515452,0.84493,-0.835057,-1.99137,0.600555,2.66271, +-0.515459,0.844906,-0.834911,-1.99139,0.600408,2.66268, +-0.515465,0.844882,-0.834765,-1.99142,0.600262,2.66266, +-0.51547,0.844859,-0.834618,-1.99144,0.600116,2.66264, +-0.515473,0.844838,-0.83447,-1.99146,0.59997,2.66262, +-0.515475,0.844818,-0.834321,-1.99148,0.599824,2.6626, +-0.515476,0.844799,-0.834173,-1.9915,0.599679,2.66258, +-0.515477,0.844781,-0.834024,-1.99152,0.599533,2.66256, +-0.515477,0.844764,-0.833876,-1.99153,0.599387,2.66254, +-0.515476,0.844747,-0.833728,-1.99155,0.599242,2.66253, +-0.515475,0.844731,-0.833579,-1.99157,0.599097,2.66251, +-0.515472,0.844717,-0.83343,-1.99158,0.598952,2.6625, +-0.515468,0.844704,-0.83328,-1.99159,0.598807,2.66248, +-0.515462,0.844692,-0.83313,-1.9916,0.598663,2.66247, +-0.515456,0.844681,-0.83298,-1.99162,0.598518,2.66246, +-0.515448,0.844671,-0.83283,-1.99163,0.598373,2.66245, +-0.51544,0.844662,-0.83268,-1.99163,0.598229,2.66244, +-0.515432,0.844653,-0.83253,-1.99164,0.598085,2.66243, +-0.515422,0.844646,-0.83238,-1.99165,0.597941,2.66242, +-0.515411,0.844639,-0.83223,-1.99166,0.597798,2.66242, +-0.515398,0.844634,-0.832079,-1.99166,0.597656,2.66241, +-0.515384,0.84463,-0.831928,-1.99167,0.597513,2.66241, +-0.515368,0.844628,-0.831777,-1.99167,0.597371,2.66241, +-0.515352,0.844625,-0.831626,-1.99167,0.597228,2.6624, +-0.515335,0.844624,-0.831475,-1.99167,0.597086,2.6624, +-0.515316,0.844623,-0.831324,-1.99167,0.596944,2.6624, +-0.515297,0.844623,-0.831174,-1.99167,0.596803,2.6624, +-0.515276,0.844624,-0.831023,-1.99167,0.596662,2.6624, +-0.515253,0.844627,-0.830872,-1.99167,0.596522,2.66241, +-0.515229,0.844631,-0.83072,-1.99167,0.596382,2.66241, +-0.515203,0.844636,-0.830568,-1.99166,0.596242,2.66241, +-0.515176,0.844642,-0.830417,-1.99166,0.596102,2.66242, +-0.515148,0.844648,-0.830266,-1.99165,0.595962,2.66243, +-0.515119,0.844655,-0.830115,-1.99164,0.595822,2.66243, +-0.515089,0.844663,-0.829964,-1.99163,0.595683,2.66244, +-0.515057,0.844672,-0.829813,-1.99162,0.595544,2.66245, +-0.515023,0.844683,-0.829662,-1.99161,0.595407,2.66246, +-0.514987,0.844696,-0.829511,-1.9916,0.59527,2.66247, +-0.51495,0.844709,-0.829359,-1.99159,0.595133,2.66249, +-0.514911,0.844724,-0.829208,-1.99157,0.594997,2.6625, +-0.514872,0.84474,-0.829057,-1.99156,0.59486,2.66252, +-0.514831,0.844756,-0.828907,-1.99154,0.594724,2.66253, +-0.514788,0.844774,-0.828757,-1.99152,0.594588,2.66255, +-0.514744,0.844793,-0.828607,-1.9915,0.594453,2.66257, +-0.514698,0.844814,-0.828456,-1.99148,0.594318,2.66259, +-0.51465,0.844837,-0.828305,-1.99146,0.594185,2.66262, +-0.5146,0.844861,-0.828155,-1.99144,0.594052,2.66264, +-0.514549,0.844887,-0.828004,-1.99141,0.593919,2.66266, +-0.514497,0.844913,-0.827855,-1.99138,0.593787,2.66269, +-0.514443,0.84494,-0.827706,-1.99136,0.593655,2.66272, +-0.514388,0.844969,-0.827557,-1.99133,0.593523,2.66275, +-0.51433,0.845,-0.827407,-1.9913,0.593392,2.66278, +-0.514271,0.845032,-0.827258,-1.99126,0.593262,2.66281, +-0.51421,0.845067,-0.827109,-1.99123,0.593133,2.66284, +-0.514147,0.845103,-0.82696,-1.99119,0.593004,2.66288, +-0.514082,0.84514,-0.826811,-1.99116,0.592876,2.66292, +-0.514016,0.845178,-0.826663,-1.99112,0.592748,2.66296, +-0.513948,0.845218,-0.826516,-1.99108,0.59262,2.663, +-0.513879,0.845259,-0.826369,-1.99104,0.592493,2.66304, +-0.513808,0.845302,-0.826221,-1.991,0.592367,2.66308, +-0.513734,0.845347,-0.826074,-1.99095,0.592242,2.66313, +-0.513659,0.845395,-0.825927,-1.9909,0.592118,2.66317, +-0.513581,0.845444,-0.82578,-1.99085,0.591995,2.66322, +-0.513502,0.845494,-0.825634,-1.9908,0.591872,2.66327, +-0.513422,0.845546,-0.825488,-1.99075,0.591749,2.66332, +-0.51334,0.845599,-0.825343,-1.9907,0.591626,2.66338, +-0.513256,0.845654,-0.825199,-1.99064,0.591504,2.66343, +-0.513169,0.845711,-0.825054,-1.99059,0.591383,2.66349, +-0.513081,0.84577,-0.82491,-1.99053,0.591264,2.66355, +-0.512991,0.845832,-0.824765,-1.99047,0.591145,2.66361, +-0.512898,0.845895,-0.824622,-1.9904,0.591028,2.66367, +-0.512805,0.845959,-0.824479,-1.99034,0.590912,2.66374, +-0.51271,0.846025,-0.824337,-1.99027,0.590797,2.6638, +-0.512613,0.846093,-0.824195,-1.9902,0.590683,2.66387, +-0.512515,0.846162,-0.824055,-1.99014,0.59057,2.66394, +-0.512414,0.846233,-0.823914,-1.99006,0.590459,2.66401, +-0.512312,0.846307,-0.823774,-1.98999,0.590349,2.66408, +-0.512208,0.846382,-0.823634,-1.98992,0.590241,2.66416, +-0.512104,0.846459,-0.823495,-1.98984,0.590134,2.66424, +-0.511998,0.846537,-0.823357,-1.98976,0.590029,2.66432, +-0.511891,0.846617,-0.82322,-1.98968,0.589924,2.6644, +-0.511783,0.846698,-0.823085,-1.9896,0.589821,2.66448, +-0.511674,0.84678,-0.82295,-1.98952,0.589719,2.66456, +-0.511564,0.846865,-0.822815,-1.98943,0.589619,2.66464, +-0.511452,0.846951,-0.822681,-1.98935,0.58952,2.66473, +-0.511339,0.847039,-0.822548,-1.98926,0.589423,2.66482, +-0.511225,0.847128,-0.822415,-1.98917,0.589327,2.66491, +-0.51111,0.847219,-0.822284,-1.98908,0.589231,2.665, +-0.510995,0.84731,-0.822155,-1.98899,0.589137,2.66509, +-0.510879,0.847403,-0.822026,-1.98889,0.589044,2.66518, +-0.510763,0.847497,-0.821899,-1.9888,0.588952,2.66528, +-0.510645,0.847593,-0.821772,-1.9887,0.588861,2.66537, +-0.510526,0.84769,-0.821646,-1.98861,0.588772,2.66547, +-0.510406,0.847789,-0.821521,-1.98851,0.588684,2.66557, +-0.510285,0.847889,-0.821397,-1.98841,0.588598,2.66567, +-0.510164,0.84799,-0.821274,-1.98831,0.588512,2.66577, +-0.510043,0.848091,-0.821153,-1.98821,0.588427,2.66587, +-0.509922,0.848194,-0.821033,-1.9881,0.588344,2.66597, +-0.509799,0.848297,-0.820914,-1.988,0.588261,2.66608, +-0.509676,0.848402,-0.820796,-1.9879,0.58818,2.66618, +-0.509552,0.848509,-0.820679,-1.98779,0.5881,2.66629, +-0.509427,0.848616,-0.820562,-1.98768,0.588022,2.66639, +-0.509301,0.848725,-0.820447,-1.98757,0.587945,2.6665, +-0.509176,0.848834,-0.820333,-1.98746,0.587869,2.66661, +-0.50905,0.848943,-0.820221,-1.98735,0.587794,2.66672, +-0.508924,0.849053,-0.82011,-1.98724,0.587719,2.66683, +-0.508797,0.849164,-0.820001,-1.98713,0.587645,2.66694, +-0.508669,0.849277,-0.819892,-1.98702,0.587573,2.66705, +-0.508541,0.84939,-0.819784,-1.98691,0.587503,2.66717, +-0.508412,0.849505,-0.819677,-1.98679,0.587434,2.66728, +-0.508282,0.84962,-0.81957,-1.98668,0.587366,2.6674, +-0.508153,0.849736,-0.819466,-1.98656,0.587298,2.66751, +-0.508023,0.849853,-0.819363,-1.98644,0.587232,2.66763, +-0.507893,0.849971,-0.819262,-1.98633,0.587166,2.66775, +-0.507763,0.850089,-0.819163,-1.98621,0.587102,2.66787, +-0.507632,0.850208,-0.819066,-1.98609,0.587039,2.66799, +-0.5075,0.850329,-0.818972,-1.98597,0.586977,2.66811, +-0.507367,0.85045,-0.818881,-1.98585,0.586917,2.66823, +-0.507234,0.850571,-0.818793,-1.98573,0.586857,2.66835, +-0.507101,0.850692,-0.818708,-1.98561,0.586799,2.66847, +-0.506968,0.850813,-0.818627,-1.98548,0.586741,2.66859, +-0.506834,0.850934,-0.818548,-1.98536,0.586684,2.66871, +-0.506701,0.851055,-0.818471,-1.98524,0.586628,2.66883, +-0.506566,0.851178,-0.818397,-1.98512,0.586574,2.66896, +-0.506432,0.851301,-0.818324,-1.985,0.58652,2.66908, +-0.506296,0.851425,-0.818253,-1.98487,0.586469,2.6692, +-0.506161,0.85155,-0.818184,-1.98475,0.586418,2.66933, +-0.506026,0.851675,-0.818116,-1.98462,0.586368,2.66945, +-0.50589,0.851801,-0.818049,-1.9845,0.586319,2.66958, +-0.505755,0.851928,-0.817983,-1.98437,0.58627,2.66971, +-0.505619,0.852055,-0.817918,-1.98424,0.586223,2.66983, +-0.505482,0.852184,-0.817853,-1.98411,0.586177,2.66996, +-0.505344,0.852313,-0.817789,-1.98398,0.586132,2.67009, +-0.505206,0.852444,-0.817726,-1.98385,0.586089,2.67022, +-0.505068,0.852574,-0.817662,-1.98372,0.586046,2.67035, +-0.504929,0.852705,-0.817598,-1.98359,0.586005,2.67048, +-0.50479,0.852837,-0.817535,-1.98346,0.585964,2.67061, +-0.504651,0.852969,-0.817471,-1.98333,0.585923,2.67075, +-0.504512,0.853101,-0.817408,-1.9832,0.585884,2.67088, +-0.504372,0.853235,-0.817346,-1.98306,0.585846,2.67101, +-0.504232,0.853369,-0.817285,-1.98293,0.585809,2.67115, +-0.50409,0.853504,-0.817225,-1.98279,0.585774,2.67128, +-0.503949,0.85364,-0.817165,-1.98266,0.58574,2.67142, +-0.503807,0.853775,-0.817106,-1.98252,0.585706,2.67155, +-0.503666,0.853911,-0.817046,-1.98239,0.585673,2.67169, +-0.503524,0.854048,-0.816988,-1.98225,0.585641,2.67183, +-0.503382,0.854185,-0.81693,-1.98211,0.58561,2.67196, +-0.503239,0.854322,-0.816872,-1.98197,0.58558,2.6721, +-0.503096,0.854461,-0.816816,-1.98184,0.585551,2.67224, +-0.502952,0.8546,-0.816761,-1.9817,0.585524,2.67238, +-0.502808,0.85474,-0.816707,-1.98156,0.585497,2.67252, +-0.502663,0.85488,-0.816653,-1.98142,0.585472,2.67266, +-0.502519,0.85502,-0.8166,-1.98128,0.585447,2.6728, +-0.502375,0.85516,-0.816547,-1.98114,0.585423,2.67294, +-0.502231,0.8553,-0.816495,-1.981,0.585399,2.67308, +-0.502086,0.855442,-0.816444,-1.98086,0.585377,2.67322, +-0.50194,0.855584,-0.816394,-1.98071,0.585357,2.67336, +-0.501794,0.855726,-0.816346,-1.98057,0.585338,2.6735, +-0.501647,0.85587,-0.816298,-1.98043,0.585319,2.67365, +-0.501501,0.856013,-0.816251,-1.98028,0.585302,2.67379, +-0.501355,0.856156,-0.816204,-1.98014,0.585285,2.67393, +-0.501209,0.856299,-0.816158,-1.98,0.585268,2.67408, +-0.501062,0.856443,-0.816112,-1.97985,0.585253,2.67422, +-0.500916,0.856587,-0.816068,-1.97971,0.585239,2.67437, +-0.500769,0.856733,-0.816025,-1.97956,0.585226,2.67451, +-0.500622,0.856878,-0.815983,-1.97942,0.585215,2.67466, +-0.500474,0.857024,-0.815942,-1.97927,0.585205,2.6748, +-0.500328,0.85717,-0.815902,-1.97913,0.585195,2.67495, +-0.500181,0.857316,-0.815862,-1.97898,0.585186,2.67509, +-0.500034,0.857462,-0.815823,-1.97884,0.585178,2.67524, +-0.499887,0.857608,-0.815785,-1.97869,0.58517,2.67539, +-0.49974,0.857755,-0.815748,-1.97854,0.585164,2.67553, +-0.499593,0.857902,-0.815713,-1.9784,0.585159,2.67568, +-0.499445,0.85805,-0.815679,-1.97825,0.585156,2.67583, +-0.499298,0.858198,-0.815645,-1.9781,0.585153,2.67598, +-0.499151,0.858346,-0.815613,-1.97795,0.585151,2.67612, +-0.499004,0.858494,-0.815581,-1.9778,0.58515,2.67627, +-0.498858,0.858641,-0.815549,-1.97766,0.585149,2.67642, +-0.498711,0.858789,-0.815519,-1.97751,0.585149,2.67657, +-0.498564,0.858937,-0.81549,-1.97736,0.58515,2.67672, +-0.498417,0.859085,-0.815462,-1.97721,0.585153,2.67686, +-0.498272,0.859232,-0.815436,-1.97707,0.585157,2.67701, +-0.498127,0.859378,-0.815411,-1.97692,0.585162,2.67716, +-0.497983,0.859523,-0.815388,-1.97677,0.585167,2.6773, +-0.497841,0.859667,-0.815365,-1.97663,0.585173,2.67745, +-0.4977,0.85981,-0.815344,-1.97649,0.585179,2.67759, +-0.49756,0.859952,-0.815325,-1.97634,0.585186,2.67773, +-0.497421,0.860094,-0.815306,-1.9762,0.585194,2.67787, +-0.497283,0.860235,-0.815289,-1.97606,0.585204,2.67801, +-0.497145,0.860376,-0.815272,-1.97592,0.585215,2.67816, +-0.497007,0.860518,-0.815256,-1.97578,0.585228,2.6783, +-0.49687,0.86066,-0.815239,-1.97564,0.585242,2.67844, +-0.496732,0.860802,-0.815223,-1.9755,0.585256,2.67858, +-0.496594,0.860945,-0.815207,-1.97535,0.585272,2.67872, +-0.496455,0.861088,-0.815192,-1.97521,0.585289,2.67887, +-0.496316,0.861232,-0.815177,-1.97506,0.585308,2.67901, +-0.496176,0.861377,-0.815164,-1.97492,0.585328,2.67916, +-0.496036,0.861523,-0.815151,-1.97477,0.58535,2.6793, +-0.495896,0.86167,-0.81514,-1.97463,0.585374,2.67945, +-0.495756,0.861816,-0.81513,-1.97448,0.585398,2.67959, +-0.495616,0.861962,-0.815121,-1.97433,0.585423,2.67974, +-0.495475,0.862109,-0.815113,-1.97419,0.58545,2.67989, +-0.495334,0.862256,-0.815107,-1.97404,0.585477,2.68003, +-0.495193,0.862404,-0.815101,-1.97389,0.585507,2.68018, +-0.495052,0.862553,-0.815098,-1.97374,0.585538,2.68033, +-0.49491,0.862702,-0.815095,-1.9736,0.58557,2.68048, +-0.494769,0.862851,-0.815093,-1.97345,0.585604,2.68063, +-0.494628,0.863,-0.815092,-1.9733,0.58564,2.68078, +-0.494486,0.863149,-0.815091,-1.97315,0.585676,2.68093, +-0.494345,0.863298,-0.815091,-1.973,0.585714,2.68108, +-0.494204,0.863447,-0.815092,-1.97285,0.585753,2.68122, +-0.494063,0.863597,-0.815093,-1.9727,0.585794,2.68137, +-0.493922,0.863747,-0.815097,-1.97255,0.585837,2.68152, +-0.493781,0.863898,-0.815101,-1.9724,0.585882,2.68168, +-0.493641,0.864048,-0.815107,-1.97225,0.585928,2.68183, +-0.4935,0.864199,-0.815113,-1.9721,0.585976,2.68198, +-0.493359,0.864348,-0.81512,-1.97195,0.586025,2.68213, +-0.493218,0.864498,-0.815128,-1.9718,0.586076,2.68228, +-0.493079,0.864648,-0.815137,-1.97165,0.586128,2.68243, +-0.492939,0.864798,-0.815148,-1.9715,0.586182,2.68258, +-0.4928,0.864948,-0.81516,-1.97135,0.586238,2.68273, +-0.492661,0.865098,-0.815173,-1.9712,0.586296,2.68288, +-0.492522,0.865248,-0.815188,-1.97105,0.586355,2.68303, +-0.492383,0.865398,-0.815204,-1.9709,0.586417,2.68318, +-0.492245,0.865547,-0.815221,-1.97075,0.58648,2.68333, +-0.492106,0.865696,-0.815238,-1.9706,0.586544,2.68347, +-0.491969,0.865845,-0.815257,-1.97045,0.58661,2.68362, +-0.491832,0.865993,-0.815278,-1.9703,0.586678,2.68377, +-0.491696,0.866142,-0.8153,-1.97015,0.586748,2.68392, +-0.49156,0.866291,-0.815325,-1.97001,0.586821,2.68407, +-0.491425,0.866439,-0.81535,-1.96986,0.586895,2.68422, +-0.49129,0.866587,-0.815377,-1.96971,0.586972,2.68437, +-0.491154,0.866734,-0.815405,-1.96956,0.587049,2.68451, +-0.491019,0.866881,-0.815435,-1.96942,0.587129,2.68466, +-0.490884,0.867027,-0.815465,-1.96927,0.58721,2.6848, +-0.490748,0.867173,-0.815498,-1.96912,0.587293,2.68495, +-0.490613,0.867319,-0.815532,-1.96898,0.587379,2.6851, +-0.490477,0.867464,-0.815569,-1.96883,0.587467,2.68524, +-0.490342,0.867609,-0.815607,-1.96869,0.587557,2.68539, +-0.490207,0.867754,-0.815647,-1.96854,0.587648,2.68553, +-0.490073,0.867897,-0.815687,-1.9684,0.587741,2.68567, +-0.48994,0.86804,-0.81573,-1.96826,0.587836,2.68582, +-0.489808,0.868181,-0.815773,-1.96812,0.587932,2.68596, +-0.489675,0.868323,-0.815819,-1.96797,0.588031,2.6861, +-0.489544,0.868464,-0.815867,-1.96783,0.588131,2.68624, +-0.489413,0.868605,-0.815917,-1.96769,0.588233,2.68638, +-0.489283,0.868745,-0.815968,-1.96755,0.588336,2.68652, +-0.489154,0.868883,-0.816021,-1.96741,0.58844,2.68666, +-0.489027,0.86902,-0.816075,-1.96728,0.588546,2.6868, +-0.488901,0.869156,-0.816131,-1.96714,0.588652,2.68693, +-0.488777,0.869292,-0.816188,-1.96701,0.58876,2.68707, +-0.488653,0.869426,-0.816247,-1.96687,0.588869,2.6872, +-0.48853,0.86956,-0.816308,-1.96674,0.58898,2.68734, +-0.488408,0.869693,-0.816371,-1.9666,0.589091,2.68747, +-0.488288,0.869825,-0.816435,-1.96647,0.589204,2.6876, +-0.48817,0.869956,-0.816501,-1.96634,0.589318,2.68773, +-0.488053,0.870085,-0.816568,-1.96621,0.589432,2.68786, +-0.487939,0.870212,-0.816637,-1.96608,0.589546,2.68799, +-0.487826,0.870339,-0.816707,-1.96596,0.589662,2.68812, +-0.487714,0.870465,-0.816779,-1.96583,0.589779,2.68824, +-0.487603,0.870589,-0.816853,-1.96571,0.589897,2.68837, +-0.487493,0.870713,-0.816929,-1.96558,0.590016,2.68849, +-0.487385,0.870836,-0.817006,-1.96546,0.590135,2.68861, +-0.487279,0.870957,-0.817084,-1.96534,0.590256,2.68874, +-0.487175,0.871077,-0.817164,-1.96522,0.590376,2.68886, +-0.487073,0.871195,-0.817244,-1.9651,0.590497,2.68897, +-0.486974,0.871312,-0.817326,-1.96499,0.590618,2.68909, +-0.486878,0.871428,-0.81741,-1.96487,0.590741,2.68921, +-0.486784,0.871543,-0.817496,-1.96475,0.590864,2.68932, +-0.486694,0.871657,-0.817583,-1.96464,0.590988,2.68944, +-0.486608,0.87177,-0.817672,-1.96453,0.591113,2.68955, +-0.486524,0.871881,-0.817761,-1.96442,0.591238,2.68966, +-0.486444,0.871991,-0.817852,-1.96431,0.591363,2.68977, +-0.486366,0.8721,-0.817943,-1.9642,0.591489,2.68988, +-0.486291,0.872207,-0.818036,-1.96409,0.591615,2.68998, +-0.486217,0.872313,-0.81813,-1.96398,0.591741,2.69009, +-0.486146,0.872418,-0.818226,-1.96388,0.591869,2.6902, +-0.486077,0.872523,-0.818323,-1.96377,0.591997,2.6903, +-0.486009,0.872626,-0.818421,-1.96367,0.592126,2.6904, +-0.485943,0.872728,-0.81852,-1.96357,0.592255,2.69051, +-0.485877,0.872828,-0.81862,-1.96347,0.592384,2.69061, +-0.485813,0.872926,-0.81872,-1.96337,0.592514,2.6907, +-0.48575,0.873022,-0.818822,-1.96328,0.592643,2.6908, +-0.485688,0.873115,-0.818925,-1.96318,0.592774,2.69089, +-0.485627,0.873206,-0.819029,-1.96309,0.592905,2.69098, +-0.485566,0.873294,-0.819135,-1.963,0.593037,2.69107, +-0.485505,0.873378,-0.819241,-1.96292,0.593169,2.69116, +-0.485445,0.87346,-0.819348,-1.96284,0.593302,2.69124, +-0.485385,0.873538,-0.819456,-1.96276,0.593434,2.69132, +-0.485324,0.873614,-0.819564,-1.96268,0.593567,2.69139, +-0.485265,0.873688,-0.819673,-1.96261,0.5937,2.69147, +-0.485206,0.873759,-0.819784,-1.96254,0.593834,2.69154, +-0.485148,0.873829,-0.819895,-1.96247,0.593968,2.69161, +-0.485091,0.873896,-0.820008,-1.9624,0.594103,2.69168, +-0.485035,0.873963,-0.820122,-1.96233,0.594239,2.69174, +-0.48498,0.874028,-0.820236,-1.96227,0.594374,2.69181, +-0.484925,0.874092,-0.82035,-1.9622,0.59451,2.69187, +-0.484871,0.874155,-0.820465,-1.96214,0.594646,2.69193, +-0.484817,0.874217,-0.820581,-1.96208,0.594782,2.692, +-0.484765,0.874279,-0.820698,-1.96202,0.594918,2.69206, +-0.484714,0.87434,-0.820817,-1.96196,0.595056,2.69212, +-0.484664,0.8744,-0.820936,-1.9619,0.595194,2.69218, +-0.484615,0.874461,-0.821056,-1.96184,0.595332,2.69224, +-0.484566,0.874521,-0.821176,-1.96178,0.595471,2.6923, +-0.484518,0.874582,-0.821297,-1.96172,0.595609,2.69236, +-0.48447,0.874642,-0.821419,-1.96165,0.595748,2.69242, +-0.484423,0.874702,-0.821541,-1.9616,0.595887,2.69248, +-0.484377,0.874761,-0.821664,-1.96154,0.596026,2.69254, +-0.484332,0.874819,-0.821788,-1.96148,0.596167,2.6926, +-0.484288,0.874876,-0.821914,-1.96142,0.596307,2.69265, +-0.484246,0.874932,-0.82204,-1.96136,0.596449,2.69271, +-0.484204,0.874988,-0.822166,-1.96131,0.59659,2.69277, +-0.484162,0.875044,-0.822293,-1.96125,0.596731,2.69282, +-0.484122,0.875099,-0.822421,-1.9612,0.596872,2.69288, +-0.484082,0.875154,-0.822549,-1.96114,0.597014,2.69293, +-0.484043,0.875207,-0.822678,-1.96109,0.597156,2.69299, +-0.484006,0.87526,-0.822808,-1.96104,0.597299,2.69304, +-0.48397,0.875311,-0.822939,-1.96099,0.597442,2.69309, +-0.483935,0.875362,-0.823071,-1.96094,0.597586,2.69314, +-0.4839,0.875412,-0.823203,-1.96088,0.59773,2.69319, +-0.483866,0.875462,-0.823336,-1.96084,0.597873,2.69324, +-0.483833,0.875511,-0.823469,-1.96079,0.598017,2.69329, +-0.4838,0.87556,-0.823602,-1.96074,0.598161,2.69334, +-0.483769,0.875607,-0.823737,-1.96069,0.598305,2.69339, +-0.483739,0.875653,-0.823872,-1.96064,0.59845,2.69343, +-0.48371,0.875698,-0.824009,-1.9606,0.598596,2.69348, +-0.483683,0.875743,-0.824146,-1.96055,0.598742,2.69352, +-0.483655,0.875786,-0.824283,-1.96051,0.598887,2.69356, +-0.483629,0.87583,-0.824421,-1.96047,0.599033,2.69361, +-0.483603,0.875872,-0.824559,-1.96042,0.599178,2.69365, +-0.483578,0.875914,-0.824697,-1.96038,0.599324,2.69369, +-0.483555,0.875955,-0.824837,-1.96034,0.59947,2.69373, +-0.483532,0.875994,-0.824977,-1.9603,0.599617,2.69377, +-0.483511,0.876032,-0.825118,-1.96027,0.599764,2.69381, +-0.483491,0.876069,-0.82526,-1.96023,0.599911,2.69385, +-0.483472,0.876106,-0.825401,-1.96019,0.600057,2.69388, +-0.483453,0.876142,-0.825543,-1.96016,0.600204,2.69392, +-0.483435,0.876177,-0.825685,-1.96012,0.60035,2.69396, +-0.483418,0.876211,-0.825827,-1.96009,0.600497,2.69399, +-0.483402,0.876245,-0.82597,-1.96005,0.600644,2.69402, +-0.483388,0.876276,-0.826114,-1.96002,0.600791,2.69405, +-0.483375,0.876307,-0.826259,-1.95999,0.600937,2.69409, +-0.483362,0.876337,-0.826403,-1.95996,0.601084,2.69412, +-0.483351,0.876365,-0.826548,-1.95993,0.601231,2.69414, +-0.48334,0.876394,-0.826693,-1.9599,0.601377,2.69417, +-0.48333,0.876422,-0.826838,-1.95988,0.601524,2.6942, +-0.48332,0.876448,-0.826983,-1.95985,0.60167,2.69423, +-0.483312,0.876474,-0.827129,-1.95982,0.601816,2.69425, +-0.483306,0.876498,-0.827276,-1.9598,0.601963,2.69428, +-0.4833,0.876521,-0.827423,-1.95978,0.602109,2.6943, +-0.483296,0.876543,-0.82757,-1.95975,0.602255,2.69432, +-0.483292,0.876564,-0.827717,-1.95973,0.602401,2.69434, +-0.483289,0.876584,-0.827864,-1.95971,0.602547,2.69436, +-0.483286,0.876604,-0.828012,-1.95969,0.602692,2.69438, +-0.483284,0.876623,-0.828159,-1.95967,0.602838,2.6944, +-0.483284,0.876641,-0.828307,-1.95966,0.602983,2.69442, +-0.483285,0.876657,-0.828455,-1.95964,0.603128,2.69444, +-0.483287,0.876672,-0.828604,-1.95963,0.603273,2.69445, +-0.48329,0.876686,-0.828754,-1.95961,0.603418,2.69446, +-0.483293,0.876699,-0.828903,-1.9596,0.603563,2.69448, +-0.483298,0.876712,-0.829052,-1.95959,0.603708,2.69449, +-0.483302,0.876724,-0.8292,-1.95957,0.603852,2.6945, +-0.483308,0.876735,-0.829349,-1.95956,0.603996,2.69451, +-0.483315,0.876745,-0.829499,-1.95955,0.60414,2.69452, +-0.483324,0.876753,-0.829649,-1.95954,0.604283,2.69453, +-0.483333,0.87676,-0.829799,-1.95954,0.604426,2.69454, +-0.483344,0.876766,-0.829949,-1.95953,0.60457,2.69454, +-0.483356,0.876772,-0.8301,-1.95953,0.604713,2.69455, +-0.483369,0.876777,-0.83025,-1.95952,0.604856,2.69455, +-0.483383,0.876781,-0.8304,-1.95952,0.604999,2.69456, +-0.483398,0.876784,-0.83055,-1.95951,0.605141,2.69456, +-0.483414,0.876786,-0.8307,-1.95951,0.605283,2.69456, +-0.483432,0.876787,-0.830851,-1.95951,0.605424,2.69457, +-0.483452,0.876786,-0.831002,-1.95951,0.605565,2.69456, +-0.483472,0.876785,-0.831153,-1.95951,0.605704,2.69456, +-0.483494,0.876783,-0.831304,-1.95951,0.605842,2.69456, +-0.483516,0.87678,-0.831454,-1.95952,0.605979,2.69456, +-0.483539,0.876777,-0.831604,-1.95952,0.606115,2.69455, +-0.483564,0.876773,-0.831753,-1.95952,0.60625,2.69455, +-0.48359,0.876767,-0.8319,-1.95953,0.606384,2.69455, +-0.483617,0.87676,-0.832047,-1.95954,0.606518,2.69454, +-0.483647,0.876752,-0.832193,-1.95954,0.606651,2.69453, +-0.483678,0.876743,-0.832338,-1.95955,0.606785,2.69452, +-0.48371,0.876733,-0.832483,-1.95956,0.606919,2.69451, +-0.483743,0.876722,-0.832628,-1.95958,0.607053,2.6945, +-0.483778,0.87671,-0.832774,-1.95959,0.607187,2.69449, +-0.483814,0.876697,-0.832919,-1.9596,0.607322,2.69447, +-0.483851,0.876682,-0.833065,-1.95961,0.607455,2.69446, +-0.483891,0.876666,-0.833212,-1.95963,0.607588,2.69444, +-0.483933,0.876648,-0.833359,-1.95965,0.607721,2.69443, +-0.483976,0.876629,-0.833507,-1.95967,0.607854,2.69441, +-0.48402,0.876609,-0.833654,-1.95969,0.607986,2.69439, +-0.484066,0.876589,-0.833802,-1.95971,0.608119,2.69437, +-0.484112,0.876567,-0.833949,-1.95973,0.608251,2.69434, +-0.484161,0.876543,-0.834096,-1.95975,0.608383,2.69432, +-0.484211,0.876519,-0.834244,-1.95978,0.608514,2.6943, +-0.484263,0.876492,-0.834392,-1.95981,0.608645,2.69427, +-0.484317,0.876464,-0.83454,-1.95983,0.608775,2.69424, +-0.484373,0.876434,-0.834689,-1.95986,0.608905,2.69421, +-0.48443,0.876403,-0.834837,-1.95989,0.609034,2.69418, +-0.484488,0.876371,-0.834985,-1.95993,0.609164,2.69415, +-0.484548,0.876337,-0.835133,-1.95996,0.609294,2.69412, +-0.48461,0.876303,-0.83528,-1.95999,0.609423,2.69408, +-0.484673,0.876266,-0.835428,-1.96003,0.609552,2.69404, +-0.484739,0.876228,-0.835576,-1.96007,0.609679,2.69401, +-0.484807,0.876187,-0.835725,-1.96011,0.609806,2.69397, +-0.484876,0.876145,-0.835873,-1.96015,0.609932,2.69392, +-0.484947,0.876102,-0.83602,-1.9602,0.610058,2.69388, +-0.48502,0.876057,-0.836167,-1.96024,0.610184,2.69384, +-0.485094,0.876011,-0.836314,-1.96029,0.61031,2.69379, +-0.48517,0.875963,-0.836461,-1.96033,0.610435,2.69374, +-0.485248,0.875914,-0.836607,-1.96038,0.61056,2.69369, +-0.485328,0.875862,-0.836754,-1.96044,0.610683,2.69364, +-0.485411,0.875808,-0.836901,-1.96049,0.610806,2.69359, +-0.485495,0.875752,-0.837047,-1.96054,0.610928,2.69353, +-0.485581,0.875695,-0.837193,-1.9606,0.611049,2.69347, +-0.485669,0.875636,-0.837338,-1.96066,0.61117,2.69341, +-0.485758,0.875576,-0.837482,-1.96072,0.611292,2.69335, +-0.485849,0.875514,-0.837624,-1.96078,0.611413,2.69329, +-0.485943,0.87545,-0.837766,-1.96085,0.611535,2.69323, +-0.486038,0.875384,-0.837905,-1.96091,0.611657,2.69316, +-0.486136,0.875315,-0.838044,-1.96098,0.61178,2.69309, +-0.486235,0.875245,-0.838181,-1.96105,0.611902,2.69302, +-0.486335,0.875174,-0.838318,-1.96112,0.612024,2.69295, +-0.486436,0.875101,-0.838455,-1.9612,0.612145,2.69288, +-0.486539,0.875027,-0.83859,-1.96127,0.612266,2.69281, +-0.486643,0.874951,-0.838725,-1.96135,0.612387,2.69273, +-0.486749,0.874873,-0.838858,-1.96142,0.612507,2.69265, +-0.486857,0.874793,-0.83899,-1.9615,0.612627,2.69257, +-0.486966,0.874711,-0.83912,-1.96159,0.612746,2.69249, +-0.487076,0.874628,-0.839249,-1.96167,0.612864,2.69241, +-0.487187,0.874543,-0.839377,-1.96175,0.612981,2.69232, +-0.487299,0.874457,-0.839503,-1.96184,0.613095,2.69224, +-0.487411,0.87437,-0.839629,-1.96193,0.613209,2.69215, +-0.487525,0.874282,-0.839753,-1.96202,0.613322,2.69206, +-0.48764,0.874191,-0.839876,-1.96211,0.613433,2.69197, +-0.487756,0.874099,-0.839998,-1.9622,0.613543,2.69188, +-0.487873,0.874005,-0.840118,-1.96229,0.613651,2.69178, +-0.487991,0.87391,-0.840237,-1.96239,0.613758,2.69169, +-0.48811,0.873814,-0.840355,-1.96248,0.613862,2.69159, +-0.488228,0.873717,-0.840472,-1.96258,0.613965,2.6915, +-0.488348,0.873619,-0.840589,-1.96268,0.614064,2.6914, +-0.488468,0.87352,-0.840705,-1.96278,0.614161,2.6913, +-0.488589,0.873419,-0.84082,-1.96288,0.614254,2.6912, +-0.488712,0.873317,-0.840933,-1.96298,0.614345,2.6911, +-0.488835,0.873213,-0.841045,-1.96308,0.614431,2.69099, +-0.488959,0.873109,-0.841155,-1.96319,0.614515,2.69089, +-0.489083,0.873003,-0.841265,-1.96329,0.614595,2.69078, +-0.489207,0.872897,-0.841374,-1.9634,0.614672,2.69068, +-0.489332,0.87279,-0.841482,-1.96351,0.614746,2.69057, +-0.489457,0.872682,-0.841589,-1.96362,0.614818,2.69046, +-0.489583,0.872573,-0.841694,-1.96372,0.614887,2.69035, +-0.48971,0.872462,-0.841798,-1.96383,0.614954,2.69024, +-0.489838,0.872351,-0.841901,-1.96395,0.615019,2.69013, +-0.489966,0.872238,-0.842003,-1.96406,0.615083,2.69002, +-0.490095,0.872125,-0.842104,-1.96417,0.615145,2.6899, +-0.490223,0.872012,-0.842204,-1.96429,0.615207,2.68979, +-0.490352,0.871898,-0.842303,-1.9644,0.615266,2.68968, +-0.490481,0.871783,-0.842402,-1.96451,0.615325,2.68956, +-0.490611,0.871668,-0.842499,-1.96463,0.615382,2.68945, +-0.490742,0.871551,-0.842595,-1.96475,0.615438,2.68933, +-0.490873,0.871433,-0.842689,-1.96487,0.615494,2.68921, +-0.491005,0.871314,-0.842783,-1.96498,0.615549,2.68909, +-0.491137,0.871195,-0.842875,-1.9651,0.615604,2.68897, +-0.491269,0.871076,-0.842968,-1.96522,0.615659,2.68885, +-0.491401,0.870956,-0.843059,-1.96534,0.615714,2.68873, +-0.491534,0.870835,-0.843149,-1.96546,0.615768,2.68861, +-0.491667,0.870714,-0.843238,-1.96558,0.615821,2.68849, +-0.491801,0.870591,-0.843326,-1.96571,0.615874,2.68837, +-0.491936,0.870467,-0.843413,-1.96583,0.615925,2.68825, +-0.492071,0.870343,-0.843498,-1.96595,0.615976,2.68812, +-0.492206,0.870219,-0.843583,-1.96608,0.616025,2.688, +-0.492342,0.870094,-0.843667,-1.9662,0.616074,2.68787, +-0.492477,0.869969,-0.84375,-1.96633,0.616122,2.68775, +-0.492613,0.869844,-0.843833,-1.96645,0.61617,2.68762, +-0.492749,0.869717,-0.843914,-1.96658,0.616216,2.6875, +-0.492886,0.86959,-0.843994,-1.96671,0.616261,2.68737, +-0.493024,0.869461,-0.844072,-1.96684,0.616304,2.68724, +-0.493162,0.869332,-0.84415,-1.96697,0.616347,2.68711, +-0.4933,0.869203,-0.844227,-1.96709,0.61639,2.68698, +-0.493438,0.869073,-0.844303,-1.96722,0.616432,2.68685, +-0.493576,0.868944,-0.844379,-1.96735,0.616474,2.68672, +-0.493714,0.868813,-0.844454,-1.96748,0.616515,2.68659, +-0.493854,0.868682,-0.844527,-1.96762,0.616555,2.68646, +-0.493993,0.868549,-0.8446,-1.96775,0.616593,2.68633, +-0.494134,0.868416,-0.844671,-1.96788,0.616631,2.68619, +-0.494275,0.868283,-0.844741,-1.96801,0.616667,2.68606, +-0.494415,0.868149,-0.84481,-1.96815,0.616703,2.68593, +-0.494556,0.868015,-0.844879,-1.96828,0.616738,2.68579, +-0.494697,0.867881,-0.844947,-1.96842,0.616772,2.68566, +-0.494838,0.867746,-0.845014,-1.96855,0.616805,2.68552, +-0.49498,0.867611,-0.84508,-1.96869,0.616838,2.68539, +-0.495122,0.867474,-0.845144,-1.96882,0.616868,2.68525, +-0.495265,0.867337,-0.845207,-1.96896,0.616898,2.68512, +-0.495408,0.8672,-0.84527,-1.9691,0.616927,2.68498, +-0.495551,0.867062,-0.845331,-1.96924,0.616955,2.68484, +-0.495694,0.866924,-0.845392,-1.96937,0.616982,2.6847, +-0.495837,0.866786,-0.845453,-1.96951,0.617009,2.68456, +-0.49598,0.866647,-0.845512,-1.96965,0.617035,2.68442, +-0.496124,0.866507,-0.84557,-1.96979,0.61706,2.68429, +-0.496268,0.866367,-0.845627,-1.96993,0.617083,2.68415, +-0.496413,0.866226,-0.845682,-1.97007,0.617105,2.684, +-0.496558,0.866085,-0.845737,-1.97021,0.617126,2.68386, +-0.496703,0.865943,-0.84579,-1.97035,0.617147,2.68372, +-0.496848,0.865802,-0.845844,-1.9705,0.617167,2.68358, +-0.496993,0.86566,-0.845896,-1.97064,0.617186,2.68344, +-0.497138,0.865518,-0.845948,-1.97078,0.617204,2.6833, +-0.497284,0.865375,-0.845998,-1.97092,0.617221,2.68315, +-0.49743,0.865231,-0.846047,-1.97107,0.617237,2.68301, +-0.497576,0.865087,-0.846095,-1.97121,0.617251,2.68287, +-0.497723,0.864943,-0.846141,-1.97135,0.617265,2.68272, +-0.497869,0.864798,-0.846187,-1.9715,0.617278,2.68258, +-0.498015,0.864654,-0.846233,-1.97164,0.61729,2.68243, +-0.498161,0.864509,-0.846277,-1.97179,0.617302,2.68229, +-0.498308,0.864364,-0.846321,-1.97193,0.617312,2.68214, +-0.498455,0.864219,-0.846363,-1.97208,0.617322,2.682, +-0.498602,0.864072,-0.846404,-1.97222,0.61733,2.68185, +-0.498749,0.863926,-0.846443,-1.97237,0.617336,2.6817, +-0.498895,0.863779,-0.846482,-1.97252,0.617342,2.68156, +-0.499042,0.863632,-0.84652,-1.97267,0.617347,2.68141, +-0.499189,0.863485,-0.846557,-1.97281,0.617352,2.68126, +-0.499336,0.863338,-0.846594,-1.97296,0.617356,2.68112, +-0.499482,0.863191,-0.846629,-1.97311,0.617359,2.68097, +-0.49963,0.863043,-0.846663,-1.97325,0.617361,2.68082, +-0.499777,0.862895,-0.846696,-1.9734,0.617361,2.68067, +-0.499924,0.862746,-0.846728,-1.97355,0.617361,2.68052, +-0.500071,0.862597,-0.846758,-1.9737,0.617359,2.68038, +-0.500218,0.862449,-0.846788,-1.97385,0.617357,2.68023, +-0.500365,0.8623,-0.846817,-1.974,0.617354,2.68008, +-0.500511,0.862151,-0.846846,-1.97415,0.617351,2.67993, +-0.500658,0.862003,-0.846873,-1.97429,0.617346,2.67978, +-0.500805,0.861854,-0.846899,-1.97444,0.617341,2.67963, +-0.500951,0.861704,-0.846924,-1.97459,0.617334,2.67948, +-0.501098,0.861554,-0.846947,-1.97474,0.617326,2.67933, +-0.501245,0.861404,-0.84697,-1.97489,0.617317,2.67918, +-0.501391,0.861254,-0.846991,-1.97504,0.617306,2.67903, +-0.501537,0.861104,-0.847012,-1.97519,0.617295,2.67888, +-0.501683,0.860955,-0.847033,-1.97534,0.617284,2.67873, +-0.501829,0.860805,-0.847052,-1.97549,0.61727,2.67858, +-0.501975,0.860655,-0.84707,-1.97564,0.617256,2.67843, +-0.50212,0.860504,-0.847086,-1.97579,0.61724,2.67828, +-0.502266,0.860354,-0.847101,-1.97594,0.617222,2.67813, +-0.502411,0.860203,-0.847116,-1.97609,0.617204,2.67798, +-0.502557,0.860052,-0.847129,-1.97624,0.617184,2.67783, +-0.502702,0.859902,-0.847142,-1.9764,0.617163,2.67768, +-0.502847,0.859752,-0.847154,-1.97655,0.617141,2.67753, +-0.502991,0.859602,-0.847165,-1.9767,0.617118,2.67738, +-0.503135,0.859452,-0.847175,-1.97685,0.617093,2.67723, +-0.503278,0.859301,-0.847183,-1.977,0.617067,2.67708, +-0.503422,0.85915,-0.84719,-1.97715,0.617039,2.67693, +-0.503566,0.859,-0.847196,-1.9773,0.617009,2.67678, +-0.50371,0.85885,-0.847202,-1.97745,0.616979,2.67663, +-0.503853,0.8587,-0.847207,-1.9776,0.616947,2.67648, +-0.503996,0.858551,-0.847211,-1.97775,0.616914,2.67633, +-0.504138,0.858401,-0.847214,-1.9779,0.61688,2.67618, +-0.50428,0.858251,-0.847216,-1.97805,0.616844,2.67603, +-0.504421,0.858101,-0.847216,-1.9782,0.616806,2.67588, +-0.504563,0.857951,-0.847215,-1.97835,0.616766,2.67573, +-0.504704,0.857801,-0.847213,-1.9785,0.616725,2.67558, +-0.504846,0.857652,-0.847211,-1.97865,0.616682,2.67543, +-0.504987,0.857502,-0.847208,-1.97879,0.616639,2.67528, +-0.505127,0.857354,-0.847204,-1.97894,0.616594,2.67513, +-0.505267,0.857205,-0.8472,-1.97909,0.616547,2.67498, +-0.505407,0.857056,-0.847194,-1.97924,0.616499,2.67483, +-0.505545,0.856907,-0.847186,-1.97939,0.616448,2.67469, +-0.505684,0.856758,-0.847177,-1.97954,0.616396,2.67454, +-0.505823,0.856609,-0.847167,-1.97969,0.616342,2.67439, +-0.505961,0.856461,-0.847156,-1.97984,0.616286,2.67424, +-0.5061,0.856313,-0.847145,-1.97998,0.61623,2.67409, +-0.506238,0.856166,-0.847132,-1.98013,0.616171,2.67394, +-0.506375,0.856019,-0.847118,-1.98028,0.616111,2.6738, +-0.506511,0.855871,-0.847102,-1.98043,0.616049,2.67365, +-0.506646,0.855724,-0.847085,-1.98057,0.615985,2.6735, +-0.506782,0.855577,-0.847066,-1.98072,0.615919,2.67336, +-0.506916,0.85543,-0.847046,-1.98087,0.615851,2.67321, +-0.507051,0.855283,-0.847024,-1.98101,0.615782,2.67306, +-0.507186,0.855138,-0.847001,-1.98116,0.615711,2.67292, +-0.50732,0.854993,-0.846978,-1.9813,0.615638,2.67277, +-0.507453,0.854848,-0.846953,-1.98145,0.615564,2.67263, +-0.507585,0.854703,-0.846926,-1.98159,0.615487,2.67248, +-0.507717,0.854558,-0.846897,-1.98174,0.615409,2.67234, +-0.507848,0.854414,-0.846867,-1.98188,0.615328,2.67219, +-0.507978,0.85427,-0.846835,-1.98203,0.615245,2.67205, +-0.508109,0.854126,-0.846801,-1.98217,0.61516,2.6719, +-0.508239,0.853984,-0.846766,-1.98231,0.615074,2.67176, +-0.508368,0.853842,-0.84673,-1.98245,0.614986,2.67162, +-0.508497,0.853702,-0.846692,-1.98259,0.614896,2.67148, +-0.508625,0.853564,-0.846653,-1.98273,0.614804,2.67134, +-0.508751,0.853427,-0.846611,-1.98287,0.61471,2.6712, +-0.508876,0.853292,-0.846568,-1.98301,0.614614,2.67107, +-0.508999,0.853157,-0.846522,-1.98314,0.614517,2.67094, +-0.509121,0.853024,-0.846476,-1.98327,0.614418,2.6708, +-0.50924,0.852891,-0.846428,-1.98341,0.614319,2.67067, +-0.509358,0.852759,-0.846379,-1.98354,0.614218,2.67054, +-0.509474,0.852628,-0.846328,-1.98367,0.614115,2.67041, +-0.509588,0.852499,-0.846275,-1.9838,0.614011,2.67028, +-0.509701,0.852371,-0.84622,-1.98393,0.613905,2.67015, +-0.509812,0.852245,-0.846163,-1.98405,0.613798,2.67002, +-0.509921,0.85212,-0.846105,-1.98418,0.61369,2.6699, +-0.51003,0.851996,-0.846045,-1.9843,0.613581,2.66977, +-0.510138,0.851873,-0.845984,-1.98442,0.613472,2.66965, +-0.510245,0.851751,-0.845922,-1.98455,0.613361,2.66953, +-0.510351,0.85163,-0.845858,-1.98467,0.61325,2.66941, +-0.510456,0.851511,-0.845792,-1.98479,0.613137,2.66929, +-0.510559,0.851394,-0.845724,-1.9849,0.613023,2.66917, +-0.51066,0.851278,-0.845654,-1.98502,0.612908,2.66906, +-0.510761,0.851163,-0.845583,-1.98513,0.612792,2.66894, +-0.51086,0.851049,-0.845511,-1.98525,0.612675,2.66883, +-0.510959,0.850935,-0.845437,-1.98536,0.612558,2.66871, +-0.511056,0.850822,-0.845362,-1.98548,0.612441,2.6686, +-0.511152,0.85071,-0.845286,-1.98559,0.612323,2.66849, +-0.511247,0.8506,-0.845207,-1.9857,0.612204,2.66838, +-0.511341,0.850491,-0.845127,-1.98581,0.612084,2.66827, +-0.511433,0.850383,-0.845046,-1.98591,0.611963,2.66816, +-0.511523,0.850277,-0.844963,-1.98602,0.611841,2.66806, +-0.511613,0.850171,-0.844878,-1.98613,0.611719,2.66795, +-0.511703,0.850067,-0.844793,-1.98623,0.611597,2.66784, +-0.511791,0.849962,-0.844707,-1.98633,0.611474,2.66774, +-0.511878,0.84986,-0.844619,-1.98644,0.611351,2.66764, +-0.511964,0.849758,-0.84453,-1.98654,0.611227,2.66754, +-0.512048,0.849658,-0.844439,-1.98664,0.611102,2.66744, +-0.512131,0.849559,-0.844347,-1.98674,0.610977,2.66734, +-0.512213,0.849461,-0.844254,-1.98684,0.61085,2.66724, +-0.512295,0.849364,-0.844159,-1.98693,0.610724,2.66714, +-0.512375,0.849268,-0.844064,-1.98703,0.610597,2.66705, +-0.512455,0.849173,-0.843968,-1.98712,0.610471,2.66695, +-0.512533,0.849078,-0.843871,-1.98722,0.610344,2.66686, +-0.51261,0.848985,-0.843773,-1.98731,0.610216,2.66676, +-0.512686,0.848893,-0.843673,-1.9874,0.610087,2.66667, +-0.51276,0.848802,-0.843572,-1.98749,0.609957,2.66658, +-0.512834,0.848712,-0.84347,-1.98758,0.609827,2.66649, +-0.512906,0.848624,-0.843367,-1.98767,0.609697,2.6664, +-0.512978,0.848535,-0.843263,-1.98776,0.609567,2.66631, +-0.513049,0.848448,-0.843159,-1.98785,0.609436,2.66623, +-0.513119,0.848361,-0.843054,-1.98794,0.609306,2.66614, +-0.513188,0.848276,-0.842947,-1.98802,0.609174,2.66605, +-0.513255,0.848192,-0.842839,-1.9881,0.609042,2.66597, +-0.513321,0.84811,-0.84273,-1.98819,0.608909,2.66589, +-0.513386,0.848028,-0.842621,-1.98827,0.608776,2.66581, +-0.51345,0.847947,-0.84251,-1.98835,0.608642,2.66573, +-0.513513,0.847867,-0.842399,-1.98843,0.608508,2.66564, +-0.513576,0.847787,-0.842288,-1.98851,0.608375,2.66557, +-0.513638,0.847709,-0.842176,-1.98859,0.608241,2.66549, +-0.513698,0.847631,-0.842062,-1.98867,0.608106,2.66541, +-0.513757,0.847555,-0.841947,-1.98874,0.60797,2.66533, +-0.513815,0.84748,-0.841832,-1.98882,0.607834,2.66526, +-0.513871,0.847407,-0.841715,-1.98889,0.607698,2.66518, +-0.513927,0.847333,-0.841598,-1.98896,0.607561,2.66511, +-0.513983,0.847261,-0.84148,-1.98904,0.607424,2.66504, +-0.514037,0.847189,-0.841362,-1.98911,0.607288,2.66497, +-0.514091,0.847118,-0.841243,-1.98918,0.60715,2.6649, +-0.514143,0.847048,-0.841123,-1.98925,0.607013,2.66483, +-0.514194,0.84698,-0.841002,-1.98932,0.606874,2.66476, +-0.514244,0.846913,-0.84088,-1.98938,0.606735,2.66469, +-0.514293,0.846847,-0.840757,-1.98945,0.606595,2.66462, +-0.51434,0.846781,-0.840634,-1.98952,0.606456,2.66456, +-0.514388,0.846716,-0.84051,-1.98958,0.606316,2.66449, +-0.514434,0.846652,-0.840386,-1.98965,0.606177,2.66443, +-0.51448,0.846588,-0.840261,-1.98971,0.606037,2.66437, +-0.514524,0.846526,-0.840135,-1.98977,0.605896,2.6643, +-0.514567,0.846466,-0.840008,-1.98983,0.605755,2.66424, +-0.514609,0.846406,-0.83988,-1.98989,0.605613,2.66418, +-0.51465,0.846348,-0.839751,-1.98995,0.605471,2.66413, +-0.51469,0.84629,-0.839622,-1.99001,0.605328,2.66407, +-0.514729,0.846232,-0.839492,-1.99006,0.605186,2.66401, +-0.514768,0.846176,-0.839362,-1.99012,0.605044,2.66395, +-0.514805,0.84612,-0.83923,-1.99018,0.604901,2.6639, +-0.514842,0.846066,-0.839098,-1.99023,0.604758,2.66384, +-0.514877,0.846013,-0.838965,-1.99028,0.604614,2.66379, +-0.51491,0.845961,-0.838831,-1.99034,0.60447,2.66374, +-0.514943,0.84591,-0.838696,-1.99039,0.604325,2.66369, +-0.514975,0.84586,-0.838562,-1.99044,0.60418,2.66364, +-0.515006,0.84581,-0.838427,-1.99049,0.604036,2.66359, +-0.515037,0.845762,-0.838291,-1.99054,0.603891,2.66354, +-0.515067,0.845714,-0.838155,-1.99058,0.603746,2.66349, +-0.515095,0.845667,-0.838018,-1.99063,0.603601,2.66345, +-0.515122,0.845622,-0.83788,-1.99068,0.603455,2.6634, +-0.515148,0.845578,-0.837741,-1.99072,0.603309,2.66336, +-0.515173,0.845535,-0.837602,-1.99076,0.603162,2.66331, +-0.515197,0.845493,-0.837462,-1.9908,0.603016,2.66327, +-0.51522,0.845451,-0.837322,-1.99085,0.602869,2.66323, +-0.515243,0.84541,-0.837182,-1.99089,0.602723,2.66319, +-0.515264,0.84537,-0.837042,-1.99093,0.602576,2.66315, +-0.515285,0.845331,-0.836901,-1.99097,0.602429,2.66311, +-0.515304,0.845294,-0.836759,-1.991,0.602282,2.66307, +-0.515321,0.845258,-0.836616,-1.99104,0.602135,2.66304, +-0.515338,0.845223,-0.836473,-1.99107,0.601988,2.663, +-0.515354,0.845188,-0.836329,-1.99111,0.601842,2.66297, +-0.51537,0.845155,-0.836186,-1.99114,0.601695,2.66293, +-0.515384,0.845122,-0.836043,-1.99118,0.601548,2.6629, +-0.515398,0.84509,-0.835899,-1.99121,0.601402,2.66287, +-0.51541,0.845059,-0.835754,-1.99124,0.601255,2.66284, +-0.515421,0.84503,-0.835609,-1.99127,0.601109,2.66281, +-0.515431,0.845002,-0.835463,-1.99129,0.600962,2.66278, +-0.51544,0.844976,-0.835317,-1.99132,0.600815,2.66275, +-0.515448,0.844949,-0.835171,-1.99135,0.600669,2.66273, +-0.515455,0.844924,-0.835025,-1.99137,0.600523,2.6627, +-0.515462,0.844899,-0.834879,-1.9914,0.600377,2.66268, +-0.515468,0.844876,-0.834733,-1.99142,0.600231,2.66265, +-0.515472,0.844853,-0.834586,-1.99144,0.600085,2.66263, +-0.515476,0.844832,-0.834438,-1.99146,0.59994,2.66261, +-0.515478,0.844812,-0.83429,-1.99148,0.599794,2.66259, +-0.515479,0.844794,-0.834142,-1.9915,0.599648,2.66257, +-0.515479,0.844776,-0.833994,-1.99152,0.599503,2.66255, +-0.515479,0.844758,-0.833846,-1.99154,0.599357,2.66254, +-0.515478,0.844742,-0.833698,-1.99156,0.599212,2.66252, +-0.515477,0.844726,-0.833549,-1.99157,0.599068,2.6625, +-0.515474,0.844712,-0.833401,-1.99159,0.598924,2.66249, +-0.515469,0.844699,-0.833251,-1.9916,0.598779,2.66248, +-0.515464,0.844687,-0.833102,-1.99161,0.598635,2.66247, +-0.515457,0.844677,-0.832952,-1.99162,0.598491,2.66245, +-0.51545,0.844667,-0.832802,-1.99163,0.598347,2.66245, +-0.515442,0.844658,-0.832653,-1.99164,0.598203,2.66244, +-0.515433,0.844649,-0.832503,-1.99165,0.598059,2.66243, +-0.515423,0.844642,-0.832354,-1.99166,0.597916,2.66242, +-0.515412,0.844635,-0.832204,-1.99166,0.597774,2.66241, +-0.515399,0.84463,-0.832054,-1.99167,0.597631,2.66241, +-0.515384,0.844627,-0.831903,-1.99167,0.597489,2.6624, +-0.515369,0.844624,-0.831752,-1.99167,0.597347,2.6624, +-0.515352,0.844622,-0.831601,-1.99168,0.597205,2.6624, +-0.515335,0.844621,-0.831451,-1.99168,0.597063,2.6624, +-0.515316,0.84462,-0.831301,-1.99168,0.596921,2.6624, +-0.515297,0.84462,-0.831151,-1.99168,0.59678,2.6624, +-0.515276,0.844621,-0.831,-1.99168,0.59664,2.6624, +-0.515253,0.844624,-0.830849,-1.99167,0.5965,2.6624, +-0.515228,0.844628,-0.830698,-1.99167,0.596361,2.66241, +-0.515202,0.844633,-0.830547,-1.99166,0.596221,2.66241, +-0.515175,0.844639,-0.830396,-1.99166,0.596081,2.66242, +-0.515147,0.844646,-0.830245,-1.99165,0.595942,2.66242, +-0.515118,0.844653,-0.830095,-1.99164,0.595803,2.66243, +-0.515087,0.844661,-0.829945,-1.99164,0.595664,2.66244, +-0.515055,0.844671,-0.829794,-1.99163,0.595526,2.66245, +-0.515021,0.844682,-0.829643,-1.99162,0.595389,2.66246, +-0.514985,0.844694,-0.829492,-1.9916,0.595252,2.66247, +-0.514947,0.844708,-0.829341,-1.99159,0.595116,2.66249, +-0.514909,0.844723,-0.82919,-1.99157,0.59498,2.6625, +-0.514869,0.844738,-0.82904,-1.99156,0.594843,2.66252, +-0.514828,0.844755,-0.82889,-1.99154,0.594707,2.66253, +-0.514785,0.844773,-0.82874,-1.99152,0.594572,2.66255, +-0.514741,0.844793,-0.82859,-1.9915,0.594437,2.66257, +-0.514695,0.844814,-0.82844,-1.99148,0.594303,2.66259, +-0.514647,0.844837,-0.828289,-1.99146,0.59417,2.66262, +-0.514597,0.844861,-0.828139,-1.99144,0.594038,2.66264, +-0.514545,0.844887,-0.827989,-1.99141,0.593905,2.66266, +-0.514493,0.844913,-0.82784,-1.99138,0.593773,2.66269, +-0.514439,0.844941,-0.827691,-1.99136,0.593641,2.66272, +-0.514384,0.84497,-0.827542,-1.99133,0.593509,2.66275, +-0.514326,0.845001,-0.827394,-1.9913,0.593378,2.66278, +-0.514267,0.845033,-0.827244,-1.99126,0.593249,2.66281, +-0.514205,0.845068,-0.827095,-1.99123,0.59312,2.66285, +-0.514142,0.845104,-0.826947,-1.99119,0.592991,2.66288, +-0.514077,0.845141,-0.826798,-1.99116,0.592864,2.66292, +-0.514011,0.84518,-0.826651,-1.99112,0.592736,2.66296, +-0.513944,0.84522,-0.826503,-1.99108,0.592609,2.663, +-0.513874,0.845261,-0.826356,-1.99104,0.592482,2.66304, +-0.513803,0.845304,-0.82621,-1.99099,0.592356,2.66308, +-0.513729,0.84535,-0.826062,-1.99095,0.592232,2.66313, +-0.513654,0.845397,-0.825915,-1.9909,0.592108,2.66318, +-0.513576,0.845446,-0.825769,-1.99085,0.591984,2.66322, +-0.513497,0.845497,-0.825623,-1.9908,0.591862,2.66327, +-0.513416,0.845549,-0.825477,-1.99075,0.591739,2.66333, +-0.513334,0.845602,-0.825333,-1.9907,0.591617,2.66338, +-0.51325,0.845657,-0.825188,-1.99064,0.591495,2.66344, +-0.513164,0.845714,-0.825044,-1.99058,0.591374,2.66349, +-0.513075,0.845774,-0.8249,-1.99052,0.591255,2.66355, +-0.512985,0.845835,-0.824755,-1.99046,0.591136,2.66361, +-0.512892,0.845898,-0.824612,-1.9904,0.591019,2.66368, +-0.512799,0.845963,-0.824469,-1.99033,0.590903,2.66374, +-0.512703,0.846029,-0.824327,-1.99027,0.590788,2.66381, +-0.512607,0.846097,-0.824186,-1.9902,0.590674,2.66387, +-0.512508,0.846166,-0.824045,-1.99013,0.590561,2.66394, +-0.512408,0.846238,-0.823905,-1.99006,0.59045,2.66402, +-0.512306,0.846311,-0.823765,-1.98999,0.590341,2.66409, +-0.512202,0.846387,-0.823625,-1.98991,0.590233,2.66417, +-0.512097,0.846464,-0.823486,-1.98983,0.590127,2.66424, +-0.511991,0.846543,-0.823348,-1.98975,0.590021,2.66432, +-0.511884,0.846622,-0.823212,-1.98968,0.589917,2.6644, +-0.511776,0.846703,-0.823076,-1.98959,0.589813,2.66448, +-0.511667,0.846786,-0.822941,-1.98951,0.589711,2.66456, +-0.511557,0.84687,-0.822807,-1.98943,0.589611,2.66465, +-0.511445,0.846957,-0.822673,-1.98934,0.589512,2.66473, +-0.511332,0.847045,-0.82254,-1.98925,0.589415,2.66482, +-0.511218,0.847134,-0.822407,-1.98916,0.589319,2.66491, +-0.511103,0.847225,-0.822276,-1.98907,0.589224,2.665, +-0.510988,0.847317,-0.822147,-1.98898,0.58913,2.66509, +-0.510872,0.847409,-0.822019,-1.98889,0.589036,2.66519, +-0.510755,0.847503,-0.821891,-1.98879,0.588944,2.66528, +-0.510638,0.847599,-0.821765,-1.9887,0.588854,2.66538, +-0.510519,0.847697,-0.821638,-1.9886,0.588765,2.66547, +-0.510399,0.847795,-0.821513,-1.9885,0.588678,2.66557, +-0.510278,0.847895,-0.821389,-1.9884,0.588592,2.66567, +-0.510157,0.847996,-0.821267,-1.9883,0.588506,2.66577, +-0.510036,0.848098,-0.821145,-1.9882,0.588422,2.66588, +-0.509914,0.8482,-0.821026,-1.9881,0.588338,2.66598, +-0.509792,0.848304,-0.820907,-1.98799,0.588255,2.66608, +-0.509669,0.848409,-0.820789,-1.98789,0.588174,2.66619, +-0.509544,0.848515,-0.820672,-1.98778,0.588095,2.66629, +-0.509419,0.848623,-0.820555,-1.98767,0.588017,2.6664, +-0.509294,0.848731,-0.82044,-1.98757,0.58794,2.66651, +-0.509168,0.848841,-0.820327,-1.98746,0.587864,2.66662, +-0.509042,0.84895,-0.820214,-1.98735,0.587788,2.66673, +-0.508916,0.84906,-0.820104,-1.98724,0.587714,2.66684, +-0.508789,0.849171,-0.819994,-1.98713,0.58764,2.66695, +-0.508662,0.849284,-0.819885,-1.98701,0.587569,2.66706, +-0.508533,0.849397,-0.819777,-1.9869,0.587498,2.66718, +-0.508404,0.849512,-0.81967,-1.98679,0.587429,2.66729, +-0.508275,0.849627,-0.819564,-1.98667,0.587361,2.6674, +-0.508145,0.849743,-0.81946,-1.98655,0.587294,2.66752, +-0.508015,0.849859,-0.819357,-1.98644,0.587228,2.66764, +-0.507885,0.849975,-0.819256,-1.98632,0.587162,2.66775, +-0.507755,0.850093,-0.819157,-1.9862,0.587098,2.66787, +-0.507624,0.850211,-0.81906,-1.98609,0.587035,2.66799, +-0.507492,0.850331,-0.818966,-1.98597,0.586973,2.66811, +-0.507359,0.850451,-0.818875,-1.98585,0.586913,2.66823, +-0.507226,0.850572,-0.818788,-1.98572,0.586853,2.66835, +-0.507093,0.850694,-0.818703,-1.9856,0.586795,2.66847, +-0.50696,0.850816,-0.818621,-1.98548,0.586737,2.66859, +-0.506826,0.850938,-0.818542,-1.98536,0.58668,2.66872, +-0.506693,0.851062,-0.818466,-1.98524,0.586624,2.66884, +-0.506558,0.851186,-0.818391,-1.98511,0.58657,2.66896, +-0.506423,0.851312,-0.818319,-1.98499,0.586517,2.66909, +-0.506287,0.851438,-0.818248,-1.98486,0.586465,2.66922, +-0.506151,0.851564,-0.818179,-1.98473,0.586414,2.66934, +-0.506015,0.85169,-0.818111,-1.98461,0.586365,2.66947, +-0.505878,0.851817,-0.818044,-1.98448,0.586315,2.66959, +-0.505742,0.851943,-0.817978,-1.98435,0.586267,2.66972, +-0.505605,0.85207,-0.817913,-1.98423,0.586219,2.66985, +-0.505468,0.852197,-0.817848,-1.9841,0.586173,2.66998, +-0.50533,0.852325,-0.817785,-1.98397,0.586128,2.6701, +-0.505192,0.852454,-0.817721,-1.98384,0.586085,2.67023, +-0.505054,0.852584,-0.817657,-1.98371,0.586042,2.67036, +-0.504916,0.852715,-0.817594,-1.98358,0.586001,2.67049, +-0.504777,0.852845,-0.81753,-1.98345,0.58596,2.67062, +-0.504639,0.852977,-0.817467,-1.98332,0.585919,2.67075, +-0.5045,0.853108,-0.817404,-1.98319,0.58588,2.67089, +-0.504361,0.853241,-0.817342,-1.98306,0.585842,2.67102, +-0.504221,0.853375,-0.817281,-1.98292,0.585806,2.67115, +-0.50408,0.85351,-0.81722,-1.98279,0.585771,2.67129, +-0.503939,0.853645,-0.817161,-1.98265,0.585737,2.67142, +-0.503797,0.853781,-0.817102,-1.98252,0.585703,2.67156, +-0.503656,0.853917,-0.817043,-1.98238,0.58567,2.67169, +-0.503515,0.854053,-0.816984,-1.98224,0.585638,2.67183, +-0.503373,0.85419,-0.816926,-1.98211,0.585607,2.67197, +-0.503231,0.854327,-0.816869,-1.98197,0.585577,2.67211, +-0.503087,0.854466,-0.816813,-1.98183,0.585549,2.67224, +-0.502944,0.854605,-0.816758,-1.98169,0.585522,2.67238, +-0.5028,0.854744,-0.816704,-1.98155,0.585495,2.67252, +-0.502656,0.854884,-0.81665,-1.98141,0.58547,2.67266, +-0.502512,0.855024,-0.816597,-1.98127,0.585445,2.6728, +-0.502368,0.855164,-0.816544,-1.98113,0.585421,2.67294, +-0.502223,0.855305,-0.816492,-1.98099,0.585398,2.67308, +-0.502078,0.855446,-0.816441,-1.98085,0.585376,2.67322, +-0.501933,0.855588,-0.816392,-1.98071,0.585356,2.67337, +-0.501787,0.855731,-0.816343,-1.98057,0.585336,2.67351, +-0.50164,0.855874,-0.816295,-1.98042,0.585318,2.67365, +-0.501494,0.856017,-0.816248,-1.98028,0.585301,2.6738, +-0.501348,0.85616,-0.816201,-1.98014,0.585284,2.67394, +-0.501202,0.856304,-0.816155,-1.97999,0.585268,2.67408, +-0.501055,0.856447,-0.81611,-1.97985,0.585252,2.67423, +-0.500909,0.856592,-0.816066,-1.97971,0.585239,2.67437, +-0.500762,0.856737,-0.816023,-1.97956,0.585226,2.67451, +-0.500615,0.856883,-0.815981,-1.97941,0.585215,2.67466, +-0.500468,0.857029,-0.81594,-1.97927,0.585204,2.67481, +-0.500322,0.857175,-0.8159,-1.97912,0.585195,2.67495, +-0.500175,0.85732,-0.815861,-1.97898,0.585186,2.6751, +-0.500028,0.857466,-0.815822,-1.97883,0.585177,2.67524, +-0.499881,0.857613,-0.815784,-1.97868,0.58517,2.67539, +-0.499734,0.857759,-0.815747,-1.97854,0.585164,2.67554, +-0.499587,0.857907,-0.815712,-1.97839,0.585159,2.67568, +-0.49944,0.858055,-0.815677,-1.97824,0.585156,2.67583, +-0.499293,0.858203,-0.815644,-1.97809,0.585153,2.67598, +-0.499146,0.858351,-0.815612,-1.97795,0.585151,2.67613, +-0.498999,0.858499,-0.81558,-1.9778,0.58515,2.67628, +-0.498852,0.858647,-0.815548,-1.97765,0.585149,2.67642, +-0.498705,0.858795,-0.815518,-1.9775,0.585149,2.67657, +-0.498558,0.858943,-0.815489,-1.97735,0.585151,2.67672, +-0.498411,0.859092,-0.815461,-1.9772,0.585154,2.67687, +-0.498263,0.859242,-0.815434,-1.97706,0.585158,2.67702, +-0.498116,0.859392,-0.815409,-1.97691,0.585163,2.67717, +-0.497969,0.859541,-0.815384,-1.97676,0.585169,2.67732, +-0.497823,0.85969,-0.81536,-1.97661,0.585175,2.67747, +-0.497676,0.85984,-0.815336,-1.97646,0.585182,2.67762, +-0.49753,0.859989,-0.815314,-1.97631,0.58519,2.67777, +-0.497384,0.860139,-0.815292,-1.97616,0.585199,2.67792, +-0.497238,0.860289,-0.815272,-1.97601,0.58521,2.67807, +-0.497091,0.860439,-0.815254,-1.97586,0.585223,2.67822, +-0.496945,0.86059,-0.815236,-1.97571,0.585236,2.67837, +-0.496799,0.86074,-0.815219,-1.97556,0.585251,2.67852, +-0.496653,0.86089,-0.815203,-1.97541,0.585266,2.67867, +-0.496508,0.86104,-0.815187,-1.97526,0.585282,2.67882, +-0.496363,0.86119,-0.815173,-1.97511,0.5853,2.67897, +-0.496218,0.861341,-0.81516,-1.97496,0.585319,2.67912, +-0.496073,0.861491,-0.815148,-1.97481,0.58534,2.67927, +-0.495928,0.861642,-0.815137,-1.97465,0.585362,2.67942, +-0.495783,0.861793,-0.815127,-1.9745,0.585386,2.67957, +-0.495638,0.861944,-0.815119,-1.97435,0.585411,2.67972, +-0.495493,0.862094,-0.81511,-1.9742,0.585437,2.67987, +-0.495349,0.862244,-0.815103,-1.97405,0.585463,2.68002, +-0.495205,0.862395,-0.815096,-1.9739,0.585492,2.68017, +-0.495062,0.862545,-0.815091,-1.97375,0.585522,2.68032, +-0.494919,0.862695,-0.815087,-1.9736,0.585553,2.68047, +-0.494776,0.862846,-0.815084,-1.97345,0.585587,2.68063, +-0.494633,0.862997,-0.815082,-1.9733,0.585622,2.68078, +-0.49449,0.863147,-0.815081,-1.97315,0.585658,2.68093, +-0.494347,0.863297,-0.815081,-1.973,0.585696,2.68108, +-0.494205,0.863447,-0.815081,-1.97285,0.585734,2.68123, +-0.494064,0.863596,-0.815082,-1.9727,0.585774,2.68138, +-0.493923,0.863746,-0.815084,-1.97255,0.585816,2.68152, +-0.493782,0.863896,-0.815088,-1.9724,0.58586,2.68167, +-0.493642,0.864046,-0.815093,-1.97225,0.585906,2.68182, +-0.493502,0.864195,-0.815099,-1.9721,0.585953,2.68197, +-0.493361,0.864345,-0.815106,-1.97195,0.586002,2.68212, +-0.493222,0.864494,-0.815114,-1.9718,0.586052,2.68227, +-0.493082,0.864642,-0.815122,-1.97166,0.586103,2.68242, +-0.492943,0.86479,-0.815131,-1.97151,0.586156,2.68257, +-0.492805,0.864938,-0.815142,-1.97136,0.586211,2.68272, +-0.492668,0.865087,-0.815155,-1.97121,0.586268,2.68287, +-0.492531,0.865235,-0.815169,-1.97106,0.586327,2.68301, +-0.492394,0.865383,-0.815184,-1.97091,0.586388,2.68316, +-0.492258,0.865531,-0.8152,-1.97077,0.586451,2.68331, +-0.492121,0.865678,-0.815217,-1.97062,0.586514,2.68346, +-0.491985,0.865824,-0.815236,-1.97047,0.586579,2.6836, +-0.49185,0.86597,-0.815255,-1.97033,0.586646,2.68375, +-0.491716,0.866116,-0.815277,-1.97018,0.586715,2.68389, +-0.491582,0.866263,-0.8153,-1.97003,0.586786,2.68404, +-0.491449,0.866409,-0.815325,-1.96989,0.58686,2.68419, +-0.491316,0.866554,-0.815351,-1.96974,0.586935,2.68433, +-0.491183,0.866699,-0.815379,-1.9696,0.587012,2.68448, +-0.49105,0.866844,-0.815407,-1.96945,0.58709,2.68462, +-0.490918,0.866987,-0.815437,-1.96931,0.587171,2.68477, +-0.490785,0.867131,-0.815469,-1.96917,0.587253,2.68491, +-0.490652,0.867274,-0.815502,-1.96902,0.587337,2.68505, +-0.490519,0.867417,-0.815537,-1.96888,0.587423,2.6852, +-0.490386,0.86756,-0.815574,-1.96874,0.587512,2.68534, +-0.490253,0.867702,-0.815613,-1.96859,0.587602,2.68548, +-0.490121,0.867844,-0.815653,-1.96845,0.587694,2.68562, +-0.48999,0.867984,-0.815695,-1.96831,0.587787,2.68576, +-0.489859,0.868124,-0.815738,-1.96817,0.587882,2.6859, +-0.489729,0.868263,-0.815782,-1.96803,0.587978,2.68604, +-0.489599,0.868402,-0.815829,-1.9679,0.588077,2.68618, +-0.48947,0.86854,-0.815877,-1.96776,0.588177,2.68632, +-0.489342,0.868678,-0.815927,-1.96762,0.588279,2.68646, +-0.489214,0.868815,-0.815979,-1.96748,0.588382,2.68659, +-0.489088,0.868951,-0.816033,-1.96735,0.588486,2.68673, +-0.488963,0.869086,-0.816087,-1.96721,0.588591,2.68686, +-0.48884,0.86922,-0.816143,-1.96708,0.588697,2.687, +-0.488717,0.869353,-0.816201,-1.96694,0.588804,2.68713, +-0.488596,0.869485,-0.816261,-1.96681,0.588913,2.68726, +-0.488475,0.869617,-0.816322,-1.96668,0.589023,2.68739, +-0.488355,0.869747,-0.816386,-1.96655,0.589135,2.68753, +-0.488237,0.869877,-0.816451,-1.96642,0.589247,2.68766, +-0.488121,0.870006,-0.816517,-1.96629,0.58936,2.68778, +-0.488006,0.870133,-0.816585,-1.96616,0.589473,2.68791, +-0.487893,0.870259,-0.816654,-1.96604,0.589588,2.68804, +-0.487782,0.870384,-0.816724,-1.96591,0.589703,2.68816, +-0.487671,0.870508,-0.816797,-1.96579,0.589819,2.68829, +-0.487562,0.870631,-0.816871,-1.96567,0.589936,2.68841, +-0.487454,0.870753,-0.816947,-1.96554,0.590054,2.68853, +-0.487348,0.870874,-0.817024,-1.96542,0.590173,2.68865, +-0.487243,0.870994,-0.817103,-1.9653,0.590293,2.68877, +-0.48714,0.871112,-0.817183,-1.96518,0.590412,2.68889, +-0.487039,0.871229,-0.817264,-1.96507,0.590532,2.68901, +-0.486941,0.871345,-0.817346,-1.96495,0.590653,2.68912, +-0.486846,0.87146,-0.81743,-1.96484,0.590775,2.68924, +-0.486754,0.871574,-0.817516,-1.96472,0.590897,2.68935, +-0.486665,0.871687,-0.817603,-1.96461,0.591021,2.68946, +-0.486579,0.871799,-0.817691,-1.9645,0.591145,2.68958, +-0.486497,0.871909,-0.817781,-1.96439,0.591269,2.68969, +-0.486417,0.872018,-0.817871,-1.96428,0.591394,2.6898, +-0.48634,0.872125,-0.817963,-1.96417,0.591518,2.6899, +-0.486266,0.872231,-0.818055,-1.96407,0.591644,2.69001, +-0.486194,0.872337,-0.818149,-1.96396,0.59177,2.69012, +-0.486123,0.872441,-0.818245,-1.96386,0.591897,2.69022, +-0.486055,0.872545,-0.818342,-1.96375,0.592024,2.69032, +-0.485988,0.872647,-0.81844,-1.96365,0.592153,2.69043, +-0.485922,0.872748,-0.818539,-1.96355,0.592281,2.69053, +-0.485857,0.872848,-0.818638,-1.96345,0.592409,2.69063, +-0.485793,0.872945,-0.818738,-1.96335,0.592538,2.69072, +-0.485731,0.873041,-0.81884,-1.96326,0.592667,2.69082, +-0.48567,0.873134,-0.818942,-1.96316,0.592797,2.69091, +-0.485609,0.873224,-0.819046,-1.96307,0.592928,2.691, +-0.485549,0.873311,-0.819152,-1.96299,0.593059,2.69109, +-0.485489,0.873395,-0.819258,-1.9629,0.593191,2.69117, +-0.485429,0.873477,-0.819365,-1.96282,0.593322,2.69125, +-0.485369,0.873555,-0.819472,-1.96274,0.593454,2.69133, +-0.485309,0.87363,-0.81958,-1.96267,0.593586,2.69141, +-0.48525,0.873703,-0.819689,-1.96259,0.593719,2.69148, +-0.485191,0.873774,-0.819799,-1.96252,0.593852,2.69155, +-0.485134,0.873843,-0.81991,-1.96245,0.593986,2.69162, +-0.485078,0.873911,-0.820023,-1.96239,0.594121,2.69169, +-0.485022,0.873977,-0.820136,-1.96232,0.594256,2.69175, +-0.484967,0.874041,-0.82025,-1.96226,0.594391,2.69182, +-0.484913,0.874105,-0.820364,-1.96219,0.594526,2.69188, +-0.484859,0.874168,-0.820479,-1.96213,0.594661,2.69195, +-0.484806,0.87423,-0.820595,-1.96207,0.594797,2.69201, +-0.484754,0.874291,-0.820712,-1.96201,0.594933,2.69207, +-0.484703,0.874351,-0.82083,-1.96195,0.59507,2.69213, +-0.484654,0.874411,-0.820949,-1.96189,0.595208,2.69219, +-0.484605,0.874472,-0.821068,-1.96183,0.595346,2.69225, +-0.484556,0.874532,-0.821189,-1.96177,0.595484,2.69231, +-0.484508,0.874592,-0.821309,-1.9617,0.595623,2.69237, +-0.484461,0.874652,-0.821431,-1.96164,0.595761,2.69243, +-0.484414,0.874712,-0.821553,-1.96159,0.595899,2.69249, +-0.484368,0.87477,-0.821676,-1.96153,0.596039,2.69255, +-0.484324,0.874828,-0.8218,-1.96147,0.596179,2.69261, +-0.48428,0.874885,-0.821925,-1.96141,0.596319,2.69266, +-0.484238,0.874941,-0.822051,-1.96136,0.59646,2.69272, +-0.484196,0.874997,-0.822177,-1.9613,0.596601,2.69277, +-0.484155,0.875052,-0.822304,-1.96124,0.596742,2.69283, +-0.484114,0.875107,-0.822431,-1.96119,0.596883,2.69289, +-0.484075,0.875161,-0.822559,-1.96114,0.597025,2.69294, +-0.484037,0.875215,-0.822688,-1.96108,0.597167,2.69299, +-0.484,0.875267,-0.822818,-1.96103,0.597309,2.69305, +-0.483964,0.875318,-0.822949,-1.96098,0.597452,2.6931, +-0.483929,0.875369,-0.823081,-1.96093,0.597596,2.69315, +-0.483894,0.875418,-0.823213,-1.96088,0.59774,2.6932, +-0.483861,0.875468,-0.823345,-1.96083,0.597883,2.69325, +-0.483827,0.875517,-0.823478,-1.96078,0.598026,2.6933, +-0.483795,0.875565,-0.823611,-1.96073,0.59817,2.69334, +-0.483764,0.875613,-0.823746,-1.96068,0.598315,2.69339, +-0.483734,0.875659,-0.823881,-1.96064,0.59846,2.69344, +-0.483705,0.875704,-0.824017,-1.96059,0.598605,2.69348, +-0.483678,0.875748,-0.824154,-1.96055,0.598751,2.69353, +-0.483651,0.875791,-0.824292,-1.96051,0.598896,2.69357, +-0.483625,0.875834,-0.824429,-1.96046,0.599042,2.69361, +-0.483599,0.875877,-0.824567,-1.96042,0.599187,2.69365, +-0.483574,0.875918,-0.824705,-1.96038,0.599333,2.6937, +-0.483551,0.875959,-0.824845,-1.96034,0.599479,2.69374, +-0.483529,0.875998,-0.824985,-1.9603,0.599626,2.69378, +-0.483508,0.876036,-0.825126,-1.96026,0.599772,2.69381, +-0.483488,0.876073,-0.825267,-1.96022,0.599919,2.69385, +-0.483469,0.876109,-0.825409,-1.96019,0.600065,2.69389, +-0.48345,0.876145,-0.82555,-1.96015,0.600212,2.69392, +-0.483432,0.87618,-0.825692,-1.96012,0.600358,2.69396, +-0.483415,0.876214,-0.825834,-1.96008,0.600505,2.69399, +-0.4834,0.876248,-0.825977,-1.96005,0.600651,2.69403, +-0.483385,0.876279,-0.826121,-1.96002,0.600798,2.69406, +-0.483372,0.87631,-0.826266,-1.95999,0.600945,2.69409, +-0.48336,0.876339,-0.82641,-1.95996,0.601092,2.69412, +-0.483349,0.876368,-0.826555,-1.95993,0.601238,2.69415, +-0.483338,0.876396,-0.8267,-1.9599,0.601385,2.69417, +-0.483328,0.876424,-0.826845,-1.95987,0.601531,2.6942, +-0.483319,0.876451,-0.82699,-1.95985,0.601677,2.69423, +-0.483311,0.876476,-0.827136,-1.95982,0.601824,2.69425, +-0.483304,0.8765,-0.827283,-1.9598,0.60197,2.69428, +-0.483299,0.876523,-0.82743,-1.95977,0.602116,2.6943, +-0.483294,0.876545,-0.827577,-1.95975,0.602262,2.69432, +-0.483291,0.876566,-0.827724,-1.95973,0.602408,2.69434, +-0.483287,0.876586,-0.827872,-1.95971,0.602554,2.69436, +-0.483285,0.876606,-0.828019,-1.95969,0.6027,2.69438, +-0.483283,0.876625,-0.828166,-1.95967,0.602845,2.6944, +-0.483283,0.876642,-0.828314,-1.95965,0.60299,2.69442, +-0.483284,0.876658,-0.828462,-1.95964,0.603135,2.69444, +-0.483286,0.876673,-0.82861,-1.95962,0.603279,2.69445, +-0.483288,0.876686,-0.828758,-1.95961,0.603422,2.69446, +-0.483292,0.876698,-0.828906,-1.9596,0.603564,2.69448, +-0.483295,0.876709,-0.829052,-1.95959,0.603705,2.69449, +-0.483299,0.876719,-0.829198,-1.95958,0.603845,2.6945, +-0.483304,0.876728,-0.829343,-1.95957,0.603984,2.69451, +-0.48331,0.876735,-0.829488,-1.95956,0.604123,2.69451, +-0.483318,0.876742,-0.829633,-1.95956,0.604261,2.69452, +-0.483327,0.876747,-0.829778,-1.95955,0.604399,2.69453, +-0.483337,0.876753,-0.829923,-1.95954,0.604537,2.69453, +-0.483348,0.876758,-0.830068,-1.95954,0.604676,2.69454, +-0.483361,0.876763,-0.830213,-1.95953,0.604814,2.69454, +-0.483374,0.876767,-0.830358,-1.95953,0.604953,2.69455, +-0.483389,0.876771,-0.830503,-1.95953,0.605092,2.69455, +-0.483405,0.876775,-0.83065,-1.95952,0.605231,2.69455, +-0.483424,0.876777,-0.830797,-1.95952,0.605369,2.69456, +-0.483443,0.876779,-0.830945,-1.95952,0.605508,2.69456, +-0.483464,0.876778,-0.831093,-1.95952,0.605647,2.69456, +-0.483486,0.876777,-0.831241,-1.95952,0.605785,2.69456, +-0.483509,0.876775,-0.831389,-1.95952,0.605924,2.69455, +-0.483533,0.876773,-0.831538,-1.95952,0.606062,2.69455, +-0.483558,0.876768,-0.831686,-1.95953,0.6062,2.69455, +-0.483585,0.876763,-0.831835,-1.95953,0.606338,2.69454, +-0.483613,0.876755,-0.831985,-1.95954,0.606476,2.69453, +-0.483643,0.876747,-0.832135,-1.95955,0.606613,2.69452, +-0.483675,0.876737,-0.832285,-1.95956,0.606751,2.69452, +-0.483707,0.876727,-0.832436,-1.95957,0.606888,2.6945, +-0.483741,0.876716,-0.832586,-1.95958,0.607026,2.69449, +-0.483776,0.876704,-0.832736,-1.95959,0.607163,2.69448, +-0.483812,0.876691,-0.832886,-1.95961,0.6073,2.69447, +-0.48385,0.876676,-0.833036,-1.95962,0.607436,2.69445, +-0.48389,0.876661,-0.833187,-1.95964,0.607571,2.69444, +-0.483932,0.876643,-0.833338,-1.95965,0.607706,2.69442, +-0.483975,0.876624,-0.833489,-1.95967,0.607842,2.6944, +-0.48402,0.876605,-0.83364,-1.95969,0.607977,2.69438, +-0.484066,0.876584,-0.833791,-1.95971,0.608112,2.69436, +-0.484113,0.876562,-0.833941,-1.95974,0.608247,2.69434, +-0.484161,0.876539,-0.834092,-1.95976,0.608381,2.69432, +-0.484212,0.876514,-0.834242,-1.95978,0.608515,2.69429, +-0.484265,0.876487,-0.834393,-1.95981,0.608648,2.69426, +-0.484319,0.876459,-0.834544,-1.95984,0.60878,2.69424, +-0.484375,0.876429,-0.834695,-1.95987,0.608912,2.69421, +-0.484433,0.876397,-0.834845,-1.9599,0.609043,2.69418, +-0.484492,0.876365,-0.834995,-1.95993,0.609175,2.69414, +-0.484552,0.876332,-0.835145,-1.95997,0.609306,2.69411, +-0.484615,0.876297,-0.835294,-1.96,0.609437,2.69407, +-0.484679,0.87626,-0.835444,-1.96004,0.609567,2.69404, +-0.484745,0.876221,-0.835593,-1.96008,0.609696,2.694, +-0.484813,0.876181,-0.835743,-1.96012,0.609824,2.69396, +-0.484883,0.876138,-0.835892,-1.96016,0.609951,2.69392, +-0.484955,0.876095,-0.836041,-1.9602,0.610078,2.69387, +-0.485028,0.87605,-0.83619,-1.96025,0.610205,2.69383, +-0.485103,0.876004,-0.836337,-1.96029,0.610332,2.69378, +-0.485179,0.875956,-0.836485,-1.96034,0.610457,2.69373, +-0.485258,0.875906,-0.836632,-1.96039,0.610582,2.69368, +-0.485339,0.875854,-0.83678,-1.96044,0.610705,2.69363, +-0.485422,0.875799,-0.836927,-1.9605,0.610828,2.69358, +-0.485507,0.875743,-0.837074,-1.96055,0.61095,2.69352, +-0.485594,0.875686,-0.83722,-1.96061,0.611072,2.69346, +-0.485682,0.875627,-0.837366,-1.96067,0.611194,2.69341, +-0.485772,0.875566,-0.83751,-1.96073,0.611315,2.69334, +-0.485864,0.875504,-0.837653,-1.96079,0.611437,2.69328, +-0.485958,0.875439,-0.837794,-1.96086,0.61156,2.69322, +-0.486054,0.875373,-0.837934,-1.96092,0.611682,2.69315, +-0.486152,0.875304,-0.838073,-1.96099,0.611805,2.69308, +-0.486252,0.875234,-0.83821,-1.96106,0.611928,2.69301, +-0.486352,0.875162,-0.838347,-1.96114,0.61205,2.69294, +-0.486454,0.875089,-0.838483,-1.96121,0.612171,2.69287, +-0.486557,0.875014,-0.838618,-1.96128,0.612292,2.69279, +-0.486662,0.874938,-0.838752,-1.96136,0.612413,2.69272, +-0.486768,0.87486,-0.838885,-1.96144,0.612533,2.69264, +-0.486876,0.87478,-0.839016,-1.96152,0.612653,2.69256, +-0.486985,0.874698,-0.839146,-1.9616,0.612772,2.69248, +-0.487095,0.874614,-0.839275,-1.96168,0.612889,2.69239, +-0.487207,0.874529,-0.839402,-1.96177,0.613006,2.69231, +-0.487318,0.874443,-0.839528,-1.96185,0.61312,2.69222, +-0.487431,0.874356,-0.839653,-1.96194,0.613233,2.69213, +-0.487544,0.874267,-0.839777,-1.96203,0.613345,2.69205, +-0.487659,0.874177,-0.8399,-1.96212,0.613456,2.69195, +-0.487776,0.874084,-0.840021,-1.96221,0.613565,2.69186, +-0.487893,0.87399,-0.84014,-1.96231,0.613673,2.69177, +-0.488011,0.873895,-0.840259,-1.9624,0.613779,2.69167, +-0.488129,0.873799,-0.840377,-1.9625,0.613883,2.69158, +-0.488248,0.873702,-0.840494,-1.9626,0.613985,2.69148, +-0.488367,0.873604,-0.84061,-1.96269,0.614084,2.69138, +-0.488488,0.873505,-0.840726,-1.96279,0.61418,2.69128, +-0.488609,0.873404,-0.84084,-1.96289,0.614273,2.69118, +-0.488731,0.873301,-0.840953,-1.963,0.614362,2.69108, +-0.488854,0.873198,-0.841064,-1.9631,0.614448,2.69098, +-0.488978,0.873093,-0.841174,-1.9632,0.614531,2.69087, +-0.489102,0.872987,-0.841283,-1.96331,0.614611,2.69077, +-0.489226,0.872881,-0.841392,-1.96342,0.614687,2.69066, +-0.48935,0.872775,-0.8415,-1.96352,0.614761,2.69055, +-0.489475,0.872667,-0.841606,-1.96363,0.614832,2.69044, +-0.489601,0.872558,-0.841711,-1.96374,0.614901,2.69034, +-0.489728,0.872447,-0.841815,-1.96385,0.614967,2.69023, +-0.489856,0.872336,-0.841917,-1.96396,0.615032,2.69011, +-0.489984,0.872224,-0.842018,-1.96407,0.615095,2.69, +-0.490112,0.872111,-0.842119,-1.96419,0.615157,2.68989, +-0.49024,0.871997,-0.842219,-1.9643,0.615218,2.68978, +-0.490369,0.871884,-0.842318,-1.96441,0.615278,2.68966, +-0.490498,0.871769,-0.842416,-1.96453,0.615336,2.68955, +-0.490627,0.871653,-0.842513,-1.96464,0.615393,2.68943, +-0.490758,0.871536,-0.842608,-1.96476,0.615449,2.68931, +-0.490889,0.871418,-0.842702,-1.96488,0.615504,2.6892, +-0.491021,0.8713,-0.842795,-1.965,0.615559,2.68908, +-0.491153,0.871181,-0.842888,-1.96512,0.615614,2.68896, +-0.491284,0.871061,-0.842979,-1.96524,0.615668,2.68884, +-0.491416,0.870942,-0.84307,-1.96536,0.615723,2.68872, +-0.491549,0.870822,-0.843161,-1.96548,0.615777,2.6886, +-0.491682,0.8707,-0.843249,-1.9656,0.61583,2.68848, +-0.491816,0.870578,-0.843337,-1.96572,0.615882,2.68836, +-0.49195,0.870455,-0.843423,-1.96584,0.615933,2.68823, +-0.492085,0.870331,-0.843508,-1.96597,0.615983,2.68811, +-0.49222,0.870207,-0.843593,-1.96609,0.616033,2.68798, +-0.492355,0.870082,-0.843677,-1.96622,0.616082,2.68786, +-0.49249,0.869957,-0.84376,-1.96634,0.61613,2.68773, +-0.492626,0.869831,-0.843842,-1.96647,0.616177,2.68761, +-0.492762,0.869705,-0.843923,-1.96659,0.616223,2.68748, +-0.492899,0.869577,-0.844003,-1.96672,0.616267,2.68736, +-0.493036,0.869449,-0.844081,-1.96685,0.616311,2.68723, +-0.493174,0.86932,-0.844159,-1.96698,0.616354,2.6871, +-0.493312,0.869191,-0.844235,-1.96711,0.616396,2.68697, +-0.49345,0.869061,-0.844311,-1.96724,0.616438,2.68684, +-0.493588,0.868932,-0.844387,-1.96737,0.61648,2.68671, +-0.493726,0.868802,-0.844462,-1.9675,0.61652,2.68658, +-0.493865,0.868671,-0.844535,-1.96763,0.61656,2.68645, +-0.494005,0.868539,-0.844607,-1.96776,0.616598,2.68632, +-0.494145,0.868406,-0.844678,-1.96789,0.616636,2.68618, +-0.494286,0.868273,-0.844747,-1.96802,0.616672,2.68605, +-0.494427,0.868139,-0.844817,-1.96816,0.616707,2.68592, +-0.494567,0.868005,-0.844885,-1.96829,0.616742,2.68578, +-0.494708,0.867871,-0.844953,-1.96843,0.616776,2.68565, +-0.494849,0.867736,-0.84502,-1.96856,0.61681,2.68551, +-0.494991,0.8676,-0.845086,-1.9687,0.616842,2.68538, +-0.495133,0.867464,-0.84515,-1.96883,0.616872,2.68524, +-0.495276,0.867326,-0.845213,-1.96897,0.616902,2.6851, +-0.495419,0.867189,-0.845275,-1.96911,0.61693,2.68497, +-0.495562,0.867051,-0.845337,-1.96925,0.616958,2.68483, +-0.495706,0.866913,-0.845398,-1.96938,0.616986,2.68469, +-0.495849,0.866774,-0.845458,-1.96952,0.617013,2.68455, +-0.495992,0.866636,-0.845517,-1.96966,0.617038,2.68441, +-0.496136,0.866496,-0.845575,-1.9698,0.617063,2.68427, +-0.496281,0.866356,-0.845632,-1.96994,0.617086,2.68413, +-0.496425,0.866215,-0.845687,-1.97008,0.617108,2.68399, +-0.49657,0.866074,-0.845742,-1.97022,0.61713,2.68385, +-0.496715,0.865932,-0.845796,-1.97036,0.61715,2.68371, +-0.49686,0.865791,-0.845849,-1.97051,0.61717,2.68357, +-0.497004,0.865649,-0.845901,-1.97065,0.617189,2.68343, +-0.497149,0.865507,-0.845953,-1.97079,0.617207,2.68328, +-0.497295,0.865364,-0.846003,-1.97093,0.617224,2.68314, +-0.497441,0.865221,-0.846051,-1.97108,0.617239,2.683, +-0.497587,0.865077,-0.846099,-1.97122,0.617254,2.68286, +-0.497733,0.864932,-0.846145,-1.97136,0.617267,2.68271, +-0.497879,0.864788,-0.846191,-1.97151,0.61728,2.68257, +-0.498025,0.864644,-0.846236,-1.97165,0.617292,2.68242, +-0.498171,0.864499,-0.846281,-1.9718,0.617303,2.68228, +-0.498317,0.864355,-0.846324,-1.97194,0.617314,2.68213, +-0.498463,0.86421,-0.846366,-1.97209,0.617323,2.68199, +-0.49861,0.864064,-0.846407,-1.97223,0.617331,2.68184, +-0.498756,0.863918,-0.846447,-1.97238,0.617338,2.6817, +-0.498903,0.863771,-0.846485,-1.97253,0.617344,2.68155, +-0.49905,0.863625,-0.846523,-1.97267,0.617349,2.6814, +-0.499196,0.863478,-0.84656,-1.97282,0.617353,2.68126, +-0.499342,0.863332,-0.846596,-1.97297,0.617357,2.68111, +-0.499489,0.863185,-0.846632,-1.97311,0.61736,2.68096, +-0.499635,0.863037,-0.846666,-1.97326,0.617362,2.68082, +-0.499782,0.86289,-0.846699,-1.97341,0.617362,2.68067, +-0.499928,0.862741,-0.846729,-1.97355,0.617361,2.68052, +-0.500074,0.862593,-0.846758,-1.9737,0.61736,2.68037, +-0.500219,0.862445,-0.846785,-1.97385,0.617357,2.68022, +-0.500363,0.862298,-0.846809,-1.974,0.617355,2.68008, +-0.500506,0.862151,-0.846832,-1.97415,0.617351,2.67993, +-0.500649,0.862004,-0.846853,-1.97429,0.617347,2.67978, +-0.500791,0.861858,-0.846872,-1.97444,0.617341,2.67964, +-0.500934,0.861712,-0.84689,-1.97459,0.617335,2.67949, +-0.501077,0.861566,-0.846907,-1.97473,0.617326,2.67934, +-0.50122,0.86142,-0.846924,-1.97488,0.617317,2.6792, +-0.501363,0.861274,-0.84694,-1.97502,0.617307,2.67905, +-0.501507,0.861128,-0.846956,-1.97517,0.617296,2.67891, +-0.501651,0.860981,-0.846972,-1.97532,0.617284,2.67876, +-0.501795,0.860835,-0.846987,-1.97546,0.617271,2.67861, +-0.501939,0.860687,-0.847001,-1.97561,0.617256,2.67847, +-0.502082,0.860539,-0.847016,-1.97576,0.61724,2.67832, +-0.502226,0.860391,-0.84703,-1.97591,0.617223,2.67817, +-0.50237,0.860242,-0.847044,-1.97606,0.617204,2.67802, +-0.502514,0.860093,-0.847059,-1.9762,0.617184,2.67787, +-0.502658,0.859945,-0.847073,-1.97635,0.617164,2.67772, +-0.502802,0.859796,-0.847087,-1.9765,0.617142,2.67757, +-0.502945,0.859648,-0.8471,-1.97665,0.617119,2.67743, +-0.503089,0.859498,-0.847113,-1.9768,0.617095,2.67728, +-0.503233,0.859348,-0.847125,-1.97695,0.617068,2.67713, +-0.503376,0.859198,-0.847136,-1.9771,0.617041,2.67698, +-0.50352,0.859048,-0.847145,-1.97725,0.617011,2.67683, +-0.503663,0.858898,-0.847153,-1.9774,0.616981,2.67668, +-0.503807,0.858748,-0.84716,-1.97755,0.616949,2.67653, +-0.50395,0.858598,-0.847165,-1.9777,0.616917,2.67638, +-0.504092,0.858449,-0.847169,-1.97785,0.616883,2.67623, +-0.504234,0.858299,-0.847172,-1.978,0.616847,2.67608, +-0.504376,0.858148,-0.847173,-1.97815,0.616809,2.67593, +-0.504519,0.857998,-0.847173,-1.9783,0.61677,2.67578, +-0.504661,0.857847,-0.847172,-1.97845,0.616729,2.67563, +-0.504803,0.857697,-0.847171,-1.9786,0.616686,2.67547, +-0.504945,0.857547,-0.847169,-1.97875,0.616643,2.67533, +-0.505086,0.857397,-0.847166,-1.9789,0.616598,2.67518, +-0.505227,0.857248,-0.847162,-1.97905,0.616552,2.67503, +-0.505367,0.857098,-0.847157,-1.9792,0.616504,2.67488, +-0.505507,0.856948,-0.847151,-1.97935,0.616453,2.67473, +-0.505646,0.856798,-0.847143,-1.9795,0.616401,2.67458, +-0.505786,0.856648,-0.847134,-1.97965,0.616347,2.67443, +-0.505925,0.856499,-0.847124,-1.9798,0.616292,2.67428, +-0.506064,0.85635,-0.847113,-1.97995,0.616235,2.67413, +-0.506203,0.856202,-0.847101,-1.9801,0.616177,2.67398, +-0.506341,0.856054,-0.847088,-1.98024,0.616118,2.67383, +-0.506478,0.855905,-0.847073,-1.98039,0.616056,2.67368, +-0.506615,0.855757,-0.847057,-1.98054,0.615992,2.67354, +-0.506751,0.855609,-0.847039,-1.98069,0.615926,2.67339, +-0.506887,0.855461,-0.847019,-1.98084,0.615858,2.67324, +-0.507022,0.855313,-0.846998,-1.98098,0.615789,2.67309, +-0.507158,0.855166,-0.846977,-1.98113,0.615718,2.67294, +-0.507293,0.85502,-0.846954,-1.98128,0.615645,2.6728, +-0.507427,0.854874,-0.84693,-1.98142,0.615571,2.67265, +-0.50756,0.854728,-0.846904,-1.98157,0.615495,2.67251, +-0.507693,0.854582,-0.846876,-1.98171,0.615416,2.67236, +-0.507825,0.854437,-0.846846,-1.98186,0.615335,2.67221, +-0.507956,0.854291,-0.846815,-1.98201,0.615252,2.67207, +-0.508088,0.854147,-0.846782,-1.98215,0.615167,2.67193, +-0.508219,0.854003,-0.846748,-1.98229,0.615081,2.67178, +-0.50835,0.853861,-0.846713,-1.98244,0.614993,2.67164, +-0.508479,0.853719,-0.846676,-1.98258,0.614903,2.6715, +-0.508608,0.85358,-0.846637,-1.98272,0.614811,2.67136, +-0.508736,0.853442,-0.846596,-1.98285,0.614717,2.67122, +-0.508861,0.853306,-0.846553,-1.98299,0.614621,2.67108, +-0.508985,0.853171,-0.846508,-1.98313,0.614523,2.67095, +-0.509108,0.853036,-0.846463,-1.98326,0.614425,2.67081, +-0.509228,0.852903,-0.846415,-1.98339,0.614325,2.67068, +-0.509347,0.85277,-0.846367,-1.98353,0.614224,2.67055, +-0.509464,0.852639,-0.846316,-1.98366,0.614121,2.67042, +-0.509578,0.852509,-0.846264,-1.98379,0.614017,2.67029, +-0.509691,0.85238,-0.84621,-1.98392,0.613911,2.67016, +-0.509803,0.852254,-0.846154,-1.98404,0.613803,2.67003, +-0.509913,0.852128,-0.846096,-1.98417,0.613695,2.66991, +-0.510022,0.852004,-0.846036,-1.98429,0.613586,2.66978, +-0.510131,0.85188,-0.845976,-1.98442,0.613476,2.66966, +-0.510238,0.851758,-0.845914,-1.98454,0.613365,2.66954, +-0.510345,0.851637,-0.84585,-1.98466,0.613253,2.66942, +-0.51045,0.851517,-0.845785,-1.98478,0.61314,2.6693, +-0.510553,0.851399,-0.845717,-1.9849,0.613026,2.66918, +-0.510655,0.851283,-0.845648,-1.98501,0.61291,2.66906, +-0.510755,0.851167,-0.845577,-1.98513,0.612794,2.66895, +-0.510855,0.851052,-0.845505,-1.98524,0.612677,2.66883, +-0.510954,0.850938,-0.845431,-1.98536,0.61256,2.66872, +-0.511052,0.850825,-0.845357,-1.98547,0.612443,2.6686, +-0.511149,0.850713,-0.845281,-1.98558,0.612324,2.66849, +-0.511244,0.850602,-0.845202,-1.9857,0.612205,2.66838, +-0.511338,0.850493,-0.845123,-1.9858,0.612084,2.66827, +-0.51143,0.850385,-0.845041,-1.98591,0.611963,2.66816, +-0.511521,0.850278,-0.844958,-1.98602,0.611841,2.66806, +-0.511611,0.850172,-0.844874,-1.98613,0.611719,2.66795, +-0.511701,0.850067,-0.844789,-1.98623,0.611596,2.66784, +-0.511789,0.849963,-0.844703,-1.98633,0.611474,2.66774, +-0.511877,0.84986,-0.844615,-1.98644,0.61135,2.66764, +-0.511963,0.849758,-0.844526,-1.98654,0.611226,2.66754, +-0.512047,0.849658,-0.844435,-1.98664,0.611101,2.66744, +-0.51213,0.849559,-0.844343,-1.98674,0.610975,2.66734, +-0.512212,0.849461,-0.84425,-1.98684,0.610848,2.66724, +-0.512294,0.849364,-0.844155,-1.98693,0.610722,2.66714, +-0.512374,0.849268,-0.84406,-1.98703,0.610595,2.66705, +-0.512454,0.849172,-0.843964,-1.98712,0.610468,2.66695, +-0.512532,0.849078,-0.843867,-1.98722,0.610341,2.66686, +-0.512609,0.848984,-0.843769,-1.98731,0.610212,2.66676, +-0.512685,0.848892,-0.843669,-1.9874,0.610083,2.66667, +-0.51276,0.848802,-0.843567,-1.9875,0.609953,2.66658, +-0.512833,0.848712,-0.843465,-1.98759,0.609823,2.66649, +-0.512905,0.848623,-0.843362,-1.98767,0.609693,2.6664, +-0.512977,0.848535,-0.843258,-1.98776,0.609562,2.66631, +-0.513048,0.848447,-0.843154,-1.98785,0.609432,2.66623, +-0.513118,0.848361,-0.843049,-1.98794,0.609301,2.66614, +-0.513187,0.848275,-0.842942,-1.98802,0.609169,2.66605, +-0.513254,0.848191,-0.842834,-1.98811,0.609037,2.66597, +-0.51332,0.848109,-0.842725,-1.98819,0.608903,2.66589, +-0.513385,0.848027,-0.842616,-1.98827,0.60877,2.66581, +-0.51345,0.847946,-0.842505,-1.98835,0.608636,2.66572, +-0.513513,0.847865,-0.842394,-1.98843,0.608502,2.66564, +-0.513576,0.847786,-0.842282,-1.98851,0.608369,2.66556, +-0.513638,0.847707,-0.84217,-1.98859,0.608234,2.66549, +-0.513698,0.847629,-0.842056,-1.98867,0.608099,2.66541, +-0.513757,0.847553,-0.841942,-1.98874,0.607964,2.66533, +-0.513815,0.847478,-0.841826,-1.98882,0.607827,2.66526, +-0.513872,0.847404,-0.841709,-1.98889,0.607691,2.66518, +-0.513928,0.847331,-0.841592,-1.98897,0.607554,2.66511, +-0.513983,0.847258,-0.841474,-1.98904,0.607417,2.66504, +-0.514038,0.847186,-0.841356,-1.98911,0.60728,2.66496, +-0.514092,0.847115,-0.841237,-1.98918,0.607143,2.66489, +-0.514144,0.847046,-0.841117,-1.98925,0.607005,2.66482, +-0.514195,0.846977,-0.840996,-1.98932,0.606866,2.66476, +-0.514245,0.84691,-0.840874,-1.98939,0.606727,2.66469, +-0.514293,0.846844,-0.840751,-1.98945,0.606587,2.66462, +-0.514341,0.846778,-0.840627,-1.98952,0.606448,2.66456, +-0.514389,0.846713,-0.840503,-1.98958,0.606308,2.66449, +-0.514435,0.846649,-0.840379,-1.98965,0.606168,2.66443, +-0.514481,0.846586,-0.840254,-1.98971,0.606028,2.66436, +-0.514525,0.846524,-0.840128,-1.98977,0.605887,2.6643, +-0.514568,0.846463,-0.84,-1.98983,0.605746,2.66424, +-0.51461,0.846403,-0.839872,-1.98989,0.605604,2.66418, +-0.514651,0.846345,-0.839743,-1.98995,0.605462,2.66412, +-0.514691,0.846287,-0.839613,-1.99001,0.605319,2.66407, +-0.51473,0.84623,-0.839483,-1.99007,0.605177,2.66401, +-0.514769,0.846173,-0.839353,-1.99012,0.605035,2.66395, +-0.514806,0.846117,-0.839221,-1.99018,0.604892,2.6639, +-0.514843,0.846063,-0.839089,-1.99023,0.604749,2.66384, +-0.514878,0.84601,-0.838955,-1.99029,0.604605,2.66379, +-0.514911,0.845958,-0.838821,-1.99034,0.60446,2.66374, +-0.514944,0.845908,-0.838687,-1.99039,0.604316,2.66369, +-0.514976,0.845857,-0.838552,-1.99044,0.604171,2.66364, +-0.515007,0.845808,-0.838417,-1.99049,0.604026,2.66359, +-0.515038,0.845759,-0.838282,-1.99054,0.603882,2.66354, +-0.515068,0.845711,-0.838147,-1.99059,0.603737,2.66349, +-0.515096,0.845665,-0.838011,-1.99063,0.603592,2.66344, +-0.515123,0.845619,-0.837873,-1.99068,0.603446,2.6634, +-0.515149,0.845575,-0.837735,-1.99072,0.6033,2.66335, +-0.515173,0.845532,-0.837597,-1.99076,0.603155,2.66331, +-0.515197,0.84549,-0.837458,-1.99081,0.603009,2.66327, +-0.515221,0.845449,-0.837319,-1.99085,0.602864,2.66323, +-0.515243,0.845408,-0.837179,-1.99089,0.602718,2.66319, +-0.515265,0.845368,-0.837039,-1.99093,0.602573,2.66315, +-0.515285,0.84533,-0.836899,-1.99097,0.602426,2.66311, +-0.515304,0.845292,-0.836757,-1.991,0.60228,2.66307, +-0.515322,0.845257,-0.836615,-1.99104,0.602133,2.66303, +-0.515338,0.845222,-0.836472,-1.99108,0.601987,2.663, +-0.515354,0.845188,-0.836329,-1.99111,0.601841,2.66297, +-0.515369,0.845154,-0.836186,-1.99114,0.601694,2.66293, +-0.515384,0.845121,-0.836043,-1.99118,0.601548,2.6629, +-0.515398,0.84509,-0.835899,-1.99121,0.601401,2.66287, +-0.51541,0.845059,-0.835755,-1.99124,0.601255,2.66284, +-0.515421,0.84503,-0.83561,-1.99127,0.601109,2.66281, +-0.515431,0.845002,-0.835464,-1.99129,0.600962,2.66278, +-0.515439,0.844976,-0.835318,-1.99132,0.600816,2.66275, +-0.515447,0.844949,-0.835172,-1.99135,0.600669,2.66273, +-0.515455,0.844924,-0.835026,-1.99137,0.600523,2.6627, +-0.515462,0.844899,-0.83488,-1.9914,0.600377,2.66268, +-0.515467,0.844876,-0.834734,-1.99142,0.600232,2.66265, +-0.515472,0.844853,-0.834587,-1.99144,0.600086,2.66263, +-0.515475,0.844832,-0.834439,-1.99146,0.59994,2.66261, +-0.515477,0.844813,-0.834291,-1.99148,0.599795,2.66259, +-0.515478,0.844794,-0.834143,-1.9915,0.599649,2.66257, +-0.515478,0.844776,-0.833994,-1.99152,0.599503,2.66255, +-0.515478,0.844759,-0.833846,-1.99154,0.599358,2.66254, +-0.515477,0.844742,-0.833698,-1.99155,0.599213,2.66252, +-0.515476,0.844727,-0.83355,-1.99157,0.599068,2.6625, +-0.515473,0.844713,-0.833401,-1.99158,0.598924,2.66249, +-0.515468,0.8447,-0.833252,-1.9916,0.598779,2.66248, +-0.515463,0.844688,-0.833102,-1.99161,0.598635,2.66247, +-0.515456,0.844678,-0.832952,-1.99162,0.598491,2.66246, +-0.515449,0.844668,-0.832802,-1.99163,0.598346,2.66245, +-0.51544,0.844659,-0.832652,-1.99164,0.598202,2.66244, +-0.515431,0.84465,-0.832503,-1.99165,0.598059,2.66243, +-0.515421,0.844643,-0.832353,-1.99165,0.597915,2.66242, +-0.51541,0.844636,-0.832203,-1.99166,0.597773,2.66241, +-0.515397,0.844631,-0.832052,-1.99167,0.597631,2.66241, +-0.515383,0.844628,-0.831901,-1.99167,0.597488,2.66241, +-0.515367,0.844625,-0.83175,-1.99167,0.597346,2.6624, +-0.515351,0.844623,-0.8316,-1.99167,0.597204,2.6624, +-0.515333,0.844622,-0.831449,-1.99168,0.597061,2.6624, +-0.515315,0.844621,-0.831299,-1.99168,0.59692,2.6624, +-0.515295,0.844621,-0.831148,-1.99168,0.596778,2.6624, +-0.515274,0.844623,-0.830998,-1.99167,0.596638,2.6624, +-0.515251,0.844626,-0.830847,-1.99167,0.596497,2.6624, +-0.515226,0.84463,-0.830695,-1.99167,0.596358,2.66241, +-0.5152,0.844635,-0.830544,-1.99166,0.596218,2.66241, +-0.515173,0.844641,-0.830393,-1.99166,0.596078,2.66242, +-0.515145,0.844647,-0.830242,-1.99165,0.595939,2.66243, +-0.515115,0.844654,-0.830091,-1.99164,0.595799,2.66243, +-0.515085,0.844663,-0.829941,-1.99163,0.59566,2.66244, +-0.515052,0.844672,-0.82979,-1.99162,0.595522,2.66245, +-0.515018,0.844683,-0.829639,-1.99161,0.595385,2.66246, +-0.514982,0.844696,-0.829488,-1.9916,0.595248,2.66247, +-0.514945,0.84471,-0.829336,-1.99159,0.595111,2.66249, +-0.514906,0.844725,-0.829185,-1.99157,0.594975,2.6625, +-0.514866,0.84474,-0.829035,-1.99156,0.594839,2.66252, +-0.514825,0.844757,-0.828885,-1.99154,0.594703,2.66253, +-0.514783,0.844775,-0.828735,-1.99152,0.594567,2.66255, +-0.514738,0.844795,-0.828585,-1.9915,0.594432,2.66257, +-0.514692,0.844816,-0.828434,-1.99148,0.594298,2.66259, +-0.514644,0.844839,-0.828284,-1.99146,0.594165,2.66262, +-0.514594,0.844863,-0.828133,-1.99143,0.594032,2.66264, +-0.514542,0.844889,-0.827983,-1.99141,0.5939,2.66267, +-0.51449,0.844915,-0.827834,-1.99138,0.593768,2.66269, +-0.514436,0.844943,-0.827685,-1.99135,0.593635,2.66272, +-0.51438,0.844972,-0.827536,-1.99132,0.593504,2.66275, +-0.514323,0.845003,-0.827387,-1.99129,0.593373,2.66278, +-0.514263,0.845036,-0.827238,-1.99126,0.593243,2.66281, +-0.514202,0.84507,-0.827089,-1.99123,0.593114,2.66285, +-0.514138,0.845106,-0.82694,-1.99119,0.592986,2.66288, +-0.514073,0.845144,-0.826791,-1.99115,0.592858,2.66292, +-0.514007,0.845182,-0.826643,-1.99111,0.59273,2.66296, +-0.51394,0.845222,-0.826496,-1.99107,0.592603,2.663, +-0.51387,0.845264,-0.826349,-1.99103,0.592476,2.66304, +-0.513799,0.845307,-0.826202,-1.99099,0.59235,2.66309, +-0.513725,0.845353,-0.826055,-1.99094,0.592225,2.66313, +-0.513649,0.8454,-0.825908,-1.9909,0.592101,2.66318, +-0.513572,0.845449,-0.825761,-1.99085,0.591978,2.66323, +-0.513492,0.8455,-0.825615,-1.9908,0.591855,2.66328, +-0.513411,0.845552,-0.825469,-1.99074,0.591732,2.66333, +-0.513329,0.845606,-0.825325,-1.99069,0.59161,2.66338, +-0.513245,0.845661,-0.82518,-1.99064,0.591488,2.66344, +-0.513158,0.845718,-0.825036,-1.99058,0.591367,2.6635, +-0.51307,0.845777,-0.824891,-1.99052,0.591247,2.66356, +-0.512979,0.845839,-0.824747,-1.99046,0.591129,2.66362, +-0.512887,0.845902,-0.824604,-1.99039,0.591012,2.66368, +-0.512793,0.845967,-0.824461,-1.99033,0.590896,2.66375, +-0.512697,0.846033,-0.824319,-1.99026,0.590781,2.66381, +-0.512601,0.846101,-0.824177,-1.9902,0.590667,2.66388, +-0.512502,0.84617,-0.824037,-1.99013,0.590555,2.66395, +-0.512401,0.846242,-0.823896,-1.99005,0.590444,2.66402, +-0.512299,0.846316,-0.823756,-1.98998,0.590335,2.66409, +-0.512195,0.846391,-0.823617,-1.98991,0.590227,2.66417, +-0.51209,0.846469,-0.823478,-1.98983,0.590121,2.66425, +-0.511984,0.846547,-0.82334,-1.98975,0.590015,2.66433, +-0.511877,0.846627,-0.823203,-1.98967,0.589911,2.66441, +-0.511769,0.846708,-0.823068,-1.98959,0.589808,2.66449, +-0.51166,0.846791,-0.822933,-1.98951,0.589706,2.66457, +-0.51155,0.846875,-0.822798,-1.98942,0.589606,2.66465, +-0.511438,0.846962,-0.822665,-1.98934,0.589507,2.66474, +-0.511324,0.84705,-0.822531,-1.98925,0.58941,2.66483, +-0.51121,0.847139,-0.822399,-1.98916,0.589314,2.66492, +-0.511096,0.84723,-0.822268,-1.98907,0.589219,2.66501, +-0.51098,0.847322,-0.822139,-1.98898,0.589125,2.6651, +-0.510865,0.847415,-0.822011,-1.98888,0.589032,2.66519, +-0.510748,0.847509,-0.821883,-1.98879,0.58894,2.66529, +-0.51063,0.847605,-0.821757,-1.98869,0.588849,2.66538, +-0.510511,0.847702,-0.821631,-1.98859,0.58876,2.66548, +-0.510391,0.847801,-0.821506,-1.9885,0.588673,2.66558, +-0.51027,0.847901,-0.821382,-1.9884,0.588587,2.66568, +-0.510149,0.848002,-0.821259,-1.98829,0.588501,2.66578, +-0.510028,0.848104,-0.821138,-1.98819,0.588417,2.66588, +-0.509906,0.848207,-0.821018,-1.98809,0.588333,2.66598, +-0.509784,0.84831,-0.820899,-1.98799,0.588251,2.66609, +-0.509661,0.848415,-0.820781,-1.98788,0.58817,2.66619, +-0.509536,0.848522,-0.820664,-1.98778,0.58809,2.6663, +-0.509411,0.848629,-0.820548,-1.98767,0.588012,2.66641, +-0.509286,0.848738,-0.820433,-1.98756,0.587935,2.66652, +-0.50916,0.848847,-0.820319,-1.98745,0.587859,2.66663, +-0.509034,0.848957,-0.820207,-1.98734,0.587784,2.66674, +-0.508908,0.849067,-0.820096,-1.98723,0.58771,2.66685, +-0.508781,0.849178,-0.819987,-1.98712,0.587636,2.66696, +-0.508653,0.84929,-0.819878,-1.98701,0.587564,2.66707, +-0.508525,0.849404,-0.81977,-1.98689,0.587494,2.66718, +-0.508396,0.849519,-0.819663,-1.98678,0.587425,2.6673, +-0.508266,0.849634,-0.819557,-1.98666,0.587357,2.66741, +-0.508136,0.84975,-0.819453,-1.98655,0.58729,2.66753, +-0.508007,0.849866,-0.81935,-1.98643,0.587224,2.66764, +-0.507877,0.849983,-0.819249,-1.98631,0.587158,2.66776, +-0.507746,0.8501,-0.81915,-1.9862,0.587094,2.66788, +-0.507615,0.850218,-0.819054,-1.98608,0.587031,2.668, +-0.507483,0.850338,-0.81896,-1.98596,0.586969,2.66812, +-0.50735,0.850459,-0.818869,-1.98584,0.586909,2.66824, +-0.507217,0.85058,-0.818781,-1.98572,0.58685,2.66836, +-0.507084,0.850702,-0.818697,-1.98559,0.586791,2.66848, +-0.506951,0.850825,-0.818615,-1.98547,0.586734,2.6686, +-0.506817,0.850948,-0.818536,-1.98535,0.586677,2.66873, +-0.506684,0.851072,-0.81846,-1.98523,0.586621,2.66885, +-0.506549,0.851197,-0.818386,-1.9851,0.586567,2.66897, +-0.506414,0.851322,-0.818313,-1.98497,0.586514,2.6691, +-0.506278,0.851448,-0.818243,-1.98485,0.586462,2.66923, +-0.506142,0.851575,-0.818173,-1.98472,0.586411,2.66935, +-0.506006,0.851701,-0.818105,-1.9846,0.586361,2.66948, +-0.505869,0.851827,-0.818038,-1.98447,0.586312,2.66961, +-0.505733,0.851954,-0.817972,-1.98434,0.586264,2.66973, +-0.505596,0.852081,-0.817907,-1.98422,0.586216,2.66986, +-0.505459,0.852209,-0.817843,-1.98409,0.58617,2.66999, +-0.505321,0.852337,-0.817779,-1.98396,0.586125,2.67012, +-0.505182,0.852467,-0.817715,-1.98383,0.586082,2.67025, +-0.505043,0.852598,-0.817652,-1.9837,0.58604,2.67038, +-0.504904,0.852729,-0.817588,-1.98357,0.585998,2.67051, +-0.504765,0.85286,-0.817524,-1.98344,0.585957,2.67064, +-0.504626,0.852991,-0.817461,-1.98331,0.585917,2.67077, +-0.504487,0.853124,-0.817398,-1.98317,0.585877,2.6709, +-0.504346,0.853257,-0.817336,-1.98304,0.58584,2.67104, +-0.504206,0.853391,-0.817274,-1.98291,0.585803,2.67117, +-0.504064,0.853526,-0.817214,-1.98277,0.585768,2.6713, +-0.503923,0.853662,-0.817154,-1.98264,0.585734,2.67144, +-0.503781,0.853798,-0.817095,-1.9825,0.5857,2.67158, +-0.503639,0.853934,-0.817036,-1.98236,0.585667,2.67171, +-0.503497,0.85407,-0.816977,-1.98223,0.585635,2.67185, +-0.503355,0.854207,-0.816919,-1.98209,0.585604,2.67199, +-0.503213,0.854345,-0.816862,-1.98195,0.585574,2.67212, +-0.503069,0.854483,-0.816806,-1.98181,0.585546,2.67226, +-0.502925,0.854622,-0.816751,-1.98167,0.585519,2.6724, +-0.502781,0.854762,-0.816697,-1.98153,0.585493,2.67254, +-0.502637,0.854902,-0.816644,-1.98139,0.585467,2.67268, +-0.502493,0.855042,-0.81659,-1.98125,0.585442,2.67282, +-0.502348,0.855182,-0.816538,-1.98111,0.585418,2.67296, +-0.502204,0.855323,-0.816486,-1.98097,0.585395,2.6731, +-0.502059,0.855464,-0.816435,-1.98083,0.585373,2.67324, +-0.501914,0.855606,-0.816385,-1.98069,0.585353,2.67338, +-0.501768,0.855749,-0.816336,-1.98055,0.585334,2.67353, +-0.501621,0.855892,-0.816289,-1.9804,0.585316,2.67367, +-0.501475,0.856036,-0.816242,-1.98026,0.585298,2.67381, +-0.501329,0.856179,-0.816195,-1.98012,0.585281,2.67396, +-0.501183,0.856322,-0.816149,-1.97997,0.585265,2.6741, +-0.501037,0.856466,-0.816104,-1.97983,0.58525,2.67424, +-0.50089,0.85661,-0.81606,-1.97969,0.585236,2.67439, +-0.500744,0.856755,-0.816017,-1.97954,0.585224,2.67453, +-0.500597,0.856901,-0.815975,-1.9794,0.585213,2.67468, +-0.50045,0.857046,-0.815934,-1.97925,0.585202,2.67482, +-0.500303,0.857192,-0.815894,-1.9791,0.585193,2.67497, +-0.500157,0.857338,-0.815855,-1.97896,0.585184,2.67512, +-0.50001,0.857484,-0.815816,-1.97881,0.585176,2.67526, +-0.499863,0.85763,-0.815778,-1.97867,0.585168,2.67541, +-0.499717,0.857776,-0.815742,-1.97852,0.585162,2.67555, +-0.49957,0.857924,-0.815706,-1.97837,0.585158,2.6757, +-0.499423,0.858071,-0.815672,-1.97823,0.585154,2.67585, +-0.499276,0.858219,-0.815639,-1.97808,0.585152,2.676, +-0.499129,0.858367,-0.815607,-1.97793,0.58515,2.67615, +-0.498982,0.858515,-0.815575,-1.97778,0.585149,2.67629, +-0.498835,0.858663,-0.815544,-1.97763,0.585148,2.67644, +-0.498689,0.858811,-0.815513,-1.97749,0.585148,2.67659, +-0.498541,0.858959,-0.815484,-1.97734,0.58515,2.67674, +-0.498394,0.859108,-0.815457,-1.97719,0.585153,2.67689, +-0.498246,0.859257,-0.81543,-1.97704,0.585157,2.67704, +-0.498098,0.859406,-0.815405,-1.97689,0.585162,2.67718, +-0.49795,0.859555,-0.815381,-1.97674,0.585168,2.67733, +-0.497803,0.859704,-0.815357,-1.97659,0.585174,2.67748, +-0.497656,0.859852,-0.815334,-1.97645,0.585181,2.67763, +-0.497511,0.86,-0.815312,-1.9763,0.585189,2.67778, +-0.497366,0.860149,-0.815291,-1.97615,0.585199,2.67793, +-0.497221,0.860298,-0.815272,-1.976,0.585209,2.67808, +-0.497076,0.860447,-0.815254,-1.97585,0.585222,2.67823, +-0.496932,0.860597,-0.815237,-1.9757,0.585235,2.67838, +-0.496787,0.860746,-0.81522,-1.97555,0.58525,2.67852, +-0.496643,0.860896,-0.815204,-1.9754,0.585265,2.67867, +-0.496498,0.861045,-0.815189,-1.97525,0.585282,2.67882, +-0.496354,0.861194,-0.815174,-1.9751,0.585299,2.67897, +-0.49621,0.861343,-0.815161,-1.97495,0.585318,2.67912, +-0.496066,0.861493,-0.815148,-1.9748,0.585339,2.67927, +-0.495922,0.861644,-0.815138,-1.97465,0.585362,2.67942, +-0.495778,0.861794,-0.815128,-1.9745,0.585386,2.67957, +-0.495634,0.861944,-0.815119,-1.97435,0.585411,2.67972, +-0.49549,0.862094,-0.815111,-1.9742,0.585436,2.67987, +-0.495346,0.862244,-0.815103,-1.97405,0.585463,2.68002, +-0.495203,0.862393,-0.815097,-1.9739,0.585492,2.68017, +-0.495061,0.862543,-0.815091,-1.97375,0.585522,2.68032, +-0.494918,0.862694,-0.815088,-1.9736,0.585554,2.68047, +-0.494776,0.862844,-0.815085,-1.97345,0.585587,2.68062, +-0.494633,0.862995,-0.815083,-1.9733,0.585622,2.68077, +-0.494491,0.863145,-0.815082,-1.97315,0.585658,2.68092, +-0.494348,0.863295,-0.815082,-1.973,0.585696,2.68107, +-0.494206,0.863444,-0.815082,-1.97285,0.585734,2.68122, +-0.494065,0.863593,-0.815083,-1.9727,0.585775,2.68137, +-0.493925,0.863743,-0.815085,-1.97255,0.585817,2.68152, +-0.493784,0.863893,-0.815089,-1.9724,0.58586,2.68167, +-0.493644,0.864043,-0.815094,-1.97225,0.585906,2.68182, +-0.493504,0.864192,-0.8151,-1.9721,0.585954,2.68197, +-0.493364,0.864342,-0.815107,-1.97196,0.586002,2.68212, +-0.493224,0.864491,-0.815115,-1.97181,0.586052,2.68227, +-0.493084,0.864639,-0.815123,-1.97166,0.586104,2.68242, +-0.492946,0.864787,-0.815133,-1.97151,0.586157,2.68257, +-0.492808,0.864935,-0.815143,-1.97136,0.586212,2.68271, +-0.49267,0.865084,-0.815156,-1.97121,0.586269,2.68286, +-0.492533,0.865232,-0.81517,-1.97106,0.586328,2.68301, +-0.492396,0.865381,-0.815185,-1.97092,0.586389,2.68316, +-0.492259,0.865528,-0.815202,-1.97077,0.586451,2.68331, +-0.492123,0.865675,-0.815219,-1.97062,0.586515,2.68345, +-0.491986,0.865822,-0.815237,-1.97047,0.58658,2.6836, +-0.491851,0.865968,-0.815257,-1.97033,0.586647,2.68375, +-0.491717,0.866115,-0.815278,-1.97018,0.586716,2.68389, +-0.491583,0.866261,-0.815301,-1.97004,0.586787,2.68404, +-0.49145,0.866407,-0.815326,-1.96989,0.586861,2.68419, +-0.491316,0.866553,-0.815353,-1.96974,0.586936,2.68433, +-0.491183,0.866699,-0.81538,-1.9696,0.587013,2.68448, +-0.491051,0.866843,-0.815409,-1.96945,0.587092,2.68462, +-0.490918,0.866987,-0.815439,-1.96931,0.587172,2.68477, +-0.490785,0.86713,-0.815471,-1.96917,0.587254,2.68491, +-0.490651,0.867274,-0.815504,-1.96902,0.587338,2.68505, +-0.490518,0.867417,-0.815539,-1.96888,0.587425,2.6852, +-0.490385,0.86756,-0.815576,-1.96874,0.587513,2.68534, +-0.490252,0.867703,-0.815615,-1.96859,0.587604,2.68548, +-0.49012,0.867845,-0.815655,-1.96845,0.587695,2.68562, +-0.489989,0.867985,-0.815697,-1.96831,0.587789,2.68576, +-0.489858,0.868125,-0.81574,-1.96817,0.587884,2.6859, +-0.489728,0.868265,-0.815784,-1.96803,0.58798,2.68604, +-0.489598,0.868404,-0.815831,-1.96789,0.588079,2.68618, +-0.489468,0.868542,-0.815879,-1.96775,0.588179,2.68632, +-0.48934,0.868681,-0.81593,-1.96762,0.588281,2.68646, +-0.489212,0.868818,-0.815982,-1.96748,0.588384,2.6866, +-0.489086,0.868954,-0.816035,-1.96734,0.588489,2.68673, +-0.488961,0.869089,-0.81609,-1.96721,0.588594,2.68687, +-0.488837,0.869223,-0.816146,-1.96707,0.5887,2.687, +-0.488715,0.869356,-0.816204,-1.96694,0.588807,2.68713, +-0.488593,0.869488,-0.816263,-1.96681,0.588916,2.68727, +-0.488472,0.86962,-0.816325,-1.96668,0.589026,2.6874, +-0.488352,0.869751,-0.816389,-1.96655,0.589138,2.68753, +-0.488234,0.869881,-0.816454,-1.96642,0.58925,2.68766, +-0.488118,0.87001,-0.81652,-1.96629,0.589363,2.68779, +-0.488003,0.870137,-0.816588,-1.96616,0.589477,2.68792, +-0.48789,0.870263,-0.816657,-1.96603,0.589591,2.68804, +-0.487779,0.870388,-0.816727,-1.96591,0.589706,2.68817, +-0.487668,0.870512,-0.8168,-1.96579,0.589823,2.68829, +-0.487559,0.870635,-0.816874,-1.96566,0.58994,2.68841, +-0.487451,0.870758,-0.81695,-1.96554,0.590058,2.68854, +-0.487344,0.870879,-0.817028,-1.96542,0.590177,2.68866, +-0.48724,0.870999,-0.817107,-1.9653,0.590297,2.68878, +-0.487137,0.871117,-0.817186,-1.96518,0.590417,2.6889, +-0.487036,0.871234,-0.817267,-1.96506,0.590537,2.68901, +-0.486938,0.87135,-0.81735,-1.96495,0.590658,2.68913, +-0.486843,0.871465,-0.817434,-1.96483,0.59078,2.68924, +-0.48675,0.871579,-0.81752,-1.96472,0.590902,2.68936, +-0.486661,0.871692,-0.817607,-1.96461,0.591026,2.68947, +-0.486576,0.871804,-0.817696,-1.96449,0.59115,2.68958, +-0.486493,0.871914,-0.817785,-1.96438,0.591274,2.68969, +-0.486413,0.872023,-0.817876,-1.96427,0.591399,2.6898, +-0.486337,0.872131,-0.817967,-1.96417,0.591524,2.68991, +-0.486262,0.872237,-0.81806,-1.96406,0.591649,2.69001, +-0.48619,0.872342,-0.818154,-1.96396,0.591775,2.69012, +-0.48612,0.872447,-0.81825,-1.96385,0.591902,2.69022, +-0.486051,0.87255,-0.818347,-1.96375,0.59203,2.69033, +-0.485984,0.872653,-0.818445,-1.96364,0.592159,2.69043, +-0.485918,0.872754,-0.818544,-1.96354,0.592287,2.69053, +-0.485853,0.872853,-0.818643,-1.96344,0.592415,2.69063, +-0.48579,0.872951,-0.818744,-1.96335,0.592544,2.69073, +-0.485727,0.873046,-0.818845,-1.96325,0.592673,2.69082, +-0.485666,0.873139,-0.818948,-1.96316,0.592803,2.69092, +-0.485605,0.873229,-0.819052,-1.96307,0.592934,2.69101, +-0.485545,0.873316,-0.819157,-1.96298,0.593065,2.69109, +-0.485485,0.8734,-0.819264,-1.9629,0.593197,2.69118, +-0.485425,0.873481,-0.81937,-1.96282,0.593329,2.69126, +-0.485365,0.873559,-0.819478,-1.96274,0.593461,2.69134, +-0.485306,0.873635,-0.819586,-1.96266,0.593593,2.69141, +-0.485247,0.873708,-0.819695,-1.96259,0.593726,2.69149, +-0.485188,0.873779,-0.819805,-1.96252,0.593859,2.69156, +-0.485131,0.873848,-0.819917,-1.96245,0.593993,2.69163, +-0.485074,0.873915,-0.820029,-1.96238,0.594128,2.69169, +-0.485019,0.873981,-0.820142,-1.96232,0.594263,2.69176, +-0.484964,0.874046,-0.820256,-1.96225,0.594398,2.69182, +-0.48491,0.874109,-0.820371,-1.96219,0.594534,2.69189, +-0.484856,0.874172,-0.820486,-1.96213,0.594669,2.69195, +-0.484803,0.874234,-0.820601,-1.96206,0.594805,2.69201, +-0.484751,0.874295,-0.820718,-1.962,0.594941,2.69207, +-0.4847,0.874355,-0.820836,-1.96194,0.595078,2.69213, +-0.484651,0.874415,-0.820955,-1.96188,0.595216,2.69219, +-0.484602,0.874476,-0.821075,-1.96182,0.595354,2.69225, +-0.484554,0.874536,-0.821196,-1.96176,0.595492,2.69231, +-0.484506,0.874596,-0.821316,-1.9617,0.595631,2.69237, +-0.484458,0.874656,-0.821438,-1.96164,0.595769,2.69243, +-0.484411,0.874715,-0.82156,-1.96158,0.595908,2.69249, +-0.484366,0.874774,-0.821683,-1.96152,0.596047,2.69255, +-0.484321,0.874832,-0.821807,-1.96147,0.596187,2.69261, +-0.484278,0.874888,-0.821932,-1.96141,0.596328,2.69267, +-0.484236,0.874944,-0.822058,-1.96135,0.596469,2.69272, +-0.484194,0.875,-0.822185,-1.9613,0.59661,2.69278, +-0.484153,0.875055,-0.822312,-1.96124,0.596751,2.69283, +-0.484113,0.87511,-0.822439,-1.96119,0.596892,2.69289, +-0.484073,0.875165,-0.822567,-1.96113,0.597033,2.69294, +-0.484035,0.875218,-0.822696,-1.96108,0.597175,2.693, +-0.483998,0.87527,-0.822826,-1.96103,0.597318,2.69305, +-0.483962,0.875321,-0.822957,-1.96098,0.597461,2.6931, +-0.483927,0.875372,-0.823089,-1.96093,0.597605,2.69315, +-0.483893,0.875422,-0.823221,-1.96088,0.597748,2.6932, +-0.483859,0.875471,-0.823353,-1.96083,0.597892,2.69325, +-0.483826,0.87552,-0.823486,-1.96078,0.598035,2.6933, +-0.483793,0.875569,-0.82362,-1.96073,0.598179,2.69335, +-0.483762,0.875616,-0.823754,-1.96068,0.598324,2.69339, +-0.483733,0.875662,-0.82389,-1.96064,0.598469,2.69344, +-0.483704,0.875707,-0.824026,-1.96059,0.598614,2.69348, +-0.483676,0.875751,-0.824163,-1.96055,0.59876,2.69353, +-0.48365,0.875794,-0.824301,-1.9605,0.598906,2.69357, +-0.483623,0.875837,-0.824438,-1.96046,0.599051,2.69362, +-0.483598,0.87588,-0.824576,-1.96042,0.599197,2.69366, +-0.483573,0.875921,-0.824715,-1.96038,0.599342,2.6937, +-0.48355,0.875962,-0.824854,-1.96034,0.599489,2.69374, +-0.483528,0.876001,-0.824994,-1.9603,0.599635,2.69378, +-0.483507,0.876038,-0.825135,-1.96026,0.599782,2.69382, +-0.483487,0.876075,-0.825277,-1.96022,0.599929,2.69385, +-0.483468,0.876112,-0.825419,-1.96019,0.600076,2.69389, +-0.483449,0.876148,-0.82556,-1.96015,0.600223,2.69393, +-0.483431,0.876183,-0.825702,-1.96011,0.60037,2.69396, +-0.483415,0.876217,-0.825844,-1.96008,0.600517,2.69399, +-0.483399,0.87625,-0.825988,-1.96005,0.600663,2.69403, +-0.483385,0.876282,-0.826131,-1.96002,0.60081,2.69406, +-0.483372,0.876312,-0.826276,-1.95999,0.600957,2.69409, +-0.48336,0.876342,-0.826421,-1.95996,0.601103,2.69412, +-0.483348,0.87637,-0.826566,-1.95993,0.60125,2.69415, +-0.483337,0.876399,-0.82671,-1.9599,0.601396,2.69418, +-0.483327,0.876426,-0.826855,-1.95987,0.601542,2.6942, +-0.483318,0.876453,-0.827001,-1.95984,0.601688,2.69423, +-0.48331,0.876478,-0.827147,-1.95982,0.601835,2.69426, +-0.483304,0.876502,-0.827293,-1.9598,0.601981,2.69428, +-0.483298,0.876524,-0.82744,-1.95977,0.602127,2.6943, +-0.483294,0.876546,-0.827588,-1.95975,0.602273,2.69432, +-0.48329,0.876567,-0.827735,-1.95973,0.602419,2.69435, +-0.483287,0.876588,-0.827882,-1.95971,0.602565,2.69437, +-0.483285,0.876607,-0.828029,-1.95969,0.602711,2.69439, +-0.483283,0.876626,-0.828177,-1.95967,0.602856,2.6944, +-0.483283,0.876643,-0.828325,-1.95965,0.603001,2.69442, +-0.483284,0.87666,-0.828473,-1.95964,0.603146,2.69444, +-0.483286,0.876674,-0.828622,-1.95962,0.603291,2.69445, +-0.483289,0.876688,-0.828772,-1.95961,0.603436,2.69447, +-0.483293,0.876701,-0.828921,-1.9596,0.603581,2.69448, +-0.483297,0.876714,-0.82907,-1.95958,0.603726,2.69449, +-0.483302,0.876726,-0.829218,-1.95957,0.603871,2.6945, +-0.483308,0.876737,-0.829367,-1.95956,0.604014,2.69451, +-0.483315,0.876746,-0.829517,-1.95955,0.604158,2.69452, +-0.483324,0.876755,-0.829667,-1.95954,0.604301,2.69453, +-0.483334,0.876762,-0.829817,-1.95954,0.604445,2.69454, +-0.483345,0.876768,-0.829968,-1.95953,0.604588,2.69455, +-0.483357,0.876773,-0.830118,-1.95952,0.604731,2.69455, +-0.48337,0.876778,-0.830268,-1.95952,0.604874,2.69456, +-0.483384,0.876782,-0.830418,-1.95952,0.605017,2.69456, +-0.483399,0.876785,-0.830568,-1.95951,0.605159,2.69456, +-0.483416,0.876787,-0.830718,-1.95951,0.605301,2.69456, +-0.483434,0.876787,-0.830869,-1.95951,0.605442,2.69457, +-0.483453,0.876787,-0.83102,-1.95951,0.605582,2.69456, +-0.483474,0.876785,-0.831171,-1.95951,0.605722,2.69456, +-0.483496,0.876783,-0.831322,-1.95951,0.60586,2.69456, +-0.483518,0.87678,-0.831473,-1.95952,0.605997,2.69456, +-0.483542,0.876777,-0.831622,-1.95952,0.606132,2.69455, +-0.483566,0.876772,-0.831771,-1.95953,0.606267,2.69455, +-0.483593,0.876767,-0.831919,-1.95953,0.606401,2.69454, +-0.48362,0.87676,-0.832065,-1.95954,0.606535,2.69454, +-0.48365,0.876751,-0.832211,-1.95955,0.606668,2.69453, +-0.483681,0.876742,-0.832357,-1.95956,0.606802,2.69452, +-0.483713,0.876731,-0.832502,-1.95957,0.606935,2.69451, +-0.483747,0.87672,-0.832647,-1.95958,0.607069,2.6945, +-0.483781,0.876708,-0.832792,-1.95959,0.607204,2.69449, +-0.483818,0.876695,-0.832937,-1.9596,0.607338,2.69447, +-0.483856,0.87668,-0.833083,-1.95962,0.607471,2.69446, +-0.483895,0.876664,-0.83323,-1.95963,0.607604,2.69444, +-0.483937,0.876646,-0.833377,-1.95965,0.607737,2.69442, +-0.48398,0.876627,-0.833525,-1.95967,0.607869,2.69441, +-0.484025,0.876607,-0.833672,-1.95969,0.608002,2.69439, +-0.484071,0.876586,-0.833819,-1.95971,0.608134,2.69436, +-0.484118,0.876564,-0.833967,-1.95973,0.608267,2.69434, +-0.484166,0.876541,-0.834114,-1.95976,0.608398,2.69432, +-0.484216,0.876516,-0.834262,-1.95978,0.608529,2.69429, +-0.484269,0.876489,-0.83441,-1.95981,0.60866,2.69427, +-0.484323,0.87646,-0.834558,-1.95984,0.60879,2.69424, +-0.484379,0.87643,-0.834707,-1.95987,0.60892,2.69421, +-0.484437,0.876399,-0.834855,-1.9599,0.609049,2.69418, +-0.484495,0.876367,-0.835003,-1.95993,0.609179,2.69415, +-0.484555,0.876333,-0.83515,-1.95996,0.609309,2.69411, +-0.484617,0.876298,-0.835298,-1.96,0.609438,2.69408, +-0.484681,0.876261,-0.835446,-1.96004,0.609566,2.69404, +-0.484747,0.876223,-0.835594,-1.96007,0.609694,2.694, +-0.484815,0.876182,-0.835742,-1.96011,0.609821,2.69396, +-0.484885,0.87614,-0.83589,-1.96016,0.609947,2.69392, +-0.484956,0.876096,-0.836038,-1.9602,0.610073,2.69387, +-0.485029,0.876051,-0.836185,-1.96025,0.610199,2.69383, +-0.485103,0.876005,-0.836331,-1.96029,0.610324,2.69378, +-0.485179,0.875957,-0.836478,-1.96034,0.61045,2.69374, +-0.485257,0.875907,-0.836625,-1.96039,0.610574,2.69369, +-0.485338,0.875855,-0.836771,-1.96044,0.610697,2.69363, +-0.485421,0.875801,-0.836918,-1.9605,0.61082,2.69358, +-0.485505,0.875745,-0.837064,-1.96055,0.610941,2.69352, +-0.485592,0.875688,-0.83721,-1.96061,0.611063,2.69347, +-0.48568,0.875629,-0.837355,-1.96067,0.611184,2.69341, +-0.485769,0.875568,-0.837499,-1.96073,0.611305,2.69335, +-0.485861,0.875506,-0.837642,-1.96079,0.611427,2.69328, +-0.485955,0.875442,-0.837783,-1.96086,0.611549,2.69322, +-0.48605,0.875375,-0.837922,-1.96092,0.611671,2.69315, +-0.486148,0.875307,-0.838061,-1.96099,0.611794,2.69308, +-0.486247,0.875237,-0.838198,-1.96106,0.611916,2.69301, +-0.486348,0.875165,-0.838335,-1.96113,0.612038,2.69294, +-0.486449,0.875092,-0.838471,-1.96121,0.612159,2.69287, +-0.486552,0.875017,-0.838607,-1.96128,0.612281,2.6928, +-0.486656,0.874941,-0.838742,-1.96136,0.612401,2.69272, +-0.486763,0.874863,-0.838875,-1.96143,0.612522,2.69264, +-0.48687,0.874783,-0.839007,-1.96151,0.612642,2.69256, +-0.48698,0.874701,-0.839137,-1.9616,0.61276,2.69248, +-0.48709,0.874617,-0.839266,-1.96168,0.612878,2.6924, +-0.487201,0.874532,-0.839393,-1.96176,0.612995,2.69231, +-0.487313,0.874446,-0.83952,-1.96185,0.613109,2.69222, +-0.487425,0.874359,-0.839645,-1.96194,0.613223,2.69214, +-0.487539,0.87427,-0.839769,-1.96203,0.613335,2.69205, +-0.487654,0.87418,-0.839892,-1.96212,0.613446,2.69196, +-0.48777,0.874087,-0.840013,-1.96221,0.613556,2.69187, +-0.487888,0.873994,-0.840132,-1.9623,0.613665,2.69177, +-0.488006,0.873898,-0.840251,-1.9624,0.613771,2.69168, +-0.488124,0.873802,-0.840369,-1.96249,0.613875,2.69158, +-0.488244,0.873705,-0.840487,-1.96259,0.613977,2.69148, +-0.488363,0.873607,-0.840604,-1.96269,0.614077,2.69138, +-0.488483,0.873507,-0.84072,-1.96279,0.614173,2.69129, +-0.488605,0.873406,-0.840834,-1.96289,0.614267,2.69118, +-0.488727,0.873304,-0.840948,-1.96299,0.614357,2.69108, +-0.488851,0.8732,-0.841059,-1.9631,0.614443,2.69098, +-0.488974,0.873095,-0.84117,-1.9632,0.614526,2.69087, +-0.489099,0.87299,-0.84128,-1.96331,0.614606,2.69077, +-0.489223,0.872883,-0.841388,-1.96341,0.614683,2.69066, +-0.489348,0.872776,-0.841496,-1.96352,0.614757,2.69055, +-0.489473,0.872668,-0.841603,-1.96363,0.614829,2.69045, +-0.489599,0.872559,-0.841708,-1.96374,0.614898,2.69034, +-0.489726,0.872448,-0.841812,-1.96385,0.614965,2.69023, +-0.489854,0.872337,-0.841914,-1.96396,0.61503,2.69011, +-0.489982,0.872224,-0.842015,-1.96407,0.615093,2.69, +-0.490111,0.872111,-0.842116,-1.96419,0.615156,2.68989, +-0.490239,0.871998,-0.842216,-1.9643,0.615216,2.68978, +-0.490368,0.871884,-0.842315,-1.96441,0.615276,2.68966, +-0.490498,0.871769,-0.842414,-1.96453,0.615334,2.68955, +-0.490628,0.871653,-0.842511,-1.96464,0.615391,2.68943, +-0.490758,0.871536,-0.842606,-1.96476,0.615447,2.68931, +-0.49089,0.871418,-0.842701,-1.96488,0.615503,2.6892, +-0.491022,0.871299,-0.842794,-1.965,0.615558,2.68908, +-0.491154,0.87118,-0.842887,-1.96512,0.615613,2.68896, +-0.491286,0.87106,-0.842979,-1.96524,0.615667,2.68884, +-0.491418,0.87094,-0.84307,-1.96536,0.615722,2.68872, +-0.491551,0.870819,-0.84316,-1.96548,0.615776,2.6886, +-0.491684,0.870698,-0.843249,-1.9656,0.61583,2.68848, +-0.491818,0.870575,-0.843337,-1.96572,0.615882,2.68835, +-0.491953,0.870452,-0.843423,-1.96585,0.615934,2.68823, +-0.492088,0.870328,-0.843508,-1.96597,0.615984,2.68811, +-0.492224,0.870203,-0.843593,-1.96609,0.616034,2.68798, +-0.492359,0.870078,-0.843677,-1.96622,0.616083,2.68786, +-0.492494,0.869953,-0.84376,-1.96634,0.616131,2.68773, +-0.49263,0.869828,-0.843842,-1.96647,0.616178,2.68761, +-0.492766,0.869701,-0.843923,-1.9666,0.616224,2.68748, +-0.492903,0.869573,-0.844003,-1.96672,0.616268,2.68735, +-0.493041,0.869445,-0.844081,-1.96685,0.616312,2.68722, +-0.493179,0.869316,-0.844159,-1.96698,0.616354,2.68709, +-0.493317,0.869186,-0.844236,-1.96711,0.616397,2.68696, +-0.493455,0.869057,-0.844312,-1.96724,0.616439,2.68683, +-0.493594,0.868927,-0.844388,-1.96737,0.61648,2.6867, +-0.493732,0.868796,-0.844463,-1.9675,0.616521,2.68657, +-0.493871,0.868665,-0.844536,-1.96763,0.616561,2.68644, +-0.494011,0.868533,-0.844609,-1.96776,0.616599,2.68631, +-0.494152,0.868399,-0.844679,-1.9679,0.616637,2.68618, +-0.494293,0.868266,-0.844749,-1.96803,0.616673,2.68604, +-0.494433,0.868132,-0.844819,-1.96817,0.616708,2.68591, +-0.494574,0.867998,-0.844887,-1.9683,0.616743,2.68578, +-0.494715,0.867864,-0.844955,-1.96843,0.616778,2.68564, +-0.494856,0.867729,-0.845022,-1.96857,0.616811,2.68551, +-0.494998,0.867594,-0.845088,-1.9687,0.616843,2.68537, +-0.49514,0.867457,-0.845152,-1.96884,0.616873,2.68524, +-0.495283,0.86732,-0.845215,-1.96898,0.616903,2.6851, +-0.495426,0.867182,-0.845278,-1.96912,0.616931,2.68496, +-0.49557,0.867044,-0.845339,-1.96925,0.616959,2.68482, +-0.495713,0.866906,-0.8454,-1.96939,0.616986,2.68468, +-0.495856,0.866768,-0.84546,-1.96953,0.617013,2.68455, +-0.495999,0.866629,-0.845519,-1.96967,0.617039,2.68441, +-0.496143,0.866489,-0.845577,-1.96981,0.617064,2.68427, +-0.496287,0.866349,-0.845634,-1.96995,0.617087,2.68413, +-0.496432,0.866208,-0.845689,-1.97009,0.617109,2.68399, +-0.496577,0.866066,-0.845744,-1.97023,0.61713,2.68384, +-0.496722,0.865925,-0.845797,-1.97037,0.61715,2.6837, +-0.496867,0.865783,-0.845851,-1.97051,0.61717,2.68356, +-0.497011,0.865642,-0.845903,-1.97066,0.617189,2.68342, +-0.497156,0.8655,-0.845954,-1.9708,0.617207,2.68328, +-0.497302,0.865357,-0.846004,-1.97094,0.617224,2.68314, +-0.497448,0.865214,-0.846053,-1.97108,0.61724,2.68299, +-0.497594,0.86507,-0.846101,-1.97123,0.617254,2.68285, +-0.49774,0.864926,-0.846147,-1.97137,0.617267,2.6827, +-0.497886,0.864781,-0.846193,-1.97152,0.61728,2.68256, +-0.498032,0.864637,-0.846238,-1.97166,0.617292,2.68242, +-0.498177,0.864493,-0.846282,-1.9718,0.617303,2.68227, +-0.498323,0.864348,-0.846326,-1.97195,0.617314,2.68213, +-0.49847,0.864203,-0.846368,-1.97209,0.617323,2.68198, +-0.498616,0.864057,-0.846409,-1.97224,0.617331,2.68183, +-0.498762,0.86391,-0.846448,-1.97239,0.617338,2.68169, +-0.498909,0.863764,-0.846486,-1.97253,0.617343,2.68154, +-0.499055,0.863618,-0.846524,-1.97268,0.617348,2.6814, +-0.499201,0.863472,-0.846561,-1.97282,0.617353,2.68125, +-0.499347,0.863326,-0.846597,-1.97297,0.617357,2.6811, +-0.499493,0.86318,-0.846633,-1.97312,0.61736,2.68096, +-0.49964,0.863033,-0.846667,-1.97326,0.617361,2.68081, +-0.499786,0.862885,-0.846699,-1.97341,0.617362,2.68066, +-0.499933,0.862737,-0.846731,-1.97356,0.617361,2.68051, +-0.50008,0.862588,-0.846761,-1.97371,0.617359,2.68037, +-0.500226,0.86244,-0.84679,-1.97386,0.617357,2.68022, +-0.500373,0.862292,-0.846819,-1.97401,0.617354,2.68007, +-0.500519,0.862144,-0.846848,-1.97415,0.61735,2.67992, +-0.500665,0.861995,-0.846875,-1.9743,0.617346,2.67977, +-0.500812,0.861847,-0.846901,-1.97445,0.61734,2.67962, +-0.500958,0.861697,-0.846925,-1.9746,0.617333,2.67948, +-0.501105,0.861547,-0.846948,-1.97475,0.617325,2.67933, +-0.501251,0.861397,-0.846971,-1.9749,0.617316,2.67918, +-0.501398,0.861247,-0.846992,-1.97505,0.617305,2.67903, +-0.501544,0.861098,-0.847013,-1.9752,0.617294,2.67888, +-0.50169,0.860948,-0.847033,-1.97535,0.617282,2.67873, +-0.501835,0.860799,-0.847052,-1.9755,0.617269,2.67858, +-0.501981,0.860649,-0.84707,-1.97565,0.617254,2.67843, +-0.502127,0.860498,-0.847086,-1.9758,0.617238,2.67828, +-0.502272,0.860347,-0.847101,-1.97595,0.61722,2.67813, +-0.502418,0.860196,-0.847115,-1.9761,0.617201,2.67797, +-0.502564,0.860046,-0.847129,-1.97625,0.617181,2.67782, +-0.502709,0.859895,-0.847142,-1.9764,0.61716,2.67767, +-0.502854,0.859745,-0.847154,-1.97655,0.617139,2.67752, +-0.502998,0.859595,-0.847164,-1.9767,0.617115,2.67737, +-0.503143,0.859445,-0.847174,-1.97685,0.617091,2.67722, +-0.503287,0.859294,-0.847182,-1.977,0.617064,2.67707, +-0.503431,0.859143,-0.847189,-1.97715,0.617036,2.67692, +-0.503575,0.858992,-0.847196,-1.97731,0.617006,2.67677, +-0.503719,0.858841,-0.847201,-1.97746,0.616975,2.67662, +-0.503862,0.858691,-0.847205,-1.97761,0.616944,2.67647, +-0.504006,0.858541,-0.847209,-1.97776,0.616911,2.67632, +-0.504148,0.858391,-0.847212,-1.97791,0.616876,2.67617, +-0.504291,0.85824,-0.847214,-1.97806,0.61684,2.67602, +-0.504433,0.85809,-0.847214,-1.97821,0.616802,2.67587, +-0.504574,0.857939,-0.847213,-1.97836,0.616762,2.67572, +-0.504716,0.857789,-0.847212,-1.97851,0.616721,2.67557, +-0.504858,0.857639,-0.847209,-1.97866,0.616678,2.67542, +-0.505,0.85749,-0.847206,-1.97881,0.616634,2.67527, +-0.505141,0.85734,-0.847202,-1.97896,0.616589,2.67512, +-0.505281,0.857191,-0.847197,-1.97911,0.616542,2.67497, +-0.505421,0.857042,-0.847191,-1.97926,0.616493,2.67482, +-0.50556,0.856893,-0.847184,-1.9794,0.616443,2.67467, +-0.505699,0.856744,-0.847175,-1.97955,0.61639,2.67452, +-0.505837,0.856595,-0.847165,-1.9797,0.616336,2.67437, +-0.505976,0.856446,-0.847154,-1.97985,0.61628,2.67422, +-0.506114,0.856298,-0.847142,-1.98,0.616223,2.67408, +-0.506252,0.85615,-0.847129,-1.98015,0.616164,2.67393, +-0.506389,0.856003,-0.847115,-1.98029,0.616104,2.67378, +-0.506526,0.855856,-0.847099,-1.98044,0.616042,2.67363, +-0.506661,0.855708,-0.847081,-1.98059,0.615978,2.67349, +-0.506797,0.855561,-0.847062,-1.98074,0.615911,2.67334, +-0.506932,0.855414,-0.847042,-1.98088,0.615843,2.67319, +-0.507067,0.855267,-0.84702,-1.98103,0.615773,2.67304, +-0.507202,0.855121,-0.846997,-1.98118,0.615702,2.6729, +-0.507336,0.854976,-0.846974,-1.98132,0.615629,2.67275, +-0.50747,0.854831,-0.846948,-1.98147,0.615555,2.67261, +-0.507602,0.854686,-0.846921,-1.98161,0.615478,2.67246, +-0.507734,0.854541,-0.846892,-1.98176,0.615399,2.67232, +-0.507865,0.854397,-0.846862,-1.9819,0.615318,2.67217, +-0.507995,0.854252,-0.846829,-1.98204,0.615235,2.67203, +-0.508126,0.854109,-0.846796,-1.98219,0.61515,2.67189, +-0.508256,0.853966,-0.846761,-1.98233,0.615063,2.67174, +-0.508385,0.853824,-0.846725,-1.98247,0.614975,2.6716, +-0.508514,0.853684,-0.846687,-1.98261,0.614885,2.67146, +-0.508642,0.853546,-0.846647,-1.98275,0.614792,2.67132, +-0.508768,0.853409,-0.846605,-1.98289,0.614698,2.67119, +-0.508893,0.853274,-0.846561,-1.98302,0.614602,2.67105, +-0.509016,0.853139,-0.846516,-1.98316,0.614504,2.67092, +-0.509137,0.853006,-0.846469,-1.98329,0.614406,2.67078, +-0.509257,0.852874,-0.846421,-1.98342,0.614306,2.67065, +-0.509375,0.852742,-0.846372,-1.98356,0.614204,2.67052, +-0.509491,0.852612,-0.846321,-1.98369,0.614102,2.67039, +-0.509604,0.852483,-0.846268,-1.98381,0.613997,2.67026, +-0.509717,0.852356,-0.846213,-1.98394,0.613891,2.67013, +-0.509827,0.85223,-0.846156,-1.98407,0.613784,2.67001, +-0.509937,0.852105,-0.846097,-1.98419,0.613676,2.66988, +-0.510045,0.851982,-0.846037,-1.98432,0.613567,2.66976, +-0.510153,0.851859,-0.845976,-1.98444,0.613457,2.66964, +-0.51026,0.851737,-0.845913,-1.98456,0.613346,2.66952, +-0.510366,0.851616,-0.845849,-1.98468,0.613235,2.66939, +-0.51047,0.851497,-0.845783,-1.9848,0.613122,2.66928, +-0.510573,0.851379,-0.845715,-1.98492,0.613008,2.66916, +-0.510674,0.851263,-0.845645,-1.98503,0.612892,2.66904, +-0.510774,0.851148,-0.845573,-1.98515,0.612776,2.66893, +-0.510873,0.851034,-0.845501,-1.98526,0.61266,2.66881, +-0.510971,0.85092,-0.845427,-1.98538,0.612543,2.6687, +-0.511069,0.850807,-0.845352,-1.98549,0.612425,2.66859, +-0.511165,0.850696,-0.845275,-1.9856,0.612307,2.66847, +-0.51126,0.850585,-0.845197,-1.98571,0.612188,2.66836, +-0.511353,0.850477,-0.845116,-1.98582,0.612068,2.66826, +-0.511445,0.85037,-0.845035,-1.98593,0.611947,2.66815, +-0.511535,0.850263,-0.844951,-1.98603,0.611825,2.66804, +-0.511625,0.850158,-0.844867,-1.98614,0.611703,2.66794, +-0.511714,0.850053,-0.844782,-1.98624,0.611581,2.66783, +-0.511803,0.849949,-0.844695,-1.98635,0.611458,2.66773, +-0.51189,0.849847,-0.844607,-1.98645,0.611335,2.66762, +-0.511975,0.849745,-0.844518,-1.98655,0.611211,2.66752, +-0.51206,0.849645,-0.844427,-1.98665,0.611086,2.66742, +-0.512143,0.849547,-0.844335,-1.98675,0.61096,2.66732, +-0.512224,0.849449,-0.844241,-1.98685,0.610834,2.66723, +-0.512305,0.849352,-0.844147,-1.98695,0.610707,2.66713, +-0.512386,0.849256,-0.844052,-1.98704,0.610581,2.66703, +-0.512465,0.84916,-0.843955,-1.98714,0.610454,2.66694, +-0.512543,0.849066,-0.843858,-1.98723,0.610327,2.66684, +-0.51262,0.848972,-0.84376,-1.98732,0.610199,2.66675, +-0.512696,0.848881,-0.843659,-1.98742,0.61007,2.66666, +-0.51277,0.84879,-0.843558,-1.98751,0.60994,2.66657, +-0.512843,0.848701,-0.843456,-1.9876,0.60981,2.66648, +-0.512916,0.848612,-0.843353,-1.98768,0.60968,2.66639, +-0.512987,0.848524,-0.843249,-1.98777,0.60955,2.6663, +-0.513058,0.848437,-0.843145,-1.98786,0.609419,2.66621, +-0.513128,0.84835,-0.84304,-1.98795,0.609289,2.66613, +-0.513196,0.848265,-0.842933,-1.98803,0.609157,2.66604, +-0.513263,0.848182,-0.842825,-1.98812,0.609025,2.66596, +-0.513329,0.848099,-0.842716,-1.9882,0.608892,2.66588, +-0.513394,0.848018,-0.842606,-1.98828,0.608758,2.6658, +-0.513458,0.847937,-0.842496,-1.98836,0.608625,2.66572, +-0.513521,0.847857,-0.842385,-1.98844,0.608491,2.66564, +-0.513584,0.847778,-0.842274,-1.98852,0.608357,2.66556, +-0.513645,0.847699,-0.842161,-1.9886,0.608223,2.66548, +-0.513705,0.847622,-0.842048,-1.98868,0.608088,2.6654, +-0.513764,0.847546,-0.841933,-1.98875,0.607953,2.66532, +-0.513822,0.847471,-0.841817,-1.98883,0.607817,2.66525, +-0.513879,0.847397,-0.8417,-1.9889,0.60768,2.66518, +-0.513934,0.847324,-0.841583,-1.98897,0.607543,2.6651, +-0.51399,0.847252,-0.841465,-1.98905,0.607407,2.66503, +-0.514044,0.84718,-0.841347,-1.98912,0.60727,2.66496, +-0.514098,0.847109,-0.841228,-1.98919,0.607133,2.66489, +-0.51415,0.847039,-0.841108,-1.98926,0.606995,2.66482, +-0.514201,0.846971,-0.840987,-1.98933,0.606856,2.66475, +-0.51425,0.846904,-0.840865,-1.98939,0.606717,2.66468, +-0.514299,0.846838,-0.840741,-1.98946,0.606577,2.66462, +-0.514346,0.846773,-0.840618,-1.98952,0.606438,2.66455, +-0.514394,0.846708,-0.840494,-1.98959,0.606298,2.66449, +-0.51444,0.846644,-0.84037,-1.98965,0.606159,2.66442, +-0.514486,0.84658,-0.840245,-1.98972,0.606019,2.66436, +-0.51453,0.846518,-0.840119,-1.98978,0.605878,2.6643, +-0.514573,0.846458,-0.839991,-1.98984,0.605736,2.66424, +-0.514614,0.846398,-0.839863,-1.9899,0.605595,2.66418, +-0.514655,0.84634,-0.839734,-1.98996,0.605452,2.66412, +-0.514695,0.846282,-0.839605,-1.99001,0.60531,2.66406, +-0.514734,0.846225,-0.839476,-1.99007,0.605168,2.664, +-0.514773,0.846169,-0.839346,-1.99013,0.605025,2.66395, +-0.51481,0.846113,-0.839215,-1.99018,0.604883,2.66389, +-0.514846,0.846059,-0.839083,-1.99024,0.60474,2.66384, +-0.514881,0.846006,-0.83895,-1.99029,0.604596,2.66378, +-0.514915,0.845954,-0.838817,-1.99034,0.604451,2.66373, +-0.514947,0.845903,-0.838682,-1.99039,0.604307,2.66368, +-0.514979,0.845853,-0.838547,-1.99044,0.604162,2.66363, +-0.51501,0.845804,-0.838412,-1.99049,0.604017,2.66358, +-0.515041,0.845755,-0.838277,-1.99054,0.603873,2.66353, +-0.51507,0.845708,-0.83814,-1.99059,0.603728,2.66349, +-0.515099,0.845661,-0.838003,-1.99064,0.603582,2.66344, +-0.515126,0.845616,-0.837865,-1.99068,0.603436,2.66339, +-0.515151,0.845572,-0.837726,-1.99072,0.60329,2.66335, +-0.515176,0.845529,-0.837587,-1.99077,0.603144,2.66331, +-0.5152,0.845487,-0.837447,-1.99081,0.602997,2.66327, +-0.515223,0.845446,-0.837307,-1.99085,0.602851,2.66322, +-0.515245,0.845405,-0.837167,-1.99089,0.602705,2.66318, +-0.515267,0.845365,-0.837027,-1.99093,0.602559,2.66314, +-0.515287,0.845326,-0.836885,-1.99097,0.602412,2.6631, +-0.515306,0.845289,-0.836743,-1.99101,0.602265,2.66307, +-0.515324,0.845253,-0.8366,-1.99104,0.602118,2.66303, +-0.51534,0.845218,-0.836457,-1.99108,0.601972,2.663, +-0.515356,0.845184,-0.836314,-1.99111,0.601825,2.66296, +-0.515371,0.845151,-0.83617,-1.99115,0.601678,2.66293, +-0.515386,0.845118,-0.836027,-1.99118,0.601532,2.6629, +-0.515399,0.845086,-0.835883,-1.99121,0.601385,2.66286, +-0.515412,0.845056,-0.835738,-1.99124,0.601239,2.66283, +-0.515423,0.845027,-0.835593,-1.99127,0.601092,2.66281, +-0.515432,0.844999,-0.835447,-1.9913,0.600945,2.66278, +-0.515441,0.844972,-0.835301,-1.99132,0.600799,2.66275, +-0.515449,0.844946,-0.835155,-1.99135,0.600652,2.66272, +-0.515456,0.844921,-0.835008,-1.99138,0.600506,2.6627, +-0.515463,0.844896,-0.834862,-1.9914,0.60036,2.66267, +-0.515468,0.844873,-0.834716,-1.99142,0.600214,2.66265, +-0.515473,0.844851,-0.834569,-1.99145,0.600069,2.66263, +-0.515476,0.84483,-0.834421,-1.99147,0.599923,2.66261, +-0.515478,0.84481,-0.834273,-1.99149,0.599777,2.66259, +-0.515479,0.844792,-0.834125,-1.99151,0.599632,2.66257, +-0.515479,0.844774,-0.833976,-1.99152,0.599486,2.66255, +-0.515479,0.844756,-0.833828,-1.99154,0.59934,2.66253, +-0.515478,0.84474,-0.83368,-1.99156,0.599195,2.66252, +-0.515476,0.844725,-0.833532,-1.99157,0.599051,2.6625, +-0.515473,0.84471,-0.833383,-1.99159,0.598906,2.66249, +-0.515469,0.844698,-0.833234,-1.9916,0.598762,2.66248, +-0.515463,0.844686,-0.833084,-1.99161,0.598618,2.66246, +-0.515456,0.844676,-0.832934,-1.99162,0.598474,2.66245, +-0.515448,0.844666,-0.832784,-1.99163,0.598329,2.66244, +-0.51544,0.844657,-0.832635,-1.99164,0.598185,2.66243, +-0.515431,0.844648,-0.832485,-1.99165,0.598042,2.66243, +-0.515421,0.844641,-0.832336,-1.99166,0.597898,2.66242, +-0.51541,0.844635,-0.832186,-1.99166,0.597756,2.66241, +-0.515397,0.84463,-0.832035,-1.99167,0.597614,2.66241, +-0.515382,0.844626,-0.831885,-1.99167,0.597471,2.6624, +-0.515366,0.844624,-0.831734,-1.99167,0.597329,2.6624, +-0.51535,0.844622,-0.831583,-1.99168,0.597187,2.6624, +-0.515332,0.844621,-0.831433,-1.99168,0.597045,2.6624, +-0.515314,0.84462,-0.831283,-1.99168,0.596904,2.6624, +-0.515294,0.84462,-0.831132,-1.99168,0.596763,2.6624, +-0.515272,0.844622,-0.830982,-1.99168,0.596623,2.6624, +-0.515249,0.844625,-0.830831,-1.99167,0.596483,2.6624, +-0.515224,0.844629,-0.83068,-1.99167,0.596343,2.66241, +-0.515198,0.844634,-0.830528,-1.99166,0.596204,2.66241, +-0.515171,0.84464,-0.830377,-1.99166,0.596064,2.66242, +-0.515143,0.844647,-0.830227,-1.99165,0.595925,2.66242, +-0.515113,0.844654,-0.830076,-1.99164,0.595785,2.66243, +-0.515083,0.844663,-0.829926,-1.99163,0.595647,2.66244, +-0.51505,0.844672,-0.829775,-1.99163,0.595509,2.66245, +-0.515016,0.844683,-0.829624,-1.99161,0.595372,2.66246, +-0.51498,0.844696,-0.829473,-1.9916,0.595235,2.66247, +-0.514942,0.84471,-0.829322,-1.99159,0.595099,2.66249, +-0.514904,0.844725,-0.829171,-1.99157,0.594962,2.6625, +-0.514864,0.844741,-0.829021,-1.99156,0.594826,2.66252, +-0.514822,0.844758,-0.828871,-1.99154,0.59469,2.66254, +-0.51478,0.844776,-0.828721,-1.99152,0.594555,2.66255, +-0.514735,0.844795,-0.828571,-1.9915,0.59442,2.66257, +-0.514689,0.844817,-0.828421,-1.99148,0.594286,2.66259, +-0.51464,0.84484,-0.828271,-1.99146,0.594153,2.66262, +-0.51459,0.844864,-0.82812,-1.99143,0.594021,2.66264, +-0.514539,0.84489,-0.82797,-1.99141,0.593888,2.66267, +-0.514486,0.844917,-0.827821,-1.99138,0.593756,2.66269, +-0.514432,0.844945,-0.827672,-1.99135,0.593624,2.66272, +-0.514376,0.844974,-0.827523,-1.99132,0.593493,2.66275, +-0.514319,0.845005,-0.827375,-1.99129,0.593362,2.66278, +-0.514259,0.845038,-0.827226,-1.99126,0.593232,2.66282, +-0.514197,0.845072,-0.827077,-1.99122,0.593103,2.66285, +-0.514134,0.845109,-0.826928,-1.99119,0.592975,2.66289, +-0.514069,0.845146,-0.826779,-1.99115,0.592847,2.66292, +-0.514003,0.845185,-0.826632,-1.99111,0.592719,2.66296, +-0.513935,0.845225,-0.826485,-1.99107,0.592592,2.663, +-0.513865,0.845267,-0.826338,-1.99103,0.592465,2.66304, +-0.513794,0.84531,-0.826191,-1.99099,0.59234,2.66309, +-0.51372,0.845356,-0.826044,-1.99094,0.592215,2.66313, +-0.513644,0.845403,-0.825897,-1.99089,0.592091,2.66318, +-0.513566,0.845453,-0.82575,-1.99084,0.591968,2.66323, +-0.513487,0.845503,-0.825604,-1.99079,0.591845,2.66328, +-0.513406,0.845556,-0.825459,-1.99074,0.591723,2.66333, +-0.513323,0.845609,-0.825314,-1.99069,0.591601,2.66339, +-0.513239,0.845664,-0.82517,-1.99063,0.591479,2.66344, +-0.513153,0.845722,-0.825025,-1.99058,0.591359,2.6635, +-0.513064,0.845781,-0.824881,-1.99052,0.59124,2.66356, +-0.512973,0.845843,-0.824737,-1.99045,0.591122,2.66362, +-0.512881,0.845906,-0.824594,-1.99039,0.591005,2.66368, +-0.512787,0.845971,-0.824451,-1.99033,0.590889,2.66375, +-0.512691,0.846038,-0.824309,-1.99026,0.590775,2.66382, +-0.512595,0.846106,-0.824168,-1.99019,0.590661,2.66388, +-0.512496,0.846175,-0.824027,-1.99012,0.590548,2.66395, +-0.512395,0.846247,-0.823887,-1.99005,0.590438,2.66403, +-0.512293,0.846321,-0.823747,-1.98998,0.590328,2.6641, +-0.512189,0.846397,-0.823607,-1.9899,0.590221,2.66417, +-0.512084,0.846474,-0.823469,-1.98982,0.590114,2.66425, +-0.511978,0.846552,-0.823331,-1.98974,0.590009,2.66433, +-0.511871,0.846632,-0.823194,-1.98967,0.589905,2.66441, +-0.511763,0.846713,-0.823059,-1.98958,0.589802,2.66449, +-0.511654,0.846796,-0.822924,-1.9895,0.5897,2.66457, +-0.511543,0.846881,-0.82279,-1.98942,0.5896,2.66466, +-0.511431,0.846967,-0.822656,-1.98933,0.589501,2.66475, +-0.511318,0.847056,-0.822523,-1.98924,0.589404,2.66483, +-0.511204,0.847145,-0.822391,-1.98915,0.589308,2.66492, +-0.511089,0.847236,-0.82226,-1.98906,0.589213,2.66501, +-0.510974,0.847328,-0.822131,-1.98897,0.589119,2.66511, +-0.510858,0.847421,-0.822003,-1.98888,0.589026,2.6652, +-0.510741,0.847515,-0.821875,-1.98878,0.588934,2.66529, +-0.510623,0.847611,-0.821749,-1.98869,0.588844,2.66539, +-0.510504,0.847708,-0.821623,-1.98859,0.588755,2.66549, +-0.510384,0.847807,-0.821498,-1.98849,0.588668,2.66559, +-0.510263,0.847908,-0.821374,-1.98839,0.588582,2.66569, +-0.510142,0.848009,-0.821251,-1.98829,0.588497,2.66579, +-0.510021,0.84811,-0.82113,-1.98819,0.588412,2.66589, +-0.509899,0.848213,-0.821011,-1.98808,0.588329,2.66599, +-0.509777,0.848317,-0.820892,-1.98798,0.588246,2.66609, +-0.509653,0.848422,-0.820774,-1.98788,0.588165,2.6662, +-0.509529,0.848528,-0.820657,-1.98777,0.588086,2.66631, +-0.509404,0.848636,-0.820541,-1.98766,0.588008,2.66641, +-0.509278,0.848745,-0.820426,-1.98755,0.587931,2.66652, +-0.509152,0.848854,-0.820313,-1.98744,0.587855,2.66663, +-0.509026,0.848964,-0.8202,-1.98733,0.58778,2.66674, +-0.5089,0.849074,-0.82009,-1.98722,0.587705,2.66685, +-0.508773,0.849185,-0.81998,-1.98711,0.587632,2.66696, +-0.508646,0.849298,-0.819872,-1.987,0.58756,2.66708, +-0.508517,0.849411,-0.819764,-1.98689,0.58749,2.66719, +-0.508388,0.849526,-0.819657,-1.98677,0.587421,2.6673, +-0.508259,0.849641,-0.819551,-1.98666,0.587353,2.66742, +-0.508129,0.849757,-0.819447,-1.98654,0.587286,2.66754, +-0.507999,0.849873,-0.819344,-1.98642,0.58722,2.66765, +-0.507869,0.84999,-0.819243,-1.98631,0.587155,2.66777, +-0.507738,0.850107,-0.819144,-1.98619,0.58709,2.66789, +-0.507607,0.850226,-0.819048,-1.98607,0.587027,2.668, +-0.507475,0.850345,-0.818954,-1.98595,0.586966,2.66812, +-0.507342,0.850466,-0.818863,-1.98583,0.586906,2.66824, +-0.507209,0.850587,-0.818775,-1.98571,0.586846,2.66837, +-0.507076,0.850708,-0.818691,-1.98559,0.586788,2.66849, +-0.506943,0.85083,-0.818609,-1.98547,0.58673,2.66861, +-0.50681,0.850952,-0.81853,-1.98534,0.586674,2.66873, +-0.506676,0.851075,-0.818454,-1.98522,0.586618,2.66885, +-0.506541,0.851199,-0.81838,-1.9851,0.586563,2.66898, +-0.506406,0.851324,-0.818308,-1.98497,0.58651,2.6691, +-0.50627,0.85145,-0.818237,-1.98485,0.586459,2.66923, +-0.506134,0.851577,-0.818168,-1.98472,0.586408,2.66935, +-0.505998,0.851704,-0.8181,-1.98459,0.586358,2.66948, +-0.505861,0.851832,-0.818033,-1.98447,0.586309,2.66961, +-0.505725,0.851959,-0.817967,-1.98434,0.586261,2.66974, +-0.505588,0.852088,-0.817902,-1.98421,0.586213,2.66987, +-0.505451,0.852218,-0.817838,-1.98408,0.586167,2.67, +-0.505312,0.852348,-0.817774,-1.98395,0.586123,2.67013, +-0.505174,0.852479,-0.81771,-1.98382,0.586079,2.67026, +-0.505034,0.85261,-0.817646,-1.98369,0.586037,2.67039, +-0.504895,0.852741,-0.817583,-1.98356,0.585995,2.67052, +-0.504756,0.852872,-0.817519,-1.98343,0.585954,2.67065, +-0.504617,0.853003,-0.817455,-1.98329,0.585914,2.67078, +-0.504477,0.853135,-0.817392,-1.98316,0.585875,2.67091, +-0.504337,0.853267,-0.81733,-1.98303,0.585837,2.67104, +-0.504196,0.853401,-0.817269,-1.9829,0.585801,2.67118, +-0.504055,0.853535,-0.817209,-1.98276,0.585765,2.67131, +-0.503914,0.85367,-0.817149,-1.98263,0.585731,2.67145, +-0.503772,0.853805,-0.81709,-1.98249,0.585698,2.67158, +-0.503631,0.85394,-0.817031,-1.98236,0.585665,2.67172, +-0.50349,0.854076,-0.816973,-1.98222,0.585633,2.67185, +-0.503348,0.854212,-0.816915,-1.98209,0.585602,2.67199, +-0.503206,0.854349,-0.816858,-1.98195,0.585572,2.67213, +-0.503063,0.854487,-0.816803,-1.98181,0.585544,2.67226, +-0.50292,0.854626,-0.816748,-1.98167,0.585517,2.6724, +-0.502776,0.854765,-0.816694,-1.98153,0.585491,2.67254, +-0.502632,0.854905,-0.81664,-1.98139,0.585466,2.67268, +-0.502488,0.855044,-0.816587,-1.98125,0.585441,2.67282, +-0.502344,0.855184,-0.816535,-1.98111,0.585417,2.67296, +-0.5022,0.855324,-0.816483,-1.98097,0.585394,2.6731, +-0.502056,0.855465,-0.816432,-1.98083,0.585372,2.67324, +-0.50191,0.855607,-0.816383,-1.98069,0.585352,2.67339, +-0.501764,0.85575,-0.816334,-1.98055,0.585333,2.67353, +-0.501618,0.855893,-0.816287,-1.9804,0.585315,2.67367, +-0.501472,0.856036,-0.81624,-1.98026,0.585298,2.67381, +-0.501326,0.856179,-0.816193,-1.98012,0.585281,2.67396, +-0.501181,0.856322,-0.816147,-1.97998,0.585265,2.6741, +-0.501034,0.856466,-0.816102,-1.97983,0.58525,2.67424, +-0.500888,0.85661,-0.816058,-1.97969,0.585236,2.67439, +-0.500741,0.856755,-0.816016,-1.97954,0.585224,2.67453, +-0.500595,0.856901,-0.815974,-1.9794,0.585212,2.67468, +-0.500448,0.857047,-0.815934,-1.97925,0.585202,2.67482, +-0.500302,0.857192,-0.815894,-1.97911,0.585193,2.67497, +-0.500155,0.857338,-0.815854,-1.97896,0.585184,2.67512, +-0.500009,0.857484,-0.815816,-1.97881,0.585176,2.67526, +-0.499862,0.85763,-0.815778,-1.97867,0.585169,2.67541, +-0.499715,0.857777,-0.815741,-1.97852,0.585163,2.67556, +-0.499568,0.857924,-0.815706,-1.97837,0.585158,2.6757, +-0.499421,0.858072,-0.815672,-1.97823,0.585155,2.67585, +-0.499274,0.85822,-0.815639,-1.97808,0.585152,2.676, +-0.499127,0.858368,-0.815606,-1.97793,0.585151,2.67615, +-0.498981,0.858516,-0.815574,-1.97778,0.585149,2.67629, +-0.498834,0.858664,-0.815543,-1.97763,0.585149,2.67644, +-0.498687,0.858812,-0.815513,-1.97749,0.585149,2.67659, +-0.49854,0.85896,-0.815484,-1.97734,0.585151,2.67674, +-0.498393,0.859109,-0.815457,-1.97719,0.585154,2.67689, +-0.498246,0.859259,-0.81543,-1.97704,0.585158,2.67704, +-0.498099,0.859409,-0.815405,-1.97689,0.585163,2.67719, +-0.497953,0.859558,-0.81538,-1.97674,0.585169,2.67734, +-0.497806,0.859707,-0.815356,-1.97659,0.585175,2.67749, +-0.49766,0.859857,-0.815333,-1.97644,0.585183,2.67763, +-0.497513,0.860006,-0.815311,-1.97629,0.585191,2.67778, +-0.497367,0.860156,-0.815289,-1.97614,0.5852,2.67793, +-0.497221,0.860306,-0.81527,-1.97599,0.585211,2.67808, +-0.497075,0.860456,-0.815251,-1.97584,0.585224,2.67823, +-0.496929,0.860607,-0.815234,-1.97569,0.585238,2.67839, +-0.496782,0.860758,-0.815217,-1.97554,0.585252,2.67854, +-0.496636,0.860908,-0.815201,-1.97539,0.585268,2.67869, +-0.496491,0.861058,-0.815185,-1.97524,0.585284,2.67884, +-0.496346,0.861208,-0.815171,-1.97509,0.585302,2.67899, +-0.496201,0.861358,-0.815158,-1.97494,0.585321,2.67914, +-0.496056,0.861509,-0.815146,-1.97479,0.585342,2.67929, +-0.495911,0.86166,-0.815136,-1.97464,0.585365,2.67944, +-0.495766,0.861811,-0.815126,-1.97449,0.585389,2.67959, +-0.495621,0.861962,-0.815117,-1.97434,0.585414,2.67974, +-0.495477,0.862112,-0.815109,-1.97419,0.58544,2.67989, +-0.495333,0.862262,-0.815102,-1.97403,0.585467,2.68004, +-0.495189,0.862412,-0.815095,-1.97388,0.585495,2.68019, +-0.495046,0.862562,-0.81509,-1.97373,0.585526,2.68034, +-0.494903,0.862713,-0.815086,-1.97358,0.585557,2.68049, +-0.49476,0.862864,-0.815083,-1.97343,0.585591,2.68064, +-0.494617,0.863015,-0.815082,-1.97328,0.585626,2.68079, +-0.494474,0.863165,-0.815081,-1.97313,0.585663,2.68094, +-0.494331,0.863315,-0.81508,-1.97298,0.5857,2.68109, +-0.494189,0.863465,-0.815081,-1.97283,0.585739,2.68124, +-0.494047,0.863614,-0.815082,-1.97268,0.585779,2.68139, +-0.493906,0.863764,-0.815084,-1.97253,0.585822,2.68154, +-0.493766,0.863914,-0.815088,-1.97238,0.585866,2.68169, +-0.493625,0.864064,-0.815093,-1.97223,0.585911,2.68184, +-0.493485,0.864213,-0.815099,-1.97208,0.585959,2.68199, +-0.493345,0.864363,-0.815107,-1.97193,0.586008,2.68214, +-0.493205,0.864512,-0.815114,-1.97179,0.586058,2.68229, +-0.493065,0.86466,-0.815123,-1.97164,0.58611,2.68244, +-0.492926,0.864808,-0.815132,-1.97149,0.586163,2.68259, +-0.492788,0.864956,-0.815143,-1.97134,0.586218,2.68273, +-0.492651,0.865105,-0.815156,-1.97119,0.586276,2.68288, +-0.492514,0.865253,-0.81517,-1.97104,0.586335,2.68303, +-0.492377,0.865401,-0.815185,-1.9709,0.586396,2.68318, +-0.49224,0.865549,-0.815202,-1.97075,0.586458,2.68333, +-0.492103,0.865696,-0.815219,-1.9706,0.586522,2.68347, +-0.491967,0.865842,-0.815238,-1.97046,0.586588,2.68362, +-0.49183,0.865988,-0.815258,-1.97031,0.586655,2.68377, +-0.491693,0.866134,-0.815279,-1.97016,0.586724,2.68391, +-0.491555,0.86628,-0.815303,-1.97002,0.586796,2.68406, +-0.491418,0.866426,-0.815328,-1.96987,0.586869,2.6842, +-0.491281,0.866572,-0.815354,-1.96973,0.586945,2.68435, +-0.491144,0.866717,-0.815382,-1.96958,0.587022,2.6845, +-0.491008,0.866861,-0.815411,-1.96944,0.587101,2.68464, +-0.490872,0.867005,-0.815441,-1.96929,0.587181,2.68478, +-0.490737,0.867148,-0.815473,-1.96915,0.587263,2.68493, +-0.490602,0.867291,-0.815506,-1.96901,0.587347,2.68507, +-0.490467,0.867434,-0.815542,-1.96886,0.587434,2.68521, +-0.490332,0.867577,-0.815579,-1.96872,0.587523,2.68536, +-0.490199,0.867719,-0.815618,-1.96858,0.587613,2.6855, +-0.490066,0.867861,-0.815659,-1.96844,0.587705,2.68564, +-0.489934,0.868001,-0.8157,-1.9683,0.587799,2.68578, +-0.489803,0.868141,-0.815743,-1.96816,0.587894,2.68592, +-0.489674,0.86828,-0.815788,-1.96802,0.58799,2.68606, +-0.489544,0.868419,-0.815835,-1.96788,0.588089,2.6862, +-0.489415,0.868557,-0.815883,-1.96774,0.58819,2.68634, +-0.489288,0.868695,-0.815934,-1.9676,0.588291,2.68647, +-0.489161,0.868832,-0.815986,-1.96746,0.588395,2.68661, +-0.489036,0.868968,-0.81604,-1.96733,0.588499,2.68675, +-0.488912,0.869103,-0.816095,-1.96719,0.588604,2.68688, +-0.48879,0.869236,-0.816151,-1.96706,0.58871,2.68701, +-0.488669,0.869369,-0.816209,-1.96693,0.588818,2.68715, +-0.488549,0.869501,-0.816268,-1.9668,0.588927,2.68728, +-0.48843,0.869633,-0.81633,-1.96666,0.589037,2.68741, +-0.488312,0.869764,-0.816394,-1.96653,0.589148,2.68754, +-0.488196,0.869893,-0.816459,-1.9664,0.589261,2.68767, +-0.488081,0.870022,-0.816526,-1.96628,0.589374,2.6878, +-0.487968,0.870149,-0.816593,-1.96615,0.589487,2.68793, +-0.487857,0.870274,-0.816662,-1.96602,0.589602,2.68805, +-0.487747,0.870399,-0.816733,-1.9659,0.589717,2.68818, +-0.487638,0.870523,-0.816806,-1.96577,0.589833,2.6883, +-0.48753,0.870646,-0.81688,-1.96565,0.58995,2.68842, +-0.487424,0.870768,-0.816956,-1.96553,0.590069,2.68855, +-0.487319,0.870889,-0.817034,-1.96541,0.590188,2.68867, +-0.487215,0.871009,-0.817113,-1.96529,0.590307,2.68879, +-0.487114,0.871127,-0.817192,-1.96517,0.590427,2.68891, +-0.487014,0.871244,-0.817273,-1.96505,0.590547,2.68902, +-0.486917,0.871359,-0.817356,-1.96494,0.590668,2.68914, +-0.486823,0.871474,-0.81744,-1.96482,0.59079,2.68925, +-0.486731,0.871588,-0.817526,-1.96471,0.590913,2.68937, +-0.486643,0.871701,-0.817613,-1.9646,0.591036,2.68948, +-0.486558,0.871813,-0.817702,-1.96448,0.59116,2.68959, +-0.486476,0.871923,-0.817792,-1.96437,0.591285,2.6897, +-0.486397,0.872032,-0.817882,-1.96427,0.591409,2.68981, +-0.486321,0.872139,-0.817974,-1.96416,0.591534,2.68992, +-0.486247,0.872245,-0.818067,-1.96405,0.591659,2.69002, +-0.486176,0.87235,-0.818161,-1.96395,0.591785,2.69013, +-0.486106,0.872455,-0.818257,-1.96384,0.591912,2.69023, +-0.486038,0.872558,-0.818354,-1.96374,0.59204,2.69034, +-0.485971,0.87266,-0.818452,-1.96364,0.592168,2.69044, +-0.485906,0.872761,-0.818551,-1.96354,0.592297,2.69054, +-0.485842,0.872861,-0.818651,-1.96344,0.592425,2.69064, +-0.485779,0.872958,-0.818751,-1.96334,0.592554,2.69074, +-0.485717,0.873053,-0.818852,-1.96324,0.592683,2.69083, +-0.485655,0.873146,-0.818955,-1.96315,0.592813,2.69092, +-0.485595,0.873236,-0.819059,-1.96306,0.592944,2.69101, +-0.485535,0.873323,-0.819165,-1.96297,0.593075,2.6911, +-0.485476,0.873407,-0.819271,-1.96289,0.593207,2.69119, +-0.485416,0.873488,-0.819378,-1.96281,0.593339,2.69127, +-0.485356,0.873566,-0.819485,-1.96273,0.593471,2.69134, +-0.485297,0.873641,-0.819593,-1.96266,0.593603,2.69142, +-0.485238,0.873714,-0.819702,-1.96258,0.593736,2.69149, +-0.48518,0.873785,-0.819813,-1.96251,0.593869,2.69156, +-0.485123,0.873854,-0.819924,-1.96244,0.594003,2.69163, +-0.485067,0.873921,-0.820037,-1.96238,0.594138,2.6917, +-0.485012,0.873987,-0.82015,-1.96231,0.594273,2.69176, +-0.484957,0.874051,-0.820264,-1.96225,0.594408,2.69183, +-0.484903,0.874115,-0.820379,-1.96218,0.594543,2.69189, +-0.484849,0.874178,-0.820494,-1.96212,0.594678,2.69196, +-0.484796,0.874239,-0.820609,-1.96206,0.594814,2.69202, +-0.484745,0.8743,-0.820726,-1.962,0.59495,2.69208, +-0.484694,0.87436,-0.820844,-1.96194,0.595088,2.69214, +-0.484645,0.874421,-0.820963,-1.96188,0.595225,2.6922, +-0.484596,0.874481,-0.821083,-1.96182,0.595364,2.69226, +-0.484548,0.874541,-0.821204,-1.96176,0.595502,2.69232, +-0.4845,0.874601,-0.821325,-1.9617,0.59564,2.69238, +-0.484453,0.874661,-0.821446,-1.96164,0.595778,2.69244, +-0.484406,0.87472,-0.821568,-1.96158,0.595917,2.6925, +-0.484361,0.874779,-0.821691,-1.96152,0.596056,2.69256, +-0.484316,0.874836,-0.821816,-1.96146,0.596196,2.69261, +-0.484273,0.874893,-0.821941,-1.9614,0.596337,2.69267, +-0.484231,0.874949,-0.822067,-1.96135,0.596478,2.69273, +-0.484189,0.875005,-0.822194,-1.96129,0.596619,2.69278, +-0.484148,0.87506,-0.822321,-1.96124,0.59676,2.69284, +-0.484108,0.875115,-0.822448,-1.96118,0.596901,2.69289, +-0.484069,0.875169,-0.822576,-1.96113,0.597043,2.69295, +-0.48403,0.875222,-0.822705,-1.96107,0.597185,2.693, +-0.483994,0.875274,-0.822835,-1.96102,0.597327,2.69305, +-0.483958,0.875326,-0.822966,-1.96097,0.597471,2.6931, +-0.483923,0.875376,-0.823097,-1.96092,0.597614,2.69315, +-0.483889,0.875426,-0.823229,-1.96087,0.597758,2.6932, +-0.483855,0.875475,-0.823362,-1.96082,0.597901,2.69325, +-0.483822,0.875524,-0.823495,-1.96077,0.598045,2.6933, +-0.48379,0.875572,-0.823628,-1.96072,0.598189,2.69335, +-0.483759,0.875619,-0.823763,-1.96068,0.598333,2.6934, +-0.483729,0.875665,-0.823898,-1.96063,0.598478,2.69344, +-0.483701,0.87571,-0.824035,-1.96059,0.598623,2.69349, +-0.483673,0.875754,-0.824172,-1.96054,0.598769,2.69353, +-0.483647,0.875797,-0.824309,-1.9605,0.598915,2.69358, +-0.483621,0.87584,-0.824447,-1.96046,0.59906,2.69362, +-0.483595,0.875882,-0.824585,-1.96041,0.599205,2.69366, +-0.483571,0.875924,-0.824723,-1.96037,0.599351,2.6937, +-0.483547,0.875964,-0.824862,-1.96033,0.599497,2.69374, +-0.483525,0.876003,-0.825003,-1.96029,0.599644,2.69378, +-0.483505,0.876041,-0.825144,-1.96026,0.599791,2.69382, +-0.483485,0.876078,-0.825285,-1.96022,0.599937,2.69386, +-0.483466,0.876114,-0.825427,-1.96018,0.600084,2.69389, +-0.483447,0.87615,-0.825569,-1.96015,0.60023,2.69393, +-0.48343,0.876185,-0.82571,-1.96011,0.600377,2.69396, +-0.483413,0.876219,-0.825853,-1.96008,0.600524,2.694, +-0.483397,0.876252,-0.825996,-1.96005,0.60067,2.69403, +-0.483383,0.876284,-0.82614,-1.96001,0.600817,2.69406, +-0.48337,0.876314,-0.826284,-1.95998,0.600964,2.69409, +-0.483358,0.876343,-0.826429,-1.95995,0.60111,2.69412, +-0.483347,0.876372,-0.826574,-1.95992,0.601257,2.69415, +-0.483336,0.8764,-0.826719,-1.9599,0.601403,2.69418, +-0.483326,0.876428,-0.826864,-1.95987,0.60155,2.69421, +-0.483317,0.876454,-0.827009,-1.95984,0.601696,2.69423, +-0.483309,0.876479,-0.827155,-1.95982,0.601842,2.69426, +-0.483303,0.876503,-0.827302,-1.95979,0.601989,2.69428, +-0.483298,0.876526,-0.827449,-1.95977,0.602135,2.6943, +-0.483293,0.876548,-0.827596,-1.95975,0.602281,2.69433, +-0.48329,0.876568,-0.827744,-1.95973,0.602427,2.69435, +-0.483287,0.876589,-0.827891,-1.95971,0.602573,2.69437, +-0.483284,0.876609,-0.828038,-1.95969,0.602719,2.69439, +-0.483283,0.876627,-0.828185,-1.95967,0.602864,2.69441, +-0.483283,0.876645,-0.828333,-1.95965,0.603009,2.69442, +-0.483284,0.876661,-0.828482,-1.95964,0.603154,2.69444, +-0.483286,0.876676,-0.828631,-1.95962,0.603299,2.69445, +-0.483289,0.876689,-0.82878,-1.95961,0.603444,2.69447, +-0.483293,0.876702,-0.82893,-1.95959,0.603589,2.69448, +-0.483297,0.876715,-0.829078,-1.95958,0.603734,2.69449, +-0.483302,0.876727,-0.829227,-1.95957,0.603878,2.6945, +-0.483309,0.876738,-0.829376,-1.95956,0.604022,2.69452, +-0.483316,0.876747,-0.829526,-1.95955,0.604166,2.69453, +-0.483324,0.876755,-0.829676,-1.95954,0.604309,2.69453, +-0.483334,0.876762,-0.829826,-1.95954,0.604452,2.69454, +-0.483346,0.876768,-0.829977,-1.95953,0.604596,2.69455, +-0.483358,0.876773,-0.830127,-1.95952,0.604739,2.69455, +-0.483371,0.876778,-0.830277,-1.95952,0.604882,2.69456, +-0.483385,0.876782,-0.830427,-1.95952,0.605025,2.69456, +-0.4834,0.876785,-0.830577,-1.95951,0.605168,2.69456, +-0.483417,0.876787,-0.830727,-1.95951,0.605309,2.69457, +-0.483435,0.876787,-0.830878,-1.95951,0.60545,2.69457, +-0.483455,0.876787,-0.831029,-1.95951,0.605591,2.69456, +-0.483476,0.876785,-0.83118,-1.95951,0.605732,2.69456, +-0.483498,0.876783,-0.831331,-1.95951,0.605873,2.69456, +-0.483521,0.87678,-0.831482,-1.95952,0.606014,2.69456, +-0.483545,0.876776,-0.831632,-1.95952,0.606154,2.69455, +-0.483571,0.876772,-0.831783,-1.95953,0.606294,2.69455, +-0.483598,0.876766,-0.831933,-1.95953,0.606433,2.69454, +-0.483627,0.876759,-0.832084,-1.95954,0.606572,2.69454, +-0.483657,0.876751,-0.832236,-1.95955,0.60671,2.69453, +-0.483689,0.876741,-0.832387,-1.95956,0.606848,2.69452, +-0.483722,0.876731,-0.832538,-1.95957,0.606986,2.69451, +-0.483757,0.876719,-0.832689,-1.95958,0.607124,2.6945, +-0.483792,0.876707,-0.832839,-1.95959,0.607261,2.69449, +-0.483829,0.876693,-0.832989,-1.9596,0.607398,2.69447, +-0.483868,0.876679,-0.833139,-1.95962,0.607535,2.69446, +-0.483908,0.876662,-0.83329,-1.95964,0.60767,2.69444, +-0.48395,0.876644,-0.833441,-1.95965,0.607805,2.69442, +-0.483994,0.876624,-0.833592,-1.95967,0.607939,2.6944, +-0.48404,0.876604,-0.833742,-1.95969,0.608074,2.69438, +-0.484086,0.876582,-0.833892,-1.95971,0.608208,2.69436, +-0.484134,0.87656,-0.834042,-1.95974,0.608342,2.69434, +-0.484183,0.876536,-0.834191,-1.95976,0.608476,2.69431, +-0.484234,0.876511,-0.834341,-1.95979,0.608609,2.69429, +-0.484288,0.876483,-0.83449,-1.95981,0.60874,2.69426, +-0.484343,0.876454,-0.83464,-1.95984,0.608871,2.69423, +-0.4844,0.876424,-0.83479,-1.95987,0.609002,2.6942, +-0.484458,0.876392,-0.834939,-1.95991,0.609132,2.69417, +-0.484517,0.876359,-0.835088,-1.95994,0.609262,2.69414, +-0.484579,0.876325,-0.835236,-1.95997,0.609392,2.6941, +-0.484641,0.876289,-0.835384,-1.96001,0.609521,2.69407, +-0.484706,0.876252,-0.835532,-1.96005,0.609649,2.69403, +-0.484773,0.876213,-0.83568,-1.96008,0.609776,2.69399, +-0.484842,0.876172,-0.835828,-1.96013,0.609903,2.69395, +-0.484912,0.876129,-0.835976,-1.96017,0.610028,2.69391, +-0.484985,0.876084,-0.836123,-1.96021,0.610154,2.69386, +-0.485058,0.876039,-0.836269,-1.96026,0.610279,2.69382, +-0.485133,0.875992,-0.836415,-1.96031,0.610404,2.69377, +-0.485211,0.875943,-0.836561,-1.96035,0.610528,2.69372, +-0.48529,0.875893,-0.836707,-1.9604,0.610652,2.69367, +-0.485371,0.87584,-0.836853,-1.96046,0.610774,2.69362, +-0.485455,0.875785,-0.836998,-1.96051,0.610896,2.69356, +-0.48554,0.875729,-0.837144,-1.96057,0.611017,2.69351, +-0.485627,0.875671,-0.837288,-1.96063,0.611137,2.69345, +-0.485716,0.875611,-0.837432,-1.96069,0.611258,2.69339, +-0.485806,0.87555,-0.837575,-1.96075,0.611378,2.69333, +-0.485898,0.875487,-0.837716,-1.96081,0.611499,2.69326, +-0.485993,0.875422,-0.837856,-1.96088,0.611621,2.6932, +-0.486089,0.875355,-0.837994,-1.96094,0.611743,2.69313, +-0.486187,0.875285,-0.838131,-1.96101,0.611864,2.69306, +-0.486287,0.875215,-0.838267,-1.96108,0.611986,2.69299, +-0.486388,0.875142,-0.838402,-1.96115,0.612107,2.69292, +-0.486489,0.875069,-0.838536,-1.96123,0.612227,2.69285, +-0.486593,0.874994,-0.83867,-1.9613,0.612347,2.69277, +-0.486697,0.874917,-0.838803,-1.96138,0.612466,2.6927, +-0.486803,0.874838,-0.838934,-1.96146,0.612585,2.69262, +-0.486911,0.874758,-0.839064,-1.96154,0.612704,2.69254, +-0.48702,0.874675,-0.839193,-1.96162,0.612821,2.69245, +-0.48713,0.874592,-0.83932,-1.96171,0.612937,2.69237, +-0.487241,0.874506,-0.839446,-1.96179,0.613052,2.69228, +-0.487353,0.87442,-0.839571,-1.96188,0.613165,2.6922, +-0.487465,0.874333,-0.839695,-1.96196,0.613277,2.69211, +-0.487578,0.874244,-0.839818,-1.96205,0.613387,2.69202, +-0.487693,0.874153,-0.83994,-1.96214,0.613497,2.69193, +-0.487809,0.87406,-0.84006,-1.96224,0.613605,2.69184, +-0.487926,0.873966,-0.840178,-1.96233,0.613711,2.69174, +-0.488044,0.873871,-0.840296,-1.96243,0.613816,2.69165, +-0.488162,0.873775,-0.840413,-1.96252,0.613919,2.69155, +-0.48828,0.873678,-0.840529,-1.96262,0.614019,2.69146, +-0.488399,0.873579,-0.840645,-1.96272,0.614117,2.69136, +-0.488519,0.87348,-0.840759,-1.96282,0.614212,2.69126, +-0.48864,0.873379,-0.840872,-1.96292,0.614304,2.69116, +-0.488762,0.873277,-0.840984,-1.96302,0.614392,2.69106, +-0.488885,0.873173,-0.841095,-1.96312,0.614477,2.69095, +-0.489008,0.873068,-0.841204,-1.96323,0.614559,2.69085, +-0.489131,0.872963,-0.841312,-1.96333,0.614637,2.69074, +-0.489255,0.872857,-0.84142,-1.96344,0.614713,2.69064, +-0.489379,0.87275,-0.841527,-1.96355,0.614786,2.69053, +-0.489504,0.872643,-0.841632,-1.96365,0.614856,2.69042, +-0.48963,0.872534,-0.841737,-1.96376,0.614924,2.69031, +-0.489756,0.872423,-0.84184,-1.96387,0.61499,2.6902, +-0.489883,0.872312,-0.841941,-1.96399,0.615054,2.69009, +-0.490011,0.8722,-0.842042,-1.9641,0.615117,2.68998, +-0.490139,0.872087,-0.842142,-1.96421,0.615178,2.68987, +-0.490267,0.871974,-0.842241,-1.96432,0.615238,2.68975, +-0.490395,0.87186,-0.84234,-1.96444,0.615297,2.68964, +-0.490524,0.871746,-0.842437,-1.96455,0.615355,2.68952, +-0.490653,0.87163,-0.842534,-1.96467,0.615411,2.68941, +-0.490783,0.871514,-0.842629,-1.96478,0.615466,2.68929, +-0.490914,0.871396,-0.842722,-1.9649,0.615521,2.68917, +-0.491046,0.871278,-0.842815,-1.96502,0.615576,2.68906, +-0.491177,0.871159,-0.842907,-1.96514,0.61563,2.68894, +-0.491309,0.87104,-0.842998,-1.96526,0.615684,2.68882, +-0.49144,0.87092,-0.843089,-1.96538,0.615738,2.6887, +-0.491573,0.8708,-0.843179,-1.9655,0.615792,2.68858, +-0.491705,0.870679,-0.843267,-1.96562,0.615845,2.68846, +-0.491839,0.870557,-0.843354,-1.96574,0.615897,2.68833, +-0.491973,0.870434,-0.84344,-1.96586,0.615947,2.68821, +-0.492108,0.87031,-0.843525,-1.96599,0.615997,2.68809, +-0.492243,0.870186,-0.843609,-1.96611,0.616046,2.68796, +-0.492377,0.870061,-0.843692,-1.96624,0.616094,2.68784, +-0.492512,0.869936,-0.843775,-1.96636,0.616142,2.68771, +-0.492648,0.869811,-0.843857,-1.96649,0.616189,2.68759, +-0.492783,0.869685,-0.843938,-1.96661,0.616234,2.68746, +-0.49292,0.869557,-0.844017,-1.96674,0.616279,2.68734, +-0.493058,0.869429,-0.844095,-1.96687,0.616322,2.68721, +-0.493195,0.8693,-0.844172,-1.967,0.616365,2.68708, +-0.493333,0.869171,-0.844249,-1.96713,0.616407,2.68695, +-0.493471,0.869042,-0.844325,-1.96725,0.616448,2.68682, +-0.493609,0.868913,-0.8444,-1.96738,0.61649,2.68669, +-0.493747,0.868783,-0.844474,-1.96751,0.61653,2.68656, +-0.493886,0.868652,-0.844547,-1.96765,0.616569,2.68643, +-0.494025,0.86852,-0.844619,-1.96778,0.616608,2.6863, +-0.494165,0.868387,-0.84469,-1.96791,0.616645,2.68616, +-0.494306,0.868254,-0.844759,-1.96804,0.616681,2.68603, +-0.494447,0.86812,-0.844828,-1.96818,0.616716,2.6859, +-0.494587,0.867986,-0.844897,-1.96831,0.61675,2.68576, +-0.494728,0.867852,-0.844964,-1.96845,0.616784,2.68563, +-0.494869,0.867717,-0.845031,-1.96858,0.616817,2.6855, +-0.49501,0.867582,-0.845096,-1.96872,0.616849,2.68536, +-0.495152,0.867445,-0.84516,-1.96885,0.61688,2.68522, +-0.495295,0.867308,-0.845223,-1.96899,0.616909,2.68509, +-0.495438,0.86717,-0.845285,-1.96913,0.616937,2.68495, +-0.495581,0.867032,-0.845347,-1.96926,0.616965,2.68481, +-0.495724,0.866895,-0.845407,-1.9694,0.616992,2.68467, +-0.495867,0.866756,-0.845467,-1.96954,0.617018,2.68453, +-0.49601,0.866618,-0.845526,-1.96968,0.617044,2.6844, +-0.496154,0.866479,-0.845584,-1.96982,0.617069,2.68426, +-0.496298,0.866338,-0.84564,-1.96996,0.617092,2.68412, +-0.496443,0.866198,-0.845696,-1.9701,0.617114,2.68398, +-0.496588,0.866056,-0.84575,-1.97024,0.617134,2.68383, +-0.496733,0.865915,-0.845803,-1.97038,0.617155,2.68369, +-0.496877,0.865773,-0.845856,-1.97052,0.617174,2.68355, +-0.497022,0.865632,-0.845909,-1.97067,0.617193,2.68341, +-0.497167,0.86549,-0.84596,-1.97081,0.617211,2.68327, +-0.497312,0.865347,-0.84601,-1.97095,0.617228,2.68313, +-0.497458,0.865203,-0.846058,-1.97109,0.617243,2.68298, +-0.497604,0.86506,-0.846106,-1.97124,0.617257,2.68284, +-0.49775,0.864915,-0.846152,-1.97138,0.617271,2.68269, +-0.497895,0.864771,-0.846198,-1.97152,0.617283,2.68255, +-0.498041,0.864627,-0.846243,-1.97167,0.617295,2.68241, +-0.498187,0.864484,-0.846287,-1.97181,0.617306,2.68226, +-0.498333,0.86434,-0.84633,-1.97196,0.617317,2.68212, +-0.498479,0.864195,-0.846372,-1.9721,0.617326,2.68197, +-0.498625,0.86405,-0.846413,-1.97225,0.617334,2.68183, +-0.498771,0.863904,-0.846452,-1.97239,0.61734,2.68168, +-0.498917,0.863758,-0.84649,-1.97254,0.617346,2.68153, +-0.499062,0.863612,-0.846528,-1.97269,0.617351,2.68139, +-0.499208,0.863466,-0.846565,-1.97283,0.617355,2.68124, +-0.499354,0.86332,-0.846601,-1.97298,0.617359,2.6811, +-0.4995,0.863173,-0.846636,-1.97312,0.617362,2.68095, +-0.499647,0.863026,-0.84667,-1.97327,0.617363,2.6808, +-0.499793,0.862878,-0.846702,-1.97342,0.617363,2.68066, +-0.499939,0.86273,-0.846733,-1.97357,0.617362,2.68051, +-0.500085,0.862582,-0.846762,-1.97372,0.617361,2.68036, +-0.50023,0.862434,-0.846791,-1.97386,0.617358,2.68021, +-0.500374,0.862286,-0.846818,-1.97401,0.617355,2.68006, +-0.500517,0.862139,-0.846844,-1.97416,0.617352,2.67992, +-0.50066,0.861992,-0.846869,-1.97431,0.617347,2.67977, +-0.500803,0.861846,-0.846893,-1.97445,0.617342,2.67962, +-0.500945,0.8617,-0.846915,-1.9746,0.617335,2.67948, +-0.501088,0.861554,-0.846937,-1.97474,0.617326,2.67933, +-0.501231,0.861407,-0.846958,-1.97489,0.617317,2.67919, +-0.501374,0.861261,-0.846979,-1.97504,0.617306,2.67904, +-0.501518,0.861115,-0.846999,-1.97518,0.617295,2.67889, +-0.501661,0.86097,-0.84702,-1.97533,0.617283,2.67875, +-0.501805,0.860823,-0.84704,-1.97547,0.61727,2.6786, +-0.501948,0.860677,-0.847059,-1.97562,0.617255,2.67846, +-0.502092,0.860529,-0.847076,-1.97577,0.617239,2.67831, +-0.502235,0.860382,-0.847093,-1.97592,0.617222,2.67816, +-0.502379,0.860233,-0.847108,-1.97606,0.617203,2.67801, +-0.502522,0.860085,-0.847123,-1.97621,0.617183,2.67786, +-0.502665,0.859937,-0.847136,-1.97636,0.617162,2.67772, +-0.502809,0.859789,-0.847148,-1.97651,0.61714,2.67757, +-0.502952,0.859641,-0.847159,-1.97666,0.617117,2.67742, +-0.503095,0.859492,-0.847169,-1.97681,0.617093,2.67727, +-0.503239,0.859342,-0.847177,-1.97695,0.617066,2.67712, +-0.503382,0.859192,-0.847183,-1.9771,0.617038,2.67697, +-0.503525,0.859042,-0.847189,-1.97725,0.617009,2.67682, +-0.503668,0.858893,-0.847194,-1.9774,0.616978,2.67667, +-0.503811,0.858743,-0.847199,-1.97755,0.616947,2.67652, +-0.503954,0.858594,-0.847203,-1.9777,0.616914,2.67637, +-0.504096,0.858444,-0.847206,-1.97785,0.61688,2.67622, +-0.504238,0.858294,-0.847208,-1.978,0.616844,2.67607, +-0.50438,0.858144,-0.847208,-1.97815,0.616806,2.67592, +-0.504522,0.857993,-0.847208,-1.9783,0.616767,2.67577, +-0.504663,0.857843,-0.847206,-1.97845,0.616726,2.67562, +-0.504804,0.857692,-0.847204,-1.9786,0.616684,2.67547, +-0.504943,0.857543,-0.847201,-1.97875,0.616641,2.67532, +-0.505082,0.857394,-0.847198,-1.9789,0.616597,2.67517, +-0.50522,0.857245,-0.847193,-1.97905,0.616551,2.67502, +-0.505358,0.857097,-0.847188,-1.9792,0.616504,2.67488, +-0.505496,0.856949,-0.847181,-1.97935,0.616454,2.67473, +-0.505635,0.856801,-0.847172,-1.9795,0.616403,2.67458, +-0.505773,0.856652,-0.847163,-1.97965,0.61635,2.67443, +-0.505912,0.856505,-0.847152,-1.97979,0.616295,2.67428, +-0.506051,0.856357,-0.84714,-1.97994,0.616239,2.67414, +-0.506189,0.85621,-0.847127,-1.98009,0.616182,2.67399, +-0.506327,0.856063,-0.847113,-1.98024,0.616122,2.67384, +-0.506463,0.855916,-0.847098,-1.98038,0.616061,2.67369, +-0.5066,0.855768,-0.84708,-1.98053,0.615997,2.67355, +-0.506735,0.85562,-0.847061,-1.98068,0.615931,2.6734, +-0.506871,0.855473,-0.847041,-1.98083,0.615863,2.67325, +-0.507007,0.855326,-0.847019,-1.98097,0.615793,2.6731, +-0.507142,0.85518,-0.846997,-1.98112,0.615723,2.67296, +-0.507277,0.855034,-0.846973,-1.98126,0.61565,2.67281, +-0.507412,0.854888,-0.846948,-1.98141,0.615576,2.67267, +-0.507545,0.854742,-0.846921,-1.98156,0.6155,2.67252, +-0.507678,0.854596,-0.846893,-1.9817,0.615421,2.67237, +-0.50781,0.854451,-0.846862,-1.98185,0.61534,2.67223, +-0.507942,0.854305,-0.84683,-1.98199,0.615257,2.67208, +-0.508073,0.854161,-0.846797,-1.98214,0.615172,2.67194, +-0.508205,0.854017,-0.846762,-1.98228,0.615086,2.67179, +-0.508336,0.853874,-0.846726,-1.98242,0.614998,2.67165, +-0.508466,0.853733,-0.846689,-1.98256,0.614908,2.67151, +-0.508595,0.853593,-0.846649,-1.9827,0.614816,2.67137, +-0.508723,0.853455,-0.846607,-1.98284,0.614722,2.67123, +-0.508849,0.853318,-0.846564,-1.98298,0.614626,2.6711, +-0.508973,0.853182,-0.846519,-1.98311,0.614528,2.67096, +-0.509096,0.853048,-0.846472,-1.98325,0.614429,2.67083, +-0.509217,0.852914,-0.846424,-1.98338,0.614329,2.67069, +-0.509336,0.852781,-0.846375,-1.98352,0.614228,2.67056, +-0.509453,0.852649,-0.846324,-1.98365,0.614125,2.67043, +-0.509568,0.852519,-0.846272,-1.98378,0.61402,2.6703, +-0.509682,0.85239,-0.846217,-1.98391,0.613914,2.67017, +-0.509794,0.852263,-0.84616,-1.98403,0.613806,2.67004, +-0.509905,0.852137,-0.846102,-1.98416,0.613698,2.66992, +-0.510014,0.852012,-0.846042,-1.98429,0.613588,2.66979, +-0.510123,0.851888,-0.845981,-1.98441,0.613478,2.66967, +-0.510231,0.851765,-0.845918,-1.98453,0.613367,2.66954, +-0.510338,0.851643,-0.845854,-1.98465,0.613255,2.66942, +-0.510444,0.851523,-0.845788,-1.98477,0.613141,2.6693, +-0.510548,0.851404,-0.84572,-1.98489,0.613027,2.66918, +-0.51065,0.851287,-0.845651,-1.98501,0.612911,2.66907, +-0.510751,0.851171,-0.845579,-1.98513,0.612794,2.66895, +-0.510851,0.851055,-0.845507,-1.98524,0.612677,2.66883, +-0.51095,0.850941,-0.845433,-1.98536,0.61256,2.66872, +-0.511049,0.850827,-0.845358,-1.98547,0.612442,2.66861, +-0.511145,0.850715,-0.845281,-1.98558,0.612323,2.66849, +-0.511241,0.850604,-0.845202,-1.98569,0.612203,2.66838, +-0.511335,0.850495,-0.845122,-1.9858,0.612082,2.66827, +-0.511427,0.850387,-0.84504,-1.98591,0.611961,2.66816, +-0.511519,0.85028,-0.844957,-1.98602,0.611838,2.66806, +-0.511609,0.850174,-0.844872,-1.98612,0.611716,2.66795, +-0.511699,0.850068,-0.844787,-1.98623,0.611593,2.66785, +-0.511788,0.849964,-0.8447,-1.98633,0.611469,2.66774, +-0.511875,0.84986,-0.844613,-1.98644,0.611346,2.66764, +-0.511962,0.849758,-0.844523,-1.98654,0.611221,2.66754, +-0.512046,0.849657,-0.844432,-1.98664,0.611095,2.66744, +-0.51213,0.849558,-0.844339,-1.98674,0.610969,2.66734, +-0.512212,0.84946,-0.844245,-1.98684,0.610842,2.66724, +-0.512294,0.849363,-0.844151,-1.98693,0.610715,2.66714, +-0.512374,0.849266,-0.844055,-1.98703,0.610588,2.66704, +-0.512454,0.84917,-0.843959,-1.98713,0.610461,2.66695, +-0.512533,0.849075,-0.843861,-1.98722,0.610333,2.66685, +-0.512611,0.848981,-0.843763,-1.98732,0.610204,2.66676, +-0.512686,0.848889,-0.843662,-1.98741,0.610075,2.66667, +-0.512761,0.848798,-0.843561,-1.9875,0.609945,2.66658, +-0.512835,0.848709,-0.843458,-1.98759,0.609814,2.66649, +-0.512907,0.848619,-0.843355,-1.98768,0.609683,2.6664, +-0.51298,0.848531,-0.843251,-1.98777,0.609553,2.66631, +-0.513051,0.848443,-0.843146,-1.98785,0.609422,2.66622, +-0.513121,0.848356,-0.84304,-1.98794,0.60929,2.66613, +-0.51319,0.848271,-0.842934,-1.98803,0.609158,2.66605, +-0.513258,0.848186,-0.842825,-1.98811,0.609026,2.66596, +-0.513324,0.848104,-0.842716,-1.98819,0.608892,2.66588, +-0.513389,0.848022,-0.842606,-1.98828,0.608758,2.6658, +-0.513453,0.84794,-0.842495,-1.98836,0.608624,2.66572, +-0.513517,0.84786,-0.842384,-1.98844,0.60849,2.66564, +-0.51358,0.84778,-0.842272,-1.98852,0.608356,2.66556, +-0.513642,0.847701,-0.842159,-1.9886,0.608222,2.66548, +-0.513702,0.847624,-0.842045,-1.98867,0.608086,2.6654, +-0.513761,0.847548,-0.84193,-1.98875,0.60795,2.66533, +-0.513819,0.847473,-0.841814,-1.98882,0.607814,2.66525, +-0.513876,0.847399,-0.841697,-1.9889,0.607677,2.66518, +-0.513932,0.847326,-0.84158,-1.98897,0.60754,2.6651, +-0.513987,0.847253,-0.841462,-1.98904,0.607403,2.66503, +-0.514042,0.847181,-0.841343,-1.98912,0.607266,2.66496, +-0.514095,0.84711,-0.841224,-1.98919,0.607128,2.66489, +-0.514148,0.84704,-0.841104,-1.98926,0.60699,2.66482, +-0.514199,0.846972,-0.840983,-1.98933,0.606851,2.66475, +-0.514248,0.846905,-0.84086,-1.98939,0.606712,2.66468, +-0.514297,0.846838,-0.840736,-1.98946,0.606572,2.66462, +-0.514345,0.846773,-0.840612,-1.98952,0.606432,2.66455, +-0.514392,0.846708,-0.840487,-1.98959,0.606292,2.66449, +-0.514439,0.846644,-0.840362,-1.98965,0.606152,2.66442, +-0.514484,0.84658,-0.840236,-1.98972,0.606012,2.66436, +-0.514528,0.846518,-0.840108,-1.98978,0.605871,2.6643, +-0.514571,0.846458,-0.83998,-1.98984,0.605729,2.66424, +-0.514613,0.846398,-0.839851,-1.9899,0.605587,2.66418, +-0.514654,0.84634,-0.839722,-1.98996,0.605445,2.66412, +-0.514694,0.846282,-0.839593,-1.99002,0.605302,2.66406, +-0.514733,0.846225,-0.839463,-1.99007,0.60516,2.664, +-0.514771,0.846168,-0.839334,-1.99013,0.605017,2.66395, +-0.514809,0.846112,-0.839204,-1.99018,0.604874,2.66389, +-0.514845,0.846058,-0.839074,-1.99024,0.604731,2.66384, +-0.51488,0.846005,-0.838943,-1.99029,0.604588,2.66378, +-0.514914,0.845954,-0.83881,-1.99034,0.604444,2.66373, +-0.514946,0.845903,-0.838677,-1.99039,0.604301,2.66368, +-0.514978,0.845853,-0.838543,-1.99044,0.604158,2.66363, +-0.515009,0.845804,-0.83841,-1.99049,0.604014,2.66358, +-0.51504,0.845755,-0.838275,-1.99054,0.603871,2.66353, +-0.515069,0.845708,-0.83814,-1.99059,0.603727,2.66349, +-0.515097,0.845662,-0.838004,-1.99064,0.603582,2.66344, +-0.515124,0.845617,-0.837866,-1.99068,0.603437,2.66339, +-0.515149,0.845573,-0.837728,-1.99072,0.603292,2.66335, +-0.515174,0.84553,-0.837589,-1.99077,0.603146,2.66331, +-0.515198,0.845488,-0.83745,-1.99081,0.603,2.66327, +-0.515221,0.845447,-0.837311,-1.99085,0.602855,2.66323, +-0.515243,0.845406,-0.837171,-1.99089,0.602709,2.66318, +-0.515265,0.845367,-0.837031,-1.99093,0.602563,2.66314, +-0.515285,0.845328,-0.83689,-1.99097,0.602417,2.66311, +-0.515304,0.845291,-0.836748,-1.99101,0.60227,2.66307, +-0.515321,0.845255,-0.836606,-1.99104,0.602124,2.66303, +-0.515338,0.84522,-0.836463,-1.99108,0.601977,2.663, +-0.515354,0.845186,-0.83632,-1.99111,0.601831,2.66296, +-0.515369,0.845153,-0.836177,-1.99114,0.601684,2.66293, +-0.515383,0.84512,-0.836033,-1.99118,0.601538,2.6629, +-0.515397,0.845088,-0.835889,-1.99121,0.601391,2.66287, +-0.515409,0.845058,-0.835745,-1.99124,0.601245,2.66284, +-0.51542,0.845029,-0.835599,-1.99127,0.601098,2.66281, +-0.51543,0.845001,-0.835454,-1.9913,0.600951,2.66278, +-0.515438,0.844975,-0.835307,-1.99132,0.600805,2.66275, +-0.515446,0.844949,-0.835161,-1.99135,0.600659,2.66273, +-0.515454,0.844923,-0.835015,-1.99137,0.600512,2.6627, +-0.51546,0.844899,-0.834869,-1.9914,0.600366,2.66268, +-0.515466,0.844875,-0.834722,-1.99142,0.60022,2.66265, +-0.51547,0.844853,-0.834575,-1.99144,0.600075,2.66263, +-0.515473,0.844832,-0.834427,-1.99147,0.599929,2.66261, +-0.515475,0.844813,-0.834279,-1.99148,0.599783,2.66259, +-0.515476,0.844794,-0.83413,-1.9915,0.599637,2.66257, +-0.515477,0.844776,-0.833982,-1.99152,0.599491,2.66255, +-0.515476,0.844759,-0.833833,-1.99154,0.599346,2.66254, +-0.515475,0.844742,-0.833685,-1.99155,0.5992,2.66252, +-0.515474,0.844727,-0.833537,-1.99157,0.599056,2.66251, +-0.515471,0.844713,-0.833387,-1.99158,0.598911,2.66249, +-0.515466,0.8447,-0.833238,-1.9916,0.598766,2.66248, +-0.515461,0.844689,-0.833088,-1.99161,0.598622,2.66247, +-0.515454,0.844678,-0.832938,-1.99162,0.598478,2.66246, +-0.515446,0.844668,-0.832788,-1.99163,0.598333,2.66245, +-0.515438,0.844659,-0.832638,-1.99164,0.598189,2.66244, +-0.515429,0.844651,-0.832488,-1.99165,0.598045,2.66243, +-0.515419,0.844643,-0.832338,-1.99165,0.597902,2.66242, +-0.515407,0.844637,-0.832188,-1.99166,0.597759,2.66242, +-0.515394,0.844632,-0.832037,-1.99166,0.597617,2.66241, +-0.51538,0.844629,-0.831886,-1.99167,0.597474,2.66241, +-0.515364,0.844626,-0.831735,-1.99167,0.597332,2.6624, +-0.515347,0.844624,-0.831584,-1.99167,0.597189,2.6624, +-0.51533,0.844623,-0.831433,-1.99167,0.597047,2.6624, +-0.515311,0.844622,-0.831283,-1.99167,0.596905,2.6624, +-0.515291,0.844623,-0.831132,-1.99167,0.596763,2.6624, +-0.51527,0.844624,-0.830981,-1.99167,0.596623,2.6624, +-0.515247,0.844627,-0.83083,-1.99167,0.596482,2.66241, +-0.515222,0.844631,-0.830679,-1.99167,0.596343,2.66241, +-0.515196,0.844637,-0.830527,-1.99166,0.596203,2.66241, +-0.515169,0.844643,-0.830376,-1.99165,0.596063,2.66242, +-0.51514,0.844649,-0.830225,-1.99165,0.595923,2.66243, +-0.515111,0.844657,-0.830074,-1.99164,0.595784,2.66243, +-0.51508,0.844665,-0.829924,-1.99163,0.595645,2.66244, +-0.515048,0.844675,-0.829773,-1.99162,0.595507,2.66245, +-0.515013,0.844686,-0.829621,-1.99161,0.595369,2.66246, +-0.514977,0.844698,-0.82947,-1.9916,0.595233,2.66248, +-0.51494,0.844712,-0.829319,-1.99158,0.595096,2.66249, +-0.514901,0.844727,-0.829168,-1.99157,0.59496,2.66251, +-0.514861,0.844743,-0.829017,-1.99155,0.594823,2.66252, +-0.514819,0.84476,-0.828867,-1.99154,0.594687,2.66254, +-0.514777,0.844778,-0.828717,-1.99152,0.594552,2.66256, +-0.514732,0.844798,-0.828567,-1.9915,0.594417,2.66258, +-0.514685,0.844819,-0.828416,-1.99148,0.594283,2.6626, +-0.514637,0.844843,-0.828265,-1.99145,0.59415,2.66262, +-0.514587,0.844867,-0.828115,-1.99143,0.594017,2.66265, +-0.514535,0.844893,-0.827965,-1.9914,0.593884,2.66267, +-0.514483,0.84492,-0.827815,-1.99138,0.593752,2.6627, +-0.514429,0.844947,-0.827666,-1.99135,0.59362,2.66273, +-0.514373,0.844977,-0.827517,-1.99132,0.593488,2.66275, +-0.514315,0.845008,-0.827368,-1.99129,0.593357,2.66279, +-0.514255,0.845041,-0.827219,-1.99126,0.593228,2.66282, +-0.514193,0.845075,-0.82707,-1.99122,0.593099,2.66285, +-0.51413,0.845112,-0.826921,-1.99119,0.59297,2.66289, +-0.514065,0.845149,-0.826773,-1.99115,0.592842,2.66293, +-0.513998,0.845188,-0.826625,-1.99111,0.592714,2.66297, +-0.51393,0.845228,-0.826478,-1.99107,0.592587,2.66301, +-0.513861,0.84527,-0.82633,-1.99103,0.59246,2.66305, +-0.513789,0.845313,-0.826183,-1.99098,0.592334,2.66309, +-0.513715,0.845359,-0.826036,-1.99094,0.592209,2.66314, +-0.513639,0.845407,-0.825889,-1.99089,0.592085,2.66318, +-0.513561,0.845456,-0.825742,-1.99084,0.591962,2.66323, +-0.513482,0.845507,-0.825596,-1.99079,0.591839,2.66329, +-0.513401,0.845559,-0.825451,-1.99074,0.591716,2.66334, +-0.513318,0.845613,-0.825306,-1.99068,0.591594,2.66339, +-0.513234,0.845668,-0.825162,-1.99063,0.591472,2.66345, +-0.513147,0.845726,-0.825017,-1.99057,0.591352,2.6635, +-0.513058,0.845785,-0.824873,-1.99051,0.591232,2.66356, +-0.512967,0.845847,-0.824729,-1.99045,0.591114,2.66363, +-0.512875,0.845911,-0.824585,-1.99039,0.590997,2.66369, +-0.51278,0.845976,-0.824442,-1.99032,0.590881,2.66375, +-0.512685,0.846042,-0.824301,-1.99025,0.590766,2.66382, +-0.512588,0.84611,-0.824159,-1.99019,0.590652,2.66389, +-0.512489,0.84618,-0.824019,-1.99012,0.59054,2.66396, +-0.512388,0.846252,-0.823878,-1.99005,0.590429,2.66403, +-0.512286,0.846326,-0.823738,-1.98997,0.59032,2.6641, +-0.512182,0.846402,-0.823599,-1.9899,0.590213,2.66418, +-0.512077,0.846479,-0.82346,-1.98982,0.590107,2.66426, +-0.511971,0.846558,-0.823322,-1.98974,0.590001,2.66434, +-0.511864,0.846638,-0.823186,-1.98966,0.589897,2.66442, +-0.511756,0.846719,-0.82305,-1.98958,0.589794,2.6645, +-0.511646,0.846802,-0.822915,-1.9895,0.589692,2.66458, +-0.511536,0.846887,-0.822781,-1.98941,0.589592,2.66467, +-0.511423,0.846973,-0.822647,-1.98932,0.589494,2.66475, +-0.51131,0.847062,-0.822514,-1.98924,0.589397,2.66484, +-0.511196,0.847151,-0.822382,-1.98915,0.589301,2.66493, +-0.511081,0.847242,-0.822252,-1.98905,0.589206,2.66502, +-0.510966,0.847334,-0.822122,-1.98896,0.589112,2.66511, +-0.51085,0.847427,-0.821994,-1.98887,0.589019,2.66521, +-0.510733,0.847522,-0.821867,-1.98878,0.588927,2.6653, +-0.510615,0.847618,-0.82174,-1.98868,0.588837,2.6654, +-0.510496,0.847715,-0.821615,-1.98858,0.588748,2.66549, +-0.510376,0.847814,-0.82149,-1.98848,0.588661,2.66559, +-0.510255,0.847914,-0.821366,-1.98838,0.588575,2.66569, +-0.510134,0.848015,-0.821243,-1.98828,0.58849,2.66579, +-0.510013,0.848117,-0.821122,-1.98818,0.588405,2.6659, +-0.509891,0.84822,-0.821003,-1.98808,0.588322,2.666, +-0.509768,0.848324,-0.820884,-1.98797,0.58824,2.6661, +-0.509645,0.848429,-0.820766,-1.98787,0.588159,2.66621, +-0.509521,0.848536,-0.820649,-1.98776,0.58808,2.66631, +-0.509396,0.848643,-0.820533,-1.98765,0.588002,2.66642, +-0.50927,0.848752,-0.820418,-1.98755,0.587925,2.66653, +-0.509144,0.848861,-0.820305,-1.98744,0.587849,2.66664, +-0.509018,0.848971,-0.820193,-1.98733,0.587774,2.66675, +-0.508892,0.849081,-0.820082,-1.98722,0.5877,2.66686, +-0.508765,0.849193,-0.819973,-1.9871,0.587627,2.66697, +-0.508637,0.849305,-0.819864,-1.98699,0.587555,2.66708, +-0.508509,0.849419,-0.819757,-1.98688,0.587485,2.6672, +-0.50838,0.849533,-0.81965,-1.98676,0.587416,2.66731, +-0.50825,0.849649,-0.819544,-1.98665,0.587348,2.66743, +-0.50812,0.849766,-0.81944,-1.98653,0.587281,2.66754, +-0.50799,0.849882,-0.819337,-1.98641,0.587215,2.66766, +-0.50786,0.85,-0.819236,-1.9863,0.58715,2.66778, +-0.50773,0.850119,-0.819137,-1.98618,0.587086,2.6679, +-0.507598,0.850238,-0.819041,-1.98606,0.587023,2.66802, +-0.507466,0.850359,-0.818948,-1.98594,0.586961,2.66814, +-0.507334,0.85048,-0.818857,-1.98582,0.586901,2.66826, +-0.507201,0.850601,-0.818769,-1.9857,0.586842,2.66838, +-0.507067,0.850722,-0.818685,-1.98557,0.586784,2.6685, +-0.506934,0.850844,-0.818603,-1.98545,0.586727,2.66862, +-0.506801,0.850965,-0.818525,-1.98533,0.58667,2.66874, +-0.506667,0.851087,-0.818448,-1.98521,0.586614,2.66887, +-0.506532,0.85121,-0.818374,-1.98509,0.58656,2.66899, +-0.506397,0.851334,-0.818302,-1.98496,0.586507,2.66911, +-0.506261,0.851459,-0.818231,-1.98484,0.586455,2.66924, +-0.506125,0.851585,-0.818162,-1.98471,0.586405,2.66936, +-0.505989,0.851711,-0.818094,-1.98459,0.586355,2.66949, +-0.505853,0.851837,-0.818027,-1.98446,0.586306,2.66962, +-0.505716,0.851965,-0.817962,-1.98433,0.586258,2.66974, +-0.505579,0.852093,-0.817897,-1.9842,0.58621,2.66987, +-0.505442,0.852222,-0.817833,-1.98408,0.586164,2.67, +-0.505304,0.852352,-0.817769,-1.98395,0.58612,2.67013, +-0.505165,0.852482,-0.817705,-1.98381,0.586077,2.67026, +-0.505026,0.852614,-0.817641,-1.98368,0.586034,2.67039, +-0.504887,0.852745,-0.817578,-1.98355,0.585993,2.67052, +-0.504748,0.852877,-0.817514,-1.98342,0.585952,2.67066, +-0.504608,0.85301,-0.817451,-1.98329,0.585912,2.67079, +-0.504469,0.853142,-0.817388,-1.98315,0.585873,2.67092, +-0.504329,0.853276,-0.817326,-1.98302,0.585835,2.67105, +-0.504188,0.853411,-0.817265,-1.98289,0.585798,2.67119, +-0.504046,0.853546,-0.817205,-1.98275,0.585763,2.67132, +-0.503904,0.853682,-0.817145,-1.98262,0.585729,2.67146, +-0.503762,0.853817,-0.817086,-1.98248,0.585696,2.6716, +-0.50362,0.853953,-0.817027,-1.98234,0.585663,2.67173, +-0.503479,0.854088,-0.816969,-1.98221,0.585631,2.67187, +-0.503336,0.854225,-0.816911,-1.98207,0.5856,2.672, +-0.503194,0.854362,-0.816854,-1.98194,0.58557,2.67214, +-0.50305,0.854499,-0.816798,-1.9818,0.585542,2.67228, +-0.502907,0.854638,-0.816743,-1.98166,0.585515,2.67242, +-0.502763,0.854777,-0.816689,-1.98152,0.585489,2.67255, +-0.50262,0.854916,-0.816636,-1.98138,0.585464,2.67269, +-0.502476,0.855055,-0.816583,-1.98124,0.585439,2.67283, +-0.502333,0.855195,-0.81653,-1.9811,0.585415,2.67297, +-0.502189,0.855335,-0.816479,-1.98096,0.585392,2.67311, +-0.502044,0.855476,-0.816428,-1.98082,0.585371,2.67325, +-0.501899,0.855617,-0.816379,-1.98068,0.58535,2.6734, +-0.501754,0.85576,-0.816331,-1.98054,0.585331,2.67354, +-0.501608,0.855903,-0.816283,-1.98039,0.585313,2.67368, +-0.501463,0.856045,-0.816236,-1.98025,0.585296,2.67382, +-0.501317,0.856188,-0.81619,-1.98011,0.585279,2.67397, +-0.501171,0.856331,-0.816144,-1.97997,0.585264,2.67411, +-0.501026,0.856475,-0.816099,-1.97982,0.585249,2.67425, +-0.500879,0.856619,-0.816055,-1.97968,0.585235,2.6744, +-0.500733,0.856764,-0.816012,-1.97953,0.585223,2.67454, +-0.500586,0.856909,-0.815971,-1.97939,0.585212,2.67469, +-0.50044,0.857055,-0.815931,-1.97924,0.585201,2.67483, +-0.500294,0.857201,-0.815891,-1.9791,0.585192,2.67498, +-0.500148,0.857347,-0.815851,-1.97895,0.585183,2.67512, +-0.500002,0.857492,-0.815813,-1.9788,0.585175,2.67527, +-0.499855,0.857638,-0.815775,-1.97866,0.585168,2.67542, +-0.499708,0.857785,-0.815739,-1.97851,0.585162,2.67556, +-0.499561,0.857932,-0.815704,-1.97836,0.585158,2.67571, +-0.499414,0.85808,-0.81567,-1.97822,0.585154,2.67586, +-0.499267,0.858228,-0.815637,-1.97807,0.585152,2.67601, +-0.49912,0.858376,-0.815604,-1.97792,0.58515,2.67615, +-0.498973,0.858524,-0.815573,-1.97777,0.585149,2.6763, +-0.498826,0.858672,-0.815541,-1.97763,0.585148,2.67645, +-0.498679,0.85882,-0.815511,-1.97748,0.585149,2.6766, +-0.498532,0.858968,-0.815482,-1.97733,0.585151,2.67675, +-0.498385,0.859118,-0.815455,-1.97718,0.585154,2.6769, +-0.498239,0.859267,-0.815429,-1.97703,0.585158,2.67705, +-0.498092,0.859417,-0.815403,-1.97688,0.585163,2.67719, +-0.497945,0.859566,-0.815379,-1.97673,0.585169,2.67734, +-0.497799,0.859716,-0.815355,-1.97658,0.585176,2.67749, +-0.497652,0.859865,-0.815331,-1.97643,0.585183,2.67764, +-0.497506,0.860014,-0.815309,-1.97628,0.585191,2.67779, +-0.49736,0.860164,-0.815288,-1.97613,0.585201,2.67794, +-0.497213,0.860314,-0.815269,-1.97598,0.585212,2.67809, +-0.497067,0.860465,-0.81525,-1.97583,0.585224,2.67824, +-0.496921,0.860616,-0.815233,-1.97568,0.585238,2.67839, +-0.496775,0.860766,-0.815216,-1.97553,0.585253,2.67854, +-0.496629,0.860916,-0.8152,-1.97538,0.585269,2.67869, +-0.496483,0.861066,-0.815185,-1.97523,0.585285,2.67884, +-0.496338,0.861216,-0.81517,-1.97508,0.585303,2.67899, +-0.496193,0.861367,-0.815157,-1.97493,0.585322,2.67914, +-0.496048,0.861517,-0.815146,-1.97478,0.585343,2.6793, +-0.495903,0.861668,-0.815135,-1.97463,0.585366,2.67945, +-0.495758,0.86182,-0.815126,-1.97448,0.58539,2.6796, +-0.495613,0.86197,-0.815117,-1.97433,0.585415,2.67975, +-0.495468,0.862121,-0.815109,-1.97418,0.585441,2.6799, +-0.495324,0.862271,-0.815101,-1.97403,0.585468,2.68005, +-0.49518,0.862421,-0.815095,-1.97388,0.585497,2.6802, +-0.495037,0.862571,-0.81509,-1.97373,0.585527,2.68035, +-0.494894,0.862722,-0.815086,-1.97358,0.585559,2.6805, +-0.494751,0.862873,-0.815083,-1.97342,0.585593,2.68065, +-0.494608,0.863024,-0.815082,-1.97327,0.585628,2.6808, +-0.494465,0.863174,-0.815081,-1.97312,0.585665,2.68095, +-0.494322,0.863324,-0.815081,-1.97297,0.585702,2.6811, +-0.49418,0.863474,-0.815081,-1.97282,0.585741,2.68125, +-0.494039,0.863623,-0.815082,-1.97267,0.585782,2.6814, +-0.493898,0.863773,-0.815085,-1.97252,0.585824,2.68155, +-0.493757,0.863923,-0.815089,-1.97237,0.585868,2.6817, +-0.493617,0.864073,-0.815094,-1.97222,0.585914,2.68185, +-0.493477,0.864222,-0.8151,-1.97207,0.585962,2.682, +-0.493336,0.864372,-0.815107,-1.97193,0.586011,2.68215, +-0.493196,0.864521,-0.815115,-1.97178,0.586061,2.6823, +-0.493057,0.864669,-0.815124,-1.97163,0.586113,2.68245, +-0.492918,0.864817,-0.815133,-1.97148,0.586166,2.6826, +-0.49278,0.864965,-0.815144,-1.97133,0.586221,2.68274, +-0.492643,0.865114,-0.815157,-1.97118,0.586279,2.68289, +-0.492506,0.865262,-0.815171,-1.97103,0.586338,2.68304, +-0.492369,0.86541,-0.815187,-1.97089,0.586399,2.68319, +-0.492232,0.865558,-0.815203,-1.97074,0.586462,2.68334, +-0.492095,0.865705,-0.815221,-1.97059,0.586526,2.68348, +-0.491959,0.865851,-0.81524,-1.97045,0.586592,2.68363, +-0.491822,0.865997,-0.815259,-1.9703,0.586659,2.68378, +-0.491685,0.866144,-0.815281,-1.97015,0.586728,2.68392, +-0.491547,0.86629,-0.815304,-1.97001,0.5868,2.68407, +-0.49141,0.866436,-0.815329,-1.96986,0.586874,2.68421, +-0.491272,0.866581,-0.815356,-1.96972,0.58695,2.68436, +-0.491136,0.866727,-0.815384,-1.96957,0.587027,2.6845, +-0.491,0.866871,-0.815413,-1.96943,0.587106,2.68465, +-0.490864,0.867014,-0.815443,-1.96928,0.587186,2.68479, +-0.490729,0.867158,-0.815475,-1.96914,0.587269,2.68494, +-0.490594,0.867301,-0.815509,-1.969,0.587353,2.68508, +-0.490459,0.867444,-0.815544,-1.96885,0.58744,2.68522, +-0.490324,0.867587,-0.815582,-1.96871,0.587529,2.68536, +-0.490191,0.867729,-0.815621,-1.96857,0.587619,2.68551, +-0.490058,0.86787,-0.815661,-1.96843,0.587711,2.68565, +-0.489926,0.868011,-0.815703,-1.96829,0.587805,2.68579, +-0.489796,0.86815,-0.815746,-1.96815,0.5879,2.68593, +-0.489666,0.86829,-0.815791,-1.96801,0.587997,2.68607, +-0.489536,0.868428,-0.815838,-1.96787,0.588096,2.68621, +-0.489407,0.868567,-0.815886,-1.96773,0.588196,2.68634, +-0.48928,0.868704,-0.815937,-1.96759,0.588298,2.68648, +-0.489153,0.868841,-0.81599,-1.96746,0.588402,2.68662, +-0.489028,0.868977,-0.816043,-1.96732,0.588506,2.68676, +-0.488905,0.869112,-0.816098,-1.96719,0.588611,2.68689, +-0.488782,0.869245,-0.816155,-1.96705,0.588717,2.68702, +-0.488662,0.869378,-0.816212,-1.96692,0.588825,2.68716, +-0.488542,0.86951,-0.816272,-1.96679,0.588934,2.68729, +-0.488423,0.869642,-0.816334,-1.96666,0.589044,2.68742, +-0.488305,0.869772,-0.816398,-1.96652,0.589156,2.68755, +-0.488188,0.869902,-0.816463,-1.9664,0.589268,2.68768, +-0.488074,0.87003,-0.81653,-1.96627,0.589381,2.68781, +-0.487961,0.870157,-0.816598,-1.96614,0.589495,2.68794, +-0.48785,0.870283,-0.816667,-1.96601,0.589609,2.68806, +-0.48774,0.870407,-0.816738,-1.96589,0.589724,2.68819, +-0.487631,0.870531,-0.81681,-1.96577,0.589841,2.68831, +-0.487523,0.870654,-0.816885,-1.96564,0.589958,2.68843, +-0.487417,0.870776,-0.816961,-1.96552,0.590077,2.68855, +-0.487312,0.870897,-0.817039,-1.9654,0.590196,2.68868, +-0.487208,0.871017,-0.817118,-1.96528,0.590315,2.6888, +-0.487107,0.871135,-0.817198,-1.96516,0.590435,2.68891, +-0.487007,0.871252,-0.817279,-1.96505,0.590555,2.68903, +-0.48691,0.871367,-0.817361,-1.96493,0.590676,2.68915, +-0.486816,0.871482,-0.817446,-1.96482,0.590798,2.68926, +-0.486725,0.871595,-0.817532,-1.9647,0.590921,2.68937, +-0.486636,0.871708,-0.817619,-1.96459,0.591044,2.68949, +-0.486551,0.87182,-0.817708,-1.96448,0.591168,2.6896, +-0.48647,0.87193,-0.817798,-1.96437,0.591293,2.68971, +-0.486391,0.872039,-0.817888,-1.96426,0.591417,2.68982, +-0.486315,0.872146,-0.81798,-1.96415,0.591542,2.68992, +-0.486241,0.872252,-0.818073,-1.96405,0.591668,2.69003, +-0.486169,0.872357,-0.818167,-1.96394,0.591794,2.69014, +-0.4861,0.872461,-0.818263,-1.96384,0.591921,2.69024, +-0.486032,0.872565,-0.81836,-1.96373,0.592049,2.69034, +-0.485965,0.872667,-0.818458,-1.96363,0.592177,2.69045, +-0.4859,0.872768,-0.818557,-1.96353,0.592305,2.69055, +-0.485836,0.872867,-0.818657,-1.96343,0.592434,2.69065, +-0.485773,0.872964,-0.818758,-1.96333,0.592562,2.69074, +-0.485711,0.873059,-0.818859,-1.96324,0.592692,2.69084, +-0.48565,0.873152,-0.818962,-1.96315,0.592821,2.69093, +-0.48559,0.873242,-0.819066,-1.96306,0.592952,2.69102, +-0.48553,0.873329,-0.819172,-1.96297,0.593084,2.69111, +-0.48547,0.873413,-0.819278,-1.96288,0.593215,2.69119, +-0.485411,0.873494,-0.819385,-1.9628,0.593347,2.69127, +-0.485351,0.873572,-0.819492,-1.96273,0.593479,2.69135, +-0.485292,0.873647,-0.8196,-1.96265,0.593612,2.69142, +-0.485233,0.87372,-0.81971,-1.96258,0.593744,2.6915, +-0.485175,0.87379,-0.81982,-1.96251,0.593877,2.69157, +-0.485118,0.873859,-0.819931,-1.96244,0.594012,2.69164, +-0.485062,0.873926,-0.820044,-1.96237,0.594146,2.6917, +-0.485007,0.873992,-0.820157,-1.9623,0.594281,2.69177, +-0.484953,0.874057,-0.820271,-1.96224,0.594417,2.69183, +-0.484898,0.87412,-0.820386,-1.96218,0.594552,2.6919, +-0.484845,0.874183,-0.820501,-1.96211,0.594687,2.69196, +-0.484792,0.874244,-0.820617,-1.96205,0.594823,2.69202, +-0.484741,0.874305,-0.820734,-1.96199,0.594959,2.69208, +-0.48469,0.874366,-0.820852,-1.96193,0.595097,2.69214, +-0.484641,0.874426,-0.820971,-1.96187,0.595234,2.6922, +-0.484592,0.874486,-0.821091,-1.96181,0.595373,2.69226, +-0.484544,0.874546,-0.821211,-1.96175,0.595511,2.69232, +-0.484496,0.874606,-0.821332,-1.96169,0.595649,2.69238, +-0.484449,0.874666,-0.821454,-1.96163,0.595787,2.69244, +-0.484403,0.874725,-0.821576,-1.96157,0.595926,2.6925, +-0.484357,0.874783,-0.821699,-1.96151,0.596065,2.69256, +-0.484313,0.874841,-0.821823,-1.96146,0.596206,2.69262, +-0.48427,0.874897,-0.821949,-1.9614,0.596346,2.69268, +-0.484228,0.874953,-0.822075,-1.96134,0.596487,2.69273, +-0.484186,0.875009,-0.822201,-1.96129,0.596628,2.69279, +-0.484145,0.875064,-0.822328,-1.96123,0.596769,2.69284, +-0.484105,0.875119,-0.822455,-1.96118,0.59691,2.6929, +-0.484066,0.875173,-0.822583,-1.96112,0.597052,2.69295, +-0.484028,0.875226,-0.822713,-1.96107,0.597194,2.693, +-0.483991,0.875278,-0.822843,-1.96102,0.597337,2.69306, +-0.483955,0.875329,-0.822974,-1.96097,0.59748,2.69311, +-0.48392,0.875379,-0.823106,-1.96092,0.597623,2.69316, +-0.483886,0.875429,-0.823238,-1.96087,0.597767,2.69321, +-0.483853,0.875478,-0.82337,-1.96082,0.597911,2.69326, +-0.48382,0.875527,-0.823503,-1.96077,0.598054,2.69331, +-0.483788,0.875575,-0.823637,-1.96072,0.598198,2.69335, +-0.483757,0.875623,-0.823771,-1.96067,0.598342,2.6934, +-0.483727,0.875668,-0.823907,-1.96063,0.598487,2.69345, +-0.483699,0.875713,-0.824043,-1.96058,0.598633,2.69349, +-0.483672,0.875757,-0.82418,-1.96054,0.598778,2.69354, +-0.483645,0.8758,-0.824318,-1.9605,0.598924,2.69358, +-0.483619,0.875843,-0.824455,-1.96045,0.59907,2.69362, +-0.483593,0.875886,-0.824593,-1.96041,0.599215,2.69366, +-0.483569,0.875927,-0.824732,-1.96037,0.599361,2.6937, +-0.483546,0.875967,-0.824871,-1.96033,0.599507,2.69375, +-0.483524,0.876006,-0.825011,-1.96029,0.599654,2.69378, +-0.483503,0.876044,-0.825152,-1.96025,0.5998,2.69382, +-0.483484,0.876081,-0.825294,-1.96022,0.599947,2.69386, +-0.483465,0.876117,-0.825436,-1.96018,0.600094,2.69389, +-0.483446,0.876152,-0.825577,-1.96014,0.600241,2.69393, +-0.483428,0.876187,-0.825719,-1.96011,0.600388,2.69397, +-0.483412,0.876221,-0.825862,-1.96008,0.600534,2.694, +-0.483396,0.876254,-0.826005,-1.96004,0.600681,2.69403, +-0.483382,0.876286,-0.826149,-1.96001,0.600828,2.69406, +-0.483369,0.876316,-0.826293,-1.95998,0.600974,2.69409, +-0.483357,0.876346,-0.826438,-1.95995,0.601121,2.69412, +-0.483346,0.876374,-0.826583,-1.95992,0.601268,2.69415, +-0.483335,0.876402,-0.826728,-1.95989,0.601414,2.69418, +-0.483325,0.87643,-0.826873,-1.95987,0.60156,2.69421, +-0.483316,0.876456,-0.827018,-1.95984,0.601706,2.69423, +-0.483309,0.876481,-0.827164,-1.95982,0.601852,2.69426, +-0.483302,0.876505,-0.82731,-1.95979,0.601999,2.69428, +-0.483297,0.876528,-0.827458,-1.95977,0.602145,2.69431, +-0.483293,0.876549,-0.827605,-1.95975,0.602291,2.69433, +-0.483289,0.87657,-0.827752,-1.95973,0.602437,2.69435, +-0.483286,0.87659,-0.8279,-1.95971,0.602583,2.69437, +-0.483284,0.87661,-0.828047,-1.95969,0.602728,2.69439, +-0.483283,0.876628,-0.828194,-1.95967,0.602874,2.69441, +-0.483282,0.876646,-0.828342,-1.95965,0.603019,2.69442, +-0.483284,0.876662,-0.828491,-1.95964,0.603164,2.69444, +-0.483286,0.876676,-0.82864,-1.95962,0.603308,2.69445, +-0.483289,0.87669,-0.828789,-1.95961,0.603453,2.69447, +-0.483293,0.876703,-0.828938,-1.95959,0.603598,2.69448, +-0.483298,0.876716,-0.829087,-1.95958,0.603743,2.69449, +-0.483303,0.876727,-0.829236,-1.95957,0.603887,2.69451, +-0.483309,0.876738,-0.829385,-1.95956,0.604031,2.69452, +-0.483316,0.876748,-0.829535,-1.95955,0.604175,2.69453, +-0.483325,0.876756,-0.829685,-1.95954,0.604318,2.69453, +-0.483335,0.876763,-0.829835,-1.95953,0.604461,2.69454, +-0.483346,0.876768,-0.829986,-1.95953,0.604604,2.69455, +-0.483359,0.876774,-0.830136,-1.95952,0.604748,2.69455, +-0.483372,0.876778,-0.830286,-1.95952,0.604891,2.69456, +-0.483386,0.876782,-0.830436,-1.95951,0.605033,2.69456, +-0.483401,0.876785,-0.830586,-1.95951,0.605175,2.69456, +-0.483418,0.876787,-0.830736,-1.95951,0.605317,2.69456, +-0.483436,0.876787,-0.830887,-1.95951,0.605458,2.69457, +-0.483456,0.876787,-0.831038,-1.95951,0.605599,2.69456, +-0.483477,0.876785,-0.831189,-1.95951,0.60574,2.69456, +-0.483499,0.876782,-0.83134,-1.95951,0.605881,2.69456, +-0.483523,0.87678,-0.831491,-1.95952,0.606022,2.69456, +-0.483547,0.876776,-0.831641,-1.95952,0.606162,2.69455, +-0.483572,0.876771,-0.831792,-1.95953,0.606302,2.69455, +-0.483599,0.876766,-0.831942,-1.95953,0.606442,2.69454, +-0.483628,0.876759,-0.832094,-1.95954,0.60658,2.69454, +-0.483659,0.87675,-0.832245,-1.95955,0.606718,2.69453, +-0.483691,0.87674,-0.832396,-1.95956,0.606856,2.69452, +-0.483724,0.87673,-0.832547,-1.95957,0.606994,2.69451, +-0.483759,0.876718,-0.832698,-1.95958,0.607132,2.6945, +-0.483794,0.876706,-0.832848,-1.95959,0.60727,2.69448, +-0.483831,0.876692,-0.832998,-1.9596,0.607407,2.69447, +-0.48387,0.876677,-0.833149,-1.95962,0.607543,2.69446, +-0.48391,0.876661,-0.833299,-1.95964,0.607679,2.69444, +-0.483953,0.876643,-0.83345,-1.95965,0.607814,2.69442, +-0.483997,0.876623,-0.833601,-1.95967,0.607948,2.6944, +-0.484042,0.876602,-0.833751,-1.95969,0.608083,2.69438, +-0.484089,0.876581,-0.833901,-1.95972,0.608217,2.69436, +-0.484137,0.876558,-0.834051,-1.95974,0.608351,2.69434, +-0.484186,0.876534,-0.8342,-1.95976,0.608484,2.69431, +-0.484237,0.876509,-0.83435,-1.95979,0.608617,2.69429, +-0.484291,0.876481,-0.834499,-1.95982,0.608749,2.69426, +-0.484346,0.876452,-0.834649,-1.95984,0.60888,2.69423, +-0.484403,0.876421,-0.834799,-1.95988,0.60901,2.6942, +-0.484461,0.87639,-0.834948,-1.95991,0.609141,2.69417, +-0.484521,0.876357,-0.835097,-1.95994,0.609271,2.69414, +-0.484582,0.876322,-0.835245,-1.95997,0.6094,2.6941, +-0.484645,0.876287,-0.835393,-1.96001,0.609529,2.69407, +-0.48471,0.876249,-0.835541,-1.96005,0.609658,2.69403, +-0.484777,0.87621,-0.835689,-1.96009,0.609785,2.69399, +-0.484846,0.876169,-0.835837,-1.96013,0.609912,2.69395, +-0.484917,0.876126,-0.835985,-1.96017,0.610037,2.6939, +-0.484989,0.876081,-0.836132,-1.96022,0.610163,2.69386, +-0.485063,0.876035,-0.836278,-1.96026,0.610288,2.69381, +-0.485138,0.875988,-0.836424,-1.96031,0.610412,2.69377, +-0.485215,0.87594,-0.83657,-1.96036,0.610536,2.69372, +-0.485295,0.875889,-0.836716,-1.96041,0.610659,2.69367, +-0.485376,0.875836,-0.836862,-1.96046,0.610781,2.69361, +-0.48546,0.875781,-0.837007,-1.96052,0.610902,2.69356, +-0.485545,0.875725,-0.837153,-1.96057,0.611022,2.6935, +-0.485633,0.875666,-0.837297,-1.96063,0.611142,2.69344, +-0.485721,0.875607,-0.837441,-1.96069,0.611262,2.69339, +-0.485812,0.875545,-0.837583,-1.96075,0.611382,2.69332, +-0.485904,0.875482,-0.837725,-1.96081,0.611502,2.69326, +-0.485999,0.875417,-0.837864,-1.96088,0.611623,2.6932, +-0.486095,0.87535,-0.838002,-1.96095,0.611744,2.69313, +-0.486193,0.875281,-0.838139,-1.96102,0.611865,2.69306, +-0.486293,0.87521,-0.838275,-1.96109,0.611986,2.69299, +-0.486394,0.875137,-0.83841,-1.96116,0.612107,2.69292, +-0.486496,0.875064,-0.838545,-1.96123,0.612227,2.69284, +-0.486599,0.874988,-0.838678,-1.96131,0.612346,2.69277, +-0.486704,0.874912,-0.838811,-1.96139,0.612465,2.69269, +-0.48681,0.874833,-0.838942,-1.96146,0.612584,2.69261, +-0.486918,0.874752,-0.839072,-1.96154,0.612703,2.69253, +-0.487027,0.87467,-0.8392,-1.96163,0.61282,2.69245, +-0.487137,0.874586,-0.839327,-1.96171,0.612936,2.69236, +-0.487248,0.874501,-0.839453,-1.9618,0.613051,2.69228, +-0.48736,0.874414,-0.839578,-1.96188,0.613164,2.69219, +-0.487472,0.874327,-0.839703,-1.96197,0.613276,2.69211, +-0.487586,0.874238,-0.839826,-1.96206,0.613387,2.69202, +-0.487701,0.874147,-0.839948,-1.96215,0.613496,2.69193, +-0.487817,0.874054,-0.840068,-1.96224,0.613605,2.69183, +-0.487934,0.87396,-0.840187,-1.96234,0.613711,2.69174, +-0.488051,0.873865,-0.840305,-1.96243,0.613816,2.69164, +-0.48817,0.873768,-0.840422,-1.96253,0.613919,2.69155, +-0.488288,0.873671,-0.840538,-1.96263,0.61402,2.69145, +-0.488407,0.873573,-0.840653,-1.96272,0.614118,2.69135, +-0.488527,0.873473,-0.840768,-1.96282,0.614213,2.69125, +-0.488648,0.873372,-0.84088,-1.96292,0.614305,2.69115, +-0.48877,0.87327,-0.840992,-1.96303,0.614394,2.69105, +-0.488893,0.873166,-0.841102,-1.96313,0.614479,2.69094, +-0.489016,0.873062,-0.841211,-1.96324,0.614561,2.69084, +-0.48914,0.872956,-0.841319,-1.96334,0.61464,2.69073, +-0.489263,0.87285,-0.841427,-1.96345,0.614716,2.69063, +-0.489388,0.872743,-0.841534,-1.96355,0.614789,2.69052, +-0.489512,0.872635,-0.84164,-1.96366,0.614859,2.69041, +-0.489638,0.872526,-0.841744,-1.96377,0.614928,2.6903, +-0.489764,0.872416,-0.841847,-1.96388,0.614994,2.69019, +-0.489892,0.872304,-0.841948,-1.96399,0.615058,2.69008, +-0.490019,0.872192,-0.842049,-1.9641,0.61512,2.68997, +-0.490147,0.872079,-0.842149,-1.96422,0.615182,2.68986, +-0.490275,0.871966,-0.842248,-1.96433,0.615242,2.68974, +-0.490403,0.871853,-0.842347,-1.96444,0.615301,2.68963, +-0.490532,0.871738,-0.842444,-1.96456,0.615358,2.68952, +-0.490661,0.871623,-0.84254,-1.96467,0.615415,2.6894, +-0.490792,0.871506,-0.842635,-1.96479,0.61547,2.68928, +-0.490923,0.871389,-0.842729,-1.96491,0.615525,2.68917, +-0.491054,0.87127,-0.842821,-1.96503,0.61558,2.68905, +-0.491186,0.871151,-0.842913,-1.96515,0.615634,2.68893, +-0.491317,0.871032,-0.843004,-1.96526,0.615688,2.68881, +-0.491449,0.870913,-0.843095,-1.96538,0.615742,2.68869, +-0.491581,0.870792,-0.843184,-1.9655,0.615796,2.68857, +-0.491714,0.870671,-0.843273,-1.96563,0.615848,2.68845, +-0.491848,0.870548,-0.84336,-1.96575,0.6159,2.68833, +-0.491982,0.870425,-0.843445,-1.96587,0.615951,2.6882, +-0.492116,0.870301,-0.84353,-1.966,0.616,2.68808, +-0.492251,0.870177,-0.843614,-1.96612,0.616049,2.68796, +-0.492386,0.870053,-0.843697,-1.96624,0.616098,2.68783, +-0.492521,0.869928,-0.84378,-1.96637,0.616145,2.68771, +-0.492656,0.869803,-0.843862,-1.96649,0.616192,2.68758, +-0.492792,0.869677,-0.843943,-1.96662,0.616237,2.68745, +-0.492929,0.86955,-0.844022,-1.96675,0.616282,2.68733, +-0.493066,0.869422,-0.8441,-1.96688,0.616325,2.6872, +-0.493204,0.869293,-0.844177,-1.967,0.616368,2.68707, +-0.493342,0.869164,-0.844253,-1.96713,0.616409,2.68694, +-0.49348,0.869034,-0.844329,-1.96726,0.616451,2.68681, +-0.493617,0.868905,-0.844404,-1.96739,0.616492,2.68668, +-0.493756,0.868774,-0.844479,-1.96752,0.616533,2.68655, +-0.493894,0.868643,-0.844552,-1.96765,0.616572,2.68642, +-0.494034,0.868511,-0.844623,-1.96779,0.61661,2.68629, +-0.494174,0.868378,-0.844694,-1.96792,0.616647,2.68616, +-0.494315,0.868245,-0.844763,-1.96805,0.616683,2.68602, +-0.494455,0.868111,-0.844832,-1.96819,0.616718,2.68589, +-0.494596,0.867977,-0.8449,-1.96832,0.616752,2.68576, +-0.494737,0.867843,-0.844968,-1.96845,0.616786,2.68562, +-0.494877,0.867708,-0.845034,-1.96859,0.616819,2.68549, +-0.495019,0.867573,-0.8451,-1.96872,0.616851,2.68535, +-0.495161,0.867437,-0.845164,-1.96886,0.616881,2.68521, +-0.495304,0.8673,-0.845227,-1.969,0.61691,2.68508, +-0.495447,0.867162,-0.845289,-1.96914,0.616939,2.68494, +-0.49559,0.867025,-0.84535,-1.96927,0.616966,2.6848, +-0.495733,0.866887,-0.845411,-1.96941,0.616993,2.68466, +-0.495876,0.866749,-0.845471,-1.96955,0.61702,2.68453, +-0.496019,0.86661,-0.84553,-1.96969,0.617045,2.68439, +-0.496163,0.86647,-0.845587,-1.96983,0.61707,2.68425, +-0.496307,0.86633,-0.845644,-1.96997,0.617093,2.68411, +-0.496452,0.866189,-0.845699,-1.97011,0.617115,2.68397, +-0.496597,0.866048,-0.845753,-1.97025,0.617136,2.68383, +-0.496742,0.865906,-0.845806,-1.97039,0.617156,2.68368, +-0.496886,0.865765,-0.845859,-1.97053,0.617175,2.68354, +-0.497031,0.865623,-0.845911,-1.97067,0.617194,2.6834, +-0.497175,0.865481,-0.845963,-1.97082,0.617212,2.68326, +-0.49732,0.865338,-0.846013,-1.97096,0.617229,2.68312, +-0.497466,0.865195,-0.846061,-1.9711,0.617244,2.68297, +-0.497612,0.865051,-0.846108,-1.97125,0.617258,2.68283, +-0.497758,0.864907,-0.846155,-1.97139,0.617271,2.68268, +-0.497904,0.864762,-0.8462,-1.97154,0.617284,2.68254, +-0.498051,0.864618,-0.846245,-1.97168,0.617296,2.6824, +-0.498197,0.864473,-0.846289,-1.97182,0.617307,2.68225, +-0.498343,0.864328,-0.846333,-1.97197,0.617317,2.68211, +-0.49849,0.864183,-0.846375,-1.97211,0.617326,2.68196, +-0.498636,0.864037,-0.846415,-1.97226,0.617334,2.68181, +-0.498783,0.86389,-0.846455,-1.97241,0.61734,2.68167, +-0.49893,0.863743,-0.846493,-1.97255,0.617346,2.68152, +-0.499077,0.863596,-0.84653,-1.9727,0.617351,2.68137, +-0.499224,0.86345,-0.846567,-1.97285,0.617355,2.68123, +-0.49937,0.863303,-0.846604,-1.97299,0.617359,2.68108, +-0.499517,0.863156,-0.846639,-1.97314,0.617362,2.68093, +-0.499664,0.863009,-0.846673,-1.97329,0.617363,2.68079, +-0.499811,0.862861,-0.846705,-1.97344,0.617363,2.68064, +-0.499957,0.862713,-0.846736,-1.97359,0.617362,2.68049, +-0.500104,0.862564,-0.846767,-1.97373,0.617361,2.68034, +-0.500251,0.862415,-0.846796,-1.97388,0.617358,2.68019, +-0.500398,0.862267,-0.846825,-1.97403,0.617355,2.68005, +-0.500544,0.862119,-0.846853,-1.97418,0.617351,2.6799, +-0.50069,0.86197,-0.84688,-1.97433,0.617347,2.67975, +-0.500837,0.861821,-0.846906,-1.97448,0.617341,2.6796, +-0.500983,0.861672,-0.84693,-1.97463,0.617334,2.67945, +-0.50113,0.861522,-0.846953,-1.97478,0.617326,2.6793, +-0.501276,0.861372,-0.846975,-1.97493,0.617316,2.67915, +-0.501423,0.861222,-0.846997,-1.97508,0.617305,2.679, +-0.501569,0.861072,-0.847017,-1.97523,0.617294,2.67885, +-0.501715,0.860923,-0.847037,-1.97537,0.617282,2.6787, +-0.50186,0.860773,-0.847056,-1.97552,0.617268,2.67855, +-0.502006,0.860623,-0.847074,-1.97567,0.617254,2.6784, +-0.502151,0.860472,-0.84709,-1.97582,0.617237,2.67825, +-0.502297,0.860322,-0.847105,-1.97598,0.617219,2.6781, +-0.502442,0.860171,-0.847119,-1.97613,0.6172,2.67795, +-0.502588,0.86002,-0.847132,-1.97628,0.61718,2.6778, +-0.502733,0.85987,-0.847145,-1.97643,0.617159,2.67765, +-0.502878,0.85972,-0.847157,-1.97658,0.617136,2.6775, +-0.503022,0.85957,-0.847168,-1.97673,0.617113,2.67735, +-0.503166,0.85942,-0.847177,-1.97688,0.617088,2.6772, +-0.50331,0.859269,-0.847185,-1.97703,0.617061,2.67705, +-0.503454,0.859118,-0.847192,-1.97718,0.617033,2.6769, +-0.503598,0.858967,-0.847198,-1.97733,0.617003,2.67674, +-0.503742,0.858816,-0.847203,-1.97748,0.616972,2.67659, +-0.503886,0.858666,-0.847208,-1.97763,0.61694,2.67644, +-0.504029,0.858516,-0.847211,-1.97778,0.616907,2.67629, +-0.504171,0.858366,-0.847214,-1.97793,0.616872,2.67614, +-0.504313,0.858216,-0.847216,-1.97808,0.616836,2.67599, +-0.504455,0.858066,-0.847216,-1.97823,0.616797,2.67584, +-0.504597,0.857915,-0.847215,-1.97838,0.616757,2.67569, +-0.504739,0.857765,-0.847213,-1.97853,0.616716,2.67554, +-0.50488,0.857615,-0.84721,-1.97868,0.616673,2.67539, +-0.505022,0.857466,-0.847207,-1.97883,0.616628,2.67524, +-0.505163,0.857317,-0.847203,-1.97898,0.616583,2.67509, +-0.505303,0.857168,-0.847198,-1.97913,0.616536,2.67495, +-0.505442,0.857019,-0.847192,-1.97928,0.616487,2.6748, +-0.505581,0.856869,-0.847184,-1.97943,0.616436,2.67465, +-0.50572,0.85672,-0.847175,-1.97958,0.616383,2.6745, +-0.505859,0.856571,-0.847165,-1.97973,0.616329,2.67435, +-0.505997,0.856422,-0.847153,-1.97987,0.616273,2.6742, +-0.506136,0.856274,-0.847141,-1.98002,0.616215,2.67405, +-0.506273,0.856127,-0.847128,-1.98017,0.616157,2.6739, +-0.50641,0.85598,-0.847113,-1.98032,0.616096,2.67376, +-0.506547,0.855832,-0.847098,-1.98046,0.616034,2.67361, +-0.506682,0.855685,-0.84708,-1.98061,0.615969,2.67346, +-0.506817,0.855538,-0.847061,-1.98076,0.615902,2.67332, +-0.506952,0.855391,-0.84704,-1.98091,0.615834,2.67317, +-0.507087,0.855245,-0.847018,-1.98105,0.615764,2.67302, +-0.507221,0.855099,-0.846995,-1.9812,0.615692,2.67288, +-0.507355,0.854954,-0.846971,-1.98134,0.615619,2.67273, +-0.507489,0.854809,-0.846946,-1.98149,0.615544,2.67259, +-0.507621,0.854664,-0.846918,-1.98163,0.615467,2.67244, +-0.507752,0.85452,-0.846889,-1.98178,0.615388,2.6723, +-0.507883,0.854375,-0.846858,-1.98192,0.615307,2.67215, +-0.508014,0.854231,-0.846826,-1.98207,0.615223,2.67201, +-0.508144,0.854088,-0.846792,-1.98221,0.615138,2.67187, +-0.508274,0.853945,-0.846757,-1.98235,0.615051,2.67172, +-0.508403,0.853804,-0.84672,-1.98249,0.614963,2.67158, +-0.508532,0.853664,-0.846682,-1.98263,0.614872,2.67144, +-0.508659,0.853526,-0.846642,-1.98277,0.61478,2.6713, +-0.508786,0.853389,-0.8466,-1.98291,0.614685,2.67117, +-0.50891,0.853254,-0.846556,-1.98304,0.614589,2.67103, +-0.509033,0.85312,-0.84651,-1.98318,0.614491,2.6709, +-0.509154,0.852987,-0.846463,-1.98331,0.614392,2.67076, +-0.509274,0.852854,-0.846415,-1.98344,0.614292,2.67063, +-0.509391,0.852723,-0.846365,-1.98357,0.61419,2.6705, +-0.509507,0.852592,-0.846314,-1.9837,0.614087,2.67037, +-0.509621,0.852463,-0.846261,-1.98383,0.613983,2.67024, +-0.509733,0.852336,-0.846205,-1.98396,0.613877,2.67011, +-0.509843,0.85221,-0.846148,-1.98409,0.613769,2.66999, +-0.509953,0.852085,-0.846089,-1.98421,0.613661,2.66986, +-0.510061,0.851962,-0.846029,-1.98433,0.613552,2.66974, +-0.510169,0.851839,-0.845968,-1.98446,0.613442,2.66962, +-0.510276,0.851718,-0.845905,-1.98458,0.613331,2.6695, +-0.510381,0.851598,-0.84584,-1.9847,0.613219,2.66938, +-0.510485,0.851479,-0.845774,-1.98482,0.613106,2.66926, +-0.510587,0.851362,-0.845706,-1.98493,0.612992,2.66914, +-0.510688,0.851246,-0.845636,-1.98505,0.612876,2.66903, +-0.510788,0.851132,-0.845564,-1.98517,0.61276,2.66891, +-0.510887,0.851018,-0.845491,-1.98528,0.612644,2.6688, +-0.510985,0.850905,-0.845417,-1.98539,0.612527,2.66868, +-0.511082,0.850792,-0.845342,-1.98551,0.612409,2.66857, +-0.511178,0.850681,-0.845265,-1.98562,0.612291,2.66846, +-0.511273,0.85057,-0.845186,-1.98573,0.612172,2.66835, +-0.511366,0.850462,-0.845106,-1.98584,0.612051,2.66824, +-0.511457,0.850354,-0.845024,-1.98594,0.61193,2.66813, +-0.511548,0.850248,-0.84494,-1.98605,0.611808,2.66803, +-0.511638,0.850143,-0.844856,-1.98615,0.611686,2.66792, +-0.511726,0.850038,-0.84477,-1.98626,0.611564,2.66782, +-0.511814,0.849935,-0.844684,-1.98636,0.611441,2.66771, +-0.511901,0.849832,-0.844596,-1.98647,0.611318,2.66761, +-0.511987,0.849731,-0.844506,-1.98657,0.611194,2.66751, +-0.512071,0.849631,-0.844415,-1.98667,0.611069,2.66741, +-0.512154,0.849533,-0.844322,-1.98676,0.610943,2.66731, +-0.512235,0.849436,-0.844229,-1.98686,0.610817,2.66721, +-0.512316,0.849339,-0.844134,-1.98696,0.61069,2.66712, +-0.512396,0.849243,-0.844039,-1.98705,0.610564,2.66702, +-0.512475,0.849147,-0.843943,-1.98715,0.610437,2.66693, +-0.512553,0.849053,-0.843845,-1.98724,0.61031,2.66683, +-0.51263,0.84896,-0.843746,-1.98734,0.610182,2.66674, +-0.512706,0.848868,-0.843646,-1.98743,0.610053,2.66665, +-0.51278,0.848778,-0.843545,-1.98752,0.609923,2.66656, +-0.512853,0.848689,-0.843442,-1.98761,0.609793,2.66647, +-0.512925,0.8486,-0.843339,-1.9877,0.609663,2.66638, +-0.512996,0.848512,-0.843236,-1.98779,0.609532,2.66629, +-0.513067,0.848425,-0.843131,-1.98787,0.609402,2.6662, +-0.513137,0.848339,-0.843026,-1.98796,0.609271,2.66612, +-0.513205,0.848254,-0.842919,-1.98804,0.60914,2.66603, +-0.513272,0.84817,-0.842811,-1.98813,0.609007,2.66595, +-0.513338,0.848088,-0.842702,-1.98821,0.608874,2.66587, +-0.513402,0.848007,-0.842592,-1.98829,0.608741,2.66579, +-0.513466,0.847926,-0.842482,-1.98837,0.608607,2.6657, +-0.513529,0.847846,-0.842371,-1.98845,0.608473,2.66562, +-0.513592,0.847767,-0.842259,-1.98853,0.60834,2.66555, +-0.513653,0.847688,-0.842146,-1.98861,0.608206,2.66547, +-0.513713,0.847611,-0.842033,-1.98869,0.608071,2.66539, +-0.513772,0.847535,-0.841918,-1.98876,0.607935,2.66531, +-0.51383,0.847461,-0.841802,-1.98884,0.607799,2.66524, +-0.513886,0.847387,-0.841685,-1.98891,0.607662,2.66517, +-0.513942,0.847314,-0.841567,-1.98898,0.607525,2.66509, +-0.513997,0.847242,-0.84145,-1.98906,0.607389,2.66502, +-0.514051,0.84717,-0.841331,-1.98913,0.607252,2.66495, +-0.514105,0.847099,-0.841212,-1.9892,0.607115,2.66488, +-0.514157,0.84703,-0.841092,-1.98927,0.606977,2.66481, +-0.514207,0.846962,-0.840971,-1.98934,0.606838,2.66474, +-0.514257,0.846895,-0.840849,-1.9894,0.606699,2.66467, +-0.514305,0.846829,-0.840726,-1.98947,0.606559,2.66461, +-0.514353,0.846764,-0.840602,-1.98953,0.60642,2.66454, +-0.5144,0.846699,-0.840477,-1.9896,0.60628,2.66448, +-0.514446,0.846635,-0.840352,-1.98966,0.60614,2.66441, +-0.514492,0.846572,-0.840226,-1.98973,0.606,2.66435, +-0.514536,0.84651,-0.840098,-1.98979,0.60586,2.66429, +-0.514578,0.84645,-0.83997,-1.98985,0.605718,2.66423, +-0.51462,0.846391,-0.839841,-1.98991,0.605576,2.66417, +-0.51466,0.846332,-0.839712,-1.98996,0.605434,2.66411, +-0.5147,0.846275,-0.839583,-1.99002,0.605292,2.66405, +-0.514739,0.846218,-0.839454,-1.99008,0.605149,2.664, +-0.514777,0.846161,-0.839325,-1.99014,0.605007,2.66394, +-0.514815,0.846106,-0.839195,-1.99019,0.604864,2.66388, +-0.514851,0.846052,-0.839065,-1.99025,0.604722,2.66383, +-0.514885,0.845999,-0.838934,-1.9903,0.604578,2.66378, +-0.514919,0.845948,-0.838802,-1.99035,0.604435,2.66373, +-0.514951,0.845897,-0.838669,-1.9904,0.604292,2.66368, +-0.514983,0.845847,-0.838536,-1.99045,0.604149,2.66363, +-0.515014,0.845798,-0.838402,-1.9905,0.604007,2.66358, +-0.515044,0.84575,-0.838268,-1.99055,0.603863,2.66353, +-0.515073,0.845703,-0.838133,-1.99059,0.60372,2.66348, +-0.515101,0.845657,-0.837997,-1.99064,0.603576,2.66344, +-0.515128,0.845612,-0.83786,-1.99068,0.603431,2.66339, +-0.515153,0.845569,-0.837722,-1.99073,0.603286,2.66335, +-0.515177,0.845526,-0.837583,-1.99077,0.60314,2.6633, +-0.515201,0.845485,-0.837444,-1.99081,0.602995,2.66326, +-0.515224,0.845443,-0.837305,-1.99085,0.602849,2.66322, +-0.515246,0.845403,-0.837166,-1.99089,0.602704,2.66318, +-0.515268,0.845363,-0.837026,-1.99093,0.602559,2.66314, +-0.515288,0.845325,-0.836885,-1.99097,0.602413,2.6631, +-0.515307,0.845288,-0.836743,-1.99101,0.602267,2.66307, +-0.515324,0.845252,-0.836601,-1.99104,0.60212,2.66303, +-0.51534,0.845218,-0.836458,-1.99108,0.601973,2.663, +-0.515356,0.845184,-0.836315,-1.99111,0.601827,2.66296, +-0.515371,0.84515,-0.836171,-1.99115,0.60168,2.66293, +-0.515386,0.845118,-0.836028,-1.99118,0.601534,2.6629, +-0.515399,0.845086,-0.835884,-1.99121,0.601387,2.66286, +-0.515411,0.845056,-0.83574,-1.99124,0.601241,2.66283, +-0.515422,0.845027,-0.835594,-1.99127,0.601094,2.66281, +-0.515431,0.845,-0.835448,-1.9913,0.600947,2.66278, +-0.51544,0.844973,-0.835302,-1.99132,0.600801,2.66275, +-0.515448,0.844947,-0.835156,-1.99135,0.600654,2.66273, +-0.515455,0.844922,-0.83501,-1.99138,0.600508,2.6627, +-0.515462,0.844898,-0.834863,-1.9914,0.600361,2.66268, +-0.515467,0.844874,-0.834717,-1.99142,0.600215,2.66265, +-0.515471,0.844852,-0.83457,-1.99145,0.600069,2.66263, +-0.515474,0.844831,-0.834422,-1.99147,0.599923,2.66261, +-0.515476,0.844812,-0.834273,-1.99149,0.599777,2.66259, +-0.515477,0.844793,-0.834125,-1.9915,0.599631,2.66257, +-0.515477,0.844775,-0.833976,-1.99152,0.599485,2.66255, +-0.515477,0.844759,-0.833828,-1.99154,0.59934,2.66254, +-0.515476,0.844743,-0.833679,-1.99155,0.599194,2.66252, +-0.515474,0.844729,-0.833531,-1.99157,0.59905,2.66251, +-0.515471,0.844717,-0.833382,-1.99158,0.598905,2.6625, +-0.515466,0.844706,-0.833232,-1.99159,0.598761,2.66248, +-0.51546,0.844695,-0.833082,-1.9916,0.598616,2.66247, +-0.515453,0.844685,-0.832932,-1.99161,0.598472,2.66246, +-0.515445,0.844676,-0.832781,-1.99162,0.598327,2.66245, +-0.515437,0.844667,-0.832631,-1.99163,0.598183,2.66245, +-0.515428,0.844659,-0.832482,-1.99164,0.598039,2.66244, +-0.515418,0.844651,-0.832332,-1.99165,0.597895,2.66243, +-0.515406,0.844644,-0.832181,-1.99165,0.597752,2.66242, +-0.515393,0.844638,-0.832031,-1.99166,0.59761,2.66242, +-0.515379,0.844633,-0.831879,-1.99166,0.597467,2.66241, +-0.515363,0.84463,-0.831728,-1.99167,0.597325,2.66241, +-0.515346,0.844627,-0.831577,-1.99167,0.597183,2.66241, +-0.515329,0.844626,-0.831426,-1.99167,0.59704,2.6624, +-0.51531,0.844625,-0.831276,-1.99167,0.596898,2.6624, +-0.51529,0.844625,-0.831125,-1.99167,0.596757,2.6624, +-0.515268,0.844627,-0.830974,-1.99167,0.596616,2.66241, +-0.515245,0.84463,-0.830823,-1.99167,0.596476,2.66241, +-0.51522,0.844635,-0.830671,-1.99166,0.596336,2.66241, +-0.515194,0.84464,-0.83052,-1.99166,0.596196,2.66242, +-0.515167,0.844646,-0.830368,-1.99165,0.596056,2.66242, +-0.515138,0.844653,-0.830217,-1.99164,0.595916,2.66243, +-0.515109,0.84466,-0.830067,-1.99164,0.595777,2.66244, +-0.515078,0.844669,-0.829916,-1.99163,0.595638,2.66245, +-0.515045,0.844678,-0.829765,-1.99162,0.5955,2.66246, +-0.515011,0.844689,-0.829614,-1.99161,0.595362,2.66247, +-0.514975,0.844702,-0.829462,-1.9916,0.595226,2.66248, +-0.514937,0.844716,-0.829311,-1.99158,0.595089,2.66249, +-0.514898,0.844731,-0.82916,-1.99157,0.594953,2.66251, +-0.514858,0.844746,-0.829009,-1.99155,0.594816,2.66252, +-0.514817,0.844763,-0.828859,-1.99153,0.59468,2.66254, +-0.514774,0.844782,-0.828709,-1.99152,0.594545,2.66256, +-0.514729,0.844801,-0.828558,-1.9915,0.59441,2.66258, +-0.514683,0.844823,-0.828408,-1.99147,0.594276,2.6626, +-0.514634,0.844846,-0.828257,-1.99145,0.594143,2.66262, +-0.514584,0.844871,-0.828107,-1.99143,0.59401,2.66265, +-0.514532,0.844896,-0.827956,-1.9914,0.593877,2.66267, +-0.51448,0.844923,-0.827807,-1.99137,0.593745,2.6627, +-0.514425,0.844951,-0.827658,-1.99135,0.593613,2.66273, +-0.51437,0.84498,-0.827509,-1.99132,0.593481,2.66276, +-0.514312,0.845011,-0.82736,-1.99129,0.59335,2.66279, +-0.514252,0.845044,-0.827211,-1.99125,0.59322,2.66282, +-0.51419,0.845079,-0.827061,-1.99122,0.593091,2.66286, +-0.514126,0.845115,-0.826912,-1.99118,0.592963,2.66289, +-0.514061,0.845153,-0.826764,-1.99114,0.592834,2.66293, +-0.513995,0.845192,-0.826616,-1.99111,0.592707,2.66297, +-0.513927,0.845232,-0.826469,-1.99107,0.592579,2.66301, +-0.513857,0.845274,-0.826322,-1.99102,0.592452,2.66305, +-0.513785,0.845318,-0.826175,-1.99098,0.592327,2.6631, +-0.513711,0.845363,-0.826027,-1.99093,0.592202,2.66314, +-0.513635,0.845411,-0.82588,-1.99089,0.592078,2.66319, +-0.513557,0.84546,-0.825734,-1.99084,0.591955,2.66324, +-0.513477,0.845511,-0.825587,-1.99079,0.591832,2.66329, +-0.513396,0.845564,-0.825442,-1.99073,0.591709,2.66334, +-0.513313,0.845617,-0.825297,-1.99068,0.591587,2.6634, +-0.513228,0.845673,-0.825153,-1.99062,0.591466,2.66345, +-0.513142,0.84573,-0.825008,-1.99057,0.591346,2.66351, +-0.513053,0.84579,-0.824864,-1.99051,0.591226,2.66357, +-0.512962,0.845852,-0.82472,-1.99045,0.591109,2.66363, +-0.512869,0.845915,-0.824576,-1.99038,0.590992,2.66369, +-0.512775,0.84598,-0.824434,-1.99032,0.590876,2.66376, +-0.512679,0.846047,-0.824292,-1.99025,0.590762,2.66382, +-0.512582,0.846115,-0.824151,-1.99018,0.590648,2.66389, +-0.512483,0.846185,-0.82401,-1.99011,0.590535,2.66396, +-0.512383,0.846257,-0.82387,-1.99004,0.590424,2.66403, +-0.51228,0.846331,-0.82373,-1.98997,0.590315,2.66411, +-0.512176,0.846407,-0.82359,-1.98989,0.590207,2.66418, +-0.512071,0.846484,-0.823451,-1.98981,0.590101,2.66426, +-0.511964,0.846563,-0.823314,-1.98973,0.589996,2.66434, +-0.511857,0.846643,-0.823177,-1.98965,0.589892,2.66442, +-0.511749,0.846724,-0.823042,-1.98957,0.589789,2.6645, +-0.51164,0.846807,-0.822907,-1.98949,0.589687,2.66459, +-0.511529,0.846892,-0.822773,-1.98941,0.589587,2.66467, +-0.511417,0.846979,-0.822639,-1.98932,0.589489,2.66476, +-0.511303,0.847067,-0.822506,-1.98923,0.589392,2.66485, +-0.511189,0.847157,-0.822374,-1.98914,0.589296,2.66494, +-0.511074,0.847248,-0.822243,-1.98905,0.589202,2.66503, +-0.510959,0.84734,-0.822114,-1.98896,0.589108,2.66512, +-0.510843,0.847433,-0.821986,-1.98886,0.589015,2.66521, +-0.510726,0.847527,-0.821859,-1.98877,0.588923,2.66531, +-0.510608,0.847623,-0.821732,-1.98867,0.588833,2.6654, +-0.510489,0.847721,-0.821607,-1.98858,0.588744,2.6655, +-0.510369,0.84782,-0.821482,-1.98848,0.588657,2.6656, +-0.510248,0.84792,-0.821358,-1.98838,0.588571,2.6657, +-0.510127,0.848021,-0.821236,-1.98828,0.588486,2.6658, +-0.510005,0.848123,-0.821115,-1.98817,0.588402,2.6659, +-0.509884,0.848226,-0.820995,-1.98807,0.588318,2.666, +-0.509761,0.84833,-0.820877,-1.98797,0.588236,2.66611, +-0.509638,0.848435,-0.820759,-1.98786,0.588155,2.66621, +-0.509513,0.848542,-0.820642,-1.98776,0.588076,2.66632, +-0.509388,0.84865,-0.820526,-1.98765,0.587998,2.66643, +-0.509262,0.848758,-0.820411,-1.98754,0.587921,2.66654, +-0.509137,0.848868,-0.820298,-1.98743,0.587845,2.66665, +-0.50901,0.848977,-0.820186,-1.98732,0.58777,2.66676, +-0.508884,0.849088,-0.820076,-1.98721,0.587696,2.66687, +-0.508757,0.849199,-0.819966,-1.9871,0.587623,2.66698, +-0.50863,0.849312,-0.819858,-1.98699,0.587551,2.66709, +-0.508501,0.849425,-0.81975,-1.98687,0.587481,2.6672, +-0.508372,0.84954,-0.819643,-1.98676,0.587412,2.66732, +-0.508242,0.849656,-0.819538,-1.98664,0.587345,2.66743, +-0.508112,0.849772,-0.819433,-1.98653,0.587278,2.66755, +-0.507982,0.849888,-0.819331,-1.98641,0.587212,2.66767, +-0.507852,0.850005,-0.81923,-1.98629,0.587146,2.66778, +-0.507722,0.850122,-0.819131,-1.98617,0.587082,2.6679, +-0.50759,0.850241,-0.819035,-1.98606,0.587019,2.66802, +-0.507458,0.85036,-0.818941,-1.98594,0.586958,2.66814, +-0.507326,0.850481,-0.818851,-1.98582,0.586898,2.66826, +-0.507192,0.850602,-0.818763,-1.98569,0.586839,2.66838, +-0.507059,0.850724,-0.818679,-1.98557,0.586781,2.6685, +-0.506926,0.850846,-0.818597,-1.98545,0.586723,2.66862, +-0.506792,0.850969,-0.818519,-1.98533,0.586667,2.66875, +-0.506659,0.851093,-0.818442,-1.9852,0.586611,2.66887, +-0.506524,0.851217,-0.818368,-1.98508,0.586557,2.669, +-0.506389,0.851343,-0.818296,-1.98495,0.586504,2.66912, +-0.506253,0.851469,-0.818226,-1.98483,0.586452,2.66925, +-0.506117,0.851596,-0.818157,-1.9847,0.586402,2.66937, +-0.50598,0.851722,-0.818089,-1.98458,0.586352,2.6695, +-0.505844,0.851849,-0.818022,-1.98445,0.586303,2.66963, +-0.505707,0.851975,-0.817956,-1.98432,0.586255,2.66975, +-0.50557,0.852102,-0.817891,-1.98419,0.586208,2.66988, +-0.505433,0.85223,-0.817827,-1.98407,0.586162,2.67001, +-0.505295,0.852358,-0.817764,-1.98394,0.586117,2.67014, +-0.505157,0.852488,-0.8177,-1.98381,0.586074,2.67027, +-0.505018,0.852618,-0.817637,-1.98368,0.586032,2.6704, +-0.50488,0.852749,-0.817574,-1.98355,0.585991,2.67053, +-0.504742,0.85288,-0.81751,-1.98342,0.58595,2.67066, +-0.504604,0.853011,-0.817447,-1.98329,0.58591,2.67079, +-0.504465,0.853143,-0.817385,-1.98315,0.585871,2.67092, +-0.504325,0.853276,-0.817323,-1.98302,0.585833,2.67105, +-0.504185,0.85341,-0.817262,-1.98289,0.585797,2.67119, +-0.504044,0.853545,-0.817202,-1.98275,0.585762,2.67132, +-0.503903,0.85368,-0.817143,-1.98262,0.585728,2.67146, +-0.503761,0.853816,-0.817084,-1.98248,0.585695,2.67159, +-0.50362,0.853952,-0.817025,-1.98234,0.585662,2.67173, +-0.503479,0.854088,-0.816967,-1.98221,0.585631,2.67187, +-0.503337,0.854225,-0.816909,-1.98207,0.5856,2.672, +-0.503194,0.854362,-0.816853,-1.98193,0.58557,2.67214, +-0.503051,0.854501,-0.816797,-1.9818,0.585542,2.67228, +-0.502907,0.85464,-0.816742,-1.98166,0.585515,2.67242, +-0.502763,0.854779,-0.816688,-1.98152,0.585489,2.67256, +-0.502619,0.854919,-0.816635,-1.98138,0.585464,2.6727, +-0.502475,0.855059,-0.816582,-1.98124,0.585439,2.67284, +-0.502331,0.855199,-0.816529,-1.9811,0.585415,2.67298, +-0.502187,0.855339,-0.816478,-1.98096,0.585392,2.67312, +-0.502042,0.85548,-0.816427,-1.98082,0.585371,2.67326, +-0.501896,0.855623,-0.816377,-1.98067,0.58535,2.6734, +-0.50175,0.855765,-0.816329,-1.98053,0.585331,2.67354, +-0.501604,0.855908,-0.816281,-1.98039,0.585313,2.67369, +-0.501458,0.856052,-0.816234,-1.98025,0.585296,2.67383, +-0.501313,0.856195,-0.816188,-1.9801,0.58528,2.67397, +-0.501167,0.856338,-0.816142,-1.97996,0.585264,2.67412, +-0.501021,0.856482,-0.816097,-1.97982,0.585249,2.67426, +-0.500874,0.856626,-0.816053,-1.97967,0.585235,2.6744, +-0.500727,0.856772,-0.816011,-1.97953,0.585223,2.67455, +-0.50058,0.856917,-0.81597,-1.97938,0.585212,2.6747, +-0.500433,0.857063,-0.815929,-1.97923,0.585202,2.67484, +-0.500287,0.857209,-0.815889,-1.97909,0.585192,2.67499, +-0.50014,0.857355,-0.81585,-1.97894,0.585184,2.67513, +-0.499993,0.857501,-0.815811,-1.9788,0.585176,2.67528, +-0.499846,0.857647,-0.815774,-1.97865,0.585168,2.67543, +-0.499699,0.857794,-0.815737,-1.9785,0.585163,2.67557, +-0.499552,0.857941,-0.815702,-1.97836,0.585158,2.67572, +-0.499405,0.858089,-0.815668,-1.97821,0.585155,2.67587, +-0.499257,0.858238,-0.815635,-1.97806,0.585153,2.67602, +-0.49911,0.858386,-0.815603,-1.97791,0.585151,2.67616, +-0.498963,0.858534,-0.815571,-1.97776,0.58515,2.67631, +-0.498816,0.858682,-0.81554,-1.97762,0.585149,2.67646, +-0.498669,0.85883,-0.81551,-1.97747,0.58515,2.67661, +-0.498522,0.858978,-0.815481,-1.97732,0.585151,2.67676, +-0.498375,0.859128,-0.815453,-1.97717,0.585154,2.67691, +-0.498228,0.859277,-0.815427,-1.97702,0.585159,2.67706, +-0.498081,0.859427,-0.815402,-1.97687,0.585164,2.6772, +-0.497935,0.859577,-0.815377,-1.97672,0.58517,2.67735, +-0.497788,0.859726,-0.815353,-1.97657,0.585177,2.6775, +-0.497641,0.859875,-0.81533,-1.97642,0.585184,2.67765, +-0.497495,0.860025,-0.815308,-1.97627,0.585192,2.6778, +-0.497349,0.860174,-0.815287,-1.97612,0.585202,2.67795, +-0.497203,0.860325,-0.815267,-1.97597,0.585213,2.6781, +-0.497057,0.860475,-0.815249,-1.97582,0.585226,2.67825, +-0.49691,0.860626,-0.815232,-1.97567,0.58524,2.6784, +-0.496764,0.860777,-0.815215,-1.97552,0.585254,2.67855, +-0.496618,0.860927,-0.815199,-1.97537,0.58527,2.6787, +-0.496473,0.861077,-0.815184,-1.97522,0.585287,2.67885, +-0.496328,0.861227,-0.815169,-1.97507,0.585305,2.67901, +-0.496183,0.861377,-0.815156,-1.97492,0.585324,2.67916, +-0.496038,0.861528,-0.815145,-1.97477,0.585345,2.67931, +-0.495893,0.861679,-0.815134,-1.97462,0.585368,2.67946, +-0.495748,0.86183,-0.815125,-1.97447,0.585392,2.67961, +-0.495603,0.861981,-0.815116,-1.97432,0.585417,2.67976, +-0.495459,0.862131,-0.815108,-1.97417,0.585443,2.67991, +-0.495314,0.862281,-0.815101,-1.97402,0.585471,2.68006, +-0.495171,0.862431,-0.815095,-1.97387,0.585499,2.68021, +-0.495028,0.862582,-0.815089,-1.97372,0.585529,2.68036, +-0.494885,0.862732,-0.815086,-1.97357,0.585561,2.68051, +-0.494742,0.862883,-0.815083,-1.97341,0.585595,2.68066, +-0.494599,0.863034,-0.815082,-1.97326,0.585631,2.68081, +-0.494456,0.863184,-0.815081,-1.97311,0.585667,2.68096, +-0.494313,0.863334,-0.81508,-1.97296,0.585705,2.68111, +-0.494171,0.863484,-0.815081,-1.97281,0.585744,2.68126, +-0.494029,0.863633,-0.815082,-1.97266,0.585785,2.68141, +-0.493889,0.863783,-0.815085,-1.97251,0.585827,2.68156, +-0.493748,0.863933,-0.815089,-1.97236,0.585871,2.68171, +-0.493608,0.864083,-0.815094,-1.97221,0.585917,2.68186, +-0.493468,0.864232,-0.8151,-1.97206,0.585965,2.68201, +-0.493327,0.864382,-0.815108,-1.97192,0.586014,2.68216, +-0.493187,0.86453,-0.815115,-1.97177,0.586065,2.68231, +-0.493048,0.864679,-0.815124,-1.97162,0.586116,2.68246, +-0.492909,0.864827,-0.815134,-1.97147,0.58617,2.6826, +-0.492771,0.864975,-0.815145,-1.97132,0.586225,2.68275, +-0.492634,0.865123,-0.815158,-1.97117,0.586283,2.6829, +-0.492497,0.865272,-0.815172,-1.97103,0.586342,2.68305, +-0.49236,0.86542,-0.815188,-1.97088,0.586403,2.6832, +-0.492223,0.865567,-0.815204,-1.97073,0.586466,2.68335, +-0.492086,0.865714,-0.815222,-1.97058,0.58653,2.68349, +-0.49195,0.86586,-0.815241,-1.97044,0.586596,2.68364, +-0.491813,0.866006,-0.815261,-1.97029,0.586664,2.68378, +-0.491676,0.866152,-0.815282,-1.97014,0.586733,2.68393, +-0.491538,0.866298,-0.815306,-1.97,0.586805,2.68408, +-0.491401,0.866444,-0.815331,-1.96985,0.586879,2.68422, +-0.491264,0.86659,-0.815358,-1.96971,0.586954,2.68437, +-0.491127,0.866735,-0.815386,-1.96956,0.587032,2.68451, +-0.490991,0.866879,-0.815415,-1.96942,0.587111,2.68466, +-0.490855,0.867023,-0.815445,-1.96927,0.587191,2.6848, +-0.49072,0.867166,-0.815477,-1.96913,0.587274,2.68494, +-0.490585,0.867309,-0.815511,-1.96899,0.587358,2.68509, +-0.49045,0.867452,-0.815546,-1.96884,0.587445,2.68523, +-0.490316,0.867595,-0.815584,-1.9687,0.587534,2.68537, +-0.490182,0.867737,-0.815623,-1.96856,0.587625,2.68552, +-0.490049,0.867878,-0.815664,-1.96842,0.587717,2.68566, +-0.489918,0.868019,-0.815706,-1.96828,0.587811,2.6858, +-0.489787,0.868158,-0.815749,-1.96814,0.587906,2.68594, +-0.489657,0.868297,-0.815794,-1.968,0.588003,2.68608, +-0.489528,0.868436,-0.81584,-1.96786,0.588102,2.68621, +-0.4894,0.868574,-0.815889,-1.96772,0.588202,2.68635, +-0.489272,0.868712,-0.81594,-1.96758,0.588304,2.68649, +-0.489145,0.868849,-0.815993,-1.96745,0.588408,2.68663, +-0.48902,0.868985,-0.816046,-1.96731,0.588512,2.68676, +-0.488897,0.869119,-0.816101,-1.96718,0.588618,2.6869, +-0.488775,0.869253,-0.816158,-1.96704,0.588724,2.68703, +-0.488654,0.869385,-0.816216,-1.96691,0.588831,2.68716, +-0.488535,0.869517,-0.816276,-1.96678,0.58894,2.6873, +-0.488416,0.869649,-0.816338,-1.96665,0.589051,2.68743, +-0.488298,0.86978,-0.816402,-1.96652,0.589162,2.68756, +-0.488182,0.869909,-0.816467,-1.96639,0.589275,2.68769, +-0.488067,0.870038,-0.816534,-1.96626,0.589388,2.68782, +-0.487954,0.870164,-0.816602,-1.96613,0.589502,2.68794, +-0.487843,0.87029,-0.816671,-1.96601,0.589616,2.68807, +-0.487733,0.870414,-0.816742,-1.96588,0.589731,2.68819, +-0.487625,0.870538,-0.816815,-1.96576,0.589848,2.68832, +-0.487517,0.870661,-0.81689,-1.96564,0.589965,2.68844, +-0.487411,0.870783,-0.816966,-1.96551,0.590084,2.68856, +-0.487306,0.870904,-0.817044,-1.96539,0.590203,2.68868, +-0.487203,0.871024,-0.817123,-1.96527,0.590322,2.6888, +-0.487101,0.871142,-0.817203,-1.96516,0.590442,2.68892, +-0.487002,0.871258,-0.817284,-1.96504,0.590562,2.68904, +-0.486905,0.871374,-0.817367,-1.96492,0.590683,2.68915, +-0.48681,0.871488,-0.817451,-1.96481,0.590805,2.68927, +-0.486719,0.871602,-0.817537,-1.9647,0.590928,2.68938, +-0.486631,0.871715,-0.817625,-1.96458,0.591052,2.68949, +-0.486546,0.871826,-0.817714,-1.96447,0.591176,2.6896, +-0.486464,0.871936,-0.817804,-1.96436,0.5913,2.68971, +-0.486385,0.872045,-0.817894,-1.96425,0.591425,2.68982, +-0.486309,0.872152,-0.817986,-1.96414,0.59155,2.68993, +-0.486235,0.872258,-0.818079,-1.96404,0.591675,2.69004, +-0.486164,0.872363,-0.818173,-1.96393,0.591801,2.69014, +-0.486094,0.872467,-0.818269,-1.96383,0.591928,2.69025, +-0.486026,0.872571,-0.818366,-1.96373,0.592056,2.69035, +-0.48596,0.872673,-0.818465,-1.96362,0.592184,2.69045, +-0.485895,0.872774,-0.818564,-1.96352,0.592313,2.69055, +-0.485831,0.872873,-0.818664,-1.96342,0.592441,2.69065, +-0.485768,0.87297,-0.818764,-1.96333,0.59257,2.69075, +-0.485706,0.873065,-0.818866,-1.96323,0.592699,2.69084, +-0.485645,0.873158,-0.818969,-1.96314,0.592829,2.69094, +-0.485585,0.873247,-0.819073,-1.96305,0.59296,2.69103, +-0.485525,0.873334,-0.819178,-1.96296,0.593092,2.69111, +-0.485466,0.873418,-0.819285,-1.96288,0.593223,2.6912, +-0.485406,0.873499,-0.819392,-1.9628,0.593355,2.69128, +-0.485347,0.873577,-0.819499,-1.96272,0.593487,2.69136, +-0.485288,0.873652,-0.819607,-1.96264,0.59362,2.69143, +-0.485229,0.873725,-0.819716,-1.96257,0.593752,2.6915, +-0.485171,0.873795,-0.819827,-1.9625,0.593886,2.69157, +-0.485114,0.873864,-0.819938,-1.96243,0.59402,2.69164, +-0.485058,0.873931,-0.820051,-1.96237,0.594154,2.69171, +-0.485003,0.873997,-0.820164,-1.9623,0.59429,2.69177, +-0.484949,0.874061,-0.820279,-1.96224,0.594425,2.69184, +-0.484895,0.874125,-0.820393,-1.96217,0.59456,2.6919, +-0.484841,0.874187,-0.820508,-1.96211,0.594696,2.69197, +-0.484788,0.874249,-0.820624,-1.96205,0.594831,2.69203, +-0.484737,0.87431,-0.820741,-1.96199,0.594968,2.69209, +-0.484687,0.87437,-0.820859,-1.96193,0.595105,2.69215, +-0.484637,0.87443,-0.820978,-1.96187,0.595243,2.69221, +-0.484589,0.87449,-0.821098,-1.96181,0.595381,2.69227, +-0.484541,0.87455,-0.821219,-1.96175,0.595519,2.69233, +-0.484493,0.87461,-0.82134,-1.96169,0.595658,2.69239, +-0.484446,0.87467,-0.821461,-1.96163,0.595796,2.69245, +-0.484399,0.874729,-0.821584,-1.96157,0.595935,2.69251, +-0.484354,0.874787,-0.821707,-1.96151,0.596074,2.69257, +-0.48431,0.874845,-0.821831,-1.96145,0.596214,2.69262, +-0.484267,0.874901,-0.821957,-1.9614,0.596355,2.69268, +-0.484225,0.874957,-0.822083,-1.96134,0.596496,2.69274, +-0.484183,0.875013,-0.822209,-1.96128,0.596637,2.69279, +-0.484142,0.875068,-0.822336,-1.96123,0.596778,2.69285, +-0.484102,0.875123,-0.822464,-1.96117,0.596919,2.6929, +-0.484063,0.875177,-0.822592,-1.96112,0.597061,2.69295, +-0.484025,0.87523,-0.822721,-1.96107,0.597203,2.69301, +-0.483988,0.875282,-0.822851,-1.96102,0.597345,2.69306, +-0.483953,0.875333,-0.822982,-1.96096,0.597489,2.69311, +-0.483918,0.875383,-0.823114,-1.96091,0.597632,2.69316, +-0.483884,0.875433,-0.823246,-1.96086,0.597776,2.69321, +-0.48385,0.875482,-0.823379,-1.96082,0.597919,2.69326, +-0.483817,0.875531,-0.823512,-1.96077,0.598063,2.69331, +-0.483785,0.875579,-0.823645,-1.96072,0.598207,2.69336, +-0.483755,0.875626,-0.82378,-1.96067,0.598351,2.6934, +-0.483725,0.875672,-0.823916,-1.96063,0.598496,2.69345, +-0.483697,0.875716,-0.824052,-1.96058,0.598642,2.69349, +-0.48367,0.87576,-0.82419,-1.96054,0.598788,2.69354, +-0.483643,0.875804,-0.824327,-1.96049,0.598933,2.69358, +-0.483617,0.875846,-0.824465,-1.96045,0.599079,2.69362, +-0.483592,0.875888,-0.824603,-1.96041,0.599225,2.69367, +-0.483567,0.87593,-0.824742,-1.96037,0.59937,2.69371, +-0.483544,0.87597,-0.824881,-1.96033,0.599517,2.69375, +-0.483522,0.876009,-0.825022,-1.96029,0.599663,2.69379, +-0.483502,0.876046,-0.825163,-1.96025,0.59981,2.69382, +-0.483482,0.876083,-0.825304,-1.96021,0.599957,2.69386, +-0.483463,0.876119,-0.825446,-1.96018,0.600103,2.6939, +-0.483445,0.876155,-0.825588,-1.96014,0.60025,2.69393, +-0.483427,0.87619,-0.82573,-1.96011,0.600396,2.69397, +-0.483411,0.876224,-0.825872,-1.96007,0.600543,2.694, +-0.483395,0.876257,-0.826016,-1.96004,0.60069,2.69403, +-0.483381,0.876288,-0.82616,-1.96001,0.600837,2.69407, +-0.483368,0.876318,-0.826304,-1.95998,0.600983,2.6941, +-0.483356,0.876348,-0.826449,-1.95995,0.60113,2.69413, +-0.483345,0.876376,-0.826594,-1.95992,0.601277,2.69415, +-0.483335,0.876404,-0.826739,-1.95989,0.601423,2.69418, +-0.483325,0.876432,-0.826884,-1.95987,0.601569,2.69421, +-0.483316,0.876458,-0.827029,-1.95984,0.601716,2.69424, +-0.483308,0.876483,-0.827175,-1.95981,0.601862,2.69426, +-0.483302,0.876507,-0.827322,-1.95979,0.602008,2.69428, +-0.483297,0.876529,-0.827469,-1.95977,0.602154,2.69431, +-0.483292,0.876551,-0.827616,-1.95975,0.6023,2.69433, +-0.483289,0.876572,-0.827764,-1.95973,0.602446,2.69435, +-0.483286,0.876592,-0.827911,-1.95971,0.602592,2.69437, +-0.483284,0.876611,-0.828058,-1.95969,0.602738,2.69439, +-0.483282,0.87663,-0.828206,-1.95967,0.602883,2.69441, +-0.483282,0.876647,-0.828354,-1.95965,0.603028,2.69443, +-0.483283,0.876663,-0.828502,-1.95963,0.603173,2.69444, +-0.483286,0.876678,-0.828652,-1.95962,0.603318,2.69446, +-0.483289,0.876691,-0.828801,-1.95961,0.603463,2.69447, +-0.483293,0.876704,-0.82895,-1.95959,0.603608,2.69448, +-0.483298,0.876717,-0.829099,-1.95958,0.603753,2.69449, +-0.483303,0.876728,-0.829248,-1.95957,0.603898,2.69451, +-0.483309,0.876739,-0.829397,-1.95956,0.604042,2.69452, +-0.483316,0.876748,-0.829546,-1.95955,0.604185,2.69453, +-0.483325,0.876757,-0.829696,-1.95954,0.604329,2.69453, +-0.483335,0.876763,-0.829847,-1.95953,0.604472,2.69454, +-0.483347,0.876769,-0.829997,-1.95953,0.604615,2.69455, +-0.483359,0.876774,-0.830147,-1.95952,0.604758,2.69455, +-0.483372,0.876779,-0.830297,-1.95952,0.604902,2.69456, +-0.483387,0.876783,-0.830447,-1.95951,0.605044,2.69456, +-0.483402,0.876786,-0.830597,-1.95951,0.605187,2.69456, +-0.483419,0.876787,-0.830748,-1.95951,0.605328,2.69457, +-0.483437,0.876788,-0.830898,-1.95951,0.605469,2.69457, +-0.483457,0.876787,-0.831049,-1.95951,0.60561,2.69456, +-0.483478,0.876785,-0.831201,-1.95951,0.605751,2.69456, +-0.483501,0.876783,-0.831351,-1.95951,0.605892,2.69456, +-0.483524,0.87678,-0.831502,-1.95952,0.606033,2.69456, +-0.483548,0.876776,-0.831652,-1.95952,0.606173,2.69455, +-0.483574,0.876771,-0.831803,-1.95953,0.606313,2.69455, +-0.483601,0.876766,-0.831953,-1.95953,0.606452,2.69454, +-0.48363,0.876759,-0.832104,-1.95954,0.606591,2.69454, +-0.483661,0.87675,-0.832256,-1.95955,0.606729,2.69453, +-0.483693,0.87674,-0.832407,-1.95956,0.606867,2.69452, +-0.483727,0.87673,-0.832558,-1.95957,0.607004,2.69451, +-0.483761,0.876718,-0.832708,-1.95958,0.607142,2.6945, +-0.483797,0.876706,-0.832859,-1.95959,0.60728,2.69448, +-0.483834,0.876692,-0.833009,-1.95961,0.607417,2.69447, +-0.483872,0.876677,-0.833159,-1.95962,0.607553,2.69445, +-0.483913,0.87666,-0.83331,-1.95964,0.607689,2.69444, +-0.483956,0.876642,-0.833461,-1.95966,0.607823,2.69442, +-0.484,0.876622,-0.833611,-1.95968,0.607958,2.6944, +-0.484045,0.876601,-0.833762,-1.9597,0.608092,2.69438, +-0.484092,0.87658,-0.833912,-1.95972,0.608226,2.69436, +-0.48414,0.876557,-0.834061,-1.95974,0.60836,2.69434, +-0.48419,0.876533,-0.83421,-1.95976,0.608493,2.69431, +-0.484241,0.876507,-0.83436,-1.95979,0.608626,2.69429, +-0.484294,0.87648,-0.83451,-1.95982,0.608758,2.69426, +-0.48435,0.876451,-0.834659,-1.95985,0.608889,2.69423, +-0.484407,0.87642,-0.834809,-1.95988,0.609019,2.6942, +-0.484465,0.876388,-0.834958,-1.95991,0.609149,2.69417, +-0.484525,0.876355,-0.835107,-1.95994,0.609279,2.69413, +-0.484586,0.876321,-0.835255,-1.95998,0.609409,2.6941, +-0.484649,0.876285,-0.835403,-1.96001,0.609538,2.69406, +-0.484714,0.876247,-0.83555,-1.96005,0.609666,2.69403, +-0.484781,0.876208,-0.835699,-1.96009,0.609793,2.69399, +-0.484851,0.876166,-0.835847,-1.96013,0.60992,2.69394, +-0.484921,0.876123,-0.835994,-1.96017,0.610046,2.6939, +-0.484994,0.876078,-0.836142,-1.96022,0.610171,2.69386, +-0.485068,0.876033,-0.836288,-1.96026,0.610296,2.69381, +-0.485143,0.875986,-0.836434,-1.96031,0.610421,2.69376, +-0.485221,0.875937,-0.83658,-1.96036,0.610545,2.69371, +-0.4853,0.875886,-0.836725,-1.96041,0.610668,2.69366, +-0.485382,0.875833,-0.836871,-1.96046,0.61079,2.69361, +-0.485465,0.875778,-0.837017,-1.96052,0.610911,2.69356, +-0.485551,0.875721,-0.837162,-1.96058,0.611031,2.6935, +-0.485639,0.875663,-0.837307,-1.96063,0.611151,2.69344, +-0.485727,0.875603,-0.83745,-1.96069,0.611271,2.69338, +-0.485818,0.875542,-0.837593,-1.96076,0.611391,2.69332, +-0.485911,0.875478,-0.837734,-1.96082,0.611511,2.69326, +-0.486005,0.875413,-0.837873,-1.96088,0.611631,2.69319, +-0.486102,0.875346,-0.838012,-1.96095,0.611752,2.69312, +-0.4862,0.875276,-0.838148,-1.96102,0.611873,2.69305, +-0.4863,0.875205,-0.838284,-1.96109,0.611994,2.69298, +-0.486401,0.875133,-0.838419,-1.96116,0.612115,2.69291, +-0.486503,0.875059,-0.838554,-1.96124,0.612235,2.69284, +-0.486606,0.874984,-0.838687,-1.96131,0.612354,2.69276, +-0.486711,0.874907,-0.838819,-1.96139,0.612473,2.69268, +-0.486817,0.874828,-0.83895,-1.96147,0.612592,2.69261, +-0.486925,0.874747,-0.839079,-1.96155,0.61271,2.69253, +-0.487034,0.874664,-0.839207,-1.96163,0.612827,2.69244, +-0.487145,0.87458,-0.839334,-1.96172,0.612943,2.69236, +-0.487256,0.874495,-0.83946,-1.9618,0.613058,2.69227, +-0.487367,0.874409,-0.839585,-1.96189,0.613171,2.69219, +-0.48748,0.874321,-0.839709,-1.96198,0.613283,2.6921, +-0.487593,0.874232,-0.839833,-1.96207,0.613394,2.69201, +-0.487708,0.874141,-0.839954,-1.96216,0.613503,2.69192, +-0.487824,0.874048,-0.840075,-1.96225,0.613611,2.69183, +-0.487941,0.873954,-0.840194,-1.96234,0.613718,2.69173, +-0.488059,0.873859,-0.840312,-1.96244,0.613823,2.69164, +-0.488177,0.873762,-0.840429,-1.96254,0.613926,2.69154, +-0.488296,0.873665,-0.840545,-1.96263,0.614026,2.69144, +-0.488415,0.873567,-0.84066,-1.96273,0.614124,2.69134, +-0.488535,0.873467,-0.840775,-1.96283,0.614219,2.69125, +-0.488656,0.873366,-0.840887,-1.96293,0.614311,2.69114, +-0.488778,0.873263,-0.840999,-1.96303,0.6144,2.69104, +-0.488901,0.87316,-0.841109,-1.96314,0.614485,2.69094, +-0.489024,0.873055,-0.841218,-1.96324,0.614567,2.69083, +-0.489148,0.872949,-0.841326,-1.96335,0.614645,2.69073, +-0.489271,0.872843,-0.841434,-1.96345,0.614721,2.69062, +-0.489396,0.872736,-0.841541,-1.96356,0.614794,2.69051, +-0.48952,0.872628,-0.841646,-1.96367,0.614864,2.69041, +-0.489646,0.872519,-0.841751,-1.96378,0.614932,2.6903, +-0.489772,0.872409,-0.841854,-1.96389,0.614998,2.69019, +-0.4899,0.872297,-0.841956,-1.964,0.615062,2.69008, +-0.490027,0.872185,-0.842056,-1.96411,0.615125,2.68996, +-0.490155,0.872072,-0.842156,-1.96422,0.615186,2.68985, +-0.490283,0.871959,-0.842255,-1.96434,0.615246,2.68974, +-0.490412,0.871845,-0.842354,-1.96445,0.615305,2.68962, +-0.49054,0.871731,-0.842451,-1.96457,0.615362,2.68951, +-0.49067,0.871616,-0.842547,-1.96468,0.615419,2.68939, +-0.4908,0.871499,-0.842642,-1.9648,0.615474,2.68928, +-0.490931,0.871381,-0.842735,-1.96492,0.615529,2.68916, +-0.491063,0.871263,-0.842827,-1.96504,0.615583,2.68904, +-0.491194,0.871144,-0.842919,-1.96515,0.615638,2.68892, +-0.491326,0.871025,-0.84301,-1.96527,0.615692,2.6888, +-0.491457,0.870905,-0.843101,-1.96539,0.615746,2.68868, +-0.49159,0.870785,-0.843191,-1.96551,0.615799,2.68856, +-0.491722,0.870663,-0.843279,-1.96563,0.615852,2.68844, +-0.491856,0.870541,-0.843366,-1.96576,0.615904,2.68832, +-0.49199,0.870418,-0.843452,-1.96588,0.615954,2.6882, +-0.492125,0.870294,-0.843537,-1.966,0.616004,2.68807, +-0.49226,0.870169,-0.843621,-1.96613,0.616053,2.68795, +-0.492395,0.870045,-0.843704,-1.96625,0.616101,2.68782, +-0.49253,0.86992,-0.843787,-1.96638,0.616149,2.6877, +-0.492665,0.869795,-0.843868,-1.9665,0.616195,2.68757, +-0.492801,0.869669,-0.843949,-1.96663,0.616241,2.68745, +-0.492938,0.869541,-0.844028,-1.96676,0.616285,2.68732, +-0.493075,0.869413,-0.844106,-1.96688,0.616328,2.68719, +-0.493213,0.869284,-0.844183,-1.96701,0.61637,2.68706, +-0.493351,0.869155,-0.844259,-1.96714,0.616412,2.68693, +-0.493488,0.869026,-0.844335,-1.96727,0.616454,2.6868, +-0.493626,0.868896,-0.84441,-1.9674,0.616495,2.68667, +-0.493765,0.868766,-0.844484,-1.96753,0.616535,2.68654, +-0.493903,0.868635,-0.844557,-1.96766,0.616575,2.68641, +-0.494043,0.868503,-0.844629,-1.96779,0.616613,2.68628, +-0.494183,0.86837,-0.844699,-1.96793,0.616649,2.68615, +-0.494324,0.868237,-0.844768,-1.96806,0.616685,2.68601, +-0.494464,0.868103,-0.844837,-1.96819,0.61672,2.68588, +-0.494605,0.867969,-0.844905,-1.96833,0.616755,2.68575, +-0.494746,0.867835,-0.844973,-1.96846,0.616789,2.68561, +-0.494887,0.8677,-0.845039,-1.9686,0.616822,2.68548, +-0.495028,0.867565,-0.845105,-1.96873,0.616853,2.68534, +-0.49517,0.867428,-0.845169,-1.96887,0.616883,2.68521, +-0.495313,0.867291,-0.845232,-1.96901,0.616913,2.68507, +-0.495456,0.867154,-0.845293,-1.96914,0.616941,2.68493, +-0.495599,0.867016,-0.845354,-1.96928,0.616968,2.68479, +-0.495742,0.866878,-0.845415,-1.96942,0.616995,2.68466, +-0.495885,0.866739,-0.845475,-1.96956,0.617022,2.68452, +-0.496028,0.8666,-0.845534,-1.9697,0.617047,2.68438, +-0.496172,0.866461,-0.845591,-1.96984,0.617072,2.68424, +-0.496317,0.86632,-0.845648,-1.96998,0.617095,2.6841, +-0.496462,0.866179,-0.845703,-1.97012,0.617116,2.68396, +-0.496607,0.866038,-0.845757,-1.97026,0.617137,2.68382, +-0.496752,0.865896,-0.84581,-1.9704,0.617157,2.68367, +-0.496896,0.865755,-0.845863,-1.97054,0.617177,2.68353, +-0.497041,0.865613,-0.845915,-1.97068,0.617196,2.68339, +-0.497186,0.865471,-0.845966,-1.97083,0.617213,2.68325, +-0.497332,0.865328,-0.846016,-1.97097,0.61723,2.68311, +-0.497478,0.865185,-0.846065,-1.97111,0.617245,2.68296, +-0.497624,0.865041,-0.846112,-1.97126,0.617259,2.68282, +-0.49777,0.864897,-0.846158,-1.9714,0.617272,2.68267, +-0.497916,0.864752,-0.846204,-1.97155,0.617285,2.68253, +-0.498062,0.864608,-0.846249,-1.97169,0.617297,2.68239, +-0.498208,0.864463,-0.846293,-1.97183,0.617308,2.68224, +-0.498354,0.864318,-0.846336,-1.97198,0.617318,2.6821, +-0.498501,0.864173,-0.846378,-1.97212,0.617327,2.68195, +-0.498647,0.864027,-0.846418,-1.97227,0.617335,2.68181, +-0.498794,0.86388,-0.846458,-1.97242,0.617341,2.68166, +-0.49894,0.863734,-0.846496,-1.97256,0.617347,2.68151, +-0.499087,0.863587,-0.846533,-1.97271,0.617351,2.68137, +-0.499233,0.863441,-0.84657,-1.97286,0.617356,2.68122, +-0.499379,0.863295,-0.846606,-1.973,0.617359,2.68107, +-0.499525,0.863148,-0.846641,-1.97315,0.617362,2.68093, +-0.499672,0.863001,-0.846675,-1.9733,0.617363,2.68078, +-0.499818,0.862853,-0.846707,-1.97344,0.617363,2.68063, +-0.499965,0.862705,-0.846739,-1.97359,0.617362,2.68048, +-0.500111,0.862556,-0.846769,-1.97374,0.61736,2.68033, +-0.500258,0.862408,-0.846798,-1.97389,0.617358,2.68019, +-0.500404,0.86226,-0.846827,-1.97404,0.617355,2.68004, +-0.50055,0.862112,-0.846855,-1.97418,0.617351,2.67989, +-0.500696,0.861964,-0.846882,-1.97433,0.617346,2.67974, +-0.500843,0.861815,-0.846907,-1.97448,0.617341,2.67959, +-0.500989,0.861666,-0.846932,-1.97463,0.617334,2.67944, +-0.501135,0.861516,-0.846955,-1.97478,0.617325,2.67929, +-0.501281,0.861366,-0.846977,-1.97493,0.617315,2.67914, +-0.501427,0.861216,-0.846998,-1.97508,0.617305,2.67899, +-0.501573,0.861067,-0.847019,-1.97523,0.617293,2.67885, +-0.501719,0.860918,-0.847038,-1.97538,0.617281,2.6787, +-0.501865,0.860768,-0.847057,-1.97553,0.617268,2.67855, +-0.50201,0.860618,-0.847075,-1.97568,0.617253,2.6784, +-0.502155,0.860468,-0.847091,-1.97583,0.617236,2.67825, +-0.502301,0.860317,-0.847106,-1.97598,0.617218,2.6781, +-0.502446,0.860166,-0.84712,-1.97613,0.617199,2.67794, +-0.502592,0.860016,-0.847133,-1.97628,0.617179,2.67779, +-0.502737,0.859866,-0.847145,-1.97643,0.617157,2.67764, +-0.502882,0.859716,-0.847157,-1.97658,0.617135,2.67749, +-0.503026,0.859566,-0.847168,-1.97673,0.617112,2.67734, +-0.50317,0.859416,-0.847177,-1.97688,0.617086,2.67719, +-0.503314,0.859265,-0.847185,-1.97703,0.61706,2.67704, +-0.503458,0.859114,-0.847192,-1.97718,0.617031,2.67689, +-0.503602,0.858963,-0.847198,-1.97733,0.617001,2.67674, +-0.503746,0.858813,-0.847203,-1.97748,0.61697,2.67659, +-0.50389,0.858662,-0.847207,-1.97763,0.616938,2.67644, +-0.504033,0.858513,-0.847211,-1.97778,0.616905,2.67629, +-0.504175,0.858363,-0.847214,-1.97793,0.61687,2.67614, +-0.504317,0.858213,-0.847215,-1.97808,0.616833,2.67599, +-0.504459,0.858062,-0.847215,-1.97823,0.616795,2.67584, +-0.504601,0.857912,-0.847214,-1.97839,0.616755,2.67569, +-0.504743,0.857761,-0.847212,-1.97854,0.616713,2.67554, +-0.504884,0.857611,-0.847209,-1.97869,0.61667,2.67539, +-0.505026,0.857462,-0.847206,-1.97884,0.616626,2.67524, +-0.505166,0.857313,-0.847202,-1.97898,0.61658,2.67509, +-0.505307,0.857164,-0.847197,-1.97913,0.616533,2.67494, +-0.505446,0.857015,-0.847191,-1.97928,0.616484,2.67479, +-0.505585,0.856865,-0.847183,-1.97943,0.616433,2.67464, +-0.505724,0.856716,-0.847174,-1.97958,0.61638,2.67449, +-0.505863,0.856567,-0.847164,-1.97973,0.616326,2.67435, +-0.506001,0.856418,-0.847152,-1.97988,0.61627,2.6742, +-0.506139,0.85627,-0.84714,-1.98003,0.616212,2.67405, +-0.506277,0.856123,-0.847127,-1.98017,0.616153,2.6739, +-0.506414,0.855976,-0.847112,-1.98032,0.616093,2.67375, +-0.50655,0.855828,-0.847096,-1.98047,0.61603,2.67361, +-0.506686,0.855681,-0.847079,-1.98062,0.615966,2.67346, +-0.506821,0.855534,-0.847059,-1.98076,0.615899,2.67331, +-0.506956,0.855387,-0.847038,-1.98091,0.61583,2.67317, +-0.507091,0.855241,-0.847017,-1.98106,0.61576,2.67302, +-0.507225,0.855095,-0.846994,-1.9812,0.615689,2.67287, +-0.507359,0.85495,-0.846969,-1.98135,0.615616,2.67273, +-0.507492,0.854806,-0.846944,-1.98149,0.615541,2.67258, +-0.507624,0.854661,-0.846917,-1.98164,0.615464,2.67244, +-0.507755,0.854516,-0.846888,-1.98178,0.615384,2.67229, +-0.507886,0.854372,-0.846857,-1.98193,0.615303,2.67215, +-0.508017,0.854228,-0.846824,-1.98207,0.615219,2.67201, +-0.508147,0.854084,-0.84679,-1.98221,0.615134,2.67186, +-0.508277,0.853942,-0.846755,-1.98236,0.615047,2.67172, +-0.508406,0.8538,-0.846718,-1.9825,0.614959,2.67158, +-0.508534,0.85366,-0.84668,-1.98264,0.614868,2.67144, +-0.508662,0.853522,-0.84664,-1.98278,0.614776,2.6713, +-0.508788,0.853385,-0.846598,-1.98291,0.614681,2.67116, +-0.508912,0.85325,-0.846554,-1.98305,0.614585,2.67103, +-0.509034,0.853116,-0.846508,-1.98318,0.614487,2.67089, +-0.509155,0.852983,-0.846461,-1.98331,0.614388,2.67076, +-0.509274,0.852851,-0.846412,-1.98345,0.614288,2.67063, +-0.509392,0.852719,-0.846363,-1.98358,0.614186,2.6705, +-0.509507,0.852589,-0.846311,-1.98371,0.614083,2.67037, +-0.509621,0.852461,-0.846258,-1.98384,0.613979,2.67024, +-0.509733,0.852334,-0.846203,-1.98396,0.613873,2.67011, +-0.509844,0.852209,-0.846145,-1.98409,0.613765,2.66999, +-0.509953,0.852084,-0.846087,-1.98421,0.613657,2.66986, +-0.510062,0.851961,-0.846026,-1.98434,0.613547,2.66974, +-0.51017,0.851838,-0.845965,-1.98446,0.613437,2.66962, +-0.510277,0.851716,-0.845902,-1.98458,0.613327,2.6695, +-0.510382,0.851595,-0.845837,-1.9847,0.613215,2.66937, +-0.510487,0.851476,-0.845771,-1.98482,0.613102,2.66925, +-0.51059,0.851358,-0.845703,-1.98494,0.612987,2.66914, +-0.510691,0.851242,-0.845632,-1.98506,0.612872,2.66902, +-0.510791,0.851127,-0.845561,-1.98517,0.612756,2.66891, +-0.51089,0.851012,-0.845488,-1.98528,0.612639,2.66879, +-0.510988,0.850899,-0.845414,-1.9854,0.612522,2.66868, +-0.511086,0.850786,-0.845338,-1.98551,0.612404,2.66857, +-0.511182,0.850675,-0.845261,-1.98562,0.612286,2.66845, +-0.511276,0.850565,-0.845182,-1.98573,0.612167,2.66834, +-0.511369,0.850457,-0.845102,-1.98584,0.612046,2.66824, +-0.511461,0.85035,-0.84502,-1.98595,0.611925,2.66813, +-0.511551,0.850244,-0.844936,-1.98605,0.611803,2.66802, +-0.511641,0.850139,-0.844852,-1.98616,0.611681,2.66792, +-0.51173,0.850035,-0.844766,-1.98626,0.611558,2.66781, +-0.511818,0.849931,-0.844679,-1.98637,0.611436,2.66771, +-0.511905,0.849828,-0.844591,-1.98647,0.611312,2.66761, +-0.51199,0.849727,-0.844502,-1.98657,0.611188,2.66751, +-0.512074,0.849627,-0.84441,-1.98667,0.611063,2.66741, +-0.512157,0.849529,-0.844318,-1.98677,0.610937,2.66731, +-0.512239,0.849431,-0.844224,-1.98687,0.610811,2.66721, +-0.512319,0.849334,-0.844129,-1.98696,0.610684,2.66711, +-0.5124,0.849238,-0.844034,-1.98706,0.610558,2.66702, +-0.512479,0.849143,-0.843937,-1.98715,0.610431,2.66692, +-0.512557,0.849049,-0.84384,-1.98725,0.610303,2.66683, +-0.512634,0.848956,-0.843741,-1.98734,0.610175,2.66673, +-0.512709,0.848864,-0.843641,-1.98743,0.610046,2.66664, +-0.512783,0.848774,-0.843539,-1.98752,0.609916,2.66655, +-0.512856,0.848685,-0.843437,-1.98761,0.609786,2.66646, +-0.512928,0.848596,-0.843334,-1.9877,0.609656,2.66637, +-0.513,0.848508,-0.84323,-1.98779,0.609526,2.66629, +-0.513071,0.848421,-0.843125,-1.98788,0.609395,2.6662, +-0.51314,0.848335,-0.84302,-1.98796,0.609264,2.66611, +-0.513209,0.84825,-0.842913,-1.98805,0.609132,2.66603, +-0.513276,0.848166,-0.842805,-1.98813,0.609,2.66594, +-0.513341,0.848084,-0.842696,-1.98821,0.608867,2.66586, +-0.513406,0.848002,-0.842586,-1.98829,0.608733,2.66578, +-0.513469,0.847922,-0.842475,-1.98838,0.6086,2.6657, +-0.513533,0.847842,-0.842364,-1.98846,0.608466,2.66562, +-0.513595,0.847762,-0.842252,-1.98853,0.608332,2.66554, +-0.513656,0.847684,-0.84214,-1.98861,0.608198,2.66546, +-0.513717,0.847607,-0.842026,-1.98869,0.608063,2.66539, +-0.513775,0.847531,-0.841911,-1.98877,0.607927,2.66531, +-0.513833,0.847457,-0.841795,-1.98884,0.607791,2.66523, +-0.513889,0.847383,-0.841678,-1.98891,0.607654,2.66516, +-0.513945,0.84731,-0.841561,-1.98899,0.607518,2.66509, +-0.514,0.847238,-0.841443,-1.98906,0.607381,2.66502, +-0.514054,0.847166,-0.841325,-1.98913,0.607244,2.66494, +-0.514107,0.847096,-0.841206,-1.9892,0.607107,2.66487, +-0.514159,0.847026,-0.841086,-1.98927,0.606969,2.6648, +-0.51421,0.846958,-0.840964,-1.98934,0.60683,2.66474, +-0.514259,0.846891,-0.840842,-1.98941,0.606691,2.66467, +-0.514308,0.846826,-0.840719,-1.98947,0.606551,2.6646, +-0.514355,0.84676,-0.840595,-1.98954,0.606411,2.66454, +-0.514402,0.846696,-0.840472,-1.9896,0.606272,2.66447, +-0.514449,0.846632,-0.840347,-1.98967,0.606132,2.66441, +-0.514494,0.846569,-0.840222,-1.98973,0.605992,2.66435, +-0.514538,0.846507,-0.840095,-1.98979,0.605851,2.66428, +-0.514581,0.846446,-0.839968,-1.98985,0.60571,2.66422, +-0.514622,0.846387,-0.83984,-1.98991,0.605568,2.66417, +-0.514662,0.846329,-0.83971,-1.98997,0.605425,2.66411, +-0.514702,0.846271,-0.839581,-1.99003,0.605283,2.66405, +-0.514741,0.846214,-0.839451,-1.99008,0.605141,2.66399, +-0.514779,0.846158,-0.83932,-1.99014,0.604998,2.66394, +-0.514817,0.846103,-0.839189,-1.99019,0.604855,2.66388, +-0.514853,0.846049,-0.839057,-1.99025,0.604712,2.66383, +-0.514887,0.845996,-0.838923,-1.9903,0.604568,2.66377, +-0.514921,0.845945,-0.838789,-1.99035,0.604424,2.66372, +-0.514953,0.845894,-0.838654,-1.9904,0.604279,2.66367, +-0.514985,0.845844,-0.838519,-1.99045,0.604134,2.66362, +-0.515016,0.845795,-0.838384,-1.9905,0.60399,2.66357, +-0.515046,0.845747,-0.838248,-1.99055,0.603845,2.66352, +-0.515076,0.845699,-0.838111,-1.9906,0.6037,2.66348, +-0.515104,0.845653,-0.837974,-1.99064,0.603555,2.66343, +-0.51513,0.845608,-0.837836,-1.99069,0.603408,2.66339, +-0.515156,0.845564,-0.837697,-1.99073,0.603262,2.66334, +-0.51518,0.845521,-0.837557,-1.99078,0.603115,2.6633, +-0.515204,0.845479,-0.837417,-1.99082,0.602968,2.66326, +-0.515227,0.845438,-0.837277,-1.99086,0.602822,2.66322, +-0.515249,0.845397,-0.837137,-1.9909,0.602676,2.66318, +-0.515271,0.845358,-0.836996,-1.99094,0.602529,2.66314, +-0.515291,0.845319,-0.836855,-1.99098,0.602382,2.6631, +-0.51531,0.845282,-0.836713,-1.99101,0.602235,2.66306, +-0.515327,0.845246,-0.83657,-1.99105,0.602088,2.66302, +-0.515343,0.845212,-0.836426,-1.99109,0.601941,2.66299, +-0.515359,0.845178,-0.836283,-1.99112,0.601794,2.66296, +-0.515374,0.845144,-0.836139,-1.99115,0.601647,2.66292, +-0.515388,0.845112,-0.835996,-1.99119,0.601501,2.66289, +-0.515402,0.84508,-0.835852,-1.99122,0.601354,2.66286, +-0.515414,0.84505,-0.835707,-1.99125,0.601208,2.66283, +-0.515425,0.845021,-0.835562,-1.99128,0.601061,2.6628, +-0.515434,0.844994,-0.835416,-1.9913,0.600914,2.66277, +-0.515443,0.844967,-0.83527,-1.99133,0.600768,2.66275, +-0.51545,0.844941,-0.835124,-1.99136,0.600621,2.66272, +-0.515458,0.844916,-0.834977,-1.99138,0.600475,2.66269, +-0.515464,0.844892,-0.834831,-1.99141,0.600329,2.66267, +-0.515469,0.844868,-0.834685,-1.99143,0.600183,2.66265, +-0.515474,0.844846,-0.834538,-1.99145,0.600038,2.66262, +-0.515477,0.844825,-0.83439,-1.99147,0.599892,2.6626, +-0.515478,0.844806,-0.834242,-1.99149,0.599747,2.66258, +-0.515479,0.844788,-0.834094,-1.99151,0.599601,2.66257, +-0.515479,0.84477,-0.833945,-1.99153,0.599456,2.66255, +-0.515479,0.844753,-0.833797,-1.99154,0.59931,2.66253, +-0.515478,0.844737,-0.833649,-1.99156,0.599165,2.66251, +-0.515476,0.844721,-0.833501,-1.99158,0.599021,2.6625, +-0.515473,0.844708,-0.833352,-1.99159,0.598877,2.66249, +-0.515468,0.844695,-0.833203,-1.9916,0.598733,2.66247, +-0.515462,0.844684,-0.833053,-1.99161,0.598589,2.66246, +-0.515455,0.844673,-0.832903,-1.99162,0.598445,2.66245, +-0.515447,0.844664,-0.832754,-1.99163,0.598301,2.66244, +-0.515439,0.844655,-0.832604,-1.99164,0.598157,2.66243, +-0.51543,0.844647,-0.832455,-1.99165,0.598013,2.66242, +-0.515419,0.84464,-0.832305,-1.99166,0.59787,2.66242, +-0.515408,0.844634,-0.832155,-1.99166,0.597728,2.66241, +-0.515394,0.844629,-0.832005,-1.99167,0.597585,2.66241, +-0.51538,0.844626,-0.831854,-1.99167,0.597443,2.6624, +-0.515364,0.844623,-0.831703,-1.99167,0.597301,2.6624, +-0.515347,0.844622,-0.831553,-1.99168,0.597159,2.6624, +-0.515329,0.84462,-0.831402,-1.99168,0.597017,2.6624, +-0.51531,0.84462,-0.831252,-1.99168,0.596875,2.6624, +-0.51529,0.84462,-0.831102,-1.99168,0.596734,2.6624, +-0.515268,0.844622,-0.830952,-1.99167,0.596594,2.6624, +-0.515245,0.844625,-0.830801,-1.99167,0.596454,2.6624, +-0.51522,0.84463,-0.830649,-1.99167,0.596315,2.66241, +-0.515193,0.844635,-0.830498,-1.99166,0.596175,2.66241, +-0.515166,0.844641,-0.830347,-1.99166,0.596036,2.66242, +-0.515137,0.844648,-0.830197,-1.99165,0.595897,2.66243, +-0.515108,0.844656,-0.830046,-1.99164,0.595758,2.66243, +-0.515077,0.844664,-0.829896,-1.99163,0.595619,2.66244, +-0.515044,0.844674,-0.829745,-1.99162,0.595481,2.66245, +-0.515009,0.844685,-0.829595,-1.99161,0.595344,2.66246, +-0.514973,0.844698,-0.829443,-1.9916,0.595208,2.66248, +-0.514935,0.844713,-0.829292,-1.99158,0.595072,2.66249, +-0.514896,0.844728,-0.829142,-1.99157,0.594936,2.66251, +-0.514856,0.844744,-0.828991,-1.99155,0.5948,2.66252, +-0.514814,0.844761,-0.828842,-1.99154,0.594664,2.66254, +-0.514771,0.844779,-0.828692,-1.99152,0.594529,2.66256, +-0.514726,0.844799,-0.828542,-1.9915,0.594394,2.66258, +-0.51468,0.844821,-0.828392,-1.99148,0.594261,2.6626, +-0.514631,0.844844,-0.828241,-1.99145,0.594128,2.66262, +-0.51458,0.844869,-0.828091,-1.99143,0.593995,2.66265, +-0.514529,0.844895,-0.827941,-1.9914,0.593863,2.66267, +-0.514476,0.844922,-0.827792,-1.99138,0.593731,2.6627, +-0.514421,0.84495,-0.827643,-1.99135,0.593599,2.66273, +-0.514365,0.844979,-0.827494,-1.99132,0.593468,2.66276, +-0.514307,0.845011,-0.827346,-1.99129,0.593337,2.66279, +-0.514247,0.845044,-0.827197,-1.99125,0.593208,2.66282, +-0.514185,0.845079,-0.827048,-1.99122,0.593079,2.66286, +-0.514122,0.845115,-0.826899,-1.99118,0.592951,2.66289, +-0.514056,0.845153,-0.826751,-1.99114,0.592823,2.66293, +-0.51399,0.845192,-0.826603,-1.9911,0.592695,2.66297, +-0.513921,0.845233,-0.826456,-1.99106,0.592568,2.66301, +-0.513852,0.845275,-0.826309,-1.99102,0.592442,2.66305, +-0.51378,0.845318,-0.826162,-1.99098,0.592316,2.6631, +-0.513705,0.845364,-0.826015,-1.99093,0.592191,2.66314, +-0.513629,0.845412,-0.825868,-1.99088,0.592067,2.66319, +-0.513551,0.845462,-0.825722,-1.99084,0.591944,2.66324, +-0.513471,0.845513,-0.825576,-1.99078,0.591822,2.66329, +-0.51339,0.845566,-0.825431,-1.99073,0.591699,2.66334, +-0.513307,0.84562,-0.825286,-1.99068,0.591577,2.6634, +-0.513222,0.845675,-0.825142,-1.99062,0.591456,2.66345, +-0.513135,0.845733,-0.824997,-1.99056,0.591336,2.66351, +-0.513046,0.845793,-0.824853,-1.9905,0.591216,2.66357, +-0.512955,0.845855,-0.824709,-1.99044,0.591099,2.66363, +-0.512862,0.845919,-0.824566,-1.99038,0.590982,2.6637, +-0.512768,0.845984,-0.824423,-1.99031,0.590867,2.66376, +-0.512672,0.846051,-0.824282,-1.99025,0.590752,2.66383, +-0.512575,0.846119,-0.824141,-1.99018,0.590638,2.6639, +-0.512476,0.846189,-0.824,-1.99011,0.590526,2.66397, +-0.512375,0.846261,-0.82386,-1.99004,0.590415,2.66404, +-0.512272,0.846335,-0.82372,-1.98996,0.590306,2.66411, +-0.512168,0.846411,-0.823581,-1.98989,0.590199,2.66419, +-0.512063,0.846489,-0.823442,-1.98981,0.590092,2.66427, +-0.511956,0.846568,-0.823304,-1.98973,0.589987,2.66435, +-0.511849,0.846648,-0.823168,-1.98965,0.589883,2.66443, +-0.511741,0.846729,-0.823033,-1.98957,0.589781,2.66451, +-0.511632,0.846812,-0.822898,-1.98948,0.589679,2.66459, +-0.511521,0.846897,-0.822764,-1.9894,0.589579,2.66468, +-0.511408,0.846984,-0.82263,-1.98931,0.589481,2.66476, +-0.511295,0.847073,-0.822498,-1.98922,0.589384,2.66485, +-0.511181,0.847163,-0.822366,-1.98913,0.589289,2.66494, +-0.511066,0.847254,-0.822235,-1.98904,0.589194,2.66503, +-0.51095,0.847346,-0.822106,-1.98895,0.5891,2.66512, +-0.510834,0.847439,-0.821978,-1.98886,0.589007,2.66522, +-0.510717,0.847534,-0.821851,-1.98876,0.588916,2.66531, +-0.510599,0.84763,-0.821724,-1.98867,0.588825,2.66541, +-0.51048,0.847728,-0.821599,-1.98857,0.588737,2.66551, +-0.51036,0.847827,-0.821474,-1.98847,0.58865,2.66561, +-0.510239,0.847927,-0.82135,-1.98837,0.588564,2.66571, +-0.510118,0.848029,-0.821228,-1.98827,0.588479,2.66581, +-0.509997,0.848131,-0.821107,-1.98817,0.588394,2.66591, +-0.509875,0.848233,-0.820987,-1.98806,0.588311,2.66601, +-0.509752,0.848337,-0.820869,-1.98796,0.588229,2.66612, +-0.509629,0.848443,-0.820751,-1.98785,0.588149,2.66622, +-0.509504,0.848549,-0.820635,-1.98775,0.58807,2.66633, +-0.509379,0.848657,-0.820519,-1.98764,0.587992,2.66644, +-0.509253,0.848766,-0.820404,-1.98753,0.587915,2.66654, +-0.509127,0.848875,-0.82029,-1.98742,0.58784,2.66665, +-0.509001,0.848985,-0.820179,-1.98731,0.587765,2.66676, +-0.508875,0.849096,-0.820068,-1.9872,0.587691,2.66687, +-0.508748,0.849207,-0.819959,-1.98709,0.587618,2.66699, +-0.508621,0.84932,-0.819851,-1.98698,0.587546,2.6671, +-0.508492,0.849433,-0.819743,-1.98686,0.587476,2.66721, +-0.508363,0.849548,-0.819636,-1.98675,0.587407,2.66733, +-0.508233,0.849664,-0.819531,-1.98663,0.58734,2.66744, +-0.508103,0.84978,-0.819426,-1.98652,0.587273,2.66756, +-0.507973,0.849897,-0.819324,-1.9864,0.587207,2.66768, +-0.507843,0.850015,-0.819223,-1.98628,0.587141,2.66779, +-0.507713,0.850134,-0.819125,-1.98616,0.587077,2.66791, +-0.507581,0.850254,-0.819028,-1.98604,0.587015,2.66803, +-0.507449,0.850374,-0.818935,-1.98592,0.586954,2.66815, +-0.507316,0.850495,-0.818844,-1.9858,0.586894,2.66827, +-0.507183,0.850617,-0.818757,-1.98568,0.586835,2.66839, +-0.50705,0.850738,-0.818673,-1.98556,0.586777,2.66852, +-0.506917,0.850859,-0.818591,-1.98544,0.586719,2.66864, +-0.506783,0.85098,-0.818513,-1.98532,0.586663,2.66876, +-0.506649,0.851102,-0.818436,-1.9852,0.586607,2.66888, +-0.506515,0.851224,-0.818362,-1.98507,0.586553,2.669, +-0.50638,0.851347,-0.81829,-1.98495,0.5865,2.66913, +-0.506245,0.851471,-0.81822,-1.98483,0.586449,2.66925, +-0.50611,0.851596,-0.818151,-1.9847,0.586399,2.66937, +-0.505975,0.851721,-0.818083,-1.98458,0.586349,2.6695, +-0.50584,0.851847,-0.818017,-1.98445,0.5863,2.66963, +-0.505705,0.851974,-0.817951,-1.98432,0.586252,2.66975, +-0.505569,0.852101,-0.817886,-1.9842,0.586205,2.66988, +-0.505432,0.85223,-0.817822,-1.98407,0.58616,2.67001, +-0.505295,0.852359,-0.817759,-1.98394,0.586116,2.67014, +-0.505157,0.852489,-0.817696,-1.98381,0.586073,2.67027, +-0.505019,0.852621,-0.817633,-1.98368,0.586031,2.6704, +-0.50488,0.852752,-0.817569,-1.98355,0.58599,2.67053, +-0.504741,0.852884,-0.817506,-1.98341,0.585949,2.67066, +-0.504603,0.853016,-0.817443,-1.98328,0.585909,2.67079, +-0.504463,0.853149,-0.817381,-1.98315,0.58587,2.67093, +-0.504324,0.853283,-0.817319,-1.98301,0.585833,2.67106, +-0.504183,0.853417,-0.817259,-1.98288,0.585797,2.6712, +-0.504042,0.853552,-0.817199,-1.98275,0.585762,2.67133, +-0.5039,0.853687,-0.81714,-1.98261,0.585728,2.67147, +-0.503758,0.853823,-0.817081,-1.98247,0.585694,2.6716, +-0.503617,0.853958,-0.817022,-1.98234,0.585662,2.67174, +-0.503475,0.854094,-0.816964,-1.9822,0.58563,2.67187, +-0.503333,0.85423,-0.816906,-1.98207,0.585599,2.67201, +-0.50319,0.854366,-0.81685,-1.98193,0.58557,2.67214, +-0.503047,0.854504,-0.816794,-1.98179,0.585542,2.67228, +-0.502903,0.854643,-0.816739,-1.98165,0.585515,2.67242, +-0.502759,0.854782,-0.816685,-1.98152,0.585489,2.67256, +-0.502616,0.854921,-0.816632,-1.98138,0.585464,2.6727, +-0.502472,0.855061,-0.816579,-1.98124,0.585439,2.67284, +-0.502328,0.8552,-0.816527,-1.9811,0.585415,2.67298, +-0.502184,0.855341,-0.816475,-1.98096,0.585393,2.67312, +-0.502039,0.855482,-0.816425,-1.98082,0.585371,2.67326, +-0.501894,0.855624,-0.816376,-1.98067,0.585351,2.6734, +-0.501748,0.855766,-0.816328,-1.98053,0.585332,2.67354, +-0.501603,0.855909,-0.81628,-1.98039,0.585314,2.67369, +-0.501457,0.856052,-0.816234,-1.98024,0.585297,2.67383, +-0.501311,0.856195,-0.816187,-1.9801,0.58528,2.67397, +-0.501166,0.856339,-0.816141,-1.97996,0.585264,2.67412, +-0.50102,0.856483,-0.816097,-1.97981,0.585249,2.67426, +-0.500873,0.856627,-0.816053,-1.97967,0.585236,2.6744, +-0.500726,0.856772,-0.81601,-1.97952,0.585224,2.67455, +-0.50058,0.856918,-0.815969,-1.97938,0.585213,2.6747, +-0.500433,0.857064,-0.815928,-1.97923,0.585203,2.67484, +-0.500286,0.85721,-0.815888,-1.97909,0.585193,2.67499, +-0.50014,0.857356,-0.815849,-1.97894,0.585184,2.67513, +-0.499993,0.857502,-0.815811,-1.9788,0.585176,2.67528, +-0.499846,0.857648,-0.815773,-1.97865,0.585169,2.67543, +-0.499699,0.857795,-0.815737,-1.9785,0.585164,2.67557, +-0.499551,0.857943,-0.815702,-1.97835,0.585159,2.67572, +-0.499404,0.858091,-0.815668,-1.97821,0.585156,2.67587, +-0.499257,0.858239,-0.815635,-1.97806,0.585154,2.67602, +-0.49911,0.858388,-0.815603,-1.97791,0.585152,2.67617, +-0.498962,0.858536,-0.815571,-1.97776,0.585151,2.67631, +-0.498815,0.858684,-0.81554,-1.97761,0.58515,2.67646, +-0.498668,0.858832,-0.81551,-1.97746,0.585151,2.67661, +-0.498521,0.858981,-0.815481,-1.97732,0.585153,2.67676, +-0.498374,0.85913,-0.815454,-1.97717,0.585156,2.67691, +-0.498226,0.85928,-0.815427,-1.97702,0.58516,2.67706, +-0.498079,0.85943,-0.815402,-1.97687,0.585165,2.67721, +-0.497932,0.85958,-0.815378,-1.97672,0.585171,2.67736, +-0.497785,0.859729,-0.815354,-1.97657,0.585178,2.67751, +-0.497638,0.859879,-0.81533,-1.97642,0.585185,2.67766, +-0.497492,0.860028,-0.815308,-1.97627,0.585194,2.67781, +-0.497345,0.860178,-0.815287,-1.97612,0.585204,2.67796, +-0.497199,0.860329,-0.815268,-1.97597,0.585215,2.67811, +-0.497052,0.86048,-0.815249,-1.97582,0.585227,2.67826, +-0.496906,0.860631,-0.815232,-1.97567,0.585241,2.67841, +-0.496759,0.860781,-0.815215,-1.97552,0.585256,2.67856, +-0.496613,0.860932,-0.815199,-1.97537,0.585272,2.67871, +-0.496468,0.861082,-0.815184,-1.97522,0.585289,2.67886, +-0.496322,0.861232,-0.81517,-1.97506,0.585307,2.67901, +-0.496177,0.861383,-0.815157,-1.97491,0.585326,2.67916, +-0.496032,0.861534,-0.815145,-1.97476,0.585347,2.67931, +-0.495887,0.861685,-0.815135,-1.97461,0.58537,2.67946, +-0.495742,0.861836,-0.815126,-1.97446,0.585394,2.67961, +-0.495597,0.861987,-0.815117,-1.97431,0.585419,2.67977, +-0.495452,0.862138,-0.815109,-1.97416,0.585446,2.67992, +-0.495308,0.862288,-0.815102,-1.97401,0.585473,2.68007, +-0.495164,0.862438,-0.815095,-1.97386,0.585502,2.68022, +-0.495021,0.862589,-0.81509,-1.97371,0.585532,2.68037, +-0.494878,0.862739,-0.815087,-1.97356,0.585564,2.68052, +-0.494734,0.86289,-0.815084,-1.97341,0.585598,2.68067, +-0.494591,0.863041,-0.815083,-1.97326,0.585633,2.68082, +-0.494448,0.863192,-0.815082,-1.97311,0.58567,2.68097, +-0.494306,0.863342,-0.815081,-1.97296,0.585708,2.68112, +-0.494163,0.863491,-0.815082,-1.97281,0.585747,2.68127, +-0.494022,0.863641,-0.815083,-1.97266,0.585788,2.68142, +-0.493881,0.86379,-0.815086,-1.97251,0.58583,2.68157, +-0.493741,0.86394,-0.81509,-1.97236,0.585874,2.68172, +-0.4936,0.86409,-0.815095,-1.97221,0.585921,2.68187, +-0.49346,0.86424,-0.815102,-1.97206,0.585968,2.68202, +-0.49332,0.864389,-0.815109,-1.97191,0.586018,2.68217, +-0.49318,0.864538,-0.815117,-1.97176,0.586068,2.68232, +-0.49304,0.864687,-0.815126,-1.97161,0.58612,2.68246, +-0.492902,0.864835,-0.815135,-1.97146,0.586174,2.68261, +-0.492764,0.864983,-0.815146,-1.97131,0.586229,2.68276, +-0.492626,0.865131,-0.815159,-1.97117,0.586287,2.68291, +-0.492489,0.86528,-0.815174,-1.97102,0.586346,2.68306, +-0.492352,0.865428,-0.815189,-1.97087,0.586407,2.68321, +-0.492216,0.865576,-0.815206,-1.97072,0.58647,2.68335, +-0.492079,0.865722,-0.815224,-1.97057,0.586535,2.6835, +-0.491942,0.865869,-0.815242,-1.97043,0.5866,2.68365, +-0.491805,0.866015,-0.815262,-1.97028,0.586668,2.68379, +-0.491668,0.866161,-0.815284,-1.97014,0.586738,2.68394, +-0.491531,0.866307,-0.815308,-1.96999,0.586809,2.68409, +-0.491393,0.866453,-0.815333,-1.96984,0.586883,2.68423, +-0.491256,0.866599,-0.81536,-1.9697,0.586959,2.68438, +-0.49112,0.866744,-0.815388,-1.96955,0.587037,2.68452, +-0.490984,0.866888,-0.815417,-1.96941,0.587116,2.68467, +-0.490848,0.867031,-0.815447,-1.96927,0.587196,2.68481, +-0.490713,0.867175,-0.815479,-1.96912,0.587279,2.68495, +-0.490578,0.867318,-0.815513,-1.96898,0.587364,2.6851, +-0.490443,0.867461,-0.815549,-1.96884,0.587451,2.68524, +-0.490308,0.867604,-0.815586,-1.96869,0.58754,2.68538, +-0.490175,0.867746,-0.815626,-1.96855,0.587631,2.68552, +-0.490042,0.867887,-0.815666,-1.96841,0.587723,2.68567, +-0.489911,0.868027,-0.815708,-1.96827,0.587817,2.68581, +-0.48978,0.868167,-0.815752,-1.96813,0.587912,2.68595, +-0.48965,0.868306,-0.815797,-1.96799,0.588009,2.68608, +-0.489521,0.868445,-0.815844,-1.96785,0.588108,2.68622, +-0.489392,0.868583,-0.815893,-1.96771,0.588209,2.68636, +-0.489265,0.868721,-0.815944,-1.96758,0.588311,2.6865, +-0.489138,0.868858,-0.815996,-1.96744,0.588414,2.68664, +-0.489013,0.868993,-0.81605,-1.9673,0.588519,2.68677, +-0.48889,0.869128,-0.816105,-1.96717,0.588624,2.68691, +-0.488768,0.869261,-0.816162,-1.96704,0.588731,2.68704, +-0.488647,0.869394,-0.81622,-1.9669,0.588838,2.68717, +-0.488527,0.869526,-0.81628,-1.96677,0.588947,2.6873, +-0.488409,0.869657,-0.816342,-1.96664,0.589058,2.68744, +-0.488291,0.869788,-0.816406,-1.96651,0.58917,2.68757, +-0.488175,0.869918,-0.816471,-1.96638,0.589282,2.6877, +-0.48806,0.870046,-0.816538,-1.96625,0.589395,2.68782, +-0.487947,0.870173,-0.816606,-1.96612,0.589509,2.68795, +-0.487836,0.870298,-0.816676,-1.966,0.589623,2.68808, +-0.487727,0.870423,-0.816747,-1.96587,0.589739,2.6882, +-0.487618,0.870546,-0.81682,-1.96575,0.589855,2.68832, +-0.487511,0.870669,-0.816894,-1.96563,0.589973,2.68845, +-0.487404,0.870791,-0.816971,-1.96551,0.590091,2.68857, +-0.487299,0.870912,-0.817049,-1.96539,0.59021,2.68869, +-0.487196,0.871032,-0.817128,-1.96527,0.59033,2.68881, +-0.487095,0.871149,-0.817208,-1.96515,0.59045,2.68893, +-0.486995,0.871266,-0.817289,-1.96503,0.59057,2.68904, +-0.486899,0.871381,-0.817372,-1.96492,0.590691,2.68916, +-0.486804,0.871496,-0.817456,-1.9648,0.590813,2.68927, +-0.486713,0.871609,-0.817543,-1.96469,0.590936,2.68939, +-0.486625,0.871722,-0.81763,-1.96458,0.59106,2.6895, +-0.48654,0.871834,-0.817719,-1.96446,0.591184,2.68961, +-0.486459,0.871944,-0.817809,-1.96435,0.591308,2.68972, +-0.48638,0.872052,-0.8179,-1.96425,0.591433,2.68983, +-0.486304,0.872159,-0.817992,-1.96414,0.591558,2.68994, +-0.48623,0.872265,-0.818085,-1.96403,0.591683,2.69004, +-0.486159,0.87237,-0.818179,-1.96393,0.591809,2.69015, +-0.486089,0.872474,-0.818275,-1.96382,0.591937,2.69025, +-0.486022,0.872577,-0.818372,-1.96372,0.592064,2.69036, +-0.485955,0.87268,-0.818471,-1.96362,0.592193,2.69046, +-0.48589,0.87278,-0.81857,-1.96352,0.592321,2.69056, +-0.485826,0.872879,-0.81867,-1.96342,0.59245,2.69066, +-0.485763,0.872976,-0.81877,-1.96332,0.592579,2.69075, +-0.485701,0.873071,-0.818872,-1.96323,0.592708,2.69085, +-0.485641,0.873164,-0.818975,-1.96313,0.592838,2.69094, +-0.485581,0.873254,-0.819079,-1.96304,0.592969,2.69103, +-0.485521,0.87334,-0.819185,-1.96296,0.5931,2.69112, +-0.485461,0.873424,-0.819291,-1.96287,0.593232,2.6912, +-0.485402,0.873505,-0.819398,-1.96279,0.593364,2.69128, +-0.485343,0.873582,-0.819506,-1.96271,0.593496,2.69136, +-0.485283,0.873657,-0.819614,-1.96264,0.593628,2.69144, +-0.485225,0.87373,-0.819723,-1.96257,0.593761,2.69151, +-0.485167,0.873801,-0.819834,-1.9625,0.593894,2.69158, +-0.48511,0.873869,-0.819945,-1.96243,0.594028,2.69165, +-0.485054,0.873936,-0.820058,-1.96236,0.594163,2.69172, +-0.484999,0.874002,-0.820172,-1.9623,0.594298,2.69178, +-0.484945,0.874066,-0.820286,-1.96223,0.594434,2.69185, +-0.484891,0.87413,-0.8204,-1.96217,0.594569,2.69191, +-0.484837,0.874192,-0.820516,-1.9621,0.594704,2.69197, +-0.484785,0.874254,-0.820631,-1.96204,0.59484,2.69203, +-0.484733,0.874315,-0.820748,-1.96198,0.594977,2.69209, +-0.484683,0.874375,-0.820867,-1.96192,0.595114,2.69215, +-0.484634,0.874435,-0.820986,-1.96186,0.595252,2.69221, +-0.484585,0.874495,-0.821106,-1.9618,0.59539,2.69227, +-0.484537,0.874555,-0.821227,-1.96174,0.595528,2.69233, +-0.48449,0.874614,-0.821348,-1.96168,0.595667,2.69239, +-0.484443,0.874674,-0.821469,-1.96162,0.595805,2.69245, +-0.484396,0.874733,-0.821591,-1.96156,0.595944,2.69251, +-0.484351,0.874792,-0.821715,-1.96151,0.596083,2.69257, +-0.484307,0.874849,-0.821839,-1.96145,0.596223,2.69263, +-0.484264,0.874905,-0.821965,-1.96139,0.596364,2.69268, +-0.484222,0.874961,-0.822091,-1.96134,0.596505,2.69274, +-0.48418,0.875017,-0.822218,-1.96128,0.596646,2.69279, +-0.48414,0.875072,-0.822344,-1.96123,0.596787,2.69285, +-0.4841,0.875127,-0.822472,-1.96117,0.596928,2.6929, +-0.48406,0.875181,-0.8226,-1.96112,0.59707,2.69296, +-0.484022,0.875234,-0.822729,-1.96106,0.597212,2.69301, +-0.483986,0.875286,-0.822859,-1.96101,0.597355,2.69306, +-0.48395,0.875337,-0.822991,-1.96096,0.597498,2.69312, +-0.483915,0.875387,-0.823122,-1.96091,0.597642,2.69317, +-0.483882,0.875437,-0.823255,-1.96086,0.597785,2.69321, +-0.483848,0.875486,-0.823387,-1.96081,0.597929,2.69326, +-0.483815,0.875535,-0.82352,-1.96076,0.598072,2.69331, +-0.483783,0.875583,-0.823654,-1.96071,0.598216,2.69336, +-0.483752,0.87563,-0.823789,-1.96067,0.598361,2.69341, +-0.483723,0.875675,-0.823924,-1.96062,0.598506,2.69345, +-0.483695,0.87572,-0.824061,-1.96058,0.598651,2.6935, +-0.483668,0.875764,-0.824198,-1.96053,0.598797,2.69354, +-0.483641,0.875807,-0.824335,-1.96049,0.598943,2.69358, +-0.483615,0.875849,-0.824473,-1.96045,0.599089,2.69363, +-0.48359,0.875891,-0.824611,-1.96041,0.599234,2.69367, +-0.483565,0.875933,-0.82475,-1.96036,0.59938,2.69371, +-0.483542,0.875973,-0.824889,-1.96032,0.599526,2.69375, +-0.483521,0.876012,-0.82503,-1.96029,0.599673,2.69379, +-0.4835,0.876049,-0.825171,-1.96025,0.59982,2.69383, +-0.483481,0.876086,-0.825312,-1.96021,0.599966,2.69386, +-0.483462,0.876122,-0.825454,-1.96018,0.600113,2.6939, +-0.483443,0.876157,-0.825596,-1.96014,0.600259,2.69394, +-0.483426,0.876192,-0.825738,-1.9601,0.600406,2.69397, +-0.483409,0.876226,-0.82588,-1.96007,0.600553,2.694, +-0.483394,0.876259,-0.826023,-1.96004,0.600699,2.69404, +-0.48338,0.87629,-0.826167,-1.96001,0.600846,2.69407, +-0.483367,0.87632,-0.826312,-1.95998,0.600993,2.6941, +-0.483355,0.87635,-0.826457,-1.95995,0.601139,2.69413, +-0.483344,0.876378,-0.826602,-1.95992,0.601286,2.69416, +-0.483334,0.876406,-0.826747,-1.95989,0.601433,2.69418, +-0.483324,0.876433,-0.826892,-1.95986,0.601579,2.69421, +-0.483315,0.87646,-0.827037,-1.95984,0.601725,2.69424, +-0.483308,0.876485,-0.827183,-1.95981,0.601871,2.69426, +-0.483301,0.876508,-0.827329,-1.95979,0.602017,2.69429, +-0.483296,0.876531,-0.827477,-1.95977,0.602164,2.69431, +-0.483292,0.876552,-0.827624,-1.95975,0.60231,2.69433, +-0.483289,0.876573,-0.827771,-1.95972,0.602456,2.69435, +-0.483286,0.876593,-0.827919,-1.9597,0.602602,2.69437, +-0.483284,0.876613,-0.828066,-1.95968,0.602747,2.69439, +-0.483282,0.876631,-0.828213,-1.95967,0.602893,2.69441, +-0.483282,0.876648,-0.828361,-1.95965,0.603038,2.69443, +-0.483284,0.876664,-0.82851,-1.95963,0.603183,2.69444, +-0.483286,0.876679,-0.828659,-1.95962,0.603327,2.69446, +-0.483289,0.876692,-0.828808,-1.9596,0.603472,2.69447, +-0.483294,0.876705,-0.828958,-1.95959,0.603617,2.69448, +-0.483298,0.876718,-0.829107,-1.95958,0.603762,2.6945, +-0.483303,0.876729,-0.829255,-1.95957,0.603906,2.69451, +-0.48331,0.87674,-0.829405,-1.95956,0.60405,2.69452, +-0.483317,0.876749,-0.829554,-1.95955,0.604193,2.69453, +-0.483326,0.876757,-0.829704,-1.95954,0.604336,2.69454, +-0.483336,0.876764,-0.829854,-1.95953,0.60448,2.69454, +-0.483348,0.87677,-0.830005,-1.95953,0.604623,2.69455, +-0.48336,0.876775,-0.830155,-1.95952,0.604766,2.69455, +-0.483373,0.876779,-0.830305,-1.95952,0.604909,2.69456, +-0.483388,0.876783,-0.830455,-1.95951,0.605052,2.69456, +-0.483403,0.876786,-0.830605,-1.95951,0.605194,2.69456, +-0.48342,0.876787,-0.830756,-1.95951,0.605336,2.69457, +-0.483438,0.876788,-0.830906,-1.95951,0.605477,2.69457, +-0.483458,0.876787,-0.831058,-1.95951,0.605618,2.69456, +-0.48348,0.876785,-0.831209,-1.95951,0.605759,2.69456, +-0.483502,0.876782,-0.83136,-1.95951,0.605899,2.69456, +-0.483525,0.876779,-0.83151,-1.95952,0.60604,2.69456, +-0.48355,0.876776,-0.831661,-1.95952,0.60618,2.69455, +-0.483576,0.876771,-0.831811,-1.95953,0.60632,2.69455, +-0.483603,0.876765,-0.831962,-1.95953,0.606459,2.69454, +-0.483632,0.876758,-0.832113,-1.95954,0.606598,2.69454, +-0.483663,0.876749,-0.832264,-1.95955,0.606736,2.69453, +-0.483695,0.87674,-0.832415,-1.95956,0.606874,2.69452, +-0.483728,0.876729,-0.832566,-1.95957,0.607012,2.69451, +-0.483763,0.876717,-0.832717,-1.95958,0.60715,2.6945, +-0.483799,0.876705,-0.832867,-1.95959,0.607287,2.69448, +-0.483836,0.876691,-0.833017,-1.95961,0.607424,2.69447, +-0.483875,0.876676,-0.833168,-1.95962,0.607561,2.69445, +-0.483916,0.876659,-0.833319,-1.95964,0.607696,2.69444, +-0.483958,0.876641,-0.833469,-1.95966,0.607831,2.69442, +-0.484003,0.876621,-0.83362,-1.95968,0.607965,2.6944, +-0.484048,0.8766,-0.833771,-1.9597,0.6081,2.69438, +-0.484095,0.876578,-0.83392,-1.95972,0.608234,2.69436, +-0.484143,0.876555,-0.83407,-1.95974,0.608368,2.69433, +-0.484193,0.876531,-0.834219,-1.95977,0.608501,2.69431, +-0.484244,0.876505,-0.834369,-1.95979,0.608634,2.69428, +-0.484298,0.876478,-0.834519,-1.95982,0.608766,2.69426, +-0.484353,0.876449,-0.834668,-1.95985,0.608896,2.69423, +-0.48441,0.876418,-0.834818,-1.95988,0.609027,2.6942, +-0.484469,0.876386,-0.834967,-1.95991,0.609157,2.69416, +-0.484529,0.876353,-0.835116,-1.95994,0.609287,2.69413, +-0.48459,0.876318,-0.835264,-1.95998,0.609416,2.6941, +-0.484653,0.876282,-0.835412,-1.96001,0.609545,2.69406, +-0.484718,0.876245,-0.83556,-1.96005,0.609673,2.69402, +-0.484785,0.876205,-0.835708,-1.96009,0.609801,2.69398, +-0.484855,0.876163,-0.835856,-1.96013,0.609927,2.69394, +-0.484926,0.87612,-0.836003,-1.96018,0.610053,2.6939, +-0.484998,0.876076,-0.836151,-1.96022,0.610178,2.69385, +-0.485072,0.87603,-0.836297,-1.96027,0.610303,2.69381, +-0.485148,0.875982,-0.836443,-1.96031,0.610427,2.69376, +-0.485225,0.875933,-0.836589,-1.96036,0.610551,2.69371, +-0.485305,0.875883,-0.836735,-1.96041,0.610674,2.69366, +-0.485386,0.87583,-0.83688,-1.96047,0.610796,2.69361, +-0.48547,0.875775,-0.837026,-1.96052,0.610917,2.69355, +-0.485556,0.875718,-0.837171,-1.96058,0.611037,2.6935, +-0.485644,0.875659,-0.837316,-1.96064,0.611157,2.69344, +-0.485733,0.875599,-0.837459,-1.9607,0.611277,2.69338, +-0.485823,0.875538,-0.837602,-1.96076,0.611397,2.69332, +-0.485916,0.875474,-0.837743,-1.96082,0.611517,2.69325, +-0.486011,0.875409,-0.837883,-1.96089,0.611638,2.69319, +-0.486108,0.875341,-0.838021,-1.96096,0.611759,2.69312, +-0.486206,0.875272,-0.838157,-1.96103,0.61188,2.69305, +-0.486306,0.875201,-0.838293,-1.9611,0.612001,2.69298, +-0.486407,0.875128,-0.838428,-1.96117,0.612122,2.69291, +-0.486509,0.875054,-0.838562,-1.96124,0.612242,2.69283, +-0.486613,0.874979,-0.838696,-1.96132,0.612361,2.69276, +-0.486718,0.874902,-0.838828,-1.9614,0.61248,2.69268, +-0.486824,0.874823,-0.838959,-1.96147,0.612599,2.6926, +-0.486932,0.874742,-0.839089,-1.96156,0.612717,2.69252, +-0.487041,0.874659,-0.839217,-1.96164,0.612835,2.69244, +-0.487152,0.874575,-0.839344,-1.96172,0.612951,2.69235, +-0.487263,0.874489,-0.839469,-1.96181,0.613065,2.69227, +-0.487375,0.874403,-0.839594,-1.96189,0.613179,2.69218, +-0.487487,0.874315,-0.839718,-1.96198,0.61329,2.69209, +-0.487601,0.874226,-0.839841,-1.96207,0.613401,2.692, +-0.487716,0.874135,-0.839963,-1.96216,0.61351,2.69191, +-0.487832,0.874042,-0.840082,-1.96225,0.613618,2.69182, +-0.487949,0.873948,-0.840201,-1.96235,0.613725,2.69173, +-0.488067,0.873852,-0.840319,-1.96244,0.61383,2.69163, +-0.488185,0.873756,-0.840435,-1.96254,0.613932,2.69153, +-0.488304,0.873658,-0.840552,-1.96264,0.614033,2.69144, +-0.488423,0.87356,-0.840667,-1.96274,0.614131,2.69134, +-0.488543,0.87346,-0.840782,-1.96284,0.614226,2.69124, +-0.488664,0.873359,-0.840895,-1.96294,0.614318,2.69114, +-0.488786,0.873256,-0.841007,-1.96304,0.614406,2.69103, +-0.488909,0.873153,-0.841117,-1.96314,0.614491,2.69093, +-0.489032,0.873048,-0.841226,-1.96325,0.614573,2.69083, +-0.489156,0.872942,-0.841335,-1.96335,0.614651,2.69072, +-0.48928,0.872836,-0.841442,-1.96346,0.614727,2.69061, +-0.489404,0.872729,-0.841549,-1.96357,0.6148,2.69051, +-0.489529,0.872621,-0.841654,-1.96368,0.61487,2.6904, +-0.489654,0.872512,-0.841758,-1.96379,0.614938,2.69029, +-0.489781,0.872402,-0.841861,-1.9639,0.615004,2.69018, +-0.489908,0.87229,-0.841962,-1.96401,0.615068,2.69007, +-0.490036,0.872178,-0.842063,-1.96412,0.61513,2.68996, +-0.490164,0.872065,-0.842162,-1.96423,0.615191,2.68984, +-0.490292,0.871952,-0.842261,-1.96435,0.615251,2.68973, +-0.49042,0.871838,-0.84236,-1.96446,0.61531,2.68962, +-0.490549,0.871723,-0.842457,-1.96457,0.615368,2.6895, +-0.490678,0.871607,-0.842553,-1.96469,0.615424,2.68939, +-0.490809,0.871491,-0.842648,-1.96481,0.615479,2.68927, +-0.49094,0.871373,-0.842741,-1.96492,0.615534,2.68915, +-0.491071,0.871254,-0.842834,-1.96504,0.615588,2.68903, +-0.491203,0.871135,-0.842926,-1.96516,0.615642,2.68891, +-0.491334,0.871016,-0.843017,-1.96528,0.615696,2.68879, +-0.491466,0.870897,-0.843107,-1.9654,0.61575,2.68868, +-0.491598,0.870776,-0.843196,-1.96552,0.615804,2.68855, +-0.491731,0.870655,-0.843285,-1.96564,0.615856,2.68843, +-0.491865,0.870533,-0.843371,-1.96576,0.615908,2.68831, +-0.491999,0.87041,-0.843457,-1.96589,0.615959,2.68819, +-0.492134,0.870286,-0.843541,-1.96601,0.616008,2.68806, +-0.492269,0.870162,-0.843625,-1.96614,0.616057,2.68794, +-0.492404,0.870038,-0.843709,-1.96626,0.616105,2.68782, +-0.492538,0.869913,-0.843791,-1.96638,0.616153,2.68769, +-0.492674,0.869787,-0.843873,-1.96651,0.616199,2.68757, +-0.49281,0.86966,-0.843954,-1.96664,0.616245,2.68744, +-0.492947,0.869533,-0.844033,-1.96676,0.616289,2.68731, +-0.493084,0.869405,-0.844111,-1.96689,0.616332,2.68718, +-0.493222,0.869276,-0.844188,-1.96702,0.616374,2.68705, +-0.49336,0.869146,-0.844264,-1.96715,0.616416,2.68692, +-0.493497,0.869017,-0.84434,-1.96728,0.616458,2.6868, +-0.493635,0.868888,-0.844415,-1.96741,0.616499,2.68667, +-0.493774,0.868757,-0.844489,-1.96754,0.616539,2.68654, +-0.493912,0.868626,-0.844562,-1.96767,0.616578,2.6864, +-0.494052,0.868495,-0.844633,-1.9678,0.616616,2.68627, +-0.494192,0.868362,-0.844703,-1.96794,0.616653,2.68614, +-0.494333,0.868228,-0.844773,-1.96807,0.616688,2.68601, +-0.494474,0.868095,-0.844841,-1.9682,0.616723,2.68587, +-0.494614,0.867961,-0.844909,-1.96834,0.616758,2.68574, +-0.494755,0.867826,-0.844977,-1.96847,0.616792,2.6856, +-0.494896,0.867691,-0.845043,-1.96861,0.616824,2.68547, +-0.495037,0.867556,-0.845109,-1.96874,0.616856,2.68533, +-0.49518,0.867419,-0.845173,-1.96888,0.616886,2.6852, +-0.495322,0.867282,-0.845235,-1.96902,0.616915,2.68506, +-0.495466,0.867144,-0.845297,-1.96915,0.616943,2.68492, +-0.495609,0.867006,-0.845358,-1.96929,0.616971,2.68478, +-0.495752,0.866868,-0.845419,-1.96943,0.616998,2.68465, +-0.495895,0.86673,-0.845478,-1.96957,0.617024,2.68451, +-0.496038,0.866591,-0.845537,-1.96971,0.61705,2.68437, +-0.496182,0.866452,-0.845595,-1.96985,0.617074,2.68423, +-0.496326,0.866312,-0.845651,-1.96999,0.617097,2.68409, +-0.496471,0.866171,-0.845706,-1.97013,0.617118,2.68395, +-0.496616,0.86603,-0.84576,-1.97027,0.617139,2.68381, +-0.496761,0.865888,-0.845813,-1.97041,0.617159,2.68367, +-0.496905,0.865747,-0.845866,-1.97055,0.617179,2.68352, +-0.49705,0.865605,-0.845918,-1.97069,0.617197,2.68338, +-0.497195,0.865463,-0.845969,-1.97083,0.617215,2.68324, +-0.49734,0.86532,-0.846019,-1.97098,0.617232,2.6831, +-0.497486,0.865177,-0.846067,-1.97112,0.617247,2.68295, +-0.497633,0.865033,-0.846114,-1.97127,0.617261,2.68281, +-0.497779,0.864888,-0.846161,-1.97141,0.617274,2.68267, +-0.497925,0.864744,-0.846206,-1.97155,0.617286,2.68252, +-0.498071,0.864599,-0.846251,-1.9717,0.617298,2.68238, +-0.498217,0.864454,-0.846295,-1.97184,0.617309,2.68223, +-0.498363,0.864309,-0.846338,-1.97199,0.617319,2.68209, +-0.49851,0.864164,-0.84638,-1.97213,0.617328,2.68194, +-0.498657,0.864018,-0.846421,-1.97228,0.617335,2.6818, +-0.498804,0.863871,-0.84646,-1.97243,0.617342,2.68165, +-0.49895,0.863724,-0.846498,-1.97257,0.617347,2.6815, +-0.499097,0.863577,-0.846535,-1.97272,0.617352,2.68136, +-0.499244,0.86343,-0.846572,-1.97287,0.617356,2.68121, +-0.499391,0.863283,-0.846608,-1.97301,0.61736,2.68106, +-0.499538,0.863136,-0.846643,-1.97316,0.617362,2.68091, +-0.499685,0.862989,-0.846677,-1.97331,0.617364,2.68077, +-0.499832,0.86284,-0.846709,-1.97346,0.617364,2.68062, +-0.499978,0.862692,-0.846741,-1.97361,0.617363,2.68047, +-0.500125,0.862543,-0.846771,-1.97375,0.617361,2.68032, +-0.500272,0.862394,-0.8468,-1.9739,0.617358,2.68017, +-0.500419,0.862245,-0.846829,-1.97405,0.617355,2.68002, +-0.500566,0.862097,-0.846857,-1.9742,0.617351,2.67988, +-0.500712,0.861948,-0.846884,-1.97435,0.617346,2.67973, +-0.500859,0.861799,-0.846909,-1.9745,0.61734,2.67958, +-0.501005,0.861649,-0.846934,-1.97465,0.617333,2.67943, +-0.501152,0.861499,-0.846957,-1.9748,0.617325,2.67928, +-0.501298,0.861349,-0.846979,-1.97495,0.617315,2.67913, +-0.501445,0.861199,-0.847,-1.9751,0.617304,2.67898, +-0.501591,0.861049,-0.847021,-1.97525,0.617293,2.67883, +-0.501737,0.8609,-0.84704,-1.9754,0.61728,2.67868, +-0.501883,0.86075,-0.847059,-1.97555,0.617267,2.67853, +-0.502028,0.8606,-0.847077,-1.9757,0.617252,2.67838, +-0.502174,0.860449,-0.847093,-1.97585,0.617235,2.67823, +-0.502319,0.860299,-0.847108,-1.976,0.617217,2.67808, +-0.502465,0.860148,-0.847121,-1.97615,0.617198,2.67793, +-0.50261,0.859997,-0.847134,-1.9763,0.617177,2.67778, +-0.502756,0.859847,-0.847147,-1.97645,0.617156,2.67763, +-0.5029,0.859697,-0.847159,-1.9766,0.617133,2.67748, +-0.503045,0.859547,-0.847169,-1.97675,0.61711,2.67733, +-0.503189,0.859397,-0.847179,-1.9769,0.617085,2.67717, +-0.503333,0.859246,-0.847186,-1.97705,0.617058,2.67702, +-0.503477,0.859095,-0.847193,-1.9772,0.617029,2.67687, +-0.50362,0.858944,-0.847199,-1.97735,0.616999,2.67672, +-0.503764,0.858794,-0.847204,-1.9775,0.616968,2.67657, +-0.503908,0.858644,-0.847208,-1.97765,0.616935,2.67642, +-0.504051,0.858494,-0.847212,-1.9778,0.616902,2.67627, +-0.504193,0.858344,-0.847215,-1.97795,0.616867,2.67612, +-0.504335,0.858194,-0.847216,-1.9781,0.61683,2.67597, +-0.504477,0.858044,-0.847216,-1.97825,0.616792,2.67582, +-0.504618,0.857893,-0.847215,-1.9784,0.616752,2.67567, +-0.50476,0.857743,-0.847213,-1.97855,0.61671,2.67552, +-0.504902,0.857593,-0.84721,-1.9787,0.616666,2.67537, +-0.505043,0.857444,-0.847206,-1.97885,0.616622,2.67522, +-0.505184,0.857295,-0.847202,-1.979,0.616576,2.67507, +-0.505324,0.857146,-0.847197,-1.97915,0.616529,2.67492, +-0.505463,0.856997,-0.847191,-1.9793,0.61648,2.67478, +-0.505602,0.856848,-0.847183,-1.97945,0.616429,2.67463, +-0.505741,0.856699,-0.847174,-1.9796,0.616376,2.67448, +-0.50588,0.85655,-0.847163,-1.97975,0.616321,2.67433, +-0.506018,0.856401,-0.847152,-1.9799,0.616265,2.67418, +-0.506156,0.856253,-0.847139,-1.98004,0.616207,2.67403, +-0.506294,0.856106,-0.847126,-1.98019,0.616148,2.67388, +-0.506431,0.855959,-0.847112,-1.98034,0.616087,2.67374, +-0.506567,0.855812,-0.847095,-1.98049,0.616025,2.67359, +-0.506702,0.855664,-0.847078,-1.98063,0.61596,2.67344, +-0.506837,0.855517,-0.847058,-1.98078,0.615893,2.6733, +-0.506972,0.85537,-0.847037,-1.98093,0.615824,2.67315, +-0.507106,0.855224,-0.847015,-1.98107,0.615754,2.673, +-0.507241,0.855078,-0.846992,-1.98122,0.615682,2.67286, +-0.507375,0.854933,-0.846968,-1.98136,0.615609,2.67271, +-0.507508,0.854789,-0.846942,-1.98151,0.615534,2.67257, +-0.50764,0.854644,-0.846915,-1.98165,0.615456,2.67242, +-0.507771,0.854499,-0.846885,-1.9818,0.615377,2.67228, +-0.507902,0.854355,-0.846854,-1.98194,0.615295,2.67213, +-0.508032,0.854211,-0.846821,-1.98209,0.615211,2.67199, +-0.508163,0.854067,-0.846787,-1.98223,0.615126,2.67185, +-0.508293,0.853925,-0.846752,-1.98237,0.615039,2.6717, +-0.508422,0.853783,-0.846715,-1.98251,0.61495,2.67156, +-0.50855,0.853644,-0.846677,-1.98265,0.614859,2.67142, +-0.508678,0.853505,-0.846637,-1.98279,0.614766,2.67128, +-0.508804,0.853369,-0.846594,-1.98293,0.614672,2.67115, +-0.508929,0.853234,-0.84655,-1.98306,0.614575,2.67101, +-0.509051,0.8531,-0.846504,-1.9832,0.614477,2.67088, +-0.509172,0.852967,-0.846457,-1.98333,0.614378,2.67075, +-0.509292,0.852835,-0.846408,-1.98346,0.614277,2.67061, +-0.509409,0.852704,-0.846358,-1.98359,0.614176,2.67048, +-0.509524,0.852574,-0.846307,-1.98372,0.614073,2.67035, +-0.509638,0.852446,-0.846253,-1.98385,0.613968,2.67022, +-0.509749,0.85232,-0.846198,-1.98398,0.613862,2.6701, +-0.50986,0.852194,-0.84614,-1.9841,0.613754,2.66997, +-0.509969,0.85207,-0.846081,-1.98423,0.613646,2.66985, +-0.510077,0.851947,-0.846021,-1.98435,0.613536,2.66973, +-0.510184,0.851825,-0.845959,-1.98447,0.613426,2.6696, +-0.510291,0.851703,-0.845896,-1.98459,0.613316,2.66948, +-0.510396,0.851583,-0.845832,-1.98471,0.613204,2.66936, +-0.5105,0.851464,-0.845765,-1.98483,0.613091,2.66924, +-0.510602,0.851346,-0.845696,-1.98495,0.612976,2.66913, +-0.510703,0.85123,-0.845626,-1.98507,0.612861,2.66901, +-0.510802,0.851116,-0.845554,-1.98518,0.612745,2.66889, +-0.510901,0.851002,-0.845481,-1.9853,0.612628,2.66878, +-0.510999,0.850888,-0.845407,-1.98541,0.612511,2.66867, +-0.511096,0.850776,-0.845331,-1.98552,0.612393,2.66855, +-0.511192,0.850665,-0.845254,-1.98563,0.612275,2.66844, +-0.511286,0.850555,-0.845176,-1.98574,0.612155,2.66833, +-0.511379,0.850447,-0.845095,-1.98585,0.612035,2.66823, +-0.51147,0.85034,-0.845013,-1.98596,0.611914,2.66812, +-0.511561,0.850234,-0.844929,-1.98606,0.611792,2.66801, +-0.51165,0.850129,-0.844844,-1.98617,0.61167,2.66791, +-0.511739,0.850025,-0.844759,-1.98627,0.611547,2.6678, +-0.511827,0.849921,-0.844672,-1.98638,0.611425,2.6677, +-0.511914,0.849819,-0.844584,-1.98648,0.611301,2.6676, +-0.511999,0.849718,-0.844494,-1.98658,0.611177,2.6675, +-0.512083,0.849618,-0.844403,-1.98668,0.611052,2.6674, +-0.512165,0.84952,-0.84431,-1.98678,0.610926,2.6673, +-0.512247,0.849422,-0.844216,-1.98687,0.6108,2.6672, +-0.512327,0.849326,-0.844122,-1.98697,0.610674,2.6671, +-0.512407,0.84923,-0.844026,-1.98707,0.610547,2.66701, +-0.512486,0.849135,-0.84393,-1.98716,0.61042,2.66691, +-0.512564,0.84904,-0.843832,-1.98726,0.610293,2.66682, +-0.512641,0.848948,-0.843733,-1.98735,0.610165,2.66673, +-0.512716,0.848856,-0.843633,-1.98744,0.610036,2.66663, +-0.51279,0.848766,-0.843532,-1.98753,0.609906,2.66654, +-0.512863,0.848677,-0.843429,-1.98762,0.609776,2.66645, +-0.512935,0.848589,-0.843326,-1.98771,0.609646,2.66637, +-0.513006,0.848501,-0.843222,-1.9878,0.609515,2.66628, +-0.513077,0.848414,-0.843117,-1.98788,0.609385,2.66619, +-0.513147,0.848328,-0.843012,-1.98797,0.609254,2.66611, +-0.513215,0.848243,-0.842905,-1.98805,0.609122,2.66602, +-0.513282,0.848159,-0.842797,-1.98814,0.60899,2.66594, +-0.513347,0.848077,-0.842688,-1.98822,0.608857,2.66586, +-0.513411,0.847996,-0.842578,-1.9883,0.608723,2.66577, +-0.513475,0.847915,-0.842467,-1.98838,0.60859,2.66569, +-0.513538,0.847836,-0.842356,-1.98846,0.608456,2.66561, +-0.513601,0.847756,-0.842244,-1.98854,0.608322,2.66553, +-0.513662,0.847678,-0.842132,-1.98862,0.608188,2.66546, +-0.513722,0.847601,-0.842018,-1.9887,0.608053,2.66538, +-0.51378,0.847525,-0.841903,-1.98877,0.607918,2.6653, +-0.513838,0.847451,-0.841787,-1.98885,0.607781,2.66523, +-0.513894,0.847377,-0.84167,-1.98892,0.607645,2.66516, +-0.51395,0.847304,-0.841553,-1.98899,0.607508,2.66508, +-0.514005,0.847232,-0.841435,-1.98906,0.607371,2.66501, +-0.514059,0.847161,-0.841317,-1.98914,0.607234,2.66494, +-0.514112,0.84709,-0.841197,-1.98921,0.607097,2.66487, +-0.514164,0.847021,-0.841077,-1.98928,0.606959,2.6648, +-0.514214,0.846953,-0.840956,-1.98934,0.60682,2.66473, +-0.514264,0.846886,-0.840833,-1.98941,0.606681,2.66466, +-0.514312,0.84682,-0.84071,-1.98948,0.606542,2.6646, +-0.514359,0.846755,-0.840586,-1.98954,0.606402,2.66453, +-0.514406,0.84669,-0.840461,-1.98961,0.606262,2.66447, +-0.514453,0.846627,-0.840336,-1.98967,0.606122,2.6644, +-0.514498,0.846564,-0.840209,-1.98973,0.605982,2.66434, +-0.514542,0.846502,-0.840082,-1.98979,0.605842,2.66428, +-0.514584,0.846442,-0.839954,-1.98986,0.6057,2.66422, +-0.514625,0.846383,-0.839825,-1.98991,0.605558,2.66416, +-0.514666,0.846325,-0.839696,-1.98997,0.605416,2.6641, +-0.514705,0.846267,-0.839567,-1.99003,0.605273,2.66405, +-0.514744,0.84621,-0.839437,-1.99009,0.605131,2.66399, +-0.514782,0.846154,-0.839308,-1.99014,0.604989,2.66393, +-0.51482,0.846099,-0.839178,-1.9902,0.604846,2.66388, +-0.514856,0.846045,-0.839047,-1.99025,0.604703,2.66382, +-0.51489,0.845992,-0.838915,-1.9903,0.604559,2.66377, +-0.514924,0.845941,-0.838782,-1.99036,0.604415,2.66372, +-0.514956,0.84589,-0.838649,-1.99041,0.604271,2.66367, +-0.514987,0.845841,-0.838515,-1.99046,0.604128,2.66362, +-0.515018,0.845792,-0.83838,-1.99051,0.603984,2.66357, +-0.515049,0.845743,-0.838245,-1.99055,0.60384,2.66352, +-0.515078,0.845696,-0.83811,-1.9906,0.603696,2.66347, +-0.515106,0.84565,-0.837973,-1.99065,0.603552,2.66343, +-0.515132,0.845605,-0.837836,-1.99069,0.603406,2.66338, +-0.515157,0.845562,-0.837697,-1.99073,0.603261,2.66334, +-0.515182,0.84552,-0.837558,-1.99078,0.603115,2.6633, +-0.515205,0.845478,-0.837419,-1.99082,0.602969,2.66326, +-0.515228,0.845437,-0.837279,-1.99086,0.602823,2.66321, +-0.51525,0.845396,-0.83714,-1.9909,0.602677,2.66317, +-0.515271,0.845357,-0.836999,-1.99094,0.602531,2.66313, +-0.515292,0.845318,-0.836858,-1.99098,0.602385,2.6631, +-0.51531,0.845281,-0.836716,-1.99102,0.602238,2.66306, +-0.515327,0.845246,-0.836574,-1.99105,0.602091,2.66302, +-0.515344,0.845211,-0.83643,-1.99109,0.601945,2.66299, +-0.515359,0.845177,-0.836287,-1.99112,0.601798,2.66296, +-0.515374,0.845144,-0.836144,-1.99115,0.601652,2.66292, +-0.515389,0.845112,-0.836,-1.99119,0.601505,2.66289, +-0.515402,0.84508,-0.835857,-1.99122,0.601359,2.66286, +-0.515414,0.84505,-0.835712,-1.99125,0.601212,2.66283, +-0.515425,0.845021,-0.835567,-1.99128,0.601066,2.6628, +-0.515434,0.844994,-0.835421,-1.9913,0.600919,2.66277, +-0.515442,0.844968,-0.835274,-1.99133,0.600773,2.66275, +-0.51545,0.844942,-0.835128,-1.99136,0.600627,2.66272, +-0.515457,0.844917,-0.834982,-1.99138,0.60048,2.6627, +-0.515463,0.844892,-0.834836,-1.9914,0.600335,2.66267, +-0.515469,0.844869,-0.834689,-1.99143,0.600189,2.66265, +-0.515473,0.844847,-0.834542,-1.99145,0.600043,2.66263, +-0.515476,0.844826,-0.834394,-1.99147,0.599897,2.6626, +-0.515478,0.844807,-0.834246,-1.99149,0.599751,2.66259, +-0.515478,0.844789,-0.834097,-1.99151,0.599605,2.66257, +-0.515478,0.844771,-0.833949,-1.99153,0.59946,2.66255, +-0.515478,0.844754,-0.833801,-1.99154,0.599314,2.66253, +-0.515477,0.844738,-0.833652,-1.99156,0.599169,2.66252, +-0.515475,0.844723,-0.833504,-1.99157,0.599024,2.6625, +-0.515472,0.844709,-0.833355,-1.99159,0.59888,2.66249, +-0.515467,0.844696,-0.833205,-1.9916,0.598736,2.66247, +-0.515461,0.844685,-0.833055,-1.99161,0.598591,2.66246, +-0.515454,0.844675,-0.832905,-1.99162,0.598447,2.66245, +-0.515446,0.844665,-0.832755,-1.99163,0.598302,2.66244, +-0.515438,0.844656,-0.832605,-1.99164,0.598158,2.66243, +-0.515429,0.844648,-0.832456,-1.99165,0.598014,2.66243, +-0.515418,0.844641,-0.832306,-1.99166,0.597871,2.66242, +-0.515406,0.844635,-0.832156,-1.99166,0.597728,2.66241, +-0.515393,0.844631,-0.832005,-1.99167,0.597586,2.66241, +-0.515378,0.844627,-0.831854,-1.99167,0.597444,2.66241, +-0.515362,0.844625,-0.831703,-1.99167,0.597301,2.6624, +-0.515345,0.844623,-0.831552,-1.99167,0.597159,2.6624, +-0.515327,0.844622,-0.831402,-1.99168,0.597017,2.6624, +-0.515308,0.844622,-0.831251,-1.99168,0.596875,2.6624, +-0.515288,0.844622,-0.831101,-1.99168,0.596734,2.6624, +-0.515267,0.844624,-0.83095,-1.99167,0.596594,2.6624, +-0.515243,0.844627,-0.830799,-1.99167,0.596454,2.66241, +-0.515218,0.844631,-0.830647,-1.99167,0.596314,2.66241, +-0.515192,0.844637,-0.830496,-1.99166,0.596174,2.66242, +-0.515164,0.844643,-0.830345,-1.99165,0.596035,2.66242, +-0.515136,0.84465,-0.830194,-1.99165,0.595895,2.66243, +-0.515106,0.844658,-0.830043,-1.99164,0.595756,2.66244, +-0.515075,0.844666,-0.829893,-1.99163,0.595617,2.66244, +-0.515042,0.844676,-0.829742,-1.99162,0.595479,2.66245, +-0.515007,0.844687,-0.829591,-1.99161,0.595342,2.66247, +-0.514971,0.8447,-0.829439,-1.9916,0.595205,2.66248, +-0.514933,0.844715,-0.829288,-1.99158,0.595069,2.66249, +-0.514894,0.84473,-0.829137,-1.99157,0.594932,2.66251, +-0.514853,0.844746,-0.828987,-1.99155,0.594796,2.66252, +-0.514812,0.844763,-0.828837,-1.99153,0.59466,2.66254, +-0.514769,0.844782,-0.828687,-1.99152,0.594525,2.66256, +-0.514724,0.844802,-0.828537,-1.9915,0.59439,2.66258, +-0.514677,0.844823,-0.828386,-1.99147,0.594256,2.6626, +-0.514628,0.844847,-0.828236,-1.99145,0.594123,2.66262, +-0.514578,0.844871,-0.828085,-1.99143,0.593991,2.66265, +-0.514526,0.844897,-0.827935,-1.9914,0.593858,2.66268, +-0.514473,0.844924,-0.827786,-1.99137,0.593726,2.6627, +-0.514418,0.844953,-0.827637,-1.99134,0.593594,2.66273, +-0.514362,0.844982,-0.827488,-1.99132,0.593463,2.66276, +-0.514304,0.845013,-0.827339,-1.99128,0.593332,2.66279, +-0.514244,0.845047,-0.82719,-1.99125,0.593202,2.66282, +-0.514182,0.845082,-0.827041,-1.99122,0.593073,2.66286, +-0.514118,0.845118,-0.826892,-1.99118,0.592945,2.6629, +-0.514052,0.845156,-0.826743,-1.99114,0.592817,2.66293, +-0.513986,0.845195,-0.826596,-1.9911,0.592689,2.66297, +-0.513917,0.845236,-0.826449,-1.99106,0.592562,2.66301, +-0.513847,0.845278,-0.826302,-1.99102,0.592435,2.66306, +-0.513775,0.845322,-0.826155,-1.99098,0.592309,2.6631, +-0.513701,0.845368,-0.826008,-1.99093,0.592185,2.66315, +-0.513624,0.845416,-0.825861,-1.99088,0.592061,2.66319, +-0.513546,0.845466,-0.825714,-1.99083,0.591938,2.66324, +-0.513466,0.845517,-0.825568,-1.99078,0.591815,2.66329, +-0.513385,0.845569,-0.825423,-1.99073,0.591693,2.66335, +-0.513302,0.845623,-0.825278,-1.99067,0.591571,2.6634, +-0.513217,0.845679,-0.825134,-1.99062,0.59145,2.66346, +-0.51313,0.845737,-0.824989,-1.99056,0.59133,2.66352, +-0.513041,0.845797,-0.824845,-1.9905,0.591211,2.66358, +-0.51295,0.845859,-0.824701,-1.99044,0.591094,2.66364, +-0.512857,0.845923,-0.824558,-1.99037,0.590978,2.6637, +-0.512763,0.845988,-0.824415,-1.99031,0.590862,2.66377, +-0.512667,0.846055,-0.824273,-1.99024,0.590748,2.66383, +-0.51257,0.846123,-0.824132,-1.99017,0.590634,2.6639, +-0.512471,0.846193,-0.823992,-1.9901,0.590522,2.66397, +-0.51237,0.846265,-0.823852,-1.99003,0.590412,2.66404, +-0.512267,0.846339,-0.823712,-1.98996,0.590303,2.66412, +-0.512163,0.846415,-0.823572,-1.98988,0.590195,2.66419, +-0.512058,0.846493,-0.823434,-1.9898,0.590089,2.66427, +-0.511951,0.846572,-0.823296,-1.98972,0.589984,2.66435, +-0.511844,0.846652,-0.82316,-1.98964,0.58988,2.66443, +-0.511736,0.846734,-0.823024,-1.98956,0.589777,2.66451, +-0.511626,0.846817,-0.82289,-1.98948,0.589675,2.6646, +-0.511515,0.846902,-0.822756,-1.98939,0.589575,2.66468, +-0.511403,0.846989,-0.822622,-1.98931,0.589477,2.66477, +-0.51129,0.847078,-0.822489,-1.98922,0.58938,2.66486, +-0.511175,0.847168,-0.822358,-1.98913,0.589284,2.66495, +-0.51106,0.847259,-0.822227,-1.98904,0.58919,2.66504, +-0.510945,0.847351,-0.822098,-1.98895,0.589096,2.66513, +-0.510829,0.847444,-0.82197,-1.98885,0.589003,2.66522, +-0.510712,0.847539,-0.821843,-1.98876,0.588911,2.66532, +-0.510594,0.847635,-0.821717,-1.98866,0.588821,2.66541, +-0.510474,0.847733,-0.821591,-1.98856,0.588733,2.66551, +-0.510354,0.847833,-0.821466,-1.98846,0.588646,2.66561, +-0.510233,0.847933,-0.821343,-1.98836,0.58856,2.66571, +-0.510112,0.848034,-0.82122,-1.98826,0.588475,2.66581, +-0.50999,0.848136,-0.8211,-1.98816,0.588391,2.66591, +-0.509869,0.848239,-0.82098,-1.98806,0.588308,2.66602, +-0.509746,0.848343,-0.820862,-1.98795,0.588226,2.66612, +-0.509623,0.848449,-0.820744,-1.98785,0.588145,2.66623, +-0.509498,0.848555,-0.820628,-1.98774,0.588066,2.66633, +-0.509373,0.848663,-0.820512,-1.98763,0.587988,2.66644, +-0.509247,0.848772,-0.820397,-1.98753,0.587911,2.66655, +-0.509121,0.848882,-0.820284,-1.98742,0.587836,2.66666, +-0.508995,0.848992,-0.820172,-1.98731,0.587761,2.66677, +-0.508868,0.849103,-0.820062,-1.98719,0.587687,2.66688, +-0.508742,0.849215,-0.819953,-1.98708,0.587614,2.66699, +-0.508614,0.849329,-0.819844,-1.98697,0.587542,2.66711, +-0.508485,0.849444,-0.819737,-1.98685,0.587472,2.66722, +-0.508356,0.849559,-0.81963,-1.98674,0.587404,2.66734, +-0.508226,0.849675,-0.819524,-1.98662,0.587336,2.66745, +-0.508096,0.849791,-0.81942,-1.98651,0.58727,2.66757, +-0.507966,0.849907,-0.819318,-1.98639,0.587204,2.66768, +-0.507836,0.850023,-0.819217,-1.98627,0.587138,2.6678, +-0.507706,0.85014,-0.819119,-1.98616,0.587074,2.66792, +-0.507574,0.850257,-0.819023,-1.98604,0.587012,2.66803, +-0.507442,0.850375,-0.818929,-1.98592,0.58695,2.66815, +-0.50731,0.850495,-0.818839,-1.9858,0.586891,2.66827, +-0.507177,0.850615,-0.818751,-1.98568,0.586832,2.66839, +-0.507044,0.850737,-0.818667,-1.98556,0.586774,2.66851, +-0.506911,0.850858,-0.818586,-1.98544,0.586717,2.66864, +-0.506778,0.85098,-0.818507,-1.98532,0.58666,2.66876, +-0.506644,0.851104,-0.818431,-1.98519,0.586605,2.66888, +-0.50651,0.851228,-0.818357,-1.98507,0.586551,2.66901, +-0.506375,0.851353,-0.818286,-1.98494,0.586498,2.66913, +-0.506239,0.851479,-0.818215,-1.98482,0.586447,2.66926, +-0.506103,0.851606,-0.818147,-1.98469,0.586396,2.66938, +-0.505967,0.851733,-0.818079,-1.98456,0.586347,2.66951, +-0.50583,0.851859,-0.818012,-1.98444,0.586298,2.66964, +-0.505694,0.851986,-0.817947,-1.98431,0.58625,2.66976, +-0.505557,0.852114,-0.817882,-1.98418,0.586203,2.66989, +-0.50542,0.852242,-0.817818,-1.98406,0.586157,2.67002, +-0.505282,0.852371,-0.817755,-1.98393,0.586113,2.67015, +-0.505143,0.852501,-0.817692,-1.9838,0.586069,2.67028, +-0.505004,0.852631,-0.817628,-1.98367,0.586027,2.67041, +-0.504865,0.852762,-0.817565,-1.98353,0.585986,2.67054, +-0.504726,0.852894,-0.817502,-1.9834,0.585945,2.67067, +-0.504587,0.853026,-0.817439,-1.98327,0.585906,2.6708, +-0.504448,0.853158,-0.817376,-1.98314,0.585867,2.67094, +-0.504308,0.853292,-0.817314,-1.983,0.585829,2.67107, +-0.504167,0.853427,-0.817254,-1.98287,0.585793,2.6712, +-0.504026,0.853562,-0.817194,-1.98274,0.585758,2.67134, +-0.503884,0.853698,-0.817134,-1.9826,0.585724,2.67148, +-0.503742,0.853834,-0.817075,-1.98246,0.585691,2.67161, +-0.5036,0.85397,-0.817017,-1.98233,0.585659,2.67175, +-0.503459,0.854107,-0.816959,-1.98219,0.585627,2.67188, +-0.503316,0.854244,-0.816901,-1.98205,0.585596,2.67202, +-0.503174,0.854382,-0.816844,-1.98191,0.585566,2.67216, +-0.50303,0.854521,-0.816789,-1.98178,0.585538,2.6723, +-0.502886,0.85466,-0.816734,-1.98164,0.585511,2.67244, +-0.502742,0.8548,-0.81668,-1.9815,0.585486,2.67258, +-0.502597,0.854941,-0.816627,-1.98136,0.58546,2.67272, +-0.502453,0.855081,-0.816574,-1.98122,0.585436,2.67286, +-0.502309,0.855221,-0.816521,-1.98108,0.585412,2.673, +-0.502164,0.855362,-0.81647,-1.98094,0.585389,2.67314, +-0.502019,0.855504,-0.816419,-1.98079,0.585368,2.67328, +-0.501873,0.855646,-0.81637,-1.98065,0.585348,2.67342, +-0.501727,0.855789,-0.816321,-1.98051,0.585329,2.67357, +-0.501581,0.855932,-0.816274,-1.98036,0.585311,2.67371, +-0.501435,0.856076,-0.816227,-1.98022,0.585294,2.67385, +-0.501289,0.856219,-0.816181,-1.98008,0.585277,2.674, +-0.501143,0.856363,-0.816135,-1.97993,0.585261,2.67414, +-0.500997,0.856507,-0.81609,-1.97979,0.585247,2.67428, +-0.50085,0.856651,-0.816046,-1.97965,0.585233,2.67443, +-0.500703,0.856796,-0.816004,-1.9795,0.585221,2.67457, +-0.500556,0.856942,-0.815963,-1.97935,0.58521,2.67472, +-0.500409,0.857088,-0.815922,-1.97921,0.5852,2.67487, +-0.500262,0.857234,-0.815883,-1.97906,0.585191,2.67501, +-0.500115,0.85738,-0.815843,-1.97892,0.585182,2.67516, +-0.499969,0.857526,-0.815805,-1.97877,0.585174,2.6753, +-0.499822,0.857672,-0.815767,-1.97862,0.585167,2.67545, +-0.499674,0.857819,-0.815731,-1.97848,0.585162,2.6756, +-0.499527,0.857967,-0.815696,-1.97833,0.585157,2.67575, +-0.49938,0.858115,-0.815662,-1.97818,0.585154,2.67589, +-0.499233,0.858263,-0.815629,-1.97803,0.585152,2.67604, +-0.499086,0.858411,-0.815597,-1.97789,0.58515,2.67619, +-0.498939,0.858559,-0.815566,-1.97774,0.585149,2.67634, +-0.498792,0.858706,-0.815535,-1.97759,0.585149,2.67649, +-0.498645,0.858855,-0.815505,-1.97744,0.58515,2.67663, +-0.498498,0.859003,-0.815476,-1.97729,0.585151,2.67678, +-0.498351,0.859152,-0.815449,-1.97714,0.585155,2.67693, +-0.498204,0.859302,-0.815422,-1.977,0.585159,2.67708, +-0.498057,0.859451,-0.815397,-1.97685,0.585164,2.67723, +-0.49791,0.859601,-0.815373,-1.9767,0.585171,2.67738, +-0.497764,0.85975,-0.815349,-1.97655,0.585177,2.67753, +-0.497618,0.859899,-0.815326,-1.9764,0.585185,2.67768, +-0.497471,0.860049,-0.815304,-1.97625,0.585193,2.67783, +-0.497325,0.860199,-0.815283,-1.9761,0.585203,2.67798, +-0.497179,0.860349,-0.815264,-1.97595,0.585214,2.67813, +-0.497033,0.860499,-0.815245,-1.9758,0.585227,2.67828, +-0.496887,0.86065,-0.815228,-1.97565,0.585241,2.67843, +-0.496741,0.8608,-0.815212,-1.9755,0.585256,2.67858, +-0.496595,0.86095,-0.815196,-1.97535,0.585272,2.67873, +-0.49645,0.8611,-0.815181,-1.9752,0.585289,2.67888, +-0.496305,0.86125,-0.815167,-1.97505,0.585307,2.67903, +-0.49616,0.8614,-0.815154,-1.9749,0.585327,2.67918, +-0.496015,0.861551,-0.815142,-1.97475,0.585348,2.67933, +-0.495871,0.861702,-0.815132,-1.9746,0.585371,2.67948, +-0.495726,0.861853,-0.815123,-1.97444,0.585395,2.67963, +-0.495581,0.862004,-0.815114,-1.97429,0.58542,2.67978, +-0.495437,0.862154,-0.815106,-1.97414,0.585447,2.67993, +-0.495293,0.862304,-0.815099,-1.97399,0.585474,2.68008, +-0.495149,0.862454,-0.815093,-1.97384,0.585503,2.68023, +-0.495006,0.862604,-0.815088,-1.97369,0.585533,2.68038, +-0.494863,0.862754,-0.815084,-1.97354,0.585566,2.68053, +-0.494721,0.862905,-0.815082,-1.97339,0.5856,2.68068, +-0.494578,0.863056,-0.815081,-1.97324,0.585635,2.68083, +-0.494435,0.863206,-0.81508,-1.97309,0.585672,2.68098, +-0.494293,0.863356,-0.81508,-1.97294,0.58571,2.68113, +-0.494151,0.863505,-0.81508,-1.97279,0.585749,2.68128, +-0.49401,0.863655,-0.815082,-1.97264,0.58579,2.68143, +-0.493869,0.863804,-0.815084,-1.97249,0.585832,2.68158, +-0.493729,0.863954,-0.815088,-1.97234,0.585877,2.68173, +-0.493588,0.864104,-0.815094,-1.97219,0.585923,2.68188, +-0.493448,0.864253,-0.8151,-1.97204,0.585971,2.68203, +-0.493308,0.864403,-0.815108,-1.97189,0.586021,2.68218, +-0.493168,0.864551,-0.815116,-1.97175,0.586071,2.68233, +-0.493029,0.864699,-0.815125,-1.9716,0.586123,2.68248, +-0.49289,0.864847,-0.815135,-1.97145,0.586177,2.68263, +-0.492752,0.864995,-0.815146,-1.9713,0.586233,2.68277, +-0.492615,0.865144,-0.815159,-1.97115,0.58629,2.68292, +-0.492478,0.865292,-0.815173,-1.97101,0.58635,2.68307, +-0.492341,0.86544,-0.815189,-1.97086,0.586411,2.68322, +-0.492204,0.865587,-0.815206,-1.97071,0.586474,2.68337, +-0.492068,0.865734,-0.815224,-1.97056,0.586539,2.68351, +-0.491931,0.86588,-0.815242,-1.97042,0.586605,2.68366, +-0.491794,0.866026,-0.815263,-1.97027,0.586672,2.6838, +-0.491657,0.866172,-0.815285,-1.97012,0.586742,2.68395, +-0.49152,0.866318,-0.815308,-1.96998,0.586814,2.6841, +-0.491383,0.866464,-0.815334,-1.96983,0.586888,2.68424, +-0.491246,0.86661,-0.81536,-1.96969,0.586964,2.68439, +-0.491109,0.866755,-0.815389,-1.96954,0.587042,2.68453, +-0.490973,0.866899,-0.815418,-1.9694,0.587121,2.68468, +-0.490838,0.867042,-0.815449,-1.96925,0.587202,2.68482, +-0.490703,0.867185,-0.815481,-1.96911,0.587285,2.68496, +-0.490568,0.867328,-0.815515,-1.96897,0.58737,2.68511, +-0.490433,0.867471,-0.815551,-1.96883,0.587457,2.68525, +-0.490299,0.867614,-0.815588,-1.96868,0.587546,2.68539, +-0.490165,0.867756,-0.815628,-1.96854,0.587637,2.68553, +-0.490032,0.867897,-0.815669,-1.9684,0.587729,2.68568, +-0.489901,0.868037,-0.815711,-1.96826,0.587823,2.68582, +-0.48977,0.868177,-0.815754,-1.96812,0.587919,2.68596, +-0.489641,0.868315,-0.815799,-1.96798,0.588016,2.68609, +-0.489512,0.868454,-0.815846,-1.96784,0.588115,2.68623, +-0.489383,0.868592,-0.815896,-1.9677,0.588216,2.68637, +-0.489256,0.86873,-0.815947,-1.96757,0.588318,2.68651, +-0.489129,0.868867,-0.815999,-1.96743,0.588422,2.68665, +-0.489004,0.869002,-0.816053,-1.96729,0.588526,2.68678, +-0.488881,0.869137,-0.816109,-1.96716,0.588632,2.68692, +-0.488759,0.86927,-0.816165,-1.96703,0.588738,2.68705, +-0.488639,0.869403,-0.816223,-1.96689,0.588846,2.68718, +-0.488519,0.869535,-0.816284,-1.96676,0.588955,2.68731, +-0.4884,0.869666,-0.816346,-1.96663,0.589065,2.68744, +-0.488283,0.869796,-0.81641,-1.9665,0.589177,2.68758, +-0.488166,0.869926,-0.816476,-1.96637,0.58929,2.6877, +-0.488052,0.870054,-0.816543,-1.96624,0.589403,2.68783, +-0.487939,0.870181,-0.816611,-1.96612,0.589517,2.68796, +-0.487828,0.870306,-0.81668,-1.96599,0.589631,2.68809, +-0.487719,0.870431,-0.816751,-1.96587,0.589747,2.68821, +-0.487611,0.870554,-0.816824,-1.96574,0.589863,2.68833, +-0.487503,0.870677,-0.816899,-1.96562,0.589981,2.68846, +-0.487397,0.870799,-0.816976,-1.9655,0.590099,2.68858, +-0.487292,0.87092,-0.817054,-1.96538,0.590218,2.6887, +-0.487189,0.871039,-0.817133,-1.96526,0.590338,2.68882, +-0.487088,0.871157,-0.817213,-1.96514,0.590458,2.68894, +-0.486989,0.871274,-0.817295,-1.96502,0.590578,2.68905, +-0.486892,0.871389,-0.817377,-1.96491,0.590699,2.68917, +-0.486798,0.871503,-0.817462,-1.96479,0.590821,2.68928, +-0.486707,0.871617,-0.817548,-1.96468,0.590944,2.6894, +-0.486619,0.871729,-0.817636,-1.96457,0.591068,2.68951, +-0.486534,0.871841,-0.817725,-1.96446,0.591192,2.68962, +-0.486452,0.871951,-0.817815,-1.96435,0.591316,2.68973, +-0.486374,0.872059,-0.817906,-1.96424,0.591441,2.68984, +-0.486298,0.872166,-0.817997,-1.96413,0.591566,2.68994, +-0.486224,0.872272,-0.81809,-1.96403,0.591691,2.69005, +-0.486153,0.872377,-0.818185,-1.96392,0.591818,2.69016, +-0.486083,0.872481,-0.818281,-1.96382,0.591945,2.69026, +-0.486016,0.872584,-0.818378,-1.96371,0.592073,2.69036, +-0.485949,0.872686,-0.818477,-1.96361,0.592201,2.69046, +-0.485884,0.872787,-0.818576,-1.96351,0.59233,2.69056, +-0.48582,0.872886,-0.818676,-1.96341,0.592458,2.69066, +-0.485758,0.872983,-0.818777,-1.96331,0.592587,2.69076, +-0.485696,0.873078,-0.818878,-1.96322,0.592716,2.69086, +-0.485635,0.87317,-0.818981,-1.96313,0.592846,2.69095, +-0.485575,0.87326,-0.819086,-1.96304,0.592977,2.69104, +-0.485516,0.873347,-0.819191,-1.96295,0.593109,2.69113, +-0.485456,0.87343,-0.819298,-1.96287,0.59324,2.69121, +-0.485397,0.873511,-0.819405,-1.96279,0.593373,2.69129, +-0.485338,0.873588,-0.819513,-1.96271,0.593505,2.69137, +-0.485279,0.873663,-0.819621,-1.96263,0.593637,2.69144, +-0.48522,0.873736,-0.81973,-1.96256,0.59377,2.69151, +-0.485162,0.873806,-0.819841,-1.96249,0.593903,2.69159, +-0.485106,0.873875,-0.819953,-1.96242,0.594037,2.69165, +-0.48505,0.873942,-0.820065,-1.96236,0.594172,2.69172, +-0.484995,0.874007,-0.820179,-1.96229,0.594307,2.69179, +-0.484941,0.874072,-0.820293,-1.96223,0.594442,2.69185, +-0.484887,0.874135,-0.820408,-1.96216,0.594578,2.69191, +-0.484833,0.874198,-0.820523,-1.9621,0.594713,2.69198, +-0.484781,0.874259,-0.820639,-1.96204,0.594849,2.69204, +-0.484729,0.87432,-0.820756,-1.96198,0.594985,2.6921, +-0.484679,0.87438,-0.820874,-1.96192,0.595123,2.69216, +-0.48463,0.87444,-0.820994,-1.96186,0.59526,2.69222, +-0.484582,0.874499,-0.821114,-1.9618,0.595399,2.69228, +-0.484534,0.874559,-0.821234,-1.96174,0.595537,2.69234, +-0.484486,0.874619,-0.821355,-1.96168,0.595675,2.6924, +-0.484439,0.874679,-0.821477,-1.96162,0.595814,2.69246, +-0.484393,0.874738,-0.821599,-1.96156,0.595953,2.69252, +-0.484347,0.874796,-0.821722,-1.9615,0.596092,2.69257, +-0.484303,0.874853,-0.821847,-1.96144,0.596232,2.69263, +-0.48426,0.87491,-0.821972,-1.96139,0.596373,2.69269, +-0.484218,0.874966,-0.822099,-1.96133,0.596514,2.69274, +-0.484177,0.875021,-0.822225,-1.96128,0.596655,2.6928, +-0.484136,0.875076,-0.822352,-1.96122,0.596796,2.69285, +-0.484096,0.875131,-0.82248,-1.96117,0.596937,2.69291, +-0.484057,0.875185,-0.822608,-1.96111,0.597079,2.69296, +-0.484019,0.875238,-0.822737,-1.96106,0.597221,2.69302, +-0.483983,0.875289,-0.822867,-1.96101,0.597364,2.69307, +-0.483947,0.87534,-0.822999,-1.96096,0.597507,2.69312, +-0.483913,0.87539,-0.823131,-1.96091,0.597651,2.69317, +-0.483879,0.87544,-0.823263,-1.96086,0.597794,2.69322, +-0.483846,0.875489,-0.823396,-1.96081,0.597938,2.69327, +-0.483813,0.875538,-0.823529,-1.96076,0.598081,2.69332, +-0.483781,0.875586,-0.823662,-1.96071,0.598225,2.69336, +-0.48375,0.875633,-0.823797,-1.96066,0.59837,2.69341, +-0.483721,0.875678,-0.823933,-1.96062,0.598515,2.69346, +-0.483693,0.875723,-0.82407,-1.96057,0.59866,2.6935, +-0.483666,0.875767,-0.824207,-1.96053,0.598806,2.69355, +-0.483639,0.87581,-0.824344,-1.96049,0.598952,2.69359, +-0.483613,0.875852,-0.824482,-1.96044,0.599097,2.69363, +-0.483588,0.875894,-0.82462,-1.9604,0.599243,2.69367, +-0.483564,0.875935,-0.824759,-1.96036,0.599388,2.69371, +-0.483541,0.875975,-0.824898,-1.96032,0.599535,2.69375, +-0.483519,0.876014,-0.825039,-1.96028,0.599681,2.69379, +-0.483499,0.876052,-0.82518,-1.96025,0.599828,2.69383, +-0.483479,0.876088,-0.825322,-1.96021,0.599975,2.69387, +-0.483461,0.876124,-0.825464,-1.96017,0.600121,2.6939, +-0.483442,0.87616,-0.825605,-1.96014,0.600268,2.69394, +-0.483425,0.876195,-0.825747,-1.9601,0.600414,2.69397, +-0.483408,0.876228,-0.82589,-1.96007,0.600561,2.69401, +-0.483393,0.876261,-0.826033,-1.96004,0.600708,2.69404, +-0.483379,0.876292,-0.826177,-1.96,0.600855,2.69407, +-0.483366,0.876322,-0.826322,-1.95997,0.601002,2.6941, +-0.483355,0.876352,-0.826467,-1.95995,0.601148,2.69413, +-0.483344,0.87638,-0.826612,-1.95992,0.601295,2.69416, +-0.483333,0.876408,-0.826757,-1.95989,0.601442,2.69419, +-0.483323,0.876435,-0.826902,-1.95986,0.601588,2.69421, +-0.483315,0.876461,-0.827047,-1.95984,0.601734,2.69424, +-0.483307,0.876486,-0.827193,-1.95981,0.601881,2.69427, +-0.483301,0.87651,-0.82734,-1.95979,0.602027,2.69429, +-0.483296,0.876532,-0.827487,-1.95976,0.602173,2.69431, +-0.483292,0.876554,-0.827634,-1.95974,0.602319,2.69433, +-0.483288,0.876574,-0.827782,-1.95972,0.602465,2.69435, +-0.483286,0.876594,-0.827929,-1.9597,0.602611,2.69437, +-0.483283,0.876614,-0.828076,-1.95968,0.602757,2.69439, +-0.483282,0.876632,-0.828224,-1.95966,0.602902,2.69441, +-0.483282,0.876649,-0.828372,-1.95965,0.603047,2.69443, +-0.483283,0.876665,-0.828521,-1.95963,0.603192,2.69444, +-0.483286,0.87668,-0.82867,-1.95962,0.603337,2.69446, +-0.48329,0.876693,-0.828819,-1.9596,0.603482,2.69447, +-0.483294,0.876706,-0.828968,-1.95959,0.603627,2.69448, +-0.483298,0.876718,-0.829117,-1.95958,0.603772,2.6945, +-0.483304,0.87673,-0.829266,-1.95957,0.603916,2.69451, +-0.48331,0.87674,-0.829415,-1.95956,0.60406,2.69452, +-0.483317,0.87675,-0.829564,-1.95955,0.604203,2.69453, +-0.483326,0.876758,-0.829714,-1.95954,0.604347,2.69454, +-0.483337,0.876764,-0.829865,-1.95953,0.60449,2.69454, +-0.483348,0.87677,-0.830015,-1.95953,0.604633,2.69455, +-0.483361,0.876775,-0.830166,-1.95952,0.604776,2.69455, +-0.483374,0.876779,-0.830316,-1.95952,0.604919,2.69456, +-0.483388,0.876783,-0.830466,-1.95951,0.605062,2.69456, +-0.483404,0.876786,-0.830616,-1.95951,0.605204,2.69456, +-0.483421,0.876788,-0.830766,-1.95951,0.605346,2.69457, +-0.483439,0.876788,-0.830917,-1.95951,0.605487,2.69457, +-0.48346,0.876787,-0.831068,-1.95951,0.605627,2.69457, +-0.483481,0.876785,-0.831219,-1.95951,0.605768,2.69456, +-0.483504,0.876782,-0.83137,-1.95952,0.605909,2.69456, +-0.483527,0.876779,-0.831521,-1.95952,0.60605,2.69456, +-0.483552,0.876775,-0.831671,-1.95952,0.60619,2.69455, +-0.483577,0.876771,-0.831821,-1.95953,0.60633,2.69455, +-0.483605,0.876765,-0.831972,-1.95953,0.606469,2.69454, +-0.483634,0.876758,-0.832123,-1.95954,0.606608,2.69454, +-0.483665,0.876749,-0.832274,-1.95955,0.606746,2.69453, +-0.483697,0.876739,-0.832426,-1.95956,0.606884,2.69452, +-0.483731,0.876728,-0.832577,-1.95957,0.607021,2.69451, +-0.483765,0.876716,-0.832727,-1.95958,0.607159,2.69449, +-0.483801,0.876704,-0.832877,-1.95959,0.607297,2.69448, +-0.483839,0.87669,-0.833027,-1.95961,0.607433,2.69447, +-0.483878,0.876675,-0.833178,-1.95962,0.60757,2.69445, +-0.483918,0.876658,-0.833329,-1.95964,0.607705,2.69444, +-0.483961,0.876639,-0.833479,-1.95966,0.60784,2.69442, +-0.484006,0.87662,-0.83363,-1.95968,0.607974,2.6944, +-0.484051,0.876599,-0.833781,-1.9597,0.608108,2.69438, +-0.484098,0.876577,-0.83393,-1.95972,0.608243,2.69436, +-0.484146,0.876554,-0.83408,-1.95974,0.608377,2.69433, +-0.484196,0.87653,-0.834229,-1.95977,0.60851,2.69431, +-0.484248,0.876504,-0.834379,-1.95979,0.608643,2.69428, +-0.484301,0.876476,-0.834528,-1.95982,0.608774,2.69425, +-0.484357,0.876447,-0.834678,-1.95985,0.608905,2.69423, +-0.484414,0.876416,-0.834828,-1.95988,0.609035,2.69419, +-0.484473,0.876384,-0.834977,-1.95991,0.609166,2.69416, +-0.484533,0.876351,-0.835125,-1.95995,0.609295,2.69413, +-0.484594,0.876316,-0.835273,-1.95998,0.609425,2.69409, +-0.484657,0.87628,-0.835421,-1.96002,0.609554,2.69406, +-0.484723,0.876242,-0.835569,-1.96005,0.609682,2.69402, +-0.48479,0.876202,-0.835717,-1.96009,0.609809,2.69398, +-0.484859,0.876161,-0.835865,-1.96014,0.609935,2.69394, +-0.48493,0.876117,-0.836013,-1.96018,0.610061,2.6939, +-0.485003,0.876073,-0.83616,-1.96022,0.610186,2.69385, +-0.485077,0.876027,-0.836307,-1.96027,0.610311,2.69381, +-0.485153,0.875979,-0.836453,-1.96032,0.610436,2.69376, +-0.485231,0.87593,-0.836598,-1.96037,0.610559,2.69371, +-0.48531,0.875879,-0.836744,-1.96042,0.610682,2.69366, +-0.485392,0.875826,-0.83689,-1.96047,0.610804,2.6936, +-0.485476,0.875771,-0.837035,-1.96053,0.610925,2.69355, +-0.485562,0.875714,-0.83718,-1.96058,0.611045,2.69349, +-0.48565,0.875655,-0.837325,-1.96064,0.611165,2.69343, +-0.485739,0.875595,-0.837469,-1.9607,0.611285,2.69337, +-0.48583,0.875533,-0.837611,-1.96076,0.611405,2.69331, +-0.485922,0.87547,-0.837752,-1.96083,0.611525,2.69325, +-0.486017,0.875404,-0.837892,-1.96089,0.611646,2.69318, +-0.486114,0.875337,-0.83803,-1.96096,0.611767,2.69312, +-0.486213,0.875267,-0.838166,-1.96103,0.611888,2.69305, +-0.486313,0.875196,-0.838302,-1.9611,0.612009,2.69297, +-0.486414,0.875123,-0.838437,-1.96117,0.61213,2.6929, +-0.486516,0.875049,-0.838572,-1.96125,0.61225,2.69283, +-0.48662,0.874974,-0.838705,-1.96132,0.612369,2.69275, +-0.486725,0.874896,-0.838838,-1.9614,0.612488,2.69267, +-0.486831,0.874817,-0.838969,-1.96148,0.612607,2.6926, +-0.486939,0.874736,-0.839099,-1.96156,0.612725,2.69251, +-0.487049,0.874654,-0.839227,-1.96164,0.612842,2.69243, +-0.487159,0.874569,-0.839354,-1.96173,0.612958,2.69235, +-0.48727,0.874484,-0.83948,-1.96181,0.613073,2.69226, +-0.487382,0.874397,-0.839604,-1.9619,0.613186,2.69218, +-0.487495,0.874309,-0.839728,-1.96199,0.613297,2.69209, +-0.487608,0.87422,-0.83985,-1.96208,0.613408,2.692, +-0.487723,0.874129,-0.839971,-1.96217,0.613517,2.69191, +-0.487839,0.874036,-0.840091,-1.96226,0.613625,2.69181, +-0.487956,0.873942,-0.840209,-1.96236,0.613732,2.69172, +-0.488074,0.873846,-0.840326,-1.96245,0.613836,2.69162, +-0.488193,0.873749,-0.840443,-1.96255,0.613939,2.69153, +-0.488311,0.873652,-0.840559,-1.96264,0.614039,2.69143, +-0.488431,0.873554,-0.840674,-1.96274,0.614137,2.69133, +-0.488551,0.873454,-0.840788,-1.96284,0.614232,2.69123, +-0.488672,0.873353,-0.840902,-1.96294,0.614323,2.69113, +-0.488794,0.87325,-0.841013,-1.96305,0.614412,2.69103, +-0.488917,0.873146,-0.841124,-1.96315,0.614497,2.69092, +-0.48904,0.873041,-0.841233,-1.96326,0.614578,2.69082, +-0.489164,0.872936,-0.841341,-1.96336,0.614656,2.69071, +-0.489288,0.872829,-0.841449,-1.96347,0.614732,2.69061, +-0.489412,0.872722,-0.841555,-1.96357,0.614805,2.6905, +-0.489537,0.872614,-0.84166,-1.96368,0.614875,2.69039, +-0.489662,0.872505,-0.841764,-1.96379,0.614942,2.69028, +-0.489789,0.872395,-0.841867,-1.9639,0.615008,2.69017, +-0.489916,0.872283,-0.841968,-1.96401,0.615072,2.69006, +-0.490044,0.872171,-0.842069,-1.96413,0.615134,2.68995, +-0.490172,0.872058,-0.842168,-1.96424,0.615195,2.68984, +-0.4903,0.871944,-0.842267,-1.96435,0.615255,2.68972, +-0.490428,0.87183,-0.842366,-1.96447,0.615314,2.68961, +-0.490557,0.871716,-0.842463,-1.96458,0.615371,2.68949, +-0.490687,0.8716,-0.842559,-1.9647,0.615428,2.68938, +-0.490817,0.871483,-0.842654,-1.96481,0.615483,2.68926, +-0.490948,0.871365,-0.842747,-1.96493,0.615537,2.68914, +-0.49108,0.871247,-0.842839,-1.96505,0.615592,2.68902, +-0.491211,0.871128,-0.842931,-1.96517,0.615646,2.68891, +-0.491343,0.871009,-0.843022,-1.96529,0.6157,2.68879, +-0.491475,0.870889,-0.843112,-1.96541,0.615754,2.68867, +-0.491607,0.870769,-0.843202,-1.96553,0.615807,2.68855, +-0.49174,0.870647,-0.84329,-1.96565,0.61586,2.68843, +-0.491873,0.870525,-0.843376,-1.96577,0.615912,2.6883, +-0.492008,0.870402,-0.843462,-1.9659,0.615963,2.68818, +-0.492142,0.870278,-0.843546,-1.96602,0.616012,2.68806, +-0.492277,0.870153,-0.84363,-1.96614,0.616061,2.68793, +-0.492412,0.870029,-0.843714,-1.96627,0.616109,2.68781, +-0.492547,0.869904,-0.843796,-1.96639,0.616157,2.68768, +-0.492683,0.869778,-0.843878,-1.96652,0.616203,2.68756, +-0.492819,0.869652,-0.843959,-1.96665,0.616248,2.68743, +-0.492955,0.869525,-0.844038,-1.96677,0.616292,2.6873, +-0.493093,0.869396,-0.844116,-1.9669,0.616335,2.68717, +-0.49323,0.869267,-0.844193,-1.96703,0.616378,2.68705, +-0.493368,0.869138,-0.844269,-1.96716,0.616419,2.68692, +-0.493506,0.869009,-0.844345,-1.96729,0.616461,2.68679, +-0.493644,0.868879,-0.84442,-1.96742,0.616502,2.68666, +-0.493782,0.868749,-0.844494,-1.96755,0.616542,2.68653, +-0.493921,0.868618,-0.844566,-1.96768,0.616581,2.6864, +-0.494061,0.868486,-0.844638,-1.96781,0.616619,2.68626, +-0.494201,0.868353,-0.844708,-1.96794,0.616655,2.68613, +-0.494342,0.86822,-0.844777,-1.96808,0.616691,2.686, +-0.494482,0.868086,-0.844846,-1.96821,0.616726,2.68586, +-0.494623,0.867952,-0.844914,-1.96835,0.61676,2.68573, +-0.494763,0.867818,-0.844981,-1.96848,0.616794,2.6856, +-0.494904,0.867683,-0.845047,-1.96861,0.616827,2.68546, +-0.495046,0.867548,-0.845113,-1.96875,0.616858,2.68533, +-0.495188,0.867411,-0.845177,-1.96889,0.616888,2.68519, +-0.495331,0.867274,-0.845239,-1.96902,0.616917,2.68505, +-0.495474,0.867136,-0.845301,-1.96916,0.616945,2.68491, +-0.495617,0.866998,-0.845362,-1.9693,0.616973,2.68478, +-0.49576,0.86686,-0.845422,-1.96944,0.617,2.68464, +-0.495903,0.866722,-0.845482,-1.96957,0.617026,2.6845, +-0.496046,0.866584,-0.845541,-1.96971,0.617051,2.68436, +-0.49619,0.866444,-0.845599,-1.96985,0.617075,2.68422, +-0.496334,0.866304,-0.845655,-1.96999,0.617098,2.68408, +-0.496479,0.866163,-0.84571,-1.97013,0.61712,2.68394, +-0.496624,0.866021,-0.845764,-1.97028,0.61714,2.6838, +-0.496769,0.86588,-0.845817,-1.97042,0.61716,2.68366, +-0.496914,0.865738,-0.84587,-1.97056,0.61718,2.68352, +-0.497059,0.865596,-0.845922,-1.9707,0.617198,2.68337, +-0.497204,0.865454,-0.845972,-1.97084,0.617216,2.68323, +-0.49735,0.865311,-0.846022,-1.97099,0.617233,2.68309, +-0.497496,0.865167,-0.846071,-1.97113,0.617248,2.68295, +-0.497642,0.865023,-0.846118,-1.97127,0.617262,2.6828, +-0.497788,0.864879,-0.846164,-1.97142,0.617275,2.68266, +-0.497935,0.864734,-0.846209,-1.97156,0.617287,2.68251, +-0.498081,0.864589,-0.846254,-1.97171,0.617299,2.68237, +-0.498227,0.864445,-0.846298,-1.97185,0.61731,2.68222, +-0.498373,0.8643,-0.846341,-1.972,0.61732,2.68208, +-0.49852,0.864154,-0.846383,-1.97214,0.617329,2.68193, +-0.498667,0.864008,-0.846423,-1.97229,0.617336,2.68179, +-0.498814,0.863861,-0.846462,-1.97244,0.617342,2.68164, +-0.498961,0.863714,-0.846501,-1.97258,0.617348,2.68149, +-0.499108,0.863567,-0.846538,-1.97273,0.617352,2.68134, +-0.499255,0.86342,-0.846575,-1.97288,0.617357,2.6812, +-0.499401,0.863273,-0.846611,-1.97302,0.61736,2.68105, +-0.499548,0.863125,-0.846646,-1.97317,0.617363,2.6809, +-0.499695,0.862978,-0.84668,-1.97332,0.617364,2.68076, +-0.499842,0.862829,-0.846712,-1.97347,0.617364,2.68061, +-0.499989,0.862681,-0.846743,-1.97362,0.617363,2.68046, +-0.500136,0.862532,-0.846773,-1.97377,0.617361,2.68031, +-0.500283,0.862383,-0.846802,-1.97391,0.617358,2.68016, +-0.50043,0.862234,-0.846831,-1.97406,0.617355,2.68001, +-0.500577,0.862086,-0.846859,-1.97421,0.617351,2.67986, +-0.500723,0.861937,-0.846886,-1.97436,0.617346,2.67971, +-0.50087,0.861788,-0.846911,-1.97451,0.61734,2.67957, +-0.501016,0.861638,-0.846936,-1.97466,0.617333,2.67942, +-0.501163,0.861488,-0.846958,-1.97481,0.617324,2.67927, +-0.50131,0.861338,-0.84698,-1.97496,0.617314,2.67912, +-0.501456,0.861188,-0.847001,-1.97511,0.617303,2.67897, +-0.501602,0.861038,-0.847022,-1.97526,0.617292,2.67882, +-0.501748,0.860889,-0.847042,-1.97541,0.617279,2.67867, +-0.501894,0.860739,-0.84706,-1.97556,0.617266,2.67852, +-0.502039,0.860589,-0.847078,-1.97571,0.617251,2.67837, +-0.502185,0.860438,-0.847094,-1.97586,0.617234,2.67822, +-0.50233,0.860288,-0.847109,-1.97601,0.617216,2.67807, +-0.502476,0.860137,-0.847122,-1.97616,0.617196,2.67791, +-0.502621,0.859986,-0.847135,-1.97631,0.617176,2.67776, +-0.502766,0.859836,-0.847148,-1.97646,0.617154,2.67761, +-0.502911,0.859686,-0.847159,-1.97661,0.617132,2.67746, +-0.503055,0.859536,-0.84717,-1.97676,0.617108,2.67731, +-0.503198,0.859386,-0.847179,-1.97691,0.617083,2.67716, +-0.503342,0.859235,-0.847187,-1.97706,0.617056,2.67701, +-0.503486,0.859084,-0.847194,-1.97721,0.617027,2.67686, +-0.503629,0.858934,-0.847199,-1.97736,0.616997,2.67671, +-0.503773,0.858784,-0.847204,-1.97751,0.616966,2.67656, +-0.503916,0.858634,-0.847209,-1.97766,0.616933,2.67641, +-0.504059,0.858484,-0.847212,-1.97781,0.6169,2.67626, +-0.504201,0.858335,-0.847215,-1.97796,0.616865,2.67611, +-0.504343,0.858185,-0.847216,-1.97811,0.616828,2.67596, +-0.504484,0.858035,-0.847216,-1.97826,0.616789,2.67581, +-0.504626,0.857885,-0.847215,-1.97841,0.616749,2.67566, +-0.504767,0.857735,-0.847213,-1.97856,0.616707,2.67551, +-0.504908,0.857586,-0.84721,-1.97871,0.616664,2.67536, +-0.505049,0.857437,-0.847206,-1.97886,0.616619,2.67521, +-0.505189,0.857289,-0.847202,-1.97901,0.616574,2.67507, +-0.505329,0.85714,-0.847197,-1.97916,0.616526,2.67492, +-0.505468,0.856992,-0.847191,-1.97931,0.616477,2.67477, +-0.505607,0.856843,-0.847183,-1.97945,0.616426,2.67462, +-0.505745,0.856694,-0.847173,-1.9796,0.616373,2.67447, +-0.505883,0.856546,-0.847163,-1.97975,0.616318,2.67432, +-0.506021,0.856398,-0.847151,-1.9799,0.616262,2.67418, +-0.506159,0.85625,-0.847139,-1.98005,0.616204,2.67403, +-0.506296,0.856103,-0.847126,-1.98019,0.616146,2.67388, +-0.506433,0.855957,-0.847111,-1.98034,0.616085,2.67373, +-0.506568,0.85581,-0.847095,-1.98049,0.616022,2.67359, +-0.506703,0.855663,-0.847077,-1.98063,0.615958,2.67344, +-0.506838,0.855516,-0.847057,-1.98078,0.615891,2.67329, +-0.506973,0.855369,-0.847036,-1.98093,0.615822,2.67315, +-0.507107,0.855223,-0.847014,-1.98107,0.615752,2.673, +-0.507242,0.855078,-0.846991,-1.98122,0.61568,2.67286, +-0.507375,0.854933,-0.846967,-1.98136,0.615607,2.67271, +-0.507508,0.854789,-0.846941,-1.98151,0.615532,2.67257, +-0.50764,0.854644,-0.846914,-1.98165,0.615455,2.67242, +-0.507772,0.8545,-0.846884,-1.9818,0.615375,2.67228, +-0.507902,0.854355,-0.846853,-1.98194,0.615293,2.67213, +-0.508033,0.854211,-0.84682,-1.98209,0.61521,2.67199, +-0.508163,0.854068,-0.846786,-1.98223,0.615124,2.67185, +-0.508292,0.853925,-0.846751,-1.98237,0.615037,2.6717, +-0.508422,0.853784,-0.846714,-1.98251,0.614948,2.67156, +-0.50855,0.853644,-0.846675,-1.98265,0.614858,2.67142, +-0.508678,0.853506,-0.846635,-1.98279,0.614765,2.67128, +-0.508804,0.853369,-0.846593,-1.98293,0.61467,2.67115, +-0.508929,0.853234,-0.846548,-1.98306,0.614574,2.67101, +-0.509051,0.8531,-0.846502,-1.9832,0.614476,2.67088, +-0.509172,0.852967,-0.846455,-1.98333,0.614376,2.67075, +-0.509292,0.852835,-0.846407,-1.98346,0.614276,2.67061, +-0.509409,0.852703,-0.846357,-1.98359,0.614174,2.67048, +-0.509525,0.852573,-0.846305,-1.98372,0.614071,2.67035, +-0.509638,0.852445,-0.846251,-1.98385,0.613966,2.67022, +-0.50975,0.852318,-0.846196,-1.98398,0.61386,2.6701, +-0.509861,0.852192,-0.846138,-1.98411,0.613753,2.66997, +-0.50997,0.852068,-0.846079,-1.98423,0.613644,2.66985, +-0.510078,0.851944,-0.846019,-1.98435,0.613534,2.66972, +-0.510185,0.851822,-0.845957,-1.98448,0.613424,2.6696, +-0.510292,0.8517,-0.845894,-1.9846,0.613313,2.66948, +-0.510397,0.85158,-0.845829,-1.98472,0.613201,2.66936, +-0.510501,0.851461,-0.845763,-1.98484,0.613088,2.66924, +-0.510603,0.851344,-0.845694,-1.98495,0.612974,2.66912, +-0.510704,0.851228,-0.845624,-1.98507,0.612858,2.66901, +-0.510803,0.851114,-0.845552,-1.98518,0.612742,2.66889, +-0.510902,0.851,-0.845478,-1.9853,0.612625,2.66878, +-0.511,0.850887,-0.845404,-1.98541,0.612508,2.66867, +-0.511097,0.850774,-0.845328,-1.98552,0.61239,2.66855, +-0.511193,0.850663,-0.845251,-1.98563,0.612272,2.66844, +-0.511287,0.850553,-0.845172,-1.98574,0.612152,2.66833, +-0.51138,0.850445,-0.845092,-1.98585,0.612032,2.66822, +-0.511472,0.850337,-0.845009,-1.98596,0.61191,2.66812, +-0.511562,0.850231,-0.844926,-1.98607,0.611788,2.66801, +-0.511651,0.850126,-0.844841,-1.98617,0.611666,2.6679, +-0.51174,0.850022,-0.844755,-1.98628,0.611543,2.6678, +-0.511828,0.849918,-0.844668,-1.98638,0.611421,2.6677, +-0.511915,0.849816,-0.84458,-1.98648,0.611297,2.66759, +-0.512,0.849715,-0.84449,-1.98658,0.611173,2.66749, +-0.512084,0.849615,-0.844399,-1.98668,0.611048,2.66739, +-0.512167,0.849517,-0.844306,-1.98678,0.610922,2.66729, +-0.512248,0.84942,-0.844212,-1.98688,0.610795,2.6672, +-0.512329,0.849323,-0.844117,-1.98697,0.610669,2.6671, +-0.512409,0.849227,-0.844022,-1.98707,0.610542,2.66701, +-0.512488,0.849132,-0.843925,-1.98717,0.610415,2.66691, +-0.512566,0.849038,-0.843828,-1.98726,0.610288,2.66682, +-0.512643,0.848945,-0.843729,-1.98735,0.610159,2.66672, +-0.512718,0.848853,-0.843628,-1.98744,0.61003,2.66663, +-0.512792,0.848763,-0.843527,-1.98753,0.609901,2.66654, +-0.512865,0.848674,-0.843424,-1.98762,0.60977,2.66645, +-0.512937,0.848585,-0.843321,-1.98771,0.60964,2.66636, +-0.513008,0.848498,-0.843217,-1.9878,0.60951,2.66628, +-0.513079,0.848411,-0.843112,-1.98789,0.609379,2.66619, +-0.513148,0.848325,-0.843007,-1.98797,0.609248,2.6661, +-0.513216,0.84824,-0.8429,-1.98806,0.609116,2.66602, +-0.513283,0.848157,-0.842792,-1.98814,0.608984,2.66593, +-0.513349,0.848074,-0.842682,-1.98822,0.60885,2.66585, +-0.513413,0.847993,-0.842572,-1.9883,0.608717,2.66577, +-0.513477,0.847913,-0.842461,-1.98838,0.608583,2.66569, +-0.51354,0.847833,-0.84235,-1.98846,0.608449,2.66561, +-0.513602,0.847754,-0.842238,-1.98854,0.608316,2.66553, +-0.513663,0.847675,-0.842125,-1.98862,0.608181,2.66545, +-0.513723,0.847598,-0.842012,-1.9887,0.608046,2.66538, +-0.513782,0.847522,-0.841896,-1.98877,0.607911,2.6653, +-0.513839,0.847448,-0.84178,-1.98885,0.607774,2.66523, +-0.513896,0.847374,-0.841663,-1.98892,0.607637,2.66515, +-0.513951,0.847302,-0.841546,-1.989,0.607501,2.66508, +-0.514006,0.847229,-0.841428,-1.98907,0.607364,2.66501, +-0.51406,0.847158,-0.841309,-1.98914,0.607227,2.66494, +-0.514114,0.847087,-0.84119,-1.98921,0.607089,2.66487, +-0.514166,0.847018,-0.84107,-1.98928,0.606952,2.6648, +-0.514216,0.84695,-0.840948,-1.98935,0.606813,2.66473, +-0.514265,0.846883,-0.840826,-1.98941,0.606673,2.66466, +-0.514313,0.846818,-0.840703,-1.98948,0.606534,2.6646, +-0.514361,0.846752,-0.840579,-1.98954,0.606394,2.66453, +-0.514408,0.846688,-0.840455,-1.98961,0.606254,2.66447, +-0.514454,0.846624,-0.84033,-1.98967,0.606114,2.6644, +-0.514499,0.846561,-0.840205,-1.98974,0.605974,2.66434, +-0.514543,0.846499,-0.840079,-1.9898,0.605833,2.66428, +-0.514586,0.846439,-0.839951,-1.98986,0.605692,2.66422, +-0.514627,0.84638,-0.839823,-1.98992,0.60555,2.66416, +-0.514667,0.846322,-0.839694,-1.98998,0.605407,2.6641, +-0.514707,0.846264,-0.839564,-1.99003,0.605265,2.66404, +-0.514746,0.846207,-0.839434,-1.99009,0.605123,2.66399, +-0.514784,0.846151,-0.839304,-1.99015,0.60498,2.66393, +-0.514821,0.846096,-0.839173,-1.9902,0.604837,2.66387, +-0.514857,0.846042,-0.839041,-1.99026,0.604694,2.66382, +-0.514892,0.845989,-0.838908,-1.99031,0.60455,2.66377, +-0.514925,0.845938,-0.838774,-1.99036,0.604406,2.66372, +-0.514957,0.845887,-0.838639,-1.99041,0.604261,2.66367, +-0.514989,0.845838,-0.838504,-1.99046,0.604116,2.66362, +-0.51502,0.845789,-0.838369,-1.99051,0.603971,2.66357, +-0.51505,0.84574,-0.838233,-1.99056,0.603827,2.66352, +-0.515079,0.845693,-0.838097,-1.9906,0.603682,2.66347, +-0.515107,0.845646,-0.83796,-1.99065,0.603536,2.66342, +-0.515134,0.845602,-0.837821,-1.9907,0.60339,2.66338, +-0.515159,0.845558,-0.837682,-1.99074,0.603244,2.66334, +-0.515183,0.845515,-0.837543,-1.99078,0.603098,2.66329, +-0.515207,0.845474,-0.837403,-1.99082,0.602951,2.66325, +-0.51523,0.845432,-0.837263,-1.99086,0.602805,2.66321, +-0.515252,0.845392,-0.837123,-1.99091,0.602659,2.66317, +-0.515273,0.845352,-0.836983,-1.99094,0.602513,2.66313, +-0.515293,0.845314,-0.836841,-1.99098,0.602367,2.66309, +-0.515312,0.845277,-0.836699,-1.99102,0.60222,2.66306, +-0.515329,0.845242,-0.836556,-1.99106,0.602073,2.66302, +-0.515345,0.845207,-0.836412,-1.99109,0.601926,2.66299, +-0.515361,0.845174,-0.836269,-1.99112,0.601779,2.66295, +-0.515376,0.84514,-0.836126,-1.99116,0.601633,2.66292, +-0.51539,0.845108,-0.835982,-1.99119,0.601486,2.66289, +-0.515403,0.845077,-0.835838,-1.99122,0.60134,2.66286, +-0.515415,0.845046,-0.835693,-1.99125,0.601193,2.66283, +-0.515426,0.845018,-0.835548,-1.99128,0.601047,2.6628, +-0.515435,0.84499,-0.835402,-1.99131,0.6009,2.66277, +-0.515443,0.844964,-0.835256,-1.99133,0.600753,2.66274, +-0.515451,0.844938,-0.835109,-1.99136,0.600607,2.66272, +-0.515458,0.844913,-0.834963,-1.99138,0.600461,2.66269, +-0.515464,0.844889,-0.834817,-1.99141,0.600315,2.66267, +-0.51547,0.844866,-0.83467,-1.99143,0.600169,2.66264, +-0.515474,0.844844,-0.834523,-1.99145,0.600023,2.66262, +-0.515476,0.844823,-0.834376,-1.99147,0.599878,2.6626, +-0.515478,0.844804,-0.834227,-1.99149,0.599732,2.66258, +-0.515479,0.844786,-0.834079,-1.99151,0.599586,2.66256, +-0.515479,0.844768,-0.833931,-1.99153,0.599441,2.66255, +-0.515478,0.844751,-0.833782,-1.99155,0.599295,2.66253, +-0.515477,0.844735,-0.833634,-1.99156,0.59915,2.66251, +-0.515475,0.84472,-0.833486,-1.99158,0.599006,2.6625, +-0.515472,0.844706,-0.833337,-1.99159,0.598862,2.66248, +-0.515467,0.844694,-0.833188,-1.9916,0.598717,2.66247, +-0.515461,0.844683,-0.833038,-1.99161,0.598573,2.66246, +-0.515454,0.844672,-0.832888,-1.99162,0.598429,2.66245, +-0.515446,0.844663,-0.832738,-1.99163,0.598285,2.66244, +-0.515438,0.844654,-0.832588,-1.99164,0.598141,2.66243, +-0.515428,0.844646,-0.832439,-1.99165,0.597997,2.66242, +-0.515418,0.844639,-0.832289,-1.99166,0.597854,2.66242, +-0.515406,0.844633,-0.832139,-1.99166,0.597712,2.66241, +-0.515393,0.844629,-0.831989,-1.99167,0.59757,2.66241, +-0.515378,0.844625,-0.831838,-1.99167,0.597427,2.6624, +-0.515362,0.844623,-0.831687,-1.99167,0.597285,2.6624, +-0.515345,0.844621,-0.831536,-1.99168,0.597143,2.6624, +-0.515327,0.84462,-0.831386,-1.99168,0.597001,2.6624, +-0.515308,0.84462,-0.831236,-1.99168,0.59686,2.6624, +-0.515287,0.844621,-0.831085,-1.99168,0.596718,2.6624, +-0.515266,0.844623,-0.830935,-1.99167,0.596578,2.6624, +-0.515242,0.844626,-0.830784,-1.99167,0.596438,2.6624, +-0.515217,0.84463,-0.830632,-1.99167,0.596299,2.66241, +-0.51519,0.844636,-0.830481,-1.99166,0.596159,2.66241, +-0.515163,0.844642,-0.83033,-1.99165,0.59602,2.66242, +-0.515134,0.844649,-0.830179,-1.99165,0.595881,2.66243, +-0.515104,0.844657,-0.830029,-1.99164,0.595742,2.66244, +-0.515073,0.844665,-0.829879,-1.99163,0.595603,2.66244, +-0.51504,0.844675,-0.829728,-1.99162,0.595465,2.66245, +-0.515005,0.844687,-0.829577,-1.99161,0.595328,2.66247, +-0.514969,0.8447,-0.829426,-1.9916,0.595192,2.66248, +-0.514931,0.844714,-0.829275,-1.99158,0.595056,2.66249, +-0.514891,0.84473,-0.829124,-1.99157,0.59492,2.66251, +-0.514851,0.844746,-0.828974,-1.99155,0.594784,2.66252, +-0.514809,0.844763,-0.828824,-1.99153,0.594648,2.66254, +-0.514766,0.844782,-0.828674,-1.99152,0.594513,2.66256, +-0.514721,0.844802,-0.828524,-1.9915,0.594378,2.66258, +-0.514674,0.844824,-0.828374,-1.99147,0.594245,2.6626, +-0.514625,0.844847,-0.828223,-1.99145,0.594112,2.66263, +-0.514574,0.844872,-0.828073,-1.99142,0.593979,2.66265, +-0.514522,0.844898,-0.827923,-1.9914,0.593847,2.66268, +-0.514469,0.844925,-0.827774,-1.99137,0.593715,2.6627, +-0.514415,0.844954,-0.827625,-1.99134,0.593583,2.66273, +-0.514358,0.844983,-0.827476,-1.99131,0.593452,2.66276, +-0.5143,0.845015,-0.827328,-1.99128,0.593321,2.66279, +-0.51424,0.845048,-0.827179,-1.99125,0.593192,2.66283, +-0.514178,0.845083,-0.82703,-1.99121,0.593063,2.66286, +-0.514114,0.84512,-0.826881,-1.99118,0.592935,2.6629, +-0.514048,0.845158,-0.826733,-1.99114,0.592807,2.66294, +-0.513981,0.845197,-0.826585,-1.9911,0.59268,2.66298, +-0.513913,0.845238,-0.826438,-1.99106,0.592552,2.66302, +-0.513843,0.84528,-0.826291,-1.99102,0.592426,2.66306, +-0.513771,0.845324,-0.826144,-1.99097,0.5923,2.6631, +-0.513696,0.84537,-0.825997,-1.99093,0.592176,2.66315, +-0.51362,0.845418,-0.82585,-1.99088,0.592052,2.6632, +-0.513541,0.845468,-0.825704,-1.99083,0.591929,2.66325, +-0.513461,0.84552,-0.825558,-1.99078,0.591807,2.6633, +-0.51338,0.845572,-0.825413,-1.99072,0.591685,2.66335, +-0.513297,0.845627,-0.825268,-1.99067,0.591563,2.6634, +-0.513212,0.845682,-0.825124,-1.99061,0.591442,2.66346, +-0.513124,0.84574,-0.82498,-1.99056,0.591322,2.66352, +-0.513035,0.845801,-0.824835,-1.9905,0.591203,2.66358, +-0.512944,0.845863,-0.824692,-1.99043,0.591085,2.66364, +-0.512851,0.845927,-0.824548,-1.99037,0.590969,2.6637, +-0.512756,0.845992,-0.824406,-1.9903,0.590854,2.66377, +-0.51266,0.846059,-0.824264,-1.99024,0.590739,2.66384, +-0.512563,0.846128,-0.824123,-1.99017,0.590626,2.66391, +-0.512464,0.846198,-0.823983,-1.9901,0.590514,2.66398, +-0.512363,0.84627,-0.823842,-1.99003,0.590403,2.66405, +-0.51226,0.846344,-0.823703,-1.98995,0.590294,2.66412, +-0.512156,0.84642,-0.823563,-1.98988,0.590186,2.6642, +-0.51205,0.846498,-0.823425,-1.9898,0.59008,2.66428, +-0.511944,0.846577,-0.823287,-1.98972,0.589976,2.66436, +-0.511836,0.846658,-0.823151,-1.98964,0.589872,2.66444, +-0.511728,0.846739,-0.823016,-1.98956,0.589769,2.66452, +-0.511618,0.846823,-0.822881,-1.98947,0.589667,2.6646, +-0.511507,0.846908,-0.822747,-1.98939,0.589568,2.66469, +-0.511395,0.846995,-0.822614,-1.9893,0.58947,2.66477, +-0.511281,0.847084,-0.822481,-1.98921,0.589373,2.66486, +-0.511167,0.847174,-0.822349,-1.98912,0.589277,2.66495, +-0.511052,0.847265,-0.822219,-1.98903,0.589183,2.66504, +-0.510936,0.847357,-0.82209,-1.98894,0.589089,2.66514, +-0.51082,0.847451,-0.821962,-1.98885,0.588997,2.66523, +-0.510703,0.847545,-0.821835,-1.98875,0.588905,2.66532, +-0.510585,0.847642,-0.821709,-1.98866,0.588815,2.66542, +-0.510466,0.84774,-0.821583,-1.98856,0.588727,2.66552, +-0.510346,0.847839,-0.821458,-1.98846,0.58864,2.66562, +-0.510225,0.84794,-0.821335,-1.98836,0.588554,2.66572, +-0.510103,0.848041,-0.821212,-1.98826,0.588469,2.66582, +-0.509982,0.848143,-0.821092,-1.98815,0.588385,2.66592, +-0.50986,0.848246,-0.820972,-1.98805,0.588302,2.66602, +-0.509737,0.84835,-0.820854,-1.98795,0.58822,2.66613, +-0.509614,0.848456,-0.820737,-1.98784,0.588139,2.66623, +-0.509489,0.848563,-0.82062,-1.98773,0.58806,2.66634, +-0.509364,0.848671,-0.820504,-1.98763,0.587983,2.66645, +-0.509238,0.848779,-0.820389,-1.98752,0.587906,2.66656, +-0.509112,0.848889,-0.820276,-1.98741,0.587831,2.66667, +-0.508986,0.848999,-0.820165,-1.9873,0.587756,2.66678, +-0.50886,0.849109,-0.820054,-1.98719,0.587682,2.66689, +-0.508733,0.849221,-0.819945,-1.98708,0.587609,2.667, +-0.508605,0.849334,-0.819837,-1.98696,0.587538,2.66711, +-0.508476,0.849447,-0.819729,-1.98685,0.587468,2.66723, +-0.508347,0.849562,-0.819623,-1.98673,0.587399,2.66734, +-0.508217,0.849678,-0.819517,-1.98662,0.587332,2.66746, +-0.508087,0.849794,-0.819413,-1.9865,0.587265,2.66757, +-0.507957,0.84991,-0.819311,-1.98639,0.587199,2.66769, +-0.507827,0.850027,-0.81921,-1.98627,0.587134,2.66781, +-0.507697,0.850145,-0.819112,-1.98615,0.58707,2.66792, +-0.507565,0.850263,-0.819016,-1.98603,0.587007,2.66804, +-0.507433,0.850383,-0.818922,-1.98591,0.586946,2.66816, +-0.5073,0.850504,-0.818832,-1.98579,0.586886,2.66828, +-0.507167,0.850626,-0.818745,-1.98567,0.586827,2.6684, +-0.507034,0.850748,-0.818661,-1.98555,0.58677,2.66853, +-0.5069,0.850871,-0.818579,-1.98543,0.586712,2.66865, +-0.506767,0.850994,-0.818501,-1.9853,0.586656,2.66877, +-0.506633,0.851118,-0.818425,-1.98518,0.5866,2.6689, +-0.506498,0.851243,-0.818351,-1.98505,0.586546,2.66902, +-0.506363,0.851369,-0.818279,-1.98493,0.586494,2.66915, +-0.506227,0.851496,-0.818209,-1.9848,0.586443,2.66927, +-0.506091,0.851622,-0.81814,-1.98467,0.586392,2.6694, +-0.505954,0.851749,-0.818072,-1.98455,0.586343,2.66953, +-0.505818,0.851875,-0.818006,-1.98442,0.586294,2.66965, +-0.505681,0.852002,-0.81794,-1.9843,0.586246,2.66978, +-0.505544,0.852129,-0.817876,-1.98417,0.586199,2.66991, +-0.505407,0.852256,-0.817812,-1.98404,0.586153,2.67003, +-0.505269,0.852385,-0.817748,-1.98391,0.586109,2.67016, +-0.50513,0.852514,-0.817685,-1.98378,0.586066,2.67029, +-0.504992,0.852645,-0.817622,-1.98365,0.586024,2.67042, +-0.504853,0.852775,-0.817559,-1.98352,0.585983,2.67055, +-0.504715,0.852906,-0.817496,-1.98339,0.585942,2.67068, +-0.504576,0.853038,-0.817433,-1.98326,0.585902,2.67082, +-0.504437,0.85317,-0.81737,-1.98313,0.585864,2.67095, +-0.504297,0.853303,-0.817309,-1.98299,0.585826,2.67108, +-0.504157,0.853437,-0.817248,-1.98286,0.58579,2.67122, +-0.504016,0.853572,-0.817188,-1.98272,0.585755,2.67135, +-0.503874,0.853708,-0.817129,-1.98259,0.585722,2.67149, +-0.503733,0.853844,-0.81707,-1.98245,0.585689,2.67162, +-0.503591,0.85398,-0.817012,-1.98232,0.585656,2.67176, +-0.503449,0.854116,-0.816953,-1.98218,0.585625,2.67189, +-0.503308,0.854253,-0.816896,-1.98204,0.585594,2.67203, +-0.503165,0.854391,-0.816839,-1.98191,0.585564,2.67217, +-0.503022,0.854529,-0.816784,-1.98177,0.585536,2.67231, +-0.502878,0.854669,-0.81673,-1.98163,0.58551,2.67245, +-0.502734,0.854808,-0.816676,-1.98149,0.585484,2.67259, +-0.502589,0.854948,-0.816623,-1.98135,0.585459,2.67273, +-0.502445,0.855089,-0.81657,-1.98121,0.585434,2.67287, +-0.502301,0.855229,-0.816518,-1.98107,0.585411,2.67301, +-0.502157,0.85537,-0.816466,-1.98093,0.585388,2.67315, +-0.502012,0.855511,-0.816416,-1.98079,0.585367,2.67329, +-0.501866,0.855653,-0.816366,-1.98064,0.585347,2.67343, +-0.50172,0.855796,-0.816318,-1.9805,0.585328,2.67357, +-0.501573,0.85594,-0.816271,-1.98036,0.58531,2.67372, +-0.501427,0.856083,-0.816224,-1.98021,0.585293,2.67386, +-0.501281,0.856226,-0.816178,-1.98007,0.585276,2.674, +-0.501135,0.85637,-0.816132,-1.97993,0.585261,2.67415, +-0.500988,0.856514,-0.816087,-1.97978,0.585246,2.67429, +-0.500842,0.856658,-0.816044,-1.97964,0.585232,2.67444, +-0.500695,0.856803,-0.816001,-1.97949,0.58522,2.67458, +-0.500548,0.856949,-0.81596,-1.97935,0.585209,2.67473, +-0.500401,0.857095,-0.81592,-1.9792,0.5852,2.67487, +-0.500255,0.857241,-0.81588,-1.97906,0.58519,2.67502, +-0.500108,0.857387,-0.815841,-1.97891,0.585182,2.67517, +-0.499961,0.857534,-0.815803,-1.97876,0.585174,2.67531, +-0.499815,0.85768,-0.815765,-1.97862,0.585167,2.67546, +-0.499668,0.857827,-0.815729,-1.97847,0.585161,2.6756, +-0.49952,0.857974,-0.815694,-1.97832,0.585157,2.67575, +-0.499373,0.858122,-0.81566,-1.97817,0.585154,2.6759, +-0.499226,0.85827,-0.815627,-1.97803,0.585152,2.67605, +-0.499079,0.858419,-0.815595,-1.97788,0.58515,2.6762, +-0.498932,0.858567,-0.815564,-1.97773,0.585149,2.67634, +-0.498785,0.858715,-0.815533,-1.97758,0.585149,2.67649, +-0.498638,0.858863,-0.815503,-1.97743,0.58515,2.67664, +-0.498491,0.859011,-0.815474,-1.97729,0.585152,2.67679, +-0.498344,0.859161,-0.815447,-1.97714,0.585155,2.67694, +-0.498197,0.85931,-0.815421,-1.97699,0.585159,2.67709, +-0.49805,0.85946,-0.815396,-1.97684,0.585165,2.67724, +-0.497903,0.85961,-0.815372,-1.97669,0.585171,2.67739, +-0.497756,0.859759,-0.815348,-1.97654,0.585178,2.67754, +-0.49761,0.859908,-0.815325,-1.97639,0.585185,2.67769, +-0.497463,0.860057,-0.815303,-1.97624,0.585194,2.67784, +-0.497317,0.860207,-0.815282,-1.97609,0.585204,2.67799, +-0.497171,0.860358,-0.815263,-1.97594,0.585215,2.67814, +-0.497025,0.860508,-0.815244,-1.97579,0.585228,2.67829, +-0.496878,0.860659,-0.815227,-1.97564,0.585242,2.67844, +-0.496732,0.860809,-0.815211,-1.97549,0.585257,2.67859, +-0.496586,0.860959,-0.815195,-1.97534,0.585273,2.67874, +-0.496441,0.861109,-0.81518,-1.97519,0.58529,2.67889, +-0.496296,0.861259,-0.815166,-1.97504,0.585308,2.67904, +-0.496151,0.86141,-0.815153,-1.97489,0.585328,2.67919, +-0.496006,0.86156,-0.815142,-1.97474,0.585349,2.67934, +-0.495861,0.861711,-0.815131,-1.97459,0.585372,2.67949, +-0.495716,0.861862,-0.815122,-1.97443,0.585396,2.67964, +-0.495571,0.862013,-0.815114,-1.97428,0.585422,2.67979, +-0.495427,0.862163,-0.815106,-1.97413,0.585448,2.67994, +-0.495283,0.862313,-0.815099,-1.97398,0.585476,2.68009, +-0.495139,0.862464,-0.815093,-1.97383,0.585505,2.68024, +-0.494996,0.862614,-0.815088,-1.97368,0.585535,2.68039, +-0.494854,0.862764,-0.815084,-1.97353,0.585568,2.68054, +-0.494711,0.862915,-0.815082,-1.97338,0.585602,2.68069, +-0.494568,0.863066,-0.815081,-1.97323,0.585638,2.68084, +-0.494425,0.863216,-0.81508,-1.97308,0.585675,2.68099, +-0.494283,0.863366,-0.81508,-1.97293,0.585713,2.68114, +-0.494141,0.863515,-0.81508,-1.97278,0.585752,2.68129, +-0.493999,0.863665,-0.815082,-1.97263,0.585793,2.68144, +-0.493859,0.863814,-0.815085,-1.97248,0.585835,2.68159, +-0.493718,0.863964,-0.815089,-1.97233,0.58588,2.68174, +-0.493578,0.864114,-0.815094,-1.97218,0.585926,2.68189, +-0.493438,0.864264,-0.815101,-1.97203,0.585975,2.68204, +-0.493298,0.864413,-0.815108,-1.97188,0.586024,2.68219, +-0.493158,0.864562,-0.815116,-1.97174,0.586075,2.68234, +-0.493019,0.86471,-0.815125,-1.97159,0.586127,2.68249, +-0.49288,0.864858,-0.815135,-1.97144,0.586181,2.68264, +-0.492742,0.865006,-0.815147,-1.97129,0.586236,2.68278, +-0.492605,0.865154,-0.81516,-1.97114,0.586294,2.68293, +-0.492468,0.865302,-0.815174,-1.97099,0.586354,2.68308, +-0.492332,0.86545,-0.81519,-1.97085,0.586416,2.68323, +-0.492195,0.865598,-0.815207,-1.9707,0.586479,2.68338, +-0.492059,0.865745,-0.815225,-1.97055,0.586543,2.68352, +-0.491923,0.865891,-0.815244,-1.97041,0.586609,2.68367, +-0.491786,0.866037,-0.815264,-1.97026,0.586677,2.68381, +-0.491649,0.866183,-0.815286,-1.97011,0.586747,2.68396, +-0.491512,0.866329,-0.81531,-1.96997,0.586819,2.68411, +-0.491375,0.866475,-0.815335,-1.96982,0.586893,2.68425, +-0.491238,0.86662,-0.815362,-1.96968,0.586969,2.6844, +-0.491102,0.866765,-0.815391,-1.96953,0.587047,2.68454, +-0.490966,0.866909,-0.81542,-1.96939,0.587127,2.68469, +-0.490831,0.867053,-0.815451,-1.96924,0.587208,2.68483, +-0.490696,0.867196,-0.815483,-1.9691,0.58729,2.68497, +-0.490561,0.867339,-0.815517,-1.96896,0.587375,2.68512, +-0.490426,0.867482,-0.815553,-1.96882,0.587463,2.68526, +-0.490292,0.867624,-0.815591,-1.96867,0.587552,2.6854, +-0.490158,0.867766,-0.81563,-1.96853,0.587643,2.68554, +-0.490026,0.867908,-0.815671,-1.96839,0.587736,2.68569, +-0.489894,0.868048,-0.815714,-1.96825,0.587829,2.68583, +-0.489764,0.868187,-0.815757,-1.96811,0.587925,2.68597, +-0.489634,0.868326,-0.815802,-1.96797,0.588022,2.6861, +-0.489505,0.868465,-0.81585,-1.96783,0.588121,2.68624, +-0.489377,0.868603,-0.815899,-1.9677,0.588222,2.68638, +-0.489249,0.86874,-0.81595,-1.96756,0.588325,2.68652, +-0.489123,0.868877,-0.816003,-1.96742,0.588428,2.68665, +-0.488998,0.869012,-0.816057,-1.96729,0.588533,2.68679, +-0.488875,0.869147,-0.816112,-1.96715,0.588638,2.68692, +-0.488753,0.86928,-0.816169,-1.96702,0.588745,2.68706, +-0.488632,0.869412,-0.816227,-1.96689,0.588853,2.68719, +-0.488513,0.869544,-0.816288,-1.96675,0.588962,2.68732, +-0.488394,0.869675,-0.81635,-1.96662,0.589072,2.68745, +-0.488276,0.869806,-0.816414,-1.96649,0.589184,2.68758, +-0.48816,0.869935,-0.81648,-1.96636,0.589297,2.68771, +-0.488046,0.870063,-0.816547,-1.96623,0.58941,2.68784, +-0.487933,0.87019,-0.816615,-1.96611,0.589524,2.68797, +-0.487822,0.870315,-0.816685,-1.96598,0.589639,2.68809, +-0.487713,0.870439,-0.816756,-1.96586,0.589754,2.68822, +-0.487605,0.870563,-0.816829,-1.96573,0.58987,2.68834, +-0.487497,0.870686,-0.816904,-1.96561,0.589988,2.68846, +-0.487391,0.870808,-0.816981,-1.96549,0.590107,2.68859, +-0.487286,0.870928,-0.817059,-1.96537,0.590226,2.68871, +-0.487183,0.871047,-0.817138,-1.96525,0.590346,2.68883, +-0.487082,0.871165,-0.817218,-1.96513,0.590466,2.68894, +-0.486983,0.871281,-0.8173,-1.96502,0.590586,2.68906, +-0.486886,0.871397,-0.817383,-1.9649,0.590707,2.68917, +-0.486792,0.871511,-0.817467,-1.96479,0.590829,2.68929, +-0.486701,0.871624,-0.817554,-1.96467,0.590952,2.6894, +-0.486613,0.871737,-0.817642,-1.96456,0.591075,2.68951, +-0.486528,0.871848,-0.817731,-1.96445,0.5912,2.68963, +-0.486447,0.871958,-0.817821,-1.96434,0.591324,2.68974, +-0.486368,0.872066,-0.817912,-1.96423,0.591449,2.68984, +-0.486292,0.872173,-0.818004,-1.96412,0.591574,2.68995, +-0.486219,0.872279,-0.818097,-1.96402,0.591699,2.69006, +-0.486148,0.872384,-0.818191,-1.96391,0.591826,2.69016, +-0.486078,0.872488,-0.818288,-1.96381,0.591953,2.69027, +-0.486011,0.872591,-0.818385,-1.96371,0.592081,2.69037, +-0.485944,0.872693,-0.818484,-1.9636,0.592209,2.69047, +-0.485879,0.872793,-0.818583,-1.9635,0.592338,2.69057, +-0.485816,0.872892,-0.818683,-1.96341,0.592466,2.69067, +-0.485753,0.872989,-0.818784,-1.96331,0.592595,2.69077, +-0.485691,0.873084,-0.818885,-1.96321,0.592724,2.69086, +-0.485631,0.873176,-0.818988,-1.96312,0.592854,2.69095, +-0.485571,0.873266,-0.819093,-1.96303,0.592985,2.69104, +-0.485511,0.873353,-0.819198,-1.96294,0.593117,2.69113, +-0.485452,0.873436,-0.819305,-1.96286,0.593249,2.69121, +-0.485393,0.873517,-0.819412,-1.96278,0.593381,2.69129, +-0.485333,0.873594,-0.81952,-1.9627,0.593513,2.69137, +-0.485274,0.873669,-0.819628,-1.96263,0.593645,2.69145, +-0.485216,0.873742,-0.819738,-1.96256,0.593778,2.69152, +-0.485158,0.873812,-0.819848,-1.96249,0.593911,2.69159, +-0.485101,0.873881,-0.81996,-1.96242,0.594045,2.69166, +-0.485046,0.873948,-0.820073,-1.96235,0.59418,2.69173, +-0.484991,0.874013,-0.820186,-1.96228,0.594315,2.69179, +-0.484937,0.874077,-0.820301,-1.96222,0.594451,2.69186, +-0.484883,0.874141,-0.820415,-1.96216,0.594586,2.69192, +-0.48483,0.874203,-0.820531,-1.96209,0.594721,2.69198, +-0.484777,0.874264,-0.820647,-1.96203,0.594857,2.69204, +-0.484726,0.874325,-0.820764,-1.96197,0.594994,2.6921, +-0.484676,0.874385,-0.820882,-1.96191,0.595131,2.69216, +-0.484626,0.874445,-0.821002,-1.96185,0.595269,2.69222, +-0.484578,0.874504,-0.821122,-1.96179,0.595407,2.69228, +-0.48453,0.874564,-0.821242,-1.96173,0.595546,2.69234, +-0.484483,0.874624,-0.821363,-1.96167,0.595684,2.6924, +-0.484436,0.874683,-0.821485,-1.96161,0.595822,2.69246, +-0.48439,0.874742,-0.821607,-1.96156,0.595961,2.69252, +-0.484345,0.8748,-0.82173,-1.9615,0.596101,2.69258, +-0.484301,0.874858,-0.821855,-1.96144,0.596241,2.69264, +-0.484258,0.874914,-0.82198,-1.96138,0.596382,2.69269, +-0.484216,0.87497,-0.822107,-1.96133,0.596523,2.69275, +-0.484175,0.875025,-0.822233,-1.96127,0.596664,2.6928, +-0.484134,0.87508,-0.82236,-1.96122,0.596805,2.69286, +-0.484094,0.875134,-0.822488,-1.96116,0.596946,2.69291, +-0.484055,0.875188,-0.822616,-1.96111,0.597088,2.69297, +-0.484017,0.875241,-0.822746,-1.96106,0.59723,2.69302, +-0.483981,0.875293,-0.822876,-1.961,0.597373,2.69307, +-0.483945,0.875344,-0.823007,-1.96095,0.597516,2.69312, +-0.483911,0.875394,-0.823139,-1.9609,0.59766,2.69317, +-0.483877,0.875444,-0.823272,-1.96085,0.597803,2.69322, +-0.483844,0.875493,-0.823404,-1.9608,0.597947,2.69327, +-0.483811,0.875541,-0.823537,-1.96076,0.59809,2.69332, +-0.483779,0.875589,-0.823671,-1.96071,0.598234,2.69337, +-0.483748,0.875636,-0.823806,-1.96066,0.598379,2.69341, +-0.483719,0.875682,-0.823941,-1.96062,0.598524,2.69346, +-0.483691,0.875726,-0.824078,-1.96057,0.598669,2.6935, +-0.483664,0.87577,-0.824215,-1.96053,0.598815,2.69355, +-0.483638,0.875813,-0.824352,-1.96048,0.59896,2.69359, +-0.483612,0.875855,-0.82449,-1.96044,0.599106,2.69363, +-0.483587,0.875897,-0.824628,-1.9604,0.599251,2.69368, +-0.483562,0.875938,-0.824766,-1.96036,0.599397,2.69372, +-0.48354,0.875978,-0.824906,-1.96032,0.599543,2.69376, +-0.483518,0.876017,-0.825046,-1.96028,0.59969,2.69379, +-0.483498,0.876054,-0.825187,-1.96024,0.599836,2.69383, +-0.483478,0.876091,-0.825329,-1.96021,0.599983,2.69387, +-0.48346,0.876127,-0.82547,-1.96017,0.60013,2.6939, +-0.483441,0.876162,-0.825612,-1.96014,0.600276,2.69394, +-0.483424,0.876197,-0.825754,-1.9601,0.600423,2.69397, +-0.483407,0.876231,-0.825897,-1.96007,0.600569,2.69401, +-0.483392,0.876263,-0.82604,-1.96003,0.600716,2.69404, +-0.483378,0.876294,-0.826184,-1.96,0.600863,2.69407, +-0.483366,0.876324,-0.826328,-1.95997,0.601009,2.6941, +-0.483354,0.876354,-0.826473,-1.95994,0.601156,2.69413, +-0.483343,0.876382,-0.826618,-1.95992,0.601303,2.69416, +-0.483333,0.87641,-0.826763,-1.95989,0.601449,2.69419, +-0.483323,0.876437,-0.826908,-1.95986,0.601596,2.69421, +-0.483314,0.876463,-0.827054,-1.95983,0.601742,2.69424, +-0.483307,0.876488,-0.8272,-1.95981,0.601888,2.69427, +-0.4833,0.876511,-0.827346,-1.95979,0.602034,2.69429, +-0.483296,0.876534,-0.827493,-1.95976,0.60218,2.69431, +-0.483292,0.876555,-0.827641,-1.95974,0.602326,2.69433, +-0.483288,0.876576,-0.827788,-1.95972,0.602472,2.69435, +-0.483285,0.876596,-0.827936,-1.9597,0.602618,2.69437, +-0.483283,0.876615,-0.828083,-1.95968,0.602764,2.69439, +-0.483282,0.876633,-0.828231,-1.95966,0.602909,2.69441, +-0.483282,0.87665,-0.828379,-1.95965,0.603054,2.69443, +-0.483284,0.876666,-0.828527,-1.95963,0.603199,2.69444, +-0.483286,0.876681,-0.828676,-1.95962,0.603344,2.69446, +-0.48329,0.876694,-0.828826,-1.9596,0.603489,2.69447, +-0.483294,0.876707,-0.828975,-1.95959,0.603634,2.69448, +-0.483299,0.876719,-0.829124,-1.95958,0.603778,2.6945, +-0.483304,0.87673,-0.829273,-1.95957,0.603923,2.69451, +-0.48331,0.876741,-0.829422,-1.95956,0.604067,2.69452, +-0.483318,0.87675,-0.829572,-1.95955,0.60421,2.69453, +-0.483327,0.876758,-0.829722,-1.95954,0.604353,2.69454, +-0.483337,0.876765,-0.829872,-1.95953,0.604497,2.69454, +-0.483349,0.87677,-0.830023,-1.95953,0.60464,2.69455, +-0.483362,0.876775,-0.830173,-1.95952,0.604783,2.69455, +-0.483375,0.87678,-0.830323,-1.95952,0.604926,2.69456, +-0.483389,0.876783,-0.830473,-1.95951,0.605069,2.69456, +-0.483405,0.876786,-0.830623,-1.95951,0.605211,2.69456, +-0.483422,0.876787,-0.830774,-1.95951,0.605352,2.69457, +-0.483441,0.876788,-0.830925,-1.95951,0.605493,2.69457, +-0.483461,0.876787,-0.831076,-1.95951,0.605634,2.69456, +-0.483482,0.876785,-0.831227,-1.95951,0.605775,2.69456, +-0.483505,0.876782,-0.831378,-1.95952,0.605916,2.69456, +-0.483529,0.876779,-0.831529,-1.95952,0.606056,2.69456, +-0.483553,0.876775,-0.831679,-1.95952,0.606197,2.69455, +-0.483579,0.87677,-0.831829,-1.95953,0.606337,2.69455, +-0.483607,0.876764,-0.83198,-1.95953,0.606476,2.69454, +-0.483636,0.876757,-0.832131,-1.95954,0.606615,2.69454, +-0.483667,0.876748,-0.832283,-1.95955,0.606753,2.69453, +-0.483699,0.876738,-0.832434,-1.95956,0.60689,2.69452, +-0.483733,0.876727,-0.832585,-1.95957,0.607028,2.69451, +-0.483768,0.876715,-0.832735,-1.95958,0.607166,2.69449, +-0.483803,0.876703,-0.832886,-1.95959,0.607304,2.69448, +-0.483841,0.876689,-0.833036,-1.95961,0.607441,2.69447, +-0.48388,0.876674,-0.833186,-1.95962,0.607577,2.69445, +-0.483921,0.876657,-0.833337,-1.95964,0.607712,2.69443, +-0.483964,0.876638,-0.833488,-1.95966,0.607847,2.69442, +-0.484008,0.876618,-0.833639,-1.95968,0.607982,2.6944, +-0.484054,0.876597,-0.833789,-1.9597,0.608116,2.69438, +-0.484101,0.876575,-0.833939,-1.95972,0.60825,2.69435, +-0.484149,0.876552,-0.834089,-1.95974,0.608384,2.69433, +-0.484199,0.876528,-0.834238,-1.95977,0.608517,2.69431, +-0.484251,0.876502,-0.834387,-1.9598,0.60865,2.69428, +-0.484304,0.876474,-0.834537,-1.95982,0.608781,2.69425, +-0.48436,0.876445,-0.834687,-1.95985,0.608912,2.69422, +-0.484418,0.876414,-0.834837,-1.95988,0.609043,2.69419, +-0.484476,0.876382,-0.834986,-1.95992,0.609173,2.69416, +-0.484537,0.876348,-0.835134,-1.95995,0.609303,2.69413, +-0.484598,0.876314,-0.835282,-1.95998,0.609432,2.69409, +-0.484661,0.876278,-0.83543,-1.96002,0.609561,2.69406, +-0.484727,0.87624,-0.835578,-1.96006,0.60969,2.69402, +-0.484794,0.8762,-0.835726,-1.9601,0.609817,2.69398, +-0.484863,0.876158,-0.835874,-1.96014,0.609943,2.69394, +-0.484935,0.876115,-0.836022,-1.96018,0.610069,2.69389, +-0.485008,0.87607,-0.836169,-1.96023,0.610194,2.69385, +-0.485082,0.876024,-0.836316,-1.96027,0.610319,2.6938, +-0.485158,0.875976,-0.836462,-1.96032,0.610444,2.69375, +-0.485235,0.875927,-0.836607,-1.96037,0.610568,2.69371, +-0.485315,0.875876,-0.836753,-1.96042,0.610691,2.69365, +-0.485397,0.875823,-0.836899,-1.96047,0.610813,2.6936, +-0.485481,0.875767,-0.837044,-1.96053,0.610934,2.69355, +-0.485567,0.87571,-0.837189,-1.96059,0.611054,2.69349, +-0.485655,0.875652,-0.837334,-1.96065,0.611174,2.69343, +-0.485744,0.875591,-0.837477,-1.96071,0.611293,2.69337, +-0.485835,0.87553,-0.83762,-1.96077,0.611413,2.69331, +-0.485928,0.875466,-0.837761,-1.96083,0.611533,2.69324, +-0.486023,0.8754,-0.837901,-1.9609,0.611653,2.69318, +-0.48612,0.875333,-0.838039,-1.96096,0.611774,2.69311, +-0.486219,0.875263,-0.838175,-1.96103,0.611894,2.69304, +-0.486319,0.875191,-0.838311,-1.96111,0.612015,2.69297, +-0.48642,0.875118,-0.838446,-1.96118,0.612135,2.6929, +-0.486523,0.875044,-0.83858,-1.96125,0.612255,2.69282, +-0.486626,0.874969,-0.838714,-1.96133,0.612374,2.69275, +-0.486731,0.874892,-0.838846,-1.96141,0.612493,2.69267, +-0.486838,0.874813,-0.838977,-1.96148,0.612611,2.69259, +-0.486946,0.874731,-0.839107,-1.96157,0.612729,2.69251, +-0.487056,0.874649,-0.839235,-1.96165,0.612846,2.69243, +-0.487166,0.874564,-0.839362,-1.96173,0.612962,2.69234, +-0.487277,0.874479,-0.839488,-1.96182,0.613077,2.69226, +-0.487389,0.874392,-0.839613,-1.96191,0.61319,2.69217, +-0.487502,0.874304,-0.839736,-1.96199,0.613301,2.69208, +-0.487616,0.874214,-0.839859,-1.96208,0.613412,2.69199, +-0.487731,0.874123,-0.839979,-1.96217,0.613521,2.6919, +-0.487847,0.87403,-0.840099,-1.96227,0.613629,2.69181, +-0.487964,0.873936,-0.840217,-1.96236,0.613736,2.69171, +-0.488082,0.87384,-0.840334,-1.96246,0.61384,2.69162, +-0.4882,0.873743,-0.840451,-1.96255,0.613943,2.69152, +-0.488319,0.873646,-0.840567,-1.96265,0.614043,2.69142, +-0.488438,0.873547,-0.840682,-1.96275,0.614141,2.69133, +-0.488558,0.873447,-0.840796,-1.96285,0.614236,2.69123, +-0.488679,0.873346,-0.840909,-1.96295,0.614328,2.69112, +-0.488802,0.873243,-0.841021,-1.96305,0.614416,2.69102, +-0.488924,0.873139,-0.841131,-1.96316,0.614501,2.69092, +-0.489048,0.873034,-0.84124,-1.96326,0.614583,2.69081, +-0.489172,0.872929,-0.841348,-1.96337,0.614661,2.69071, +-0.489296,0.872822,-0.841456,-1.96347,0.614737,2.6906, +-0.48942,0.872715,-0.841562,-1.96358,0.614809,2.69049, +-0.489545,0.872607,-0.841668,-1.96369,0.614879,2.69039, +-0.48967,0.872498,-0.841771,-1.9638,0.614947,2.69028, +-0.489797,0.872388,-0.841874,-1.96391,0.615013,2.69017, +-0.489924,0.872276,-0.841975,-1.96402,0.615077,2.69005, +-0.490052,0.872164,-0.842075,-1.96413,0.615139,2.68994, +-0.49018,0.872051,-0.842175,-1.96425,0.6152,2.68983, +-0.490308,0.871937,-0.842274,-1.96436,0.61526,2.68972, +-0.490437,0.871823,-0.842372,-1.96447,0.615319,2.6896, +-0.490566,0.871709,-0.84247,-1.96459,0.615376,2.68949, +-0.490695,0.871593,-0.842566,-1.9647,0.615432,2.68937, +-0.490825,0.871476,-0.84266,-1.96482,0.615487,2.68925, +-0.490956,0.871358,-0.842754,-1.96494,0.615542,2.68914, +-0.491088,0.871239,-0.842846,-1.96506,0.615596,2.68902, +-0.49122,0.87112,-0.842938,-1.96518,0.61565,2.6889, +-0.491351,0.871001,-0.843029,-1.9653,0.615704,2.68878, +-0.491483,0.870881,-0.843119,-1.96542,0.615758,2.68866, +-0.491615,0.870761,-0.843208,-1.96554,0.615811,2.68854, +-0.491748,0.87064,-0.843296,-1.96566,0.615863,2.68842, +-0.491882,0.870517,-0.843382,-1.96578,0.615915,2.6883, +-0.492016,0.870394,-0.843468,-1.9659,0.615965,2.68817, +-0.492151,0.87027,-0.843552,-1.96603,0.616015,2.68805, +-0.492286,0.870146,-0.843636,-1.96615,0.616063,2.68792, +-0.492421,0.870021,-0.843719,-1.96628,0.616112,2.6878, +-0.492556,0.869896,-0.843802,-1.9664,0.616159,2.68767, +-0.492691,0.86977,-0.843883,-1.96653,0.616205,2.68755, +-0.492827,0.869644,-0.843964,-1.96665,0.616251,2.68742, +-0.492964,0.869516,-0.844043,-1.96678,0.616295,2.68729, +-0.493101,0.869388,-0.84412,-1.96691,0.616338,2.68717, +-0.493239,0.869259,-0.844197,-1.96704,0.61638,2.68704, +-0.493377,0.86913,-0.844273,-1.96717,0.616422,2.68691, +-0.493515,0.869,-0.844349,-1.9673,0.616463,2.68678, +-0.493653,0.868871,-0.844424,-1.96743,0.616504,2.68665, +-0.493791,0.868741,-0.844498,-1.96756,0.616544,2.68652, +-0.49393,0.86861,-0.844571,-1.96769,0.616583,2.68639, +-0.49407,0.868478,-0.844642,-1.96782,0.616621,2.68626, +-0.49421,0.868345,-0.844713,-1.96795,0.616657,2.68612, +-0.494351,0.868212,-0.844782,-1.96809,0.616693,2.68599, +-0.494491,0.868078,-0.84485,-1.96822,0.616728,2.68586, +-0.494632,0.867944,-0.844919,-1.96835,0.616762,2.68572, +-0.494773,0.867809,-0.844986,-1.96849,0.616796,2.68559, +-0.494914,0.867674,-0.845052,-1.96862,0.616829,2.68545, +-0.495055,0.867539,-0.845117,-1.96876,0.61686,2.68532, +-0.495198,0.867402,-0.845181,-1.9689,0.61689,2.68518, +-0.495341,0.867264,-0.845244,-1.96903,0.616919,2.68504, +-0.495484,0.867126,-0.845305,-1.96917,0.616947,2.6849, +-0.495627,0.866988,-0.845366,-1.96931,0.616974,2.68477, +-0.49577,0.86685,-0.845427,-1.96945,0.617001,2.68463, +-0.495913,0.866712,-0.845486,-1.96959,0.617027,2.68449, +-0.496057,0.866573,-0.845545,-1.96972,0.617053,2.68435, +-0.496201,0.866434,-0.845603,-1.96986,0.617077,2.68421, +-0.496345,0.866293,-0.845659,-1.97,0.6171,2.68407, +-0.49649,0.866152,-0.845714,-1.97015,0.617121,2.68393, +-0.496635,0.866011,-0.845767,-1.97029,0.617142,2.68379, +-0.49678,0.865869,-0.845821,-1.97043,0.617162,2.68365, +-0.496925,0.865728,-0.845873,-1.97057,0.617181,2.68351, +-0.497069,0.865586,-0.845925,-1.97071,0.617199,2.68336, +-0.497214,0.865444,-0.845976,-1.97085,0.617217,2.68322, +-0.49736,0.865301,-0.846026,-1.971,0.617234,2.68308, +-0.497506,0.865157,-0.846074,-1.97114,0.617249,2.68294, +-0.497652,0.865013,-0.846121,-1.97128,0.617262,2.68279, +-0.497797,0.864869,-0.846167,-1.97143,0.617275,2.68265, +-0.497943,0.864724,-0.846212,-1.97157,0.617287,2.6825, +-0.498089,0.86458,-0.846257,-1.97172,0.617299,2.68236, +-0.498235,0.864436,-0.846301,-1.97186,0.61731,2.68221, +-0.498381,0.864292,-0.846344,-1.97201,0.61732,2.68207, +-0.498527,0.864147,-0.846385,-1.97215,0.617329,2.68192, +-0.498673,0.864002,-0.846426,-1.9723,0.617336,2.68178, +-0.498819,0.863856,-0.846465,-1.97244,0.617342,2.68163, +-0.498966,0.863709,-0.846502,-1.97259,0.617348,2.68149, +-0.499112,0.863563,-0.84654,-1.97274,0.617352,2.68134, +-0.499258,0.863417,-0.846576,-1.97288,0.617356,2.68119, +-0.499404,0.86327,-0.846612,-1.97303,0.61736,2.68105, +-0.49955,0.863124,-0.846647,-1.97317,0.617362,2.6809, +-0.499697,0.862977,-0.846681,-1.97332,0.617364,2.68075, +-0.499844,0.862829,-0.846713,-1.97347,0.617364,2.68061, +-0.49999,0.86268,-0.846744,-1.97362,0.617362,2.68046, +-0.500137,0.862532,-0.846774,-1.97377,0.61736,2.68031, +-0.500283,0.862383,-0.846803,-1.97391,0.617358,2.68016, +-0.50043,0.862235,-0.846831,-1.97406,0.617354,2.68001, +-0.500576,0.862087,-0.846859,-1.97421,0.61735,2.67986, +-0.500722,0.861938,-0.846886,-1.97436,0.617346,2.67972, +-0.500869,0.86179,-0.846911,-1.97451,0.61734,2.67957, +-0.501015,0.86164,-0.846935,-1.97466,0.617332,2.67942, +-0.501161,0.86149,-0.846958,-1.97481,0.617324,2.67927, +-0.501307,0.86134,-0.84698,-1.97496,0.617314,2.67912, +-0.501453,0.861191,-0.847001,-1.97511,0.617303,2.67897, +-0.501599,0.861041,-0.847022,-1.97526,0.617291,2.67882, +-0.501745,0.860892,-0.847041,-1.97541,0.617279,2.67867, +-0.50189,0.860742,-0.84706,-1.97556,0.617265,2.67852, +-0.502035,0.860592,-0.847077,-1.97571,0.61725,2.67837, +-0.50218,0.860442,-0.847093,-1.97586,0.617233,2.67822, +-0.502326,0.860292,-0.847108,-1.97601,0.617215,2.67807, +-0.502471,0.860141,-0.847122,-1.97616,0.617196,2.67792, +-0.502616,0.859991,-0.847134,-1.97631,0.617175,2.67777, +-0.50276,0.859842,-0.847147,-1.97646,0.617154,2.67762, +-0.502905,0.859692,-0.847158,-1.97661,0.617131,2.67747, +-0.503048,0.859543,-0.847169,-1.97675,0.617107,2.67732, +-0.503192,0.859393,-0.847178,-1.9769,0.617082,2.67717, +-0.503336,0.859242,-0.847186,-1.97706,0.617055,2.67702, +-0.503479,0.859092,-0.847192,-1.97721,0.617026,2.67687, +-0.503623,0.858941,-0.847198,-1.97736,0.616996,2.67672, +-0.503767,0.858791,-0.847203,-1.97751,0.616965,2.67657, +-0.50391,0.858641,-0.847207,-1.97766,0.616932,2.67642, +-0.504053,0.858491,-0.847211,-1.97781,0.616899,2.67627, +-0.504195,0.858341,-0.847213,-1.97796,0.616864,2.67612, +-0.504337,0.858191,-0.847215,-1.97811,0.616827,2.67597, +-0.504479,0.858041,-0.847215,-1.97826,0.616789,2.67582, +-0.50462,0.85789,-0.847213,-1.97841,0.616748,2.67567, +-0.504762,0.85774,-0.847211,-1.97856,0.616706,2.67552, +-0.504904,0.85759,-0.847208,-1.97871,0.616663,2.67537, +-0.505045,0.857441,-0.847205,-1.97886,0.616618,2.67522, +-0.505186,0.857292,-0.8472,-1.97901,0.616573,2.67507, +-0.505326,0.857143,-0.847195,-1.97915,0.616525,2.67492, +-0.505466,0.856994,-0.847189,-1.9793,0.616476,2.67477, +-0.505605,0.856844,-0.847181,-1.97945,0.616425,2.67462, +-0.505744,0.856695,-0.847172,-1.9796,0.616372,2.67447, +-0.505882,0.856546,-0.847161,-1.97975,0.616317,2.67432, +-0.506021,0.856397,-0.847149,-1.9799,0.61626,2.67417, +-0.506159,0.856249,-0.847137,-1.98005,0.616203,2.67403, +-0.506297,0.856101,-0.847124,-1.9802,0.616144,2.67388, +-0.506434,0.855954,-0.847109,-1.98034,0.616083,2.67373, +-0.506571,0.855807,-0.847093,-1.98049,0.61602,2.67358, +-0.506706,0.855659,-0.847075,-1.98064,0.615955,2.67344, +-0.506842,0.855512,-0.847055,-1.98079,0.615888,2.67329, +-0.506977,0.855364,-0.847034,-1.98093,0.615819,2.67314, +-0.507111,0.855218,-0.847012,-1.98108,0.615749,2.673, +-0.507246,0.855072,-0.846989,-1.98123,0.615677,2.67285, +-0.50738,0.854927,-0.846964,-1.98137,0.615603,2.6727, +-0.507513,0.854782,-0.846939,-1.98152,0.615528,2.67256, +-0.507646,0.854637,-0.846911,-1.98166,0.615451,2.67242, +-0.507777,0.854492,-0.846882,-1.98181,0.615371,2.67227, +-0.507908,0.854347,-0.84685,-1.98195,0.615289,2.67213, +-0.508039,0.854203,-0.846817,-1.98209,0.615205,2.67198, +-0.508169,0.854059,-0.846783,-1.98224,0.615119,2.67184, +-0.508299,0.853917,-0.846748,-1.98238,0.615032,2.67169, +-0.508429,0.853775,-0.846711,-1.98252,0.614943,2.67155, +-0.508557,0.853635,-0.846672,-1.98266,0.614852,2.67141, +-0.508685,0.853497,-0.846632,-1.9828,0.614759,2.67127, +-0.508811,0.85336,-0.846589,-1.98294,0.614664,2.67114, +-0.508936,0.853225,-0.846545,-1.98307,0.614567,2.671, +-0.509059,0.853091,-0.846499,-1.98321,0.614469,2.67087, +-0.50918,0.852958,-0.846451,-1.98334,0.614369,2.67074, +-0.5093,0.852825,-0.846403,-1.98347,0.614269,2.6706, +-0.509417,0.852694,-0.846353,-1.9836,0.614167,2.67047, +-0.509533,0.852564,-0.846301,-1.98373,0.614064,2.67034, +-0.509646,0.852435,-0.846247,-1.98386,0.613959,2.67021, +-0.509758,0.852308,-0.846191,-1.98399,0.613852,2.67009, +-0.509868,0.852183,-0.846134,-1.98411,0.613745,2.66996, +-0.509978,0.852059,-0.846075,-1.98424,0.613636,2.66984, +-0.510086,0.851935,-0.846014,-1.98436,0.613526,2.66971, +-0.510193,0.851813,-0.845952,-1.98448,0.613416,2.66959, +-0.5103,0.851691,-0.845889,-1.98461,0.613305,2.66947, +-0.510405,0.851571,-0.845824,-1.98473,0.613193,2.66935, +-0.510509,0.851452,-0.845757,-1.98484,0.61308,2.66923, +-0.510611,0.851335,-0.845689,-1.98496,0.612965,2.66911, +-0.510712,0.851219,-0.845618,-1.98508,0.612849,2.669, +-0.510811,0.851104,-0.845546,-1.98519,0.612733,2.66888, +-0.51091,0.85099,-0.845473,-1.98531,0.612616,2.66877, +-0.511008,0.850877,-0.845398,-1.98542,0.612499,2.66866, +-0.511105,0.850765,-0.845323,-1.98553,0.612381,2.66854, +-0.511201,0.850654,-0.845246,-1.98564,0.612263,2.66843, +-0.511295,0.850544,-0.845167,-1.98575,0.612143,2.66832, +-0.511388,0.850436,-0.845086,-1.98586,0.612022,2.66821, +-0.51148,0.850329,-0.845003,-1.98597,0.611901,2.66811, +-0.51157,0.850223,-0.844919,-1.98607,0.611779,2.668, +-0.511659,0.850118,-0.844835,-1.98618,0.611657,2.6679, +-0.511748,0.850014,-0.844749,-1.98628,0.611534,2.66779, +-0.511836,0.84991,-0.844662,-1.98639,0.611411,2.66769, +-0.511922,0.849808,-0.844574,-1.98649,0.611288,2.66759, +-0.512008,0.849707,-0.844484,-1.98659,0.611164,2.66748, +-0.512091,0.849607,-0.844392,-1.98669,0.611038,2.66739, +-0.512174,0.849509,-0.844299,-1.98679,0.610912,2.66729, +-0.512255,0.849412,-0.844205,-1.98689,0.610786,2.66719, +-0.512336,0.849315,-0.84411,-1.98698,0.610659,2.66709, +-0.512415,0.84922,-0.844015,-1.98708,0.610533,2.667, +-0.512494,0.849124,-0.843918,-1.98717,0.610406,2.6669, +-0.512572,0.84903,-0.843821,-1.98727,0.610278,2.66681, +-0.512649,0.848938,-0.843722,-1.98736,0.61015,2.66672, +-0.512724,0.848846,-0.843621,-1.98745,0.610021,2.66662, +-0.512798,0.848756,-0.843519,-1.98754,0.609891,2.66653, +-0.512871,0.848667,-0.843417,-1.98763,0.609761,2.66645, +-0.512943,0.848579,-0.843313,-1.98772,0.60963,2.66636, +-0.513014,0.848491,-0.843209,-1.98781,0.6095,2.66627, +-0.513084,0.848404,-0.843105,-1.98789,0.609369,2.66618, +-0.513154,0.848318,-0.842999,-1.98798,0.609238,2.6661, +-0.513222,0.848233,-0.842892,-1.98806,0.609107,2.66601, +-0.513289,0.84815,-0.842784,-1.98815,0.608974,2.66593, +-0.513354,0.848068,-0.842674,-1.98823,0.608841,2.66585, +-0.513418,0.847987,-0.842564,-1.98831,0.608707,2.66576, +-0.513482,0.847906,-0.842453,-1.98839,0.608574,2.66568, +-0.513545,0.847826,-0.842342,-1.98847,0.60844,2.6656, +-0.513607,0.847747,-0.84223,-1.98855,0.608306,2.66553, +-0.513668,0.847669,-0.842117,-1.98863,0.608172,2.66545, +-0.513728,0.847592,-0.842003,-1.9887,0.608037,2.66537, +-0.513787,0.847517,-0.841888,-1.98878,0.607901,2.66529, +-0.513844,0.847442,-0.841772,-1.98885,0.607765,2.66522, +-0.5139,0.847369,-0.841655,-1.98893,0.607628,2.66515, +-0.513956,0.847296,-0.841538,-1.989,0.607491,2.66507, +-0.51401,0.847224,-0.84142,-1.98907,0.607354,2.665, +-0.514064,0.847153,-0.841301,-1.98914,0.607217,2.66493, +-0.514118,0.847082,-0.841182,-1.98921,0.60708,2.66486, +-0.514169,0.847013,-0.841062,-1.98928,0.606942,2.66479, +-0.51422,0.846945,-0.840941,-1.98935,0.606803,2.66472, +-0.514269,0.846879,-0.840818,-1.98942,0.606664,2.66466, +-0.514317,0.846813,-0.840695,-1.98948,0.606524,2.66459, +-0.514364,0.846748,-0.840571,-1.98955,0.606384,2.66453, +-0.514411,0.846683,-0.840447,-1.98961,0.606245,2.66446, +-0.514457,0.84662,-0.840322,-1.98968,0.606105,2.6644, +-0.514503,0.846557,-0.840196,-1.98974,0.605965,2.66433, +-0.514546,0.846495,-0.840068,-1.9898,0.605824,2.66427, +-0.514589,0.846435,-0.83994,-1.98986,0.605682,2.66421, +-0.51463,0.846376,-0.839811,-1.98992,0.60554,2.66415, +-0.51467,0.846318,-0.839682,-1.98998,0.605398,2.6641, +-0.51471,0.846261,-0.839552,-1.99004,0.605255,2.66404, +-0.514748,0.846204,-0.839423,-1.99009,0.605113,2.66398, +-0.514787,0.846148,-0.839293,-1.99015,0.604971,2.66393, +-0.514824,0.846092,-0.839163,-1.9902,0.604828,2.66387, +-0.51486,0.846038,-0.839031,-1.99026,0.604685,2.66382, +-0.514894,0.845986,-0.838899,-1.99031,0.604541,2.66376, +-0.514927,0.845935,-0.838766,-1.99036,0.604397,2.66371, +-0.514959,0.845884,-0.838633,-1.99041,0.604253,2.66366, +-0.514991,0.845835,-0.838498,-1.99046,0.604109,2.66361, +-0.515022,0.845786,-0.838364,-1.99051,0.603965,2.66356, +-0.515052,0.845738,-0.838229,-1.99056,0.603822,2.66352, +-0.515081,0.84569,-0.838093,-1.99061,0.603677,2.66347, +-0.515109,0.845644,-0.837956,-1.99065,0.603533,2.66342, +-0.515135,0.8456,-0.837818,-1.9907,0.603387,2.66338, +-0.51516,0.845557,-0.83768,-1.99074,0.603241,2.66333, +-0.515184,0.845514,-0.83754,-1.99078,0.603095,2.66329, +-0.515208,0.845473,-0.837401,-1.99082,0.602949,2.66325, +-0.51523,0.845432,-0.837261,-1.99087,0.602804,2.66321, +-0.515253,0.845391,-0.837122,-1.99091,0.602658,2.66317, +-0.515274,0.845352,-0.836981,-1.99095,0.602512,2.66313, +-0.515294,0.845314,-0.83684,-1.99098,0.602365,2.66309, +-0.515312,0.845277,-0.836698,-1.99102,0.602218,2.66306, +-0.515329,0.845242,-0.836555,-1.99106,0.602072,2.66302, +-0.515345,0.845207,-0.836412,-1.99109,0.601925,2.66299, +-0.515361,0.845173,-0.836268,-1.99112,0.601778,2.66295, +-0.515376,0.84514,-0.836125,-1.99116,0.601632,2.66292, +-0.51539,0.845108,-0.835981,-1.99119,0.601485,2.66289, +-0.515403,0.845077,-0.835837,-1.99122,0.601339,2.66285, +-0.515415,0.845047,-0.835693,-1.99125,0.601192,2.66282, +-0.515425,0.845018,-0.835547,-1.99128,0.601045,2.6628, +-0.515435,0.844991,-0.835401,-1.99131,0.600899,2.66277, +-0.515443,0.844964,-0.835255,-1.99133,0.600752,2.66274, +-0.515451,0.844939,-0.835109,-1.99136,0.600606,2.66272, +-0.515458,0.844914,-0.834962,-1.99138,0.60046,2.66269, +-0.515464,0.844889,-0.834816,-1.99141,0.600314,2.66267, +-0.515469,0.844866,-0.834669,-1.99143,0.600168,2.66264, +-0.515473,0.844844,-0.834522,-1.99145,0.600022,2.66262, +-0.515476,0.844824,-0.834374,-1.99147,0.599877,2.6626, +-0.515477,0.844805,-0.834226,-1.99149,0.599731,2.66258, +-0.515478,0.844786,-0.834077,-1.99151,0.599585,2.66256, +-0.515478,0.844769,-0.833929,-1.99153,0.599439,2.66255, +-0.515477,0.844752,-0.833781,-1.99155,0.599294,2.66253, +-0.515476,0.844736,-0.833632,-1.99156,0.599149,2.66251, +-0.515474,0.844721,-0.833484,-1.99158,0.599004,2.6625, +-0.515471,0.844707,-0.833335,-1.99159,0.59886,2.66249, +-0.515466,0.844695,-0.833185,-1.9916,0.598715,2.66247, +-0.51546,0.844684,-0.833035,-1.99161,0.598571,2.66246, +-0.515453,0.844673,-0.832885,-1.99162,0.598427,2.66245, +-0.515445,0.844664,-0.832735,-1.99163,0.598283,2.66244, +-0.515436,0.844655,-0.832585,-1.99164,0.598139,2.66243, +-0.515427,0.844647,-0.832436,-1.99165,0.597995,2.66243, +-0.515417,0.84464,-0.832286,-1.99166,0.597852,2.66242, +-0.515405,0.844634,-0.832136,-1.99166,0.597709,2.66241, +-0.515391,0.84463,-0.831985,-1.99167,0.597567,2.66241, +-0.515376,0.844627,-0.831834,-1.99167,0.597425,2.6624, +-0.51536,0.844624,-0.831683,-1.99167,0.597283,2.6624, +-0.515343,0.844623,-0.831532,-1.99167,0.59714,2.6624, +-0.515325,0.844622,-0.831382,-1.99168,0.596998,2.6624, +-0.515306,0.844621,-0.831231,-1.99168,0.596856,2.6624, +-0.515285,0.844622,-0.831081,-1.99168,0.596715,2.6624, +-0.515264,0.844624,-0.83093,-1.99167,0.596575,2.6624, +-0.51524,0.844627,-0.830779,-1.99167,0.596435,2.66241, +-0.515215,0.844632,-0.830627,-1.99167,0.596295,2.66241, +-0.515188,0.844637,-0.830476,-1.99166,0.596156,2.66242, +-0.515161,0.844644,-0.830325,-1.99165,0.596016,2.66242, +-0.515132,0.844651,-0.830174,-1.99165,0.595876,2.66243, +-0.515102,0.844658,-0.830023,-1.99164,0.595737,2.66244, +-0.515071,0.844667,-0.829873,-1.99163,0.595598,2.66245, +-0.515038,0.844677,-0.829722,-1.99162,0.595461,2.66246, +-0.515003,0.844689,-0.829571,-1.99161,0.595323,2.66247, +-0.514966,0.844702,-0.82942,-1.9916,0.595187,2.66248, +-0.514928,0.844716,-0.829268,-1.99158,0.59505,2.66249, +-0.514889,0.844732,-0.829118,-1.99157,0.594914,2.66251, +-0.514848,0.844748,-0.828967,-1.99155,0.594778,2.66253, +-0.514806,0.844765,-0.828817,-1.99153,0.594642,2.66254, +-0.514763,0.844784,-0.828667,-1.99151,0.594507,2.66256, +-0.514718,0.844804,-0.828517,-1.99149,0.594372,2.66258, +-0.514671,0.844826,-0.828367,-1.99147,0.594239,2.6626, +-0.514622,0.844849,-0.828216,-1.99145,0.594106,2.66263, +-0.514571,0.844874,-0.828066,-1.99142,0.593973,2.66265, +-0.514519,0.844901,-0.827916,-1.9914,0.593841,2.66268, +-0.514466,0.844928,-0.827766,-1.99137,0.593709,2.66271, +-0.514411,0.844956,-0.827617,-1.99134,0.593577,2.66273, +-0.514355,0.844986,-0.827469,-1.99131,0.593445,2.66276, +-0.514297,0.845018,-0.82732,-1.99128,0.593315,2.6628, +-0.514236,0.845051,-0.827171,-1.99125,0.593185,2.66283, +-0.514174,0.845086,-0.827022,-1.99121,0.593056,2.66286, +-0.51411,0.845123,-0.826873,-1.99117,0.592928,2.6629, +-0.514044,0.845161,-0.826725,-1.99114,0.5928,2.66294, +-0.513977,0.845201,-0.826577,-1.9911,0.592672,2.66298, +-0.513909,0.845241,-0.82643,-1.99106,0.592545,2.66302, +-0.513838,0.845283,-0.826283,-1.99101,0.592419,2.66306, +-0.513766,0.845328,-0.826136,-1.99097,0.592293,2.66311, +-0.513692,0.845374,-0.825989,-1.99092,0.592169,2.66315, +-0.513615,0.845422,-0.825842,-1.99088,0.592045,2.6632, +-0.513536,0.845472,-0.825695,-1.99083,0.591922,2.66325, +-0.513456,0.845523,-0.825549,-1.99077,0.591799,2.6633, +-0.513375,0.845576,-0.825404,-1.99072,0.591677,2.66335, +-0.513291,0.84563,-0.82526,-1.99067,0.591555,2.66341, +-0.513206,0.845687,-0.825115,-1.99061,0.591434,2.66346, +-0.513119,0.845745,-0.824971,-1.99055,0.591313,2.66352, +-0.51303,0.845805,-0.824827,-1.99049,0.591194,2.66358, +-0.512938,0.845867,-0.824683,-1.99043,0.591076,2.66365, +-0.512845,0.845931,-0.82454,-1.99037,0.59096,2.66371, +-0.51275,0.845997,-0.824397,-1.9903,0.590844,2.66377, +-0.512654,0.846064,-0.824255,-1.99023,0.59073,2.66384, +-0.512557,0.846132,-0.824114,-1.99016,0.590616,2.66391, +-0.512457,0.846203,-0.823974,-1.99009,0.590504,2.66398, +-0.512356,0.846275,-0.823834,-1.99002,0.590394,2.66405, +-0.512253,0.84635,-0.823694,-1.98995,0.590285,2.66413, +-0.512149,0.846426,-0.823555,-1.98987,0.590178,2.6642, +-0.512043,0.846504,-0.823416,-1.98979,0.590072,2.66428, +-0.511937,0.846583,-0.823279,-1.98971,0.589968,2.66436, +-0.511829,0.846664,-0.823142,-1.98963,0.589864,2.66444, +-0.511721,0.846745,-0.823007,-1.98955,0.589762,2.66452, +-0.511611,0.846829,-0.822873,-1.98947,0.58966,2.66461, +-0.5115,0.846914,-0.822739,-1.98938,0.589561,2.66469, +-0.511388,0.847001,-0.822605,-1.9893,0.589463,2.66478, +-0.511274,0.84709,-0.822473,-1.98921,0.589366,2.66487, +-0.51116,0.84718,-0.822341,-1.98912,0.589271,2.66496, +-0.511045,0.847271,-0.822211,-1.98903,0.589176,2.66505, +-0.510929,0.847364,-0.822081,-1.98893,0.589083,2.66514, +-0.510813,0.847457,-0.821954,-1.98884,0.58899,2.66523, +-0.510696,0.847552,-0.821827,-1.98875,0.588899,2.66533, +-0.510577,0.847648,-0.821701,-1.98865,0.588809,2.66543, +-0.510458,0.847746,-0.821575,-1.98855,0.588721,2.66552, +-0.510338,0.847846,-0.82145,-1.98845,0.588634,2.66562, +-0.510217,0.847946,-0.821327,-1.98835,0.588548,2.66572, +-0.510096,0.848048,-0.821205,-1.98825,0.588463,2.66583, +-0.509974,0.84815,-0.821084,-1.98815,0.588379,2.66593, +-0.509852,0.848253,-0.820965,-1.98804,0.588296,2.66603, +-0.509729,0.848357,-0.820847,-1.98794,0.588214,2.66614, +-0.509606,0.848463,-0.820729,-1.98783,0.588134,2.66624, +-0.509481,0.848569,-0.820613,-1.98773,0.588055,2.66635, +-0.509356,0.848678,-0.820497,-1.98762,0.587978,2.66646, +-0.50923,0.848786,-0.820382,-1.98751,0.587901,2.66656, +-0.509104,0.848896,-0.820269,-1.9874,0.587826,2.66667, +-0.508978,0.849006,-0.820158,-1.98729,0.587751,2.66678, +-0.508851,0.849117,-0.820047,-1.98718,0.587677,2.66689, +-0.508724,0.849228,-0.819938,-1.98707,0.587604,2.66701, +-0.508597,0.849341,-0.81983,-1.98696,0.587533,2.66712, +-0.508468,0.849455,-0.819723,-1.98684,0.587463,2.66723, +-0.508339,0.84957,-0.819616,-1.98673,0.587395,2.66735, +-0.508209,0.849685,-0.819511,-1.98661,0.587327,2.66746, +-0.508079,0.849801,-0.819407,-1.9865,0.587261,2.66758, +-0.507949,0.849918,-0.819304,-1.98638,0.587195,2.6677, +-0.507819,0.850035,-0.819204,-1.98626,0.58713,2.66781, +-0.507688,0.850153,-0.819106,-1.98614,0.587066,2.66793, +-0.507557,0.850271,-0.81901,-1.98603,0.587003,2.66805, +-0.507425,0.850391,-0.818917,-1.98591,0.586942,2.66817, +-0.507292,0.850512,-0.818826,-1.98578,0.586882,2.66829, +-0.507158,0.850634,-0.818739,-1.98566,0.586824,2.66841, +-0.507025,0.850756,-0.818655,-1.98554,0.586766,2.66853, +-0.506892,0.850879,-0.818574,-1.98542,0.586709,2.66866, +-0.506758,0.851002,-0.818495,-1.9853,0.586652,2.66878, +-0.506624,0.851126,-0.818419,-1.98517,0.586597,2.6689, +-0.50649,0.851251,-0.818346,-1.98505,0.586543,2.66903, +-0.506354,0.851377,-0.818274,-1.98492,0.58649,2.66915, +-0.506218,0.851503,-0.818204,-1.98479,0.586439,2.66928, +-0.506082,0.85163,-0.818135,-1.98467,0.586389,2.66941, +-0.505945,0.851756,-0.818067,-1.98454,0.58634,2.66953, +-0.505809,0.851883,-0.818001,-1.98441,0.586291,2.66966, +-0.505672,0.852009,-0.817935,-1.98429,0.586243,2.66979, +-0.505535,0.852136,-0.817871,-1.98416,0.586196,2.66991, +-0.505398,0.852264,-0.817807,-1.98403,0.58615,2.67004, +-0.50526,0.852393,-0.817744,-1.9839,0.586106,2.67017, +-0.505121,0.852522,-0.817681,-1.98377,0.586063,2.6703, +-0.504983,0.852653,-0.817618,-1.98364,0.586021,2.67043, +-0.504844,0.852783,-0.817554,-1.98351,0.58598,2.67056, +-0.504706,0.852914,-0.817491,-1.98338,0.585939,2.67069, +-0.504567,0.853046,-0.817429,-1.98325,0.5859,2.67082, +-0.504428,0.853178,-0.817366,-1.98312,0.585861,2.67096, +-0.504289,0.853311,-0.817305,-1.98299,0.585824,2.67109, +-0.504148,0.853445,-0.817244,-1.98285,0.585788,2.67122, +-0.504007,0.85358,-0.817184,-1.98272,0.585753,2.67136, +-0.503865,0.853716,-0.817125,-1.98258,0.58572,2.67149, +-0.503724,0.853852,-0.817067,-1.98245,0.585687,2.67163, +-0.503582,0.853988,-0.817008,-1.98231,0.585654,2.67177, +-0.503441,0.854124,-0.81695,-1.98217,0.585623,2.6719, +-0.503299,0.854261,-0.816893,-1.98204,0.585592,2.67204, +-0.503156,0.854399,-0.816836,-1.9819,0.585563,2.67218, +-0.503013,0.854538,-0.81678,-1.98176,0.585535,2.67232, +-0.502869,0.854677,-0.816726,-1.98162,0.585508,2.67246, +-0.502725,0.854817,-0.816672,-1.98148,0.585482,2.6726, +-0.502581,0.854957,-0.816619,-1.98134,0.585457,2.67274, +-0.502437,0.855097,-0.816566,-1.9812,0.585433,2.67288, +-0.502292,0.855237,-0.816514,-1.98106,0.585409,2.67302, +-0.502148,0.855378,-0.816463,-1.98092,0.585387,2.67316, +-0.502003,0.85552,-0.816413,-1.98078,0.585365,2.6733, +-0.501857,0.855662,-0.816363,-1.98064,0.585345,2.67344, +-0.501711,0.855805,-0.816315,-1.98049,0.585327,2.67358, +-0.501565,0.855948,-0.816268,-1.98035,0.585309,2.67373, +-0.501419,0.856091,-0.816222,-1.98021,0.585292,2.67387, +-0.501273,0.856235,-0.816175,-1.98006,0.585275,2.67401, +-0.501127,0.856378,-0.81613,-1.97992,0.58526,2.67416, +-0.500981,0.856522,-0.816085,-1.97978,0.585245,2.6743, +-0.500834,0.856667,-0.816041,-1.97963,0.585232,2.67444, +-0.500687,0.856812,-0.815999,-1.97949,0.58522,2.67459, +-0.50054,0.856958,-0.815958,-1.97934,0.585209,2.67474, +-0.500393,0.857104,-0.815917,-1.97919,0.585199,2.67488, +-0.500247,0.85725,-0.815878,-1.97905,0.58519,2.67503, +-0.5001,0.857396,-0.815839,-1.9789,0.585181,2.67517, +-0.499953,0.857542,-0.8158,-1.97876,0.585174,2.67532, +-0.499806,0.857688,-0.815763,-1.97861,0.585167,2.67547, +-0.499659,0.857835,-0.815727,-1.97846,0.585161,2.67561, +-0.499512,0.857983,-0.815692,-1.97831,0.585157,2.67576, +-0.499364,0.858131,-0.815658,-1.97817,0.585154,2.67591, +-0.499217,0.858279,-0.815626,-1.97802,0.585152,2.67606, +-0.49907,0.858427,-0.815594,-1.97787,0.58515,2.67621, +-0.498923,0.858575,-0.815562,-1.97772,0.585149,2.67635, +-0.498776,0.858723,-0.815531,-1.97757,0.585149,2.6765, +-0.498629,0.858871,-0.815501,-1.97743,0.58515,2.67665, +-0.498482,0.85902,-0.815473,-1.97728,0.585152,2.6768, +-0.498335,0.859169,-0.815446,-1.97713,0.585155,2.67695, +-0.498188,0.859319,-0.81542,-1.97698,0.58516,2.6771, +-0.498041,0.859468,-0.815395,-1.97683,0.585165,2.67725, +-0.497895,0.859618,-0.81537,-1.97668,0.585172,2.6774, +-0.497748,0.859767,-0.815347,-1.97653,0.585178,2.67755, +-0.497602,0.859917,-0.815324,-1.97638,0.585186,2.67769, +-0.497456,0.860066,-0.815302,-1.97623,0.585195,2.67784, +-0.497309,0.860216,-0.815281,-1.97608,0.585205,2.67799, +-0.497163,0.860366,-0.815262,-1.97593,0.585216,2.67814, +-0.497017,0.860517,-0.815244,-1.97578,0.585229,2.67829, +-0.496871,0.860667,-0.815227,-1.97563,0.585243,2.67845, +-0.496725,0.860818,-0.81521,-1.97548,0.585258,2.6786, +-0.496579,0.860968,-0.815194,-1.97533,0.585274,2.67875, +-0.496434,0.861118,-0.815179,-1.97518,0.585291,2.6789, +-0.496289,0.861268,-0.815165,-1.97503,0.585309,2.67905, +-0.496144,0.861418,-0.815153,-1.97488,0.585329,2.6792, +-0.495999,0.861569,-0.815141,-1.97473,0.585351,2.67935, +-0.495854,0.86172,-0.815131,-1.97458,0.585374,2.6795, +-0.495709,0.861871,-0.815122,-1.97443,0.585398,2.67965, +-0.495564,0.862021,-0.815114,-1.97428,0.585424,2.6798, +-0.49542,0.862172,-0.815106,-1.97413,0.58545,2.67995, +-0.495276,0.862322,-0.815099,-1.97398,0.585478,2.6801, +-0.495133,0.862472,-0.815093,-1.97383,0.585507,2.68025, +-0.49499,0.862622,-0.815088,-1.97368,0.585537,2.6804, +-0.494847,0.862772,-0.815084,-1.97352,0.58557,2.68055, +-0.494704,0.862923,-0.815082,-1.97337,0.585604,2.6807, +-0.494561,0.863074,-0.815081,-1.97322,0.58564,2.68085, +-0.494418,0.863224,-0.81508,-1.97307,0.585677,2.681, +-0.494276,0.863374,-0.81508,-1.97292,0.585715,2.68115, +-0.494134,0.863523,-0.815081,-1.97277,0.585754,2.6813, +-0.493992,0.863673,-0.815082,-1.97262,0.585795,2.68145, +-0.493852,0.863822,-0.815085,-1.97247,0.585838,2.6816, +-0.493711,0.863972,-0.815089,-1.97233,0.585883,2.68175, +-0.493571,0.864122,-0.815095,-1.97218,0.585929,2.6819, +-0.493431,0.864272,-0.815101,-1.97203,0.585977,2.68205, +-0.493291,0.864421,-0.815109,-1.97188,0.586027,2.6822, +-0.493151,0.864569,-0.815117,-1.97173,0.586078,2.68235, +-0.493012,0.864718,-0.815126,-1.97158,0.58613,2.6825, +-0.492873,0.864866,-0.815136,-1.97143,0.586184,2.68264, +-0.492735,0.865014,-0.815148,-1.97128,0.58624,2.68279, +-0.492598,0.865162,-0.815161,-1.97114,0.586297,2.68294, +-0.492461,0.86531,-0.815175,-1.97099,0.586357,2.68309, +-0.492325,0.865458,-0.815191,-1.97084,0.586419,2.68324, +-0.492188,0.865606,-0.815208,-1.97069,0.586482,2.68338, +-0.492052,0.865752,-0.815226,-1.97055,0.586547,2.68353, +-0.491916,0.865899,-0.815245,-1.9704,0.586613,2.68368, +-0.491779,0.866044,-0.815266,-1.97025,0.586681,2.68382, +-0.491642,0.86619,-0.815288,-1.97011,0.586751,2.68397, +-0.491505,0.866336,-0.815311,-1.96996,0.586823,2.68411, +-0.491368,0.866482,-0.815337,-1.96982,0.586897,2.68426, +-0.491231,0.866628,-0.815364,-1.96967,0.586973,2.68441, +-0.491094,0.866773,-0.815393,-1.96953,0.587051,2.68455, +-0.490959,0.866917,-0.815422,-1.96938,0.587131,2.68469, +-0.490823,0.86706,-0.815453,-1.96924,0.587212,2.68484, +-0.490688,0.867203,-0.815485,-1.96909,0.587295,2.68498, +-0.490553,0.867346,-0.815519,-1.96895,0.58738,2.68512, +-0.490419,0.867489,-0.815555,-1.96881,0.587467,2.68527, +-0.490284,0.867632,-0.815593,-1.96867,0.587557,2.68541, +-0.490151,0.867774,-0.815633,-1.96852,0.587648,2.68555, +-0.490018,0.867915,-0.815674,-1.96838,0.58774,2.68569, +-0.489887,0.868055,-0.815716,-1.96824,0.587835,2.68583, +-0.489757,0.868195,-0.81576,-1.9681,0.58793,2.68597, +-0.489627,0.868333,-0.815805,-1.96796,0.588027,2.68611, +-0.489498,0.868472,-0.815853,-1.96783,0.588127,2.68625, +-0.489369,0.86861,-0.815902,-1.96769,0.588228,2.68639, +-0.489242,0.868747,-0.815953,-1.96755,0.58833,2.68653, +-0.489116,0.868884,-0.816006,-1.96741,0.588434,2.68666, +-0.488991,0.86902,-0.81606,-1.96728,0.588539,2.6868, +-0.488868,0.869154,-0.816115,-1.96714,0.588644,2.68693, +-0.488746,0.869287,-0.816172,-1.96701,0.588751,2.68707, +-0.488626,0.86942,-0.816231,-1.96688,0.588859,2.6872, +-0.488506,0.869551,-0.816291,-1.96675,0.588968,2.68733, +-0.488387,0.869682,-0.816353,-1.96662,0.589079,2.68746, +-0.48827,0.869813,-0.816418,-1.96648,0.589191,2.68759, +-0.488154,0.869942,-0.816483,-1.96636,0.589303,2.68772, +-0.48804,0.87007,-0.816551,-1.96623,0.589417,2.68785, +-0.487927,0.870197,-0.816619,-1.9661,0.589531,2.68797, +-0.487816,0.870322,-0.816689,-1.96598,0.589645,2.6881, +-0.487707,0.870446,-0.81676,-1.96585,0.589761,2.68822, +-0.487598,0.870569,-0.816833,-1.96573,0.589877,2.68835, +-0.487491,0.870692,-0.816908,-1.96561,0.589995,2.68847, +-0.487385,0.870814,-0.816985,-1.96548,0.590114,2.68859, +-0.48728,0.870935,-0.817063,-1.96536,0.590233,2.68871, +-0.487177,0.871054,-0.817143,-1.96524,0.590353,2.68883, +-0.487076,0.871171,-0.817223,-1.96513,0.590473,2.68895, +-0.486977,0.871288,-0.817305,-1.96501,0.590593,2.68907, +-0.48688,0.871403,-0.817388,-1.96489,0.590714,2.68918, +-0.486786,0.871517,-0.817472,-1.96478,0.590836,2.6893, +-0.486695,0.87163,-0.817559,-1.96467,0.590959,2.68941, +-0.486608,0.871743,-0.817647,-1.96455,0.591083,2.68952, +-0.486523,0.871854,-0.817736,-1.96444,0.591207,2.68963, +-0.486442,0.871964,-0.817826,-1.96433,0.591332,2.68974, +-0.486363,0.872072,-0.817917,-1.96422,0.591457,2.68985, +-0.486287,0.872179,-0.818009,-1.96412,0.591582,2.68996, +-0.486214,0.872285,-0.818102,-1.96401,0.591707,2.69006, +-0.486143,0.872389,-0.818197,-1.96391,0.591833,2.69017, +-0.486073,0.872493,-0.818293,-1.9638,0.591961,2.69027, +-0.486006,0.872596,-0.818391,-1.9637,0.592089,2.69037, +-0.48594,0.872698,-0.818489,-1.9636,0.592217,2.69048, +-0.485875,0.872799,-0.818589,-1.9635,0.592346,2.69058, +-0.485811,0.872898,-0.818689,-1.9634,0.592474,2.69068, +-0.485748,0.872995,-0.81879,-1.9633,0.592603,2.69077, +-0.485687,0.873089,-0.818891,-1.96321,0.592733,2.69087, +-0.485626,0.873182,-0.818995,-1.96312,0.592863,2.69096, +-0.485566,0.873271,-0.819099,-1.96303,0.592993,2.69105, +-0.485507,0.873358,-0.819205,-1.96294,0.593125,2.69114, +-0.485448,0.873442,-0.819311,-1.96286,0.593257,2.69122, +-0.485388,0.873522,-0.819419,-1.96277,0.593389,2.6913, +-0.485329,0.8736,-0.819526,-1.9627,0.593521,2.69138, +-0.48527,0.873675,-0.819635,-1.96262,0.593654,2.69145, +-0.485212,0.873747,-0.819744,-1.96255,0.593786,2.69153, +-0.485154,0.873818,-0.819855,-1.96248,0.59392,2.6916, +-0.485098,0.873886,-0.819967,-1.96241,0.594054,2.69166, +-0.485042,0.873953,-0.82008,-1.96234,0.594189,2.69173, +-0.484987,0.874018,-0.820193,-1.96228,0.594324,2.6918, +-0.484933,0.874083,-0.820308,-1.96221,0.594459,2.69186, +-0.484879,0.874146,-0.820422,-1.96215,0.594595,2.69192, +-0.484826,0.874208,-0.820538,-1.96209,0.59473,2.69199, +-0.484774,0.87427,-0.820654,-1.96203,0.594866,2.69205, +-0.484722,0.87433,-0.820771,-1.96197,0.595003,2.69211, +-0.484672,0.87439,-0.820889,-1.96191,0.59514,2.69217, +-0.484623,0.87445,-0.821009,-1.96185,0.595278,2.69223, +-0.484575,0.87451,-0.821129,-1.96179,0.595416,2.69229, +-0.484527,0.874569,-0.82125,-1.96173,0.595555,2.69235, +-0.48448,0.874629,-0.821371,-1.96167,0.595693,2.69241, +-0.484433,0.874688,-0.821492,-1.96161,0.595831,2.69247, +-0.484387,0.874747,-0.821615,-1.96155,0.59597,2.69253, +-0.484342,0.874805,-0.821738,-1.96149,0.59611,2.69258, +-0.484298,0.874862,-0.821863,-1.96143,0.59625,2.69264, +-0.484255,0.874919,-0.821989,-1.96138,0.596391,2.6927, +-0.484213,0.874974,-0.822115,-1.96132,0.596532,2.69275, +-0.484172,0.875029,-0.822242,-1.96127,0.596673,2.69281, +-0.484132,0.875084,-0.822369,-1.96121,0.596814,2.69286, +-0.484092,0.875139,-0.822496,-1.96116,0.596955,2.69292, +-0.484053,0.875192,-0.822625,-1.9611,0.597097,2.69297, +-0.484015,0.875245,-0.822754,-1.96105,0.597239,2.69302, +-0.483978,0.875297,-0.822884,-1.961,0.597382,2.69308, +-0.483943,0.875348,-0.823015,-1.96095,0.597525,2.69313, +-0.483909,0.875398,-0.823147,-1.9609,0.597669,2.69318, +-0.483875,0.875447,-0.82328,-1.96085,0.597813,2.69323, +-0.483842,0.875496,-0.823412,-1.9608,0.597956,2.69327, +-0.483809,0.875545,-0.823546,-1.96075,0.5981,2.69332, +-0.483777,0.875593,-0.82368,-1.9607,0.598244,2.69337, +-0.483747,0.875639,-0.823814,-1.96066,0.598388,2.69342, +-0.483717,0.875685,-0.82395,-1.96061,0.598533,2.69346, +-0.483689,0.87573,-0.824087,-1.96057,0.598679,2.69351, +-0.483662,0.875773,-0.824224,-1.96052,0.598825,2.69355, +-0.483636,0.875816,-0.824362,-1.96048,0.598971,2.69359, +-0.48361,0.875859,-0.8245,-1.96044,0.599116,2.69364, +-0.483585,0.875901,-0.824638,-1.9604,0.599262,2.69368, +-0.483561,0.875942,-0.824777,-1.96036,0.599408,2.69372, +-0.483538,0.875981,-0.824916,-1.96032,0.599554,2.69376, +-0.483516,0.87602,-0.825057,-1.96028,0.599701,2.6938, +-0.483496,0.876057,-0.825198,-1.96024,0.599848,2.69384, +-0.483477,0.876094,-0.82534,-1.9602,0.599994,2.69387, +-0.483458,0.87613,-0.825482,-1.96017,0.600141,2.69391, +-0.48344,0.876165,-0.825624,-1.96013,0.600288,2.69394, +-0.483423,0.8762,-0.825766,-1.9601,0.600434,2.69398, +-0.483406,0.876233,-0.825908,-1.96006,0.600581,2.69401, +-0.483391,0.876266,-0.826052,-1.96003,0.600728,2.69404, +-0.483377,0.876297,-0.826196,-1.96,0.600874,2.69408, +-0.483364,0.876327,-0.82634,-1.95997,0.601021,2.69411, +-0.483353,0.876356,-0.826485,-1.95994,0.601168,2.69413, +-0.483342,0.876385,-0.82663,-1.95991,0.601314,2.69416, +-0.483332,0.876412,-0.826775,-1.95989,0.601461,2.69419, +-0.483322,0.876439,-0.82692,-1.95986,0.601607,2.69422, +-0.483313,0.876465,-0.827066,-1.95983,0.601753,2.69424, +-0.483306,0.87649,-0.827212,-1.95981,0.6019,2.69427, +-0.4833,0.876514,-0.827359,-1.95978,0.602046,2.69429, +-0.483295,0.876536,-0.827506,-1.95976,0.602192,2.69431, +-0.483291,0.876557,-0.827653,-1.95974,0.602338,2.69434, +-0.483288,0.876578,-0.827801,-1.95972,0.602484,2.69436, +-0.483285,0.876598,-0.827948,-1.9597,0.60263,2.69438, +-0.483283,0.876617,-0.828095,-1.95968,0.602776,2.69439, +-0.483282,0.876635,-0.828243,-1.95966,0.602921,2.69441, +-0.483282,0.876652,-0.828391,-1.95965,0.603066,2.69443, +-0.483284,0.876668,-0.82854,-1.95963,0.603211,2.69445, +-0.483286,0.876682,-0.828689,-1.95962,0.603356,2.69446, +-0.48329,0.876696,-0.828838,-1.9596,0.603501,2.69447, +-0.483294,0.876708,-0.828987,-1.95959,0.603645,2.69449, +-0.483299,0.87672,-0.829136,-1.95958,0.60379,2.6945, +-0.483304,0.876732,-0.829285,-1.95957,0.603934,2.69451, +-0.483311,0.876742,-0.829434,-1.95956,0.604078,2.69452, +-0.483318,0.876751,-0.829584,-1.95955,0.604221,2.69453, +-0.483327,0.876759,-0.829734,-1.95954,0.604365,2.69454, +-0.483338,0.876765,-0.829884,-1.95953,0.604508,2.69454, +-0.48335,0.876771,-0.830035,-1.95953,0.604651,2.69455, +-0.483362,0.876776,-0.830185,-1.95952,0.604794,2.69455, +-0.483376,0.87678,-0.830335,-1.95952,0.604937,2.69456, +-0.48339,0.876784,-0.830485,-1.95951,0.60508,2.69456, +-0.483406,0.876786,-0.830635,-1.95951,0.605222,2.69456, +-0.483423,0.876788,-0.830785,-1.95951,0.605363,2.69457, +-0.483442,0.876788,-0.830936,-1.95951,0.605504,2.69457, +-0.483462,0.876787,-0.831087,-1.95951,0.605645,2.69457, +-0.483484,0.876785,-0.831238,-1.95951,0.605786,2.69456, +-0.483506,0.876782,-0.831389,-1.95951,0.605927,2.69456, +-0.48353,0.876779,-0.83154,-1.95952,0.606067,2.69456, +-0.483555,0.876775,-0.83169,-1.95952,0.606208,2.69455, +-0.483581,0.87677,-0.831841,-1.95953,0.606348,2.69455, +-0.483608,0.876764,-0.831991,-1.95953,0.606487,2.69454, +-0.483638,0.876757,-0.832142,-1.95954,0.606625,2.69453, +-0.483669,0.876748,-0.832294,-1.95955,0.606763,2.69453, +-0.483701,0.876738,-0.832445,-1.95956,0.606901,2.69452, +-0.483735,0.876727,-0.832596,-1.95957,0.607039,2.6945, +-0.48377,0.876715,-0.832746,-1.95958,0.607176,2.69449, +-0.483806,0.876702,-0.832897,-1.95959,0.607314,2.69448, +-0.483843,0.876688,-0.833047,-1.95961,0.607451,2.69447, +-0.483882,0.876673,-0.833197,-1.95962,0.607587,2.69445, +-0.483923,0.876656,-0.833348,-1.95964,0.607722,2.69443, +-0.483966,0.876637,-0.833499,-1.95966,0.607857,2.69442, +-0.484011,0.876617,-0.833649,-1.95968,0.607991,2.6944, +-0.484057,0.876596,-0.8338,-1.9597,0.608125,2.69437, +-0.484104,0.876574,-0.83395,-1.95972,0.60826,2.69435, +-0.484152,0.876551,-0.834099,-1.95975,0.608393,2.69433, +-0.484202,0.876527,-0.834248,-1.95977,0.608527,2.6943, +-0.484254,0.876501,-0.834398,-1.9598,0.608659,2.69428, +-0.484308,0.876473,-0.834547,-1.95982,0.608791,2.69425, +-0.484364,0.876443,-0.834697,-1.95985,0.608922,2.69422, +-0.484421,0.876412,-0.834847,-1.95988,0.609052,2.69419, +-0.48448,0.87638,-0.834996,-1.95992,0.609182,2.69416, +-0.48454,0.876346,-0.835144,-1.95995,0.609312,2.69412, +-0.484602,0.876312,-0.835292,-1.95999,0.609441,2.69409, +-0.484665,0.876275,-0.83544,-1.96002,0.60957,2.69405, +-0.484731,0.876238,-0.835588,-1.96006,0.609698,2.69402, +-0.484798,0.876198,-0.835736,-1.9601,0.609825,2.69398, +-0.484868,0.876156,-0.835884,-1.96014,0.609952,2.69393, +-0.484939,0.876112,-0.836032,-1.96018,0.610077,2.69389, +-0.485012,0.876067,-0.836179,-1.96023,0.610202,2.69385, +-0.485087,0.876021,-0.836325,-1.96028,0.610327,2.6938, +-0.485163,0.875973,-0.836471,-1.96032,0.610451,2.69375, +-0.48524,0.875924,-0.836617,-1.96037,0.610575,2.6937, +-0.48532,0.875873,-0.836763,-1.96042,0.610698,2.69365, +-0.485402,0.87582,-0.836908,-1.96048,0.610819,2.6936, +-0.485487,0.875764,-0.837054,-1.96053,0.61094,2.69354, +-0.485573,0.875707,-0.837199,-1.96059,0.61106,2.69348, +-0.485661,0.875648,-0.837343,-1.96065,0.61118,2.69343, +-0.48575,0.875588,-0.837487,-1.96071,0.6113,2.69337, +-0.485841,0.875526,-0.837629,-1.96077,0.611419,2.6933, +-0.485934,0.875462,-0.83777,-1.96083,0.611539,2.69324, +-0.486029,0.875396,-0.83791,-1.9609,0.61166,2.69317, +-0.486126,0.875328,-0.838048,-1.96097,0.611781,2.69311, +-0.486225,0.875259,-0.838184,-1.96104,0.611902,2.69304, +-0.486325,0.875187,-0.83832,-1.96111,0.612022,2.69297, +-0.486427,0.875114,-0.838455,-1.96118,0.612143,2.69289, +-0.486529,0.87504,-0.838589,-1.96126,0.612262,2.69282, +-0.486633,0.874964,-0.838722,-1.96133,0.612381,2.69274, +-0.486738,0.874887,-0.838854,-1.96141,0.6125,2.69266, +-0.486844,0.874808,-0.838985,-1.96149,0.612619,2.69259, +-0.486953,0.874726,-0.839114,-1.96157,0.612737,2.6925, +-0.487062,0.874643,-0.839242,-1.96165,0.612854,2.69242, +-0.487173,0.874559,-0.839369,-1.96174,0.61297,2.69234, +-0.487284,0.874473,-0.839494,-1.96182,0.613084,2.69225, +-0.487396,0.874386,-0.839619,-1.96191,0.613197,2.69216, +-0.487509,0.874298,-0.839743,-1.962,0.613309,2.69208, +-0.487622,0.874209,-0.839866,-1.96209,0.613419,2.69199, +-0.487737,0.874118,-0.839987,-1.96218,0.613528,2.6919, +-0.487854,0.874025,-0.840107,-1.96227,0.613636,2.6918, +-0.487971,0.87393,-0.840225,-1.96237,0.613743,2.69171, +-0.488089,0.873834,-0.840342,-1.96246,0.613847,2.69161, +-0.488207,0.873738,-0.840459,-1.96256,0.61395,2.69152, +-0.488326,0.87364,-0.840575,-1.96266,0.61405,2.69142, +-0.488446,0.873541,-0.84069,-1.96276,0.614147,2.69132, +-0.488566,0.873441,-0.840804,-1.96286,0.614242,2.69122, +-0.488687,0.87334,-0.840917,-1.96296,0.614334,2.69112, +-0.488809,0.873237,-0.841028,-1.96306,0.614422,2.69102, +-0.488932,0.873133,-0.841138,-1.96316,0.614507,2.69091, +-0.489055,0.873028,-0.841246,-1.96327,0.614589,2.69081, +-0.489179,0.872922,-0.841354,-1.96337,0.614667,2.6907, +-0.489303,0.872816,-0.841462,-1.96348,0.614742,2.69059, +-0.489427,0.872709,-0.841568,-1.96359,0.614815,2.69049, +-0.489552,0.872601,-0.841673,-1.9637,0.614885,2.69038, +-0.489678,0.872491,-0.841777,-1.96381,0.614953,2.69027, +-0.489805,0.872381,-0.84188,-1.96392,0.615018,2.69016, +-0.489932,0.872269,-0.841981,-1.96403,0.615082,2.69005, +-0.49006,0.872156,-0.842082,-1.96414,0.615144,2.68993, +-0.490188,0.872043,-0.842181,-1.96425,0.615205,2.68982, +-0.490316,0.87193,-0.84228,-1.96437,0.615265,2.68971, +-0.490444,0.871816,-0.842378,-1.96448,0.615324,2.68959, +-0.490573,0.871701,-0.842475,-1.9646,0.615381,2.68948, +-0.490703,0.871586,-0.842571,-1.96471,0.615437,2.68936, +-0.490833,0.871469,-0.842666,-1.96483,0.615492,2.68925, +-0.490964,0.871351,-0.842759,-1.96495,0.615546,2.68913, +-0.491096,0.871232,-0.842852,-1.96506,0.6156,2.68901, +-0.491228,0.871113,-0.842943,-1.96518,0.615654,2.68889, +-0.491359,0.870994,-0.843034,-1.9653,0.615708,2.68877, +-0.491491,0.870874,-0.843124,-1.96542,0.615762,2.68865, +-0.491623,0.870754,-0.843213,-1.96554,0.615815,2.68853, +-0.491756,0.870632,-0.843301,-1.96566,0.615867,2.68841, +-0.49189,0.87051,-0.843388,-1.96579,0.615919,2.68829, +-0.492024,0.870386,-0.843473,-1.96591,0.615969,2.68816, +-0.492159,0.870262,-0.843557,-1.96603,0.616018,2.68804, +-0.492294,0.870138,-0.843641,-1.96616,0.616067,2.68792, +-0.492429,0.870013,-0.843724,-1.96628,0.616115,2.68779, +-0.492564,0.869888,-0.843807,-1.96641,0.616162,2.68767, +-0.4927,0.869763,-0.843888,-1.96653,0.616209,2.68754, +-0.492836,0.869636,-0.843969,-1.96666,0.616254,2.68741, +-0.492972,0.869509,-0.844048,-1.96679,0.616298,2.68729, +-0.49311,0.86938,-0.844126,-1.96692,0.616341,2.68716, +-0.493248,0.869251,-0.844202,-1.96705,0.616383,2.68703, +-0.493386,0.869122,-0.844279,-1.96717,0.616425,2.6869, +-0.493524,0.868993,-0.844354,-1.9673,0.616466,2.68677, +-0.493662,0.868863,-0.844429,-1.96743,0.616507,2.68664, +-0.4938,0.868732,-0.844503,-1.96756,0.616547,2.68651, +-0.493939,0.868601,-0.844576,-1.9677,0.616586,2.68638, +-0.494079,0.868469,-0.844647,-1.96783,0.616624,2.68625, +-0.494219,0.868336,-0.844717,-1.96796,0.61666,2.68611, +-0.49436,0.868202,-0.844786,-1.96809,0.616696,2.68598, +-0.4945,0.868068,-0.844855,-1.96823,0.616731,2.68585, +-0.494641,0.867935,-0.844923,-1.96836,0.616765,2.68571, +-0.494782,0.8678,-0.84499,-1.9685,0.616798,2.68558, +-0.494923,0.867666,-0.845056,-1.96863,0.616831,2.68544, +-0.495064,0.86753,-0.845121,-1.96877,0.616862,2.68531, +-0.495207,0.867394,-0.845185,-1.9689,0.616892,2.68517, +-0.49535,0.867256,-0.845247,-1.96904,0.616921,2.68503, +-0.495493,0.867118,-0.845309,-1.96918,0.616949,2.6849, +-0.495636,0.86698,-0.84537,-1.96932,0.616976,2.68476, +-0.495779,0.866842,-0.84543,-1.96946,0.617003,2.68462, +-0.495922,0.866704,-0.84549,-1.96959,0.617029,2.68448, +-0.496065,0.866565,-0.845548,-1.96973,0.617054,2.68434, +-0.496209,0.866425,-0.845606,-1.96987,0.617078,2.6842, +-0.496354,0.866285,-0.845662,-1.97001,0.617101,2.68406, +-0.496499,0.866144,-0.845717,-1.97015,0.617123,2.68392, +-0.496644,0.866002,-0.845771,-1.9703,0.617143,2.68378, +-0.496789,0.86586,-0.845824,-1.97044,0.617163,2.68364, +-0.496934,0.865719,-0.845876,-1.97058,0.617182,2.6835, +-0.497079,0.865577,-0.845928,-1.97072,0.617201,2.68335, +-0.497224,0.865434,-0.845979,-1.97086,0.617218,2.68321, +-0.49737,0.865291,-0.846029,-1.97101,0.617235,2.68307, +-0.497516,0.865148,-0.846077,-1.97115,0.61725,2.68293, +-0.497662,0.865003,-0.846124,-1.97129,0.617263,2.68278, +-0.497808,0.864859,-0.84617,-1.97144,0.617276,2.68264, +-0.497955,0.864714,-0.846215,-1.97158,0.617288,2.68249, +-0.498101,0.864569,-0.84626,-1.97173,0.6173,2.68235, +-0.498247,0.864425,-0.846304,-1.97187,0.617311,2.6822, +-0.498394,0.86428,-0.846347,-1.97202,0.617321,2.68206, +-0.49854,0.864134,-0.846389,-1.97216,0.61733,2.68191, +-0.498687,0.863988,-0.846429,-1.97231,0.617337,2.68177, +-0.498834,0.863841,-0.846468,-1.97246,0.617343,2.68162, +-0.498981,0.863694,-0.846506,-1.9726,0.617348,2.68147, +-0.499127,0.863547,-0.846543,-1.97275,0.617353,2.68132, +-0.499274,0.8634,-0.84658,-1.9729,0.617357,2.68118, +-0.499421,0.863253,-0.846616,-1.97304,0.61736,2.68103, +-0.499567,0.863106,-0.846651,-1.97319,0.617363,2.68088, +-0.499714,0.862958,-0.846684,-1.97334,0.617364,2.68074, +-0.499861,0.86281,-0.846716,-1.97349,0.617364,2.68059, +-0.500008,0.862661,-0.846747,-1.97364,0.617363,2.68044, +-0.500154,0.862512,-0.846777,-1.97378,0.61736,2.68029, +-0.500301,0.862364,-0.846806,-1.97393,0.617358,2.68014, +-0.500448,0.862215,-0.846835,-1.97408,0.617354,2.67999, +-0.500594,0.862067,-0.846863,-1.97423,0.61735,2.67985, +-0.50074,0.861919,-0.846889,-1.97438,0.617345,2.6797, +-0.500886,0.86177,-0.846915,-1.97453,0.617339,2.67955, +-0.501033,0.861621,-0.846939,-1.97468,0.617332,2.6794, +-0.501179,0.861471,-0.846962,-1.97483,0.617323,2.67925, +-0.501325,0.861322,-0.846983,-1.97498,0.617313,2.6791, +-0.501471,0.861172,-0.847004,-1.97513,0.617302,2.67895, +-0.501617,0.861023,-0.847025,-1.97528,0.617291,2.6788, +-0.501763,0.860873,-0.847044,-1.97542,0.617278,2.67865, +-0.501908,0.860724,-0.847063,-1.97557,0.617264,2.6785, +-0.502053,0.860574,-0.84708,-1.97572,0.617249,2.67835, +-0.502199,0.860424,-0.847096,-1.97587,0.617232,2.6782, +-0.502344,0.860273,-0.84711,-1.97602,0.617214,2.67805, +-0.502489,0.860123,-0.847124,-1.97617,0.617194,2.6779, +-0.502634,0.859972,-0.847137,-1.97633,0.617173,2.67775, +-0.502779,0.859822,-0.847149,-1.97648,0.617152,2.6776, +-0.502924,0.859672,-0.847161,-1.97663,0.617129,2.67745, +-0.503068,0.859523,-0.847171,-1.97677,0.617105,2.6773, +-0.503212,0.859372,-0.84718,-1.97693,0.61708,2.67715, +-0.503355,0.859222,-0.847188,-1.97708,0.617053,2.677, +-0.503499,0.859071,-0.847195,-1.97723,0.617024,2.67685, +-0.503643,0.85892,-0.8472,-1.97738,0.616994,2.6767, +-0.503786,0.85877,-0.847205,-1.97753,0.616962,2.67655, +-0.50393,0.85862,-0.847209,-1.97768,0.61693,2.6764, +-0.504073,0.85847,-0.847212,-1.97783,0.616896,2.67625, +-0.504215,0.85832,-0.847215,-1.97798,0.616861,2.6761, +-0.504357,0.85817,-0.847216,-1.97813,0.616824,2.67595, +-0.504498,0.85802,-0.847216,-1.97828,0.616785,2.6758, +-0.504639,0.85787,-0.847215,-1.97843,0.616745,2.67565, +-0.504781,0.85772,-0.847212,-1.97858,0.616702,2.6755, +-0.504922,0.85757,-0.847209,-1.97873,0.616659,2.67535, +-0.505063,0.857421,-0.847206,-1.97888,0.616614,2.6752, +-0.505204,0.857272,-0.847201,-1.97902,0.616568,2.67505, +-0.505344,0.857124,-0.847196,-1.97917,0.616521,2.6749, +-0.505483,0.856975,-0.847189,-1.97932,0.616472,2.67475, +-0.505622,0.856826,-0.847181,-1.97947,0.61642,2.6746, +-0.50576,0.856677,-0.847172,-1.97962,0.616367,2.67446, +-0.505899,0.856528,-0.847161,-1.97977,0.616312,2.67431, +-0.506037,0.85638,-0.84715,-1.97992,0.616255,2.67416, +-0.506175,0.856232,-0.847137,-1.98006,0.616197,2.67401, +-0.506313,0.856085,-0.847123,-1.98021,0.616138,2.67386, +-0.50645,0.855938,-0.847109,-1.98036,0.616077,2.67372, +-0.506586,0.855792,-0.847092,-1.98051,0.616014,2.67357, +-0.506721,0.855645,-0.847074,-1.98065,0.615949,2.67342, +-0.506856,0.855498,-0.847054,-1.9808,0.615882,2.67328, +-0.50699,0.855351,-0.847033,-1.98095,0.615813,2.67313, +-0.507125,0.855205,-0.847011,-1.98109,0.615743,2.67298, +-0.507259,0.85506,-0.846988,-1.98124,0.615671,2.67284, +-0.507392,0.854915,-0.846963,-1.98138,0.615597,2.67269, +-0.507525,0.85477,-0.846937,-1.98153,0.615522,2.67255, +-0.507657,0.854626,-0.84691,-1.98167,0.615444,2.6724, +-0.507788,0.854481,-0.84688,-1.98182,0.615365,2.67226, +-0.507919,0.854337,-0.846849,-1.98196,0.615283,2.67211, +-0.508049,0.854193,-0.846816,-1.9821,0.615199,2.67197, +-0.508179,0.854049,-0.846781,-1.98225,0.615113,2.67183, +-0.508309,0.853907,-0.846746,-1.98239,0.615026,2.67168, +-0.508438,0.853766,-0.846709,-1.98253,0.614937,2.67154, +-0.508566,0.853626,-0.84667,-1.98267,0.614846,2.6714, +-0.508694,0.853488,-0.84663,-1.98281,0.614753,2.67127, +-0.50882,0.853351,-0.846587,-1.98295,0.614658,2.67113, +-0.508944,0.853216,-0.846542,-1.98308,0.614561,2.67099, +-0.509067,0.853082,-0.846496,-1.98321,0.614463,2.67086, +-0.509188,0.852949,-0.846449,-1.98335,0.614363,2.67073, +-0.509307,0.852817,-0.8464,-1.98348,0.614262,2.6706, +-0.509424,0.852686,-0.84635,-1.98361,0.614161,2.67046, +-0.509539,0.852557,-0.846298,-1.98374,0.614057,2.67033, +-0.509653,0.852428,-0.846244,-1.98387,0.613952,2.67021, +-0.509765,0.852302,-0.846188,-1.984,0.613846,2.67008, +-0.509875,0.852177,-0.846131,-1.98412,0.613738,2.66995, +-0.509984,0.852053,-0.846071,-1.98424,0.613629,2.66983, +-0.510092,0.851929,-0.846011,-1.98437,0.61352,2.66971, +-0.510199,0.851807,-0.845949,-1.98449,0.613409,2.66959, +-0.510306,0.851686,-0.845885,-1.98461,0.613298,2.66946, +-0.510411,0.851565,-0.84582,-1.98473,0.613186,2.66934, +-0.510515,0.851446,-0.845754,-1.98485,0.613073,2.66922, +-0.510617,0.851329,-0.845685,-1.98497,0.612958,2.66911, +-0.510717,0.851213,-0.845614,-1.98508,0.612843,2.66899, +-0.510817,0.851098,-0.845542,-1.9852,0.612726,2.66888, +-0.510916,0.850984,-0.845469,-1.98531,0.612609,2.66876, +-0.511013,0.850871,-0.845394,-1.98543,0.612492,2.66865, +-0.51111,0.850759,-0.845318,-1.98554,0.612374,2.66854, +-0.511206,0.850647,-0.845241,-1.98565,0.612256,2.66843, +-0.5113,0.850538,-0.845162,-1.98576,0.612136,2.66832, +-0.511393,0.850429,-0.845081,-1.98587,0.612016,2.66821, +-0.511485,0.850322,-0.844998,-1.98597,0.611894,2.6681, +-0.511575,0.850217,-0.844914,-1.98608,0.611772,2.66799, +-0.511664,0.850112,-0.844829,-1.98619,0.61165,2.66789, +-0.511753,0.850007,-0.844744,-1.98629,0.611527,2.66779, +-0.511841,0.849904,-0.844657,-1.98639,0.611404,2.66768, +-0.511927,0.849802,-0.844568,-1.9865,0.611281,2.66758, +-0.512012,0.849701,-0.844478,-1.9866,0.611156,2.66748, +-0.512096,0.849601,-0.844387,-1.9867,0.611031,2.66738, +-0.512178,0.849503,-0.844294,-1.98679,0.610905,2.66728, +-0.51226,0.849406,-0.8442,-1.98689,0.610779,2.66718, +-0.51234,0.84931,-0.844105,-1.98699,0.610652,2.66709, +-0.51242,0.849214,-0.844009,-1.98708,0.610525,2.66699, +-0.512499,0.849119,-0.843913,-1.98718,0.610398,2.6669, +-0.512577,0.849025,-0.843815,-1.98727,0.610271,2.6668, +-0.512653,0.848932,-0.843716,-1.98736,0.610142,2.66671, +-0.512729,0.848841,-0.843615,-1.98746,0.610013,2.66662, +-0.512802,0.848751,-0.843513,-1.98755,0.609884,2.66653, +-0.512875,0.848662,-0.843411,-1.98764,0.609753,2.66644, +-0.512947,0.848573,-0.843307,-1.98772,0.609623,2.66635, +-0.513018,0.848486,-0.843203,-1.98781,0.609492,2.66626, +-0.513088,0.848399,-0.843098,-1.9879,0.609362,2.66618, +-0.513158,0.848313,-0.842993,-1.98798,0.609231,2.66609, +-0.513226,0.848228,-0.842886,-1.98807,0.609099,2.66601, +-0.513292,0.848145,-0.842777,-1.98815,0.608966,2.66592, +-0.513358,0.848063,-0.842668,-1.98823,0.608833,2.66584, +-0.513422,0.847982,-0.842558,-1.98832,0.6087,2.66576, +-0.513485,0.847902,-0.842447,-1.9884,0.608566,2.66568, +-0.513548,0.847822,-0.842335,-1.98848,0.608432,2.6656, +-0.513611,0.847743,-0.842223,-1.98855,0.608298,2.66552, +-0.513672,0.847665,-0.842111,-1.98863,0.608164,2.66544, +-0.513732,0.847588,-0.841997,-1.98871,0.608029,2.66537, +-0.51379,0.847512,-0.841881,-1.98878,0.607893,2.66529, +-0.513847,0.847438,-0.841765,-1.98886,0.607757,2.66522, +-0.513903,0.847365,-0.841648,-1.98893,0.60762,2.66514, +-0.513959,0.847292,-0.841531,-1.989,0.607483,2.66507, +-0.514014,0.84722,-0.841413,-1.98908,0.607346,2.665, +-0.514068,0.847149,-0.841294,-1.98915,0.607209,2.66493, +-0.514121,0.847078,-0.841175,-1.98922,0.607072,2.66486, +-0.514172,0.847009,-0.841054,-1.98929,0.606934,2.66479, +-0.514223,0.846941,-0.840933,-1.98936,0.606795,2.66472, +-0.514272,0.846875,-0.84081,-1.98942,0.606656,2.66465, +-0.51432,0.846809,-0.840687,-1.98949,0.606516,2.66459, +-0.514367,0.846744,-0.840563,-1.98955,0.606376,2.66452, +-0.514414,0.846679,-0.840439,-1.98962,0.606236,2.66446, +-0.51446,0.846616,-0.840314,-1.98968,0.606096,2.66439, +-0.514505,0.846553,-0.840189,-1.98974,0.605956,2.66433, +-0.514549,0.846491,-0.840062,-1.98981,0.605815,2.66427, +-0.514591,0.846431,-0.839935,-1.98987,0.605674,2.66421, +-0.514632,0.846372,-0.839806,-1.98992,0.605532,2.66415, +-0.514672,0.846314,-0.839677,-1.98998,0.605389,2.66409, +-0.514712,0.846257,-0.839547,-1.99004,0.605247,2.66403, +-0.514751,0.8462,-0.839417,-1.9901,0.605104,2.66398, +-0.514789,0.846144,-0.839286,-1.99015,0.604962,2.66392, +-0.514826,0.846089,-0.839154,-1.99021,0.604819,2.66387, +-0.514862,0.846035,-0.839022,-1.99026,0.604676,2.66381, +-0.514896,0.845983,-0.838888,-1.99031,0.604532,2.66376, +-0.514929,0.845931,-0.838754,-1.99037,0.604387,2.66371, +-0.514961,0.845881,-0.838619,-1.99042,0.604242,2.66366, +-0.514993,0.845832,-0.838483,-1.99047,0.604098,2.66361, +-0.515023,0.845783,-0.838348,-1.99051,0.603953,2.66356, +-0.515054,0.845734,-0.838212,-1.99056,0.603808,2.66351, +-0.515083,0.845687,-0.838076,-1.99061,0.603663,2.66347, +-0.51511,0.845641,-0.837938,-1.99066,0.603518,2.66342, +-0.515137,0.845596,-0.8378,-1.9907,0.603372,2.66337, +-0.515162,0.845553,-0.837661,-1.99074,0.603225,2.66333, +-0.515186,0.84551,-0.837521,-1.99079,0.603078,2.66329, +-0.51521,0.845469,-0.837381,-1.99083,0.602932,2.66325, +-0.515233,0.845427,-0.837241,-1.99087,0.602785,2.66321, +-0.515255,0.845387,-0.837101,-1.99091,0.602639,2.66317, +-0.515276,0.845348,-0.83696,-1.99095,0.602492,2.66313, +-0.515296,0.845309,-0.836818,-1.99099,0.602345,2.66309, +-0.515314,0.845273,-0.836676,-1.99102,0.602198,2.66305, +-0.515331,0.845237,-0.836533,-1.99106,0.602051,2.66302, +-0.515347,0.845203,-0.83639,-1.99109,0.601904,2.66298, +-0.515363,0.845169,-0.836246,-1.99113,0.601757,2.66295, +-0.515378,0.845136,-0.836103,-1.99116,0.60161,2.66291, +-0.515392,0.845104,-0.835959,-1.99119,0.601464,2.66288, +-0.515405,0.845072,-0.835815,-1.99122,0.601317,2.66285, +-0.515417,0.845042,-0.83567,-1.99125,0.601171,2.66282, +-0.515427,0.845014,-0.835525,-1.99128,0.601024,2.66279, +-0.515436,0.844986,-0.835379,-1.99131,0.600877,2.66276, +-0.515445,0.84496,-0.835233,-1.99134,0.600731,2.66274, +-0.515452,0.844935,-0.835086,-1.99136,0.600585,2.66271, +-0.515459,0.84491,-0.83494,-1.99139,0.600438,2.66269, +-0.515465,0.844886,-0.834794,-1.99141,0.600292,2.66266, +-0.515471,0.844862,-0.834648,-1.99143,0.600147,2.66264, +-0.515475,0.844841,-0.834501,-1.99146,0.600001,2.66262, +-0.515477,0.84482,-0.834353,-1.99148,0.599856,2.6626, +-0.515479,0.844801,-0.834205,-1.9915,0.59971,2.66258, +-0.515479,0.844783,-0.834056,-1.99151,0.599564,2.66256, +-0.515479,0.844766,-0.833908,-1.99153,0.599419,2.66254, +-0.515478,0.844749,-0.83376,-1.99155,0.599273,2.66253, +-0.515477,0.844733,-0.833612,-1.99156,0.599128,2.66251, +-0.515475,0.844718,-0.833463,-1.99158,0.598984,2.6625, +-0.515471,0.844704,-0.833315,-1.99159,0.59884,2.66248, +-0.515467,0.844692,-0.833165,-1.99161,0.598696,2.66247, +-0.515461,0.844681,-0.833016,-1.99162,0.598552,2.66246, +-0.515453,0.844671,-0.832866,-1.99163,0.598408,2.66245, +-0.515445,0.844661,-0.832716,-1.99164,0.598264,2.66244, +-0.515437,0.844653,-0.832566,-1.99164,0.59812,2.66243, +-0.515427,0.844645,-0.832417,-1.99165,0.597977,2.66242, +-0.515416,0.844638,-0.832267,-1.99166,0.597834,2.66242, +-0.515405,0.844632,-0.832117,-1.99167,0.597692,2.66241, +-0.515391,0.844628,-0.831967,-1.99167,0.59755,2.66241, +-0.515376,0.844625,-0.831816,-1.99167,0.597408,2.6624, +-0.51536,0.844622,-0.831665,-1.99167,0.597266,2.6624, +-0.515342,0.844621,-0.831515,-1.99168,0.597124,2.6624, +-0.515324,0.84462,-0.831364,-1.99168,0.596982,2.6624, +-0.515305,0.84462,-0.831214,-1.99168,0.596841,2.6624, +-0.515285,0.844621,-0.831064,-1.99168,0.5967,2.6624, +-0.515263,0.844622,-0.830914,-1.99167,0.596559,2.6624, +-0.515239,0.844626,-0.830763,-1.99167,0.59642,2.6624, +-0.515214,0.84463,-0.830611,-1.99167,0.59628,2.66241, +-0.515187,0.844636,-0.83046,-1.99166,0.596141,2.66241, +-0.515159,0.844643,-0.830309,-1.99165,0.596002,2.66242, +-0.51513,0.84465,-0.830159,-1.99165,0.595862,2.66243, +-0.5151,0.844658,-0.830008,-1.99164,0.595723,2.66244, +-0.515069,0.844666,-0.829858,-1.99163,0.595585,2.66244, +-0.515036,0.844677,-0.829707,-1.99162,0.595447,2.66245, +-0.515001,0.844688,-0.829557,-1.99161,0.59531,2.66247, +-0.514964,0.844702,-0.829405,-1.9916,0.595174,2.66248, +-0.514926,0.844716,-0.829254,-1.99158,0.595038,2.66249, +-0.514886,0.844732,-0.829104,-1.99157,0.594902,2.66251, +-0.514846,0.844748,-0.828954,-1.99155,0.594766,2.66253, +-0.514804,0.844766,-0.828804,-1.99153,0.59463,2.66254, +-0.51476,0.844784,-0.828654,-1.99151,0.594495,2.66256, +-0.514715,0.844805,-0.828504,-1.99149,0.59436,2.66258, +-0.514668,0.844827,-0.828354,-1.99147,0.594227,2.6626, +-0.514619,0.84485,-0.828203,-1.99145,0.594094,2.66263, +-0.514568,0.844875,-0.828053,-1.99142,0.593962,2.66265, +-0.514516,0.844902,-0.827903,-1.9914,0.59383,2.66268, +-0.514462,0.844929,-0.827754,-1.99137,0.593698,2.66271, +-0.514407,0.844957,-0.827605,-1.99134,0.593566,2.66274, +-0.514351,0.844987,-0.827457,-1.99131,0.593435,2.66277, +-0.514293,0.845019,-0.827308,-1.99128,0.593304,2.6628, +-0.514232,0.845053,-0.827159,-1.99124,0.593175,2.66283, +-0.51417,0.845088,-0.82701,-1.99121,0.593046,2.66287, +-0.514105,0.845125,-0.826862,-1.99117,0.592918,2.6629, +-0.51404,0.845163,-0.826713,-1.99113,0.59279,2.66294, +-0.513973,0.845203,-0.826566,-1.99109,0.592663,2.66298, +-0.513904,0.845243,-0.826419,-1.99105,0.592536,2.66302, +-0.513834,0.845286,-0.826272,-1.99101,0.59241,2.66306, +-0.513761,0.84533,-0.826125,-1.99097,0.592284,2.66311, +-0.513687,0.845376,-0.825978,-1.99092,0.59216,2.66315, +-0.51361,0.845425,-0.825831,-1.99087,0.592036,2.6632, +-0.513531,0.845475,-0.825685,-1.99082,0.591913,2.66325, +-0.513451,0.845526,-0.825539,-1.99077,0.591791,2.6633, +-0.513369,0.845579,-0.825394,-1.99072,0.591669,2.66336, +-0.513286,0.845634,-0.825249,-1.99066,0.591547,2.66341, +-0.513201,0.84569,-0.825105,-1.99061,0.591426,2.66347, +-0.513113,0.845748,-0.824961,-1.99055,0.591306,2.66353, +-0.513024,0.845808,-0.824817,-1.99049,0.591187,2.66359, +-0.512932,0.845871,-0.824673,-1.99043,0.591069,2.66365, +-0.512839,0.845935,-0.82453,-1.99036,0.590953,2.66371, +-0.512744,0.846001,-0.824387,-1.9903,0.590837,2.66378, +-0.512648,0.846068,-0.824246,-1.99023,0.590723,2.66385, +-0.51255,0.846136,-0.824105,-1.99016,0.59061,2.66391, +-0.512451,0.846207,-0.823965,-1.99009,0.590498,2.66398, +-0.512349,0.846279,-0.823825,-1.99002,0.590387,2.66406, +-0.512246,0.846354,-0.823685,-1.98994,0.590279,2.66413, +-0.512142,0.84643,-0.823546,-1.98987,0.590172,2.66421, +-0.512036,0.846508,-0.823407,-1.98979,0.590066,2.66429, +-0.51193,0.846588,-0.82327,-1.98971,0.589962,2.66437, +-0.511822,0.846668,-0.823134,-1.98963,0.589858,2.66445, +-0.511714,0.84675,-0.822999,-1.98955,0.589755,2.66453, +-0.511604,0.846834,-0.822864,-1.98946,0.589654,2.66461, +-0.511493,0.846919,-0.82273,-1.98938,0.589555,2.6647, +-0.51138,0.847006,-0.822597,-1.98929,0.589457,2.66478, +-0.511267,0.847095,-0.822464,-1.9892,0.58936,2.66487, +-0.511152,0.847185,-0.822333,-1.98911,0.589265,2.66496, +-0.511037,0.847276,-0.822202,-1.98902,0.589171,2.66505, +-0.510921,0.847369,-0.822073,-1.98893,0.589078,2.66515, +-0.510805,0.847462,-0.821946,-1.98883,0.588985,2.66524, +-0.510688,0.847557,-0.821819,-1.98874,0.588894,2.66534, +-0.51057,0.847654,-0.821693,-1.98864,0.588804,2.66543, +-0.51045,0.847752,-0.821567,-1.98855,0.588716,2.66553, +-0.51033,0.847851,-0.821443,-1.98845,0.588629,2.66563, +-0.510209,0.847952,-0.821319,-1.98834,0.588543,2.66573, +-0.510087,0.848054,-0.821197,-1.98824,0.588458,2.66583, +-0.509966,0.848156,-0.821077,-1.98814,0.588375,2.66593, +-0.509844,0.848259,-0.820957,-1.98804,0.588292,2.66604, +-0.509721,0.848363,-0.820839,-1.98793,0.58821,2.66614, +-0.509598,0.848469,-0.820722,-1.98783,0.588129,2.66625, +-0.509473,0.848576,-0.820605,-1.98772,0.58805,2.66635, +-0.509348,0.848684,-0.82049,-1.98761,0.587973,2.66646, +-0.509222,0.848793,-0.820375,-1.9875,0.587897,2.66657, +-0.509096,0.848903,-0.820262,-1.98739,0.587821,2.66668, +-0.508969,0.849013,-0.82015,-1.98728,0.587747,2.66679, +-0.508843,0.849124,-0.82004,-1.98717,0.587673,2.6669, +-0.508716,0.849235,-0.819931,-1.98706,0.5876,2.66701, +-0.508588,0.849348,-0.819823,-1.98695,0.587529,2.66713, +-0.50846,0.849462,-0.819716,-1.98684,0.587459,2.66724, +-0.50833,0.849577,-0.819609,-1.98672,0.587391,2.66736, +-0.5082,0.849692,-0.819504,-1.9866,0.587324,2.66747, +-0.50807,0.849809,-0.8194,-1.98649,0.587257,2.66759, +-0.50794,0.849926,-0.819298,-1.98637,0.587191,2.6677, +-0.50781,0.850043,-0.819197,-1.98625,0.587126,2.66782, +-0.507679,0.850162,-0.819099,-1.98614,0.587062,2.66794, +-0.507548,0.850281,-0.819003,-1.98602,0.587,2.66806, +-0.507416,0.850402,-0.81891,-1.98589,0.586939,2.66818, +-0.507283,0.850523,-0.81882,-1.98577,0.586879,2.6683, +-0.50715,0.850645,-0.818733,-1.98565,0.586821,2.66842, +-0.507016,0.850767,-0.818649,-1.98553,0.586763,2.66854, +-0.506883,0.850888,-0.818568,-1.98541,0.586706,2.66867, +-0.506749,0.85101,-0.818489,-1.98529,0.586649,2.66879, +-0.506615,0.851132,-0.818414,-1.98516,0.586594,2.66891, +-0.506481,0.851255,-0.81834,-1.98504,0.58654,2.66903, +-0.506346,0.851379,-0.818268,-1.98492,0.586487,2.66916, +-0.50621,0.851504,-0.818198,-1.98479,0.586436,2.66928, +-0.506074,0.851629,-0.818129,-1.98467,0.586386,2.66941, +-0.505939,0.851755,-0.818062,-1.98454,0.586337,2.66953, +-0.505803,0.851882,-0.817995,-1.98441,0.586288,2.66966, +-0.505667,0.852009,-0.81793,-1.98429,0.58624,2.66979, +-0.505531,0.852137,-0.817865,-1.98416,0.586193,2.66992, +-0.505394,0.852266,-0.817802,-1.98403,0.586148,2.67004, +-0.505256,0.852396,-0.817738,-1.9839,0.586104,2.67017, +-0.505117,0.852527,-0.817675,-1.98377,0.586061,2.6703, +-0.504979,0.852658,-0.817612,-1.98364,0.586019,2.67044, +-0.50484,0.852789,-0.817549,-1.98351,0.585978,2.67057, +-0.504701,0.852921,-0.817486,-1.98338,0.585938,2.6707, +-0.504562,0.853052,-0.817423,-1.98324,0.585898,2.67083, +-0.504422,0.853184,-0.817361,-1.98311,0.58586,2.67096, +-0.504282,0.853317,-0.817299,-1.98298,0.585822,2.6711, +-0.504141,0.853451,-0.817239,-1.98285,0.585786,2.67123, +-0.504,0.853586,-0.817179,-1.98271,0.585752,2.67136, +-0.503858,0.853721,-0.81712,-1.98258,0.585718,2.6715, +-0.503717,0.853857,-0.817061,-1.98244,0.585685,2.67164, +-0.503575,0.853993,-0.817003,-1.9823,0.585653,2.67177, +-0.503433,0.854129,-0.816945,-1.98217,0.585621,2.67191, +-0.503291,0.854266,-0.816888,-1.98203,0.585591,2.67204, +-0.503149,0.854403,-0.816831,-1.98189,0.585561,2.67218, +-0.503005,0.854542,-0.816776,-1.98176,0.585533,2.67232, +-0.502862,0.854681,-0.816722,-1.98162,0.585507,2.67246, +-0.502717,0.854821,-0.816668,-1.98148,0.585481,2.6726, +-0.502573,0.854961,-0.816615,-1.98134,0.585456,2.67274, +-0.502429,0.855101,-0.816563,-1.9812,0.585432,2.67288, +-0.502285,0.855242,-0.816511,-1.98106,0.585408,2.67302, +-0.50214,0.855382,-0.816459,-1.98091,0.585386,2.67316, +-0.501995,0.855524,-0.816409,-1.98077,0.585365,2.6733, +-0.501849,0.855666,-0.816359,-1.98063,0.585345,2.67344, +-0.501703,0.855809,-0.816311,-1.98049,0.585326,2.67359, +-0.501557,0.855953,-0.816264,-1.98034,0.585308,2.67373, +-0.501411,0.856096,-0.816218,-1.9802,0.585291,2.67387, +-0.501265,0.85624,-0.816171,-1.98006,0.585275,2.67402, +-0.50112,0.856383,-0.816126,-1.97991,0.585259,2.67416, +-0.500973,0.856527,-0.816081,-1.97977,0.585245,2.67431, +-0.500827,0.856672,-0.816038,-1.97962,0.585231,2.67445, +-0.50068,0.856817,-0.815996,-1.97948,0.585219,2.6746, +-0.500533,0.856963,-0.815955,-1.97933,0.585209,2.67474, +-0.500386,0.857109,-0.815914,-1.97919,0.585199,2.67489, +-0.500239,0.857256,-0.815875,-1.97904,0.58519,2.67503, +-0.500092,0.857402,-0.815836,-1.9789,0.585181,2.67518, +-0.499945,0.857548,-0.815798,-1.97875,0.585174,2.67533, +-0.499798,0.857694,-0.81576,-1.9786,0.585167,2.67547, +-0.499651,0.857841,-0.815724,-1.97846,0.585161,2.67562, +-0.499504,0.857989,-0.815689,-1.97831,0.585157,2.67577, +-0.499357,0.858137,-0.815656,-1.97816,0.585154,2.67592, +-0.499209,0.858286,-0.815623,-1.97801,0.585152,2.67606, +-0.499062,0.858434,-0.815591,-1.97786,0.585151,2.67621, +-0.498915,0.858582,-0.81556,-1.97772,0.58515,2.67636, +-0.498769,0.85873,-0.815529,-1.97757,0.58515,2.67651, +-0.498622,0.858878,-0.815499,-1.97742,0.58515,2.67666, +-0.498474,0.859027,-0.815471,-1.97727,0.585152,2.67681, +-0.498327,0.859176,-0.815444,-1.97712,0.585156,2.67695, +-0.49818,0.859326,-0.815418,-1.97697,0.58516,2.6771, +-0.498033,0.859476,-0.815393,-1.97682,0.585166,2.67725, +-0.497886,0.859625,-0.815369,-1.97667,0.585172,2.6774, +-0.49774,0.859775,-0.815345,-1.97652,0.585179,2.67755, +-0.497593,0.859924,-0.815322,-1.97637,0.585187,2.6777, +-0.497447,0.860074,-0.8153,-1.97622,0.585196,2.67785, +-0.497301,0.860224,-0.81528,-1.97607,0.585206,2.678, +-0.497155,0.860374,-0.81526,-1.97592,0.585217,2.67815, +-0.497008,0.860525,-0.815242,-1.97577,0.58523,2.6783, +-0.496862,0.860675,-0.815225,-1.97562,0.585244,2.67845, +-0.496716,0.860826,-0.815209,-1.97547,0.58526,2.6786, +-0.496571,0.860976,-0.815193,-1.97532,0.585276,2.67875, +-0.496425,0.861126,-0.815178,-1.97517,0.585293,2.6789, +-0.49628,0.861276,-0.815164,-1.97502,0.585311,2.67905, +-0.496135,0.861427,-0.815152,-1.97487,0.585331,2.6792, +-0.49599,0.861577,-0.81514,-1.97472,0.585352,2.67936, +-0.495846,0.861728,-0.81513,-1.97457,0.585375,2.67951, +-0.495701,0.861879,-0.815121,-1.97442,0.5854,2.67966, +-0.495556,0.86203,-0.815113,-1.97427,0.585426,2.67981, +-0.495411,0.86218,-0.815105,-1.97412,0.585452,2.67996, +-0.495267,0.86233,-0.815098,-1.97397,0.58548,2.68011, +-0.495124,0.86248,-0.815092,-1.97382,0.585509,2.68026, +-0.494981,0.862631,-0.815088,-1.97367,0.58554,2.68041, +-0.494838,0.862781,-0.815084,-1.97352,0.585572,2.68056, +-0.494695,0.862932,-0.815082,-1.97337,0.585607,2.68071, +-0.494552,0.863083,-0.815081,-1.97321,0.585643,2.68086, +-0.49441,0.863233,-0.81508,-1.97306,0.58568,2.68101, +-0.494267,0.863383,-0.81508,-1.97291,0.585718,2.68116, +-0.494125,0.863532,-0.815081,-1.97276,0.585757,2.68131, +-0.493984,0.863682,-0.815082,-1.97262,0.585798,2.68146, +-0.493843,0.863831,-0.815085,-1.97247,0.585841,2.68161, +-0.493703,0.863981,-0.815089,-1.97232,0.585886,2.68176, +-0.493563,0.864131,-0.815095,-1.97217,0.585932,2.68191, +-0.493423,0.864281,-0.815102,-1.97202,0.585981,2.68206, +-0.493282,0.86443,-0.815109,-1.97187,0.58603,2.68221, +-0.493142,0.864578,-0.815118,-1.97172,0.586081,2.68236, +-0.493003,0.864727,-0.815127,-1.97157,0.586134,2.6825, +-0.492864,0.864875,-0.815137,-1.97142,0.586188,2.68265, +-0.492727,0.865023,-0.815148,-1.97127,0.586244,2.6828, +-0.492589,0.865171,-0.815161,-1.97113,0.586302,2.68295, +-0.492453,0.865319,-0.815176,-1.97098,0.586362,2.6831, +-0.492316,0.865467,-0.815192,-1.97083,0.586423,2.68325, +-0.492179,0.865615,-0.815209,-1.97068,0.586487,2.68339, +-0.492043,0.865761,-0.815227,-1.97054,0.586551,2.68354, +-0.491906,0.865908,-0.815247,-1.97039,0.586618,2.68369, +-0.49177,0.866054,-0.815267,-1.97024,0.586686,2.68383, +-0.491633,0.8662,-0.815289,-1.9701,0.586756,2.68398, +-0.491495,0.866346,-0.815313,-1.96995,0.586828,2.68412, +-0.491358,0.866491,-0.815339,-1.96981,0.586902,2.68427, +-0.491221,0.866637,-0.815366,-1.96966,0.586979,2.68441, +-0.491085,0.866782,-0.815394,-1.96952,0.587057,2.68456, +-0.490949,0.866926,-0.815424,-1.96937,0.587136,2.6847, +-0.490813,0.867069,-0.815455,-1.96923,0.587217,2.68485, +-0.490678,0.867212,-0.815487,-1.96909,0.5873,2.68499, +-0.490544,0.867355,-0.815521,-1.96894,0.587386,2.68513, +-0.490409,0.867498,-0.815558,-1.9688,0.587473,2.68528, +-0.490275,0.86764,-0.815596,-1.96866,0.587562,2.68542, +-0.490141,0.867782,-0.815635,-1.96851,0.587654,2.68556, +-0.490009,0.867923,-0.815676,-1.96837,0.587746,2.6857, +-0.489877,0.868064,-0.815719,-1.96823,0.587841,2.68584, +-0.489747,0.868203,-0.815763,-1.96809,0.587936,2.68598, +-0.489618,0.868342,-0.815808,-1.96796,0.588033,2.68612, +-0.489489,0.86848,-0.815855,-1.96782,0.588133,2.68626, +-0.48936,0.868618,-0.815905,-1.96768,0.588234,2.6864, +-0.489233,0.868756,-0.815956,-1.96754,0.588336,2.68653, +-0.489107,0.868892,-0.816009,-1.9674,0.58844,2.68667, +-0.488982,0.869028,-0.816063,-1.96727,0.588545,2.68681, +-0.488859,0.869162,-0.816119,-1.96713,0.588651,2.68694, +-0.488737,0.869295,-0.816176,-1.967,0.588757,2.68707, +-0.488617,0.869427,-0.816234,-1.96687,0.588865,2.68721, +-0.488498,0.869559,-0.816295,-1.96674,0.588974,2.68734, +-0.488379,0.86969,-0.816357,-1.96661,0.589085,2.68747, +-0.488262,0.869821,-0.816422,-1.96648,0.589197,2.6876, +-0.488146,0.86995,-0.816488,-1.96635,0.58931,2.68773, +-0.488032,0.870078,-0.816555,-1.96622,0.589423,2.68786, +-0.487919,0.870204,-0.816623,-1.96609,0.589537,2.68798, +-0.487809,0.870329,-0.816693,-1.96597,0.589652,2.68811, +-0.487699,0.870454,-0.816765,-1.96584,0.589767,2.68823, +-0.487591,0.870577,-0.816838,-1.96572,0.589884,2.68836, +-0.487484,0.8707,-0.816913,-1.9656,0.590002,2.68848, +-0.487378,0.870821,-0.81699,-1.96548,0.59012,2.6886, +-0.487274,0.870942,-0.817068,-1.96536,0.59024,2.68872, +-0.487171,0.871061,-0.817148,-1.96524,0.59036,2.68884, +-0.48707,0.871179,-0.817228,-1.96512,0.59048,2.68896, +-0.486971,0.871295,-0.81731,-1.965,0.5906,2.68907, +-0.486874,0.87141,-0.817393,-1.96489,0.590721,2.68919, +-0.48678,0.871524,-0.817478,-1.96477,0.590843,2.6893, +-0.486689,0.871637,-0.817564,-1.96466,0.590966,2.68942, +-0.486602,0.87175,-0.817652,-1.96455,0.59109,2.68953, +-0.486517,0.871861,-0.817742,-1.96444,0.591214,2.68964, +-0.486436,0.871971,-0.817832,-1.96433,0.591339,2.68975, +-0.486357,0.872079,-0.817923,-1.96422,0.591464,2.68986, +-0.486281,0.872186,-0.818015,-1.96411,0.591589,2.68996, +-0.486208,0.872291,-0.818108,-1.96401,0.591714,2.69007, +-0.486137,0.872396,-0.818203,-1.9639,0.591841,2.69017, +-0.486068,0.8725,-0.818299,-1.9638,0.591968,2.69028, +-0.486,0.872603,-0.818397,-1.96369,0.592096,2.69038, +-0.485934,0.872705,-0.818495,-1.96359,0.592225,2.69048, +-0.48587,0.872805,-0.818595,-1.96349,0.592353,2.69058, +-0.485806,0.872904,-0.818695,-1.96339,0.592482,2.69068, +-0.485743,0.873001,-0.818796,-1.9633,0.592611,2.69078, +-0.485682,0.873095,-0.818898,-1.9632,0.59274,2.69087, +-0.485621,0.873188,-0.819001,-1.96311,0.59287,2.69097, +-0.485562,0.873277,-0.819105,-1.96302,0.593001,2.69106, +-0.485502,0.873364,-0.819211,-1.96293,0.593133,2.69114, +-0.485443,0.873447,-0.819318,-1.96285,0.593265,2.69123, +-0.485384,0.873528,-0.819425,-1.96277,0.593397,2.69131, +-0.485325,0.873605,-0.819533,-1.96269,0.593529,2.69138, +-0.485266,0.87368,-0.819641,-1.96262,0.593662,2.69146, +-0.485208,0.873752,-0.819751,-1.96254,0.593794,2.69153, +-0.48515,0.873822,-0.819861,-1.96247,0.593928,2.6916, +-0.485093,0.873891,-0.819973,-1.96241,0.594062,2.69167, +-0.485038,0.873957,-0.820086,-1.96234,0.594197,2.69174, +-0.484983,0.874023,-0.8202,-1.96227,0.594332,2.6918, +-0.484929,0.874087,-0.820314,-1.96221,0.594468,2.69187, +-0.484875,0.87415,-0.820429,-1.96215,0.594603,2.69193, +-0.484822,0.874212,-0.820544,-1.96208,0.594739,2.69199, +-0.48477,0.874274,-0.820661,-1.96202,0.594875,2.69205, +-0.484719,0.874334,-0.820778,-1.96196,0.595011,2.69211, +-0.484669,0.874394,-0.820896,-1.9619,0.595148,2.69217, +-0.48462,0.874454,-0.821016,-1.96184,0.595286,2.69223, +-0.484572,0.874513,-0.821136,-1.96178,0.595425,2.69229, +-0.484524,0.874573,-0.821257,-1.96172,0.595563,2.69235, +-0.484477,0.874633,-0.821378,-1.96166,0.595702,2.69241, +-0.48443,0.874692,-0.8215,-1.9616,0.59584,2.69247, +-0.484384,0.874751,-0.821622,-1.96155,0.595979,2.69253, +-0.484338,0.874809,-0.821746,-1.96149,0.596118,2.69259, +-0.484295,0.874866,-0.821871,-1.96143,0.596259,2.69264, +-0.484252,0.874922,-0.821996,-1.96137,0.596399,2.6927, +-0.48421,0.874978,-0.822123,-1.96132,0.596541,2.69276, +-0.484169,0.875033,-0.82225,-1.96126,0.596682,2.69281, +-0.484128,0.875088,-0.822377,-1.96121,0.596823,2.69287, +-0.484089,0.875142,-0.822504,-1.96115,0.596964,2.69292, +-0.48405,0.875196,-0.822633,-1.9611,0.597106,2.69297, +-0.484012,0.875249,-0.822762,-1.96105,0.597248,2.69303, +-0.483975,0.875301,-0.822893,-1.961,0.597391,2.69308, +-0.48394,0.875351,-0.823024,-1.96095,0.597534,2.69313, +-0.483906,0.875401,-0.823156,-1.9609,0.597678,2.69318, +-0.483872,0.87545,-0.823289,-1.96085,0.597822,2.69323, +-0.483839,0.8755,-0.823421,-1.9608,0.597965,2.69328, +-0.483806,0.875548,-0.823555,-1.96075,0.598109,2.69333, +-0.483775,0.875596,-0.823688,-1.9607,0.598253,2.69337, +-0.483744,0.875643,-0.823823,-1.96065,0.598397,2.69342, +-0.483715,0.875688,-0.823959,-1.96061,0.598543,2.69347, +-0.483687,0.875732,-0.824096,-1.96056,0.598688,2.69351, +-0.48366,0.875776,-0.824233,-1.96052,0.598834,2.69355, +-0.483634,0.875819,-0.824371,-1.96048,0.598979,2.6936, +-0.483608,0.875861,-0.824509,-1.96044,0.599125,2.69364, +-0.483583,0.875903,-0.824647,-1.96039,0.599271,2.69368, +-0.483559,0.875944,-0.824786,-1.96035,0.599416,2.69372, +-0.483536,0.875984,-0.824925,-1.96031,0.599563,2.69376, +-0.483515,0.876022,-0.825066,-1.96027,0.599709,2.6938, +-0.483494,0.87606,-0.825207,-1.96024,0.599856,2.69384, +-0.483475,0.876096,-0.825349,-1.9602,0.600003,2.69387, +-0.483456,0.876132,-0.82549,-1.96017,0.60015,2.69391, +-0.483438,0.876167,-0.825632,-1.96013,0.600296,2.69395, +-0.483421,0.876202,-0.825774,-1.9601,0.600443,2.69398, +-0.483405,0.876235,-0.825917,-1.96006,0.600589,2.69401, +-0.48339,0.876268,-0.82606,-1.96003,0.600736,2.69405, +-0.483376,0.876299,-0.826204,-1.96,0.600883,2.69408, +-0.483363,0.876329,-0.826349,-1.95997,0.60103,2.69411, +-0.483352,0.876358,-0.826494,-1.95994,0.601176,2.69414, +-0.483341,0.876386,-0.826639,-1.95991,0.601323,2.69416, +-0.483331,0.876414,-0.826784,-1.95988,0.60147,2.69419, +-0.483321,0.876441,-0.826929,-1.95986,0.601616,2.69422, +-0.483313,0.876467,-0.827074,-1.95983,0.601762,2.69424, +-0.483305,0.876491,-0.82722,-1.95981,0.601908,2.69427, +-0.483299,0.876515,-0.827367,-1.95978,0.602054,2.69429, +-0.483294,0.876537,-0.827514,-1.95976,0.6022,2.69432, +-0.483291,0.876558,-0.827662,-1.95974,0.602347,2.69434, +-0.483287,0.876579,-0.827809,-1.95972,0.602493,2.69436, +-0.483285,0.876599,-0.827957,-1.9597,0.602639,2.69438, +-0.483283,0.876618,-0.828104,-1.95968,0.602784,2.6944, +-0.483282,0.876636,-0.828252,-1.95966,0.602929,2.69441, +-0.483282,0.876653,-0.8284,-1.95964,0.603074,2.69443, +-0.483283,0.876669,-0.828548,-1.95963,0.603219,2.69445, +-0.483286,0.876683,-0.828698,-1.95961,0.603364,2.69446, +-0.48329,0.876696,-0.828847,-1.9596,0.603509,2.69447, +-0.483294,0.876709,-0.828996,-1.95959,0.603654,2.69449, +-0.483299,0.876721,-0.829145,-1.95958,0.603798,2.6945, +-0.483305,0.876732,-0.829294,-1.95956,0.603943,2.69451, +-0.483311,0.876742,-0.829443,-1.95955,0.604087,2.69452, +-0.483319,0.876752,-0.829593,-1.95955,0.60423,2.69453, +-0.483328,0.876759,-0.829743,-1.95954,0.604373,2.69454, +-0.483339,0.876766,-0.829893,-1.95953,0.604516,2.69454, +-0.48335,0.876771,-0.830044,-1.95953,0.60466,2.69455, +-0.483363,0.876776,-0.830194,-1.95952,0.604803,2.69455, +-0.483377,0.87678,-0.830344,-1.95952,0.604946,2.69456, +-0.483391,0.876784,-0.830494,-1.95951,0.605089,2.69456, +-0.483407,0.876787,-0.830644,-1.95951,0.605231,2.69456, +-0.483424,0.876788,-0.830794,-1.95951,0.605372,2.69457, +-0.483443,0.876788,-0.830945,-1.95951,0.605513,2.69457, +-0.483463,0.876787,-0.831096,-1.95951,0.605654,2.69456, +-0.483485,0.876785,-0.831248,-1.95951,0.605795,2.69456, +-0.483508,0.876782,-0.831399,-1.95952,0.605935,2.69456, +-0.483532,0.876779,-0.831549,-1.95952,0.606076,2.69456, +-0.483556,0.876775,-0.8317,-1.95952,0.606217,2.69455, +-0.483582,0.87677,-0.83185,-1.95953,0.606358,2.69455, +-0.48361,0.876764,-0.832,-1.95953,0.606499,2.69454, +-0.483638,0.876757,-0.832149,-1.95954,0.60664,2.69454, +-0.483667,0.87675,-0.832298,-1.95955,0.606781,2.69453, +-0.483697,0.876743,-0.832446,-1.95955,0.60692,2.69452, +-0.483727,0.876735,-0.832592,-1.95956,0.607059,2.69451, +-0.483756,0.876728,-0.832737,-1.95957,0.607196,2.69451, +-0.483787,0.87672,-0.832881,-1.95958,0.607333,2.6945, +-0.483817,0.876712,-0.833024,-1.95959,0.607468,2.69449, +-0.483849,0.876703,-0.833165,-1.95959,0.607603,2.69448, +-0.483881,0.876693,-0.833306,-1.9596,0.607736,2.69447, +-0.483914,0.876682,-0.833445,-1.95962,0.607868,2.69446, +-0.483949,0.87667,-0.833582,-1.95963,0.607998,2.69445, +-0.483984,0.876658,-0.833717,-1.95964,0.608126,2.69443, +-0.48402,0.876645,-0.83385,-1.95965,0.608252,2.69442, +-0.484056,0.876632,-0.833981,-1.95966,0.608375,2.69441, +-0.484094,0.876618,-0.83411,-1.95968,0.608497,2.6944, +-0.484132,0.876603,-0.834238,-1.95969,0.608618,2.69438, +-0.484172,0.876587,-0.834364,-1.95971,0.608737,2.69437, +-0.484213,0.87657,-0.834488,-1.95972,0.608853,2.69435, +-0.484254,0.876553,-0.83461,-1.95974,0.608967,2.69433, +-0.484295,0.876534,-0.83473,-1.95976,0.609079,2.69431, +-0.484337,0.876516,-0.834847,-1.95978,0.609188,2.69429, +-0.484379,0.876497,-0.834962,-1.95979,0.609294,2.69427, +-0.484421,0.876477,-0.835075,-1.95981,0.609398,2.69425, +-0.484465,0.876456,-0.835186,-1.95983,0.6095,2.69423, +-0.484509,0.876434,-0.835295,-1.95985,0.6096,2.69421, +-0.484554,0.876411,-0.835403,-1.95987,0.609699,2.69419, +-0.4846,0.876387,-0.835508,-1.95989,0.609795,2.69416, +-0.484646,0.876362,-0.835611,-1.95992,0.609888,2.69414, +-0.484692,0.876337,-0.835712,-1.95994,0.609979,2.69411, +-0.484739,0.876311,-0.83581,-1.95996,0.610067,2.69409, +-0.484786,0.876284,-0.835907,-1.95999,0.610153,2.69406, +-0.484833,0.876256,-0.836001,-1.96001,0.610238,2.69403, +-0.484881,0.876227,-0.836095,-1.96004,0.61032,2.694, +-0.484929,0.876197,-0.836186,-1.96007,0.610401,2.69397, +-0.484976,0.876166,-0.836276,-1.96009,0.610481,2.69394, +-0.485024,0.876134,-0.836364,-1.96012,0.610558,2.69391, +-0.485072,0.876102,-0.83645,-1.96015,0.610633,2.69387, +-0.485119,0.876069,-0.836534,-1.96017,0.610707,2.69384, +-0.485166,0.876036,-0.836617,-1.9602,0.610779,2.69381, +-0.485213,0.876001,-0.836698,-1.96023,0.610849,2.69377, +-0.48526,0.875965,-0.836778,-1.96026,0.610919,2.69373, +-0.485307,0.875929,-0.836857,-1.96029,0.610987,2.6937, +-0.485354,0.875891,-0.836935,-1.96032,0.611054,2.69366, +-0.485401,0.875853,-0.837011,-1.96034,0.61112,2.69362, +-0.485447,0.875815,-0.837085,-1.96037,0.611184,2.69358, +-0.485494,0.875776,-0.837159,-1.9604,0.611247,2.69354, +-0.48554,0.875737,-0.837231,-1.96043,0.611308,2.6935, +-0.485585,0.875696,-0.837302,-1.96046,0.611368,2.69346, +-0.48563,0.875655,-0.837372,-1.96049,0.611428,2.69342, +-0.485675,0.875612,-0.837442,-1.96052,0.611487,2.69338, +-0.485719,0.875569,-0.837511,-1.96055,0.611545,2.69333, +-0.485764,0.875526,-0.837578,-1.96058,0.611602,2.69329, +-0.485808,0.875483,-0.837645,-1.96061,0.611657,2.69324, +-0.485853,0.875439,-0.83771,-1.96064,0.611711,2.6932, +-0.485896,0.875395,-0.837774,-1.96067,0.611765,2.69315, +-0.485939,0.87535,-0.837838,-1.9607,0.611818,2.6931, +-0.485982,0.875304,-0.8379,-1.96073,0.61187,2.69306, +-0.486024,0.875257,-0.837963,-1.96076,0.611922,2.69301, +-0.486066,0.875209,-0.838025,-1.96079,0.611973,2.69296, +-0.486108,0.875162,-0.838086,-1.96082,0.612023,2.69291, +-0.48615,0.875114,-0.838146,-1.96085,0.612071,2.69286, +-0.486192,0.875066,-0.838205,-1.96088,0.612119,2.69281, +-0.486233,0.875018,-0.838263,-1.96091,0.612164,2.69276, +-0.486273,0.874969,-0.838319,-1.96093,0.612208,2.69271, +-0.486313,0.874919,-0.838375,-1.96096,0.612249,2.69266, +-0.486352,0.874869,-0.83843,-1.96099,0.612289,2.69261, +-0.486391,0.874819,-0.838485,-1.96102,0.612327,2.69255, +-0.48643,0.874769,-0.838539,-1.96104,0.612365,2.6925, +-0.486469,0.874719,-0.838593,-1.96107,0.612401,2.69245, +-0.486508,0.874669,-0.838646,-1.9611,0.612436,2.6924, +-0.486546,0.874618,-0.838699,-1.96112,0.61247,2.69235, +-0.486584,0.874567,-0.83875,-1.96115,0.612503,2.69229, +-0.48662,0.874516,-0.8388,-1.96118,0.612536,2.69224, +-0.486656,0.874464,-0.838849,-1.9612,0.612569,2.69219, +-0.486692,0.874413,-0.838897,-1.96123,0.612601,2.69213, +-0.486728,0.874361,-0.838944,-1.96125,0.612634,2.69208, +-0.486763,0.87431,-0.838991,-1.96128,0.612666,2.69202, +-0.486798,0.874258,-0.839037,-1.9613,0.612698,2.69197, +-0.486833,0.874206,-0.839083,-1.96133,0.61273,2.69191, +-0.486867,0.874153,-0.839127,-1.96135,0.612761,2.69186, +-0.486901,0.874099,-0.83917,-1.96137,0.612791,2.6918, +-0.486934,0.874046,-0.839213,-1.9614,0.61282,2.69175, +-0.486967,0.873992,-0.839255,-1.96142,0.612849,2.69169, +-0.487,0.873939,-0.839297,-1.96144,0.612877,2.69163, +-0.487033,0.873885,-0.839339,-1.96147,0.612906,2.69157, +-0.487065,0.873832,-0.839381,-1.96149,0.612934,2.69152, +-0.487098,0.873777,-0.839422,-1.96151,0.612961,2.69146, +-0.487129,0.873722,-0.839462,-1.96153,0.612988,2.6914, +-0.48716,0.873667,-0.839501,-1.96155,0.613013,2.69134, +-0.487191,0.87361,-0.83954,-1.96157,0.613038,2.69128, +-0.487222,0.873553,-0.839578,-1.96159,0.613063,2.69122, +-0.487253,0.873497,-0.839616,-1.96161,0.613087,2.69116, +-0.487284,0.87344,-0.839654,-1.96164,0.613111,2.6911, +-0.487315,0.873383,-0.839691,-1.96166,0.613135,2.69104, +-0.487345,0.873325,-0.839729,-1.96168,0.613158,2.69098, +-0.487375,0.873267,-0.839765,-1.96169,0.613181,2.69091, +-0.487404,0.873207,-0.8398,-1.96171,0.613202,2.69085, +-0.487433,0.873147,-0.839835,-1.96173,0.613223,2.69079, +-0.487462,0.873087,-0.839869,-1.96175,0.613244,2.69072, +-0.487492,0.873027,-0.839903,-1.96177,0.613264,2.69066, +-0.487521,0.872966,-0.839938,-1.96179,0.613283,2.69059, +-0.48755,0.872905,-0.839971,-1.96181,0.613303,2.69053, +-0.487578,0.872844,-0.840005,-1.96182,0.613322,2.69046, +-0.487606,0.872782,-0.840037,-1.96184,0.61334,2.69039, +-0.487633,0.872719,-0.840069,-1.96186,0.613358,2.69032, +-0.487661,0.872655,-0.8401,-1.96188,0.613374,2.69025, +-0.487689,0.87259,-0.840131,-1.96189,0.613391,2.69018, +-0.487716,0.872524,-0.840162,-1.96191,0.613407,2.69011, +-0.487744,0.872458,-0.840193,-1.96193,0.613422,2.69004, +-0.487771,0.872392,-0.840224,-1.96194,0.613438,2.68997, +-0.487798,0.872325,-0.840254,-1.96196,0.613453,2.6899, +-0.487824,0.872257,-0.840283,-1.96197,0.613468,2.68983, +-0.48785,0.872188,-0.840311,-1.96199,0.613481,2.68975, +-0.487876,0.872118,-0.840339,-1.962,0.613494,2.68968, +-0.487902,0.872048,-0.840367,-1.96202,0.613506,2.6896, +-0.487928,0.871977,-0.840395,-1.96203,0.613518,2.68953, +-0.487954,0.871906,-0.840422,-1.96205,0.61353,2.68945, +-0.487979,0.871835,-0.840449,-1.96206,0.613541,2.68937, +-0.488005,0.871764,-0.840476,-1.96208,0.613552,2.6893, +-0.488029,0.871692,-0.840502,-1.96209,0.613562,2.68922, +-0.488053,0.871618,-0.840527,-1.9621,0.613572,2.68914, +-0.488077,0.871544,-0.840551,-1.96212,0.61358,2.68906, +-0.488101,0.871469,-0.840576,-1.96213,0.613588,2.68898, +-0.488126,0.871393,-0.8406,-1.96214,0.613596,2.68889, +-0.48815,0.871317,-0.840623,-1.96215,0.613603,2.68881, +-0.488173,0.871241,-0.840647,-1.96217,0.613611,2.68873, +-0.488197,0.871164,-0.84067,-1.96218,0.613618,2.68864, +-0.488219,0.871085,-0.840693,-1.96219,0.613624,2.68856, +-0.488242,0.871006,-0.840714,-1.9622,0.613629,2.68847, +-0.488264,0.870926,-0.840735,-1.96221,0.613633,2.68839, +-0.488286,0.870845,-0.840755,-1.96222,0.613637,2.6883, +-0.488308,0.870764,-0.840776,-1.96223,0.61364,2.68821, +-0.48833,0.870683,-0.840796,-1.96224,0.613643,2.68812, +-0.488352,0.870602,-0.840816,-1.96225,0.613646,2.68803, +-0.488373,0.870519,-0.840836,-1.96226,0.613649,2.68794, +-0.488394,0.870436,-0.840854,-1.96227,0.613651,2.68785, +-0.488414,0.870352,-0.840872,-1.96228,0.613651,2.68776, +-0.488434,0.870267,-0.840889,-1.96228,0.613651,2.68766, +-0.488454,0.870181,-0.840906,-1.96229,0.613651,2.68757, +-0.488474,0.870095,-0.840923,-1.9623,0.61365,2.68747, +-0.488494,0.870007,-0.840939,-1.96231,0.613649,2.68738, +-0.488514,0.86992,-0.840956,-1.96231,0.613648,2.68728, +-0.488533,0.869831,-0.840971,-1.96232,0.613646,2.68718, +-0.488552,0.869741,-0.840986,-1.96233,0.613644,2.68709, +-0.48857,0.86965,-0.841,-1.96233,0.61364,2.68699, +-0.488588,0.869558,-0.841014,-1.96234,0.613636,2.68689, +-0.488605,0.869465,-0.841027,-1.96234,0.613631,2.68678, +-0.488623,0.869372,-0.84104,-1.96235,0.613625,2.68668, +-0.488641,0.869278,-0.841052,-1.96235,0.61362,2.68658, +-0.488658,0.869184,-0.841065,-1.96236,0.613613,2.68647, +-0.488675,0.86909,-0.841077,-1.96236,0.613606,2.68637, +-0.488692,0.868994,-0.841088,-1.96236,0.613598,2.68626, +-0.488707,0.868897,-0.841098,-1.96237,0.613589,2.68616, +-0.488723,0.868799,-0.841108,-1.96237,0.613579,2.68605, +-0.488738,0.8687,-0.841117,-1.96237,0.613568,2.68594, +-0.488754,0.868601,-0.841125,-1.96237,0.613557,2.68583, +-0.488769,0.868501,-0.841134,-1.96238,0.613546,2.68572, +-0.488784,0.868401,-0.841143,-1.96238,0.613534,2.68561, +-0.488799,0.868299,-0.841151,-1.96238,0.613521,2.6855, +-0.488813,0.868197,-0.841158,-1.96238,0.613507,2.68538, +-0.488826,0.868093,-0.841164,-1.96238,0.613493,2.68527, +-0.488839,0.867989,-0.84117,-1.96238,0.613477,2.68515, +-0.488852,0.867883,-0.841175,-1.96238,0.61346,2.68504, +-0.488865,0.867777,-0.841179,-1.96238,0.613443,2.68492, +-0.488877,0.867671,-0.841184,-1.96238,0.613425,2.6848, +-0.48889,0.867564,-0.841189,-1.96237,0.613406,2.68468, +-0.488902,0.867456,-0.841192,-1.96237,0.613387,2.68456, +-0.488913,0.867347,-0.841196,-1.96237,0.613367,2.68444, +-0.488924,0.867237,-0.841198,-1.96237,0.613346,2.68432, +-0.488934,0.867126,-0.841199,-1.96236,0.613323,2.6842, +-0.488944,0.867014,-0.8412,-1.96236,0.613299,2.68407, +-0.488954,0.866901,-0.841201,-1.96236,0.613275,2.68395, +-0.488964,0.866787,-0.841202,-1.96235,0.613251,2.68382, +-0.488974,0.866673,-0.841202,-1.96235,0.613226,2.68369, +-0.488984,0.866558,-0.841202,-1.96234,0.6132,2.68357, +-0.488992,0.866442,-0.841201,-1.96234,0.613173,2.68344, +-0.489,0.866325,-0.841199,-1.96233,0.613144,2.68331, +-0.489007,0.866206,-0.841196,-1.96232,0.613115,2.68317, +-0.489015,0.866087,-0.841193,-1.96231,0.613084,2.68304, +-0.489022,0.865967,-0.841189,-1.96231,0.613053,2.68291, +-0.489029,0.865846,-0.841186,-1.9623,0.613021,2.68277, +-0.489036,0.865725,-0.841182,-1.96229,0.612989,2.68264, +-0.489043,0.865603,-0.841177,-1.96228,0.612955,2.6825, +-0.489048,0.86548,-0.841172,-1.96227,0.612921,2.68236, +-0.489053,0.865356,-0.841165,-1.96226,0.612885,2.68223, +-0.489058,0.865231,-0.841158,-1.96225,0.612848,2.68209, +-0.489062,0.865104,-0.84115,-1.96224,0.61281,2.68194, +-0.489066,0.864977,-0.841141,-1.96222,0.612771,2.6818, +-0.48907,0.864849,-0.841132,-1.96221,0.612732,2.68166, +-0.489074,0.864721,-0.841123,-1.9622,0.612692,2.68151, +-0.489078,0.864592,-0.841113,-1.96219,0.612651,2.68137, +-0.489081,0.864461,-0.841103,-1.96217,0.612609,2.68122, +-0.489082,0.86433,-0.841091,-1.96216,0.612565,2.68108, +-0.489084,0.864197,-0.841078,-1.96214,0.61252,2.68093, +-0.489085,0.864063,-0.841064,-1.96212,0.612475,2.68078, +-0.489086,0.863928,-0.84105,-1.96211,0.612428,2.68063, +-0.489087,0.863793,-0.841036,-1.96209,0.612381,2.68047, +-0.489088,0.863657,-0.841021,-1.96207,0.612333,2.68032, +-0.489089,0.86352,-0.841006,-1.96205,0.612284,2.68017, +-0.489089,0.863382,-0.84099,-1.96203,0.612234,2.68001, +-0.489088,0.863244,-0.840974,-1.96202,0.612184,2.67986, +-0.489088,0.863106,-0.840958,-1.962,0.612134,2.6797, +-0.489088,0.862968,-0.840943,-1.96198,0.612083,2.67955, +-0.489088,0.86283,-0.840928,-1.96196,0.612033,2.67939, +-0.489087,0.862692,-0.840913,-1.96195,0.611983,2.67924, +-0.489087,0.862555,-0.8409,-1.96193,0.611934,2.67908, +-0.489086,0.862418,-0.840886,-1.96191,0.611884,2.67893, +-0.489084,0.862281,-0.840873,-1.9619,0.611834,2.67877, +-0.489082,0.862143,-0.84086,-1.96188,0.611784,2.67862, +-0.489078,0.862004,-0.840846,-1.96187,0.611733,2.67846, +-0.489073,0.861865,-0.840831,-1.96185,0.611681,2.6783, +-0.489068,0.861724,-0.840815,-1.96183,0.611627,2.67814, +-0.489062,0.861582,-0.840799,-1.96181,0.611572,2.67798, +-0.489055,0.861438,-0.84078,-1.96179,0.611516,2.67782, +-0.489047,0.861292,-0.84076,-1.96177,0.611457,2.67765, +-0.489039,0.861143,-0.840739,-1.96175,0.611396,2.67749, +-0.48903,0.860993,-0.840714,-1.96172,0.611332,2.67732, +-0.48902,0.860842,-0.840688,-1.9617,0.611267,2.67715, +-0.48901,0.860688,-0.84066,-1.96167,0.611199,2.67698, +-0.489,0.860534,-0.840629,-1.96164,0.611129,2.6768, +-0.48899,0.860378,-0.840598,-1.9616,0.611058,2.67663, +-0.48898,0.860221,-0.840564,-1.96157,0.610985,2.67645, +-0.488969,0.860063,-0.840528,-1.96153,0.61091,2.67628, +-0.488958,0.859903,-0.840491,-1.9615,0.610834,2.6761, +-0.488945,0.859741,-0.840452,-1.96146,0.610755,2.67591, +-0.488932,0.859577,-0.840412,-1.96142,0.610675,2.67573, +-0.488918,0.859413,-0.840371,-1.96138,0.610593,2.67555, +-0.488904,0.859248,-0.840329,-1.96134,0.610511,2.67536, +-0.488889,0.859081,-0.840287,-1.96129,0.610428,2.67517, +-0.488874,0.858914,-0.840244,-1.96125,0.610344,2.67498, +-0.488859,0.858746,-0.8402,-1.96121,0.610259,2.67479, +-0.488843,0.858576,-0.840155,-1.96117,0.610172,2.6746, +-0.488826,0.858405,-0.840108,-1.96112,0.610084,2.67441, +-0.488807,0.858232,-0.840061,-1.96108,0.609994,2.67421, +-0.488789,0.858057,-0.840012,-1.96103,0.609903,2.67401, +-0.48877,0.857882,-0.839963,-1.96098,0.609812,2.67382, +-0.488751,0.857706,-0.839914,-1.96093,0.60972,2.67362, +-0.488731,0.857529,-0.839864,-1.96089,0.609626,2.67341, +-0.488711,0.857351,-0.839813,-1.96084,0.609532,2.67321, +-0.48869,0.857171,-0.839761,-1.96079,0.609437,2.67301, +-0.488668,0.856989,-0.839708,-1.96074,0.60934,2.6728, +-0.488645,0.856806,-0.839654,-1.96069,0.609241,2.67259, +-0.488621,0.856622,-0.839599,-1.96063,0.609142,2.67238, +-0.488597,0.856437,-0.839543,-1.96058,0.609041,2.67217, +-0.488573,0.856251,-0.839486,-1.96053,0.60894,2.67196, +-0.488548,0.856064,-0.839429,-1.96047,0.608838,2.67175, +-0.488523,0.855876,-0.839371,-1.96042,0.608735,2.67153, +-0.488496,0.855687,-0.839312,-1.96036,0.608631,2.67132, +-0.488469,0.855496,-0.839251,-1.9603,0.608525,2.6711, +-0.488441,0.855303,-0.839189,-1.96025,0.608417,2.67088, +-0.488412,0.855109,-0.839126,-1.96019,0.608309,2.67066, +-0.488382,0.854915,-0.839062,-1.96013,0.608199,2.67044, +-0.488353,0.85472,-0.838998,-1.96007,0.608089,2.67021, +-0.488322,0.854524,-0.838933,-1.96,0.607979,2.66999, +-0.488292,0.854326,-0.838867,-1.95994,0.607867,2.66976, +-0.48826,0.854128,-0.8388,-1.95988,0.607753,2.66954, +-0.488227,0.853927,-0.838732,-1.95982,0.607639,2.66931, +-0.488193,0.853726,-0.838662,-1.95975,0.607522,2.66907, +-0.488159,0.853523,-0.838591,-1.95968,0.607405,2.66884, +-0.488124,0.85332,-0.83852,-1.95962,0.607287,2.66861, +-0.488088,0.853116,-0.838448,-1.95955,0.607169,2.66837, +-0.488052,0.852911,-0.838375,-1.95948,0.607049,2.66814, +-0.488016,0.852705,-0.838301,-1.95941,0.606929,2.6679, +-0.487978,0.852498,-0.838226,-1.95934,0.606807,2.66766, +-0.487939,0.852289,-0.838149,-1.95927,0.606684,2.66742, +-0.4879,0.85208,-0.838072,-1.9592,0.606559,2.66718, +-0.487859,0.851869,-0.837993,-1.95912,0.606434,2.66693, +-0.487818,0.851657,-0.837913,-1.95905,0.606308,2.66669, +-0.487777,0.851445,-0.837833,-1.95897,0.606181,2.66644, +-0.487735,0.851232,-0.837752,-1.9589,0.606053,2.66619, +-0.487693,0.851019,-0.83767,-1.95882,0.605925,2.66594, +-0.487649,0.850804,-0.837587,-1.95874,0.605795,2.66569, +-0.487604,0.850587,-0.837502,-1.95867,0.605664,2.66544, +-0.487559,0.850369,-0.837416,-1.95859,0.605531,2.66519, +-0.487512,0.850151,-0.837329,-1.9585,0.605398,2.66493, +-0.487465,0.849931,-0.837241,-1.95842,0.605264,2.66467, +-0.487418,0.849711,-0.837152,-1.95834,0.605129,2.66441, +-0.487369,0.84949,-0.837062,-1.95826,0.604993,2.66415, +-0.487321,0.849268,-0.836972,-1.95817,0.604857,2.66389, +-0.487271,0.849045,-0.83688,-1.95809,0.604719,2.66363, +-0.48722,0.848821,-0.836786,-1.958,0.60458,2.66337, +-0.487167,0.848595,-0.836692,-1.95791,0.604439,2.6631, +-0.487114,0.848369,-0.836596,-1.95782,0.604298,2.66283, +-0.487061,0.848142,-0.836499,-1.95773,0.604156,2.66256, +-0.487007,0.847914,-0.836402,-1.95764,0.604014,2.66229, +-0.486952,0.847686,-0.836303,-1.95755,0.603871,2.66202, +-0.486897,0.847457,-0.836204,-1.95746,0.603727,2.66175, +-0.486841,0.847227,-0.836103,-1.95736,0.603582,2.66148, +-0.486783,0.846995,-0.836001,-1.95727,0.603436,2.6612, +-0.486725,0.846763,-0.835898,-1.95717,0.603288,2.66092, +-0.486665,0.846529,-0.835793,-1.95708,0.60314,2.66064, +-0.486605,0.846295,-0.835688,-1.95698,0.602991,2.66036, +-0.486544,0.84606,-0.835581,-1.95688,0.602841,2.66008, +-0.486483,0.845825,-0.835474,-1.95678,0.602691,2.65979, +-0.486421,0.845588,-0.835366,-1.95668,0.60254,2.65951, +-0.486358,0.845351,-0.835256,-1.95658,0.602387,2.65922, +-0.486294,0.845112,-0.835145,-1.95647,0.602234,2.65893, +-0.486228,0.844872,-0.835032,-1.95637,0.602079,2.65864, +-0.486162,0.844631,-0.834918,-1.95626,0.601923,2.65835, +-0.486095,0.84439,-0.834804,-1.95615,0.601767,2.65806, +-0.486028,0.844148,-0.834688,-1.95605,0.601611,2.65776, +-0.48596,0.843906,-0.834572,-1.95594,0.601454,2.65747, +-0.485891,0.843663,-0.834454,-1.95583,0.601296,2.65717, +-0.485821,0.843419,-0.834336,-1.95572,0.601137,2.65687, +-0.48575,0.843174,-0.834215,-1.95561,0.600977,2.65657, +-0.485678,0.842927,-0.834093,-1.95549,0.600815,2.65627, +-0.485605,0.84268,-0.83397,-1.95538,0.600653,2.65596, +-0.485531,0.842432,-0.833846,-1.95526,0.600491,2.65566, +-0.485457,0.842184,-0.833721,-1.95515,0.600328,2.65535, +-0.485382,0.841935,-0.833596,-1.95503,0.600164,2.65504, +-0.485307,0.841685,-0.833469,-1.95491,0.599999,2.65473, +-0.48523,0.841434,-0.83334,-1.95479,0.599834,2.65442, +-0.485152,0.841181,-0.83321,-1.95467,0.599667,2.65411, +-0.485073,0.840928,-0.833079,-1.95455,0.599499,2.65379, +-0.484993,0.840674,-0.832946,-1.95442,0.599331,2.65347, +-0.484913,0.840419,-0.832813,-1.9543,0.599162,2.65315, +-0.484832,0.840165,-0.832679,-1.95417,0.598992,2.65283, +-0.48475,0.839909,-0.832543,-1.95404,0.598823,2.65251, +-0.484668,0.839653,-0.832407,-1.95392,0.598652,2.65219, +-0.484584,0.839396,-0.832269,-1.95379,0.59848,2.65187, +-0.4845,0.839137,-0.83213,-1.95366,0.598308,2.65154, +-0.484414,0.838878,-0.831989,-1.95353,0.598134,2.65121, +-0.484327,0.838618,-0.831847,-1.95339,0.597959,2.65088, +-0.48424,0.838357,-0.831704,-1.95326,0.597784,2.65055, +-0.484153,0.838096,-0.83156,-1.95312,0.597609,2.65021, +-0.484065,0.837835,-0.831416,-1.95299,0.597433,2.64988, +-0.483976,0.837572,-0.83127,-1.95285,0.597257,2.64954, +-0.483886,0.837309,-0.831122,-1.95271,0.59708,2.6492, +-0.483795,0.837045,-0.830974,-1.95257,0.596901,2.64886, +-0.483702,0.836779,-0.830823,-1.95243,0.596722,2.64852, +-0.483609,0.836513,-0.830672,-1.95229,0.596542,2.64818, +-0.483515,0.836247,-0.83052,-1.95214,0.596361,2.64783, +-0.483421,0.83598,-0.830366,-1.952,0.59618,2.64749, +-0.483327,0.835712,-0.830212,-1.95185,0.595999,2.64714, +-0.483231,0.835444,-0.830057,-1.9517,0.595817,2.64679, +-0.483135,0.835175,-0.829901,-1.95156,0.595634,2.64644, +-0.483037,0.834904,-0.829742,-1.95141,0.59545,2.64608, +-0.482938,0.834633,-0.829583,-1.95125,0.595265,2.64573, +-0.482838,0.834361,-0.829422,-1.9511,0.595079,2.64537, +-0.482738,0.834088,-0.82926,-1.95095,0.594893,2.64501, +-0.482638,0.833816,-0.829098,-1.95079,0.594707,2.64465, +-0.482537,0.833542,-0.828934,-1.95064,0.59452,2.64429, +-0.482435,0.833268,-0.82877,-1.95048,0.594333,2.64392, +-0.482332,0.832993,-0.828604,-1.95032,0.594144,2.64356, +-0.482228,0.832717,-0.828436,-1.95016,0.593955,2.64319, +-0.482123,0.83244,-0.828267,-1.95,0.593765,2.64282, +-0.482017,0.832162,-0.828097,-1.94983,0.593574,2.64245, +-0.48191,0.831884,-0.827926,-1.94967,0.593383,2.64207, +-0.481804,0.831605,-0.827755,-1.94951,0.593191,2.6417, +-0.481696,0.831327,-0.827582,-1.94934,0.593,2.64132, +-0.481588,0.831047,-0.827408,-1.94917,0.592808,2.64094, +-0.481479,0.830767,-0.827233,-1.949,0.592614,2.64056, +-0.481369,0.830485,-0.827057,-1.94883,0.59242,2.64018, +-0.481258,0.830203,-0.826879,-1.94866,0.592225,2.6398, +-0.481146,0.82992,-0.8267,-1.94849,0.59203,2.63941, +-0.481034,0.829637,-0.82652,-1.94831,0.591834,2.63902, +-0.480921,0.829353,-0.826339,-1.94814,0.591638,2.63863, +-0.480808,0.829069,-0.826158,-1.94796,0.591442,2.63824, +-0.480694,0.828784,-0.825975,-1.94778,0.591245,2.63785, +-0.480579,0.828499,-0.825791,-1.9476,0.591047,2.63746, +-0.480463,0.828212,-0.825606,-1.94742,0.590848,2.63706, +-0.480345,0.827925,-0.825419,-1.94724,0.590649,2.63666, +-0.480228,0.827637,-0.825232,-1.94705,0.590449,2.63626, +-0.480109,0.827348,-0.825043,-1.94687,0.590248,2.63586, +-0.479991,0.827059,-0.824854,-1.94668,0.590048,2.63545, +-0.479872,0.82677,-0.824663,-1.94649,0.589847,2.63505, +-0.479752,0.82648,-0.824472,-1.9463,0.589646,2.63464, +-0.479631,0.82619,-0.82428,-1.94611,0.589444,2.63423, +-0.479509,0.825898,-0.824086,-1.94592,0.58924,2.63382, +-0.479387,0.825605,-0.82389,-1.94572,0.589036,2.6334, +-0.479263,0.825312,-0.823694,-1.94553,0.588832,2.63299, +-0.479139,0.825018,-0.823496,-1.94533,0.588627,2.63257, +-0.479015,0.824725,-0.823298,-1.94513,0.588422,2.63215, +-0.47889,0.82443,-0.8231,-1.94493,0.588217,2.63173, +-0.478765,0.824136,-0.8229,-1.94473,0.588012,2.63131, +-0.478638,0.82384,-0.822699,-1.94453,0.587805,2.63088, +-0.478511,0.823543,-0.822496,-1.94433,0.587598,2.63046, +-0.478383,0.823245,-0.822292,-1.94412,0.58739,2.63003, +-0.478254,0.822947,-0.822087,-1.94392,0.587181,2.6296, +-0.478124,0.822649,-0.821881,-1.94371,0.586972,2.62916, +-0.477995,0.82235,-0.821675,-1.9435,0.586764,2.62873, +-0.477864,0.822051,-0.821468,-1.94329,0.586554,2.62829, +-0.477734,0.821751,-0.82126,-1.94307,0.586345,2.62786, +-0.477602,0.821451,-0.82105,-1.94286,0.586134,2.62742, +-0.477469,0.821149,-0.820839,-1.94264,0.585923,2.62697, +-0.477336,0.820847,-0.820627,-1.94243,0.585711,2.62653, +-0.477201,0.820544,-0.820414,-1.94221,0.585499,2.62608, +-0.477067,0.820241,-0.8202,-1.94199,0.585286,2.62563, +-0.476932,0.819938,-0.819985,-1.94177,0.585074,2.62518, +-0.476796,0.819634,-0.81977,-1.94154,0.584861,2.62473, +-0.476661,0.81933,-0.819553,-1.94132,0.584647,2.62428, +-0.476524,0.819025,-0.819336,-1.94109,0.584433,2.62382, +-0.476386,0.818719,-0.819117,-1.94087,0.584219,2.62336, +-0.476247,0.818412,-0.818896,-1.94064,0.584003,2.6229, +-0.476108,0.818104,-0.818675,-1.9404,0.583787,2.62244, +-0.475968,0.817796,-0.818453,-1.94017,0.583571,2.62198, +-0.475828,0.817488,-0.81823,-1.93994,0.583354,2.62151, +-0.475688,0.81718,-0.818007,-1.9397,0.583138,2.62104, +-0.475547,0.816871,-0.817782,-1.93947,0.582921,2.62057, +-0.475405,0.816561,-0.817557,-1.93923,0.582703,2.6201, +-0.475262,0.81625,-0.81733,-1.93899,0.582484,2.61963, +-0.475118,0.815939,-0.817101,-1.93875,0.582265,2.61915, +-0.474974,0.815627,-0.816872,-1.9385,0.582045,2.61867, +-0.474829,0.815314,-0.816642,-1.93826,0.581826,2.61819, +-0.474684,0.815002,-0.816411,-1.93801,0.581606,2.61771, +-0.474539,0.814689,-0.81618,-1.93776,0.581386,2.61723, +-0.474394,0.814376,-0.815948,-1.93751,0.581166,2.61674, +-0.474247,0.814062,-0.815714,-1.93726,0.580945,2.61626, +-0.474099,0.813747,-0.81548,-1.93701,0.580724,2.61577, +-0.473951,0.813432,-0.815243,-1.93675,0.580501,2.61527, +-0.473802,0.813115,-0.815006,-1.9365,0.580279,2.61478, +-0.473653,0.812799,-0.814769,-1.93624,0.580056,2.61428, +-0.473503,0.812482,-0.81453,-1.93598,0.579833,2.61378, +-0.473353,0.812165,-0.814291,-1.93572,0.57961,2.61328, +-0.473203,0.811847,-0.814052,-1.93545,0.579386,2.61278, +-0.473052,0.811529,-0.81381,-1.93519,0.579162,2.61228, +-0.472899,0.811209,-0.813568,-1.93492,0.578937,2.61177, +-0.472746,0.810889,-0.813324,-1.93466,0.578711,2.61126, +-0.472593,0.810568,-0.81308,-1.93438,0.578485,2.61075, +-0.472439,0.810248,-0.812834,-1.93411,0.578259,2.61024, +-0.472285,0.809927,-0.812589,-1.93384,0.578034,2.60973, +-0.472131,0.809606,-0.812342,-1.93357,0.577808,2.60921, +-0.471976,0.809284,-0.812095,-1.93329,0.577581,2.60869, +-0.47182,0.808962,-0.811846,-1.93301,0.577354,2.60817, +-0.471664,0.808639,-0.811596,-1.93273,0.577126,2.60765, +-0.471507,0.808315,-0.811345,-1.93245,0.576898,2.60712, +-0.471349,0.80799,-0.811093,-1.93216,0.576669,2.6066, +-0.471191,0.807666,-0.81084,-1.93188,0.576441,2.60607, +-0.471032,0.807341,-0.810587,-1.93159,0.576212,2.60554, +-0.470874,0.807015,-0.810334,-1.9313,0.575983,2.60501, +-0.470715,0.80669,-0.810079,-1.93101,0.575754,2.60447, +-0.470555,0.806363,-0.809823,-1.93072,0.575524,2.60393, +-0.470394,0.806035,-0.809566,-1.93043,0.575293,2.60339, +-0.470233,0.805707,-0.809307,-1.93013,0.575062,2.60285, +-0.470071,0.805379,-0.809048,-1.92983,0.574831,2.60231, +-0.469909,0.80505,-0.808788,-1.92953,0.5746,2.60176, +-0.469746,0.804722,-0.808528,-1.92923,0.574369,2.60122, +-0.469584,0.804393,-0.808267,-1.92893,0.574138,2.60067, +-0.469421,0.804064,-0.808005,-1.92862,0.573906,2.60012, +-0.469257,0.803734,-0.807742,-1.92832,0.573674,2.59956, +-0.469092,0.803403,-0.807478,-1.92801,0.573441,2.59901, +-0.468927,0.803072,-0.807213,-1.9277,0.573208,2.59845, +-0.468761,0.80274,-0.806947,-1.92738,0.572975,2.59789, +-0.468595,0.802408,-0.80668,-1.92707,0.572741,2.59733, +-0.468429,0.802076,-0.806413,-1.92675,0.572508,2.59676, +-0.468263,0.801743,-0.806145,-1.92644,0.572275,2.5962, +-0.468096,0.80141,-0.805876,-1.92612,0.572041,2.59563, +-0.467928,0.801076,-0.805607,-1.9258,0.571806,2.59506, +-0.46776,0.800741,-0.805336,-1.92547,0.571571,2.59449, +-0.467591,0.800406,-0.805064,-1.92515,0.571336,2.59391, +-0.467421,0.800071,-0.804791,-1.92482,0.5711,2.59333, +-0.467251,0.799735,-0.804517,-1.92449,0.570865,2.59275, +-0.467082,0.799399,-0.804243,-1.92416,0.57063,2.59217, +-0.466912,0.799064,-0.803969,-1.92383,0.570394,2.59159, +-0.466741,0.798727,-0.803694,-1.92349,0.570159,2.59101, +-0.46657,0.79839,-0.803417,-1.92316,0.569922,2.59042, +-0.466398,0.798053,-0.803139,-1.92282,0.569685,2.58983, +-0.466226,0.797714,-0.802861,-1.92248,0.569448,2.58924, +-0.466053,0.797375,-0.802581,-1.92213,0.569211,2.58864, +-0.465879,0.797037,-0.802301,-1.92179,0.568974,2.58805, +-0.465706,0.796698,-0.802021,-1.92144,0.568737,2.58745, +-0.465533,0.796359,-0.80174,-1.92109,0.5685,2.58685, +-0.465359,0.796019,-0.801458,-1.92074,0.568262,2.58625, +-0.465184,0.795679,-0.801175,-1.92039,0.568024,2.58565, +-0.465008,0.795338,-0.800891,-1.92004,0.567785,2.58504, +-0.464832,0.794996,-0.800606,-1.91968,0.567547,2.58443, +-0.464656,0.794654,-0.80032,-1.91932,0.567308,2.58382, +-0.46448,0.794312,-0.800034,-1.91896,0.56707,2.58321, +-0.464303,0.793971,-0.799747,-1.9186,0.566831,2.58259, +-0.464127,0.793629,-0.79946,-1.91824,0.566593,2.58198, +-0.463949,0.793286,-0.799172,-1.91787,0.566353,2.58136, +-0.463772,0.792943,-0.798883,-1.9175,0.566114,2.58074, +-0.463593,0.7926,-0.798593,-1.91713,0.565874,2.58011, +-0.463414,0.792255,-0.798301,-1.91676,0.565634,2.57949, +-0.463234,0.791911,-0.798009,-1.91639,0.565394,2.57886, +-0.463055,0.791566,-0.797717,-1.91601,0.565154,2.57823, +-0.462875,0.791221,-0.797424,-1.91563,0.564914,2.5776, +-0.462696,0.790876,-0.79713,-1.91525,0.564674,2.57697, +-0.462515,0.79053,-0.796836,-1.91487,0.564433,2.57633, +-0.462334,0.790184,-0.796541,-1.91449,0.564192,2.57569, +-0.462153,0.789837,-0.796245,-1.9141,0.563951,2.57505, +-0.461971,0.78949,-0.795947,-1.91371,0.56371,2.57441, +-0.461788,0.789143,-0.795649,-1.91332,0.563469,2.57377, +-0.461606,0.788796,-0.795351,-1.91293,0.563228,2.57312, +-0.461424,0.788449,-0.795052,-1.91253,0.562987,2.57247, +-0.461241,0.788101,-0.794753,-1.91214,0.562746,2.57182, +-0.461058,0.787753,-0.794453,-1.91174,0.562504,2.57117, +-0.460875,0.787405,-0.794153,-1.91134,0.562262,2.57051, +-0.46069,0.787056,-0.793851,-1.91094,0.56202,2.56986, +-0.460506,0.786706,-0.793548,-1.91053,0.561777,2.5692, +-0.460321,0.786357,-0.793244,-1.91012,0.561535,2.56853, +-0.460136,0.786007,-0.79294,-1.90972,0.561293,2.56787, +-0.459951,0.785657,-0.792636,-1.9093,0.561051,2.56721, +-0.459766,0.785308,-0.792331,-1.90889,0.560809,2.56654, +-0.459581,0.784957,-0.792025,-1.90848,0.560566,2.56587, +-0.459394,0.784606,-0.791719,-1.90806,0.560323,2.5652, +-0.459208,0.784255,-0.791411,-1.90764,0.560079,2.56452, +-0.459021,0.783903,-0.791103,-1.90722,0.559836,2.56385, +-0.458833,0.783551,-0.790794,-1.9068,0.559593,2.56317, +-0.458646,0.7832,-0.790484,-1.90637,0.55935,2.56249, +-0.458459,0.782848,-0.790174,-1.90595,0.559107,2.5618, +-0.458272,0.782496,-0.789864,-1.90552,0.558864,2.56112, +-0.458084,0.782144,-0.789553,-1.90509,0.55862,2.56043, +-0.457895,0.781791,-0.789241,-1.90465,0.558376,2.55974, +-0.457706,0.781437,-0.788929,-1.90422,0.558132,2.55905, +-0.457517,0.781083,-0.788615,-1.90378,0.557888,2.55836, +-0.457328,0.78073,-0.788301,-1.90334,0.557644,2.55766, +-0.457139,0.780376,-0.787986,-1.9029,0.5574,2.55696, +-0.456949,0.780023,-0.787671,-1.90245,0.557156,2.55626, +-0.45676,0.779669,-0.787355,-1.90201,0.556912,2.55556, +-0.45657,0.779315,-0.787039,-1.90156,0.556667,2.55486, +-0.456379,0.77896,-0.786723,-1.90111,0.556422,2.55415, +-0.456188,0.778604,-0.786405,-1.90066,0.556177,2.55344, +-0.455997,0.778249,-0.786086,-1.9002,0.555932,2.55273, +-0.455806,0.777894,-0.785766,-1.89975,0.555688,2.55202, +-0.455615,0.777538,-0.785447,-1.89929,0.555443,2.5513, +-0.455423,0.777183,-0.785127,-1.89883,0.555198,2.55059, +-0.455232,0.776827,-0.784806,-1.89836,0.554953,2.54987, +-0.45504,0.776471,-0.784485,-1.8979,0.554707,2.54915, +-0.454847,0.776114,-0.784163,-1.89743,0.554462,2.54842, +-0.454655,0.775758,-0.783841,-1.89696,0.554216,2.5477, +-0.454462,0.775401,-0.783517,-1.89649,0.553971,2.54697, +-0.454269,0.775044,-0.783193,-1.89602,0.553725,2.54624, +-0.454076,0.774687,-0.782868,-1.89554,0.553479,2.54551, +-0.453883,0.77433,-0.782544,-1.89507,0.553234,2.54477, +-0.45369,0.773973,-0.782219,-1.89459,0.552988,2.54404, +-0.453496,0.773616,-0.781893,-1.89411,0.552742,2.5433, +-0.453302,0.773258,-0.781567,-1.89362,0.552496,2.54256, +-0.453108,0.7729,-0.781239,-1.89314,0.552249,2.54182, +-0.452914,0.772541,-0.780911,-1.89265,0.552003,2.54107, +-0.452719,0.772183,-0.780582,-1.89216,0.551757,2.54032, +-0.452525,0.771825,-0.780253,-1.89166,0.551511,2.53957, +-0.452331,0.771467,-0.779924,-1.89117,0.551265,2.53882, +-0.452136,0.771109,-0.779595,-1.89067,0.551018,2.53807, +-0.451941,0.77075,-0.779265,-1.89018,0.550771,2.53731, +-0.451745,0.770391,-0.778934,-1.88968,0.550524,2.53656, +-0.45155,0.770032,-0.778602,-1.88917,0.550277,2.5358, +-0.451354,0.769672,-0.77827,-1.88867,0.550031,2.53503, +-0.451158,0.769313,-0.777937,-1.88816,0.549784,2.53427, +-0.450963,0.768954,-0.777603,-1.88765,0.549537,2.5335, +-0.450767,0.768594,-0.77727,-1.88714,0.54929,2.53273, +-0.450571,0.768235,-0.776936,-1.88663,0.549043,2.53196, +-0.450375,0.767875,-0.776602,-1.88611,0.548795,2.53119, +-0.450178,0.767514,-0.776267,-1.88559,0.548548,2.53041, +-0.449981,0.767154,-0.775931,-1.88507,0.548301,2.52964, +-0.449784,0.766794,-0.775595,-1.88455,0.548053,2.52886, +-0.449587,0.766433,-0.775257,-1.88403,0.547806,2.52808, +-0.44939,0.766073,-0.77492,-1.8835,0.547558,2.52729, +-0.449193,0.765713,-0.774583,-1.88297,0.547311,2.52651, +-0.448996,0.765352,-0.774245,-1.88244,0.547063,2.52572, +-0.448799,0.764991,-0.773907,-1.88191,0.546815,2.52493, +-0.448601,0.76463,-0.773568,-1.88137,0.546567,2.52414, +-0.448403,0.764269,-0.773228,-1.88084,0.546319,2.52334, +-0.448205,0.763907,-0.772888,-1.8803,0.546071,2.52254, +-0.448007,0.763546,-0.772547,-1.87976,0.545823,2.52174, +-0.447809,0.763185,-0.772206,-1.87921,0.545575,2.52094, +-0.447611,0.762823,-0.771865,-1.87867,0.545327,2.52014, +-0.447413,0.762461,-0.771523,-1.87812,0.545079,2.51934, +-0.447214,0.762099,-0.771181,-1.87757,0.54483,2.51853, +-0.447015,0.761737,-0.770838,-1.87702,0.544582,2.51772, +-0.446816,0.761375,-0.770495,-1.87646,0.544333,2.51691, +-0.446617,0.761013,-0.770151,-1.87591,0.544085,2.51609, +-0.446418,0.760651,-0.769806,-1.87535,0.543836,2.51528, +-0.446219,0.760288,-0.769461,-1.87479,0.543588,2.51446, +-0.44602,0.759926,-0.769117,-1.87423,0.543339,2.51364, +-0.445821,0.759564,-0.768772,-1.87366,0.543091,2.51281, +-0.445622,0.759201,-0.768427,-1.87309,0.542842,2.51199, +-0.445422,0.758838,-0.768081,-1.87253,0.542592,2.51116, +-0.445222,0.758475,-0.767734,-1.87195,0.542343,2.51033, +-0.445022,0.758112,-0.767387,-1.87138,0.542094,2.5095, +-0.444822,0.757749,-0.767039,-1.8708,0.541845,2.50867, +-0.444623,0.757385,-0.766691,-1.87023,0.541596,2.50783, +-0.444423,0.757022,-0.766343,-1.86965,0.541347,2.50699, +-0.444223,0.756659,-0.765994,-1.86907,0.541098,2.50615, +-0.444022,0.756295,-0.765645,-1.86848,0.540849,2.50531, +-0.443821,0.755931,-0.765296,-1.8679,0.540599,2.50447, +-0.443621,0.755568,-0.764945,-1.86731,0.54035,2.50362, +-0.44342,0.755204,-0.764595,-1.86672,0.5401,2.50277, +-0.44322,0.75484,-0.764244,-1.86612,0.539851,2.50192, +-0.443019,0.754476,-0.763892,-1.86553,0.539601,2.50107, +-0.442818,0.754112,-0.763541,-1.86493,0.539352,2.50021, +-0.442617,0.753748,-0.76319,-1.86433,0.539102,2.49936, +-0.442416,0.753384,-0.762838,-1.86373,0.538852,2.4985, +-0.442215,0.753019,-0.762486,-1.86313,0.538602,2.49764, +-0.442013,0.752655,-0.762132,-1.86252,0.538352,2.49677, +-0.441812,0.75229,-0.761779,-1.86192,0.538102,2.49591, +-0.441611,0.751926,-0.761425,-1.86131,0.537852,2.49504, +-0.441409,0.751561,-0.761071,-1.86069,0.537603,2.49417, +-0.441208,0.751197,-0.760717,-1.86008,0.537353,2.49329, +-0.441006,0.750832,-0.760362,-1.85946,0.537102,2.49242, +-0.440804,0.750467,-0.760008,-1.85885,0.536852,2.49154, +-0.440602,0.750101,-0.759652,-1.85823,0.536602,2.49066, +-0.4404,0.749736,-0.759296,-1.8576,0.536351,2.48978, +-0.440198,0.749371,-0.75894,-1.85698,0.536101,2.4889, +-0.439996,0.749006,-0.758583,-1.85635,0.535851,2.48801, +-0.439794,0.74864,-0.758226,-1.85572,0.5356,2.48713, +-0.439592,0.748275,-0.75787,-1.85509,0.53535,2.48624, +-0.43939,0.74791,-0.757513,-1.85446,0.535099,2.48534, +-0.439187,0.747544,-0.757156,-1.85383,0.534849,2.48445, +-0.438984,0.747178,-0.756798,-1.85319,0.534598,2.48355, +-0.438782,0.746812,-0.756439,-1.85255,0.534347,2.48266, +-0.438579,0.746447,-0.75608,-1.85191,0.534097,2.48175, +-0.438376,0.746081,-0.755722,-1.85127,0.533846,2.48085, +-0.438174,0.745715,-0.755363,-1.85062,0.533595,2.47995, +-0.437971,0.745349,-0.755004,-1.84997,0.533344,2.47904, +-0.437768,0.744983,-0.754645,-1.84932,0.533093,2.47813, +-0.437565,0.744617,-0.754285,-1.84867,0.532842,2.47722, +-0.437362,0.74425,-0.753925,-1.84802,0.532591,2.47631, +-0.437158,0.743884,-0.753564,-1.84736,0.53234,2.47539, +-0.436955,0.743517,-0.753203,-1.84671,0.532089,2.47447, +-0.436752,0.743151,-0.752842,-1.84605,0.531838,2.47355, +-0.436549,0.742784,-0.752481,-1.84539,0.531587,2.47263, +-0.436345,0.742418,-0.75212,-1.84472,0.531336,2.4717, +-0.436142,0.742051,-0.751758,-1.84406,0.531084,2.47078, +-0.435938,0.741684,-0.751397,-1.84339,0.530833,2.46985, +-0.435734,0.741318,-0.751034,-1.84272,0.530582,2.46892, +-0.435531,0.740951,-0.750672,-1.84205,0.53033,2.46798, +-0.435327,0.740584,-0.750309,-1.84137,0.530079,2.46705, +-0.435123,0.740217,-0.749946,-1.8407,0.529827,2.46611, +-0.434919,0.73985,-0.749583,-1.84002,0.529576,2.46517, +-0.434716,0.739483,-0.74922,-1.83934,0.529324,2.46423, +-0.434512,0.739116,-0.748857,-1.83866,0.529073,2.46328, +-0.434307,0.738748,-0.748493,-1.83798,0.528821,2.46234, +-0.434103,0.738381,-0.748129,-1.83729,0.528569,2.46139, +-0.433899,0.738013,-0.747765,-1.8366,0.528317,2.46044, +-0.433694,0.737646,-0.7474,-1.83591,0.528065,2.45949, +-0.43349,0.737278,-0.747036,-1.83522,0.527814,2.45853, +-0.433286,0.736911,-0.746671,-1.83453,0.527562,2.45757, +-0.433082,0.736543,-0.746306,-1.83383,0.52731,2.45661, +-0.432877,0.736175,-0.745941,-1.83313,0.527058,2.45565, +-0.432672,0.735807,-0.745576,-1.83243,0.526806,2.45469, +-0.432468,0.735439,-0.74521,-1.83173,0.526554,2.45372, +-0.432263,0.735071,-0.744844,-1.83103,0.526301,2.45275, +-0.432058,0.734703,-0.744478,-1.83032,0.526049,2.45178, +-0.431853,0.734335,-0.744112,-1.82962,0.525797,2.45081, +-0.431649,0.733967,-0.743746,-1.82891,0.525545,2.44984, +-0.431444,0.733599,-0.74338,-1.8282,0.525293,2.44886, +-0.431239,0.733231,-0.743014,-1.82748,0.525041,2.44788, +-0.431034,0.732863,-0.742647,-1.82677,0.524788,2.4469, +-0.430829,0.732494,-0.74228,-1.82605,0.524536,2.44592, +-0.430624,0.732126,-0.741912,-1.82533,0.524283,2.44493, +-0.430418,0.731757,-0.741545,-1.82461,0.524031,2.44394, +-0.430213,0.731389,-0.741178,-1.82389,0.523778,2.44295, +-0.430008,0.73102,-0.74081,-1.82316,0.523526,2.44196, +-0.429803,0.730652,-0.740443,-1.82244,0.523273,2.44097, +-0.429597,0.730283,-0.740075,-1.82171,0.523021,2.43997, +-0.429392,0.729914,-0.739707,-1.82098,0.522768,2.43897, +-0.429186,0.729545,-0.739338,-1.82025,0.522515,2.43797, +-0.428981,0.729176,-0.738969,-1.81952,0.522262,2.43697, +-0.428775,0.728807,-0.738601,-1.81878,0.522009,2.43596, +-0.42857,0.728438,-0.738232,-1.81804,0.521757,2.43495, +-0.428364,0.728069,-0.737863,-1.8173,0.521504,2.43394, +-0.428158,0.7277,-0.737495,-1.81656,0.521251,2.43293, +-0.427953,0.727331,-0.737126,-1.81582,0.520998,2.43192, +-0.427747,0.726962,-0.736757,-1.81507,0.520745,2.4309, +-0.427541,0.726592,-0.736387,-1.81433,0.520492,2.42988, +-0.427335,0.726223,-0.736017,-1.81358,0.520239,2.42886, +-0.427129,0.725853,-0.735647,-1.81283,0.519986,2.42784, +-0.426923,0.725484,-0.735277,-1.81207,0.519733,2.42682, +-0.426717,0.725115,-0.734908,-1.81132,0.51948,2.42579, +-0.426511,0.724745,-0.734538,-1.81056,0.519226,2.42476, +-0.426305,0.724375,-0.734168,-1.80981,0.518973,2.42373, +-0.426098,0.724006,-0.733797,-1.80905,0.51872,2.42269, +-0.425892,0.723636,-0.733427,-1.80829,0.518466,2.42166, +-0.425686,0.723266,-0.733056,-1.80752,0.518213,2.42062, +-0.425479,0.722896,-0.732685,-1.80676,0.51796,2.41958, +-0.425273,0.722526,-0.732314,-1.80599,0.517706,2.41854, +-0.425067,0.722156,-0.731943,-1.80522,0.517453,2.41749, +-0.42486,0.721787,-0.731573,-1.80445,0.5172,2.41645, +-0.424654,0.721417,-0.731202,-1.80368,0.516946,2.4154, +-0.424447,0.721046,-0.73083,-1.8029,0.516692,2.41435, +-0.424241,0.720676,-0.730458,-1.80213,0.516439,2.41329, +-0.424034,0.720306,-0.730087,-1.80135,0.516185,2.41224, +-0.423827,0.719936,-0.729715,-1.80057,0.515931,2.41118, +-0.423621,0.719565,-0.729343,-1.79979,0.515678,2.41012, +-0.423414,0.719195,-0.728971,-1.79901,0.515424,2.40906, +-0.423207,0.718825,-0.7286,-1.79822,0.51517,2.40799, +-0.423,0.718454,-0.728228,-1.79744,0.514917,2.40693, +-0.422793,0.718084,-0.727855,-1.79665,0.514663,2.40586, +-0.422586,0.717713,-0.727483,-1.79586,0.514409,2.40479, +-0.422379,0.717342,-0.72711,-1.79507,0.514155,2.40372, +-0.422173,0.716972,-0.726738,-1.79427,0.513901,2.40264, +-0.421966,0.716601,-0.726365,-1.79348,0.513647,2.40156, +-0.421759,0.716231,-0.725993,-1.79268,0.513393,2.40048, +-0.421552,0.71586,-0.72562,-1.79188,0.513139,2.3994, +-0.421344,0.715489,-0.725247,-1.79108,0.512885,2.39832, +-0.421137,0.715118,-0.724874,-1.79028,0.512631,2.39723, +-0.42093,0.714747,-0.724501,-1.78948,0.512377,2.39614, +-0.420723,0.714376,-0.724127,-1.78868,0.512122,2.39505, +-0.420515,0.714005,-0.723754,-1.78787,0.511868,2.39396, +-0.420308,0.713634,-0.72338,-1.78706,0.511614,2.39286, +-0.420101,0.713263,-0.723007,-1.78625,0.51136,2.39177, +-0.419893,0.712892,-0.722634,-1.78544,0.511106,2.39067, +-0.419686,0.712521,-0.72226,-1.78463,0.510851,2.38957, +-0.419478,0.712149,-0.721886,-1.78381,0.510597,2.38846, +-0.419271,0.711778,-0.721512,-1.78299,0.510342,2.38736, +-0.419063,0.711406,-0.721138,-1.78218,0.510088,2.38625, +-0.418856,0.711035,-0.720764,-1.78136,0.509834,2.38514, +-0.418648,0.710664,-0.72039,-1.78053,0.509579,2.38403, +-0.41844,0.710292,-0.720016,-1.77971,0.509325,2.38291, +-0.418233,0.709921,-0.719642,-1.77889,0.50907,2.38179, +-0.418025,0.709549,-0.719267,-1.77806,0.508816,2.38068, +-0.417817,0.709177,-0.718893,-1.77723,0.508561,2.37956, +-0.417609,0.708806,-0.718518,-1.7764,0.508306,2.37843, +-0.417401,0.708434,-0.718143,-1.77557,0.508051,2.37731, +-0.417194,0.708062,-0.717768,-1.77474,0.507797,2.37618, +-0.416986,0.70769,-0.717393,-1.77391,0.507542,2.37505, +-0.416778,0.707318,-0.717019,-1.77307,0.507287,2.37392, +-0.41657,0.706947,-0.716644,-1.77223,0.507033,2.37278, +-0.416362,0.706575,-0.716269,-1.77139,0.506778,2.37165, +-0.416154,0.706203,-0.715893,-1.77055,0.506523,2.37051, +-0.415946,0.70583,-0.715518,-1.76971,0.506268,2.36937, +-0.415737,0.705458,-0.715142,-1.76887,0.506013,2.36822, +-0.415529,0.705086,-0.714767,-1.76802,0.505758,2.36708, +-0.415321,0.704714,-0.714391,-1.76717,0.505503,2.36593, +-0.415113,0.704342,-0.714016,-1.76633,0.505248,2.36478, +-0.414905,0.70397,-0.713641,-1.76548,0.504993,2.36363, +-0.414697,0.703597,-0.713265,-1.76463,0.504738,2.36247, +-0.414488,0.703225,-0.712889,-1.76377,0.504482,2.36132, +-0.41428,0.702852,-0.712513,-1.76292,0.504227,2.36016, +-0.414071,0.702479,-0.712136,-1.76206,0.503972,2.359, +-0.413863,0.702107,-0.71176,-1.7612,0.503717,2.35784, +-0.413654,0.701734,-0.711384,-1.76034,0.503461,2.35667, +-0.413446,0.701362,-0.711008,-1.75948,0.503206,2.3555, +-0.413237,0.700989,-0.710632,-1.75862,0.502951,2.35433, +-0.413029,0.700616,-0.710255,-1.75776,0.502695,2.35316, +-0.41282,0.700243,-0.709879,-1.75689,0.50244,2.35199, +-0.412611,0.69987,-0.709502,-1.75603,0.502184,2.35081, +-0.412403,0.699497,-0.709125,-1.75516,0.501929,2.34963, +-0.412194,0.699124,-0.708748,-1.75429,0.501673,2.34845, +-0.411985,0.698751,-0.708371,-1.75342,0.501418,2.34727, +-0.411776,0.698378,-0.707995,-1.75254,0.501162,2.34609, +-0.411568,0.698005,-0.707618,-1.75167,0.500907,2.3449, +-0.411359,0.697632,-0.707241,-1.7508,0.500651,2.34371, +-0.41115,0.697258,-0.706864,-1.74992,0.500395,2.34252, +-0.410941,0.696885,-0.706486,-1.74904,0.500139,2.34133, +-0.410732,0.696512,-0.706109,-1.74816,0.499883,2.34013, +-0.410523,0.696138,-0.705731,-1.74728,0.499627,2.33893, +-0.410314,0.695765,-0.705354,-1.74639,0.499372,2.33773, +-0.410105,0.695391,-0.704976,-1.74551,0.499116,2.33653, +-0.409895,0.695018,-0.704599,-1.74462,0.49886,2.33532, +-0.409686,0.694644,-0.704221,-1.74374,0.498604,2.33412, +-0.409477,0.69427,-0.703843,-1.74285,0.498348,2.33291, +-0.409268,0.693896,-0.703465,-1.74196,0.498091,2.3317, +-0.409058,0.693522,-0.703087,-1.74107,0.497835,2.33049, +-0.408849,0.693148,-0.702709,-1.74017,0.497579,2.32927, +-0.408639,0.692774,-0.70233,-1.73928,0.497323,2.32805, +-0.40843,0.6924,-0.701952,-1.73838,0.497067,2.32683, +-0.408221,0.692026,-0.701574,-1.73748,0.49681,2.32561, +-0.408011,0.691652,-0.701196,-1.73658,0.496554,2.32439, +-0.407802,0.691278,-0.700817,-1.73568,0.496298,2.32316, +-0.407592,0.690903,-0.700438,-1.73478,0.496041,2.32193, +-0.407382,0.690529,-0.70006,-1.73388,0.495785,2.3207, +-0.407173,0.690154,-0.699681,-1.73297,0.495528,2.31947, +-0.406963,0.68978,-0.699302,-1.73207,0.495272,2.31823, +-0.406753,0.689406,-0.698923,-1.73116,0.495015,2.317, +-0.406544,0.689031,-0.698545,-1.73025,0.494759,2.31576, +-0.406334,0.688657,-0.698166,-1.72934,0.494502,2.31452, +-0.406124,0.688282,-0.697786,-1.72843,0.494245,2.31327, +-0.405914,0.687907,-0.697407,-1.72752,0.493988,2.31203, +-0.405704,0.687532,-0.697028,-1.7266,0.493731,2.31078, +-0.405494,0.687157,-0.696648,-1.72568,0.493474,2.30953, +-0.405284,0.686782,-0.696269,-1.72477,0.493218,2.30828, +-0.405074,0.686407,-0.695889,-1.72385,0.492961,2.30702, +-0.404864,0.686032,-0.69551,-1.72293,0.492704,2.30577, +-0.404654,0.685657,-0.69513,-1.72201,0.492447,2.30451, +-0.404444,0.685281,-0.69475,-1.72108,0.49219,2.30325, +-0.404233,0.684906,-0.69437,-1.72016,0.491932,2.30198, +-0.404023,0.68453,-0.69399,-1.71923,0.491675,2.30072, +-0.403813,0.684155,-0.69361,-1.7183,0.491418,2.29945, +-0.403602,0.683779,-0.693229,-1.71738,0.491161,2.29818, +-0.403392,0.683404,-0.692849,-1.71645,0.490903,2.29691, +-0.403182,0.683028,-0.692469,-1.71551,0.490646,2.29564, +-0.402971,0.682652,-0.692089,-1.71458,0.490389,2.29436, +-0.402761,0.682276,-0.691708,-1.71365,0.490131,2.29308, +-0.40255,0.6819,-0.691327,-1.71271,0.489873,2.2918, +-0.402339,0.681524,-0.690946,-1.71178,0.489616,2.29052, +-0.402129,0.681148,-0.690566,-1.71084,0.489358,2.28924, +-0.401918,0.680772,-0.690185,-1.7099,0.489101,2.28795, +-0.401707,0.680396,-0.689804,-1.70896,0.488843,2.28666, +-0.401497,0.68002,-0.689423,-1.70802,0.488586,2.28537, +-0.401286,0.679644,-0.689042,-1.70707,0.488328,2.28408, +-0.401075,0.679267,-0.688661,-1.70613,0.48807,2.28278, +-0.400864,0.678891,-0.68828,-1.70518,0.487812,2.28148, +-0.400653,0.678514,-0.687898,-1.70424,0.487554,2.28019, +-0.400442,0.678137,-0.687516,-1.70329,0.487296,2.27888, +-0.400231,0.677761,-0.687135,-1.70234,0.487038,2.27758, +-0.40002,0.677384,-0.686753,-1.70138,0.48678,2.27627, +-0.399809,0.677007,-0.686372,-1.70043,0.486522,2.27497, +-0.399598,0.67663,-0.68599,-1.69948,0.486264,2.27366, +-0.399386,0.676253,-0.685608,-1.69852,0.486005,2.27235, +-0.399175,0.675876,-0.685226,-1.69757,0.485747,2.27103, +-0.398964,0.675498,-0.684843,-1.69661,0.485488,2.26971, +-0.398752,0.675121,-0.684461,-1.69565,0.48523,2.2684, +-0.398541,0.674744,-0.684079,-1.69469,0.484971,2.26708, +-0.39833,0.674367,-0.683697,-1.69373,0.484713,2.26575, +-0.398118,0.673989,-0.683314,-1.69276,0.484455,2.26443, +-0.397907,0.673612,-0.682932,-1.6918,0.484196,2.2631, +-0.397695,0.673234,-0.682549,-1.69083,0.483937,2.26177, +-0.397483,0.672856,-0.682166,-1.68987,0.483678,2.26044, +-0.397271,0.672478,-0.681783,-1.6889,0.483419,2.25911, +-0.39706,0.6721,-0.6814,-1.68793,0.483161,2.25777, +-0.396848,0.671722,-0.681017,-1.68696,0.482902,2.25644, +-0.396636,0.671344,-0.680634,-1.68598,0.482643,2.2551, +-0.396425,0.670966,-0.680251,-1.68501,0.482384,2.25376, +-0.396213,0.670588,-0.679868,-1.68404,0.482125,2.25241, +-0.396001,0.67021,-0.679484,-1.68306,0.481866,2.25107, +-0.395788,0.669831,-0.679101,-1.68209,0.481606,2.24972, +-0.395576,0.669452,-0.678717,-1.68111,0.481347,2.24837, +-0.395364,0.669074,-0.678333,-1.68013,0.481088,2.24702, +-0.395152,0.668695,-0.677949,-1.67915,0.480828,2.24567, +-0.39494,0.668317,-0.677566,-1.67816,0.480569,2.24431, +-0.394728,0.667938,-0.677182,-1.67718,0.48031,2.24295, +-0.394515,0.667559,-0.676798,-1.6762,0.48005,2.24159, +-0.394303,0.66718,-0.676413,-1.67521,0.479791,2.24023, +-0.39409,0.6668,-0.676029,-1.67422,0.479531,2.23887, +-0.393878,0.666421,-0.675644,-1.67324,0.479271,2.2375, +-0.393666,0.666042,-0.67526,-1.67225,0.479011,2.23613, +-0.393453,0.665663,-0.674875,-1.67125,0.478752,2.23476, +-0.393241,0.665283,-0.674491,-1.67026,0.478492,2.23339, +-0.393028,0.664904,-0.674107,-1.66927,0.478232,2.23202, +-0.392815,0.664525,-0.673722,-1.66828,0.477972,2.23064, +-0.392602,0.664145,-0.673337,-1.66728,0.477712,2.22926, +-0.39239,0.663765,-0.672951,-1.66629,0.477452,2.22788, +-0.392177,0.663385,-0.672566,-1.66529,0.477191,2.2265, +-0.391964,0.663005,-0.672181,-1.66429,0.476931,2.22512, +-0.391751,0.662625,-0.671796,-1.66329,0.476671,2.22373, +-0.391538,0.662245,-0.67141,-1.66229,0.476411,2.22234, +-0.391325,0.661865,-0.671025,-1.66128,0.476151,2.22095, +-0.391112,0.661484,-0.670639,-1.66028,0.47589,2.21956, +-0.390899,0.661104,-0.670253,-1.65928,0.475629,2.21817, +-0.390685,0.660723,-0.669867,-1.65827,0.475369,2.21677, +-0.390472,0.660342,-0.669481,-1.65726,0.475108,2.21537, +-0.390259,0.659962,-0.669095,-1.65625,0.474847,2.21397, +-0.390045,0.659581,-0.668709,-1.65524,0.474587,2.21257, +-0.389832,0.6592,-0.668323,-1.65423,0.474326,2.21116, +-0.389619,0.65882,-0.667937,-1.65322,0.474065,2.20976, +-0.389405,0.658439,-0.667551,-1.65221,0.473804,2.20835, +-0.389192,0.658057,-0.667164,-1.6512,0.473543,2.20694, +-0.388978,0.657676,-0.666777,-1.65018,0.473282,2.20553, +-0.388764,0.657294,-0.66639,-1.64916,0.473021,2.20411, +-0.38855,0.656913,-0.666003,-1.64815,0.472759,2.2027, +-0.388337,0.656532,-0.665617,-1.64713,0.472498,2.20128, +-0.388123,0.65615,-0.66523,-1.64611,0.472237,2.19986, +-0.387909,0.655769,-0.664843,-1.64509,0.471976,2.19844, +-0.387695,0.655387,-0.664456,-1.64407,0.471714,2.19702, +-0.387481,0.655005,-0.664068,-1.64304,0.471453,2.19559, +-0.387267,0.654623,-0.66368,-1.64202,0.471191,2.19416, +-0.387053,0.65424,-0.663293,-1.64099,0.470929,2.19273, +-0.386839,0.653858,-0.662905,-1.63997,0.470668,2.1913, +-0.386625,0.653476,-0.662518,-1.63894,0.470406,2.18987, +-0.38641,0.653094,-0.66213,-1.63791,0.470144,2.18843, +-0.386196,0.652712,-0.661742,-1.63688,0.469883,2.18699, +-0.385982,0.652329,-0.661354,-1.63585,0.469621,2.18556, +-0.385767,0.651946,-0.660966,-1.63482,0.469358,2.18412, +-0.385553,0.651563,-0.660577,-1.63379,0.469096,2.18267, +-0.385338,0.651181,-0.660189,-1.63275,0.468834,2.18123, +-0.385124,0.650798,-0.659801,-1.63172,0.468572,2.17978, +-0.384909,0.650415,-0.659412,-1.63068,0.46831,2.17833, +-0.384695,0.650032,-0.659024,-1.62965,0.468048,2.17688, +-0.38448,0.649649,-0.658635,-1.62861,0.467785,2.17543, +-0.384265,0.649266,-0.658246,-1.62757,0.467523,2.17397, +-0.38405,0.648882,-0.657857,-1.62653,0.46726,2.17252, +-0.383835,0.648498,-0.657468,-1.62549,0.466997,2.17106, +-0.38362,0.648115,-0.657079,-1.62445,0.466735,2.1696, +-0.383405,0.647731,-0.656689,-1.6234,0.466472,2.16814, +-0.38319,0.647347,-0.6563,-1.62236,0.466209,2.16667, +-0.382975,0.646963,-0.655911,-1.62131,0.465947,2.16521, +-0.38276,0.64658,-0.655521,-1.62027,0.465684,2.16374, +-0.382545,0.646196,-0.655132,-1.61922,0.465421,2.16227, +-0.38233,0.645811,-0.654742,-1.61817,0.465158,2.1608, +-0.382114,0.645427,-0.654352,-1.61713,0.464894,2.15933, +-0.381899,0.645042,-0.653962,-1.61608,0.464631,2.15785, +-0.381683,0.644658,-0.653571,-1.61502,0.464368,2.15638, +-0.381468,0.644273,-0.653181,-1.61397,0.464105,2.1549, +-0.381253,0.643889,-0.652791,-1.61292,0.463841,2.15342, +-0.381037,0.643504,-0.652401,-1.61186,0.463578,2.15194, +-0.380821,0.643119,-0.652011,-1.61081,0.463315,2.15045, +-0.380606,0.642734,-0.65162,-1.60975,0.463051,2.14897, +-0.38039,0.642349,-0.651229,-1.6087,0.462787,2.14748, +-0.380174,0.641964,-0.650838,-1.60764,0.462523,2.14599, +-0.379958,0.641578,-0.650447,-1.60658,0.46226,2.1445, +-0.379742,0.641193,-0.650056,-1.60552,0.461996,2.143, +-0.379526,0.640808,-0.649665,-1.60446,0.461732,2.14151, +-0.37931,0.640423,-0.649274,-1.6034,0.461468,2.14001, +-0.379094,0.640037,-0.648883,-1.60234,0.461204,2.13851, +-0.378878,0.639651,-0.648491,-1.60127,0.46094,2.13702, +-0.378662,0.639265,-0.648099,-1.60021,0.460676,2.13551, +-0.378445,0.638879,-0.647708,-1.59914,0.460411,2.13401, +-0.378229,0.638493,-0.647316,-1.59808,0.460147,2.1325, +-0.378013,0.638107,-0.646924,-1.59701,0.459883,2.131, +-0.377796,0.637721,-0.646532,-1.59594,0.459618,2.12949, +-0.37758,0.637334,-0.64614,-1.59487,0.459354,2.12798, +-0.377364,0.636948,-0.645748,-1.5938,0.45909,2.12646, +-0.377147,0.636561,-0.645356,-1.59273,0.458825,2.12495, +-0.37693,0.636175,-0.644963,-1.59166,0.45856,2.12343, +-0.376713,0.635788,-0.644571,-1.59059,0.458295,2.12192, +-0.376497,0.635401,-0.644178,-1.58951,0.45803,2.1204, +-0.37628,0.635014,-0.643785,-1.58844,0.457765,2.11887, +-0.376063,0.634627,-0.643393,-1.58736,0.457501,2.11735, +-0.375846,0.63424,-0.643,-1.58629,0.457236,2.11583, +-0.375629,0.633853,-0.642607,-1.58521,0.456971,2.1143, +-0.375412,0.633465,-0.642214,-1.58413,0.456705,2.11277, +-0.375195,0.633078,-0.64182,-1.58306,0.45644,2.11124, +-0.374978,0.63269,-0.641427,-1.58198,0.456174,2.10971, +-0.37476,0.632302,-0.641033,-1.5809,0.455909,2.10818, +-0.374543,0.631914,-0.64064,-1.57981,0.455644,2.10664, +-0.374326,0.631527,-0.640246,-1.57873,0.455378,2.10511, +-0.374109,0.631139,-0.639853,-1.57765,0.455113,2.10357, +-0.373891,0.630751,-0.639459,-1.57657,0.454847,2.10203, +-0.373674,0.630363,-0.639065,-1.57548,0.454581,2.10049, +-0.373456,0.629974,-0.63867,-1.5744,0.454315,2.09894, +-0.373238,0.629586,-0.638276,-1.57331,0.454049,2.0974, +-0.373021,0.629197,-0.637882,-1.57222,0.453783,2.09585, +-0.372803,0.628808,-0.637487,-1.57113,0.453517,2.0943, +-0.372585,0.62842,-0.637093,-1.57005,0.453251,2.09275, +-0.372368,0.628031,-0.636698,-1.56896,0.452985,2.0912, +-0.37215,0.627643,-0.636304,-1.56787,0.452719,2.08965, +-0.371932,0.627253,-0.635909,-1.56678,0.452453,2.08809, +-0.371714,0.626864,-0.635514,-1.56568,0.452186,2.08654, +-0.371495,0.626475,-0.635118,-1.56459,0.45192,2.08498, +-0.371277,0.626085,-0.634723,-1.5635,0.451653,2.08342, +-0.371059,0.625696,-0.634328,-1.5624,0.451387,2.08186, +-0.370841,0.625307,-0.633933,-1.56131,0.45112,2.08029, +-0.370623,0.624917,-0.633537,-1.56021,0.450854,2.07873, +-0.370404,0.624527,-0.633142,-1.55912,0.450587,2.07716, +-0.370186,0.624137,-0.632746,-1.55802,0.45032,2.0756, +-0.369967,0.623747,-0.63235,-1.55692,0.450053,2.07403, +-0.369749,0.623357,-0.631954,-1.55583,0.449786,2.07245, +-0.36953,0.622967,-0.631558,-1.55473,0.449519,2.07088, +-0.369312,0.622577,-0.631162,-1.55363,0.449252,2.06931, +-0.369093,0.622187,-0.630766,-1.55252,0.448985,2.06773, +-0.368874,0.621796,-0.63037,-1.55142,0.448718,2.06615, +-0.368656,0.621406,-0.629973,-1.55032,0.44845,2.06458, +-0.368436,0.621015,-0.629577,-1.54922,0.448183,2.063, +-0.368217,0.620624,-0.62918,-1.54812,0.447915,2.06141, +-0.367998,0.620233,-0.628783,-1.54701,0.447647,2.05983, +-0.367779,0.619842,-0.628386,-1.54591,0.44738,2.05824, +-0.36756,0.619451,-0.627989,-1.5448,0.447112,2.05666, +-0.367341,0.61906,-0.627592,-1.54369,0.446845,2.05507, +-0.367122,0.618669,-0.627195,-1.54259,0.446577,2.05348, +-0.366903,0.618278,-0.626798,-1.54148,0.446309,2.05189, +-0.366683,0.617886,-0.6264,-1.54037,0.446041,2.05029, +-0.366464,0.617494,-0.626002,-1.53926,0.445773,2.0487, +-0.366244,0.617102,-0.625604,-1.53815,0.445504,2.0471, +-0.366025,0.61671,-0.625206,-1.53704,0.445236,2.04551, +-0.365805,0.616318,-0.624809,-1.53593,0.444968,2.04391, +-0.365586,0.615927,-0.624411,-1.53482,0.4447,2.04231, +-0.365366,0.615535,-0.624013,-1.53371,0.444432,2.0407, +-0.365147,0.615143,-0.623615,-1.5326,0.444163,2.0391, +-0.364927,0.61475,-0.623216,-1.53148,0.443895,2.0375, +-0.364707,0.614357,-0.622818,-1.53037,0.443626,2.03589, +-0.364487,0.613965,-0.622419,-1.52926,0.443357,2.03428, +-0.364267,0.613572,-0.62202,-1.52814,0.443088,2.03267, +-0.364047,0.613179,-0.621622,-1.52702,0.44282,2.03106, +-0.363827,0.612787,-0.621223,-1.52591,0.442551,2.02945, +-0.363607,0.612394,-0.620824,-1.52479,0.442282,2.02784, +-0.363386,0.612001,-0.620425,-1.52367,0.442013,2.02622, +-0.363166,0.611607,-0.620026,-1.52256,0.441744,2.0246, +-0.362945,0.611214,-0.619626,-1.52144,0.441474,2.02299, +-0.362725,0.61082,-0.619227,-1.52032,0.441205,2.02137, +-0.362505,0.610427,-0.618827,-1.5192,0.440936,2.01975, +-0.362284,0.610033,-0.618428,-1.51808,0.440666,2.01812, +-0.362064,0.60964,-0.618028,-1.51695,0.440397,2.0165, +-0.361843,0.609246,-0.617629,-1.51583,0.440128,2.01487, +-0.361623,0.608852,-0.617229,-1.51471,0.439858,2.01325, +-0.361402,0.608458,-0.616829,-1.51359,0.439588,2.01162, +-0.361181,0.608064,-0.616428,-1.51247,0.439318,2.00999, +-0.36096,0.60767,-0.616028,-1.51134,0.439049,2.00836, +-0.360739,0.607275,-0.615628,-1.51022,0.438779,2.00673, +-0.360518,0.606881,-0.615227,-1.50909,0.438509,2.00509, +-0.360297,0.606486,-0.614827,-1.50797,0.438239,2.00346, +-0.360076,0.606092,-0.614426,-1.50684,0.437969,2.00182, +-0.359855,0.605697,-0.614026,-1.50572,0.437699,2.00018, +-0.359634,0.605302,-0.613625,-1.50459,0.437428,1.99855, +-0.359412,0.604907,-0.613223,-1.50346,0.437158,1.99691, +-0.359191,0.604512,-0.612822,-1.50233,0.436888,1.99526, +-0.35897,0.604117,-0.612421,-1.50121,0.436617,1.99362, +-0.358748,0.603721,-0.612019,-1.50008,0.436347,1.99197, +-0.358527,0.603326,-0.611618,-1.49895,0.436076,1.99033, +-0.358305,0.602931,-0.611217,-1.49782,0.435806,1.98868, +-0.358084,0.602536,-0.610815,-1.49669,0.435535,1.98703, +-0.357862,0.60214,-0.610413,-1.49556,0.435264,1.98538, +-0.35764,0.601744,-0.610011,-1.49442,0.434993,1.98373, +-0.357418,0.601348,-0.609609,-1.49329,0.434722,1.98208, +-0.357196,0.600951,-0.609207,-1.49216,0.434451,1.98043, +-0.356975,0.600555,-0.608805,-1.49103,0.43418,1.97877, +-0.356753,0.600159,-0.608403,-1.48989,0.433909,1.97711, +-0.356531,0.599763,-0.608,-1.48876,0.433638,1.97546, +-0.356309,0.599367,-0.607598,-1.48763,0.433366,1.9738, +-0.356086,0.59897,-0.607195,-1.48649,0.433095,1.97214, +-0.355864,0.598573,-0.606792,-1.48536,0.432823,1.97048, +-0.355642,0.598176,-0.606389,-1.48422,0.432551,1.96881, +-0.355419,0.597779,-0.605986,-1.48308,0.43228,1.96715, +-0.355197,0.597382,-0.605583,-1.48195,0.432008,1.96548, +-0.354975,0.596985,-0.60518,-1.48081,0.431737,1.96382, +-0.354752,0.596588,-0.604777,-1.47967,0.431465,1.96215, +-0.35453,0.596191,-0.604373,-1.47853,0.431193,1.96048, +-0.354307,0.595794,-0.60397,-1.4774,0.430921,1.95881, +-0.354084,0.595396,-0.603566,-1.47626,0.430649,1.95714, +-0.353861,0.594998,-0.603162,-1.47512,0.430376,1.95547, +-0.353638,0.5946,-0.602758,-1.47398,0.430104,1.95379, +-0.353416,0.594202,-0.602354,-1.47284,0.429832,1.95212, +-0.353193,0.593805,-0.60195,-1.4717,0.42956,1.95044, +-0.35297,0.593407,-0.601546,-1.47055,0.429288,1.94876, +-0.352747,0.593009,-0.601142,-1.46941,0.429015,1.94708, +-0.352524,0.59261,-0.600737,-1.46827,0.428742,1.9454, +-0.3523,0.592212,-0.600333,-1.46713,0.42847,1.94372, +-0.352077,0.591813,-0.599928,-1.46599,0.428197,1.94204, +-0.351854,0.591414,-0.599523,-1.46484,0.427924,1.94036, +-0.351631,0.591016,-0.599118,-1.4637,0.427651,1.93867, +-0.351407,0.590617,-0.598713,-1.46255,0.427379,1.93698, +-0.351184,0.590218,-0.598309,-1.46141,0.427106,1.9353, +-0.35096,0.589819,-0.597903,-1.46027,0.426833,1.93361, +-0.350737,0.58942,-0.597498,-1.45912,0.426559,1.93192, +-0.350513,0.58902,-0.597092,-1.45797,0.426286,1.93023, +-0.350289,0.588621,-0.596687,-1.45683,0.426013,1.92854, +-0.350065,0.588221,-0.596281,-1.45568,0.425739,1.92684, +-0.349842,0.587822,-0.595875,-1.45453,0.425466,1.92515, +-0.349618,0.587422,-0.59547,-1.45338,0.425192,1.92345, +-0.349394,0.587023,-0.595064,-1.45224,0.424919,1.92176, +-0.34917,0.586623,-0.594658,-1.45109,0.424645,1.92006, +-0.348946,0.586223,-0.594251,-1.44994,0.424371,1.91836, +-0.348722,0.585822,-0.593845,-1.44879,0.424098,1.91666, +-0.348497,0.585422,-0.593438,-1.44764,0.423824,1.91496, +-0.348273,0.585022,-0.593032,-1.44649,0.42355,1.91326, +-0.348049,0.584621,-0.592625,-1.44534,0.423276,1.91156, +-0.347825,0.584221,-0.592219,-1.44419,0.423002,1.90985, +-0.3476,0.583821,-0.591812,-1.44304,0.422728,1.90815, +-0.347376,0.58342,-0.591405,-1.44189,0.422454,1.90644, +-0.347151,0.583019,-0.590998,-1.44073,0.422179,1.90474, +-0.346926,0.582618,-0.590591,-1.43958,0.421905,1.90303, +-0.346702,0.582217,-0.590183,-1.43843,0.42163,1.90132, +-0.346477,0.581815,-0.589776,-1.43728,0.421356,1.89961, +-0.346252,0.581414,-0.589369,-1.43612,0.421081,1.89789, +-0.346028,0.581013,-0.588961,-1.43497,0.420807,1.89618, +-0.345803,0.580612,-0.588554,-1.43382,0.420532,1.89447, +-0.345578,0.58021,-0.588146,-1.43266,0.420257,1.89275, +-0.345353,0.579808,-0.587738,-1.43151,0.419982,1.89104, +-0.345128,0.579406,-0.58733,-1.43035,0.419707,1.88932, +-0.344902,0.579004,-0.586921,-1.42919,0.419432,1.8876, +-0.344677,0.578602,-0.586513,-1.42804,0.419157,1.88589, +-0.344452,0.5782,-0.586105,-1.42688,0.418882,1.88417, +-0.344227,0.577798,-0.585696,-1.42572,0.418607,1.88244, +-0.344002,0.577396,-0.585288,-1.42457,0.418332,1.88072, +-0.343776,0.576993,-0.584879,-1.42341,0.418056,1.879, +-0.343551,0.576591,-0.58447,-1.42225,0.41778,1.87728, +-0.343325,0.576188,-0.584061,-1.42109,0.417505,1.87555, +-0.343099,0.575785,-0.583652,-1.41993,0.417229,1.87383, +-0.342874,0.575382,-0.583243,-1.41877,0.416953,1.8721, +-0.342648,0.574979,-0.582834,-1.41761,0.416678,1.87037, +-0.342422,0.574576,-0.582424,-1.41645,0.416402,1.86864, +-0.342196,0.574173,-0.582015,-1.41529,0.416126,1.86691, +-0.341971,0.57377,-0.581606,-1.41413,0.41585,1.86518, +-0.341744,0.573366,-0.581196,-1.41297,0.415574,1.86345, +-0.341518,0.572962,-0.580786,-1.41181,0.415298,1.86172, +-0.341292,0.572558,-0.580376,-1.41065,0.415021,1.85999, +-0.341066,0.572155,-0.579966,-1.40948,0.414745,1.85825, +-0.34084,0.571751,-0.579556,-1.40832,0.414469,1.85652, +-0.340614,0.571347,-0.579145,-1.40716,0.414193,1.85478, +-0.340387,0.570943,-0.578735,-1.40599,0.413916,1.85304, +-0.340161,0.570539,-0.578325,-1.40483,0.41364,1.85131, +-0.339934,0.570135,-0.577914,-1.40367,0.413363,1.84957, +-0.339708,0.56973,-0.577503,-1.4025,0.413086,1.84783, +-0.339481,0.569325,-0.577092,-1.40134,0.412809,1.84609, +-0.339255,0.568921,-0.576681,-1.40017,0.412532,1.84435, +-0.339028,0.568516,-0.57627,-1.39901,0.412255,1.8426, +-0.338801,0.568111,-0.575859,-1.39784,0.411979,1.84086, +-0.338575,0.567707,-0.575448,-1.39667,0.411702,1.83912, +-0.338348,0.567302,-0.575037,-1.39551,0.411424,1.83737, +-0.338121,0.566896,-0.574625,-1.39434,0.411147,1.83563, +-0.337893,0.566491,-0.574214,-1.39317,0.41087,1.83388, +-0.337666,0.566085,-0.573802,-1.392,0.410592,1.83213, +-0.337439,0.565679,-0.57339,-1.39083,0.410315,1.83039, +-0.337212,0.565274,-0.572978,-1.38966,0.410037,1.82864, +-0.336985,0.564868,-0.572566,-1.3885,0.40976,1.82689, +-0.336758,0.564463,-0.572154,-1.38733,0.409482,1.82514, +-0.33653,0.564057,-0.571742,-1.38616,0.409204,1.82339, +-0.336303,0.563651,-0.57133,-1.38499,0.408926,1.82163, +-0.336075,0.563244,-0.570917,-1.38382,0.408648,1.81988, +-0.335848,0.562838,-0.570504,-1.38264,0.40837,1.81813, +-0.33562,0.562431,-0.570091,-1.38147,0.408092,1.81637, +-0.335392,0.562025,-0.569679,-1.3803,0.407814,1.81462, +-0.335165,0.561619,-0.569266,-1.37913,0.407536,1.81286, +-0.334937,0.561212,-0.568853,-1.37796,0.407258,1.8111, +-0.334709,0.560805,-0.56844,-1.37678,0.40698,1.80935, +-0.334481,0.560398,-0.568027,-1.37561,0.406701,1.80759, +-0.334253,0.559991,-0.567613,-1.37444,0.406422,1.80583, +-0.334025,0.559584,-0.567199,-1.37326,0.406144,1.80407, +-0.333797,0.559176,-0.566786,-1.37209,0.405865,1.80231, +-0.333569,0.558769,-0.566372,-1.37091,0.405586,1.80054, +-0.333341,0.558362,-0.565958,-1.36974,0.405308,1.79878, +-0.333113,0.557955,-0.565545,-1.36856,0.405029,1.79702, +-0.332884,0.557547,-0.565131,-1.36739,0.40475,1.79526, +-0.332656,0.557139,-0.564717,-1.36622,0.404471,1.79349, +-0.332427,0.556731,-0.564302,-1.36504,0.404192,1.79173, +-0.332199,0.556323,-0.563888,-1.36386,0.403913,1.78996, +-0.33197,0.555915,-0.563473,-1.36269,0.403633,1.78819, +-0.331741,0.555506,-0.563059,-1.36151,0.403354,1.78643, +-0.331513,0.555098,-0.562644,-1.36033,0.403075,1.78466, +-0.331284,0.55469,-0.56223,-1.35915,0.402796,1.78289, +-0.331055,0.554282,-0.561815,-1.35798,0.402516,1.78112, +-0.330826,0.553873,-0.5614,-1.3568,0.402236,1.77935, +-0.330597,0.553464,-0.560984,-1.35562,0.401957,1.77758, +-0.330368,0.553055,-0.560569,-1.35444,0.401677,1.77581, +-0.330139,0.552646,-0.560153,-1.35326,0.401397,1.77404, +-0.32991,0.552237,-0.559738,-1.35208,0.401117,1.77226, +-0.329681,0.551828,-0.559323,-1.3509,0.400837,1.77049, +-0.329452,0.551419,-0.558907,-1.34972,0.400557,1.76872, +-0.329223,0.551009,-0.558491,-1.34854,0.400277,1.76694, +-0.328993,0.5506,-0.558075,-1.34736,0.399997,1.76517, +-0.328764,0.55019,-0.557659,-1.34617,0.399716,1.76339, +-0.328534,0.54978,-0.557243,-1.34499,0.399436,1.76162, +-0.328304,0.54937,-0.556826,-1.34381,0.399156,1.75984, +-0.328075,0.54896,-0.55641,-1.34263,0.398875,1.75806, +-0.327845,0.54855,-0.555994,-1.34144,0.398595,1.75628, +-0.327616,0.54814,-0.555577,-1.34026,0.398314,1.7545, +-0.327386,0.54773,-0.555161,-1.33908,0.398033,1.75273, +-0.327156,0.547319,-0.554744,-1.33789,0.397753,1.75095, +-0.326926,0.546908,-0.554327,-1.33671,0.397472,1.74917, +-0.326696,0.546498,-0.55391,-1.33552,0.397191,1.74739, +-0.326466,0.546087,-0.553492,-1.33434,0.39691,1.7456, +-0.326236,0.545676,-0.553075,-1.33315,0.396628,1.74382, +-0.326006,0.545265,-0.552658,-1.33197,0.396347,1.74204, +-0.325776,0.544855,-0.552241,-1.33078,0.396066,1.74025, +-0.325546,0.544444,-0.551823,-1.32959,0.395785,1.73847, +-0.325315,0.544032,-0.551406,-1.32841,0.395504,1.73669, +-0.325085,0.543621,-0.550988,-1.32722,0.395222,1.7349, +-0.324854,0.543209,-0.55057,-1.32603,0.39494,1.73312, +-0.324624,0.542797,-0.550152,-1.32484,0.394659,1.73133, +-0.324393,0.542386,-0.549734,-1.32366,0.394377,1.72954, +-0.324163,0.541974,-0.549316,-1.32247,0.394096,1.72776, +-0.323932,0.541563,-0.548897,-1.32128,0.393814,1.72597, +-0.323701,0.541151,-0.548479,-1.32009,0.393532,1.72418, +-0.32347,0.540738,-0.548061,-1.3189,0.39325,1.72239, +-0.323239,0.540326,-0.547642,-1.31771,0.392968,1.7206, +-0.323009,0.539914,-0.547223,-1.31652,0.392686,1.71881, +-0.322778,0.539501,-0.546804,-1.31533,0.392404,1.71702, +-0.322547,0.539089,-0.546385,-1.31414,0.392122,1.71523, +-0.322316,0.538676,-0.545966,-1.31295,0.39184,1.71344, +-0.322085,0.538264,-0.545547,-1.31176,0.391557,1.71165, +-0.321854,0.537851,-0.545128,-1.31057,0.391275,1.70986, +-0.321622,0.537438,-0.544709,-1.30938,0.390992,1.70807, +-0.321391,0.537025,-0.544289,-1.30819,0.39071,1.70628, +-0.321159,0.536612,-0.54387,-1.30699,0.390427,1.70448, +-0.320928,0.536199,-0.54345,-1.3058,0.390144,1.70269, +-0.320697,0.535785,-0.54303,-1.30461,0.389862,1.70089, +-0.320465,0.535372,-0.542611,-1.30341,0.389579,1.6991, +-0.320234,0.534959,-0.542191,-1.30222,0.389296,1.6973, +-0.320002,0.534546,-0.541771,-1.30103,0.389013,1.69551, +-0.31977,0.534132,-0.541351,-1.29984,0.38873,1.69371, +-0.319539,0.533718,-0.54093,-1.29864,0.388447,1.69192, +-0.319307,0.533304,-0.54051,-1.29745,0.388164,1.69012, +-0.319075,0.53289,-0.54009,-1.29625,0.387881,1.68832, +-0.318843,0.532476,-0.539669,-1.29506,0.387597,1.68653, +-0.318611,0.532062,-0.539249,-1.29386,0.387314,1.68473, +-0.318379,0.531648,-0.538828,-1.29267,0.387031,1.68293, +-0.318147,0.531234,-0.538408,-1.29147,0.386747,1.68113, +-0.317915,0.530819,-0.537987,-1.29028,0.386464,1.67933, +-0.317683,0.530405,-0.537565,-1.28908,0.38618,1.67753, +-0.317451,0.52999,-0.537144,-1.28788,0.385896,1.67573, +-0.317219,0.529575,-0.536723,-1.28669,0.385613,1.67393, +-0.316986,0.529161,-0.536302,-1.28549,0.385329,1.67213, +-0.316754,0.528746,-0.535881,-1.28429,0.385045,1.67033, +-0.316522,0.528331,-0.53546,-1.28309,0.384762,1.66853, +-0.316289,0.527916,-0.535038,-1.2819,0.384478,1.66673, +-0.316057,0.527501,-0.534617,-1.2807,0.384193,1.66493, +-0.315824,0.527086,-0.534195,-1.2795,0.383909,1.66313, +-0.315591,0.52667,-0.533773,-1.2783,0.383625,1.66132, +-0.315359,0.526255,-0.533351,-1.2771,0.383341,1.65952, +-0.315126,0.52584,-0.532929,-1.2759,0.383057,1.65772, +-0.314894,0.525424,-0.532507,-1.27471,0.382773,1.65591, +-0.314661,0.525009,-0.532085,-1.27351,0.382488,1.65411, +-0.314428,0.524593,-0.531663,-1.27231,0.382204,1.65231, +-0.314195,0.524177,-0.531241,-1.27111,0.381919,1.6505, +-0.313962,0.523761,-0.530818,-1.26991,0.381635,1.6487, +-0.313729,0.523345,-0.530396,-1.26871,0.38135,1.64689, +-0.313496,0.522929,-0.529973,-1.26751,0.381065,1.64509, +-0.313263,0.522513,-0.529551,-1.26631,0.380781,1.64328, +-0.31303,0.522097,-0.529128,-1.26511,0.380496,1.64147, +-0.312797,0.521681,-0.528705,-1.26391,0.380211,1.63967, +-0.312564,0.521265,-0.528283,-1.2627,0.379926,1.63786, +-0.31233,0.520848,-0.527859,-1.2615,0.379641,1.63606, +-0.312097,0.520431,-0.527436,-1.2603,0.379356,1.63425, +-0.311863,0.520015,-0.527013,-1.2591,0.379071,1.63244, +-0.31163,0.519598,-0.52659,-1.2579,0.378786,1.63063, +-0.311397,0.519181,-0.526167,-1.25669,0.378501,1.62883, +-0.311163,0.518765,-0.525744,-1.25549,0.378216,1.62702, +-0.31093,0.518348,-0.52532,-1.25429,0.377931,1.62521, +-0.310696,0.517931,-0.524897,-1.25309,0.377646,1.6234, +-0.310463,0.517514,-0.524473,-1.25189,0.37736,1.62159, +-0.310229,0.517097,-0.524049,-1.25068,0.377075,1.61978, +-0.309995,0.516679,-0.523626,-1.24948,0.376789,1.61797, +-0.309762,0.516262,-0.523202,-1.24827,0.376504,1.61616, +-0.309528,0.515845,-0.522778,-1.24707,0.376218,1.61435, +-0.309294,0.515427,-0.522354,-1.24587,0.375933,1.61254, +-0.30906,0.51501,-0.52193,-1.24466,0.375647,1.61073, +-0.308826,0.514593,-0.521506,-1.24346,0.375361,1.60892, +-0.308592,0.514175,-0.521082,-1.24226,0.375075,1.60711, +-0.308358,0.513757,-0.520658,-1.24105,0.374789,1.6053, +-0.308124,0.513339,-0.520233,-1.23985,0.374503,1.60349, +-0.30789,0.512921,-0.519809,-1.23864,0.374218,1.60168, +-0.307656,0.512503,-0.519384,-1.23744,0.373932,1.59987, +-0.307422,0.512085,-0.51896,-1.23623,0.373646,1.59806, +-0.307188,0.511667,-0.518536,-1.23503,0.37336,1.59624, +-0.306953,0.511249,-0.518111,-1.23382,0.373073,1.59443, +-0.306719,0.510831,-0.517686,-1.23261,0.372787,1.59262, +-0.306485,0.510413,-0.517261,-1.23141,0.372501,1.59081, +-0.30625,0.509994,-0.516836,-1.2302,0.372215,1.58899, +-0.306016,0.509576,-0.516411,-1.229,0.371928,1.58718, +-0.305782,0.509157,-0.515986,-1.22779,0.371642,1.58537, +-0.305547,0.508739,-0.515561,-1.22658,0.371356,1.58355, +-0.305313,0.50832,-0.515136,-1.22538,0.371069,1.58174, +-0.305078,0.507902,-0.514711,-1.22417,0.370783,1.57993, +-0.304843,0.507483,-0.514286,-1.22296,0.370496,1.57811, +-0.304609,0.507064,-0.51386,-1.22175,0.370209,1.5763, +-0.304374,0.506645,-0.513435,-1.22055,0.369923,1.57449, +-0.304139,0.506226,-0.513009,-1.21934,0.369636,1.57267, +-0.303905,0.505807,-0.512584,-1.21813,0.369349,1.57086, +-0.30367,0.505388,-0.512158,-1.21692,0.369063,1.56904, +-0.303435,0.504969,-0.511733,-1.21572,0.368776,1.56723, +-0.3032,0.50455,-0.511307,-1.21451,0.368489,1.56541, +-0.302965,0.504131,-0.510881,-1.2133,0.368202,1.5636, +-0.30273,0.503711,-0.510455,-1.21209,0.367915,1.56178, +-0.302495,0.503292,-0.510029,-1.21088,0.367628,1.55997, +-0.30226,0.502873,-0.509603,-1.20968,0.367341,1.55815, +-0.302026,0.502453,-0.509178,-1.20847,0.367054,1.55634, +-0.301791,0.502034,-0.508752,-1.20726,0.366767,1.55452, +-0.301556,0.501615,-0.508326,-1.20605,0.36648,1.5527, +-0.30132,0.501195,-0.5079,-1.20484,0.366193,1.55089, +-0.301085,0.500775,-0.507473,-1.20363,0.365906,1.54907, +-0.30085,0.500355,-0.507047,-1.20242,0.365618,1.54726, +-0.300615,0.499936,-0.50662,-1.20121,0.365331,1.54544, +-0.300379,0.499516,-0.506194,-1.20001,0.365044,1.54362, +-0.300144,0.499096,-0.505768,-1.1988,0.364756,1.54181, +-0.299909,0.498676,-0.505341,-1.19759,0.364469,1.53999, +-0.299674,0.498256,-0.504915,-1.19638,0.364182,1.53817, +-0.299438,0.497836,-0.504488,-1.19517,0.363894,1.53636, +-0.299203,0.497416,-0.504061,-1.19396,0.363606,1.53454, +-0.298967,0.496996,-0.503634,-1.19275,0.363319,1.53272, +-0.298732,0.496575,-0.503208,-1.19154,0.363031,1.5309, +-0.298496,0.496155,-0.502781,-1.19033,0.362743,1.52909, +-0.298261,0.495735,-0.502354,-1.18912,0.362456,1.52727, +-0.298025,0.495314,-0.501927,-1.18791,0.362168,1.52545, +-0.29779,0.494894,-0.5015,-1.18669,0.36188,1.52363, +-0.297554,0.494474,-0.501073,-1.18548,0.361593,1.52182, +-0.297318,0.494053,-0.500646,-1.18427,0.361305,1.52, +-0.297082,0.493632,-0.500219,-1.18306,0.361017,1.51818, +-0.296847,0.493212,-0.499791,-1.18185,0.360729,1.51636, +-0.296611,0.492791,-0.499364,-1.18064,0.360441,1.51454, +-0.296375,0.49237,-0.498937,-1.17943,0.360153,1.51272, +-0.29614,0.49195,-0.49851,-1.17822,0.359865,1.51091, +-0.295904,0.491529,-0.498082,-1.17701,0.359577,1.50909, +-0.295668,0.491108,-0.497655,-1.1758,0.359289,1.50727, +-0.295432,0.490687,-0.497227,-1.17459,0.359001,1.50545, +-0.295196,0.490266,-0.4968,-1.17337,0.358713,1.50363, +-0.29496,0.489845,-0.496372,-1.17216,0.358424,1.50181, +-0.294724,0.489424,-0.495945,-1.17095,0.358136,1.5, +-0.294488,0.489003,-0.495517,-1.16974,0.357848,1.49818, +-0.294252,0.488582,-0.495089,-1.16853,0.35756,1.49636, +-0.294016,0.488161,-0.494662,-1.16731,0.357272,1.49454, +-0.29378,0.48774,-0.494234,-1.1661,0.356983,1.49272, +-0.293544,0.487318,-0.493806,-1.16489,0.356695,1.4909, +-0.293307,0.486897,-0.493378,-1.16368,0.356406,1.48908, +-0.293071,0.486475,-0.49295,-1.16246,0.356118,1.48726, +-0.292835,0.486054,-0.492522,-1.16125,0.355829,1.48544, +-0.292599,0.485633,-0.492094,-1.16004,0.355541,1.48362, +-0.292363,0.485211,-0.491666,-1.15883,0.355252,1.4818, +-0.292127,0.48479,-0.491238,-1.15762,0.354964,1.47999, +-0.29189,0.484368,-0.49081,-1.1564,0.354675,1.47817, +-0.291654,0.483947,-0.490382,-1.15519,0.354387,1.47635, +-0.291417,0.483525,-0.489953,-1.15398,0.354098,1.47453, +-0.291181,0.483103,-0.489525,-1.15276,0.353809,1.47271, +-0.290945,0.482682,-0.489097,-1.15155,0.353521,1.47089, +-0.290708,0.48226,-0.488669,-1.15034,0.353232,1.46907, +-0.290472,0.481838,-0.48824,-1.14913,0.352943,1.46725, +-0.290235,0.481416,-0.487812,-1.14791,0.352654,1.46543, +-0.289999,0.480995,-0.487383,-1.1467,0.352366,1.46361, +-0.289762,0.480573,-0.486955,-1.14549,0.352077,1.46179, +-0.289526,0.480151,-0.486526,-1.14427,0.351788,1.45997, +-0.289289,0.479729,-0.486098,-1.14306,0.351499,1.45815, +-0.289053,0.479307,-0.485669,-1.14185,0.35121,1.45633, +-0.288816,0.478885,-0.485241,-1.14063,0.350921,1.45451, +-0.288579,0.478463,-0.484812,-1.13942,0.350632,1.45269, +-0.288343,0.478041,-0.484383,-1.13821,0.350343,1.45087, +-0.288106,0.477619,-0.483955,-1.13699,0.350054,1.44905, +-0.287869,0.477196,-0.483526,-1.13578,0.349765,1.44723, +-0.287633,0.476774,-0.483097,-1.13457,0.349476,1.44541, +-0.287396,0.476352,-0.482668,-1.13335,0.349187,1.44359, +-0.287159,0.47593,-0.482239,-1.13214,0.348898,1.44177, +-0.286923,0.475507,-0.481811,-1.13093,0.348609,1.43995, +-0.286686,0.475085,-0.481382,-1.12971,0.34832,1.43813, +-0.286449,0.474663,-0.480953,-1.1285,0.348031,1.43631, +-0.286212,0.474241,-0.480524,-1.12728,0.347741,1.43449, +-0.285975,0.473818,-0.480095,-1.12607,0.347452,1.43267, +-0.285738,0.473396,-0.479666,-1.12486,0.347163,1.43085, +-0.285502,0.472973,-0.479237,-1.12364,0.346873,1.42903, +-0.285265,0.472551,-0.478808,-1.12243,0.346584,1.42721, +-0.285028,0.472128,-0.478379,-1.12121,0.346295,1.42539, +-0.284791,0.471706,-0.47795,-1.12,0.346006,1.42357, +-0.284554,0.471283,-0.47752,-1.11879,0.345716,1.42175, +-0.284317,0.470861,-0.477091,-1.11757,0.345427,1.41993, +-0.28408,0.470438,-0.476662,-1.11636,0.345137,1.41811, +-0.283843,0.470015,-0.476233,-1.11514,0.344848,1.41629, +-0.283606,0.469592,-0.475803,-1.11393,0.344558,1.41447, +-0.283369,0.46917,-0.475374,-1.11271,0.344269,1.41265, +-0.283132,0.468747,-0.474945,-1.1115,0.34398,1.41083, +-0.282895,0.468324,-0.474515,-1.11029,0.34369,1.40901, +-0.282658,0.467902,-0.474086,-1.10907,0.343401,1.40719, +-0.28242,0.467479,-0.473657,-1.10786,0.343111,1.40537, +-0.282183,0.467056,-0.473227,-1.10664,0.342821,1.40355, +-0.281946,0.466633,-0.472798,-1.10543,0.342532,1.40173, +-0.281709,0.46621,-0.472368,-1.10421,0.342242,1.39991, +-0.281472,0.465787,-0.471939,-1.103,0.341953,1.39809, +-0.281234,0.465364,-0.471509,-1.10179,0.341663,1.39626, +-0.280997,0.464941,-0.471079,-1.10057,0.341373,1.39444, +-0.28076,0.464518,-0.47065,-1.09936,0.341084,1.39262, +-0.280523,0.464095,-0.47022,-1.09814,0.340794,1.3908, +-0.280286,0.463672,-0.469791,-1.09693,0.340504,1.38898, +-0.280048,0.463249,-0.469361,-1.09571,0.340214,1.38716, +-0.279811,0.462826,-0.468931,-1.0945,0.339925,1.38534, +-0.279574,0.462403,-0.468502,-1.09328,0.339635,1.38352, +-0.279336,0.46198,-0.468072,-1.09207,0.339345,1.3817, +-0.279099,0.461557,-0.467642,-1.09085,0.339056,1.37988, +-0.278862,0.461134,-0.467212,-1.08964,0.338766,1.37806, +-0.278624,0.46071,-0.466783,-1.08843,0.338476,1.37624, +-0.278387,0.460287,-0.466353,-1.08721,0.338186,1.37442, +-0.278149,0.459864,-0.465923,-1.086,0.337896,1.3726, +-0.277912,0.459441,-0.465493,-1.08478,0.337606,1.37078, +-0.277675,0.459017,-0.465063,-1.08357,0.337316,1.36896, +-0.277437,0.458594,-0.464633,-1.08235,0.337026,1.36714, +-0.2772,0.458171,-0.464203,-1.08114,0.336737,1.36532, +-0.276962,0.457748,-0.463774,-1.07992,0.336447,1.3635, +-0.276725,0.457324,-0.463344,-1.07871,0.336157,1.36168, +-0.276487,0.456901,-0.462914,-1.07749,0.335867,1.35986, +-0.27625,0.456478,-0.462484,-1.07628,0.335577,1.35804, +-0.276012,0.456054,-0.462054,-1.07506,0.335287,1.35622, +-0.275775,0.455631,-0.461624,-1.07385,0.334997,1.3544, +-0.275537,0.455207,-0.461194,-1.07263,0.334707,1.35258, +-0.2753,0.454784,-0.460764,-1.07142,0.334417,1.35076, +-0.275062,0.454361,-0.460334,-1.0702,0.334127,1.34894, +-0.274825,0.453937,-0.459904,-1.06899,0.333837,1.34712, +-0.274587,0.453514,-0.459474,-1.06778,0.333547,1.3453, +-0.274349,0.45309,-0.459043,-1.06656,0.333256,1.34348, +-0.274112,0.452667,-0.458613,-1.06535,0.332966,1.34166, +-0.273874,0.452243,-0.458183,-1.06413,0.332676,1.33984, +-0.273637,0.45182,-0.457753,-1.06292,0.332386,1.33802, +-0.273399,0.451396,-0.457323,-1.0617,0.332096,1.3362, +-0.273161,0.450973,-0.456893,-1.06049,0.331806,1.33438, +-0.272924,0.450549,-0.456462,-1.05927,0.331516,1.33256, +-0.272686,0.450125,-0.456032,-1.05806,0.331225,1.33074, +-0.272448,0.449702,-0.455602,-1.05684,0.330935,1.32892, +-0.272211,0.449278,-0.455172,-1.05563,0.330645,1.3271, +-0.271973,0.448854,-0.454741,-1.05441,0.330355,1.32528, +-0.271735,0.448431,-0.454311,-1.0532,0.330065,1.32346, +-0.271497,0.448007,-0.453881,-1.05198,0.329774,1.32164, +-0.27126,0.447583,-0.453451,-1.05077,0.329484,1.31983, +-0.271022,0.44716,-0.45302,-1.04955,0.329194,1.31801, +-0.270784,0.446736,-0.45259,-1.04834,0.328903,1.31619, +-0.270546,0.446312,-0.45216,-1.04712,0.328613,1.31437, +-0.270309,0.445888,-0.451729,-1.04591,0.328323,1.31255, +-0.270071,0.445465,-0.451299,-1.04469,0.328033,1.31073, +-0.269833,0.445041,-0.450869,-1.04348,0.327742,1.30891, +-0.269595,0.444617,-0.450438,-1.04226,0.327452,1.30709, +-0.269358,0.444194,-0.450008,-1.04105,0.327162,1.30527, +-0.26912,0.44377,-0.449578,-1.03983,0.326871,1.30345, +-0.268882,0.443346,-0.449147,-1.03862,0.326581,1.30163, +-0.268644,0.442922,-0.448717,-1.0374,0.326291,1.29981, +-0.268406,0.442498,-0.448286,-1.03619,0.326,1.29799, +-0.268168,0.442074,-0.447856,-1.03497,0.32571,1.29617, +-0.26793,0.44165,-0.447425,-1.03376,0.325419,1.29435, +-0.267693,0.441227,-0.446995,-1.03254,0.325129,1.29253, +-0.267455,0.440803,-0.446564,-1.03133,0.324839,1.29072, +-0.267217,0.440379,-0.446134,-1.03011,0.324548,1.2889, +-0.266979,0.439955,-0.445703,-1.0289,0.324258,1.28708, +-0.266741,0.439531,-0.445273,-1.02769,0.323967,1.28526, +-0.266503,0.439107,-0.444842,-1.02647,0.323677,1.28344, +-0.266265,0.438683,-0.444412,-1.02526,0.323386,1.28162, +-0.266027,0.438259,-0.443981,-1.02404,0.323096,1.2798, +-0.265789,0.437835,-0.443551,-1.02283,0.322806,1.27798, +-0.265551,0.437411,-0.44312,-1.02161,0.322515,1.27616, +-0.265313,0.436987,-0.442689,-1.0204,0.322225,1.27434, +-0.265075,0.436563,-0.442259,-1.01918,0.321934,1.27253, +-0.264837,0.436139,-0.441828,-1.01797,0.321644,1.27071, +-0.264599,0.435715,-0.441398,-1.01675,0.321353,1.26889, +-0.264362,0.435291,-0.440967,-1.01554,0.321062,1.26707, +-0.264124,0.434867,-0.440536,-1.01432,0.320772,1.26525, +-0.263886,0.434443,-0.440106,-1.01311,0.320481,1.26343, +-0.263648,0.434019,-0.439675,-1.01189,0.320191,1.26161, +-0.26341,0.433595,-0.439244,-1.01068,0.3199,1.25979, +-0.263171,0.433171,-0.438814,-1.00946,0.31961,1.25798, +-0.262933,0.432747,-0.438383,-1.00825,0.319319,1.25616, +-0.262695,0.432323,-0.437952,-1.00703,0.319029,1.25434, +-0.262457,0.431899,-0.437522,-1.00582,0.318738,1.25252, +-0.262219,0.431475,-0.437091,-1.00461,0.318447,1.2507, +-0.261981,0.431051,-0.43666,-1.00339,0.318157,1.24888, +-0.261743,0.430627,-0.43623,-1.00218,0.317866,1.24706, +-0.261505,0.430203,-0.435799,-1.00096,0.317576,1.24525, +-0.261267,0.429779,-0.435368,-0.999747,0.317285,1.24343, +-0.261029,0.429355,-0.434938,-0.998532,0.316994,1.24161, +-0.260791,0.42893,-0.434507,-0.997318,0.316704,1.23979, +-0.260553,0.428506,-0.434076,-0.996103,0.316413,1.23797, +-0.260315,0.428082,-0.433645,-0.994889,0.316123,1.23615, +-0.260077,0.427658,-0.433215,-0.993674,0.315832,1.23434, +-0.259839,0.427234,-0.432784,-0.99246,0.315541,1.23252, +-0.259601,0.42681,-0.432353,-0.991245,0.315251,1.2307, +-0.259362,0.426386,-0.431922,-0.990031,0.31496,1.22888, +-0.259124,0.425962,-0.431492,-0.988816,0.314669,1.22707, +-0.258886,0.425537,-0.431061,-0.987602,0.314379,1.22525, +-0.258648,0.425113,-0.43063,-0.986387,0.314088,1.22343, +-0.25841,0.424689,-0.430199,-0.985173,0.313797,1.22161, +-0.258172,0.424265,-0.429769,-0.983959,0.313507,1.21979, +-0.257934,0.423841,-0.429338,-0.982744,0.313216,1.21797, +-0.257696,0.423417,-0.428907,-0.98153,0.312925,1.21616, +-0.257457,0.422993,-0.428476,-0.980316,0.312634,1.21434, +-0.257219,0.422568,-0.428046,-0.979101,0.312344,1.21252, +-0.256981,0.422144,-0.427615,-0.977887,0.312053,1.2107, +-0.256743,0.42172,-0.427184,-0.976673,0.311762,1.20889, +-0.256505,0.421296,-0.426753,-0.975458,0.311472,1.20707, +-0.256267,0.420872,-0.426322,-0.974244,0.311181,1.20525, +-0.256029,0.420448,-0.425892,-0.973029,0.31089,1.20343, +-0.25579,0.420023,-0.425461,-0.971815,0.310599,1.20161, +-0.255552,0.419599,-0.42503,-0.970601,0.310309,1.1998, +-0.255314,0.419175,-0.424599,-0.969387,0.310018,1.19798, +-0.255076,0.418751,-0.424168,-0.968172,0.309727,1.19616, +-0.254838,0.418326,-0.423737,-0.966958,0.309436,1.19434, +-0.254599,0.417902,-0.423307,-0.965744,0.309146,1.19253, +-0.254361,0.417478,-0.422876,-0.96453,0.308855,1.19071, +-0.254123,0.417054,-0.422445,-0.963316,0.308564,1.18889, +-0.253885,0.41663,-0.422014,-0.962101,0.308273,1.18707, +-0.253647,0.416205,-0.421583,-0.960887,0.307983,1.18526, +-0.253408,0.415781,-0.421152,-0.959673,0.307692,1.18344, +-0.25317,0.415357,-0.420722,-0.958459,0.307401,1.18162, +-0.252932,0.414933,-0.420291,-0.957245,0.30711,1.1798, +-0.252694,0.414508,-0.41986,-0.956031,0.30682,1.17799, +-0.252455,0.414084,-0.419429,-0.954816,0.306529,1.17617, +-0.252217,0.41366,-0.418998,-0.953602,0.306238,1.17435, +-0.251979,0.413235,-0.418567,-0.952388,0.305947,1.17254, +-0.251741,0.412811,-0.418136,-0.951174,0.305656,1.17072, +-0.251502,0.412387,-0.417705,-0.94996,0.305366,1.1689, +-0.251264,0.411963,-0.417275,-0.948746,0.305075,1.16708, +-0.251026,0.411538,-0.416844,-0.947532,0.304784,1.16527, +-0.250788,0.411114,-0.416413,-0.946318,0.304493,1.16345, +-0.25055,0.41069,-0.415982,-0.945104,0.304202,1.16163, +-0.250311,0.410266,-0.415551,-0.94389,0.303912,1.15982, +-0.250073,0.409841,-0.41512,-0.942676,0.303621,1.158, +-0.249835,0.409417,-0.414689,-0.941462,0.30333,1.15618, +-0.249596,0.408993,-0.414258,-0.940248,0.303039,1.15437, +-0.249358,0.408568,-0.413827,-0.939034,0.302748,1.15255, +-0.24912,0.408144,-0.413397,-0.93782,0.302457,1.15073, +-0.248882,0.40772,-0.412966,-0.936606,0.302167,1.14891, +-0.248643,0.407296,-0.412535,-0.935392,0.301876,1.1471, +-0.248405,0.406871,-0.412104,-0.934178,0.301585,1.14528, +-0.248167,0.406447,-0.411673,-0.932964,0.301294,1.14346, +-0.247928,0.406022,-0.411242,-0.931749,0.301003,1.14165, +-0.24769,0.405598,-0.410811,-0.930535,0.300712,1.13983, +-0.247452,0.405174,-0.41038,-0.929321,0.300421,1.13801, +-0.247213,0.404749,-0.409949,-0.928107,0.30013,1.1362, +-0.246975,0.404325,-0.409518,-0.926893,0.29984,1.13438, +-0.246737,0.403901,-0.409087,-0.925679,0.299549,1.13256, +-0.246498,0.403476,-0.408656,-0.924465,0.299258,1.13075, +-0.24626,0.403052,-0.408225,-0.92325,0.298967,1.12893, +-0.246021,0.402627,-0.407794,-0.922036,0.298676,1.12711, +-0.245783,0.402203,-0.407363,-0.920822,0.298385,1.1253, +-0.245545,0.401778,-0.406932,-0.919607,0.298094,1.12348, +-0.245306,0.401354,-0.406501,-0.918393,0.297803,1.12166, +-0.245068,0.40093,-0.40607,-0.917179,0.297512,1.11985, +-0.24483,0.400505,-0.405639,-0.915965,0.297221,1.11803, +-0.244591,0.400081,-0.405208,-0.914751,0.29693,1.11622, +-0.244353,0.399656,-0.404776,-0.913536,0.296639,1.1144, +-0.244114,0.399232,-0.404345,-0.912322,0.296348,1.11258, +-0.243876,0.398807,-0.403914,-0.911107,0.296057,1.11077, +-0.243638,0.398383,-0.403483,-0.909893,0.295766,1.10895, +-0.243399,0.397958,-0.403052,-0.908678,0.295475,1.10713, +-0.243161,0.397534,-0.402621,-0.907464,0.295184,1.10532, +-0.242922,0.397109,-0.40219,-0.906249,0.294893,1.1035, +-0.242684,0.396685,-0.401759,-0.905035,0.294602,1.10169, +-0.242445,0.39626,-0.401327,-0.90382,0.294311,1.09987, +-0.242207,0.395835,-0.400896,-0.902605,0.29402,1.09806, +-0.241968,0.395411,-0.400465,-0.90139,0.293729,1.09624, +-0.24173,0.394986,-0.400034,-0.900176,0.293438,1.09442, +-0.241491,0.394562,-0.399602,-0.898961,0.293147,1.09261, +-0.241253,0.394137,-0.399171,-0.897746,0.292856,1.09079, +-0.241014,0.393712,-0.39874,-0.896532,0.292565,1.08897, +-0.240776,0.393288,-0.398309,-0.895317,0.292273,1.08716, +-0.240537,0.392863,-0.397877,-0.894102,0.291982,1.08534, +-0.240299,0.392438,-0.397446,-0.892887,0.291691,1.08353, +-0.24006,0.392013,-0.397015,-0.891671,0.2914,1.08171, +-0.239821,0.391589,-0.396583,-0.890456,0.291109,1.0799, +-0.239583,0.391164,-0.396152,-0.88924,0.290817,1.07808, +-0.239344,0.390739,-0.39572,-0.888025,0.290526,1.07627, +-0.239106,0.390314,-0.395289,-0.88681,0.290235,1.07445, +-0.238867,0.38989,-0.394858,-0.885595,0.289944,1.07264, +-0.238628,0.389465,-0.394426,-0.884379,0.289653,1.07082, +-0.23839,0.38904,-0.393994,-0.883163,0.289361,1.06901, +-0.238151,0.388615,-0.393563,-0.881947,0.28907,1.06719, +-0.237912,0.38819,-0.393131,-0.880731,0.288779,1.06538, +-0.237674,0.387765,-0.3927,-0.879516,0.288487,1.06356, +-0.237435,0.38734,-0.392268,-0.8783,0.288196,1.06174, +-0.237196,0.386915,-0.391837,-0.877084,0.287905,1.05993, +-0.236958,0.38649,-0.391405,-0.875868,0.287614,1.05811, +-0.236719,0.386065,-0.390974,-0.874652,0.287322,1.0563, +-0.23648,0.38564,-0.390542,-0.873436,0.287031,1.05449, +-0.236241,0.385215,-0.39011,-0.872219,0.286739,1.05267, +-0.236003,0.38479,-0.389678,-0.871002,0.286448,1.05086, +-0.235764,0.384365,-0.389247,-0.869786,0.286156,1.04904, +-0.235525,0.383939,-0.388815,-0.868569,0.285865,1.04723, +-0.235286,0.383514,-0.388383,-0.867352,0.285573,1.04541, +-0.235047,0.383089,-0.387951,-0.866136,0.285282,1.0436, +-0.234809,0.382664,-0.387519,-0.864919,0.28499,1.04178, +-0.23457,0.382238,-0.387087,-0.863702,0.284699,1.03997, +-0.234331,0.381813,-0.386655,-0.862484,0.284407,1.03816, +-0.234092,0.381388,-0.386223,-0.861266,0.284116,1.03634, +-0.233853,0.380962,-0.385791,-0.860049,0.283824,1.03453, +-0.233614,0.380537,-0.385359,-0.858831,0.283532,1.03271, +-0.233375,0.380111,-0.384927,-0.857613,0.283241,1.0309, +-0.233136,0.379686,-0.384495,-0.856396,0.282949,1.02908, +-0.232897,0.37926,-0.384063,-0.855178,0.282657,1.02727, +-0.232658,0.378835,-0.383631,-0.853959,0.282366,1.02546, +-0.232419,0.378409,-0.383198,-0.85274,0.282074,1.02364, +-0.23218,0.377983,-0.382766,-0.851522,0.281782,1.02183, +-0.231941,0.377558,-0.382334,-0.850303,0.28149,1.02002, +-0.231702,0.377132,-0.381901,-0.849085,0.281198,1.0182, +-0.231463,0.376707,-0.381469,-0.847866,0.280907,1.01639, +-0.231223,0.376281,-0.381037,-0.846648,0.280615,1.01458, +-0.230984,0.375855,-0.380604,-0.845429,0.280323,1.01277, +-0.230745,0.375429,-0.380172,-0.84421,0.280031,1.01095, +-0.230506,0.375003,-0.379739,-0.84299,0.279739,1.00914, +-0.230267,0.374577,-0.379307,-0.84177,0.279447,1.00733, +-0.230027,0.374151,-0.378874,-0.84055,0.279155,1.00551, +-0.229788,0.373725,-0.378441,-0.83933,0.278863,1.0037, +-0.229549,0.373299,-0.378009,-0.838111,0.278571,1.00189, +-0.22931,0.372873,-0.377576,-0.836891,0.278279,1.00008, +-0.22907,0.372447,-0.377143,-0.83567,0.277987,0.998265, +-0.228831,0.372021,-0.37671,-0.83445,0.277694,0.996454, +-0.228591,0.371594,-0.376277,-0.833229,0.277402,0.994642, +-0.228352,0.371168,-0.375844,-0.832007,0.27711,0.99283, +-0.228112,0.370742,-0.375411,-0.830786,0.276818,0.991018, +-0.227873,0.370315,-0.374978,-0.829565,0.276526,0.989206, +-0.227634,0.369889,-0.374546,-0.828344,0.276233,0.987395, +-0.227394,0.369463,-0.374113,-0.827123,0.275941,0.985584, +-0.227155,0.369036,-0.373679,-0.825901,0.275649,0.983773, +-0.226915,0.368609,-0.373246,-0.824679,0.275356,0.981963, +-0.226675,0.368183,-0.372813,-0.823457,0.275064,0.980152, +-0.226436,0.367756,-0.372379,-0.822234,0.274771,0.978342, +-0.226196,0.367329,-0.371946,-0.821012,0.274479,0.976531, +-0.225956,0.366903,-0.371513,-0.819789,0.274186,0.97472, +-0.225717,0.366476,-0.371079,-0.818567,0.273894,0.97291, +-0.225477,0.366049,-0.370646,-0.817344,0.273601,0.9711, +-0.225237,0.365622,-0.370212,-0.816121,0.273309,0.969291, +-0.224998,0.365195,-0.369778,-0.814897,0.273016,0.967481, +-0.224758,0.364768,-0.369345,-0.813674,0.272723,0.965672, +-0.224518,0.364341,-0.368911,-0.812449,0.27243,0.963863, +-0.224278,0.363914,-0.368477,-0.811225,0.272138,0.962053, +-0.224038,0.363487,-0.368043,-0.810001,0.271845,0.960244, +-0.223798,0.36306,-0.36761,-0.808777,0.271552,0.958435, +-0.223558,0.362632,-0.367176,-0.807552,0.271259,0.956626, +-0.223318,0.362205,-0.366742,-0.806328,0.270966,0.954818, +-0.223078,0.361777,-0.366308,-0.805103,0.270673,0.95301, +-0.222838,0.36135,-0.365873,-0.803877,0.27038,0.951203, +-0.222598,0.360922,-0.365439,-0.802651,0.270087,0.949395, +-0.222358,0.360495,-0.365005,-0.801425,0.269794,0.947587, +-0.222118,0.360067,-0.364571,-0.8002,0.269501,0.945779, +-0.221878,0.35964,-0.364136,-0.798974,0.269208,0.943971, +-0.221638,0.359212,-0.363702,-0.797748,0.268915,0.942164, +-0.221397,0.358784,-0.363268,-0.796521,0.268622,0.940358, +-0.221157,0.358356,-0.362833,-0.795295,0.268328,0.938552, +-0.220917,0.357928,-0.362398,-0.794067,0.268035,0.936746, +-0.220676,0.3575,-0.361963,-0.79284,0.267742,0.934939, +-0.220436,0.357072,-0.361529,-0.791612,0.267448,0.933133, +-0.220196,0.356644,-0.361094,-0.790384,0.267155,0.931327, +-0.219955,0.356216,-0.360659,-0.789156,0.266862,0.929521, +-0.219715,0.355788,-0.360224,-0.787928,0.266568,0.927716, +-0.219474,0.355359,-0.359789,-0.7867,0.266275,0.925912, +-0.219234,0.354931,-0.359354,-0.785472,0.265981,0.924107, +-0.218993,0.354502,-0.358919,-0.784243,0.265687,0.922303, +-0.218753,0.354074,-0.358484,-0.783013,0.265393,0.920499, +-0.218512,0.353645,-0.358048,-0.781783,0.2651,0.918694, +-0.218271,0.353217,-0.357613,-0.780554,0.264806,0.91689, +-0.218031,0.352788,-0.357178,-0.779324,0.264512,0.915086, +-0.21779,0.352359,-0.356742,-0.778094,0.264219,0.913283, +-0.217549,0.35193,-0.356307,-0.776864,0.263925,0.911481, +-0.217308,0.351501,-0.355871,-0.775633,0.263631,0.909679, +-0.217067,0.351072,-0.355435,-0.774402,0.263336,0.907876, +-0.216826,0.350643,-0.354999,-0.77317,0.263042,0.906074, +-0.216586,0.350214,-0.354564,-0.771939,0.262748,0.904272, +-0.216345,0.349785,-0.354128,-0.770707,0.262454,0.90247, +-0.216104,0.349356,-0.353692,-0.769475,0.26216,0.900668, +-0.215863,0.348926,-0.353256,-0.768243,0.261866,0.898868, +-0.215622,0.348497,-0.35282,-0.767011,0.261572,0.897067, +-0.21538,0.348067,-0.352383,-0.765778,0.261277,0.895268, +-0.215139,0.347637,-0.351947,-0.764545,0.260983,0.893468, +-0.214898,0.347208,-0.351511,-0.763311,0.260688,0.891668, +-0.214657,0.346778,-0.351074,-0.762077,0.260394,0.889868, +-0.214415,0.346348,-0.350638,-0.760843,0.260099,0.888069, +-0.214174,0.345918,-0.350201,-0.759609,0.259805,0.88627, +-0.213933,0.345489,-0.349765,-0.758375,0.25951,0.884471, +-0.213692,0.345059,-0.349328,-0.75714,0.259216,0.882674, +-0.21345,0.344628,-0.348891,-0.755905,0.258921,0.880877, +-0.213208,0.344198,-0.348454,-0.75467,0.258626,0.879079, +-0.212967,0.343768,-0.348017,-0.753434,0.258331,0.877282, +-0.212725,0.343337,-0.34758,-0.752197,0.258036,0.875485, +-0.212484,0.342907,-0.347142,-0.750961,0.257741,0.873688, +-0.212242,0.342476,-0.346705,-0.749725,0.257446,0.871892, +-0.212001,0.342046,-0.346268,-0.748488,0.257151,0.870097, +-0.211759,0.341615,-0.345831,-0.747251,0.256856,0.868302, +-0.211517,0.341184,-0.345393,-0.746014,0.256561,0.866508, +-0.211275,0.340753,-0.344955,-0.744776,0.256266,0.864713, +-0.211033,0.340322,-0.344518,-0.743538,0.25597,0.862919, +-0.210791,0.339891,-0.34408,-0.742299,0.255675,0.861125, +-0.210549,0.33946,-0.343642,-0.74106,0.25538,0.859331, +-0.210307,0.339029,-0.343204,-0.739821,0.255084,0.857538, +-0.210065,0.338598,-0.342766,-0.738582,0.254789,0.855746, +-0.209823,0.338167,-0.342328,-0.737343,0.254493,0.853954, +-0.209581,0.337735,-0.34189,-0.736104,0.254198,0.852163, +-0.209339,0.337303,-0.341451,-0.734863,0.253902,0.850372, +-0.209096,0.336871,-0.341013,-0.733622,0.253606,0.848581, +-0.208854,0.33644,-0.340574,-0.732381,0.25331,0.84679, +-0.208612,0.336008,-0.340136,-0.731139,0.253014,0.845, +-0.208369,0.335576,-0.339697,-0.729898,0.252719,0.84321, +-0.208127,0.335144,-0.339259,-0.728656,0.252423,0.841421, +-0.207885,0.334712,-0.33882,-0.727415,0.252127,0.839633, +-0.207642,0.33428,-0.338381,-0.726173,0.251831,0.837845, +-0.207399,0.333847,-0.337942,-0.72493,0.251534,0.836058, +-0.207156,0.333415,-0.337502,-0.723686,0.251238,0.83427, +-0.206914,0.332982,-0.337063,-0.722442,0.250942,0.832483, +-0.206671,0.33255,-0.336624,-0.721198,0.250645,0.830696, +-0.206428,0.332117,-0.336185,-0.719954,0.250349,0.82891, +-0.206186,0.331685,-0.335745,-0.71871,0.250053,0.827125, +-0.205943,0.331252,-0.335306,-0.717465,0.249756,0.82534, +-0.2057,0.330819,-0.334866,-0.71622,0.24946,0.823557, +-0.205457,0.330386,-0.334426,-0.714975,0.249163,0.821773, +-0.205214,0.329952,-0.333986,-0.713728,0.248866,0.819989, +-0.20497,0.329519,-0.333546,-0.712482,0.248569,0.818206, +-0.204727,0.329086,-0.333106,-0.711235,0.248272,0.816423, +-0.204484,0.328652,-0.332666,-0.709988,0.247976,0.814641, +-0.204241,0.328219,-0.332226,-0.708741,0.247679,0.81286, +-0.203998,0.327786,-0.331785,-0.707494,0.247382,0.81108, +-0.203754,0.327352,-0.331345,-0.706246,0.247085,0.8093, +-0.203511,0.326918,-0.330904,-0.704998,0.246787,0.80752, +-0.203267,0.326483,-0.330463,-0.703748,0.24649,0.805741, +-0.203024,0.326049,-0.330022,-0.702499,0.246193,0.803962, +-0.20278,0.325615,-0.329581,-0.701249,0.245895,0.802183, +-0.202537,0.325181,-0.32914,-0.699999,0.245598,0.800406, +-0.202293,0.324747,-0.328699,-0.69875,0.245301,0.798629, +-0.202049,0.324313,-0.328258,-0.6975,0.245003,0.796853, +-0.201806,0.323878,-0.327817,-0.696249,0.244705,0.795078, +-0.201562,0.323443,-0.327375,-0.694998,0.244407,0.793303, +-0.201318,0.323008,-0.326933,-0.693746,0.24411,0.791528, +-0.201074,0.322573,-0.326492,-0.692493,0.243812,0.789753, +-0.20083,0.322138,-0.32605,-0.69124,0.243514,0.787979, +-0.200586,0.321703,-0.325608,-0.689988,0.243216,0.786206, +-0.200342,0.321268,-0.325166,-0.688735,0.242918,0.784434, +-0.200098,0.320833,-0.324724,-0.687482,0.24262,0.782663, +-0.199853,0.320398,-0.324282,-0.686228,0.242322,0.780893, +-0.199609,0.319962,-0.323839,-0.684974,0.242023,0.779123, +-0.199364,0.319526,-0.323397,-0.683719,0.241725,0.777353, +-0.19912,0.31909,-0.322954,-0.682464,0.241426,0.775583, +-0.198876,0.318655,-0.322512,-0.681208,0.241128,0.773814, +-0.198631,0.318219,-0.322069,-0.679952,0.24083,0.772046, +-0.198387,0.317783,-0.321626,-0.678696,0.240531,0.77028, +-0.198142,0.317347,-0.321183,-0.67744,0.240232,0.768514, +-0.197897,0.31691,-0.32074,-0.676183,0.239933,0.766748, +-0.197652,0.316474,-0.320297,-0.674926,0.239634,0.764983, +-0.197407,0.316037,-0.319853,-0.673668,0.239335,0.763219, +-0.197163,0.3156,-0.31941,-0.672409,0.239036,0.761454, +-0.196918,0.315164,-0.318966,-0.67115,0.238737,0.759691, +-0.196673,0.314727,-0.318523,-0.669891,0.238438,0.757928, +-0.196428,0.31429,-0.318079,-0.668632,0.238139,0.756167, +-0.196183,0.313853,-0.317635,-0.667373,0.23784,0.754406, +-0.195937,0.313416,-0.317191,-0.666113,0.23754,0.752647, +-0.195692,0.312978,-0.316747,-0.664853,0.237241,0.750887, +-0.195447,0.312541,-0.316302,-0.663591,0.236941,0.749128, +-0.195201,0.312103,-0.315858,-0.662329,0.236642,0.74737, +-0.194956,0.311665,-0.315413,-0.661067,0.236342,0.745612, +-0.194711,0.311228,-0.314969,-0.659805,0.236042,0.743855, +-0.194465,0.31079,-0.314524,-0.658543,0.235743,0.7421, +-0.19422,0.310352,-0.314079,-0.65728,0.235443,0.740345, +-0.193974,0.309914,-0.313634,-0.656017,0.235143,0.738591, +-0.193728,0.309475,-0.313189,-0.654753,0.234842,0.736838, +-0.193482,0.309037,-0.312743,-0.653489,0.234542,0.735085, +-0.193236,0.308598,-0.312298,-0.652223,0.234242,0.733333, +-0.19299,0.30816,-0.311853,-0.650958,0.233942,0.731581, +-0.192744,0.307721,-0.311407,-0.649692,0.233641,0.72983, +-0.192498,0.307282,-0.310962,-0.648427,0.233341,0.728081, +-0.192252,0.306844,-0.310516,-0.647161,0.23304,0.726333, +-0.192006,0.306404,-0.31007,-0.645894,0.23274,0.724585, +-0.191759,0.305965,-0.309623,-0.644627,0.232439,0.722838, +-0.191513,0.305525,-0.309177,-0.643359,0.232138,0.721092, +-0.191267,0.305086,-0.30873,-0.642091,0.231837,0.719346, +-0.19102,0.304646,-0.308284,-0.640822,0.231536,0.7176, +-0.190774,0.304207,-0.307838,-0.639553,0.231235,0.715856, +-0.190527,0.303767,-0.307391,-0.638284,0.230934,0.714114, +-0.190281,0.303327,-0.306944,-0.637014,0.230633,0.712372, +-0.190034,0.302887,-0.306497,-0.635745,0.230332,0.710631, +-0.189787,0.302446,-0.30605,-0.634474,0.23003,0.708891, +-0.18954,0.302006,-0.305602,-0.633203,0.229728,0.707151, +-0.189293,0.301565,-0.305155,-0.631931,0.229427,0.705412, +-0.189046,0.301124,-0.304707,-0.630659,0.229125,0.703674, +-0.188799,0.300684,-0.30426,-0.629386,0.228824,0.701937, +-0.188552,0.300243,-0.303812,-0.628114,0.228522,0.700201, +-0.188305,0.299802,-0.303364,-0.626841,0.22822,0.698467, +-0.188057,0.299361,-0.302916,-0.625568,0.227918,0.696733, +-0.18781,0.298919,-0.302468,-0.624294,0.227616,0.695, +-0.187562,0.298478,-0.302019,-0.623019,0.227313,0.693267, +-0.187315,0.298036,-0.301571,-0.621744,0.227011,0.691535, +-0.187067,0.297594,-0.301122,-0.620469,0.226709,0.689805, +-0.18682,0.297153,-0.300673,-0.619193,0.226407,0.688075, +-0.186572,0.296711,-0.300225,-0.617917,0.226104,0.686347, +-0.186325,0.296269,-0.299776,-0.616641,0.225802,0.684619, +-0.186077,0.295827,-0.299327,-0.615365,0.225499,0.682893, +-0.185829,0.295384,-0.298877,-0.614087,0.225196,0.681168, +-0.18558,0.294941,-0.298427,-0.612809,0.224893,0.679443, +-0.185332,0.294499,-0.297978,-0.611531,0.22459,0.677719, +-0.185084,0.294056,-0.297528,-0.610252,0.224287,0.675996, +-0.184836,0.293613,-0.297078,-0.608973,0.223984,0.674274, +-0.184588,0.29317,-0.296629,-0.607694,0.223681,0.672553, +-0.18434,0.292727,-0.296179,-0.606415,0.223378,0.670834, +-0.184091,0.292284,-0.295728,-0.605135,0.223074,0.669116, +-0.183843,0.29184,-0.295278,-0.603855,0.22277,0.667398, +-0.183594,0.291396,-0.294827,-0.602574,0.222467,0.665681, +-0.183345,0.290952,-0.294376,-0.601292,0.222163,0.663965, +-0.183097,0.290509,-0.293925,-0.60001,0.221859,0.66225, +-0.182848,0.290065,-0.293475,-0.598728,0.221556,0.660537, +-0.182599,0.289621,-0.293024,-0.597446,0.221252,0.658824, +-0.18235,0.289177,-0.292573,-0.596164,0.220948,0.657114, +-0.182101,0.288732,-0.292121,-0.594881,0.220643,0.655404, +-0.181852,0.288287,-0.291669,-0.593598,0.220339,0.653695, +-0.181602,0.287842,-0.291217,-0.592313,0.220035,0.651986, +-0.181353,0.287397,-0.290765,-0.591029,0.21973,0.650279, +-0.181104,0.286952,-0.290313,-0.589744,0.219426,0.648572, +-0.180855,0.286507,-0.289861,-0.588459,0.219121,0.646867, +-0.180605,0.286062,-0.289409,-0.587174,0.218817,0.645164, +-0.180356,0.285617,-0.288957,-0.585889,0.218512,0.643462, +-0.180106,0.285171,-0.288504,-0.584603,0.218207,0.64176, +-0.179856,0.284725,-0.288051,-0.583317,0.217902,0.64006, +-0.179606,0.284279,-0.287598,-0.58203,0.217596,0.638361, +-0.179356,0.283833,-0.287145,-0.580742,0.217291,0.636662, +-0.179106,0.283387,-0.286692,-0.579455,0.216986,0.634965, +-0.178857,0.282941,-0.286239,-0.578167,0.216681,0.633269, +-0.178607,0.282494,-0.285786,-0.576879,0.216375,0.631574, +-0.178356,0.282048,-0.285332,-0.575591,0.21607,0.629881, +-0.178106,0.281601,-0.284878,-0.574303,0.215764,0.62819, +-0.177855,0.281154,-0.284424,-0.573014,0.215458,0.626499, +-0.177605,0.280706,-0.28397,-0.571724,0.215152,0.624809, +-0.177354,0.280259,-0.283515,-0.570434,0.214846,0.623119, +-0.177104,0.279812,-0.283061,-0.569144,0.21454,0.621431, +-0.176853,0.279364,-0.282606,-0.567854,0.214234,0.619745, +-0.176603,0.278917,-0.282152,-0.566564,0.213928,0.61806, +-0.176352,0.278469,-0.281697,-0.565273,0.213621,0.616377, +-0.176101,0.278021,-0.281242,-0.563983,0.213315,0.614695, +-0.17585,0.277573,-0.280787,-0.562691,0.213008,0.613013, +-0.175599,0.277124,-0.280331,-0.561399,0.212701,0.611333, +-0.175347,0.276676,-0.279875,-0.560107,0.212394,0.609654, +-0.175096,0.276227,-0.27942,-0.558814,0.212087,0.607976, +-0.174845,0.275778,-0.278964,-0.557522,0.211781,0.606299, +-0.174594,0.27533,-0.278508,-0.556229,0.211474,0.604624, +-0.174342,0.274881,-0.278053,-0.554937,0.211167,0.602951, +-0.174091,0.274432,-0.277596,-0.553644,0.210859,0.601279, +-0.173839,0.273982,-0.277139,-0.55235,0.210551,0.599608, +-0.173587,0.273532,-0.276682,-0.551056,0.210244,0.597938, +-0.173335,0.273082,-0.276226,-0.549761,0.209936,0.596269, +-0.173083,0.272632,-0.275769,-0.548467,0.209628,0.594601, +-0.172831,0.272182,-0.275312,-0.547173,0.209321,0.592935, +-0.172579,0.271732,-0.274855,-0.545878,0.209013,0.59127, +-0.172327,0.271282,-0.274398,-0.544584,0.208705,0.589608, +-0.172075,0.270832,-0.27394,-0.543288,0.208397,0.587946, +-0.171822,0.270381,-0.273482,-0.541993,0.208088,0.586286, +-0.17157,0.269929,-0.273023,-0.540697,0.20778,0.584626, +-0.171317,0.269478,-0.272565,-0.539401,0.207471,0.582968, +-0.171065,0.269027,-0.272107,-0.538105,0.207162,0.581311, +-0.170812,0.268576,-0.271649,-0.536809,0.206854,0.579656, +-0.170559,0.268125,-0.27119,-0.535513,0.206545,0.578002, +-0.170307,0.267673,-0.270732,-0.534216,0.206236,0.57635, +-0.170053,0.267221,-0.270273,-0.532919,0.205927,0.5747, +-0.1698,0.266769,-0.269813,-0.531622,0.205618,0.573051, +-0.169547,0.266317,-0.269354,-0.530325,0.205308,0.571402, +-0.169294,0.265864,-0.268894,-0.529027,0.204999,0.569755, +-0.16904,0.265412,-0.268435,-0.52773,0.20469,0.56811, +-0.168787,0.264959,-0.267975,-0.526432,0.20438,0.566466, +-0.168534,0.264507,-0.267515,-0.525135,0.204071,0.564823, +-0.16828,0.264054,-0.267055,-0.523837,0.203761,0.563183, +-0.168026,0.2636,-0.266595,-0.522539,0.203451,0.561544, +-0.167773,0.263147,-0.266134,-0.521241,0.203141,0.559906, +-0.167519,0.262693,-0.265673,-0.519942,0.20283,0.55827, +-0.167265,0.262239,-0.265212,-0.518643,0.20252,0.556634, +-0.167011,0.261785,-0.264751,-0.517345,0.20221,0.555, +-0.166757,0.261331,-0.26429,-0.516046,0.201899,0.553368, +-0.166503,0.260877,-0.263829,-0.514748,0.201589,0.551738, +-0.166248,0.260423,-0.263368,-0.513449,0.201278,0.550109, +-0.165994,0.259969,-0.262906,-0.51215,0.200967,0.548482, +-0.165739,0.259514,-0.262444,-0.510851,0.200656,0.546856, +-0.165484,0.259058,-0.261982,-0.509551,0.200345,0.545232, +-0.16523,0.258603,-0.261519,-0.508252,0.200034,0.543608, +-0.164975,0.258148,-0.261057,-0.506953,0.199722,0.541986, +-0.16472,0.257693,-0.260594,-0.505653,0.199411,0.540366, +-0.164465,0.257237,-0.260132,-0.504354,0.1991,0.538748, +-0.16421,0.256782,-0.259669,-0.503055,0.198788,0.537132, +-0.163955,0.256326,-0.259206,-0.501755,0.198476,0.535518, +-0.1637,0.255869,-0.258742,-0.500455,0.198164,0.533904, +-0.163444,0.255412,-0.258278,-0.499156,0.197852,0.532292, +-0.163189,0.254956,-0.257815,-0.497856,0.19754,0.530681, +-0.162933,0.254499,-0.257351,-0.496557,0.197228,0.529072, +-0.162678,0.254042,-0.256887,-0.495257,0.196916,0.527465, +-0.162422,0.253586,-0.256423,-0.493958,0.196603,0.52586, +-0.162166,0.253129,-0.255959,-0.492659,0.196291,0.524256, +-0.16191,0.252671,-0.255494,-0.491359,0.195978,0.522655, +-0.161654,0.252214,-0.255029,-0.490059,0.195665,0.521054, +-0.161398,0.251755,-0.254564,-0.488759,0.195352,0.519455, +-0.161141,0.251297,-0.254099,-0.487459,0.195039,0.517857, +-0.160885,0.250839,-0.253633,-0.48616,0.194726,0.516261, +-0.160629,0.250381,-0.253168,-0.48486,0.194412,0.514667, +-0.160373,0.249923,-0.252702,-0.48356,0.194099,0.513075, +-0.160116,0.249464,-0.252237,-0.482261,0.193786,0.511485, +-0.159859,0.249005,-0.251771,-0.480961,0.193472,0.509897, +-0.159602,0.248546,-0.251304,-0.479662,0.193158,0.50831, +-0.159345,0.248086,-0.250837,-0.478362,0.192844,0.506724, +-0.159088,0.247626,-0.25037,-0.477063,0.192529,0.50514, +-0.158831,0.247167,-0.249903,-0.475763,0.192215,0.503558, +-0.158574,0.246707,-0.249436,-0.474464,0.191901,0.501977, +-0.158317,0.246247,-0.248969,-0.473164,0.191587,0.500399, +-0.158059,0.245787,-0.248502,-0.471865,0.191272,0.498823, +-0.157801,0.245327,-0.248034,-0.470566,0.190957,0.497248, +-0.157544,0.244866,-0.247566,-0.469267,0.190642,0.495675, +-0.157286,0.244405,-0.247098,-0.467968,0.190327,0.494103, +-0.157028,0.243943,-0.246629,-0.46667,0.190012,0.492533, +-0.15677,0.243482,-0.24616,-0.465371,0.189697,0.490965, +-0.156512,0.243021,-0.245692,-0.464072,0.189382,0.489399, +-0.156254,0.242559,-0.245223,-0.462773,0.189066,0.487835, +-0.155996,0.242098,-0.244755,-0.461475,0.188751,0.486273, +-0.155737,0.241636,-0.244285,-0.460177,0.188435,0.484712, +-0.155478,0.241173,-0.243815,-0.458879,0.188119,0.483154, +-0.15522,0.24071,-0.243345,-0.457581,0.187803,0.481596, +-0.154961,0.240248,-0.242875,-0.456284,0.187486,0.480041, +-0.154702,0.239785,-0.242405,-0.454986,0.18717,0.478487, +-0.154444,0.239322,-0.241935,-0.453688,0.186854,0.476935, +-0.154185,0.238859,-0.241465,-0.452391,0.186538,0.475386, +-0.153926,0.238396,-0.240994,-0.451094,0.186221,0.473839, +-0.153666,0.237932,-0.240524,-0.449797,0.185904,0.472293, +-0.153407,0.237468,-0.240052,-0.4485,0.185587,0.47075, +-0.153147,0.237004,-0.23958,-0.447204,0.185269,0.469207, +-0.152887,0.236539,-0.239109,-0.445908,0.184952,0.467667, +-0.152628,0.236075,-0.238637,-0.444612,0.184635,0.466128, +-0.152368,0.23561,-0.238165,-0.443316,0.184318,0.464591, +-0.152109,0.235146,-0.237693,-0.442019,0.184,0.463057, +-0.151849,0.234681,-0.237221,-0.440724,0.183683,0.461525, +-0.151588,0.234216,-0.236748,-0.439428,0.183364,0.459995, +-0.151328,0.23375,-0.236275,-0.438133,0.183046,0.458467, +-0.151067,0.233284,-0.235802,-0.436839,0.182728,0.45694, +-0.150807,0.232818,-0.235328,-0.435545,0.182409,0.455414, +-0.150546,0.232352,-0.234855,-0.434251,0.182091,0.453891, +-0.150286,0.231885,-0.234381,-0.432957,0.181772,0.45237, +-0.150025,0.231419,-0.233908,-0.431663,0.181454,0.450852, +-0.149765,0.230953,-0.233434,-0.430369,0.181135,0.449336, +-0.149503,0.230486,-0.23296,-0.429076,0.180816,0.447821, +-0.149242,0.230018,-0.232485,-0.427783,0.180497,0.446309, +-0.148981,0.229551,-0.23201,-0.426491,0.180177,0.444798, +-0.148719,0.229083,-0.231535,-0.425199,0.179858,0.443288, +-0.148458,0.228615,-0.231059,-0.423908,0.179538,0.441781, +-0.148196,0.228147,-0.230584,-0.422617,0.179219,0.440276, +-0.147935,0.227679,-0.230109,-0.421325,0.178899,0.438774, +-0.147673,0.227211,-0.229633,-0.420034,0.178579,0.437274, +-0.147411,0.226743,-0.229157,-0.418743,0.178259,0.435776, +-0.147149,0.226273,-0.228681,-0.417454,0.177938,0.43428, +-0.146887,0.225804,-0.228204,-0.416165,0.177618,0.432785, +-0.146624,0.225334,-0.227727,-0.414876,0.177297,0.431292, +-0.146362,0.224865,-0.22725,-0.413588,0.176977,0.429802, +-0.1461,0.224396,-0.226773,-0.4123,0.176656,0.428313, +-0.145838,0.223926,-0.226297,-0.411013,0.176335,0.426827, +-0.145575,0.223456,-0.225819,-0.409725,0.176014,0.425344, +-0.145312,0.222986,-0.225342,-0.408438,0.175693,0.423863, +-0.145049,0.222515,-0.224863,-0.407152,0.175371,0.422383, +-0.144786,0.222044,-0.224385,-0.405867,0.17505,0.420905, +-0.144522,0.221573,-0.223906,-0.404582,0.174728,0.41943, +-0.144259,0.221102,-0.223428,-0.403298,0.174406,0.417956, +-0.143996,0.220631,-0.222949,-0.402014,0.174085,0.416485, +-0.143733,0.220159,-0.222471,-0.400729,0.173763,0.415016, +-0.143469,0.219688,-0.221992,-0.399445,0.173441,0.413549, +-0.143206,0.219216,-0.221512,-0.39816,0.173118,0.412085, +-0.142942,0.218743,-0.221032,-0.396874,0.172795,0.410623, +-0.142677,0.218271,-0.220552,-0.395588,0.172473,0.409163, +-0.142413,0.217798,-0.220072,-0.394301,0.17215,0.407704, +-0.142149,0.217325,-0.219591,-0.393014,0.171827,0.406248, +-0.141885,0.216852,-0.219111,-0.391728,0.171504,0.404794, +-0.141621,0.216379,-0.218631,-0.390441,0.171181,0.403343, +-0.141357,0.215906,-0.21815,-0.389155,0.170858,0.401894, +-0.141092,0.215432,-0.217669,-0.387869,0.170534,0.400447, +-0.140827,0.214958,-0.217187,-0.386582,0.17021,0.399003, +-0.140562,0.214483,-0.216705,-0.385295,0.169886,0.39756, +-0.140297,0.214009,-0.216223,-0.384009,0.169562,0.396119, +-0.140032,0.213534,-0.215741,-0.382722,0.169238,0.394681, +-0.139767,0.21306,-0.215259,-0.381436,0.168914,0.393245, +-0.139502,0.212585,-0.214777,-0.380151,0.16859,0.391812, +-0.139236,0.21211,-0.214294,-0.378866,0.168266,0.390381, +-0.138971,0.211635,-0.213811,-0.377581,0.167941,0.388952, +-0.138705,0.211159,-0.213328,-0.376297,0.167616,0.387526, +-0.138439,0.210683,-0.212844,-0.375012,0.167291,0.386101, +-0.138173,0.210206,-0.212361,-0.373728,0.166966,0.384679, +-0.137907,0.20973,-0.211877,-0.372445,0.166641,0.383258, +-0.137641,0.209254,-0.211393,-0.371162,0.166316,0.381841, +-0.137375,0.208777,-0.210909,-0.369881,0.165991,0.380426, +-0.137109,0.208301,-0.210425,-0.3686,0.165665,0.379013, +-0.136843,0.207824,-0.20994,-0.36732,0.165339,0.377603, +-0.136576,0.207346,-0.209455,-0.36604,0.165013,0.376195, +-0.136309,0.206868,-0.20897,-0.364761,0.164687,0.374789, +-0.136042,0.20639,-0.208485,-0.363482,0.164361,0.373385, +-0.135775,0.205913,-0.207999,-0.362205,0.164035,0.371984, +-0.135509,0.205435,-0.207514,-0.360928,0.163708,0.370585, +-0.135242,0.204957,-0.207028,-0.359653,0.163382,0.369188, +-0.134975,0.204479,-0.206543,-0.358379,0.163056,0.367795, +-0.134707,0.204,-0.206056,-0.357106,0.162729,0.366404, +-0.13444,0.203521,-0.20557,-0.355833,0.162401,0.365014, +-0.134172,0.203041,-0.205083,-0.354561,0.162074,0.363627, +-0.133904,0.202562,-0.204595,-0.35329,0.161747,0.362242, +-0.133637,0.202082,-0.204108,-0.352021,0.16142,0.36086, +-0.133369,0.201603,-0.203621,-0.350752,0.161092,0.35948, +-0.133101,0.201123,-0.203134,-0.349486,0.160765,0.358103, +-0.132833,0.200644,-0.202647,-0.34822,0.160438,0.356728, +-0.132565,0.200163,-0.202159,-0.346956,0.16011,0.355356, +-0.132296,0.199683,-0.201671,-0.345693,0.159781,0.353986, +-0.132028,0.199201,-0.201182,-0.344431,0.159453,0.352618, +-0.131759,0.19872,-0.200693,-0.343169,0.159124,0.351252, +-0.131491,0.198239,-0.200204,-0.34191,0.158796,0.349889, +-0.131222,0.197758,-0.199716,-0.340651,0.158468,0.348529, +-0.130954,0.197277,-0.199227,-0.339395,0.158139,0.347171, +-0.130685,0.196795,-0.198738,-0.33814,0.157811,0.345816, +-0.130416,0.196313,-0.198248,-0.336887,0.157482,0.344463, +-0.130146,0.195831,-0.197758,-0.335635,0.157152,0.343113, +-0.129877,0.195348,-0.197268,-0.334383,0.156823,0.341765, +-0.129607,0.194866,-0.196778,-0.333134,0.156493,0.340419, +-0.129338,0.194383,-0.196287,-0.331885,0.156164,0.339075, +-0.129068,0.1939,-0.195797,-0.330639,0.155834,0.337734, +-0.128799,0.193417,-0.195306,-0.329394,0.155505,0.336396, +-0.128529,0.192934,-0.194816,-0.328152,0.155175,0.335061, +-0.128259,0.192451,-0.194325,-0.32691,0.154845,0.333728, +-0.127989,0.191967,-0.193833,-0.325671,0.154514,0.332398, +-0.127719,0.191482,-0.193341,-0.324432,0.154184,0.33107, +-0.127448,0.190998,-0.192849,-0.323195,0.153853,0.329743, +-0.127178,0.190514,-0.192357,-0.32196,0.153523,0.32842, +-0.126908,0.190029,-0.191865,-0.320726,0.153192,0.327099, +-0.126637,0.189545,-0.191373,-0.319495,0.152862,0.325781, +-0.126367,0.18906,-0.190881,-0.318265,0.152531,0.324466, +-0.126096,0.188575,-0.190388,-0.317038,0.1522,0.323153, +-0.125825,0.18809,-0.189895,-0.315811,0.151868,0.321843, +-0.125554,0.187604,-0.189401,-0.314587,0.151536,0.320535, +-0.125282,0.187118,-0.188908,-0.313363,0.151205,0.319229, +-0.125011,0.186632,-0.188414,-0.312142,0.150873,0.317926, +-0.12474,0.186146,-0.187921,-0.310923,0.150542,0.316625, +-0.124469,0.18566,-0.187427,-0.309705,0.15021,0.315328, +-0.124198,0.185174,-0.186933,-0.30849,0.149878,0.314033, +-0.123926,0.184688,-0.186439,-0.307277,0.149546,0.312741, +-0.123654,0.1842,-0.185944,-0.306066,0.149213,0.311451, +-0.123382,0.183713,-0.185449,-0.304855,0.148881,0.310163, +-0.12311,0.183226,-0.184954,-0.303647,0.148548,0.308878, +-0.122838,0.182738,-0.184459,-0.30244,0.148216,0.307595, +-0.122566,0.182251,-0.183964,-0.301236,0.147883,0.306315, +-0.122294,0.181763,-0.183469,-0.300034,0.14755,0.305038, +-0.122022,0.181276,-0.182973,-0.298834,0.147217,0.303764, +-0.121749,0.180788,-0.182478,-0.297636,0.146884,0.302492, +-0.121476,0.180299,-0.181981,-0.29644,0.146551,0.301223, +-0.121203,0.17981,-0.181485,-0.295245,0.146217,0.299956, +-0.12093,0.179321,-0.180988,-0.294052,0.145883,0.298692, +-0.120658,0.178832,-0.180491,-0.292861,0.14555,0.29743, +-0.120385,0.178343,-0.179995,-0.291672,0.145216,0.29617, +-0.120112,0.177854,-0.179498,-0.290486,0.144882,0.294914, +-0.119839,0.177365,-0.179001,-0.289302,0.144548,0.293661, +-0.119565,0.176875,-0.178503,-0.28812,0.144214,0.29241, +-0.119292,0.176385,-0.178005,-0.286939,0.143879,0.291162, +-0.119018,0.175895,-0.177507,-0.285761,0.143545,0.289916, +-0.118744,0.175404,-0.177009,-0.284584,0.14321,0.288672, +-0.118471,0.174914,-0.176511,-0.283409,0.142875,0.287431, +-0.118197,0.174423,-0.176013,-0.282236,0.142541,0.286193, +-0.117923,0.173933,-0.175515,-0.281066,0.142206,0.284958, +-0.117649,0.173442,-0.175016,-0.279898,0.141871,0.283726, +-0.117375,0.172951,-0.174517,-0.278732,0.141536,0.282496, +-0.117101,0.172459,-0.174018,-0.277568,0.1412,0.281269, +-0.116826,0.171968,-0.173518,-0.276406,0.140865,0.280044, +-0.116552,0.171476,-0.173019,-0.275245,0.140529,0.278822, +-0.116277,0.170984,-0.172519,-0.274087,0.140193,0.277602, +-0.116003,0.170492,-0.17202,-0.272931,0.139858,0.276385, +-0.115728,0.17,-0.17152,-0.271777,0.139522,0.275171, +-0.115454,0.169508,-0.17102,-0.270626,0.139186,0.27396, +-0.115179,0.169016,-0.17052,-0.269477,0.13885,0.272752, +-0.114903,0.168523,-0.170019,-0.26833,0.138513,0.271546, +-0.114628,0.16803,-0.169518,-0.267184,0.138177,0.270343, +-0.114353,0.167536,-0.169017,-0.26604,0.13784,0.269142, +-0.114078,0.167043,-0.168516,-0.264899,0.137504,0.267943, +-0.113802,0.16655,-0.168015,-0.26376,0.137167,0.266748, +-0.113527,0.166056,-0.167514,-0.262623,0.13683,0.265555, +-0.113252,0.165563,-0.167013,-0.261489,0.136493,0.264366, +-0.112976,0.165069,-0.166511,-0.260357,0.136156,0.263179, +-0.1127,0.164574,-0.166008,-0.259226,0.135819,0.261995, +-0.112424,0.16408,-0.165506,-0.258098,0.135481,0.260812, +-0.112148,0.163585,-0.165004,-0.256971,0.135144,0.259633, +-0.111872,0.163091,-0.164501,-0.255847,0.134806,0.258456, +-0.111596,0.162596,-0.163999,-0.254724,0.134469,0.257282, +-0.11132,0.162101,-0.163496,-0.253605,0.134131,0.256111, +-0.111043,0.161607,-0.162994,-0.252488,0.133793,0.254943, +-0.110767,0.161111,-0.162491,-0.251373,0.133455,0.253778, +-0.11049,0.160615,-0.161987,-0.25026,0.133117,0.252615, +-0.110213,0.160119,-0.161483,-0.249148,0.132778,0.251455, +-0.109936,0.159623,-0.160979,-0.248039,0.13244,0.250297, +-0.10966,0.159127,-0.160475,-0.246932,0.132101,0.249142, +-0.109383,0.158631,-0.159972,-0.245827,0.131763,0.247989, +-0.109106,0.158135,-0.159468,-0.244725,0.131424,0.24684, +-0.108829,0.157639,-0.158964,-0.243625,0.131085,0.245694, +-0.108551,0.157142,-0.158459,-0.242527,0.130746,0.244551, +-0.108274,0.156645,-0.157954,-0.241431,0.130407,0.24341, +-0.107996,0.156148,-0.157449,-0.240338,0.130067,0.242271, +-0.107719,0.15565,-0.156944,-0.239245,0.129728,0.241135, +-0.107441,0.155153,-0.156439,-0.238156,0.129388,0.240001, +-0.107164,0.154656,-0.155934,-0.237068,0.129049,0.238871, +-0.106886,0.154159,-0.155429,-0.235984,0.12871,0.237744, +-0.106608,0.153661,-0.154923,-0.234901,0.12837,0.236619, +-0.10633,0.153163,-0.154418,-0.233821,0.12803,0.235498, +-0.106052,0.152665,-0.153911,-0.232743,0.127689,0.234379, +-0.105773,0.152166,-0.153405,-0.231666,0.127349,0.233262, +-0.105495,0.151668,-0.152899,-0.230592,0.127009,0.232148, +-0.105217,0.151169,-0.152393,-0.22952,0.126668,0.231036, +-0.104938,0.150671,-0.151886,-0.22845,0.126328,0.229928, +-0.10466,0.150172,-0.15138,-0.227383,0.125988,0.228822, +-0.104381,0.149673,-0.150873,-0.226318,0.125647,0.22772, +-0.104103,0.149174,-0.150367,-0.225256,0.125306,0.22662, +-0.103823,0.148675,-0.149859,-0.224195,0.124965,0.225523, +-0.103544,0.148175,-0.149352,-0.223136,0.124623,0.224428, +-0.103265,0.147675,-0.148845,-0.22208,0.124282,0.223336, +-0.102986,0.147176,-0.148338,-0.221025,0.123941,0.222247, +-0.102707,0.146676,-0.14783,-0.219973,0.1236,0.22116, +-0.102428,0.146177,-0.147323,-0.218924,0.123259,0.220077, +-0.102149,0.145677,-0.146816,-0.217877,0.122917,0.218996, +-0.101869,0.145177,-0.146308,-0.216832,0.122575,0.217919, +-0.101589,0.144676,-0.1458,-0.21579,0.122233,0.216844, +-0.10131,0.144176,-0.145292,-0.214749,0.121891,0.215771, +-0.10103,0.143675,-0.144784,-0.21371,0.121549,0.214701, +-0.10075,0.143175,-0.144276,-0.212673,0.121206,0.213634, +-0.10047,0.142675,-0.143768,-0.211639,0.120864,0.212569, +-0.10019,0.142174,-0.14326,-0.210608,0.120522,0.211508, +-0.0999103,0.141674,-0.142751,-0.209579,0.12018,0.21045, +-0.0996299,0.141173,-0.142243,-0.208552,0.119837,0.209395, +-0.0993493,0.140671,-0.141734,-0.207527,0.119494,0.208342, +-0.0990688,0.14017,-0.141225,-0.206505,0.119151,0.207292, +-0.0987882,0.139669,-0.140717,-0.205484,0.118808,0.206244, +-0.0985077,0.139168,-0.140208,-0.204465,0.118465,0.205199, +-0.0982272,0.138667,-0.139699,-0.203449,0.118122,0.204157, +-0.0979466,0.138166,-0.139191,-0.202436,0.117779,0.203118, +-0.0976658,0.137665,-0.138683,-0.201425,0.117435,0.202083, +-0.0973848,0.137164,-0.138174,-0.200417,0.117092,0.201051, +-0.0971038,0.136663,-0.137666,-0.19941,0.116748,0.200022, +-0.0968228,0.136162,-0.137157,-0.198406,0.116404,0.198996, +-0.0965417,0.135661,-0.136649,-0.197403,0.116061,0.197973, +-0.0962607,0.13516,-0.136141,-0.196403,0.115717,0.196952, +-0.0959797,0.134658,-0.135632,-0.195406,0.115374,0.195935, +-0.0956986,0.134157,-0.135124,-0.194411,0.11503,0.19492, +-0.0954173,0.133657,-0.134616,-0.193419,0.114686,0.193909, +-0.0951358,0.133156,-0.134108,-0.192429,0.114342,0.192901, +-0.0948542,0.132655,-0.1336,-0.191441,0.113998,0.191896, +-0.0945727,0.132154,-0.133092,-0.190455,0.113653,0.190894, +-0.0942912,0.131654,-0.132584,-0.189471,0.113309,0.189895, +-0.0940098,0.131153,-0.132076,-0.18849,0.112965,0.188898, +-0.0937283,0.130653,-0.131569,-0.187511,0.112621,0.187905, +-0.0934469,0.130152,-0.131061,-0.186535,0.112277,0.186914, +-0.0931651,0.129652,-0.130553,-0.185562,0.111932,0.185927, +-0.0928831,0.129152,-0.130046,-0.184591,0.111588,0.184943, +-0.092601,0.128651,-0.129539,-0.183622,0.111243,0.183961, +-0.0923189,0.128151,-0.129031,-0.182655,0.110898,0.182982, +-0.0920368,0.127651,-0.128524,-0.181691,0.110553,0.182005, +-0.0917547,0.127151,-0.128017,-0.180729,0.110208,0.181031, +-0.0914726,0.12665,-0.127509,-0.179769,0.109863,0.18006, +-0.0911905,0.12615,-0.127002,-0.178812,0.109518,0.179092, +-0.0909082,0.12565,-0.126495,-0.177858,0.109173,0.178127, +-0.0906255,0.125151,-0.125988,-0.176907,0.108828,0.177166, +-0.0903427,0.124651,-0.125482,-0.175957,0.108482,0.176207, +-0.09006,0.124151,-0.124975,-0.17501,0.108136,0.17525, +-0.0897772,0.123651,-0.124469,-0.174065,0.107791,0.174296, +-0.0894945,0.123152,-0.123962,-0.173122,0.107445,0.173345, +-0.0892118,0.122652,-0.123455,-0.172182,0.107099,0.172396, +-0.088929,0.122152,-0.122949,-0.171245,0.106754,0.171451, +-0.0886459,0.121653,-0.122443,-0.17031,0.106408,0.170508, +-0.0883626,0.121154,-0.121937,-0.169379,0.106061,0.169569, +-0.0880791,0.120655,-0.121431,-0.168449,0.105715,0.168632, +-0.0877956,0.120156,-0.120925,-0.167521,0.105368,0.167698, +-0.0875122,0.119657,-0.12042,-0.166596,0.105022,0.166766, +-0.0872287,0.119158,-0.119914,-0.165673,0.104675,0.165836, +-0.0869453,0.118659,-0.119408,-0.164753,0.104328,0.164909, +-0.0866618,0.11816,-0.118903,-0.163836,0.103982,0.163986, +-0.0863781,0.117662,-0.118398,-0.162921,0.103635,0.163066, +-0.086094,0.117164,-0.117893,-0.162009,0.103288,0.162148, +-0.0858097,0.116666,-0.117388,-0.1611,0.10294,0.161233, +-0.0855255,0.116168,-0.116884,-0.160192,0.102593,0.16032, +-0.0852413,0.11567,-0.116379,-0.159287,0.102245,0.15941, +-0.0849571,0.115172,-0.115875,-0.158384,0.101898,0.158503, +-0.0846729,0.114674,-0.11537,-0.157484,0.10155,0.157599, +-0.0843887,0.114176,-0.114866,-0.156587,0.101203,0.156698, +-0.0841042,0.113679,-0.114362,-0.155693,0.100855,0.155799, +-0.0838193,0.113182,-0.113858,-0.154801,0.100507,0.154904, +-0.0835342,0.112685,-0.113355,-0.153912,0.100158,0.15401, +-0.0832491,0.112188,-0.112852,-0.153025,0.0998098,0.153119, +-0.082964,0.111691,-0.112349,-0.15214,0.0994612,0.152231, +-0.0826789,0.111195,-0.111846,-0.151257,0.0991126,0.151345, +-0.0823938,0.110698,-0.111343,-0.150378,0.098764,0.150462, +-0.0821087,0.110201,-0.11084,-0.149502,0.0984154,0.149582, +-0.0818233,0.109705,-0.110337,-0.148628,0.0980665,0.148705, +-0.0815376,0.109209,-0.109835,-0.147757,0.0977172,0.147831, +-0.0812516,0.108714,-0.109333,-0.146888,0.0973676,0.146959, +-0.0809656,0.108218,-0.108832,-0.146022,0.0970179,0.14609, +-0.0806796,0.107723,-0.108331,-0.145157,0.0966681,0.145223, +-0.0803936,0.107228,-0.10783,-0.144296,0.0963184,0.144359, +-0.0801076,0.106733,-0.107328,-0.143437,0.0959688,0.143497, +-0.0798216,0.106238,-0.106827,-0.142582,0.095619,0.142639, +-0.0795353,0.105743,-0.106326,-0.141729,0.0952691,0.141784, +-0.0792486,0.105249,-0.105826,-0.140879,0.0949186,0.140932, +-0.0789617,0.104755,-0.105326,-0.140031,0.0945678,0.140082, +-0.0786747,0.104262,-0.104827,-0.139185,0.0942169,0.139234, +-0.0783878,0.103769,-0.104328,-0.138342,0.093866,0.138389, +-0.0781009,0.103276,-0.103829,-0.137501,0.0935151,0.137546, +-0.0778139,0.102782,-0.10333,-0.136664,0.0931642,0.136707, +-0.0775269,0.102289,-0.102831,-0.135829,0.0928132,0.13587, +-0.0772397,0.101796,-0.102332,-0.134998,0.092462,0.135037, +-0.076952,0.101304,-0.101833,-0.134169,0.0921103,0.134206, +-0.0766641,0.100812,-0.101336,-0.133342,0.0917583,0.133378, +-0.0763761,0.100321,-0.100839,-0.132517,0.0914061,0.132553, +-0.0760882,0.0998303,-0.100342,-0.131696,0.0910539,0.131729, +-0.0758002,0.0993395,-0.0998458,-0.130876,0.0907017,0.130909, +-0.0755123,0.0988487,-0.0993494,-0.13006,0.0903496,0.130091, +-0.0752243,0.098358,-0.098853,-0.129247,0.0899975,0.129277, +-0.0749361,0.0978675,-0.0983569,-0.128436,0.089645,0.128465, +-0.0746474,0.0973776,-0.0978613,-0.127629,0.0892921,0.127656, +-0.0743584,0.0968883,-0.0973664,-0.126823,0.0889388,0.12685, +-0.0740694,0.0963997,-0.0968721,-0.126021,0.0885852,0.126046, +-0.0737803,0.0959114,-0.0963784,-0.12522,0.0882317,0.125244, +-0.0734913,0.0954234,-0.0958848,-0.124422,0.0878782,0.124446, +-0.0732023,0.0949353,-0.0953913,-0.123627,0.0875247,0.12365, +-0.0729132,0.0944472,-0.0948979,-0.122836,0.0871711,0.122857, +-0.0726239,0.0939595,-0.0944046,-0.122047,0.0868173,0.122067, +-0.0723341,0.0934722,-0.0939119,-0.121261,0.086463,0.12128, +-0.072044,0.0929856,-0.0934199,-0.120477,0.0861082,0.120496, +-0.0717538,0.0924998,-0.0929288,-0.119696,0.0857533,0.119714, +-0.0714636,0.0920146,-0.0924382,-0.118917,0.0853983,0.118934, +-0.0711734,0.0915296,-0.091948,-0.118141,0.0850433,0.118158, +-0.0708832,0.0910447,-0.0914579,-0.117368,0.0846883,0.117384, +-0.070593,0.0905598,-0.0909679,-0.116598,0.0843333,0.116613, +-0.0703025,0.0900752,-0.0904781,-0.115831,0.0839781,0.115846, +-0.0700115,0.0895911,-0.0899888,-0.115067,0.0836224,0.115081, +-0.0697203,0.0891077,-0.0895003,-0.114306,0.0832661,0.114319, +-0.0694289,0.0886252,-0.0890127,-0.113546,0.0829097,0.113559, +-0.0691375,0.0881434,-0.0885258,-0.112789,0.0825533,0.112801, +-0.0688462,0.0876621,-0.0880395,-0.112035,0.0821969,0.112047, +-0.0685549,0.087181,-0.0875535,-0.111284,0.0818405,0.111295, +-0.0682636,0.0867,-0.0870676,-0.110536,0.0814841,0.110546, +-0.067972,0.0862194,-0.0865821,-0.109791,0.0811275,0.109801, +-0.06768,0.0857392,-0.0860971,-0.109049,0.0807704,0.109058, +-0.0673875,0.0852598,-0.0856129,-0.108309,0.0804127,0.108318, +-0.067095,0.0847814,-0.0851298,-0.107572,0.0800548,0.107581, +-0.0668025,0.0843037,-0.0846474,-0.106837,0.0796969,0.106846, +-0.06651,0.0838265,-0.0841655,-0.106105,0.0793391,0.106113, +-0.0662175,0.0833497,-0.083684,-0.105376,0.0789814,0.105384, +-0.065925,0.0828729,-0.0832026,-0.10465,0.0786235,0.104658, +-0.0656322,0.0823965,-0.0827215,-0.103928,0.0782655,0.103935, +-0.065339,0.0819206,-0.0822409,-0.103208,0.0779069,0.103214, +-0.0650454,0.0814455,-0.0817612,-0.10249,0.0775479,0.102497, +-0.0647517,0.0809714,-0.0812825,-0.101775,0.0771886,0.101781, +-0.064458,0.0804981,-0.0808047,-0.101063,0.0768293,0.101069, +-0.0641643,0.0800255,-0.0803275,-0.100353,0.0764701,0.100359, +-0.0638706,0.0795532,-0.0798508,-0.0996463,0.0761109,0.0996517, +-0.0635769,0.0790811,-0.0793743,-0.0989428,0.0757516,0.098948, +-0.0632829,0.0786093,-0.0788982,-0.0982424,0.0753921,0.0982474, +-0.0629884,0.0781382,-0.0784228,-0.0975448,0.075032,0.0975496, +-0.0626937,0.077668,-0.0779483,-0.0968497,0.0746716,0.0968543, +-0.0623989,0.0771988,-0.0774749,-0.0961571,0.0743111,0.0961615, +-0.062104,0.0767305,-0.0770024,-0.095467,0.0739505,0.0954712, +-0.0618092,0.0762628,-0.0765305,-0.0947797,0.07359,0.0947837, +-0.0615144,0.0757956,-0.0760591,-0.0940955,0.0732294,0.0940993, +-0.0612195,0.0753286,-0.0755879,-0.0934145,0.0728688,0.0934181, +-0.0609244,0.0748619,-0.0751171,-0.0927366,0.0725079,0.0927401, +-0.0606289,0.074396,-0.074647,-0.0920615,0.0721467,0.0920648, +-0.0603331,0.0739309,-0.0741777,-0.0913889,0.0717851,0.0913921, +-0.0600373,0.073467,-0.0737097,-0.0907188,0.0714235,0.0907219, +-0.0597415,0.0730041,-0.0732427,-0.0900513,0.071062,0.0900542, +-0.0594458,0.072542,-0.0727766,-0.0893866,0.0707004,0.0893894, +-0.05915,0.0720805,-0.0723111,-0.088725,0.0703389,0.0887276, +-0.0588542,0.0716194,-0.071846,-0.0880666,0.0699773,0.0880691, +-0.0585582,0.0711588,-0.0713816,-0.0874113,0.0696155,0.0874137, +-0.0582618,0.0706992,-0.070918,-0.0867589,0.0692533,0.0867612, +-0.0579652,0.0702405,-0.0704556,-0.0861091,0.068891,0.0861112, +-0.0576687,0.0697831,-0.0699945,-0.0854616,0.0685287,0.0854637, +-0.0573722,0.0693268,-0.0695344,-0.0848168,0.0681664,0.0848187, +-0.0570757,0.0688712,-0.0690752,-0.0841748,0.0678041,0.0841766, +-0.0567791,0.0684162,-0.0686165,-0.0835359,0.0674417,0.0835377, +-0.0564825,0.0679615,-0.0681582,-0.0829003,0.0670793,0.082902, +-0.0561857,0.0675074,-0.0677005,-0.0822678,0.0667167,0.0822694, +-0.0558886,0.067054,-0.0672436,-0.0816381,0.066354,0.0816396, +-0.0555915,0.0666017,-0.0667878,-0.081011,0.0659913,0.0810125, +-0.0552944,0.0661507,-0.0663333,-0.0803864,0.0656285,0.0803878, +-0.0549974,0.0657008,-0.06588,-0.0797644,0.0652658,0.0797657, +-0.0547004,0.065252,-0.0654278,-0.0791452,0.0649032,0.0791464, +-0.0544034,0.0648038,-0.0649762,-0.0785291,0.0645406,0.0785303, +-0.0541064,0.0643562,-0.0645252,-0.0779164,0.064178,0.0779175, +-0.0538091,0.0639094,-0.0640744,-0.0773067,0.0638153,0.0773077, +-0.0535119,0.0634635,-0.0636236,-0.0766999,0.0634527,0.0767009, +-0.0532146,0.0630188,-0.0631726,-0.0760957,0.06309,0.0760966, +-0.0529174,0.0625756,-0.0627211,-0.0754939,0.0627273,0.0754948, +-0.0526202,0.0621336,-0.062269,-0.0748948,0.0623648,0.0748956, +-0.0523231,0.0616926,-0.0618165,-0.0742985,0.0620023,0.0742993, +-0.0520259,0.0612523,-0.0613639,-0.0737053,0.0616398,0.0737061, +-0.0517288,0.0608127,-0.0609113,-0.0731154,0.0612773,0.0731162, +-0.0514317,0.0603737,-0.0604587,-0.0725287,0.0609151,0.0725294, +-0.0511346,0.0599358,-0.0600056,-0.0719448,0.060553,0.0719454, +-0.0508376,0.0594991,-0.0595523,-0.0713635,0.0601909,0.0713641, +-0.0505405,0.0590639,-0.059099,-0.0707847,0.0598289,0.0707853, +-0.0502434,0.05863,-0.0586458,-0.0702084,0.0594668,0.070209, +-0.0499464,0.0581973,-0.0581931,-0.0696351,0.0591048,0.0696356, +-0.0496493,0.0577655,-0.0577411,-0.0690648,0.0587428,0.0690653, +-0.0493525,0.0573344,-0.0572899,-0.0684979,0.058381,0.0684984, +-0.0490559,0.0569043,-0.0568395,-0.0679341,0.0580196,0.0679345, +-0.0487594,0.0564754,-0.0563895,-0.0673731,0.0576586,0.0673735, +-0.048463,0.0560479,-0.0559399,-0.0668147,0.0572978,0.0668151, +-0.0481666,0.0556221,-0.0554909,-0.0662588,0.0569371,0.0662592, +-0.0478702,0.0551977,-0.0550429,-0.0657055,0.0565763,0.0657059, +-0.0475739,0.0547745,-0.054596,-0.065155,0.0562156,0.0651554, +-0.0472776,0.0543523,-0.0541505,-0.0646077,0.055855,0.064608, +-0.0469813,0.053931,-0.0537065,-0.0640636,0.0554944,0.064064, +-0.0466852,0.0535106,-0.053264,-0.0635227,0.055134,0.063523, +-0.0463897,0.0530915,-0.0528226,-0.0629846,0.0547742,0.0629849, +-0.0460944,0.0526739,-0.0523821,-0.0624491,0.0544149,0.0624494, +-0.0457992,0.0522581,-0.0519429,-0.0619161,0.0540561,0.0619163, +-0.0455041,0.0518438,-0.0515051,-0.0613856,0.0536975,0.0613859, +-0.045209,0.051431,-0.0510691,-0.060858,0.0533389,0.0608582, +-0.044914,0.0510194,-0.0506349,-0.0603335,0.0529804,0.0603337, +-0.044619,0.0506089,-0.0502029,-0.0598123,0.0526221,0.0598125, +-0.0443243,0.0501995,-0.0497728,-0.0592941,0.052264,0.0592943, +-0.0440301,0.0497917,-0.0493444,-0.0587788,0.0519064,0.058779, +-0.0437364,0.0493855,-0.0489174,-0.0582661,0.0515496,0.0582663, +-0.0434431,0.0489812,-0.0484921,-0.0577558,0.0511934,0.057756, +-0.0431498,0.0485785,-0.0480686,-0.0572481,0.0508375,0.0572483, +-0.0428565,0.0481772,-0.0476471,-0.0567433,0.0504818,0.0567434, +-0.0425632,0.047777,-0.047228,-0.0562415,0.0501262,0.0562416, +-0.04227,0.0473778,-0.0468114,-0.0557429,0.0497705,0.055743, +-0.041977,0.0469797,-0.046397,-0.0552474,0.0494151,0.0552475, +-0.0416845,0.046583,-0.0459848,-0.0547548,0.0490602,0.0547549, +-0.0413928,0.0461879,-0.0455744,-0.0542647,0.0487061,0.0542648, +-0.0411016,0.0457947,-0.0451658,-0.053777,0.0483528,0.0537771, +-0.0408108,0.0454034,-0.0447593,-0.0532919,0.0480004,0.053292, +-0.0405202,0.045014,-0.044355,-0.0528096,0.0476486,0.0528097, +-0.0402297,0.044626,-0.0439533,-0.0523303,0.047297,0.0523304, +-0.0399391,0.0442395,-0.0435543,-0.0518542,0.0469457,0.0518543, +-0.0396488,0.0438544,-0.0431579,-0.0513812,0.0465946,0.0513813, +-0.0393591,0.0434711,-0.0427637,-0.050911,0.0462441,0.0509111, +-0.03907,0.0430899,-0.0423717,-0.0504434,0.0458944,0.0504435, +-0.0387818,0.0427106,-0.0419815,-0.0499781,0.0455458,0.0499782, +-0.0384941,0.0423331,-0.0415934,-0.0495153,0.045198,0.0495154, +-0.0382067,0.0419571,-0.0412078,-0.0490553,0.0448509,0.0490554, +-0.0379194,0.0415824,-0.0408247,-0.0485983,0.0445042,0.0485984, +-0.0376322,0.0412088,-0.0404444,-0.0481446,0.0441578,0.0481446, +-0.0373452,0.0408364,-0.0400668,-0.0476938,0.0438117,0.0476938, +-0.0370587,0.0404655,-0.0396916,-0.0472458,0.0434663,0.0472459, +-0.036773,0.0400964,-0.0393184,-0.0468003,0.0431218,0.0468004, +-0.0364882,0.0397293,-0.0389473,-0.0463571,0.0427784,0.0463573, +-0.0362042,0.0393644,-0.0385782,-0.0459164,0.0424363,0.0459166, +-0.0359209,0.0390016,-0.0382114,-0.0454784,0.0420952,0.0454787, +-0.0356379,0.0386406,-0.0378473,-0.0450434,0.041755,0.0450438, +-0.0353552,0.0382812,-0.037486,-0.0446116,0.0414154,0.044612, +-0.0350729,0.0379237,-0.0371272,-0.0441827,0.0410767,0.0441832, +-0.0347912,0.0375683,-0.0367708,-0.0437566,0.0407391,0.0437571, +-0.0345104,0.0372152,-0.0364166,-0.0433329,0.0404028,0.0433334, +-0.0342307,0.036864,-0.0360642,-0.0429116,0.0400676,0.0429121, +-0.0339517,0.0365147,-0.0357138,-0.0424926,0.0397332,0.0424932, +-0.0336733,0.0361669,-0.0353658,-0.0420764,0.0393996,0.042077, +-0.0333952,0.0358204,-0.0350202,-0.041663,0.0390665,0.0416637, +-0.0331173,0.0354752,-0.0346774,-0.0412528,0.0387341,0.0412535, +-0.0328398,0.0351314,-0.0343371,-0.0408455,0.0384026,0.0408462, +-0.0325628,0.0347892,-0.0339991,-0.0404409,0.0380723,0.0404416, +-0.0322867,0.0344489,-0.0336631,-0.0400387,0.0377433,0.0400394, +-0.0320116,0.0341106,-0.033329,-0.0396387,0.0374157,0.0396395, +-0.0317376,0.0337747,-0.0329967,-0.0392412,0.0370891,0.0392419, +-0.0314645,0.033441,-0.0326667,-0.0388462,0.0367634,0.038847, +-0.0311919,0.0331091,-0.0323392,-0.0384542,0.0364384,0.0384549, +-0.0309197,0.0327789,-0.0320142,-0.0380652,0.0361144,0.0380659, +-0.0306481,0.0324507,-0.0316917,-0.037679,0.0357915,0.0376798, +-0.0303774,0.0321246,-0.0313714,-0.0372955,0.0354701,0.0372963, +-0.0301077,0.0318008,-0.031053,-0.0369144,0.0351502,0.0369151, +-0.0298392,0.0314793,-0.0307363,-0.0365355,0.0348316,0.0365362, +-0.0295719,0.0311599,-0.0304216,-0.0361588,0.034514,0.0361596, +-0.0293054,0.0308423,-0.0301089,-0.0357848,0.0341972,0.0357855, +-0.0290395,0.0305262,-0.0297986,-0.0354136,0.0338813,0.0354143, +-0.0287739,0.0302114,-0.0294908,-0.0350453,0.0335667,0.035046, +-0.0285084,0.0298983,-0.0291854,-0.0346799,0.0332535,0.0346806, +-0.0282428,0.0295869,-0.028882,-0.034317,0.0329419,0.0343177, +-0.0279767,0.0292775,-0.0285806,-0.0339565,0.0326317,0.0339572, +-0.0277102,0.0289704,-0.0282808,-0.0335981,0.0323227,0.0335988, +-0.0274434,0.0286658,-0.0279828,-0.033242,0.0320148,0.0332426, +-0.0271765,0.0283635,-0.0276868,-0.0328883,0.0317078,0.0328889, +-0.02691,0.0280631,-0.0273932,-0.0325375,0.0314021,0.0325381, +-0.0266438,0.0277647,-0.027102,-0.0321895,0.0310978,0.0321901, +-0.0263779,0.0274682,-0.0268131,-0.0318443,0.0307951,0.0318449, +-0.0261121,0.0271741,-0.0265262,-0.0315016,0.0304939,0.0315022, +-0.0258462,0.0268824,-0.0262412,-0.0311612,0.0301941,0.0311617, +-0.0255807,0.0265929,-0.0259577,-0.0308228,0.0298953,0.0308233, +-0.0253157,0.0263055,-0.025676,-0.0304867,0.0295974,0.0304872, +-0.0250515,0.0260199,-0.0253963,-0.0301529,0.0293007,0.0301534, +-0.0247884,0.0257358,-0.0251188,-0.0298219,0.0290053,0.0298223, +-0.0245264,0.025453,-0.0248437,-0.0294937,0.0287116,0.0294942, +-0.0242655,0.0251718,-0.0245709,-0.0291682,0.0284196,0.0291687, +-0.0240055,0.0248924,-0.0243001,-0.0288452,0.0281293,0.0288456, +-0.0237461,0.024615,-0.024031,-0.0285243,0.0278402,0.0285247, +-0.0234876,0.0243398,-0.0237634,-0.0282055,0.0275522,0.0282059, +-0.0232302,0.0240672,-0.0234976,-0.0278888,0.0272653,0.0278891, +-0.0229743,0.0237968,-0.0232336,-0.0275744,0.0269797,0.0275747, +-0.02272,0.0235286,-0.0229719,-0.0272627,0.0266957,0.027263, +-0.0224675,0.0232623,-0.0227126,-0.0269537,0.0264134,0.026954, +-0.0222167,0.0229981,-0.0224554,-0.0266474,0.026133,0.0266477, +-0.0219673,0.0227362,-0.0222002,-0.0263434,0.0258541,0.0263437, +-0.021719,0.0224767,-0.0219467,-0.0260416,0.0255764,0.0260419, +-0.0214721,0.0222195,-0.0216947,-0.0257417,0.0252998,0.0257419, +-0.0212266,0.0219641,-0.0214443,-0.0254439,0.0250245,0.0254441, +-0.0209829,0.0217105,-0.0211958,-0.0251483,0.0247506,0.0251485, +-0.0207412,0.0214582,-0.0209495,-0.0248553,0.0244785,0.0248555, +-0.0205017,0.0212073,-0.0207055,-0.024565,0.0242082,0.0245652, +-0.0202642,0.0209579,-0.0204636,-0.0242773,0.0239397,0.0242774, +-0.0200285,0.0207101,-0.0202236,-0.0239919,0.0236727,0.023992, +-0.0197943,0.0204644,-0.0199853,-0.0237085,0.0234069,0.0237086, +-0.0195615,0.0202209,-0.0197485,-0.0234269,0.0231422,0.0234271, +-0.0193303,0.0199797,-0.0195132,-0.0231474,0.022879,0.0231475, +-0.019101,0.0197408,-0.0192798,-0.0228701,0.0226173,0.0228702, +-0.0188739,0.0195039,-0.0190485,-0.0225952,0.0223574,0.0225953, +-0.018649,0.0192687,-0.0188194,-0.022323,0.0220996,0.0223232, +-0.0184263,0.0190356,-0.0185925,-0.0220533,0.0218437,0.0220536, +-0.0182054,0.0188046,-0.0183674,-0.0217858,0.0215894,0.0217863, +-0.0179862,0.018576,-0.0181439,-0.0215203,0.0213364,0.0215211, +-0.0177685,0.0183496,-0.0179218,-0.0212566,0.0210846,0.0212579, +-0.0175523,0.0181251,-0.0177012,-0.0209948,0.0208343,0.0209966, +-0.0173379,0.0179024,-0.0174825,-0.0207351,0.0205857,0.0207374, +-0.0171257,0.0176811,-0.0172658,-0.0204779,0.020339,0.0204806, +-0.0169157,0.017461,-0.0170514,-0.0202233,0.0200944,0.0202264, +-0.0167078,0.0172425,-0.016839,-0.019971,0.0198518,0.0199747, +-0.0165017,0.0170256,-0.0166285,-0.019721,0.0196108,0.0197252, +-0.0162972,0.0168107,-0.0164195,-0.0194729,0.0193713,0.0194777, +-0.0160942,0.016598,-0.0162118,-0.0192264,0.0191331,0.0192319, +-0.0158925,0.0163875,-0.0160057,-0.0189819,0.0188963,0.0189879, +-0.0156926,0.0161791,-0.0158013,-0.0187394,0.0186613,0.018746, +-0.0154946,0.0159725,-0.0155989,-0.0184992,0.0184283,0.0185063, +-0.0152988,0.0157675,-0.0153987,-0.0182616,0.0181974,0.0182691, +-0.015105,0.0155643,-0.0152005,-0.0180263,0.0179685,0.0180344, +-0.0149128,0.0153631,-0.0150041,-0.0177932,0.0177413,0.017802, +-0.0147221,0.0151641,-0.0148092,-0.0175618,0.0175156,0.0175715, +-0.0145327,0.0149673,-0.0146155,-0.0173321,0.0172912,0.0173428, +-0.0143446,0.0147723,-0.0144233,-0.0171042,0.0170682,0.0171159, +-0.0141581,0.0145789,-0.0142329,-0.0168783,0.0168471,0.0168909, +-0.0139735,0.0143868,-0.0140444,-0.0166547,0.0166279,0.016668, +-0.0137909,0.014196,-0.013858,-0.0164335,0.0164108,0.0164475, +-0.0136102,0.0140065,-0.0136735,-0.0162146,0.0161958,0.0162293, +-0.013431,0.0138186,-0.0134908,-0.0159978,0.0159824,0.0160131, +-0.0132532,0.0136325,-0.0133095,-0.0157827,0.0157706,0.0157987, +-0.0130766,0.0134486,-0.0131295,-0.0155692,0.0155601,0.0155859, +-0.0129012,0.0132667,-0.0129509,-0.0153573,0.015351,0.0153747, +-0.0127273,0.0130867,-0.0127739,-0.0151474,0.0151437,0.0151653, +-0.0125551,0.0129082,-0.0125988,-0.0149397,0.0149383,0.014958, +-0.0123848,0.0127312,-0.0124257,-0.0147344,0.0147351,0.0147529, +-0.0122163,0.0125558,-0.0122545,-0.0145313,0.0145339,0.01455, +-0.0120493,0.0123822,-0.0120849,-0.0143301,0.0143344,0.014349, +-0.0118836,0.0122106,-0.0119167,-0.0141306,0.0141364,0.0141497, +-0.0117189,0.0120409,-0.0117497,-0.0139326,0.0139396,0.0139519, +-0.0115554,0.0118726,-0.011584,-0.0137361,0.0137443,0.0137555, +-0.0113933,0.0117057,-0.0114199,-0.0135415,0.0135508,0.0135609, +-0.0112329,0.0115399,-0.0112576,-0.0133491,0.0133591,0.0133683, +-0.0110743,0.011375,-0.0110972,-0.0131588,0.0131697,0.0131779, +-0.0109174,0.0112114,-0.0109386,-0.0129707,0.0129821,0.0129896, +-0.010762,0.0110493,-0.0107816,-0.0127844,0.0127963,0.0128031, +-0.0106077,0.0108889,-0.0106259,-0.0125997,0.0126119,0.0126181, +-0.0104544,0.0107305,-0.0104713,-0.0124164,0.0124288,0.0124345, +-0.0103023,0.0105739,-0.0103179,-0.0122346,0.0122471,0.0122523, +-0.0101516,0.0104189,-0.010166,-0.0120546,0.0120672,0.0120718, +-0.0100025,0.0102652,-0.0100158,-0.0118765,0.0118891,0.0118933, +-0.00985521,0.0101127,-0.00986752,-0.0117006,0.0117131,0.0117169, +-0.00970957,0.00996155,-0.00972097,-0.0115268,0.0115391,0.0115425, +-0.00956533,0.00981197,-0.0095759,-0.0113546,0.0113668,0.0113698, +-0.00942223,0.00966421,-0.00943205,-0.011184,0.0111959,0.0111986, +-0.00928008,0.00951823,-0.00928924,-0.0110147,0.0110262,0.0110287, +-0.00913904,0.0093738,-0.00914758,-0.0108468,0.0108579,0.0108602, +-0.00899936,0.00923065,-0.00900733,-0.0106805,0.0106913,0.0106933, +-0.00886128,0.00908854,-0.00886874,-0.0105162,0.0105266,0.0105284, +-0.00872497,0.00894743,-0.00873197,-0.0103539,0.0103639,0.0103655, +-0.00859027,0.00880755,-0.00859686,-0.0101936,0.0102031,0.0102046, +-0.00845693,0.00866915,-0.00846316,-0.010035,0.010044,0.0100453, +-0.00832469,0.00853248,-0.00833062,-0.00987772,0.00988631,0.0098875, +-0.00819337,0.00839763,-0.00819904,-0.00972169,0.0097298,0.00973087, +-0.00806312,0.00826439,-0.00806855,-0.00956702,0.00957464,0.00957561, +-0.0079342,0.00813253,-0.00793941,-0.00941394,0.00942109,0.00942196, +-0.00780684,0.00800179,-0.00781187,-0.00926271,0.00926939,0.00927017, +-0.00768122,0.00787206,-0.0076861,-0.0091135,0.00911972,0.00912041, +-0.00755718,0.00774355,-0.00756192,-0.00896613,0.00897191,0.00897252, +-0.00743446,0.00761651,-0.0074391,-0.00882036,0.0088257,0.00882624, +-0.0073128,0.00749118,-0.00731736,-0.00867594,0.00868084,0.00868133, +-0.00719204,0.00736758,-0.00719654,-0.00853267,0.00853715,0.00853759, +-0.00707231,0.00724548,-0.00707676,-0.00839069,0.00839476,0.00839515, +-0.00695387,0.00712462,-0.00695828,-0.00825023,0.00825392,0.00825427, +-0.00683697,0.00700476,-0.00684135,-0.00811157,0.00811488,0.0081152, +-0.00672178,0.00688587,-0.00672614,-0.00797485,0.00797783,0.0079781, +-0.00660812,0.0067682,-0.00661248,-0.00783992,0.00784259,0.00784284, +-0.00649576,0.00665199,-0.00650012,-0.00770653,0.00770892,0.00770914, +-0.00638444,0.00653749,-0.0063888,-0.00757442,0.00757657,0.00757676, +-0.00627396,0.00642467,-0.00627835,-0.0074434,0.00744533,0.0074455, +-0.00616448,0.0063133,-0.00616889,-0.0073136,0.00731533,0.00731548, +-0.00605625,0.00620313,-0.00606067,-0.00718528,0.00718681,0.00718695, +-0.00594951,0.00609395,-0.00595396,-0.00705869,0.00706004,0.00706016, +-0.00584443,0.00598576,-0.00584891,-0.006934,0.00693519,0.00693529, +-0.00574085,0.00587874,-0.00574536,-0.00681103,0.0068121,0.0068122, +-0.00563852,0.00577316,-0.00564305,-0.00668954,0.00669054,0.00669063, +-0.00553718,0.00566923,-0.00554174,-0.00656927,0.00657025,0.00657032, +-0.00543664,0.00556683,-0.00544124,-0.00645004,0.00645102,0.00645108, +-0.00533705,0.00546571,-0.00534168,-0.00633197,0.00633295,0.00633301, +-0.00523867,0.00536563,-0.00524332,-0.00621531,0.0062163,0.00621635, +-0.00514173,0.00526637,-0.00514641,-0.00610033,0.00610131,0.00610136, +-0.00504641,0.00516803,-0.00505112,-0.00598717,0.00598817,0.0059882, +-0.00495255,0.00507087,-0.00495728,-0.00587569,0.00587672,0.00587671, +-0.00485988,0.00497514,-0.00486464,-0.00576562,0.0057667,0.00576663, +-0.00476816,0.00488104,-0.00477295,-0.00565671,0.00565788,0.00565772, +-0.0046772,0.00478843,-0.00468201,-0.00554877,0.00555003,0.00554978, +-0.00458713,0.00469707,-0.00459196,-0.00544194,0.00544328,0.00544294, +-0.00449821,0.00460671,-0.00450306,-0.00533647,0.00533787,0.00533745, +-0.00441069,0.00451718,-0.00441555,-0.0052326,0.00523405,0.00523356, +-0.00432472,0.00442865,-0.0043296,-0.00513051,0.005132,0.00513145, +-0.00424016,0.00434137,-0.00424505,-0.00503003,0.00503155,0.00503097, +-0.00415674,0.00425557,-0.00416165,-0.0049309,0.00493244,0.00493187, +-0.00407421,0.00417128,-0.00407914,-0.00483288,0.00483442,0.00483389, +-0.00399239,0.00408826,-0.00399732,-0.00473576,0.0047373,0.00473683, +-0.00391139,0.00400624,-0.00391632,-0.00463969,0.00464121,0.00464079, +-0.00383148,0.00392499,-0.0038364,-0.0045449,0.00454639,0.00454603, +-0.00375291,0.00384441,-0.00375781,-0.00445165,0.0044531,0.00445279, +-0.00367583,0.00376471,-0.0036807,-0.0043601,0.00436151,0.00436125, +-0.0036001,0.00368614,-0.00360493,-0.0042701,0.00427145,0.00427122, +-0.00352544,0.00360895,-0.00353022,-0.00418139,0.00418267,0.00418248, +-0.00345162,0.00353324,-0.00345634,-0.00409371,0.00409492,0.00409475, +-0.00337843,0.00345879,-0.0033831,-0.00400687,0.004008,0.00400785, +-0.003306,0.00338538,-0.00331062,-0.00392098,0.00392204,0.00392191, +-0.00323458,0.00331278,-0.00323917,-0.00383631,0.00383729,0.00383718, +-0.00316443,0.00324085,-0.00316899,-0.0037531,0.003754,0.0037539, +-0.0030957,0.00316977,-0.00310026,-0.00367152,0.00367235,0.00367227, +-0.00302824,0.0030998,-0.0030328,-0.00359139,0.00359219,0.00359212, +-0.00296179,0.00303118,-0.00296636,-0.00351248,0.00351326,0.00351321, +-0.0028961,0.00296395,-0.00290069,-0.00343453,0.00343532,0.00343527, +-0.00283098,0.00289788,-0.0028356,-0.00335734,0.00335815,0.00335811, +-0.00276656,0.00283271,-0.00277122,-0.00328103,0.00328187,0.00328183, +-0.00270311,0.00276819,-0.00270779,-0.00320585,0.00320671,0.00320668, +-0.00264086,0.00270429,-0.00264557,-0.00313205,0.00313294,0.00313291, +-0.00257999,0.00264122,-0.00258473,-0.00305981,0.00306071,0.00306069, +-0.00252032,0.00257925,-0.00252509,-0.00298895,0.00298987,0.00298985, +-0.00246162,0.00251861,-0.00246641,-0.00291922,0.00292016,0.00292015, +-0.00240362,0.00245931,-0.00240844,-0.00285038,0.00285133,0.00285132, +-0.00234614,0.00240112,-0.00235098,-0.00278222,0.00278319,0.00278318, +-0.00228931,0.00234378,-0.00229418,-0.00271489,0.00271585,0.00271584, +-0.00223339,0.00228707,-0.00223828,-0.00264863,0.00264958,0.00264957, +-0.00217862,0.00223093,-0.00218353,-0.00258369,0.00258462,0.00258461, +-0.00212518,0.0021756,-0.0021301,-0.00252025,0.00252114,0.00252113, +-0.0020729,0.00212132,-0.00207783,-0.00245813,0.00245898,0.00245897, +-0.00202152,0.00206831,-0.00202646,-0.00239709,0.00239787,0.00239787, +-0.00197079,0.00201649,-0.00197575,-0.00233687,0.00233758,0.00233758, +-0.00192052,0.00196562,-0.00192549,-0.00227727,0.0022779,0.0022779, +-0.00187083,0.00191543,-0.0018758,-0.00221841,0.00221897,0.00221897, +-0.00182197,0.00186571,-0.00182694,-0.00216053,0.00216103,0.00216103, +-0.00177418,0.00181653,-0.00177916,-0.00210391,0.00210434,0.00210434, +-0.00172765,0.00176816,-0.00173263,-0.00204869,0.00204906,0.00204906, +-0.00168219,0.00172083,-0.00168718,-0.00199471,0.00199503,0.00199503, +-0.00163756,0.00167476,-0.00164256,-0.00194172,0.00194199,0.00194199, +-0.00159351,0.00162985,-0.00159851,-0.00188947,0.00188971,0.00188971, +-0.00154986,0.00158585,-0.00155485,-0.00183777,0.00183796,0.00183796, +-0.00150674,0.00154253,-0.00151171,-0.00178673,0.00178689,0.00178689, +-0.00146441,0.00149968,-0.00146935,-0.0017366,0.00173674,0.00173674, +-0.00142312,0.00145733,-0.00142801,-0.00168765,0.00168776,0.00168776, +-0.00138305,0.00141574,-0.00138788,-0.00164003,0.00164011,0.00164011, +-0.00134401,0.00137515,-0.00134876,-0.00159358,0.00159364,0.00159364, +-0.00130577,0.00133572,-0.00131043,-0.00154804,0.00154809,0.00154809, +-0.00126806,0.00129728,-0.00127262,-0.00150317,0.00150322,0.00150322, +-0.00123069,0.00125957,-0.00123514,-0.00145877,0.00145881,0.00145881, +-0.00119377,0.00122235,-0.00119813,-0.00141497,0.001415,0.001415, +-0.00115756,0.00118546,-0.00116184,-0.00137203,0.00137205,0.00137205, +-0.00112231,0.00114907,-0.00112652,-0.00133018,0.0013302,0.0013302, +-0.00108818,0.00111343,-0.00109233,-0.00128961,0.00128963,0.00128963, +-0.00105501,0.0010788,-0.00105912,-0.00125014,0.00125015,0.00125015, +-0.00102255,0.0010453,-0.00102662,-0.00121152,0.00121153,0.00121153, +-0.000990535,0.00101273,-0.000994598,-0.0011735,0.00117351,0.00117351, +-0.000958791,0.000980844,-0.000962845,-0.00113589,0.0011359,0.0011359, +-0.000927457,0.000949424,-0.000931504,-0.0010988,0.00109881,0.00109881, +-0.000896785,0.000918326,-0.000900824,-0.0010625,0.0010625,0.0010625, +-0.000867025,0.000887692,-0.000871058,-0.00102722,0.00102723,0.00102723, +-0.000838344,0.000857773,-0.000842372,-0.00099315,0.000993168,0.000993152, +-0.000810577,0.000828819,-0.0008146,-0.000960107,0.000960173,0.000960108, +-0.000783471,0.000800893,-0.000787489,-0.000927844,0.000927992,0.000927845, +-0.000756775,0.000773769,-0.000760789,-0.000896111,0.000896375,0.000896111, +-0.000730291,0.000747196,-0.00073431,-0.000864708,0.000865105,0.000864708, +-0.000704147,0.000720925,-0.000708192,-0.000833761,0.00083428,0.000833762, +-0.000678594,0.000694889,-0.000682687,-0.000803523,0.000804149,0.000803523, +-0.000653883,0.000669311,-0.000658046,-0.000774243,0.000774964,0.000774244, +-0.000630265,0.000644444,-0.000634518,-0.00074609,0.000746891,0.000746109, +-0.000607853,0.000620531,-0.0006122,-0.000718896,0.000719764,0.000718972, +-0.000586441,0.000597597,-0.000590877,-0.00069241,0.000693331,0.000692583, +-0.000565778,0.000575407,-0.000570299,-0.00066638,0.000667341,0.000666689, +-0.000545612,0.000553709,-0.000550213,-0.000640618,0.000641599,0.000641074, +-0.000525693,0.000532257,-0.000530368,-0.000615266,0.000616238,0.000615828, +-0.000505856,0.000511,-0.0005106,-0.000590573,0.00059151,0.0005912, +-0.000486272,0.000490169,-0.000491077,-0.000566792,0.000567665,0.000567441, +-0.000467193,0.000470016,-0.00047205,-0.000544091,0.000544881,0.000544729, +-0.000448845,0.000450775,-0.000453746,-0.000522301,0.000523002,0.000522903, +-0.000431168,0.000432419,-0.000436101,-0.000501171,0.000501775,0.000501714, +-0.000413915,0.000414702,-0.00041887,-0.00048045,0.00048095,0.000480909, +-0.000396836,0.000397373,-0.000401801,-0.000459924,0.000460318,0.000460286, +-0.000379776,0.000380193,-0.000384748,-0.000439686,0.000439987,0.000439962, +-0.000362852,0.000363168,-0.000367831,-0.000419986,0.000420206,0.000420188, +-0.00034631,0.000346538,-0.000351294,-0.000401075,0.000401227,0.000401215, +-0.000330401,0.000330556,-0.00033539,-0.000383121,0.000383218,0.00038321, +-0.000315342,0.000315439,-0.000320336,-0.000365957,0.000366013,0.000366008, +-0.000301046,0.0003011,-0.000306042,-0.00034933,0.00034936,0.000349357, +-0.000287262,0.000287288,-0.00029226,-0.000332991,0.000333008,0.000333006, +-0.00027374,0.000273753,-0.000278739,-0.000316754,0.000316767,0.000316766, +-0.000260265,0.000260302,-0.000265264,-0.00030077,0.000300779,0.000300779, +-0.000246934,0.000246996,-0.000251933,-0.000285289,0.000285295,0.000285295, +-0.000233998,0.000234073,-0.000238997,-0.000270562,0.000270566,0.000270566, +-0.000221708,0.000221787,-0.000226707,-0.000256757,0.00025676,0.000256759, +-0.000210245,0.00021032,-0.000215221,-0.000243707,0.000243708,0.000243708, +-0.000199458,0.000199527,-0.000204363,-0.00023116,0.00023116,0.00023116, +-0.000189095,0.000189155,-0.000193882,-0.000218865,0.000218865,0.000218865, +-0.000178908,0.000178955,-0.000183532,-0.000206625,0.000206625,0.000206625, +-0.000168739,0.000168774,-0.000173196,-0.00019457,0.00019457,0.00019457, +-0.000158699,0.000158723,-0.000163013,-0.000182951,0.000182951,0.000182951, +-0.000149035,0.00014905,-0.000153233,-0.000172019,0.000172019,0.000172019, +-0.000139996,0.000140005,-0.000144105,-0.000161941,0.000161959,0.000161941, +-0.000131727,0.00013173,-0.00013577,-0.000152551,0.000152624,0.000152551, +-0.000124037,0.000124037,-0.00012804,-0.000143596,0.000143762,0.000143596, +-0.000116677,0.000116676,-0.000120663,-0.000134826,0.000135123,0.000134826, +-0.000109408,0.000109407,-0.000113396,-0.000126034,0.000126514,0.000126034, +-0.000102141,0.00010214,-0.000106132,-0.000117331,0.00011798,0.000117331, +-9.4958e-05,9.49576e-05,-9.89525e-05,-0.000108967,0.000109752,0.000108967, +-8.80937e-05,8.80934e-05,-9.20905e-05,-0.000101194,0.000102082,0.000101194, +-8.17973e-05,8.17971e-05,-8.57957e-05,-9.41792e-05,9.51367e-05,9.41792e-05, +-7.61479e-05,7.61478e-05,-8.01475e-05,-8.77551e-05,8.87491e-05,8.77551e-05, +-7.0925e-05,7.09249e-05,-7.49251e-05,-8.16705e-05,8.26679e-05,8.16705e-05, +-6.58784e-05,6.58784e-05,-6.98787e-05,-7.56743e-05,7.66425e-05,7.56743e-05, +-6.08461e-05,6.0846e-05,-6.48463e-05,-6.95866e-05,7.05541e-05,6.95866e-05, +-5.58154e-05,5.58154e-05,-5.98155e-05,-6.35614e-05,6.45413e-05,6.35614e-05, +-5.08821e-05,5.08821e-05,-5.48822e-05,-5.78499e-05,5.88392e-05,5.78499e-05, +-4.62854e-05,4.62854e-05,-5.02854e-05,-5.27032e-05,5.36991e-05,5.27032e-05, +-4.22673e-05,4.22673e-05,-4.62672e-05,-4.82915e-05,4.92883e-05,4.82915e-05, +-3.88356e-05,3.88356e-05,-4.28356e-05,-4.44499e-05,4.54394e-05,4.44499e-05, +-3.57511e-05,3.57511e-05,-3.97511e-05,-4.09272e-05,4.19013e-05,4.09272e-05, +-3.27724e-05,3.27724e-05,-3.67724e-05,-3.74886e-05,3.84226e-05,3.74886e-05, +-2.97961e-05,2.97961e-05,-3.37961e-05,-3.40508e-05,3.47813e-05,3.40508e-05, +-2.68285e-05,2.68285e-05,-3.08285e-05,-3.06255e-05,3.10522e-05,3.06255e-05, +-2.38834e-05,2.38834e-05,-2.78834e-05,-2.72927e-05,2.74844e-05,2.72927e-05, +-2.11357e-05,2.11357e-05,-2.51357e-05,-2.42852e-05,2.4329e-05,2.42852e-05, +-1.88106e-05,1.88249e-05,-2.28249e-05,-2.17704e-05,2.17535e-05,2.17704e-05, +-1.68439e-05,1.69463e-05,-2.09463e-05,-1.95809e-05,1.95904e-05,1.95809e-05, +-1.49948e-05,1.52592e-05,-1.92592e-05,-1.74655e-05,1.75886e-05,1.74655e-05, +-1.31492e-05,1.35904e-05,-1.75904e-05,-1.52511e-05,1.54972e-05,1.52511e-05, +-1.13036e-05,1.19217e-05,-1.59217e-05,-1.30195e-05,1.3198e-05,1.30195e-05, +-9.45902e-06,1.02529e-05,-1.42529e-05,-1.08122e-05,1.08944e-05,1.08122e-05, +-7.70326e-06,8.62974e-06,-1.26297e-05,-8.81493e-06,8.83762e-06,8.81493e-06, +-6.27286e-06,7.26503e-06,-1.1265e-05,-7.27866e-06,7.27884e-06,7.27866e-06, +-5.34434e-06,6.33234e-06,-1.03575e-05,-6.3709e-06,6.38548e-06,6.3709e-06, +-4.75986e-06,5.67073e-06,-9.78095e-06,-5.92411e-06,5.99015e-06,5.92411e-06, +-4.27877e-06,5.06168e-06,-9.29756e-06,-5.68712e-06,5.84162e-06,5.68712e-06, +-3.79981e-06,4.45266e-06,-8.81556e-06,-5.40871e-06,5.68866e-06,5.40871e-06, +-3.32083e-06,3.84363e-06,-8.33351e-06,-4.84857e-06,5.28011e-06,4.84857e-06, +-2.84184e-06,3.23459e-06,-7.85147e-06,-4.00884e-06,4.45082e-06,4.00884e-06, +-2.36285e-06,2.62556e-06,-7.36943e-06,-3.10521e-06,3.37053e-06,3.10521e-06, +-1.88386e-06,2.01652e-06,-6.88738e-06,-2.20908e-06,2.29044e-06,2.20908e-06, +-1.36386e-06,1.38536e-06,-6.3644e-06,-1.43786e-06,1.4373e-06,1.43786e-06, +-7.40598e-07,7.44797e-07,-5.74057e-06,-7.60036e-07,7.56919e-07,7.60036e-07, +-2.24576e-07,2.24658e-07,-5.2246e-06,-2.24809e-07,2.24795e-07,2.24809e-07, +-1.77625e-08,1.7769e-08,-5.01778e-06,-1.77381e-08,1.77482e-08,1.77381e-08, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, +1.63551e-19,7.60752e-19,-5e-06,-2.64238e-24,-1.68348e-17,2.64238e-24, diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/recordFinal.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/recordFinal.offt new file mode 100644 index 00000000..ae772aeb --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/recordFinal.offt @@ -0,0 +1,43769 @@ +0.000000,0.000010,0.000000,0.000001,0.000002,0.000000 +0.000000,0.000010,0.000000,0.000001,0.000002,0.000000 +0.000001,0.000011,-0.000001,-0.000000,0.000000,-0.000001 +0.000007,0.000016,-0.000007,-0.000007,-0.000006,-0.000008 +0.000020,0.000029,-0.000020,-0.000022,-0.000022,-0.000024 +0.000044,0.000053,-0.000044,-0.000051,-0.000051,-0.000052 +0.000082,0.000091,-0.000081,-0.000096,-0.000096,-0.000098 +0.000137,0.000146,-0.000137,-0.000162,-0.000162,-0.000164 +0.000212,0.000222,-0.000212,-0.000253,-0.000253,-0.000254 +0.000312,0.000321,-0.000312,-0.000372,-0.000372,-0.000373 +0.000438,0.000448,-0.000438,-0.000524,-0.000523,-0.000525 +0.000595,0.000604,-0.000592,-0.000711,-0.000711,-0.000712 +0.000785,0.000794,-0.000772,-0.000939,-0.000939,-0.000940 +0.001012,0.001021,-0.000974,-0.001211,-0.001210,-0.001212 +0.001279,0.001288,-0.001194,-0.001531,-0.001530,-0.001532 +0.001589,0.001598,-0.001429,-0.001902,-0.001902,-0.001903 +0.001945,0.001955,-0.001677,-0.002329,-0.002329,-0.002331 +0.002352,0.002361,-0.001934,-0.002816,-0.002816,-0.002817 +0.002811,0.002821,-0.002197,-0.003366,-0.003366,-0.003368 +0.003327,0.003336,-0.002462,-0.003984,-0.003984,-0.003985 +0.003902,0.003911,-0.002727,-0.004673,-0.004672,-0.004674 +0.004539,0.004549,-0.002992,-0.005437,-0.005436,-0.005438 +0.005243,0.005252,-0.003258,-0.006280,-0.006279,-0.006281 +0.006016,0.006025,-0.003523,-0.007206,-0.007205,-0.007207 +0.006861,0.006871,-0.003788,-0.008218,-0.008218,-0.008219 +0.007782,0.007791,-0.004053,-0.009322,-0.009321,-0.009323 +0.008782,0.008791,-0.004319,-0.010519,-0.010519,-0.010521 +0.009864,0.009873,-0.004584,-0.011816,-0.011815,-0.011817 +0.011031,0.011041,-0.004849,-0.013215,-0.013214,-0.013216 +0.012288,0.012297,-0.005115,-0.014719,-0.014719,-0.014721 +0.013636,0.013645,-0.005380,-0.016334,-0.016334,-0.016336 +0.015079,0.015088,-0.005645,-0.018059,-0.018063,-0.018065 +0.016621,0.016630,-0.005910,-0.019890,-0.019910,-0.019912 +0.018264,0.018273,-0.006176,-0.021824,-0.021879,-0.021880 +0.020012,0.020022,-0.006441,-0.023856,-0.023973,-0.023975 +0.021868,0.021878,-0.006706,-0.025983,-0.026197,-0.026199 +0.023836,0.023846,-0.006972,-0.028200,-0.028554,-0.028556 +0.025919,0.025927,-0.007237,-0.030504,-0.031049,-0.031051 +0.028119,0.028119,-0.007502,-0.032891,-0.033685,-0.033687 +0.030440,0.030419,-0.007767,-0.035358,-0.036466,-0.036468 +0.032886,0.032823,-0.008033,-0.037899,-0.039396,-0.039398 +0.035459,0.035329,-0.008298,-0.040512,-0.042479,-0.042481 +0.038163,0.037933,-0.008563,-0.043192,-0.045719,-0.045720 +0.041002,0.040631,-0.008829,-0.045935,-0.049119,-0.049119 +0.043977,0.043421,-0.009094,-0.048739,-0.052684,-0.052675 +0.047094,0.046299,-0.009359,-0.051598,-0.056417,-0.056382 +0.050354,0.049263,-0.009624,-0.054509,-0.060323,-0.060239 +0.053761,0.052308,-0.009890,-0.057467,-0.064405,-0.064240 +0.057319,0.055432,-0.010155,-0.060470,-0.068664,-0.068382 +0.061030,0.058631,-0.010420,-0.063513,-0.073095,-0.072661 +0.064897,0.061902,-0.010686,-0.066593,-0.077697,-0.077073 +0.068926,0.065242,-0.010951,-0.069704,-0.082463,-0.081614 +0.073117,0.068648,-0.011216,-0.072845,-0.087391,-0.086281 +0.077475,0.072115,-0.011481,-0.076009,-0.092477,-0.091069 +0.082002,0.075642,-0.011747,-0.079195,-0.097717,-0.095974 +0.086703,0.079225,-0.012012,-0.082398,-0.103106,-0.100993 +0.091580,0.082861,-0.012277,-0.085613,-0.108642,-0.106122 +0.096637,0.086545,-0.012543,-0.088838,-0.114320,-0.111357 +0.101876,0.090276,-0.012808,-0.092067,-0.120136,-0.116694 +0.107302,0.094050,-0.013073,-0.095298,-0.126086,-0.122128 +0.112916,0.097863,-0.013338,-0.098530,-0.132167,-0.127657 +0.118723,0.101713,-0.013604,-0.101761,-0.138374,-0.133277 +0.124726,0.105596,-0.013869,-0.104992,-0.144704,-0.138982 +0.130928,0.109509,-0.014134,-0.108223,-0.151153,-0.144770 +0.137333,0.113448,-0.014399,-0.111455,-0.157716,-0.150637 +0.143941,0.117411,-0.014665,-0.114686,-0.164391,-0.156579 +0.150751,0.121394,-0.014930,-0.117917,-0.171173,-0.162591 +0.157760,0.125394,-0.015195,-0.121148,-0.178058,-0.168671 +0.164964,0.129407,-0.015461,-0.124380,-0.185042,-0.174813 +0.172360,0.133431,-0.015726,-0.127611,-0.192122,-0.181015 +0.179945,0.137462,-0.015991,-0.130842,-0.199293,-0.187272 +0.187715,0.141497,-0.016256,-0.134073,-0.206553,-0.193581 +0.195668,0.145533,-0.016522,-0.137305,-0.213896,-0.199937 +0.203799,0.149569,-0.016787,-0.140536,-0.221318,-0.206336 +0.212107,0.153604,-0.017052,-0.143767,-0.228817,-0.212776 +0.220587,0.157640,-0.017318,-0.146998,-0.236388,-0.219251 +0.229236,0.161676,-0.017583,-0.150229,-0.244027,-0.225758 +0.238052,0.165712,-0.017848,-0.153461,-0.251731,-0.232294 +0.247030,0.169748,-0.018113,-0.156692,-0.259495,-0.238853 +0.256168,0.173784,-0.018379,-0.159923,-0.267316,-0.245433 +0.265462,0.177820,-0.018644,-0.163154,-0.275189,-0.252030 +0.274909,0.181856,-0.018909,-0.166386,-0.283111,-0.258638 +0.284506,0.185892,-0.019175,-0.169617,-0.291078,-0.265256 +0.294250,0.189927,-0.019440,-0.172848,-0.299086,-0.271878 +0.304137,0.193963,-0.019705,-0.176079,-0.307132,-0.278502 +0.314164,0.197999,-0.019970,-0.179311,-0.315210,-0.285125 +0.324328,0.202035,-0.020236,-0.182542,-0.323318,-0.291749 +0.334626,0.206071,-0.020501,-0.185773,-0.331451,-0.298372 +0.345054,0.210107,-0.020766,-0.189004,-0.339606,-0.304996 +0.355609,0.214143,-0.021031,-0.192236,-0.347779,-0.311619 +0.366288,0.218179,-0.021297,-0.195467,-0.355965,-0.318243 +0.377088,0.222215,-0.021562,-0.198698,-0.364161,-0.324866 +0.388005,0.226250,-0.021827,-0.201929,-0.372364,-0.331490 +0.399036,0.230286,-0.022093,-0.205160,-0.380568,-0.338113 +0.410178,0.234322,-0.022358,-0.208392,-0.388773,-0.344737 +0.421428,0.238358,-0.022623,-0.211623,-0.396978,-0.351360 +0.432782,0.242394,-0.022888,-0.214854,-0.405183,-0.357984 +0.444237,0.246430,-0.023154,-0.218085,-0.413387,-0.364607 +0.455790,0.250466,-0.023419,-0.221317,-0.421592,-0.371231 +0.467438,0.254502,-0.023684,-0.224548,-0.429797,-0.377854 +0.479177,0.258537,-0.023949,-0.227779,-0.438001,-0.384478 +0.491005,0.262573,-0.024215,-0.231010,-0.446206,-0.391101 +0.502917,0.266609,-0.024480,-0.234242,-0.454411,-0.397725 +0.514911,0.270645,-0.024745,-0.237473,-0.462615,-0.404348 +0.526984,0.274681,-0.025011,-0.240704,-0.470820,-0.410972 +0.539131,0.278717,-0.025276,-0.243935,-0.479025,-0.417595 +0.551351,0.282753,-0.025541,-0.247166,-0.487230,-0.424219 +0.563639,0.286789,-0.025807,-0.250398,-0.495434,-0.430842 +0.575993,0.290825,-0.026072,-0.253629,-0.503639,-0.437466 +0.588409,0.294860,-0.026337,-0.256860,-0.511844,-0.444089 +0.600884,0.298896,-0.026602,-0.260091,-0.520048,-0.450713 +0.613415,0.302932,-0.026868,-0.263323,-0.528253,-0.457336 +0.625998,0.306968,-0.027133,-0.266554,-0.536458,-0.463960 +0.638631,0.311004,-0.027398,-0.269785,-0.544662,-0.470583 +0.651309,0.315040,-0.027663,-0.273016,-0.552867,-0.477207 +0.664030,0.319076,-0.027929,-0.276248,-0.561072,-0.483830 +0.676791,0.323112,-0.028194,-0.279479,-0.569277,-0.490454 +0.689588,0.327147,-0.028459,-0.282710,-0.577481,-0.497077 +0.702418,0.331183,-0.028725,-0.285941,-0.585686,-0.503700 +0.715277,0.335219,-0.028990,-0.289172,-0.593891,-0.510324 +0.728164,0.339255,-0.029255,-0.292404,-0.602095,-0.516947 +0.741073,0.343291,-0.029520,-0.295635,-0.610300,-0.523571 +0.754002,0.347327,-0.029786,-0.298866,-0.618505,-0.530194 +0.766949,0.351363,-0.030051,-0.302097,-0.626709,-0.536818 +0.779909,0.355399,-0.030316,-0.305329,-0.634914,-0.543441 +0.792879,0.359435,-0.030582,-0.308560,-0.643119,-0.550065 +0.805856,0.363470,-0.030847,-0.311791,-0.651324,-0.556688 +0.818837,0.367506,-0.031112,-0.315022,-0.659528,-0.563312 +0.831818,0.371542,-0.031377,-0.318254,-0.667733,-0.569935 +0.844800,0.375578,-0.031643,-0.321485,-0.675938,-0.576559 +0.857782,0.379614,-0.031908,-0.324716,-0.684142,-0.583182 +0.870764,0.383650,-0.032173,-0.327947,-0.692347,-0.589806 +0.883746,0.387686,-0.032439,-0.331179,-0.700552,-0.596429 +0.896727,0.391722,-0.032704,-0.334410,-0.708757,-0.603053 +0.909709,0.395758,-0.032969,-0.337641,-0.716961,-0.609676 +0.922691,0.399793,-0.033234,-0.340872,-0.725166,-0.616300 +0.935673,0.403829,-0.033500,-0.344103,-0.733371,-0.622923 +0.948655,0.407865,-0.033765,-0.347335,-0.741575,-0.629547 +0.961636,0.411901,-0.034030,-0.350566,-0.749780,-0.636170 +0.974618,0.415937,-0.034295,-0.353797,-0.757985,-0.642794 +0.987600,0.419973,-0.034561,-0.357028,-0.766189,-0.649417 +1.000580,0.424009,-0.034826,-0.360260,-0.774394,-0.656041 +1.013560,0.428045,-0.035091,-0.363491,-0.782599,-0.662664 +1.026550,0.432080,-0.035356,-0.366722,-0.790804,-0.669288 +1.039530,0.436116,-0.035622,-0.369953,-0.799008,-0.675911 +1.052510,0.440152,-0.035887,-0.373185,-0.807213,-0.682535 +1.065490,0.444188,-0.036152,-0.376416,-0.815418,-0.689158 +1.078470,0.448224,-0.036418,-0.379647,-0.823622,-0.695782 +1.091450,0.452260,-0.036683,-0.382878,-0.831827,-0.702405 +1.104440,0.456296,-0.036948,-0.386109,-0.840032,-0.709029 +1.117420,0.460332,-0.037213,-0.389341,-0.848236,-0.715652 +1.130400,0.464368,-0.037479,-0.392572,-0.856441,-0.722276 +1.143380,0.468403,-0.037744,-0.395803,-0.864646,-0.728899 +1.156350,0.472439,-0.038009,-0.399034,-0.872851,-0.735523 +1.169320,0.476475,-0.038275,-0.402266,-0.881055,-0.742146 +1.182270,0.480511,-0.038540,-0.405497,-0.889260,-0.748770 +1.195210,0.484547,-0.038805,-0.408728,-0.897465,-0.755393 +1.208130,0.488583,-0.039071,-0.411959,-0.905669,-0.762017 +1.221030,0.492619,-0.039336,-0.415191,-0.913874,-0.768640 +1.233910,0.496655,-0.039601,-0.418422,-0.922079,-0.775264 +1.246760,0.500691,-0.039866,-0.421653,-0.930283,-0.781887 +1.259570,0.504726,-0.040132,-0.424884,-0.938484,-0.788509 +1.272350,0.508762,-0.040397,-0.428116,-0.946677,-0.795126 +1.285100,0.512798,-0.040662,-0.431350,-0.954859,-0.801734 +1.297800,0.516834,-0.040927,-0.434590,-0.963025,-0.808328 +1.310460,0.520870,-0.041193,-0.437841,-0.971173,-0.814906 +1.323070,0.524906,-0.041458,-0.441106,-0.979297,-0.821463 +1.335630,0.528942,-0.041723,-0.444389,-0.987395,-0.827996 +1.348140,0.532978,-0.041988,-0.447695,-0.995461,-0.834500 +1.360580,0.537013,-0.042254,-0.451026,-1.003490,-0.840971 +1.372970,0.541049,-0.042519,-0.454387,-1.011490,-0.847406 +1.385300,0.545085,-0.042784,-0.457782,-1.019440,-0.853801 +1.397560,0.549121,-0.043050,-0.461214,-1.027340,-0.860152 +1.409750,0.553157,-0.043315,-0.464688,-1.035200,-0.866455 +1.421860,0.557193,-0.043580,-0.468207,-1.043000,-0.872706 +1.433900,0.561229,-0.043846,-0.471775,-1.050740,-0.878902 +1.445860,0.565265,-0.044111,-0.475397,-1.058420,-0.885038 +1.457730,0.569301,-0.044376,-0.479075,-1.066040,-0.891110 +1.469520,0.573336,-0.044641,-0.482815,-1.073580,-0.897115 +1.481220,0.577372,-0.044907,-0.486619,-1.081050,-0.903048 +1.492830,0.581408,-0.045172,-0.490492,-1.088450,-0.908906 +1.504340,0.585444,-0.045437,-0.494437,-1.095760,-0.914686 +1.515750,0.589480,-0.045703,-0.498459,-1.102990,-0.920382 +1.527060,0.593516,-0.045968,-0.502561,-1.110120,-0.925991 +1.538260,0.597552,-0.046233,-0.506748,-1.117170,-0.931510 +1.549350,0.601588,-0.046498,-0.511022,-1.124120,-0.936934 +1.560330,0.605623,-0.046764,-0.515389,-1.130970,-0.942260 +1.571200,0.609659,-0.047029,-0.519852,-1.137710,-0.947483 +1.581950,0.613695,-0.047294,-0.524414,-1.144340,-0.952600 +1.592570,0.617731,-0.047559,-0.529080,-1.150870,-0.957606 +1.603070,0.621767,-0.047825,-0.533853,-1.157270,-0.962499 +1.613440,0.625803,-0.048090,-0.538738,-1.163560,-0.967274 +1.623680,0.629839,-0.048355,-0.543739,-1.169720,-0.971927 +1.633780,0.633875,-0.048620,-0.548858,-1.175750,-0.976454 +1.643750,0.637911,-0.048886,-0.554101,-1.181650,-0.980851 +1.653570,0.641946,-0.049150,-0.559471,-1.187420,-0.985115 +1.663250,0.645982,-0.049411,-0.564971,-1.193050,-0.989242 +1.672780,0.650018,-0.049664,-0.570607,-1.198530,-0.993227 +1.682160,0.654054,-0.049907,-0.576381,-1.203860,-0.997067 +1.691390,0.658090,-0.050136,-0.582297,-1.209050,-1.000760 +1.700460,0.662126,-0.050349,-0.588361,-1.214080,-1.004300 +1.709360,0.666162,-0.050541,-0.594574,-1.218950,-1.007680 +1.718110,0.670198,-0.050710,-0.600942,-1.223650,-1.010900 +1.726680,0.674234,-0.050853,-0.607467,-1.228190,-1.013950 +1.735090,0.678269,-0.050965,-0.614155,-1.232560,-1.016840 +1.743320,0.682305,-0.051045,-0.621006,-1.236760,-1.019560 +1.751370,0.686341,-0.051088,-0.628016,-1.240770,-1.022100 +1.759240,0.690377,-0.051092,-0.635183,-1.244610,-1.024450 +1.766930,0.694413,-0.051052,-0.642501,-1.248250,-1.026630 +1.774440,0.698449,-0.050967,-0.649967,-1.251710,-1.028620 +1.781760,0.702485,-0.050833,-0.657578,-1.254970,-1.030410 +1.788910,0.706521,-0.050645,-0.665329,-1.258040,-1.032010 +1.795880,0.710556,-0.050402,-0.673216,-1.260900,-1.033430 +1.802690,0.714592,-0.050100,-0.681235,-1.263560,-1.034660 +1.809320,0.718628,-0.049736,-0.689384,-1.266030,-1.035720 +1.815790,0.722664,-0.049306,-0.697657,-1.268300,-1.036600 +1.822100,0.726700,-0.048807,-0.706050,-1.270390,-1.037300 +1.828260,0.730736,-0.048237,-0.714561,-1.272290,-1.037840 +1.834250,0.734772,-0.047591,-0.723185,-1.274010,-1.038220 +1.840100,0.738808,-0.046866,-0.731918,-1.275550,-1.038430 +1.845800,0.742844,-0.046060,-0.740756,-1.276920,-1.038490 +1.851350,0.746879,-0.045169,-0.749696,-1.278120,-1.038400 +1.856760,0.750915,-0.044189,-0.758733,-1.279150,-1.038160 +1.862040,0.754951,-0.043118,-0.767863,-1.280020,-1.037770 +1.867180,0.758987,-0.041952,-0.777084,-1.280740,-1.037240 +1.872190,0.763023,-0.040689,-0.786390,-1.281300,-1.036580 +1.877060,0.767059,-0.039323,-0.795778,-1.281710,-1.035780 +1.881820,0.771095,-0.037855,-0.805244,-1.281980,-1.034860 +1.886450,0.775131,-0.036287,-0.814785,-1.282100,-1.033810 +1.890960,0.779167,-0.034621,-0.824395,-1.282080,-1.032640 +1.895360,0.783202,-0.032861,-0.834073,-1.281940,-1.031350 +1.899640,0.787238,-0.031010,-0.843812,-1.281660,-1.029950 +1.903820,0.791274,-0.029072,-0.853610,-1.281250,-1.028440 +1.907890,0.795310,-0.027049,-0.863463,-1.280720,-1.026820 +1.911860,0.799346,-0.024946,-0.873367,-1.280070,-1.025100 +1.915720,0.803382,-0.022764,-0.883318,-1.279310,-1.023280 +1.919490,0.807416,-0.020508,-0.893312,-1.278440,-1.021370 +1.923170,0.811446,-0.018180,-0.903344,-1.277450,-1.019370 +1.926760,0.815468,-0.015785,-0.913413,-1.276370,-1.017290 +1.930270,0.819480,-0.013325,-0.923512,-1.275190,-1.015120 +1.933690,0.823477,-0.010803,-0.933640,-1.273910,-1.012870 +1.937030,0.827456,-0.008222,-0.943790,-1.272540,-1.010550 +1.940290,0.831415,-0.005587,-0.953961,-1.271080,-1.008160 +1.943480,0.835356,-0.002900,-0.964147,-1.269540,-1.005700 +1.946600,0.839281,-0.000164,-0.974345,-1.267910,-1.003180 +1.949650,0.843194,0.002617,-0.984552,-1.266220,-1.000600 +1.952640,0.847098,0.005441,-0.994762,-1.264450,-0.997960 +1.955570,0.850996,0.008303,-1.004970,-1.262610,-0.995273 +1.958440,0.854892,0.011201,-1.015180,-1.260710,-0.992538 +1.961260,0.858788,0.014131,-1.025380,-1.258740,-0.989761 +1.964030,0.862689,0.017091,-1.035570,-1.256720,-0.986944 +1.966750,0.866597,0.020076,-1.045740,-1.254650,-0.984091 +1.969423,0.870515,0.023084,-1.055896,-1.252530,-0.981207 +1.972059,0.874448,0.026113,-1.066032,-1.250363,-0.978293 +1.974653,0.878394,0.029161,-1.076145,-1.248150,-0.975351 +1.977205,0.882354,0.032228,-1.086233,-1.245892,-0.972381 +1.979715,0.886326,0.035312,-1.096297,-1.243589,-0.969383 +1.982183,0.890310,0.038414,-1.106337,-1.241240,-0.966356 +1.984609,0.894306,0.041533,-1.116351,-1.238846,-0.963300 +1.986991,0.898314,0.044669,-1.126340,-1.236406,-0.960216 +1.989330,0.902333,0.047820,-1.136302,-1.233920,-0.957103 +1.991626,0.906363,0.050988,-1.146239,-1.231388,-0.953960 +1.993878,0.910403,0.054170,-1.156148,-1.228810,-0.950789 +1.996085,0.914453,0.057367,-1.166031,-1.226186,-0.947588 +1.998248,0.918513,0.060578,-1.175885,-1.223516,-0.944358 +2.000366,0.922582,0.063803,-1.185712,-1.220799,-0.941098 +2.002439,0.926660,0.067040,-1.195511,-1.218036,-0.937808 +2.004466,0.930747,0.070291,-1.205280,-1.215227,-0.934489 +2.006447,0.934842,0.073553,-1.215020,-1.212371,-0.931139 +2.008383,0.938944,0.076828,-1.224731,-1.209468,-0.927760 +2.010272,0.943054,0.080113,-1.234411,-1.206518,-0.924350 +2.012114,0.947171,0.083409,-1.244062,-1.203521,-0.920910 +2.013909,0.951295,0.086715,-1.253681,-1.200478,-0.917439 +2.015657,0.955425,0.090031,-1.263269,-1.197387,-0.913938 +2.017357,0.959560,0.093356,-1.272825,-1.194250,-0.910406 +2.019010,0.963702,0.096689,-1.282349,-1.191065,-0.906844 +2.020614,0.967848,0.100031,-1.291841,-1.187833,-0.903250 +2.022170,0.972000,0.103381,-1.301300,-1.184554,-0.899625 +2.023677,0.976155,0.106737,-1.310725,-1.181228,-0.895970 +2.025135,0.980315,0.110101,-1.320117,-1.177854,-0.892283 +2.026544,0.984478,0.113470,-1.329475,-1.174433,-0.888564 +2.027903,0.988645,0.116845,-1.338799,-1.170964,-0.884815 +2.029212,0.992814,0.120225,-1.348087,-1.167448,-0.881034 +2.030472,0.996986,0.123610,-1.357341,-1.163885,-0.877221 +2.031681,1.001160,0.126999,-1.366558,-1.160274,-0.873376 +2.032839,1.005336,0.130392,-1.375740,-1.156616,-0.869500 +2.033946,1.009514,0.133787,-1.384885,-1.152910,-0.865592 +2.035003,1.013692,0.137186,-1.393994,-1.149156,-0.861652 +2.036008,1.017871,0.140586,-1.403065,-1.145355,-0.857680 +2.036961,1.022050,0.143988,-1.412099,-1.141506,-0.853676 +2.037863,1.026229,0.147391,-1.421095,-1.137610,-0.849640 +2.038712,1.030408,0.150795,-1.430052,-1.133666,-0.845572 +2.039509,1.034585,0.154199,-1.438971,-1.129675,-0.841471 +2.040254,1.038762,0.157603,-1.447851,-1.125636,-0.837338 +2.040946,1.042937,0.161005,-1.456691,-1.121549,-0.833173 +2.041584,1.047110,0.164406,-1.465492,-1.117415,-0.828975 +2.042170,1.051281,0.167805,-1.474252,-1.113233,-0.824745 +2.042702,1.055449,0.171202,-1.482972,-1.109004,-0.820482 +2.043180,1.059614,0.174596,-1.491651,-1.104728,-0.816186 +2.043605,1.063775,0.177986,-1.500288,-1.100404,-0.811858 +2.043975,1.067933,0.181372,-1.508884,-1.096032,-0.807497 +2.044291,1.072086,0.184754,-1.517438,-1.091613,-0.803104 +2.044553,1.076235,0.188131,-1.525950,-1.087147,-0.798677 +2.044760,1.080380,0.191503,-1.534418,-1.082634,-0.794218 +2.044912,1.084519,0.194868,-1.542844,-1.078073,-0.789726 +2.045009,1.088652,0.198227,-1.551226,-1.073466,-0.785201 +2.045051,1.092779,0.201579,-1.559565,-1.068811,-0.780644 +2.045037,1.096900,0.204924,-1.567859,-1.064109,-0.776053 +2.044967,1.101015,0.208261,-1.576109,-1.059360,-0.771429 +2.044842,1.105122,0.211589,-1.584314,-1.054564,-0.766773 +2.044661,1.109222,0.214908,-1.592474,-1.049722,-0.762084 +2.044424,1.113315,0.218218,-1.600588,-1.044832,-0.757361 +2.044130,1.117399,0.221517,-1.608656,-1.039896,-0.752606 +2.043780,1.121475,0.224807,-1.616679,-1.034914,-0.747817 +2.043373,1.125542,0.228085,-1.624654,-1.029885,-0.742996 +2.042910,1.129600,0.231352,-1.632583,-1.024809,-0.738142 +2.042389,1.133648,0.234607,-1.640465,-1.019687,-0.733255 +2.041812,1.137687,0.237849,-1.648299,-1.014519,-0.728334 +2.041177,1.141716,0.241079,-1.656085,-1.009305,-0.723381 +2.040485,1.145734,0.244295,-1.663823,-1.004045,-0.718395 +2.039735,1.149741,0.247497,-1.671512,-0.998739,-0.713376 +2.038928,1.153737,0.250685,-1.679153,-0.993388,-0.708324 +2.038063,1.157722,0.253858,-1.686745,-0.987990,-0.703240 +2.037140,1.161695,0.257016,-1.694287,-0.982548,-0.698122 +2.036159,1.165656,0.260157,-1.701779,-0.977059,-0.692972 +2.035120,1.169604,0.263283,-1.709221,-0.971526,-0.687789 +2.034023,1.173539,0.266391,-1.716613,-0.965947,-0.682573 +2.032868,1.177462,0.269483,-1.723954,-0.960324,-0.677324 +2.031654,1.181370,0.272556,-1.731245,-0.954655,-0.672043 +2.030381,1.185266,0.275612,-1.738483,-0.948942,-0.666729 +2.029050,1.189147,0.278648,-1.745671,-0.943185,-0.661382 +2.027661,1.193013,0.281666,-1.752806,-0.937383,-0.656003 +2.026212,1.196865,0.284663,-1.759890,-0.931537,-0.650592 +2.024705,1.200702,0.287641,-1.766920,-0.925646,-0.645148 +2.023139,1.204524,0.290598,-1.773898,-0.919712,-0.639672 +2.021513,1.208330,0.293534,-1.780824,-0.913734,-0.634163 +2.019829,1.212120,0.296448,-1.787695,-0.907713,-0.628623 +2.018086,1.215893,0.299341,-1.794513,-0.901648,-0.623050 +2.016283,1.219650,0.302211,-1.801278,-0.895540,-0.617445 +2.014421,1.223391,0.305058,-1.807988,-0.889389,-0.611808 +2.012500,1.227114,0.307882,-1.814644,-0.883196,-0.606140 +2.010519,1.230820,0.310682,-1.821245,-0.876959,-0.600439 +2.008479,1.234508,0.313457,-1.827791,-0.870680,-0.594707 +2.006380,1.238178,0.316208,-1.834282,-0.864359,-0.588943 +2.004221,1.241830,0.318934,-1.840718,-0.857996,-0.583147 +2.002003,1.245463,0.321634,-1.847098,-0.851591,-0.577320 +1.999725,1.249077,0.324308,-1.853421,-0.845145,-0.571462 +1.997388,1.252672,0.326956,-1.859689,-0.838657,-0.565572 +1.994991,1.256248,0.329576,-1.865901,-0.832128,-0.559651 +1.992534,1.259804,0.332169,-1.872055,-0.825558,-0.553699 +1.990018,1.263340,0.334735,-1.878153,-0.818947,-0.547717 +1.987443,1.266855,0.337272,-1.884193,-0.812296,-0.541703 +1.984807,1.270351,0.339781,-1.890176,-0.805604,-0.535659 +1.982113,1.273825,0.342260,-1.896102,-0.798872,-0.529584 +1.979358,1.277279,0.344710,-1.901970,-0.792101,-0.523478 +1.976544,1.280711,0.347130,-1.907779,-0.785290,-0.517343 +1.973671,1.284121,0.349519,-1.913530,-0.778440,-0.511177 +1.970738,1.287510,0.351878,-1.919223,-0.771550,-0.504981 +1.967745,1.290877,0.354206,-1.924857,-0.764622,-0.498755 +1.964694,1.294221,0.356502,-1.930432,-0.757655,-0.492499 +1.961582,1.297543,0.358766,-1.935948,-0.750650,-0.486214 +1.958412,1.300843,0.360997,-1.941405,-0.743607,-0.479899 +1.955182,1.304119,0.363196,-1.946802,-0.736526,-0.473555 +1.951892,1.307372,0.365362,-1.952139,-0.729407,-0.467181 +1.948544,1.310601,0.367494,-1.957416,-0.722251,-0.460779 +1.945136,1.313807,0.369592,-1.962634,-0.715059,-0.454347 +1.941669,1.316989,0.371655,-1.967790,-0.707829,-0.447887 +1.938143,1.320146,0.373684,-1.972887,-0.700563,-0.441398 +1.934559,1.323280,0.375677,-1.977922,-0.693261,-0.434881 +1.930915,1.326388,0.377635,-1.982897,-0.685923,-0.428336 +1.927212,1.329472,0.379557,-1.987811,-0.678550,-0.421762 +1.923451,1.332531,0.381443,-1.992664,-0.671141,-0.415161 +1.919631,1.335565,0.383292,-1.997455,-0.663697,-0.408532 +1.915753,1.338573,0.385104,-2.002184,-0.656218,-0.401875 +1.911816,1.341556,0.386878,-2.006852,-0.648706,-0.395191 +1.907820,1.344512,0.388615,-2.011458,-0.641159,-0.388480 +1.903767,1.347443,0.390314,-2.016002,-0.633578,-0.381741 +1.899655,1.350348,0.391974,-2.020484,-0.625964,-0.374976 +1.895485,1.353226,0.393595,-2.024904,-0.618316,-0.368185 +1.891258,1.356077,0.395177,-2.029261,-0.610636,-0.361367 +1.886972,1.358902,0.396719,-2.033556,-0.602923,-0.354523 +1.882629,1.361700,0.398222,-2.037787,-0.595178,-0.347652 +1.878229,1.364470,0.399684,-2.041956,-0.587402,-0.340756 +1.873771,1.367214,0.401106,-2.046062,-0.579593,-0.333835 +1.869256,1.369930,0.402486,-2.050105,-0.571754,-0.326888 +1.864683,1.372618,0.403826,-2.054084,-0.563883,-0.319916 +1.860054,1.375278,0.405124,-2.058001,-0.555982,-0.312919 +1.855368,1.377911,0.406380,-2.061853,-0.548051,-0.305897 +1.850625,1.380515,0.407594,-2.065642,-0.540090,-0.298851 +1.845826,1.383092,0.408765,-2.069368,-0.532099,-0.291781 +1.840970,1.385639,0.409893,-2.073029,-0.524079,-0.284686 +1.836059,1.388159,0.410979,-2.076627,-0.516030,-0.277568 +1.831091,1.390649,0.412021,-2.080161,-0.507953,-0.270426 +1.826068,1.393111,0.413019,-2.083631,-0.499848,-0.263261 +1.820989,1.395544,0.413973,-2.087036,-0.491714,-0.256073 +1.815854,1.397947,0.414882,-2.090377,-0.483554,-0.248861 +1.810664,1.400322,0.415747,-2.093654,-0.475366,-0.241628 +1.805420,1.402667,0.416568,-2.096866,-0.467151,-0.234372 +1.800120,1.404982,0.417342,-2.100014,-0.458911,-0.227093 +1.794766,1.407268,0.418072,-2.103098,-0.450644,-0.219793 +1.789357,1.409524,0.418756,-2.106116,-0.442351,-0.212471 +1.783894,1.411751,0.419393,-2.109070,-0.434034,-0.205128 +1.778377,1.413947,0.419985,-2.111960,-0.425691,-0.197764 +1.772806,1.416114,0.420529,-2.114784,-0.417324,-0.190379 +1.767182,1.418250,0.421027,-2.117543,-0.408933,-0.182974 +1.761505,1.420356,0.421478,-2.120238,-0.400518,-0.175548 +1.755774,1.422432,0.421882,-2.122868,-0.392079,-0.168102 +1.749991,1.424478,0.422238,-2.125432,-0.383618,-0.160637 +1.744154,1.426493,0.422546,-2.127932,-0.375134,-0.153151 +1.738266,1.428477,0.422806,-2.130366,-0.366628,-0.145647 +1.732325,1.430431,0.423018,-2.132736,-0.358100,-0.138124 +1.726333,1.432354,0.423181,-2.135040,-0.349550,-0.130582 +1.720289,1.434246,0.423296,-2.137279,-0.340980,-0.123022 +1.714193,1.436107,0.423361,-2.139453,-0.332389,-0.115444 +1.708046,1.437937,0.423378,-2.141562,-0.323777,-0.107848 +1.701849,1.439737,0.423345,-2.143605,-0.315146,-0.100234 +1.695601,1.441505,0.423262,-2.145584,-0.306495,-0.092603 +1.689303,1.443242,0.423130,-2.147497,-0.297826,-0.084955 +1.682954,1.444948,0.422947,-2.149344,-0.289137,-0.077291 +1.676556,1.446623,0.422715,-2.151127,-0.280430,-0.069610 +1.670109,1.448267,0.422432,-2.152845,-0.271706,-0.061914 +1.663612,1.449879,0.422098,-2.154497,-0.262964,-0.054201 +1.657067,1.451460,0.421714,-2.156084,-0.254205,-0.046474 +1.650473,1.453010,0.421278,-2.157606,-0.245429,-0.038731 +1.643831,1.454528,0.420792,-2.159062,-0.236637,-0.030973 +1.637141,1.456015,0.420254,-2.160454,-0.227829,-0.023201 +1.630403,1.457471,0.419665,-2.161780,-0.219006,-0.015414 +1.623618,1.458895,0.419024,-2.163042,-0.210168,-0.007614 +1.616786,1.460287,0.418331,-2.164238,-0.201315,0.000200 +1.609907,1.461648,0.417587,-2.165370,-0.192448,0.008027 +1.602982,1.462978,0.416790,-2.166436,-0.183568,0.015866 +1.596010,1.464276,0.415941,-2.167438,-0.174674,0.023719 +1.588993,1.465543,0.415039,-2.168375,-0.165767,0.031584 +1.581931,1.466778,0.414086,-2.169247,-0.156848,0.039460 +1.574824,1.467981,0.413079,-2.170054,-0.147916,0.047349 +1.567672,1.469153,0.412020,-2.170797,-0.138973,0.055248 +1.560475,1.470294,0.410907,-2.171475,-0.130019,0.063159 +1.553235,1.471404,0.409742,-2.172088,-0.121054,0.071080 +1.545951,1.472481,0.408524,-2.172637,-0.112079,0.079011 +1.538623,1.473528,0.407252,-2.173122,-0.103094,0.086953 +1.531253,1.474543,0.405927,-2.173542,-0.094099,0.094904 +1.523840,1.475527,0.404548,-2.173899,-0.085096,0.102864 +1.516385,1.476479,0.403116,-2.174191,-0.076083,0.110833 +1.508888,1.477401,0.401631,-2.174419,-0.067063,0.118811 +1.501349,1.478291,0.400091,-2.174583,-0.058034,0.126797 +1.493769,1.479149,0.398498,-2.174683,-0.048999,0.134791 +1.486149,1.479977,0.396851,-2.174720,-0.039956,0.142792 +1.478488,1.480774,0.395150,-2.174693,-0.030907,0.150801 +1.470788,1.481539,0.393395,-2.174602,-0.021852,0.158817 +1.463047,1.482274,0.391585,-2.174448,-0.012791,0.166839 +1.455268,1.482978,0.389722,-2.174231,-0.003726,0.174867 +1.447449,1.483651,0.387804,-2.173951,0.005345,0.182901 +1.439592,1.484293,0.385832,-2.173607,0.014420,0.190941 +1.431698,1.484905,0.383806,-2.173201,0.023499,0.198986 +1.423765,1.485485,0.381725,-2.172732,0.032581,0.207035 +1.415795,1.486036,0.379590,-2.172200,0.041666,0.215089 +1.407789,1.486556,0.377401,-2.171606,0.050754,0.223147 +1.399746,1.487045,0.375157,-2.170949,0.059844,0.231208 +1.391667,1.487504,0.372859,-2.170231,0.068935,0.239273 +1.383552,1.487934,0.370506,-2.169450,0.078028,0.247341 +1.375402,1.488333,0.368098,-2.168607,0.087122,0.255412 +1.367218,1.488701,0.365636,-2.167702,0.096216,0.263484 +1.358999,1.489041,0.363120,-2.166736,0.105310,0.271559 +1.350746,1.489350,0.360549,-2.165709,0.114403,0.279635 +1.342460,1.489629,0.357923,-2.164620,0.123496,0.287713 +1.334140,1.489879,0.355243,-2.163470,0.132587,0.295791 +1.325788,1.490100,0.352508,-2.162259,0.141676,0.303869 +1.317404,1.490291,0.349719,-2.160987,0.150764,0.311948 +1.308988,1.490453,0.346875,-2.159655,0.159848,0.320026 +1.300540,1.490586,0.343977,-2.158263,0.168929,0.328103 +1.292062,1.490690,0.341025,-2.156810,0.178007,0.336180 +1.283553,1.490765,0.338018,-2.155297,0.187081,0.344255 +1.275014,1.490812,0.334957,-2.153725,0.196151,0.352328 +1.266446,1.490830,0.331841,-2.152092,0.205215,0.360399 +1.257848,1.490819,0.328671,-2.150401,0.214275,0.368468 +1.249222,1.490780,0.325447,-2.148650,0.223328,0.376534 +1.240567,1.490713,0.322169,-2.146840,0.232376,0.384596 +1.231885,1.490618,0.318836,-2.144971,0.241417,0.392655 +1.223176,1.490495,0.315450,-2.143044,0.250451,0.400710 +1.214439,1.490345,0.312009,-2.141059,0.259478,0.408760 +1.205676,1.490167,0.308515,-2.139015,0.268496,0.416805 +1.196888,1.489961,0.304967,-2.136913,0.277507,0.424846 +1.188073,1.489729,0.301365,-2.134754,0.286508,0.432881 +1.179234,1.489469,0.297710,-2.132537,0.295501,0.440910 +1.170370,1.489182,0.294001,-2.130263,0.304484,0.448933 +1.161482,1.488869,0.290238,-2.127932,0.313457,0.456949 +1.152571,1.488529,0.286423,-2.125544,0.322420,0.464958 +1.143636,1.488163,0.282554,-2.123099,0.331372,0.472960 +1.134679,1.487771,0.278631,-2.120598,0.340312,0.480954 +1.125699,1.487352,0.274656,-2.118042,0.349241,0.488940 +1.116698,1.486908,0.270628,-2.115429,0.358158,0.496917 +1.107675,1.486438,0.266547,-2.112761,0.367062,0.504886 +1.098632,1.485943,0.262414,-2.110037,0.375953,0.512845 +1.089568,1.485422,0.258228,-2.107259,0.384831,0.520795 +1.080485,1.484877,0.253989,-2.104426,0.393696,0.528734 +1.071382,1.484306,0.249698,-2.101538,0.402546,0.536663 +1.062260,1.483711,0.245356,-2.098596,0.411381,0.544582 +1.053120,1.483092,0.240961,-2.095600,0.420202,0.552489 +1.043963,1.482448,0.236514,-2.092550,0.429007,0.560385 +1.034787,1.481780,0.232016,-2.089447,0.437796,0.568269 +1.025595,1.481088,0.227466,-2.086291,0.446569,0.576141 +1.016386,1.480373,0.222865,-2.083081,0.455326,0.584000 +1.007162,1.479634,0.218213,-2.079820,0.464065,0.591846 +0.997922,1.478872,0.213510,-2.076506,0.472787,0.599679 +0.988667,1.478087,0.208756,-2.073140,0.481491,0.607499 +0.979398,1.477280,0.203951,-2.069722,0.490177,0.615304 +0.970114,1.476449,0.199096,-2.066253,0.498844,0.623094 +0.960818,1.475597,0.194191,-2.062732,0.507493,0.630870 +0.951508,1.474722,0.189235,-2.059161,0.516121,0.638631 +0.942186,1.473826,0.184230,-2.055539,0.524731,0.646376 +0.932851,1.472907,0.179175,-2.051868,0.533319,0.654105 +0.923505,1.471968,0.174071,-2.048146,0.541888,0.661818 +0.914149,1.471007,0.168917,-2.044374,0.550435,0.669514 +0.904781,1.470025,0.163715,-2.040553,0.558961,0.677193 +0.895404,1.469023,0.158463,-2.036684,0.567465,0.684855 +0.886017,1.468000,0.153163,-2.032765,0.575947,0.692499 +0.876622,1.466957,0.147815,-2.028798,0.584407,0.700125 +0.867217,1.465894,0.142418,-2.024784,0.592844,0.707732 +0.857805,1.464812,0.136974,-2.020721,0.601257,0.715321 +0.848385,1.463709,0.131482,-2.016611,0.609647,0.722891 +0.838958,1.462588,0.125942,-2.012454,0.618013,0.730441 +0.829525,1.461448,0.120356,-2.008250,0.626354,0.737971 +0.820086,1.460289,0.114722,-2.004000,0.634671,0.745481 +0.810641,1.459111,0.109042,-1.999704,0.642963,0.752970 +0.801191,1.457915,0.103315,-1.995362,0.651229,0.760438 +0.791736,1.456702,0.097542,-1.990975,0.659470,0.767885 +0.782278,1.455470,0.091723,-1.986543,0.667684,0.775311 +0.772816,1.454221,0.085859,-1.982065,0.675872,0.782714 +0.763351,1.452956,0.079949,-1.977544,0.684032,0.790095 +0.753883,1.451673,0.073994,-1.972979,0.692166,0.797453 +0.744414,1.450373,0.067994,-1.968369,0.700272,0.804789 +0.734942,1.449057,0.061950,-1.963717,0.708351,0.812101 +0.725470,1.447725,0.055862,-1.959021,0.716401,0.819389 +0.715997,1.446377,0.049729,-1.954283,0.724422,0.826653 +0.706525,1.445014,0.043553,-1.949503,0.732414,0.833893 +0.697052,1.443635,0.037334,-1.944681,0.740378,0.841108 +0.687581,1.442242,0.031071,-1.939817,0.748311,0.848298 +0.678111,1.440833,0.024766,-1.934912,0.756215,0.855462 +0.668643,1.439410,0.018418,-1.929966,0.764088,0.862601 +0.659177,1.437973,0.012028,-1.924980,0.771931,0.869714 +0.649715,1.436522,0.005596,-1.919954,0.779743,0.876800 +0.640255,1.435058,-0.000877,-1.914888,0.787524,0.883860 +0.630800,1.433580,-0.007392,-1.909782,0.795273,0.890893 +0.621349,1.432089,-0.013947,-1.904638,0.802990,0.897898 +0.611903,1.430585,-0.020543,-1.899455,0.810676,0.904875 +0.602462,1.429068,-0.027179,-1.894234,0.818328,0.911825 +0.593027,1.427540,-0.033856,-1.888975,0.825948,0.918746 +0.583598,1.425999,-0.040571,-1.883678,0.833535,0.925639 +0.574177,1.424447,-0.047326,-1.878344,0.841089,0.932502 +0.564762,1.422883,-0.054120,-1.872974,0.848609,0.939337 +0.555355,1.421308,-0.060953,-1.867567,0.856095,0.946142 +0.545957,1.419723,-0.067823,-1.862125,0.863547,0.952917 +0.536567,1.418127,-0.074732,-1.856646,0.870964,0.959661 +0.527187,1.416521,-0.081678,-1.851133,0.878346,0.966376 +0.517816,1.414904,-0.088661,-1.845584,0.885694,0.973059 +0.508456,1.413279,-0.095681,-1.840002,0.893006,0.979711 +0.499106,1.411643,-0.102738,-1.834385,0.900282,0.986332 +0.489767,1.409999,-0.109830,-1.828734,0.907522,0.992922 +0.480440,1.408346,-0.116958,-1.823051,0.914727,0.999479 +0.471125,1.406684,-0.124122,-1.817334,0.921895,1.006004 +0.461822,1.405015,-0.131320,-1.811585,0.929026,1.012497 +0.452533,1.403337,-0.138553,-1.805804,0.936120,1.018956 +0.443257,1.401652,-0.145821,-1.799991,0.943177,1.025383 +0.433995,1.399959,-0.153122,-1.794147,0.950196,1.031776 +0.424747,1.398259,-0.160457,-1.788272,0.957178,1.038135 +0.415514,1.396553,-0.167824,-1.782367,0.964122,1.044461 +0.406296,1.394840,-0.175225,-1.776431,0.971027,1.050752 +0.397095,1.393121,-0.182657,-1.770466,0.977895,1.057009 +0.387909,1.391396,-0.190122,-1.764471,0.984723,1.063231 +0.378740,1.389666,-0.197618,-1.758448,0.991513,1.069418 +0.369588,1.387930,-0.205145,-1.752396,0.998263,1.075569 +0.360454,1.386189,-0.212703,-1.746316,1.004974,1.081685 +0.351338,1.384444,-0.220291,-1.740208,1.011646,1.087766 +0.342240,1.382694,-0.227909,-1.734073,1.018278,1.093810 +0.333162,1.380940,-0.235557,-1.727911,1.024869,1.099818 +0.324102,1.379182,-0.243234,-1.721723,1.031421,1.105789 +0.315063,1.377421,-0.250939,-1.715508,1.037932,1.111723 +0.306043,1.375656,-0.258673,-1.709268,1.044403,1.117621 +0.297045,1.373888,-0.266434,-1.703003,1.050832,1.123481 +0.288067,1.372118,-0.274223,-1.696712,1.057221,1.129303 +0.279111,1.370346,-0.282039,-1.690398,1.063568,1.135088 +0.270177,1.368571,-0.289882,-1.684059,1.069874,1.140834 +0.261265,1.366794,-0.297750,-1.677696,1.076139,1.146543 +0.252376,1.365016,-0.305645,-1.671311,1.082361,1.152213 +0.243510,1.363237,-0.313565,-1.664902,1.088542,1.157844 +0.234668,1.361457,-0.321509,-1.658471,1.094680,1.163436 +0.225850,1.359676,-0.329479,-1.652018,1.100776,1.168989 +0.217057,1.357895,-0.337472,-1.645544,1.106830,1.174503 +0.208288,1.356114,-0.345489,-1.639048,1.112841,1.179977 +0.199544,1.354333,-0.353529,-1.632532,1.118810,1.185411 +0.190827,1.352552,-0.361592,-1.625995,1.124735,1.190806 +0.182135,1.350772,-0.369677,-1.619438,1.130617,1.196160 +0.173469,1.348994,-0.377784,-1.612862,1.136456,1.201474 +0.164831,1.347216,-0.385912,-1.606266,1.142252,1.206747 +0.156220,1.345441,-0.394061,-1.599652,1.148004,1.211979 +0.147636,1.343667,-0.402231,-1.593019,1.153712,1.217170 +0.139081,1.341895,-0.410421,-1.586369,1.159377,1.222321 +0.130554,1.340126,-0.418631,-1.579701,1.164997,1.227429 +0.122056,1.338359,-0.426859,-1.573016,1.170574,1.232497 +0.113587,1.336596,-0.435107,-1.566314,1.176106,1.237522 +0.105147,1.334835,-0.443373,-1.559596,1.181594,1.242506 +0.096737,1.333079,-0.451656,-1.552862,1.187038,1.247447 +0.088358,1.331326,-0.459957,-1.546112,1.192437,1.252346 +0.080009,1.329577,-0.468275,-1.539348,1.197791,1.257203 +0.071692,1.327832,-0.476610,-1.532568,1.203101,1.262017 +0.063405,1.326092,-0.484960,-1.525775,1.208366,1.266789 +0.055151,1.324357,-0.493326,-1.518968,1.213586,1.271517 +0.046928,1.322628,-0.501707,-1.512147,1.218761,1.276203 +0.038738,1.320903,-0.510103,-1.505313,1.223890,1.280845 +0.030581,1.319184,-0.518513,-1.498466,1.228975,1.285444 +0.022457,1.317472,-0.526937,-1.491608,1.234014,1.290000 +0.014366,1.315765,-0.535374,-1.484737,1.239008,1.294512 +0.006309,1.314065,-0.543823,-1.477855,1.243956,1.298980 +-0.001714,1.312371,-0.552285,-1.470962,1.248859,1.303404 +-0.009702,1.310685,-0.560759,-1.464058,1.253716,1.307784 +-0.017656,1.309006,-0.569245,-1.457144,1.258528,1.312120 +-0.025574,1.307334,-0.577741,-1.450220,1.263293,1.316412 +-0.033458,1.305670,-0.586248,-1.443287,1.268014,1.320659 +-0.041305,1.304013,-0.594764,-1.436345,1.272688,1.324862 +-0.049116,1.302365,-0.603291,-1.429394,1.277316,1.329020 +-0.056891,1.300726,-0.611826,-1.422435,1.281899,1.333133 +-0.064630,1.299095,-0.620370,-1.415468,1.286435,1.337202 +-0.072331,1.297473,-0.628922,-1.408493,1.290926,1.341225 +-0.079996,1.295860,-0.637482,-1.401512,1.295371,1.345204 +-0.087622,1.294257,-0.646049,-1.394523,1.299769,1.349137 +-0.095211,1.292663,-0.654623,-1.387529,1.304122,1.353025 +-0.102762,1.291080,-0.663202,-1.380528,1.308428,1.356868 +-0.110275,1.289506,-0.671788,-1.373522,1.312688,1.360665 +-0.117748,1.287942,-0.680379,-1.366511,1.316903,1.364417 +-0.125183,1.286389,-0.688975,-1.359495,1.321071,1.368124 +-0.132579,1.284847,-0.697575,-1.352475,1.325193,1.371784 +-0.139935,1.283316,-0.706179,-1.345451,1.329268,1.375399 +-0.147252,1.281796,-0.714787,-1.338423,1.333298,1.378968 +-0.154528,1.280288,-0.723397,-1.331392,1.337282,1.382492 +-0.161764,1.278791,-0.732010,-1.324358,1.341219,1.385969 +-0.168960,1.277306,-0.740625,-1.317322,1.345111,1.389401 +-0.176115,1.275833,-0.749242,-1.310283,1.348956,1.392786 +-0.183230,1.274372,-0.757859,-1.303243,1.352755,1.396125 +-0.190303,1.272924,-0.766478,-1.296202,1.356509,1.399418 +-0.197334,1.271489,-0.775096,-1.289160,1.360216,1.402666 +-0.204324,1.270066,-0.783714,-1.282117,1.363877,1.405866 +-0.211272,1.268657,-0.792331,-1.275073,1.367493,1.409021 +-0.218178,1.267260,-0.800947,-1.268030,1.371062,1.412129 +-0.225042,1.265878,-0.809561,-1.260988,1.374586,1.415192 +-0.231863,1.264509,-0.818173,-1.253946,1.378064,1.418207 +-0.238641,1.263153,-0.826782,-1.246906,1.381496,1.421177 +-0.245376,1.261812,-0.835389,-1.239867,1.384882,1.424100 +-0.252069,1.260485,-0.843991,-1.232830,1.388223,1.426977 +-0.258717,1.259172,-0.852589,-1.225795,1.391518,1.429807 +-0.265323,1.257874,-0.861183,-1.218763,1.394768,1.432591 +-0.271885,1.256591,-0.869772,-1.211734,1.397973,1.435329 +-0.278402,1.255323,-0.878355,-1.204709,1.401132,1.438020 +-0.284876,1.254070,-0.886933,-1.197687,1.404245,1.440665 +-0.291306,1.252832,-0.895504,-1.190670,1.407314,1.443263 +-0.297691,1.251609,-0.904068,-1.183656,1.410337,1.445815 +-0.304031,1.250402,-0.912625,-1.176648,1.413316,1.448321 +-0.310327,1.249211,-0.921174,-1.169644,1.416249,1.450781 +-0.316578,1.248035,-0.929714,-1.162647,1.419138,1.453194 +-0.322783,1.246876,-0.938246,-1.155654,1.421982,1.455561 +-0.328944,1.245733,-0.946769,-1.148668,1.424781,1.457882 +-0.335059,1.244606,-0.955283,-1.141689,1.427535,1.460156 +-0.341129,1.243496,-0.963786,-1.134716,1.430246,1.462385 +-0.347153,1.242402,-0.972278,-1.127750,1.432912,1.464567 +-0.353132,1.241325,-0.980760,-1.120792,1.435534,1.466703 +-0.359064,1.240265,-0.989230,-1.113842,1.438111,1.468793 +-0.364951,1.239223,-0.997688,-1.106900,1.440645,1.470837 +-0.370791,1.238197,-1.006134,-1.099966,1.443135,1.472835 +-0.376586,1.237188,-1.014567,-1.093041,1.445581,1.474788 +-0.382334,1.236197,-1.022987,-1.086125,1.447984,1.476694 +-0.388035,1.235224,-1.031393,-1.079218,1.450343,1.478555 +-0.393690,1.234268,-1.039785,-1.072321,1.452659,1.480370 +-0.399299,1.233330,-1.048162,-1.065434,1.454932,1.482140 +-0.404860,1.232410,-1.056525,-1.058558,1.457162,1.483864 +-0.410375,1.231508,-1.064872,-1.051692,1.459349,1.485543 +-0.415843,1.230624,-1.073203,-1.044837,1.461493,1.487176 +-0.421264,1.229758,-1.081517,-1.037993,1.463595,1.488764 +-0.426638,1.228910,-1.089815,-1.031160,1.465654,1.490307 +-0.431965,1.228081,-1.098096,-1.024340,1.467672,1.491805 +-0.437245,1.227270,-1.106359,-1.017531,1.469647,1.493258 +-0.442477,1.226478,-1.114604,-1.010736,1.471580,1.494666 +-0.447663,1.225705,-1.122830,-1.003952,1.473472,1.496029 +-0.452801,1.224950,-1.131037,-0.997182,1.475322,1.497348 +-0.457891,1.224214,-1.139225,-0.990425,1.477130,1.498622 +-0.462934,1.223497,-1.147394,-0.983682,1.478898,1.499851 +-0.467930,1.222799,-1.155542,-0.976952,1.480625,1.501037 +-0.472879,1.222120,-1.163669,-0.970236,1.482310,1.502178 +-0.477779,1.221460,-1.171775,-0.963535,1.483955,1.503275 +-0.482633,1.220819,-1.179860,-0.956849,1.485560,1.504328 +-0.487438,1.220198,-1.187923,-0.950177,1.487125,1.505338 +-0.492197,1.219596,-1.195964,-0.943521,1.488649,1.506303 +-0.496907,1.219013,-1.203982,-0.936880,1.490134,1.507225 +-0.501570,1.218449,-1.211976,-0.930255,1.491579,1.508104 +-0.506186,1.217905,-1.219948,-0.923646,1.492985,1.508940 +-0.510754,1.217380,-1.227895,-0.917053,1.494351,1.509732 +-0.515274,1.216875,-1.235818,-0.910476,1.495679,1.510482 +-0.519747,1.216390,-1.243716,-0.903916,1.496967,1.511189 +-0.524172,1.215923,-1.251589,-0.897374,1.498218,1.511853 +-0.528550,1.215477,-1.259436,-0.890848,1.499430,1.512475 +-0.532881,1.215050,-1.267258,-0.884340,1.500603,1.513054 +-0.537164,1.214643,-1.275053,-0.877849,1.501739,1.513592 +-0.541399,1.214256,-1.282822,-0.871377,1.502838,1.514087 +-0.545587,1.213888,-1.290563,-0.864923,1.503899,1.514541 +-0.549728,1.213540,-1.298277,-0.858487,1.504922,1.514953 +-0.553822,1.213211,-1.305963,-0.852070,1.505909,1.515324 +-0.557868,1.212903,-1.313620,-0.845671,1.506859,1.515653 +-0.561867,1.212614,-1.321249,-0.839292,1.507773,1.515941 +-0.565819,1.212344,-1.328849,-0.832932,1.508650,1.516189 +-0.569724,1.212095,-1.336420,-0.826591,1.509492,1.516396 +-0.573583,1.211865,-1.343960,-0.820271,1.510298,1.516563 +-0.577394,1.211655,-1.351471,-0.813970,1.511068,1.516689 +-0.581158,1.211464,-1.358951,-0.807689,1.511803,1.516775 +-0.584876,1.211293,-1.366400,-0.801429,1.512504,1.516821 +-0.588547,1.211142,-1.373818,-0.795189,1.513169,1.516828 +-0.592172,1.211010,-1.381204,-0.788970,1.513800,1.516796 +-0.595750,1.210898,-1.388559,-0.782772,1.514397,1.516724 +-0.599282,1.210805,-1.395881,-0.776595,1.514961,1.516613 +-0.602767,1.210732,-1.403170,-0.770439,1.515490,1.516464 +-0.606207,1.210678,-1.410427,-0.764305,1.515986,1.516275 +-0.609600,1.210644,-1.417650,-0.758193,1.516449,1.516049 +-0.612947,1.210629,-1.424839,-0.752102,1.516880,1.515785 +-0.616249,1.210634,-1.431994,-0.746033,1.517277,1.515482 +-0.619505,1.210657,-1.439115,-0.739987,1.517643,1.515143 +-0.622716,1.210700,-1.446201,-0.733963,1.517977,1.514765 +-0.625881,1.210762,-1.453252,-0.727962,1.518278,1.514351 +-0.629001,1.210843,-1.460268,-0.721983,1.518549,1.513900 +-0.632076,1.210943,-1.467248,-0.716028,1.518788,1.513412 +-0.635106,1.211062,-1.474192,-0.710095,1.518997,1.512888 +-0.638091,1.211200,-1.481100,-0.704185,1.519175,1.512327 +-0.641031,1.211356,-1.487971,-0.698299,1.519323,1.511731 +-0.643927,1.211531,-1.494805,-0.692437,1.519441,1.511099 +-0.646779,1.211725,-1.501601,-0.686598,1.519529,1.510432 +-0.649587,1.211937,-1.508360,-0.680782,1.519588,1.509730 +-0.652350,1.212168,-1.515081,-0.674991,1.519618,1.508992 +-0.655070,1.212417,-1.521764,-0.669224,1.519619,1.508221 +-0.657746,1.212685,-1.528409,-0.663481,1.519591,1.507415 +-0.660379,1.212970,-1.535014,-0.657762,1.519536,1.506575 +-0.662968,1.213273,-1.541581,-0.652068,1.519453,1.505701 +-0.665514,1.213595,-1.548108,-0.646398,1.519342,1.504794 +-0.668018,1.213934,-1.554595,-0.640753,1.519204,1.503853 +-0.670479,1.214291,-1.561042,-0.635133,1.519039,1.502880 +-0.672897,1.214665,-1.567449,-0.629538,1.518847,1.501874 +-0.675273,1.215057,-1.573816,-0.623968,1.518629,1.500836 +-0.677607,1.215466,-1.580141,-0.618423,1.518385,1.499766 +-0.679899,1.215892,-1.586426,-0.612903,1.518116,1.498664 +-0.682150,1.216336,-1.592669,-0.607409,1.517821,1.497530 +-0.684359,1.216796,-1.598871,-0.601940,1.517501,1.496365 +-0.686527,1.217273,-1.605030,-0.596497,1.517156,1.495170 +-0.688654,1.217766,-1.611148,-0.591079,1.516787,1.493944 +-0.690741,1.218276,-1.617223,-0.585687,1.516394,1.492687 +-0.692787,1.218803,-1.623255,-0.580321,1.515978,1.491401 +-0.694792,1.219345,-1.629245,-0.574980,1.515537,1.490085 +-0.696758,1.219904,-1.635191,-0.569666,1.515074,1.488740 +-0.698684,1.220478,-1.641094,-0.564378,1.514588,1.487365 +-0.700570,1.221068,-1.646953,-0.559116,1.514079,1.485962 +-0.702418,1.221674,-1.652769,-0.553880,1.513549,1.484530 +-0.704226,1.222295,-1.658540,-0.548670,1.512996,1.483071 +-0.705995,1.222931,-1.664267,-0.543487,1.512422,1.481583 +-0.707726,1.223583,-1.669949,-0.538330,1.511827,1.480069 +-0.709419,1.224249,-1.675587,-0.533199,1.511211,1.478527 +-0.711074,1.224929,-1.681179,-0.528095,1.510575,1.476958 +-0.712691,1.225624,-1.686726,-0.523018,1.509919,1.475362 +-0.714271,1.226334,-1.692228,-0.517967,1.509242,1.473741 +-0.715814,1.227057,-1.697684,-0.512943,1.508547,1.472094 +-0.717320,1.227795,-1.703094,-0.507945,1.507832,1.470421 +-0.718790,1.228546,-1.708458,-0.502974,1.507098,1.468723 +-0.720223,1.229310,-1.713776,-0.498030,1.506346,1.467000 +-0.721620,1.230088,-1.719047,-0.493113,1.505575,1.465253 +-0.722982,1.230879,-1.724272,-0.488222,1.504787,1.463481 +-0.724308,1.231683,-1.729450,-0.483358,1.503982,1.461686 +-0.725599,1.232500,-1.734581,-0.478521,1.503159,1.459867 +-0.726856,1.233329,-1.739664,-0.473711,1.502319,1.458025 +-0.728078,1.234170,-1.744700,-0.468928,1.501463,1.456160 +-0.729266,1.235023,-1.749688,-0.464172,1.500591,1.454272 +-0.730420,1.235888,-1.754629,-0.459443,1.499703,1.452363 +-0.731541,1.236765,-1.759522,-0.454740,1.498800,1.450432 +-0.732629,1.237653,-1.764366,-0.450065,1.497881,1.448479 +-0.733683,1.238552,-1.769162,-0.445416,1.496948,1.446505 +-0.734705,1.239462,-1.773910,-0.440794,1.496000,1.444511 +-0.735695,1.240382,-1.778610,-0.436200,1.495038,1.442496 +-0.736654,1.241313,-1.783260,-0.431632,1.494062,1.440461 +-0.737580,1.242254,-1.787862,-0.427091,1.493073,1.438406 +-0.738475,1.243205,-1.792414,-0.422577,1.492071,1.436332 +-0.739340,1.244166,-1.796917,-0.418089,1.491056,1.434239 +-0.740174,1.245136,-1.801371,-0.413629,1.490029,1.432127 +-0.740978,1.246115,-1.805776,-0.409195,1.488989,1.429998 +-0.741752,1.247103,-1.810131,-0.404788,1.487938,1.427850 +-0.742496,1.248100,-1.814436,-0.400408,1.486875,1.425684 +-0.743212,1.249105,-1.818691,-0.396055,1.485802,1.423502 +-0.743898,1.250118,-1.822897,-0.391728,1.484717,1.421302 +-0.744556,1.251139,-1.827052,-0.387428,1.483622,1.419086 +-0.745186,1.252168,-1.831157,-0.383154,1.482517,1.416854 +-0.745789,1.253204,-1.835212,-0.378907,1.481402,1.414606 +-0.746364,1.254247,-1.839216,-0.374687,1.480278,1.412343 +-0.746912,1.255297,-1.843170,-0.370493,1.479145,1.410065 +-0.747433,1.256353,-1.847073,-0.366325,1.478003,1.407772 +-0.747928,1.257416,-1.850925,-0.362184,1.476853,1.405465 +-0.748398,1.258484,-1.854727,-0.358068,1.475694,1.403144 +-0.748841,1.259559,-1.858477,-0.353980,1.474528,1.400809 +-0.749260,1.260638,-1.862177,-0.349917,1.473354,1.398461 +-0.749654,1.261723,-1.865826,-0.345880,1.472173,1.396100 +-0.750023,1.262812,-1.869423,-0.341869,1.470986,1.393726 +-0.750368,1.263906,-1.872969,-0.337885,1.469792,1.391341 +-0.750690,1.265004,-1.876464,-0.333926,1.468592,1.388944 +-0.750989,1.266106,-1.879907,-0.329993,1.467386,1.386535 +-0.751264,1.267212,-1.883299,-0.326085,1.466174,1.384115 +-0.751518,1.268320,-1.886639,-0.322203,1.464958,1.381685 +-0.751749,1.269432,-1.889928,-0.318347,1.463736,1.379244 +-0.751958,1.270547,-1.893165,-0.314516,1.462510,1.376794 +-0.752146,1.271664,-1.896350,-0.310710,1.461280,1.374334 +-0.752313,1.272783,-1.899484,-0.306930,1.460046,1.371864 +-0.752460,1.273904,-1.902565,-0.303174,1.458809,1.369386 +-0.752586,1.275026,-1.905595,-0.299444,1.457568,1.366899 +-0.752693,1.276150,-1.908573,-0.295739,1.456324,1.364405 +-0.752780,1.277274,-1.911499,-0.292058,1.455078,1.361902 +-0.752849,1.278399,-1.914373,-0.288402,1.453829,1.359392 +-0.752899,1.279524,-1.917195,-0.284771,1.452579,1.356876 +-0.752930,1.280649,-1.919965,-0.281164,1.451327,1.354352 +-0.752944,1.281773,-1.922683,-0.277582,1.450073,1.351822 +-0.752941,1.282897,-1.925349,-0.274024,1.448818,1.349287 +-0.752921,1.284019,-1.927963,-0.270489,1.447563,1.346746 +-0.752884,1.285141,-1.930525,-0.266979,1.446307,1.344199 +-0.752831,1.286260,-1.933035,-0.263493,1.445051,1.341648 +-0.752762,1.287378,-1.935492,-0.260030,1.443795,1.339093 +-0.752678,1.288493,-1.937897,-0.256591,1.442540,1.336533 +-0.752579,1.289605,-1.940251,-0.253176,1.441285,1.333970 +-0.752466,1.290714,-1.942552,-0.249784,1.440032,1.331403 +-0.752339,1.291820,-1.944801,-0.246415,1.438779,1.328833 +-0.752198,1.292922,-1.946998,-0.243069,1.437529,1.326261 +-0.752043,1.294021,-1.949143,-0.239745,1.436280,1.323686 +-0.751876,1.295114,-1.951235,-0.236445,1.435034,1.321109 +-0.751696,1.296203,-1.953276,-0.233167,1.433790,1.318531 +-0.751505,1.297287,-1.955264,-0.229912,1.432548,1.315952 +-0.751301,1.298366,-1.957201,-0.226679,1.431310,1.313372 +-0.751087,1.299438,-1.959085,-0.223468,1.430075,1.310791 +-0.750862,1.300505,-1.960918,-0.220279,1.428844,1.308210 +-0.750626,1.301565,-1.962699,-0.217112,1.427617,1.305629 +-0.750381,1.302619,-1.964427,-0.213966,1.426394,1.303049 +-0.750126,1.303665,-1.966104,-0.210842,1.425176,1.300470 +-0.749861,1.304704,-1.967729,-0.207739,1.423962,1.297892 +-0.749588,1.305735,-1.969303,-0.204657,1.422753,1.295316 +-0.749307,1.306758,-1.970824,-0.201597,1.421549,1.292742 +-0.749018,1.307772,-1.972294,-0.198557,1.420351,1.290170 +-0.748722,1.308778,-1.973712,-0.195538,1.419159,1.287601 +-0.748418,1.309774,-1.975079,-0.192539,1.417973,1.285035 +-0.748108,1.310761,-1.976394,-0.189560,1.416793,1.282472 +-0.747792,1.311738,-1.977658,-0.186602,1.415620,1.279912 +-0.747470,1.312704,-1.978870,-0.183663,1.414453,1.277357 +-0.747142,1.313660,-1.980031,-0.180744,1.413294,1.274806 +-0.746810,1.314605,-1.981141,-0.177845,1.412142,1.272260 +-0.746473,1.315539,-1.982200,-0.174965,1.410998,1.269719 +-0.746132,1.316461,-1.983207,-0.172104,1.409861,1.267184 +-0.745787,1.317371,-1.984164,-0.169262,1.408732,1.264654 +-0.745439,1.318269,-1.985070,-0.166438,1.407612,1.262130 +-0.745088,1.319154,-1.985924,-0.163633,1.406501,1.259613 +-0.744735,1.320026,-1.986728,-0.160847,1.405398,1.257102 +-0.744379,1.320884,-1.987482,-0.158079,1.404304,1.254598 +-0.744022,1.321729,-1.988185,-0.155328,1.403219,1.252102 +-0.743664,1.322560,-1.988837,-0.152596,1.402144,1.249613 +-0.743305,1.323376,-1.989439,-0.149881,1.401078,1.247133 +-0.742945,1.324177,-1.989991,-0.147183,1.400023,1.244661 +-0.742586,1.324963,-1.990492,-0.144503,1.398977,1.242197 +-0.742226,1.325734,-1.990944,-0.141839,1.397942,1.239742 +-0.741868,1.326489,-1.991345,-0.139192,1.396918,1.237297 +-0.741511,1.327227,-1.991697,-0.136561,1.395904,1.234861 +-0.741156,1.327949,-1.991999,-0.133947,1.394901,1.232436 +-0.740802,1.328654,-1.992252,-0.131349,1.393910,1.230020 +-0.740451,1.329342,-1.992455,-0.128766,1.392929,1.227615 +-0.740103,1.330012,-1.992608,-0.126199,1.391961,1.225221 +-0.739758,1.330664,-1.992713,-0.123648,1.391004,1.222838 +-0.739417,1.331298,-1.992768,-0.121112,1.390059,1.220466 +-0.739080,1.331913,-1.992774,-0.118590,1.389127,1.218107 +-0.738748,1.332509,-1.992731,-0.116084,1.388206,1.215759 +-0.738420,1.333085,-1.992640,-0.113592,1.387299,1.213424 +-0.738097,1.333642,-1.992500,-0.111114,1.386404,1.211101 +-0.737780,1.334179,-1.992312,-0.108650,1.385522,1.208791 +-0.737469,1.334696,-1.992075,-0.106200,1.384653,1.206494 +-0.737165,1.335191,-1.991791,-0.103763,1.383797,1.204211 +-0.736867,1.335666,-1.991458,-0.101340,1.382955,1.201942 +-0.736577,1.336119,-1.991077,-0.098930,1.382126,1.199687 +-0.736294,1.336550,-1.990649,-0.096533,1.381312,1.197446 +-0.736019,1.336959,-1.990173,-0.094148,1.380511,1.195219 +-0.735753,1.337346,-1.989650,-0.091776,1.379724,1.193008 +-0.735495,1.337710,-1.989079,-0.089416,1.378951,1.190812 +-0.735247,1.338051,-1.988461,-0.087068,1.378193,1.188631 +-0.735007,1.338368,-1.987797,-0.084732,1.377450,1.186466 +-0.734778,1.338661,-1.987086,-0.082407,1.376721,1.184317 +-0.734559,1.338931,-1.986328,-0.080093,1.376007,1.182184 +-0.734351,1.339175,-1.985523,-0.077790,1.375308,1.180068 +-0.734154,1.339395,-1.984673,-0.075498,1.374624,1.177968 +-0.733968,1.339590,-1.983776,-0.073216,1.373955,1.175886 +-0.733794,1.339759,-1.982833,-0.070944,1.373302,1.173821 +-0.733632,1.339903,-1.981845,-0.068683,1.372664,1.171773 +-0.733483,1.340020,-1.980811,-0.066431,1.372042,1.169743 +-0.733346,1.340111,-1.979732,-0.064188,1.371436,1.167731 +-0.733222,1.340175,-1.978607,-0.061955,1.370846,1.165737 +-0.733113,1.340212,-1.977438,-0.059731,1.370271,1.163762 +-0.733017,1.340221,-1.976223,-0.057515,1.369713,1.161805 +-0.732935,1.340203,-1.974964,-0.055308,1.369171,1.159868 +-0.732868,1.340157,-1.973661,-0.053109,1.368645,1.157949 +-0.732816,1.340082,-1.972313,-0.050919,1.368136,1.156050 +-0.732779,1.339978,-1.970921,-0.048735,1.367643,1.154171 +-0.732758,1.339846,-1.969485,-0.046560,1.367167,1.152311 +-0.732753,1.339684,-1.968005,-0.044391,1.366707,1.150472 +-0.732764,1.339493,-1.966482,-0.042230,1.366264,1.148653 +-0.732792,1.339271,-1.964916,-0.040075,1.365839,1.146854 +-0.732837,1.339020,-1.963307,-0.037926,1.365430,1.145076 +-0.732899,1.338737,-1.961654,-0.035784,1.365038,1.143319 +-0.732979,1.338424,-1.959959,-0.033648,1.364663,1.141583 +-0.733077,1.338080,-1.958222,-0.031517,1.364306,1.139868 +-0.733194,1.337704,-1.956442,-0.029392,1.363965,1.138175 +-0.733329,1.337297,-1.954620,-0.027272,1.363642,1.136504 +-0.733483,1.336858,-1.952756,-0.025157,1.363337,1.134854 +-0.733656,1.336386,-1.950850,-0.023046,1.363049,1.133227 +-0.733849,1.335881,-1.948903,-0.020940,1.362778,1.131622 +-0.734061,1.335344,-1.946915,-0.018838,1.362525,1.130039 +-0.734294,1.334773,-1.944886,-0.016740,1.362289,1.128479 +-0.734548,1.334169,-1.942815,-0.014646,1.362071,1.126942 +-0.734822,1.333532,-1.940705,-0.012555,1.361871,1.125427 +-0.735117,1.332860,-1.938553,-0.010467,1.361689,1.123936 +-0.735434,1.332154,-1.936362,-0.008382,1.361524,1.122468 +-0.735773,1.331413,-1.934131,-0.006299,1.361377,1.121024 +-0.736133,1.330637,-1.931860,-0.004219,1.361248,1.119603 +-0.736516,1.329827,-1.929549,-0.002141,1.361136,1.118206 +-0.736921,1.328981,-1.927199,-0.000065,1.361043,1.116833 +-0.737349,1.328099,-1.924810,0.002010,1.360967,1.115484 +-0.737801,1.327181,-1.922382,0.004084,1.360909,1.114160 +-0.738275,1.326228,-1.919915,0.006156,1.360869,1.112859 +-0.738774,1.325238,-1.917411,0.008228,1.360847,1.111583 +-0.739296,1.324211,-1.914867,0.010299,1.360843,1.110332 +-0.739842,1.323147,-1.912286,0.012369,1.360857,1.109106 +-0.740413,1.322046,-1.909667,0.014440,1.360888,1.107904 +-0.741009,1.320908,-1.907011,0.016511,1.360938,1.106728 +-0.741630,1.319732,-1.904317,0.018582,1.361005,1.105576 +-0.742275,1.318518,-1.901587,0.020654,1.361090,1.104450 +-0.742947,1.317266,-1.898819,0.022727,1.361193,1.103350 +-0.743644,1.315976,-1.896015,0.024802,1.361314,1.102274 +-0.744367,1.314647,-1.893175,0.026878,1.361452,1.101225 +-0.745116,1.313280,-1.890298,0.028955,1.361609,1.100201 +-0.745891,1.311873,-1.887386,0.031035,1.361783,1.099203 +-0.746693,1.310427,-1.884438,0.033117,1.361974,1.098230 +-0.747522,1.308942,-1.881455,0.035201,1.362184,1.097284 +-0.748379,1.307417,-1.878436,0.037288,1.362410,1.096364 +-0.749262,1.305853,-1.875383,0.039378,1.362655,1.095470 +-0.750173,1.304248,-1.872294,0.041471,1.362917,1.094602 +-0.751112,1.302603,-1.869172,0.043568,1.363196,1.093760 +-0.752078,1.300917,-1.866015,0.045669,1.363493,1.092945 +-0.753073,1.299191,-1.862824,0.047773,1.363807,1.092157 +-0.754096,1.297424,-1.859599,0.049882,1.364138,1.091395 +-0.755148,1.295615,-1.856341,0.051995,1.364487,1.090659 +-0.756228,1.293766,-1.853049,0.054113,1.364853,1.089950 +-0.757337,1.291875,-1.849725,0.056236,1.365235,1.089268 +-0.758476,1.289943,-1.846368,0.058364,1.365635,1.088613 +-0.759643,1.287968,-1.842978,0.060498,1.366052,1.087984 +-0.760841,1.285952,-1.839556,0.062637,1.366485,1.087383 +-0.762067,1.283894,-1.836101,0.064782,1.366935,1.086808 +-0.763324,1.281794,-1.832615,0.066933,1.367402,1.086260 +-0.764611,1.279651,-1.829097,0.069091,1.367885,1.085739 +-0.765927,1.277465,-1.825548,0.071255,1.368385,1.085245 +-0.767274,1.275237,-1.821968,0.073427,1.368901,1.084778 +-0.768652,1.272965,-1.818357,0.075605,1.369433,1.084338 +-0.770060,1.270651,-1.814716,0.077791,1.369982,1.083926 +-0.771498,1.268294,-1.811044,0.079984,1.370546,1.083540 +-0.772968,1.265893,-1.807341,0.082185,1.371126,1.083182 +-0.774469,1.263449,-1.803609,0.084394,1.371723,1.082850 +-0.776000,1.260961,-1.799847,0.086611,1.372334,1.082546 +-0.777564,1.258429,-1.796056,0.088837,1.372962,1.082269 +-0.779158,1.255854,-1.792236,0.091072,1.373604,1.082018 +-0.780784,1.253235,-1.788386,0.093315,1.374262,1.081796 +-0.782442,1.250571,-1.784508,0.095568,1.374936,1.081600 +-0.784131,1.247864,-1.780602,0.097830,1.375624,1.081431 +-0.785852,1.245112,-1.776667,0.100102,1.376327,1.081289 +-0.787605,1.242315,-1.772704,0.102383,1.377045,1.081174 +-0.789391,1.239475,-1.768714,0.104675,1.377777,1.081087 +-0.791208,1.236589,-1.764696,0.106977,1.378524,1.081026 +-0.793058,1.233659,-1.760650,0.109289,1.379285,1.080992 +-0.794940,1.230684,-1.756578,0.111612,1.380060,1.080985 +-0.796854,1.227664,-1.752479,0.113946,1.380849,1.081006 +-0.798801,1.224600,-1.748353,0.116291,1.381652,1.081052 +-0.800781,1.221490,-1.744201,0.118647,1.382469,1.081126 +-0.802793,1.218335,-1.740023,0.121015,1.383299,1.081227 +-0.804838,1.215135,-1.735819,0.123394,1.384142,1.081354 +-0.806915,1.211890,-1.731589,0.125786,1.384999,1.081507 +-0.809026,1.208600,-1.727334,0.128189,1.385869,1.081688 +-0.811169,1.205264,-1.723054,0.130605,1.386751,1.081894 +-0.813346,1.201883,-1.718749,0.133034,1.387646,1.082128 +-0.815555,1.198456,-1.714419,0.135475,1.388553,1.082387 +-0.817797,1.194984,-1.710064,0.137929,1.389472,1.082673 +-0.820073,1.191467,-1.705686,0.140397,1.390404,1.082985 +-0.822381,1.187903,-1.701283,0.142877,1.391347,1.083323 +-0.824723,1.184295,-1.696857,0.145371,1.392302,1.083688 +-0.827097,1.180641,-1.692407,0.147879,1.393269,1.084078 +-0.829505,1.176941,-1.687934,0.150401,1.394247,1.084494 +-0.831946,1.173195,-1.683438,0.152937,1.395235,1.084936 +-0.834420,1.169404,-1.678919,0.155487,1.396235,1.085403 +-0.836928,1.165567,-1.674377,0.158052,1.397245,1.085896 +-0.839468,1.161684,-1.669813,0.160631,1.398266,1.086414 +-0.842042,1.157756,-1.665227,0.163225,1.399296,1.086958 +-0.844649,1.153782,-1.660619,0.165834,1.400337,1.087527 +-0.847289,1.149763,-1.655989,0.168458,1.401387,1.088121 +-0.849963,1.145698,-1.651338,0.171097,1.402447,1.088740 +-0.852669,1.141587,-1.646665,0.173752,1.403517,1.089383 +-0.855409,1.137431,-1.641971,0.176423,1.404595,1.090052 +-0.858181,1.133229,-1.637256,0.179109,1.405682,1.090745 +-0.860987,1.128982,-1.632521,0.181812,1.406778,1.091462 +-0.863826,1.124689,-1.627766,0.184530,1.407882,1.092204 +-0.866697,1.120350,-1.622990,0.187265,1.408995,1.092970 +-0.869602,1.115966,-1.618194,0.190017,1.410115,1.093759 +-0.872540,1.111537,-1.613378,0.192785,1.411243,1.094573 +-0.875510,1.107063,-1.608543,0.195570,1.412378,1.095410 +-0.878513,1.102543,-1.603689,0.198372,1.413520,1.096271 +-0.881549,1.097978,-1.598815,0.201190,1.414669,1.097156 +-0.884617,1.093368,-1.593923,0.204027,1.415825,1.098063 +-0.887718,1.088713,-1.589011,0.206880,1.416988,1.098994 +-0.890851,1.084013,-1.584082,0.209751,1.418156,1.099947 +-0.894017,1.079268,-1.579134,0.212640,1.419330,1.100923 +-0.897216,1.074478,-1.574167,0.215546,1.420510,1.101922 +-0.900446,1.069644,-1.569183,0.218471,1.421696,1.102942 +-0.903708,1.064765,-1.564182,0.221413,1.422886,1.103985 +-0.907003,1.059841,-1.559162,0.224374,1.424081,1.105050 +-0.910330,1.054873,-1.554126,0.227353,1.425281,1.106137 +-0.913688,1.049861,-1.549072,0.230351,1.426485,1.107246 +-0.917078,1.044804,-1.544002,0.233367,1.427693,1.108375 +-0.920500,1.039703,-1.538915,0.236402,1.428905,1.109526 +-0.923953,1.034559,-1.533811,0.239456,1.430120,1.110698 +-0.927437,1.029370,-1.528691,0.242529,1.431338,1.111891 +-0.930953,1.024138,-1.523555,0.245620,1.432560,1.113104 +-0.934500,1.018862,-1.518403,0.248732,1.433783,1.114337 +-0.938078,1.013543,-1.513235,0.251862,1.435010,1.115591 +-0.941687,1.008180,-1.508052,0.255012,1.436238,1.116864 +-0.945326,1.002775,-1.502853,0.258181,1.437468,1.118158 +-0.948996,0.997326,-1.497639,0.261370,1.438699,1.119470 +-0.952696,0.991835,-1.492410,0.264579,1.439932,1.120802 +-0.956427,0.986300,-1.487167,0.267807,1.441165,1.122153 +-0.960187,0.980724,-1.481908,0.271056,1.442399,1.123523 +-0.963978,0.975105,-1.476636,0.274324,1.443633,1.124911 +-0.967798,0.969443,-1.471349,0.277613,1.444867,1.126317 +-0.971648,0.963740,-1.466047,0.280921,1.446101,1.127742 +-0.975527,0.957995,-1.460732,0.284251,1.447334,1.129184 +-0.979436,0.952208,-1.455403,0.287600,1.448567,1.130644 +-0.983373,0.946380,-1.450061,0.290970,1.449798,1.132121 +-0.987340,0.940511,-1.444705,0.294361,1.451027,1.133615 +-0.991335,0.934600,-1.439336,0.297772,1.452255,1.135126 +-0.995358,0.928649,-1.433954,0.301204,1.453481,1.136653 +-0.999410,0.922657,-1.428559,0.304656,1.454704,1.138197 +-1.003489,0.916625,-1.423151,0.308130,1.455924,1.139757 +-1.007597,0.910553,-1.417730,0.311624,1.457141,1.141332 +-1.011732,0.904440,-1.412297,0.315140,1.458355,1.142923 +-1.015895,0.898288,-1.406852,0.318676,1.459565,1.144529 +-1.020085,0.892097,-1.401395,0.322234,1.460771,1.146150 +-1.024301,0.885866,-1.395926,0.325813,1.461973,1.147786 +-1.028545,0.879596,-1.390445,0.329413,1.463170,1.149436 +-1.032815,0.873287,-1.384952,0.333034,1.464362,1.151099 +-1.037111,0.866940,-1.379448,0.336677,1.465548,1.152777 +-1.041434,0.860554,-1.373932,0.340341,1.466729,1.154468 +-1.045782,0.854131,-1.368405,0.344026,1.467904,1.156173 +-1.050156,0.847669,-1.362867,0.347733,1.469073,1.157890 +-1.054555,0.841170,-1.357318,0.351461,1.470235,1.159620 +-1.058979,0.834634,-1.351759,0.355211,1.471391,1.161362 +-1.063428,0.828061,-1.346188,0.358983,1.472539,1.163117 +-1.067901,0.821451,-1.340607,0.362776,1.473679,1.164882 +-1.072399,0.814805,-1.335016,0.366591,1.474811,1.166660 +-1.076920,0.808123,-1.329415,0.370428,1.475936,1.168448 +-1.081466,0.801405,-1.323803,0.374286,1.477051,1.170247 +-1.086035,0.794651,-1.318182,0.378166,1.478158,1.172057 +-1.090627,0.787862,-1.312550,0.382067,1.479256,1.173877 +-1.095242,0.781039,-1.306909,0.385991,1.480344,1.175706 +-1.099879,0.774180,-1.301258,0.389936,1.481422,1.177546 +-1.104539,0.767288,-1.295598,0.393903,1.482490,1.179394 +-1.109221,0.760361,-1.289928,0.397892,1.483547,1.181251 +-1.113925,0.753400,-1.284250,0.401903,1.484594,1.183117 +-1.118650,0.746407,-1.278562,0.405935,1.485629,1.184991 +-1.123396,0.739380,-1.272865,0.409990,1.486653,1.186873 +-1.128163,0.732320,-1.267159,0.414066,1.487665,1.188762 +-1.132951,0.725229,-1.261444,0.418164,1.488665,1.190659 +-1.137758,0.718105,-1.255721,0.422284,1.489652,1.192563 +-1.142586,0.710949,-1.249989,0.426425,1.490626,1.194473 +-1.147433,0.703762,-1.244249,0.430589,1.491587,1.196390 +-1.152300,0.696544,-1.238500,0.434774,1.492535,1.198312 +-1.157185,0.689296,-1.232743,0.438981,1.493469,1.200240 +-1.162090,0.682017,-1.226978,0.443210,1.494388,1.202173 +-1.167012,0.674708,-1.221205,0.447460,1.495293,1.204111 +-1.171952,0.667370,-1.215424,0.451732,1.496183,1.206053 +-1.176910,0.660002,-1.209635,0.456026,1.497058,1.208000 +-1.181886,0.652606,-1.203838,0.460342,1.497917,1.209951 +-1.186878,0.645181,-1.198034,0.464679,1.498761,1.211905 +-1.191887,0.637728,-1.192222,0.469038,1.499588,1.213862 +-1.196912,0.630248,-1.186402,0.473418,1.500399,1.215822 +-1.201953,0.622740,-1.180576,0.477820,1.501193,1.217784 +-1.207009,0.615205,-1.174741,0.482243,1.501969,1.219748 +-1.212081,0.607644,-1.168900,0.486688,1.502728,1.221714 +-1.217168,0.600056,-1.163051,0.491154,1.503470,1.223682 +-1.222269,0.592443,-1.157196,0.495641,1.504193,1.225650 +-1.227384,0.584805,-1.151333,0.500150,1.504897,1.227619 +-1.232513,0.577141,-1.145464,0.504680,1.505583,1.229589 +-1.237655,0.569454,-1.139587,0.509231,1.506249,1.231558 +-1.242810,0.561742,-1.133704,0.513804,1.506896,1.233527 +-1.247978,0.554006,-1.127814,0.518397,1.507524,1.235494 +-1.253159,0.546247,-1.121918,0.523012,1.508131,1.237461 +-1.258351,0.538465,-1.116015,0.527647,1.508717,1.239426 +-1.263554,0.530661,-1.110105,0.532303,1.509283,1.241390 +-1.268769,0.522835,-1.104189,0.536980,1.509827,1.243351 +-1.273994,0.514987,-1.098267,0.541678,1.510350,1.245309 +-1.279230,0.507119,-1.092338,0.546397,1.510852,1.247264 +-1.284476,0.499229,-1.086403,0.551136,1.511331,1.249216 +-1.289731,0.491320,-1.080462,0.555895,1.511788,1.251164 +-1.294996,0.483390,-1.074515,0.560675,1.512222,1.253108 +-1.300269,0.475441,-1.068561,0.565476,1.512632,1.255048 +-1.305551,0.467473,-1.062602,0.570296,1.513020,1.256982 +-1.310841,0.459487,-1.056637,0.575137,1.513384,1.258912 +-1.316138,0.451483,-1.050665,0.579998,1.513723,1.260835 +-1.321442,0.443461,-1.044688,0.584878,1.514039,1.262753 +-1.326754,0.435423,-1.038705,0.589779,1.514330,1.264664 +-1.332071,0.427367,-1.032716,0.594700,1.514595,1.266568 +-1.337395,0.419296,-1.026721,0.599640,1.514836,1.268466 +-1.342724,0.411209,-1.020721,0.604599,1.515051,1.270355 +-1.348058,0.403106,-1.014714,0.609579,1.515240,1.272237 +-1.353397,0.394989,-1.008703,0.614577,1.515403,1.274111 +-1.358740,0.386858,-1.002685,0.619595,1.515539,1.275975 +-1.364087,0.378712,-0.996662,0.624632,1.515648,1.277831 +-1.369438,0.370554,-0.990633,0.629688,1.515730,1.279678 +-1.374792,0.362383,-0.984599,0.634763,1.515785,1.281514 +-1.380148,0.354199,-0.978559,0.639856,1.515812,1.283341 +-1.385507,0.346004,-0.972514,0.644969,1.515812,1.285156 +-1.390867,0.337797,-0.966463,0.650100,1.515782,1.286961 +-1.396228,0.329579,-0.960407,0.655249,1.515724,1.288755 +-1.401591,0.321351,-0.954346,0.660416,1.515638,1.290537 +-1.406954,0.313114,-0.948279,0.665602,1.515522,1.292306 +-1.412317,0.304866,-0.942207,0.670806,1.515376,1.294064 +-1.417680,0.296610,-0.936129,0.676028,1.515201,1.295808 +-1.423042,0.288346,-0.930046,0.681267,1.514995,1.297539 +-1.428403,0.280074,-0.923957,0.686524,1.514759,1.299257 +-1.433762,0.271794,-0.917864,0.691799,1.514493,1.300960 +-1.439119,0.263508,-0.911765,0.697091,1.514196,1.302650 +-1.444473,0.255215,-0.905660,0.702400,1.513867,1.304324 +-1.449824,0.246916,-0.899551,0.707726,1.513507,1.305984 +-1.455172,0.238612,-0.893436,0.713069,1.513115,1.307627 +-1.460517,0.230304,-0.887316,0.718429,1.512691,1.309255 +-1.465856,0.221991,-0.881190,0.723806,1.512235,1.310867 +-1.471192,0.213674,-0.875059,0.729199,1.511746,1.312462 +-1.476521,0.205354,-0.868923,0.734608,1.511224,1.314040 +-1.481846,0.197032,-0.862782,0.740033,1.510670,1.315601 +-1.487164,0.188707,-0.856635,0.745475,1.510081,1.317144 +-1.492476,0.180381,-0.850483,0.750932,1.509460,1.318669 +-1.497780,0.172053,-0.844326,0.756405,1.508804,1.320175 +-1.503078,0.163725,-0.838163,0.761893,1.508114,1.321663 +-1.508367,0.155397,-0.831995,0.767397,1.507390,1.323131 +-1.513648,0.147069,-0.825822,0.772916,1.506631,1.324579 +-1.518921,0.138742,-0.819643,0.778449,1.505837,1.326008 +-1.524184,0.130417,-0.813459,0.783998,1.505007,1.327416 +-1.529438,0.122094,-0.807270,0.789561,1.504143,1.328804 +-1.534681,0.113773,-0.801075,0.795139,1.503243,1.330170 +-1.539914,0.105456,-0.794875,0.800731,1.502307,1.331515 +-1.545136,0.097142,-0.788670,0.806337,1.501334,1.332838 +-1.550347,0.088833,-0.782459,0.811957,1.500326,1.334139 +-1.555546,0.080528,-0.776242,0.817591,1.499280,1.335417 +-1.560732,0.072229,-0.770021,0.823238,1.498198,1.336673 +-1.565906,0.063935,-0.763793,0.828899,1.497079,1.337905 +-1.571066,0.055648,-0.757560,0.834573,1.495923,1.339113 +-1.576213,0.047367,-0.751322,0.840259,1.494729,1.340298 +-1.581345,0.039095,-0.745078,0.845959,1.493497,1.341458 +-1.586463,0.030830,-0.738828,0.851671,1.492227,1.342593 +-1.591566,0.022573,-0.732573,0.857396,1.490919,1.343704 +-1.596654,0.014326,-0.726312,0.863133,1.489573,1.344789 +-1.601725,0.006089,-0.720046,0.868881,1.488188,1.345848 +-1.606781,-0.002139,-0.713774,0.874642,1.486765,1.346881 +-1.611819,-0.010355,-0.707496,0.880414,1.485302,1.347887 +-1.616840,-0.018560,-0.701212,0.886198,1.483800,1.348867 +-1.621844,-0.026754,-0.694922,0.891993,1.482259,1.349819 +-1.626829,-0.034935,-0.688627,0.897799,1.480678,1.350744 +-1.631796,-0.043103,-0.682326,0.903616,1.479057,1.351641 +-1.636744,-0.051258,-0.676018,0.909443,1.477397,1.352510 +-1.641672,-0.059398,-0.669705,0.915281,1.475696,1.353351 +-1.646580,-0.067524,-0.663386,0.921129,1.473955,1.354162 +-1.651468,-0.075635,-0.657061,0.926987,1.472173,1.354945 +-1.656336,-0.083731,-0.650730,0.932854,1.470351,1.355697 +-1.661181,-0.091810,-0.644392,0.938731,1.468488,1.356420 +-1.666006,-0.099872,-0.638049,0.944618,1.466583,1.357113 +-1.670808,-0.107917,-0.631699,0.950513,1.464638,1.357775 +-1.675587,-0.115944,-0.625343,0.956418,1.462651,1.358406 +-1.680344,-0.123953,-0.618981,0.962331,1.460622,1.359006 +-1.685077,-0.131942,-0.612613,0.968253,1.458552,1.359575 +-1.689786,-0.139912,-0.606238,0.974182,1.456440,1.360111 +-1.694471,-0.147863,-0.599857,0.980120,1.454286,1.360616 +-1.699131,-0.155792,-0.593469,0.986066,1.452090,1.361088 +-1.703767,-0.163701,-0.587075,0.992019,1.449852,1.361527 +-1.708376,-0.171587,-0.580674,0.997980,1.447571,1.361933 +-1.712959,-0.179452,-0.574267,1.003947,1.445247,1.362306 +-1.717516,-0.187293,-0.567853,1.009922,1.442881,1.362645 +-1.722046,-0.195112,-0.561432,1.015903,1.440472,1.362950 +-1.726549,-0.202906,-0.555005,1.021891,1.438020,1.363220 +-1.731024,-0.210676,-0.548571,1.027885,1.435524,1.363456 +-1.735471,-0.218421,-0.542130,1.033884,1.432986,1.363657 +-1.739889,-0.226141,-0.535682,1.039890,1.430404,1.363823 +-1.744279,-0.233835,-0.529227,1.045901,1.427779,1.363953 +-1.748639,-0.241502,-0.522765,1.051917,1.425110,1.364048 +-1.752969,-0.249142,-0.516296,1.057939,1.422398,1.364106 +-1.757268,-0.256754,-0.509820,1.063965,1.419641,1.364128 +-1.761538,-0.264338,-0.503337,1.069995,1.416841,1.364113 +-1.765776,-0.271894,-0.496847,1.076030,1.413997,1.364061 +-1.769982,-0.279420,-0.490350,1.082070,1.411109,1.363972 +-1.774157,-0.286916,-0.483845,1.088113,1.408176,1.363846 +-1.778300,-0.294383,-0.477332,1.094159,1.405199,1.363682 +-1.782409,-0.301818,-0.470813,1.100209,1.402178,1.363479 +-1.786486,-0.309222,-0.464286,1.106262,1.399113,1.363239 +-1.790529,-0.316594,-0.457751,1.112318,1.396003,1.362959 +-1.794538,-0.323934,-0.451209,1.118377,1.392848,1.362641 +-1.798513,-0.331240,-0.444659,1.124438,1.389649,1.362284 +-1.802454,-0.338514,-0.438102,1.130502,1.386405,1.361887 +-1.806359,-0.345753,-0.431537,1.136567,1.383116,1.361451 +-1.810229,-0.352958,-0.424964,1.142634,1.379782,1.360975 +-1.814062,-0.360128,-0.418383,1.148702,1.376404,1.360458 +-1.817860,-0.367262,-0.411794,1.154772,1.372981,1.359902 +-1.821621,-0.374361,-0.405197,1.160842,1.369512,1.359304 +-1.825345,-0.381423,-0.398593,1.166913,1.365999,1.358666 +-1.829032,-0.388447,-0.391980,1.172985,1.362440,1.357987 +-1.832681,-0.395435,-0.385359,1.179057,1.358836,1.357266 +-1.836292,-0.402384,-0.378730,1.185129,1.355187,1.356504 +-1.839864,-0.409294,-0.372093,1.191201,1.351493,1.355700 +-1.843397,-0.416166,-0.365447,1.197272,1.347754,1.354853 +-1.846892,-0.422998,-0.358793,1.203342,1.343970,1.353965 +-1.850346,-0.429790,-0.352131,1.209412,1.340140,1.353034 +-1.853761,-0.436542,-0.345460,1.215480,1.336265,1.352061 +-1.857135,-0.443252,-0.338781,1.221546,1.332345,1.351044 +-1.860469,-0.449921,-0.332094,1.227611,1.328379,1.349985 +-1.863762,-0.456548,-0.325397,1.233674,1.324369,1.348882 +-1.867013,-0.463132,-0.318692,1.239735,1.320313,1.347735 +-1.870223,-0.469674,-0.311979,1.245793,1.316211,1.346545 +-1.873390,-0.476172,-0.305256,1.251849,1.312065,1.345311 +-1.876515,-0.482626,-0.298525,1.257901,1.307873,1.344033 +-1.879598,-0.489036,-0.291785,1.263950,1.303636,1.342710 +-1.882637,-0.495401,-0.285036,1.269996,1.299353,1.341343 +-1.885633,-0.501720,-0.278278,1.276038,1.295026,1.339932 +-1.888585,-0.507994,-0.271511,1.282076,1.290653,1.338475 +-1.891493,-0.514221,-0.264735,1.288110,1.286235,1.336974 +-1.894357,-0.520402,-0.257950,1.294139,1.281772,1.335427 +-1.897176,-0.526536,-0.251156,1.300164,1.277264,1.333835 +-1.899950,-0.532622,-0.244353,1.306184,1.272711,1.332197 +-1.902679,-0.538660,-0.237540,1.312199,1.268113,1.330514 +-1.905362,-0.544649,-0.230719,1.318208,1.263470,1.328784 +-1.907999,-0.550589,-0.223887,1.324211,1.258782,1.327009 +-1.910589,-0.556480,-0.217047,1.330209,1.254049,1.325187 +-1.913134,-0.562321,-0.210197,1.336200,1.249272,1.323320 +-1.915631,-0.568112,-0.203337,1.342185,1.244449,1.321405 +-1.918081,-0.573852,-0.196469,1.348163,1.239583,1.319444 +-1.920484,-0.579541,-0.189590,1.354134,1.234671,1.317437 +-1.922839,-0.585178,-0.182702,1.360098,1.229715,1.315382 +-1.925146,-0.590764,-0.175804,1.366055,1.224715,1.313281 +-1.927404,-0.596297,-0.168897,1.372004,1.219670,1.311132 +-1.929615,-0.601777,-0.161980,1.377945,1.214582,1.308936 +-1.931776,-0.607203,-0.155053,1.383878,1.209449,1.306693 +-1.933888,-0.612577,-0.148117,1.389803,1.204272,1.304402 +-1.935951,-0.617896,-0.141171,1.395719,1.199051,1.302063 +-1.937964,-0.623160,-0.134214,1.401626,1.193786,1.299677 +-1.939927,-0.628370,-0.127248,1.407524,1.188477,1.297243 +-1.941840,-0.633525,-0.120272,1.413413,1.183125,1.294761 +-1.943702,-0.638624,-0.113287,1.419292,1.177729,1.292231 +-1.945514,-0.643666,-0.106291,1.425162,1.172290,1.289652 +-1.947275,-0.648653,-0.099285,1.431021,1.166808,1.287026 +-1.948985,-0.653582,-0.092269,1.436870,1.161282,1.284351 +-1.950643,-0.658455,-0.085243,1.442709,1.155714,1.281628 +-1.952250,-0.663270,-0.078207,1.448536,1.150102,1.278856 +-1.953804,-0.668027,-0.071161,1.454353,1.144448,1.276036 +-1.955307,-0.672725,-0.064105,1.460159,1.138751,1.273167 +-1.956757,-0.677365,-0.057038,1.465953,1.133012,1.270250 +-1.958155,-0.681947,-0.049962,1.471735,1.127230,1.267284 +-1.959500,-0.686468,-0.042875,1.477506,1.121406,1.264269 +-1.960792,-0.690930,-0.035778,1.483264,1.115540,1.261205 +-1.962031,-0.695332,-0.028671,1.489010,1.109632,1.258092 +-1.963217,-0.699674,-0.021553,1.494743,1.103683,1.254930 +-1.964349,-0.703955,-0.014425,1.500464,1.097692,1.251719 +-1.965427,-0.708175,-0.007287,1.506171,1.091659,1.248459 +-1.966451,-0.712333,-0.000139,1.511865,1.085586,1.245150 +-1.967421,-0.716430,0.007020,1.517546,1.079471,1.241792 +-1.968337,-0.720465,0.014189,1.523213,1.073316,1.238385 +-1.969198,-0.724437,0.021368,1.528866,1.067120,1.234928 +-1.970004,-0.728347,0.028558,1.534504,1.060883,1.231422 +-1.970756,-0.732194,0.035758,1.540129,1.054606,1.227867 +-1.971452,-0.735977,0.042968,1.545738,1.048289,1.224263 +-1.972093,-0.739698,0.050189,1.551333,1.041932,1.220610 +-1.972679,-0.743354,0.057420,1.556913,1.035536,1.216907 +-1.973209,-0.746946,0.064661,1.562477,1.029100,1.213155 +-1.973684,-0.750474,0.071913,1.568026,1.022624,1.209354 +-1.974103,-0.753937,0.079175,1.573559,1.016110,1.205503 +-1.974466,-0.757335,0.086447,1.579077,1.009556,1.201604 +-1.974772,-0.760668,0.093730,1.584578,1.002964,1.197655 +-1.975023,-0.763935,0.101023,1.590063,0.996334,1.193657 +-1.975217,-0.767137,0.108327,1.595531,0.989665,1.189609 +-1.975354,-0.770272,0.115640,1.600982,0.982959,1.185513 +-1.975435,-0.773342,0.122965,1.606417,0.976215,1.181367 +-1.975460,-0.776344,0.130299,1.611834,0.969433,1.177172 +-1.975427,-0.779280,0.137643,1.617234,0.962614,1.172928 +-1.975337,-0.782150,0.144998,1.622616,0.955757,1.168636 +-1.975190,-0.784952,0.152363,1.627981,0.948865,1.164294 +-1.974986,-0.787686,0.159739,1.633328,0.941935,1.159903 +-1.974725,-0.790353,0.167124,1.638656,0.934969,1.155463 +-1.974407,-0.792952,0.174520,1.643966,0.927968,1.150975 +-1.974030,-0.795482,0.181926,1.649257,0.920930,1.146438 +-1.973597,-0.797945,0.189342,1.654530,0.913857,1.141852 +-1.973106,-0.800339,0.196768,1.659783,0.906749,1.137217 +-1.972557,-0.802664,0.204204,1.665018,0.899605,1.132534 +-1.971950,-0.804921,0.211650,1.670233,0.892427,1.127802 +-1.971285,-0.807108,0.219106,1.675428,0.885215,1.123022 +-1.970563,-0.809226,0.226572,1.680604,0.877968,1.118194 +-1.969782,-0.811275,0.234048,1.685760,0.870688,1.113317 +-1.968944,-0.813254,0.241534,1.690896,0.863374,1.108393 +-1.968047,-0.815163,0.249029,1.696011,0.856026,1.103420 +-1.967092,-0.817002,0.256535,1.701106,0.848646,1.098399 +-1.966079,-0.818772,0.264050,1.706181,0.841232,1.093331 +-1.965008,-0.820471,0.271575,1.711234,0.833787,1.088214 +-1.963879,-0.822099,0.279109,1.716267,0.826309,1.083050 +-1.962691,-0.823657,0.286654,1.721278,0.818799,1.077839 +-1.961445,-0.825145,0.294207,1.726268,0.811258,1.072580 +-1.960141,-0.826561,0.301770,1.731236,0.803685,1.067274 +-1.958779,-0.827907,0.309343,1.736183,0.796081,1.061921 +-1.957358,-0.829181,0.316925,1.741108,0.788447,1.056520 +-1.955878,-0.830385,0.324516,1.746011,0.780783,1.051073 +-1.954341,-0.831517,0.332117,1.750891,0.773088,1.045579 +-1.952745,-0.832578,0.339726,1.755750,0.765364,1.040039 +-1.951091,-0.833567,0.347345,1.760585,0.757611,1.034452 +-1.949378,-0.834484,0.354973,1.765398,0.749828,1.028819 +-1.947607,-0.835330,0.362610,1.770189,0.742017,1.023139 +-1.945778,-0.836105,0.370256,1.774956,0.734177,1.017414 +-1.943891,-0.836807,0.377910,1.779700,0.726309,1.011643 +-1.941945,-0.837438,0.385573,1.784421,0.718414,1.005826 +-1.939941,-0.837996,0.393245,1.789118,0.710491,0.999963 +-1.937879,-0.838483,0.400926,1.793792,0.702541,0.994055 +-1.935759,-0.838897,0.408615,1.798442,0.694564,0.988102 +-1.933580,-0.839239,0.416312,1.803068,0.686561,0.982104 +-1.931344,-0.839510,0.424018,1.807670,0.678532,0.976062 +-1.929050,-0.839707,0.431732,1.812247,0.670478,0.969974 +-1.926698,-0.839833,0.439454,1.816801,0.662397,0.963842 +-1.924287,-0.839886,0.447185,1.821330,0.654292,0.957666 +-1.921820,-0.839867,0.454923,1.825834,0.646163,0.951446 +-1.919294,-0.839776,0.462669,1.830314,0.638009,0.945182 +-1.916711,-0.839612,0.470423,1.834769,0.629831,0.938875 +-1.914070,-0.839376,0.478184,1.839198,0.621630,0.932524 +-1.911371,-0.839068,0.485953,1.843603,0.613405,0.926129 +-1.908616,-0.838687,0.493730,1.847983,0.605158,0.919692 +-1.905803,-0.838234,0.501513,1.852337,0.596888,0.913212 +-1.902932,-0.837708,0.509304,1.856665,0.588596,0.906689 +-1.900005,-0.837111,0.517102,1.860968,0.580283,0.900124 +-1.897021,-0.836440,0.524907,1.865245,0.571948,0.893517 +-1.893979,-0.835698,0.532719,1.869496,0.563592,0.886868 +-1.890881,-0.834883,0.540538,1.873722,0.555216,0.880177 +-1.887726,-0.833997,0.548363,1.877921,0.546819,0.873445 +-1.884515,-0.833038,0.556195,1.882094,0.538403,0.866672 +-1.881247,-0.832007,0.564033,1.886240,0.529967,0.859858 +-1.877924,-0.830903,0.571878,1.890361,0.521512,0.853003 +-1.874543,-0.829728,0.579728,1.894454,0.513039,0.846108 +-1.871107,-0.828481,0.587585,1.898522,0.504547,0.839172 +-1.867615,-0.827162,0.595447,1.902562,0.496037,0.832197 +-1.864067,-0.825772,0.603315,1.906576,0.487510,0.825181 +-1.860464,-0.824309,0.611189,1.910562,0.478966,0.818127 +-1.856805,-0.822776,0.619068,1.914522,0.470405,0.811033 +-1.853091,-0.821170,0.626952,1.918454,0.461828,0.803901 +-1.849322,-0.819493,0.634842,1.922359,0.453235,0.796729 +-1.845498,-0.817745,0.642737,1.926237,0.444626,0.789520 +-1.841619,-0.815926,0.650636,1.930088,0.436002,0.782272 +-1.837686,-0.814036,0.658540,1.933911,0.427364,0.774987 +-1.833698,-0.812074,0.666448,1.937707,0.418711,0.767664 +-1.829656,-0.810042,0.674361,1.941475,0.410044,0.760305 +-1.825560,-0.807939,0.682278,1.945215,0.401364,0.752908 +-1.821410,-0.805766,0.690200,1.948927,0.392671,0.745474 +-1.817207,-0.803522,0.698125,1.952612,0.383965,0.738005 +-1.812950,-0.801208,0.706053,1.956268,0.375247,0.730499 +-1.808639,-0.798824,0.713986,1.959897,0.366516,0.722957 +-1.804276,-0.796370,0.721922,1.963498,0.357775,0.715381 +-1.799860,-0.793846,0.729860,1.967070,0.349022,0.707769 +-1.795391,-0.791253,0.737802,1.970614,0.340259,0.700122 +-1.790870,-0.788590,0.745747,1.974130,0.331486,0.692441 +-1.786296,-0.785858,0.753695,1.977618,0.322703,0.684725 +-1.781671,-0.783056,0.761645,1.981077,0.313910,0.676976 +-1.776994,-0.780186,0.769597,1.984507,0.305109,0.669194 +-1.772265,-0.777247,0.777551,1.987910,0.296299,0.661378 +-1.767485,-0.774240,0.785508,1.991283,0.287481,0.653529 +-1.762654,-0.771164,0.793466,1.994628,0.278655,0.645648 +-1.757773,-0.768021,0.801425,1.997945,0.269822,0.637735 +-1.752840,-0.764809,0.809386,2.001232,0.260982,0.629789 +-1.747858,-0.761530,0.817348,2.004491,0.252135,0.621813 +-1.742825,-0.758183,0.825311,2.007722,0.243283,0.613805 +-1.737743,-0.754769,0.833275,2.010923,0.234425,0.605766 +-1.732611,-0.751288,0.841240,2.014095,0.225562,0.597697 +-1.727430,-0.747741,0.849204,2.017239,0.216694,0.589597 +-1.722200,-0.744127,0.857169,2.020354,0.207821,0.581468 +-1.716921,-0.740447,0.865134,2.023439,0.198945,0.573309 +-1.711594,-0.736701,0.873099,2.026496,0.190066,0.565122 +-1.706218,-0.732889,0.881063,2.029523,0.181183,0.556905 +-1.700795,-0.729012,0.889026,2.032522,0.172298,0.548660 +-1.695324,-0.725069,0.896989,2.035492,0.163410,0.540388 +-1.689805,-0.721062,0.904950,2.038432,0.154521,0.532087 +-1.684240,-0.716990,0.912910,2.041343,0.145631,0.523759 +-1.678628,-0.712854,0.920868,2.044225,0.136739,0.515405 +-1.672970,-0.708654,0.928825,2.047078,0.127847,0.507024 +-1.667265,-0.704390,0.936779,2.049902,0.118955,0.498616 +-1.661515,-0.700062,0.944731,2.052697,0.110064,0.490183 +-1.655719,-0.695672,0.952681,2.055462,0.101173,0.481724 +-1.649877,-0.691218,0.960628,2.058199,0.092283,0.473241 +-1.643991,-0.686703,0.968572,2.060906,0.083395,0.464732 +-1.638061,-0.682125,0.976513,2.063584,0.074509,0.456200 +-1.632086,-0.677485,0.984450,2.066232,0.065626,0.447643 +-1.626067,-0.672783,0.992384,2.068852,0.056746,0.439063 +-1.620004,-0.668021,1.000313,2.071442,0.047869,0.430460 +-1.613899,-0.663197,1.008239,2.074003,0.038995,0.421834 +-1.607750,-0.658313,1.016160,2.076535,0.030126,0.413186 +-1.601558,-0.653369,1.024077,2.079038,0.021262,0.404516 +-1.595325,-0.648365,1.031988,2.081511,0.012402,0.395824 +-1.589049,-0.643302,1.039894,2.083956,0.003549,0.387111 +-1.582732,-0.638179,1.047795,2.086371,-0.005299,0.378378 +-1.576373,-0.632998,1.055690,2.088757,-0.014141,0.369624 +-1.569974,-0.627758,1.063580,2.091114,-0.022976,0.360849 +-1.563534,-0.622461,1.071463,2.093442,-0.031804,0.352056 +-1.557053,-0.617105,1.079339,2.095741,-0.040624,0.343243 +-1.550533,-0.611693,1.087209,2.098010,-0.049436,0.334412 +-1.543973,-0.606223,1.095072,2.100251,-0.058239,0.325562 +-1.537374,-0.600698,1.102928,2.102463,-0.067034,0.316694 +-1.530737,-0.595116,1.110776,2.104646,-0.075820,0.307809 +-1.524061,-0.589478,1.118616,2.106799,-0.084595,0.298906 +-1.517346,-0.583785,1.126448,2.108924,-0.093361,0.289987 +-1.510594,-0.578038,1.134272,2.111020,-0.102116,0.281051 +-1.503805,-0.572236,1.142087,2.113087,-0.110860,0.272100 +-1.496979,-0.566379,1.149894,2.115126,-0.119593,0.263133 +-1.490116,-0.560470,1.157691,2.117136,-0.128314,0.254151 +-1.483217,-0.554507,1.165478,2.119116,-0.137023,0.245155 +-1.476283,-0.548491,1.173256,2.121069,-0.145719,0.236144 +-1.469312,-0.542423,1.181024,2.122992,-0.154402,0.227119 +-1.462307,-0.536303,1.188782,2.124887,-0.163072,0.218081 +-1.455267,-0.530131,1.196529,2.126754,-0.171728,0.209030 +-1.448193,-0.523909,1.204265,2.128592,-0.180370,0.199967 +-1.441084,-0.517636,1.211990,2.130402,-0.188997,0.190891 +-1.433943,-0.511313,1.219704,2.132183,-0.197609,0.181804 +-1.426768,-0.504940,1.227405,2.133936,-0.206205,0.172706 +-1.419560,-0.498518,1.235095,2.135660,-0.214786,0.163596 +-1.412321,-0.492047,1.242773,2.137357,-0.223351,0.154476 +-1.405049,-0.485528,1.250437,2.139025,-0.231898,0.145346 +-1.397746,-0.478961,1.258089,2.140665,-0.240429,0.136207 +-1.390411,-0.472347,1.265728,2.142277,-0.248942,0.127059 +-1.383046,-0.465686,1.273353,2.143862,-0.257438,0.117901 +-1.375651,-0.458978,1.280964,2.145418,-0.265915,0.108736 +-1.368225,-0.452225,1.288561,2.146946,-0.274373,0.099562 +-1.360771,-0.445426,1.296144,2.148447,-0.282813,0.090382 +-1.353287,-0.438582,1.303712,2.149920,-0.291233,0.081194 +-1.345774,-0.431694,1.311265,2.151366,-0.299633,0.071999 +-1.338233,-0.424761,1.318803,2.152784,-0.308013,0.062799 +-1.330665,-0.417786,1.326325,2.154174,-0.316373,0.053593 +-1.323068,-0.410767,1.333831,2.155537,-0.324711,0.044381 +-1.315445,-0.403706,1.341320,2.156873,-0.333029,0.035165 +-1.307796,-0.396603,1.348793,2.158182,-0.341324,0.025944 +-1.300120,-0.389458,1.356250,2.159463,-0.349598,0.016720 +-1.292418,-0.382273,1.363689,2.160718,-0.357849,0.007491 +-1.284691,-0.375047,1.371110,2.161945,-0.366077,-0.001740 +-1.276939,-0.367781,1.378514,2.163146,-0.374282,-0.010974 +-1.269163,-0.360476,1.385899,2.164319,-0.382463,-0.020210 +-1.261363,-0.353132,1.393266,2.165467,-0.390621,-0.029448 +-1.253538,-0.345749,1.400614,2.166587,-0.398754,-0.038688 +-1.245691,-0.338329,1.407943,2.167681,-0.406863,-0.047928 +-1.237821,-0.330872,1.415253,2.168748,-0.414946,-0.057169 +-1.229929,-0.323378,1.422543,2.169790,-0.423004,-0.066410 +-1.222015,-0.315847,1.429813,2.170805,-0.431037,-0.075650 +-1.214079,-0.308281,1.437062,2.171793,-0.439043,-0.084890 +-1.206122,-0.300680,1.444291,2.172756,-0.447023,-0.094129 +-1.198145,-0.293044,1.451499,2.173693,-0.454976,-0.103366 +-1.190147,-0.285375,1.458685,2.174604,-0.462902,-0.112601 +-1.182130,-0.277671,1.465850,2.175489,-0.470800,-0.121833 +-1.174093,-0.269935,1.472992,2.176349,-0.478671,-0.131062 +-1.166037,-0.262167,1.480112,2.177183,-0.486514,-0.140289 +-1.157963,-0.254366,1.487210,2.177991,-0.494328,-0.149511 +-1.149871,-0.246535,1.494285,2.178775,-0.502113,-0.158729 +-1.141762,-0.238672,1.501336,2.179533,-0.509869,-0.167942 +-1.133635,-0.230780,1.508364,2.180266,-0.517595,-0.177151 +-1.125491,-0.222858,1.515367,2.180974,-0.525292,-0.186354 +-1.117331,-0.214907,1.522347,2.181657,-0.532959,-0.195550 +-1.109156,-0.206928,1.529301,2.182315,-0.540595,-0.204741 +-1.100965,-0.198920,1.536231,2.182949,-0.548200,-0.213925 +-1.092759,-0.190886,1.543136,2.183558,-0.555775,-0.223101 +-1.084538,-0.182824,1.550014,2.184142,-0.563317,-0.232270 +-1.076304,-0.174737,1.556867,2.184703,-0.570829,-0.241431 +-1.068056,-0.166623,1.563694,2.185239,-0.578308,-0.250584 +-1.059794,-0.158485,1.570494,2.185751,-0.585755,-0.259727 +-1.051520,-0.150323,1.577267,2.186239,-0.593169,-0.268861 +-1.043233,-0.142136,1.584013,2.186703,-0.600550,-0.277986 +-1.034935,-0.133927,1.590731,2.187144,-0.607898,-0.287100 +-1.026625,-0.125694,1.597421,2.187561,-0.615213,-0.296204 +-1.018304,-0.117440,1.604083,2.187954,-0.622493,-0.305297 +-1.009973,-0.109164,1.610716,2.188324,-0.629740,-0.314378 +-1.001631,-0.100867,1.617321,2.188671,-0.636952,-0.323448 +-0.993280,-0.092550,1.623896,2.188995,-0.644130,-0.332505 +-0.984919,-0.084213,1.630441,2.189296,-0.651272,-0.341550 +-0.976549,-0.075857,1.636957,2.189574,-0.658380,-0.350582 +-0.968171,-0.067482,1.643442,2.189829,-0.665452,-0.359600 +-0.959786,-0.059089,1.649897,2.190061,-0.672488,-0.368605 +-0.951392,-0.050679,1.656320,2.190271,-0.679488,-0.377595 +-0.942992,-0.042253,1.662713,2.190459,-0.686452,-0.386570 +-0.934584,-0.033809,1.669074,2.190625,-0.693379,-0.395531 +-0.926171,-0.025351,1.675403,2.190768,-0.700270,-0.404476 +-0.917752,-0.016877,1.681699,2.190889,-0.707123,-0.413405 +-0.909327,-0.008389,1.687964,2.190989,-0.713939,-0.422318 +-0.900897,0.000113,1.694195,2.191067,-0.720718,-0.431214 +-0.892463,0.008628,1.700393,2.191123,-0.727459,-0.440093 +-0.884025,0.017155,1.706557,2.191158,-0.734162,-0.448955 +-0.875583,0.025695,1.712688,2.191172,-0.740826,-0.457799 +-0.867138,0.034246,1.718784,2.191165,-0.747452,-0.466625 +-0.858690,0.042808,1.724846,2.191136,-0.754039,-0.475432 +-0.850240,0.051380,1.730873,2.191087,-0.760587,-0.484220 +-0.841787,0.059961,1.736864,2.191016,-0.767096,-0.492989 +-0.833334,0.068552,1.742820,2.190926,-0.773566,-0.501738 +-0.824879,0.077151,1.748740,2.190814,-0.779996,-0.510467 +-0.816423,0.085758,1.754625,2.190683,-0.786386,-0.519175 +-0.807967,0.094372,1.760472,2.190531,-0.792736,-0.527862 +-0.799511,0.102993,1.766283,2.190359,-0.799046,-0.536528 +-0.791056,0.111620,1.772056,2.190167,-0.805316,-0.545173 +-0.782602,0.120252,1.777792,2.189955,-0.811544,-0.553795 +-0.774149,0.128888,1.783491,2.189724,-0.817732,-0.562395 +-0.765698,0.137530,1.789151,2.189473,-0.823879,-0.570973 +-0.757249,0.146174,1.794773,2.189203,-0.829985,-0.579527 +-0.748803,0.154822,1.800355,2.188913,-0.836049,-0.588057 +-0.740359,0.163472,1.805899,2.188604,-0.842071,-0.596564 +-0.731920,0.172124,1.811404,2.188277,-0.848052,-0.605047 +-0.723484,0.180777,1.816869,2.187930,-0.853991,-0.613505 +-0.715052,0.189431,1.822293,2.187565,-0.859887,-0.621938 +-0.706625,0.198084,1.827678,2.187181,-0.865742,-0.630346 +-0.698203,0.206737,1.833022,2.186779,-0.871553,-0.638728 +-0.689786,0.215389,1.838324,2.186359,-0.877323,-0.647084 +-0.681375,0.224039,1.843586,2.185920,-0.883049,-0.655414 +-0.672970,0.232687,1.848806,2.185464,-0.888733,-0.663718 +-0.664572,0.241332,1.853984,2.184989,-0.894373,-0.671994 +-0.656181,0.249973,1.859120,2.184497,-0.899970,-0.680243 +-0.647798,0.258610,1.864213,2.183987,-0.905524,-0.688464 +-0.639422,0.267242,1.869264,2.183460,-0.911034,-0.696658 +-0.631055,0.275869,1.874272,2.182916,-0.916501,-0.704823 +-0.622695,0.284490,1.879236,2.182354,-0.921924,-0.712959 +-0.614345,0.293104,1.884156,2.181775,-0.927303,-0.721066 +-0.606005,0.301712,1.889033,2.181179,-0.932638,-0.729144 +-0.597673,0.310311,1.893865,2.180567,-0.937928,-0.737193 +-0.589352,0.318903,1.898652,2.179938,-0.943175,-0.745211 +-0.581042,0.327485,1.903395,2.179293,-0.948377,-0.753199 +-0.572742,0.336058,1.908092,2.178631,-0.953534,-0.761157 +-0.564453,0.344621,1.912744,2.177953,-0.958647,-0.769084 +-0.556176,0.353174,1.917350,2.177259,-0.963716,-0.776979 +-0.547911,0.361715,1.921911,2.176549,-0.968739,-0.784843 +-0.539658,0.370244,1.926425,2.175823,-0.973718,-0.792676 +-0.531418,0.378761,1.930892,2.175081,-0.978652,-0.800476 +-0.523191,0.387266,1.935312,2.174324,-0.983540,-0.808243 +-0.514977,0.395756,1.939685,2.173552,-0.988384,-0.815979 +-0.506777,0.404233,1.944011,2.172764,-0.993182,-0.823681 +-0.498591,0.412695,1.948289,2.171961,-0.997935,-0.831349 +-0.490419,0.421142,1.952519,2.171143,-1.002643,-0.838985 +-0.482262,0.429573,1.956701,2.170311,-1.007305,-0.846586 +-0.474120,0.437988,1.960834,2.169463,-1.011921,-0.854153 +-0.465993,0.446386,1.964918,2.168601,-1.016493,-0.861686 +-0.457882,0.454766,1.968953,2.167725,-1.021018,-0.869185 +-0.449788,0.463129,1.972939,2.166834,-1.025498,-0.876648 +-0.441709,0.471473,1.976875,2.165929,-1.029932,-0.884076 +-0.433648,0.479798,1.980762,2.165010,-1.034321,-0.891469 +-0.425603,0.488103,1.984598,2.164077,-1.038663,-0.898826 +-0.417576,0.496388,1.988384,2.163130,-1.042960,-0.906147 +-0.409567,0.504653,1.992119,2.162169,-1.047211,-0.913432 +-0.401576,0.512896,1.995803,2.161195,-1.051416,-0.920680 +-0.393603,0.521117,1.999436,2.160208,-1.055575,-0.927892 +-0.385648,0.529316,2.003018,2.159207,-1.059688,-0.935066 +-0.377713,0.537492,2.006548,2.158193,-1.063756,-0.942204 +-0.369797,0.545645,2.010026,2.157166,-1.067777,-0.949303 +-0.361900,0.553773,2.013452,2.156126,-1.071752,-0.956366 +-0.354024,0.561878,2.016826,2.155073,-1.075682,-0.963390 +-0.346167,0.569957,2.020147,2.154008,-1.079565,-0.970376 +-0.338331,0.578011,2.023415,2.152930,-1.083403,-0.977324 +-0.330516,0.586038,2.026630,2.151839,-1.087194,-0.984233 +-0.322722,0.594039,2.029792,2.150736,-1.090940,-0.991103 +-0.314949,0.602013,2.032900,2.149621,-1.094639,-0.997934 +-0.307198,0.609960,2.035955,2.148494,-1.098293,-1.004726 +-0.299469,0.617878,2.038956,2.147355,-1.101901,-1.011479 +-0.291762,0.625768,2.041902,2.146204,-1.105462,-1.018192 +-0.284077,0.633629,2.044794,2.145041,-1.108978,-1.024865 +-0.276415,0.641460,2.047631,2.143867,-1.112449,-1.031497 +-0.268776,0.649261,2.050414,2.142681,-1.115873,-1.038090 +-0.261160,0.657031,2.053141,2.141484,-1.119252,-1.044642 +-0.253568,0.664771,2.055813,2.140276,-1.122585,-1.051154 +-0.245999,0.672478,2.058430,2.139056,-1.125872,-1.057624 +-0.238455,0.680154,2.060991,2.137825,-1.129114,-1.064054 +-0.230935,0.687797,2.063497,2.136583,-1.132310,-1.070442 +-0.223439,0.695408,2.065946,2.135331,-1.135461,-1.076789 +-0.215968,0.702984,2.068339,2.134067,-1.138566,-1.083094 +-0.208522,0.710527,2.070675,2.132794,-1.141626,-1.089358 +-0.201101,0.718036,2.072955,2.131509,-1.144641,-1.095580 +-0.193706,0.725509,2.075178,2.130214,-1.147611,-1.101760 +-0.186336,0.732947,2.077344,2.128909,-1.150535,-1.107897 +-0.178992,0.740350,2.079453,2.127593,-1.153414,-1.113992 +-0.171675,0.747716,2.081505,2.126268,-1.156249,-1.120045 +-0.164384,0.755046,2.083499,2.124932,-1.159038,-1.126055 +-0.157119,0.762338,2.085436,2.123586,-1.161783,-1.132022 +-0.149881,0.769593,2.087314,2.122231,-1.164483,-1.137946 +-0.142670,0.776810,2.089135,2.120865,-1.167138,-1.143827 +-0.135486,0.783988,2.090898,2.119490,-1.169749,-1.149665 +-0.128330,0.791128,2.092602,2.118106,-1.172316,-1.155459 +-0.121201,0.798228,2.094247,2.116712,-1.174838,-1.161210 +-0.114100,0.805289,2.095835,2.115309,-1.177316,-1.166917 +-0.107027,0.812309,2.097363,2.113896,-1.179750,-1.172581 +-0.099983,0.819289,2.098832,2.112474,-1.182141,-1.178200 +-0.092966,0.826228,2.100243,2.111043,-1.184487,-1.183776 +-0.085978,0.833125,2.101594,2.109603,-1.186790,-1.189307 +-0.079019,0.839981,2.102886,2.108154,-1.189049,-1.194795 +-0.072088,0.846795,2.104118,2.106696,-1.191265,-1.200238 +-0.065187,0.853566,2.105291,2.105229,-1.193437,-1.205636 +-0.058315,0.860294,2.106404,2.103754,-1.195567,-1.210991 +-0.051472,0.866979,2.107457,2.102270,-1.197653,-1.216300 +-0.044659,0.873620,2.108451,2.100777,-1.199697,-1.221565 +-0.037875,0.880217,2.109384,2.099276,-1.201698,-1.226785 +-0.031122,0.886769,2.110257,2.097767,-1.203656,-1.231960 +-0.024398,0.893277,2.111070,2.096249,-1.205572,-1.237091 +-0.017704,0.899740,2.111823,2.094722,-1.207446,-1.242176 +-0.011041,0.906157,2.112515,2.093188,-1.209278,-1.247216 +-0.004408,0.912528,2.113146,2.091645,-1.211068,-1.252211 +0.002195,0.918852,2.113717,2.090095,-1.212816,-1.257161 +0.008766,0.925131,2.114227,2.088536,-1.214523,-1.262066 +0.015307,0.931362,2.114676,2.086969,-1.216188,-1.266925 +0.021818,0.937546,2.115065,2.085395,-1.217812,-1.271739 +0.028297,0.943682,2.115392,2.083812,-1.219395,-1.276507 +0.034745,0.949771,2.115658,2.082222,-1.220938,-1.281230 +0.041161,0.955811,2.115863,2.080624,-1.222439,-1.285908 +0.047547,0.961802,2.116007,2.079019,-1.223901,-1.290540 +0.053901,0.967745,2.116090,2.077405,-1.225322,-1.295126 +0.060223,0.973638,2.116111,2.075785,-1.226703,-1.299667 +0.066514,0.979482,2.116071,2.074156,-1.228044,-1.304162 +0.072773,0.985277,2.115969,2.072521,-1.229346,-1.308611 +0.079000,0.991021,2.115806,2.070877,-1.230608,-1.313014 +0.085196,0.996714,2.115582,2.069227,-1.231831,-1.317372 +0.091359,1.002357,2.115295,2.067569,-1.233015,-1.321684 +0.097491,1.007949,2.114947,2.065904,-1.234160,-1.325951 +0.103590,1.013490,2.114538,2.064231,-1.235267,-1.330171 +0.109657,1.018979,2.114067,2.062551,-1.236335,-1.334346 +0.115692,1.024416,2.113534,2.060864,-1.237366,-1.338475 +0.121694,1.029801,2.112939,2.059170,-1.238358,-1.342558 +0.127664,1.035134,2.112282,2.057469,-1.239313,-1.346595 +0.133602,1.040415,2.111564,2.055761,-1.240230,-1.350587 +0.139507,1.045642,2.110784,2.054046,-1.241110,-1.354533 +0.145380,1.050817,2.109942,2.052323,-1.241954,-1.358433 +0.151220,1.055938,2.109038,2.050594,-1.242760,-1.362288 +0.157028,1.061006,2.108073,2.048858,-1.243530,-1.366096 +0.162803,1.066020,2.107045,2.047115,-1.244264,-1.369860 +0.168545,1.070980,2.105956,2.045364,-1.244962,-1.373577 +0.174255,1.075886,2.104805,2.043607,-1.245624,-1.377249 +0.179932,1.080737,2.103592,2.041843,-1.246251,-1.380875 +0.185576,1.085534,2.102318,2.040072,-1.246843,-1.384456 +0.191188,1.090276,2.100982,2.038295,-1.247399,-1.387991 +0.196766,1.094962,2.099584,2.036510,-1.247921,-1.391481 +0.202312,1.099594,2.098124,2.034718,-1.248409,-1.394925 +0.207826,1.104170,2.096603,2.032920,-1.248862,-1.398324 +0.213306,1.108691,2.095020,2.031115,-1.249282,-1.401678 +0.218754,1.113156,2.093375,2.029303,-1.249668,-1.404987 +0.224169,1.117565,2.091669,2.027484,-1.250020,-1.408250 +0.229552,1.121918,2.089901,2.025659,-1.250340,-1.411468 +0.234901,1.126215,2.088072,2.023826,-1.250626,-1.414641 +0.240218,1.130455,2.086182,2.021987,-1.250881,-1.417770 +0.245502,1.134639,2.084230,2.020141,-1.251103,-1.420853 +0.250754,1.138765,2.082217,2.018288,-1.251293,-1.423891 +0.255973,1.142836,2.080143,2.016429,-1.251451,-1.426885 +0.261159,1.146849,2.078008,2.014562,-1.251578,-1.429834 +0.266313,1.150805,2.075812,2.012689,-1.251674,-1.432739 +0.271435,1.154703,2.073555,2.010808,-1.251739,-1.435599 +0.276524,1.158545,2.071237,2.008921,-1.251774,-1.438415 +0.281580,1.162328,2.068858,2.007027,-1.251779,-1.441186 +0.286604,1.166055,2.066418,2.005126,-1.251753,-1.443914 +0.291596,1.169723,2.063918,2.003219,-1.251698,-1.446597 +0.296556,1.173334,2.061358,2.001304,-1.251614,-1.449236 +0.301483,1.176886,2.058737,1.999382,-1.251501,-1.451831 +0.306379,1.180381,2.056055,1.997453,-1.251359,-1.454383 +0.311242,1.183818,2.053314,1.995517,-1.251189,-1.456891 +0.316073,1.187196,2.050512,1.993574,-1.250990,-1.459355 +0.320873,1.190517,2.047651,1.991624,-1.250764,-1.461776 +0.325640,1.193779,2.044730,1.989667,-1.250510,-1.464154 +0.330376,1.196982,2.041749,1.987703,-1.250230,-1.466489 +0.335080,1.200127,2.038709,1.985732,-1.249922,-1.468780 +0.339753,1.203214,2.035609,1.983753,-1.249588,-1.471029 +0.344394,1.206242,2.032450,1.981767,-1.249228,-1.473235 +0.349004,1.209212,2.029231,1.979774,-1.248842,-1.475398 +0.353583,1.212123,2.025954,1.977773,-1.248430,-1.477519 +0.358130,1.214975,2.022618,1.975765,-1.247993,-1.479598 +0.362646,1.217769,2.019224,1.973750,-1.247531,-1.481634 +0.367132,1.220504,2.015770,1.971727,-1.247045,-1.483629 +0.371586,1.223180,2.012259,1.969697,-1.246535,-1.485581 +0.376010,1.225798,2.008689,1.967659,-1.246000,-1.487492 +0.380404,1.228357,2.005061,1.965613,-1.245442,-1.489361 +0.384766,1.230857,2.001376,1.963560,-1.244860,-1.491188 +0.389099,1.233298,1.997633,1.961499,-1.244256,-1.492975 +0.393401,1.235681,1.993832,1.959430,-1.243629,-1.494720 +0.397673,1.238005,1.989974,1.957353,-1.242980,-1.496425 +0.401915,1.240270,1.986059,1.955268,-1.242309,-1.498089 +0.406128,1.242477,1.982087,1.953176,-1.241616,-1.499712 +0.410310,1.244625,1.978058,1.951075,-1.240902,-1.501294 +0.414464,1.246714,1.973973,1.948966,-1.240167,-1.502837 +0.418587,1.248745,1.969832,1.946849,-1.239411,-1.504339 +0.422682,1.250718,1.965634,1.944724,-1.238635,-1.505802 +0.426747,1.252632,1.961381,1.942590,-1.237840,-1.507225 +0.430784,1.254487,1.957072,1.940448,-1.237024,-1.508608 +0.434792,1.256284,1.952707,1.938298,-1.236190,-1.509953 +0.438771,1.258023,1.948288,1.936139,-1.235336,-1.511258 +0.442722,1.259704,1.943813,1.933971,-1.234464,-1.512524 +0.446645,1.261327,1.939284,1.931795,-1.233574,-1.513751 +0.450539,1.262891,1.934700,1.929610,-1.232666,-1.514940 +0.454406,1.264398,1.930062,1.927416,-1.231740,-1.516091 +0.458244,1.265846,1.925370,1.925213,-1.230797,-1.517203 +0.462056,1.267237,1.920624,1.923001,-1.229837,-1.518278 +0.465840,1.268571,1.915824,1.920779,-1.228861,-1.519314 +0.469596,1.269846,1.910972,1.918549,-1.227869,-1.520314 +0.473326,1.271065,1.906066,1.916309,-1.226861,-1.521276 +0.477029,1.272225,1.901107,1.914060,-1.225837,-1.522201 +0.480705,1.273329,1.896096,1.911802,-1.224798,-1.523089 +0.484355,1.274376,1.891033,1.909533,-1.223745,-1.523941 +0.487979,1.275365,1.885918,1.907256,-1.222677,-1.524756 +0.491576,1.276298,1.880752,1.904968,-1.221595,-1.525535 +0.495148,1.277174,1.875534,1.902670,-1.220499,-1.526277 +0.498695,1.277994,1.870264,1.900363,-1.219390,-1.526985 +0.502215,1.278757,1.864944,1.898045,-1.218267,-1.527656 +0.505711,1.279464,1.859574,1.895717,-1.217133,-1.528293 +0.509182,1.280115,1.854153,1.893379,-1.215985,-1.528894 +0.512628,1.280710,1.848683,1.891031,-1.214826,-1.529461 +0.516049,1.281249,1.843162,1.888672,-1.213655,-1.529993 +0.519446,1.281732,1.837593,1.886302,-1.212473,-1.530490 +0.522819,1.282161,1.831974,1.883922,-1.211280,-1.530954 +0.526168,1.282534,1.826307,1.881530,-1.210076,-1.531383 +0.529493,1.282852,1.820591,1.879128,-1.208862,-1.531779 +0.532795,1.283115,1.814828,1.876715,-1.207638,-1.532142 +0.536074,1.283323,1.809016,1.874290,-1.206405,-1.532471 +0.539330,1.283477,1.803158,1.871854,-1.205162,-1.532768 +0.542563,1.283577,1.797252,1.869407,-1.203910,-1.533032 +0.545774,1.283623,1.791299,1.866948,-1.202650,-1.533263 +0.548962,1.283615,1.785300,1.864478,-1.201381,-1.533462 +0.552129,1.283553,1.779255,1.861996,-1.200105,-1.533630 +0.555273,1.283439,1.773164,1.859501,-1.198821,-1.533765 +0.558397,1.283270,1.767028,1.856995,-1.197530,-1.533870 +0.561499,1.283050,1.760847,1.854477,-1.196233,-1.533943 +0.564579,1.282776,1.754621,1.851946,-1.194928,-1.533985 +0.567640,1.282450,1.748351,1.849403,-1.193618,-1.533997 +0.570679,1.282072,1.742037,1.846847,-1.192302,-1.533979 +0.573699,1.281642,1.735679,1.844279,-1.190980,-1.533930 +0.576698,1.281160,1.729278,1.841698,-1.189653,-1.533851 +0.579678,1.280627,1.722834,1.839103,-1.188321,-1.533743 +0.582638,1.280042,1.716348,1.836496,-1.186985,-1.533606 +0.585579,1.279407,1.709820,1.833876,-1.185645,-1.533439 +0.588501,1.278721,1.703249,1.831242,-1.184301,-1.533244 +0.591404,1.277985,1.696638,1.828594,-1.182953,-1.533020 +0.594289,1.277199,1.689985,1.825933,-1.181602,-1.532768 +0.597156,1.276363,1.683292,1.823258,-1.180249,-1.532488 +0.600005,1.275478,1.676559,1.820570,-1.178893,-1.532180 +0.602836,1.274543,1.669785,1.817867,-1.177535,-1.531845 +0.605650,1.273559,1.662973,1.815150,-1.176175,-1.531483 +0.608447,1.272527,1.656121,1.812418,-1.174813,-1.531094 +0.611227,1.271447,1.649231,1.809672,-1.173451,-1.530678 +0.613990,1.270318,1.642303,1.806912,-1.172087,-1.530236 +0.616737,1.269142,1.635336,1.804137,-1.170723,-1.529767 +0.619469,1.267919,1.628333,1.801346,-1.169359,-1.529273 +0.622184,1.266648,1.621292,1.798541,-1.167995,-1.528754 +0.624884,1.265331,1.614215,1.795720,-1.166631,-1.528209 +0.627569,1.263968,1.607101,1.792884,-1.165269,-1.527639 +0.630240,1.262558,1.599952,1.790033,-1.163907,-1.527045 +0.632895,1.261103,1.592768,1.787165,-1.162546,-1.526426 +0.635537,1.259602,1.585548,1.784282,-1.161188,-1.525783 +0.638164,1.258056,1.578294,1.781383,-1.159831,-1.525116 +0.640778,1.256466,1.571006,1.778468,-1.158476,-1.524426 +0.643378,1.254831,1.563685,1.775536,-1.157125,-1.523712 +0.645965,1.253152,1.556330,1.772588,-1.155776,-1.522976 +0.648539,1.251430,1.548942,1.769624,-1.154430,-1.522216 +0.651101,1.249664,1.541523,1.766642,-1.153088,-1.521434 +0.653651,1.247855,1.534071,1.763644,-1.151750,-1.520630 +0.656188,1.246004,1.526588,1.760629,-1.150415,-1.519805 +0.658714,1.244110,1.519074,1.757596,-1.149086,-1.518957 +0.661229,1.242175,1.511529,1.754546,-1.147761,-1.518089 +0.663732,1.240198,1.503955,1.751478,-1.146441,-1.517199 +0.666224,1.238180,1.496350,1.748393,-1.145126,-1.516288 +0.668706,1.236122,1.488717,1.745289,-1.143817,-1.515357 +0.671178,1.234023,1.481055,1.742168,-1.142514,-1.514406 +0.673640,1.231884,1.473364,1.739028,-1.141217,-1.513435 +0.676092,1.229706,1.465646,1.735870,-1.139926,-1.512444 +0.678535,1.227488,1.457900,1.732694,-1.138642,-1.511434 +0.680969,1.225232,1.450128,1.729499,-1.137365,-1.510405 +0.683394,1.222938,1.442329,1.726285,-1.136096,-1.509358 +0.685811,1.220605,1.434504,1.723052,-1.134834,-1.508291 +0.688220,1.218235,1.426654,1.719799,-1.133579,-1.507207 +0.690620,1.215828,1.418778,1.716528,-1.132333,-1.506104 +0.693014,1.213384,1.410879,1.713236,-1.131096,-1.504984 +0.695399,1.210904,1.402955,1.709926,-1.129867,-1.503847 +0.697778,1.208387,1.395007,1.706595,-1.128646,-1.502692 +0.700151,1.205836,1.387037,1.703244,-1.127435,-1.501521 +0.702516,1.203249,1.379044,1.699873,-1.126234,-1.500333 +0.704876,1.200628,1.371028,1.696482,-1.125042,-1.499129 +0.707230,1.197972,1.362991,1.693070,-1.123860,-1.497909 +0.709579,1.195283,1.354933,1.689638,-1.122688,-1.496674 +0.711922,1.192560,1.346854,1.686185,-1.121527,-1.495423 +0.714260,1.189804,1.338755,1.682710,-1.120376,-1.494156 +0.716594,1.187016,1.330637,1.679215,-1.119236,-1.492875 +0.718924,1.184196,1.322499,1.675698,-1.118107,-1.491580 +0.721249,1.181344,1.314342,1.672160,-1.116990,-1.490270 +0.723571,1.178461,1.306167,1.668600,-1.115884,-1.488946 +0.725889,1.175547,1.297975,1.665018,-1.114791,-1.487608 +0.728205,1.172603,1.289765,1.661414,-1.113709,-1.486257 +0.730517,1.169629,1.281538,1.657788,-1.112640,-1.484893 +0.732827,1.166626,1.273296,1.654139,-1.111583,-1.483516 +0.735134,1.163594,1.265037,1.650469,-1.110539,-1.482126 +0.737440,1.160533,1.256763,1.646775,-1.109508,-1.480723 +0.739744,1.157444,1.248475,1.643059,-1.108490,-1.479309 +0.742046,1.154328,1.240172,1.639319,-1.107485,-1.477883 +0.744347,1.151184,1.231856,1.635557,-1.106494,-1.476445 +0.746648,1.148014,1.223526,1.631771,-1.105518,-1.474996 +0.748948,1.144818,1.215183,1.627961,-1.104555,-1.473536 +0.751248,1.141595,1.206829,1.624128,-1.103606,-1.472065 +0.753548,1.138348,1.198462,1.620271,-1.102672,-1.470584 +0.755848,1.135076,1.190085,1.616391,-1.101752,-1.469092 +0.758148,1.131779,1.181697,1.612486,-1.100847,-1.467591 +0.760450,1.128459,1.173298,1.608556,-1.099958,-1.466079 +0.762753,1.125115,1.164890,1.604603,-1.099083,-1.464559 +0.765057,1.121748,1.156473,1.600624,-1.098224,-1.463029 +0.767363,1.118358,1.148047,1.596621,-1.097380,-1.461490 +0.769671,1.114947,1.139612,1.592593,-1.096553,-1.459942 +0.771981,1.111514,1.131171,1.588539,-1.095741,-1.458386 +0.774294,1.108060,1.122722,1.584461,-1.094945,-1.456822 +0.776610,1.104586,1.114266,1.580357,-1.094165,-1.455250 +0.778928,1.101091,1.105805,1.576227,-1.093402,-1.453670 +0.781250,1.097577,1.097338,1.572072,-1.092656,-1.452083 +0.783576,1.094044,1.088865,1.567891,-1.091926,-1.450488 +0.785906,1.090492,1.080389,1.563683,-1.091213,-1.448887 +0.788240,1.086922,1.071908,1.559450,-1.090518,-1.447279 +0.790578,1.083334,1.063423,1.555190,-1.089839,-1.445664 +0.792921,1.079729,1.054936,1.550903,-1.089178,-1.444044 +0.795269,1.076107,1.046446,1.546590,-1.088535,-1.442417 +0.797622,1.072469,1.037954,1.542250,-1.087909,-1.440785 +0.799980,1.068816,1.029461,1.537883,-1.087301,-1.439147 +0.802345,1.065147,1.020967,1.533489,-1.086710,-1.437504 +0.804715,1.061463,1.012472,1.529068,-1.086138,-1.435856 +0.807091,1.057765,1.003977,1.524619,-1.085584,-1.434203 +0.809475,1.054053,0.995483,1.520142,-1.085049,-1.432546 +0.811864,1.050328,0.986990,1.515638,-1.084531,-1.430884 +0.814261,1.046590,0.978499,1.511106,-1.084033,-1.429218 +0.816665,1.042840,0.970010,1.506546,-1.083552,-1.427548 +0.819077,1.039078,0.961523,1.501958,-1.083091,-1.425875 +0.821496,1.035304,0.953040,1.497341,-1.082649,-1.424198 +0.823923,1.031520,0.944560,1.492696,-1.082225,-1.422518 +0.826359,1.027725,0.936084,1.488022,-1.081821,-1.420836 +0.828803,1.023920,0.927614,1.483320,-1.081436,-1.419150 +0.831255,1.020106,0.919148,1.478588,-1.081070,-1.417462 +0.833717,1.016283,0.910688,1.473828,-1.080723,-1.415771 +0.836188,1.012452,0.902234,1.469039,-1.080396,-1.414078 +0.838668,1.008612,0.893787,1.464220,-1.080088,-1.412384 +0.841157,1.004766,0.885347,1.459372,-1.079800,-1.410688 +0.843657,1.000912,0.876915,1.454494,-1.079532,-1.408990 +0.846166,0.997052,0.868492,1.449586,-1.079283,-1.407291 +0.848686,0.993185,0.860077,1.444649,-1.079055,-1.405590 +0.851216,0.989314,0.851671,1.439682,-1.078846,-1.403889 +0.853757,0.985437,0.843275,1.434684,-1.078657,-1.402188 +0.856309,0.981556,0.834889,1.429657,-1.078488,-1.400485 +0.858872,0.977670,0.826514,1.424599,-1.078339,-1.398783 +0.861446,0.973782,0.818150,1.419511,-1.078210,-1.397080 +0.864032,0.969890,0.809799,1.414392,-1.078102,-1.395377 +0.866630,0.965995,0.801459,1.409242,-1.078013,-1.393675 +0.869239,0.962099,0.793132,1.404061,-1.077945,-1.391973 +0.871861,0.958200,0.784819,1.398850,-1.077897,-1.390271 +0.874495,0.954301,0.776519,1.393607,-1.077869,-1.388571 +0.877142,0.950401,0.768233,1.388334,-1.077862,-1.386871 +0.879801,0.946501,0.759962,1.383029,-1.077875,-1.385172 +0.882473,0.942601,0.751707,1.377692,-1.077909,-1.383475 +0.885158,0.938702,0.743467,1.372325,-1.077963,-1.381780 +0.887857,0.934804,0.735243,1.366925,-1.078037,-1.380086 +0.890569,0.930908,0.727037,1.361494,-1.078132,-1.378393 +0.893294,0.927014,0.718847,1.356031,-1.078247,-1.376703 +0.896033,0.923123,0.710675,1.350536,-1.078382,-1.375015 +0.898787,0.919235,0.702521,1.345009,-1.078538,-1.373329 +0.901554,0.915350,0.694386,1.339449,-1.078715,-1.371646 +0.904336,0.911470,0.686270,1.333858,-1.078912,-1.369965 +0.907132,0.907594,0.678173,1.328234,-1.079129,-1.368287 +0.909943,0.903723,0.670097,1.322578,-1.079367,-1.366612 +0.912768,0.899858,0.662041,1.316889,-1.079625,-1.364940 +0.915609,0.895999,0.654006,1.311168,-1.079904,-1.363271 +0.918465,0.892146,0.645993,1.305414,-1.080202,-1.361606 +0.921335,0.888300,0.638002,1.299627,-1.080522,-1.359944 +0.924222,0.884462,0.630033,1.293807,-1.080861,-1.358285 +0.927123,0.880631,0.622087,1.287954,-1.081221,-1.356630 +0.930041,0.876808,0.614164,1.282068,-1.081601,-1.354980 +0.932974,0.872995,0.606265,1.276149,-1.082001,-1.353333 +0.935923,0.869190,0.598391,1.270197,-1.082421,-1.351690 +0.938888,0.865395,0.590541,1.264212,-1.082861,-1.350052 +0.941870,0.861610,0.582716,1.258193,-1.083322,-1.348418 +0.944867,0.857836,0.574917,1.252141,-1.083802,-1.346788 +0.947881,0.854072,0.567144,1.246055,-1.084302,-1.345163 +0.950912,0.850320,0.559398,1.239935,-1.084822,-1.343543 +0.953959,0.846580,0.551679,1.233782,-1.085362,-1.341928 +0.957023,0.842852,0.543987,1.227596,-1.085922,-1.340317 +0.960104,0.839137,0.536323,1.221375,-1.086501,-1.338712 +0.963202,0.835435,0.528687,1.215121,-1.087100,-1.337112 +0.966317,0.831747,0.521080,1.208833,-1.087718,-1.335517 +0.969449,0.828072,0.513502,1.202511,-1.088355,-1.333927 +0.972598,0.824413,0.505954,1.196155,-1.089012,-1.332343 +0.975765,0.820768,0.498436,1.189764,-1.089688,-1.330764 +0.978949,0.817138,0.490948,1.183340,-1.090383,-1.329191 +0.982151,0.813524,0.483491,1.176882,-1.091098,-1.327624 +0.985370,0.809926,0.476065,1.170389,-1.091831,-1.326062 +0.988607,0.806345,0.468672,1.163862,-1.092583,-1.324506 +0.991862,0.802781,0.461310,1.157301,-1.093353,-1.322957 +0.995135,0.799234,0.453981,1.150706,-1.094142,-1.321413 +0.998425,0.795705,0.446685,1.144076,-1.094950,-1.319875 +1.001733,0.792194,0.439422,1.137412,-1.095776,-1.318344 +1.005060,0.788702,0.432193,1.130713,-1.096620,-1.316818 +1.008405,0.785229,0.424998,1.123980,-1.097483,-1.315299 +1.011767,0.781775,0.417837,1.117213,-1.098363,-1.313787 +1.015148,0.778342,0.410712,1.110411,-1.099261,-1.312280 +1.018547,0.774928,0.403622,1.103575,-1.100177,-1.310780 +1.021965,0.771535,0.396568,1.096704,-1.101110,-1.309287 +1.025400,0.768163,0.389550,1.089798,-1.102061,-1.307800 +1.028854,0.764812,0.382568,1.082858,-1.103029,-1.306320 +1.032327,0.761483,0.375623,1.075883,-1.104014,-1.304847 +1.035818,0.758176,0.368716,1.068874,-1.105016,-1.303380 +1.039327,0.754892,0.361846,1.061830,-1.106035,-1.301920 +1.042854,0.751631,0.355014,1.054752,-1.107071,-1.300467 +1.046401,0.748393,0.348221,1.047639,-1.108123,-1.299020 +1.049965,0.745178,0.341466,1.040491,-1.109192,-1.297580 +1.053549,0.741988,0.334750,1.033309,-1.110276,-1.296148 +1.057150,0.738822,0.328074,1.026093,-1.111377,-1.294722 +1.060770,0.735680,0.321438,1.018841,-1.112493,-1.293303 +1.064409,0.732564,0.314841,1.011555,-1.113625,-1.291891 +1.068066,0.729473,0.308286,1.004235,-1.114773,-1.290486 +1.071742,0.726408,0.301771,0.996880,-1.115935,-1.289087 +1.075436,0.723369,0.295297,0.989491,-1.117113,-1.287696 +1.079149,0.720356,0.288865,0.982067,-1.118306,-1.286312 +1.082880,0.717370,0.282475,0.974608,-1.119513,-1.284935 +1.086629,0.714412,0.276127,0.967115,-1.120735,-1.283565 +1.090397,0.711480,0.269821,0.959588,-1.121971,-1.282201 +1.094184,0.708577,0.263558,0.952026,-1.123222,-1.280845 +1.097988,0.705702,0.257338,0.944431,-1.124486,-1.279496 +1.101811,0.702855,0.251162,0.936800,-1.125764,-1.278153 +1.105653,0.700037,0.245030,0.929136,-1.127055,-1.276818 +1.109512,0.697248,0.238941,0.921437,-1.128360,-1.275489 +1.113390,0.694488,0.232897,0.913704,-1.129677,-1.274168 +1.117286,0.691758,0.226898,0.905937,-1.131008,-1.272853 +1.121199,0.689058,0.220944,0.898136,-1.132351,-1.271546 +1.125131,0.686388,0.215035,0.890300,-1.133706,-1.270245 +1.129081,0.683749,0.209171,0.882431,-1.135074,-1.268951 +1.133049,0.681141,0.203353,0.874528,-1.136453,-1.267663 +1.137034,0.678564,0.197582,0.866591,-1.137845,-1.266383 +1.141038,0.676018,0.191857,0.858621,-1.139247,-1.265109 +1.145059,0.673504,0.186178,0.850616,-1.140661,-1.263842 +1.149097,0.671023,0.180546,0.842578,-1.142086,-1.262581 +1.153153,0.668573,0.174962,0.834507,-1.143521,-1.261328 +1.157227,0.666156,0.169425,0.826401,-1.144967,-1.260080 +1.161318,0.663772,0.163936,0.818263,-1.146423,-1.258839 +1.165426,0.661421,0.158494,0.810091,-1.147890,-1.257605 +1.169551,0.659103,0.153101,0.801886,-1.149366,-1.256377 +1.173693,0.656819,0.147757,0.793648,-1.150851,-1.255155 +1.177852,0.654569,0.142461,0.785376,-1.152345,-1.253940 +1.182028,0.652352,0.137214,0.777072,-1.153849,-1.252731 +1.186221,0.650171,0.132016,0.768735,-1.155361,-1.251528 +1.190430,0.648023,0.126867,0.760365,-1.156882,-1.250331 +1.194656,0.645911,0.121768,0.751962,-1.158410,-1.249140 +1.198898,0.643834,0.116719,0.743527,-1.159947,-1.247955 +1.203156,0.641792,0.111720,0.735059,-1.161491,-1.246776 +1.207431,0.639785,0.106771,0.726559,-1.163042,-1.245603 +1.211721,0.637814,0.101873,0.718027,-1.164601,-1.244435 +1.216027,0.635879,0.097025,0.709462,-1.166166,-1.243273 +1.220349,0.633980,0.092228,0.700866,-1.167738,-1.242117 +1.224686,0.632118,0.087482,0.692237,-1.169316,-1.240966 +1.229039,0.630292,0.082788,0.683577,-1.170900,-1.239820 +1.233407,0.628503,0.078145,0.674885,-1.172489,-1.238680 +1.237790,0.626751,0.073553,0.666162,-1.174084,-1.237544 +1.242188,0.625036,0.069013,0.657407,-1.175684,-1.236414 +1.246601,0.623358,0.064525,0.648621,-1.177288,-1.235289 +1.251028,0.621718,0.060089,0.639804,-1.178897,-1.234169 +1.255470,0.620115,0.055706,0.630956,-1.180510,-1.233053 +1.259926,0.618550,0.051374,0.622077,-1.182127,-1.231942 +1.264396,0.617024,0.047096,0.613167,-1.183748,-1.230836 +1.268880,0.615535,0.042870,0.604227,-1.185372,-1.229734 +1.273378,0.614085,0.038697,0.595257,-1.186998,-1.228636 +1.277889,0.612674,0.034577,0.586256,-1.188627,-1.227542 +1.282414,0.611301,0.030510,0.577225,-1.190259,-1.226453 +1.286952,0.609966,0.026496,0.568164,-1.191893,-1.225367 +1.291502,0.608671,0.022536,0.559074,-1.193528,-1.224286 +1.296066,0.607415,0.018629,0.549954,-1.195164,-1.223208 +1.300642,0.606198,0.014776,0.540805,-1.196802,-1.222133 +1.305230,0.605021,0.010977,0.531626,-1.198441,-1.221062 +1.309831,0.603883,0.007231,0.522418,-1.200079,-1.219995 +1.314443,0.602784,0.003539,0.513182,-1.201718,-1.218930 +1.319067,0.601726,-0.000098,0.503916,-1.203357,-1.217869 +1.323703,0.600707,-0.003682,0.494623,-1.204995,-1.216810 +1.328350,0.599728,-0.007211,0.485301,-1.206632,-1.215754 +1.333008,0.598789,-0.010686,0.475950,-1.208268,-1.214701 +1.337676,0.597890,-0.014106,0.466572,-1.209903,-1.213650 +1.342356,0.597032,-0.017472,0.457166,-1.211535,-1.212601 +1.347045,0.596214,-0.020784,0.447733,-1.213166,-1.211555 +1.351745,0.595436,-0.024041,0.438272,-1.214794,-1.210510 +1.356455,0.594699,-0.027243,0.428784,-1.216419,-1.209468 +1.361174,0.594002,-0.030391,0.419269,-1.218040,-1.208427 +1.365903,0.593346,-0.033484,0.409727,-1.219659,-1.207388 +1.370640,0.592731,-0.036522,0.400159,-1.221273,-1.206350 +1.375387,0.592157,-0.039505,0.390564,-1.222883,-1.205313 +1.380142,0.591623,-0.042433,0.380944,-1.224489,-1.204277 +1.384906,0.591131,-0.045307,0.371297,-1.226090,-1.203242 +1.389678,0.590679,-0.048125,0.361625,-1.227685,-1.202208 +1.394457,0.590269,-0.050888,0.351928,-1.229275,-1.201175 +1.399245,0.589899,-0.053597,0.342205,-1.230859,-1.200141 +1.404039,0.589571,-0.056250,0.332457,-1.232437,-1.199108 +1.408841,0.589283,-0.058849,0.322685,-1.234008,-1.198075 +1.413649,0.589037,-0.061392,0.312888,-1.235573,-1.197042 +1.418463,0.588832,-0.063881,0.303066,-1.237130,-1.196009 +1.423284,0.588669,-0.066314,0.293221,-1.238679,-1.194974 +1.428111,0.588546,-0.068693,0.283352,-1.240220,-1.193940 +1.432944,0.588465,-0.071016,0.273460,-1.241753,-1.192904 +1.437781,0.588425,-0.073285,0.263544,-1.243278,-1.191867 +1.442624,0.588427,-0.075498,0.253605,-1.244793,-1.190829 +1.447472,0.588469,-0.077657,0.243643,-1.246299,-1.189790 +1.452324,0.588553,-0.079761,0.233659,-1.247795,-1.188749 +1.457180,0.588678,-0.081809,0.223653,-1.249281,-1.187706 +1.462040,0.588845,-0.083804,0.213625,-1.250757,-1.186661 +1.466904,0.589052,-0.085743,0.203574,-1.252222,-1.185614 +1.471770,0.589301,-0.087628,0.193503,-1.253676,-1.184564 +1.476640,0.589591,-0.089458,0.183410,-1.255118,-1.183512 +1.481513,0.589922,-0.091233,0.173296,-1.256549,-1.182457 +1.486387,0.590294,-0.092954,0.163162,-1.257967,-1.181399 +1.491264,0.590708,-0.094621,0.153007,-1.259373,-1.180338 +1.496142,0.591162,-0.096233,0.142833,-1.260765,-1.179273 +1.501022,0.591657,-0.097791,0.132638,-1.262145,-1.178205 +1.505902,0.592194,-0.099294,0.122424,-1.263511,-1.177133 +1.510784,0.592771,-0.100744,0.112191,-1.264863,-1.176057 +1.515666,0.593389,-0.102140,0.101939,-1.266201,-1.174976 +1.520547,0.594048,-0.103481,0.091668,-1.267524,-1.173891 +1.525429,0.594747,-0.104769,0.081378,-1.268832,-1.172802 +1.530310,0.595487,-0.106003,0.071071,-1.270125,-1.171708 +1.535190,0.596268,-0.107184,0.060746,-1.271402,-1.170608 +1.540068,0.597089,-0.108311,0.050404,-1.272663,-1.169503 +1.544945,0.597951,-0.109384,0.040044,-1.273907,-1.168393 +1.549820,0.598853,-0.110405,0.029667,-1.275135,-1.167277 +1.554693,0.599795,-0.111372,0.019274,-1.276346,-1.166155 +1.559563,0.600777,-0.112287,0.008865,-1.277539,-1.165027 +1.564430,0.601799,-0.113148,-0.001560,-1.278714,-1.163892 +1.569293,0.602861,-0.113957,-0.012001,-1.279871,-1.162751 +1.574153,0.603963,-0.114713,-0.022457,-1.281010,-1.161603 +1.579009,0.605105,-0.115417,-0.032928,-1.282130,-1.160448 +1.583860,0.606286,-0.116069,-0.043414,-1.283230,-1.159286 +1.588707,0.607507,-0.116669,-0.053914,-1.284311,-1.158116 +1.593548,0.608767,-0.117217,-0.064428,-1.285373,-1.156939 +1.598384,0.610066,-0.117713,-0.074955,-1.286413,-1.155753 +1.603214,0.611404,-0.118157,-0.085496,-1.287434,-1.154560 +1.608038,0.612781,-0.118551,-0.096050,-1.288433,-1.153358 +1.612855,0.614197,-0.118893,-0.106617,-1.289411,-1.152147 +1.617665,0.615652,-0.119184,-0.117196,-1.290367,-1.150928 +1.622468,0.617145,-0.119424,-0.127787,-1.291301,-1.149699 +1.627263,0.618676,-0.119614,-0.138389,-1.292213,-1.148462 +1.632050,0.620246,-0.119753,-0.149003,-1.293103,-1.147214 +1.636829,0.621854,-0.119842,-0.159628,-1.293969,-1.145957 +1.641599,0.623499,-0.119881,-0.170263,-1.294812,-1.144690 +1.646359,0.625183,-0.119870,-0.180909,-1.295631,-1.143413 +1.651110,0.626904,-0.119810,-0.191565,-1.296427,-1.142125 +1.655851,0.628662,-0.119700,-0.202230,-1.297198,-1.140826 +1.660582,0.630457,-0.119542,-0.212904,-1.297944,-1.139517 +1.665302,0.632290,-0.119334,-0.223587,-1.298665,-1.138197 +1.670011,0.634159,-0.119078,-0.234279,-1.299361,-1.136865 +1.674709,0.636065,-0.118774,-0.244979,-1.300031,-1.135521 +1.679394,0.638008,-0.118421,-0.255687,-1.300675,-1.134166 +1.684068,0.639986,-0.118020,-0.266402,-1.301293,-1.132799 +1.688729,0.642001,-0.117572,-0.277124,-1.301884,-1.131419 +1.693376,0.644052,-0.117076,-0.287852,-1.302448,-1.130027 +1.698011,0.646138,-0.116534,-0.298587,-1.302985,-1.128622 +1.702632,0.648260,-0.115944,-0.309328,-1.303494,-1.127204 +1.707238,0.650416,-0.115308,-0.320075,-1.303975,-1.125772 +1.711830,0.652608,-0.114625,-0.330827,-1.304428,-1.124328 +1.716407,0.654835,-0.113897,-0.341583,-1.304852,-1.122869 +1.720969,0.657096,-0.113123,-0.352344,-1.305247,-1.121397 +1.725515,0.659392,-0.112303,-0.363109,-1.305613,-1.119911 +1.730044,0.661722,-0.111438,-0.373878,-1.305950,-1.118410 +1.734558,0.664086,-0.110528,-0.384650,-1.306256,-1.116894 +1.739054,0.666483,-0.109573,-0.395425,-1.306533,-1.115364 +1.743533,0.668914,-0.108574,-0.406202,-1.306779,-1.113818 +1.747995,0.671378,-0.107532,-0.416982,-1.306994,-1.112257 +1.752438,0.673875,-0.106445,-0.427763,-1.307178,-1.110681 +1.756863,0.676404,-0.105315,-0.438546,-1.307330,-1.109089 +1.761269,0.678966,-0.104142,-0.449330,-1.307451,-1.107481 +1.765656,0.681560,-0.102926,-0.460114,-1.307540,-1.105856 +1.770023,0.684187,-0.101668,-0.470899,-1.307597,-1.104215 +1.774370,0.686844,-0.100368,-0.481683,-1.307621,-1.102558 +1.778697,0.689534,-0.099026,-0.492467,-1.307612,-1.100883 +1.783003,0.692254,-0.097642,-0.503250,-1.307570,-1.099192 +1.787288,0.695005,-0.096218,-0.514031,-1.307494,-1.097482 +1.791551,0.697787,-0.094752,-0.524811,-1.307385,-1.095756 +1.795792,0.700599,-0.093247,-0.535588,-1.307241,-1.094011 +1.800010,0.703441,-0.091701,-0.546363,-1.307064,-1.092248 +1.804206,0.706313,-0.090115,-0.557135,-1.306851,-1.090468 +1.808379,0.709215,-0.088490,-0.567903,-1.306604,-1.088668 +1.812528,0.712146,-0.086826,-0.578668,-1.306322,-1.086850 +1.816653,0.715105,-0.085123,-0.589429,-1.306004,-1.085013 +1.820753,0.718093,-0.083382,-0.600185,-1.305650,-1.083156 +1.824829,0.721110,-0.081603,-0.610936,-1.305261,-1.081280 +1.828880,0.724155,-0.079787,-0.621681,-1.304835,-1.079385 +1.832905,0.727227,-0.077933,-0.632421,-1.304373,-1.077469 +1.836904,0.730327,-0.076043,-0.643154,-1.303874,-1.075534 +1.840877,0.733454,-0.074116,-0.653881,-1.303338,-1.073578 +1.844823,0.736608,-0.072153,-0.664601,-1.302765,-1.071602 +1.848742,0.739788,-0.070154,-0.675314,-1.302154,-1.069605 +1.852633,0.742995,-0.068120,-0.686018,-1.301505,-1.067587 +1.856497,0.746227,-0.066052,-0.696714,-1.300819,-1.065548 +1.860332,0.749485,-0.063948,-0.707402,-1.300094,-1.063488 +1.864138,0.752769,-0.061811,-0.718080,-1.299330,-1.061406 +1.867916,0.756077,-0.059640,-0.728749,-1.298528,-1.059302 +1.871664,0.759410,-0.057435,-0.739408,-1.297687,-1.057176 +1.875382,0.762767,-0.055198,-0.750057,-1.296806,-1.055028 +1.879070,0.766149,-0.052928,-0.760695,-1.295886,-1.052857 +1.882727,0.769554,-0.050627,-0.771322,-1.294926,-1.050664 +1.886353,0.772982,-0.048293,-0.781937,-1.293927,-1.048448 +1.889948,0.776433,-0.045928,-0.792540,-1.292887,-1.046209 +1.893511,0.779907,-0.043533,-0.803130,-1.291807,-1.043947 +1.897042,0.783404,-0.041107,-0.813708,-1.290686,-1.041661 +1.900541,0.786922,-0.038651,-0.824273,-1.289524,-1.039352 +1.904006,0.790462,-0.036166,-0.834824,-1.288322,-1.037019 +1.907439,0.794024,-0.033651,-0.845360,-1.287078,-1.034662 +1.910837,0.797606,-0.031108,-0.855883,-1.285793,-1.032280 +1.914202,0.801209,-0.028537,-0.866390,-1.284466,-1.029874 +1.917532,0.804833,-0.025937,-0.876882,-1.283097,-1.027444 +1.920827,0.808476,-0.023311,-0.887358,-1.281686,-1.024989 +1.924088,0.812139,-0.020657,-0.897818,-1.280233,-1.022508 +1.927313,0.815821,-0.017977,-0.908261,-1.278738,-1.020003 +1.930502,0.819522,-0.015271,-0.918687,-1.277200,-1.017472 +1.933654,0.823242,-0.012539,-0.929096,-1.275619,-1.014915 +1.936770,0.826980,-0.009783,-0.939487,-1.273995,-1.012333 +1.939849,0.830736,-0.007001,-0.949860,-1.272328,-1.009725 +1.942891,0.834509,-0.004195,-0.960214,-1.270618,-1.007091 +1.945895,0.838299,-0.001366,-0.970548,-1.268864,-1.004431 +1.948861,0.842107,0.001487,-0.980864,-1.267067,-1.001744 +1.951789,0.845930,0.004363,-0.991159,-1.265225,-0.999030 +1.954678,0.849770,0.007261,-1.001433,-1.263340,-0.996290 +1.957528,0.853625,0.010181,-1.011687,-1.261411,-0.993522 +1.960338,0.857496,0.013122,-1.021920,-1.259437,-0.990728 +1.963109,0.861382,0.016085,-1.032131,-1.257419,-0.987906 +1.965839,0.865282,0.019068,-1.042320,-1.255356,-0.985057 +1.968529,0.869197,0.022071,-1.052487,-1.253248,-0.982180 +1.971178,0.873125,0.025093,-1.062630,-1.251096,-0.979275 +1.973786,0.877067,0.028135,-1.072751,-1.248898,-0.976343 +1.976352,0.881022,0.031196,-1.082847,-1.246656,-0.973382 +1.978877,0.884990,0.034274,-1.092919,-1.244368,-0.970393 +1.981359,0.888970,0.037370,-1.102967,-1.242034,-0.967376 +1.983799,0.892963,0.040484,-1.112990,-1.239655,-0.964330 +1.986196,0.896967,0.043614,-1.122987,-1.237230,-0.961255 +1.988550,0.900982,0.046760,-1.132959,-1.234760,-0.958151 +1.990860,0.905008,0.049922,-1.142904,-1.232244,-0.955019 +1.993126,0.909045,0.053099,-1.152823,-1.229681,-0.951857 +1.995349,0.913092,0.056291,-1.162714,-1.227073,-0.948666 +1.997526,0.917148,0.059498,-1.172578,-1.224418,-0.945446 +1.999660,0.921214,0.062718,-1.182415,-1.221717,-0.942196 +2.001748,0.925289,0.065951,-1.192223,-1.218970,-0.938916 +2.003790,0.929373,0.069198,-1.202002,-1.216176,-0.935607 +2.005787,0.933465,0.072456,-1.211752,-1.213335,-0.932268 +2.007738,0.937565,0.075726,-1.221473,-1.210448,-0.928898 +2.009642,0.941673,0.079008,-1.231163,-1.207514,-0.925499 +2.011500,0.945787,0.082301,-1.240824,-1.204533,-0.922069 +2.013311,0.949909,0.085603,-1.250453,-1.201505,-0.918608 +2.015075,0.954037,0.088916,-1.260052,-1.198431,-0.915118 +2.016792,0.958171,0.092238,-1.269619,-1.195309,-0.911596 +2.018460,0.962310,0.095569,-1.279154,-1.192140,-0.908044 +2.020081,0.966455,0.098908,-1.288656,-1.188924,-0.904460 +2.021653,0.970605,0.102255,-1.298126,-1.185661,-0.900846 +2.023176,0.974759,0.105609,-1.307563,-1.182350,-0.897201 +2.024651,0.978917,0.108970,-1.316966,-1.178993,-0.893525 +2.026076,0.983079,0.112338,-1.326336,-1.175587,-0.889817 +2.027452,0.987245,0.115711,-1.335671,-1.172135,-0.886078 +2.028778,0.991413,0.119089,-1.344971,-1.168635,-0.882307 +2.030054,0.995585,0.122473,-1.354236,-1.165087,-0.878505 +2.031280,0.999758,0.125860,-1.363466,-1.161492,-0.874671 +2.032455,1.003933,0.129252,-1.372660,-1.157850,-0.870806 +2.033580,1.008110,0.132647,-1.381817,-1.154160,-0.866908 +2.034654,1.012288,0.136044,-1.390938,-1.150422,-0.862979 +2.035676,1.016467,0.139444,-1.400022,-1.146637,-0.859018 +2.036647,1.020646,0.142845,-1.409069,-1.142804,-0.855025 +2.037566,1.024825,0.146248,-1.418077,-1.138924,-0.850999 +2.038433,1.029004,0.149652,-1.427048,-1.134996,-0.846942 +2.039247,1.033182,0.153056,-1.435980,-1.131021,-0.842852 +2.040010,1.037359,0.156459,-1.444873,-1.126998,-0.838730 +2.040719,1.041535,0.159862,-1.453726,-1.122927,-0.834575 +2.041376,1.045708,0.163264,-1.462540,-1.118809,-0.830389 +2.041979,1.049880,0.166664,-1.471314,-1.114643,-0.826169 +2.042529,1.054049,0.170061,-1.480047,-1.110430,-0.821917 +2.043026,1.058215,0.173456,-1.488740,-1.106169,-0.817633 +2.043468,1.062378,0.176848,-1.497392,-1.101861,-0.813315 +2.043857,1.066537,0.180235,-1.506001,-1.097506,-0.808966 +2.044191,1.070692,0.183619,-1.514570,-1.093103,-0.804583 +2.044471,1.074842,0.186998,-1.523095,-1.088653,-0.800168 +2.044697,1.078988,0.190371,-1.531579,-1.084155,-0.795720 +2.044867,1.083129,0.193738,-1.540019,-1.079610,-0.791239 +2.044983,1.087264,0.197100,-1.548416,-1.075019,-0.786725 +2.045043,1.091394,0.200454,-1.556769,-1.070380,-0.782178 +2.045048,1.095517,0.203801,-1.565078,-1.065693,-0.777599 +2.044997,1.099634,0.207141,-1.573343,-1.060960,-0.772986 +2.044891,1.103743,0.210472,-1.581563,-1.056180,-0.768341 +2.044728,1.107846,0.213794,-1.589738,-1.051353,-0.763662 +2.044510,1.111941,0.217107,-1.597868,-1.046480,-0.758951 +2.044235,1.116028,0.220410,-1.605951,-1.041560,-0.754207 +2.043904,1.120107,0.223703,-1.613989,-1.036593,-0.749430 +2.043516,1.124177,0.226985,-1.621980,-1.031579,-0.744619 +2.043072,1.128238,0.230256,-1.629925,-1.026519,-0.739776 +2.042570,1.132290,0.233515,-1.637823,-1.021413,-0.734900 +2.042012,1.136332,0.236761,-1.645673,-1.016260,-0.729991 +2.041396,1.140364,0.239995,-1.653475,-1.011062,-0.725049 +2.040723,1.144385,0.243216,-1.661229,-1.005817,-0.720074 +2.039993,1.148396,0.246423,-1.668935,-1.000527,-0.715066 +2.039205,1.152396,0.249616,-1.676592,-0.995190,-0.710025 +2.038360,1.156385,0.252794,-1.684200,-0.989808,-0.704951 +2.037456,1.160362,0.255957,-1.691759,-0.984381,-0.699845 +2.036495,1.164326,0.259104,-1.699268,-0.978908,-0.694705 +2.035476,1.168279,0.262235,-1.706727,-0.973390,-0.689533 +2.034398,1.172219,0.265349,-1.714136,-0.967826,-0.684328 +2.033262,1.176146,0.268446,-1.721494,-0.962218,-0.679091 +2.032068,1.180059,0.271526,-1.728802,-0.956564,-0.673820 +2.030815,1.183959,0.274587,-1.736058,-0.950866,-0.668517 +2.029504,1.187845,0.277630,-1.743262,-0.945124,-0.663182 +2.028134,1.191716,0.280654,-1.750415,-0.939337,-0.657814 +2.026705,1.195573,0.283659,-1.757516,-0.933505,-0.652413 +2.025218,1.199415,0.286643,-1.764565,-0.927630,-0.646980 +2.023671,1.203242,0.289607,-1.771560,-0.921710,-0.641515 +2.022066,1.207053,0.292550,-1.778503,-0.915747,-0.636017 +2.020401,1.210848,0.295472,-1.785393,-0.909740,-0.630487 +2.018678,1.214628,0.298372,-1.792229,-0.903690,-0.624925 +2.016895,1.218390,0.301249,-1.799012,-0.897597,-0.619331 +2.015053,1.222136,0.304104,-1.805740,-0.891460,-0.613705 +2.013152,1.225865,0.306936,-1.812414,-0.885281,-0.608047 +2.011191,1.229577,0.309744,-1.819034,-0.879059,-0.602357 +2.009171,1.233271,0.312528,-1.825598,-0.872794,-0.596636 +2.007092,1.236947,0.315287,-1.832108,-0.866487,-0.590882 +2.004953,1.240605,0.318021,-1.838562,-0.860138,-0.585097 +2.002755,1.244244,0.320730,-1.844961,-0.853747,-0.579281 +2.000497,1.247865,0.323413,-1.851304,-0.847315,-0.573433 +1.998179,1.251467,0.326069,-1.857590,-0.840841,-0.567554 +1.995803,1.255049,0.328699,-1.863820,-0.834326,-0.561644 +1.993366,1.258611,0.331302,-1.869994,-0.827769,-0.555702 +1.990870,1.262154,0.333876,-1.876111,-0.821172,-0.549730 +1.988314,1.265677,0.336423,-1.882171,-0.814534,-0.543726 +1.985699,1.269179,0.338941,-1.888173,-0.807856,-0.537692 +1.983024,1.272660,0.341430,-1.894118,-0.801138,-0.531628 +1.980290,1.276121,0.343890,-1.900005,-0.794380,-0.525533 +1.977496,1.279560,0.346320,-1.905834,-0.787582,-0.519407 +1.974643,1.282978,0.348720,-1.911605,-0.780745,-0.513251 +1.971730,1.286374,0.351089,-1.917317,-0.773869,-0.507065 +1.968757,1.289749,0.353428,-1.922971,-0.766953,-0.500850 +1.965725,1.293101,0.355734,-1.928566,-0.760000,-0.494604 +1.962634,1.296430,0.358009,-1.934102,-0.753007,-0.488328 +1.959483,1.299737,0.360252,-1.939578,-0.745977,-0.482023 +1.956273,1.303021,0.362461,-1.944996,-0.738908,-0.475689 +1.953004,1.306282,0.364638,-1.950353,-0.731802,-0.469325 +1.949675,1.309519,0.366781,-1.955650,-0.724659,-0.462932 +1.946287,1.312733,0.368891,-1.960888,-0.717479,-0.456511 +1.942840,1.315923,0.370966,-1.966065,-0.710261,-0.450060 +1.939334,1.319088,0.373006,-1.971182,-0.703008,-0.443581 +1.935769,1.322230,0.375012,-1.976238,-0.695718,-0.437073 +1.932145,1.325347,0.376982,-1.981233,-0.688392,-0.430537 +1.928463,1.328439,0.378916,-1.986167,-0.681030,-0.423973 +1.924721,1.331506,0.380814,-1.991041,-0.673633,-0.417381 +1.920921,1.334549,0.382675,-1.995852,-0.666201,-0.410761 +1.917062,1.337565,0.384499,-2.000603,-0.658734,-0.404114 +1.913145,1.340557,0.386287,-2.005291,-0.651233,-0.397439 +1.909169,1.343522,0.388036,-2.009918,-0.643697,-0.390737 +1.905135,1.346462,0.389747,-2.014483,-0.636128,-0.384008 +1.901043,1.349375,0.391420,-2.018986,-0.628525,-0.377252 +1.896893,1.352262,0.393055,-2.023426,-0.620889,-0.370469 +1.892684,1.355122,0.394650,-2.027804,-0.613219,-0.363660 +1.888418,1.357956,0.396206,-2.032120,-0.605518,-0.356824 +1.884095,1.360763,0.397722,-2.036373,-0.597783,-0.349963 +1.879713,1.363543,0.399197,-2.040563,-0.590017,-0.343076 +1.875275,1.366295,0.400633,-2.044690,-0.582220,-0.336163 +1.870779,1.369021,0.402027,-2.048754,-0.574390,-0.329224 +1.866225,1.371718,0.403381,-2.052755,-0.566530,-0.322261 +1.861615,1.374388,0.404693,-2.056692,-0.558639,-0.315272 +1.856948,1.377030,0.405963,-2.060566,-0.550718,-0.308259 +1.852225,1.379644,0.407191,-2.064377,-0.542767,-0.301221 +1.847444,1.382229,0.408376,-2.068124,-0.534786,-0.294158 +1.842608,1.384787,0.409519,-2.071807,-0.526776,-0.287072 +1.837715,1.387316,0.410619,-2.075426,-0.518737,-0.279962 +1.832766,1.389816,0.411676,-2.078981,-0.510669,-0.272828 +1.827761,1.392287,0.412688,-2.082472,-0.502573,-0.265670 +1.822701,1.394730,0.413657,-2.085899,-0.494449,-0.258490 +1.817585,1.397143,0.414582,-2.089262,-0.486298,-0.251286 +1.812414,1.399527,0.415462,-2.092561,-0.478119,-0.244060 +1.807187,1.401882,0.416297,-2.095795,-0.469914,-0.236811 +1.801906,1.404208,0.417087,-2.098964,-0.461682,-0.229540 +1.796570,1.406504,0.417832,-2.102069,-0.453423,-0.222248 +1.791180,1.408770,0.418531,-2.105110,-0.445140,-0.214933 +1.785735,1.411006,0.419184,-2.108085,-0.436830,-0.207597 +1.780236,1.413213,0.419791,-2.110996,-0.428496,-0.200240 +1.774684,1.415389,0.420352,-2.113842,-0.420137,-0.192862 +1.769077,1.417536,0.420865,-2.116624,-0.411754,-0.185464 +1.763418,1.419652,0.421332,-2.119340,-0.403347,-0.178045 +1.757705,1.421738,0.421751,-2.121992,-0.394916,-0.170605 +1.751939,1.423794,0.422123,-2.124578,-0.386463,-0.163146 +1.746121,1.425819,0.422448,-2.127100,-0.377986,-0.155668 +1.740250,1.427814,0.422724,-2.129556,-0.369488,-0.148170 +1.734326,1.429778,0.422952,-2.131947,-0.360967,-0.140653 +1.728351,1.431711,0.423132,-2.134273,-0.352425,-0.133117 +1.722324,1.433614,0.423263,-2.136534,-0.343861,-0.125563 +1.716246,1.435485,0.423345,-2.138730,-0.335277,-0.117991 +1.710117,1.437326,0.423378,-2.140861,-0.326672,-0.110401 +1.703936,1.439136,0.423361,-2.142926,-0.318048,-0.102793 +1.697705,1.440915,0.423296,-2.144926,-0.309403,-0.095168 +1.691424,1.442662,0.423180,-2.146861,-0.300740,-0.087526 +1.685092,1.444379,0.423014,-2.148731,-0.292058,-0.079867 +1.678711,1.446064,0.422799,-2.150536,-0.283357,-0.072192 +1.672280,1.447718,0.422533,-2.152275,-0.274638,-0.064501 +1.665800,1.449341,0.422216,-2.153949,-0.265902,-0.056794 +1.659271,1.450933,0.421849,-2.155558,-0.257149,-0.049071 +1.652693,1.452493,0.421430,-2.157102,-0.248378,-0.041333 +1.646067,1.454022,0.420961,-2.158580,-0.239592,-0.033580 +1.639393,1.455519,0.420441,-2.159994,-0.230789,-0.025813 +1.632671,1.456985,0.419869,-2.161342,-0.221971,-0.018031 +1.625902,1.458420,0.419245,-2.162625,-0.213138,-0.010236 +1.619086,1.459823,0.418570,-2.163844,-0.204290,-0.002427 +1.612223,1.461195,0.417843,-2.164997,-0.195428,0.005396 +1.605313,1.462535,0.417063,-2.166085,-0.186552,0.013232 +1.598357,1.463843,0.416232,-2.167109,-0.177663,0.021080 +1.591355,1.465121,0.415348,-2.168067,-0.168760,0.028941 +1.584308,1.466366,0.414412,-2.168961,-0.159845,0.036813 +1.577216,1.467581,0.413423,-2.169790,-0.150918,0.044698 +1.570079,1.468763,0.412381,-2.170554,-0.141979,0.052594 +1.562897,1.469915,0.411287,-2.171254,-0.133028,0.060500 +1.555672,1.471034,0.410139,-2.171889,-0.124067,0.068418 +1.548402,1.472123,0.408939,-2.172460,-0.115095,0.076346 +1.541089,1.473180,0.407685,-2.172966,-0.106113,0.084284 +1.533733,1.474206,0.406378,-2.173408,-0.097122,0.092232 +1.526335,1.475200,0.405017,-2.173786,-0.088121,0.100189 +1.518894,1.476163,0.403603,-2.174100,-0.079111,0.108155 +1.511411,1.477095,0.402136,-2.174349,-0.070094,0.116130 +1.503886,1.477995,0.400614,-2.174535,-0.061068,0.124114 +1.496320,1.478864,0.399039,-2.174657,-0.052035,0.132105 +1.488713,1.479703,0.397410,-2.174715,-0.042994,0.140104 +1.481066,1.480510,0.395727,-2.174709,-0.033947,0.148110 +1.473379,1.481286,0.393990,-2.174640,-0.024894,0.156124 +1.465652,1.482031,0.392199,-2.174507,-0.015836,0.164144 +1.457885,1.482745,0.390354,-2.174311,-0.006771,0.172170 +1.450080,1.483428,0.388454,-2.174052,0.002298,0.180202 +1.442236,1.484081,0.386501,-2.173730,0.011371,0.188240 +1.434354,1.484703,0.384493,-2.173344,0.020449,0.196283 +1.426434,1.485294,0.382430,-2.172896,0.029530,0.204331 +1.418476,1.485854,0.380314,-2.172386,0.038614,0.212383 +1.410482,1.486384,0.378142,-2.171812,0.047701,0.220440 +1.402451,1.486884,0.375917,-2.171177,0.056790,0.228500 +1.394384,1.487354,0.373637,-2.170479,0.065881,0.236564 +1.386282,1.487793,0.371302,-2.169719,0.074974,0.244631 +1.378144,1.488202,0.368913,-2.168897,0.084067,0.252701 +1.369971,1.488581,0.366469,-2.168013,0.093161,0.260773 +1.361763,1.488930,0.363971,-2.167068,0.102255,0.268847 +1.353522,1.489249,0.361418,-2.166061,0.111349,0.276922 +1.345247,1.489539,0.358811,-2.164992,0.120442,0.284999 +1.336938,1.489799,0.356149,-2.163863,0.129533,0.293077 +1.328597,1.490029,0.353433,-2.162673,0.138624,0.301155 +1.320224,1.490230,0.350662,-2.161421,0.147711,0.309234 +1.311818,1.490402,0.347837,-2.160109,0.156797,0.317312 +1.303381,1.490545,0.344957,-2.158737,0.165879,0.325390 +1.294913,1.490659,0.342023,-2.157305,0.174959,0.333467 +1.286414,1.490743,0.339034,-2.155812,0.184034,0.341543 +1.277886,1.490799,0.335991,-2.154260,0.193105,0.349617 +1.269327,1.490827,0.332893,-2.152647,0.202171,0.357689 +1.260739,1.490826,0.329742,-2.150976,0.211232,0.365758 +1.252123,1.490796,0.326536,-2.149245,0.220288,0.373825 +1.243478,1.490739,0.323276,-2.147455,0.229338,0.381888 +1.234805,1.490653,0.319962,-2.145606,0.238381,0.389948 +1.226104,1.490540,0.316593,-2.143698,0.247417,0.398004 +1.217377,1.490398,0.313171,-2.141732,0.256446,0.406056 +1.208623,1.490230,0.309695,-2.139708,0.265468,0.414104 +1.199843,1.490033,0.306165,-2.137626,0.274481,0.422146 +1.191037,1.489810,0.302581,-2.135486,0.283486,0.430183 +1.182206,1.489559,0.298944,-2.133288,0.292481,0.438214 +1.173350,1.489282,0.295253,-2.131033,0.301468,0.446239 +1.164470,1.488977,0.291508,-2.128721,0.310444,0.454257 +1.155567,1.488646,0.287710,-2.126352,0.319410,0.462269 +1.146640,1.488289,0.283859,-2.123927,0.328366,0.470273 +1.137690,1.487905,0.279955,-2.121445,0.337310,0.478270 +1.128718,1.487496,0.275997,-2.118907,0.346243,0.486258 +1.119724,1.487060,0.271987,-2.116313,0.355164,0.494239 +1.110708,1.486599,0.267924,-2.113663,0.364073,0.502210 +1.101672,1.486112,0.263808,-2.110958,0.372968,0.510172 +1.092615,1.485600,0.259640,-2.108198,0.381851,0.518125 +1.083538,1.485063,0.255419,-2.105383,0.390720,0.526068 +1.074442,1.484501,0.251145,-2.102514,0.399575,0.534001 +1.065326,1.483914,0.246820,-2.099590,0.408415,0.541923 +1.056192,1.483303,0.242443,-2.096612,0.417241,0.549835 +1.047041,1.482667,0.238014,-2.093580,0.426051,0.557734 +1.037871,1.482007,0.233533,-2.090495,0.434846,0.565622 +1.028685,1.481323,0.229000,-2.087357,0.443624,0.573498 +1.019481,1.480616,0.224416,-2.084165,0.452386,0.581362 +1.010262,1.479885,0.219781,-2.080921,0.461131,0.589212 +1.001027,1.479131,0.215095,-2.077625,0.469859,0.597050 +0.991777,1.478354,0.210358,-2.074276,0.478569,0.604874 +0.982513,1.477553,0.205571,-2.070876,0.487262,0.612684 +0.973234,1.476731,0.200732,-2.067424,0.495935,0.620479 +0.963942,1.475886,0.195844,-2.063920,0.504590,0.628260 +0.954636,1.475018,0.190905,-2.060366,0.513225,0.636026 +0.945318,1.474129,0.185917,-2.056762,0.521841,0.643776 +0.935988,1.473218,0.180879,-2.053106,0.530437,0.651510 +0.926646,1.472286,0.175791,-2.049401,0.539012,0.659229 +0.917293,1.471332,0.170654,-2.045647,0.547566,0.666931 +0.907929,1.470357,0.165468,-2.041842,0.556099,0.674616 +0.898555,1.469362,0.160233,-2.037989,0.564611,0.682283 +0.889171,1.468346,0.154949,-2.034087,0.573101,0.689933 +0.879779,1.467310,0.149617,-2.030136,0.581568,0.697565 +0.870377,1.466254,0.144236,-2.026138,0.590012,0.705179 +0.860967,1.465177,0.138808,-2.022091,0.598434,0.712774 +0.851550,1.464082,0.133332,-2.017997,0.606831,0.720350 +0.842126,1.462967,0.127808,-2.013856,0.615205,0.727907 +0.832694,1.461833,0.122237,-2.009668,0.623555,0.735444 +0.823257,1.460680,0.116620,-2.005433,0.631880,0.742960 +0.813814,1.459509,0.110955,-2.001152,0.640180,0.750457 +0.804365,1.458319,0.105244,-1.996826,0.648455,0.757932 +0.794912,1.457111,0.099486,-1.992454,0.656704,0.765386 +0.785455,1.455886,0.093683,-1.988036,0.664928,0.772819 +0.775994,1.454643,0.087834,-1.983574,0.673124,0.780230 +0.766530,1.453383,0.081939,-1.979068,0.681294,0.787618 +0.757064,1.452105,0.075999,-1.974517,0.689437,0.794984 +0.747595,1.450811,0.070015,-1.969922,0.697553,0.802327 +0.738124,1.449501,0.063985,-1.965284,0.705640,0.809647 +0.728652,1.448174,0.057912,-1.960603,0.713700,0.816943 +0.719179,1.446832,0.051794,-1.955880,0.721731,0.824216 +0.709707,1.445474,0.045633,-1.951114,0.729733,0.831464 +0.700234,1.444100,0.039428,-1.946305,0.737706,0.838687 +0.690762,1.442712,0.033179,-1.941455,0.745650,0.845885 +0.681292,1.441308,0.026888,-1.936564,0.753563,0.853059 +0.671823,1.439890,0.020555,-1.931632,0.761447,0.860206 +0.662356,1.438458,0.014179,-1.926660,0.769300,0.867328 +0.652893,1.437011,0.007761,-1.921647,0.777123,0.874423 +0.643432,1.435551,0.001302,-1.916594,0.784914,0.881492 +0.633975,1.434078,-0.005199,-1.911502,0.792674,0.888533 +0.624523,1.432591,-0.011741,-1.906370,0.800402,0.895548 +0.615075,1.431091,-0.018323,-1.901200,0.808098,0.902535 +0.605632,1.429579,-0.024946,-1.895992,0.815762,0.909494 +0.596195,1.428054,-0.031609,-1.890745,0.823393,0.916425 +0.586765,1.426518,-0.038311,-1.885461,0.830991,0.923327 +0.577341,1.424969,-0.045053,-1.880140,0.838556,0.930200 +0.567924,1.423410,-0.051834,-1.874782,0.846087,0.937044 +0.558514,1.421839,-0.058653,-1.869387,0.853584,0.943859 +0.549113,1.420257,-0.065511,-1.863957,0.861048,0.950644 +0.539720,1.418664,-0.072407,-1.858490,0.868476,0.957399 +0.530337,1.417061,-0.079341,-1.852989,0.875871,0.964124 +0.520963,1.415448,-0.086311,-1.847452,0.883230,0.970818 +0.511599,1.413826,-0.093319,-1.841881,0.890554,0.977480 +0.502245,1.412194,-0.100363,-1.836275,0.897842,0.984112 +0.492903,1.410552,-0.107444,-1.830636,0.905094,0.990712 +0.483572,1.408902,-0.114560,-1.824963,0.912311,0.997280 +0.474252,1.407243,-0.121712,-1.819258,0.919491,1.003816 +0.464946,1.405576,-0.128899,-1.813520,0.926634,1.010319 +0.455652,1.403901,-0.136120,-1.807749,0.933741,1.016790 +0.446371,1.402219,-0.143376,-1.801947,0.940811,1.023228 +0.437104,1.400528,-0.150666,-1.796114,0.947843,1.029632 +0.427851,1.398831,-0.157989,-1.790249,0.954837,1.036003 +0.418614,1.397127,-0.165346,-1.784354,0.961794,1.042340 +0.409391,1.395416,-0.172735,-1.778428,0.968712,1.048643 +0.400184,1.393699,-0.180157,-1.772473,0.975592,1.054911 +0.390993,1.391976,-0.187611,-1.766488,0.982434,1.061145 +0.381818,1.390247,-0.195096,-1.760474,0.989237,1.067343 +0.372661,1.388513,-0.202613,-1.754432,0.996000,1.073507 +0.363520,1.386774,-0.210161,-1.748361,1.002725,1.079635 +0.354398,1.385030,-0.217739,-1.742263,1.009409,1.085727 +0.345294,1.383282,-0.225347,-1.736137,1.016055,1.091784 +0.336209,1.381529,-0.232985,-1.729984,1.022660,1.097804 +0.327143,1.379773,-0.240652,-1.723804,1.029225,1.103787 +0.318097,1.378013,-0.248348,-1.717598,1.035750,1.109734 +0.309071,1.376249,-0.256072,-1.711367,1.042234,1.115644 +0.300065,1.374482,-0.263824,-1.705110,1.048677,1.121516 +0.291080,1.372713,-0.271604,-1.698828,1.055079,1.127352 +0.282117,1.370941,-0.279411,-1.692521,1.061441,1.133149 +0.273175,1.369167,-0.287244,-1.686191,1.067761,1.138908 +0.264256,1.367391,-0.295104,-1.679836,1.074039,1.144630 +0.255359,1.365614,-0.302990,-1.673458,1.080276,1.150313 +0.246486,1.363835,-0.310902,-1.667057,1.086470,1.155957 +0.237636,1.362055,-0.318838,-1.660634,1.092623,1.161562 +0.228809,1.360274,-0.326799,-1.654188,1.098734,1.167128 +0.220008,1.358493,-0.334784,-1.647721,1.104802,1.172655 +0.211230,1.356712,-0.342793,-1.641232,1.110827,1.178143 +0.202478,1.354931,-0.350826,-1.634723,1.116810,1.183591 +0.193752,1.353150,-0.358881,-1.628193,1.122750,1.188998 +0.185051,1.351370,-0.366958,-1.621643,1.128646,1.194366 +0.176377,1.349591,-0.375058,-1.615073,1.134500,1.199693 +0.167730,1.347813,-0.383179,-1.608484,1.140310,1.204980 +0.159109,1.346037,-0.391322,-1.601876,1.146077,1.210226 +0.150516,1.344262,-0.399485,-1.595249,1.151800,1.215431 +0.141952,1.342490,-0.407668,-1.588605,1.157479,1.220595 +0.133415,1.340720,-0.415871,-1.581943,1.163114,1.225718 +0.124907,1.338952,-0.424093,-1.575263,1.168706,1.230799 +0.116428,1.337188,-0.432335,-1.568567,1.174253,1.235839 +0.107979,1.335426,-0.440594,-1.561854,1.179756,1.240836 +0.099559,1.333668,-0.448872,-1.555125,1.185214,1.245792 +0.091169,1.331914,-0.457167,-1.548381,1.190629,1.250705 +0.082810,1.330164,-0.465480,-1.541621,1.195998,1.255577 +0.074482,1.328418,-0.473808,-1.534847,1.201323,1.260405 +0.066185,1.326676,-0.482154,-1.528058,1.206603,1.265191 +0.057920,1.324940,-0.490514,-1.521256,1.211837,1.269934 +0.049687,1.323208,-0.498891,-1.514439,1.217027,1.274634 +0.041486,1.321482,-0.507281,-1.507610,1.222172,1.279291 +0.033317,1.319761,-0.515687,-1.500767,1.227272,1.283904 +0.025182,1.318046,-0.524106,-1.493913,1.232326,1.288475 +0.017080,1.316338,-0.532538,-1.487046,1.237335,1.293001 +0.009012,1.314635,-0.540984,-1.480168,1.242299,1.297484 +0.000977,1.312939,-0.549442,-1.473278,1.247217,1.301923 +-0.007023,1.311251,-0.557912,-1.466378,1.252090,1.306318 +-0.014988,1.309569,-0.566393,-1.459468,1.256916,1.310669 +-0.022918,1.307894,-0.574886,-1.452547,1.261698,1.314975 +-0.030814,1.306228,-0.583389,-1.445617,1.266433,1.319237 +-0.038673,1.304569,-0.591903,-1.438678,1.271123,1.323455 +-0.046497,1.302918,-0.600426,-1.431730,1.275767,1.327628 +-0.054284,1.301276,-0.608958,-1.424773,1.280365,1.331757 +-0.062035,1.299642,-0.617499,-1.417809,1.284917,1.335840 +-0.069749,1.298017,-0.626049,-1.410837,1.289423,1.339879 +-0.077425,1.296401,-0.634606,-1.403857,1.293883,1.343872 +-0.085065,1.294795,-0.643170,-1.396871,1.298297,1.347821 +-0.092666,1.293198,-0.651742,-1.389879,1.302665,1.351724 +-0.100230,1.291610,-0.660320,-1.382880,1.306987,1.355582 +-0.107755,1.290033,-0.668904,-1.375876,1.311262,1.359395 +-0.115242,1.288466,-0.677493,-1.368867,1.315492,1.363162 +-0.122690,1.286910,-0.686087,-1.361852,1.319676,1.366884 +-0.130099,1.285364,-0.694686,-1.354834,1.323813,1.370560 +-0.137469,1.283829,-0.703289,-1.347811,1.327905,1.374190 +-0.144798,1.282306,-0.711895,-1.340784,1.331950,1.377775 +-0.152088,1.280793,-0.720505,-1.333754,1.335949,1.381313 +-0.159338,1.279292,-0.729117,-1.326721,1.339902,1.384806 +-0.166548,1.277803,-0.737731,-1.319686,1.343809,1.388253 +-0.173717,1.276326,-0.746347,-1.312648,1.347670,1.391654 +-0.180845,1.274862,-0.754965,-1.305608,1.351484,1.395009 +-0.187931,1.273409,-0.763583,-1.298567,1.355253,1.398317 +-0.194977,1.271970,-0.772201,-1.291525,1.358976,1.401580 +-0.201981,1.270543,-0.780819,-1.284482,1.362653,1.404796 +-0.208943,1.269129,-0.789437,-1.277439,1.366283,1.407967 +-0.215863,1.267728,-0.798053,-1.270396,1.369868,1.411091 +-0.222741,1.266341,-0.806668,-1.263353,1.373407,1.414168 +-0.229576,1.264967,-0.815281,-1.256311,1.376901,1.417200 +-0.236369,1.263607,-0.823891,-1.249270,1.380348,1.420185 +-0.243119,1.262261,-0.832498,-1.242231,1.383750,1.423123 +-0.249825,1.260929,-0.841102,-1.235193,1.387106,1.426016 +-0.256489,1.259612,-0.849702,-1.228158,1.390417,1.428861 +-0.263109,1.258309,-0.858297,-1.221125,1.393682,1.431661 +-0.269685,1.257021,-0.866888,-1.214095,1.396901,1.434414 +-0.276218,1.255747,-0.875473,-1.207068,1.400076,1.437121 +-0.282706,1.254489,-0.884052,-1.200045,1.403204,1.439782 +-0.289151,1.253246,-0.892626,-1.193026,1.406288,1.442396 +-0.295551,1.252018,-0.901192,-1.186012,1.409327,1.444963 +-0.301906,1.250806,-0.909751,-1.179001,1.412320,1.447485 +-0.308217,1.249609,-0.918303,-1.171996,1.415269,1.449960 +-0.314483,1.248428,-0.926847,-1.164996,1.418172,1.452389 +-0.320704,1.247264,-0.935382,-1.158002,1.421031,1.454771 +-0.326880,1.246115,-0.943908,-1.151014,1.423845,1.457107 +-0.333010,1.244983,-0.952424,-1.144032,1.426615,1.459397 +-0.339095,1.243867,-0.960931,-1.137057,1.429340,1.461641 +-0.345135,1.242768,-0.969427,-1.130089,1.432021,1.463839 +-0.351129,1.241685,-0.977912,-1.123129,1.434658,1.465991 +-0.357077,1.240620,-0.986386,-1.116176,1.437250,1.468096 +-0.362979,1.239571,-0.994848,-1.109231,1.439799,1.470156 +-0.368835,1.238539,-1.003299,-1.102294,1.442303,1.472169 +-0.374645,1.237525,-1.011736,-1.095366,1.444764,1.474137 +-0.380408,1.236528,-1.020160,-1.088447,1.447182,1.476059 +-0.386125,1.235549,-1.028571,-1.081537,1.449556,1.477935 +-0.391796,1.234587,-1.036968,-1.074637,1.451886,1.479766 +-0.397420,1.233643,-1.045350,-1.067746,1.454173,1.481551 +-0.402997,1.232717,-1.053718,-1.060866,1.456418,1.483290 +-0.408528,1.231809,-1.062070,-1.053997,1.458619,1.484984 +-0.414012,1.230919,-1.070406,-1.047138,1.460778,1.486633 +-0.419448,1.230047,-1.078726,-1.040290,1.462894,1.488236 +-0.424838,1.229193,-1.087030,-1.033454,1.464967,1.489794 +-0.430181,1.228358,-1.095316,-1.026630,1.466999,1.491307 +-0.435477,1.227541,-1.103585,-1.019817,1.468988,1.492775 +-0.440725,1.226742,-1.111836,-1.013017,1.470935,1.494198 +-0.445926,1.225962,-1.120069,-1.006229,1.472841,1.495576 +-0.451080,1.225201,-1.128283,-0.999455,1.474705,1.496910 +-0.456187,1.224459,-1.136477,-0.992693,1.476527,1.498199 +-0.461246,1.223736,-1.144652,-0.985945,1.478309,1.499443 +-0.466257,1.223031,-1.152807,-0.979211,1.480049,1.500644 +-0.471222,1.222346,-1.160942,-0.972491,1.481749,1.501800 +-0.476138,1.221680,-1.169055,-0.965785,1.483407,1.502911 +-0.481008,1.221032,-1.177147,-0.959093,1.485026,1.503979 +-0.485829,1.220404,-1.185217,-0.952417,1.486604,1.505003 +-0.490604,1.219796,-1.193266,-0.945755,1.488142,1.505984 +-0.495330,1.219206,-1.201291,-0.939109,1.489640,1.506921 +-0.500009,1.218636,-1.209294,-0.932478,1.491098,1.507814 +-0.504641,1.218086,-1.217273,-0.925864,1.492517,1.508664 +-0.509225,1.217554,-1.225228,-0.919265,1.493897,1.509471 +-0.513761,1.217043,-1.233159,-0.912683,1.495237,1.510235 +-0.518250,1.216550,-1.241066,-0.906118,1.496539,1.510956 +-0.522691,1.216078,-1.248947,-0.899569,1.497802,1.511635 +-0.527085,1.215625,-1.256803,-0.893038,1.499027,1.512271 +-0.531431,1.215191,-1.264634,-0.886524,1.500213,1.512864 +-0.535730,1.214778,-1.272438,-0.880028,1.501362,1.513416 +-0.539982,1.214384,-1.280215,-0.873549,1.502473,1.513925 +-0.544186,1.214009,-1.287966,-0.867089,1.503546,1.514393 +-0.548342,1.213654,-1.295689,-0.860647,1.504583,1.514819 +-0.552452,1.213319,-1.303384,-0.854223,1.505582,1.515204 +-0.556514,1.213004,-1.311051,-0.847818,1.506544,1.515547 +-0.560529,1.212708,-1.318690,-0.841433,1.507470,1.515849 +-0.564497,1.212433,-1.326300,-0.835066,1.508360,1.516110 +-0.568418,1.212176,-1.333880,-0.828719,1.509213,1.516331 +-0.572292,1.211940,-1.341431,-0.822392,1.510031,1.516511 +-0.576119,1.211723,-1.348951,-0.816084,1.510813,1.516651 +-0.579899,1.211526,-1.356442,-0.809797,1.511560,1.516751 +-0.583632,1.211348,-1.363901,-0.803529,1.512272,1.516810 +-0.587319,1.211190,-1.371330,-0.797283,1.512950,1.516830 +-0.590959,1.211052,-1.378727,-0.791057,1.513592,1.516811 +-0.594553,1.210933,-1.386092,-0.784851,1.514201,1.516752 +-0.598100,1.210834,-1.393425,-0.778667,1.514775,1.516655 +-0.601601,1.210754,-1.400725,-0.772504,1.515316,1.516518 +-0.605056,1.210694,-1.407993,-0.766363,1.515823,1.516343 +-0.608465,1.210653,-1.415227,-0.760243,1.516297,1.516129 +-0.611828,1.210632,-1.422428,-0.754145,1.516739,1.515878 +-0.615145,1.210630,-1.429595,-0.748069,1.517147,1.515588 +-0.618417,1.210647,-1.436727,-0.742016,1.517524,1.515261 +-0.621642,1.210683,-1.443825,-0.735984,1.517868,1.514896 +-0.624823,1.210739,-1.450888,-0.729975,1.518181,1.514494 +-0.627958,1.210814,-1.457916,-0.723989,1.518462,1.514055 +-0.631048,1.210907,-1.464908,-0.718025,1.518711,1.513580 +-0.634093,1.211020,-1.471864,-0.712085,1.518930,1.513068 +-0.637093,1.211151,-1.478784,-0.706168,1.519119,1.512519 +-0.640049,1.211301,-1.485667,-0.700274,1.519277,1.511935 +-0.642960,1.211470,-1.492513,-0.694403,1.519404,1.511315 +-0.645826,1.211658,-1.499322,-0.688556,1.519503,1.510660 +-0.648648,1.211864,-1.506094,-0.682733,1.519571,1.509969 +-0.651427,1.212089,-1.512828,-0.676934,1.519611,1.509244 +-0.654161,1.212332,-1.519524,-0.671158,1.519622,1.508484 +-0.656852,1.212593,-1.526181,-0.665407,1.519604,1.507689 +-0.659499,1.212872,-1.532800,-0.659680,1.519558,1.506861 +-0.662103,1.213170,-1.539379,-0.653978,1.519484,1.505998 +-0.664664,1.213485,-1.545920,-0.648300,1.519382,1.505102 +-0.667182,1.213818,-1.552420,-0.642647,1.519253,1.504173 +-0.669657,1.214169,-1.558881,-0.637018,1.519097,1.503211 +-0.672090,1.214537,-1.565302,-0.631415,1.518914,1.502216 +-0.674480,1.214923,-1.571682,-0.625836,1.518705,1.501188 +-0.676828,1.215327,-1.578021,-0.620283,1.518470,1.500129 +-0.679134,1.215747,-1.584320,-0.614755,1.518209,1.499037 +-0.681399,1.216185,-1.590577,-0.609252,1.517923,1.497914 +-0.683622,1.216639,-1.596792,-0.603774,1.517611,1.496760 +-0.685804,1.217111,-1.602966,-0.598322,1.517275,1.495575 +-0.687944,1.217599,-1.609098,-0.592896,1.516914,1.494359 +-0.690044,1.218103,-1.615187,-0.587495,1.516529,1.493113 +-0.692104,1.218624,-1.621234,-0.582120,1.516120,1.491836 +-0.694123,1.219161,-1.627238,-0.576771,1.515688,1.490530 +-0.696102,1.219715,-1.633199,-0.571448,1.515232,1.489195 +-0.698041,1.220284,-1.639116,-0.566151,1.514754,1.487830 +-0.699941,1.220869,-1.644990,-0.560880,1.514253,1.486436 +-0.701801,1.221469,-1.650820,-0.555636,1.513729,1.485014 +-0.703623,1.222085,-1.656606,-0.550417,1.513184,1.483564 +-0.705405,1.222716,-1.662348,-0.545225,1.512618,1.482086 +-0.707149,1.223362,-1.668046,-0.540059,1.512030,1.480580 +-0.708855,1.224023,-1.673698,-0.534920,1.511421,1.479048 +-0.710522,1.224699,-1.679306,-0.529807,1.510791,1.477488 +-0.712152,1.225389,-1.684868,-0.524720,1.510141,1.475901 +-0.713745,1.226094,-1.690385,-0.519660,1.509472,1.474288 +-0.715300,1.226813,-1.695857,-0.514627,1.508782,1.472650 +-0.716818,1.227546,-1.701282,-0.509621,1.508074,1.470985 +-0.718300,1.228292,-1.706662,-0.504641,1.507346,1.469296 +-0.719745,1.229052,-1.711995,-0.499688,1.506600,1.467581 +-0.721155,1.229826,-1.717282,-0.494761,1.505836,1.465842 +-0.722528,1.230612,-1.722522,-0.489862,1.505054,1.464079 +-0.723867,1.231412,-1.727716,-0.484989,1.504254,1.462291 +-0.725170,1.232224,-1.732862,-0.480143,1.503437,1.460480 +-0.726438,1.233049,-1.737962,-0.475324,1.502603,1.458646 +-0.727671,1.233886,-1.743014,-0.470532,1.501753,1.456789 +-0.728871,1.234735,-1.748018,-0.465767,1.500886,1.454909 +-0.730036,1.235596,-1.752975,-0.461028,1.500003,1.453007 +-0.731168,1.236469,-1.757884,-0.456317,1.499105,1.451083 +-0.732267,1.237353,-1.762744,-0.451632,1.498191,1.449137 +-0.733333,1.238248,-1.767557,-0.446975,1.497263,1.447171 +-0.734366,1.239155,-1.772321,-0.442344,1.496320,1.445183 +-0.735366,1.240070,-1.777030,-0.437743,1.495360,1.443180 +-0.736330,1.240990,-1.781700,-0.433172,1.494390,1.441140 +-0.737255,1.241920,-1.786300,-0.428636,1.493390,1.439090 +-0.738139,1.242850,-1.790850,-0.424139,1.492370,1.437010 +-0.738977,1.243780,-1.795340,-0.419684,1.491310,1.434930 +-0.739767,1.244700,-1.799760,-0.415276,1.490230,1.432830 +-0.740505,1.245610,-1.804110,-0.410918,1.489100,1.430720 +-0.741187,1.246510,-1.808400,-0.406613,1.487940,1.428610 +-0.741812,1.247400,-1.812600,-0.402367,1.486720,1.426500 +-0.742375,1.248260,-1.816730,-0.398183,1.485460,1.424390 +-0.742874,1.249110,-1.820780,-0.394064,1.484150,1.422270 +-0.743304,1.249930,-1.824750,-0.390015,1.482780,1.420160 +-0.743663,1.250720,-1.828630,-0.386040,1.481350,1.418050 +-0.743948,1.251480,-1.832410,-0.382142,1.479850,1.415940 +-0.744155,1.252200,-1.836110,-0.378325,1.478290,1.413830 +-0.744281,1.252890,-1.839700,-0.374594,1.476650,1.411720 +-0.744323,1.253540,-1.843200,-0.370952,1.474960,1.409610 +-0.744280,1.254140,-1.846590,-0.367402,1.473200,1.407500 +-0.744155,1.254690,-1.849880,-0.363950,1.471380,1.405390 +-0.743951,1.255190,-1.853050,-0.360598,1.469510,1.403270 +-0.743672,1.255640,-1.856110,-0.357351,1.467590,1.401160 +-0.743320,1.256030,-1.859060,-0.354213,1.465620,1.399050 +-0.742899,1.256370,-1.861880,-0.351187,1.463610,1.396940 +-0.742413,1.256630,-1.864580,-0.348277,1.461560,1.394830 +-0.741864,1.256830,-1.867160,-0.345487,1.459480,1.392720 +-0.741255,1.256960,-1.869600,-0.342822,1.457370,1.390610 +-0.740591,1.257020,-1.871920,-0.340283,1.455230,1.388500 +-0.739873,1.256990,-1.874090,-0.337869,1.453070,1.386390 +-0.739106,1.256890,-1.876130,-0.335576,1.450890,1.384270 +-0.738293,1.256710,-1.878030,-0.333400,1.448700,1.382160 +-0.737436,1.256430,-1.879770,-0.331337,1.446500,1.380050 +-0.736540,1.256070,-1.881370,-0.329383,1.444280,1.377940 +-0.735607,1.255620,-1.882820,-0.327534,1.442070,1.375830 +-0.734641,1.255070,-1.884110,-0.325787,1.439860,1.373720 +-0.733645,1.254420,-1.885250,-0.324137,1.437640,1.371610 +-0.732621,1.253690,-1.886220,-0.322581,1.435430,1.369500 +-0.731575,1.252870,-1.887030,-0.321114,1.433210,1.367380 +-0.730507,1.251960,-1.887680,-0.319733,1.431000,1.365270 +-0.729423,1.250970,-1.888190,-0.318435,1.428780,1.363160 +-0.728325,1.249910,-1.888540,-0.317214,1.426570,1.361050 +-0.727216,1.248770,-1.888740,-0.316067,1.424350,1.358940 +-0.726100,1.247560,-1.888800,-0.314991,1.422140,1.356830 +-0.724979,1.246280,-1.888730,-0.313981,1.419920,1.354720 +-0.723858,1.244940,-1.888510,-0.313033,1.417710,1.352610 +-0.722736,1.243540,-1.888160,-0.312144,1.415490,1.350500 +-0.721615,1.242080,-1.887680,-0.311310,1.413280,1.348380 +-0.720493,1.240560,-1.887070,-0.310527,1.411060,1.346270 +-0.719371,1.238990,-1.886340,-0.309790,1.408850,1.344160 +-0.718250,1.237380,-1.885490,-0.309097,1.406640,1.342050 +-0.717128,1.235710,-1.884520,-0.308443,1.404420,1.339940 +-0.716007,1.234010,-1.883430,-0.307824,1.402210,1.337830 +-0.714885,1.232270,-1.882240,-0.307236,1.399990,1.335720 +-0.713764,1.230490,-1.880940,-0.306676,1.397780,1.333610 +-0.712642,1.228680,-1.879530,-0.306139,1.395560,1.331500 +-0.711521,1.226840,-1.878020,-0.305622,1.393350,1.329380 +-0.710399,1.224980,-1.876410,-0.305121,1.391130,1.327270 +-0.709278,1.223090,-1.874710,-0.304632,1.388920,1.325160 +-0.708156,1.221190,-1.872920,-0.304151,1.386700,1.323050 +-0.707034,1.219270,-1.871030,-0.303675,1.384490,1.320940 +-0.705913,1.217330,-1.869070,-0.303199,1.382270,1.318830 +-0.704791,1.215390,-1.867020,-0.302723,1.380060,1.316720 +-0.703670,1.213440,-1.864890,-0.302247,1.377840,1.314610 +-0.702548,1.211490,-1.862690,-0.301770,1.375630,1.312500 +-0.701427,1.209540,-1.860410,-0.301294,1.373410,1.310380 +-0.700305,1.207590,-1.858070,-0.300818,1.371200,1.308270 +-0.699184,1.205630,-1.855660,-0.300342,1.368990,1.306160 +-0.698062,1.203680,-1.853180,-0.299866,1.366770,1.304050 +-0.696941,1.201730,-1.850650,-0.299390,1.364560,1.301940 +-0.695819,1.199780,-1.848070,-0.298914,1.362340,1.299830 +-0.694697,1.197820,-1.845430,-0.298438,1.360130,1.297720 +-0.693576,1.195870,-1.842740,-0.297962,1.357910,1.295610 +-0.692454,1.193920,-1.840000,-0.297486,1.355700,1.293490 +-0.691333,1.191960,-1.837220,-0.297010,1.353480,1.291380 +-0.690211,1.190010,-1.834410,-0.296534,1.351270,1.289270 +-0.689090,1.188060,-1.831550,-0.296058,1.349050,1.287160 +-0.687968,1.186110,-1.828660,-0.295582,1.346840,1.285050 +-0.686847,1.184150,-1.825750,-0.295106,1.344620,1.282940 +-0.685725,1.182200,-1.822800,-0.294630,1.342410,1.280830 +-0.684604,1.180250,-1.819830,-0.294154,1.340190,1.278720 +-0.683482,1.178300,-1.816840,-0.293678,1.337980,1.276610 +-0.682360,1.176340,-1.813840,-0.293202,1.335760,1.274490 +-0.681239,1.174390,-1.810820,-0.292726,1.333550,1.272380 +-0.680117,1.172440,-1.807790,-0.292250,1.331340,1.270270 +-0.678996,1.170490,-1.804760,-0.291774,1.329120,1.268160 +-0.677874,1.168530,-1.801710,-0.291298,1.326910,1.266050 +-0.676753,1.166580,-1.798670,-0.290822,1.324690,1.263940 +-0.675631,1.164630,-1.795630,-0.290346,1.322480,1.261830 +-0.674510,1.162680,-1.792590,-0.289870,1.320260,1.259720 +-0.673388,1.160720,-1.789550,-0.289394,1.318050,1.257610 +-0.672267,1.158770,-1.786510,-0.288918,1.315830,1.255490 +-0.671145,1.156820,-1.783470,-0.288441,1.313620,1.253380 +-0.670023,1.154870,-1.780420,-0.287965,1.311400,1.251270 +-0.668902,1.152910,-1.777380,-0.287489,1.309190,1.249160 +-0.667780,1.150960,-1.774340,-0.287013,1.306970,1.247050 +-0.666659,1.149010,-1.771300,-0.286537,1.304760,1.244940 +-0.665537,1.147060,-1.768260,-0.286061,1.302540,1.242830 +-0.664416,1.145100,-1.765220,-0.285585,1.300330,1.240720 +-0.663294,1.143150,-1.762180,-0.285109,1.298110,1.238610 +-0.662173,1.141200,-1.759130,-0.284633,1.295900,1.236490 +-0.661051,1.139250,-1.756090,-0.284157,1.293690,1.234380 +-0.659930,1.137290,-1.753050,-0.283681,1.291470,1.232270 +-0.658808,1.135340,-1.750010,-0.283205,1.289260,1.230160 +-0.657686,1.133390,-1.746970,-0.282729,1.287040,1.228050 +-0.656565,1.131440,-1.743930,-0.282253,1.284830,1.225940 +-0.655443,1.129480,-1.740890,-0.281777,1.282610,1.223830 +-0.654322,1.127530,-1.737840,-0.281301,1.280400,1.221720 +-0.653200,1.125580,-1.734800,-0.280825,1.278180,1.219610 +-0.652079,1.123630,-1.731760,-0.280349,1.275970,1.217490 +-0.650957,1.121670,-1.728720,-0.279873,1.273750,1.215380 +-0.649836,1.119720,-1.725680,-0.279397,1.271540,1.213270 +-0.648714,1.117770,-1.722640,-0.278921,1.269320,1.211160 +-0.647593,1.115820,-1.719600,-0.278445,1.267110,1.209050 +-0.646471,1.113860,-1.716550,-0.277969,1.264890,1.206940 +-0.645349,1.111910,-1.713510,-0.277493,1.262680,1.204830 +-0.644228,1.109960,-1.710470,-0.277017,1.260460,1.202720 +-0.643106,1.108010,-1.707430,-0.276541,1.258250,1.200600 +-0.641985,1.106050,-1.704390,-0.276065,1.256040,1.198490 +-0.640863,1.104100,-1.701350,-0.275589,1.253820,1.196380 +-0.639742,1.102150,-1.698310,-0.275112,1.251610,1.194270 +-0.638620,1.100200,-1.695260,-0.274636,1.249390,1.192160 +-0.637499,1.098240,-1.692220,-0.274160,1.247180,1.190050 +-0.636377,1.096290,-1.689180,-0.273684,1.244960,1.187940 +-0.635256,1.094340,-1.686140,-0.273208,1.242750,1.185830 +-0.634134,1.092390,-1.683100,-0.272732,1.240530,1.183720 +-0.633012,1.090430,-1.680060,-0.272256,1.238320,1.181600 +-0.631891,1.088480,-1.677020,-0.271780,1.236100,1.179490 +-0.630769,1.086530,-1.673970,-0.271304,1.233890,1.177380 +-0.629648,1.084580,-1.670930,-0.270828,1.231670,1.175270 +-0.628526,1.082620,-1.667890,-0.270352,1.229460,1.173160 +-0.627405,1.080670,-1.664850,-0.269876,1.227240,1.171050 +-0.626283,1.078720,-1.661810,-0.269400,1.225030,1.168940 +-0.625162,1.076770,-1.658770,-0.268924,1.222810,1.166830 +-0.624040,1.074810,-1.655730,-0.268448,1.220600,1.164720 +-0.622919,1.072860,-1.652680,-0.267972,1.218390,1.162600 +-0.621797,1.070910,-1.649640,-0.267496,1.216170,1.160490 +-0.620675,1.068960,-1.646600,-0.267020,1.213960,1.158380 +-0.619554,1.067000,-1.643560,-0.266544,1.211740,1.156270 +-0.618432,1.065050,-1.640520,-0.266068,1.209530,1.154160 +-0.617311,1.063100,-1.637480,-0.265592,1.207310,1.152050 +-0.616189,1.061150,-1.634440,-0.265116,1.205100,1.149940 +-0.615068,1.059190,-1.631390,-0.264640,1.202880,1.147830 +-0.613946,1.057240,-1.628350,-0.264164,1.200670,1.145720 +-0.612825,1.055290,-1.625310,-0.263688,1.198450,1.143600 +-0.611703,1.053340,-1.622270,-0.263212,1.196240,1.141490 +-0.610582,1.051380,-1.619230,-0.262736,1.194020,1.139380 +-0.609460,1.049430,-1.616190,-0.262260,1.191810,1.137270 +-0.608338,1.047480,-1.613150,-0.261783,1.189590,1.135160 +-0.607217,1.045530,-1.610100,-0.261307,1.187380,1.133050 +-0.606095,1.043570,-1.607060,-0.260831,1.185160,1.130940 +-0.604974,1.041620,-1.604020,-0.260355,1.182950,1.128830 +-0.603852,1.039670,-1.600980,-0.259879,1.180740,1.126720 +-0.602731,1.037720,-1.597940,-0.259403,1.178520,1.124600 +-0.601609,1.035760,-1.594900,-0.258927,1.176310,1.122490 +-0.600488,1.033810,-1.591860,-0.258451,1.174090,1.120380 +-0.599366,1.031860,-1.588810,-0.257975,1.171880,1.118270 +-0.598245,1.029910,-1.585770,-0.257499,1.169660,1.116160 +-0.597123,1.027950,-1.582730,-0.257023,1.167450,1.114050 +-0.596001,1.026000,-1.579690,-0.256547,1.165230,1.111940 +-0.594880,1.024050,-1.576650,-0.256071,1.163020,1.109830 +-0.593758,1.022100,-1.573610,-0.255595,1.160800,1.107710 +-0.592637,1.020140,-1.570570,-0.255119,1.158590,1.105600 +-0.591515,1.018190,-1.567520,-0.254643,1.156370,1.103490 +-0.590394,1.016240,-1.564480,-0.254167,1.154160,1.101380 +-0.589272,1.014290,-1.561440,-0.253691,1.151940,1.099270 +-0.588151,1.012330,-1.558400,-0.253215,1.149730,1.097160 +-0.587029,1.010380,-1.555360,-0.252739,1.147510,1.095050 +-0.585908,1.008430,-1.552320,-0.252263,1.145300,1.092940 +-0.584786,1.006480,-1.549270,-0.251787,1.143090,1.090830 +-0.583664,1.004520,-1.546230,-0.251311,1.140870,1.088710 +-0.582543,1.002570,-1.543190,-0.250835,1.138660,1.086600 +-0.581421,1.000620,-1.540150,-0.250359,1.136440,1.084490 +-0.580300,0.998666,-1.537110,-0.249883,1.134230,1.082380 +-0.579178,0.996713,-1.534070,-0.249407,1.132010,1.080270 +-0.578057,0.994761,-1.531030,-0.248931,1.129800,1.078160 +-0.576935,0.992808,-1.527980,-0.248455,1.127580,1.076050 +-0.575814,0.990856,-1.524940,-0.247978,1.125370,1.073940 +-0.574692,0.988903,-1.521900,-0.247502,1.123150,1.071830 +-0.573571,0.986951,-1.518860,-0.247026,1.120940,1.069710 +-0.572449,0.984998,-1.515820,-0.246550,1.118720,1.067600 +-0.571327,0.983046,-1.512780,-0.246074,1.116510,1.065490 +-0.570206,0.981093,-1.509740,-0.245598,1.114290,1.063380 +-0.569084,0.979141,-1.506690,-0.245122,1.112080,1.061270 +-0.567963,0.977188,-1.503650,-0.244646,1.109860,1.059160 +-0.566841,0.975236,-1.500610,-0.244170,1.107650,1.057050 +-0.565720,0.973283,-1.497570,-0.243694,1.105440,1.054940 +-0.564598,0.971331,-1.494530,-0.243218,1.103220,1.052830 +-0.563477,0.969378,-1.491490,-0.242742,1.101010,1.050710 +-0.562355,0.967425,-1.488450,-0.242266,1.098790,1.048600 +-0.561234,0.965473,-1.485400,-0.241790,1.096580,1.046490 +-0.560112,0.963520,-1.482360,-0.241314,1.094360,1.044380 +-0.558990,0.961568,-1.479320,-0.240838,1.092150,1.042270 +-0.557869,0.959615,-1.476280,-0.240362,1.089930,1.040160 +-0.556747,0.957663,-1.473240,-0.239886,1.087720,1.038050 +-0.555626,0.955710,-1.470200,-0.239410,1.085500,1.035940 +-0.554504,0.953758,-1.467160,-0.238934,1.083290,1.033820 +-0.553383,0.951805,-1.464110,-0.238458,1.081070,1.031710 +-0.552261,0.949853,-1.461070,-0.237982,1.078860,1.029600 +-0.551140,0.947900,-1.458030,-0.237506,1.076640,1.027490 +-0.550018,0.945948,-1.454990,-0.237030,1.074430,1.025380 +-0.548896,0.943995,-1.451950,-0.236554,1.072210,1.023270 +-0.547775,0.942043,-1.448910,-0.236078,1.070000,1.021160 +-0.546653,0.940090,-1.445870,-0.235602,1.067790,1.019050 +-0.545532,0.938138,-1.442820,-0.235126,1.065570,1.016940 +-0.544410,0.936185,-1.439780,-0.234649,1.063360,1.014820 +-0.543289,0.934233,-1.436740,-0.234173,1.061140,1.012710 +-0.542167,0.932280,-1.433700,-0.233697,1.058930,1.010600 +-0.541046,0.930328,-1.430660,-0.233221,1.056710,1.008490 +-0.539924,0.928375,-1.427620,-0.232745,1.054500,1.006380 +-0.538803,0.926423,-1.424580,-0.232269,1.052280,1.004270 +-0.537681,0.924470,-1.421530,-0.231793,1.050070,1.002160 +-0.536559,0.922518,-1.418490,-0.231317,1.047850,1.000050 +-0.535438,0.920565,-1.415450,-0.230841,1.045640,0.997936 +-0.534316,0.918613,-1.412410,-0.230365,1.043420,0.995824 +-0.533195,0.916660,-1.409370,-0.229889,1.041210,0.993713 +-0.532073,0.914708,-1.406330,-0.229413,1.038990,0.991602 +-0.530952,0.912755,-1.403290,-0.228937,1.036780,0.989491 +-0.529830,0.910802,-1.400240,-0.228461,1.034560,0.987380 +-0.528709,0.908850,-1.397200,-0.227985,1.032350,0.985269 +-0.527587,0.906897,-1.394160,-0.227509,1.030140,0.983158 +-0.526466,0.904945,-1.391120,-0.227033,1.027920,0.981046 +-0.525344,0.902992,-1.388080,-0.226557,1.025710,0.978935 +-0.524222,0.901040,-1.385040,-0.226081,1.023490,0.976824 +-0.523101,0.899087,-1.382000,-0.225605,1.021280,0.974713 +-0.521979,0.897135,-1.378950,-0.225129,1.019060,0.972602 +-0.520858,0.895182,-1.375910,-0.224653,1.016850,0.970491 +-0.519736,0.893230,-1.372870,-0.224177,1.014630,0.968380 +-0.518615,0.891277,-1.369830,-0.223701,1.012420,0.966268 +-0.517493,0.889325,-1.366790,-0.223225,1.010200,0.964157 +-0.516372,0.887372,-1.363750,-0.222749,1.007990,0.962046 +-0.515250,0.885420,-1.360710,-0.222273,1.005770,0.959935 +-0.514129,0.883467,-1.357660,-0.221797,1.003560,0.957824 +-0.513007,0.881515,-1.354620,-0.221320,1.001340,0.955713 +-0.511885,0.879562,-1.351580,-0.220844,0.999129,0.953602 +-0.510764,0.877610,-1.348540,-0.220368,0.996914,0.951490 +-0.509642,0.875657,-1.345500,-0.219892,0.994700,0.949379 +-0.508521,0.873705,-1.342460,-0.219416,0.992485,0.947268 +-0.507399,0.871752,-1.339420,-0.218940,0.990270,0.945157 +-0.506278,0.869800,-1.336370,-0.218464,0.988056,0.943046 +-0.505156,0.867847,-1.333330,-0.217988,0.985841,0.940935 +-0.504035,0.865895,-1.330290,-0.217512,0.983626,0.938824 +-0.502913,0.863942,-1.327250,-0.217036,0.981411,0.936713 +-0.501792,0.861990,-1.324210,-0.216560,0.979197,0.934601 +-0.500670,0.860037,-1.321170,-0.216084,0.976982,0.932490 +-0.499548,0.858085,-1.318130,-0.215608,0.974767,0.930379 +-0.498427,0.856132,-1.315080,-0.215132,0.972553,0.928268 +-0.497305,0.854179,-1.312040,-0.214656,0.970338,0.926157 +-0.496184,0.852227,-1.309000,-0.214180,0.968123,0.924046 +-0.495062,0.850274,-1.305960,-0.213704,0.965909,0.921935 +-0.493941,0.848322,-1.302920,-0.213228,0.963694,0.919823 +-0.492819,0.846369,-1.299880,-0.212752,0.961479,0.917712 +-0.491698,0.844417,-1.296840,-0.212276,0.959264,0.915601 +-0.490576,0.842464,-1.293790,-0.211800,0.957050,0.913490 +-0.489455,0.840512,-1.290750,-0.211324,0.954835,0.911379 +-0.488333,0.838559,-1.287710,-0.210848,0.952620,0.909268 +-0.487211,0.836607,-1.284670,-0.210372,0.950406,0.907157 +-0.486090,0.834654,-1.281630,-0.209896,0.948191,0.905045 +-0.484968,0.832702,-1.278590,-0.209420,0.945976,0.902934 +-0.483847,0.830749,-1.275540,-0.208944,0.943761,0.900823 +-0.482725,0.828797,-1.272500,-0.208468,0.941547,0.898712 +-0.481604,0.826844,-1.269460,-0.207991,0.939332,0.896601 +-0.480482,0.824892,-1.266420,-0.207515,0.937117,0.894490 +-0.479361,0.822939,-1.263380,-0.207039,0.934903,0.892379 +-0.478239,0.820987,-1.260340,-0.206563,0.932688,0.890267 +-0.477118,0.819034,-1.257300,-0.206087,0.930473,0.888156 +-0.475996,0.817082,-1.254250,-0.205611,0.928259,0.886045 +-0.474874,0.815129,-1.251210,-0.205135,0.926044,0.883934 +-0.473753,0.813177,-1.248170,-0.204659,0.923829,0.881823 +-0.472631,0.811224,-1.245130,-0.204183,0.921614,0.879712 +-0.471510,0.809272,-1.242090,-0.203707,0.919400,0.877601 +-0.470388,0.807319,-1.239050,-0.203231,0.917185,0.875490 +-0.469267,0.805367,-1.236010,-0.202755,0.914970,0.873378 +-0.468145,0.803414,-1.232960,-0.202279,0.912756,0.871267 +-0.467024,0.801462,-1.229920,-0.201803,0.910541,0.869156 +-0.465902,0.799509,-1.226880,-0.201327,0.908326,0.867045 +-0.464781,0.797556,-1.223840,-0.200851,0.906111,0.864934 +-0.463659,0.795604,-1.220800,-0.200375,0.903897,0.862823 +-0.462537,0.793651,-1.217760,-0.199899,0.901682,0.860712 +-0.461416,0.791699,-1.214720,-0.199423,0.899467,0.858600 +-0.460294,0.789746,-1.211670,-0.198947,0.897253,0.856489 +-0.459173,0.787794,-1.208630,-0.198471,0.895038,0.854378 +-0.458051,0.785841,-1.205590,-0.197995,0.892823,0.852267 +-0.456930,0.783889,-1.202550,-0.197519,0.890609,0.850156 +-0.455808,0.781936,-1.199510,-0.197043,0.888394,0.848045 +-0.454687,0.779984,-1.196470,-0.196567,0.886179,0.845934 +-0.453565,0.778031,-1.193430,-0.196091,0.883964,0.843822 +-0.452444,0.776079,-1.190380,-0.195615,0.881750,0.841711 +-0.451322,0.774126,-1.187340,-0.195139,0.879535,0.839600 +-0.450200,0.772174,-1.184300,-0.194662,0.877320,0.837489 +-0.449079,0.770221,-1.181260,-0.194186,0.875106,0.835378 +-0.447957,0.768269,-1.178220,-0.193710,0.872891,0.833267 +-0.446836,0.766316,-1.175180,-0.193234,0.870676,0.831156 +-0.445714,0.764364,-1.172140,-0.192758,0.868461,0.829044 +-0.444593,0.762411,-1.169090,-0.192282,0.866247,0.826933 +-0.443471,0.760459,-1.166050,-0.191806,0.864032,0.824822 +-0.442350,0.758506,-1.163010,-0.191330,0.861817,0.822711 +-0.441228,0.756554,-1.159970,-0.190854,0.859603,0.820600 +-0.440107,0.754601,-1.156930,-0.190378,0.857388,0.818489 +-0.438985,0.752649,-1.153890,-0.189902,0.855173,0.816378 +-0.437863,0.750696,-1.150850,-0.189426,0.852958,0.814266 +-0.436742,0.748744,-1.147800,-0.188950,0.850744,0.812155 +-0.435620,0.746791,-1.144760,-0.188474,0.848529,0.810044 +-0.434499,0.744839,-1.141720,-0.187998,0.846314,0.807933 +-0.433377,0.742886,-1.138680,-0.187522,0.844100,0.805822 +-0.432256,0.740933,-1.135640,-0.187046,0.841885,0.803711 +-0.431134,0.738981,-1.132600,-0.186570,0.839670,0.801600 +-0.430013,0.737028,-1.129560,-0.186094,0.837456,0.799489 +-0.428891,0.735076,-1.126510,-0.185618,0.835241,0.797377 +-0.427770,0.733123,-1.123470,-0.185142,0.833026,0.795266 +-0.426648,0.731171,-1.120430,-0.184666,0.830811,0.793155 +-0.425526,0.729218,-1.117390,-0.184190,0.828597,0.791044 +-0.424405,0.727266,-1.114350,-0.183714,0.826382,0.788933 +-0.423283,0.725313,-1.111310,-0.183238,0.824167,0.786822 +-0.422162,0.723361,-1.108270,-0.182762,0.821953,0.784711 +-0.421040,0.721408,-1.105220,-0.182286,0.819738,0.782599 +-0.419919,0.719456,-1.102180,-0.181810,0.817523,0.780488 +-0.418797,0.717503,-1.099140,-0.181333,0.815308,0.778377 +-0.417676,0.715551,-1.096100,-0.180857,0.813094,0.776266 +-0.416554,0.713598,-1.093060,-0.180381,0.810879,0.774155 +-0.415433,0.711646,-1.090020,-0.179905,0.808664,0.772044 +-0.414311,0.709693,-1.086980,-0.179429,0.806450,0.769933 +-0.413189,0.707741,-1.083930,-0.178953,0.804235,0.767821 +-0.412068,0.705788,-1.080890,-0.178477,0.802020,0.765710 +-0.410946,0.703836,-1.077850,-0.178001,0.799806,0.763599 +-0.409825,0.701883,-1.074810,-0.177525,0.797591,0.761488 +-0.408703,0.699931,-1.071770,-0.177049,0.795376,0.759377 +-0.407582,0.697978,-1.068730,-0.176573,0.793161,0.757266 +-0.406460,0.696026,-1.065690,-0.176097,0.790947,0.755155 +-0.405339,0.694073,-1.062640,-0.175621,0.788732,0.753043 +-0.404217,0.692121,-1.059600,-0.175145,0.786517,0.750932 +-0.403096,0.690168,-1.056560,-0.174669,0.784303,0.748821 +-0.401974,0.688216,-1.053520,-0.174193,0.782088,0.746710 +-0.400852,0.686263,-1.050480,-0.173717,0.779873,0.744599 +-0.399731,0.684310,-1.047440,-0.173241,0.777658,0.742488 +-0.398609,0.682358,-1.044400,-0.172765,0.775444,0.740377 +-0.397488,0.680405,-1.041350,-0.172289,0.773229,0.738265 +-0.396366,0.678453,-1.038310,-0.171813,0.771014,0.736154 +-0.395245,0.676500,-1.035270,-0.171337,0.768800,0.734043 +-0.394123,0.674548,-1.032230,-0.170861,0.766585,0.731932 +-0.393002,0.672595,-1.029190,-0.170385,0.764370,0.729821 +-0.391880,0.670643,-1.026150,-0.169909,0.762156,0.727710 +-0.390759,0.668690,-1.023110,-0.169433,0.759941,0.725599 +-0.389637,0.666738,-1.020060,-0.168957,0.757726,0.723488 +-0.388515,0.664785,-1.017020,-0.168481,0.755511,0.721376 +-0.387394,0.662833,-1.013980,-0.168004,0.753297,0.719265 +-0.386272,0.660880,-1.010940,-0.167528,0.751082,0.717154 +-0.385151,0.658928,-1.007900,-0.167052,0.748867,0.715043 +-0.384029,0.656975,-1.004860,-0.166576,0.746653,0.712932 +-0.382908,0.655023,-1.001810,-0.166100,0.744438,0.710821 +-0.381786,0.653070,-0.998773,-0.165624,0.742223,0.708710 +-0.380665,0.651118,-0.995732,-0.165148,0.740008,0.706598 +-0.379543,0.649165,-0.992691,-0.164672,0.737794,0.704487 +-0.378422,0.647213,-0.989649,-0.164196,0.735579,0.702376 +-0.377300,0.645260,-0.986608,-0.163720,0.733364,0.700265 +-0.376178,0.643308,-0.983566,-0.163244,0.731150,0.698154 +-0.375057,0.641355,-0.980525,-0.162768,0.728935,0.696043 +-0.373935,0.639403,-0.977483,-0.162292,0.726720,0.693932 +-0.372814,0.637450,-0.974442,-0.161816,0.724505,0.691820 +-0.371692,0.635498,-0.971400,-0.161340,0.722291,0.689709 +-0.370571,0.633545,-0.968359,-0.160864,0.720076,0.687598 +-0.369449,0.631593,-0.965318,-0.160388,0.717861,0.685487 +-0.368328,0.629640,-0.962276,-0.159912,0.715647,0.683376 +-0.367206,0.627687,-0.959235,-0.159436,0.713432,0.681265 +-0.366085,0.625735,-0.956193,-0.158960,0.711217,0.679154 +-0.364963,0.623782,-0.953152,-0.158484,0.709003,0.677042 +-0.363841,0.621830,-0.950110,-0.158008,0.706788,0.674931 +-0.362720,0.619877,-0.947069,-0.157532,0.704573,0.672820 +-0.361598,0.617925,-0.944027,-0.157056,0.702358,0.670709 +-0.360477,0.615972,-0.940986,-0.156580,0.700144,0.668598 +-0.359355,0.614020,-0.937945,-0.156104,0.697929,0.666487 +-0.358234,0.612067,-0.934903,-0.155628,0.695714,0.664376 +-0.357112,0.610115,-0.931862,-0.155152,0.693500,0.662265 +-0.355991,0.608162,-0.928820,-0.154676,0.691285,0.660153 +-0.354869,0.606210,-0.925779,-0.154199,0.689070,0.658042 +-0.353748,0.604257,-0.922737,-0.153723,0.686855,0.655931 +-0.352626,0.602305,-0.919696,-0.153247,0.684641,0.653820 +-0.351504,0.600352,-0.916654,-0.152771,0.682426,0.651709 +-0.350383,0.598400,-0.913613,-0.152295,0.680211,0.649598 +-0.349261,0.596447,-0.910572,-0.151819,0.677997,0.647487 +-0.348140,0.594495,-0.907530,-0.151343,0.675782,0.645375 +-0.347018,0.592542,-0.904489,-0.150867,0.673567,0.643264 +-0.345897,0.590590,-0.901447,-0.150391,0.671353,0.641153 +-0.344775,0.588637,-0.898406,-0.149915,0.669138,0.639042 +-0.343654,0.586685,-0.895364,-0.149439,0.666923,0.636931 +-0.342532,0.584732,-0.892323,-0.148963,0.664708,0.634820 +-0.341411,0.582780,-0.889281,-0.148487,0.662494,0.632709 +-0.340289,0.580827,-0.886240,-0.148011,0.660279,0.630597 +-0.339167,0.578875,-0.883199,-0.147535,0.658064,0.628486 +-0.338046,0.576922,-0.880157,-0.147059,0.655850,0.626375 +-0.336924,0.574970,-0.877116,-0.146583,0.653635,0.624264 +-0.335803,0.573017,-0.874074,-0.146107,0.651420,0.622153 +-0.334681,0.571064,-0.871033,-0.145631,0.649205,0.620042 +-0.333560,0.569112,-0.867991,-0.145155,0.646991,0.617931 +-0.332438,0.567159,-0.864950,-0.144679,0.644776,0.615819 +-0.331317,0.565207,-0.861908,-0.144203,0.642561,0.613708 +-0.330195,0.563254,-0.858867,-0.143727,0.640347,0.611597 +-0.329074,0.561302,-0.855826,-0.143251,0.638132,0.609486 +-0.327952,0.559349,-0.852784,-0.142775,0.635917,0.607375 +-0.326830,0.557397,-0.849743,-0.142299,0.633703,0.605264 +-0.325709,0.555444,-0.846701,-0.141823,0.631488,0.603153 +-0.324587,0.553492,-0.843660,-0.141347,0.629273,0.601041 +-0.323466,0.551539,-0.840618,-0.140870,0.627058,0.598930 +-0.322344,0.549587,-0.837577,-0.140394,0.624844,0.596819 +-0.321223,0.547634,-0.834535,-0.139918,0.622629,0.594708 +-0.320101,0.545682,-0.831494,-0.139442,0.620414,0.592597 +-0.318980,0.543729,-0.828453,-0.138966,0.618200,0.590486 +-0.317858,0.541777,-0.825411,-0.138490,0.615985,0.588375 +-0.316737,0.539824,-0.822370,-0.138014,0.613770,0.586264 +-0.315615,0.537872,-0.819328,-0.137538,0.611555,0.584152 +-0.314493,0.535919,-0.816287,-0.137062,0.609341,0.582041 +-0.313372,0.533967,-0.813245,-0.136586,0.607126,0.579930 +-0.312250,0.532014,-0.810204,-0.136110,0.604911,0.577819 +-0.311129,0.530062,-0.807162,-0.135634,0.602697,0.575708 +-0.310007,0.528109,-0.804121,-0.135158,0.600482,0.573597 +-0.308886,0.526157,-0.801080,-0.134682,0.598267,0.571486 +-0.307764,0.524204,-0.798038,-0.134206,0.596053,0.569374 +-0.306643,0.522252,-0.794997,-0.133730,0.593838,0.567263 +-0.305521,0.520299,-0.791955,-0.133254,0.591623,0.565152 +-0.304400,0.518347,-0.788914,-0.132778,0.589408,0.563041 +-0.303278,0.516394,-0.785872,-0.132302,0.587194,0.560930 +-0.302156,0.514441,-0.782831,-0.131826,0.584979,0.558819 +-0.301035,0.512489,-0.779789,-0.131350,0.582764,0.556708 +-0.299913,0.510536,-0.776748,-0.130874,0.580550,0.554596 +-0.298792,0.508584,-0.773707,-0.130398,0.578335,0.552485 +-0.297670,0.506631,-0.770665,-0.129922,0.576120,0.550374 +-0.296549,0.504679,-0.767624,-0.129446,0.573905,0.548263 +-0.295427,0.502726,-0.764582,-0.128970,0.571691,0.546152 +-0.294306,0.500774,-0.761541,-0.128494,0.569476,0.544041 +-0.293184,0.498821,-0.758499,-0.128018,0.567261,0.541930 +-0.292063,0.496869,-0.755458,-0.127541,0.565047,0.539818 +-0.290941,0.494916,-0.752416,-0.127065,0.562832,0.537707 +-0.289819,0.492964,-0.749375,-0.126589,0.560617,0.535596 +-0.288698,0.491011,-0.746334,-0.126113,0.558402,0.533485 +-0.287576,0.489059,-0.743292,-0.125637,0.556188,0.531374 +-0.286455,0.487106,-0.740251,-0.125161,0.553973,0.529263 +-0.285333,0.485154,-0.737209,-0.124685,0.551758,0.527152 +-0.284212,0.483201,-0.734168,-0.124209,0.549544,0.525040 +-0.283090,0.481249,-0.731126,-0.123733,0.547329,0.522929 +-0.281969,0.479296,-0.728085,-0.123257,0.545114,0.520818 +-0.280847,0.477344,-0.725043,-0.122781,0.542900,0.518707 +-0.279726,0.475391,-0.722002,-0.122305,0.540685,0.516596 +-0.278604,0.473439,-0.718961,-0.121829,0.538470,0.514485 +-0.277482,0.471486,-0.715919,-0.121353,0.536255,0.512374 +-0.276361,0.469534,-0.712878,-0.120877,0.534041,0.510263 +-0.275239,0.467581,-0.709836,-0.120401,0.531826,0.508151 +-0.274118,0.465629,-0.706795,-0.119925,0.529611,0.506040 +-0.272996,0.463676,-0.703753,-0.119449,0.527397,0.503929 +-0.271875,0.461724,-0.700712,-0.118973,0.525182,0.501818 +-0.270753,0.459771,-0.697670,-0.118497,0.522967,0.499707 +-0.269632,0.457818,-0.694629,-0.118021,0.520752,0.497596 +-0.268510,0.455866,-0.691588,-0.117545,0.518538,0.495485 +-0.267388,0.453913,-0.688546,-0.117069,0.516323,0.493373 +-0.266267,0.451961,-0.685505,-0.116593,0.514108,0.491262 +-0.265145,0.450008,-0.682463,-0.116117,0.511894,0.489151 +-0.264024,0.448056,-0.679422,-0.115641,0.509679,0.487040 +-0.262902,0.446103,-0.676380,-0.115165,0.507464,0.484929 +-0.261781,0.444151,-0.673339,-0.114689,0.505250,0.482818 +-0.260659,0.442198,-0.670297,-0.114212,0.503035,0.480707 +-0.259538,0.440246,-0.667256,-0.113736,0.500820,0.478595 +-0.258416,0.438293,-0.664215,-0.113260,0.498605,0.476484 +-0.257295,0.436341,-0.661173,-0.112784,0.496391,0.474373 +-0.256173,0.434388,-0.658132,-0.112308,0.494176,0.472262 +-0.255051,0.432436,-0.655090,-0.111832,0.491961,0.470151 +-0.253930,0.430483,-0.652049,-0.111356,0.489747,0.468040 +-0.252808,0.428531,-0.649007,-0.110880,0.487532,0.465929 +-0.251687,0.426578,-0.645966,-0.110404,0.485317,0.463817 +-0.250565,0.424626,-0.642924,-0.109928,0.483102,0.461706 +-0.249444,0.422673,-0.639883,-0.109452,0.480888,0.459595 +-0.248322,0.420721,-0.636842,-0.108976,0.478673,0.457484 +-0.247201,0.418768,-0.633800,-0.108500,0.476458,0.455373 +-0.246079,0.416816,-0.630759,-0.108024,0.474244,0.453262 +-0.244958,0.414863,-0.627717,-0.107548,0.472029,0.451151 +-0.243836,0.412911,-0.624676,-0.107072,0.469814,0.449040 +-0.242714,0.410958,-0.621634,-0.106596,0.467600,0.446928 +-0.241593,0.409006,-0.618593,-0.106120,0.465385,0.444817 +-0.240471,0.407053,-0.615551,-0.105644,0.463170,0.442706 +-0.239350,0.405101,-0.612510,-0.105168,0.460955,0.440595 +-0.238228,0.403148,-0.609469,-0.104692,0.458741,0.438484 +-0.237107,0.401195,-0.606427,-0.104216,0.456526,0.436373 +-0.235985,0.399243,-0.603386,-0.103740,0.454311,0.434262 +-0.234864,0.397290,-0.600344,-0.103264,0.452097,0.432150 +-0.233742,0.395338,-0.597303,-0.102788,0.449882,0.430039 +-0.232621,0.393385,-0.594261,-0.102312,0.447667,0.427928 +-0.231499,0.391433,-0.591220,-0.101836,0.445452,0.425817 +-0.230377,0.389480,-0.588178,-0.101360,0.443238,0.423706 +-0.229256,0.387528,-0.585137,-0.100883,0.441023,0.421595 +-0.228134,0.385575,-0.582096,-0.100407,0.438808,0.419484 +-0.227013,0.383623,-0.579054,-0.099931,0.436594,0.417372 +-0.225891,0.381670,-0.576013,-0.099455,0.434379,0.415261 +-0.224770,0.379718,-0.572971,-0.098979,0.432164,0.413150 +-0.223648,0.377765,-0.569930,-0.098503,0.429949,0.411039 +-0.222527,0.375813,-0.566888,-0.098027,0.427735,0.408928 +-0.221405,0.373860,-0.563847,-0.097551,0.425520,0.406817 +-0.220284,0.371908,-0.560805,-0.097075,0.423305,0.404706 +-0.219162,0.369955,-0.557764,-0.096599,0.421091,0.402594 +-0.218040,0.368003,-0.554723,-0.096123,0.418876,0.400483 +-0.216919,0.366050,-0.551681,-0.095647,0.416661,0.398372 +-0.215797,0.364098,-0.548640,-0.095171,0.414447,0.396261 +-0.214676,0.362145,-0.545598,-0.094695,0.412232,0.394150 +-0.213554,0.360193,-0.542557,-0.094219,0.410017,0.392039 +-0.212433,0.358240,-0.539515,-0.093743,0.407802,0.389928 +-0.211311,0.356288,-0.536474,-0.093267,0.405588,0.387816 +-0.210190,0.354335,-0.533432,-0.092791,0.403373,0.385705 +-0.209068,0.352383,-0.530391,-0.092315,0.401158,0.383594 +-0.207947,0.350430,-0.527350,-0.091839,0.398944,0.381483 +-0.206825,0.348478,-0.524308,-0.091363,0.396729,0.379372 +-0.205703,0.346525,-0.521267,-0.090887,0.394514,0.377261 +-0.204582,0.344572,-0.518225,-0.090411,0.392299,0.375150 +-0.203460,0.342620,-0.515184,-0.089935,0.390085,0.373039 +-0.202339,0.340667,-0.512142,-0.089459,0.387870,0.370927 +-0.201217,0.338715,-0.509101,-0.088983,0.385655,0.368816 +-0.200096,0.336762,-0.506059,-0.088507,0.383441,0.366705 +-0.198974,0.334810,-0.503018,-0.088030,0.381226,0.364594 +-0.197853,0.332857,-0.499977,-0.087554,0.379011,0.362483 +-0.196731,0.330905,-0.496935,-0.087079,0.376797,0.360372 +-0.195610,0.328952,-0.493894,-0.086602,0.374582,0.358261 +-0.194488,0.327000,-0.490852,-0.086126,0.372367,0.356149 +-0.193366,0.325047,-0.487811,-0.085650,0.370152,0.354038 +-0.192245,0.323095,-0.484769,-0.085174,0.367938,0.351927 +-0.191123,0.321142,-0.481728,-0.084698,0.365723,0.349816 +-0.190002,0.319190,-0.478686,-0.084222,0.363508,0.347705 +-0.188880,0.317237,-0.475645,-0.083746,0.361294,0.345594 +-0.187759,0.315285,-0.472604,-0.083270,0.359079,0.343483 +-0.186637,0.313332,-0.469562,-0.082794,0.356864,0.341371 +-0.185516,0.311380,-0.466521,-0.082318,0.354649,0.339260 +-0.184394,0.309427,-0.463479,-0.081842,0.352435,0.337149 +-0.183273,0.307475,-0.460438,-0.081366,0.350220,0.335038 +-0.182151,0.305522,-0.457396,-0.080890,0.348005,0.332927 +-0.181029,0.303570,-0.454355,-0.080414,0.345791,0.330816 +-0.179908,0.301617,-0.451313,-0.079938,0.343576,0.328705 +-0.178786,0.299665,-0.448272,-0.079462,0.341361,0.326593 +-0.177665,0.297712,-0.445231,-0.078986,0.339147,0.324482 +-0.176543,0.295760,-0.442189,-0.078510,0.336932,0.322371 +-0.175422,0.293807,-0.439148,-0.078034,0.334717,0.320260 +-0.174300,0.291855,-0.436106,-0.077558,0.332502,0.318149 +-0.173179,0.289902,-0.433065,-0.077082,0.330288,0.316038 +-0.172057,0.287949,-0.430023,-0.076606,0.328073,0.313927 +-0.170936,0.285997,-0.426982,-0.076130,0.325858,0.311815 +-0.169814,0.284044,-0.423940,-0.075654,0.323644,0.309704 +-0.168692,0.282092,-0.420899,-0.075178,0.321429,0.307593 +-0.167571,0.280139,-0.417858,-0.074702,0.319214,0.305482 +-0.166449,0.278187,-0.414816,-0.074226,0.316999,0.303371 +-0.165328,0.276234,-0.411775,-0.073749,0.314785,0.301260 +-0.164206,0.274282,-0.408733,-0.073273,0.312570,0.299149 +-0.163085,0.272329,-0.405692,-0.072797,0.310355,0.297038 +-0.161963,0.270377,-0.402650,-0.072321,0.308141,0.294926 +-0.160842,0.268424,-0.399609,-0.071845,0.305926,0.292815 +-0.159720,0.266472,-0.396567,-0.071369,0.303711,0.290704 +-0.158599,0.264519,-0.393526,-0.070893,0.301497,0.288593 +-0.157477,0.262567,-0.390485,-0.070417,0.299282,0.286482 +-0.156355,0.260614,-0.387443,-0.069941,0.297067,0.284371 +-0.155234,0.258662,-0.384402,-0.069465,0.294852,0.282260 +-0.154112,0.256709,-0.381360,-0.068989,0.292638,0.280148 +-0.152991,0.254757,-0.378319,-0.068513,0.290423,0.278037 +-0.151869,0.252804,-0.375277,-0.068037,0.288208,0.275926 +-0.150748,0.250852,-0.372236,-0.067561,0.285994,0.273815 +-0.149626,0.248899,-0.369194,-0.067085,0.283779,0.271704 +-0.148505,0.246947,-0.366153,-0.066609,0.281564,0.269593 +-0.147383,0.244994,-0.363112,-0.066133,0.279349,0.267482 +-0.146262,0.243042,-0.360070,-0.065657,0.277135,0.265370 +-0.145140,0.241089,-0.357029,-0.065181,0.274920,0.263259 +-0.144018,0.239137,-0.353987,-0.064705,0.272705,0.261148 +-0.142897,0.237184,-0.350946,-0.064229,0.270491,0.259037 +-0.141775,0.235232,-0.347904,-0.063753,0.268276,0.256926 +-0.140654,0.233279,-0.344863,-0.063277,0.266061,0.254815 +-0.139532,0.231326,-0.341821,-0.062801,0.263846,0.252704 +-0.138411,0.229374,-0.338780,-0.062325,0.261632,0.250592 +-0.137289,0.227421,-0.335739,-0.061849,0.259417,0.248481 +-0.136168,0.225469,-0.332697,-0.061373,0.257202,0.246370 +-0.135046,0.223516,-0.329656,-0.060896,0.254988,0.244259 +-0.133925,0.221564,-0.326614,-0.060421,0.252773,0.242148 +-0.132803,0.219611,-0.323573,-0.059944,0.250558,0.240037 +-0.131681,0.217659,-0.320531,-0.059468,0.248344,0.237926 +-0.130560,0.215706,-0.317490,-0.058992,0.246129,0.235814 +-0.129438,0.213754,-0.314448,-0.058516,0.243914,0.233703 +-0.128317,0.211801,-0.311407,-0.058040,0.241699,0.231592 +-0.127195,0.209849,-0.308366,-0.057564,0.239485,0.229481 +-0.126074,0.207896,-0.305324,-0.057088,0.237270,0.227370 +-0.124952,0.205944,-0.302283,-0.056612,0.235055,0.225259 +-0.123831,0.203991,-0.299241,-0.056136,0.232841,0.223148 +-0.122709,0.202039,-0.296200,-0.055660,0.230626,0.221037 +-0.121588,0.200086,-0.293158,-0.055184,0.228411,0.218925 +-0.120466,0.198134,-0.290117,-0.054708,0.226196,0.216814 +-0.119344,0.196181,-0.287075,-0.054232,0.223982,0.214703 +-0.118223,0.194229,-0.284034,-0.053756,0.221767,0.212592 +-0.117101,0.192276,-0.280993,-0.053280,0.219552,0.210481 +-0.115980,0.190324,-0.277951,-0.052804,0.217338,0.208370 +-0.114858,0.188371,-0.274910,-0.052328,0.215123,0.206259 +-0.113737,0.186419,-0.271868,-0.051852,0.212908,0.204147 +-0.112615,0.184466,-0.268827,-0.051376,0.210694,0.202036 +-0.111494,0.182514,-0.265785,-0.050900,0.208479,0.199925 +-0.110372,0.180561,-0.262744,-0.050424,0.206264,0.197814 +-0.109251,0.178609,-0.259702,-0.049948,0.204049,0.195703 +-0.108129,0.176656,-0.256661,-0.049472,0.201835,0.193592 +-0.107007,0.174703,-0.253620,-0.048996,0.199620,0.191481 +-0.105886,0.172751,-0.250578,-0.048520,0.197405,0.189369 +-0.104764,0.170798,-0.247537,-0.048044,0.195191,0.187258 +-0.103643,0.168846,-0.244495,-0.047567,0.192976,0.185147 +-0.102521,0.166893,-0.241454,-0.047092,0.190761,0.183036 +-0.101400,0.164941,-0.238412,-0.046615,0.188546,0.180925 +-0.100278,0.162988,-0.235371,-0.046139,0.186332,0.178814 +-0.099157,0.161036,-0.232329,-0.045663,0.184117,0.176703 +-0.098035,0.159083,-0.229288,-0.045187,0.181902,0.174591 +-0.096914,0.157131,-0.226247,-0.044711,0.179688,0.172480 +-0.095792,0.155178,-0.223205,-0.044235,0.177473,0.170369 +-0.094670,0.153226,-0.220164,-0.043759,0.175258,0.168258 +-0.093549,0.151273,-0.217122,-0.043283,0.173044,0.166147 +-0.092427,0.149321,-0.214081,-0.042807,0.170829,0.164036 +-0.091306,0.147368,-0.211039,-0.042331,0.168614,0.161925 +-0.090184,0.145416,-0.207998,-0.041855,0.166399,0.159814 +-0.089063,0.143463,-0.204956,-0.041379,0.164185,0.157702 +-0.087941,0.141511,-0.201915,-0.040903,0.161970,0.155591 +-0.086820,0.139558,-0.198874,-0.040427,0.159755,0.153480 +-0.085698,0.137606,-0.195832,-0.039951,0.157541,0.151369 +-0.084576,0.135653,-0.192791,-0.039475,0.155326,0.149258 +-0.083455,0.133701,-0.189749,-0.038999,0.153111,0.147147 +-0.082333,0.131748,-0.186708,-0.038523,0.150896,0.145036 +-0.081212,0.129796,-0.183666,-0.038047,0.148682,0.142924 +-0.080090,0.127843,-0.180625,-0.037571,0.146467,0.140813 +-0.078969,0.125891,-0.177583,-0.037095,0.144252,0.138702 +-0.077847,0.123938,-0.174542,-0.036619,0.142038,0.136591 +-0.076726,0.121986,-0.171501,-0.036143,0.139823,0.134480 +-0.075604,0.120033,-0.168459,-0.035667,0.137608,0.132369 +-0.074483,0.118080,-0.165418,-0.035191,0.135393,0.130258 +-0.073361,0.116128,-0.162376,-0.034715,0.133179,0.128146 +-0.072239,0.114175,-0.159335,-0.034238,0.130964,0.126035 +-0.071118,0.112223,-0.156293,-0.033763,0.128749,0.123924 +-0.069996,0.110270,-0.153252,-0.033286,0.126535,0.121813 +-0.068875,0.108318,-0.150210,-0.032810,0.124320,0.119702 +-0.067753,0.106365,-0.147169,-0.032334,0.122105,0.117591 +-0.066632,0.104413,-0.144128,-0.031858,0.119891,0.115480 +-0.065510,0.102460,-0.141086,-0.031382,0.117676,0.113368 +-0.064389,0.100508,-0.138045,-0.030906,0.115461,0.111257 +-0.063267,0.098555,-0.135003,-0.030430,0.113246,0.109146 +-0.062146,0.096603,-0.131962,-0.029954,0.111032,0.107035 +-0.061024,0.094650,-0.128920,-0.029478,0.108817,0.104924 +-0.059902,0.092698,-0.125879,-0.029002,0.106602,0.102813 +-0.058781,0.090745,-0.122837,-0.028526,0.104388,0.100702 +-0.057659,0.088793,-0.119796,-0.028050,0.102173,0.098590 +-0.056538,0.086840,-0.116755,-0.027574,0.099958,0.096479 +-0.055416,0.084888,-0.113713,-0.027098,0.097743,0.094368 +-0.054295,0.082935,-0.110672,-0.026622,0.095529,0.092257 +-0.053173,0.080983,-0.107630,-0.026146,0.093314,0.090146 +-0.052052,0.079030,-0.104589,-0.025670,0.091099,0.088035 +-0.050930,0.077078,-0.101547,-0.025194,0.088885,0.085924 +-0.049809,0.075125,-0.098506,-0.024718,0.086670,0.083812 +-0.048687,0.073173,-0.095464,-0.024242,0.084455,0.081701 +-0.047565,0.071220,-0.092423,-0.023766,0.082240,0.079590 +-0.046444,0.069268,-0.089383,-0.023290,0.080026,0.077479 +-0.045322,0.067315,-0.086346,-0.022814,0.077811,0.075368 +-0.044201,0.065363,-0.083317,-0.022338,0.075596,0.073257 +-0.043079,0.063410,-0.080298,-0.021862,0.073382,0.071146 +-0.041958,0.061457,-0.077293,-0.021386,0.071167,0.069034 +-0.040836,0.059505,-0.074305,-0.020910,0.068952,0.066923 +-0.039715,0.057552,-0.071337,-0.020434,0.066738,0.064812 +-0.038593,0.055600,-0.068392,-0.019957,0.064523,0.062701 +-0.037472,0.053647,-0.065475,-0.019481,0.062308,0.060590 +-0.036350,0.051695,-0.062587,-0.019005,0.060094,0.058479 +-0.035229,0.049742,-0.059732,-0.018529,0.057879,0.056368 +-0.034107,0.047790,-0.056914,-0.018053,0.055664,0.054257 +-0.032985,0.045838,-0.054136,-0.017577,0.053449,0.052145 +-0.031864,0.043889,-0.051400,-0.017101,0.051235,0.050034 +-0.030742,0.041948,-0.048710,-0.016625,0.049023,0.047923 +-0.029621,0.040016,-0.046071,-0.016149,0.046818,0.045815 +-0.028499,0.038097,-0.043483,-0.015673,0.044624,0.043712 +-0.027378,0.036195,-0.040952,-0.015197,0.042445,0.041620 +-0.026256,0.034312,-0.038479,-0.014721,0.040283,0.039542 +-0.025135,0.032453,-0.036069,-0.014245,0.038144,0.037482 +-0.024013,0.030619,-0.033725,-0.013769,0.036031,0.035443 +-0.022891,0.028815,-0.031450,-0.013293,0.033949,0.033430 +-0.021770,0.027043,-0.029247,-0.012817,0.031900,0.031447 +-0.020648,0.025308,-0.027119,-0.012341,0.029889,0.029497 +-0.019528,0.023611,-0.025069,-0.011865,0.027920,0.027584 +-0.018411,0.021957,-0.023102,-0.011389,0.025996,0.025713 +-0.017301,0.020348,-0.021220,-0.010913,0.024122,0.023887 +-0.016202,0.018788,-0.019426,-0.010437,0.022301,0.022110 +-0.015116,0.017281,-0.017724,-0.009961,0.020538,0.020385 +-0.014047,0.015829,-0.016116,-0.009485,0.018835,0.018718 +-0.012998,0.014435,-0.014607,-0.009009,0.017198,0.017111 +-0.011972,0.013103,-0.013194,-0.008533,0.015630,0.015569 +-0.010973,0.011836,-0.011876,-0.008057,0.014134,0.014095 +-0.010004,0.010638,-0.010649,-0.007581,0.012716,0.012694 +-0.009067,0.009511,-0.009509,-0.007104,0.011378,0.011368 +-0.008167,0.008459,-0.008454,-0.006628,0.010124,0.010123 +-0.007307,0.007485,-0.007479,-0.006152,0.008959,0.008962 +-0.006489,0.006589,-0.006583,-0.005676,0.007885,0.007889 +-0.005717,0.005767,-0.005762,-0.005200,0.006901,0.006904 +-0.004995,0.005017,-0.005011,-0.004725,0.006002,0.006005 +-0.004325,0.004335,-0.004329,-0.004255,0.005185,0.005188 +-0.003710,0.003718,-0.003712,-0.003792,0.004445,0.004449 +-0.003155,0.003162,-0.003157,-0.003342,0.003780,0.003783 +-0.002658,0.002665,-0.002659,-0.002908,0.003184,0.003188 +-0.002216,0.002223,-0.002218,-0.002493,0.002655,0.002658 +-0.001826,0.001833,-0.001828,-0.002103,0.002188,0.002191 +-0.001485,0.001492,-0.001486,-0.001740,0.001779,0.001782 +-0.001189,0.001196,-0.001190,-0.001409,0.001424,0.001428 +-0.000935,0.000942,-0.000937,-0.001114,0.001121,0.001124 +-0.000720,0.000728,-0.000722,-0.000857,0.000863,0.000867 +-0.000541,0.000549,-0.000543,-0.000643,0.000649,0.000652 +-0.000395,0.000402,-0.000396,-0.000467,0.000473,0.000476 +-0.000277,0.000285,-0.000279,-0.000327,0.000333,0.000336 +-0.000186,0.000193,-0.000187,-0.000217,0.000223,0.000226 +-0.000117,0.000124,-0.000119,-0.000135,0.000141,0.000144 +-0.000068,0.000075,-0.000070,-0.000076,0.000082,0.000085 +-0.000035,0.000042,-0.000037,-0.000036,0.000042,0.000046 +-0.000015,0.000022,-0.000017,-0.000012,0.000018,0.000022 +-0.000005,0.000012,-0.000006,-0.000000,0.000006,0.000009 +-0.000001,0.000008,-0.000003,0.000004,0.000001,0.000005 +-0.000000,0.000008,-0.000002,0.000005,0.000001,0.000004 +0.000000,0.000000,-0.000000,0.000001,-0.000001,0.000000 +0.000003,0.000003,-0.000003,0.000004,-0.000004,0.000000 +0.000012,0.000012,-0.000012,0.000014,-0.000014,0.000000 +0.000028,0.000028,-0.000028,0.000033,-0.000033,0.000000 +0.000054,0.000054,-0.000054,0.000065,-0.000065,0.000000 +0.000093,0.000093,-0.000093,0.000112,-0.000112,0.000000 +0.000148,0.000148,-0.000148,0.000178,-0.000178,0.000000 +0.000222,0.000222,-0.000222,0.000265,-0.000265,0.000000 +0.000315,0.000315,-0.000315,0.000378,-0.000378,0.000000 +0.000433,0.000432,-0.000433,0.000518,-0.000518,0.000000 +0.000576,0.000571,-0.000576,0.000690,-0.000690,0.000000 +0.000748,0.000729,-0.000748,0.000896,-0.000896,0.000000 +0.000951,0.000904,-0.000951,0.001139,-0.001139,0.000000 +0.001187,0.001093,-0.001187,0.001421,-0.001423,0.000000 +0.001460,0.001293,-0.001460,0.001739,-0.001750,0.000000 +0.001772,0.001503,-0.001772,0.002091,-0.002123,0.000000 +0.002126,0.001718,-0.002126,0.002472,-0.002547,0.000000 +0.002524,0.001938,-0.002524,0.002881,-0.003023,0.000000 +0.002968,0.002158,-0.002968,0.003314,-0.003556,0.000000 +0.003462,0.002379,-0.003462,0.003767,-0.004147,0.000000 +0.004007,0.002599,-0.004007,0.004238,-0.004801,0.000000 +0.004608,0.002820,-0.004608,0.004723,-0.005520,0.000000 +0.005265,0.003041,-0.005265,0.005220,-0.006308,0.000000 +0.005982,0.003261,-0.005982,0.005726,-0.007167,0.000000 +0.006761,0.003482,-0.006761,0.006236,-0.008100,0.000000 +0.007606,0.003703,-0.007605,0.006749,-0.009112,0.000000 +0.008517,0.003923,-0.008512,0.007262,-0.010204,0.000000 +0.009499,0.004144,-0.009480,0.007775,-0.011380,0.000000 +0.010554,0.004364,-0.010507,0.008288,-0.012637,0.000000 +0.011684,0.004585,-0.011589,0.008801,-0.013973,0.000000 +0.012890,0.004806,-0.012724,0.009313,-0.015384,0.000000 +0.014172,0.005026,-0.013909,0.009826,-0.016868,0.000000 +0.015526,0.005247,-0.015142,0.010339,-0.018421,0.000000 +0.016949,0.005468,-0.016421,0.010852,-0.020041,0.000000 +0.018440,0.005688,-0.017742,0.011365,-0.021723,0.000000 +0.019996,0.005909,-0.019103,0.011878,-0.023465,0.000000 +0.021613,0.006130,-0.020501,0.012391,-0.025265,0.000000 +0.023290,0.006350,-0.021935,0.012904,-0.027118,0.000000 +0.025023,0.006571,-0.023401,0.013416,-0.029021,0.000000 +0.026811,0.006791,-0.024896,0.013929,-0.030972,0.000000 +0.028650,0.007012,-0.026419,0.014442,-0.032968,0.000000 +0.030538,0.007233,-0.027965,0.014955,-0.035004,0.000000 +0.032473,0.007453,-0.029534,0.015468,-0.037079,0.000000 +0.034451,0.007674,-0.031122,0.015981,-0.039189,0.000000 +0.036470,0.007895,-0.032727,0.016494,-0.041331,0.000000 +0.038528,0.008115,-0.034346,0.017007,-0.043502,0.000000 +0.040622,0.008336,-0.035976,0.017519,-0.045699,0.000000 +0.042750,0.008556,-0.037615,0.018032,-0.047918,0.000000 +0.044908,0.008777,-0.039261,0.018545,-0.050157,0.000000 +0.047094,0.008998,-0.040910,0.019058,-0.052412,0.000000 +0.049306,0.009218,-0.042561,0.019571,-0.054680,0.000000 +0.051541,0.009439,-0.044211,0.020084,-0.056959,0.000000 +0.053797,0.009660,-0.045861,0.020597,-0.059244,0.000000 +0.056070,0.009880,-0.047512,0.021110,-0.061534,0.000000 +0.058358,0.010101,-0.049162,0.021622,-0.063825,0.000000 +0.060659,0.010322,-0.050813,0.022135,-0.066115,0.000000 +0.062970,0.010542,-0.052463,0.022648,-0.068406,0.000000 +0.065289,0.010763,-0.054114,0.023161,-0.070697,0.000000 +0.067612,0.010983,-0.055764,0.023674,-0.072988,0.000000 +0.069938,0.011204,-0.057415,0.024187,-0.075278,0.000000 +0.072264,0.011425,-0.059065,0.024700,-0.077569,0.000000 +0.074590,0.011645,-0.060715,0.025212,-0.079860,0.000000 +0.076915,0.011866,-0.062366,0.025725,-0.082150,0.000000 +0.079241,0.012087,-0.064016,0.026238,-0.084441,0.000000 +0.081567,0.012307,-0.065667,0.026751,-0.086732,0.000000 +0.083893,0.012528,-0.067317,0.027264,-0.089023,0.000000 +0.086219,0.012748,-0.068968,0.027777,-0.091313,0.000000 +0.088545,0.012969,-0.070618,0.028290,-0.093604,0.000000 +0.090871,0.013190,-0.072269,0.028803,-0.095895,0.000000 +0.093196,0.013410,-0.073919,0.029316,-0.098185,0.000000 +0.095522,0.013631,-0.075569,0.029828,-0.100476,0.000000 +0.097848,0.013852,-0.077220,0.030341,-0.102767,0.000000 +0.100174,0.014072,-0.078870,0.030854,-0.105057,0.000000 +0.102500,0.014293,-0.080521,0.031367,-0.107348,0.000000 +0.104826,0.014514,-0.082171,0.031880,-0.109639,0.000000 +0.107151,0.014734,-0.083822,0.032393,-0.111930,0.000000 +0.109477,0.014955,-0.085472,0.032906,-0.114220,0.000000 +0.111803,0.015175,-0.087123,0.033418,-0.116511,0.000000 +0.114129,0.015396,-0.088773,0.033931,-0.118802,0.000000 +0.116455,0.015617,-0.090423,0.034444,-0.121092,0.000000 +0.118781,0.015837,-0.092074,0.034957,-0.123383,0.000000 +0.121106,0.016058,-0.093724,0.035470,-0.125674,0.000000 +0.123432,0.016279,-0.095375,0.035983,-0.127965,0.000000 +0.125758,0.016499,-0.097025,0.036496,-0.130255,0.000000 +0.128084,0.016720,-0.098676,0.037009,-0.132546,0.000000 +0.130410,0.016940,-0.100326,0.037521,-0.134837,0.000000 +0.132736,0.017161,-0.101977,0.038034,-0.137127,0.000000 +0.135061,0.017382,-0.103627,0.038547,-0.139418,0.000000 +0.137387,0.017602,-0.105277,0.039060,-0.141709,0.000000 +0.139713,0.017823,-0.106928,0.039573,-0.144000,0.000000 +0.142039,0.018044,-0.108578,0.040086,-0.146290,0.000000 +0.144365,0.018264,-0.110229,0.040599,-0.148581,0.000000 +0.146691,0.018485,-0.111879,0.041112,-0.150872,0.000000 +0.149016,0.018705,-0.113530,0.041625,-0.153162,0.000000 +0.151342,0.018926,-0.115180,0.042137,-0.155453,0.000000 +0.153668,0.019147,-0.116831,0.042650,-0.157744,0.000000 +0.155994,0.019367,-0.118481,0.043163,-0.160034,0.000000 +0.158320,0.019588,-0.120131,0.043676,-0.162325,0.000000 +0.160646,0.019809,-0.121782,0.044189,-0.164616,0.000000 +0.162972,0.020029,-0.123432,0.044702,-0.166907,0.000000 +0.165297,0.020250,-0.125083,0.045215,-0.169197,0.000000 +0.167623,0.020470,-0.126733,0.045727,-0.171488,0.000000 +0.169949,0.020691,-0.128384,0.046240,-0.173779,0.000000 +0.172275,0.020912,-0.130034,0.046753,-0.176069,0.000000 +0.174601,0.021132,-0.131684,0.047266,-0.178360,0.000000 +0.176927,0.021353,-0.133335,0.047779,-0.180651,0.000000 +0.179252,0.021574,-0.134985,0.048292,-0.182942,0.000000 +0.181578,0.021794,-0.136636,0.048805,-0.185232,0.000000 +0.183904,0.022015,-0.138286,0.049318,-0.187523,0.000000 +0.186230,0.022235,-0.139937,0.049831,-0.189814,0.000000 +0.188556,0.022456,-0.141587,0.050343,-0.192104,0.000000 +0.190882,0.022677,-0.143238,0.050856,-0.194395,0.000000 +0.193207,0.022897,-0.144888,0.051369,-0.196686,0.000000 +0.195533,0.023118,-0.146538,0.051882,-0.198976,0.000000 +0.197859,0.023339,-0.148189,0.052395,-0.201267,0.000000 +0.200185,0.023559,-0.149839,0.052908,-0.203558,0.000000 +0.202511,0.023780,-0.151490,0.053421,-0.205849,0.000000 +0.204837,0.024001,-0.153140,0.053934,-0.208139,0.000000 +0.207163,0.024221,-0.154791,0.054446,-0.210430,0.000000 +0.209488,0.024442,-0.156441,0.054959,-0.212721,0.000000 +0.211814,0.024663,-0.158092,0.055472,-0.215011,0.000000 +0.214140,0.024883,-0.159742,0.055985,-0.217302,0.000000 +0.216466,0.025104,-0.161392,0.056498,-0.219593,0.000000 +0.218792,0.025324,-0.163043,0.057011,-0.221884,0.000000 +0.221118,0.025545,-0.164693,0.057524,-0.224174,0.000000 +0.223443,0.025766,-0.166344,0.058036,-0.226465,0.000000 +0.225769,0.025986,-0.167994,0.058549,-0.228756,0.000000 +0.228095,0.026207,-0.169645,0.059062,-0.231046,0.000000 +0.230421,0.026428,-0.171295,0.059575,-0.233337,0.000000 +0.232747,0.026648,-0.172946,0.060088,-0.235628,0.000000 +0.235073,0.026869,-0.174596,0.060601,-0.237919,0.000000 +0.237398,0.027089,-0.176246,0.061114,-0.240209,0.000000 +0.239724,0.027310,-0.177897,0.061627,-0.242500,0.000000 +0.242050,0.027531,-0.179547,0.062140,-0.244791,0.000000 +0.244376,0.027751,-0.181198,0.062652,-0.247081,0.000000 +0.246702,0.027972,-0.182848,0.063165,-0.249372,0.000000 +0.249028,0.028193,-0.184499,0.063678,-0.251663,0.000000 +0.251354,0.028413,-0.186149,0.064191,-0.253953,0.000000 +0.253679,0.028634,-0.187800,0.064704,-0.256244,0.000000 +0.256005,0.028855,-0.189450,0.065217,-0.258535,0.000000 +0.258331,0.029075,-0.191100,0.065730,-0.260826,0.000000 +0.260657,0.029296,-0.192751,0.066242,-0.263116,0.000000 +0.262983,0.029516,-0.194401,0.066755,-0.265407,0.000000 +0.265309,0.029737,-0.196052,0.067268,-0.267698,0.000000 +0.267634,0.029958,-0.197702,0.067781,-0.269988,0.000000 +0.269960,0.030178,-0.199353,0.068294,-0.272279,0.000000 +0.272286,0.030399,-0.201003,0.068807,-0.274570,0.000000 +0.274612,0.030620,-0.202654,0.069320,-0.276861,0.000000 +0.276938,0.030840,-0.204304,0.069833,-0.279151,0.000000 +0.279264,0.031061,-0.205954,0.070346,-0.281442,0.000000 +0.281589,0.031281,-0.207605,0.070858,-0.283733,0.000000 +0.283915,0.031502,-0.209255,0.071371,-0.286023,0.000000 +0.286241,0.031723,-0.210906,0.071884,-0.288314,0.000000 +0.288567,0.031943,-0.212556,0.072397,-0.290605,0.000000 +0.290893,0.032164,-0.214207,0.072910,-0.292896,0.000000 +0.293219,0.032384,-0.215857,0.073423,-0.295186,0.000000 +0.295545,0.032605,-0.217508,0.073936,-0.297477,0.000000 +0.297870,0.032826,-0.219158,0.074448,-0.299768,0.000000 +0.300196,0.033046,-0.220808,0.074961,-0.302058,0.000000 +0.302522,0.033267,-0.222459,0.075474,-0.304349,0.000000 +0.304848,0.033488,-0.224109,0.075987,-0.306640,0.000000 +0.307174,0.033708,-0.225760,0.076500,-0.308930,0.000000 +0.309500,0.033929,-0.227410,0.077013,-0.311221,0.000000 +0.311825,0.034150,-0.229061,0.077526,-0.313512,0.000000 +0.314151,0.034370,-0.230711,0.078039,-0.315803,0.000000 +0.316477,0.034591,-0.232361,0.078551,-0.318093,0.000000 +0.318803,0.034812,-0.234012,0.079064,-0.320384,0.000000 +0.321129,0.035032,-0.235662,0.079577,-0.322675,0.000000 +0.323455,0.035253,-0.237313,0.080090,-0.324965,0.000000 +0.325780,0.035473,-0.238963,0.080603,-0.327256,0.000000 +0.328106,0.035694,-0.240614,0.081116,-0.329547,0.000000 +0.330432,0.035915,-0.242264,0.081629,-0.331838,0.000000 +0.332758,0.036135,-0.243915,0.082142,-0.334128,0.000000 +0.335084,0.036356,-0.245565,0.082654,-0.336419,0.000000 +0.337410,0.036576,-0.247215,0.083167,-0.338710,0.000000 +0.339736,0.036797,-0.248866,0.083680,-0.341000,0.000000 +0.342061,0.037018,-0.250516,0.084193,-0.343291,0.000000 +0.344387,0.037238,-0.252167,0.084706,-0.345582,0.000000 +0.346713,0.037459,-0.253817,0.085219,-0.347872,0.000000 +0.349039,0.037680,-0.255468,0.085732,-0.350163,0.000000 +0.351365,0.037900,-0.257118,0.086245,-0.352454,0.000000 +0.353691,0.038121,-0.258769,0.086757,-0.354745,0.000000 +0.356016,0.038342,-0.260419,0.087270,-0.357035,0.000000 +0.358342,0.038562,-0.262069,0.087783,-0.359326,0.000000 +0.360668,0.038783,-0.263720,0.088296,-0.361617,0.000000 +0.362994,0.039004,-0.265370,0.088809,-0.363907,0.000000 +0.365320,0.039224,-0.267021,0.089322,-0.366198,0.000000 +0.367646,0.039445,-0.268671,0.089835,-0.368489,0.000000 +0.369971,0.039665,-0.270322,0.090348,-0.370780,0.000000 +0.372297,0.039886,-0.271972,0.090860,-0.373070,0.000000 +0.374623,0.040107,-0.273623,0.091373,-0.375361,0.000000 +0.376949,0.040327,-0.275273,0.091886,-0.377652,0.000000 +0.379275,0.040548,-0.276923,0.092399,-0.379942,0.000000 +0.381601,0.040768,-0.278574,0.092912,-0.382233,0.000000 +0.383926,0.040989,-0.280224,0.093425,-0.384524,0.000000 +0.386252,0.041210,-0.281875,0.093938,-0.386815,0.000000 +0.388578,0.041430,-0.283525,0.094451,-0.389105,0.000000 +0.390904,0.041651,-0.285176,0.094963,-0.391396,0.000000 +0.393230,0.041872,-0.286826,0.095476,-0.393687,0.000000 +0.395556,0.042092,-0.288477,0.095989,-0.395977,0.000000 +0.397882,0.042313,-0.290127,0.096502,-0.398268,0.000000 +0.400207,0.042534,-0.291777,0.097015,-0.400559,0.000000 +0.402533,0.042754,-0.293428,0.097528,-0.402849,0.000000 +0.404859,0.042975,-0.295078,0.098041,-0.405140,0.000000 +0.407185,0.043195,-0.296729,0.098554,-0.407431,0.000000 +0.409511,0.043416,-0.298379,0.099066,-0.409722,0.000000 +0.411837,0.043637,-0.300030,0.099579,-0.412012,0.000000 +0.414162,0.043857,-0.301680,0.100092,-0.414303,0.000000 +0.416488,0.044078,-0.303331,0.100605,-0.416594,0.000000 +0.418814,0.044299,-0.304981,0.101118,-0.418884,0.000000 +0.421140,0.044519,-0.306631,0.101631,-0.421175,0.000000 +0.423466,0.044740,-0.308282,0.102144,-0.423466,0.000000 +0.425792,0.044961,-0.309932,0.102657,-0.425757,0.000000 +0.428117,0.045181,-0.311583,0.103169,-0.428047,0.000000 +0.430443,0.045402,-0.313233,0.103682,-0.430338,0.000000 +0.432769,0.045622,-0.314884,0.104195,-0.432629,0.000000 +0.435095,0.045843,-0.316534,0.104708,-0.434919,0.000000 +0.437421,0.046064,-0.318184,0.105221,-0.437210,0.000000 +0.439747,0.046284,-0.319835,0.105734,-0.439501,0.000000 +0.442073,0.046505,-0.321485,0.106247,-0.441792,0.000000 +0.444398,0.046726,-0.323136,0.106760,-0.444082,0.000000 +0.446724,0.046946,-0.324786,0.107272,-0.446373,0.000000 +0.449050,0.047167,-0.326437,0.107785,-0.448664,0.000000 +0.451376,0.047387,-0.328087,0.108298,-0.450954,0.000000 +0.453702,0.047608,-0.329738,0.108811,-0.453245,0.000000 +0.456028,0.047829,-0.331388,0.109324,-0.455536,0.000000 +0.458353,0.048049,-0.333038,0.109837,-0.457826,0.000000 +0.460679,0.048270,-0.334689,0.110350,-0.460117,0.000000 +0.463005,0.048491,-0.336339,0.110863,-0.462408,0.000000 +0.465331,0.048711,-0.337990,0.111375,-0.464699,0.000000 +0.467657,0.048932,-0.339640,0.111888,-0.466989,0.000000 +0.469983,0.049153,-0.341291,0.112401,-0.469280,0.000000 +0.472308,0.049373,-0.342941,0.112914,-0.471571,0.000000 +0.474634,0.049594,-0.344592,0.113427,-0.473861,0.000000 +0.476960,0.049814,-0.346242,0.113940,-0.476152,0.000000 +0.479286,0.050035,-0.347892,0.114453,-0.478443,0.000000 +0.481612,0.050256,-0.349543,0.114966,-0.480734,0.000000 +0.483938,0.050476,-0.351193,0.115478,-0.483024,0.000000 +0.486264,0.050697,-0.352844,0.115991,-0.485315,0.000000 +0.488589,0.050917,-0.354494,0.116504,-0.487606,0.000000 +0.490915,0.051138,-0.356145,0.117017,-0.489896,0.000000 +0.493241,0.051359,-0.357795,0.117530,-0.492187,0.000000 +0.495567,0.051579,-0.359446,0.118043,-0.494478,0.000000 +0.497893,0.051800,-0.361096,0.118556,-0.496768,0.000000 +0.500219,0.052021,-0.362746,0.119069,-0.499059,0.000000 +0.502544,0.052241,-0.364397,0.119581,-0.501350,0.000000 +0.504870,0.052462,-0.366047,0.120094,-0.503641,0.000000 +0.507196,0.052683,-0.367698,0.120607,-0.505931,0.000000 +0.509522,0.052903,-0.369348,0.121120,-0.508222,0.000000 +0.511848,0.053124,-0.370999,0.121633,-0.510513,0.000000 +0.514174,0.053345,-0.372649,0.122146,-0.512803,0.000000 +0.516499,0.053565,-0.374300,0.122659,-0.515094,0.000000 +0.518825,0.053786,-0.375950,0.123172,-0.517385,0.000000 +0.521151,0.054006,-0.377600,0.123684,-0.519676,0.000000 +0.523477,0.054227,-0.379251,0.124197,-0.521966,0.000000 +0.525803,0.054448,-0.380901,0.124710,-0.524257,0.000000 +0.528129,0.054668,-0.382552,0.125223,-0.526548,0.000000 +0.530455,0.054889,-0.384202,0.125736,-0.528838,0.000000 +0.532780,0.055109,-0.385853,0.126249,-0.531129,0.000000 +0.535106,0.055330,-0.387503,0.126762,-0.533420,0.000000 +0.537432,0.055551,-0.389154,0.127275,-0.535711,0.000000 +0.539758,0.055771,-0.390804,0.127787,-0.538001,0.000000 +0.542084,0.055992,-0.392454,0.128300,-0.540292,0.000000 +0.544410,0.056213,-0.394105,0.128813,-0.542583,0.000000 +0.546735,0.056433,-0.395755,0.129326,-0.544873,0.000000 +0.549061,0.056654,-0.397406,0.129839,-0.547164,0.000000 +0.551387,0.056875,-0.399056,0.130352,-0.549455,0.000000 +0.553713,0.057095,-0.400707,0.130865,-0.551745,0.000000 +0.556039,0.057316,-0.402357,0.131378,-0.554036,0.000000 +0.558365,0.057536,-0.404008,0.131890,-0.556327,0.000000 +0.560690,0.057757,-0.405658,0.132403,-0.558618,0.000000 +0.563016,0.057978,-0.407308,0.132916,-0.560908,0.000000 +0.565342,0.058198,-0.408959,0.133429,-0.563199,0.000000 +0.567668,0.058419,-0.410609,0.133942,-0.565490,0.000000 +0.569994,0.058640,-0.412260,0.134455,-0.567780,0.000000 +0.572320,0.058860,-0.413910,0.134968,-0.570071,0.000000 +0.574646,0.059081,-0.415561,0.135480,-0.572362,0.000000 +0.576971,0.059302,-0.417211,0.135993,-0.574653,0.000000 +0.579297,0.059522,-0.418861,0.136506,-0.576943,0.000000 +0.581623,0.059743,-0.420512,0.137019,-0.579234,0.000000 +0.583949,0.059963,-0.422162,0.137532,-0.581525,0.000000 +0.586275,0.060184,-0.423813,0.138045,-0.583815,0.000000 +0.588601,0.060405,-0.425463,0.138558,-0.586106,0.000000 +0.590926,0.060625,-0.427114,0.139071,-0.588397,0.000000 +0.593252,0.060846,-0.428764,0.139583,-0.590688,0.000000 +0.595578,0.061067,-0.430415,0.140096,-0.592978,0.000000 +0.597904,0.061287,-0.432065,0.140609,-0.595269,0.000000 +0.600230,0.061508,-0.433715,0.141122,-0.597560,0.000000 +0.602556,0.061728,-0.435366,0.141635,-0.599850,0.000000 +0.604881,0.061949,-0.437016,0.142148,-0.602141,0.000000 +0.607207,0.062170,-0.438667,0.142661,-0.604432,0.000000 +0.609533,0.062390,-0.440317,0.143174,-0.606722,0.000000 +0.611859,0.062611,-0.441968,0.143686,-0.609013,0.000000 +0.614185,0.062832,-0.443618,0.144199,-0.611304,0.000000 +0.616511,0.063052,-0.445269,0.144712,-0.613595,0.000000 +0.618836,0.063273,-0.446919,0.145225,-0.615885,0.000000 +0.621162,0.063493,-0.448569,0.145738,-0.618176,0.000000 +0.623488,0.063714,-0.450220,0.146251,-0.620467,0.000000 +0.625814,0.063935,-0.451870,0.146764,-0.622757,0.000000 +0.628140,0.064155,-0.453521,0.147277,-0.625048,0.000000 +0.630466,0.064376,-0.455171,0.147789,-0.627339,0.000000 +0.632792,0.064597,-0.456822,0.148302,-0.629630,0.000000 +0.635117,0.064817,-0.458472,0.148815,-0.631920,0.000000 +0.637443,0.065038,-0.460123,0.149328,-0.634211,0.000000 +0.639769,0.065258,-0.461773,0.149841,-0.636502,0.000000 +0.642095,0.065479,-0.463423,0.150354,-0.638792,0.000000 +0.644421,0.065700,-0.465074,0.150867,-0.641083,0.000000 +0.646747,0.065920,-0.466724,0.151380,-0.643374,0.000000 +0.649072,0.066141,-0.468375,0.151892,-0.645664,0.000000 +0.651398,0.066362,-0.470025,0.152405,-0.647955,0.000000 +0.653724,0.066582,-0.471676,0.152918,-0.650246,0.000000 +0.656050,0.066803,-0.473326,0.153431,-0.652537,0.000000 +0.658376,0.067024,-0.474977,0.153944,-0.654827,0.000000 +0.660702,0.067244,-0.476627,0.154457,-0.657118,0.000000 +0.663027,0.067465,-0.478277,0.154970,-0.659409,0.000000 +0.665353,0.067685,-0.479928,0.155483,-0.661699,0.000000 +0.667679,0.067906,-0.481578,0.155995,-0.663990,0.000000 +0.670005,0.068127,-0.483229,0.156508,-0.666281,0.000000 +0.672331,0.068347,-0.484879,0.157021,-0.668572,0.000000 +0.674657,0.068568,-0.486530,0.157534,-0.670862,0.000000 +0.676983,0.068789,-0.488180,0.158047,-0.673153,0.000000 +0.679308,0.069009,-0.489831,0.158560,-0.675444,0.000000 +0.681634,0.069230,-0.491481,0.159073,-0.677734,0.000000 +0.683960,0.069450,-0.493131,0.159586,-0.680025,0.000000 +0.686286,0.069671,-0.494782,0.160098,-0.682316,0.000000 +0.688612,0.069892,-0.496432,0.160611,-0.684607,0.000000 +0.690938,0.070112,-0.498083,0.161124,-0.686897,0.000000 +0.693263,0.070333,-0.499733,0.161637,-0.689188,0.000000 +0.695589,0.070554,-0.501384,0.162150,-0.691479,0.000000 +0.697915,0.070774,-0.503034,0.162663,-0.693769,0.000000 +0.700241,0.070995,-0.504685,0.163176,-0.696060,0.000000 +0.702567,0.071216,-0.506335,0.163689,-0.698351,0.000000 +0.704893,0.071436,-0.507985,0.164201,-0.700641,0.000000 +0.707218,0.071657,-0.509636,0.164714,-0.702932,0.000000 +0.709544,0.071877,-0.511286,0.165227,-0.705223,0.000000 +0.711870,0.072098,-0.512937,0.165740,-0.707514,0.000000 +0.714196,0.072319,-0.514587,0.166253,-0.709804,0.000000 +0.716522,0.072539,-0.516238,0.166766,-0.712095,0.000000 +0.718848,0.072760,-0.517888,0.167279,-0.714386,0.000000 +0.721174,0.072981,-0.519538,0.167792,-0.716676,0.000000 +0.723499,0.073201,-0.521189,0.168304,-0.718967,0.000000 +0.725825,0.073422,-0.522839,0.168817,-0.721258,0.000000 +0.728151,0.073643,-0.524490,0.169330,-0.723549,0.000000 +0.730477,0.073863,-0.526140,0.169843,-0.725839,0.000000 +0.732803,0.074084,-0.527791,0.170356,-0.728130,0.000000 +0.735129,0.074304,-0.529441,0.170869,-0.730421,0.000000 +0.737454,0.074525,-0.531092,0.171382,-0.732711,0.000000 +0.739780,0.074746,-0.532742,0.171895,-0.735002,0.000000 +0.742106,0.074966,-0.534392,0.172407,-0.737293,0.000000 +0.744432,0.075187,-0.536043,0.172920,-0.739584,0.000000 +0.746758,0.075408,-0.537693,0.173433,-0.741874,0.000000 +0.749084,0.075628,-0.539344,0.173946,-0.744165,0.000000 +0.751409,0.075849,-0.540994,0.174459,-0.746456,0.000000 +0.753735,0.076069,-0.542645,0.174972,-0.748746,0.000000 +0.756061,0.076290,-0.544295,0.175485,-0.751037,0.000000 +0.758387,0.076511,-0.545946,0.175998,-0.753328,0.000000 +0.760713,0.076731,-0.547596,0.176510,-0.755618,0.000000 +0.763039,0.076952,-0.549246,0.177023,-0.757909,0.000000 +0.765365,0.077173,-0.550897,0.177536,-0.760200,0.000000 +0.767690,0.077393,-0.552547,0.178049,-0.762491,0.000000 +0.770016,0.077614,-0.554198,0.178562,-0.764781,0.000000 +0.772342,0.077835,-0.555848,0.179075,-0.767072,0.000000 +0.774668,0.078055,-0.557499,0.179588,-0.769363,0.000000 +0.776994,0.078276,-0.559149,0.180101,-0.771653,0.000000 +0.779320,0.078496,-0.560800,0.180613,-0.773944,0.000000 +0.781645,0.078717,-0.562450,0.181126,-0.776235,0.000000 +0.783971,0.078938,-0.564100,0.181639,-0.778526,0.000000 +0.786297,0.079158,-0.565751,0.182152,-0.780816,0.000000 +0.788623,0.079379,-0.567401,0.182665,-0.783107,0.000000 +0.790949,0.079600,-0.569052,0.183178,-0.785398,0.000000 +0.793275,0.079820,-0.570702,0.183691,-0.787688,0.000000 +0.795600,0.080041,-0.572353,0.184204,-0.789979,0.000000 +0.797926,0.080261,-0.574003,0.184716,-0.792270,0.000000 +0.800252,0.080482,-0.575654,0.185229,-0.794560,0.000000 +0.802578,0.080703,-0.577304,0.185742,-0.796851,0.000000 +0.804904,0.080923,-0.578954,0.186255,-0.799142,0.000000 +0.807230,0.081144,-0.580605,0.186768,-0.801433,0.000000 +0.809556,0.081365,-0.582255,0.187281,-0.803723,0.000000 +0.811881,0.081585,-0.583906,0.187794,-0.806014,0.000000 +0.814207,0.081806,-0.585556,0.188307,-0.808305,0.000000 +0.816533,0.082027,-0.587207,0.188819,-0.810595,0.000000 +0.818859,0.082247,-0.588857,0.189332,-0.812886,0.000000 +0.821185,0.082468,-0.590508,0.189845,-0.815177,0.000000 +0.823511,0.082688,-0.592158,0.190358,-0.817468,0.000000 +0.825836,0.082909,-0.593808,0.190871,-0.819758,0.000000 +0.828162,0.083130,-0.595459,0.191384,-0.822049,0.000000 +0.830488,0.083350,-0.597109,0.191897,-0.824340,0.000000 +0.832814,0.083571,-0.598760,0.192410,-0.826630,0.000000 +0.835140,0.083792,-0.600410,0.192922,-0.828921,0.000000 +0.837466,0.084012,-0.602061,0.193435,-0.831212,0.000000 +0.839791,0.084233,-0.603711,0.193948,-0.833503,0.000000 +0.842117,0.084453,-0.605362,0.194461,-0.835793,0.000000 +0.844443,0.084674,-0.607012,0.194974,-0.838084,0.000000 +0.846769,0.084895,-0.608662,0.195487,-0.840375,0.000000 +0.849095,0.085115,-0.610313,0.196000,-0.842665,0.000000 +0.851421,0.085336,-0.611963,0.196513,-0.844956,0.000000 +0.853747,0.085556,-0.613614,0.197025,-0.847247,0.000000 +0.856072,0.085777,-0.615264,0.197538,-0.849537,0.000000 +0.858398,0.085998,-0.616915,0.198051,-0.851828,0.000000 +0.860724,0.086218,-0.618565,0.198564,-0.854119,0.000000 +0.863050,0.086439,-0.620215,0.199077,-0.856410,0.000000 +0.865376,0.086660,-0.621866,0.199590,-0.858700,0.000000 +0.867702,0.086880,-0.623516,0.200103,-0.860991,0.000000 +0.870027,0.087101,-0.625167,0.200616,-0.863282,0.000000 +0.872353,0.087322,-0.626817,0.201128,-0.865572,0.000000 +0.874679,0.087542,-0.628468,0.201641,-0.867863,0.000000 +0.877005,0.087763,-0.630118,0.202154,-0.870154,0.000000 +0.879331,0.087984,-0.631769,0.202667,-0.872445,0.000000 +0.881657,0.088204,-0.633419,0.203180,-0.874735,0.000000 +0.883982,0.088425,-0.635069,0.203693,-0.877026,0.000000 +0.886308,0.088645,-0.636720,0.204206,-0.879317,0.000000 +0.888634,0.088866,-0.638370,0.204719,-0.881607,0.000000 +0.890960,0.089087,-0.640021,0.205231,-0.883898,0.000000 +0.893286,0.089307,-0.641671,0.205744,-0.886189,0.000000 +0.895612,0.089528,-0.643322,0.206257,-0.888480,0.000000 +0.897937,0.089748,-0.644972,0.206770,-0.890770,0.000000 +0.900263,0.089969,-0.646623,0.207283,-0.893061,0.000000 +0.902589,0.090190,-0.648273,0.207796,-0.895352,0.000000 +0.904915,0.090410,-0.649923,0.208309,-0.897642,0.000000 +0.907241,0.090631,-0.651574,0.208822,-0.899933,0.000000 +0.909567,0.090852,-0.653224,0.209334,-0.902224,0.000000 +0.911893,0.091072,-0.654875,0.209847,-0.904514,0.000000 +0.914218,0.091293,-0.656525,0.210360,-0.906805,0.000000 +0.916544,0.091514,-0.658176,0.210873,-0.909096,0.000000 +0.918870,0.091734,-0.659826,0.211386,-0.911387,0.000000 +0.921196,0.091955,-0.661477,0.211899,-0.913677,0.000000 +0.923522,0.092175,-0.663127,0.212412,-0.915968,0.000000 +0.925848,0.092396,-0.664777,0.212925,-0.918259,0.000000 +0.928173,0.092617,-0.666428,0.213437,-0.920549,0.000000 +0.930499,0.092837,-0.668078,0.213950,-0.922840,0.000000 +0.932825,0.093058,-0.669729,0.214463,-0.925131,0.000000 +0.935151,0.093279,-0.671379,0.214976,-0.927422,0.000000 +0.937477,0.093499,-0.673030,0.215489,-0.929712,0.000000 +0.939803,0.093720,-0.674680,0.216002,-0.932003,0.000000 +0.942128,0.093940,-0.676331,0.216515,-0.934294,0.000000 +0.944454,0.094161,-0.677981,0.217028,-0.936584,0.000000 +0.946780,0.094382,-0.679631,0.217540,-0.938875,0.000000 +0.949106,0.094602,-0.681282,0.218053,-0.941166,0.000000 +0.951432,0.094823,-0.682932,0.218566,-0.943456,0.000000 +0.953758,0.095044,-0.684583,0.219079,-0.945747,0.000000 +0.956084,0.095264,-0.686233,0.219592,-0.948038,0.000000 +0.958409,0.095485,-0.687884,0.220105,-0.950329,0.000000 +0.960735,0.095706,-0.689534,0.220618,-0.952619,0.000000 +0.963061,0.095926,-0.691185,0.221131,-0.954910,0.000000 +0.965387,0.096147,-0.692835,0.221643,-0.957201,0.000000 +0.967713,0.096367,-0.694485,0.222156,-0.959491,0.000000 +0.970039,0.096588,-0.696136,0.222669,-0.961782,0.000000 +0.972364,0.096809,-0.697786,0.223182,-0.964073,0.000000 +0.974690,0.097029,-0.699437,0.223695,-0.966364,0.000000 +0.977016,0.097250,-0.701087,0.224208,-0.968654,0.000000 +0.979342,0.097471,-0.702738,0.224721,-0.970945,0.000000 +0.981668,0.097691,-0.704388,0.225234,-0.973236,0.000000 +0.983994,0.097912,-0.706038,0.225746,-0.975526,0.000000 +0.986319,0.098132,-0.707689,0.226259,-0.977817,0.000000 +0.988645,0.098353,-0.709339,0.226772,-0.980108,0.000000 +0.990971,0.098574,-0.710990,0.227285,-0.982399,0.000000 +0.993297,0.098794,-0.712640,0.227798,-0.984689,0.000000 +0.995623,0.099015,-0.714291,0.228311,-0.986980,0.000000 +0.997949,0.099236,-0.715941,0.228824,-0.989271,0.000000 +1.000270,0.099456,-0.717592,0.229337,-0.991561,0.000000 +1.002600,0.099677,-0.719242,0.229849,-0.993852,0.000000 +1.004930,0.099898,-0.720892,0.230362,-0.996143,0.000000 +1.007250,0.100118,-0.722543,0.230875,-0.998433,0.000000 +1.009580,0.100339,-0.724193,0.231388,-1.000720,0.000000 +1.011900,0.100559,-0.725844,0.231901,-1.003010,0.000000 +1.014230,0.100780,-0.727494,0.232414,-1.005310,0.000000 +1.016560,0.101001,-0.729145,0.232927,-1.007600,0.000000 +1.018880,0.101221,-0.730795,0.233440,-1.009890,0.000000 +1.021210,0.101442,-0.732446,0.233952,-1.012180,0.000000 +1.023530,0.101663,-0.734096,0.234465,-1.014470,0.000000 +1.025860,0.101883,-0.735746,0.234978,-1.016760,0.000000 +1.028180,0.102104,-0.737397,0.235491,-1.019050,0.000000 +1.030510,0.102324,-0.739047,0.236004,-1.021340,0.000000 +1.032840,0.102545,-0.740698,0.236517,-1.023630,0.000000 +1.035160,0.102766,-0.742348,0.237030,-1.025920,0.000000 +1.037490,0.102986,-0.743999,0.237542,-1.028210,0.000000 +1.039810,0.103207,-0.745649,0.238055,-1.030500,0.000000 +1.042140,0.103428,-0.747300,0.238568,-1.032790,0.000000 +1.044470,0.103648,-0.748950,0.239081,-1.035080,0.000000 +1.046790,0.103869,-0.750600,0.239594,-1.037380,0.000000 +1.049120,0.104090,-0.752251,0.240107,-1.039670,0.000000 +1.051440,0.104310,-0.753901,0.240620,-1.041960,0.000000 +1.053770,0.104531,-0.755552,0.241133,-1.044250,0.000000 +1.056090,0.104751,-0.757202,0.241645,-1.046540,0.000000 +1.058420,0.104972,-0.758853,0.242158,-1.048830,0.000000 +1.060750,0.105193,-0.760503,0.242671,-1.051120,0.000000 +1.063070,0.105413,-0.762154,0.243184,-1.053410,0.000000 +1.065400,0.105634,-0.763804,0.243697,-1.055700,0.000000 +1.067720,0.105855,-0.765454,0.244210,-1.057990,0.000000 +1.070050,0.106075,-0.767105,0.244723,-1.060280,0.000000 +1.072380,0.106296,-0.768755,0.245236,-1.062570,0.000000 +1.074700,0.106516,-0.770406,0.245748,-1.064860,0.000000 +1.077030,0.106737,-0.772056,0.246261,-1.067150,0.000000 +1.079350,0.106958,-0.773707,0.246774,-1.069450,0.000000 +1.081680,0.107178,-0.775357,0.247287,-1.071740,0.000000 +1.084000,0.107399,-0.777008,0.247800,-1.074030,0.000000 +1.086330,0.107620,-0.778658,0.248313,-1.076320,0.000000 +1.088660,0.107840,-0.780308,0.248826,-1.078610,0.000000 +1.090980,0.108061,-0.781959,0.249339,-1.080900,0.000000 +1.093310,0.108282,-0.783609,0.249851,-1.083190,0.000000 +1.095630,0.108502,-0.785260,0.250364,-1.085480,0.000000 +1.097960,0.108723,-0.786910,0.250877,-1.087770,0.000000 +1.100290,0.108943,-0.788561,0.251390,-1.090060,0.000000 +1.102610,0.109164,-0.790211,0.251903,-1.092350,0.000000 +1.104940,0.109385,-0.791862,0.252416,-1.094640,0.000000 +1.107260,0.109605,-0.793512,0.252929,-1.096930,0.000000 +1.109590,0.109826,-0.795162,0.253442,-1.099220,0.000000 +1.111910,0.110047,-0.796813,0.253954,-1.101520,0.000000 +1.114240,0.110267,-0.798463,0.254467,-1.103810,0.000000 +1.116570,0.110488,-0.800114,0.254980,-1.106100,0.000000 +1.118890,0.110708,-0.801764,0.255493,-1.108390,0.000000 +1.121220,0.110929,-0.803415,0.256006,-1.110680,0.000000 +1.123540,0.111150,-0.805065,0.256519,-1.112970,0.000000 +1.125870,0.111370,-0.806715,0.257032,-1.115260,0.000000 +1.128200,0.111591,-0.808366,0.257545,-1.117550,0.000000 +1.130520,0.111812,-0.810016,0.258057,-1.119840,0.000000 +1.132850,0.112032,-0.811667,0.258570,-1.122130,0.000000 +1.135170,0.112253,-0.813317,0.259083,-1.124420,0.000000 +1.137500,0.112473,-0.814968,0.259596,-1.126710,0.000000 +1.139830,0.112694,-0.816618,0.260109,-1.129000,0.000000 +1.142150,0.112915,-0.818269,0.260622,-1.131290,0.000000 +1.144480,0.113135,-0.819919,0.261135,-1.133590,0.000000 +1.146800,0.113356,-0.821569,0.261648,-1.135880,0.000000 +1.149130,0.113577,-0.823220,0.262160,-1.138170,0.000000 +1.151450,0.113797,-0.824870,0.262673,-1.140460,0.000000 +1.153780,0.114018,-0.826521,0.263186,-1.142750,0.000000 +1.156110,0.114239,-0.828171,0.263699,-1.145040,0.000000 +1.158430,0.114459,-0.829822,0.264212,-1.147330,0.000000 +1.160760,0.114680,-0.831472,0.264725,-1.149620,0.000000 +1.163080,0.114900,-0.833123,0.265238,-1.151910,0.000000 +1.165410,0.115121,-0.834773,0.265751,-1.154200,0.000000 +1.167740,0.115342,-0.836423,0.266263,-1.156490,0.000000 +1.170060,0.115562,-0.838074,0.266776,-1.158780,0.000000 +1.172390,0.115783,-0.839724,0.267289,-1.161070,0.000000 +1.174710,0.116004,-0.841375,0.267802,-1.163360,0.000000 +1.177040,0.116224,-0.843025,0.268315,-1.165660,0.000000 +1.179360,0.116445,-0.844676,0.268828,-1.167950,0.000000 +1.181690,0.116665,-0.846326,0.269341,-1.170240,0.000000 +1.184020,0.116886,-0.847977,0.269854,-1.172530,0.000000 +1.186340,0.117107,-0.849627,0.270366,-1.174820,0.000000 +1.188670,0.117327,-0.851277,0.270879,-1.177110,0.000000 +1.190990,0.117548,-0.852928,0.271392,-1.179400,0.000000 +1.193320,0.117769,-0.854578,0.271905,-1.181690,0.000000 +1.195650,0.117989,-0.856229,0.272418,-1.183980,0.000000 +1.197970,0.118210,-0.857879,0.272931,-1.186270,0.000000 +1.200300,0.118431,-0.859530,0.273444,-1.188560,0.000000 +1.202620,0.118651,-0.861180,0.273957,-1.190850,0.000000 +1.204950,0.118872,-0.862831,0.274469,-1.193140,0.000000 +1.207270,0.119092,-0.864481,0.274982,-1.195430,0.000000 +1.209600,0.119313,-0.866131,0.275495,-1.197730,0.000000 +1.211930,0.119534,-0.867782,0.276008,-1.200020,0.000000 +1.214250,0.119754,-0.869432,0.276521,-1.202310,0.000000 +1.216580,0.119975,-0.871083,0.277034,-1.204600,0.000000 +1.218900,0.120196,-0.872733,0.277547,-1.206890,0.000000 +1.221230,0.120416,-0.874384,0.278060,-1.209180,0.000000 +1.223560,0.120637,-0.876034,0.278572,-1.211470,0.000000 +1.225880,0.120857,-0.877685,0.279085,-1.213760,0.000000 +1.228210,0.121078,-0.879335,0.279598,-1.216050,0.000000 +1.230530,0.121299,-0.880985,0.280111,-1.218340,0.000000 +1.232860,0.121519,-0.882636,0.280624,-1.220630,0.000000 +1.235180,0.121740,-0.884286,0.281137,-1.222920,0.000000 +1.237510,0.121961,-0.885937,0.281650,-1.225210,0.000000 +1.239840,0.122181,-0.887587,0.282163,-1.227500,0.000000 +1.242160,0.122402,-0.889238,0.282675,-1.229790,0.000000 +1.244490,0.122623,-0.890888,0.283188,-1.232090,0.000000 +1.246810,0.122843,-0.892539,0.283701,-1.234380,0.000000 +1.249140,0.123064,-0.894189,0.284214,-1.236670,0.000000 +1.251470,0.123284,-0.895839,0.284727,-1.238960,0.000000 +1.253790,0.123505,-0.897490,0.285240,-1.241250,0.000000 +1.256120,0.123726,-0.899140,0.285753,-1.243540,0.000000 +1.258440,0.123946,-0.900791,0.286266,-1.245830,0.000000 +1.260770,0.124167,-0.902441,0.286778,-1.248120,0.000000 +1.263090,0.124388,-0.904092,0.287291,-1.250410,0.000000 +1.265420,0.124608,-0.905742,0.287804,-1.252700,0.000000 +1.267750,0.124829,-0.907392,0.288317,-1.254990,0.000000 +1.270070,0.125049,-0.909043,0.288830,-1.257280,0.000000 +1.272400,0.125270,-0.910693,0.289343,-1.259570,0.000000 +1.274720,0.125491,-0.912344,0.289856,-1.261860,0.000000 +1.277050,0.125711,-0.913994,0.290369,-1.264160,0.000000 +1.279380,0.125932,-0.915645,0.290881,-1.266450,0.000000 +1.281700,0.126153,-0.917295,0.291394,-1.268740,0.000000 +1.284030,0.126373,-0.918946,0.291907,-1.271030,0.000000 +1.286350,0.126594,-0.920596,0.292420,-1.273320,0.000000 +1.288680,0.126814,-0.922246,0.292933,-1.275610,0.000000 +1.291000,0.127035,-0.923897,0.293446,-1.277900,0.000000 +1.293330,0.127256,-0.925547,0.293959,-1.280190,0.000000 +1.295660,0.127476,-0.927198,0.294472,-1.282480,0.000000 +1.297980,0.127697,-0.928848,0.294984,-1.284770,0.000000 +1.300310,0.127918,-0.930499,0.295497,-1.287060,0.000000 +1.302630,0.128138,-0.932149,0.296010,-1.289350,0.000000 +1.304960,0.128359,-0.933800,0.296523,-1.291640,0.000000 +1.307290,0.128580,-0.935450,0.297036,-1.293930,0.000000 +1.309610,0.128800,-0.937100,0.297549,-1.296230,0.000000 +1.311940,0.129021,-0.938751,0.298062,-1.298520,0.000000 +1.314260,0.129241,-0.940401,0.298575,-1.300810,0.000000 +1.316590,0.129462,-0.942052,0.299087,-1.303100,0.000000 +1.318910,0.129683,-0.943702,0.299600,-1.305390,0.000000 +1.321240,0.129903,-0.945353,0.300113,-1.307680,0.000000 +1.323570,0.130124,-0.947003,0.300626,-1.309970,0.000000 +1.325890,0.130345,-0.948654,0.301139,-1.312260,0.000000 +1.328220,0.130565,-0.950304,0.301652,-1.314550,0.000000 +1.330540,0.130786,-0.951954,0.302165,-1.316840,0.000000 +1.332870,0.131006,-0.953605,0.302678,-1.319130,0.000000 +1.335200,0.131227,-0.955255,0.303190,-1.321420,0.000000 +1.337520,0.131448,-0.956906,0.303703,-1.323710,0.000000 +1.339850,0.131668,-0.958556,0.304216,-1.326000,0.000000 +1.342170,0.131889,-0.960207,0.304729,-1.328300,0.000000 +1.344500,0.132110,-0.961857,0.305242,-1.330590,0.000000 +1.346820,0.132330,-0.963508,0.305755,-1.332880,0.000000 +1.349150,0.132551,-0.965158,0.306268,-1.335170,0.000000 +1.351480,0.132772,-0.966808,0.306781,-1.337460,0.000000 +1.353800,0.132992,-0.968459,0.307293,-1.339750,0.000000 +1.356130,0.133213,-0.970109,0.307806,-1.342040,0.000000 +1.358450,0.133433,-0.971760,0.308319,-1.344330,0.000000 +1.360780,0.133654,-0.973410,0.308832,-1.346620,0.000000 +1.363110,0.133875,-0.975061,0.309345,-1.348910,0.000000 +1.365430,0.134095,-0.976711,0.309858,-1.351200,0.000000 +1.367760,0.134316,-0.978362,0.310371,-1.353490,0.000000 +1.370080,0.134537,-0.980012,0.310884,-1.355780,0.000000 +1.372410,0.134757,-0.981662,0.311396,-1.358070,0.000000 +1.374740,0.134978,-0.983313,0.311909,-1.360370,0.000000 +1.377060,0.135198,-0.984963,0.312422,-1.362660,0.000000 +1.379390,0.135419,-0.986614,0.312935,-1.364950,0.000000 +1.381710,0.135640,-0.988264,0.313448,-1.367240,0.000000 +1.384040,0.135860,-0.989915,0.313961,-1.369530,0.000000 +1.386360,0.136081,-0.991565,0.314474,-1.371820,0.000000 +1.388690,0.136302,-0.993216,0.314987,-1.374110,0.000000 +1.391020,0.136522,-0.994866,0.315499,-1.376400,0.000000 +1.393340,0.136743,-0.996516,0.316012,-1.378690,0.000000 +1.395670,0.136963,-0.998167,0.316525,-1.380980,0.000000 +1.397990,0.137184,-0.999817,0.317038,-1.383270,0.000000 +1.400320,0.137405,-1.001470,0.317551,-1.385560,0.000000 +1.402650,0.137625,-1.003120,0.318064,-1.387850,0.000000 +1.404970,0.137846,-1.004770,0.318577,-1.390140,0.000000 +1.407300,0.138067,-1.006420,0.319090,-1.392440,0.000000 +1.409620,0.138287,-1.008070,0.319602,-1.394730,0.000000 +1.411950,0.138508,-1.009720,0.320115,-1.397020,0.000000 +1.414270,0.138729,-1.011370,0.320628,-1.399310,0.000000 +1.416600,0.138949,-1.013020,0.321141,-1.401600,0.000000 +1.418930,0.139170,-1.014670,0.321654,-1.403890,0.000000 +1.421250,0.139390,-1.016320,0.322167,-1.406180,0.000000 +1.423580,0.139611,-1.017970,0.322680,-1.408470,0.000000 +1.425900,0.139832,-1.019620,0.323193,-1.410760,0.000000 +1.428230,0.140052,-1.021270,0.323705,-1.413050,0.000000 +1.430560,0.140273,-1.022920,0.324218,-1.415340,0.000000 +1.432880,0.140494,-1.024570,0.324731,-1.417630,0.000000 +1.435210,0.140714,-1.026220,0.325244,-1.419920,0.000000 +1.437530,0.140935,-1.027870,0.325757,-1.422210,0.000000 +1.439860,0.141155,-1.029530,0.326270,-1.424510,0.000000 +1.442180,0.141376,-1.031180,0.326783,-1.426800,0.000000 +1.444510,0.141597,-1.032830,0.327296,-1.429090,0.000000 +1.446840,0.141817,-1.034480,0.327808,-1.431380,0.000000 +1.449160,0.142038,-1.036130,0.328321,-1.433670,0.000000 +1.451490,0.142259,-1.037780,0.328834,-1.435960,0.000000 +1.453810,0.142479,-1.039430,0.329347,-1.438250,0.000000 +1.456140,0.142700,-1.041080,0.329860,-1.440540,0.000000 +1.458470,0.142921,-1.042730,0.330373,-1.442830,0.000000 +1.460790,0.143141,-1.044380,0.330886,-1.445120,0.000000 +1.463120,0.143362,-1.046030,0.331399,-1.447410,0.000000 +1.465440,0.143582,-1.047680,0.331911,-1.449700,0.000000 +1.467770,0.143803,-1.049330,0.332424,-1.451990,0.000000 +1.470090,0.144024,-1.050980,0.332937,-1.454280,0.000000 +1.472420,0.144244,-1.052630,0.333450,-1.456580,0.000000 +1.474750,0.144465,-1.054280,0.333963,-1.458870,0.000000 +1.477070,0.144686,-1.055930,0.334476,-1.461160,0.000000 +1.479400,0.144906,-1.057580,0.334989,-1.463450,0.000000 +1.481720,0.145127,-1.059230,0.335502,-1.465740,0.000000 +1.484050,0.145347,-1.060880,0.336014,-1.468030,0.000000 +1.486380,0.145568,-1.062530,0.336527,-1.470320,0.000000 +1.488700,0.145789,-1.064180,0.337040,-1.472610,0.000000 +1.491030,0.146009,-1.065830,0.337553,-1.474900,0.000000 +1.493350,0.146230,-1.067490,0.338066,-1.477190,0.000000 +1.495680,0.146451,-1.069140,0.338579,-1.479480,0.000000 +1.498000,0.146671,-1.070790,0.339092,-1.481770,0.000000 +1.500330,0.146892,-1.072440,0.339605,-1.484060,0.000000 +1.502660,0.147113,-1.074090,0.340117,-1.486350,0.000000 +1.504980,0.147333,-1.075740,0.340630,-1.488640,0.000000 +1.507310,0.147554,-1.077390,0.341143,-1.490940,0.000000 +1.509630,0.147774,-1.079040,0.341656,-1.493230,0.000000 +1.511960,0.147995,-1.080690,0.342169,-1.495520,0.000000 +1.514290,0.148216,-1.082340,0.342682,-1.497810,0.000000 +1.516610,0.148436,-1.083990,0.343195,-1.500100,0.000000 +1.518930,0.148657,-1.085640,0.343707,-1.502390,0.000000 +1.521240,0.148878,-1.087290,0.344220,-1.504680,0.000000 +1.523540,0.149098,-1.088940,0.344733,-1.506970,0.000000 +1.525830,0.149319,-1.090590,0.345246,-1.509260,0.000000 +1.528100,0.149539,-1.092240,0.345759,-1.511550,0.000000 +1.530360,0.149760,-1.093890,0.346272,-1.513840,0.000000 +1.532590,0.149981,-1.095540,0.346785,-1.516120,0.000000 +1.534800,0.150201,-1.097190,0.347298,-1.518380,0.000000 +1.536990,0.150422,-1.098840,0.347810,-1.520640,0.000000 +1.539150,0.150643,-1.100490,0.348323,-1.522880,0.000000 +1.541280,0.150863,-1.102130,0.348836,-1.525100,0.000000 +1.543370,0.151084,-1.103760,0.349349,-1.527290,0.000000 +1.545430,0.151304,-1.105380,0.349862,-1.529460,0.000000 +1.547450,0.151525,-1.106980,0.350375,-1.531610,0.000000 +1.549430,0.151746,-1.108570,0.350888,-1.533720,0.000000 +1.551360,0.151966,-1.110140,0.351401,-1.535790,0.000000 +1.553250,0.152187,-1.111690,0.351913,-1.537830,0.000000 +1.555090,0.152408,-1.113210,0.352426,-1.539820,0.000000 +1.556870,0.152628,-1.114700,0.352939,-1.541770,0.000000 +1.558610,0.152849,-1.116170,0.353452,-1.543680,0.000000 +1.560280,0.153070,-1.117600,0.353965,-1.545530,0.000000 +1.561900,0.153290,-1.119000,0.354478,-1.547330,0.000000 +1.563460,0.153511,-1.120360,0.354991,-1.549070,0.000000 +1.564950,0.153731,-1.121680,0.355504,-1.550750,0.000000 +1.566370,0.153952,-1.122960,0.356016,-1.552370,0.000000 +1.567730,0.154173,-1.124190,0.356529,-1.553930,0.000000 +1.569010,0.154393,-1.125380,0.357042,-1.555410,0.000000 +1.570210,0.154614,-1.126510,0.357555,-1.556820,0.000000 +1.571340,0.154835,-1.127600,0.358068,-1.558160,0.000000 +1.572400,0.155055,-1.128620,0.358581,-1.559420,0.000000 +1.573380,0.155276,-1.129590,0.359094,-1.560590,0.000000 +1.574290,0.155496,-1.130500,0.359607,-1.561680,0.000000 +1.575140,0.155717,-1.131340,0.360119,-1.562700,0.000000 +1.575920,0.155938,-1.132120,0.360630,-1.563630,0.000000 +1.576630,0.156158,-1.132840,0.361135,-1.564490,0.000000 +1.577290,0.156379,-1.133500,0.361632,-1.565280,0.000000 +1.577890,0.156600,-1.134100,0.362118,-1.565990,0.000000 +1.578440,0.156820,-1.134640,0.362589,-1.566650,0.000000 +1.578930,0.157041,-1.135140,0.363042,-1.567240,0.000000 +1.579370,0.157261,-1.135580,0.363475,-1.567770,0.000000 +1.579770,0.157481,-1.135980,0.363883,-1.568250,0.000000 +1.580130,0.157697,-1.136330,0.364265,-1.568670,0.000000 +1.580440,0.157906,-1.136640,0.364616,-1.569050,0.000000 +1.580710,0.158106,-1.136920,0.364935,-1.569370,0.000000 +1.580950,0.158295,-1.137150,0.365217,-1.569660,0.000000 +1.581150,0.158470,-1.137360,0.365460,-1.569900,0.000000 +1.581320,0.158628,-1.137530,0.365666,-1.570110,0.000000 +1.581460,0.158767,-1.137670,0.365837,-1.570280,0.000000 +1.581580,0.158884,-1.137790,0.365978,-1.570420,0.000000 +1.581680,0.158977,-1.137880,0.366090,-1.570530,0.000000 +1.581750,0.159051,-1.137960,0.366178,-1.570620,0.000000 +1.581800,0.159106,-1.138010,0.366244,-1.570680,0.000000 +1.581840,0.159145,-1.138050,0.366291,-1.570730,0.000000 +1.581870,0.159171,-1.138080,0.366322,-1.570760,0.000000 +1.581890,0.159187,-1.138090,0.366342,-1.570780,0.000000 +1.581890,0.159196,-1.138100,0.366351,-1.570790,0.000000 +1.581900,0.159199,-1.138100,0.366355,-1.570790,0.000000 +1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +1.581900,0.159203,-1.138110,0.366355,-1.570800,-0.000008 +1.581890,0.159200,-1.138100,0.366352,-1.570790,-0.000008 +1.581890,0.159191,-1.138100,0.366342,-1.570780,-0.000008 +1.581870,0.159175,-1.138080,0.366323,-1.570760,-0.000008 +1.581840,0.159149,-1.138050,0.366291,-1.570730,-0.000008 +1.581800,0.159110,-1.138010,0.366244,-1.570680,-0.000008 +1.581750,0.159055,-1.137960,0.366178,-1.570620,-0.000008 +1.581680,0.158981,-1.137890,0.366091,-1.570530,-0.000008 +1.581580,0.158888,-1.137790,0.365978,-1.570420,-0.000008 +1.581470,0.158771,-1.137680,0.365838,-1.570280,-0.000008 +1.581320,0.158632,-1.137530,0.365666,-1.570110,-0.000008 +1.581150,0.158474,-1.137360,0.365460,-1.569900,-0.000008 +1.580950,0.158299,-1.137160,0.365217,-1.569660,-0.000008 +1.580710,0.158110,-1.136920,0.364935,-1.569370,-0.000008 +1.580440,0.157910,-1.136650,0.364617,-1.569050,-0.000008 +1.580130,0.157700,-1.136340,0.364265,-1.568670,-0.000008 +1.579770,0.157485,-1.135980,0.363884,-1.568250,-0.000008 +1.579370,0.157265,-1.135580,0.363475,-1.567770,-0.000008 +1.578930,0.157045,-1.135140,0.363042,-1.567240,-0.000008 +1.578440,0.156824,-1.134650,0.362589,-1.566650,-0.000008 +1.577890,0.156604,-1.134100,0.362118,-1.565990,-0.000008 +1.577290,0.156383,-1.133500,0.361633,-1.565280,-0.000008 +1.576630,0.156162,-1.132840,0.361136,-1.564490,-0.000008 +1.575920,0.155942,-1.132130,0.360630,-1.563630,-0.000008 +1.575140,0.155721,-1.131350,0.360120,-1.562700,-0.000008 +1.574290,0.155500,-1.130500,0.359607,-1.561680,-0.000008 +1.573380,0.155280,-1.129600,0.359094,-1.560590,-0.000008 +1.572400,0.155059,-1.128630,0.358581,-1.559420,-0.000008 +1.571340,0.154839,-1.127600,0.358068,-1.558160,-0.000008 +1.570210,0.154618,-1.126520,0.357555,-1.556820,-0.000008 +1.569010,0.154397,-1.125380,0.357043,-1.555410,-0.000008 +1.567730,0.154177,-1.124200,0.356530,-1.553930,-0.000008 +1.566370,0.153956,-1.122970,0.356017,-1.552370,-0.000008 +1.564950,0.153735,-1.121690,0.355504,-1.550760,-0.000008 +1.563460,0.153515,-1.120370,0.354991,-1.549070,-0.000008 +1.561900,0.153294,-1.119010,0.354478,-1.547330,-0.000008 +1.560280,0.153074,-1.117610,0.353965,-1.545530,-0.000008 +1.558610,0.152853,-1.116170,0.353452,-1.543680,-0.000008 +1.556870,0.152632,-1.114710,0.352940,-1.541770,-0.000008 +1.555090,0.152412,-1.113210,0.352427,-1.539820,-0.000008 +1.553250,0.152191,-1.111690,0.351914,-1.537830,-0.000008 +1.551360,0.151970,-1.110140,0.351401,-1.535790,-0.000008 +1.549430,0.151750,-1.108570,0.350888,-1.533720,-0.000008 +1.547450,0.151529,-1.106990,0.350375,-1.531610,-0.000008 +1.545430,0.151308,-1.105380,0.349862,-1.529460,-0.000008 +1.543370,0.151088,-1.103760,0.349349,-1.527290,-0.000008 +1.541280,0.150867,-1.102130,0.348837,-1.525100,-0.000008 +1.539150,0.150647,-1.100490,0.348324,-1.522880,-0.000008 +1.536990,0.150426,-1.098850,0.347811,-1.520640,-0.000008 +1.534800,0.150205,-1.097200,0.347298,-1.518380,-0.000008 +1.532590,0.149985,-1.095550,0.346785,-1.516120,-0.000008 +1.530360,0.149764,-1.093900,0.346272,-1.513840,-0.000008 +1.528100,0.149543,-1.092250,0.345759,-1.511550,-0.000008 +1.525830,0.149323,-1.090600,0.345246,-1.509260,-0.000008 +1.523540,0.149102,-1.088950,0.344734,-1.506970,-0.000008 +1.521240,0.148882,-1.087300,0.344221,-1.504680,-0.000008 +1.518930,0.148661,-1.085640,0.343708,-1.502390,-0.000008 +1.516610,0.148440,-1.083990,0.343195,-1.500100,-0.000008 +1.514290,0.148220,-1.082340,0.342682,-1.497810,-0.000008 +1.511960,0.147999,-1.080690,0.342169,-1.495520,-0.000008 +1.509630,0.147778,-1.079040,0.341656,-1.493230,-0.000008 +1.507310,0.147558,-1.077390,0.341143,-1.490940,-0.000008 +1.504980,0.147337,-1.075740,0.340631,-1.488650,-0.000008 +1.502660,0.147116,-1.074090,0.340118,-1.486350,-0.000008 +1.500330,0.146896,-1.072440,0.339605,-1.484060,-0.000008 +1.498010,0.146675,-1.070790,0.339092,-1.481770,-0.000008 +1.495680,0.146455,-1.069140,0.338579,-1.479480,-0.000008 +1.493350,0.146234,-1.067490,0.338066,-1.477190,-0.000008 +1.491030,0.146013,-1.065840,0.337553,-1.474900,-0.000008 +1.488700,0.145793,-1.064190,0.337040,-1.472610,-0.000008 +1.486380,0.145572,-1.062540,0.336528,-1.470320,-0.000008 +1.484050,0.145351,-1.060890,0.336015,-1.468030,-0.000008 +1.481720,0.145131,-1.059240,0.335502,-1.465740,-0.000008 +1.479400,0.144910,-1.057590,0.334989,-1.463450,-0.000008 +1.477070,0.144690,-1.055940,0.334476,-1.461160,-0.000008 +1.474750,0.144469,-1.054290,0.333963,-1.458870,-0.000008 +1.472420,0.144248,-1.052640,0.333450,-1.456580,-0.000008 +1.470090,0.144028,-1.050990,0.332938,-1.454280,-0.000008 +1.467770,0.143807,-1.049340,0.332425,-1.451990,-0.000008 +1.465440,0.143586,-1.047680,0.331912,-1.449700,-0.000008 +1.463120,0.143366,-1.046030,0.331399,-1.447410,-0.000008 +1.460790,0.143145,-1.044380,0.330886,-1.445120,-0.000008 +1.458470,0.142924,-1.042730,0.330373,-1.442830,-0.000008 +1.456140,0.142704,-1.041080,0.329860,-1.440540,-0.000008 +1.453810,0.142483,-1.039430,0.329347,-1.438250,-0.000008 +1.451490,0.142263,-1.037780,0.328835,-1.435960,-0.000008 +1.449160,0.142042,-1.036130,0.328322,-1.433670,-0.000008 +1.446840,0.141821,-1.034480,0.327809,-1.431380,-0.000008 +1.444510,0.141601,-1.032830,0.327296,-1.429090,-0.000008 +1.442180,0.141380,-1.031180,0.326783,-1.426800,-0.000008 +1.439860,0.141159,-1.029530,0.326270,-1.424510,-0.000008 +1.437530,0.140939,-1.027880,0.325757,-1.422220,-0.000008 +1.435210,0.140718,-1.026230,0.325244,-1.419920,-0.000008 +1.432880,0.140498,-1.024580,0.324732,-1.417630,-0.000008 +1.430560,0.140277,-1.022930,0.324219,-1.415340,-0.000008 +1.428230,0.140056,-1.021280,0.323706,-1.413050,-0.000008 +1.425900,0.139836,-1.019630,0.323193,-1.410760,-0.000008 +1.423580,0.139615,-1.017980,0.322680,-1.408470,-0.000008 +1.421250,0.139394,-1.016330,0.322167,-1.406180,-0.000008 +1.418930,0.139174,-1.014680,0.321654,-1.403890,-0.000008 +1.416600,0.138953,-1.013030,0.321141,-1.401600,-0.000008 +1.414270,0.138733,-1.011370,0.320629,-1.399310,-0.000008 +1.411950,0.138512,-1.009720,0.320116,-1.397020,-0.000008 +1.409620,0.138291,-1.008070,0.319603,-1.394730,-0.000008 +1.407300,0.138071,-1.006420,0.319090,-1.392440,-0.000008 +1.404970,0.137850,-1.004770,0.318577,-1.390150,-0.000008 +1.402650,0.137629,-1.003120,0.318064,-1.387850,-0.000008 +1.400320,0.137409,-1.001470,0.317551,-1.385560,-0.000008 +1.397990,0.137188,-0.999822,0.317038,-1.383270,-0.000008 +1.395670,0.136967,-0.998171,0.316526,-1.380980,-0.000008 +1.393340,0.136747,-0.996521,0.316013,-1.378690,-0.000008 +1.391020,0.136526,-0.994870,0.315500,-1.376400,-0.000008 +1.388690,0.136306,-0.993220,0.314987,-1.374110,-0.000008 +1.386360,0.136085,-0.991570,0.314474,-1.371820,-0.000008 +1.384040,0.135864,-0.989919,0.313961,-1.369530,-0.000008 +1.381710,0.135644,-0.988269,0.313448,-1.367240,-0.000008 +1.379390,0.135423,-0.986618,0.312935,-1.364950,-0.000008 +1.377060,0.135202,-0.984968,0.312423,-1.362660,-0.000008 +1.374740,0.134982,-0.983317,0.311910,-1.360370,-0.000008 +1.372410,0.134761,-0.981667,0.311397,-1.358080,-0.000008 +1.370080,0.134541,-0.980016,0.310884,-1.355780,-0.000008 +1.367760,0.134320,-0.978366,0.310371,-1.353490,-0.000008 +1.365430,0.134099,-0.976716,0.309858,-1.351200,-0.000008 +1.363110,0.133879,-0.975065,0.309345,-1.348910,-0.000008 +1.360780,0.133658,-0.973415,0.308832,-1.346620,-0.000008 +1.358450,0.133437,-0.971764,0.308320,-1.344330,-0.000008 +1.356130,0.133217,-0.970114,0.307807,-1.342040,-0.000008 +1.353800,0.132996,-0.968463,0.307294,-1.339750,-0.000008 +1.351480,0.132775,-0.966813,0.306781,-1.337460,-0.000008 +1.349150,0.132555,-0.965162,0.306268,-1.335170,-0.000008 +1.346830,0.132334,-0.963512,0.305755,-1.332880,-0.000008 +1.344500,0.132114,-0.961862,0.305242,-1.330590,-0.000008 +1.342170,0.131893,-0.960211,0.304729,-1.328300,-0.000008 +1.339850,0.131672,-0.958561,0.304217,-1.326010,-0.000008 +1.337520,0.131452,-0.956910,0.303704,-1.323710,-0.000008 +1.335200,0.131231,-0.955260,0.303191,-1.321420,-0.000008 +1.332870,0.131010,-0.953609,0.302678,-1.319130,-0.000008 +1.330540,0.130790,-0.951959,0.302165,-1.316840,-0.000008 +1.328220,0.130569,-0.950308,0.301652,-1.314550,-0.000008 +1.325890,0.130349,-0.948658,0.301139,-1.312260,-0.000008 +1.323570,0.130128,-0.947008,0.300626,-1.309970,-0.000008 +1.321240,0.129907,-0.945357,0.300114,-1.307680,-0.000008 +1.318920,0.129687,-0.943707,0.299601,-1.305390,-0.000008 +1.316590,0.129466,-0.942056,0.299088,-1.303100,-0.000008 +1.314260,0.129245,-0.940406,0.298575,-1.300810,-0.000008 +1.311940,0.129025,-0.938755,0.298062,-1.298520,-0.000008 +1.309610,0.128804,-0.937105,0.297549,-1.296230,-0.000008 +1.307290,0.128583,-0.935454,0.297036,-1.293940,-0.000008 +1.304960,0.128363,-0.933804,0.296523,-1.291640,-0.000008 +1.302630,0.128142,-0.932154,0.296011,-1.289350,-0.000008 +1.300310,0.127922,-0.930503,0.295498,-1.287060,-0.000008 +1.297980,0.127701,-0.928853,0.294985,-1.284770,-0.000008 +1.295660,0.127480,-0.927202,0.294472,-1.282480,-0.000008 +1.293330,0.127260,-0.925552,0.293959,-1.280190,-0.000008 +1.291010,0.127039,-0.923901,0.293446,-1.277900,-0.000008 +1.288680,0.126818,-0.922251,0.292933,-1.275610,-0.000008 +1.286350,0.126598,-0.920600,0.292420,-1.273320,-0.000008 +1.284030,0.126377,-0.918950,0.291908,-1.271030,-0.000008 +1.281700,0.126157,-0.917300,0.291395,-1.268740,-0.000008 +1.279380,0.125936,-0.915649,0.290882,-1.266450,-0.000008 +1.277050,0.125715,-0.913999,0.290369,-1.264160,-0.000008 +1.274720,0.125495,-0.912348,0.289856,-1.261870,-0.000008 +1.272400,0.125274,-0.910698,0.289343,-1.259570,-0.000008 +1.270070,0.125053,-0.909047,0.288830,-1.257280,-0.000008 +1.267750,0.124833,-0.907397,0.288317,-1.254990,-0.000008 +1.265420,0.124612,-0.905747,0.287805,-1.252700,-0.000008 +1.263100,0.124392,-0.904096,0.287292,-1.250410,-0.000008 +1.260770,0.124171,-0.902446,0.286779,-1.248120,-0.000008 +1.258440,0.123950,-0.900795,0.286266,-1.245830,-0.000008 +1.256120,0.123730,-0.899145,0.285753,-1.243540,-0.000008 +1.253790,0.123509,-0.897494,0.285240,-1.241250,-0.000008 +1.251470,0.123288,-0.895844,0.284727,-1.238960,-0.000008 +1.249140,0.123068,-0.894193,0.284214,-1.236670,-0.000008 +1.246810,0.122847,-0.892543,0.283702,-1.234380,-0.000008 +1.244490,0.122626,-0.890893,0.283189,-1.232090,-0.000008 +1.242160,0.122406,-0.889242,0.282676,-1.229800,-0.000008 +1.239840,0.122185,-0.887592,0.282163,-1.227500,-0.000008 +1.237510,0.121965,-0.885941,0.281650,-1.225210,-0.000008 +1.235180,0.121744,-0.884291,0.281137,-1.222920,-0.000008 +1.232860,0.121523,-0.882640,0.280624,-1.220630,-0.000008 +1.230530,0.121303,-0.880990,0.280111,-1.218340,-0.000008 +1.228210,0.121082,-0.879339,0.279599,-1.216050,-0.000008 +1.225880,0.120861,-0.877689,0.279086,-1.213760,-0.000008 +1.223560,0.120641,-0.876039,0.278573,-1.211470,-0.000008 +1.221230,0.120420,-0.874388,0.278060,-1.209180,-0.000008 +1.218900,0.120200,-0.872738,0.277547,-1.206890,-0.000008 +1.216580,0.119979,-0.871087,0.277034,-1.204600,-0.000008 +1.214250,0.119758,-0.869437,0.276521,-1.202310,-0.000008 +1.211930,0.119538,-0.867786,0.276008,-1.200020,-0.000008 +1.209600,0.119317,-0.866136,0.275496,-1.197730,-0.000008 +1.207270,0.119096,-0.864485,0.274983,-1.195440,-0.000008 +1.204950,0.118876,-0.862835,0.274470,-1.193140,-0.000008 +1.202620,0.118655,-0.861185,0.273957,-1.190850,-0.000008 +1.200300,0.118434,-0.859534,0.273444,-1.188560,-0.000008 +1.197970,0.118214,-0.857884,0.272931,-1.186270,-0.000008 +1.195650,0.117993,-0.856233,0.272418,-1.183980,-0.000008 +1.193320,0.117773,-0.854583,0.271905,-1.181690,-0.000008 +1.190990,0.117552,-0.852932,0.271393,-1.179400,-0.000008 +1.188670,0.117331,-0.851282,0.270880,-1.177110,-0.000008 +1.186340,0.117111,-0.849631,0.270367,-1.174820,-0.000008 +1.184020,0.116890,-0.847981,0.269854,-1.172530,-0.000008 +1.181690,0.116669,-0.846331,0.269341,-1.170240,-0.000008 +1.179360,0.116449,-0.844680,0.268828,-1.167950,-0.000008 +1.177040,0.116228,-0.843030,0.268315,-1.165660,-0.000008 +1.174710,0.116008,-0.841379,0.267802,-1.163370,-0.000008 +1.172390,0.115787,-0.839729,0.267290,-1.161070,-0.000008 +1.170060,0.115566,-0.838078,0.266777,-1.158780,-0.000008 +1.167740,0.115346,-0.836428,0.266264,-1.156490,-0.000008 +1.165410,0.115125,-0.834777,0.265751,-1.154200,-0.000008 +1.163080,0.114904,-0.833127,0.265238,-1.151910,-0.000008 +1.160760,0.114684,-0.831477,0.264725,-1.149620,-0.000008 +1.158430,0.114463,-0.829826,0.264212,-1.147330,-0.000008 +1.156110,0.114243,-0.828176,0.263699,-1.145040,-0.000008 +1.153780,0.114022,-0.826525,0.263187,-1.142750,-0.000008 +1.151450,0.113801,-0.824875,0.262674,-1.140460,-0.000008 +1.149130,0.113581,-0.823224,0.262161,-1.138170,-0.000008 +1.146800,0.113360,-0.821574,0.261648,-1.135880,-0.000008 +1.144480,0.113139,-0.819924,0.261135,-1.133590,-0.000008 +1.142150,0.112919,-0.818273,0.260622,-1.131300,-0.000008 +1.139830,0.112698,-0.816623,0.260109,-1.129000,-0.000008 +1.137500,0.112477,-0.814972,0.259596,-1.126710,-0.000008 +1.135170,0.112257,-0.813322,0.259084,-1.124420,-0.000008 +1.132850,0.112036,-0.811671,0.258571,-1.122130,-0.000008 +1.130520,0.111816,-0.810021,0.258058,-1.119840,-0.000008 +1.128200,0.111595,-0.808370,0.257545,-1.117550,-0.000008 +1.125870,0.111374,-0.806720,0.257032,-1.115260,-0.000008 +1.123540,0.111154,-0.805070,0.256519,-1.112970,-0.000008 +1.121220,0.110933,-0.803419,0.256006,-1.110680,-0.000008 +1.118890,0.110712,-0.801769,0.255493,-1.108390,-0.000008 +1.116570,0.110492,-0.800118,0.254981,-1.106100,-0.000008 +1.114240,0.110271,-0.798468,0.254468,-1.103810,-0.000008 +1.111920,0.110051,-0.796817,0.253955,-1.101520,-0.000008 +1.109590,0.109830,-0.795167,0.253442,-1.099230,-0.000008 +1.107260,0.109609,-0.793516,0.252929,-1.096930,-0.000008 +1.104940,0.109389,-0.791866,0.252416,-1.094640,-0.000008 +1.102610,0.109168,-0.790216,0.251903,-1.092350,-0.000008 +1.100290,0.108947,-0.788565,0.251390,-1.090060,-0.000008 +1.097960,0.108727,-0.786915,0.250878,-1.087770,-0.000008 +1.095630,0.108506,-0.785264,0.250365,-1.085480,-0.000008 +1.093310,0.108285,-0.783614,0.249852,-1.083190,-0.000008 +1.090980,0.108065,-0.781963,0.249339,-1.080900,-0.000008 +1.088660,0.107844,-0.780313,0.248826,-1.078610,-0.000008 +1.086330,0.107624,-0.778662,0.248313,-1.076320,-0.000008 +1.084010,0.107403,-0.777012,0.247800,-1.074030,-0.000008 +1.081680,0.107182,-0.775362,0.247287,-1.071740,-0.000008 +1.079350,0.106962,-0.773711,0.246775,-1.069450,-0.000008 +1.077030,0.106741,-0.772061,0.246262,-1.067160,-0.000008 +1.074700,0.106520,-0.770410,0.245749,-1.064860,-0.000008 +1.072380,0.106300,-0.768760,0.245236,-1.062570,-0.000008 +1.070050,0.106079,-0.767109,0.244723,-1.060280,-0.000008 +1.067720,0.105859,-0.765459,0.244210,-1.057990,-0.000008 +1.065400,0.105638,-0.763808,0.243697,-1.055700,-0.000008 +1.063070,0.105417,-0.762158,0.243184,-1.053410,-0.000008 +1.060750,0.105197,-0.760508,0.242672,-1.051120,-0.000008 +1.058420,0.104976,-0.758857,0.242159,-1.048830,-0.000008 +1.056100,0.104755,-0.757207,0.241646,-1.046540,-0.000008 +1.053770,0.104535,-0.755556,0.241133,-1.044250,-0.000008 +1.051440,0.104314,-0.753906,0.240620,-1.041960,-0.000008 +1.049120,0.104093,-0.752255,0.240107,-1.039670,-0.000008 +1.046790,0.103873,-0.750605,0.239594,-1.037380,-0.000008 +1.044470,0.103652,-0.748954,0.239081,-1.035090,-0.000008 +1.042140,0.103432,-0.747304,0.238569,-1.032790,-0.000008 +1.039810,0.103211,-0.745654,0.238056,-1.030500,-0.000008 +1.037490,0.102990,-0.744003,0.237543,-1.028210,-0.000008 +1.035160,0.102770,-0.742353,0.237030,-1.025920,-0.000008 +1.032840,0.102549,-0.740702,0.236517,-1.023630,-0.000008 +1.030510,0.102328,-0.739052,0.236004,-1.021340,-0.000008 +1.028190,0.102108,-0.737401,0.235491,-1.019050,-0.000008 +1.025860,0.101887,-0.735751,0.234978,-1.016760,-0.000008 +1.023530,0.101667,-0.734100,0.234466,-1.014470,-0.000008 +1.021210,0.101446,-0.732450,0.233953,-1.012180,-0.000008 +1.018880,0.101225,-0.730800,0.233440,-1.009890,-0.000008 +1.016560,0.101005,-0.729149,0.232927,-1.007600,-0.000008 +1.014230,0.100784,-0.727499,0.232414,-1.005310,-0.000008 +1.011900,0.100563,-0.725848,0.231901,-1.003020,-0.000008 +1.009580,0.100343,-0.724198,0.231388,-1.000720,-0.000008 +1.007250,0.100122,-0.722547,0.230876,-0.998434,-0.000008 +1.004930,0.099902,-0.720897,0.230363,-0.996143,-0.000008 +1.002600,0.099681,-0.719247,0.229850,-0.993853,-0.000008 +1.000270,0.099460,-0.717596,0.229337,-0.991562,-0.000008 +0.997949,0.099240,-0.715946,0.228824,-0.989271,-0.000008 +0.995623,0.099019,-0.714295,0.228311,-0.986981,-0.000008 +0.993297,0.098798,-0.712645,0.227798,-0.984690,-0.000008 +0.990972,0.098578,-0.710994,0.227285,-0.982399,-0.000008 +0.988646,0.098357,-0.709344,0.226773,-0.980108,-0.000008 +0.986320,0.098137,-0.707693,0.226260,-0.977818,-0.000008 +0.983994,0.097916,-0.706043,0.225747,-0.975527,-0.000008 +0.981668,0.097695,-0.704393,0.225234,-0.973236,-0.000008 +0.979342,0.097475,-0.702742,0.224721,-0.970946,-0.000008 +0.977017,0.097254,-0.701092,0.224208,-0.968655,-0.000008 +0.974691,0.097033,-0.699441,0.223695,-0.966364,-0.000008 +0.972365,0.096813,-0.697791,0.223182,-0.964074,-0.000008 +0.970039,0.096592,-0.696140,0.222670,-0.961783,-0.000008 +0.967713,0.096371,-0.694490,0.222157,-0.959492,-0.000008 +0.965387,0.096151,-0.692839,0.221644,-0.957201,-0.000008 +0.963062,0.095930,-0.691189,0.221131,-0.954911,-0.000008 +0.960736,0.095710,-0.689539,0.220618,-0.952620,-0.000008 +0.958410,0.095489,-0.687888,0.220105,-0.950329,-0.000008 +0.956084,0.095268,-0.686238,0.219592,-0.948039,-0.000008 +0.953758,0.095048,-0.684587,0.219079,-0.945748,-0.000008 +0.951432,0.094827,-0.682937,0.218567,-0.943457,-0.000008 +0.949106,0.094606,-0.681286,0.218054,-0.941166,-0.000008 +0.946781,0.094386,-0.679636,0.217541,-0.938876,-0.000008 +0.944455,0.094165,-0.677985,0.217028,-0.936585,-0.000008 +0.942129,0.093945,-0.676335,0.216515,-0.934294,-0.000008 +0.939803,0.093724,-0.674685,0.216002,-0.932004,-0.000008 +0.937477,0.093503,-0.673034,0.215489,-0.929713,-0.000008 +0.935151,0.093283,-0.671384,0.214976,-0.927422,-0.000008 +0.932826,0.093062,-0.669733,0.214464,-0.925132,-0.000008 +0.930500,0.092841,-0.668083,0.213951,-0.922841,-0.000008 +0.928174,0.092621,-0.666432,0.213438,-0.920550,-0.000008 +0.925848,0.092400,-0.664782,0.212925,-0.918259,-0.000008 +0.923522,0.092179,-0.663131,0.212412,-0.915969,-0.000008 +0.921196,0.091959,-0.661481,0.211899,-0.913678,-0.000008 +0.918871,0.091738,-0.659831,0.211386,-0.911387,-0.000008 +0.916545,0.091518,-0.658180,0.210873,-0.909097,-0.000008 +0.914219,0.091297,-0.656530,0.210361,-0.906806,-0.000008 +0.911893,0.091076,-0.654879,0.209848,-0.904515,-0.000008 +0.909567,0.090856,-0.653229,0.209335,-0.902224,-0.000008 +0.907241,0.090635,-0.651578,0.208822,-0.899934,-0.000008 +0.904915,0.090414,-0.649928,0.208309,-0.897643,-0.000008 +0.902590,0.090194,-0.648277,0.207796,-0.895352,-0.000008 +0.900264,0.089973,-0.646627,0.207283,-0.893062,-0.000008 +0.897938,0.089752,-0.644977,0.206770,-0.890771,-0.000008 +0.895612,0.089532,-0.643326,0.206258,-0.888480,-0.000008 +0.893286,0.089311,-0.641676,0.205745,-0.886189,-0.000008 +0.890960,0.089091,-0.640025,0.205232,-0.883899,-0.000008 +0.888635,0.088870,-0.638375,0.204719,-0.881608,-0.000008 +0.886309,0.088649,-0.636724,0.204206,-0.879317,-0.000008 +0.883983,0.088429,-0.635074,0.203693,-0.877027,-0.000008 +0.881657,0.088208,-0.633423,0.203180,-0.874736,-0.000008 +0.879331,0.087987,-0.631773,0.202667,-0.872445,-0.000008 +0.877005,0.087767,-0.630123,0.202155,-0.870155,-0.000008 +0.874680,0.087546,-0.628472,0.201642,-0.867864,-0.000008 +0.872354,0.087326,-0.626822,0.201129,-0.865573,-0.000008 +0.870028,0.087105,-0.625171,0.200616,-0.863282,-0.000008 +0.867702,0.086884,-0.623521,0.200103,-0.860992,-0.000008 +0.865376,0.086664,-0.621870,0.199590,-0.858701,-0.000008 +0.863050,0.086443,-0.620220,0.199077,-0.856410,-0.000008 +0.860724,0.086222,-0.618570,0.198564,-0.854120,-0.000008 +0.858399,0.086002,-0.616919,0.198052,-0.851829,-0.000008 +0.856073,0.085781,-0.615269,0.197539,-0.849538,-0.000008 +0.853747,0.085560,-0.613618,0.197026,-0.847247,-0.000008 +0.851421,0.085340,-0.611968,0.196513,-0.844957,-0.000008 +0.849095,0.085119,-0.610317,0.196000,-0.842666,-0.000008 +0.846769,0.084899,-0.608667,0.195487,-0.840375,-0.000008 +0.844444,0.084678,-0.607016,0.194974,-0.838085,-0.000008 +0.842118,0.084457,-0.605366,0.194461,-0.835794,-0.000008 +0.839792,0.084237,-0.603716,0.193949,-0.833503,-0.000008 +0.837466,0.084016,-0.602065,0.193436,-0.831212,-0.000008 +0.835140,0.083795,-0.600415,0.192923,-0.828922,-0.000008 +0.832814,0.083575,-0.598764,0.192410,-0.826631,-0.000008 +0.830489,0.083354,-0.597114,0.191897,-0.824340,-0.000008 +0.828163,0.083134,-0.595463,0.191384,-0.822050,-0.000008 +0.825837,0.082913,-0.593813,0.190871,-0.819759,-0.000008 +0.823511,0.082692,-0.592162,0.190358,-0.817468,-0.000008 +0.821185,0.082472,-0.590512,0.189846,-0.815178,-0.000008 +0.818859,0.082251,-0.588862,0.189333,-0.812887,-0.000008 +0.816533,0.082030,-0.587211,0.188820,-0.810596,-0.000008 +0.814208,0.081810,-0.585561,0.188307,-0.808305,-0.000008 +0.811882,0.081589,-0.583910,0.187794,-0.806015,-0.000008 +0.809556,0.081368,-0.582260,0.187281,-0.803724,-0.000008 +0.807230,0.081148,-0.580609,0.186768,-0.801433,-0.000008 +0.804904,0.080927,-0.578959,0.186255,-0.799143,-0.000008 +0.802578,0.080707,-0.577308,0.185743,-0.796852,-0.000008 +0.800253,0.080486,-0.575658,0.185230,-0.794561,-0.000008 +0.797927,0.080265,-0.574008,0.184717,-0.792270,-0.000008 +0.795601,0.080045,-0.572357,0.184204,-0.789980,-0.000008 +0.793275,0.079824,-0.570707,0.183691,-0.787689,-0.000008 +0.790949,0.079603,-0.569056,0.183178,-0.785398,-0.000008 +0.788623,0.079383,-0.567406,0.182665,-0.783108,-0.000008 +0.786298,0.079162,-0.565755,0.182152,-0.780817,-0.000008 +0.783972,0.078942,-0.564105,0.181640,-0.778526,-0.000008 +0.781646,0.078721,-0.562454,0.181127,-0.776236,-0.000008 +0.779320,0.078500,-0.560804,0.180614,-0.773945,-0.000008 +0.776994,0.078280,-0.559154,0.180101,-0.771654,-0.000008 +0.774668,0.078059,-0.557503,0.179588,-0.769363,-0.000008 +0.772342,0.077838,-0.555853,0.179075,-0.767073,-0.000008 +0.770017,0.077618,-0.554202,0.178562,-0.764782,-0.000008 +0.767691,0.077397,-0.552552,0.178049,-0.762491,-0.000008 +0.765365,0.077176,-0.550901,0.177537,-0.760201,-0.000008 +0.763039,0.076956,-0.549251,0.177024,-0.757910,-0.000008 +0.760713,0.076735,-0.547600,0.176511,-0.755619,-0.000008 +0.758387,0.076515,-0.545950,0.175998,-0.753328,-0.000008 +0.756062,0.076294,-0.544300,0.175485,-0.751038,-0.000008 +0.753736,0.076073,-0.542649,0.174972,-0.748747,-0.000008 +0.751410,0.075853,-0.540999,0.174459,-0.746456,-0.000008 +0.749084,0.075632,-0.539348,0.173946,-0.744166,-0.000008 +0.746758,0.075412,-0.537698,0.173434,-0.741875,-0.000008 +0.744432,0.075191,-0.536047,0.172921,-0.739584,-0.000008 +0.742107,0.074970,-0.534397,0.172408,-0.737293,-0.000008 +0.739781,0.074750,-0.532746,0.171895,-0.735003,-0.000008 +0.737455,0.074529,-0.531096,0.171382,-0.732712,-0.000008 +0.735129,0.074308,-0.529446,0.170869,-0.730421,-0.000008 +0.732803,0.074088,-0.527795,0.170356,-0.728131,-0.000008 +0.730477,0.073867,-0.526145,0.169843,-0.725840,-0.000008 +0.728151,0.073647,-0.524494,0.169331,-0.723549,-0.000008 +0.725826,0.073426,-0.522844,0.168818,-0.721259,-0.000008 +0.723500,0.073205,-0.521193,0.168305,-0.718968,-0.000008 +0.721174,0.072985,-0.519543,0.167792,-0.716677,-0.000008 +0.718848,0.072764,-0.517893,0.167279,-0.714386,-0.000008 +0.716522,0.072543,-0.516242,0.166766,-0.712096,-0.000008 +0.714196,0.072323,-0.514592,0.166253,-0.709805,-0.000008 +0.711871,0.072102,-0.512941,0.165740,-0.707514,-0.000008 +0.709545,0.071881,-0.511291,0.165228,-0.705224,-0.000008 +0.707219,0.071661,-0.509640,0.164715,-0.702933,-0.000008 +0.704893,0.071440,-0.507990,0.164202,-0.700642,-0.000008 +0.702567,0.071220,-0.506339,0.163689,-0.698351,-0.000008 +0.700241,0.070999,-0.504689,0.163176,-0.696061,-0.000008 +0.697916,0.070778,-0.503039,0.162663,-0.693770,-0.000008 +0.695590,0.070558,-0.501388,0.162150,-0.691479,-0.000008 +0.693264,0.070337,-0.499738,0.161637,-0.689189,-0.000008 +0.690938,0.070116,-0.498087,0.161125,-0.686898,-0.000008 +0.688612,0.069896,-0.496437,0.160612,-0.684607,-0.000008 +0.686286,0.069675,-0.494786,0.160099,-0.682316,-0.000008 +0.683961,0.069455,-0.493136,0.159586,-0.680026,-0.000008 +0.681635,0.069234,-0.491485,0.159073,-0.677735,-0.000008 +0.679309,0.069013,-0.489835,0.158560,-0.675444,-0.000008 +0.676983,0.068793,-0.488185,0.158047,-0.673154,-0.000008 +0.674657,0.068572,-0.486534,0.157534,-0.670863,-0.000008 +0.672331,0.068351,-0.484884,0.157022,-0.668572,-0.000008 +0.670005,0.068131,-0.483233,0.156509,-0.666282,-0.000008 +0.667680,0.067910,-0.481583,0.155996,-0.663991,-0.000008 +0.665354,0.067689,-0.479932,0.155483,-0.661700,-0.000008 +0.663028,0.067469,-0.478282,0.154970,-0.659409,-0.000008 +0.660702,0.067248,-0.476631,0.154457,-0.657119,-0.000008 +0.658376,0.067028,-0.474981,0.153944,-0.654828,-0.000008 +0.656050,0.066807,-0.473331,0.153431,-0.652537,-0.000008 +0.653725,0.066586,-0.471680,0.152919,-0.650247,-0.000008 +0.651399,0.066366,-0.470030,0.152406,-0.647956,-0.000008 +0.649073,0.066145,-0.468379,0.151893,-0.645665,-0.000008 +0.646747,0.065924,-0.466729,0.151380,-0.643374,-0.000008 +0.644421,0.065704,-0.465078,0.150867,-0.641084,-0.000008 +0.642095,0.065483,-0.463428,0.150354,-0.638793,-0.000008 +0.639770,0.065263,-0.461777,0.149841,-0.636502,-0.000008 +0.637444,0.065042,-0.460127,0.149328,-0.634212,-0.000008 +0.635118,0.064821,-0.458477,0.148816,-0.631921,-0.000008 +0.632792,0.064601,-0.456826,0.148303,-0.629630,-0.000008 +0.630466,0.064380,-0.455176,0.147790,-0.627340,-0.000008 +0.628140,0.064159,-0.453525,0.147277,-0.625049,-0.000008 +0.625814,0.063939,-0.451875,0.146764,-0.622758,-0.000008 +0.623489,0.063718,-0.450224,0.146251,-0.620467,-0.000008 +0.621163,0.063497,-0.448574,0.145738,-0.618177,-0.000008 +0.618837,0.063277,-0.446923,0.145225,-0.615886,-0.000008 +0.616511,0.063056,-0.445273,0.144713,-0.613595,-0.000008 +0.614185,0.062836,-0.443623,0.144200,-0.611305,-0.000008 +0.611859,0.062615,-0.441972,0.143687,-0.609014,-0.000008 +0.609534,0.062394,-0.440322,0.143174,-0.606723,-0.000008 +0.607208,0.062174,-0.438671,0.142661,-0.604432,-0.000008 +0.604882,0.061953,-0.437021,0.142148,-0.602142,-0.000008 +0.602556,0.061732,-0.435370,0.141635,-0.599851,-0.000008 +0.600230,0.061512,-0.433720,0.141122,-0.597560,-0.000008 +0.597904,0.061291,-0.432070,0.140610,-0.595270,-0.000008 +0.595579,0.061071,-0.430419,0.140097,-0.592979,-0.000008 +0.593253,0.060850,-0.428769,0.139584,-0.590688,-0.000008 +0.590927,0.060629,-0.427118,0.139071,-0.588397,-0.000008 +0.588601,0.060409,-0.425468,0.138558,-0.586107,-0.000008 +0.586275,0.060188,-0.423817,0.138045,-0.583816,-0.000008 +0.583949,0.059967,-0.422167,0.137532,-0.581525,-0.000008 +0.581623,0.059747,-0.420516,0.137019,-0.579235,-0.000008 +0.579298,0.059526,-0.418866,0.136507,-0.576944,-0.000008 +0.576972,0.059305,-0.417216,0.135994,-0.574653,-0.000008 +0.574646,0.059085,-0.415565,0.135481,-0.572363,-0.000008 +0.572320,0.058864,-0.413915,0.134968,-0.570072,-0.000008 +0.569994,0.058644,-0.412264,0.134455,-0.567781,-0.000008 +0.567668,0.058423,-0.410614,0.133942,-0.565490,-0.000008 +0.565343,0.058202,-0.408963,0.133429,-0.563200,-0.000008 +0.563017,0.057982,-0.407313,0.132916,-0.560909,-0.000008 +0.560691,0.057761,-0.405662,0.132404,-0.558618,-0.000008 +0.558365,0.057540,-0.404012,0.131891,-0.556328,-0.000008 +0.556039,0.057320,-0.402362,0.131378,-0.554037,-0.000008 +0.553713,0.057099,-0.400711,0.130865,-0.551746,-0.000008 +0.551388,0.056878,-0.399061,0.130352,-0.549455,-0.000008 +0.549062,0.056658,-0.397410,0.129839,-0.547165,-0.000008 +0.546736,0.056437,-0.395760,0.129326,-0.544874,-0.000008 +0.544410,0.056217,-0.394109,0.128814,-0.542583,-0.000008 +0.542084,0.055996,-0.392459,0.128301,-0.540293,-0.000008 +0.539758,0.055775,-0.390808,0.127788,-0.538002,-0.000008 +0.537432,0.055555,-0.389158,0.127275,-0.535711,-0.000008 +0.535107,0.055334,-0.387508,0.126762,-0.533420,-0.000008 +0.532781,0.055114,-0.385857,0.126249,-0.531130,-0.000008 +0.530455,0.054893,-0.384207,0.125736,-0.528839,-0.000008 +0.528129,0.054672,-0.382556,0.125223,-0.526548,-0.000008 +0.525803,0.054452,-0.380906,0.124711,-0.524258,-0.000008 +0.523477,0.054231,-0.379255,0.124198,-0.521967,-0.000008 +0.521152,0.054010,-0.377605,0.123685,-0.519676,-0.000008 +0.518826,0.053790,-0.375954,0.123172,-0.517386,-0.000008 +0.516500,0.053569,-0.374304,0.122659,-0.515095,-0.000008 +0.514174,0.053348,-0.372654,0.122146,-0.512804,-0.000008 +0.511848,0.053128,-0.371003,0.121633,-0.510513,-0.000008 +0.509522,0.052907,-0.369353,0.121120,-0.508223,-0.000008 +0.507197,0.052686,-0.367702,0.120608,-0.505932,-0.000008 +0.504871,0.052466,-0.366052,0.120095,-0.503641,-0.000008 +0.502545,0.052245,-0.364401,0.119582,-0.501351,-0.000008 +0.500219,0.052025,-0.362751,0.119069,-0.499060,-0.000008 +0.497893,0.051804,-0.361100,0.118556,-0.496769,-0.000008 +0.495567,0.051583,-0.359450,0.118043,-0.494478,-0.000008 +0.493241,0.051363,-0.357800,0.117530,-0.492188,-0.000008 +0.490916,0.051142,-0.356149,0.117017,-0.489897,-0.000008 +0.488590,0.050922,-0.354499,0.116505,-0.487606,-0.000008 +0.486264,0.050701,-0.352848,0.115992,-0.485316,-0.000008 +0.483938,0.050480,-0.351198,0.115479,-0.483025,-0.000008 +0.481612,0.050260,-0.349547,0.114966,-0.480734,-0.000008 +0.479286,0.050039,-0.347897,0.114453,-0.478444,-0.000008 +0.476961,0.049818,-0.346246,0.113940,-0.476153,-0.000008 +0.474635,0.049598,-0.344596,0.113427,-0.473862,-0.000008 +0.472309,0.049377,-0.342946,0.112914,-0.471571,-0.000008 +0.469983,0.049156,-0.341295,0.112402,-0.469281,-0.000008 +0.467657,0.048936,-0.339645,0.111889,-0.466990,-0.000008 +0.465331,0.048715,-0.337994,0.111376,-0.464699,-0.000008 +0.463006,0.048495,-0.336344,0.110863,-0.462409,-0.000008 +0.460680,0.048274,-0.334693,0.110350,-0.460118,-0.000008 +0.458354,0.048053,-0.333043,0.109837,-0.457827,-0.000008 +0.456028,0.047833,-0.331393,0.109324,-0.455536,-0.000008 +0.453702,0.047612,-0.329742,0.108811,-0.453246,-0.000008 +0.451376,0.047391,-0.328092,0.108299,-0.450955,-0.000008 +0.449051,0.047171,-0.326441,0.107786,-0.448664,-0.000008 +0.446725,0.046950,-0.324791,0.107273,-0.446374,-0.000008 +0.444399,0.046730,-0.323140,0.106760,-0.444083,-0.000008 +0.442073,0.046509,-0.321490,0.106247,-0.441792,-0.000008 +0.439747,0.046288,-0.319839,0.105734,-0.439501,-0.000008 +0.437421,0.046068,-0.318189,0.105221,-0.437211,-0.000008 +0.435095,0.045847,-0.316539,0.104708,-0.434920,-0.000008 +0.432770,0.045626,-0.314888,0.104196,-0.432629,-0.000008 +0.430444,0.045406,-0.313238,0.103683,-0.430339,-0.000008 +0.428118,0.045185,-0.311587,0.103170,-0.428048,-0.000008 +0.425792,0.044964,-0.309937,0.102657,-0.425757,-0.000008 +0.423466,0.044744,-0.308286,0.102144,-0.423467,-0.000008 +0.421140,0.044523,-0.306636,0.101631,-0.421176,-0.000008 +0.418815,0.044303,-0.304985,0.101118,-0.418885,-0.000008 +0.416489,0.044082,-0.303335,0.100605,-0.416594,-0.000008 +0.414163,0.043861,-0.301685,0.100093,-0.414304,-0.000008 +0.411837,0.043641,-0.300034,0.099580,-0.412013,-0.000008 +0.409511,0.043420,-0.298384,0.099067,-0.409722,-0.000008 +0.407185,0.043199,-0.296733,0.098554,-0.407432,-0.000008 +0.404860,0.042979,-0.295083,0.098041,-0.405141,-0.000008 +0.402534,0.042758,-0.293432,0.097528,-0.402850,-0.000008 +0.400208,0.042537,-0.291782,0.097015,-0.400559,-0.000008 +0.397882,0.042317,-0.290131,0.096502,-0.398269,-0.000008 +0.395556,0.042096,-0.288481,0.095990,-0.395978,-0.000008 +0.393230,0.041876,-0.286831,0.095477,-0.393687,-0.000008 +0.390904,0.041655,-0.285180,0.094964,-0.391397,-0.000008 +0.388579,0.041434,-0.283530,0.094451,-0.389106,-0.000008 +0.386253,0.041214,-0.281879,0.093938,-0.386815,-0.000008 +0.383927,0.040993,-0.280229,0.093425,-0.384524,-0.000008 +0.381601,0.040773,-0.278578,0.092912,-0.382234,-0.000008 +0.379275,0.040552,-0.276928,0.092399,-0.379943,-0.000008 +0.376949,0.040331,-0.275277,0.091886,-0.377652,-0.000008 +0.374624,0.040111,-0.273627,0.091374,-0.375362,-0.000008 +0.372298,0.039890,-0.271977,0.090861,-0.373071,-0.000008 +0.369972,0.039669,-0.270326,0.090348,-0.370780,-0.000008 +0.367646,0.039449,-0.268676,0.089835,-0.368490,-0.000008 +0.365320,0.039228,-0.267025,0.089322,-0.366199,-0.000008 +0.362994,0.039007,-0.265375,0.088809,-0.363908,-0.000008 +0.360669,0.038787,-0.263724,0.088296,-0.361617,-0.000008 +0.358343,0.038566,-0.262074,0.087784,-0.359327,-0.000008 +0.356017,0.038345,-0.260423,0.087271,-0.357036,-0.000008 +0.353691,0.038125,-0.258773,0.086758,-0.354745,-0.000008 +0.351365,0.037904,-0.257123,0.086245,-0.352455,-0.000008 +0.349039,0.037684,-0.255472,0.085732,-0.350164,-0.000008 +0.346713,0.037463,-0.253822,0.085219,-0.347873,-0.000008 +0.344388,0.037242,-0.252171,0.084706,-0.345582,-0.000008 +0.342062,0.037022,-0.250521,0.084193,-0.343292,-0.000008 +0.339736,0.036801,-0.248870,0.083681,-0.341001,-0.000008 +0.337410,0.036581,-0.247220,0.083168,-0.338710,-0.000008 +0.335084,0.036360,-0.245569,0.082655,-0.336420,-0.000008 +0.332758,0.036139,-0.243919,0.082142,-0.334129,-0.000008 +0.330433,0.035919,-0.242269,0.081629,-0.331838,-0.000008 +0.328107,0.035698,-0.240618,0.081116,-0.329548,-0.000008 +0.325781,0.035477,-0.238968,0.080603,-0.327257,-0.000008 +0.323455,0.035257,-0.237317,0.080090,-0.324966,-0.000008 +0.321129,0.035036,-0.235667,0.079578,-0.322675,-0.000008 +0.318803,0.034815,-0.234016,0.079065,-0.320385,-0.000008 +0.316478,0.034595,-0.232366,0.078552,-0.318094,-0.000008 +0.314152,0.034374,-0.230716,0.078039,-0.315803,-0.000008 +0.311826,0.034154,-0.229065,0.077526,-0.313513,-0.000008 +0.309500,0.033933,-0.227415,0.077013,-0.311222,-0.000008 +0.307174,0.033712,-0.225764,0.076500,-0.308931,-0.000008 +0.304848,0.033492,-0.224114,0.075987,-0.306640,-0.000008 +0.302522,0.033271,-0.222463,0.075475,-0.304350,-0.000008 +0.300197,0.033050,-0.220813,0.074962,-0.302059,-0.000008 +0.297871,0.032830,-0.219162,0.074449,-0.299768,-0.000008 +0.295545,0.032609,-0.217512,0.073936,-0.297478,-0.000008 +0.293219,0.032389,-0.215862,0.073423,-0.295187,-0.000008 +0.290893,0.032168,-0.214211,0.072910,-0.292896,-0.000008 +0.288567,0.031947,-0.212561,0.072397,-0.290605,-0.000008 +0.286242,0.031727,-0.210910,0.071884,-0.288315,-0.000008 +0.283916,0.031506,-0.209260,0.071372,-0.286024,-0.000008 +0.281590,0.031285,-0.207609,0.070859,-0.283733,-0.000008 +0.279264,0.031065,-0.205959,0.070346,-0.281443,-0.000008 +0.276938,0.030844,-0.204308,0.069833,-0.279152,-0.000008 +0.274612,0.030624,-0.202658,0.069320,-0.276861,-0.000008 +0.272287,0.030403,-0.201008,0.068807,-0.274571,-0.000008 +0.269961,0.030182,-0.199357,0.068294,-0.272280,-0.000008 +0.267635,0.029962,-0.197707,0.067781,-0.269989,-0.000008 +0.265309,0.029741,-0.196056,0.067269,-0.267698,-0.000008 +0.262983,0.029520,-0.194406,0.066756,-0.265408,-0.000008 +0.260657,0.029300,-0.192755,0.066243,-0.263117,-0.000008 +0.258331,0.029079,-0.191105,0.065730,-0.260826,-0.000008 +0.256006,0.028858,-0.189454,0.065217,-0.258536,-0.000008 +0.253680,0.028638,-0.187804,0.064704,-0.256245,-0.000008 +0.251354,0.028417,-0.186154,0.064191,-0.253954,-0.000008 +0.249028,0.028196,-0.184503,0.063678,-0.251663,-0.000008 +0.246702,0.027976,-0.182853,0.063166,-0.249373,-0.000008 +0.244376,0.027755,-0.181202,0.062653,-0.247082,-0.000008 +0.242051,0.027535,-0.179552,0.062140,-0.244791,-0.000008 +0.239725,0.027314,-0.177901,0.061627,-0.242501,-0.000008 +0.237399,0.027093,-0.176251,0.061114,-0.240210,-0.000008 +0.235073,0.026873,-0.174600,0.060601,-0.237919,-0.000008 +0.232747,0.026652,-0.172950,0.060088,-0.235628,-0.000008 +0.230421,0.026432,-0.171300,0.059576,-0.233338,-0.000008 +0.228096,0.026211,-0.169649,0.059063,-0.231047,-0.000008 +0.225770,0.025990,-0.167999,0.058550,-0.228756,-0.000008 +0.223444,0.025770,-0.166348,0.058037,-0.226466,-0.000008 +0.221118,0.025549,-0.164698,0.057524,-0.224175,-0.000008 +0.218792,0.025328,-0.163047,0.057011,-0.221884,-0.000008 +0.216466,0.025108,-0.161397,0.056498,-0.219594,-0.000008 +0.214141,0.024887,-0.159746,0.055985,-0.217303,-0.000008 +0.211815,0.024666,-0.158096,0.055473,-0.215012,-0.000008 +0.209489,0.024446,-0.156446,0.054960,-0.212721,-0.000008 +0.207163,0.024225,-0.154795,0.054447,-0.210431,-0.000008 +0.204837,0.024005,-0.153145,0.053934,-0.208140,-0.000008 +0.202511,0.023784,-0.151494,0.053421,-0.205849,-0.000008 +0.200185,0.023563,-0.149844,0.052908,-0.203559,-0.000008 +0.197860,0.023343,-0.148193,0.052395,-0.201268,-0.000008 +0.195534,0.023122,-0.146543,0.051882,-0.198977,-0.000008 +0.193208,0.022901,-0.144892,0.051369,-0.196686,-0.000008 +0.190882,0.022681,-0.143242,0.050857,-0.194396,-0.000008 +0.188556,0.022460,-0.141592,0.050344,-0.192105,-0.000008 +0.186230,0.022239,-0.139941,0.049831,-0.189814,-0.000008 +0.183905,0.022019,-0.138291,0.049318,-0.187524,-0.000008 +0.181579,0.021798,-0.136640,0.048805,-0.185233,-0.000008 +0.179253,0.021578,-0.134990,0.048292,-0.182942,-0.000008 +0.176927,0.021357,-0.133339,0.047779,-0.180652,-0.000008 +0.174601,0.021136,-0.131689,0.047267,-0.178361,-0.000008 +0.172275,0.020916,-0.130039,0.046754,-0.176070,-0.000008 +0.169950,0.020695,-0.128388,0.046241,-0.173779,-0.000008 +0.167624,0.020475,-0.126738,0.045728,-0.171489,-0.000008 +0.165298,0.020254,-0.125087,0.045215,-0.169198,-0.000008 +0.162972,0.020033,-0.123437,0.044702,-0.166907,-0.000008 +0.160646,0.019813,-0.121786,0.044189,-0.164617,-0.000008 +0.158320,0.019592,-0.120136,0.043676,-0.162326,-0.000008 +0.155994,0.019371,-0.118485,0.043164,-0.160035,-0.000008 +0.153669,0.019151,-0.116835,0.042651,-0.157744,-0.000008 +0.151343,0.018930,-0.115185,0.042138,-0.155454,-0.000008 +0.149017,0.018709,-0.113534,0.041625,-0.153163,-0.000008 +0.146691,0.018489,-0.111884,0.041112,-0.150872,-0.000008 +0.144365,0.018268,-0.110233,0.040599,-0.148582,-0.000008 +0.142039,0.018048,-0.108583,0.040086,-0.146291,-0.000008 +0.139714,0.017827,-0.106932,0.039573,-0.144000,-0.000008 +0.137388,0.017606,-0.105282,0.039060,-0.141709,-0.000008 +0.135062,0.017386,-0.103631,0.038548,-0.139419,-0.000008 +0.132736,0.017165,-0.101981,0.038035,-0.137128,-0.000008 +0.130410,0.016944,-0.100331,0.037522,-0.134837,-0.000008 +0.128084,0.016724,-0.098680,0.037009,-0.132547,-0.000008 +0.125759,0.016503,-0.097030,0.036496,-0.130256,-0.000008 +0.123433,0.016282,-0.095379,0.035983,-0.127965,-0.000008 +0.121107,0.016062,-0.093729,0.035470,-0.125675,-0.000008 +0.118781,0.015841,-0.092078,0.034958,-0.123384,-0.000008 +0.116455,0.015621,-0.090428,0.034445,-0.121093,-0.000008 +0.114129,0.015400,-0.088777,0.033932,-0.118802,-0.000008 +0.111803,0.015179,-0.087127,0.033419,-0.116512,-0.000008 +0.109478,0.014959,-0.085477,0.032906,-0.114221,-0.000008 +0.107152,0.014738,-0.083826,0.032393,-0.111930,-0.000008 +0.104826,0.014517,-0.082176,0.031880,-0.109640,-0.000008 +0.102500,0.014297,-0.080525,0.031367,-0.107349,-0.000008 +0.100174,0.014076,-0.078875,0.030855,-0.105058,-0.000008 +0.097848,0.013856,-0.077224,0.030342,-0.102767,-0.000008 +0.095523,0.013635,-0.075574,0.029829,-0.100477,-0.000008 +0.093197,0.013414,-0.073924,0.029316,-0.098186,-0.000008 +0.090871,0.013194,-0.072273,0.028803,-0.095895,-0.000008 +0.088545,0.012973,-0.070623,0.028290,-0.093605,-0.000008 +0.086219,0.012752,-0.068972,0.027777,-0.091314,-0.000008 +0.083893,0.012532,-0.067322,0.027264,-0.089023,-0.000008 +0.081568,0.012311,-0.065671,0.026752,-0.086733,-0.000008 +0.079242,0.012091,-0.064021,0.026239,-0.084442,-0.000008 +0.076916,0.011870,-0.062370,0.025726,-0.082151,-0.000008 +0.074590,0.011649,-0.060720,0.025213,-0.079860,-0.000008 +0.072264,0.011429,-0.059069,0.024700,-0.077570,-0.000008 +0.069938,0.011208,-0.057419,0.024187,-0.075279,-0.000008 +0.067613,0.010987,-0.055769,0.023674,-0.072988,-0.000008 +0.065289,0.010767,-0.054118,0.023161,-0.070697,-0.000008 +0.062971,0.010546,-0.052468,0.022648,-0.068407,-0.000008 +0.060660,0.010325,-0.050817,0.022136,-0.066116,-0.000008 +0.058359,0.010105,-0.049167,0.021623,-0.063825,-0.000008 +0.056070,0.009884,-0.047516,0.021110,-0.061535,-0.000008 +0.053797,0.009664,-0.045866,0.020597,-0.059245,-0.000008 +0.051542,0.009443,-0.044215,0.020084,-0.056959,-0.000008 +0.049307,0.009222,-0.042565,0.019571,-0.054681,-0.000008 +0.047095,0.009002,-0.040915,0.019058,-0.052412,-0.000008 +0.044908,0.008781,-0.039265,0.018545,-0.050157,-0.000008 +0.042750,0.008560,-0.037620,0.018033,-0.047919,-0.000008 +0.040623,0.008340,-0.035981,0.017520,-0.045699,-0.000008 +0.038529,0.008119,-0.034350,0.017007,-0.043503,-0.000008 +0.036471,0.007899,-0.032731,0.016494,-0.041332,-0.000008 +0.034451,0.007678,-0.031127,0.015981,-0.039190,-0.000008 +0.032473,0.007457,-0.029539,0.015468,-0.037080,-0.000008 +0.030539,0.007237,-0.027970,0.014955,-0.035005,-0.000008 +0.028650,0.007016,-0.026423,0.014443,-0.032968,-0.000008 +0.026811,0.006795,-0.024900,0.013930,-0.030973,-0.000008 +0.025024,0.006575,-0.023405,0.013417,-0.029022,-0.000008 +0.023290,0.006354,-0.021939,0.012904,-0.027118,-0.000008 +0.021614,0.006133,-0.020506,0.012391,-0.025265,-0.000008 +0.019996,0.005913,-0.019107,0.011878,-0.023466,-0.000008 +0.018441,0.005692,-0.017746,0.011365,-0.021724,-0.000008 +0.016950,0.005472,-0.016425,0.010852,-0.020041,-0.000008 +0.015526,0.005251,-0.015147,0.010340,-0.018422,-0.000008 +0.014172,0.005030,-0.013913,0.009827,-0.016869,-0.000008 +0.012891,0.004810,-0.012728,0.009314,-0.015385,-0.000008 +0.011684,0.004589,-0.011593,0.008801,-0.013974,-0.000008 +0.010554,0.004368,-0.010511,0.008288,-0.012638,-0.000008 +0.009500,0.004148,-0.009485,0.007775,-0.011380,-0.000008 +0.008518,0.003927,-0.008517,0.007262,-0.010205,-0.000008 +0.007606,0.003707,-0.007610,0.006749,-0.009112,-0.000008 +0.006762,0.003486,-0.006766,0.006237,-0.008101,-0.000008 +0.005982,0.003265,-0.005986,0.005726,-0.007167,-0.000008 +0.005265,0.003045,-0.005269,0.005221,-0.006308,-0.000008 +0.004608,0.002824,-0.004612,0.004724,-0.005521,-0.000008 +0.004008,0.002603,-0.004012,0.004238,-0.004802,-0.000008 +0.003462,0.002383,-0.003466,0.003767,-0.004148,-0.000008 +0.002969,0.002162,-0.002973,0.003314,-0.003556,-0.000008 +0.002524,0.001942,-0.002528,0.002881,-0.003024,-0.000008 +0.002126,0.001722,-0.002130,0.002473,-0.002548,-0.000008 +0.001773,0.001506,-0.001777,0.002091,-0.002124,-0.000008 +0.001461,0.001297,-0.001465,0.001740,-0.001750,-0.000008 +0.001188,0.001097,-0.001192,0.001421,-0.001423,-0.000008 +0.000951,0.000908,-0.000955,0.001139,-0.001140,-0.000008 +0.000748,0.000733,-0.000752,0.000896,-0.000897,-0.000008 +0.000576,0.000575,-0.000580,0.000690,-0.000691,-0.000008 +0.000433,0.000436,-0.000437,0.000519,-0.000519,-0.000008 +0.000316,0.000319,-0.000320,0.000378,-0.000379,-0.000008 +0.000222,0.000226,-0.000226,0.000266,-0.000266,-0.000008 +0.000149,0.000152,-0.000153,0.000178,-0.000179,-0.000008 +0.000094,0.000097,-0.000098,0.000112,-0.000113,-0.000008 +0.000055,0.000058,-0.000059,0.000065,-0.000065,-0.000008 +0.000028,0.000032,-0.000032,0.000034,-0.000034,-0.000008 +0.000012,0.000016,-0.000016,0.000014,-0.000015,-0.000008 +0.000004,0.000007,-0.000008,0.000005,-0.000005,-0.000008 +0.000001,0.000004,-0.000005,0.000001,-0.000001,-0.000008 +0.000000,0.000004,-0.000004,0.000000,-0.000001,-0.000008 +0.000000,0.000004,-0.000004,0.000000,-0.000001,-0.000008 +-0.000000,0.000000,-0.000000,0.000001,-0.000001,0.000000 +-0.000003,0.000003,-0.000003,0.000004,-0.000004,0.000000 +-0.000012,0.000012,-0.000012,0.000014,-0.000014,0.000000 +-0.000028,0.000028,-0.000028,0.000033,-0.000033,0.000000 +-0.000054,0.000054,-0.000054,0.000065,-0.000065,0.000000 +-0.000093,0.000093,-0.000093,0.000112,-0.000112,0.000000 +-0.000148,0.000148,-0.000148,0.000178,-0.000178,0.000000 +-0.000222,0.000222,-0.000222,0.000265,-0.000265,0.000000 +-0.000315,0.000315,-0.000315,0.000378,-0.000378,0.000000 +-0.000433,0.000432,-0.000433,0.000518,-0.000518,0.000000 +-0.000576,0.000571,-0.000576,0.000690,-0.000690,0.000000 +-0.000748,0.000729,-0.000748,0.000896,-0.000896,0.000000 +-0.000951,0.000904,-0.000951,0.001139,-0.001139,0.000000 +-0.001187,0.001093,-0.001187,0.001421,-0.001423,0.000000 +-0.001460,0.001293,-0.001460,0.001739,-0.001750,0.000000 +-0.001772,0.001503,-0.001772,0.002091,-0.002123,0.000000 +-0.002126,0.001718,-0.002126,0.002472,-0.002547,0.000000 +-0.002524,0.001938,-0.002524,0.002881,-0.003023,0.000000 +-0.002968,0.002158,-0.002968,0.003314,-0.003556,0.000000 +-0.003462,0.002379,-0.003462,0.003767,-0.004147,0.000000 +-0.004007,0.002599,-0.004007,0.004238,-0.004801,0.000000 +-0.004608,0.002820,-0.004608,0.004723,-0.005520,0.000000 +-0.005265,0.003041,-0.005265,0.005220,-0.006308,0.000000 +-0.005982,0.003261,-0.005982,0.005726,-0.007167,0.000000 +-0.006761,0.003482,-0.006761,0.006236,-0.008100,0.000000 +-0.007606,0.003703,-0.007605,0.006749,-0.009112,0.000000 +-0.008517,0.003923,-0.008512,0.007262,-0.010204,0.000000 +-0.009499,0.004144,-0.009480,0.007775,-0.011380,0.000000 +-0.010554,0.004364,-0.010507,0.008288,-0.012637,0.000000 +-0.011684,0.004585,-0.011589,0.008801,-0.013973,0.000000 +-0.012890,0.004806,-0.012724,0.009313,-0.015384,0.000000 +-0.014172,0.005026,-0.013909,0.009826,-0.016868,0.000000 +-0.015526,0.005247,-0.015142,0.010339,-0.018421,0.000000 +-0.016949,0.005468,-0.016421,0.010852,-0.020041,0.000000 +-0.018440,0.005688,-0.017742,0.011365,-0.021723,0.000000 +-0.019996,0.005909,-0.019103,0.011878,-0.023465,0.000000 +-0.021613,0.006130,-0.020501,0.012391,-0.025265,0.000000 +-0.023290,0.006350,-0.021935,0.012904,-0.027118,0.000000 +-0.025023,0.006571,-0.023401,0.013416,-0.029021,0.000000 +-0.026811,0.006791,-0.024896,0.013929,-0.030972,0.000000 +-0.028650,0.007012,-0.026419,0.014442,-0.032968,0.000000 +-0.030538,0.007233,-0.027965,0.014955,-0.035004,0.000000 +-0.032473,0.007453,-0.029534,0.015468,-0.037079,0.000000 +-0.034451,0.007674,-0.031122,0.015981,-0.039189,0.000000 +-0.036470,0.007895,-0.032727,0.016494,-0.041331,0.000000 +-0.038528,0.008115,-0.034346,0.017007,-0.043502,0.000000 +-0.040622,0.008336,-0.035976,0.017519,-0.045699,0.000000 +-0.042750,0.008556,-0.037615,0.018032,-0.047918,0.000000 +-0.044908,0.008777,-0.039261,0.018545,-0.050157,0.000000 +-0.047094,0.008998,-0.040910,0.019058,-0.052412,0.000000 +-0.049306,0.009218,-0.042561,0.019571,-0.054680,0.000000 +-0.051541,0.009439,-0.044211,0.020084,-0.056959,0.000000 +-0.053797,0.009660,-0.045861,0.020597,-0.059244,0.000000 +-0.056070,0.009880,-0.047512,0.021110,-0.061534,0.000000 +-0.058358,0.010101,-0.049162,0.021622,-0.063825,0.000000 +-0.060659,0.010322,-0.050813,0.022135,-0.066115,0.000000 +-0.062970,0.010542,-0.052463,0.022648,-0.068406,0.000000 +-0.065289,0.010763,-0.054114,0.023161,-0.070697,0.000000 +-0.067612,0.010983,-0.055764,0.023674,-0.072988,0.000000 +-0.069938,0.011204,-0.057415,0.024187,-0.075278,0.000000 +-0.072264,0.011425,-0.059065,0.024700,-0.077569,0.000000 +-0.074590,0.011645,-0.060715,0.025212,-0.079860,0.000000 +-0.076915,0.011866,-0.062366,0.025725,-0.082150,0.000000 +-0.079241,0.012087,-0.064016,0.026238,-0.084441,0.000000 +-0.081567,0.012307,-0.065667,0.026751,-0.086732,0.000000 +-0.083893,0.012528,-0.067317,0.027264,-0.089023,0.000000 +-0.086219,0.012748,-0.068968,0.027777,-0.091313,0.000000 +-0.088545,0.012969,-0.070618,0.028290,-0.093604,0.000000 +-0.090871,0.013190,-0.072269,0.028803,-0.095895,0.000000 +-0.093196,0.013410,-0.073919,0.029316,-0.098185,0.000000 +-0.095522,0.013631,-0.075569,0.029828,-0.100476,0.000000 +-0.097848,0.013852,-0.077220,0.030341,-0.102767,0.000000 +-0.100174,0.014072,-0.078870,0.030854,-0.105057,0.000000 +-0.102500,0.014293,-0.080521,0.031367,-0.107348,0.000000 +-0.104826,0.014514,-0.082171,0.031880,-0.109639,0.000000 +-0.107151,0.014734,-0.083822,0.032393,-0.111930,0.000000 +-0.109477,0.014955,-0.085472,0.032906,-0.114220,0.000000 +-0.111803,0.015175,-0.087123,0.033418,-0.116511,0.000000 +-0.114129,0.015396,-0.088773,0.033931,-0.118802,0.000000 +-0.116455,0.015617,-0.090423,0.034444,-0.121092,0.000000 +-0.118781,0.015837,-0.092074,0.034957,-0.123383,0.000000 +-0.121106,0.016058,-0.093724,0.035470,-0.125674,0.000000 +-0.123432,0.016279,-0.095375,0.035983,-0.127965,0.000000 +-0.125758,0.016499,-0.097025,0.036496,-0.130255,0.000000 +-0.128084,0.016720,-0.098676,0.037009,-0.132546,0.000000 +-0.130410,0.016940,-0.100326,0.037521,-0.134837,0.000000 +-0.132736,0.017161,-0.101977,0.038034,-0.137127,0.000000 +-0.135061,0.017382,-0.103627,0.038547,-0.139418,0.000000 +-0.137387,0.017602,-0.105277,0.039060,-0.141709,0.000000 +-0.139713,0.017823,-0.106928,0.039573,-0.144000,0.000000 +-0.142039,0.018044,-0.108578,0.040086,-0.146290,0.000000 +-0.144365,0.018264,-0.110229,0.040599,-0.148581,0.000000 +-0.146691,0.018485,-0.111879,0.041112,-0.150872,0.000000 +-0.149016,0.018705,-0.113530,0.041625,-0.153162,0.000000 +-0.151342,0.018926,-0.115180,0.042137,-0.155453,0.000000 +-0.153668,0.019147,-0.116831,0.042650,-0.157744,0.000000 +-0.155994,0.019367,-0.118481,0.043163,-0.160034,0.000000 +-0.158320,0.019588,-0.120131,0.043676,-0.162325,0.000000 +-0.160646,0.019809,-0.121782,0.044189,-0.164616,0.000000 +-0.162972,0.020029,-0.123432,0.044702,-0.166907,0.000000 +-0.165297,0.020250,-0.125083,0.045215,-0.169197,0.000000 +-0.167623,0.020470,-0.126733,0.045727,-0.171488,0.000000 +-0.169949,0.020691,-0.128384,0.046240,-0.173779,0.000000 +-0.172275,0.020912,-0.130034,0.046753,-0.176069,0.000000 +-0.174601,0.021132,-0.131684,0.047266,-0.178360,0.000000 +-0.176927,0.021353,-0.133335,0.047779,-0.180651,0.000000 +-0.179252,0.021574,-0.134985,0.048292,-0.182942,0.000000 +-0.181578,0.021794,-0.136636,0.048805,-0.185232,0.000000 +-0.183904,0.022015,-0.138286,0.049318,-0.187523,0.000000 +-0.186230,0.022235,-0.139937,0.049831,-0.189814,0.000000 +-0.188556,0.022456,-0.141587,0.050343,-0.192104,0.000000 +-0.190882,0.022677,-0.143238,0.050856,-0.194395,0.000000 +-0.193207,0.022897,-0.144888,0.051369,-0.196686,0.000000 +-0.195533,0.023118,-0.146538,0.051882,-0.198976,0.000000 +-0.197859,0.023339,-0.148189,0.052395,-0.201267,0.000000 +-0.200185,0.023559,-0.149839,0.052908,-0.203558,0.000000 +-0.202511,0.023780,-0.151490,0.053421,-0.205849,0.000000 +-0.204837,0.024001,-0.153140,0.053934,-0.208139,0.000000 +-0.207163,0.024221,-0.154791,0.054446,-0.210430,0.000000 +-0.209488,0.024442,-0.156441,0.054959,-0.212721,0.000000 +-0.211814,0.024663,-0.158092,0.055472,-0.215011,0.000000 +-0.214140,0.024883,-0.159742,0.055985,-0.217302,0.000000 +-0.216466,0.025104,-0.161392,0.056498,-0.219593,0.000000 +-0.218792,0.025324,-0.163043,0.057011,-0.221884,0.000000 +-0.221118,0.025545,-0.164693,0.057524,-0.224174,0.000000 +-0.223443,0.025766,-0.166344,0.058036,-0.226465,0.000000 +-0.225769,0.025986,-0.167994,0.058549,-0.228756,0.000000 +-0.228095,0.026207,-0.169645,0.059062,-0.231046,0.000000 +-0.230421,0.026428,-0.171295,0.059575,-0.233337,0.000000 +-0.232747,0.026648,-0.172946,0.060088,-0.235628,0.000000 +-0.235073,0.026869,-0.174596,0.060601,-0.237919,0.000000 +-0.237398,0.027089,-0.176246,0.061114,-0.240209,0.000000 +-0.239724,0.027310,-0.177897,0.061627,-0.242500,0.000000 +-0.242050,0.027531,-0.179547,0.062140,-0.244791,0.000000 +-0.244376,0.027751,-0.181198,0.062652,-0.247081,0.000000 +-0.246702,0.027972,-0.182848,0.063165,-0.249372,0.000000 +-0.249028,0.028193,-0.184499,0.063678,-0.251663,0.000000 +-0.251354,0.028413,-0.186149,0.064191,-0.253953,0.000000 +-0.253679,0.028634,-0.187800,0.064704,-0.256244,0.000000 +-0.256005,0.028855,-0.189450,0.065217,-0.258535,0.000000 +-0.258331,0.029075,-0.191100,0.065730,-0.260826,0.000000 +-0.260657,0.029296,-0.192751,0.066242,-0.263116,0.000000 +-0.262983,0.029516,-0.194401,0.066755,-0.265407,0.000000 +-0.265309,0.029737,-0.196052,0.067268,-0.267698,0.000000 +-0.267634,0.029958,-0.197702,0.067781,-0.269988,0.000000 +-0.269960,0.030178,-0.199353,0.068294,-0.272279,0.000000 +-0.272286,0.030399,-0.201003,0.068807,-0.274570,0.000000 +-0.274612,0.030620,-0.202654,0.069320,-0.276861,0.000000 +-0.276938,0.030840,-0.204304,0.069833,-0.279151,0.000000 +-0.279264,0.031061,-0.205954,0.070346,-0.281442,0.000000 +-0.281589,0.031281,-0.207605,0.070858,-0.283733,0.000000 +-0.283915,0.031502,-0.209255,0.071371,-0.286023,0.000000 +-0.286241,0.031723,-0.210906,0.071884,-0.288314,0.000000 +-0.288567,0.031943,-0.212556,0.072397,-0.290605,0.000000 +-0.290893,0.032164,-0.214207,0.072910,-0.292896,0.000000 +-0.293219,0.032384,-0.215857,0.073423,-0.295186,0.000000 +-0.295545,0.032605,-0.217508,0.073936,-0.297477,0.000000 +-0.297870,0.032826,-0.219158,0.074448,-0.299768,0.000000 +-0.300196,0.033046,-0.220808,0.074961,-0.302058,0.000000 +-0.302522,0.033267,-0.222459,0.075474,-0.304349,0.000000 +-0.304848,0.033488,-0.224109,0.075987,-0.306640,0.000000 +-0.307174,0.033708,-0.225760,0.076500,-0.308930,0.000000 +-0.309500,0.033929,-0.227410,0.077013,-0.311221,0.000000 +-0.311825,0.034150,-0.229061,0.077526,-0.313512,0.000000 +-0.314151,0.034370,-0.230711,0.078039,-0.315803,0.000000 +-0.316477,0.034591,-0.232361,0.078551,-0.318093,0.000000 +-0.318803,0.034812,-0.234012,0.079064,-0.320384,0.000000 +-0.321129,0.035032,-0.235662,0.079577,-0.322675,0.000000 +-0.323455,0.035253,-0.237313,0.080090,-0.324965,0.000000 +-0.325780,0.035473,-0.238963,0.080603,-0.327256,0.000000 +-0.328106,0.035694,-0.240614,0.081116,-0.329547,0.000000 +-0.330432,0.035915,-0.242264,0.081629,-0.331838,0.000000 +-0.332758,0.036135,-0.243915,0.082142,-0.334128,0.000000 +-0.335084,0.036356,-0.245565,0.082654,-0.336419,0.000000 +-0.337410,0.036576,-0.247215,0.083167,-0.338710,0.000000 +-0.339736,0.036797,-0.248866,0.083680,-0.341000,0.000000 +-0.342061,0.037018,-0.250516,0.084193,-0.343291,0.000000 +-0.344387,0.037238,-0.252167,0.084706,-0.345582,0.000000 +-0.346713,0.037459,-0.253817,0.085219,-0.347872,0.000000 +-0.349039,0.037680,-0.255468,0.085732,-0.350163,0.000000 +-0.351365,0.037900,-0.257118,0.086245,-0.352454,0.000000 +-0.353691,0.038121,-0.258769,0.086757,-0.354745,0.000000 +-0.356016,0.038342,-0.260419,0.087270,-0.357035,0.000000 +-0.358342,0.038562,-0.262069,0.087783,-0.359326,0.000000 +-0.360668,0.038783,-0.263720,0.088296,-0.361617,0.000000 +-0.362994,0.039004,-0.265370,0.088809,-0.363907,0.000000 +-0.365320,0.039224,-0.267021,0.089322,-0.366198,0.000000 +-0.367646,0.039445,-0.268671,0.089835,-0.368489,0.000000 +-0.369971,0.039665,-0.270322,0.090348,-0.370780,0.000000 +-0.372297,0.039886,-0.271972,0.090860,-0.373070,0.000000 +-0.374623,0.040107,-0.273623,0.091373,-0.375361,0.000000 +-0.376949,0.040327,-0.275273,0.091886,-0.377652,0.000000 +-0.379275,0.040548,-0.276923,0.092399,-0.379942,0.000000 +-0.381601,0.040768,-0.278574,0.092912,-0.382233,0.000000 +-0.383926,0.040989,-0.280224,0.093425,-0.384524,0.000000 +-0.386252,0.041210,-0.281875,0.093938,-0.386815,0.000000 +-0.388578,0.041430,-0.283525,0.094451,-0.389105,0.000000 +-0.390904,0.041651,-0.285176,0.094963,-0.391396,0.000000 +-0.393230,0.041872,-0.286826,0.095476,-0.393687,0.000000 +-0.395556,0.042092,-0.288477,0.095989,-0.395977,0.000000 +-0.397882,0.042313,-0.290127,0.096502,-0.398268,0.000000 +-0.400207,0.042534,-0.291777,0.097015,-0.400559,0.000000 +-0.402533,0.042754,-0.293428,0.097528,-0.402849,0.000000 +-0.404859,0.042975,-0.295078,0.098041,-0.405140,0.000000 +-0.407185,0.043195,-0.296729,0.098554,-0.407431,0.000000 +-0.409511,0.043416,-0.298379,0.099066,-0.409722,0.000000 +-0.411837,0.043637,-0.300030,0.099579,-0.412012,0.000000 +-0.414162,0.043857,-0.301680,0.100092,-0.414303,0.000000 +-0.416488,0.044078,-0.303331,0.100605,-0.416594,0.000000 +-0.418814,0.044299,-0.304981,0.101118,-0.418884,0.000000 +-0.421140,0.044519,-0.306631,0.101631,-0.421175,0.000000 +-0.423466,0.044740,-0.308282,0.102144,-0.423466,0.000000 +-0.425792,0.044961,-0.309932,0.102657,-0.425757,0.000000 +-0.428117,0.045181,-0.311583,0.103169,-0.428047,0.000000 +-0.430443,0.045402,-0.313233,0.103682,-0.430338,0.000000 +-0.432769,0.045622,-0.314884,0.104195,-0.432629,0.000000 +-0.435095,0.045843,-0.316534,0.104708,-0.434919,0.000000 +-0.437421,0.046064,-0.318184,0.105221,-0.437210,0.000000 +-0.439747,0.046284,-0.319835,0.105734,-0.439501,0.000000 +-0.442073,0.046505,-0.321485,0.106247,-0.441792,0.000000 +-0.444398,0.046726,-0.323136,0.106760,-0.444082,0.000000 +-0.446724,0.046946,-0.324786,0.107272,-0.446373,0.000000 +-0.449050,0.047167,-0.326437,0.107785,-0.448664,0.000000 +-0.451376,0.047387,-0.328087,0.108298,-0.450954,0.000000 +-0.453702,0.047608,-0.329738,0.108811,-0.453245,0.000000 +-0.456028,0.047829,-0.331388,0.109324,-0.455536,0.000000 +-0.458353,0.048049,-0.333038,0.109837,-0.457826,0.000000 +-0.460679,0.048270,-0.334689,0.110350,-0.460117,0.000000 +-0.463005,0.048491,-0.336339,0.110863,-0.462408,0.000000 +-0.465331,0.048711,-0.337990,0.111375,-0.464699,0.000000 +-0.467657,0.048932,-0.339640,0.111888,-0.466989,0.000000 +-0.469983,0.049153,-0.341291,0.112401,-0.469280,0.000000 +-0.472308,0.049373,-0.342941,0.112914,-0.471571,0.000000 +-0.474634,0.049594,-0.344592,0.113427,-0.473861,0.000000 +-0.476960,0.049814,-0.346242,0.113940,-0.476152,0.000000 +-0.479286,0.050035,-0.347892,0.114453,-0.478443,0.000000 +-0.481612,0.050256,-0.349543,0.114966,-0.480734,0.000000 +-0.483938,0.050476,-0.351193,0.115478,-0.483024,0.000000 +-0.486264,0.050697,-0.352844,0.115991,-0.485315,0.000000 +-0.488589,0.050917,-0.354494,0.116504,-0.487606,0.000000 +-0.490915,0.051138,-0.356145,0.117017,-0.489896,0.000000 +-0.493241,0.051359,-0.357795,0.117530,-0.492187,0.000000 +-0.495567,0.051579,-0.359446,0.118043,-0.494478,0.000000 +-0.497893,0.051800,-0.361096,0.118556,-0.496768,0.000000 +-0.500219,0.052021,-0.362746,0.119069,-0.499059,0.000000 +-0.502544,0.052241,-0.364397,0.119581,-0.501350,0.000000 +-0.504870,0.052462,-0.366047,0.120094,-0.503641,0.000000 +-0.507196,0.052683,-0.367698,0.120607,-0.505931,0.000000 +-0.509522,0.052903,-0.369348,0.121120,-0.508222,0.000000 +-0.511848,0.053124,-0.370999,0.121633,-0.510513,0.000000 +-0.514174,0.053345,-0.372649,0.122146,-0.512803,0.000000 +-0.516499,0.053565,-0.374300,0.122659,-0.515094,0.000000 +-0.518825,0.053786,-0.375950,0.123172,-0.517385,0.000000 +-0.521151,0.054006,-0.377600,0.123684,-0.519676,0.000000 +-0.523477,0.054227,-0.379251,0.124197,-0.521966,0.000000 +-0.525803,0.054448,-0.380901,0.124710,-0.524257,0.000000 +-0.528129,0.054668,-0.382552,0.125223,-0.526548,0.000000 +-0.530455,0.054889,-0.384202,0.125736,-0.528838,0.000000 +-0.532780,0.055109,-0.385853,0.126249,-0.531129,0.000000 +-0.535106,0.055330,-0.387503,0.126762,-0.533420,0.000000 +-0.537432,0.055551,-0.389154,0.127275,-0.535711,0.000000 +-0.539758,0.055771,-0.390804,0.127787,-0.538001,0.000000 +-0.542084,0.055992,-0.392454,0.128300,-0.540292,0.000000 +-0.544410,0.056213,-0.394105,0.128813,-0.542583,0.000000 +-0.546735,0.056433,-0.395755,0.129326,-0.544873,0.000000 +-0.549061,0.056654,-0.397406,0.129839,-0.547164,0.000000 +-0.551387,0.056875,-0.399056,0.130352,-0.549455,0.000000 +-0.553713,0.057095,-0.400707,0.130865,-0.551745,0.000000 +-0.556039,0.057316,-0.402357,0.131378,-0.554036,0.000000 +-0.558365,0.057536,-0.404008,0.131890,-0.556327,0.000000 +-0.560690,0.057757,-0.405658,0.132403,-0.558618,0.000000 +-0.563016,0.057978,-0.407308,0.132916,-0.560908,0.000000 +-0.565342,0.058198,-0.408959,0.133429,-0.563199,0.000000 +-0.567668,0.058419,-0.410609,0.133942,-0.565490,0.000000 +-0.569994,0.058640,-0.412260,0.134455,-0.567780,0.000000 +-0.572320,0.058860,-0.413910,0.134968,-0.570071,0.000000 +-0.574646,0.059081,-0.415561,0.135480,-0.572362,0.000000 +-0.576971,0.059302,-0.417211,0.135993,-0.574653,0.000000 +-0.579297,0.059522,-0.418861,0.136506,-0.576943,0.000000 +-0.581623,0.059743,-0.420512,0.137019,-0.579234,0.000000 +-0.583949,0.059963,-0.422162,0.137532,-0.581525,0.000000 +-0.586275,0.060184,-0.423813,0.138045,-0.583815,0.000000 +-0.588601,0.060405,-0.425463,0.138558,-0.586106,0.000000 +-0.590926,0.060625,-0.427114,0.139071,-0.588397,0.000000 +-0.593252,0.060846,-0.428764,0.139583,-0.590688,0.000000 +-0.595578,0.061067,-0.430415,0.140096,-0.592978,0.000000 +-0.597904,0.061287,-0.432065,0.140609,-0.595269,0.000000 +-0.600230,0.061508,-0.433715,0.141122,-0.597560,0.000000 +-0.602556,0.061728,-0.435366,0.141635,-0.599850,0.000000 +-0.604881,0.061949,-0.437016,0.142148,-0.602141,0.000000 +-0.607207,0.062170,-0.438667,0.142661,-0.604432,0.000000 +-0.609533,0.062390,-0.440317,0.143174,-0.606722,0.000000 +-0.611859,0.062611,-0.441968,0.143686,-0.609013,0.000000 +-0.614185,0.062832,-0.443618,0.144199,-0.611304,0.000000 +-0.616511,0.063052,-0.445269,0.144712,-0.613595,0.000000 +-0.618836,0.063273,-0.446919,0.145225,-0.615885,0.000000 +-0.621162,0.063493,-0.448569,0.145738,-0.618176,0.000000 +-0.623488,0.063714,-0.450220,0.146251,-0.620467,0.000000 +-0.625814,0.063935,-0.451870,0.146764,-0.622757,0.000000 +-0.628140,0.064155,-0.453521,0.147277,-0.625048,0.000000 +-0.630466,0.064376,-0.455171,0.147789,-0.627339,0.000000 +-0.632792,0.064597,-0.456822,0.148302,-0.629630,0.000000 +-0.635117,0.064817,-0.458472,0.148815,-0.631920,0.000000 +-0.637443,0.065038,-0.460123,0.149328,-0.634211,0.000000 +-0.639769,0.065258,-0.461773,0.149841,-0.636502,0.000000 +-0.642095,0.065479,-0.463423,0.150354,-0.638792,0.000000 +-0.644421,0.065700,-0.465074,0.150867,-0.641083,0.000000 +-0.646747,0.065920,-0.466724,0.151380,-0.643374,0.000000 +-0.649072,0.066141,-0.468375,0.151892,-0.645664,0.000000 +-0.651398,0.066362,-0.470025,0.152405,-0.647955,0.000000 +-0.653724,0.066582,-0.471676,0.152918,-0.650246,0.000000 +-0.656050,0.066803,-0.473326,0.153431,-0.652537,0.000000 +-0.658376,0.067024,-0.474977,0.153944,-0.654827,0.000000 +-0.660702,0.067244,-0.476627,0.154457,-0.657118,0.000000 +-0.663027,0.067465,-0.478277,0.154970,-0.659409,0.000000 +-0.665353,0.067685,-0.479928,0.155483,-0.661699,0.000000 +-0.667679,0.067906,-0.481578,0.155995,-0.663990,0.000000 +-0.670005,0.068127,-0.483229,0.156508,-0.666281,0.000000 +-0.672331,0.068347,-0.484879,0.157021,-0.668572,0.000000 +-0.674657,0.068568,-0.486530,0.157534,-0.670862,0.000000 +-0.676983,0.068789,-0.488180,0.158047,-0.673153,0.000000 +-0.679308,0.069009,-0.489831,0.158560,-0.675444,0.000000 +-0.681634,0.069230,-0.491481,0.159073,-0.677734,0.000000 +-0.683960,0.069450,-0.493131,0.159586,-0.680025,0.000000 +-0.686286,0.069671,-0.494782,0.160098,-0.682316,0.000000 +-0.688612,0.069892,-0.496432,0.160611,-0.684607,0.000000 +-0.690938,0.070112,-0.498083,0.161124,-0.686897,0.000000 +-0.693263,0.070333,-0.499733,0.161637,-0.689188,0.000000 +-0.695589,0.070554,-0.501384,0.162150,-0.691479,0.000000 +-0.697915,0.070774,-0.503034,0.162663,-0.693769,0.000000 +-0.700241,0.070995,-0.504685,0.163176,-0.696060,0.000000 +-0.702567,0.071216,-0.506335,0.163689,-0.698351,0.000000 +-0.704893,0.071436,-0.507985,0.164201,-0.700641,0.000000 +-0.707218,0.071657,-0.509636,0.164714,-0.702932,0.000000 +-0.709544,0.071877,-0.511286,0.165227,-0.705223,0.000000 +-0.711870,0.072098,-0.512937,0.165740,-0.707514,0.000000 +-0.714196,0.072319,-0.514587,0.166253,-0.709804,0.000000 +-0.716522,0.072539,-0.516238,0.166766,-0.712095,0.000000 +-0.718848,0.072760,-0.517888,0.167279,-0.714386,0.000000 +-0.721174,0.072981,-0.519538,0.167792,-0.716676,0.000000 +-0.723499,0.073201,-0.521189,0.168304,-0.718967,0.000000 +-0.725825,0.073422,-0.522839,0.168817,-0.721258,0.000000 +-0.728151,0.073643,-0.524490,0.169330,-0.723549,0.000000 +-0.730477,0.073863,-0.526140,0.169843,-0.725839,0.000000 +-0.732803,0.074084,-0.527791,0.170356,-0.728130,0.000000 +-0.735129,0.074304,-0.529441,0.170869,-0.730421,0.000000 +-0.737454,0.074525,-0.531092,0.171382,-0.732711,0.000000 +-0.739780,0.074746,-0.532742,0.171895,-0.735002,0.000000 +-0.742106,0.074966,-0.534392,0.172407,-0.737293,0.000000 +-0.744432,0.075187,-0.536043,0.172920,-0.739584,0.000000 +-0.746758,0.075408,-0.537693,0.173433,-0.741874,0.000000 +-0.749084,0.075628,-0.539344,0.173946,-0.744165,0.000000 +-0.751409,0.075849,-0.540994,0.174459,-0.746456,0.000000 +-0.753735,0.076069,-0.542645,0.174972,-0.748746,0.000000 +-0.756061,0.076290,-0.544295,0.175485,-0.751037,0.000000 +-0.758387,0.076511,-0.545946,0.175998,-0.753328,0.000000 +-0.760713,0.076731,-0.547596,0.176510,-0.755618,0.000000 +-0.763039,0.076952,-0.549246,0.177023,-0.757909,0.000000 +-0.765365,0.077173,-0.550897,0.177536,-0.760200,0.000000 +-0.767690,0.077393,-0.552547,0.178049,-0.762491,0.000000 +-0.770016,0.077614,-0.554198,0.178562,-0.764781,0.000000 +-0.772342,0.077835,-0.555848,0.179075,-0.767072,0.000000 +-0.774668,0.078055,-0.557499,0.179588,-0.769363,0.000000 +-0.776994,0.078276,-0.559149,0.180101,-0.771653,0.000000 +-0.779320,0.078496,-0.560800,0.180613,-0.773944,0.000000 +-0.781645,0.078717,-0.562450,0.181126,-0.776235,0.000000 +-0.783971,0.078938,-0.564100,0.181639,-0.778526,0.000000 +-0.786297,0.079158,-0.565751,0.182152,-0.780816,0.000000 +-0.788623,0.079379,-0.567401,0.182665,-0.783107,0.000000 +-0.790949,0.079600,-0.569052,0.183178,-0.785398,0.000000 +-0.793275,0.079820,-0.570702,0.183691,-0.787688,0.000000 +-0.795600,0.080041,-0.572353,0.184204,-0.789979,0.000000 +-0.797926,0.080261,-0.574003,0.184716,-0.792270,0.000000 +-0.800252,0.080482,-0.575654,0.185229,-0.794560,0.000000 +-0.802578,0.080703,-0.577304,0.185742,-0.796851,0.000000 +-0.804904,0.080923,-0.578954,0.186255,-0.799142,0.000000 +-0.807230,0.081144,-0.580605,0.186768,-0.801433,0.000000 +-0.809556,0.081365,-0.582255,0.187281,-0.803723,0.000000 +-0.811881,0.081585,-0.583906,0.187794,-0.806014,0.000000 +-0.814207,0.081806,-0.585556,0.188307,-0.808305,0.000000 +-0.816533,0.082027,-0.587207,0.188819,-0.810595,0.000000 +-0.818859,0.082247,-0.588857,0.189332,-0.812886,0.000000 +-0.821185,0.082468,-0.590508,0.189845,-0.815177,0.000000 +-0.823511,0.082688,-0.592158,0.190358,-0.817468,0.000000 +-0.825836,0.082909,-0.593808,0.190871,-0.819758,0.000000 +-0.828162,0.083130,-0.595459,0.191384,-0.822049,0.000000 +-0.830488,0.083350,-0.597109,0.191897,-0.824340,0.000000 +-0.832814,0.083571,-0.598760,0.192410,-0.826630,0.000000 +-0.835140,0.083792,-0.600410,0.192922,-0.828921,0.000000 +-0.837466,0.084012,-0.602061,0.193435,-0.831212,0.000000 +-0.839791,0.084233,-0.603711,0.193948,-0.833503,0.000000 +-0.842117,0.084453,-0.605362,0.194461,-0.835793,0.000000 +-0.844443,0.084674,-0.607012,0.194974,-0.838084,0.000000 +-0.846769,0.084895,-0.608662,0.195487,-0.840375,0.000000 +-0.849095,0.085115,-0.610313,0.196000,-0.842665,0.000000 +-0.851421,0.085336,-0.611963,0.196513,-0.844956,0.000000 +-0.853747,0.085556,-0.613614,0.197025,-0.847247,0.000000 +-0.856072,0.085777,-0.615264,0.197538,-0.849537,0.000000 +-0.858398,0.085998,-0.616915,0.198051,-0.851828,0.000000 +-0.860724,0.086218,-0.618565,0.198564,-0.854119,0.000000 +-0.863050,0.086439,-0.620215,0.199077,-0.856410,0.000000 +-0.865376,0.086660,-0.621866,0.199590,-0.858700,0.000000 +-0.867702,0.086880,-0.623516,0.200103,-0.860991,0.000000 +-0.870027,0.087101,-0.625167,0.200616,-0.863282,0.000000 +-0.872353,0.087322,-0.626817,0.201128,-0.865572,0.000000 +-0.874679,0.087542,-0.628468,0.201641,-0.867863,0.000000 +-0.877005,0.087763,-0.630118,0.202154,-0.870154,0.000000 +-0.879331,0.087984,-0.631769,0.202667,-0.872445,0.000000 +-0.881657,0.088204,-0.633419,0.203180,-0.874735,0.000000 +-0.883982,0.088425,-0.635069,0.203693,-0.877026,0.000000 +-0.886308,0.088645,-0.636720,0.204206,-0.879317,0.000000 +-0.888634,0.088866,-0.638370,0.204719,-0.881607,0.000000 +-0.890960,0.089087,-0.640021,0.205231,-0.883898,0.000000 +-0.893286,0.089307,-0.641671,0.205744,-0.886189,0.000000 +-0.895612,0.089528,-0.643322,0.206257,-0.888480,0.000000 +-0.897937,0.089748,-0.644972,0.206770,-0.890770,0.000000 +-0.900263,0.089969,-0.646623,0.207283,-0.893061,0.000000 +-0.902589,0.090190,-0.648273,0.207796,-0.895352,0.000000 +-0.904915,0.090410,-0.649923,0.208309,-0.897642,0.000000 +-0.907241,0.090631,-0.651574,0.208822,-0.899933,0.000000 +-0.909567,0.090852,-0.653224,0.209334,-0.902224,0.000000 +-0.911893,0.091072,-0.654875,0.209847,-0.904514,0.000000 +-0.914218,0.091293,-0.656525,0.210360,-0.906805,0.000000 +-0.916544,0.091514,-0.658176,0.210873,-0.909096,0.000000 +-0.918870,0.091734,-0.659826,0.211386,-0.911387,0.000000 +-0.921196,0.091955,-0.661477,0.211899,-0.913677,0.000000 +-0.923522,0.092175,-0.663127,0.212412,-0.915968,0.000000 +-0.925848,0.092396,-0.664777,0.212925,-0.918259,0.000000 +-0.928173,0.092617,-0.666428,0.213437,-0.920549,0.000000 +-0.930499,0.092837,-0.668078,0.213950,-0.922840,0.000000 +-0.932825,0.093058,-0.669729,0.214463,-0.925131,0.000000 +-0.935151,0.093279,-0.671379,0.214976,-0.927422,0.000000 +-0.937477,0.093499,-0.673030,0.215489,-0.929712,0.000000 +-0.939803,0.093720,-0.674680,0.216002,-0.932003,0.000000 +-0.942128,0.093940,-0.676331,0.216515,-0.934294,0.000000 +-0.944454,0.094161,-0.677981,0.217028,-0.936584,0.000000 +-0.946780,0.094382,-0.679631,0.217540,-0.938875,0.000000 +-0.949106,0.094602,-0.681282,0.218053,-0.941166,0.000000 +-0.951432,0.094823,-0.682932,0.218566,-0.943456,0.000000 +-0.953758,0.095044,-0.684583,0.219079,-0.945747,0.000000 +-0.956084,0.095264,-0.686233,0.219592,-0.948038,0.000000 +-0.958409,0.095485,-0.687884,0.220105,-0.950329,0.000000 +-0.960735,0.095706,-0.689534,0.220618,-0.952619,0.000000 +-0.963061,0.095926,-0.691185,0.221131,-0.954910,0.000000 +-0.965387,0.096147,-0.692835,0.221643,-0.957201,0.000000 +-0.967713,0.096367,-0.694485,0.222156,-0.959491,0.000000 +-0.970039,0.096588,-0.696136,0.222669,-0.961782,0.000000 +-0.972364,0.096809,-0.697786,0.223182,-0.964073,0.000000 +-0.974690,0.097029,-0.699437,0.223695,-0.966364,0.000000 +-0.977016,0.097250,-0.701087,0.224208,-0.968654,0.000000 +-0.979342,0.097471,-0.702738,0.224721,-0.970945,0.000000 +-0.981668,0.097691,-0.704388,0.225234,-0.973236,0.000000 +-0.983994,0.097912,-0.706038,0.225746,-0.975526,0.000000 +-0.986319,0.098132,-0.707689,0.226259,-0.977817,0.000000 +-0.988645,0.098353,-0.709339,0.226772,-0.980108,0.000000 +-0.990971,0.098574,-0.710990,0.227285,-0.982399,0.000000 +-0.993297,0.098794,-0.712640,0.227798,-0.984689,0.000000 +-0.995623,0.099015,-0.714291,0.228311,-0.986980,0.000000 +-0.997949,0.099236,-0.715941,0.228824,-0.989271,0.000000 +-1.000270,0.099456,-0.717592,0.229337,-0.991561,0.000000 +-1.002600,0.099677,-0.719242,0.229849,-0.993852,0.000000 +-1.004930,0.099898,-0.720892,0.230362,-0.996143,0.000000 +-1.007250,0.100118,-0.722543,0.230875,-0.998433,0.000000 +-1.009580,0.100339,-0.724193,0.231388,-1.000720,0.000000 +-1.011900,0.100559,-0.725844,0.231901,-1.003010,0.000000 +-1.014230,0.100780,-0.727494,0.232414,-1.005310,0.000000 +-1.016560,0.101001,-0.729145,0.232927,-1.007600,0.000000 +-1.018880,0.101221,-0.730795,0.233440,-1.009890,0.000000 +-1.021210,0.101442,-0.732446,0.233952,-1.012180,0.000000 +-1.023530,0.101663,-0.734096,0.234465,-1.014470,0.000000 +-1.025860,0.101883,-0.735746,0.234978,-1.016760,0.000000 +-1.028180,0.102104,-0.737397,0.235491,-1.019050,0.000000 +-1.030510,0.102324,-0.739047,0.236004,-1.021340,0.000000 +-1.032840,0.102545,-0.740698,0.236517,-1.023630,0.000000 +-1.035160,0.102766,-0.742348,0.237030,-1.025920,0.000000 +-1.037490,0.102986,-0.743999,0.237542,-1.028210,0.000000 +-1.039810,0.103207,-0.745649,0.238055,-1.030500,0.000000 +-1.042140,0.103428,-0.747300,0.238568,-1.032790,0.000000 +-1.044470,0.103648,-0.748950,0.239081,-1.035080,0.000000 +-1.046790,0.103869,-0.750600,0.239594,-1.037380,0.000000 +-1.049120,0.104090,-0.752251,0.240107,-1.039670,0.000000 +-1.051440,0.104310,-0.753901,0.240620,-1.041960,0.000000 +-1.053770,0.104531,-0.755552,0.241133,-1.044250,0.000000 +-1.056090,0.104751,-0.757202,0.241645,-1.046540,0.000000 +-1.058420,0.104972,-0.758853,0.242158,-1.048830,0.000000 +-1.060750,0.105193,-0.760503,0.242671,-1.051120,0.000000 +-1.063070,0.105413,-0.762154,0.243184,-1.053410,0.000000 +-1.065400,0.105634,-0.763804,0.243697,-1.055700,0.000000 +-1.067720,0.105855,-0.765454,0.244210,-1.057990,0.000000 +-1.070050,0.106075,-0.767105,0.244723,-1.060280,0.000000 +-1.072380,0.106296,-0.768755,0.245236,-1.062570,0.000000 +-1.074700,0.106516,-0.770406,0.245748,-1.064860,0.000000 +-1.077030,0.106737,-0.772056,0.246261,-1.067150,0.000000 +-1.079350,0.106958,-0.773707,0.246774,-1.069450,0.000000 +-1.081680,0.107178,-0.775357,0.247287,-1.071740,0.000000 +-1.084000,0.107399,-0.777008,0.247800,-1.074030,0.000000 +-1.086330,0.107620,-0.778658,0.248313,-1.076320,0.000000 +-1.088660,0.107840,-0.780308,0.248826,-1.078610,0.000000 +-1.090980,0.108061,-0.781959,0.249339,-1.080900,0.000000 +-1.093310,0.108282,-0.783609,0.249851,-1.083190,0.000000 +-1.095630,0.108502,-0.785260,0.250364,-1.085480,0.000000 +-1.097960,0.108723,-0.786910,0.250877,-1.087770,0.000000 +-1.100290,0.108943,-0.788561,0.251390,-1.090060,0.000000 +-1.102610,0.109164,-0.790211,0.251903,-1.092350,0.000000 +-1.104940,0.109385,-0.791862,0.252416,-1.094640,0.000000 +-1.107260,0.109605,-0.793512,0.252929,-1.096930,0.000000 +-1.109590,0.109826,-0.795162,0.253442,-1.099220,0.000000 +-1.111910,0.110047,-0.796813,0.253954,-1.101520,0.000000 +-1.114240,0.110267,-0.798463,0.254467,-1.103810,0.000000 +-1.116570,0.110488,-0.800114,0.254980,-1.106100,0.000000 +-1.118890,0.110708,-0.801764,0.255493,-1.108390,0.000000 +-1.121220,0.110929,-0.803415,0.256006,-1.110680,0.000000 +-1.123540,0.111150,-0.805065,0.256519,-1.112970,0.000000 +-1.125870,0.111370,-0.806715,0.257032,-1.115260,0.000000 +-1.128200,0.111591,-0.808366,0.257545,-1.117550,0.000000 +-1.130520,0.111812,-0.810016,0.258057,-1.119840,0.000000 +-1.132850,0.112032,-0.811667,0.258570,-1.122130,0.000000 +-1.135170,0.112253,-0.813317,0.259083,-1.124420,0.000000 +-1.137500,0.112473,-0.814968,0.259596,-1.126710,0.000000 +-1.139830,0.112694,-0.816618,0.260109,-1.129000,0.000000 +-1.142150,0.112915,-0.818269,0.260622,-1.131290,0.000000 +-1.144480,0.113135,-0.819919,0.261135,-1.133590,0.000000 +-1.146800,0.113356,-0.821569,0.261648,-1.135880,0.000000 +-1.149130,0.113577,-0.823220,0.262160,-1.138170,0.000000 +-1.151450,0.113797,-0.824870,0.262673,-1.140460,0.000000 +-1.153780,0.114018,-0.826521,0.263186,-1.142750,0.000000 +-1.156110,0.114239,-0.828171,0.263699,-1.145040,0.000000 +-1.158430,0.114459,-0.829822,0.264212,-1.147330,0.000000 +-1.160760,0.114680,-0.831472,0.264725,-1.149620,0.000000 +-1.163080,0.114900,-0.833123,0.265238,-1.151910,0.000000 +-1.165410,0.115121,-0.834773,0.265751,-1.154200,0.000000 +-1.167740,0.115342,-0.836423,0.266263,-1.156490,0.000000 +-1.170060,0.115562,-0.838074,0.266776,-1.158780,0.000000 +-1.172390,0.115783,-0.839724,0.267289,-1.161070,0.000000 +-1.174710,0.116004,-0.841375,0.267802,-1.163360,0.000000 +-1.177040,0.116224,-0.843025,0.268315,-1.165660,0.000000 +-1.179360,0.116445,-0.844676,0.268828,-1.167950,0.000000 +-1.181690,0.116665,-0.846326,0.269341,-1.170240,0.000000 +-1.184020,0.116886,-0.847977,0.269854,-1.172530,0.000000 +-1.186340,0.117107,-0.849627,0.270366,-1.174820,0.000000 +-1.188670,0.117327,-0.851277,0.270879,-1.177110,0.000000 +-1.190990,0.117548,-0.852928,0.271392,-1.179400,0.000000 +-1.193320,0.117769,-0.854578,0.271905,-1.181690,0.000000 +-1.195650,0.117989,-0.856229,0.272418,-1.183980,0.000000 +-1.197970,0.118210,-0.857879,0.272931,-1.186270,0.000000 +-1.200300,0.118431,-0.859530,0.273444,-1.188560,0.000000 +-1.202620,0.118651,-0.861180,0.273957,-1.190850,0.000000 +-1.204950,0.118872,-0.862831,0.274469,-1.193140,0.000000 +-1.207270,0.119092,-0.864481,0.274982,-1.195430,0.000000 +-1.209600,0.119313,-0.866131,0.275495,-1.197730,0.000000 +-1.211930,0.119534,-0.867782,0.276008,-1.200020,0.000000 +-1.214250,0.119754,-0.869432,0.276521,-1.202310,0.000000 +-1.216580,0.119975,-0.871083,0.277034,-1.204600,0.000000 +-1.218900,0.120196,-0.872733,0.277547,-1.206890,0.000000 +-1.221230,0.120416,-0.874384,0.278060,-1.209180,0.000000 +-1.223560,0.120637,-0.876034,0.278572,-1.211470,0.000000 +-1.225880,0.120857,-0.877685,0.279085,-1.213760,0.000000 +-1.228210,0.121078,-0.879335,0.279598,-1.216050,0.000000 +-1.230530,0.121299,-0.880985,0.280111,-1.218340,0.000000 +-1.232860,0.121519,-0.882636,0.280624,-1.220630,0.000000 +-1.235180,0.121740,-0.884286,0.281137,-1.222920,0.000000 +-1.237510,0.121961,-0.885937,0.281650,-1.225210,0.000000 +-1.239840,0.122181,-0.887587,0.282163,-1.227500,0.000000 +-1.242160,0.122402,-0.889238,0.282675,-1.229790,0.000000 +-1.244490,0.122623,-0.890888,0.283188,-1.232090,0.000000 +-1.246810,0.122843,-0.892539,0.283701,-1.234380,0.000000 +-1.249140,0.123064,-0.894189,0.284214,-1.236670,0.000000 +-1.251470,0.123284,-0.895839,0.284727,-1.238960,0.000000 +-1.253790,0.123505,-0.897490,0.285240,-1.241250,0.000000 +-1.256120,0.123726,-0.899140,0.285753,-1.243540,0.000000 +-1.258440,0.123946,-0.900791,0.286266,-1.245830,0.000000 +-1.260770,0.124167,-0.902441,0.286778,-1.248120,0.000000 +-1.263090,0.124388,-0.904092,0.287291,-1.250410,0.000000 +-1.265420,0.124608,-0.905742,0.287804,-1.252700,0.000000 +-1.267750,0.124829,-0.907392,0.288317,-1.254990,0.000000 +-1.270070,0.125049,-0.909043,0.288830,-1.257280,0.000000 +-1.272400,0.125270,-0.910693,0.289343,-1.259570,0.000000 +-1.274720,0.125491,-0.912344,0.289856,-1.261860,0.000000 +-1.277050,0.125711,-0.913994,0.290369,-1.264160,0.000000 +-1.279380,0.125932,-0.915645,0.290881,-1.266450,0.000000 +-1.281700,0.126153,-0.917295,0.291394,-1.268740,0.000000 +-1.284030,0.126373,-0.918946,0.291907,-1.271030,0.000000 +-1.286350,0.126594,-0.920596,0.292420,-1.273320,0.000000 +-1.288680,0.126814,-0.922246,0.292933,-1.275610,0.000000 +-1.291000,0.127035,-0.923897,0.293446,-1.277900,0.000000 +-1.293330,0.127256,-0.925547,0.293959,-1.280190,0.000000 +-1.295660,0.127476,-0.927198,0.294472,-1.282480,0.000000 +-1.297980,0.127697,-0.928848,0.294984,-1.284770,0.000000 +-1.300310,0.127918,-0.930499,0.295497,-1.287060,0.000000 +-1.302630,0.128138,-0.932149,0.296010,-1.289350,0.000000 +-1.304960,0.128359,-0.933800,0.296523,-1.291640,0.000000 +-1.307290,0.128580,-0.935450,0.297036,-1.293930,0.000000 +-1.309610,0.128800,-0.937100,0.297549,-1.296230,0.000000 +-1.311940,0.129021,-0.938751,0.298062,-1.298520,0.000000 +-1.314260,0.129241,-0.940401,0.298575,-1.300810,0.000000 +-1.316590,0.129462,-0.942052,0.299087,-1.303100,0.000000 +-1.318910,0.129683,-0.943702,0.299600,-1.305390,0.000000 +-1.321240,0.129903,-0.945353,0.300113,-1.307680,0.000000 +-1.323570,0.130124,-0.947003,0.300626,-1.309970,0.000000 +-1.325890,0.130345,-0.948654,0.301139,-1.312260,0.000000 +-1.328220,0.130565,-0.950304,0.301652,-1.314550,0.000000 +-1.330540,0.130786,-0.951954,0.302165,-1.316840,0.000000 +-1.332870,0.131006,-0.953605,0.302678,-1.319130,0.000000 +-1.335200,0.131227,-0.955255,0.303190,-1.321420,0.000000 +-1.337520,0.131448,-0.956906,0.303703,-1.323710,0.000000 +-1.339850,0.131668,-0.958556,0.304216,-1.326000,0.000000 +-1.342170,0.131889,-0.960207,0.304729,-1.328300,0.000000 +-1.344500,0.132110,-0.961857,0.305242,-1.330590,0.000000 +-1.346820,0.132330,-0.963508,0.305755,-1.332880,0.000000 +-1.349150,0.132551,-0.965158,0.306268,-1.335170,0.000000 +-1.351480,0.132772,-0.966808,0.306781,-1.337460,0.000000 +-1.353800,0.132992,-0.968459,0.307293,-1.339750,0.000000 +-1.356130,0.133213,-0.970109,0.307806,-1.342040,0.000000 +-1.358450,0.133433,-0.971760,0.308319,-1.344330,0.000000 +-1.360780,0.133654,-0.973410,0.308832,-1.346620,0.000000 +-1.363110,0.133875,-0.975061,0.309345,-1.348910,0.000000 +-1.365430,0.134095,-0.976711,0.309858,-1.351200,0.000000 +-1.367760,0.134316,-0.978362,0.310371,-1.353490,0.000000 +-1.370080,0.134537,-0.980012,0.310884,-1.355780,0.000000 +-1.372410,0.134757,-0.981662,0.311396,-1.358070,0.000000 +-1.374740,0.134978,-0.983313,0.311909,-1.360370,0.000000 +-1.377060,0.135198,-0.984963,0.312422,-1.362660,0.000000 +-1.379390,0.135419,-0.986614,0.312935,-1.364950,0.000000 +-1.381710,0.135640,-0.988264,0.313448,-1.367240,0.000000 +-1.384040,0.135860,-0.989915,0.313961,-1.369530,0.000000 +-1.386360,0.136081,-0.991565,0.314474,-1.371820,0.000000 +-1.388690,0.136302,-0.993216,0.314987,-1.374110,0.000000 +-1.391020,0.136522,-0.994866,0.315499,-1.376400,0.000000 +-1.393340,0.136743,-0.996516,0.316012,-1.378690,0.000000 +-1.395670,0.136963,-0.998167,0.316525,-1.380980,0.000000 +-1.397990,0.137184,-0.999817,0.317038,-1.383270,0.000000 +-1.400320,0.137405,-1.001470,0.317551,-1.385560,0.000000 +-1.402650,0.137625,-1.003120,0.318064,-1.387850,0.000000 +-1.404970,0.137846,-1.004770,0.318577,-1.390140,0.000000 +-1.407300,0.138067,-1.006420,0.319090,-1.392440,0.000000 +-1.409620,0.138287,-1.008070,0.319602,-1.394730,0.000000 +-1.411950,0.138508,-1.009720,0.320115,-1.397020,0.000000 +-1.414270,0.138729,-1.011370,0.320628,-1.399310,0.000000 +-1.416600,0.138949,-1.013020,0.321141,-1.401600,0.000000 +-1.418930,0.139170,-1.014670,0.321654,-1.403890,0.000000 +-1.421250,0.139390,-1.016320,0.322167,-1.406180,0.000000 +-1.423580,0.139611,-1.017970,0.322680,-1.408470,0.000000 +-1.425900,0.139832,-1.019620,0.323193,-1.410760,0.000000 +-1.428230,0.140052,-1.021270,0.323705,-1.413050,0.000000 +-1.430560,0.140273,-1.022920,0.324218,-1.415340,0.000000 +-1.432880,0.140494,-1.024570,0.324731,-1.417630,0.000000 +-1.435210,0.140714,-1.026220,0.325244,-1.419920,0.000000 +-1.437530,0.140935,-1.027870,0.325757,-1.422210,0.000000 +-1.439860,0.141155,-1.029530,0.326270,-1.424510,0.000000 +-1.442180,0.141376,-1.031180,0.326783,-1.426800,0.000000 +-1.444510,0.141597,-1.032830,0.327296,-1.429090,0.000000 +-1.446840,0.141817,-1.034480,0.327808,-1.431380,0.000000 +-1.449160,0.142038,-1.036130,0.328321,-1.433670,0.000000 +-1.451490,0.142259,-1.037780,0.328834,-1.435960,0.000000 +-1.453810,0.142479,-1.039430,0.329347,-1.438250,0.000000 +-1.456140,0.142700,-1.041080,0.329860,-1.440540,0.000000 +-1.458470,0.142921,-1.042730,0.330373,-1.442830,0.000000 +-1.460790,0.143141,-1.044380,0.330886,-1.445120,0.000000 +-1.463120,0.143362,-1.046030,0.331399,-1.447410,0.000000 +-1.465440,0.143582,-1.047680,0.331911,-1.449700,0.000000 +-1.467770,0.143803,-1.049330,0.332424,-1.451990,0.000000 +-1.470090,0.144024,-1.050980,0.332937,-1.454280,0.000000 +-1.472420,0.144244,-1.052630,0.333450,-1.456580,0.000000 +-1.474750,0.144465,-1.054280,0.333963,-1.458870,0.000000 +-1.477070,0.144686,-1.055930,0.334476,-1.461160,0.000000 +-1.479400,0.144906,-1.057580,0.334989,-1.463450,0.000000 +-1.481720,0.145127,-1.059230,0.335502,-1.465740,0.000000 +-1.484050,0.145347,-1.060880,0.336014,-1.468030,0.000000 +-1.486380,0.145568,-1.062530,0.336527,-1.470320,0.000000 +-1.488700,0.145789,-1.064180,0.337040,-1.472610,0.000000 +-1.491030,0.146009,-1.065830,0.337553,-1.474900,0.000000 +-1.493350,0.146230,-1.067490,0.338066,-1.477190,0.000000 +-1.495680,0.146451,-1.069140,0.338579,-1.479480,0.000000 +-1.498000,0.146671,-1.070790,0.339092,-1.481770,0.000000 +-1.500330,0.146892,-1.072440,0.339605,-1.484060,0.000000 +-1.502660,0.147113,-1.074090,0.340117,-1.486350,0.000000 +-1.504980,0.147333,-1.075740,0.340630,-1.488640,0.000000 +-1.507310,0.147554,-1.077390,0.341143,-1.490940,0.000000 +-1.509630,0.147774,-1.079040,0.341656,-1.493230,0.000000 +-1.511960,0.147995,-1.080690,0.342169,-1.495520,0.000000 +-1.514290,0.148216,-1.082340,0.342682,-1.497810,0.000000 +-1.516610,0.148436,-1.083990,0.343195,-1.500100,0.000000 +-1.518930,0.148657,-1.085640,0.343707,-1.502390,0.000000 +-1.521240,0.148878,-1.087290,0.344220,-1.504680,0.000000 +-1.523540,0.149098,-1.088940,0.344733,-1.506970,0.000000 +-1.525830,0.149319,-1.090590,0.345246,-1.509260,0.000000 +-1.528100,0.149539,-1.092240,0.345759,-1.511550,0.000000 +-1.530360,0.149760,-1.093890,0.346272,-1.513840,0.000000 +-1.532590,0.149981,-1.095540,0.346785,-1.516120,0.000000 +-1.534800,0.150201,-1.097190,0.347298,-1.518380,0.000000 +-1.536990,0.150422,-1.098840,0.347810,-1.520640,0.000000 +-1.539150,0.150643,-1.100490,0.348323,-1.522880,0.000000 +-1.541280,0.150863,-1.102130,0.348836,-1.525100,0.000000 +-1.543370,0.151084,-1.103760,0.349349,-1.527290,0.000000 +-1.545430,0.151304,-1.105380,0.349862,-1.529460,0.000000 +-1.547450,0.151525,-1.106980,0.350375,-1.531610,0.000000 +-1.549430,0.151746,-1.108570,0.350888,-1.533720,0.000000 +-1.551360,0.151966,-1.110140,0.351401,-1.535790,0.000000 +-1.553250,0.152187,-1.111690,0.351913,-1.537830,0.000000 +-1.555090,0.152408,-1.113210,0.352426,-1.539820,0.000000 +-1.556870,0.152628,-1.114700,0.352939,-1.541770,0.000000 +-1.558610,0.152849,-1.116170,0.353452,-1.543680,0.000000 +-1.560280,0.153070,-1.117600,0.353965,-1.545530,0.000000 +-1.561900,0.153290,-1.119000,0.354478,-1.547330,0.000000 +-1.563460,0.153511,-1.120360,0.354991,-1.549070,0.000000 +-1.564950,0.153731,-1.121680,0.355504,-1.550750,0.000000 +-1.566370,0.153952,-1.122960,0.356016,-1.552370,0.000000 +-1.567730,0.154173,-1.124190,0.356529,-1.553930,0.000000 +-1.569010,0.154393,-1.125380,0.357042,-1.555410,0.000000 +-1.570210,0.154614,-1.126510,0.357555,-1.556820,0.000000 +-1.571340,0.154835,-1.127600,0.358068,-1.558160,0.000000 +-1.572400,0.155055,-1.128620,0.358581,-1.559420,0.000000 +-1.573380,0.155276,-1.129590,0.359094,-1.560590,0.000000 +-1.574290,0.155496,-1.130500,0.359607,-1.561680,0.000000 +-1.575140,0.155717,-1.131340,0.360119,-1.562700,0.000000 +-1.575920,0.155938,-1.132120,0.360630,-1.563630,0.000000 +-1.576630,0.156158,-1.132840,0.361135,-1.564490,0.000000 +-1.577290,0.156379,-1.133500,0.361632,-1.565280,0.000000 +-1.577890,0.156600,-1.134100,0.362118,-1.565990,0.000000 +-1.578440,0.156820,-1.134640,0.362589,-1.566650,0.000000 +-1.578930,0.157041,-1.135140,0.363042,-1.567240,0.000000 +-1.579370,0.157261,-1.135580,0.363475,-1.567770,0.000000 +-1.579770,0.157481,-1.135980,0.363883,-1.568250,0.000000 +-1.580130,0.157697,-1.136330,0.364265,-1.568670,0.000000 +-1.580440,0.157906,-1.136640,0.364616,-1.569050,0.000000 +-1.580710,0.158106,-1.136920,0.364935,-1.569370,0.000000 +-1.580950,0.158295,-1.137150,0.365217,-1.569660,0.000000 +-1.581150,0.158470,-1.137360,0.365460,-1.569900,0.000000 +-1.581320,0.158628,-1.137530,0.365666,-1.570110,0.000000 +-1.581460,0.158767,-1.137670,0.365837,-1.570280,0.000000 +-1.581580,0.158884,-1.137790,0.365978,-1.570420,0.000000 +-1.581680,0.158977,-1.137880,0.366090,-1.570530,0.000000 +-1.581750,0.159051,-1.137960,0.366178,-1.570620,0.000000 +-1.581800,0.159106,-1.138010,0.366244,-1.570680,0.000000 +-1.581840,0.159145,-1.138050,0.366291,-1.570730,0.000000 +-1.581870,0.159171,-1.138080,0.366322,-1.570760,0.000000 +-1.581890,0.159187,-1.138090,0.366342,-1.570780,0.000000 +-1.581890,0.159196,-1.138100,0.366351,-1.570790,0.000000 +-1.581900,0.159199,-1.138100,0.366355,-1.570790,0.000000 +-1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +-1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +-1.581900,0.159203,-1.138110,0.366355,-1.570800,-0.000008 +-1.581890,0.159200,-1.138100,0.366352,-1.570790,-0.000008 +-1.581890,0.159191,-1.138100,0.366342,-1.570780,-0.000008 +-1.581870,0.159175,-1.138080,0.366323,-1.570760,-0.000008 +-1.581840,0.159149,-1.138050,0.366291,-1.570730,-0.000008 +-1.581800,0.159110,-1.138010,0.366244,-1.570680,-0.000008 +-1.581750,0.159055,-1.137960,0.366178,-1.570620,-0.000008 +-1.581680,0.158981,-1.137890,0.366091,-1.570530,-0.000008 +-1.581580,0.158888,-1.137790,0.365978,-1.570420,-0.000008 +-1.581470,0.158770,-1.137680,0.365838,-1.570280,-0.000008 +-1.581320,0.158628,-1.137530,0.365666,-1.570110,-0.000008 +-1.581150,0.158461,-1.137360,0.365460,-1.569900,-0.000008 +-1.580950,0.158273,-1.137160,0.365217,-1.569660,-0.000008 +-1.580710,0.158067,-1.136920,0.364933,-1.569370,-0.000008 +-1.580440,0.157844,-1.136650,0.364607,-1.569050,-0.000008 +-1.580130,0.157607,-1.136340,0.364240,-1.568670,-0.000008 +-1.579770,0.157360,-1.135980,0.363834,-1.568250,-0.000008 +-1.579370,0.157104,-1.135580,0.363394,-1.567770,-0.000008 +-1.578930,0.156843,-1.135140,0.362922,-1.567240,-0.000008 +-1.578440,0.156578,-1.134650,0.362421,-1.566650,-0.000008 +-1.577890,0.156313,-1.134100,0.361894,-1.565990,-0.000008 +-1.577290,0.156047,-1.133500,0.361346,-1.565280,-0.000008 +-1.576630,0.155782,-1.132840,0.360777,-1.564490,-0.000008 +-1.575920,0.155516,-1.132130,0.360193,-1.563630,-0.000008 +-1.575140,0.155251,-1.131350,0.359596,-1.562700,-0.000008 +-1.574290,0.154986,-1.130500,0.358988,-1.561680,-0.000008 +-1.573380,0.154720,-1.129590,0.358374,-1.560590,-0.000008 +-1.572400,0.154455,-1.128610,0.357756,-1.559420,-0.000008 +-1.571340,0.154189,-1.127560,0.357137,-1.558150,-0.000008 +-1.570210,0.153924,-1.126430,0.356518,-1.556800,-0.000008 +-1.569010,0.153658,-1.125240,0.355898,-1.555350,-0.000008 +-1.567720,0.153393,-1.123990,0.355279,-1.553820,-0.000008 +-1.566350,0.153128,-1.122670,0.354660,-1.552190,-0.000008 +-1.564890,0.152862,-1.121300,0.354041,-1.550490,-0.000008 +-1.563350,0.152597,-1.119870,0.353422,-1.548700,-0.000008 +-1.561730,0.152331,-1.118380,0.352803,-1.546830,-0.000008 +-1.560030,0.152066,-1.116850,0.352184,-1.544890,-0.000008 +-1.558250,0.151800,-1.115260,0.351565,-1.542870,-0.000008 +-1.556400,0.151535,-1.113630,0.350946,-1.540790,-0.000008 +-1.554480,0.151269,-1.111960,0.350327,-1.538640,-0.000008 +-1.552490,0.151004,-1.110240,0.349708,-1.536430,-0.000008 +-1.550430,0.150739,-1.108490,0.349089,-1.534170,-0.000008 +-1.548310,0.150473,-1.106700,0.348470,-1.531840,-0.000008 +-1.546130,0.150208,-1.104880,0.347851,-1.529460,-0.000008 +-1.543900,0.149942,-1.103020,0.347232,-1.527030,-0.000008 +-1.541600,0.149677,-1.101140,0.346612,-1.524560,-0.000008 +-1.539260,0.149411,-1.099240,0.345993,-1.522040,-0.000008 +-1.536860,0.149146,-1.097310,0.345374,-1.519480,-0.000008 +-1.534420,0.148881,-1.095360,0.344755,-1.516880,-0.000008 +-1.531930,0.148615,-1.093390,0.344136,-1.514250,-0.000008 +-1.529400,0.148350,-1.091410,0.343517,-1.511590,-0.000008 +-1.526830,0.148084,-1.089420,0.342898,-1.508900,-0.000008 +-1.524220,0.147819,-1.087420,0.342279,-1.506180,-0.000008 +-1.521580,0.147553,-1.085410,0.341660,-1.503440,-0.000008 +-1.518900,0.147288,-1.083390,0.341041,-1.500680,-0.000008 +-1.516200,0.147023,-1.081370,0.340422,-1.497910,-0.000008 +-1.513470,0.146757,-1.079360,0.339803,-1.495130,-0.000008 +-1.510710,0.146492,-1.077340,0.339184,-1.492330,-0.000008 +-1.507930,0.146226,-1.075320,0.338565,-1.489530,-0.000008 +-1.505140,0.145961,-1.073310,0.337945,-1.486720,-0.000008 +-1.502330,0.145695,-1.071290,0.337326,-1.483920,-0.000008 +-1.499500,0.145430,-1.069270,0.336707,-1.481110,-0.000008 +-1.496660,0.145164,-1.067260,0.336088,-1.478310,-0.000008 +-1.493810,0.144899,-1.065240,0.335469,-1.475500,-0.000008 +-1.490960,0.144634,-1.063220,0.334850,-1.472700,-0.000008 +-1.488110,0.144368,-1.061200,0.334231,-1.469890,-0.000008 +-1.485250,0.144103,-1.059190,0.333612,-1.467090,-0.000008 +-1.482390,0.143837,-1.057170,0.332993,-1.464280,-0.000008 +-1.479530,0.143572,-1.055150,0.332374,-1.461480,-0.000008 +-1.476680,0.143306,-1.053140,0.331755,-1.458670,-0.000008 +-1.473820,0.143041,-1.051120,0.331136,-1.455870,-0.000008 +-1.470960,0.142776,-1.049100,0.330517,-1.453060,-0.000008 +-1.468110,0.142510,-1.047080,0.329898,-1.450260,-0.000008 +-1.465250,0.142245,-1.045070,0.329278,-1.447450,-0.000008 +-1.462390,0.141979,-1.043050,0.328659,-1.444650,-0.000008 +-1.459530,0.141714,-1.041030,0.328040,-1.441840,-0.000008 +-1.456680,0.141448,-1.039020,0.327421,-1.439030,-0.000008 +-1.453820,0.141183,-1.037000,0.326802,-1.436230,-0.000008 +-1.450960,0.140918,-1.034980,0.326183,-1.433420,-0.000008 +-1.448100,0.140652,-1.032970,0.325564,-1.430620,-0.000008 +-1.445250,0.140387,-1.030950,0.324945,-1.427810,-0.000008 +-1.442390,0.140121,-1.028930,0.324326,-1.425010,-0.000008 +-1.439530,0.139856,-1.026910,0.323707,-1.422200,-0.000008 +-1.436680,0.139590,-1.024900,0.323088,-1.419400,-0.000008 +-1.433820,0.139325,-1.022880,0.322469,-1.416590,-0.000008 +-1.430960,0.139060,-1.020860,0.321850,-1.413790,-0.000008 +-1.428100,0.138794,-1.018850,0.321231,-1.410980,-0.000008 +-1.425250,0.138529,-1.016830,0.320612,-1.408180,-0.000008 +-1.422390,0.138263,-1.014810,0.319992,-1.405370,-0.000008 +-1.419530,0.137998,-1.012800,0.319373,-1.402570,-0.000008 +-1.416680,0.137732,-1.010780,0.318754,-1.399760,-0.000008 +-1.413820,0.137467,-1.008760,0.318135,-1.396960,-0.000008 +-1.410960,0.137201,-1.006740,0.317516,-1.394150,-0.000008 +-1.408100,0.136936,-1.004730,0.316897,-1.391340,-0.000008 +-1.405250,0.136671,-1.002710,0.316278,-1.388540,-0.000008 +-1.402390,0.136405,-1.000690,0.315659,-1.385730,-0.000008 +-1.399530,0.136140,-0.998677,0.315040,-1.382930,-0.000008 +-1.396680,0.135874,-0.996660,0.314421,-1.380120,-0.000008 +-1.393820,0.135609,-0.994643,0.313802,-1.377320,-0.000008 +-1.390960,0.135343,-0.992626,0.313183,-1.374510,-0.000008 +-1.388100,0.135078,-0.990609,0.312564,-1.371710,-0.000008 +-1.385250,0.134813,-0.988592,0.311945,-1.368900,-0.000008 +-1.382390,0.134547,-0.986575,0.311325,-1.366100,-0.000008 +-1.379530,0.134282,-0.984558,0.310706,-1.363290,-0.000008 +-1.376670,0.134016,-0.982541,0.310087,-1.360490,-0.000008 +-1.373820,0.133751,-0.980524,0.309468,-1.357680,-0.000008 +-1.370960,0.133485,-0.978507,0.308849,-1.354880,-0.000008 +-1.368100,0.133220,-0.976490,0.308230,-1.352070,-0.000008 +-1.365250,0.132955,-0.974473,0.307611,-1.349260,-0.000008 +-1.362390,0.132689,-0.972456,0.306992,-1.346460,-0.000008 +-1.359530,0.132424,-0.970439,0.306373,-1.343650,-0.000008 +-1.356670,0.132158,-0.968422,0.305754,-1.340850,-0.000008 +-1.353820,0.131893,-0.966405,0.305135,-1.338040,-0.000008 +-1.350960,0.131627,-0.964388,0.304516,-1.335240,-0.000008 +-1.348100,0.131362,-0.962371,0.303897,-1.332430,-0.000008 +-1.345250,0.131097,-0.960354,0.303278,-1.329630,-0.000008 +-1.342390,0.130831,-0.958337,0.302658,-1.326820,-0.000008 +-1.339530,0.130566,-0.956320,0.302039,-1.324020,-0.000008 +-1.336670,0.130300,-0.954303,0.301420,-1.321210,-0.000008 +-1.333820,0.130035,-0.952286,0.300801,-1.318410,-0.000008 +-1.330960,0.129769,-0.950269,0.300182,-1.315600,-0.000008 +-1.328100,0.129504,-0.948252,0.299563,-1.312800,-0.000008 +-1.325250,0.129238,-0.946235,0.298944,-1.309990,-0.000008 +-1.322390,0.128973,-0.944218,0.298325,-1.307190,-0.000008 +-1.319530,0.128708,-0.942201,0.297706,-1.304380,-0.000008 +-1.316670,0.128442,-0.940184,0.297087,-1.301570,-0.000008 +-1.313820,0.128177,-0.938167,0.296468,-1.298770,-0.000008 +-1.310960,0.127911,-0.936150,0.295849,-1.295960,-0.000008 +-1.308100,0.127646,-0.934133,0.295230,-1.293160,-0.000008 +-1.305240,0.127380,-0.932116,0.294611,-1.290350,-0.000008 +-1.302390,0.127115,-0.930099,0.293992,-1.287550,-0.000008 +-1.299530,0.126850,-0.928081,0.293372,-1.284740,-0.000008 +-1.296670,0.126584,-0.926064,0.292753,-1.281940,-0.000008 +-1.293820,0.126319,-0.924047,0.292134,-1.279130,-0.000008 +-1.290960,0.126053,-0.922030,0.291515,-1.276330,-0.000008 +-1.288100,0.125788,-0.920013,0.290896,-1.273520,-0.000008 +-1.285240,0.125522,-0.917996,0.290277,-1.270720,-0.000008 +-1.282390,0.125257,-0.915979,0.289658,-1.267910,-0.000008 +-1.279530,0.124992,-0.913962,0.289039,-1.265110,-0.000008 +-1.276670,0.124726,-0.911945,0.288420,-1.262300,-0.000008 +-1.273820,0.124461,-0.909928,0.287801,-1.259500,-0.000008 +-1.270960,0.124195,-0.907911,0.287182,-1.256690,-0.000008 +-1.268100,0.123930,-0.905894,0.286563,-1.253880,-0.000008 +-1.265240,0.123664,-0.903877,0.285944,-1.251080,-0.000008 +-1.262390,0.123399,-0.901860,0.285325,-1.248270,-0.000008 +-1.259530,0.123134,-0.899843,0.284705,-1.245470,-0.000008 +-1.256670,0.122868,-0.897826,0.284086,-1.242660,-0.000008 +-1.253820,0.122603,-0.895809,0.283467,-1.239860,-0.000008 +-1.250960,0.122337,-0.893792,0.282848,-1.237050,-0.000008 +-1.248100,0.122072,-0.891775,0.282229,-1.234250,-0.000008 +-1.245240,0.121806,-0.889758,0.281610,-1.231440,-0.000008 +-1.242390,0.121541,-0.887741,0.280991,-1.228640,-0.000008 +-1.239530,0.121275,-0.885724,0.280372,-1.225830,-0.000008 +-1.236670,0.121010,-0.883707,0.279753,-1.223030,-0.000008 +-1.233810,0.120745,-0.881690,0.279134,-1.220220,-0.000008 +-1.230960,0.120479,-0.879673,0.278515,-1.217420,-0.000008 +-1.228100,0.120214,-0.877656,0.277896,-1.214610,-0.000008 +-1.225240,0.119948,-0.875639,0.277277,-1.211800,-0.000008 +-1.222390,0.119683,-0.873622,0.276658,-1.209000,-0.000008 +-1.219530,0.119417,-0.871605,0.276038,-1.206190,-0.000008 +-1.216670,0.119152,-0.869588,0.275419,-1.203390,-0.000008 +-1.213810,0.118887,-0.867571,0.274800,-1.200580,-0.000008 +-1.210960,0.118621,-0.865554,0.274181,-1.197780,-0.000008 +-1.208100,0.118356,-0.863537,0.273562,-1.194970,-0.000008 +-1.205240,0.118090,-0.861520,0.272943,-1.192170,-0.000008 +-1.202390,0.117825,-0.859503,0.272324,-1.189360,-0.000008 +-1.199530,0.117559,-0.857486,0.271705,-1.186560,-0.000008 +-1.196670,0.117294,-0.855469,0.271086,-1.183750,-0.000008 +-1.193810,0.117029,-0.853452,0.270467,-1.180950,-0.000008 +-1.190960,0.116763,-0.851435,0.269848,-1.178140,-0.000008 +-1.188100,0.116498,-0.849418,0.269229,-1.175340,-0.000008 +-1.185240,0.116232,-0.847401,0.268610,-1.172530,-0.000008 +-1.182390,0.115967,-0.845384,0.267991,-1.169730,-0.000008 +-1.179530,0.115701,-0.843367,0.267372,-1.166920,-0.000008 +-1.176670,0.115436,-0.841350,0.266752,-1.164110,-0.000008 +-1.173810,0.115171,-0.839333,0.266133,-1.161310,-0.000008 +-1.170960,0.114905,-0.837316,0.265514,-1.158500,-0.000008 +-1.168100,0.114640,-0.835299,0.264895,-1.155700,-0.000008 +-1.165240,0.114374,-0.833282,0.264276,-1.152890,-0.000008 +-1.162380,0.114109,-0.831265,0.263657,-1.150090,-0.000008 +-1.159530,0.113843,-0.829248,0.263038,-1.147280,-0.000008 +-1.156670,0.113578,-0.827231,0.262419,-1.144480,-0.000008 +-1.153810,0.113312,-0.825214,0.261800,-1.141670,-0.000008 +-1.150960,0.113047,-0.823197,0.261181,-1.138870,-0.000008 +-1.148100,0.112782,-0.821180,0.260562,-1.136060,-0.000008 +-1.145240,0.112516,-0.819163,0.259943,-1.133260,-0.000008 +-1.142380,0.112251,-0.817146,0.259324,-1.130450,-0.000008 +-1.139530,0.111985,-0.815129,0.258705,-1.127650,-0.000008 +-1.136670,0.111720,-0.813112,0.258085,-1.124840,-0.000008 +-1.133810,0.111454,-0.811095,0.257466,-1.122040,-0.000008 +-1.130960,0.111189,-0.809078,0.256847,-1.119230,-0.000008 +-1.128100,0.110924,-0.807061,0.256228,-1.116420,-0.000008 +-1.125240,0.110658,-0.805044,0.255609,-1.113620,-0.000008 +-1.122380,0.110393,-0.803027,0.254990,-1.110810,-0.000008 +-1.119530,0.110127,-0.801010,0.254371,-1.108010,-0.000008 +-1.116670,0.109862,-0.798993,0.253752,-1.105200,-0.000008 +-1.113810,0.109596,-0.796976,0.253133,-1.102400,-0.000008 +-1.110960,0.109331,-0.794959,0.252514,-1.099590,-0.000008 +-1.108100,0.109066,-0.792942,0.251895,-1.096790,-0.000008 +-1.105240,0.108800,-0.790925,0.251276,-1.093980,-0.000008 +-1.102380,0.108535,-0.788908,0.250657,-1.091180,-0.000008 +-1.099530,0.108269,-0.786891,0.250038,-1.088370,-0.000008 +-1.096670,0.108004,-0.784874,0.249419,-1.085570,-0.000008 +-1.093810,0.107738,-0.782857,0.248799,-1.082760,-0.000008 +-1.090950,0.107473,-0.780840,0.248180,-1.079960,-0.000008 +-1.088100,0.107207,-0.778823,0.247561,-1.077150,-0.000008 +-1.085240,0.106942,-0.776806,0.246942,-1.074340,-0.000008 +-1.082380,0.106677,-0.774789,0.246323,-1.071540,-0.000008 +-1.079530,0.106411,-0.772772,0.245704,-1.068730,-0.000008 +-1.076670,0.106146,-0.770755,0.245085,-1.065930,-0.000008 +-1.073810,0.105880,-0.768738,0.244466,-1.063120,-0.000008 +-1.070950,0.105615,-0.766721,0.243847,-1.060320,-0.000008 +-1.068100,0.105349,-0.764704,0.243228,-1.057510,-0.000008 +-1.065240,0.105084,-0.762687,0.242609,-1.054710,-0.000008 +-1.062380,0.104819,-0.760670,0.241990,-1.051900,-0.000008 +-1.059530,0.104553,-0.758653,0.241371,-1.049100,-0.000008 +-1.056670,0.104288,-0.756636,0.240752,-1.046290,-0.000008 +-1.053810,0.104022,-0.754619,0.240132,-1.043490,-0.000008 +-1.050950,0.103757,-0.752602,0.239513,-1.040680,-0.000008 +-1.048100,0.103491,-0.750585,0.238894,-1.037880,-0.000008 +-1.045240,0.103226,-0.748568,0.238275,-1.035070,-0.000008 +-1.042380,0.102961,-0.746551,0.237656,-1.032270,-0.000008 +-1.039530,0.102695,-0.744534,0.237037,-1.029460,-0.000008 +-1.036670,0.102430,-0.742517,0.236418,-1.026650,-0.000008 +-1.033810,0.102164,-0.740500,0.235799,-1.023850,-0.000008 +-1.030950,0.101899,-0.738483,0.235180,-1.021040,-0.000008 +-1.028100,0.101633,-0.736466,0.234561,-1.018240,-0.000008 +-1.025240,0.101368,-0.734449,0.233942,-1.015430,-0.000008 +-1.022380,0.101103,-0.732432,0.233323,-1.012630,-0.000008 +-1.019520,0.100837,-0.730415,0.232704,-1.009820,-0.000008 +-1.016670,0.100572,-0.728398,0.232085,-1.007020,-0.000008 +-1.013810,0.100306,-0.726381,0.231465,-1.004210,-0.000008 +-1.010950,0.100041,-0.724364,0.230846,-1.001410,-0.000008 +-1.008100,0.099775,-0.722347,0.230227,-0.998602,-0.000008 +-1.005240,0.099510,-0.720330,0.229608,-0.995796,-0.000008 +-1.002380,0.099244,-0.718313,0.228989,-0.992991,-0.000008 +-0.999525,0.098979,-0.716296,0.228370,-0.990186,-0.000008 +-0.996667,0.098714,-0.714279,0.227751,-0.987380,-0.000008 +-0.993810,0.098448,-0.712262,0.227132,-0.984575,-0.000008 +-0.990953,0.098183,-0.710245,0.226513,-0.981770,-0.000008 +-0.988096,0.097917,-0.708228,0.225894,-0.978964,-0.000008 +-0.985239,0.097652,-0.706211,0.225275,-0.976159,-0.000008 +-0.982381,0.097387,-0.704194,0.224656,-0.973354,-0.000008 +-0.979524,0.097121,-0.702177,0.224037,-0.970548,-0.000008 +-0.976667,0.096856,-0.700160,0.223418,-0.967743,-0.000008 +-0.973810,0.096590,-0.698143,0.222799,-0.964938,-0.000008 +-0.970953,0.096325,-0.696126,0.222179,-0.962133,-0.000008 +-0.968095,0.096059,-0.694109,0.221560,-0.959327,-0.000008 +-0.965238,0.095794,-0.692092,0.220941,-0.956522,-0.000008 +-0.962381,0.095528,-0.690075,0.220322,-0.953717,-0.000008 +-0.959524,0.095263,-0.688058,0.219703,-0.950911,-0.000008 +-0.956667,0.094998,-0.686041,0.219084,-0.948106,-0.000008 +-0.953809,0.094732,-0.684024,0.218465,-0.945301,-0.000008 +-0.950952,0.094467,-0.682007,0.217846,-0.942495,-0.000008 +-0.948095,0.094201,-0.679990,0.217227,-0.939690,-0.000008 +-0.945238,0.093936,-0.677973,0.216608,-0.936885,-0.000008 +-0.942381,0.093670,-0.675956,0.215989,-0.934079,-0.000008 +-0.939523,0.093405,-0.673939,0.215370,-0.931274,-0.000008 +-0.936666,0.093140,-0.671922,0.214751,-0.928469,-0.000008 +-0.933809,0.092874,-0.669905,0.214132,-0.925664,-0.000008 +-0.930952,0.092609,-0.667888,0.213512,-0.922858,-0.000008 +-0.928095,0.092343,-0.665871,0.212893,-0.920053,-0.000008 +-0.925237,0.092078,-0.663854,0.212274,-0.917248,-0.000008 +-0.922380,0.091812,-0.661837,0.211655,-0.914442,-0.000008 +-0.919523,0.091547,-0.659820,0.211036,-0.911637,-0.000008 +-0.916666,0.091282,-0.657803,0.210417,-0.908832,-0.000008 +-0.913809,0.091016,-0.655786,0.209798,-0.906026,-0.000008 +-0.910951,0.090751,-0.653769,0.209179,-0.903221,-0.000008 +-0.908094,0.090485,-0.651751,0.208560,-0.900416,-0.000008 +-0.905237,0.090220,-0.649734,0.207941,-0.897610,-0.000008 +-0.902380,0.089954,-0.647717,0.207322,-0.894805,-0.000008 +-0.899523,0.089689,-0.645700,0.206703,-0.892000,-0.000008 +-0.896665,0.089423,-0.643683,0.206084,-0.889195,-0.000008 +-0.893808,0.089158,-0.641666,0.205465,-0.886389,-0.000008 +-0.890951,0.088893,-0.639649,0.204845,-0.883584,-0.000008 +-0.888094,0.088627,-0.637632,0.204226,-0.880779,-0.000008 +-0.885237,0.088362,-0.635615,0.203607,-0.877973,-0.000008 +-0.882379,0.088096,-0.633598,0.202988,-0.875168,-0.000008 +-0.879522,0.087831,-0.631581,0.202369,-0.872363,-0.000008 +-0.876665,0.087565,-0.629564,0.201750,-0.869557,-0.000008 +-0.873808,0.087300,-0.627547,0.201131,-0.866752,-0.000008 +-0.870951,0.087035,-0.625530,0.200512,-0.863947,-0.000008 +-0.868093,0.086769,-0.623513,0.199893,-0.861141,-0.000008 +-0.865236,0.086504,-0.621496,0.199274,-0.858336,-0.000008 +-0.862379,0.086238,-0.619479,0.198655,-0.855531,-0.000008 +-0.859522,0.085973,-0.617462,0.198036,-0.852726,-0.000008 +-0.856665,0.085707,-0.615445,0.197417,-0.849920,-0.000008 +-0.853807,0.085442,-0.613428,0.196798,-0.847115,-0.000008 +-0.850950,0.085177,-0.611411,0.196179,-0.844310,-0.000008 +-0.848093,0.084911,-0.609394,0.195559,-0.841504,-0.000008 +-0.845236,0.084646,-0.607377,0.194940,-0.838699,-0.000008 +-0.842379,0.084380,-0.605360,0.194321,-0.835894,-0.000008 +-0.839521,0.084115,-0.603343,0.193702,-0.833088,-0.000008 +-0.836664,0.083849,-0.601326,0.193083,-0.830283,-0.000008 +-0.833807,0.083584,-0.599309,0.192464,-0.827478,-0.000008 +-0.830950,0.083319,-0.597292,0.191845,-0.824672,-0.000008 +-0.828093,0.083053,-0.595275,0.191226,-0.821867,-0.000008 +-0.825235,0.082788,-0.593258,0.190607,-0.819062,-0.000008 +-0.822378,0.082522,-0.591241,0.189988,-0.816257,-0.000008 +-0.819521,0.082257,-0.589224,0.189369,-0.813451,-0.000008 +-0.816664,0.081991,-0.587207,0.188750,-0.810646,-0.000008 +-0.813807,0.081726,-0.585190,0.188131,-0.807841,-0.000008 +-0.810949,0.081460,-0.583173,0.187512,-0.805035,-0.000008 +-0.808092,0.081195,-0.581156,0.186892,-0.802230,-0.000008 +-0.805235,0.080930,-0.579139,0.186273,-0.799425,-0.000008 +-0.802378,0.080664,-0.577122,0.185654,-0.796619,-0.000008 +-0.799521,0.080399,-0.575105,0.185035,-0.793814,-0.000008 +-0.796663,0.080133,-0.573088,0.184416,-0.791009,-0.000008 +-0.793806,0.079868,-0.571071,0.183797,-0.788203,-0.000008 +-0.790949,0.079602,-0.569054,0.183178,-0.785398,-0.000008 +-0.788092,0.079337,-0.567037,0.182559,-0.782593,-0.000008 +-0.785235,0.079072,-0.565020,0.181940,-0.779788,-0.000008 +-0.782377,0.078806,-0.563003,0.181321,-0.776982,-0.000008 +-0.779520,0.078541,-0.560986,0.180702,-0.774177,-0.000008 +-0.776663,0.078275,-0.558969,0.180083,-0.771372,-0.000008 +-0.773806,0.078010,-0.556952,0.179464,-0.768566,-0.000008 +-0.770949,0.077744,-0.554935,0.178845,-0.765761,-0.000008 +-0.768091,0.077479,-0.552918,0.178225,-0.762956,-0.000008 +-0.765234,0.077214,-0.550901,0.177606,-0.760150,-0.000008 +-0.762377,0.076948,-0.548884,0.176987,-0.757345,-0.000008 +-0.759520,0.076683,-0.546867,0.176368,-0.754540,-0.000008 +-0.756663,0.076417,-0.544850,0.175749,-0.751734,-0.000008 +-0.753805,0.076152,-0.542833,0.175130,-0.748929,-0.000008 +-0.750948,0.075886,-0.540816,0.174511,-0.746124,-0.000008 +-0.748091,0.075621,-0.538799,0.173892,-0.743319,-0.000008 +-0.745234,0.075356,-0.536782,0.173273,-0.740513,-0.000008 +-0.742377,0.075090,-0.534765,0.172654,-0.737708,-0.000008 +-0.739519,0.074825,-0.532748,0.172035,-0.734903,-0.000008 +-0.736662,0.074559,-0.530731,0.171416,-0.732097,-0.000008 +-0.733805,0.074294,-0.528714,0.170797,-0.729292,-0.000008 +-0.730948,0.074028,-0.526697,0.170178,-0.726487,-0.000008 +-0.728091,0.073763,-0.524680,0.169559,-0.723681,-0.000008 +-0.725233,0.073497,-0.522663,0.168939,-0.720876,-0.000008 +-0.722376,0.073232,-0.520646,0.168320,-0.718071,-0.000008 +-0.719519,0.072967,-0.518629,0.167701,-0.715265,-0.000008 +-0.716662,0.072701,-0.516612,0.167082,-0.712460,-0.000008 +-0.713805,0.072436,-0.514595,0.166463,-0.709655,-0.000008 +-0.710948,0.072170,-0.512578,0.165844,-0.706850,-0.000008 +-0.708090,0.071905,-0.510561,0.165225,-0.704044,-0.000008 +-0.705233,0.071639,-0.508544,0.164606,-0.701239,-0.000008 +-0.702376,0.071374,-0.506527,0.163987,-0.698434,-0.000008 +-0.699519,0.071109,-0.504510,0.163368,-0.695628,-0.000008 +-0.696662,0.070843,-0.502493,0.162749,-0.692823,-0.000008 +-0.693804,0.070578,-0.500476,0.162130,-0.690018,-0.000008 +-0.690947,0.070312,-0.498459,0.161511,-0.687212,-0.000008 +-0.688090,0.070047,-0.496442,0.160892,-0.684407,-0.000008 +-0.685233,0.069781,-0.494425,0.160272,-0.681602,-0.000008 +-0.682376,0.069516,-0.492408,0.159653,-0.678797,-0.000008 +-0.679518,0.069251,-0.490391,0.159034,-0.675991,-0.000008 +-0.676661,0.068985,-0.488374,0.158415,-0.673186,-0.000008 +-0.673804,0.068720,-0.486357,0.157796,-0.670381,-0.000008 +-0.670947,0.068454,-0.484340,0.157177,-0.667575,-0.000008 +-0.668090,0.068189,-0.482323,0.156558,-0.664770,-0.000008 +-0.665232,0.067923,-0.480306,0.155939,-0.661965,-0.000008 +-0.662375,0.067658,-0.478289,0.155320,-0.659159,-0.000008 +-0.659518,0.067392,-0.476272,0.154701,-0.656354,-0.000008 +-0.656661,0.067127,-0.474255,0.154082,-0.653549,-0.000008 +-0.653804,0.066862,-0.472238,0.153463,-0.650743,-0.000008 +-0.650946,0.066596,-0.470221,0.152844,-0.647938,-0.000008 +-0.648089,0.066331,-0.468204,0.152225,-0.645133,-0.000008 +-0.645232,0.066065,-0.466187,0.151606,-0.642328,-0.000008 +-0.642375,0.065800,-0.464170,0.150986,-0.639522,-0.000008 +-0.639518,0.065534,-0.462153,0.150367,-0.636717,-0.000008 +-0.636660,0.065269,-0.460136,0.149748,-0.633912,-0.000008 +-0.633803,0.065004,-0.458119,0.149129,-0.631106,-0.000008 +-0.630946,0.064738,-0.456102,0.148510,-0.628301,-0.000008 +-0.628089,0.064473,-0.454085,0.147891,-0.625496,-0.000008 +-0.625232,0.064207,-0.452068,0.147272,-0.622690,-0.000008 +-0.622374,0.063942,-0.450051,0.146653,-0.619885,-0.000008 +-0.619517,0.063676,-0.448034,0.146034,-0.617080,-0.000008 +-0.616660,0.063411,-0.446017,0.145415,-0.614274,-0.000008 +-0.613803,0.063145,-0.444000,0.144796,-0.611469,-0.000008 +-0.610946,0.062880,-0.441983,0.144177,-0.608664,-0.000008 +-0.608088,0.062615,-0.439966,0.143558,-0.605859,-0.000008 +-0.605231,0.062349,-0.437949,0.142939,-0.603053,-0.000008 +-0.602374,0.062084,-0.435932,0.142319,-0.600248,-0.000008 +-0.599517,0.061818,-0.433915,0.141700,-0.597443,-0.000008 +-0.596660,0.061553,-0.431898,0.141081,-0.594637,-0.000008 +-0.593802,0.061288,-0.429881,0.140462,-0.591832,-0.000008 +-0.590945,0.061022,-0.427864,0.139843,-0.589027,-0.000008 +-0.588088,0.060757,-0.425847,0.139224,-0.586221,-0.000008 +-0.585231,0.060491,-0.423830,0.138605,-0.583416,-0.000008 +-0.582374,0.060226,-0.421813,0.137986,-0.580611,-0.000008 +-0.579516,0.059960,-0.419796,0.137367,-0.577805,-0.000008 +-0.576659,0.059695,-0.417779,0.136748,-0.575000,-0.000008 +-0.573802,0.059430,-0.415762,0.136129,-0.572195,-0.000008 +-0.570945,0.059164,-0.413745,0.135510,-0.569390,-0.000008 +-0.568088,0.058899,-0.411728,0.134891,-0.566584,-0.000008 +-0.565230,0.058633,-0.409711,0.134272,-0.563779,-0.000008 +-0.562373,0.058368,-0.407694,0.133652,-0.560974,-0.000008 +-0.559516,0.058102,-0.405677,0.133033,-0.558168,-0.000008 +-0.556659,0.057837,-0.403660,0.132414,-0.555363,-0.000008 +-0.553802,0.057571,-0.401643,0.131795,-0.552558,-0.000008 +-0.550944,0.057306,-0.399626,0.131176,-0.549752,-0.000008 +-0.548087,0.057041,-0.397609,0.130557,-0.546947,-0.000008 +-0.545230,0.056775,-0.395592,0.129938,-0.544142,-0.000008 +-0.542373,0.056510,-0.393575,0.129319,-0.541336,-0.000008 +-0.539516,0.056244,-0.391558,0.128700,-0.538531,-0.000008 +-0.536658,0.055979,-0.389541,0.128081,-0.535726,-0.000008 +-0.533801,0.055713,-0.387524,0.127462,-0.532921,-0.000008 +-0.530944,0.055448,-0.385507,0.126843,-0.530115,-0.000008 +-0.528087,0.055183,-0.383490,0.126224,-0.527310,-0.000008 +-0.525230,0.054917,-0.381473,0.125605,-0.524505,-0.000008 +-0.522372,0.054652,-0.379456,0.124986,-0.521699,-0.000008 +-0.519515,0.054386,-0.377439,0.124366,-0.518894,-0.000008 +-0.516658,0.054121,-0.375421,0.123747,-0.516089,-0.000008 +-0.513801,0.053855,-0.373404,0.123128,-0.513283,-0.000008 +-0.510944,0.053590,-0.371387,0.122509,-0.510478,-0.000008 +-0.508086,0.053324,-0.369370,0.121890,-0.507673,-0.000008 +-0.505229,0.053059,-0.367353,0.121271,-0.504867,-0.000008 +-0.502372,0.052794,-0.365336,0.120652,-0.502062,-0.000008 +-0.499515,0.052528,-0.363319,0.120033,-0.499257,-0.000008 +-0.496658,0.052263,-0.361302,0.119414,-0.496452,-0.000008 +-0.493800,0.051997,-0.359285,0.118795,-0.493646,-0.000008 +-0.490943,0.051732,-0.357268,0.118176,-0.490841,-0.000008 +-0.488086,0.051466,-0.355251,0.117557,-0.488036,-0.000008 +-0.485229,0.051201,-0.353234,0.116938,-0.485230,-0.000008 +-0.482372,0.050936,-0.351217,0.116319,-0.482425,-0.000008 +-0.479514,0.050670,-0.349200,0.115699,-0.479620,-0.000008 +-0.476657,0.050405,-0.347183,0.115080,-0.476814,-0.000008 +-0.473800,0.050139,-0.345166,0.114461,-0.474009,-0.000008 +-0.470943,0.049874,-0.343149,0.113842,-0.471204,-0.000008 +-0.468086,0.049608,-0.341132,0.113223,-0.468398,-0.000008 +-0.465228,0.049343,-0.339115,0.112604,-0.465593,-0.000008 +-0.462371,0.049078,-0.337098,0.111985,-0.462788,-0.000008 +-0.459514,0.048812,-0.335081,0.111366,-0.459983,-0.000008 +-0.456657,0.048547,-0.333064,0.110747,-0.457177,-0.000008 +-0.453800,0.048281,-0.331047,0.110128,-0.454372,-0.000008 +-0.450942,0.048016,-0.329030,0.109509,-0.451567,-0.000008 +-0.448085,0.047750,-0.327013,0.108890,-0.448761,-0.000008 +-0.445228,0.047485,-0.324996,0.108271,-0.445956,-0.000008 +-0.442371,0.047219,-0.322979,0.107652,-0.443151,-0.000008 +-0.439514,0.046954,-0.320962,0.107032,-0.440345,-0.000008 +-0.436656,0.046689,-0.318945,0.106413,-0.437540,-0.000008 +-0.433799,0.046423,-0.316928,0.105794,-0.434735,-0.000008 +-0.430942,0.046158,-0.314911,0.105175,-0.431929,-0.000008 +-0.428085,0.045892,-0.312894,0.104556,-0.429124,-0.000008 +-0.425228,0.045627,-0.310877,0.103937,-0.426319,-0.000008 +-0.422370,0.045361,-0.308860,0.103318,-0.423514,-0.000008 +-0.419513,0.045096,-0.306843,0.102699,-0.420708,-0.000008 +-0.416656,0.044831,-0.304826,0.102080,-0.417903,-0.000008 +-0.413799,0.044565,-0.302809,0.101461,-0.415098,-0.000008 +-0.410942,0.044300,-0.300792,0.100842,-0.412292,-0.000008 +-0.408084,0.044034,-0.298775,0.100223,-0.409487,-0.000008 +-0.405227,0.043769,-0.296758,0.099604,-0.406682,-0.000008 +-0.402370,0.043503,-0.294741,0.098985,-0.403876,-0.000008 +-0.399513,0.043238,-0.292724,0.098365,-0.401071,-0.000008 +-0.396656,0.042973,-0.290707,0.097746,-0.398266,-0.000008 +-0.393798,0.042707,-0.288690,0.097127,-0.395460,-0.000008 +-0.390941,0.042442,-0.286673,0.096508,-0.392655,-0.000008 +-0.388084,0.042176,-0.284656,0.095889,-0.389850,-0.000008 +-0.385227,0.041911,-0.282639,0.095270,-0.387045,-0.000008 +-0.382370,0.041645,-0.280622,0.094651,-0.384239,-0.000008 +-0.379513,0.041380,-0.278605,0.094032,-0.381434,-0.000008 +-0.376655,0.041114,-0.276588,0.093413,-0.378629,-0.000008 +-0.373798,0.040849,-0.274571,0.092794,-0.375823,-0.000008 +-0.370941,0.040584,-0.272554,0.092175,-0.373018,-0.000008 +-0.368084,0.040318,-0.270537,0.091556,-0.370213,-0.000008 +-0.365227,0.040053,-0.268520,0.090937,-0.367407,-0.000008 +-0.362369,0.039787,-0.266503,0.090318,-0.364602,-0.000008 +-0.359512,0.039522,-0.264486,0.089699,-0.361797,-0.000008 +-0.356655,0.039257,-0.262469,0.089080,-0.358991,-0.000008 +-0.353798,0.038991,-0.260452,0.088460,-0.356186,-0.000008 +-0.350941,0.038726,-0.258435,0.087841,-0.353381,-0.000008 +-0.348083,0.038460,-0.256418,0.087222,-0.350576,-0.000008 +-0.345226,0.038195,-0.254401,0.086603,-0.347770,-0.000008 +-0.342369,0.037929,-0.252384,0.085984,-0.344965,-0.000008 +-0.339512,0.037664,-0.250367,0.085365,-0.342160,-0.000008 +-0.336655,0.037399,-0.248350,0.084746,-0.339354,-0.000008 +-0.333797,0.037133,-0.246333,0.084127,-0.336549,-0.000008 +-0.330940,0.036868,-0.244316,0.083508,-0.333744,-0.000008 +-0.328083,0.036602,-0.242299,0.082889,-0.330938,-0.000008 +-0.325226,0.036337,-0.240282,0.082270,-0.328133,-0.000008 +-0.322369,0.036071,-0.238265,0.081651,-0.325328,-0.000008 +-0.319511,0.035806,-0.236248,0.081032,-0.322523,-0.000008 +-0.316654,0.035540,-0.234231,0.080412,-0.319717,-0.000008 +-0.313797,0.035275,-0.232214,0.079793,-0.316912,-0.000008 +-0.310940,0.035010,-0.230197,0.079174,-0.314107,-0.000008 +-0.308083,0.034744,-0.228180,0.078555,-0.311301,-0.000008 +-0.305225,0.034479,-0.226163,0.077936,-0.308496,-0.000008 +-0.302368,0.034213,-0.224146,0.077317,-0.305691,-0.000008 +-0.299511,0.033948,-0.222129,0.076698,-0.302885,-0.000008 +-0.296654,0.033682,-0.220112,0.076079,-0.300080,-0.000008 +-0.293797,0.033417,-0.218095,0.075460,-0.297275,-0.000008 +-0.290939,0.033152,-0.216078,0.074841,-0.294469,-0.000008 +-0.288082,0.032886,-0.214061,0.074222,-0.291664,-0.000008 +-0.285225,0.032621,-0.212044,0.073603,-0.288859,-0.000008 +-0.282368,0.032355,-0.210027,0.072984,-0.286054,-0.000008 +-0.279511,0.032090,-0.208010,0.072365,-0.283248,-0.000008 +-0.276653,0.031824,-0.205993,0.071746,-0.280443,-0.000008 +-0.273796,0.031559,-0.203976,0.071126,-0.277638,-0.000008 +-0.270939,0.031294,-0.201959,0.070507,-0.274832,-0.000008 +-0.268082,0.031028,-0.199942,0.069888,-0.272027,-0.000008 +-0.265225,0.030763,-0.197925,0.069269,-0.269222,-0.000008 +-0.262367,0.030497,-0.195908,0.068650,-0.266416,-0.000008 +-0.259510,0.030232,-0.193891,0.068031,-0.263611,-0.000008 +-0.256653,0.029966,-0.191874,0.067412,-0.260806,-0.000008 +-0.253796,0.029701,-0.189857,0.066793,-0.258000,-0.000008 +-0.250939,0.029436,-0.187840,0.066174,-0.255195,-0.000008 +-0.248081,0.029170,-0.185823,0.065555,-0.252390,-0.000008 +-0.245224,0.028905,-0.183806,0.064936,-0.249585,-0.000008 +-0.242367,0.028639,-0.181789,0.064317,-0.246779,-0.000008 +-0.239510,0.028374,-0.179772,0.063698,-0.243974,-0.000008 +-0.236653,0.028108,-0.177755,0.063079,-0.241169,-0.000008 +-0.233795,0.027843,-0.175738,0.062460,-0.238363,-0.000008 +-0.230938,0.027577,-0.173721,0.061840,-0.235558,-0.000008 +-0.228081,0.027312,-0.171704,0.061221,-0.232753,-0.000008 +-0.225224,0.027047,-0.169687,0.060602,-0.229947,-0.000008 +-0.222367,0.026781,-0.167670,0.059983,-0.227142,-0.000008 +-0.219509,0.026516,-0.165653,0.059364,-0.224337,-0.000008 +-0.216652,0.026250,-0.163636,0.058745,-0.221531,-0.000008 +-0.213795,0.025985,-0.161619,0.058126,-0.218726,-0.000008 +-0.210938,0.025719,-0.159602,0.057507,-0.215921,-0.000008 +-0.208081,0.025454,-0.157585,0.056888,-0.213116,-0.000008 +-0.205223,0.025188,-0.155568,0.056269,-0.210310,-0.000008 +-0.202366,0.024923,-0.153551,0.055650,-0.207505,-0.000008 +-0.199509,0.024658,-0.151534,0.055031,-0.204700,-0.000008 +-0.196652,0.024392,-0.149517,0.054412,-0.201894,-0.000008 +-0.193795,0.024127,-0.147500,0.053793,-0.199089,-0.000008 +-0.190937,0.023861,-0.145483,0.053173,-0.196284,-0.000008 +-0.188080,0.023596,-0.143466,0.052554,-0.193478,-0.000008 +-0.185223,0.023331,-0.141449,0.051935,-0.190673,-0.000008 +-0.182366,0.023065,-0.139432,0.051316,-0.187868,-0.000008 +-0.179509,0.022800,-0.137415,0.050697,-0.185062,-0.000008 +-0.176651,0.022534,-0.135398,0.050078,-0.182257,-0.000008 +-0.173794,0.022269,-0.133381,0.049459,-0.179452,-0.000008 +-0.170937,0.022003,-0.131364,0.048840,-0.176647,-0.000008 +-0.168080,0.021738,-0.129347,0.048221,-0.173841,-0.000008 +-0.165223,0.021472,-0.127330,0.047602,-0.171036,-0.000008 +-0.162365,0.021207,-0.125313,0.046983,-0.168231,-0.000008 +-0.159508,0.020942,-0.123296,0.046364,-0.165425,-0.000008 +-0.156651,0.020676,-0.121279,0.045745,-0.162620,-0.000008 +-0.153794,0.020411,-0.119262,0.045125,-0.159815,-0.000008 +-0.150937,0.020145,-0.117245,0.044506,-0.157009,-0.000008 +-0.148079,0.019880,-0.115228,0.043887,-0.154204,-0.000008 +-0.145222,0.019614,-0.113211,0.043268,-0.151399,-0.000008 +-0.142365,0.019349,-0.111194,0.042649,-0.148593,-0.000008 +-0.139508,0.019084,-0.109177,0.042030,-0.145788,-0.000008 +-0.136651,0.018818,-0.107160,0.041411,-0.142983,-0.000008 +-0.133793,0.018553,-0.105143,0.040792,-0.140178,-0.000008 +-0.130936,0.018287,-0.103126,0.040173,-0.137372,-0.000008 +-0.128079,0.018022,-0.101109,0.039554,-0.134567,-0.000008 +-0.125222,0.017756,-0.099091,0.038935,-0.131762,-0.000008 +-0.122365,0.017491,-0.097074,0.038316,-0.128956,-0.000008 +-0.119507,0.017226,-0.095058,0.037697,-0.126151,-0.000008 +-0.116650,0.016960,-0.093040,0.037078,-0.123346,-0.000008 +-0.113793,0.016695,-0.091023,0.036459,-0.120540,-0.000008 +-0.110936,0.016429,-0.089007,0.035840,-0.117735,-0.000008 +-0.108079,0.016164,-0.086989,0.035220,-0.114930,-0.000008 +-0.105221,0.015898,-0.084972,0.034601,-0.112124,-0.000008 +-0.102364,0.015633,-0.082955,0.033982,-0.109319,-0.000008 +-0.099507,0.015367,-0.080938,0.033363,-0.106514,-0.000008 +-0.096650,0.015102,-0.078921,0.032744,-0.103709,-0.000008 +-0.093793,0.014837,-0.076904,0.032125,-0.100903,-0.000008 +-0.090937,0.014571,-0.074887,0.031506,-0.098098,-0.000008 +-0.088084,0.014306,-0.072870,0.030887,-0.095293,-0.000008 +-0.085237,0.014040,-0.070853,0.030268,-0.092487,-0.000008 +-0.082399,0.013775,-0.068836,0.029649,-0.089682,-0.000008 +-0.079573,0.013509,-0.066819,0.029030,-0.086877,-0.000008 +-0.076760,0.013244,-0.064802,0.028411,-0.084071,-0.000008 +-0.073964,0.012979,-0.062785,0.027792,-0.081267,-0.000008 +-0.071187,0.012713,-0.060768,0.027172,-0.078465,-0.000008 +-0.068431,0.012448,-0.058751,0.026553,-0.075670,-0.000008 +-0.065700,0.012182,-0.056734,0.025934,-0.072885,-0.000008 +-0.062996,0.011917,-0.054718,0.025315,-0.070112,-0.000008 +-0.060321,0.011651,-0.052703,0.024696,-0.067355,-0.000008 +-0.057678,0.011386,-0.050692,0.024077,-0.064617,-0.000008 +-0.055070,0.011121,-0.048689,0.023458,-0.061901,-0.000008 +-0.052499,0.010855,-0.046696,0.022839,-0.059209,-0.000008 +-0.049968,0.010590,-0.044714,0.022220,-0.056547,-0.000008 +-0.047479,0.010324,-0.042748,0.021601,-0.053915,-0.000008 +-0.045035,0.010059,-0.040799,0.020982,-0.051318,-0.000008 +-0.042639,0.009793,-0.038871,0.020363,-0.048758,-0.000008 +-0.040294,0.009528,-0.036965,0.019744,-0.046239,-0.000008 +-0.038001,0.009263,-0.035084,0.019125,-0.043763,-0.000008 +-0.035763,0.008997,-0.033231,0.018506,-0.041335,-0.000008 +-0.033584,0.008732,-0.031409,0.017887,-0.038956,-0.000008 +-0.031465,0.008466,-0.029620,0.017267,-0.036631,-0.000008 +-0.029409,0.008201,-0.027866,0.016648,-0.034362,-0.000008 +-0.027419,0.007935,-0.026151,0.016029,-0.032152,-0.000008 +-0.025498,0.007670,-0.024477,0.015410,-0.030004,-0.000008 +-0.023647,0.007404,-0.022846,0.014791,-0.027922,-0.000008 +-0.021871,0.007139,-0.021261,0.014172,-0.025909,-0.000008 +-0.020170,0.006874,-0.019725,0.013553,-0.023967,-0.000008 +-0.018548,0.006608,-0.018240,0.012934,-0.022100,-0.000008 +-0.017007,0.006343,-0.016809,0.012315,-0.020311,-0.000008 +-0.015551,0.006077,-0.015435,0.011696,-0.018603,-0.000008 +-0.014180,0.005812,-0.014119,0.011077,-0.016980,-0.000008 +-0.012892,0.005546,-0.012865,0.010458,-0.015444,-0.000008 +-0.011684,0.005281,-0.011676,0.009839,-0.013998,-0.000008 +-0.010554,0.005016,-0.010553,0.009219,-0.012644,-0.000008 +-0.009499,0.004750,-0.009500,0.008600,-0.011381,-0.000008 +-0.008517,0.004485,-0.008518,0.007982,-0.010204,-0.000008 +-0.007606,0.004219,-0.007606,0.007368,-0.009112,-0.000008 +-0.006761,0.003954,-0.006762,0.006760,-0.008101,-0.000008 +-0.005982,0.003688,-0.005982,0.006163,-0.007167,-0.000008 +-0.005265,0.003423,-0.005265,0.005579,-0.006308,-0.000008 +-0.004608,0.003158,-0.004608,0.005010,-0.005520,-0.000008 +-0.004008,0.002892,-0.004008,0.004462,-0.004801,-0.000008 +-0.003462,0.002627,-0.003462,0.003935,-0.004148,-0.000008 +-0.002968,0.002362,-0.002968,0.003435,-0.003556,-0.000008 +-0.002524,0.002101,-0.002524,0.002962,-0.003024,-0.000008 +-0.002126,0.001845,-0.002126,0.002522,-0.002547,-0.000008 +-0.001773,0.001598,-0.001773,0.002117,-0.002124,-0.000008 +-0.001461,0.001361,-0.001461,0.001749,-0.001750,-0.000008 +-0.001188,0.001138,-0.001188,0.001423,-0.001423,-0.000008 +-0.000951,0.000932,-0.000951,0.001139,-0.001139,-0.000008 +-0.000748,0.000744,-0.000748,0.000896,-0.000896,-0.000008 +-0.000576,0.000577,-0.000576,0.000690,-0.000690,-0.000008 +-0.000433,0.000435,-0.000433,0.000519,-0.000519,-0.000008 +-0.000316,0.000317,-0.000316,0.000378,-0.000378,-0.000008 +-0.000222,0.000223,-0.000222,0.000266,-0.000266,-0.000008 +-0.000149,0.000150,-0.000149,0.000178,-0.000178,-0.000008 +-0.000094,0.000095,-0.000094,0.000112,-0.000112,-0.000008 +-0.000054,0.000056,-0.000054,0.000065,-0.000065,-0.000008 +-0.000028,0.000030,-0.000028,0.000033,-0.000034,-0.000008 +-0.000012,0.000013,-0.000012,0.000014,-0.000014,-0.000008 +-0.000004,0.000005,-0.000004,0.000004,-0.000004,-0.000008 +-0.000001,0.000002,-0.000001,0.000001,-0.000001,-0.000008 +-0.000000,0.000002,-0.000000,0.000000,-0.000000,-0.000008 +-0.000000,0.000002,-0.000000,0.000000,-0.000000,-0.000008 +0.000000,-0.000000,0.000000,-0.000001,0.000001,0.000000 +0.000003,-0.000003,0.000003,-0.000004,0.000004,0.000000 +0.000012,-0.000012,0.000012,-0.000014,0.000014,0.000000 +0.000028,-0.000028,0.000028,-0.000033,0.000033,0.000000 +0.000054,-0.000054,0.000054,-0.000065,0.000065,0.000000 +0.000093,-0.000093,0.000093,-0.000112,0.000112,0.000000 +0.000148,-0.000148,0.000148,-0.000178,0.000178,0.000000 +0.000222,-0.000222,0.000222,-0.000265,0.000265,0.000000 +0.000315,-0.000315,0.000315,-0.000378,0.000378,0.000000 +0.000433,-0.000432,0.000433,-0.000518,0.000518,0.000000 +0.000576,-0.000571,0.000576,-0.000690,0.000690,0.000000 +0.000748,-0.000729,0.000748,-0.000896,0.000896,0.000000 +0.000951,-0.000904,0.000951,-0.001139,0.001139,0.000000 +0.001187,-0.001093,0.001187,-0.001421,0.001423,0.000000 +0.001460,-0.001293,0.001460,-0.001739,0.001750,0.000000 +0.001772,-0.001503,0.001772,-0.002091,0.002123,0.000000 +0.002126,-0.001718,0.002126,-0.002472,0.002547,0.000000 +0.002524,-0.001938,0.002524,-0.002881,0.003023,0.000000 +0.002968,-0.002158,0.002968,-0.003314,0.003556,0.000000 +0.003462,-0.002379,0.003462,-0.003767,0.004147,0.000000 +0.004007,-0.002599,0.004007,-0.004238,0.004801,0.000000 +0.004608,-0.002820,0.004608,-0.004723,0.005520,0.000000 +0.005265,-0.003041,0.005265,-0.005220,0.006308,0.000000 +0.005982,-0.003261,0.005982,-0.005726,0.007167,0.000000 +0.006761,-0.003482,0.006761,-0.006236,0.008100,0.000000 +0.007606,-0.003703,0.007605,-0.006749,0.009112,0.000000 +0.008517,-0.003923,0.008512,-0.007262,0.010204,0.000000 +0.009499,-0.004144,0.009480,-0.007775,0.011380,0.000000 +0.010554,-0.004364,0.010507,-0.008288,0.012637,0.000000 +0.011684,-0.004585,0.011589,-0.008801,0.013973,0.000000 +0.012890,-0.004806,0.012724,-0.009313,0.015384,0.000000 +0.014172,-0.005026,0.013909,-0.009826,0.016868,0.000000 +0.015526,-0.005247,0.015142,-0.010339,0.018421,0.000000 +0.016949,-0.005468,0.016421,-0.010852,0.020041,0.000000 +0.018440,-0.005688,0.017742,-0.011365,0.021723,0.000000 +0.019996,-0.005909,0.019103,-0.011878,0.023465,0.000000 +0.021613,-0.006130,0.020501,-0.012391,0.025265,0.000000 +0.023290,-0.006350,0.021935,-0.012904,0.027118,0.000000 +0.025023,-0.006571,0.023401,-0.013416,0.029021,0.000000 +0.026811,-0.006791,0.024896,-0.013929,0.030972,0.000000 +0.028650,-0.007012,0.026419,-0.014442,0.032968,0.000000 +0.030538,-0.007233,0.027965,-0.014955,0.035004,0.000000 +0.032473,-0.007453,0.029534,-0.015468,0.037079,0.000000 +0.034451,-0.007674,0.031122,-0.015981,0.039189,0.000000 +0.036470,-0.007895,0.032727,-0.016494,0.041331,0.000000 +0.038528,-0.008115,0.034346,-0.017007,0.043502,0.000000 +0.040622,-0.008336,0.035976,-0.017519,0.045699,0.000000 +0.042750,-0.008556,0.037615,-0.018032,0.047918,0.000000 +0.044908,-0.008777,0.039261,-0.018545,0.050157,0.000000 +0.047094,-0.008998,0.040910,-0.019058,0.052412,0.000000 +0.049306,-0.009218,0.042561,-0.019571,0.054680,0.000000 +0.051541,-0.009439,0.044211,-0.020084,0.056959,0.000000 +0.053797,-0.009660,0.045861,-0.020597,0.059244,0.000000 +0.056070,-0.009880,0.047512,-0.021110,0.061534,0.000000 +0.058358,-0.010101,0.049162,-0.021622,0.063825,0.000000 +0.060659,-0.010322,0.050813,-0.022135,0.066115,0.000000 +0.062970,-0.010542,0.052463,-0.022648,0.068406,0.000000 +0.065289,-0.010763,0.054114,-0.023161,0.070697,0.000000 +0.067612,-0.010983,0.055764,-0.023674,0.072988,0.000000 +0.069938,-0.011204,0.057415,-0.024187,0.075278,0.000000 +0.072264,-0.011425,0.059065,-0.024700,0.077569,0.000000 +0.074590,-0.011645,0.060715,-0.025212,0.079860,0.000000 +0.076915,-0.011866,0.062366,-0.025725,0.082150,0.000000 +0.079241,-0.012087,0.064016,-0.026238,0.084441,0.000000 +0.081567,-0.012307,0.065667,-0.026751,0.086732,0.000000 +0.083893,-0.012528,0.067317,-0.027264,0.089023,0.000000 +0.086219,-0.012748,0.068968,-0.027777,0.091313,0.000000 +0.088545,-0.012969,0.070618,-0.028290,0.093604,0.000000 +0.090871,-0.013190,0.072269,-0.028803,0.095895,0.000000 +0.093196,-0.013410,0.073919,-0.029316,0.098185,0.000000 +0.095522,-0.013631,0.075569,-0.029828,0.100476,0.000000 +0.097848,-0.013852,0.077220,-0.030341,0.102767,0.000000 +0.100174,-0.014072,0.078870,-0.030854,0.105057,0.000000 +0.102500,-0.014293,0.080521,-0.031367,0.107348,0.000000 +0.104826,-0.014514,0.082171,-0.031880,0.109639,0.000000 +0.107151,-0.014734,0.083822,-0.032393,0.111930,0.000000 +0.109477,-0.014955,0.085472,-0.032906,0.114220,0.000000 +0.111803,-0.015175,0.087123,-0.033418,0.116511,0.000000 +0.114129,-0.015396,0.088773,-0.033931,0.118802,0.000000 +0.116455,-0.015617,0.090423,-0.034444,0.121092,0.000000 +0.118781,-0.015837,0.092074,-0.034957,0.123383,0.000000 +0.121106,-0.016058,0.093724,-0.035470,0.125674,0.000000 +0.123432,-0.016279,0.095375,-0.035983,0.127965,0.000000 +0.125758,-0.016499,0.097025,-0.036496,0.130255,0.000000 +0.128084,-0.016720,0.098676,-0.037009,0.132546,0.000000 +0.130410,-0.016940,0.100326,-0.037521,0.134837,0.000000 +0.132736,-0.017161,0.101977,-0.038034,0.137127,0.000000 +0.135061,-0.017382,0.103627,-0.038547,0.139418,0.000000 +0.137387,-0.017602,0.105277,-0.039060,0.141709,0.000000 +0.139713,-0.017823,0.106928,-0.039573,0.144000,0.000000 +0.142039,-0.018044,0.108578,-0.040086,0.146290,0.000000 +0.144365,-0.018264,0.110229,-0.040599,0.148581,0.000000 +0.146691,-0.018485,0.111879,-0.041112,0.150872,0.000000 +0.149016,-0.018705,0.113530,-0.041625,0.153162,0.000000 +0.151342,-0.018926,0.115180,-0.042137,0.155453,0.000000 +0.153668,-0.019147,0.116831,-0.042650,0.157744,0.000000 +0.155994,-0.019367,0.118481,-0.043163,0.160034,0.000000 +0.158320,-0.019588,0.120131,-0.043676,0.162325,0.000000 +0.160646,-0.019809,0.121782,-0.044189,0.164616,0.000000 +0.162972,-0.020029,0.123432,-0.044702,0.166907,0.000000 +0.165297,-0.020250,0.125083,-0.045215,0.169197,0.000000 +0.167623,-0.020470,0.126733,-0.045727,0.171488,0.000000 +0.169949,-0.020691,0.128384,-0.046240,0.173779,0.000000 +0.172275,-0.020912,0.130034,-0.046753,0.176069,0.000000 +0.174601,-0.021132,0.131684,-0.047266,0.178360,0.000000 +0.176927,-0.021353,0.133335,-0.047779,0.180651,0.000000 +0.179252,-0.021574,0.134985,-0.048292,0.182942,0.000000 +0.181578,-0.021794,0.136636,-0.048805,0.185232,0.000000 +0.183904,-0.022015,0.138286,-0.049318,0.187523,0.000000 +0.186230,-0.022235,0.139937,-0.049831,0.189814,0.000000 +0.188556,-0.022456,0.141587,-0.050343,0.192104,0.000000 +0.190882,-0.022677,0.143238,-0.050856,0.194395,0.000000 +0.193207,-0.022897,0.144888,-0.051369,0.196686,0.000000 +0.195533,-0.023118,0.146538,-0.051882,0.198976,0.000000 +0.197859,-0.023339,0.148189,-0.052395,0.201267,0.000000 +0.200185,-0.023559,0.149839,-0.052908,0.203558,0.000000 +0.202511,-0.023780,0.151490,-0.053421,0.205849,0.000000 +0.204837,-0.024001,0.153140,-0.053934,0.208139,0.000000 +0.207163,-0.024221,0.154791,-0.054446,0.210430,0.000000 +0.209488,-0.024442,0.156441,-0.054959,0.212721,0.000000 +0.211814,-0.024663,0.158092,-0.055472,0.215011,0.000000 +0.214140,-0.024883,0.159742,-0.055985,0.217302,0.000000 +0.216466,-0.025104,0.161392,-0.056498,0.219593,0.000000 +0.218792,-0.025324,0.163043,-0.057011,0.221884,0.000000 +0.221118,-0.025545,0.164693,-0.057524,0.224174,0.000000 +0.223443,-0.025766,0.166344,-0.058036,0.226465,0.000000 +0.225769,-0.025986,0.167994,-0.058549,0.228756,0.000000 +0.228095,-0.026207,0.169645,-0.059062,0.231046,0.000000 +0.230421,-0.026428,0.171295,-0.059575,0.233337,0.000000 +0.232747,-0.026648,0.172946,-0.060088,0.235628,0.000000 +0.235073,-0.026869,0.174596,-0.060601,0.237919,0.000000 +0.237398,-0.027089,0.176246,-0.061114,0.240209,0.000000 +0.239724,-0.027310,0.177897,-0.061627,0.242500,0.000000 +0.242050,-0.027531,0.179547,-0.062140,0.244791,0.000000 +0.244376,-0.027751,0.181198,-0.062652,0.247081,0.000000 +0.246702,-0.027972,0.182848,-0.063165,0.249372,0.000000 +0.249028,-0.028193,0.184499,-0.063678,0.251663,0.000000 +0.251354,-0.028413,0.186149,-0.064191,0.253953,0.000000 +0.253679,-0.028634,0.187800,-0.064704,0.256244,0.000000 +0.256005,-0.028855,0.189450,-0.065217,0.258535,0.000000 +0.258331,-0.029075,0.191100,-0.065730,0.260826,0.000000 +0.260657,-0.029296,0.192751,-0.066242,0.263116,0.000000 +0.262983,-0.029516,0.194401,-0.066755,0.265407,0.000000 +0.265309,-0.029737,0.196052,-0.067268,0.267698,0.000000 +0.267634,-0.029958,0.197702,-0.067781,0.269988,0.000000 +0.269960,-0.030178,0.199353,-0.068294,0.272279,0.000000 +0.272286,-0.030399,0.201003,-0.068807,0.274570,0.000000 +0.274612,-0.030620,0.202654,-0.069320,0.276861,0.000000 +0.276938,-0.030840,0.204304,-0.069833,0.279151,0.000000 +0.279264,-0.031061,0.205954,-0.070346,0.281442,0.000000 +0.281589,-0.031281,0.207605,-0.070858,0.283733,0.000000 +0.283915,-0.031502,0.209255,-0.071371,0.286023,0.000000 +0.286241,-0.031723,0.210906,-0.071884,0.288314,0.000000 +0.288567,-0.031943,0.212556,-0.072397,0.290605,0.000000 +0.290893,-0.032164,0.214207,-0.072910,0.292896,0.000000 +0.293219,-0.032384,0.215857,-0.073423,0.295186,0.000000 +0.295545,-0.032605,0.217508,-0.073936,0.297477,0.000000 +0.297870,-0.032826,0.219158,-0.074448,0.299768,0.000000 +0.300196,-0.033046,0.220808,-0.074961,0.302058,0.000000 +0.302522,-0.033267,0.222459,-0.075474,0.304349,0.000000 +0.304848,-0.033488,0.224109,-0.075987,0.306640,0.000000 +0.307174,-0.033708,0.225760,-0.076500,0.308930,0.000000 +0.309500,-0.033929,0.227410,-0.077013,0.311221,0.000000 +0.311825,-0.034150,0.229061,-0.077526,0.313512,0.000000 +0.314151,-0.034370,0.230711,-0.078039,0.315803,0.000000 +0.316477,-0.034591,0.232361,-0.078551,0.318093,0.000000 +0.318803,-0.034812,0.234012,-0.079064,0.320384,0.000000 +0.321129,-0.035032,0.235662,-0.079577,0.322675,0.000000 +0.323455,-0.035253,0.237313,-0.080090,0.324965,0.000000 +0.325780,-0.035473,0.238963,-0.080603,0.327256,0.000000 +0.328106,-0.035694,0.240614,-0.081116,0.329547,0.000000 +0.330432,-0.035915,0.242264,-0.081629,0.331838,0.000000 +0.332758,-0.036135,0.243915,-0.082142,0.334128,0.000000 +0.335084,-0.036356,0.245565,-0.082654,0.336419,0.000000 +0.337410,-0.036576,0.247215,-0.083167,0.338710,0.000000 +0.339736,-0.036797,0.248866,-0.083680,0.341000,0.000000 +0.342061,-0.037018,0.250516,-0.084193,0.343291,0.000000 +0.344387,-0.037238,0.252167,-0.084706,0.345582,0.000000 +0.346713,-0.037459,0.253817,-0.085219,0.347872,0.000000 +0.349039,-0.037680,0.255468,-0.085732,0.350163,0.000000 +0.351365,-0.037900,0.257118,-0.086245,0.352454,0.000000 +0.353691,-0.038121,0.258769,-0.086757,0.354745,0.000000 +0.356016,-0.038342,0.260419,-0.087270,0.357035,0.000000 +0.358342,-0.038562,0.262069,-0.087783,0.359326,0.000000 +0.360668,-0.038783,0.263720,-0.088296,0.361617,0.000000 +0.362994,-0.039004,0.265370,-0.088809,0.363907,0.000000 +0.365320,-0.039224,0.267021,-0.089322,0.366198,0.000000 +0.367646,-0.039445,0.268671,-0.089835,0.368489,0.000000 +0.369971,-0.039665,0.270322,-0.090348,0.370780,0.000000 +0.372297,-0.039886,0.271972,-0.090860,0.373070,0.000000 +0.374623,-0.040107,0.273623,-0.091373,0.375361,0.000000 +0.376949,-0.040327,0.275273,-0.091886,0.377652,0.000000 +0.379275,-0.040548,0.276923,-0.092399,0.379942,0.000000 +0.381601,-0.040768,0.278574,-0.092912,0.382233,0.000000 +0.383926,-0.040989,0.280224,-0.093425,0.384524,0.000000 +0.386252,-0.041210,0.281875,-0.093938,0.386815,0.000000 +0.388578,-0.041430,0.283525,-0.094451,0.389105,0.000000 +0.390904,-0.041651,0.285176,-0.094963,0.391396,0.000000 +0.393230,-0.041872,0.286826,-0.095476,0.393687,0.000000 +0.395556,-0.042092,0.288477,-0.095989,0.395977,0.000000 +0.397882,-0.042313,0.290127,-0.096502,0.398268,0.000000 +0.400207,-0.042534,0.291777,-0.097015,0.400559,0.000000 +0.402533,-0.042754,0.293428,-0.097528,0.402849,0.000000 +0.404859,-0.042975,0.295078,-0.098041,0.405140,0.000000 +0.407185,-0.043195,0.296729,-0.098554,0.407431,0.000000 +0.409511,-0.043416,0.298379,-0.099066,0.409722,0.000000 +0.411837,-0.043637,0.300030,-0.099579,0.412012,0.000000 +0.414162,-0.043857,0.301680,-0.100092,0.414303,0.000000 +0.416488,-0.044078,0.303331,-0.100605,0.416594,0.000000 +0.418814,-0.044299,0.304981,-0.101118,0.418884,0.000000 +0.421140,-0.044519,0.306631,-0.101631,0.421175,0.000000 +0.423466,-0.044740,0.308282,-0.102144,0.423466,0.000000 +0.425792,-0.044961,0.309932,-0.102657,0.425757,0.000000 +0.428117,-0.045181,0.311583,-0.103169,0.428047,0.000000 +0.430443,-0.045402,0.313233,-0.103682,0.430338,0.000000 +0.432769,-0.045622,0.314884,-0.104195,0.432629,0.000000 +0.435095,-0.045843,0.316534,-0.104708,0.434919,0.000000 +0.437421,-0.046064,0.318184,-0.105221,0.437210,0.000000 +0.439747,-0.046284,0.319835,-0.105734,0.439501,0.000000 +0.442073,-0.046505,0.321485,-0.106247,0.441792,0.000000 +0.444398,-0.046726,0.323136,-0.106760,0.444082,0.000000 +0.446724,-0.046946,0.324786,-0.107272,0.446373,0.000000 +0.449050,-0.047167,0.326437,-0.107785,0.448664,0.000000 +0.451376,-0.047387,0.328087,-0.108298,0.450954,0.000000 +0.453702,-0.047608,0.329738,-0.108811,0.453245,0.000000 +0.456028,-0.047829,0.331388,-0.109324,0.455536,0.000000 +0.458353,-0.048049,0.333038,-0.109837,0.457826,0.000000 +0.460679,-0.048270,0.334689,-0.110350,0.460117,0.000000 +0.463005,-0.048491,0.336339,-0.110863,0.462408,0.000000 +0.465331,-0.048711,0.337990,-0.111375,0.464699,0.000000 +0.467657,-0.048932,0.339640,-0.111888,0.466989,0.000000 +0.469983,-0.049153,0.341291,-0.112401,0.469280,0.000000 +0.472308,-0.049373,0.342941,-0.112914,0.471571,0.000000 +0.474634,-0.049594,0.344592,-0.113427,0.473861,0.000000 +0.476960,-0.049814,0.346242,-0.113940,0.476152,0.000000 +0.479286,-0.050035,0.347892,-0.114453,0.478443,0.000000 +0.481612,-0.050256,0.349543,-0.114966,0.480734,0.000000 +0.483938,-0.050476,0.351193,-0.115478,0.483024,0.000000 +0.486264,-0.050697,0.352844,-0.115991,0.485315,0.000000 +0.488589,-0.050917,0.354494,-0.116504,0.487606,0.000000 +0.490915,-0.051138,0.356145,-0.117017,0.489896,0.000000 +0.493241,-0.051359,0.357795,-0.117530,0.492187,0.000000 +0.495567,-0.051579,0.359446,-0.118043,0.494478,0.000000 +0.497893,-0.051800,0.361096,-0.118556,0.496768,0.000000 +0.500219,-0.052021,0.362746,-0.119069,0.499059,0.000000 +0.502544,-0.052241,0.364397,-0.119581,0.501350,0.000000 +0.504870,-0.052462,0.366047,-0.120094,0.503641,0.000000 +0.507196,-0.052683,0.367698,-0.120607,0.505931,0.000000 +0.509522,-0.052903,0.369348,-0.121120,0.508222,0.000000 +0.511848,-0.053124,0.370999,-0.121633,0.510513,0.000000 +0.514174,-0.053345,0.372649,-0.122146,0.512803,0.000000 +0.516499,-0.053565,0.374300,-0.122659,0.515094,0.000000 +0.518825,-0.053786,0.375950,-0.123172,0.517385,0.000000 +0.521151,-0.054006,0.377600,-0.123684,0.519676,0.000000 +0.523477,-0.054227,0.379251,-0.124197,0.521966,0.000000 +0.525803,-0.054448,0.380901,-0.124710,0.524257,0.000000 +0.528129,-0.054668,0.382552,-0.125223,0.526548,0.000000 +0.530455,-0.054889,0.384202,-0.125736,0.528838,0.000000 +0.532780,-0.055109,0.385853,-0.126249,0.531129,0.000000 +0.535106,-0.055330,0.387503,-0.126762,0.533420,0.000000 +0.537432,-0.055551,0.389154,-0.127275,0.535711,0.000000 +0.539758,-0.055771,0.390804,-0.127787,0.538001,0.000000 +0.542084,-0.055992,0.392454,-0.128300,0.540292,0.000000 +0.544410,-0.056213,0.394105,-0.128813,0.542583,0.000000 +0.546735,-0.056433,0.395755,-0.129326,0.544873,0.000000 +0.549061,-0.056654,0.397406,-0.129839,0.547164,0.000000 +0.551387,-0.056875,0.399056,-0.130352,0.549455,0.000000 +0.553713,-0.057095,0.400707,-0.130865,0.551745,0.000000 +0.556039,-0.057316,0.402357,-0.131378,0.554036,0.000000 +0.558365,-0.057536,0.404008,-0.131890,0.556327,0.000000 +0.560690,-0.057757,0.405658,-0.132403,0.558618,0.000000 +0.563016,-0.057978,0.407308,-0.132916,0.560908,0.000000 +0.565342,-0.058198,0.408959,-0.133429,0.563199,0.000000 +0.567668,-0.058419,0.410609,-0.133942,0.565490,0.000000 +0.569994,-0.058640,0.412260,-0.134455,0.567780,0.000000 +0.572320,-0.058860,0.413910,-0.134968,0.570071,0.000000 +0.574646,-0.059081,0.415561,-0.135480,0.572362,0.000000 +0.576971,-0.059302,0.417211,-0.135993,0.574653,0.000000 +0.579297,-0.059522,0.418861,-0.136506,0.576943,0.000000 +0.581623,-0.059743,0.420512,-0.137019,0.579234,0.000000 +0.583949,-0.059963,0.422162,-0.137532,0.581525,0.000000 +0.586275,-0.060184,0.423813,-0.138045,0.583815,0.000000 +0.588601,-0.060405,0.425463,-0.138558,0.586106,0.000000 +0.590926,-0.060625,0.427114,-0.139071,0.588397,0.000000 +0.593252,-0.060846,0.428764,-0.139583,0.590688,0.000000 +0.595578,-0.061067,0.430415,-0.140096,0.592978,0.000000 +0.597904,-0.061287,0.432065,-0.140609,0.595269,0.000000 +0.600230,-0.061508,0.433715,-0.141122,0.597560,0.000000 +0.602556,-0.061728,0.435366,-0.141635,0.599850,0.000000 +0.604881,-0.061949,0.437016,-0.142148,0.602141,0.000000 +0.607207,-0.062170,0.438667,-0.142661,0.604432,0.000000 +0.609533,-0.062390,0.440317,-0.143174,0.606722,0.000000 +0.611859,-0.062611,0.441968,-0.143686,0.609013,0.000000 +0.614185,-0.062832,0.443618,-0.144199,0.611304,0.000000 +0.616511,-0.063052,0.445269,-0.144712,0.613595,0.000000 +0.618836,-0.063273,0.446919,-0.145225,0.615885,0.000000 +0.621162,-0.063493,0.448569,-0.145738,0.618176,0.000000 +0.623488,-0.063714,0.450220,-0.146251,0.620467,0.000000 +0.625814,-0.063935,0.451870,-0.146764,0.622757,0.000000 +0.628140,-0.064155,0.453521,-0.147277,0.625048,0.000000 +0.630466,-0.064376,0.455171,-0.147789,0.627339,0.000000 +0.632792,-0.064597,0.456822,-0.148302,0.629630,0.000000 +0.635117,-0.064817,0.458472,-0.148815,0.631920,0.000000 +0.637443,-0.065038,0.460123,-0.149328,0.634211,0.000000 +0.639769,-0.065258,0.461773,-0.149841,0.636502,0.000000 +0.642095,-0.065479,0.463423,-0.150354,0.638792,0.000000 +0.644421,-0.065700,0.465074,-0.150867,0.641083,0.000000 +0.646747,-0.065920,0.466724,-0.151380,0.643374,0.000000 +0.649072,-0.066141,0.468375,-0.151892,0.645664,0.000000 +0.651398,-0.066362,0.470025,-0.152405,0.647955,0.000000 +0.653724,-0.066582,0.471676,-0.152918,0.650246,0.000000 +0.656050,-0.066803,0.473326,-0.153431,0.652537,0.000000 +0.658376,-0.067024,0.474977,-0.153944,0.654827,0.000000 +0.660702,-0.067244,0.476627,-0.154457,0.657118,0.000000 +0.663027,-0.067465,0.478277,-0.154970,0.659409,0.000000 +0.665353,-0.067685,0.479928,-0.155483,0.661699,0.000000 +0.667679,-0.067906,0.481578,-0.155995,0.663990,0.000000 +0.670005,-0.068127,0.483229,-0.156508,0.666281,0.000000 +0.672331,-0.068347,0.484879,-0.157021,0.668572,0.000000 +0.674657,-0.068568,0.486530,-0.157534,0.670862,0.000000 +0.676983,-0.068789,0.488180,-0.158047,0.673153,0.000000 +0.679308,-0.069009,0.489831,-0.158560,0.675444,0.000000 +0.681634,-0.069230,0.491481,-0.159073,0.677734,0.000000 +0.683960,-0.069450,0.493131,-0.159586,0.680025,0.000000 +0.686286,-0.069671,0.494782,-0.160098,0.682316,0.000000 +0.688612,-0.069892,0.496432,-0.160611,0.684607,0.000000 +0.690938,-0.070112,0.498083,-0.161124,0.686897,0.000000 +0.693263,-0.070333,0.499733,-0.161637,0.689188,0.000000 +0.695589,-0.070554,0.501384,-0.162150,0.691479,0.000000 +0.697915,-0.070774,0.503034,-0.162663,0.693769,0.000000 +0.700241,-0.070995,0.504685,-0.163176,0.696060,0.000000 +0.702567,-0.071216,0.506335,-0.163689,0.698351,0.000000 +0.704893,-0.071436,0.507985,-0.164201,0.700641,0.000000 +0.707218,-0.071657,0.509636,-0.164714,0.702932,0.000000 +0.709544,-0.071877,0.511286,-0.165227,0.705223,0.000000 +0.711870,-0.072098,0.512937,-0.165740,0.707514,0.000000 +0.714196,-0.072319,0.514587,-0.166253,0.709804,0.000000 +0.716522,-0.072539,0.516238,-0.166766,0.712095,0.000000 +0.718848,-0.072760,0.517888,-0.167279,0.714386,0.000000 +0.721174,-0.072981,0.519538,-0.167792,0.716676,0.000000 +0.723499,-0.073201,0.521189,-0.168304,0.718967,0.000000 +0.725825,-0.073422,0.522839,-0.168817,0.721258,0.000000 +0.728151,-0.073643,0.524490,-0.169330,0.723549,0.000000 +0.730477,-0.073863,0.526140,-0.169843,0.725839,0.000000 +0.732803,-0.074084,0.527791,-0.170356,0.728130,0.000000 +0.735129,-0.074304,0.529441,-0.170869,0.730421,0.000000 +0.737454,-0.074525,0.531092,-0.171382,0.732711,0.000000 +0.739780,-0.074746,0.532742,-0.171895,0.735002,0.000000 +0.742106,-0.074966,0.534392,-0.172407,0.737293,0.000000 +0.744432,-0.075187,0.536043,-0.172920,0.739584,0.000000 +0.746758,-0.075408,0.537693,-0.173433,0.741874,0.000000 +0.749084,-0.075628,0.539344,-0.173946,0.744165,0.000000 +0.751409,-0.075849,0.540994,-0.174459,0.746456,0.000000 +0.753735,-0.076069,0.542645,-0.174972,0.748746,0.000000 +0.756061,-0.076290,0.544295,-0.175485,0.751037,0.000000 +0.758387,-0.076511,0.545946,-0.175998,0.753328,0.000000 +0.760713,-0.076731,0.547596,-0.176510,0.755618,0.000000 +0.763039,-0.076952,0.549246,-0.177023,0.757909,0.000000 +0.765365,-0.077173,0.550897,-0.177536,0.760200,0.000000 +0.767690,-0.077393,0.552547,-0.178049,0.762491,0.000000 +0.770016,-0.077614,0.554198,-0.178562,0.764781,0.000000 +0.772342,-0.077835,0.555848,-0.179075,0.767072,0.000000 +0.774668,-0.078055,0.557499,-0.179588,0.769363,0.000000 +0.776994,-0.078276,0.559149,-0.180101,0.771653,0.000000 +0.779320,-0.078496,0.560800,-0.180613,0.773944,0.000000 +0.781645,-0.078717,0.562450,-0.181126,0.776235,0.000000 +0.783971,-0.078938,0.564100,-0.181639,0.778526,0.000000 +0.786297,-0.079158,0.565751,-0.182152,0.780816,0.000000 +0.788623,-0.079379,0.567401,-0.182665,0.783107,0.000000 +0.790949,-0.079600,0.569052,-0.183178,0.785398,0.000000 +0.793275,-0.079820,0.570702,-0.183691,0.787688,0.000000 +0.795600,-0.080041,0.572353,-0.184204,0.789979,0.000000 +0.797926,-0.080261,0.574003,-0.184716,0.792270,0.000000 +0.800252,-0.080482,0.575654,-0.185229,0.794560,0.000000 +0.802578,-0.080703,0.577304,-0.185742,0.796851,0.000000 +0.804904,-0.080923,0.578954,-0.186255,0.799142,0.000000 +0.807230,-0.081144,0.580605,-0.186768,0.801433,0.000000 +0.809556,-0.081365,0.582255,-0.187281,0.803723,0.000000 +0.811881,-0.081585,0.583906,-0.187794,0.806014,0.000000 +0.814207,-0.081806,0.585556,-0.188307,0.808305,0.000000 +0.816533,-0.082027,0.587207,-0.188819,0.810595,0.000000 +0.818859,-0.082247,0.588857,-0.189332,0.812886,0.000000 +0.821185,-0.082468,0.590508,-0.189845,0.815177,0.000000 +0.823511,-0.082688,0.592158,-0.190358,0.817468,0.000000 +0.825836,-0.082909,0.593808,-0.190871,0.819758,0.000000 +0.828162,-0.083130,0.595459,-0.191384,0.822049,0.000000 +0.830488,-0.083350,0.597109,-0.191897,0.824340,0.000000 +0.832814,-0.083571,0.598760,-0.192410,0.826630,0.000000 +0.835140,-0.083792,0.600410,-0.192922,0.828921,0.000000 +0.837466,-0.084012,0.602061,-0.193435,0.831212,0.000000 +0.839791,-0.084233,0.603711,-0.193948,0.833503,0.000000 +0.842117,-0.084453,0.605362,-0.194461,0.835793,0.000000 +0.844443,-0.084674,0.607012,-0.194974,0.838084,0.000000 +0.846769,-0.084895,0.608662,-0.195487,0.840375,0.000000 +0.849095,-0.085115,0.610313,-0.196000,0.842665,0.000000 +0.851421,-0.085336,0.611963,-0.196513,0.844956,0.000000 +0.853747,-0.085556,0.613614,-0.197025,0.847247,0.000000 +0.856072,-0.085777,0.615264,-0.197538,0.849537,0.000000 +0.858398,-0.085998,0.616915,-0.198051,0.851828,0.000000 +0.860724,-0.086218,0.618565,-0.198564,0.854119,0.000000 +0.863050,-0.086439,0.620215,-0.199077,0.856410,0.000000 +0.865376,-0.086660,0.621866,-0.199590,0.858700,0.000000 +0.867702,-0.086880,0.623516,-0.200103,0.860991,0.000000 +0.870027,-0.087101,0.625167,-0.200616,0.863282,0.000000 +0.872353,-0.087322,0.626817,-0.201128,0.865572,0.000000 +0.874679,-0.087542,0.628468,-0.201641,0.867863,0.000000 +0.877005,-0.087763,0.630118,-0.202154,0.870154,0.000000 +0.879331,-0.087984,0.631769,-0.202667,0.872445,0.000000 +0.881657,-0.088204,0.633419,-0.203180,0.874735,0.000000 +0.883982,-0.088425,0.635069,-0.203693,0.877026,0.000000 +0.886308,-0.088645,0.636720,-0.204206,0.879317,0.000000 +0.888634,-0.088866,0.638370,-0.204719,0.881607,0.000000 +0.890960,-0.089087,0.640021,-0.205231,0.883898,0.000000 +0.893286,-0.089307,0.641671,-0.205744,0.886189,0.000000 +0.895612,-0.089528,0.643322,-0.206257,0.888480,0.000000 +0.897937,-0.089748,0.644972,-0.206770,0.890770,0.000000 +0.900263,-0.089969,0.646623,-0.207283,0.893061,0.000000 +0.902589,-0.090190,0.648273,-0.207796,0.895352,0.000000 +0.904915,-0.090410,0.649923,-0.208309,0.897642,0.000000 +0.907241,-0.090631,0.651574,-0.208822,0.899933,0.000000 +0.909567,-0.090852,0.653224,-0.209334,0.902224,0.000000 +0.911893,-0.091072,0.654875,-0.209847,0.904514,0.000000 +0.914218,-0.091293,0.656525,-0.210360,0.906805,0.000000 +0.916544,-0.091514,0.658176,-0.210873,0.909096,0.000000 +0.918870,-0.091734,0.659826,-0.211386,0.911387,0.000000 +0.921196,-0.091955,0.661477,-0.211899,0.913677,0.000000 +0.923522,-0.092175,0.663127,-0.212412,0.915968,0.000000 +0.925848,-0.092396,0.664777,-0.212925,0.918259,0.000000 +0.928173,-0.092617,0.666428,-0.213437,0.920549,0.000000 +0.930499,-0.092837,0.668078,-0.213950,0.922840,0.000000 +0.932825,-0.093058,0.669729,-0.214463,0.925131,0.000000 +0.935151,-0.093279,0.671379,-0.214976,0.927422,0.000000 +0.937477,-0.093499,0.673030,-0.215489,0.929712,0.000000 +0.939803,-0.093720,0.674680,-0.216002,0.932003,0.000000 +0.942128,-0.093940,0.676331,-0.216515,0.934294,0.000000 +0.944454,-0.094161,0.677981,-0.217028,0.936584,0.000000 +0.946780,-0.094382,0.679631,-0.217540,0.938875,0.000000 +0.949106,-0.094602,0.681282,-0.218053,0.941166,0.000000 +0.951432,-0.094823,0.682932,-0.218566,0.943456,0.000000 +0.953758,-0.095044,0.684583,-0.219079,0.945747,0.000000 +0.956084,-0.095264,0.686233,-0.219592,0.948038,0.000000 +0.958409,-0.095485,0.687884,-0.220105,0.950329,0.000000 +0.960735,-0.095706,0.689534,-0.220618,0.952619,0.000000 +0.963061,-0.095926,0.691185,-0.221131,0.954910,0.000000 +0.965387,-0.096147,0.692835,-0.221643,0.957201,0.000000 +0.967713,-0.096367,0.694485,-0.222156,0.959491,0.000000 +0.970039,-0.096588,0.696136,-0.222669,0.961782,0.000000 +0.972364,-0.096809,0.697786,-0.223182,0.964073,0.000000 +0.974690,-0.097029,0.699437,-0.223695,0.966364,0.000000 +0.977016,-0.097250,0.701087,-0.224208,0.968654,0.000000 +0.979342,-0.097471,0.702738,-0.224721,0.970945,0.000000 +0.981668,-0.097691,0.704388,-0.225234,0.973236,0.000000 +0.983994,-0.097912,0.706038,-0.225746,0.975526,0.000000 +0.986319,-0.098132,0.707689,-0.226259,0.977817,0.000000 +0.988645,-0.098353,0.709339,-0.226772,0.980108,0.000000 +0.990971,-0.098574,0.710990,-0.227285,0.982399,0.000000 +0.993297,-0.098794,0.712640,-0.227798,0.984689,0.000000 +0.995623,-0.099015,0.714291,-0.228311,0.986980,0.000000 +0.997949,-0.099236,0.715941,-0.228824,0.989271,0.000000 +1.000270,-0.099456,0.717592,-0.229337,0.991561,0.000000 +1.002600,-0.099677,0.719242,-0.229849,0.993852,0.000000 +1.004930,-0.099898,0.720892,-0.230362,0.996143,0.000000 +1.007250,-0.100118,0.722543,-0.230875,0.998433,0.000000 +1.009580,-0.100339,0.724193,-0.231388,1.000720,0.000000 +1.011900,-0.100559,0.725844,-0.231901,1.003010,0.000000 +1.014230,-0.100780,0.727494,-0.232414,1.005310,0.000000 +1.016560,-0.101001,0.729145,-0.232927,1.007600,0.000000 +1.018880,-0.101221,0.730795,-0.233440,1.009890,0.000000 +1.021210,-0.101442,0.732446,-0.233952,1.012180,0.000000 +1.023530,-0.101663,0.734096,-0.234465,1.014470,0.000000 +1.025860,-0.101883,0.735746,-0.234978,1.016760,0.000000 +1.028180,-0.102104,0.737397,-0.235491,1.019050,0.000000 +1.030510,-0.102324,0.739047,-0.236004,1.021340,0.000000 +1.032840,-0.102545,0.740698,-0.236517,1.023630,0.000000 +1.035160,-0.102766,0.742348,-0.237030,1.025920,0.000000 +1.037490,-0.102986,0.743999,-0.237542,1.028210,0.000000 +1.039810,-0.103207,0.745649,-0.238055,1.030500,0.000000 +1.042140,-0.103428,0.747300,-0.238568,1.032790,0.000000 +1.044470,-0.103648,0.748950,-0.239081,1.035080,0.000000 +1.046790,-0.103869,0.750600,-0.239594,1.037380,0.000000 +1.049120,-0.104090,0.752251,-0.240107,1.039670,0.000000 +1.051440,-0.104310,0.753901,-0.240620,1.041960,0.000000 +1.053770,-0.104531,0.755552,-0.241133,1.044250,0.000000 +1.056090,-0.104751,0.757202,-0.241645,1.046540,0.000000 +1.058420,-0.104972,0.758853,-0.242158,1.048830,0.000000 +1.060750,-0.105193,0.760503,-0.242671,1.051120,0.000000 +1.063070,-0.105413,0.762154,-0.243184,1.053410,0.000000 +1.065400,-0.105634,0.763804,-0.243697,1.055700,0.000000 +1.067720,-0.105855,0.765454,-0.244210,1.057990,0.000000 +1.070050,-0.106075,0.767105,-0.244723,1.060280,0.000000 +1.072380,-0.106296,0.768755,-0.245236,1.062570,0.000000 +1.074700,-0.106516,0.770406,-0.245748,1.064860,0.000000 +1.077030,-0.106737,0.772056,-0.246261,1.067150,0.000000 +1.079350,-0.106958,0.773707,-0.246774,1.069450,0.000000 +1.081680,-0.107178,0.775357,-0.247287,1.071740,0.000000 +1.084000,-0.107399,0.777008,-0.247800,1.074030,0.000000 +1.086330,-0.107620,0.778658,-0.248313,1.076320,0.000000 +1.088660,-0.107840,0.780308,-0.248826,1.078610,0.000000 +1.090980,-0.108061,0.781959,-0.249339,1.080900,0.000000 +1.093310,-0.108282,0.783609,-0.249851,1.083190,0.000000 +1.095630,-0.108502,0.785260,-0.250364,1.085480,0.000000 +1.097960,-0.108723,0.786910,-0.250877,1.087770,0.000000 +1.100290,-0.108943,0.788561,-0.251390,1.090060,0.000000 +1.102610,-0.109164,0.790211,-0.251903,1.092350,0.000000 +1.104940,-0.109385,0.791862,-0.252416,1.094640,0.000000 +1.107260,-0.109605,0.793512,-0.252929,1.096930,0.000000 +1.109590,-0.109826,0.795162,-0.253442,1.099220,0.000000 +1.111910,-0.110047,0.796813,-0.253954,1.101520,0.000000 +1.114240,-0.110267,0.798463,-0.254467,1.103810,0.000000 +1.116570,-0.110488,0.800114,-0.254980,1.106100,0.000000 +1.118890,-0.110708,0.801764,-0.255493,1.108390,0.000000 +1.121220,-0.110929,0.803415,-0.256006,1.110680,0.000000 +1.123540,-0.111150,0.805065,-0.256519,1.112970,0.000000 +1.125870,-0.111370,0.806715,-0.257032,1.115260,0.000000 +1.128200,-0.111591,0.808366,-0.257545,1.117550,0.000000 +1.130520,-0.111812,0.810016,-0.258057,1.119840,0.000000 +1.132850,-0.112032,0.811667,-0.258570,1.122130,0.000000 +1.135170,-0.112253,0.813317,-0.259083,1.124420,0.000000 +1.137500,-0.112473,0.814968,-0.259596,1.126710,0.000000 +1.139830,-0.112694,0.816618,-0.260109,1.129000,0.000000 +1.142150,-0.112915,0.818269,-0.260622,1.131290,0.000000 +1.144480,-0.113135,0.819919,-0.261135,1.133590,0.000000 +1.146800,-0.113356,0.821569,-0.261648,1.135880,0.000000 +1.149130,-0.113577,0.823220,-0.262160,1.138170,0.000000 +1.151450,-0.113797,0.824870,-0.262673,1.140460,0.000000 +1.153780,-0.114018,0.826521,-0.263186,1.142750,0.000000 +1.156110,-0.114239,0.828171,-0.263699,1.145040,0.000000 +1.158430,-0.114459,0.829822,-0.264212,1.147330,0.000000 +1.160760,-0.114680,0.831472,-0.264725,1.149620,0.000000 +1.163080,-0.114900,0.833123,-0.265238,1.151910,0.000000 +1.165410,-0.115121,0.834773,-0.265751,1.154200,0.000000 +1.167740,-0.115342,0.836423,-0.266263,1.156490,0.000000 +1.170060,-0.115562,0.838074,-0.266776,1.158780,0.000000 +1.172390,-0.115783,0.839724,-0.267289,1.161070,0.000000 +1.174710,-0.116004,0.841375,-0.267802,1.163360,0.000000 +1.177040,-0.116224,0.843025,-0.268315,1.165660,0.000000 +1.179360,-0.116445,0.844676,-0.268828,1.167950,0.000000 +1.181690,-0.116665,0.846326,-0.269341,1.170240,0.000000 +1.184020,-0.116886,0.847977,-0.269854,1.172530,0.000000 +1.186340,-0.117107,0.849627,-0.270366,1.174820,0.000000 +1.188670,-0.117327,0.851277,-0.270879,1.177110,0.000000 +1.190990,-0.117548,0.852928,-0.271392,1.179400,0.000000 +1.193320,-0.117769,0.854578,-0.271905,1.181690,0.000000 +1.195650,-0.117989,0.856229,-0.272418,1.183980,0.000000 +1.197970,-0.118210,0.857879,-0.272931,1.186270,0.000000 +1.200300,-0.118431,0.859530,-0.273444,1.188560,0.000000 +1.202620,-0.118651,0.861180,-0.273957,1.190850,0.000000 +1.204950,-0.118872,0.862831,-0.274469,1.193140,0.000000 +1.207270,-0.119092,0.864481,-0.274982,1.195430,0.000000 +1.209600,-0.119313,0.866131,-0.275495,1.197730,0.000000 +1.211930,-0.119534,0.867782,-0.276008,1.200020,0.000000 +1.214250,-0.119754,0.869432,-0.276521,1.202310,0.000000 +1.216580,-0.119975,0.871083,-0.277034,1.204600,0.000000 +1.218900,-0.120196,0.872733,-0.277547,1.206890,0.000000 +1.221230,-0.120416,0.874384,-0.278060,1.209180,0.000000 +1.223560,-0.120637,0.876034,-0.278572,1.211470,0.000000 +1.225880,-0.120857,0.877685,-0.279085,1.213760,0.000000 +1.228210,-0.121078,0.879335,-0.279598,1.216050,0.000000 +1.230530,-0.121299,0.880985,-0.280111,1.218340,0.000000 +1.232860,-0.121519,0.882636,-0.280624,1.220630,0.000000 +1.235180,-0.121740,0.884286,-0.281137,1.222920,0.000000 +1.237510,-0.121961,0.885937,-0.281650,1.225210,0.000000 +1.239840,-0.122181,0.887587,-0.282163,1.227500,0.000000 +1.242160,-0.122402,0.889238,-0.282675,1.229790,0.000000 +1.244490,-0.122623,0.890888,-0.283188,1.232090,0.000000 +1.246810,-0.122843,0.892539,-0.283701,1.234380,0.000000 +1.249140,-0.123064,0.894189,-0.284214,1.236670,0.000000 +1.251470,-0.123284,0.895839,-0.284727,1.238960,0.000000 +1.253790,-0.123505,0.897490,-0.285240,1.241250,0.000000 +1.256120,-0.123726,0.899140,-0.285753,1.243540,0.000000 +1.258440,-0.123946,0.900791,-0.286266,1.245830,0.000000 +1.260770,-0.124167,0.902441,-0.286778,1.248120,0.000000 +1.263090,-0.124388,0.904092,-0.287291,1.250410,0.000000 +1.265420,-0.124608,0.905742,-0.287804,1.252700,0.000000 +1.267750,-0.124829,0.907392,-0.288317,1.254990,0.000000 +1.270070,-0.125049,0.909043,-0.288830,1.257280,0.000000 +1.272400,-0.125270,0.910693,-0.289343,1.259570,0.000000 +1.274720,-0.125491,0.912344,-0.289856,1.261860,0.000000 +1.277050,-0.125711,0.913994,-0.290369,1.264160,0.000000 +1.279380,-0.125932,0.915645,-0.290881,1.266450,0.000000 +1.281700,-0.126153,0.917295,-0.291394,1.268740,0.000000 +1.284030,-0.126373,0.918946,-0.291907,1.271030,0.000000 +1.286350,-0.126594,0.920596,-0.292420,1.273320,0.000000 +1.288680,-0.126814,0.922246,-0.292933,1.275610,0.000000 +1.291000,-0.127035,0.923897,-0.293446,1.277900,0.000000 +1.293330,-0.127256,0.925547,-0.293959,1.280190,0.000000 +1.295660,-0.127476,0.927198,-0.294472,1.282480,0.000000 +1.297980,-0.127697,0.928848,-0.294984,1.284770,0.000000 +1.300310,-0.127918,0.930499,-0.295497,1.287060,0.000000 +1.302630,-0.128138,0.932149,-0.296010,1.289350,0.000000 +1.304960,-0.128359,0.933800,-0.296523,1.291640,0.000000 +1.307290,-0.128580,0.935450,-0.297036,1.293930,0.000000 +1.309610,-0.128800,0.937100,-0.297549,1.296230,0.000000 +1.311940,-0.129021,0.938751,-0.298062,1.298520,0.000000 +1.314260,-0.129241,0.940401,-0.298575,1.300810,0.000000 +1.316590,-0.129462,0.942052,-0.299087,1.303100,0.000000 +1.318910,-0.129683,0.943702,-0.299600,1.305390,0.000000 +1.321240,-0.129903,0.945353,-0.300113,1.307680,0.000000 +1.323570,-0.130124,0.947003,-0.300626,1.309970,0.000000 +1.325890,-0.130345,0.948654,-0.301139,1.312260,0.000000 +1.328220,-0.130565,0.950304,-0.301652,1.314550,0.000000 +1.330540,-0.130786,0.951954,-0.302165,1.316840,0.000000 +1.332870,-0.131006,0.953605,-0.302678,1.319130,0.000000 +1.335200,-0.131227,0.955255,-0.303190,1.321420,0.000000 +1.337520,-0.131448,0.956906,-0.303703,1.323710,0.000000 +1.339850,-0.131668,0.958556,-0.304216,1.326000,0.000000 +1.342170,-0.131889,0.960207,-0.304729,1.328300,0.000000 +1.344500,-0.132110,0.961857,-0.305242,1.330590,0.000000 +1.346820,-0.132330,0.963508,-0.305755,1.332880,0.000000 +1.349150,-0.132551,0.965158,-0.306268,1.335170,0.000000 +1.351480,-0.132772,0.966808,-0.306781,1.337460,0.000000 +1.353800,-0.132992,0.968459,-0.307293,1.339750,0.000000 +1.356130,-0.133213,0.970109,-0.307806,1.342040,0.000000 +1.358450,-0.133433,0.971760,-0.308319,1.344330,0.000000 +1.360780,-0.133654,0.973410,-0.308832,1.346620,0.000000 +1.363110,-0.133875,0.975061,-0.309345,1.348910,0.000000 +1.365430,-0.134095,0.976711,-0.309858,1.351200,0.000000 +1.367760,-0.134316,0.978362,-0.310371,1.353490,0.000000 +1.370080,-0.134537,0.980012,-0.310884,1.355780,0.000000 +1.372410,-0.134757,0.981662,-0.311396,1.358070,0.000000 +1.374740,-0.134978,0.983313,-0.311909,1.360370,0.000000 +1.377060,-0.135198,0.984963,-0.312422,1.362660,0.000000 +1.379390,-0.135419,0.986614,-0.312935,1.364950,0.000000 +1.381710,-0.135640,0.988264,-0.313448,1.367240,0.000000 +1.384040,-0.135860,0.989915,-0.313961,1.369530,0.000000 +1.386360,-0.136081,0.991565,-0.314474,1.371820,0.000000 +1.388690,-0.136302,0.993216,-0.314987,1.374110,0.000000 +1.391020,-0.136522,0.994866,-0.315499,1.376400,0.000000 +1.393340,-0.136743,0.996516,-0.316012,1.378690,0.000000 +1.395670,-0.136963,0.998167,-0.316525,1.380980,0.000000 +1.397990,-0.137184,0.999817,-0.317038,1.383270,0.000000 +1.400320,-0.137405,1.001470,-0.317551,1.385560,0.000000 +1.402650,-0.137625,1.003120,-0.318064,1.387850,0.000000 +1.404970,-0.137846,1.004770,-0.318577,1.390140,0.000000 +1.407300,-0.138067,1.006420,-0.319090,1.392440,0.000000 +1.409620,-0.138287,1.008070,-0.319602,1.394730,0.000000 +1.411950,-0.138508,1.009720,-0.320115,1.397020,0.000000 +1.414270,-0.138729,1.011370,-0.320628,1.399310,0.000000 +1.416600,-0.138949,1.013020,-0.321141,1.401600,0.000000 +1.418930,-0.139170,1.014670,-0.321654,1.403890,0.000000 +1.421250,-0.139390,1.016320,-0.322167,1.406180,0.000000 +1.423580,-0.139611,1.017970,-0.322680,1.408470,0.000000 +1.425900,-0.139832,1.019620,-0.323193,1.410760,0.000000 +1.428230,-0.140052,1.021270,-0.323705,1.413050,0.000000 +1.430560,-0.140273,1.022920,-0.324218,1.415340,0.000000 +1.432880,-0.140494,1.024570,-0.324731,1.417630,0.000000 +1.435210,-0.140714,1.026220,-0.325244,1.419920,0.000000 +1.437530,-0.140935,1.027870,-0.325757,1.422210,0.000000 +1.439860,-0.141155,1.029530,-0.326270,1.424510,0.000000 +1.442180,-0.141376,1.031180,-0.326783,1.426800,0.000000 +1.444510,-0.141597,1.032830,-0.327296,1.429090,0.000000 +1.446840,-0.141817,1.034480,-0.327808,1.431380,0.000000 +1.449160,-0.142038,1.036130,-0.328321,1.433670,0.000000 +1.451490,-0.142259,1.037780,-0.328834,1.435960,0.000000 +1.453810,-0.142479,1.039430,-0.329347,1.438250,0.000000 +1.456140,-0.142700,1.041080,-0.329860,1.440540,0.000000 +1.458470,-0.142921,1.042730,-0.330373,1.442830,0.000000 +1.460790,-0.143141,1.044380,-0.330886,1.445120,0.000000 +1.463120,-0.143362,1.046030,-0.331399,1.447410,0.000000 +1.465440,-0.143582,1.047680,-0.331911,1.449700,0.000000 +1.467770,-0.143803,1.049330,-0.332424,1.451990,0.000000 +1.470090,-0.144024,1.050980,-0.332937,1.454280,0.000000 +1.472420,-0.144244,1.052630,-0.333450,1.456580,0.000000 +1.474750,-0.144465,1.054280,-0.333963,1.458870,0.000000 +1.477070,-0.144686,1.055930,-0.334476,1.461160,0.000000 +1.479400,-0.144906,1.057580,-0.334989,1.463450,0.000000 +1.481720,-0.145127,1.059230,-0.335502,1.465740,0.000000 +1.484050,-0.145347,1.060880,-0.336014,1.468030,0.000000 +1.486380,-0.145568,1.062530,-0.336527,1.470320,0.000000 +1.488700,-0.145789,1.064180,-0.337040,1.472610,0.000000 +1.491030,-0.146009,1.065830,-0.337553,1.474900,0.000000 +1.493350,-0.146230,1.067490,-0.338066,1.477190,0.000000 +1.495680,-0.146451,1.069140,-0.338579,1.479480,0.000000 +1.498000,-0.146671,1.070790,-0.339092,1.481770,0.000000 +1.500330,-0.146892,1.072440,-0.339605,1.484060,0.000000 +1.502660,-0.147113,1.074090,-0.340117,1.486350,0.000000 +1.504980,-0.147333,1.075740,-0.340630,1.488640,0.000000 +1.507310,-0.147554,1.077390,-0.341143,1.490940,0.000000 +1.509630,-0.147774,1.079040,-0.341656,1.493230,0.000000 +1.511960,-0.147995,1.080690,-0.342169,1.495520,0.000000 +1.514290,-0.148216,1.082340,-0.342682,1.497810,0.000000 +1.516610,-0.148436,1.083990,-0.343195,1.500100,0.000000 +1.518930,-0.148657,1.085640,-0.343707,1.502390,0.000000 +1.521240,-0.148878,1.087290,-0.344220,1.504680,0.000000 +1.523540,-0.149098,1.088940,-0.344733,1.506970,0.000000 +1.525830,-0.149319,1.090590,-0.345246,1.509260,0.000000 +1.528100,-0.149539,1.092240,-0.345759,1.511550,0.000000 +1.530360,-0.149760,1.093890,-0.346272,1.513840,0.000000 +1.532590,-0.149981,1.095540,-0.346785,1.516120,0.000000 +1.534800,-0.150201,1.097190,-0.347298,1.518380,0.000000 +1.536990,-0.150422,1.098840,-0.347810,1.520640,0.000000 +1.539150,-0.150643,1.100490,-0.348323,1.522880,0.000000 +1.541280,-0.150863,1.102130,-0.348836,1.525100,0.000000 +1.543370,-0.151084,1.103760,-0.349349,1.527290,0.000000 +1.545430,-0.151304,1.105380,-0.349862,1.529460,0.000000 +1.547450,-0.151525,1.106980,-0.350375,1.531610,0.000000 +1.549430,-0.151746,1.108570,-0.350888,1.533720,0.000000 +1.551360,-0.151966,1.110140,-0.351401,1.535790,0.000000 +1.553250,-0.152187,1.111690,-0.351913,1.537830,0.000000 +1.555090,-0.152408,1.113210,-0.352426,1.539820,0.000000 +1.556870,-0.152628,1.114700,-0.352939,1.541770,0.000000 +1.558610,-0.152849,1.116170,-0.353452,1.543680,0.000000 +1.560280,-0.153070,1.117600,-0.353965,1.545530,0.000000 +1.561900,-0.153290,1.119000,-0.354478,1.547330,0.000000 +1.563460,-0.153511,1.120360,-0.354991,1.549070,0.000000 +1.564950,-0.153731,1.121680,-0.355504,1.550750,0.000000 +1.566370,-0.153952,1.122960,-0.356016,1.552370,0.000000 +1.567730,-0.154173,1.124190,-0.356529,1.553930,0.000000 +1.569010,-0.154393,1.125380,-0.357042,1.555410,0.000000 +1.570210,-0.154614,1.126510,-0.357555,1.556820,0.000000 +1.571340,-0.154835,1.127600,-0.358068,1.558160,0.000000 +1.572400,-0.155055,1.128620,-0.358581,1.559420,0.000000 +1.573380,-0.155276,1.129590,-0.359094,1.560590,0.000000 +1.574290,-0.155496,1.130500,-0.359607,1.561680,0.000000 +1.575140,-0.155717,1.131340,-0.360119,1.562700,0.000000 +1.575920,-0.155938,1.132120,-0.360630,1.563630,0.000000 +1.576630,-0.156158,1.132840,-0.361135,1.564490,0.000000 +1.577290,-0.156379,1.133500,-0.361632,1.565280,0.000000 +1.577890,-0.156600,1.134100,-0.362118,1.565990,0.000000 +1.578440,-0.156820,1.134640,-0.362589,1.566650,0.000000 +1.578930,-0.157041,1.135140,-0.363042,1.567240,0.000000 +1.579370,-0.157261,1.135580,-0.363475,1.567770,0.000000 +1.579770,-0.157481,1.135980,-0.363883,1.568250,0.000000 +1.580130,-0.157697,1.136330,-0.364265,1.568670,0.000000 +1.580440,-0.157906,1.136640,-0.364616,1.569050,0.000000 +1.580710,-0.158106,1.136920,-0.364935,1.569370,0.000000 +1.580950,-0.158295,1.137150,-0.365217,1.569660,0.000000 +1.581150,-0.158470,1.137360,-0.365460,1.569900,0.000000 +1.581320,-0.158628,1.137530,-0.365666,1.570110,0.000000 +1.581460,-0.158767,1.137670,-0.365837,1.570280,0.000000 +1.581580,-0.158884,1.137790,-0.365978,1.570420,0.000000 +1.581680,-0.158977,1.137880,-0.366090,1.570530,0.000000 +1.581750,-0.159051,1.137960,-0.366178,1.570620,0.000000 +1.581800,-0.159106,1.138010,-0.366244,1.570680,0.000000 +1.581840,-0.159145,1.138050,-0.366291,1.570730,0.000000 +1.581870,-0.159171,1.138080,-0.366322,1.570760,0.000000 +1.581890,-0.159187,1.138090,-0.366342,1.570780,0.000000 +1.581890,-0.159196,1.138100,-0.366351,1.570790,0.000000 +1.581900,-0.159199,1.138100,-0.366355,1.570790,0.000000 +1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +1.581900,-0.159203,1.138110,-0.366355,1.570800,-0.000008 +1.581890,-0.159200,1.138100,-0.366352,1.570790,-0.000008 +1.581890,-0.159191,1.138100,-0.366342,1.570780,-0.000008 +1.581870,-0.159175,1.138080,-0.366323,1.570760,-0.000008 +1.581840,-0.159149,1.138050,-0.366291,1.570730,-0.000008 +1.581800,-0.159110,1.138010,-0.366244,1.570680,-0.000008 +1.581750,-0.159055,1.137960,-0.366178,1.570620,-0.000008 +1.581680,-0.158981,1.137890,-0.366091,1.570530,-0.000008 +1.581580,-0.158888,1.137790,-0.365978,1.570420,-0.000008 +1.581470,-0.158771,1.137680,-0.365838,1.570280,-0.000008 +1.581320,-0.158632,1.137530,-0.365666,1.570110,-0.000008 +1.581150,-0.158474,1.137360,-0.365460,1.569900,-0.000008 +1.580950,-0.158299,1.137160,-0.365217,1.569660,-0.000008 +1.580710,-0.158110,1.136920,-0.364935,1.569370,-0.000008 +1.580440,-0.157910,1.136650,-0.364617,1.569050,-0.000008 +1.580130,-0.157700,1.136340,-0.364265,1.568670,-0.000008 +1.579770,-0.157485,1.135980,-0.363884,1.568250,-0.000008 +1.579370,-0.157265,1.135580,-0.363475,1.567770,-0.000008 +1.578930,-0.157045,1.135140,-0.363042,1.567240,-0.000008 +1.578440,-0.156824,1.134650,-0.362589,1.566650,-0.000008 +1.577890,-0.156604,1.134100,-0.362118,1.565990,-0.000008 +1.577290,-0.156383,1.133500,-0.361633,1.565280,-0.000008 +1.576630,-0.156162,1.132840,-0.361136,1.564490,-0.000008 +1.575920,-0.155942,1.132130,-0.360630,1.563630,-0.000008 +1.575140,-0.155721,1.131350,-0.360120,1.562700,-0.000008 +1.574290,-0.155500,1.130500,-0.359607,1.561680,-0.000008 +1.573380,-0.155280,1.129600,-0.359094,1.560590,-0.000008 +1.572400,-0.155059,1.128630,-0.358581,1.559420,-0.000008 +1.571340,-0.154839,1.127600,-0.358068,1.558160,-0.000008 +1.570210,-0.154618,1.126520,-0.357555,1.556820,-0.000008 +1.569010,-0.154397,1.125380,-0.357043,1.555410,-0.000008 +1.567730,-0.154177,1.124200,-0.356530,1.553930,-0.000008 +1.566370,-0.153956,1.122970,-0.356017,1.552370,-0.000008 +1.564950,-0.153735,1.121690,-0.355504,1.550760,-0.000008 +1.563460,-0.153515,1.120370,-0.354991,1.549070,-0.000008 +1.561900,-0.153294,1.119010,-0.354478,1.547330,-0.000008 +1.560280,-0.153074,1.117610,-0.353965,1.545530,-0.000008 +1.558610,-0.152853,1.116170,-0.353452,1.543680,-0.000008 +1.556870,-0.152632,1.114710,-0.352940,1.541770,-0.000008 +1.555090,-0.152412,1.113210,-0.352427,1.539820,-0.000008 +1.553250,-0.152191,1.111690,-0.351914,1.537830,-0.000008 +1.551360,-0.151970,1.110140,-0.351401,1.535790,-0.000008 +1.549430,-0.151750,1.108570,-0.350888,1.533720,-0.000008 +1.547450,-0.151529,1.106990,-0.350375,1.531610,-0.000008 +1.545430,-0.151308,1.105380,-0.349862,1.529460,-0.000008 +1.543370,-0.151088,1.103760,-0.349349,1.527290,-0.000008 +1.541280,-0.150867,1.102130,-0.348837,1.525100,-0.000008 +1.539150,-0.150647,1.100490,-0.348324,1.522880,-0.000008 +1.536990,-0.150426,1.098850,-0.347811,1.520640,-0.000008 +1.534800,-0.150205,1.097200,-0.347298,1.518380,-0.000008 +1.532590,-0.149985,1.095550,-0.346785,1.516120,-0.000008 +1.530360,-0.149764,1.093900,-0.346272,1.513840,-0.000008 +1.528100,-0.149543,1.092250,-0.345759,1.511550,-0.000008 +1.525830,-0.149323,1.090600,-0.345246,1.509260,-0.000008 +1.523540,-0.149102,1.088950,-0.344734,1.506970,-0.000008 +1.521240,-0.148882,1.087300,-0.344221,1.504680,-0.000008 +1.518930,-0.148661,1.085640,-0.343708,1.502390,-0.000008 +1.516610,-0.148440,1.083990,-0.343195,1.500100,-0.000008 +1.514290,-0.148220,1.082340,-0.342682,1.497810,-0.000008 +1.511960,-0.147999,1.080690,-0.342169,1.495520,-0.000008 +1.509630,-0.147778,1.079040,-0.341656,1.493230,-0.000008 +1.507310,-0.147558,1.077390,-0.341143,1.490940,-0.000008 +1.504980,-0.147337,1.075740,-0.340631,1.488650,-0.000008 +1.502660,-0.147116,1.074090,-0.340118,1.486350,-0.000008 +1.500330,-0.146896,1.072440,-0.339605,1.484060,-0.000008 +1.498010,-0.146675,1.070790,-0.339092,1.481770,-0.000008 +1.495680,-0.146455,1.069140,-0.338579,1.479480,-0.000008 +1.493350,-0.146234,1.067490,-0.338066,1.477190,-0.000008 +1.491030,-0.146013,1.065840,-0.337553,1.474900,-0.000008 +1.488700,-0.145793,1.064190,-0.337040,1.472610,-0.000008 +1.486380,-0.145572,1.062540,-0.336528,1.470320,-0.000008 +1.484050,-0.145351,1.060890,-0.336015,1.468030,-0.000008 +1.481720,-0.145131,1.059240,-0.335502,1.465740,-0.000008 +1.479400,-0.144910,1.057590,-0.334989,1.463450,-0.000008 +1.477070,-0.144690,1.055940,-0.334476,1.461160,-0.000008 +1.474750,-0.144469,1.054290,-0.333963,1.458870,-0.000008 +1.472420,-0.144248,1.052640,-0.333450,1.456580,-0.000008 +1.470090,-0.144028,1.050990,-0.332938,1.454280,-0.000008 +1.467770,-0.143807,1.049340,-0.332425,1.451990,-0.000008 +1.465440,-0.143586,1.047680,-0.331912,1.449700,-0.000008 +1.463120,-0.143366,1.046030,-0.331399,1.447410,-0.000008 +1.460790,-0.143145,1.044380,-0.330886,1.445120,-0.000008 +1.458470,-0.142924,1.042730,-0.330373,1.442830,-0.000008 +1.456140,-0.142704,1.041080,-0.329860,1.440540,-0.000008 +1.453810,-0.142483,1.039430,-0.329347,1.438250,-0.000008 +1.451490,-0.142263,1.037780,-0.328835,1.435960,-0.000008 +1.449160,-0.142042,1.036130,-0.328322,1.433670,-0.000008 +1.446840,-0.141821,1.034480,-0.327809,1.431380,-0.000008 +1.444510,-0.141601,1.032830,-0.327296,1.429090,-0.000008 +1.442180,-0.141380,1.031180,-0.326783,1.426800,-0.000008 +1.439860,-0.141159,1.029530,-0.326270,1.424510,-0.000008 +1.437530,-0.140939,1.027880,-0.325757,1.422220,-0.000008 +1.435210,-0.140718,1.026230,-0.325244,1.419920,-0.000008 +1.432880,-0.140498,1.024580,-0.324732,1.417630,-0.000008 +1.430560,-0.140277,1.022930,-0.324219,1.415340,-0.000008 +1.428230,-0.140056,1.021280,-0.323706,1.413050,-0.000008 +1.425900,-0.139836,1.019630,-0.323193,1.410760,-0.000008 +1.423580,-0.139615,1.017980,-0.322680,1.408470,-0.000008 +1.421250,-0.139394,1.016330,-0.322167,1.406180,-0.000008 +1.418930,-0.139174,1.014680,-0.321654,1.403890,-0.000008 +1.416600,-0.138953,1.013030,-0.321141,1.401600,-0.000008 +1.414270,-0.138733,1.011370,-0.320629,1.399310,-0.000008 +1.411950,-0.138512,1.009720,-0.320116,1.397020,-0.000008 +1.409620,-0.138291,1.008070,-0.319603,1.394730,-0.000008 +1.407300,-0.138071,1.006420,-0.319090,1.392440,-0.000008 +1.404970,-0.137850,1.004770,-0.318577,1.390150,-0.000008 +1.402650,-0.137629,1.003120,-0.318064,1.387850,-0.000008 +1.400320,-0.137409,1.001470,-0.317551,1.385560,-0.000008 +1.397990,-0.137188,0.999822,-0.317038,1.383270,-0.000008 +1.395670,-0.136967,0.998171,-0.316526,1.380980,-0.000008 +1.393340,-0.136747,0.996521,-0.316013,1.378690,-0.000008 +1.391020,-0.136526,0.994870,-0.315500,1.376400,-0.000008 +1.388690,-0.136306,0.993220,-0.314987,1.374110,-0.000008 +1.386360,-0.136085,0.991570,-0.314474,1.371820,-0.000008 +1.384040,-0.135864,0.989919,-0.313961,1.369530,-0.000008 +1.381710,-0.135644,0.988269,-0.313448,1.367240,-0.000008 +1.379390,-0.135423,0.986618,-0.312935,1.364950,-0.000008 +1.377060,-0.135202,0.984968,-0.312423,1.362660,-0.000008 +1.374740,-0.134982,0.983317,-0.311910,1.360370,-0.000008 +1.372410,-0.134761,0.981667,-0.311397,1.358080,-0.000008 +1.370080,-0.134541,0.980016,-0.310884,1.355780,-0.000008 +1.367760,-0.134320,0.978366,-0.310371,1.353490,-0.000008 +1.365430,-0.134099,0.976716,-0.309858,1.351200,-0.000008 +1.363110,-0.133879,0.975065,-0.309345,1.348910,-0.000008 +1.360780,-0.133658,0.973415,-0.308832,1.346620,-0.000008 +1.358450,-0.133437,0.971764,-0.308320,1.344330,-0.000008 +1.356130,-0.133217,0.970114,-0.307807,1.342040,-0.000008 +1.353800,-0.132996,0.968463,-0.307294,1.339750,-0.000008 +1.351480,-0.132775,0.966813,-0.306781,1.337460,-0.000008 +1.349150,-0.132555,0.965162,-0.306268,1.335170,-0.000008 +1.346830,-0.132334,0.963512,-0.305755,1.332880,-0.000008 +1.344500,-0.132114,0.961862,-0.305242,1.330590,-0.000008 +1.342170,-0.131893,0.960211,-0.304729,1.328300,-0.000008 +1.339850,-0.131672,0.958561,-0.304217,1.326010,-0.000008 +1.337520,-0.131452,0.956910,-0.303704,1.323710,-0.000008 +1.335200,-0.131231,0.955260,-0.303191,1.321420,-0.000008 +1.332870,-0.131010,0.953609,-0.302678,1.319130,-0.000008 +1.330540,-0.130790,0.951959,-0.302165,1.316840,-0.000008 +1.328220,-0.130569,0.950308,-0.301652,1.314550,-0.000008 +1.325890,-0.130349,0.948658,-0.301139,1.312260,-0.000008 +1.323570,-0.130128,0.947008,-0.300626,1.309970,-0.000008 +1.321240,-0.129907,0.945357,-0.300114,1.307680,-0.000008 +1.318920,-0.129687,0.943707,-0.299601,1.305390,-0.000008 +1.316590,-0.129466,0.942056,-0.299088,1.303100,-0.000008 +1.314260,-0.129245,0.940406,-0.298575,1.300810,-0.000008 +1.311940,-0.129025,0.938755,-0.298062,1.298520,-0.000008 +1.309610,-0.128804,0.937105,-0.297549,1.296230,-0.000008 +1.307290,-0.128583,0.935454,-0.297036,1.293940,-0.000008 +1.304960,-0.128363,0.933804,-0.296523,1.291640,-0.000008 +1.302630,-0.128142,0.932154,-0.296011,1.289350,-0.000008 +1.300310,-0.127922,0.930503,-0.295498,1.287060,-0.000008 +1.297980,-0.127701,0.928853,-0.294985,1.284770,-0.000008 +1.295660,-0.127480,0.927202,-0.294472,1.282480,-0.000008 +1.293330,-0.127260,0.925552,-0.293959,1.280190,-0.000008 +1.291010,-0.127039,0.923901,-0.293446,1.277900,-0.000008 +1.288680,-0.126818,0.922251,-0.292933,1.275610,-0.000008 +1.286350,-0.126598,0.920600,-0.292420,1.273320,-0.000008 +1.284030,-0.126377,0.918950,-0.291908,1.271030,-0.000008 +1.281700,-0.126157,0.917300,-0.291395,1.268740,-0.000008 +1.279380,-0.125936,0.915649,-0.290882,1.266450,-0.000008 +1.277050,-0.125715,0.913999,-0.290369,1.264160,-0.000008 +1.274720,-0.125495,0.912348,-0.289856,1.261870,-0.000008 +1.272400,-0.125274,0.910698,-0.289343,1.259570,-0.000008 +1.270070,-0.125053,0.909047,-0.288830,1.257280,-0.000008 +1.267750,-0.124833,0.907397,-0.288317,1.254990,-0.000008 +1.265420,-0.124612,0.905747,-0.287805,1.252700,-0.000008 +1.263100,-0.124392,0.904096,-0.287292,1.250410,-0.000008 +1.260770,-0.124171,0.902446,-0.286779,1.248120,-0.000008 +1.258440,-0.123950,0.900795,-0.286266,1.245830,-0.000008 +1.256120,-0.123730,0.899145,-0.285753,1.243540,-0.000008 +1.253790,-0.123509,0.897494,-0.285240,1.241250,-0.000008 +1.251470,-0.123288,0.895844,-0.284727,1.238960,-0.000008 +1.249140,-0.123068,0.894193,-0.284214,1.236670,-0.000008 +1.246810,-0.122847,0.892543,-0.283702,1.234380,-0.000008 +1.244490,-0.122626,0.890893,-0.283189,1.232090,-0.000008 +1.242160,-0.122406,0.889242,-0.282676,1.229800,-0.000008 +1.239840,-0.122185,0.887592,-0.282163,1.227500,-0.000008 +1.237510,-0.121965,0.885941,-0.281650,1.225210,-0.000008 +1.235180,-0.121744,0.884291,-0.281137,1.222920,-0.000008 +1.232860,-0.121523,0.882640,-0.280624,1.220630,-0.000008 +1.230530,-0.121303,0.880990,-0.280111,1.218340,-0.000008 +1.228210,-0.121082,0.879339,-0.279599,1.216050,-0.000008 +1.225880,-0.120861,0.877689,-0.279086,1.213760,-0.000008 +1.223560,-0.120641,0.876039,-0.278573,1.211470,-0.000008 +1.221230,-0.120420,0.874388,-0.278060,1.209180,-0.000008 +1.218900,-0.120200,0.872738,-0.277547,1.206890,-0.000008 +1.216580,-0.119979,0.871087,-0.277034,1.204600,-0.000008 +1.214250,-0.119758,0.869437,-0.276521,1.202310,-0.000008 +1.211930,-0.119538,0.867786,-0.276008,1.200020,-0.000008 +1.209600,-0.119317,0.866136,-0.275496,1.197730,-0.000008 +1.207270,-0.119096,0.864485,-0.274983,1.195440,-0.000008 +1.204950,-0.118876,0.862835,-0.274470,1.193140,-0.000008 +1.202620,-0.118655,0.861185,-0.273957,1.190850,-0.000008 +1.200300,-0.118434,0.859534,-0.273444,1.188560,-0.000008 +1.197970,-0.118214,0.857884,-0.272931,1.186270,-0.000008 +1.195650,-0.117993,0.856233,-0.272418,1.183980,-0.000008 +1.193320,-0.117773,0.854583,-0.271905,1.181690,-0.000008 +1.190990,-0.117552,0.852932,-0.271393,1.179400,-0.000008 +1.188670,-0.117331,0.851282,-0.270880,1.177110,-0.000008 +1.186340,-0.117111,0.849631,-0.270367,1.174820,-0.000008 +1.184020,-0.116890,0.847981,-0.269854,1.172530,-0.000008 +1.181690,-0.116669,0.846331,-0.269341,1.170240,-0.000008 +1.179360,-0.116449,0.844680,-0.268828,1.167950,-0.000008 +1.177040,-0.116228,0.843030,-0.268315,1.165660,-0.000008 +1.174710,-0.116008,0.841379,-0.267802,1.163370,-0.000008 +1.172390,-0.115787,0.839729,-0.267290,1.161070,-0.000008 +1.170060,-0.115566,0.838078,-0.266777,1.158780,-0.000008 +1.167740,-0.115346,0.836428,-0.266264,1.156490,-0.000008 +1.165410,-0.115125,0.834777,-0.265751,1.154200,-0.000008 +1.163080,-0.114904,0.833127,-0.265238,1.151910,-0.000008 +1.160760,-0.114684,0.831477,-0.264725,1.149620,-0.000008 +1.158430,-0.114463,0.829826,-0.264212,1.147330,-0.000008 +1.156110,-0.114243,0.828176,-0.263699,1.145040,-0.000008 +1.153780,-0.114022,0.826525,-0.263187,1.142750,-0.000008 +1.151450,-0.113801,0.824875,-0.262674,1.140460,-0.000008 +1.149130,-0.113581,0.823224,-0.262161,1.138170,-0.000008 +1.146800,-0.113360,0.821574,-0.261648,1.135880,-0.000008 +1.144480,-0.113139,0.819924,-0.261135,1.133590,-0.000008 +1.142150,-0.112919,0.818273,-0.260622,1.131300,-0.000008 +1.139830,-0.112698,0.816623,-0.260109,1.129000,-0.000008 +1.137500,-0.112477,0.814972,-0.259596,1.126710,-0.000008 +1.135170,-0.112257,0.813322,-0.259084,1.124420,-0.000008 +1.132850,-0.112036,0.811671,-0.258571,1.122130,-0.000008 +1.130520,-0.111816,0.810021,-0.258058,1.119840,-0.000008 +1.128200,-0.111595,0.808370,-0.257545,1.117550,-0.000008 +1.125870,-0.111374,0.806720,-0.257032,1.115260,-0.000008 +1.123540,-0.111154,0.805070,-0.256519,1.112970,-0.000008 +1.121220,-0.110933,0.803419,-0.256006,1.110680,-0.000008 +1.118890,-0.110712,0.801769,-0.255493,1.108390,-0.000008 +1.116570,-0.110492,0.800118,-0.254981,1.106100,-0.000008 +1.114240,-0.110271,0.798468,-0.254468,1.103810,-0.000008 +1.111920,-0.110051,0.796817,-0.253955,1.101520,-0.000008 +1.109590,-0.109830,0.795167,-0.253442,1.099230,-0.000008 +1.107260,-0.109609,0.793516,-0.252929,1.096930,-0.000008 +1.104940,-0.109389,0.791866,-0.252416,1.094640,-0.000008 +1.102610,-0.109168,0.790216,-0.251903,1.092350,-0.000008 +1.100290,-0.108947,0.788565,-0.251390,1.090060,-0.000008 +1.097960,-0.108727,0.786915,-0.250878,1.087770,-0.000008 +1.095630,-0.108506,0.785264,-0.250365,1.085480,-0.000008 +1.093310,-0.108285,0.783614,-0.249852,1.083190,-0.000008 +1.090980,-0.108065,0.781963,-0.249339,1.080900,-0.000008 +1.088660,-0.107844,0.780313,-0.248826,1.078610,-0.000008 +1.086330,-0.107624,0.778662,-0.248313,1.076320,-0.000008 +1.084010,-0.107403,0.777012,-0.247800,1.074030,-0.000008 +1.081680,-0.107182,0.775362,-0.247287,1.071740,-0.000008 +1.079350,-0.106962,0.773711,-0.246775,1.069450,-0.000008 +1.077030,-0.106741,0.772061,-0.246262,1.067160,-0.000008 +1.074700,-0.106520,0.770410,-0.245749,1.064860,-0.000008 +1.072380,-0.106300,0.768760,-0.245236,1.062570,-0.000008 +1.070050,-0.106079,0.767109,-0.244723,1.060280,-0.000008 +1.067720,-0.105859,0.765459,-0.244210,1.057990,-0.000008 +1.065400,-0.105638,0.763808,-0.243697,1.055700,-0.000008 +1.063070,-0.105417,0.762158,-0.243184,1.053410,-0.000008 +1.060750,-0.105197,0.760508,-0.242672,1.051120,-0.000008 +1.058420,-0.104976,0.758857,-0.242159,1.048830,-0.000008 +1.056100,-0.104755,0.757207,-0.241646,1.046540,-0.000008 +1.053770,-0.104535,0.755556,-0.241133,1.044250,-0.000008 +1.051440,-0.104314,0.753906,-0.240620,1.041960,-0.000008 +1.049120,-0.104093,0.752255,-0.240107,1.039670,-0.000008 +1.046790,-0.103873,0.750605,-0.239594,1.037380,-0.000008 +1.044470,-0.103652,0.748954,-0.239081,1.035090,-0.000008 +1.042140,-0.103432,0.747304,-0.238569,1.032790,-0.000008 +1.039810,-0.103211,0.745654,-0.238056,1.030500,-0.000008 +1.037490,-0.102990,0.744003,-0.237543,1.028210,-0.000008 +1.035160,-0.102770,0.742353,-0.237030,1.025920,-0.000008 +1.032840,-0.102549,0.740702,-0.236517,1.023630,-0.000008 +1.030510,-0.102328,0.739052,-0.236004,1.021340,-0.000008 +1.028190,-0.102108,0.737401,-0.235491,1.019050,-0.000008 +1.025860,-0.101887,0.735751,-0.234978,1.016760,-0.000008 +1.023530,-0.101667,0.734100,-0.234466,1.014470,-0.000008 +1.021210,-0.101446,0.732450,-0.233953,1.012180,-0.000008 +1.018880,-0.101225,0.730800,-0.233440,1.009890,-0.000008 +1.016560,-0.101005,0.729149,-0.232927,1.007600,-0.000008 +1.014230,-0.100784,0.727499,-0.232414,1.005310,-0.000008 +1.011900,-0.100563,0.725848,-0.231901,1.003020,-0.000008 +1.009580,-0.100343,0.724198,-0.231388,1.000720,-0.000008 +1.007250,-0.100122,0.722547,-0.230876,0.998434,-0.000008 +1.004930,-0.099902,0.720897,-0.230363,0.996143,-0.000008 +1.002600,-0.099681,0.719247,-0.229850,0.993853,-0.000008 +1.000270,-0.099460,0.717596,-0.229337,0.991562,-0.000008 +0.997949,-0.099240,0.715946,-0.228824,0.989271,-0.000008 +0.995623,-0.099019,0.714295,-0.228311,0.986981,-0.000008 +0.993297,-0.098798,0.712645,-0.227798,0.984690,-0.000008 +0.990972,-0.098578,0.710994,-0.227285,0.982399,-0.000008 +0.988646,-0.098357,0.709344,-0.226773,0.980108,-0.000008 +0.986320,-0.098137,0.707693,-0.226260,0.977818,-0.000008 +0.983994,-0.097916,0.706043,-0.225747,0.975527,-0.000008 +0.981668,-0.097695,0.704393,-0.225234,0.973236,-0.000008 +0.979342,-0.097475,0.702742,-0.224721,0.970946,-0.000008 +0.977017,-0.097254,0.701092,-0.224208,0.968655,-0.000008 +0.974691,-0.097033,0.699441,-0.223695,0.966364,-0.000008 +0.972365,-0.096813,0.697791,-0.223182,0.964074,-0.000008 +0.970039,-0.096592,0.696140,-0.222670,0.961783,-0.000008 +0.967713,-0.096371,0.694490,-0.222157,0.959492,-0.000008 +0.965387,-0.096151,0.692839,-0.221644,0.957201,-0.000008 +0.963062,-0.095930,0.691189,-0.221131,0.954911,-0.000008 +0.960736,-0.095710,0.689539,-0.220618,0.952620,-0.000008 +0.958410,-0.095489,0.687888,-0.220105,0.950329,-0.000008 +0.956084,-0.095268,0.686238,-0.219592,0.948039,-0.000008 +0.953758,-0.095048,0.684587,-0.219079,0.945748,-0.000008 +0.951432,-0.094827,0.682937,-0.218567,0.943457,-0.000008 +0.949106,-0.094606,0.681286,-0.218054,0.941166,-0.000008 +0.946781,-0.094386,0.679636,-0.217541,0.938876,-0.000008 +0.944455,-0.094165,0.677985,-0.217028,0.936585,-0.000008 +0.942129,-0.093945,0.676335,-0.216515,0.934294,-0.000008 +0.939803,-0.093724,0.674685,-0.216002,0.932004,-0.000008 +0.937477,-0.093503,0.673034,-0.215489,0.929713,-0.000008 +0.935151,-0.093283,0.671384,-0.214976,0.927422,-0.000008 +0.932826,-0.093062,0.669733,-0.214464,0.925132,-0.000008 +0.930500,-0.092841,0.668083,-0.213951,0.922841,-0.000008 +0.928174,-0.092621,0.666432,-0.213438,0.920550,-0.000008 +0.925848,-0.092400,0.664782,-0.212925,0.918259,-0.000008 +0.923522,-0.092179,0.663131,-0.212412,0.915969,-0.000008 +0.921196,-0.091959,0.661481,-0.211899,0.913678,-0.000008 +0.918871,-0.091738,0.659831,-0.211386,0.911387,-0.000008 +0.916545,-0.091518,0.658180,-0.210873,0.909097,-0.000008 +0.914219,-0.091297,0.656530,-0.210361,0.906806,-0.000008 +0.911893,-0.091076,0.654879,-0.209848,0.904515,-0.000008 +0.909567,-0.090856,0.653229,-0.209335,0.902224,-0.000008 +0.907241,-0.090635,0.651578,-0.208822,0.899934,-0.000008 +0.904915,-0.090414,0.649928,-0.208309,0.897643,-0.000008 +0.902590,-0.090194,0.648277,-0.207796,0.895352,-0.000008 +0.900264,-0.089973,0.646627,-0.207283,0.893062,-0.000008 +0.897938,-0.089752,0.644977,-0.206770,0.890771,-0.000008 +0.895612,-0.089532,0.643326,-0.206258,0.888480,-0.000008 +0.893286,-0.089311,0.641676,-0.205745,0.886189,-0.000008 +0.890960,-0.089091,0.640025,-0.205232,0.883899,-0.000008 +0.888635,-0.088870,0.638375,-0.204719,0.881608,-0.000008 +0.886309,-0.088649,0.636724,-0.204206,0.879317,-0.000008 +0.883983,-0.088429,0.635074,-0.203693,0.877027,-0.000008 +0.881657,-0.088208,0.633423,-0.203180,0.874736,-0.000008 +0.879331,-0.087987,0.631773,-0.202667,0.872445,-0.000008 +0.877005,-0.087767,0.630123,-0.202155,0.870155,-0.000008 +0.874680,-0.087546,0.628472,-0.201642,0.867864,-0.000008 +0.872354,-0.087326,0.626822,-0.201129,0.865573,-0.000008 +0.870028,-0.087105,0.625171,-0.200616,0.863282,-0.000008 +0.867702,-0.086884,0.623521,-0.200103,0.860992,-0.000008 +0.865376,-0.086664,0.621870,-0.199590,0.858701,-0.000008 +0.863050,-0.086443,0.620220,-0.199077,0.856410,-0.000008 +0.860724,-0.086222,0.618570,-0.198564,0.854120,-0.000008 +0.858399,-0.086002,0.616919,-0.198052,0.851829,-0.000008 +0.856073,-0.085781,0.615269,-0.197539,0.849538,-0.000008 +0.853747,-0.085560,0.613618,-0.197026,0.847247,-0.000008 +0.851421,-0.085340,0.611968,-0.196513,0.844957,-0.000008 +0.849095,-0.085119,0.610317,-0.196000,0.842666,-0.000008 +0.846769,-0.084899,0.608667,-0.195487,0.840375,-0.000008 +0.844444,-0.084678,0.607016,-0.194974,0.838085,-0.000008 +0.842118,-0.084457,0.605366,-0.194461,0.835794,-0.000008 +0.839792,-0.084237,0.603716,-0.193949,0.833503,-0.000008 +0.837466,-0.084016,0.602065,-0.193436,0.831212,-0.000008 +0.835140,-0.083795,0.600415,-0.192923,0.828922,-0.000008 +0.832814,-0.083575,0.598764,-0.192410,0.826631,-0.000008 +0.830489,-0.083354,0.597114,-0.191897,0.824340,-0.000008 +0.828163,-0.083134,0.595463,-0.191384,0.822050,-0.000008 +0.825837,-0.082913,0.593813,-0.190871,0.819759,-0.000008 +0.823511,-0.082692,0.592162,-0.190358,0.817468,-0.000008 +0.821185,-0.082472,0.590512,-0.189846,0.815178,-0.000008 +0.818859,-0.082251,0.588862,-0.189333,0.812887,-0.000008 +0.816533,-0.082030,0.587211,-0.188820,0.810596,-0.000008 +0.814208,-0.081810,0.585561,-0.188307,0.808305,-0.000008 +0.811882,-0.081589,0.583910,-0.187794,0.806015,-0.000008 +0.809556,-0.081368,0.582260,-0.187281,0.803724,-0.000008 +0.807230,-0.081148,0.580609,-0.186768,0.801433,-0.000008 +0.804904,-0.080927,0.578959,-0.186255,0.799143,-0.000008 +0.802578,-0.080707,0.577308,-0.185743,0.796852,-0.000008 +0.800253,-0.080486,0.575658,-0.185230,0.794561,-0.000008 +0.797927,-0.080265,0.574008,-0.184717,0.792270,-0.000008 +0.795601,-0.080045,0.572357,-0.184204,0.789980,-0.000008 +0.793275,-0.079824,0.570707,-0.183691,0.787689,-0.000008 +0.790949,-0.079603,0.569056,-0.183178,0.785398,-0.000008 +0.788623,-0.079383,0.567406,-0.182665,0.783108,-0.000008 +0.786298,-0.079162,0.565755,-0.182152,0.780817,-0.000008 +0.783972,-0.078942,0.564105,-0.181640,0.778526,-0.000008 +0.781646,-0.078721,0.562454,-0.181127,0.776236,-0.000008 +0.779320,-0.078500,0.560804,-0.180614,0.773945,-0.000008 +0.776994,-0.078280,0.559154,-0.180101,0.771654,-0.000008 +0.774668,-0.078059,0.557503,-0.179588,0.769363,-0.000008 +0.772342,-0.077838,0.555853,-0.179075,0.767073,-0.000008 +0.770017,-0.077618,0.554202,-0.178562,0.764782,-0.000008 +0.767691,-0.077397,0.552552,-0.178049,0.762491,-0.000008 +0.765365,-0.077176,0.550901,-0.177537,0.760201,-0.000008 +0.763039,-0.076956,0.549251,-0.177024,0.757910,-0.000008 +0.760713,-0.076735,0.547600,-0.176511,0.755619,-0.000008 +0.758387,-0.076515,0.545950,-0.175998,0.753328,-0.000008 +0.756062,-0.076294,0.544300,-0.175485,0.751038,-0.000008 +0.753736,-0.076073,0.542649,-0.174972,0.748747,-0.000008 +0.751410,-0.075853,0.540999,-0.174459,0.746456,-0.000008 +0.749084,-0.075632,0.539348,-0.173946,0.744166,-0.000008 +0.746758,-0.075412,0.537698,-0.173434,0.741875,-0.000008 +0.744432,-0.075191,0.536047,-0.172921,0.739584,-0.000008 +0.742107,-0.074970,0.534397,-0.172408,0.737293,-0.000008 +0.739781,-0.074750,0.532746,-0.171895,0.735003,-0.000008 +0.737455,-0.074529,0.531096,-0.171382,0.732712,-0.000008 +0.735129,-0.074308,0.529446,-0.170869,0.730421,-0.000008 +0.732803,-0.074088,0.527795,-0.170356,0.728131,-0.000008 +0.730477,-0.073867,0.526145,-0.169843,0.725840,-0.000008 +0.728151,-0.073647,0.524494,-0.169331,0.723549,-0.000008 +0.725826,-0.073426,0.522844,-0.168818,0.721259,-0.000008 +0.723500,-0.073205,0.521193,-0.168305,0.718968,-0.000008 +0.721174,-0.072985,0.519543,-0.167792,0.716677,-0.000008 +0.718848,-0.072764,0.517893,-0.167279,0.714386,-0.000008 +0.716522,-0.072543,0.516242,-0.166766,0.712096,-0.000008 +0.714196,-0.072323,0.514592,-0.166253,0.709805,-0.000008 +0.711871,-0.072102,0.512941,-0.165740,0.707514,-0.000008 +0.709545,-0.071881,0.511291,-0.165228,0.705224,-0.000008 +0.707219,-0.071661,0.509640,-0.164715,0.702933,-0.000008 +0.704893,-0.071440,0.507990,-0.164202,0.700642,-0.000008 +0.702567,-0.071220,0.506339,-0.163689,0.698351,-0.000008 +0.700241,-0.070999,0.504689,-0.163176,0.696061,-0.000008 +0.697916,-0.070778,0.503039,-0.162663,0.693770,-0.000008 +0.695590,-0.070558,0.501388,-0.162150,0.691479,-0.000008 +0.693264,-0.070337,0.499738,-0.161637,0.689189,-0.000008 +0.690938,-0.070116,0.498087,-0.161125,0.686898,-0.000008 +0.688612,-0.069896,0.496437,-0.160612,0.684607,-0.000008 +0.686286,-0.069675,0.494786,-0.160099,0.682316,-0.000008 +0.683961,-0.069455,0.493136,-0.159586,0.680026,-0.000008 +0.681635,-0.069234,0.491485,-0.159073,0.677735,-0.000008 +0.679309,-0.069013,0.489835,-0.158560,0.675444,-0.000008 +0.676983,-0.068793,0.488185,-0.158047,0.673154,-0.000008 +0.674657,-0.068572,0.486534,-0.157534,0.670863,-0.000008 +0.672331,-0.068351,0.484884,-0.157022,0.668572,-0.000008 +0.670005,-0.068131,0.483233,-0.156509,0.666282,-0.000008 +0.667680,-0.067910,0.481583,-0.155996,0.663991,-0.000008 +0.665354,-0.067689,0.479932,-0.155483,0.661700,-0.000008 +0.663028,-0.067469,0.478282,-0.154970,0.659409,-0.000008 +0.660702,-0.067248,0.476631,-0.154457,0.657119,-0.000008 +0.658376,-0.067028,0.474981,-0.153944,0.654828,-0.000008 +0.656050,-0.066807,0.473331,-0.153431,0.652537,-0.000008 +0.653725,-0.066586,0.471680,-0.152919,0.650247,-0.000008 +0.651399,-0.066366,0.470030,-0.152406,0.647956,-0.000008 +0.649073,-0.066145,0.468379,-0.151893,0.645665,-0.000008 +0.646747,-0.065924,0.466729,-0.151380,0.643374,-0.000008 +0.644421,-0.065704,0.465078,-0.150867,0.641084,-0.000008 +0.642095,-0.065483,0.463428,-0.150354,0.638793,-0.000008 +0.639770,-0.065263,0.461777,-0.149841,0.636502,-0.000008 +0.637444,-0.065042,0.460127,-0.149328,0.634212,-0.000008 +0.635118,-0.064821,0.458477,-0.148816,0.631921,-0.000008 +0.632792,-0.064601,0.456826,-0.148303,0.629630,-0.000008 +0.630466,-0.064380,0.455176,-0.147790,0.627340,-0.000008 +0.628140,-0.064159,0.453525,-0.147277,0.625049,-0.000008 +0.625814,-0.063939,0.451875,-0.146764,0.622758,-0.000008 +0.623489,-0.063718,0.450224,-0.146251,0.620467,-0.000008 +0.621163,-0.063497,0.448574,-0.145738,0.618177,-0.000008 +0.618837,-0.063277,0.446923,-0.145225,0.615886,-0.000008 +0.616511,-0.063056,0.445273,-0.144713,0.613595,-0.000008 +0.614185,-0.062836,0.443623,-0.144200,0.611305,-0.000008 +0.611859,-0.062615,0.441972,-0.143687,0.609014,-0.000008 +0.609534,-0.062394,0.440322,-0.143174,0.606723,-0.000008 +0.607208,-0.062174,0.438671,-0.142661,0.604432,-0.000008 +0.604882,-0.061953,0.437021,-0.142148,0.602142,-0.000008 +0.602556,-0.061732,0.435370,-0.141635,0.599851,-0.000008 +0.600230,-0.061512,0.433720,-0.141122,0.597560,-0.000008 +0.597904,-0.061291,0.432070,-0.140610,0.595270,-0.000008 +0.595579,-0.061071,0.430419,-0.140097,0.592979,-0.000008 +0.593253,-0.060850,0.428769,-0.139584,0.590688,-0.000008 +0.590927,-0.060629,0.427118,-0.139071,0.588397,-0.000008 +0.588601,-0.060409,0.425468,-0.138558,0.586107,-0.000008 +0.586275,-0.060188,0.423817,-0.138045,0.583816,-0.000008 +0.583949,-0.059967,0.422167,-0.137532,0.581525,-0.000008 +0.581623,-0.059747,0.420516,-0.137019,0.579235,-0.000008 +0.579298,-0.059526,0.418866,-0.136507,0.576944,-0.000008 +0.576972,-0.059305,0.417216,-0.135994,0.574653,-0.000008 +0.574646,-0.059085,0.415565,-0.135481,0.572363,-0.000008 +0.572320,-0.058864,0.413915,-0.134968,0.570072,-0.000008 +0.569994,-0.058644,0.412264,-0.134455,0.567781,-0.000008 +0.567668,-0.058423,0.410614,-0.133942,0.565490,-0.000008 +0.565343,-0.058202,0.408963,-0.133429,0.563200,-0.000008 +0.563017,-0.057982,0.407313,-0.132916,0.560909,-0.000008 +0.560691,-0.057761,0.405662,-0.132404,0.558618,-0.000008 +0.558365,-0.057540,0.404012,-0.131891,0.556328,-0.000008 +0.556039,-0.057320,0.402362,-0.131378,0.554037,-0.000008 +0.553713,-0.057099,0.400711,-0.130865,0.551746,-0.000008 +0.551388,-0.056878,0.399061,-0.130352,0.549455,-0.000008 +0.549062,-0.056658,0.397410,-0.129839,0.547165,-0.000008 +0.546736,-0.056437,0.395760,-0.129326,0.544874,-0.000008 +0.544410,-0.056217,0.394109,-0.128814,0.542583,-0.000008 +0.542084,-0.055996,0.392459,-0.128301,0.540293,-0.000008 +0.539758,-0.055775,0.390808,-0.127788,0.538002,-0.000008 +0.537432,-0.055555,0.389158,-0.127275,0.535711,-0.000008 +0.535107,-0.055334,0.387508,-0.126762,0.533420,-0.000008 +0.532781,-0.055114,0.385857,-0.126249,0.531130,-0.000008 +0.530455,-0.054893,0.384207,-0.125736,0.528839,-0.000008 +0.528129,-0.054672,0.382556,-0.125223,0.526548,-0.000008 +0.525803,-0.054452,0.380906,-0.124711,0.524258,-0.000008 +0.523477,-0.054231,0.379255,-0.124198,0.521967,-0.000008 +0.521152,-0.054010,0.377605,-0.123685,0.519676,-0.000008 +0.518826,-0.053790,0.375954,-0.123172,0.517386,-0.000008 +0.516500,-0.053569,0.374304,-0.122659,0.515095,-0.000008 +0.514174,-0.053348,0.372654,-0.122146,0.512804,-0.000008 +0.511848,-0.053128,0.371003,-0.121633,0.510513,-0.000008 +0.509522,-0.052907,0.369353,-0.121120,0.508223,-0.000008 +0.507197,-0.052686,0.367702,-0.120608,0.505932,-0.000008 +0.504871,-0.052466,0.366052,-0.120095,0.503641,-0.000008 +0.502545,-0.052245,0.364401,-0.119582,0.501351,-0.000008 +0.500219,-0.052025,0.362751,-0.119069,0.499060,-0.000008 +0.497893,-0.051804,0.361100,-0.118556,0.496769,-0.000008 +0.495567,-0.051583,0.359450,-0.118043,0.494478,-0.000008 +0.493241,-0.051363,0.357800,-0.117530,0.492188,-0.000008 +0.490916,-0.051142,0.356149,-0.117017,0.489897,-0.000008 +0.488590,-0.050922,0.354499,-0.116505,0.487606,-0.000008 +0.486264,-0.050701,0.352848,-0.115992,0.485316,-0.000008 +0.483938,-0.050480,0.351198,-0.115479,0.483025,-0.000008 +0.481612,-0.050260,0.349547,-0.114966,0.480734,-0.000008 +0.479286,-0.050039,0.347897,-0.114453,0.478444,-0.000008 +0.476961,-0.049818,0.346246,-0.113940,0.476153,-0.000008 +0.474635,-0.049598,0.344596,-0.113427,0.473862,-0.000008 +0.472309,-0.049377,0.342946,-0.112914,0.471571,-0.000008 +0.469983,-0.049156,0.341295,-0.112402,0.469281,-0.000008 +0.467657,-0.048936,0.339645,-0.111889,0.466990,-0.000008 +0.465331,-0.048715,0.337994,-0.111376,0.464699,-0.000008 +0.463006,-0.048495,0.336344,-0.110863,0.462409,-0.000008 +0.460680,-0.048274,0.334693,-0.110350,0.460118,-0.000008 +0.458354,-0.048053,0.333043,-0.109837,0.457827,-0.000008 +0.456028,-0.047833,0.331393,-0.109324,0.455536,-0.000008 +0.453702,-0.047612,0.329742,-0.108811,0.453246,-0.000008 +0.451376,-0.047391,0.328092,-0.108299,0.450955,-0.000008 +0.449051,-0.047171,0.326441,-0.107786,0.448664,-0.000008 +0.446725,-0.046950,0.324791,-0.107273,0.446374,-0.000008 +0.444399,-0.046730,0.323140,-0.106760,0.444083,-0.000008 +0.442073,-0.046509,0.321490,-0.106247,0.441792,-0.000008 +0.439747,-0.046288,0.319839,-0.105734,0.439501,-0.000008 +0.437421,-0.046068,0.318189,-0.105221,0.437211,-0.000008 +0.435095,-0.045847,0.316539,-0.104708,0.434920,-0.000008 +0.432770,-0.045626,0.314888,-0.104196,0.432629,-0.000008 +0.430444,-0.045406,0.313238,-0.103683,0.430339,-0.000008 +0.428118,-0.045185,0.311587,-0.103170,0.428048,-0.000008 +0.425792,-0.044964,0.309937,-0.102657,0.425757,-0.000008 +0.423466,-0.044744,0.308286,-0.102144,0.423467,-0.000008 +0.421140,-0.044523,0.306636,-0.101631,0.421176,-0.000008 +0.418815,-0.044303,0.304985,-0.101118,0.418885,-0.000008 +0.416489,-0.044082,0.303335,-0.100605,0.416594,-0.000008 +0.414163,-0.043861,0.301685,-0.100093,0.414304,-0.000008 +0.411837,-0.043641,0.300034,-0.099580,0.412013,-0.000008 +0.409511,-0.043420,0.298384,-0.099067,0.409722,-0.000008 +0.407185,-0.043199,0.296733,-0.098554,0.407432,-0.000008 +0.404860,-0.042979,0.295083,-0.098041,0.405141,-0.000008 +0.402534,-0.042758,0.293432,-0.097528,0.402850,-0.000008 +0.400208,-0.042537,0.291782,-0.097015,0.400559,-0.000008 +0.397882,-0.042317,0.290131,-0.096502,0.398269,-0.000008 +0.395556,-0.042096,0.288481,-0.095990,0.395978,-0.000008 +0.393230,-0.041876,0.286831,-0.095477,0.393687,-0.000008 +0.390904,-0.041655,0.285180,-0.094964,0.391397,-0.000008 +0.388579,-0.041434,0.283530,-0.094451,0.389106,-0.000008 +0.386253,-0.041214,0.281879,-0.093938,0.386815,-0.000008 +0.383927,-0.040993,0.280229,-0.093425,0.384524,-0.000008 +0.381601,-0.040773,0.278578,-0.092912,0.382234,-0.000008 +0.379275,-0.040552,0.276928,-0.092399,0.379943,-0.000008 +0.376949,-0.040331,0.275277,-0.091886,0.377652,-0.000008 +0.374624,-0.040111,0.273627,-0.091374,0.375362,-0.000008 +0.372298,-0.039890,0.271977,-0.090861,0.373071,-0.000008 +0.369972,-0.039669,0.270326,-0.090348,0.370780,-0.000008 +0.367646,-0.039449,0.268676,-0.089835,0.368490,-0.000008 +0.365320,-0.039228,0.267025,-0.089322,0.366199,-0.000008 +0.362994,-0.039007,0.265375,-0.088809,0.363908,-0.000008 +0.360669,-0.038787,0.263724,-0.088296,0.361617,-0.000008 +0.358343,-0.038566,0.262074,-0.087784,0.359327,-0.000008 +0.356017,-0.038345,0.260423,-0.087271,0.357036,-0.000008 +0.353691,-0.038125,0.258773,-0.086758,0.354745,-0.000008 +0.351365,-0.037904,0.257123,-0.086245,0.352455,-0.000008 +0.349039,-0.037684,0.255472,-0.085732,0.350164,-0.000008 +0.346713,-0.037463,0.253822,-0.085219,0.347873,-0.000008 +0.344388,-0.037242,0.252171,-0.084706,0.345582,-0.000008 +0.342062,-0.037022,0.250521,-0.084193,0.343292,-0.000008 +0.339736,-0.036801,0.248870,-0.083681,0.341001,-0.000008 +0.337410,-0.036581,0.247220,-0.083168,0.338710,-0.000008 +0.335084,-0.036360,0.245569,-0.082655,0.336420,-0.000008 +0.332758,-0.036139,0.243919,-0.082142,0.334129,-0.000008 +0.330433,-0.035919,0.242269,-0.081629,0.331838,-0.000008 +0.328107,-0.035698,0.240618,-0.081116,0.329548,-0.000008 +0.325781,-0.035477,0.238968,-0.080603,0.327257,-0.000008 +0.323455,-0.035257,0.237317,-0.080090,0.324966,-0.000008 +0.321129,-0.035036,0.235667,-0.079578,0.322675,-0.000008 +0.318803,-0.034815,0.234016,-0.079065,0.320385,-0.000008 +0.316478,-0.034595,0.232366,-0.078552,0.318094,-0.000008 +0.314152,-0.034374,0.230716,-0.078039,0.315803,-0.000008 +0.311826,-0.034154,0.229065,-0.077526,0.313513,-0.000008 +0.309500,-0.033933,0.227415,-0.077013,0.311222,-0.000008 +0.307174,-0.033712,0.225764,-0.076500,0.308931,-0.000008 +0.304848,-0.033492,0.224114,-0.075987,0.306640,-0.000008 +0.302522,-0.033271,0.222463,-0.075475,0.304350,-0.000008 +0.300197,-0.033050,0.220813,-0.074962,0.302059,-0.000008 +0.297871,-0.032830,0.219162,-0.074449,0.299768,-0.000008 +0.295545,-0.032609,0.217512,-0.073936,0.297478,-0.000008 +0.293219,-0.032389,0.215862,-0.073423,0.295187,-0.000008 +0.290893,-0.032168,0.214211,-0.072910,0.292896,-0.000008 +0.288567,-0.031947,0.212561,-0.072397,0.290605,-0.000008 +0.286242,-0.031727,0.210910,-0.071884,0.288315,-0.000008 +0.283916,-0.031506,0.209260,-0.071372,0.286024,-0.000008 +0.281590,-0.031285,0.207609,-0.070859,0.283733,-0.000008 +0.279264,-0.031065,0.205959,-0.070346,0.281443,-0.000008 +0.276938,-0.030844,0.204308,-0.069833,0.279152,-0.000008 +0.274612,-0.030624,0.202658,-0.069320,0.276861,-0.000008 +0.272287,-0.030403,0.201008,-0.068807,0.274571,-0.000008 +0.269961,-0.030182,0.199357,-0.068294,0.272280,-0.000008 +0.267635,-0.029962,0.197707,-0.067781,0.269989,-0.000008 +0.265309,-0.029741,0.196056,-0.067269,0.267698,-0.000008 +0.262983,-0.029520,0.194406,-0.066756,0.265408,-0.000008 +0.260657,-0.029300,0.192755,-0.066243,0.263117,-0.000008 +0.258331,-0.029079,0.191105,-0.065730,0.260826,-0.000008 +0.256006,-0.028858,0.189454,-0.065217,0.258536,-0.000008 +0.253680,-0.028638,0.187804,-0.064704,0.256245,-0.000008 +0.251354,-0.028417,0.186154,-0.064191,0.253954,-0.000008 +0.249028,-0.028196,0.184503,-0.063678,0.251663,-0.000008 +0.246702,-0.027976,0.182853,-0.063166,0.249373,-0.000008 +0.244376,-0.027755,0.181202,-0.062653,0.247082,-0.000008 +0.242051,-0.027535,0.179552,-0.062140,0.244791,-0.000008 +0.239725,-0.027314,0.177901,-0.061627,0.242501,-0.000008 +0.237399,-0.027093,0.176251,-0.061114,0.240210,-0.000008 +0.235073,-0.026873,0.174600,-0.060601,0.237919,-0.000008 +0.232747,-0.026652,0.172950,-0.060088,0.235628,-0.000008 +0.230421,-0.026432,0.171300,-0.059576,0.233338,-0.000008 +0.228096,-0.026211,0.169649,-0.059063,0.231047,-0.000008 +0.225770,-0.025990,0.167999,-0.058550,0.228756,-0.000008 +0.223444,-0.025770,0.166348,-0.058037,0.226466,-0.000008 +0.221118,-0.025549,0.164698,-0.057524,0.224175,-0.000008 +0.218792,-0.025328,0.163047,-0.057011,0.221884,-0.000008 +0.216466,-0.025108,0.161397,-0.056498,0.219594,-0.000008 +0.214141,-0.024887,0.159746,-0.055985,0.217303,-0.000008 +0.211815,-0.024666,0.158096,-0.055473,0.215012,-0.000008 +0.209489,-0.024446,0.156446,-0.054960,0.212721,-0.000008 +0.207163,-0.024225,0.154795,-0.054447,0.210431,-0.000008 +0.204837,-0.024005,0.153145,-0.053934,0.208140,-0.000008 +0.202511,-0.023784,0.151494,-0.053421,0.205849,-0.000008 +0.200185,-0.023563,0.149844,-0.052908,0.203559,-0.000008 +0.197860,-0.023343,0.148193,-0.052395,0.201268,-0.000008 +0.195534,-0.023122,0.146543,-0.051882,0.198977,-0.000008 +0.193208,-0.022901,0.144892,-0.051369,0.196686,-0.000008 +0.190882,-0.022681,0.143242,-0.050857,0.194396,-0.000008 +0.188556,-0.022460,0.141592,-0.050344,0.192105,-0.000008 +0.186230,-0.022239,0.139941,-0.049831,0.189814,-0.000008 +0.183905,-0.022019,0.138291,-0.049318,0.187524,-0.000008 +0.181579,-0.021798,0.136640,-0.048805,0.185233,-0.000008 +0.179253,-0.021578,0.134990,-0.048292,0.182942,-0.000008 +0.176927,-0.021357,0.133339,-0.047779,0.180652,-0.000008 +0.174601,-0.021136,0.131689,-0.047267,0.178361,-0.000008 +0.172275,-0.020916,0.130039,-0.046754,0.176070,-0.000008 +0.169950,-0.020695,0.128388,-0.046241,0.173779,-0.000008 +0.167624,-0.020475,0.126738,-0.045728,0.171489,-0.000008 +0.165298,-0.020254,0.125087,-0.045215,0.169198,-0.000008 +0.162972,-0.020033,0.123437,-0.044702,0.166907,-0.000008 +0.160646,-0.019813,0.121786,-0.044189,0.164617,-0.000008 +0.158320,-0.019592,0.120136,-0.043676,0.162326,-0.000008 +0.155994,-0.019371,0.118485,-0.043164,0.160035,-0.000008 +0.153669,-0.019151,0.116835,-0.042651,0.157744,-0.000008 +0.151343,-0.018930,0.115185,-0.042138,0.155454,-0.000008 +0.149017,-0.018709,0.113534,-0.041625,0.153163,-0.000008 +0.146691,-0.018489,0.111884,-0.041112,0.150872,-0.000008 +0.144365,-0.018268,0.110233,-0.040599,0.148582,-0.000008 +0.142039,-0.018048,0.108583,-0.040086,0.146291,-0.000008 +0.139714,-0.017827,0.106932,-0.039573,0.144000,-0.000008 +0.137388,-0.017606,0.105282,-0.039060,0.141709,-0.000008 +0.135062,-0.017386,0.103631,-0.038548,0.139419,-0.000008 +0.132736,-0.017165,0.101981,-0.038035,0.137128,-0.000008 +0.130410,-0.016944,0.100331,-0.037522,0.134837,-0.000008 +0.128084,-0.016724,0.098680,-0.037009,0.132547,-0.000008 +0.125759,-0.016503,0.097030,-0.036496,0.130256,-0.000008 +0.123433,-0.016282,0.095379,-0.035983,0.127965,-0.000008 +0.121107,-0.016062,0.093729,-0.035470,0.125675,-0.000008 +0.118781,-0.015841,0.092078,-0.034958,0.123384,-0.000008 +0.116455,-0.015621,0.090428,-0.034445,0.121093,-0.000008 +0.114129,-0.015400,0.088777,-0.033932,0.118802,-0.000008 +0.111803,-0.015179,0.087127,-0.033419,0.116512,-0.000008 +0.109478,-0.014959,0.085477,-0.032906,0.114221,-0.000008 +0.107152,-0.014738,0.083826,-0.032393,0.111930,-0.000008 +0.104826,-0.014517,0.082176,-0.031880,0.109640,-0.000008 +0.102500,-0.014297,0.080525,-0.031367,0.107349,-0.000008 +0.100174,-0.014076,0.078875,-0.030855,0.105058,-0.000008 +0.097848,-0.013856,0.077224,-0.030342,0.102767,-0.000008 +0.095523,-0.013635,0.075574,-0.029829,0.100477,-0.000008 +0.093197,-0.013414,0.073924,-0.029316,0.098186,-0.000008 +0.090871,-0.013194,0.072273,-0.028803,0.095895,-0.000008 +0.088545,-0.012973,0.070623,-0.028290,0.093605,-0.000008 +0.086219,-0.012752,0.068972,-0.027777,0.091314,-0.000008 +0.083893,-0.012532,0.067322,-0.027264,0.089023,-0.000008 +0.081568,-0.012311,0.065671,-0.026752,0.086733,-0.000008 +0.079242,-0.012091,0.064021,-0.026239,0.084442,-0.000008 +0.076916,-0.011870,0.062370,-0.025726,0.082151,-0.000008 +0.074590,-0.011649,0.060720,-0.025213,0.079860,-0.000008 +0.072264,-0.011429,0.059069,-0.024700,0.077570,-0.000008 +0.069938,-0.011208,0.057419,-0.024187,0.075279,-0.000008 +0.067613,-0.010987,0.055769,-0.023674,0.072988,-0.000008 +0.065289,-0.010767,0.054118,-0.023161,0.070697,-0.000008 +0.062971,-0.010546,0.052468,-0.022648,0.068407,-0.000008 +0.060660,-0.010325,0.050817,-0.022136,0.066116,-0.000008 +0.058359,-0.010105,0.049167,-0.021623,0.063825,-0.000008 +0.056070,-0.009884,0.047516,-0.021110,0.061535,-0.000008 +0.053797,-0.009664,0.045866,-0.020597,0.059245,-0.000008 +0.051542,-0.009443,0.044215,-0.020084,0.056959,-0.000008 +0.049307,-0.009222,0.042565,-0.019571,0.054681,-0.000008 +0.047095,-0.009002,0.040915,-0.019058,0.052412,-0.000008 +0.044908,-0.008781,0.039265,-0.018545,0.050157,-0.000008 +0.042750,-0.008560,0.037620,-0.018033,0.047919,-0.000008 +0.040623,-0.008340,0.035981,-0.017520,0.045699,-0.000008 +0.038529,-0.008119,0.034350,-0.017007,0.043503,-0.000008 +0.036471,-0.007899,0.032731,-0.016494,0.041332,-0.000008 +0.034451,-0.007678,0.031127,-0.015981,0.039190,-0.000008 +0.032473,-0.007457,0.029539,-0.015468,0.037080,-0.000008 +0.030539,-0.007237,0.027970,-0.014955,0.035005,-0.000008 +0.028650,-0.007016,0.026423,-0.014443,0.032968,-0.000008 +0.026811,-0.006795,0.024900,-0.013930,0.030973,-0.000008 +0.025024,-0.006575,0.023405,-0.013417,0.029022,-0.000008 +0.023290,-0.006354,0.021939,-0.012904,0.027118,-0.000008 +0.021614,-0.006133,0.020506,-0.012391,0.025265,-0.000008 +0.019996,-0.005913,0.019107,-0.011878,0.023466,-0.000008 +0.018441,-0.005692,0.017746,-0.011365,0.021724,-0.000008 +0.016950,-0.005472,0.016425,-0.010852,0.020041,-0.000008 +0.015526,-0.005251,0.015147,-0.010340,0.018422,-0.000008 +0.014172,-0.005030,0.013913,-0.009827,0.016869,-0.000008 +0.012891,-0.004810,0.012728,-0.009314,0.015385,-0.000008 +0.011684,-0.004589,0.011593,-0.008801,0.013974,-0.000008 +0.010554,-0.004368,0.010511,-0.008288,0.012638,-0.000008 +0.009500,-0.004148,0.009485,-0.007775,0.011380,-0.000008 +0.008518,-0.003927,0.008517,-0.007262,0.010205,-0.000008 +0.007606,-0.003707,0.007610,-0.006749,0.009112,-0.000008 +0.006762,-0.003486,0.006766,-0.006237,0.008101,-0.000008 +0.005982,-0.003265,0.005986,-0.005726,0.007167,-0.000008 +0.005265,-0.003045,0.005269,-0.005221,0.006308,-0.000008 +0.004608,-0.002824,0.004612,-0.004724,0.005521,-0.000008 +0.004008,-0.002603,0.004012,-0.004238,0.004802,-0.000008 +0.003462,-0.002383,0.003466,-0.003767,0.004148,-0.000008 +0.002969,-0.002162,0.002973,-0.003314,0.003556,-0.000008 +0.002524,-0.001942,0.002528,-0.002881,0.003024,-0.000008 +0.002126,-0.001722,0.002130,-0.002473,0.002548,-0.000008 +0.001773,-0.001506,0.001777,-0.002091,0.002124,-0.000008 +0.001461,-0.001297,0.001465,-0.001740,0.001750,-0.000008 +0.001188,-0.001097,0.001192,-0.001421,0.001423,-0.000008 +0.000951,-0.000908,0.000955,-0.001139,0.001140,-0.000008 +0.000748,-0.000733,0.000752,-0.000896,0.000897,-0.000008 +0.000576,-0.000575,0.000580,-0.000690,0.000691,-0.000008 +0.000433,-0.000436,0.000437,-0.000519,0.000519,-0.000008 +0.000316,-0.000319,0.000320,-0.000378,0.000379,-0.000008 +0.000222,-0.000226,0.000226,-0.000266,0.000266,-0.000008 +0.000149,-0.000152,0.000153,-0.000178,0.000179,-0.000008 +0.000094,-0.000097,0.000098,-0.000112,0.000113,-0.000008 +0.000055,-0.000058,0.000059,-0.000065,0.000065,-0.000008 +0.000028,-0.000032,0.000032,-0.000034,0.000034,-0.000008 +0.000012,-0.000016,0.000016,-0.000014,0.000015,-0.000008 +0.000004,-0.000007,0.000008,-0.000005,0.000005,-0.000008 +0.000001,-0.000004,0.000005,-0.000001,0.000001,-0.000008 +0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +-0.000000,-0.000000,0.000000,-0.000001,0.000001,0.000000 +-0.000003,-0.000003,0.000003,-0.000004,0.000004,0.000000 +-0.000012,-0.000012,0.000012,-0.000014,0.000014,0.000000 +-0.000028,-0.000028,0.000028,-0.000033,0.000033,0.000000 +-0.000054,-0.000054,0.000054,-0.000065,0.000065,0.000000 +-0.000093,-0.000093,0.000093,-0.000112,0.000112,0.000000 +-0.000148,-0.000148,0.000148,-0.000178,0.000178,0.000000 +-0.000222,-0.000222,0.000222,-0.000265,0.000265,0.000000 +-0.000315,-0.000315,0.000315,-0.000378,0.000378,0.000000 +-0.000433,-0.000432,0.000433,-0.000518,0.000518,0.000000 +-0.000576,-0.000571,0.000576,-0.000690,0.000690,0.000000 +-0.000748,-0.000729,0.000748,-0.000896,0.000896,0.000000 +-0.000951,-0.000904,0.000951,-0.001139,0.001139,0.000000 +-0.001187,-0.001093,0.001187,-0.001421,0.001423,0.000000 +-0.001460,-0.001293,0.001460,-0.001739,0.001750,0.000000 +-0.001772,-0.001503,0.001772,-0.002091,0.002123,0.000000 +-0.002126,-0.001718,0.002126,-0.002472,0.002547,0.000000 +-0.002524,-0.001938,0.002524,-0.002881,0.003023,0.000000 +-0.002968,-0.002158,0.002968,-0.003314,0.003556,0.000000 +-0.003462,-0.002379,0.003462,-0.003767,0.004147,0.000000 +-0.004007,-0.002599,0.004007,-0.004238,0.004801,0.000000 +-0.004608,-0.002820,0.004608,-0.004723,0.005520,0.000000 +-0.005265,-0.003041,0.005265,-0.005220,0.006308,0.000000 +-0.005982,-0.003261,0.005982,-0.005726,0.007167,0.000000 +-0.006761,-0.003482,0.006761,-0.006236,0.008100,0.000000 +-0.007606,-0.003703,0.007605,-0.006749,0.009112,0.000000 +-0.008517,-0.003923,0.008512,-0.007262,0.010204,0.000000 +-0.009499,-0.004144,0.009480,-0.007775,0.011380,0.000000 +-0.010554,-0.004364,0.010507,-0.008288,0.012637,0.000000 +-0.011684,-0.004585,0.011589,-0.008801,0.013973,0.000000 +-0.012890,-0.004806,0.012724,-0.009313,0.015384,0.000000 +-0.014172,-0.005026,0.013909,-0.009826,0.016868,0.000000 +-0.015526,-0.005247,0.015142,-0.010339,0.018421,0.000000 +-0.016949,-0.005468,0.016421,-0.010852,0.020041,0.000000 +-0.018440,-0.005688,0.017742,-0.011365,0.021723,0.000000 +-0.019996,-0.005909,0.019103,-0.011878,0.023465,0.000000 +-0.021613,-0.006130,0.020501,-0.012391,0.025265,0.000000 +-0.023290,-0.006350,0.021935,-0.012904,0.027118,0.000000 +-0.025023,-0.006571,0.023401,-0.013416,0.029021,0.000000 +-0.026811,-0.006791,0.024896,-0.013929,0.030972,0.000000 +-0.028650,-0.007012,0.026419,-0.014442,0.032968,0.000000 +-0.030538,-0.007233,0.027965,-0.014955,0.035004,0.000000 +-0.032473,-0.007453,0.029534,-0.015468,0.037079,0.000000 +-0.034451,-0.007674,0.031122,-0.015981,0.039189,0.000000 +-0.036470,-0.007895,0.032727,-0.016494,0.041331,0.000000 +-0.038528,-0.008115,0.034346,-0.017007,0.043502,0.000000 +-0.040622,-0.008336,0.035976,-0.017519,0.045699,0.000000 +-0.042750,-0.008556,0.037615,-0.018032,0.047918,0.000000 +-0.044908,-0.008777,0.039261,-0.018545,0.050157,0.000000 +-0.047094,-0.008998,0.040910,-0.019058,0.052412,0.000000 +-0.049306,-0.009218,0.042561,-0.019571,0.054680,0.000000 +-0.051541,-0.009439,0.044211,-0.020084,0.056959,0.000000 +-0.053797,-0.009660,0.045861,-0.020597,0.059244,0.000000 +-0.056070,-0.009880,0.047512,-0.021110,0.061534,0.000000 +-0.058358,-0.010101,0.049162,-0.021622,0.063825,0.000000 +-0.060659,-0.010322,0.050813,-0.022135,0.066115,0.000000 +-0.062970,-0.010542,0.052463,-0.022648,0.068406,0.000000 +-0.065289,-0.010763,0.054114,-0.023161,0.070697,0.000000 +-0.067612,-0.010983,0.055764,-0.023674,0.072988,0.000000 +-0.069938,-0.011204,0.057415,-0.024187,0.075278,0.000000 +-0.072264,-0.011425,0.059065,-0.024700,0.077569,0.000000 +-0.074590,-0.011645,0.060715,-0.025212,0.079860,0.000000 +-0.076915,-0.011866,0.062366,-0.025725,0.082150,0.000000 +-0.079241,-0.012087,0.064016,-0.026238,0.084441,0.000000 +-0.081567,-0.012307,0.065667,-0.026751,0.086732,0.000000 +-0.083893,-0.012528,0.067317,-0.027264,0.089023,0.000000 +-0.086219,-0.012748,0.068968,-0.027777,0.091313,0.000000 +-0.088545,-0.012969,0.070618,-0.028290,0.093604,0.000000 +-0.090871,-0.013190,0.072269,-0.028803,0.095895,0.000000 +-0.093196,-0.013410,0.073919,-0.029316,0.098185,0.000000 +-0.095522,-0.013631,0.075569,-0.029828,0.100476,0.000000 +-0.097848,-0.013852,0.077220,-0.030341,0.102767,0.000000 +-0.100174,-0.014072,0.078870,-0.030854,0.105057,0.000000 +-0.102500,-0.014293,0.080521,-0.031367,0.107348,0.000000 +-0.104826,-0.014514,0.082171,-0.031880,0.109639,0.000000 +-0.107151,-0.014734,0.083822,-0.032393,0.111930,0.000000 +-0.109477,-0.014955,0.085472,-0.032906,0.114220,0.000000 +-0.111803,-0.015175,0.087123,-0.033418,0.116511,0.000000 +-0.114129,-0.015396,0.088773,-0.033931,0.118802,0.000000 +-0.116455,-0.015617,0.090423,-0.034444,0.121092,0.000000 +-0.118781,-0.015837,0.092074,-0.034957,0.123383,0.000000 +-0.121106,-0.016058,0.093724,-0.035470,0.125674,0.000000 +-0.123432,-0.016279,0.095375,-0.035983,0.127965,0.000000 +-0.125758,-0.016499,0.097025,-0.036496,0.130255,0.000000 +-0.128084,-0.016720,0.098676,-0.037009,0.132546,0.000000 +-0.130410,-0.016940,0.100326,-0.037521,0.134837,0.000000 +-0.132736,-0.017161,0.101977,-0.038034,0.137127,0.000000 +-0.135061,-0.017382,0.103627,-0.038547,0.139418,0.000000 +-0.137387,-0.017602,0.105277,-0.039060,0.141709,0.000000 +-0.139713,-0.017823,0.106928,-0.039573,0.144000,0.000000 +-0.142039,-0.018044,0.108578,-0.040086,0.146290,0.000000 +-0.144365,-0.018264,0.110229,-0.040599,0.148581,0.000000 +-0.146691,-0.018485,0.111879,-0.041112,0.150872,0.000000 +-0.149016,-0.018705,0.113530,-0.041625,0.153162,0.000000 +-0.151342,-0.018926,0.115180,-0.042137,0.155453,0.000000 +-0.153668,-0.019147,0.116831,-0.042650,0.157744,0.000000 +-0.155994,-0.019367,0.118481,-0.043163,0.160034,0.000000 +-0.158320,-0.019588,0.120131,-0.043676,0.162325,0.000000 +-0.160646,-0.019809,0.121782,-0.044189,0.164616,0.000000 +-0.162972,-0.020029,0.123432,-0.044702,0.166907,0.000000 +-0.165297,-0.020250,0.125083,-0.045215,0.169197,0.000000 +-0.167623,-0.020470,0.126733,-0.045727,0.171488,0.000000 +-0.169949,-0.020691,0.128384,-0.046240,0.173779,0.000000 +-0.172275,-0.020912,0.130034,-0.046753,0.176069,0.000000 +-0.174601,-0.021132,0.131684,-0.047266,0.178360,0.000000 +-0.176927,-0.021353,0.133335,-0.047779,0.180651,0.000000 +-0.179252,-0.021574,0.134985,-0.048292,0.182942,0.000000 +-0.181578,-0.021794,0.136636,-0.048805,0.185232,0.000000 +-0.183904,-0.022015,0.138286,-0.049318,0.187523,0.000000 +-0.186230,-0.022235,0.139937,-0.049831,0.189814,0.000000 +-0.188556,-0.022456,0.141587,-0.050343,0.192104,0.000000 +-0.190882,-0.022677,0.143238,-0.050856,0.194395,0.000000 +-0.193207,-0.022897,0.144888,-0.051369,0.196686,0.000000 +-0.195533,-0.023118,0.146538,-0.051882,0.198976,0.000000 +-0.197859,-0.023339,0.148189,-0.052395,0.201267,0.000000 +-0.200185,-0.023559,0.149839,-0.052908,0.203558,0.000000 +-0.202511,-0.023780,0.151490,-0.053421,0.205849,0.000000 +-0.204837,-0.024001,0.153140,-0.053934,0.208139,0.000000 +-0.207163,-0.024221,0.154791,-0.054446,0.210430,0.000000 +-0.209488,-0.024442,0.156441,-0.054959,0.212721,0.000000 +-0.211814,-0.024663,0.158092,-0.055472,0.215011,0.000000 +-0.214140,-0.024883,0.159742,-0.055985,0.217302,0.000000 +-0.216466,-0.025104,0.161392,-0.056498,0.219593,0.000000 +-0.218792,-0.025324,0.163043,-0.057011,0.221884,0.000000 +-0.221118,-0.025545,0.164693,-0.057524,0.224174,0.000000 +-0.223443,-0.025766,0.166344,-0.058036,0.226465,0.000000 +-0.225769,-0.025986,0.167994,-0.058549,0.228756,0.000000 +-0.228095,-0.026207,0.169645,-0.059062,0.231046,0.000000 +-0.230421,-0.026428,0.171295,-0.059575,0.233337,0.000000 +-0.232747,-0.026648,0.172946,-0.060088,0.235628,0.000000 +-0.235073,-0.026869,0.174596,-0.060601,0.237919,0.000000 +-0.237398,-0.027089,0.176246,-0.061114,0.240209,0.000000 +-0.239724,-0.027310,0.177897,-0.061627,0.242500,0.000000 +-0.242050,-0.027531,0.179547,-0.062140,0.244791,0.000000 +-0.244376,-0.027751,0.181198,-0.062652,0.247081,0.000000 +-0.246702,-0.027972,0.182848,-0.063165,0.249372,0.000000 +-0.249028,-0.028193,0.184499,-0.063678,0.251663,0.000000 +-0.251354,-0.028413,0.186149,-0.064191,0.253953,0.000000 +-0.253679,-0.028634,0.187800,-0.064704,0.256244,0.000000 +-0.256005,-0.028855,0.189450,-0.065217,0.258535,0.000000 +-0.258331,-0.029075,0.191100,-0.065730,0.260826,0.000000 +-0.260657,-0.029296,0.192751,-0.066242,0.263116,0.000000 +-0.262983,-0.029516,0.194401,-0.066755,0.265407,0.000000 +-0.265309,-0.029737,0.196052,-0.067268,0.267698,0.000000 +-0.267634,-0.029958,0.197702,-0.067781,0.269988,0.000000 +-0.269960,-0.030178,0.199353,-0.068294,0.272279,0.000000 +-0.272286,-0.030399,0.201003,-0.068807,0.274570,0.000000 +-0.274612,-0.030620,0.202654,-0.069320,0.276861,0.000000 +-0.276938,-0.030840,0.204304,-0.069833,0.279151,0.000000 +-0.279264,-0.031061,0.205954,-0.070346,0.281442,0.000000 +-0.281589,-0.031281,0.207605,-0.070858,0.283733,0.000000 +-0.283915,-0.031502,0.209255,-0.071371,0.286023,0.000000 +-0.286241,-0.031723,0.210906,-0.071884,0.288314,0.000000 +-0.288567,-0.031943,0.212556,-0.072397,0.290605,0.000000 +-0.290893,-0.032164,0.214207,-0.072910,0.292896,0.000000 +-0.293219,-0.032384,0.215857,-0.073423,0.295186,0.000000 +-0.295545,-0.032605,0.217508,-0.073936,0.297477,0.000000 +-0.297870,-0.032826,0.219158,-0.074448,0.299768,0.000000 +-0.300196,-0.033046,0.220808,-0.074961,0.302058,0.000000 +-0.302522,-0.033267,0.222459,-0.075474,0.304349,0.000000 +-0.304848,-0.033488,0.224109,-0.075987,0.306640,0.000000 +-0.307174,-0.033708,0.225760,-0.076500,0.308930,0.000000 +-0.309500,-0.033929,0.227410,-0.077013,0.311221,0.000000 +-0.311825,-0.034150,0.229061,-0.077526,0.313512,0.000000 +-0.314151,-0.034370,0.230711,-0.078039,0.315803,0.000000 +-0.316477,-0.034591,0.232361,-0.078551,0.318093,0.000000 +-0.318803,-0.034812,0.234012,-0.079064,0.320384,0.000000 +-0.321129,-0.035032,0.235662,-0.079577,0.322675,0.000000 +-0.323455,-0.035253,0.237313,-0.080090,0.324965,0.000000 +-0.325780,-0.035473,0.238963,-0.080603,0.327256,0.000000 +-0.328106,-0.035694,0.240614,-0.081116,0.329547,0.000000 +-0.330432,-0.035915,0.242264,-0.081629,0.331838,0.000000 +-0.332758,-0.036135,0.243915,-0.082142,0.334128,0.000000 +-0.335084,-0.036356,0.245565,-0.082654,0.336419,0.000000 +-0.337410,-0.036576,0.247215,-0.083167,0.338710,0.000000 +-0.339736,-0.036797,0.248866,-0.083680,0.341000,0.000000 +-0.342061,-0.037018,0.250516,-0.084193,0.343291,0.000000 +-0.344387,-0.037238,0.252167,-0.084706,0.345582,0.000000 +-0.346713,-0.037459,0.253817,-0.085219,0.347872,0.000000 +-0.349039,-0.037680,0.255468,-0.085732,0.350163,0.000000 +-0.351365,-0.037900,0.257118,-0.086245,0.352454,0.000000 +-0.353691,-0.038121,0.258769,-0.086757,0.354745,0.000000 +-0.356016,-0.038342,0.260419,-0.087270,0.357035,0.000000 +-0.358342,-0.038562,0.262069,-0.087783,0.359326,0.000000 +-0.360668,-0.038783,0.263720,-0.088296,0.361617,0.000000 +-0.362994,-0.039004,0.265370,-0.088809,0.363907,0.000000 +-0.365320,-0.039224,0.267021,-0.089322,0.366198,0.000000 +-0.367646,-0.039445,0.268671,-0.089835,0.368489,0.000000 +-0.369971,-0.039665,0.270322,-0.090348,0.370780,0.000000 +-0.372297,-0.039886,0.271972,-0.090860,0.373070,0.000000 +-0.374623,-0.040107,0.273623,-0.091373,0.375361,0.000000 +-0.376949,-0.040327,0.275273,-0.091886,0.377652,0.000000 +-0.379275,-0.040548,0.276923,-0.092399,0.379942,0.000000 +-0.381601,-0.040768,0.278574,-0.092912,0.382233,0.000000 +-0.383926,-0.040989,0.280224,-0.093425,0.384524,0.000000 +-0.386252,-0.041210,0.281875,-0.093938,0.386815,0.000000 +-0.388578,-0.041430,0.283525,-0.094451,0.389105,0.000000 +-0.390904,-0.041651,0.285176,-0.094963,0.391396,0.000000 +-0.393230,-0.041872,0.286826,-0.095476,0.393687,0.000000 +-0.395556,-0.042092,0.288477,-0.095989,0.395977,0.000000 +-0.397882,-0.042313,0.290127,-0.096502,0.398268,0.000000 +-0.400207,-0.042534,0.291777,-0.097015,0.400559,0.000000 +-0.402533,-0.042754,0.293428,-0.097528,0.402849,0.000000 +-0.404859,-0.042975,0.295078,-0.098041,0.405140,0.000000 +-0.407185,-0.043195,0.296729,-0.098554,0.407431,0.000000 +-0.409511,-0.043416,0.298379,-0.099066,0.409722,0.000000 +-0.411837,-0.043637,0.300030,-0.099579,0.412012,0.000000 +-0.414162,-0.043857,0.301680,-0.100092,0.414303,0.000000 +-0.416488,-0.044078,0.303331,-0.100605,0.416594,0.000000 +-0.418814,-0.044299,0.304981,-0.101118,0.418884,0.000000 +-0.421140,-0.044519,0.306631,-0.101631,0.421175,0.000000 +-0.423466,-0.044740,0.308282,-0.102144,0.423466,0.000000 +-0.425792,-0.044961,0.309932,-0.102657,0.425757,0.000000 +-0.428117,-0.045181,0.311583,-0.103169,0.428047,0.000000 +-0.430443,-0.045402,0.313233,-0.103682,0.430338,0.000000 +-0.432769,-0.045622,0.314884,-0.104195,0.432629,0.000000 +-0.435095,-0.045843,0.316534,-0.104708,0.434919,0.000000 +-0.437421,-0.046064,0.318184,-0.105221,0.437210,0.000000 +-0.439747,-0.046284,0.319835,-0.105734,0.439501,0.000000 +-0.442073,-0.046505,0.321485,-0.106247,0.441792,0.000000 +-0.444398,-0.046726,0.323136,-0.106760,0.444082,0.000000 +-0.446724,-0.046946,0.324786,-0.107272,0.446373,0.000000 +-0.449050,-0.047167,0.326437,-0.107785,0.448664,0.000000 +-0.451376,-0.047387,0.328087,-0.108298,0.450954,0.000000 +-0.453702,-0.047608,0.329738,-0.108811,0.453245,0.000000 +-0.456028,-0.047829,0.331388,-0.109324,0.455536,0.000000 +-0.458353,-0.048049,0.333038,-0.109837,0.457826,0.000000 +-0.460679,-0.048270,0.334689,-0.110350,0.460117,0.000000 +-0.463005,-0.048491,0.336339,-0.110863,0.462408,0.000000 +-0.465331,-0.048711,0.337990,-0.111375,0.464699,0.000000 +-0.467657,-0.048932,0.339640,-0.111888,0.466989,0.000000 +-0.469983,-0.049153,0.341291,-0.112401,0.469280,0.000000 +-0.472308,-0.049373,0.342941,-0.112914,0.471571,0.000000 +-0.474634,-0.049594,0.344592,-0.113427,0.473861,0.000000 +-0.476960,-0.049814,0.346242,-0.113940,0.476152,0.000000 +-0.479286,-0.050035,0.347892,-0.114453,0.478443,0.000000 +-0.481612,-0.050256,0.349543,-0.114966,0.480734,0.000000 +-0.483938,-0.050476,0.351193,-0.115478,0.483024,0.000000 +-0.486264,-0.050697,0.352844,-0.115991,0.485315,0.000000 +-0.488589,-0.050917,0.354494,-0.116504,0.487606,0.000000 +-0.490915,-0.051138,0.356145,-0.117017,0.489896,0.000000 +-0.493241,-0.051359,0.357795,-0.117530,0.492187,0.000000 +-0.495567,-0.051579,0.359446,-0.118043,0.494478,0.000000 +-0.497893,-0.051800,0.361096,-0.118556,0.496768,0.000000 +-0.500219,-0.052021,0.362746,-0.119069,0.499059,0.000000 +-0.502544,-0.052241,0.364397,-0.119581,0.501350,0.000000 +-0.504870,-0.052462,0.366047,-0.120094,0.503641,0.000000 +-0.507196,-0.052683,0.367698,-0.120607,0.505931,0.000000 +-0.509522,-0.052903,0.369348,-0.121120,0.508222,0.000000 +-0.511848,-0.053124,0.370999,-0.121633,0.510513,0.000000 +-0.514174,-0.053345,0.372649,-0.122146,0.512803,0.000000 +-0.516499,-0.053565,0.374300,-0.122659,0.515094,0.000000 +-0.518825,-0.053786,0.375950,-0.123172,0.517385,0.000000 +-0.521151,-0.054006,0.377600,-0.123684,0.519676,0.000000 +-0.523477,-0.054227,0.379251,-0.124197,0.521966,0.000000 +-0.525803,-0.054448,0.380901,-0.124710,0.524257,0.000000 +-0.528129,-0.054668,0.382552,-0.125223,0.526548,0.000000 +-0.530455,-0.054889,0.384202,-0.125736,0.528838,0.000000 +-0.532780,-0.055109,0.385853,-0.126249,0.531129,0.000000 +-0.535106,-0.055330,0.387503,-0.126762,0.533420,0.000000 +-0.537432,-0.055551,0.389154,-0.127275,0.535711,0.000000 +-0.539758,-0.055771,0.390804,-0.127787,0.538001,0.000000 +-0.542084,-0.055992,0.392454,-0.128300,0.540292,0.000000 +-0.544410,-0.056213,0.394105,-0.128813,0.542583,0.000000 +-0.546735,-0.056433,0.395755,-0.129326,0.544873,0.000000 +-0.549061,-0.056654,0.397406,-0.129839,0.547164,0.000000 +-0.551387,-0.056875,0.399056,-0.130352,0.549455,0.000000 +-0.553713,-0.057095,0.400707,-0.130865,0.551745,0.000000 +-0.556039,-0.057316,0.402357,-0.131378,0.554036,0.000000 +-0.558365,-0.057536,0.404008,-0.131890,0.556327,0.000000 +-0.560690,-0.057757,0.405658,-0.132403,0.558618,0.000000 +-0.563016,-0.057978,0.407308,-0.132916,0.560908,0.000000 +-0.565342,-0.058198,0.408959,-0.133429,0.563199,0.000000 +-0.567668,-0.058419,0.410609,-0.133942,0.565490,0.000000 +-0.569994,-0.058640,0.412260,-0.134455,0.567780,0.000000 +-0.572320,-0.058860,0.413910,-0.134968,0.570071,0.000000 +-0.574646,-0.059081,0.415561,-0.135480,0.572362,0.000000 +-0.576971,-0.059302,0.417211,-0.135993,0.574653,0.000000 +-0.579297,-0.059522,0.418861,-0.136506,0.576943,0.000000 +-0.581623,-0.059743,0.420512,-0.137019,0.579234,0.000000 +-0.583949,-0.059963,0.422162,-0.137532,0.581525,0.000000 +-0.586275,-0.060184,0.423813,-0.138045,0.583815,0.000000 +-0.588601,-0.060405,0.425463,-0.138558,0.586106,0.000000 +-0.590926,-0.060625,0.427114,-0.139071,0.588397,0.000000 +-0.593252,-0.060846,0.428764,-0.139583,0.590688,0.000000 +-0.595578,-0.061067,0.430415,-0.140096,0.592978,0.000000 +-0.597904,-0.061287,0.432065,-0.140609,0.595269,0.000000 +-0.600230,-0.061508,0.433715,-0.141122,0.597560,0.000000 +-0.602556,-0.061728,0.435366,-0.141635,0.599850,0.000000 +-0.604881,-0.061949,0.437016,-0.142148,0.602141,0.000000 +-0.607207,-0.062170,0.438667,-0.142661,0.604432,0.000000 +-0.609533,-0.062390,0.440317,-0.143174,0.606722,0.000000 +-0.611859,-0.062611,0.441968,-0.143686,0.609013,0.000000 +-0.614185,-0.062832,0.443618,-0.144199,0.611304,0.000000 +-0.616511,-0.063052,0.445269,-0.144712,0.613595,0.000000 +-0.618836,-0.063273,0.446919,-0.145225,0.615885,0.000000 +-0.621162,-0.063493,0.448569,-0.145738,0.618176,0.000000 +-0.623488,-0.063714,0.450220,-0.146251,0.620467,0.000000 +-0.625814,-0.063935,0.451870,-0.146764,0.622757,0.000000 +-0.628140,-0.064155,0.453521,-0.147277,0.625048,0.000000 +-0.630466,-0.064376,0.455171,-0.147789,0.627339,0.000000 +-0.632792,-0.064597,0.456822,-0.148302,0.629630,0.000000 +-0.635117,-0.064817,0.458472,-0.148815,0.631920,0.000000 +-0.637443,-0.065038,0.460123,-0.149328,0.634211,0.000000 +-0.639769,-0.065258,0.461773,-0.149841,0.636502,0.000000 +-0.642095,-0.065479,0.463423,-0.150354,0.638792,0.000000 +-0.644421,-0.065700,0.465074,-0.150867,0.641083,0.000000 +-0.646747,-0.065920,0.466724,-0.151380,0.643374,0.000000 +-0.649072,-0.066141,0.468375,-0.151892,0.645664,0.000000 +-0.651398,-0.066362,0.470025,-0.152405,0.647955,0.000000 +-0.653724,-0.066582,0.471676,-0.152918,0.650246,0.000000 +-0.656050,-0.066803,0.473326,-0.153431,0.652537,0.000000 +-0.658376,-0.067024,0.474977,-0.153944,0.654827,0.000000 +-0.660702,-0.067244,0.476627,-0.154457,0.657118,0.000000 +-0.663027,-0.067465,0.478277,-0.154970,0.659409,0.000000 +-0.665353,-0.067685,0.479928,-0.155483,0.661699,0.000000 +-0.667679,-0.067906,0.481578,-0.155995,0.663990,0.000000 +-0.670005,-0.068127,0.483229,-0.156508,0.666281,0.000000 +-0.672331,-0.068347,0.484879,-0.157021,0.668572,0.000000 +-0.674657,-0.068568,0.486530,-0.157534,0.670862,0.000000 +-0.676983,-0.068789,0.488180,-0.158047,0.673153,0.000000 +-0.679308,-0.069009,0.489831,-0.158560,0.675444,0.000000 +-0.681634,-0.069230,0.491481,-0.159073,0.677734,0.000000 +-0.683960,-0.069450,0.493131,-0.159586,0.680025,0.000000 +-0.686286,-0.069671,0.494782,-0.160098,0.682316,0.000000 +-0.688612,-0.069892,0.496432,-0.160611,0.684607,0.000000 +-0.690938,-0.070112,0.498083,-0.161124,0.686897,0.000000 +-0.693263,-0.070333,0.499733,-0.161637,0.689188,0.000000 +-0.695589,-0.070554,0.501384,-0.162150,0.691479,0.000000 +-0.697915,-0.070774,0.503034,-0.162663,0.693769,0.000000 +-0.700241,-0.070995,0.504685,-0.163176,0.696060,0.000000 +-0.702567,-0.071216,0.506335,-0.163689,0.698351,0.000000 +-0.704893,-0.071436,0.507985,-0.164201,0.700641,0.000000 +-0.707218,-0.071657,0.509636,-0.164714,0.702932,0.000000 +-0.709544,-0.071877,0.511286,-0.165227,0.705223,0.000000 +-0.711870,-0.072098,0.512937,-0.165740,0.707514,0.000000 +-0.714196,-0.072319,0.514587,-0.166253,0.709804,0.000000 +-0.716522,-0.072539,0.516238,-0.166766,0.712095,0.000000 +-0.718848,-0.072760,0.517888,-0.167279,0.714386,0.000000 +-0.721174,-0.072981,0.519538,-0.167792,0.716676,0.000000 +-0.723499,-0.073201,0.521189,-0.168304,0.718967,0.000000 +-0.725825,-0.073422,0.522839,-0.168817,0.721258,0.000000 +-0.728151,-0.073643,0.524490,-0.169330,0.723549,0.000000 +-0.730477,-0.073863,0.526140,-0.169843,0.725839,0.000000 +-0.732803,-0.074084,0.527791,-0.170356,0.728130,0.000000 +-0.735129,-0.074304,0.529441,-0.170869,0.730421,0.000000 +-0.737454,-0.074525,0.531092,-0.171382,0.732711,0.000000 +-0.739780,-0.074746,0.532742,-0.171895,0.735002,0.000000 +-0.742106,-0.074966,0.534392,-0.172407,0.737293,0.000000 +-0.744432,-0.075187,0.536043,-0.172920,0.739584,0.000000 +-0.746758,-0.075408,0.537693,-0.173433,0.741874,0.000000 +-0.749084,-0.075628,0.539344,-0.173946,0.744165,0.000000 +-0.751409,-0.075849,0.540994,-0.174459,0.746456,0.000000 +-0.753735,-0.076069,0.542645,-0.174972,0.748746,0.000000 +-0.756061,-0.076290,0.544295,-0.175485,0.751037,0.000000 +-0.758387,-0.076511,0.545946,-0.175998,0.753328,0.000000 +-0.760713,-0.076731,0.547596,-0.176510,0.755618,0.000000 +-0.763039,-0.076952,0.549246,-0.177023,0.757909,0.000000 +-0.765365,-0.077173,0.550897,-0.177536,0.760200,0.000000 +-0.767690,-0.077393,0.552547,-0.178049,0.762491,0.000000 +-0.770016,-0.077614,0.554198,-0.178562,0.764781,0.000000 +-0.772342,-0.077835,0.555848,-0.179075,0.767072,0.000000 +-0.774668,-0.078055,0.557499,-0.179588,0.769363,0.000000 +-0.776994,-0.078276,0.559149,-0.180101,0.771653,0.000000 +-0.779320,-0.078496,0.560800,-0.180613,0.773944,0.000000 +-0.781645,-0.078717,0.562450,-0.181126,0.776235,0.000000 +-0.783971,-0.078938,0.564100,-0.181639,0.778526,0.000000 +-0.786297,-0.079158,0.565751,-0.182152,0.780816,0.000000 +-0.788623,-0.079379,0.567401,-0.182665,0.783107,0.000000 +-0.790949,-0.079600,0.569052,-0.183178,0.785398,0.000000 +-0.793275,-0.079820,0.570702,-0.183691,0.787688,0.000000 +-0.795600,-0.080041,0.572353,-0.184204,0.789979,0.000000 +-0.797926,-0.080261,0.574003,-0.184716,0.792270,0.000000 +-0.800252,-0.080482,0.575654,-0.185229,0.794560,0.000000 +-0.802578,-0.080703,0.577304,-0.185742,0.796851,0.000000 +-0.804904,-0.080923,0.578954,-0.186255,0.799142,0.000000 +-0.807230,-0.081144,0.580605,-0.186768,0.801433,0.000000 +-0.809556,-0.081365,0.582255,-0.187281,0.803723,0.000000 +-0.811881,-0.081585,0.583906,-0.187794,0.806014,0.000000 +-0.814207,-0.081806,0.585556,-0.188307,0.808305,0.000000 +-0.816533,-0.082027,0.587207,-0.188819,0.810595,0.000000 +-0.818859,-0.082247,0.588857,-0.189332,0.812886,0.000000 +-0.821185,-0.082468,0.590508,-0.189845,0.815177,0.000000 +-0.823511,-0.082688,0.592158,-0.190358,0.817468,0.000000 +-0.825836,-0.082909,0.593808,-0.190871,0.819758,0.000000 +-0.828162,-0.083130,0.595459,-0.191384,0.822049,0.000000 +-0.830488,-0.083350,0.597109,-0.191897,0.824340,0.000000 +-0.832814,-0.083571,0.598760,-0.192410,0.826630,0.000000 +-0.835140,-0.083792,0.600410,-0.192922,0.828921,0.000000 +-0.837466,-0.084012,0.602061,-0.193435,0.831212,0.000000 +-0.839791,-0.084233,0.603711,-0.193948,0.833503,0.000000 +-0.842117,-0.084453,0.605362,-0.194461,0.835793,0.000000 +-0.844443,-0.084674,0.607012,-0.194974,0.838084,0.000000 +-0.846769,-0.084895,0.608662,-0.195487,0.840375,0.000000 +-0.849095,-0.085115,0.610313,-0.196000,0.842665,0.000000 +-0.851421,-0.085336,0.611963,-0.196513,0.844956,0.000000 +-0.853747,-0.085556,0.613614,-0.197025,0.847247,0.000000 +-0.856072,-0.085777,0.615264,-0.197538,0.849537,0.000000 +-0.858398,-0.085998,0.616915,-0.198051,0.851828,0.000000 +-0.860724,-0.086218,0.618565,-0.198564,0.854119,0.000000 +-0.863050,-0.086439,0.620215,-0.199077,0.856410,0.000000 +-0.865376,-0.086660,0.621866,-0.199590,0.858700,0.000000 +-0.867702,-0.086880,0.623516,-0.200103,0.860991,0.000000 +-0.870027,-0.087101,0.625167,-0.200616,0.863282,0.000000 +-0.872353,-0.087322,0.626817,-0.201128,0.865572,0.000000 +-0.874679,-0.087542,0.628468,-0.201641,0.867863,0.000000 +-0.877005,-0.087763,0.630118,-0.202154,0.870154,0.000000 +-0.879331,-0.087984,0.631769,-0.202667,0.872445,0.000000 +-0.881657,-0.088204,0.633419,-0.203180,0.874735,0.000000 +-0.883982,-0.088425,0.635069,-0.203693,0.877026,0.000000 +-0.886308,-0.088645,0.636720,-0.204206,0.879317,0.000000 +-0.888634,-0.088866,0.638370,-0.204719,0.881607,0.000000 +-0.890960,-0.089087,0.640021,-0.205231,0.883898,0.000000 +-0.893286,-0.089307,0.641671,-0.205744,0.886189,0.000000 +-0.895612,-0.089528,0.643322,-0.206257,0.888480,0.000000 +-0.897937,-0.089748,0.644972,-0.206770,0.890770,0.000000 +-0.900263,-0.089969,0.646623,-0.207283,0.893061,0.000000 +-0.902589,-0.090190,0.648273,-0.207796,0.895352,0.000000 +-0.904915,-0.090410,0.649923,-0.208309,0.897642,0.000000 +-0.907241,-0.090631,0.651574,-0.208822,0.899933,0.000000 +-0.909567,-0.090852,0.653224,-0.209334,0.902224,0.000000 +-0.911893,-0.091072,0.654875,-0.209847,0.904514,0.000000 +-0.914218,-0.091293,0.656525,-0.210360,0.906805,0.000000 +-0.916544,-0.091514,0.658176,-0.210873,0.909096,0.000000 +-0.918870,-0.091734,0.659826,-0.211386,0.911387,0.000000 +-0.921196,-0.091955,0.661477,-0.211899,0.913677,0.000000 +-0.923522,-0.092175,0.663127,-0.212412,0.915968,0.000000 +-0.925848,-0.092396,0.664777,-0.212925,0.918259,0.000000 +-0.928173,-0.092617,0.666428,-0.213437,0.920549,0.000000 +-0.930499,-0.092837,0.668078,-0.213950,0.922840,0.000000 +-0.932825,-0.093058,0.669729,-0.214463,0.925131,0.000000 +-0.935151,-0.093279,0.671379,-0.214976,0.927422,0.000000 +-0.937477,-0.093499,0.673030,-0.215489,0.929712,0.000000 +-0.939803,-0.093720,0.674680,-0.216002,0.932003,0.000000 +-0.942128,-0.093940,0.676331,-0.216515,0.934294,0.000000 +-0.944454,-0.094161,0.677981,-0.217028,0.936584,0.000000 +-0.946780,-0.094382,0.679631,-0.217540,0.938875,0.000000 +-0.949106,-0.094602,0.681282,-0.218053,0.941166,0.000000 +-0.951432,-0.094823,0.682932,-0.218566,0.943456,0.000000 +-0.953758,-0.095044,0.684583,-0.219079,0.945747,0.000000 +-0.956084,-0.095264,0.686233,-0.219592,0.948038,0.000000 +-0.958409,-0.095485,0.687884,-0.220105,0.950329,0.000000 +-0.960735,-0.095706,0.689534,-0.220618,0.952619,0.000000 +-0.963061,-0.095926,0.691185,-0.221131,0.954910,0.000000 +-0.965387,-0.096147,0.692835,-0.221643,0.957201,0.000000 +-0.967713,-0.096367,0.694485,-0.222156,0.959491,0.000000 +-0.970039,-0.096588,0.696136,-0.222669,0.961782,0.000000 +-0.972364,-0.096809,0.697786,-0.223182,0.964073,0.000000 +-0.974690,-0.097029,0.699437,-0.223695,0.966364,0.000000 +-0.977016,-0.097250,0.701087,-0.224208,0.968654,0.000000 +-0.979342,-0.097471,0.702738,-0.224721,0.970945,0.000000 +-0.981668,-0.097691,0.704388,-0.225234,0.973236,0.000000 +-0.983994,-0.097912,0.706038,-0.225746,0.975526,0.000000 +-0.986319,-0.098132,0.707689,-0.226259,0.977817,0.000000 +-0.988645,-0.098353,0.709339,-0.226772,0.980108,0.000000 +-0.990971,-0.098574,0.710990,-0.227285,0.982399,0.000000 +-0.993297,-0.098794,0.712640,-0.227798,0.984689,0.000000 +-0.995623,-0.099015,0.714291,-0.228311,0.986980,0.000000 +-0.997949,-0.099236,0.715941,-0.228824,0.989271,0.000000 +-1.000270,-0.099456,0.717592,-0.229337,0.991561,0.000000 +-1.002600,-0.099677,0.719242,-0.229849,0.993852,0.000000 +-1.004930,-0.099898,0.720892,-0.230362,0.996143,0.000000 +-1.007250,-0.100118,0.722543,-0.230875,0.998433,0.000000 +-1.009580,-0.100339,0.724193,-0.231388,1.000720,0.000000 +-1.011900,-0.100559,0.725844,-0.231901,1.003010,0.000000 +-1.014230,-0.100780,0.727494,-0.232414,1.005310,0.000000 +-1.016560,-0.101001,0.729145,-0.232927,1.007600,0.000000 +-1.018880,-0.101221,0.730795,-0.233440,1.009890,0.000000 +-1.021210,-0.101442,0.732446,-0.233952,1.012180,0.000000 +-1.023530,-0.101663,0.734096,-0.234465,1.014470,0.000000 +-1.025860,-0.101883,0.735746,-0.234978,1.016760,0.000000 +-1.028180,-0.102104,0.737397,-0.235491,1.019050,0.000000 +-1.030510,-0.102324,0.739047,-0.236004,1.021340,0.000000 +-1.032840,-0.102545,0.740698,-0.236517,1.023630,0.000000 +-1.035160,-0.102766,0.742348,-0.237030,1.025920,0.000000 +-1.037490,-0.102986,0.743999,-0.237542,1.028210,0.000000 +-1.039810,-0.103207,0.745649,-0.238055,1.030500,0.000000 +-1.042140,-0.103428,0.747300,-0.238568,1.032790,0.000000 +-1.044470,-0.103648,0.748950,-0.239081,1.035080,0.000000 +-1.046790,-0.103869,0.750600,-0.239594,1.037380,0.000000 +-1.049120,-0.104090,0.752251,-0.240107,1.039670,0.000000 +-1.051440,-0.104310,0.753901,-0.240620,1.041960,0.000000 +-1.053770,-0.104531,0.755552,-0.241133,1.044250,0.000000 +-1.056090,-0.104751,0.757202,-0.241645,1.046540,0.000000 +-1.058420,-0.104972,0.758853,-0.242158,1.048830,0.000000 +-1.060750,-0.105193,0.760503,-0.242671,1.051120,0.000000 +-1.063070,-0.105413,0.762154,-0.243184,1.053410,0.000000 +-1.065400,-0.105634,0.763804,-0.243697,1.055700,0.000000 +-1.067720,-0.105855,0.765454,-0.244210,1.057990,0.000000 +-1.070050,-0.106075,0.767105,-0.244723,1.060280,0.000000 +-1.072380,-0.106296,0.768755,-0.245236,1.062570,0.000000 +-1.074700,-0.106516,0.770406,-0.245748,1.064860,0.000000 +-1.077030,-0.106737,0.772056,-0.246261,1.067150,0.000000 +-1.079350,-0.106958,0.773707,-0.246774,1.069450,0.000000 +-1.081680,-0.107178,0.775357,-0.247287,1.071740,0.000000 +-1.084000,-0.107399,0.777008,-0.247800,1.074030,0.000000 +-1.086330,-0.107620,0.778658,-0.248313,1.076320,0.000000 +-1.088660,-0.107840,0.780308,-0.248826,1.078610,0.000000 +-1.090980,-0.108061,0.781959,-0.249339,1.080900,0.000000 +-1.093310,-0.108282,0.783609,-0.249851,1.083190,0.000000 +-1.095630,-0.108502,0.785260,-0.250364,1.085480,0.000000 +-1.097960,-0.108723,0.786910,-0.250877,1.087770,0.000000 +-1.100290,-0.108943,0.788561,-0.251390,1.090060,0.000000 +-1.102610,-0.109164,0.790211,-0.251903,1.092350,0.000000 +-1.104940,-0.109385,0.791862,-0.252416,1.094640,0.000000 +-1.107260,-0.109605,0.793512,-0.252929,1.096930,0.000000 +-1.109590,-0.109826,0.795162,-0.253442,1.099220,0.000000 +-1.111910,-0.110047,0.796813,-0.253954,1.101520,0.000000 +-1.114240,-0.110267,0.798463,-0.254467,1.103810,0.000000 +-1.116570,-0.110488,0.800114,-0.254980,1.106100,0.000000 +-1.118890,-0.110708,0.801764,-0.255493,1.108390,0.000000 +-1.121220,-0.110929,0.803415,-0.256006,1.110680,0.000000 +-1.123540,-0.111150,0.805065,-0.256519,1.112970,0.000000 +-1.125870,-0.111370,0.806715,-0.257032,1.115260,0.000000 +-1.128200,-0.111591,0.808366,-0.257545,1.117550,0.000000 +-1.130520,-0.111812,0.810016,-0.258057,1.119840,0.000000 +-1.132850,-0.112032,0.811667,-0.258570,1.122130,0.000000 +-1.135170,-0.112253,0.813317,-0.259083,1.124420,0.000000 +-1.137500,-0.112473,0.814968,-0.259596,1.126710,0.000000 +-1.139830,-0.112694,0.816618,-0.260109,1.129000,0.000000 +-1.142150,-0.112915,0.818269,-0.260622,1.131290,0.000000 +-1.144480,-0.113135,0.819919,-0.261135,1.133590,0.000000 +-1.146800,-0.113356,0.821569,-0.261648,1.135880,0.000000 +-1.149130,-0.113577,0.823220,-0.262160,1.138170,0.000000 +-1.151450,-0.113797,0.824870,-0.262673,1.140460,0.000000 +-1.153780,-0.114018,0.826521,-0.263186,1.142750,0.000000 +-1.156110,-0.114239,0.828171,-0.263699,1.145040,0.000000 +-1.158430,-0.114459,0.829822,-0.264212,1.147330,0.000000 +-1.160760,-0.114680,0.831472,-0.264725,1.149620,0.000000 +-1.163080,-0.114900,0.833123,-0.265238,1.151910,0.000000 +-1.165410,-0.115121,0.834773,-0.265751,1.154200,0.000000 +-1.167740,-0.115342,0.836423,-0.266263,1.156490,0.000000 +-1.170060,-0.115562,0.838074,-0.266776,1.158780,0.000000 +-1.172390,-0.115783,0.839724,-0.267289,1.161070,0.000000 +-1.174710,-0.116004,0.841375,-0.267802,1.163360,0.000000 +-1.177040,-0.116224,0.843025,-0.268315,1.165660,0.000000 +-1.179360,-0.116445,0.844676,-0.268828,1.167950,0.000000 +-1.181690,-0.116665,0.846326,-0.269341,1.170240,0.000000 +-1.184020,-0.116886,0.847977,-0.269854,1.172530,0.000000 +-1.186340,-0.117107,0.849627,-0.270366,1.174820,0.000000 +-1.188670,-0.117327,0.851277,-0.270879,1.177110,0.000000 +-1.190990,-0.117548,0.852928,-0.271392,1.179400,0.000000 +-1.193320,-0.117769,0.854578,-0.271905,1.181690,0.000000 +-1.195650,-0.117989,0.856229,-0.272418,1.183980,0.000000 +-1.197970,-0.118210,0.857879,-0.272931,1.186270,0.000000 +-1.200300,-0.118431,0.859530,-0.273444,1.188560,0.000000 +-1.202620,-0.118651,0.861180,-0.273957,1.190850,0.000000 +-1.204950,-0.118872,0.862831,-0.274469,1.193140,0.000000 +-1.207270,-0.119092,0.864481,-0.274982,1.195430,0.000000 +-1.209600,-0.119313,0.866131,-0.275495,1.197730,0.000000 +-1.211930,-0.119534,0.867782,-0.276008,1.200020,0.000000 +-1.214250,-0.119754,0.869432,-0.276521,1.202310,0.000000 +-1.216580,-0.119975,0.871083,-0.277034,1.204600,0.000000 +-1.218900,-0.120196,0.872733,-0.277547,1.206890,0.000000 +-1.221230,-0.120416,0.874384,-0.278060,1.209180,0.000000 +-1.223560,-0.120637,0.876034,-0.278572,1.211470,0.000000 +-1.225880,-0.120857,0.877685,-0.279085,1.213760,0.000000 +-1.228210,-0.121078,0.879335,-0.279598,1.216050,0.000000 +-1.230530,-0.121299,0.880985,-0.280111,1.218340,0.000000 +-1.232860,-0.121519,0.882636,-0.280624,1.220630,0.000000 +-1.235180,-0.121740,0.884286,-0.281137,1.222920,0.000000 +-1.237510,-0.121961,0.885937,-0.281650,1.225210,0.000000 +-1.239840,-0.122181,0.887587,-0.282163,1.227500,0.000000 +-1.242160,-0.122402,0.889238,-0.282675,1.229790,0.000000 +-1.244490,-0.122623,0.890888,-0.283188,1.232090,0.000000 +-1.246810,-0.122843,0.892539,-0.283701,1.234380,0.000000 +-1.249140,-0.123064,0.894189,-0.284214,1.236670,0.000000 +-1.251470,-0.123284,0.895839,-0.284727,1.238960,0.000000 +-1.253790,-0.123505,0.897490,-0.285240,1.241250,0.000000 +-1.256120,-0.123726,0.899140,-0.285753,1.243540,0.000000 +-1.258440,-0.123946,0.900791,-0.286266,1.245830,0.000000 +-1.260770,-0.124167,0.902441,-0.286778,1.248120,0.000000 +-1.263090,-0.124388,0.904092,-0.287291,1.250410,0.000000 +-1.265420,-0.124608,0.905742,-0.287804,1.252700,0.000000 +-1.267750,-0.124829,0.907392,-0.288317,1.254990,0.000000 +-1.270070,-0.125049,0.909043,-0.288830,1.257280,0.000000 +-1.272400,-0.125270,0.910693,-0.289343,1.259570,0.000000 +-1.274720,-0.125491,0.912344,-0.289856,1.261860,0.000000 +-1.277050,-0.125711,0.913994,-0.290369,1.264160,0.000000 +-1.279380,-0.125932,0.915645,-0.290881,1.266450,0.000000 +-1.281700,-0.126153,0.917295,-0.291394,1.268740,0.000000 +-1.284030,-0.126373,0.918946,-0.291907,1.271030,0.000000 +-1.286350,-0.126594,0.920596,-0.292420,1.273320,0.000000 +-1.288680,-0.126814,0.922246,-0.292933,1.275610,0.000000 +-1.291000,-0.127035,0.923897,-0.293446,1.277900,0.000000 +-1.293330,-0.127256,0.925547,-0.293959,1.280190,0.000000 +-1.295660,-0.127476,0.927198,-0.294472,1.282480,0.000000 +-1.297980,-0.127697,0.928848,-0.294984,1.284770,0.000000 +-1.300310,-0.127918,0.930499,-0.295497,1.287060,0.000000 +-1.302630,-0.128138,0.932149,-0.296010,1.289350,0.000000 +-1.304960,-0.128359,0.933800,-0.296523,1.291640,0.000000 +-1.307290,-0.128580,0.935450,-0.297036,1.293930,0.000000 +-1.309610,-0.128800,0.937100,-0.297549,1.296230,0.000000 +-1.311940,-0.129021,0.938751,-0.298062,1.298520,0.000000 +-1.314260,-0.129241,0.940401,-0.298575,1.300810,0.000000 +-1.316590,-0.129462,0.942052,-0.299087,1.303100,0.000000 +-1.318910,-0.129683,0.943702,-0.299600,1.305390,0.000000 +-1.321240,-0.129903,0.945353,-0.300113,1.307680,0.000000 +-1.323570,-0.130124,0.947003,-0.300626,1.309970,0.000000 +-1.325890,-0.130345,0.948654,-0.301139,1.312260,0.000000 +-1.328220,-0.130565,0.950304,-0.301652,1.314550,0.000000 +-1.330540,-0.130786,0.951954,-0.302165,1.316840,0.000000 +-1.332870,-0.131006,0.953605,-0.302678,1.319130,0.000000 +-1.335200,-0.131227,0.955255,-0.303190,1.321420,0.000000 +-1.337520,-0.131448,0.956906,-0.303703,1.323710,0.000000 +-1.339850,-0.131668,0.958556,-0.304216,1.326000,0.000000 +-1.342170,-0.131889,0.960207,-0.304729,1.328300,0.000000 +-1.344500,-0.132110,0.961857,-0.305242,1.330590,0.000000 +-1.346820,-0.132330,0.963508,-0.305755,1.332880,0.000000 +-1.349150,-0.132551,0.965158,-0.306268,1.335170,0.000000 +-1.351480,-0.132772,0.966808,-0.306781,1.337460,0.000000 +-1.353800,-0.132992,0.968459,-0.307293,1.339750,0.000000 +-1.356130,-0.133213,0.970109,-0.307806,1.342040,0.000000 +-1.358450,-0.133433,0.971760,-0.308319,1.344330,0.000000 +-1.360780,-0.133654,0.973410,-0.308832,1.346620,0.000000 +-1.363110,-0.133875,0.975061,-0.309345,1.348910,0.000000 +-1.365430,-0.134095,0.976711,-0.309858,1.351200,0.000000 +-1.367760,-0.134316,0.978362,-0.310371,1.353490,0.000000 +-1.370080,-0.134537,0.980012,-0.310884,1.355780,0.000000 +-1.372410,-0.134757,0.981662,-0.311396,1.358070,0.000000 +-1.374740,-0.134978,0.983313,-0.311909,1.360370,0.000000 +-1.377060,-0.135198,0.984963,-0.312422,1.362660,0.000000 +-1.379390,-0.135419,0.986614,-0.312935,1.364950,0.000000 +-1.381710,-0.135640,0.988264,-0.313448,1.367240,0.000000 +-1.384040,-0.135860,0.989915,-0.313961,1.369530,0.000000 +-1.386360,-0.136081,0.991565,-0.314474,1.371820,0.000000 +-1.388690,-0.136302,0.993216,-0.314987,1.374110,0.000000 +-1.391020,-0.136522,0.994866,-0.315499,1.376400,0.000000 +-1.393340,-0.136743,0.996516,-0.316012,1.378690,0.000000 +-1.395670,-0.136963,0.998167,-0.316525,1.380980,0.000000 +-1.397990,-0.137184,0.999817,-0.317038,1.383270,0.000000 +-1.400320,-0.137405,1.001470,-0.317551,1.385560,0.000000 +-1.402650,-0.137625,1.003120,-0.318064,1.387850,0.000000 +-1.404970,-0.137846,1.004770,-0.318577,1.390140,0.000000 +-1.407300,-0.138067,1.006420,-0.319090,1.392440,0.000000 +-1.409620,-0.138287,1.008070,-0.319602,1.394730,0.000000 +-1.411950,-0.138508,1.009720,-0.320115,1.397020,0.000000 +-1.414270,-0.138729,1.011370,-0.320628,1.399310,0.000000 +-1.416600,-0.138949,1.013020,-0.321141,1.401600,0.000000 +-1.418930,-0.139170,1.014670,-0.321654,1.403890,0.000000 +-1.421250,-0.139390,1.016320,-0.322167,1.406180,0.000000 +-1.423580,-0.139611,1.017970,-0.322680,1.408470,0.000000 +-1.425900,-0.139832,1.019620,-0.323193,1.410760,0.000000 +-1.428230,-0.140052,1.021270,-0.323705,1.413050,0.000000 +-1.430560,-0.140273,1.022920,-0.324218,1.415340,0.000000 +-1.432880,-0.140494,1.024570,-0.324731,1.417630,0.000000 +-1.435210,-0.140714,1.026220,-0.325244,1.419920,0.000000 +-1.437530,-0.140935,1.027870,-0.325757,1.422210,0.000000 +-1.439860,-0.141155,1.029530,-0.326270,1.424510,0.000000 +-1.442180,-0.141376,1.031180,-0.326783,1.426800,0.000000 +-1.444510,-0.141597,1.032830,-0.327296,1.429090,0.000000 +-1.446840,-0.141817,1.034480,-0.327808,1.431380,0.000000 +-1.449160,-0.142038,1.036130,-0.328321,1.433670,0.000000 +-1.451490,-0.142259,1.037780,-0.328834,1.435960,0.000000 +-1.453810,-0.142479,1.039430,-0.329347,1.438250,0.000000 +-1.456140,-0.142700,1.041080,-0.329860,1.440540,0.000000 +-1.458470,-0.142921,1.042730,-0.330373,1.442830,0.000000 +-1.460790,-0.143141,1.044380,-0.330886,1.445120,0.000000 +-1.463120,-0.143362,1.046030,-0.331399,1.447410,0.000000 +-1.465440,-0.143582,1.047680,-0.331911,1.449700,0.000000 +-1.467770,-0.143803,1.049330,-0.332424,1.451990,0.000000 +-1.470090,-0.144024,1.050980,-0.332937,1.454280,0.000000 +-1.472420,-0.144244,1.052630,-0.333450,1.456580,0.000000 +-1.474750,-0.144465,1.054280,-0.333963,1.458870,0.000000 +-1.477070,-0.144686,1.055930,-0.334476,1.461160,0.000000 +-1.479400,-0.144906,1.057580,-0.334989,1.463450,0.000000 +-1.481720,-0.145127,1.059230,-0.335502,1.465740,0.000000 +-1.484050,-0.145347,1.060880,-0.336014,1.468030,0.000000 +-1.486380,-0.145568,1.062530,-0.336527,1.470320,0.000000 +-1.488700,-0.145789,1.064180,-0.337040,1.472610,0.000000 +-1.491030,-0.146009,1.065830,-0.337553,1.474900,0.000000 +-1.493350,-0.146230,1.067490,-0.338066,1.477190,0.000000 +-1.495680,-0.146451,1.069140,-0.338579,1.479480,0.000000 +-1.498000,-0.146671,1.070790,-0.339092,1.481770,0.000000 +-1.500330,-0.146892,1.072440,-0.339605,1.484060,0.000000 +-1.502660,-0.147113,1.074090,-0.340117,1.486350,0.000000 +-1.504980,-0.147333,1.075740,-0.340630,1.488640,0.000000 +-1.507310,-0.147554,1.077390,-0.341143,1.490940,0.000000 +-1.509630,-0.147774,1.079040,-0.341656,1.493230,0.000000 +-1.511960,-0.147995,1.080690,-0.342169,1.495520,0.000000 +-1.514290,-0.148216,1.082340,-0.342682,1.497810,0.000000 +-1.516610,-0.148436,1.083990,-0.343195,1.500100,0.000000 +-1.518930,-0.148657,1.085640,-0.343707,1.502390,0.000000 +-1.521240,-0.148878,1.087290,-0.344220,1.504680,0.000000 +-1.523540,-0.149098,1.088940,-0.344733,1.506970,0.000000 +-1.525830,-0.149319,1.090590,-0.345246,1.509260,0.000000 +-1.528100,-0.149539,1.092240,-0.345759,1.511550,0.000000 +-1.530360,-0.149760,1.093890,-0.346272,1.513840,0.000000 +-1.532590,-0.149981,1.095540,-0.346785,1.516120,0.000000 +-1.534800,-0.150201,1.097190,-0.347298,1.518380,0.000000 +-1.536990,-0.150422,1.098840,-0.347810,1.520640,0.000000 +-1.539150,-0.150643,1.100490,-0.348323,1.522880,0.000000 +-1.541280,-0.150863,1.102130,-0.348836,1.525100,0.000000 +-1.543370,-0.151084,1.103760,-0.349349,1.527290,0.000000 +-1.545430,-0.151304,1.105380,-0.349862,1.529460,0.000000 +-1.547450,-0.151525,1.106980,-0.350375,1.531610,0.000000 +-1.549430,-0.151746,1.108570,-0.350888,1.533720,0.000000 +-1.551360,-0.151966,1.110140,-0.351401,1.535790,0.000000 +-1.553250,-0.152187,1.111690,-0.351913,1.537830,0.000000 +-1.555090,-0.152408,1.113210,-0.352426,1.539820,0.000000 +-1.556870,-0.152628,1.114700,-0.352939,1.541770,0.000000 +-1.558610,-0.152849,1.116170,-0.353452,1.543680,0.000000 +-1.560280,-0.153070,1.117600,-0.353965,1.545530,0.000000 +-1.561900,-0.153290,1.119000,-0.354478,1.547330,0.000000 +-1.563460,-0.153511,1.120360,-0.354991,1.549070,0.000000 +-1.564950,-0.153731,1.121680,-0.355504,1.550750,0.000000 +-1.566370,-0.153952,1.122960,-0.356016,1.552370,0.000000 +-1.567730,-0.154173,1.124190,-0.356529,1.553930,0.000000 +-1.569010,-0.154393,1.125380,-0.357042,1.555410,0.000000 +-1.570210,-0.154614,1.126510,-0.357555,1.556820,0.000000 +-1.571340,-0.154835,1.127600,-0.358068,1.558160,0.000000 +-1.572400,-0.155055,1.128620,-0.358581,1.559420,0.000000 +-1.573380,-0.155276,1.129590,-0.359094,1.560590,0.000000 +-1.574290,-0.155496,1.130500,-0.359607,1.561680,0.000000 +-1.575140,-0.155717,1.131340,-0.360119,1.562700,0.000000 +-1.575920,-0.155938,1.132120,-0.360630,1.563630,0.000000 +-1.576630,-0.156158,1.132840,-0.361135,1.564490,0.000000 +-1.577290,-0.156379,1.133500,-0.361632,1.565280,0.000000 +-1.577890,-0.156600,1.134100,-0.362118,1.565990,0.000000 +-1.578440,-0.156820,1.134640,-0.362589,1.566650,0.000000 +-1.578930,-0.157041,1.135140,-0.363042,1.567240,0.000000 +-1.579370,-0.157261,1.135580,-0.363475,1.567770,0.000000 +-1.579770,-0.157481,1.135980,-0.363883,1.568250,0.000000 +-1.580130,-0.157697,1.136330,-0.364265,1.568670,0.000000 +-1.580440,-0.157906,1.136640,-0.364616,1.569050,0.000000 +-1.580710,-0.158106,1.136920,-0.364935,1.569370,0.000000 +-1.580950,-0.158295,1.137150,-0.365217,1.569660,0.000000 +-1.581150,-0.158470,1.137360,-0.365460,1.569900,0.000000 +-1.581320,-0.158628,1.137530,-0.365666,1.570110,0.000000 +-1.581460,-0.158767,1.137670,-0.365837,1.570280,0.000000 +-1.581580,-0.158884,1.137790,-0.365978,1.570420,0.000000 +-1.581680,-0.158977,1.137880,-0.366090,1.570530,0.000000 +-1.581750,-0.159051,1.137960,-0.366178,1.570620,0.000000 +-1.581800,-0.159106,1.138010,-0.366244,1.570680,0.000000 +-1.581840,-0.159145,1.138050,-0.366291,1.570730,0.000000 +-1.581870,-0.159171,1.138080,-0.366322,1.570760,0.000000 +-1.581890,-0.159187,1.138090,-0.366342,1.570780,0.000000 +-1.581890,-0.159196,1.138100,-0.366351,1.570790,0.000000 +-1.581900,-0.159199,1.138100,-0.366355,1.570790,0.000000 +-1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +-1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +-1.581900,-0.159203,1.138110,-0.366355,1.570800,-0.000008 +-1.581890,-0.159200,1.138100,-0.366352,1.570790,-0.000008 +-1.581890,-0.159191,1.138100,-0.366342,1.570780,-0.000008 +-1.581870,-0.159175,1.138080,-0.366323,1.570760,-0.000008 +-1.581840,-0.159149,1.138050,-0.366291,1.570730,-0.000008 +-1.581800,-0.159110,1.138010,-0.366244,1.570680,-0.000008 +-1.581750,-0.159055,1.137960,-0.366178,1.570620,-0.000008 +-1.581680,-0.158981,1.137890,-0.366091,1.570530,-0.000008 +-1.581580,-0.158888,1.137790,-0.365978,1.570420,-0.000008 +-1.581470,-0.158771,1.137680,-0.365838,1.570280,-0.000008 +-1.581320,-0.158632,1.137530,-0.365666,1.570110,-0.000008 +-1.581150,-0.158474,1.137360,-0.365460,1.569900,-0.000008 +-1.580950,-0.158299,1.137160,-0.365217,1.569660,-0.000008 +-1.580710,-0.158110,1.136920,-0.364935,1.569370,-0.000008 +-1.580440,-0.157910,1.136650,-0.364617,1.569050,-0.000008 +-1.580130,-0.157700,1.136340,-0.364265,1.568670,-0.000008 +-1.579770,-0.157485,1.135980,-0.363884,1.568250,-0.000008 +-1.579370,-0.157265,1.135580,-0.363475,1.567770,-0.000008 +-1.578930,-0.157045,1.135140,-0.363042,1.567240,-0.000008 +-1.578440,-0.156824,1.134650,-0.362589,1.566650,-0.000008 +-1.577890,-0.156604,1.134100,-0.362118,1.565990,-0.000008 +-1.577290,-0.156383,1.133500,-0.361633,1.565280,-0.000008 +-1.576630,-0.156162,1.132840,-0.361136,1.564490,-0.000008 +-1.575920,-0.155942,1.132130,-0.360630,1.563630,-0.000008 +-1.575140,-0.155721,1.131350,-0.360120,1.562700,-0.000008 +-1.574290,-0.155500,1.130500,-0.359607,1.561680,-0.000008 +-1.573380,-0.155280,1.129600,-0.359094,1.560590,-0.000008 +-1.572400,-0.155059,1.128630,-0.358581,1.559420,-0.000008 +-1.571340,-0.154839,1.127600,-0.358068,1.558160,-0.000008 +-1.570210,-0.154618,1.126520,-0.357555,1.556820,-0.000008 +-1.569010,-0.154397,1.125380,-0.357043,1.555410,-0.000008 +-1.567730,-0.154177,1.124200,-0.356530,1.553930,-0.000008 +-1.566370,-0.153956,1.122970,-0.356017,1.552370,-0.000008 +-1.564950,-0.153735,1.121690,-0.355504,1.550760,-0.000008 +-1.563460,-0.153515,1.120370,-0.354991,1.549070,-0.000008 +-1.561900,-0.153294,1.119010,-0.354478,1.547330,-0.000008 +-1.560280,-0.153074,1.117610,-0.353965,1.545530,-0.000008 +-1.558610,-0.152853,1.116170,-0.353452,1.543680,-0.000008 +-1.556870,-0.152632,1.114710,-0.352940,1.541770,-0.000008 +-1.555090,-0.152412,1.113210,-0.352427,1.539820,-0.000008 +-1.553250,-0.152191,1.111690,-0.351914,1.537830,-0.000008 +-1.551360,-0.151970,1.110140,-0.351401,1.535790,-0.000008 +-1.549430,-0.151750,1.108570,-0.350888,1.533720,-0.000008 +-1.547450,-0.151529,1.106990,-0.350375,1.531610,-0.000008 +-1.545430,-0.151308,1.105380,-0.349862,1.529460,-0.000008 +-1.543370,-0.151088,1.103760,-0.349349,1.527290,-0.000008 +-1.541280,-0.150867,1.102130,-0.348837,1.525100,-0.000008 +-1.539150,-0.150647,1.100490,-0.348324,1.522880,-0.000008 +-1.536990,-0.150426,1.098850,-0.347811,1.520640,-0.000008 +-1.534800,-0.150205,1.097200,-0.347298,1.518380,-0.000008 +-1.532590,-0.149985,1.095550,-0.346785,1.516120,-0.000008 +-1.530360,-0.149764,1.093900,-0.346272,1.513840,-0.000008 +-1.528100,-0.149543,1.092250,-0.345759,1.511550,-0.000008 +-1.525830,-0.149323,1.090600,-0.345246,1.509260,-0.000008 +-1.523540,-0.149102,1.088950,-0.344734,1.506970,-0.000008 +-1.521240,-0.148882,1.087300,-0.344221,1.504680,-0.000008 +-1.518930,-0.148661,1.085640,-0.343708,1.502390,-0.000008 +-1.516610,-0.148440,1.083990,-0.343195,1.500100,-0.000008 +-1.514290,-0.148220,1.082340,-0.342682,1.497810,-0.000008 +-1.511960,-0.147999,1.080690,-0.342169,1.495520,-0.000008 +-1.509630,-0.147778,1.079040,-0.341656,1.493230,-0.000008 +-1.507310,-0.147558,1.077390,-0.341143,1.490940,-0.000008 +-1.504980,-0.147337,1.075740,-0.340631,1.488650,-0.000008 +-1.502660,-0.147116,1.074090,-0.340118,1.486350,-0.000008 +-1.500330,-0.146896,1.072440,-0.339605,1.484060,-0.000008 +-1.498010,-0.146675,1.070790,-0.339092,1.481770,-0.000008 +-1.495680,-0.146455,1.069140,-0.338579,1.479480,-0.000008 +-1.493350,-0.146234,1.067490,-0.338066,1.477190,-0.000008 +-1.491030,-0.146013,1.065840,-0.337553,1.474900,-0.000008 +-1.488700,-0.145793,1.064190,-0.337040,1.472610,-0.000008 +-1.486380,-0.145572,1.062540,-0.336528,1.470320,-0.000008 +-1.484050,-0.145351,1.060890,-0.336015,1.468030,-0.000008 +-1.481720,-0.145131,1.059240,-0.335502,1.465740,-0.000008 +-1.479400,-0.144910,1.057590,-0.334989,1.463450,-0.000008 +-1.477070,-0.144690,1.055940,-0.334476,1.461160,-0.000008 +-1.474750,-0.144469,1.054290,-0.333963,1.458870,-0.000008 +-1.472420,-0.144248,1.052640,-0.333450,1.456580,-0.000008 +-1.470090,-0.144028,1.050990,-0.332938,1.454280,-0.000008 +-1.467770,-0.143807,1.049340,-0.332425,1.451990,-0.000008 +-1.465440,-0.143586,1.047680,-0.331912,1.449700,-0.000008 +-1.463120,-0.143366,1.046030,-0.331399,1.447410,-0.000008 +-1.460790,-0.143145,1.044380,-0.330886,1.445120,-0.000008 +-1.458470,-0.142924,1.042730,-0.330373,1.442830,-0.000008 +-1.456140,-0.142704,1.041080,-0.329860,1.440540,-0.000008 +-1.453810,-0.142483,1.039430,-0.329347,1.438250,-0.000008 +-1.451490,-0.142263,1.037780,-0.328835,1.435960,-0.000008 +-1.449160,-0.142042,1.036130,-0.328322,1.433670,-0.000008 +-1.446840,-0.141821,1.034480,-0.327809,1.431380,-0.000008 +-1.444510,-0.141601,1.032830,-0.327296,1.429090,-0.000008 +-1.442180,-0.141380,1.031180,-0.326783,1.426800,-0.000008 +-1.439860,-0.141159,1.029530,-0.326270,1.424510,-0.000008 +-1.437530,-0.140939,1.027880,-0.325757,1.422220,-0.000008 +-1.435210,-0.140718,1.026230,-0.325244,1.419920,-0.000008 +-1.432880,-0.140498,1.024580,-0.324732,1.417630,-0.000008 +-1.430560,-0.140277,1.022930,-0.324219,1.415340,-0.000008 +-1.428230,-0.140056,1.021280,-0.323706,1.413050,-0.000008 +-1.425900,-0.139836,1.019630,-0.323193,1.410760,-0.000008 +-1.423580,-0.139615,1.017980,-0.322680,1.408470,-0.000008 +-1.421250,-0.139394,1.016330,-0.322167,1.406180,-0.000008 +-1.418930,-0.139174,1.014680,-0.321654,1.403890,-0.000008 +-1.416600,-0.138953,1.013030,-0.321141,1.401600,-0.000008 +-1.414270,-0.138733,1.011370,-0.320629,1.399310,-0.000008 +-1.411950,-0.138512,1.009720,-0.320116,1.397020,-0.000008 +-1.409620,-0.138291,1.008070,-0.319603,1.394730,-0.000008 +-1.407300,-0.138071,1.006420,-0.319090,1.392440,-0.000008 +-1.404970,-0.137850,1.004770,-0.318577,1.390150,-0.000008 +-1.402650,-0.137629,1.003120,-0.318064,1.387850,-0.000008 +-1.400320,-0.137409,1.001470,-0.317551,1.385560,-0.000008 +-1.397990,-0.137188,0.999822,-0.317038,1.383270,-0.000008 +-1.395670,-0.136967,0.998171,-0.316526,1.380980,-0.000008 +-1.393340,-0.136747,0.996521,-0.316013,1.378690,-0.000008 +-1.391020,-0.136526,0.994870,-0.315500,1.376400,-0.000008 +-1.388690,-0.136306,0.993220,-0.314987,1.374110,-0.000008 +-1.386360,-0.136085,0.991570,-0.314474,1.371820,-0.000008 +-1.384040,-0.135864,0.989919,-0.313961,1.369530,-0.000008 +-1.381710,-0.135644,0.988269,-0.313448,1.367240,-0.000008 +-1.379390,-0.135423,0.986618,-0.312935,1.364950,-0.000008 +-1.377060,-0.135202,0.984968,-0.312423,1.362660,-0.000008 +-1.374740,-0.134982,0.983317,-0.311910,1.360370,-0.000008 +-1.372410,-0.134761,0.981667,-0.311397,1.358080,-0.000008 +-1.370080,-0.134541,0.980016,-0.310884,1.355780,-0.000008 +-1.367760,-0.134320,0.978366,-0.310371,1.353490,-0.000008 +-1.365430,-0.134099,0.976716,-0.309858,1.351200,-0.000008 +-1.363110,-0.133879,0.975065,-0.309345,1.348910,-0.000008 +-1.360780,-0.133658,0.973415,-0.308832,1.346620,-0.000008 +-1.358450,-0.133437,0.971764,-0.308320,1.344330,-0.000008 +-1.356130,-0.133217,0.970114,-0.307807,1.342040,-0.000008 +-1.353800,-0.132996,0.968463,-0.307294,1.339750,-0.000008 +-1.351480,-0.132775,0.966813,-0.306781,1.337460,-0.000008 +-1.349150,-0.132555,0.965162,-0.306268,1.335170,-0.000008 +-1.346830,-0.132334,0.963512,-0.305755,1.332880,-0.000008 +-1.344500,-0.132114,0.961862,-0.305242,1.330590,-0.000008 +-1.342170,-0.131893,0.960211,-0.304729,1.328300,-0.000008 +-1.339850,-0.131672,0.958561,-0.304217,1.326010,-0.000008 +-1.337520,-0.131452,0.956910,-0.303704,1.323710,-0.000008 +-1.335200,-0.131231,0.955260,-0.303191,1.321420,-0.000008 +-1.332870,-0.131010,0.953609,-0.302678,1.319130,-0.000008 +-1.330540,-0.130790,0.951959,-0.302165,1.316840,-0.000008 +-1.328220,-0.130569,0.950308,-0.301652,1.314550,-0.000008 +-1.325890,-0.130349,0.948658,-0.301139,1.312260,-0.000008 +-1.323570,-0.130128,0.947008,-0.300626,1.309970,-0.000008 +-1.321240,-0.129907,0.945357,-0.300114,1.307680,-0.000008 +-1.318920,-0.129687,0.943707,-0.299601,1.305390,-0.000008 +-1.316590,-0.129466,0.942056,-0.299088,1.303100,-0.000008 +-1.314260,-0.129245,0.940406,-0.298575,1.300810,-0.000008 +-1.311940,-0.129025,0.938755,-0.298062,1.298520,-0.000008 +-1.309610,-0.128804,0.937105,-0.297549,1.296230,-0.000008 +-1.307290,-0.128583,0.935454,-0.297036,1.293940,-0.000008 +-1.304960,-0.128363,0.933804,-0.296523,1.291640,-0.000008 +-1.302630,-0.128142,0.932154,-0.296011,1.289350,-0.000008 +-1.300310,-0.127922,0.930503,-0.295498,1.287060,-0.000008 +-1.297980,-0.127701,0.928853,-0.294985,1.284770,-0.000008 +-1.295660,-0.127480,0.927202,-0.294472,1.282480,-0.000008 +-1.293330,-0.127260,0.925552,-0.293959,1.280190,-0.000008 +-1.291010,-0.127039,0.923901,-0.293446,1.277900,-0.000008 +-1.288680,-0.126818,0.922251,-0.292933,1.275610,-0.000008 +-1.286350,-0.126598,0.920600,-0.292420,1.273320,-0.000008 +-1.284030,-0.126377,0.918950,-0.291908,1.271030,-0.000008 +-1.281700,-0.126157,0.917300,-0.291395,1.268740,-0.000008 +-1.279380,-0.125936,0.915649,-0.290882,1.266450,-0.000008 +-1.277050,-0.125715,0.913999,-0.290369,1.264160,-0.000008 +-1.274720,-0.125495,0.912348,-0.289856,1.261870,-0.000008 +-1.272400,-0.125274,0.910698,-0.289343,1.259570,-0.000008 +-1.270070,-0.125053,0.909047,-0.288830,1.257280,-0.000008 +-1.267750,-0.124833,0.907397,-0.288317,1.254990,-0.000008 +-1.265420,-0.124612,0.905747,-0.287805,1.252700,-0.000008 +-1.263100,-0.124392,0.904096,-0.287292,1.250410,-0.000008 +-1.260770,-0.124171,0.902446,-0.286779,1.248120,-0.000008 +-1.258440,-0.123950,0.900795,-0.286266,1.245830,-0.000008 +-1.256120,-0.123730,0.899145,-0.285753,1.243540,-0.000008 +-1.253790,-0.123509,0.897494,-0.285240,1.241250,-0.000008 +-1.251470,-0.123288,0.895844,-0.284727,1.238960,-0.000008 +-1.249140,-0.123068,0.894193,-0.284214,1.236670,-0.000008 +-1.246810,-0.122847,0.892543,-0.283702,1.234380,-0.000008 +-1.244490,-0.122626,0.890893,-0.283189,1.232090,-0.000008 +-1.242160,-0.122406,0.889242,-0.282676,1.229800,-0.000008 +-1.239840,-0.122185,0.887592,-0.282163,1.227500,-0.000008 +-1.237510,-0.121965,0.885941,-0.281650,1.225210,-0.000008 +-1.235180,-0.121744,0.884291,-0.281137,1.222920,-0.000008 +-1.232860,-0.121523,0.882640,-0.280624,1.220630,-0.000008 +-1.230530,-0.121303,0.880990,-0.280111,1.218340,-0.000008 +-1.228210,-0.121082,0.879339,-0.279599,1.216050,-0.000008 +-1.225880,-0.120861,0.877689,-0.279086,1.213760,-0.000008 +-1.223560,-0.120641,0.876039,-0.278573,1.211470,-0.000008 +-1.221230,-0.120420,0.874388,-0.278060,1.209180,-0.000008 +-1.218900,-0.120200,0.872738,-0.277547,1.206890,-0.000008 +-1.216580,-0.119979,0.871087,-0.277034,1.204600,-0.000008 +-1.214250,-0.119758,0.869437,-0.276521,1.202310,-0.000008 +-1.211930,-0.119538,0.867786,-0.276008,1.200020,-0.000008 +-1.209600,-0.119317,0.866136,-0.275496,1.197730,-0.000008 +-1.207270,-0.119096,0.864485,-0.274983,1.195440,-0.000008 +-1.204950,-0.118876,0.862835,-0.274470,1.193140,-0.000008 +-1.202620,-0.118655,0.861185,-0.273957,1.190850,-0.000008 +-1.200300,-0.118434,0.859534,-0.273444,1.188560,-0.000008 +-1.197970,-0.118214,0.857884,-0.272931,1.186270,-0.000008 +-1.195650,-0.117993,0.856233,-0.272418,1.183980,-0.000008 +-1.193320,-0.117773,0.854583,-0.271905,1.181690,-0.000008 +-1.190990,-0.117552,0.852932,-0.271393,1.179400,-0.000008 +-1.188670,-0.117331,0.851282,-0.270880,1.177110,-0.000008 +-1.186340,-0.117111,0.849631,-0.270367,1.174820,-0.000008 +-1.184020,-0.116890,0.847981,-0.269854,1.172530,-0.000008 +-1.181690,-0.116669,0.846331,-0.269341,1.170240,-0.000008 +-1.179360,-0.116449,0.844680,-0.268828,1.167950,-0.000008 +-1.177040,-0.116228,0.843030,-0.268315,1.165660,-0.000008 +-1.174710,-0.116008,0.841379,-0.267802,1.163370,-0.000008 +-1.172390,-0.115787,0.839729,-0.267290,1.161070,-0.000008 +-1.170060,-0.115566,0.838078,-0.266777,1.158780,-0.000008 +-1.167740,-0.115346,0.836428,-0.266264,1.156490,-0.000008 +-1.165410,-0.115125,0.834777,-0.265751,1.154200,-0.000008 +-1.163080,-0.114904,0.833127,-0.265238,1.151910,-0.000008 +-1.160760,-0.114684,0.831477,-0.264725,1.149620,-0.000008 +-1.158430,-0.114463,0.829826,-0.264212,1.147330,-0.000008 +-1.156110,-0.114243,0.828176,-0.263699,1.145040,-0.000008 +-1.153780,-0.114022,0.826525,-0.263187,1.142750,-0.000008 +-1.151450,-0.113801,0.824875,-0.262674,1.140460,-0.000008 +-1.149130,-0.113581,0.823224,-0.262161,1.138170,-0.000008 +-1.146800,-0.113360,0.821574,-0.261648,1.135880,-0.000008 +-1.144480,-0.113139,0.819924,-0.261135,1.133590,-0.000008 +-1.142150,-0.112919,0.818273,-0.260622,1.131300,-0.000008 +-1.139830,-0.112698,0.816623,-0.260109,1.129000,-0.000008 +-1.137500,-0.112477,0.814972,-0.259596,1.126710,-0.000008 +-1.135170,-0.112257,0.813322,-0.259084,1.124420,-0.000008 +-1.132850,-0.112036,0.811671,-0.258571,1.122130,-0.000008 +-1.130520,-0.111816,0.810021,-0.258058,1.119840,-0.000008 +-1.128200,-0.111595,0.808370,-0.257545,1.117550,-0.000008 +-1.125870,-0.111374,0.806720,-0.257032,1.115260,-0.000008 +-1.123540,-0.111154,0.805070,-0.256519,1.112970,-0.000008 +-1.121220,-0.110933,0.803419,-0.256006,1.110680,-0.000008 +-1.118890,-0.110712,0.801769,-0.255493,1.108390,-0.000008 +-1.116570,-0.110492,0.800118,-0.254981,1.106100,-0.000008 +-1.114240,-0.110271,0.798468,-0.254468,1.103810,-0.000008 +-1.111920,-0.110051,0.796817,-0.253955,1.101520,-0.000008 +-1.109590,-0.109830,0.795167,-0.253442,1.099230,-0.000008 +-1.107260,-0.109609,0.793516,-0.252929,1.096930,-0.000008 +-1.104940,-0.109389,0.791866,-0.252416,1.094640,-0.000008 +-1.102610,-0.109168,0.790216,-0.251903,1.092350,-0.000008 +-1.100290,-0.108947,0.788565,-0.251390,1.090060,-0.000008 +-1.097960,-0.108727,0.786915,-0.250878,1.087770,-0.000008 +-1.095630,-0.108506,0.785264,-0.250365,1.085480,-0.000008 +-1.093310,-0.108285,0.783614,-0.249852,1.083190,-0.000008 +-1.090980,-0.108065,0.781963,-0.249339,1.080900,-0.000008 +-1.088660,-0.107844,0.780313,-0.248826,1.078610,-0.000008 +-1.086330,-0.107624,0.778662,-0.248313,1.076320,-0.000008 +-1.084010,-0.107403,0.777012,-0.247800,1.074030,-0.000008 +-1.081680,-0.107182,0.775362,-0.247287,1.071740,-0.000008 +-1.079350,-0.106962,0.773711,-0.246775,1.069450,-0.000008 +-1.077030,-0.106741,0.772061,-0.246262,1.067160,-0.000008 +-1.074700,-0.106520,0.770410,-0.245749,1.064860,-0.000008 +-1.072380,-0.106300,0.768760,-0.245236,1.062570,-0.000008 +-1.070050,-0.106079,0.767109,-0.244723,1.060280,-0.000008 +-1.067720,-0.105859,0.765459,-0.244210,1.057990,-0.000008 +-1.065400,-0.105638,0.763808,-0.243697,1.055700,-0.000008 +-1.063070,-0.105417,0.762158,-0.243184,1.053410,-0.000008 +-1.060750,-0.105197,0.760508,-0.242672,1.051120,-0.000008 +-1.058420,-0.104976,0.758857,-0.242159,1.048830,-0.000008 +-1.056100,-0.104755,0.757207,-0.241646,1.046540,-0.000008 +-1.053770,-0.104535,0.755556,-0.241133,1.044250,-0.000008 +-1.051440,-0.104314,0.753906,-0.240620,1.041960,-0.000008 +-1.049120,-0.104093,0.752255,-0.240107,1.039670,-0.000008 +-1.046790,-0.103873,0.750605,-0.239594,1.037380,-0.000008 +-1.044470,-0.103652,0.748954,-0.239081,1.035090,-0.000008 +-1.042140,-0.103432,0.747304,-0.238569,1.032790,-0.000008 +-1.039810,-0.103211,0.745654,-0.238056,1.030500,-0.000008 +-1.037490,-0.102990,0.744003,-0.237543,1.028210,-0.000008 +-1.035160,-0.102770,0.742353,-0.237030,1.025920,-0.000008 +-1.032840,-0.102549,0.740702,-0.236517,1.023630,-0.000008 +-1.030510,-0.102328,0.739052,-0.236004,1.021340,-0.000008 +-1.028190,-0.102108,0.737401,-0.235491,1.019050,-0.000008 +-1.025860,-0.101887,0.735751,-0.234978,1.016760,-0.000008 +-1.023530,-0.101667,0.734100,-0.234466,1.014470,-0.000008 +-1.021210,-0.101446,0.732450,-0.233953,1.012180,-0.000008 +-1.018880,-0.101225,0.730800,-0.233440,1.009890,-0.000008 +-1.016560,-0.101005,0.729149,-0.232927,1.007600,-0.000008 +-1.014230,-0.100784,0.727499,-0.232414,1.005310,-0.000008 +-1.011900,-0.100563,0.725848,-0.231901,1.003020,-0.000008 +-1.009580,-0.100343,0.724198,-0.231388,1.000720,-0.000008 +-1.007250,-0.100122,0.722547,-0.230876,0.998434,-0.000008 +-1.004930,-0.099902,0.720897,-0.230363,0.996143,-0.000008 +-1.002600,-0.099681,0.719247,-0.229850,0.993853,-0.000008 +-1.000270,-0.099460,0.717596,-0.229337,0.991562,-0.000008 +-0.997949,-0.099240,0.715946,-0.228824,0.989271,-0.000008 +-0.995623,-0.099019,0.714295,-0.228311,0.986981,-0.000008 +-0.993297,-0.098798,0.712645,-0.227798,0.984690,-0.000008 +-0.990972,-0.098578,0.710994,-0.227285,0.982399,-0.000008 +-0.988646,-0.098357,0.709344,-0.226773,0.980108,-0.000008 +-0.986320,-0.098137,0.707693,-0.226260,0.977818,-0.000008 +-0.983994,-0.097916,0.706043,-0.225747,0.975527,-0.000008 +-0.981668,-0.097695,0.704393,-0.225234,0.973236,-0.000008 +-0.979342,-0.097475,0.702742,-0.224721,0.970946,-0.000008 +-0.977017,-0.097254,0.701092,-0.224208,0.968655,-0.000008 +-0.974691,-0.097033,0.699441,-0.223695,0.966364,-0.000008 +-0.972365,-0.096813,0.697791,-0.223182,0.964074,-0.000008 +-0.970039,-0.096592,0.696140,-0.222670,0.961783,-0.000008 +-0.967713,-0.096371,0.694490,-0.222157,0.959492,-0.000008 +-0.965387,-0.096151,0.692839,-0.221644,0.957201,-0.000008 +-0.963062,-0.095930,0.691189,-0.221131,0.954911,-0.000008 +-0.960736,-0.095710,0.689539,-0.220618,0.952620,-0.000008 +-0.958410,-0.095489,0.687888,-0.220105,0.950329,-0.000008 +-0.956084,-0.095268,0.686238,-0.219592,0.948039,-0.000008 +-0.953758,-0.095048,0.684587,-0.219079,0.945748,-0.000008 +-0.951432,-0.094827,0.682937,-0.218567,0.943457,-0.000008 +-0.949106,-0.094606,0.681286,-0.218054,0.941166,-0.000008 +-0.946781,-0.094386,0.679636,-0.217541,0.938876,-0.000008 +-0.944455,-0.094165,0.677985,-0.217028,0.936585,-0.000008 +-0.942129,-0.093945,0.676335,-0.216515,0.934294,-0.000008 +-0.939803,-0.093724,0.674685,-0.216002,0.932004,-0.000008 +-0.937477,-0.093503,0.673034,-0.215489,0.929713,-0.000008 +-0.935151,-0.093283,0.671384,-0.214976,0.927422,-0.000008 +-0.932826,-0.093062,0.669733,-0.214464,0.925132,-0.000008 +-0.930500,-0.092841,0.668083,-0.213951,0.922841,-0.000008 +-0.928174,-0.092621,0.666432,-0.213438,0.920550,-0.000008 +-0.925848,-0.092400,0.664782,-0.212925,0.918259,-0.000008 +-0.923522,-0.092179,0.663131,-0.212412,0.915969,-0.000008 +-0.921196,-0.091959,0.661481,-0.211899,0.913678,-0.000008 +-0.918871,-0.091738,0.659831,-0.211386,0.911387,-0.000008 +-0.916545,-0.091518,0.658180,-0.210873,0.909097,-0.000008 +-0.914219,-0.091297,0.656530,-0.210361,0.906806,-0.000008 +-0.911893,-0.091076,0.654879,-0.209848,0.904515,-0.000008 +-0.909567,-0.090856,0.653229,-0.209335,0.902224,-0.000008 +-0.907241,-0.090635,0.651578,-0.208822,0.899934,-0.000008 +-0.904915,-0.090414,0.649928,-0.208309,0.897643,-0.000008 +-0.902590,-0.090194,0.648277,-0.207796,0.895352,-0.000008 +-0.900264,-0.089973,0.646627,-0.207283,0.893062,-0.000008 +-0.897938,-0.089752,0.644977,-0.206770,0.890771,-0.000008 +-0.895612,-0.089532,0.643326,-0.206258,0.888480,-0.000008 +-0.893286,-0.089311,0.641676,-0.205745,0.886189,-0.000008 +-0.890960,-0.089091,0.640025,-0.205232,0.883899,-0.000008 +-0.888635,-0.088870,0.638375,-0.204719,0.881608,-0.000008 +-0.886309,-0.088649,0.636724,-0.204206,0.879317,-0.000008 +-0.883983,-0.088429,0.635074,-0.203693,0.877027,-0.000008 +-0.881657,-0.088208,0.633423,-0.203180,0.874736,-0.000008 +-0.879331,-0.087987,0.631773,-0.202667,0.872445,-0.000008 +-0.877005,-0.087767,0.630123,-0.202155,0.870155,-0.000008 +-0.874680,-0.087546,0.628472,-0.201642,0.867864,-0.000008 +-0.872354,-0.087326,0.626822,-0.201129,0.865573,-0.000008 +-0.870028,-0.087105,0.625171,-0.200616,0.863282,-0.000008 +-0.867702,-0.086884,0.623521,-0.200103,0.860992,-0.000008 +-0.865376,-0.086664,0.621870,-0.199590,0.858701,-0.000008 +-0.863050,-0.086443,0.620220,-0.199077,0.856410,-0.000008 +-0.860724,-0.086222,0.618570,-0.198564,0.854120,-0.000008 +-0.858399,-0.086002,0.616919,-0.198052,0.851829,-0.000008 +-0.856073,-0.085781,0.615269,-0.197539,0.849538,-0.000008 +-0.853747,-0.085560,0.613618,-0.197026,0.847247,-0.000008 +-0.851421,-0.085340,0.611968,-0.196513,0.844957,-0.000008 +-0.849095,-0.085119,0.610317,-0.196000,0.842666,-0.000008 +-0.846769,-0.084899,0.608667,-0.195487,0.840375,-0.000008 +-0.844444,-0.084678,0.607016,-0.194974,0.838085,-0.000008 +-0.842118,-0.084457,0.605366,-0.194461,0.835794,-0.000008 +-0.839792,-0.084237,0.603716,-0.193949,0.833503,-0.000008 +-0.837466,-0.084016,0.602065,-0.193436,0.831212,-0.000008 +-0.835140,-0.083795,0.600415,-0.192923,0.828922,-0.000008 +-0.832814,-0.083575,0.598764,-0.192410,0.826631,-0.000008 +-0.830489,-0.083354,0.597114,-0.191897,0.824340,-0.000008 +-0.828163,-0.083134,0.595463,-0.191384,0.822050,-0.000008 +-0.825837,-0.082913,0.593813,-0.190871,0.819759,-0.000008 +-0.823511,-0.082692,0.592162,-0.190358,0.817468,-0.000008 +-0.821185,-0.082472,0.590512,-0.189846,0.815178,-0.000008 +-0.818859,-0.082251,0.588862,-0.189333,0.812887,-0.000008 +-0.816533,-0.082030,0.587211,-0.188820,0.810596,-0.000008 +-0.814208,-0.081810,0.585561,-0.188307,0.808305,-0.000008 +-0.811882,-0.081589,0.583910,-0.187794,0.806015,-0.000008 +-0.809556,-0.081368,0.582260,-0.187281,0.803724,-0.000008 +-0.807230,-0.081148,0.580609,-0.186768,0.801433,-0.000008 +-0.804904,-0.080927,0.578959,-0.186255,0.799143,-0.000008 +-0.802578,-0.080707,0.577308,-0.185743,0.796852,-0.000008 +-0.800253,-0.080486,0.575658,-0.185230,0.794561,-0.000008 +-0.797927,-0.080265,0.574008,-0.184717,0.792270,-0.000008 +-0.795601,-0.080045,0.572357,-0.184204,0.789980,-0.000008 +-0.793275,-0.079824,0.570707,-0.183691,0.787689,-0.000008 +-0.790949,-0.079603,0.569056,-0.183178,0.785398,-0.000008 +-0.788623,-0.079383,0.567406,-0.182665,0.783108,-0.000008 +-0.786298,-0.079162,0.565755,-0.182152,0.780817,-0.000008 +-0.783972,-0.078942,0.564105,-0.181640,0.778526,-0.000008 +-0.781646,-0.078721,0.562454,-0.181127,0.776236,-0.000008 +-0.779320,-0.078500,0.560804,-0.180614,0.773945,-0.000008 +-0.776994,-0.078280,0.559154,-0.180101,0.771654,-0.000008 +-0.774668,-0.078059,0.557503,-0.179588,0.769363,-0.000008 +-0.772342,-0.077838,0.555853,-0.179075,0.767073,-0.000008 +-0.770017,-0.077618,0.554202,-0.178562,0.764782,-0.000008 +-0.767691,-0.077397,0.552552,-0.178049,0.762491,-0.000008 +-0.765365,-0.077176,0.550901,-0.177537,0.760201,-0.000008 +-0.763039,-0.076956,0.549251,-0.177024,0.757910,-0.000008 +-0.760713,-0.076735,0.547600,-0.176511,0.755619,-0.000008 +-0.758387,-0.076515,0.545950,-0.175998,0.753328,-0.000008 +-0.756062,-0.076294,0.544300,-0.175485,0.751038,-0.000008 +-0.753736,-0.076073,0.542649,-0.174972,0.748747,-0.000008 +-0.751410,-0.075853,0.540999,-0.174459,0.746456,-0.000008 +-0.749084,-0.075632,0.539348,-0.173946,0.744166,-0.000008 +-0.746758,-0.075412,0.537698,-0.173434,0.741875,-0.000008 +-0.744432,-0.075191,0.536047,-0.172921,0.739584,-0.000008 +-0.742107,-0.074970,0.534397,-0.172408,0.737293,-0.000008 +-0.739781,-0.074750,0.532746,-0.171895,0.735003,-0.000008 +-0.737455,-0.074529,0.531096,-0.171382,0.732712,-0.000008 +-0.735129,-0.074308,0.529446,-0.170869,0.730421,-0.000008 +-0.732803,-0.074088,0.527795,-0.170356,0.728131,-0.000008 +-0.730477,-0.073867,0.526145,-0.169843,0.725840,-0.000008 +-0.728151,-0.073647,0.524494,-0.169331,0.723549,-0.000008 +-0.725826,-0.073426,0.522844,-0.168818,0.721259,-0.000008 +-0.723500,-0.073205,0.521193,-0.168305,0.718968,-0.000008 +-0.721174,-0.072985,0.519543,-0.167792,0.716677,-0.000008 +-0.718848,-0.072764,0.517893,-0.167279,0.714386,-0.000008 +-0.716522,-0.072543,0.516242,-0.166766,0.712096,-0.000008 +-0.714196,-0.072323,0.514592,-0.166253,0.709805,-0.000008 +-0.711871,-0.072102,0.512941,-0.165740,0.707514,-0.000008 +-0.709545,-0.071881,0.511291,-0.165228,0.705224,-0.000008 +-0.707219,-0.071661,0.509640,-0.164715,0.702933,-0.000008 +-0.704893,-0.071440,0.507990,-0.164202,0.700642,-0.000008 +-0.702567,-0.071220,0.506339,-0.163689,0.698351,-0.000008 +-0.700241,-0.070999,0.504689,-0.163176,0.696061,-0.000008 +-0.697916,-0.070778,0.503039,-0.162663,0.693770,-0.000008 +-0.695590,-0.070558,0.501388,-0.162150,0.691479,-0.000008 +-0.693264,-0.070337,0.499738,-0.161637,0.689189,-0.000008 +-0.690938,-0.070116,0.498087,-0.161125,0.686898,-0.000008 +-0.688612,-0.069896,0.496437,-0.160612,0.684607,-0.000008 +-0.686286,-0.069675,0.494786,-0.160099,0.682316,-0.000008 +-0.683961,-0.069455,0.493136,-0.159586,0.680026,-0.000008 +-0.681635,-0.069234,0.491485,-0.159073,0.677735,-0.000008 +-0.679309,-0.069013,0.489835,-0.158560,0.675444,-0.000008 +-0.676983,-0.068793,0.488185,-0.158047,0.673154,-0.000008 +-0.674657,-0.068572,0.486534,-0.157534,0.670863,-0.000008 +-0.672331,-0.068351,0.484884,-0.157022,0.668572,-0.000008 +-0.670005,-0.068131,0.483233,-0.156509,0.666282,-0.000008 +-0.667680,-0.067910,0.481583,-0.155996,0.663991,-0.000008 +-0.665354,-0.067689,0.479932,-0.155483,0.661700,-0.000008 +-0.663028,-0.067469,0.478282,-0.154970,0.659409,-0.000008 +-0.660702,-0.067248,0.476631,-0.154457,0.657119,-0.000008 +-0.658376,-0.067028,0.474981,-0.153944,0.654828,-0.000008 +-0.656050,-0.066807,0.473331,-0.153431,0.652537,-0.000008 +-0.653725,-0.066586,0.471680,-0.152919,0.650247,-0.000008 +-0.651399,-0.066366,0.470030,-0.152406,0.647956,-0.000008 +-0.649073,-0.066145,0.468379,-0.151893,0.645665,-0.000008 +-0.646747,-0.065924,0.466729,-0.151380,0.643374,-0.000008 +-0.644421,-0.065704,0.465078,-0.150867,0.641084,-0.000008 +-0.642095,-0.065483,0.463428,-0.150354,0.638793,-0.000008 +-0.639770,-0.065263,0.461777,-0.149841,0.636502,-0.000008 +-0.637444,-0.065042,0.460127,-0.149328,0.634212,-0.000008 +-0.635118,-0.064821,0.458477,-0.148816,0.631921,-0.000008 +-0.632792,-0.064601,0.456826,-0.148303,0.629630,-0.000008 +-0.630466,-0.064380,0.455176,-0.147790,0.627340,-0.000008 +-0.628140,-0.064159,0.453525,-0.147277,0.625049,-0.000008 +-0.625814,-0.063939,0.451875,-0.146764,0.622758,-0.000008 +-0.623489,-0.063718,0.450224,-0.146251,0.620467,-0.000008 +-0.621163,-0.063497,0.448574,-0.145738,0.618177,-0.000008 +-0.618837,-0.063277,0.446923,-0.145225,0.615886,-0.000008 +-0.616511,-0.063056,0.445273,-0.144713,0.613595,-0.000008 +-0.614185,-0.062836,0.443623,-0.144200,0.611305,-0.000008 +-0.611859,-0.062615,0.441972,-0.143687,0.609014,-0.000008 +-0.609534,-0.062394,0.440322,-0.143174,0.606723,-0.000008 +-0.607208,-0.062174,0.438671,-0.142661,0.604432,-0.000008 +-0.604882,-0.061953,0.437021,-0.142148,0.602142,-0.000008 +-0.602556,-0.061732,0.435370,-0.141635,0.599851,-0.000008 +-0.600230,-0.061512,0.433720,-0.141122,0.597560,-0.000008 +-0.597904,-0.061291,0.432070,-0.140610,0.595270,-0.000008 +-0.595579,-0.061071,0.430419,-0.140097,0.592979,-0.000008 +-0.593253,-0.060850,0.428769,-0.139584,0.590688,-0.000008 +-0.590927,-0.060629,0.427118,-0.139071,0.588397,-0.000008 +-0.588601,-0.060409,0.425468,-0.138558,0.586107,-0.000008 +-0.586275,-0.060188,0.423817,-0.138045,0.583816,-0.000008 +-0.583949,-0.059967,0.422167,-0.137532,0.581525,-0.000008 +-0.581623,-0.059747,0.420516,-0.137019,0.579235,-0.000008 +-0.579298,-0.059526,0.418866,-0.136507,0.576944,-0.000008 +-0.576972,-0.059305,0.417216,-0.135994,0.574653,-0.000008 +-0.574646,-0.059085,0.415565,-0.135481,0.572363,-0.000008 +-0.572320,-0.058864,0.413915,-0.134968,0.570072,-0.000008 +-0.569994,-0.058644,0.412264,-0.134455,0.567781,-0.000008 +-0.567668,-0.058423,0.410614,-0.133942,0.565490,-0.000008 +-0.565343,-0.058202,0.408963,-0.133429,0.563200,-0.000008 +-0.563017,-0.057982,0.407313,-0.132916,0.560909,-0.000008 +-0.560691,-0.057761,0.405662,-0.132404,0.558618,-0.000008 +-0.558365,-0.057540,0.404012,-0.131891,0.556328,-0.000008 +-0.556039,-0.057320,0.402362,-0.131378,0.554037,-0.000008 +-0.553713,-0.057099,0.400711,-0.130865,0.551746,-0.000008 +-0.551388,-0.056878,0.399061,-0.130352,0.549455,-0.000008 +-0.549062,-0.056658,0.397410,-0.129839,0.547165,-0.000008 +-0.546736,-0.056437,0.395760,-0.129326,0.544874,-0.000008 +-0.544410,-0.056217,0.394109,-0.128814,0.542583,-0.000008 +-0.542084,-0.055996,0.392459,-0.128301,0.540293,-0.000008 +-0.539758,-0.055775,0.390808,-0.127788,0.538002,-0.000008 +-0.537432,-0.055555,0.389158,-0.127275,0.535711,-0.000008 +-0.535107,-0.055334,0.387508,-0.126762,0.533420,-0.000008 +-0.532781,-0.055114,0.385857,-0.126249,0.531130,-0.000008 +-0.530455,-0.054893,0.384207,-0.125736,0.528839,-0.000008 +-0.528129,-0.054672,0.382556,-0.125223,0.526548,-0.000008 +-0.525803,-0.054452,0.380906,-0.124711,0.524258,-0.000008 +-0.523477,-0.054231,0.379255,-0.124198,0.521967,-0.000008 +-0.521152,-0.054010,0.377605,-0.123685,0.519676,-0.000008 +-0.518826,-0.053790,0.375954,-0.123172,0.517386,-0.000008 +-0.516500,-0.053569,0.374304,-0.122659,0.515095,-0.000008 +-0.514174,-0.053348,0.372654,-0.122146,0.512804,-0.000008 +-0.511848,-0.053128,0.371003,-0.121633,0.510513,-0.000008 +-0.509522,-0.052907,0.369353,-0.121120,0.508223,-0.000008 +-0.507197,-0.052686,0.367702,-0.120608,0.505932,-0.000008 +-0.504871,-0.052466,0.366052,-0.120095,0.503641,-0.000008 +-0.502545,-0.052245,0.364401,-0.119582,0.501351,-0.000008 +-0.500219,-0.052025,0.362751,-0.119069,0.499060,-0.000008 +-0.497893,-0.051804,0.361100,-0.118556,0.496769,-0.000008 +-0.495567,-0.051583,0.359450,-0.118043,0.494478,-0.000008 +-0.493241,-0.051363,0.357800,-0.117530,0.492188,-0.000008 +-0.490916,-0.051142,0.356149,-0.117017,0.489897,-0.000008 +-0.488590,-0.050922,0.354499,-0.116505,0.487606,-0.000008 +-0.486264,-0.050701,0.352848,-0.115992,0.485316,-0.000008 +-0.483938,-0.050480,0.351198,-0.115479,0.483025,-0.000008 +-0.481612,-0.050260,0.349547,-0.114966,0.480734,-0.000008 +-0.479286,-0.050039,0.347897,-0.114453,0.478444,-0.000008 +-0.476961,-0.049818,0.346246,-0.113940,0.476153,-0.000008 +-0.474635,-0.049598,0.344596,-0.113427,0.473862,-0.000008 +-0.472309,-0.049377,0.342946,-0.112914,0.471571,-0.000008 +-0.469983,-0.049156,0.341295,-0.112402,0.469281,-0.000008 +-0.467657,-0.048936,0.339645,-0.111889,0.466990,-0.000008 +-0.465331,-0.048715,0.337994,-0.111376,0.464699,-0.000008 +-0.463006,-0.048495,0.336344,-0.110863,0.462409,-0.000008 +-0.460680,-0.048274,0.334693,-0.110350,0.460118,-0.000008 +-0.458354,-0.048053,0.333043,-0.109837,0.457827,-0.000008 +-0.456028,-0.047833,0.331393,-0.109324,0.455536,-0.000008 +-0.453702,-0.047612,0.329742,-0.108811,0.453246,-0.000008 +-0.451376,-0.047391,0.328092,-0.108299,0.450955,-0.000008 +-0.449051,-0.047171,0.326441,-0.107786,0.448664,-0.000008 +-0.446725,-0.046950,0.324791,-0.107273,0.446374,-0.000008 +-0.444399,-0.046730,0.323140,-0.106760,0.444083,-0.000008 +-0.442073,-0.046509,0.321490,-0.106247,0.441792,-0.000008 +-0.439747,-0.046288,0.319839,-0.105734,0.439501,-0.000008 +-0.437421,-0.046068,0.318189,-0.105221,0.437211,-0.000008 +-0.435095,-0.045847,0.316539,-0.104708,0.434920,-0.000008 +-0.432770,-0.045626,0.314888,-0.104196,0.432629,-0.000008 +-0.430444,-0.045406,0.313238,-0.103683,0.430339,-0.000008 +-0.428118,-0.045185,0.311587,-0.103170,0.428048,-0.000008 +-0.425792,-0.044964,0.309937,-0.102657,0.425757,-0.000008 +-0.423466,-0.044744,0.308286,-0.102144,0.423467,-0.000008 +-0.421140,-0.044523,0.306636,-0.101631,0.421176,-0.000008 +-0.418815,-0.044303,0.304985,-0.101118,0.418885,-0.000008 +-0.416489,-0.044082,0.303335,-0.100605,0.416594,-0.000008 +-0.414163,-0.043861,0.301685,-0.100093,0.414304,-0.000008 +-0.411837,-0.043641,0.300034,-0.099580,0.412013,-0.000008 +-0.409511,-0.043420,0.298384,-0.099067,0.409722,-0.000008 +-0.407185,-0.043199,0.296733,-0.098554,0.407432,-0.000008 +-0.404860,-0.042979,0.295083,-0.098041,0.405141,-0.000008 +-0.402534,-0.042758,0.293432,-0.097528,0.402850,-0.000008 +-0.400208,-0.042537,0.291782,-0.097015,0.400559,-0.000008 +-0.397882,-0.042317,0.290131,-0.096502,0.398269,-0.000008 +-0.395556,-0.042096,0.288481,-0.095990,0.395978,-0.000008 +-0.393230,-0.041876,0.286831,-0.095477,0.393687,-0.000008 +-0.390904,-0.041655,0.285180,-0.094964,0.391397,-0.000008 +-0.388579,-0.041434,0.283530,-0.094451,0.389106,-0.000008 +-0.386253,-0.041214,0.281879,-0.093938,0.386815,-0.000008 +-0.383927,-0.040993,0.280229,-0.093425,0.384524,-0.000008 +-0.381601,-0.040773,0.278578,-0.092912,0.382234,-0.000008 +-0.379275,-0.040552,0.276928,-0.092399,0.379943,-0.000008 +-0.376949,-0.040331,0.275277,-0.091886,0.377652,-0.000008 +-0.374624,-0.040111,0.273627,-0.091374,0.375362,-0.000008 +-0.372298,-0.039890,0.271977,-0.090861,0.373071,-0.000008 +-0.369972,-0.039669,0.270326,-0.090348,0.370780,-0.000008 +-0.367646,-0.039449,0.268676,-0.089835,0.368490,-0.000008 +-0.365320,-0.039228,0.267025,-0.089322,0.366199,-0.000008 +-0.362994,-0.039007,0.265375,-0.088809,0.363908,-0.000008 +-0.360669,-0.038787,0.263724,-0.088296,0.361617,-0.000008 +-0.358343,-0.038566,0.262074,-0.087784,0.359327,-0.000008 +-0.356017,-0.038345,0.260423,-0.087271,0.357036,-0.000008 +-0.353691,-0.038125,0.258773,-0.086758,0.354745,-0.000008 +-0.351365,-0.037904,0.257123,-0.086245,0.352455,-0.000008 +-0.349039,-0.037684,0.255472,-0.085732,0.350164,-0.000008 +-0.346713,-0.037463,0.253822,-0.085219,0.347873,-0.000008 +-0.344388,-0.037242,0.252171,-0.084706,0.345582,-0.000008 +-0.342062,-0.037022,0.250521,-0.084193,0.343292,-0.000008 +-0.339736,-0.036801,0.248870,-0.083681,0.341001,-0.000008 +-0.337410,-0.036581,0.247220,-0.083168,0.338710,-0.000008 +-0.335084,-0.036360,0.245569,-0.082655,0.336420,-0.000008 +-0.332758,-0.036139,0.243919,-0.082142,0.334129,-0.000008 +-0.330433,-0.035919,0.242269,-0.081629,0.331838,-0.000008 +-0.328107,-0.035698,0.240618,-0.081116,0.329548,-0.000008 +-0.325781,-0.035477,0.238968,-0.080603,0.327257,-0.000008 +-0.323455,-0.035257,0.237317,-0.080090,0.324966,-0.000008 +-0.321129,-0.035036,0.235667,-0.079578,0.322675,-0.000008 +-0.318803,-0.034815,0.234016,-0.079065,0.320385,-0.000008 +-0.316478,-0.034595,0.232366,-0.078552,0.318094,-0.000008 +-0.314152,-0.034374,0.230716,-0.078039,0.315803,-0.000008 +-0.311826,-0.034154,0.229065,-0.077526,0.313513,-0.000008 +-0.309500,-0.033933,0.227415,-0.077013,0.311222,-0.000008 +-0.307174,-0.033712,0.225764,-0.076500,0.308931,-0.000008 +-0.304848,-0.033492,0.224114,-0.075987,0.306640,-0.000008 +-0.302522,-0.033271,0.222463,-0.075475,0.304350,-0.000008 +-0.300197,-0.033050,0.220813,-0.074962,0.302059,-0.000008 +-0.297871,-0.032830,0.219162,-0.074449,0.299768,-0.000008 +-0.295545,-0.032609,0.217512,-0.073936,0.297478,-0.000008 +-0.293219,-0.032389,0.215862,-0.073423,0.295187,-0.000008 +-0.290893,-0.032168,0.214211,-0.072910,0.292896,-0.000008 +-0.288567,-0.031947,0.212561,-0.072397,0.290605,-0.000008 +-0.286242,-0.031727,0.210910,-0.071884,0.288315,-0.000008 +-0.283916,-0.031506,0.209260,-0.071372,0.286024,-0.000008 +-0.281590,-0.031285,0.207609,-0.070859,0.283733,-0.000008 +-0.279264,-0.031065,0.205959,-0.070346,0.281443,-0.000008 +-0.276938,-0.030844,0.204308,-0.069833,0.279152,-0.000008 +-0.274612,-0.030624,0.202658,-0.069320,0.276861,-0.000008 +-0.272287,-0.030403,0.201008,-0.068807,0.274571,-0.000008 +-0.269961,-0.030182,0.199357,-0.068294,0.272280,-0.000008 +-0.267635,-0.029962,0.197707,-0.067781,0.269989,-0.000008 +-0.265309,-0.029741,0.196056,-0.067269,0.267698,-0.000008 +-0.262983,-0.029520,0.194406,-0.066756,0.265408,-0.000008 +-0.260657,-0.029300,0.192755,-0.066243,0.263117,-0.000008 +-0.258331,-0.029079,0.191105,-0.065730,0.260826,-0.000008 +-0.256006,-0.028858,0.189454,-0.065217,0.258536,-0.000008 +-0.253680,-0.028638,0.187804,-0.064704,0.256245,-0.000008 +-0.251354,-0.028417,0.186154,-0.064191,0.253954,-0.000008 +-0.249028,-0.028196,0.184503,-0.063678,0.251663,-0.000008 +-0.246702,-0.027976,0.182853,-0.063166,0.249373,-0.000008 +-0.244376,-0.027755,0.181202,-0.062653,0.247082,-0.000008 +-0.242051,-0.027535,0.179552,-0.062140,0.244791,-0.000008 +-0.239725,-0.027314,0.177901,-0.061627,0.242501,-0.000008 +-0.237399,-0.027093,0.176251,-0.061114,0.240210,-0.000008 +-0.235073,-0.026873,0.174600,-0.060601,0.237919,-0.000008 +-0.232747,-0.026652,0.172950,-0.060088,0.235628,-0.000008 +-0.230421,-0.026432,0.171300,-0.059576,0.233338,-0.000008 +-0.228096,-0.026211,0.169649,-0.059063,0.231047,-0.000008 +-0.225770,-0.025990,0.167999,-0.058550,0.228756,-0.000008 +-0.223444,-0.025770,0.166348,-0.058037,0.226466,-0.000008 +-0.221118,-0.025549,0.164698,-0.057524,0.224175,-0.000008 +-0.218792,-0.025328,0.163047,-0.057011,0.221884,-0.000008 +-0.216466,-0.025108,0.161397,-0.056498,0.219594,-0.000008 +-0.214141,-0.024887,0.159746,-0.055985,0.217303,-0.000008 +-0.211815,-0.024666,0.158096,-0.055473,0.215012,-0.000008 +-0.209489,-0.024446,0.156446,-0.054960,0.212721,-0.000008 +-0.207163,-0.024225,0.154795,-0.054447,0.210431,-0.000008 +-0.204837,-0.024005,0.153145,-0.053934,0.208140,-0.000008 +-0.202511,-0.023784,0.151494,-0.053421,0.205849,-0.000008 +-0.200185,-0.023563,0.149844,-0.052908,0.203559,-0.000008 +-0.197860,-0.023343,0.148193,-0.052395,0.201268,-0.000008 +-0.195534,-0.023122,0.146543,-0.051882,0.198977,-0.000008 +-0.193208,-0.022901,0.144892,-0.051369,0.196686,-0.000008 +-0.190882,-0.022681,0.143242,-0.050857,0.194396,-0.000008 +-0.188556,-0.022460,0.141592,-0.050344,0.192105,-0.000008 +-0.186230,-0.022239,0.139941,-0.049831,0.189814,-0.000008 +-0.183905,-0.022019,0.138291,-0.049318,0.187524,-0.000008 +-0.181579,-0.021798,0.136640,-0.048805,0.185233,-0.000008 +-0.179253,-0.021578,0.134990,-0.048292,0.182942,-0.000008 +-0.176927,-0.021357,0.133339,-0.047779,0.180652,-0.000008 +-0.174601,-0.021136,0.131689,-0.047267,0.178361,-0.000008 +-0.172275,-0.020916,0.130039,-0.046754,0.176070,-0.000008 +-0.169950,-0.020695,0.128388,-0.046241,0.173779,-0.000008 +-0.167624,-0.020475,0.126738,-0.045728,0.171489,-0.000008 +-0.165298,-0.020254,0.125087,-0.045215,0.169198,-0.000008 +-0.162972,-0.020033,0.123437,-0.044702,0.166907,-0.000008 +-0.160646,-0.019813,0.121786,-0.044189,0.164617,-0.000008 +-0.158320,-0.019592,0.120136,-0.043676,0.162326,-0.000008 +-0.155994,-0.019371,0.118485,-0.043164,0.160035,-0.000008 +-0.153669,-0.019151,0.116835,-0.042651,0.157744,-0.000008 +-0.151343,-0.018930,0.115185,-0.042138,0.155454,-0.000008 +-0.149017,-0.018709,0.113534,-0.041625,0.153163,-0.000008 +-0.146691,-0.018489,0.111884,-0.041112,0.150872,-0.000008 +-0.144365,-0.018268,0.110233,-0.040599,0.148582,-0.000008 +-0.142039,-0.018048,0.108583,-0.040086,0.146291,-0.000008 +-0.139714,-0.017827,0.106932,-0.039573,0.144000,-0.000008 +-0.137388,-0.017606,0.105282,-0.039060,0.141709,-0.000008 +-0.135062,-0.017386,0.103631,-0.038548,0.139419,-0.000008 +-0.132736,-0.017165,0.101981,-0.038035,0.137128,-0.000008 +-0.130410,-0.016944,0.100331,-0.037522,0.134837,-0.000008 +-0.128084,-0.016724,0.098680,-0.037009,0.132547,-0.000008 +-0.125759,-0.016503,0.097030,-0.036496,0.130256,-0.000008 +-0.123433,-0.016282,0.095379,-0.035983,0.127965,-0.000008 +-0.121107,-0.016062,0.093729,-0.035470,0.125675,-0.000008 +-0.118781,-0.015841,0.092078,-0.034958,0.123384,-0.000008 +-0.116455,-0.015621,0.090428,-0.034445,0.121093,-0.000008 +-0.114129,-0.015400,0.088777,-0.033932,0.118802,-0.000008 +-0.111803,-0.015179,0.087127,-0.033419,0.116512,-0.000008 +-0.109478,-0.014959,0.085477,-0.032906,0.114221,-0.000008 +-0.107152,-0.014738,0.083826,-0.032393,0.111930,-0.000008 +-0.104826,-0.014517,0.082176,-0.031880,0.109640,-0.000008 +-0.102500,-0.014297,0.080525,-0.031367,0.107349,-0.000008 +-0.100174,-0.014076,0.078875,-0.030855,0.105058,-0.000008 +-0.097848,-0.013856,0.077224,-0.030342,0.102767,-0.000008 +-0.095523,-0.013635,0.075574,-0.029829,0.100477,-0.000008 +-0.093197,-0.013414,0.073924,-0.029316,0.098186,-0.000008 +-0.090871,-0.013194,0.072273,-0.028803,0.095895,-0.000008 +-0.088545,-0.012973,0.070623,-0.028290,0.093605,-0.000008 +-0.086219,-0.012752,0.068972,-0.027777,0.091314,-0.000008 +-0.083893,-0.012532,0.067322,-0.027264,0.089023,-0.000008 +-0.081568,-0.012311,0.065671,-0.026752,0.086733,-0.000008 +-0.079242,-0.012091,0.064021,-0.026239,0.084442,-0.000008 +-0.076916,-0.011870,0.062370,-0.025726,0.082151,-0.000008 +-0.074590,-0.011649,0.060720,-0.025213,0.079860,-0.000008 +-0.072264,-0.011429,0.059069,-0.024700,0.077570,-0.000008 +-0.069938,-0.011208,0.057419,-0.024187,0.075279,-0.000008 +-0.067613,-0.010987,0.055769,-0.023674,0.072988,-0.000008 +-0.065289,-0.010767,0.054118,-0.023161,0.070697,-0.000008 +-0.062971,-0.010546,0.052468,-0.022648,0.068407,-0.000008 +-0.060660,-0.010325,0.050817,-0.022136,0.066116,-0.000008 +-0.058359,-0.010105,0.049167,-0.021623,0.063825,-0.000008 +-0.056070,-0.009884,0.047516,-0.021110,0.061535,-0.000008 +-0.053797,-0.009664,0.045866,-0.020597,0.059245,-0.000008 +-0.051542,-0.009443,0.044215,-0.020084,0.056959,-0.000008 +-0.049307,-0.009222,0.042565,-0.019571,0.054681,-0.000008 +-0.047095,-0.009002,0.040915,-0.019058,0.052412,-0.000008 +-0.044908,-0.008781,0.039265,-0.018545,0.050157,-0.000008 +-0.042750,-0.008560,0.037620,-0.018033,0.047919,-0.000008 +-0.040623,-0.008340,0.035981,-0.017520,0.045699,-0.000008 +-0.038529,-0.008119,0.034350,-0.017007,0.043503,-0.000008 +-0.036471,-0.007899,0.032731,-0.016494,0.041332,-0.000008 +-0.034451,-0.007678,0.031127,-0.015981,0.039190,-0.000008 +-0.032473,-0.007457,0.029539,-0.015468,0.037080,-0.000008 +-0.030539,-0.007237,0.027970,-0.014955,0.035005,-0.000008 +-0.028650,-0.007016,0.026423,-0.014443,0.032968,-0.000008 +-0.026811,-0.006795,0.024900,-0.013930,0.030973,-0.000008 +-0.025024,-0.006575,0.023405,-0.013417,0.029022,-0.000008 +-0.023290,-0.006354,0.021939,-0.012904,0.027118,-0.000008 +-0.021614,-0.006133,0.020506,-0.012391,0.025265,-0.000008 +-0.019996,-0.005913,0.019107,-0.011878,0.023466,-0.000008 +-0.018441,-0.005692,0.017746,-0.011365,0.021724,-0.000008 +-0.016950,-0.005472,0.016425,-0.010852,0.020041,-0.000008 +-0.015526,-0.005251,0.015147,-0.010340,0.018422,-0.000008 +-0.014172,-0.005030,0.013913,-0.009827,0.016869,-0.000008 +-0.012891,-0.004810,0.012728,-0.009314,0.015385,-0.000008 +-0.011684,-0.004589,0.011593,-0.008801,0.013974,-0.000008 +-0.010554,-0.004368,0.010511,-0.008288,0.012638,-0.000008 +-0.009500,-0.004148,0.009485,-0.007775,0.011380,-0.000008 +-0.008518,-0.003927,0.008517,-0.007262,0.010205,-0.000008 +-0.007606,-0.003707,0.007610,-0.006749,0.009112,-0.000008 +-0.006762,-0.003486,0.006766,-0.006237,0.008101,-0.000008 +-0.005982,-0.003265,0.005986,-0.005726,0.007167,-0.000008 +-0.005265,-0.003045,0.005269,-0.005221,0.006308,-0.000008 +-0.004608,-0.002824,0.004612,-0.004724,0.005521,-0.000008 +-0.004008,-0.002603,0.004012,-0.004238,0.004802,-0.000008 +-0.003462,-0.002383,0.003466,-0.003767,0.004148,-0.000008 +-0.002969,-0.002162,0.002973,-0.003314,0.003556,-0.000008 +-0.002524,-0.001942,0.002528,-0.002881,0.003024,-0.000008 +-0.002126,-0.001722,0.002130,-0.002473,0.002548,-0.000008 +-0.001773,-0.001506,0.001777,-0.002091,0.002124,-0.000008 +-0.001461,-0.001297,0.001465,-0.001740,0.001750,-0.000008 +-0.001188,-0.001097,0.001192,-0.001421,0.001423,-0.000008 +-0.000951,-0.000908,0.000955,-0.001139,0.001140,-0.000008 +-0.000748,-0.000733,0.000752,-0.000896,0.000897,-0.000008 +-0.000576,-0.000575,0.000580,-0.000690,0.000691,-0.000008 +-0.000433,-0.000436,0.000437,-0.000519,0.000519,-0.000008 +-0.000316,-0.000319,0.000320,-0.000378,0.000379,-0.000008 +-0.000222,-0.000226,0.000226,-0.000266,0.000266,-0.000008 +-0.000149,-0.000152,0.000153,-0.000178,0.000179,-0.000008 +-0.000094,-0.000097,0.000098,-0.000112,0.000113,-0.000008 +-0.000055,-0.000058,0.000059,-0.000065,0.000065,-0.000008 +-0.000028,-0.000032,0.000032,-0.000034,0.000034,-0.000008 +-0.000012,-0.000016,0.000016,-0.000014,0.000015,-0.000008 +-0.000004,-0.000007,0.000008,-0.000005,0.000005,-0.000008 +-0.000001,-0.000004,0.000005,-0.000001,0.000001,-0.000008 +-0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +-0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +0.000002,-0.000001,-0.000001,-0.000001,0.000006,0.000000 +0.000005,-0.000004,-0.000004,-0.000005,0.000002,0.000000 +0.000016,-0.000015,-0.000015,-0.000017,-0.000010,0.000000 +0.000036,-0.000034,-0.000035,-0.000041,-0.000034,0.000000 +0.000069,-0.000061,-0.000068,-0.000081,-0.000074,0.000000 +0.000118,-0.000093,-0.000117,-0.000140,-0.000133,0.000000 +0.000187,-0.000126,-0.000186,-0.000222,-0.000215,0.000000 +0.000278,-0.000160,-0.000277,-0.000332,-0.000325,0.000000 +0.000395,-0.000193,-0.000394,-0.000472,-0.000465,0.000000 +0.000542,-0.000226,-0.000541,-0.000648,-0.000641,0.000001 +0.000721,-0.000260,-0.000720,-0.000863,-0.000856,0.000001 +0.000936,-0.000293,-0.000935,-0.001120,-0.001113,0.000001 +0.001189,-0.000326,-0.001188,-0.001424,-0.001417,0.000001 +0.001485,-0.000360,-0.001484,-0.001778,-0.001771,0.000001 +0.001827,-0.000393,-0.001826,-0.002187,-0.002180,0.000001 +0.002217,-0.000426,-0.002216,-0.002654,-0.002647,0.000001 +0.002658,-0.000460,-0.002657,-0.003184,-0.003177,0.000001 +0.003156,-0.000493,-0.003155,-0.003779,-0.003772,0.000001 +0.003711,-0.000526,-0.003710,-0.004445,-0.004438,0.000001 +0.004328,-0.000560,-0.004327,-0.005184,-0.005177,0.000001 +0.005010,-0.000593,-0.005009,-0.006001,-0.005994,0.000001 +0.005761,-0.000626,-0.005760,-0.006900,-0.006893,0.000001 +0.006582,-0.000660,-0.006581,-0.007882,-0.007877,0.000001 +0.007479,-0.000693,-0.007478,-0.008944,-0.008951,0.000001 +0.008453,-0.000726,-0.008451,-0.010081,-0.010118,0.000001 +0.009508,-0.000760,-0.009499,-0.011290,-0.011377,0.000001 +0.010647,-0.000793,-0.010620,-0.012568,-0.012724,0.000001 +0.011870,-0.000826,-0.011809,-0.013910,-0.014155,0.000001 +0.013172,-0.000860,-0.013064,-0.015311,-0.015666,0.000001 +0.014551,-0.000893,-0.014380,-0.016770,-0.017254,0.000002 +0.016003,-0.000926,-0.015756,-0.018281,-0.018915,0.000002 +0.017525,-0.000960,-0.017188,-0.019840,-0.020644,0.000002 +0.019114,-0.000993,-0.018672,-0.021444,-0.022439,0.000002 +0.020767,-0.001026,-0.020205,-0.023090,-0.024294,0.000002 +0.022480,-0.001060,-0.021784,-0.024772,-0.026206,0.000002 +0.024250,-0.001093,-0.023406,-0.026487,-0.028172,0.000002 +0.026074,-0.001126,-0.025067,-0.028231,-0.030186,0.000002 +0.027948,-0.001160,-0.026765,-0.030001,-0.032246,0.000002 +0.029870,-0.001193,-0.028495,-0.031792,-0.034348,0.000002 +0.031836,-0.001226,-0.030256,-0.033600,-0.036487,0.000002 +0.033843,-0.001260,-0.032042,-0.035423,-0.038661,0.000002 +0.035888,-0.001293,-0.033853,-0.037255,-0.040863,0.000002 +0.037967,-0.001326,-0.035683,-0.039093,-0.043092,0.000002 +0.040077,-0.001360,-0.037529,-0.040932,-0.045343,0.000002 +0.042215,-0.001393,-0.039390,-0.042772,-0.047612,0.000002 +0.044378,-0.001426,-0.041260,-0.044612,-0.049896,0.000002 +0.046562,-0.001460,-0.043138,-0.046452,-0.052189,0.000002 +0.048764,-0.001493,-0.045020,-0.048292,-0.054490,0.000002 +0.050982,-0.001526,-0.046902,-0.050132,-0.056793,0.000002 +0.053211,-0.001560,-0.048784,-0.051972,-0.059096,0.000003 +0.055448,-0.001593,-0.050667,-0.053812,-0.061399,0.000003 +0.057690,-0.001626,-0.052549,-0.055652,-0.063702,0.000003 +0.059935,-0.001660,-0.054431,-0.057492,-0.066005,0.000003 +0.062179,-0.001693,-0.056314,-0.059332,-0.068308,0.000003 +0.064424,-0.001726,-0.058196,-0.061172,-0.070612,0.000003 +0.066669,-0.001760,-0.060078,-0.063012,-0.072915,0.000003 +0.068913,-0.001793,-0.061961,-0.064852,-0.075218,0.000003 +0.071158,-0.001826,-0.063843,-0.066692,-0.077521,0.000003 +0.073402,-0.001860,-0.065725,-0.068532,-0.079824,0.000003 +0.075647,-0.001893,-0.067608,-0.070372,-0.082128,0.000003 +0.077891,-0.001926,-0.069490,-0.072212,-0.084431,0.000003 +0.080136,-0.001960,-0.071372,-0.074052,-0.086734,0.000003 +0.082381,-0.001993,-0.073255,-0.075892,-0.089037,0.000003 +0.084625,-0.002026,-0.075137,-0.077732,-0.091340,0.000003 +0.086870,-0.002060,-0.077019,-0.079572,-0.093643,0.000003 +0.089114,-0.002093,-0.078901,-0.081412,-0.095947,0.000003 +0.091359,-0.002126,-0.080784,-0.083252,-0.098250,0.000003 +0.093604,-0.002160,-0.082666,-0.085092,-0.100553,0.000003 +0.095848,-0.002193,-0.084548,-0.086932,-0.102856,0.000004 +0.098093,-0.002226,-0.086431,-0.088772,-0.105159,0.000004 +0.100337,-0.002260,-0.088313,-0.090612,-0.107462,0.000004 +0.102582,-0.002293,-0.090195,-0.092452,-0.109766,0.000004 +0.104826,-0.002326,-0.092078,-0.094292,-0.112069,0.000004 +0.107071,-0.002360,-0.093960,-0.096132,-0.114372,0.000004 +0.109316,-0.002393,-0.095842,-0.097972,-0.116675,0.000004 +0.111560,-0.002426,-0.097725,-0.099812,-0.118978,0.000004 +0.113805,-0.002460,-0.099607,-0.101652,-0.121281,0.000004 +0.116049,-0.002493,-0.101489,-0.103492,-0.123585,0.000004 +0.118294,-0.002526,-0.103372,-0.105332,-0.125888,0.000004 +0.120539,-0.002560,-0.105254,-0.107172,-0.128191,0.000004 +0.122783,-0.002593,-0.107136,-0.109012,-0.130494,0.000004 +0.125028,-0.002626,-0.109019,-0.110852,-0.132797,0.000004 +0.127272,-0.002660,-0.110901,-0.112692,-0.135100,0.000004 +0.129517,-0.002693,-0.112783,-0.114532,-0.137404,0.000004 +0.131761,-0.002726,-0.114666,-0.116372,-0.139707,0.000004 +0.134006,-0.002760,-0.116548,-0.118212,-0.142010,0.000004 +0.136251,-0.002793,-0.118430,-0.120052,-0.144313,0.000004 +0.138495,-0.002826,-0.120313,-0.121892,-0.146616,0.000004 +0.140740,-0.002860,-0.122195,-0.123732,-0.148919,0.000005 +0.142984,-0.002893,-0.124077,-0.125572,-0.151223,0.000005 +0.145229,-0.002926,-0.125960,-0.127412,-0.153526,0.000005 +0.147474,-0.002960,-0.127842,-0.129252,-0.155829,0.000005 +0.149718,-0.002993,-0.129724,-0.131092,-0.158132,0.000005 +0.151963,-0.003026,-0.131607,-0.132932,-0.160435,0.000005 +0.154207,-0.003060,-0.133489,-0.134772,-0.162738,0.000005 +0.156452,-0.003093,-0.135371,-0.136612,-0.165042,0.000005 +0.158696,-0.003126,-0.137254,-0.138452,-0.167345,0.000005 +0.160941,-0.003160,-0.139136,-0.140292,-0.169648,0.000005 +0.163186,-0.003193,-0.141018,-0.142132,-0.171951,0.000005 +0.165430,-0.003226,-0.142900,-0.143972,-0.174254,0.000005 +0.167675,-0.003260,-0.144783,-0.145812,-0.176558,0.000005 +0.169919,-0.003293,-0.146665,-0.147652,-0.178861,0.000005 +0.172164,-0.003326,-0.148547,-0.149492,-0.181164,0.000005 +0.174409,-0.003360,-0.150430,-0.151332,-0.183467,0.000005 +0.176653,-0.003393,-0.152312,-0.153172,-0.185770,0.000005 +0.178898,-0.003426,-0.154194,-0.155012,-0.188073,0.000005 +0.181142,-0.003459,-0.156077,-0.156852,-0.190377,0.000005 +0.183387,-0.003493,-0.157959,-0.158692,-0.192680,0.000005 +0.185631,-0.003526,-0.159841,-0.160532,-0.194983,0.000006 +0.187876,-0.003559,-0.161724,-0.162372,-0.197286,0.000006 +0.190121,-0.003593,-0.163606,-0.164212,-0.199589,0.000006 +0.192365,-0.003626,-0.165488,-0.166052,-0.201892,0.000006 +0.194610,-0.003659,-0.167371,-0.167892,-0.204196,0.000006 +0.196854,-0.003693,-0.169253,-0.169732,-0.206499,0.000006 +0.199099,-0.003726,-0.171135,-0.171572,-0.208802,0.000006 +0.201344,-0.003759,-0.173018,-0.173412,-0.211105,0.000006 +0.203588,-0.003793,-0.174900,-0.175252,-0.213408,0.000006 +0.205833,-0.003826,-0.176782,-0.177092,-0.215711,0.000006 +0.208077,-0.003859,-0.178665,-0.178931,-0.218015,0.000006 +0.210322,-0.003893,-0.180547,-0.180771,-0.220318,0.000006 +0.212566,-0.003926,-0.182429,-0.182611,-0.222621,0.000006 +0.214811,-0.003959,-0.184312,-0.184451,-0.224924,0.000006 +0.217056,-0.003993,-0.186194,-0.186291,-0.227227,0.000006 +0.219300,-0.004026,-0.188076,-0.188131,-0.229530,0.000006 +0.221545,-0.004059,-0.189959,-0.189971,-0.231834,0.000006 +0.223789,-0.004093,-0.191841,-0.191811,-0.234137,0.000006 +0.226034,-0.004126,-0.193723,-0.193651,-0.236440,0.000006 +0.228279,-0.004159,-0.195606,-0.195491,-0.238743,0.000007 +0.230523,-0.004193,-0.197488,-0.197331,-0.241046,0.000007 +0.232768,-0.004226,-0.199370,-0.199171,-0.243349,0.000007 +0.235012,-0.004259,-0.201253,-0.201011,-0.245653,0.000007 +0.237257,-0.004293,-0.203135,-0.202851,-0.247956,0.000007 +0.239501,-0.004326,-0.205017,-0.204691,-0.250259,0.000007 +0.241746,-0.004359,-0.206900,-0.206531,-0.252562,0.000007 +0.243991,-0.004393,-0.208782,-0.208371,-0.254865,0.000007 +0.246235,-0.004426,-0.210664,-0.210211,-0.257168,0.000007 +0.248480,-0.004459,-0.212547,-0.212051,-0.259472,0.000007 +0.250724,-0.004493,-0.214429,-0.213891,-0.261775,0.000007 +0.252969,-0.004526,-0.216311,-0.215731,-0.264078,0.000007 +0.255213,-0.004559,-0.218193,-0.217571,-0.266381,0.000007 +0.257458,-0.004593,-0.220076,-0.219411,-0.268684,0.000007 +0.259703,-0.004626,-0.221958,-0.221251,-0.270988,0.000007 +0.261947,-0.004659,-0.223840,-0.223091,-0.273291,0.000007 +0.264192,-0.004693,-0.225723,-0.224931,-0.275594,0.000007 +0.266436,-0.004726,-0.227605,-0.226771,-0.277897,0.000007 +0.268681,-0.004759,-0.229487,-0.228611,-0.280200,0.000007 +0.270926,-0.004793,-0.231370,-0.230451,-0.282503,0.000007 +0.273170,-0.004826,-0.233252,-0.232291,-0.284807,0.000008 +0.275415,-0.004859,-0.235134,-0.234131,-0.287110,0.000008 +0.277659,-0.004893,-0.237017,-0.235971,-0.289413,0.000008 +0.279904,-0.004926,-0.238899,-0.237811,-0.291716,0.000008 +0.282148,-0.004959,-0.240781,-0.239651,-0.294019,0.000008 +0.284393,-0.004993,-0.242664,-0.241491,-0.296322,0.000008 +0.286638,-0.005026,-0.244546,-0.243331,-0.298626,0.000008 +0.288882,-0.005059,-0.246428,-0.245171,-0.300929,0.000008 +0.291127,-0.005093,-0.248311,-0.247011,-0.303232,0.000008 +0.293371,-0.005126,-0.250193,-0.248851,-0.305535,0.000008 +0.295616,-0.005159,-0.252075,-0.250691,-0.307838,0.000008 +0.297861,-0.005193,-0.253958,-0.252531,-0.310141,0.000008 +0.300105,-0.005226,-0.255840,-0.254371,-0.312445,0.000008 +0.302350,-0.005259,-0.257722,-0.256211,-0.314748,0.000008 +0.304594,-0.005293,-0.259605,-0.258051,-0.317051,0.000008 +0.306839,-0.005326,-0.261487,-0.259891,-0.319354,0.000008 +0.309083,-0.005359,-0.263369,-0.261731,-0.321657,0.000008 +0.311328,-0.005393,-0.265252,-0.263571,-0.323960,0.000008 +0.313573,-0.005426,-0.267134,-0.265411,-0.326264,0.000008 +0.315817,-0.005459,-0.269016,-0.267251,-0.328567,0.000009 +0.318062,-0.005493,-0.270899,-0.269091,-0.330870,0.000009 +0.320306,-0.005526,-0.272781,-0.270931,-0.333173,0.000009 +0.322551,-0.005559,-0.274663,-0.272771,-0.335476,0.000009 +0.324796,-0.005593,-0.276546,-0.274611,-0.337779,0.000009 +0.327040,-0.005626,-0.278428,-0.276451,-0.340083,0.000009 +0.329285,-0.005659,-0.280310,-0.278291,-0.342386,0.000009 +0.331529,-0.005693,-0.282193,-0.280131,-0.344689,0.000009 +0.333774,-0.005726,-0.284075,-0.281971,-0.346992,0.000009 +0.336018,-0.005759,-0.285957,-0.283811,-0.349295,0.000009 +0.338263,-0.005793,-0.287839,-0.285651,-0.351598,0.000009 +0.340508,-0.005826,-0.289722,-0.287491,-0.353902,0.000009 +0.342752,-0.005859,-0.291604,-0.289331,-0.356205,0.000009 +0.344997,-0.005893,-0.293486,-0.291171,-0.358508,0.000009 +0.347241,-0.005926,-0.295369,-0.293011,-0.360811,0.000009 +0.349486,-0.005959,-0.297251,-0.294851,-0.363114,0.000009 +0.351731,-0.005993,-0.299133,-0.296691,-0.365418,0.000009 +0.353975,-0.006026,-0.301016,-0.298531,-0.367721,0.000009 +0.356220,-0.006059,-0.302898,-0.300371,-0.370024,0.000009 +0.358464,-0.006093,-0.304780,-0.302211,-0.372327,0.000009 +0.360709,-0.006126,-0.306663,-0.304051,-0.374630,0.000010 +0.362953,-0.006159,-0.308545,-0.305891,-0.376933,0.000010 +0.365198,-0.006193,-0.310427,-0.307731,-0.379237,0.000010 +0.367443,-0.006226,-0.312310,-0.309571,-0.381540,0.000010 +0.369687,-0.006259,-0.314192,-0.311411,-0.383843,0.000010 +0.371932,-0.006293,-0.316074,-0.313251,-0.386146,0.000010 +0.374176,-0.006326,-0.317957,-0.315091,-0.388449,0.000010 +0.376421,-0.006359,-0.319839,-0.316931,-0.390752,0.000010 +0.378666,-0.006393,-0.321721,-0.318771,-0.393056,0.000010 +0.380910,-0.006426,-0.323604,-0.320611,-0.395359,0.000010 +0.383155,-0.006459,-0.325486,-0.322450,-0.397662,0.000010 +0.385399,-0.006493,-0.327368,-0.324290,-0.399965,0.000010 +0.387644,-0.006526,-0.329251,-0.326130,-0.402268,0.000010 +0.389888,-0.006559,-0.331133,-0.327970,-0.404571,0.000010 +0.392133,-0.006593,-0.333015,-0.329810,-0.406875,0.000010 +0.394378,-0.006626,-0.334898,-0.331650,-0.409178,0.000010 +0.396622,-0.006659,-0.336780,-0.333490,-0.411481,0.000010 +0.398867,-0.006693,-0.338662,-0.335330,-0.413784,0.000010 +0.401111,-0.006726,-0.340545,-0.337170,-0.416087,0.000010 +0.403356,-0.006759,-0.342427,-0.339010,-0.418390,0.000010 +0.405601,-0.006792,-0.344309,-0.340850,-0.420694,0.000011 +0.407845,-0.006826,-0.346192,-0.342690,-0.422997,0.000011 +0.410090,-0.006859,-0.348074,-0.344530,-0.425300,0.000011 +0.412334,-0.006892,-0.349956,-0.346370,-0.427603,0.000011 +0.414579,-0.006926,-0.351839,-0.348210,-0.429906,0.000011 +0.416823,-0.006959,-0.353721,-0.350050,-0.432209,0.000011 +0.419068,-0.006992,-0.355603,-0.351890,-0.434513,0.000011 +0.421313,-0.007026,-0.357485,-0.353730,-0.436816,0.000011 +0.423557,-0.007059,-0.359368,-0.355570,-0.439119,0.000011 +0.425802,-0.007092,-0.361250,-0.357410,-0.441422,0.000011 +0.428046,-0.007126,-0.363132,-0.359250,-0.443725,0.000011 +0.430291,-0.007159,-0.365015,-0.361090,-0.446028,0.000011 +0.432536,-0.007192,-0.366897,-0.362930,-0.448332,0.000011 +0.434780,-0.007226,-0.368779,-0.364770,-0.450635,0.000011 +0.437025,-0.007259,-0.370662,-0.366610,-0.452938,0.000011 +0.439269,-0.007292,-0.372544,-0.368450,-0.455241,0.000011 +0.441514,-0.007326,-0.374426,-0.370290,-0.457544,0.000011 +0.443758,-0.007359,-0.376309,-0.372130,-0.459847,0.000011 +0.446003,-0.007392,-0.378191,-0.373970,-0.462151,0.000011 +0.448248,-0.007426,-0.380073,-0.375810,-0.464454,0.000012 +0.450492,-0.007459,-0.381956,-0.377650,-0.466757,0.000012 +0.452737,-0.007492,-0.383838,-0.379490,-0.469060,0.000012 +0.454981,-0.007526,-0.385720,-0.381330,-0.471363,0.000012 +0.457226,-0.007559,-0.387603,-0.383170,-0.473667,0.000012 +0.459471,-0.007592,-0.389485,-0.385010,-0.475970,0.000012 +0.461715,-0.007626,-0.391367,-0.386850,-0.478273,0.000012 +0.463960,-0.007659,-0.393250,-0.388690,-0.480576,0.000012 +0.466204,-0.007692,-0.395132,-0.390530,-0.482879,0.000012 +0.468449,-0.007726,-0.397014,-0.392370,-0.485182,0.000012 +0.470693,-0.007759,-0.398897,-0.394210,-0.487486,0.000012 +0.472938,-0.007792,-0.400779,-0.396050,-0.489789,0.000012 +0.475183,-0.007826,-0.402661,-0.397890,-0.492092,0.000012 +0.477427,-0.007859,-0.404544,-0.399730,-0.494395,0.000012 +0.479672,-0.007892,-0.406426,-0.401570,-0.496698,0.000012 +0.481916,-0.007926,-0.408308,-0.403410,-0.499001,0.000012 +0.484161,-0.007959,-0.410191,-0.405250,-0.501305,0.000012 +0.486406,-0.007992,-0.412073,-0.407090,-0.503608,0.000012 +0.488650,-0.008026,-0.413955,-0.408930,-0.505911,0.000012 +0.490895,-0.008059,-0.415838,-0.410770,-0.508214,0.000012 +0.493139,-0.008092,-0.417720,-0.412610,-0.510517,0.000013 +0.495384,-0.008126,-0.419602,-0.414450,-0.512820,0.000013 +0.497628,-0.008159,-0.421485,-0.416290,-0.515124,0.000013 +0.499873,-0.008192,-0.423367,-0.418130,-0.517427,0.000013 +0.502118,-0.008226,-0.425249,-0.419970,-0.519730,0.000013 +0.504362,-0.008259,-0.427131,-0.421810,-0.522033,0.000013 +0.506607,-0.008292,-0.429014,-0.423650,-0.524336,0.000013 +0.508851,-0.008326,-0.430896,-0.425490,-0.526639,0.000013 +0.511096,-0.008359,-0.432778,-0.427330,-0.528943,0.000013 +0.513341,-0.008392,-0.434661,-0.429170,-0.531246,0.000013 +0.515585,-0.008426,-0.436543,-0.431010,-0.533549,0.000013 +0.517830,-0.008459,-0.438425,-0.432850,-0.535852,0.000013 +0.520074,-0.008492,-0.440308,-0.434690,-0.538155,0.000013 +0.522319,-0.008526,-0.442190,-0.436530,-0.540458,0.000013 +0.524563,-0.008559,-0.444072,-0.438370,-0.542762,0.000013 +0.526808,-0.008592,-0.445955,-0.440210,-0.545065,0.000013 +0.529053,-0.008626,-0.447837,-0.442050,-0.547368,0.000013 +0.531297,-0.008659,-0.449719,-0.443890,-0.549671,0.000013 +0.533542,-0.008692,-0.451602,-0.445730,-0.551974,0.000013 +0.535786,-0.008726,-0.453484,-0.447570,-0.554277,0.000013 +0.538031,-0.008759,-0.455366,-0.449410,-0.556581,0.000014 +0.540276,-0.008792,-0.457249,-0.451250,-0.558884,0.000014 +0.542520,-0.008826,-0.459131,-0.453090,-0.561187,0.000014 +0.544765,-0.008859,-0.461013,-0.454930,-0.563490,0.000014 +0.547009,-0.008892,-0.462896,-0.456770,-0.565793,0.000014 +0.549254,-0.008926,-0.464778,-0.458610,-0.568097,0.000014 +0.551498,-0.008959,-0.466660,-0.460450,-0.570400,0.000014 +0.553743,-0.008992,-0.468543,-0.462290,-0.572703,0.000014 +0.555988,-0.009026,-0.470425,-0.464130,-0.575006,0.000014 +0.558232,-0.009059,-0.472307,-0.465969,-0.577309,0.000014 +0.560477,-0.009092,-0.474190,-0.467809,-0.579612,0.000014 +0.562721,-0.009126,-0.476072,-0.469649,-0.581916,0.000014 +0.564966,-0.009159,-0.477954,-0.471489,-0.584219,0.000014 +0.567211,-0.009192,-0.479837,-0.473329,-0.586522,0.000014 +0.569455,-0.009226,-0.481719,-0.475169,-0.588825,0.000014 +0.571700,-0.009259,-0.483601,-0.477009,-0.591128,0.000014 +0.573944,-0.009292,-0.485484,-0.478849,-0.593431,0.000014 +0.576189,-0.009326,-0.487366,-0.480689,-0.595735,0.000014 +0.578433,-0.009359,-0.489248,-0.482529,-0.598038,0.000014 +0.580678,-0.009392,-0.491131,-0.484369,-0.600341,0.000015 +0.582923,-0.009426,-0.493013,-0.486209,-0.602644,0.000015 +0.585167,-0.009459,-0.494895,-0.488049,-0.604947,0.000015 +0.587412,-0.009492,-0.496778,-0.489889,-0.607250,0.000015 +0.589656,-0.009526,-0.498660,-0.491729,-0.609554,0.000015 +0.591901,-0.009559,-0.500542,-0.493569,-0.611857,0.000015 +0.594146,-0.009592,-0.502424,-0.495409,-0.614160,0.000015 +0.596390,-0.009626,-0.504307,-0.497249,-0.616463,0.000015 +0.598635,-0.009659,-0.506189,-0.499089,-0.618766,0.000015 +0.600879,-0.009692,-0.508071,-0.500929,-0.621069,0.000015 +0.603124,-0.009726,-0.509954,-0.502769,-0.623373,0.000015 +0.605368,-0.009759,-0.511836,-0.504609,-0.625676,0.000015 +0.607613,-0.009792,-0.513718,-0.506449,-0.627979,0.000015 +0.609858,-0.009826,-0.515601,-0.508289,-0.630282,0.000015 +0.612102,-0.009859,-0.517483,-0.510129,-0.632585,0.000015 +0.614347,-0.009892,-0.519365,-0.511969,-0.634888,0.000015 +0.616591,-0.009926,-0.521248,-0.513809,-0.637192,0.000015 +0.618836,-0.009959,-0.523130,-0.515649,-0.639495,0.000015 +0.621081,-0.009992,-0.525012,-0.517489,-0.641798,0.000015 +0.623325,-0.010026,-0.526895,-0.519329,-0.644101,0.000015 +0.625570,-0.010059,-0.528777,-0.521169,-0.646404,0.000016 +0.627814,-0.010092,-0.530659,-0.523009,-0.648707,0.000016 +0.630059,-0.010126,-0.532542,-0.524849,-0.651011,0.000016 +0.632303,-0.010159,-0.534424,-0.526689,-0.653314,0.000016 +0.634548,-0.010192,-0.536306,-0.528529,-0.655617,0.000016 +0.636793,-0.010226,-0.538189,-0.530369,-0.657920,0.000016 +0.639037,-0.010259,-0.540071,-0.532209,-0.660223,0.000016 +0.641282,-0.010292,-0.541953,-0.534049,-0.662527,0.000016 +0.643526,-0.010326,-0.543836,-0.535889,-0.664830,0.000016 +0.645771,-0.010359,-0.545718,-0.537729,-0.667133,0.000016 +0.648015,-0.010392,-0.547600,-0.539569,-0.669436,0.000016 +0.650260,-0.010426,-0.549483,-0.541409,-0.671739,0.000016 +0.652505,-0.010459,-0.551365,-0.543249,-0.674042,0.000016 +0.654749,-0.010492,-0.553247,-0.545089,-0.676346,0.000016 +0.656994,-0.010526,-0.555130,-0.546929,-0.678649,0.000016 +0.659238,-0.010559,-0.557012,-0.548769,-0.680952,0.000016 +0.661483,-0.010592,-0.558894,-0.550609,-0.683255,0.000016 +0.663728,-0.010626,-0.560777,-0.552449,-0.685558,0.000016 +0.665972,-0.010659,-0.562659,-0.554289,-0.687861,0.000016 +0.668217,-0.010692,-0.564541,-0.556129,-0.690165,0.000017 +0.670461,-0.010725,-0.566424,-0.557969,-0.692468,0.000017 +0.672706,-0.010759,-0.568306,-0.559809,-0.694771,0.000017 +0.674950,-0.010792,-0.570188,-0.561649,-0.697074,0.000017 +0.677195,-0.010825,-0.572070,-0.563489,-0.699377,0.000017 +0.679440,-0.010859,-0.573953,-0.565329,-0.701680,0.000017 +0.681684,-0.010892,-0.575835,-0.567169,-0.703984,0.000017 +0.683929,-0.010925,-0.577717,-0.569009,-0.706287,0.000017 +0.686173,-0.010959,-0.579600,-0.570849,-0.708590,0.000017 +0.688418,-0.010992,-0.581482,-0.572689,-0.710893,0.000017 +0.690663,-0.011025,-0.583364,-0.574529,-0.713196,0.000017 +0.692907,-0.011059,-0.585247,-0.576369,-0.715499,0.000017 +0.695152,-0.011092,-0.587129,-0.578209,-0.717803,0.000017 +0.697396,-0.011125,-0.589011,-0.580049,-0.720106,0.000017 +0.699641,-0.011159,-0.590894,-0.581889,-0.722409,0.000017 +0.701885,-0.011192,-0.592776,-0.583729,-0.724712,0.000017 +0.704130,-0.011225,-0.594658,-0.585569,-0.727015,0.000017 +0.706375,-0.011259,-0.596541,-0.587409,-0.729318,0.000017 +0.708619,-0.011292,-0.598423,-0.589249,-0.731622,0.000017 +0.710864,-0.011325,-0.600305,-0.591089,-0.733925,0.000017 +0.713108,-0.011359,-0.602188,-0.592929,-0.736228,0.000018 +0.715353,-0.011392,-0.604070,-0.594769,-0.738531,0.000018 +0.717598,-0.011425,-0.605952,-0.596609,-0.740834,0.000018 +0.719842,-0.011459,-0.607835,-0.598449,-0.743137,0.000018 +0.722087,-0.011492,-0.609717,-0.600289,-0.745441,0.000018 +0.724331,-0.011525,-0.611599,-0.602129,-0.747744,0.000018 +0.726576,-0.011559,-0.613482,-0.603969,-0.750047,0.000018 +0.728820,-0.011592,-0.615364,-0.605809,-0.752350,0.000018 +0.731065,-0.011625,-0.617246,-0.607649,-0.754653,0.000018 +0.733310,-0.011659,-0.619129,-0.609489,-0.756956,0.000018 +0.735554,-0.011692,-0.621011,-0.611328,-0.759260,0.000018 +0.737799,-0.011725,-0.622893,-0.613168,-0.761563,0.000018 +0.740043,-0.011759,-0.624776,-0.615008,-0.763866,0.000018 +0.742288,-0.011792,-0.626658,-0.616848,-0.766169,0.000018 +0.744533,-0.011825,-0.628540,-0.618688,-0.768472,0.000018 +0.746777,-0.011859,-0.630423,-0.620528,-0.770776,0.000018 +0.749022,-0.011892,-0.632305,-0.622368,-0.773079,0.000018 +0.751266,-0.011925,-0.634187,-0.624208,-0.775382,0.000018 +0.753511,-0.011959,-0.636070,-0.626048,-0.777685,0.000018 +0.755755,-0.011992,-0.637952,-0.627888,-0.779988,0.000018 +0.758000,-0.012025,-0.639834,-0.629728,-0.782291,0.000019 +0.760245,-0.012059,-0.641716,-0.631568,-0.784595,0.000019 +0.762489,-0.012092,-0.643599,-0.633408,-0.786898,0.000019 +0.764734,-0.012125,-0.645481,-0.635248,-0.789201,0.000019 +0.766978,-0.012159,-0.647363,-0.637088,-0.791504,0.000019 +0.769223,-0.012192,-0.649246,-0.638928,-0.793807,0.000019 +0.771468,-0.012225,-0.651128,-0.640768,-0.796110,0.000019 +0.773712,-0.012259,-0.653010,-0.642608,-0.798414,0.000019 +0.775957,-0.012292,-0.654893,-0.644448,-0.800717,0.000019 +0.778201,-0.012325,-0.656775,-0.646288,-0.803020,0.000019 +0.780446,-0.012359,-0.658657,-0.648128,-0.805323,0.000019 +0.782690,-0.012392,-0.660540,-0.649968,-0.807626,0.000019 +0.784935,-0.012425,-0.662422,-0.651808,-0.809929,0.000019 +0.787180,-0.012459,-0.664304,-0.653648,-0.812233,0.000019 +0.789424,-0.012492,-0.666187,-0.655488,-0.814536,0.000019 +0.791669,-0.012525,-0.668069,-0.657328,-0.816839,0.000019 +0.793913,-0.012559,-0.669951,-0.659168,-0.819142,0.000019 +0.796158,-0.012592,-0.671834,-0.661008,-0.821445,0.000019 +0.798403,-0.012625,-0.673716,-0.662848,-0.823748,0.000019 +0.800647,-0.012659,-0.675598,-0.664688,-0.826052,0.000020 +0.802892,-0.012692,-0.677481,-0.666528,-0.828355,0.000020 +0.805136,-0.012725,-0.679363,-0.668368,-0.830658,0.000020 +0.807381,-0.012759,-0.681245,-0.670208,-0.832961,0.000020 +0.809625,-0.012792,-0.683128,-0.672048,-0.835264,0.000020 +0.811870,-0.012825,-0.685010,-0.673888,-0.837567,0.000020 +0.814115,-0.012859,-0.686892,-0.675728,-0.839871,0.000020 +0.816359,-0.012892,-0.688775,-0.677568,-0.842174,0.000020 +0.818604,-0.012925,-0.690657,-0.679408,-0.844477,0.000020 +0.820848,-0.012959,-0.692539,-0.681248,-0.846780,0.000020 +0.823093,-0.012992,-0.694422,-0.683088,-0.849083,0.000020 +0.825338,-0.013025,-0.696304,-0.684928,-0.851386,0.000020 +0.827582,-0.013059,-0.698186,-0.686768,-0.853690,0.000020 +0.829827,-0.013092,-0.700069,-0.688608,-0.855993,0.000020 +0.832071,-0.013125,-0.701951,-0.690448,-0.858296,0.000020 +0.834316,-0.013159,-0.703833,-0.692288,-0.860599,0.000020 +0.836560,-0.013192,-0.705716,-0.694128,-0.862902,0.000020 +0.838805,-0.013225,-0.707598,-0.695968,-0.865206,0.000020 +0.841050,-0.013258,-0.709480,-0.697808,-0.867509,0.000020 +0.843294,-0.013292,-0.711363,-0.699648,-0.869812,0.000020 +0.845539,-0.013325,-0.713245,-0.701488,-0.872115,0.000021 +0.847783,-0.013359,-0.715127,-0.703328,-0.874418,0.000021 +0.850028,-0.013392,-0.717009,-0.705168,-0.876721,0.000021 +0.852273,-0.013425,-0.718892,-0.707008,-0.879025,0.000021 +0.854517,-0.013459,-0.720774,-0.708848,-0.881328,0.000021 +0.856762,-0.013492,-0.722656,-0.710688,-0.883631,0.000021 +0.859006,-0.013525,-0.724539,-0.712528,-0.885934,0.000021 +0.861251,-0.013558,-0.726421,-0.714368,-0.888237,0.000021 +0.863495,-0.013592,-0.728303,-0.716208,-0.890540,0.000021 +0.865740,-0.013625,-0.730186,-0.718048,-0.892844,0.000021 +0.867985,-0.013659,-0.732068,-0.719888,-0.895147,0.000021 +0.870229,-0.013692,-0.733950,-0.721728,-0.897450,0.000021 +0.872474,-0.013725,-0.735833,-0.723568,-0.899753,0.000021 +0.874718,-0.013759,-0.737715,-0.725408,-0.902056,0.000021 +0.876963,-0.013792,-0.739597,-0.727248,-0.904359,0.000021 +0.879208,-0.013825,-0.741480,-0.729088,-0.906663,0.000021 +0.881452,-0.013858,-0.743362,-0.730928,-0.908966,0.000021 +0.883697,-0.013892,-0.745244,-0.732768,-0.911269,0.000021 +0.885941,-0.013925,-0.747127,-0.734608,-0.913572,0.000021 +0.888186,-0.013959,-0.749009,-0.736448,-0.915875,0.000022 +0.890430,-0.013992,-0.750891,-0.738288,-0.918178,0.000022 +0.892675,-0.014025,-0.752774,-0.740128,-0.920482,0.000022 +0.894920,-0.014058,-0.754656,-0.741968,-0.922785,0.000022 +0.897164,-0.014092,-0.756538,-0.743808,-0.925088,0.000022 +0.899409,-0.014125,-0.758421,-0.745648,-0.927391,0.000022 +0.901653,-0.014158,-0.760303,-0.747488,-0.929694,0.000022 +0.903898,-0.014192,-0.762185,-0.749328,-0.931997,0.000022 +0.906143,-0.014225,-0.764068,-0.751168,-0.934301,0.000022 +0.908387,-0.014258,-0.765950,-0.753008,-0.936604,0.000022 +0.910632,-0.014292,-0.767832,-0.754847,-0.938907,0.000022 +0.912876,-0.014325,-0.769715,-0.756687,-0.941210,0.000022 +0.915121,-0.014358,-0.771597,-0.758527,-0.943513,0.000022 +0.917365,-0.014392,-0.773479,-0.760367,-0.945816,0.000022 +0.919610,-0.014425,-0.775362,-0.762207,-0.948120,0.000022 +0.921855,-0.014458,-0.777244,-0.764047,-0.950423,0.000022 +0.924099,-0.014492,-0.779126,-0.765887,-0.952726,0.000022 +0.926344,-0.014525,-0.781009,-0.767727,-0.955029,0.000022 +0.928588,-0.014558,-0.782891,-0.769567,-0.957332,0.000022 +0.930833,-0.014592,-0.784773,-0.771407,-0.959636,0.000022 +0.933078,-0.014625,-0.786655,-0.773247,-0.961939,0.000023 +0.935322,-0.014658,-0.788538,-0.775087,-0.964242,0.000023 +0.937567,-0.014692,-0.790420,-0.776927,-0.966545,0.000023 +0.939811,-0.014725,-0.792302,-0.778767,-0.968848,0.000023 +0.942056,-0.014758,-0.794185,-0.780607,-0.971151,0.000023 +0.944300,-0.014792,-0.796067,-0.782447,-0.973455,0.000023 +0.946545,-0.014825,-0.797949,-0.784287,-0.975758,0.000023 +0.948790,-0.014858,-0.799832,-0.786127,-0.978061,0.000023 +0.951034,-0.014892,-0.801714,-0.787967,-0.980364,0.000023 +0.953279,-0.014925,-0.803596,-0.789807,-0.982667,0.000023 +0.955523,-0.014958,-0.805479,-0.791647,-0.984970,0.000023 +0.957768,-0.014992,-0.807361,-0.793487,-0.987274,0.000023 +0.960013,-0.015025,-0.809243,-0.795327,-0.989577,0.000023 +0.962257,-0.015058,-0.811126,-0.797167,-0.991880,0.000023 +0.964502,-0.015092,-0.813008,-0.799007,-0.994183,0.000023 +0.966746,-0.015125,-0.814890,-0.800847,-0.996486,0.000023 +0.968991,-0.015158,-0.816773,-0.802687,-0.998789,0.000023 +0.971235,-0.015192,-0.818655,-0.804527,-1.001090,0.000023 +0.973480,-0.015225,-0.820537,-0.806367,-1.003400,0.000023 +0.975725,-0.015258,-0.822420,-0.808207,-1.005700,0.000023 +0.977969,-0.015292,-0.824302,-0.810047,-1.008000,0.000024 +0.980214,-0.015325,-0.826184,-0.811887,-1.010310,0.000024 +0.982458,-0.015358,-0.828067,-0.813727,-1.012610,0.000024 +0.984703,-0.015392,-0.829949,-0.815567,-1.014910,0.000024 +0.986948,-0.015425,-0.831831,-0.817407,-1.017210,0.000024 +0.989192,-0.015458,-0.833714,-0.819247,-1.019520,0.000024 +0.991437,-0.015492,-0.835596,-0.821087,-1.021820,0.000024 +0.993681,-0.015525,-0.837478,-0.822927,-1.024120,0.000024 +0.995926,-0.015558,-0.839361,-0.824767,-1.026430,0.000024 +0.998170,-0.015592,-0.841243,-0.826607,-1.028730,0.000024 +1.000420,-0.015625,-0.843125,-0.828447,-1.031030,0.000024 +1.002660,-0.015658,-0.845008,-0.830287,-1.033340,0.000024 +1.004900,-0.015692,-0.846890,-0.832127,-1.035640,0.000024 +1.007150,-0.015725,-0.848772,-0.833967,-1.037940,0.000024 +1.009390,-0.015758,-0.850655,-0.835807,-1.040250,0.000024 +1.011640,-0.015792,-0.852537,-0.837647,-1.042550,0.000024 +1.013880,-0.015825,-0.854419,-0.839487,-1.044850,0.000024 +1.016130,-0.015858,-0.856301,-0.841327,-1.047160,0.000024 +1.018370,-0.015892,-0.858184,-0.843167,-1.049460,0.000024 +1.020620,-0.015925,-0.860066,-0.845007,-1.051760,0.000025 +1.022860,-0.015958,-0.861948,-0.846847,-1.054070,0.000025 +1.025110,-0.015992,-0.863831,-0.848687,-1.056370,0.000025 +1.027350,-0.016025,-0.865713,-0.850527,-1.058670,0.000025 +1.029590,-0.016058,-0.867595,-0.852367,-1.060980,0.000025 +1.031840,-0.016092,-0.869478,-0.854207,-1.063280,0.000025 +1.034080,-0.016125,-0.871360,-0.856047,-1.065580,0.000025 +1.036330,-0.016158,-0.873242,-0.857887,-1.067880,0.000025 +1.038570,-0.016192,-0.875125,-0.859727,-1.070190,0.000025 +1.040820,-0.016225,-0.877007,-0.861567,-1.072490,0.000025 +1.043060,-0.016258,-0.878889,-0.863407,-1.074790,0.000025 +1.045310,-0.016292,-0.880772,-0.865247,-1.077100,0.000025 +1.047550,-0.016325,-0.882654,-0.867087,-1.079400,0.000025 +1.049800,-0.016358,-0.884536,-0.868927,-1.081700,0.000025 +1.052040,-0.016392,-0.886419,-0.870767,-1.084010,0.000025 +1.054280,-0.016425,-0.888301,-0.872607,-1.086310,0.000025 +1.056530,-0.016458,-0.890183,-0.874447,-1.088610,0.000025 +1.058770,-0.016491,-0.892066,-0.876287,-1.090920,0.000025 +1.061020,-0.016525,-0.893948,-0.878127,-1.093220,0.000025 +1.063260,-0.016558,-0.895830,-0.879967,-1.095520,0.000025 +1.065510,-0.016591,-0.897713,-0.881807,-1.097830,0.000026 +1.067750,-0.016625,-0.899595,-0.883647,-1.100130,0.000026 +1.070000,-0.016658,-0.901477,-0.885487,-1.102430,0.000026 +1.072240,-0.016692,-0.903360,-0.887327,-1.104740,0.000026 +1.074490,-0.016725,-0.905242,-0.889167,-1.107040,0.000026 +1.076730,-0.016758,-0.907124,-0.891007,-1.109340,0.000026 +1.078980,-0.016792,-0.909007,-0.892847,-1.111640,0.000026 +1.081220,-0.016825,-0.910889,-0.894687,-1.113950,0.000026 +1.083460,-0.016858,-0.912771,-0.896527,-1.116250,0.000026 +1.085710,-0.016892,-0.914654,-0.898367,-1.118550,0.000026 +1.087950,-0.016925,-0.916536,-0.900206,-1.120860,0.000026 +1.090200,-0.016958,-0.918418,-0.902046,-1.123160,0.000026 +1.092440,-0.016992,-0.920301,-0.903886,-1.125460,0.000026 +1.094690,-0.017025,-0.922183,-0.905726,-1.127770,0.000026 +1.096930,-0.017058,-0.924065,-0.907566,-1.130070,0.000026 +1.099180,-0.017091,-0.925948,-0.909406,-1.132370,0.000026 +1.101420,-0.017125,-0.927830,-0.911246,-1.134680,0.000026 +1.103670,-0.017158,-0.929712,-0.913086,-1.136980,0.000026 +1.105910,-0.017191,-0.931594,-0.914926,-1.139280,0.000026 +1.108150,-0.017225,-0.933477,-0.916766,-1.141590,0.000026 +1.110400,-0.017258,-0.935359,-0.918606,-1.143890,0.000027 +1.112640,-0.017292,-0.937241,-0.920446,-1.146190,0.000027 +1.114890,-0.017325,-0.939124,-0.922286,-1.148500,0.000027 +1.117130,-0.017358,-0.941006,-0.924126,-1.150800,0.000027 +1.119380,-0.017391,-0.942888,-0.925966,-1.153100,0.000027 +1.121620,-0.017425,-0.944771,-0.927806,-1.155410,0.000027 +1.123870,-0.017458,-0.946653,-0.929646,-1.157710,0.000027 +1.126110,-0.017491,-0.948535,-0.931486,-1.160010,0.000027 +1.128360,-0.017525,-0.950418,-0.933326,-1.162310,0.000027 +1.130600,-0.017558,-0.952300,-0.935166,-1.164620,0.000027 +1.132850,-0.017591,-0.954182,-0.937006,-1.166920,0.000027 +1.135090,-0.017625,-0.956065,-0.938846,-1.169220,0.000027 +1.137330,-0.017658,-0.957947,-0.940686,-1.171530,0.000027 +1.139580,-0.017691,-0.959829,-0.942526,-1.173830,0.000027 +1.141820,-0.017725,-0.961712,-0.944366,-1.176130,0.000027 +1.144070,-0.017758,-0.963594,-0.946206,-1.178440,0.000027 +1.146310,-0.017791,-0.965476,-0.948046,-1.180740,0.000027 +1.148560,-0.017825,-0.967359,-0.949886,-1.183040,0.000027 +1.150800,-0.017858,-0.969241,-0.951726,-1.185350,0.000027 +1.153050,-0.017891,-0.971123,-0.953566,-1.187650,0.000028 +1.155290,-0.017925,-0.973006,-0.955406,-1.189950,0.000028 +1.157540,-0.017958,-0.974888,-0.957246,-1.192260,0.000028 +1.159780,-0.017991,-0.976770,-0.959086,-1.194560,0.000028 +1.162020,-0.018025,-0.978653,-0.960926,-1.196860,0.000028 +1.164270,-0.018058,-0.980535,-0.962766,-1.199170,0.000028 +1.166510,-0.018091,-0.982417,-0.964606,-1.201470,0.000028 +1.168760,-0.018125,-0.984300,-0.966446,-1.203770,0.000028 +1.171000,-0.018158,-0.986182,-0.968286,-1.206070,0.000028 +1.173250,-0.018191,-0.988064,-0.970126,-1.208380,0.000028 +1.175490,-0.018225,-0.989947,-0.971966,-1.210680,0.000028 +1.177740,-0.018258,-0.991829,-0.973806,-1.212980,0.000028 +1.179980,-0.018291,-0.993711,-0.975646,-1.215290,0.000028 +1.182230,-0.018325,-0.995594,-0.977486,-1.217590,0.000028 +1.184470,-0.018358,-0.997476,-0.979326,-1.219890,0.000028 +1.186720,-0.018391,-0.999358,-0.981166,-1.222200,0.000028 +1.188960,-0.018425,-1.001240,-0.983006,-1.224500,0.000028 +1.191200,-0.018458,-1.003120,-0.984846,-1.226800,0.000028 +1.193450,-0.018491,-1.005010,-0.986686,-1.229110,0.000028 +1.195690,-0.018525,-1.006890,-0.988526,-1.231410,0.000028 +1.197940,-0.018558,-1.008770,-0.990366,-1.233710,0.000029 +1.200180,-0.018591,-1.010650,-0.992206,-1.236020,0.000029 +1.202430,-0.018625,-1.012530,-0.994046,-1.238320,0.000029 +1.204670,-0.018658,-1.014420,-0.995886,-1.240620,0.000029 +1.206920,-0.018691,-1.016300,-0.997726,-1.242930,0.000029 +1.209160,-0.018725,-1.018180,-0.999566,-1.245230,0.000029 +1.211410,-0.018758,-1.020060,-1.001410,-1.247530,0.000029 +1.213650,-0.018791,-1.021950,-1.003250,-1.249840,0.000029 +1.215890,-0.018825,-1.023830,-1.005090,-1.252140,0.000029 +1.218140,-0.018858,-1.025710,-1.006930,-1.254440,0.000029 +1.220380,-0.018891,-1.027590,-1.008770,-1.256740,0.000029 +1.222630,-0.018925,-1.029480,-1.010610,-1.259050,0.000029 +1.224870,-0.018958,-1.031360,-1.012450,-1.261350,0.000029 +1.227120,-0.018991,-1.033240,-1.014290,-1.263650,0.000029 +1.229360,-0.019025,-1.035120,-1.016130,-1.265960,0.000029 +1.231610,-0.019058,-1.037000,-1.017970,-1.268260,0.000029 +1.233850,-0.019091,-1.038890,-1.019810,-1.270560,0.000029 +1.236100,-0.019125,-1.040770,-1.021650,-1.272870,0.000029 +1.238340,-0.019158,-1.042650,-1.023490,-1.275170,0.000029 +1.240590,-0.019191,-1.044530,-1.025330,-1.277470,0.000030 +1.242830,-0.019225,-1.046420,-1.027170,-1.279780,0.000030 +1.245070,-0.019258,-1.048300,-1.029010,-1.282080,0.000030 +1.247320,-0.019291,-1.050180,-1.030850,-1.284380,0.000030 +1.249560,-0.019325,-1.052060,-1.032690,-1.286690,0.000030 +1.251810,-0.019358,-1.053950,-1.034530,-1.288990,0.000030 +1.254050,-0.019391,-1.055830,-1.036370,-1.291290,0.000030 +1.256300,-0.019425,-1.057710,-1.038210,-1.293600,0.000030 +1.258540,-0.019458,-1.059590,-1.040050,-1.295900,0.000030 +1.260790,-0.019491,-1.061470,-1.041890,-1.298200,0.000030 +1.263030,-0.019525,-1.063360,-1.043730,-1.300500,0.000030 +1.265280,-0.019558,-1.065240,-1.045570,-1.302810,0.000030 +1.267520,-0.019591,-1.067120,-1.047410,-1.305110,0.000030 +1.269760,-0.019625,-1.069000,-1.049250,-1.307410,0.000030 +1.272010,-0.019658,-1.070890,-1.051090,-1.309720,0.000030 +1.274250,-0.019691,-1.072770,-1.052930,-1.312020,0.000030 +1.276500,-0.019724,-1.074650,-1.054770,-1.314320,0.000030 +1.278740,-0.019758,-1.076530,-1.056610,-1.316630,0.000030 +1.280990,-0.019791,-1.078420,-1.058450,-1.318930,0.000030 +1.283230,-0.019824,-1.080300,-1.060290,-1.321230,0.000030 +1.285480,-0.019858,-1.082180,-1.062130,-1.323540,0.000031 +1.287720,-0.019891,-1.084060,-1.063970,-1.325840,0.000031 +1.289970,-0.019925,-1.085950,-1.065810,-1.328140,0.000031 +1.292210,-0.019958,-1.087830,-1.067650,-1.330450,0.000031 +1.294460,-0.019991,-1.089710,-1.069490,-1.332750,0.000031 +1.296700,-0.020025,-1.091590,-1.071330,-1.335050,0.000031 +1.298940,-0.020058,-1.093470,-1.073170,-1.337360,0.000031 +1.301190,-0.020091,-1.095360,-1.075010,-1.339660,0.000031 +1.303430,-0.020125,-1.097240,-1.076850,-1.341960,0.000031 +1.305680,-0.020158,-1.099120,-1.078690,-1.344260,0.000031 +1.307920,-0.020191,-1.101000,-1.080530,-1.346570,0.000031 +1.310170,-0.020224,-1.102890,-1.082370,-1.348870,0.000031 +1.312410,-0.020258,-1.104770,-1.084210,-1.351170,0.000031 +1.314660,-0.020291,-1.106650,-1.086050,-1.353480,0.000031 +1.316900,-0.020324,-1.108530,-1.087890,-1.355780,0.000031 +1.319150,-0.020358,-1.110420,-1.089730,-1.358080,0.000031 +1.321390,-0.020391,-1.112300,-1.091570,-1.360390,0.000031 +1.323630,-0.020425,-1.114180,-1.093410,-1.362690,0.000031 +1.325880,-0.020458,-1.116060,-1.095250,-1.364990,0.000031 +1.328120,-0.020491,-1.117940,-1.097090,-1.367300,0.000031 +1.330370,-0.020525,-1.119830,-1.098930,-1.369600,0.000032 +1.332610,-0.020558,-1.121710,-1.100770,-1.371900,0.000032 +1.334860,-0.020591,-1.123590,-1.102610,-1.374210,0.000032 +1.337100,-0.020625,-1.125470,-1.104450,-1.376510,0.000032 +1.339350,-0.020658,-1.127360,-1.106290,-1.378810,0.000032 +1.341590,-0.020691,-1.129240,-1.108130,-1.381120,0.000032 +1.343840,-0.020724,-1.131120,-1.109970,-1.383420,0.000032 +1.346080,-0.020758,-1.133000,-1.111810,-1.385720,0.000032 +1.348330,-0.020791,-1.134890,-1.113650,-1.388030,0.000032 +1.350570,-0.020824,-1.136770,-1.115480,-1.390330,0.000032 +1.352810,-0.020858,-1.138650,-1.117320,-1.392630,0.000032 +1.355060,-0.020891,-1.140530,-1.119160,-1.394930,0.000032 +1.357300,-0.020924,-1.142410,-1.121000,-1.397240,0.000032 +1.359550,-0.020958,-1.144300,-1.122840,-1.399540,0.000032 +1.361790,-0.020991,-1.146180,-1.124680,-1.401840,0.000032 +1.364040,-0.021024,-1.148060,-1.126520,-1.404150,0.000032 +1.366280,-0.021058,-1.149940,-1.128360,-1.406450,0.000032 +1.368530,-0.021091,-1.151830,-1.130200,-1.408750,0.000032 +1.370770,-0.021124,-1.153710,-1.132040,-1.411060,0.000032 +1.373020,-0.021158,-1.155590,-1.133880,-1.413360,0.000033 +1.375260,-0.021191,-1.157470,-1.135720,-1.415660,0.000033 +1.377500,-0.021224,-1.159360,-1.137560,-1.417970,0.000033 +1.379750,-0.021258,-1.161240,-1.139400,-1.420270,0.000033 +1.381990,-0.021291,-1.163120,-1.141240,-1.422570,0.000033 +1.384240,-0.021324,-1.165000,-1.143080,-1.424880,0.000033 +1.386480,-0.021358,-1.166890,-1.144920,-1.427180,0.000033 +1.388730,-0.021391,-1.168770,-1.146760,-1.429480,0.000033 +1.390970,-0.021424,-1.170650,-1.148600,-1.431790,0.000033 +1.393220,-0.021458,-1.172530,-1.150440,-1.434090,0.000033 +1.395460,-0.021491,-1.174410,-1.152280,-1.436390,0.000033 +1.397710,-0.021524,-1.176300,-1.154120,-1.438690,0.000033 +1.399950,-0.021558,-1.178180,-1.155960,-1.441000,0.000033 +1.402200,-0.021591,-1.180060,-1.157800,-1.443300,0.000033 +1.404440,-0.021624,-1.181940,-1.159640,-1.445600,0.000033 +1.406680,-0.021658,-1.183830,-1.161480,-1.447910,0.000033 +1.408930,-0.021691,-1.185710,-1.163320,-1.450210,0.000033 +1.411170,-0.021724,-1.187590,-1.165160,-1.452510,0.000033 +1.413420,-0.021758,-1.189470,-1.167000,-1.454820,0.000033 +1.415660,-0.021791,-1.191360,-1.168840,-1.457120,0.000033 +1.417910,-0.021824,-1.193240,-1.170680,-1.459420,0.000034 +1.420150,-0.021858,-1.195120,-1.172520,-1.461730,0.000034 +1.422400,-0.021891,-1.197000,-1.174360,-1.464030,0.000034 +1.424640,-0.021924,-1.198880,-1.176200,-1.466330,0.000034 +1.426890,-0.021958,-1.200770,-1.178040,-1.468640,0.000034 +1.429130,-0.021991,-1.202650,-1.179880,-1.470940,0.000034 +1.431370,-0.022024,-1.204530,-1.181720,-1.473240,0.000034 +1.433620,-0.022058,-1.206410,-1.183560,-1.475550,0.000034 +1.435860,-0.022091,-1.208300,-1.185400,-1.477850,0.000034 +1.438110,-0.022124,-1.210180,-1.187240,-1.480150,0.000034 +1.440350,-0.022158,-1.212060,-1.189080,-1.482460,0.000034 +1.442600,-0.022191,-1.213940,-1.190920,-1.484760,0.000034 +1.444840,-0.022224,-1.215830,-1.192760,-1.487060,0.000034 +1.447090,-0.022258,-1.217710,-1.194600,-1.489360,0.000034 +1.449330,-0.022291,-1.219590,-1.196440,-1.491670,0.000034 +1.451580,-0.022324,-1.221470,-1.198280,-1.493970,0.000034 +1.453820,-0.022358,-1.223350,-1.200120,-1.496270,0.000034 +1.456070,-0.022391,-1.225240,-1.201960,-1.498580,0.000034 +1.458310,-0.022424,-1.227120,-1.203800,-1.500880,0.000034 +1.460550,-0.022458,-1.229000,-1.205640,-1.503180,0.000034 +1.462800,-0.022491,-1.230880,-1.207480,-1.505490,0.000035 +1.465040,-0.022524,-1.232770,-1.209320,-1.507790,0.000035 +1.467290,-0.022558,-1.234650,-1.211160,-1.510090,0.000035 +1.469530,-0.022591,-1.236530,-1.213000,-1.512400,0.000035 +1.471780,-0.022624,-1.238410,-1.214840,-1.514700,0.000035 +1.474020,-0.022658,-1.240300,-1.216680,-1.517000,0.000035 +1.476270,-0.022691,-1.242180,-1.218520,-1.519310,0.000035 +1.478510,-0.022724,-1.244060,-1.220360,-1.521610,0.000035 +1.480760,-0.022758,-1.245940,-1.222200,-1.523910,0.000035 +1.483000,-0.022791,-1.247820,-1.224040,-1.526220,0.000035 +1.485240,-0.022824,-1.249710,-1.225880,-1.528520,0.000035 +1.487490,-0.022858,-1.251590,-1.227720,-1.530820,0.000035 +1.489730,-0.022891,-1.253470,-1.229560,-1.533120,0.000035 +1.491980,-0.022924,-1.255350,-1.231400,-1.535430,0.000035 +1.494220,-0.022958,-1.257240,-1.233240,-1.537730,0.000035 +1.496470,-0.022991,-1.259120,-1.235080,-1.540030,0.000035 +1.498710,-0.023024,-1.261000,-1.236920,-1.542340,0.000035 +1.500960,-0.023058,-1.262880,-1.238760,-1.544640,0.000035 +1.503200,-0.023091,-1.264770,-1.240600,-1.546940,0.000035 +1.505450,-0.023124,-1.266650,-1.242440,-1.549250,0.000036 +1.507690,-0.023158,-1.268530,-1.244280,-1.551550,0.000036 +1.509930,-0.023191,-1.270410,-1.246120,-1.553850,0.000036 +1.512170,-0.023224,-1.272300,-1.247960,-1.556160,0.000036 +1.514400,-0.023258,-1.274180,-1.249800,-1.558460,0.000036 +1.516620,-0.023291,-1.276060,-1.251640,-1.560760,0.000036 +1.518820,-0.023324,-1.277940,-1.253480,-1.563060,0.000036 +1.521000,-0.023358,-1.279820,-1.255320,-1.565360,0.000036 +1.523170,-0.023391,-1.281690,-1.257160,-1.567640,0.000036 +1.525300,-0.023424,-1.283550,-1.259000,-1.569910,0.000036 +1.527410,-0.023457,-1.285400,-1.260840,-1.572160,0.000036 +1.529490,-0.023491,-1.287230,-1.262680,-1.574390,0.000036 +1.531540,-0.023524,-1.289040,-1.264510,-1.576590,0.000036 +1.533540,-0.023557,-1.290820,-1.266340,-1.578770,0.000036 +1.535510,-0.023591,-1.292580,-1.268140,-1.580900,0.000036 +1.537430,-0.023624,-1.294310,-1.269940,-1.583010,0.000036 +1.539310,-0.023658,-1.296010,-1.271710,-1.585070,0.000036 +1.541130,-0.023691,-1.297670,-1.273450,-1.587080,0.000036 +1.542900,-0.023724,-1.299300,-1.275160,-1.589050,0.000036 +1.544610,-0.023758,-1.300870,-1.276850,-1.590960,0.000036 +1.546270,-0.023791,-1.302410,-1.278490,-1.592810,0.000037 +1.547860,-0.023824,-1.303890,-1.280100,-1.594610,0.000037 +1.549380,-0.023858,-1.305320,-1.281660,-1.596340,0.000037 +1.550830,-0.023891,-1.306700,-1.283170,-1.598000,0.000037 +1.552210,-0.023924,-1.308020,-1.284630,-1.599590,0.000037 +1.553510,-0.023958,-1.309270,-1.286030,-1.601100,0.000037 +1.554730,-0.023991,-1.310460,-1.287370,-1.602530,0.000037 +1.555870,-0.024024,-1.311580,-1.288650,-1.603880,0.000037 +1.556930,-0.024057,-1.312630,-1.289860,-1.605130,0.000037 +1.557900,-0.024091,-1.313600,-1.290990,-1.606300,0.000037 +1.558800,-0.024124,-1.314500,-1.292050,-1.607380,0.000037 +1.559620,-0.024157,-1.315320,-1.293040,-1.608360,0.000037 +1.560370,-0.024191,-1.316070,-1.293940,-1.609260,0.000037 +1.561050,-0.024224,-1.316750,-1.294750,-1.610080,0.000037 +1.561670,-0.024257,-1.317370,-1.295490,-1.610810,0.000037 +1.562230,-0.024291,-1.317920,-1.296160,-1.611480,0.000037 +1.562720,-0.024324,-1.318420,-1.296750,-1.612080,0.000037 +1.563160,-0.024357,-1.318860,-1.297280,-1.612610,0.000037 +1.563550,-0.024391,-1.319250,-1.297750,-1.613070,0.000037 +1.563900,-0.024424,-1.319600,-1.298160,-1.613480,0.000038 +1.564190,-0.024457,-1.319890,-1.298510,-1.613840,0.000038 +1.564450,-0.024491,-1.320140,-1.298820,-1.614140,0.000038 +1.564660,-0.024524,-1.320360,-1.299070,-1.614400,0.000038 +1.564840,-0.024557,-1.320540,-1.299290,-1.614610,0.000038 +1.564990,-0.024591,-1.320690,-1.299460,-1.614790,0.000038 +1.565100,-0.024624,-1.320800,-1.299600,-1.614930,0.000038 +1.565190,-0.024657,-1.320890,-1.299710,-1.615040,0.000038 +1.565260,-0.024691,-1.320960,-1.299800,-1.615120,0.000038 +1.565310,-0.024723,-1.321010,-1.299860,-1.615180,0.000038 +1.565350,-0.024750,-1.321040,-1.299890,-1.615220,0.000038 +1.565370,-0.024769,-1.321060,-1.299920,-1.615240,0.000038 +1.565380,-0.024780,-1.321080,-1.299930,-1.615250,0.000038 +1.565380,-0.024783,-1.321080,-1.299940,-1.615260,0.000038 +1.565380,-0.024784,-1.321080,-1.299940,-1.615260,0.000038 +1.565390,-0.024785,-1.321080,-1.299940,-1.615260,0.000048 +1.565390,-0.024785,-1.321080,-1.299940,-1.615260,0.000048 +1.565380,-0.024785,-1.321080,-1.299940,-1.615270,0.000048 +1.565350,-0.024785,-1.321080,-1.299940,-1.615300,0.000048 +1.565290,-0.024785,-1.321080,-1.299940,-1.615380,0.000048 +1.565170,-0.024785,-1.321080,-1.299940,-1.615520,0.000048 +1.564980,-0.024785,-1.321080,-1.299940,-1.615750,0.000048 +1.564700,-0.024785,-1.321080,-1.299940,-1.616080,0.000048 +1.564320,-0.024785,-1.321080,-1.299940,-1.616540,0.000048 +1.563830,-0.024785,-1.321080,-1.299940,-1.617130,0.000048 +1.563190,-0.024785,-1.321080,-1.299940,-1.617890,0.000048 +1.562410,-0.024785,-1.321080,-1.299940,-1.618830,0.000048 +1.561470,-0.024785,-1.321080,-1.299940,-1.619970,0.000048 +1.560390,-0.024785,-1.321080,-1.299940,-1.621330,0.000048 +1.559180,-0.024785,-1.321080,-1.299940,-1.622930,0.000048 +1.557860,-0.024785,-1.321080,-1.299940,-1.624780,0.000048 +1.556440,-0.024785,-1.321080,-1.299940,-1.626900,0.000048 +1.554950,-0.024785,-1.321080,-1.299940,-1.629270,0.000048 +1.553400,-0.024785,-1.321080,-1.299940,-1.631900,0.000048 +1.551800,-0.024785,-1.321080,-1.299940,-1.634800,0.000048 +1.550170,-0.024785,-1.321080,-1.299940,-1.637950,0.000048 +1.548530,-0.024785,-1.321080,-1.299940,-1.641360,0.000048 +1.546890,-0.024785,-1.321080,-1.299940,-1.645030,0.000048 +1.545250,-0.024785,-1.321080,-1.299940,-1.648960,0.000048 +1.543610,-0.024785,-1.321080,-1.299940,-1.653140,0.000048 +1.541970,-0.024785,-1.321080,-1.299940,-1.657590,0.000048 +1.540330,-0.024785,-1.321080,-1.299940,-1.662300,0.000048 +1.538690,-0.024785,-1.321080,-1.299940,-1.667260,0.000048 +1.537050,-0.024785,-1.321080,-1.299940,-1.672490,0.000048 +1.535400,-0.024785,-1.321080,-1.299940,-1.677970,0.000048 +1.533760,-0.024785,-1.321080,-1.299940,-1.683720,0.000048 +1.532120,-0.024785,-1.321080,-1.299940,-1.689720,0.000048 +1.530480,-0.024785,-1.321080,-1.299940,-1.695980,0.000048 +1.528840,-0.024785,-1.321080,-1.299940,-1.702500,0.000048 +1.527200,-0.024785,-1.321080,-1.299940,-1.709280,0.000048 +1.525560,-0.024785,-1.321080,-1.299940,-1.716320,0.000048 +1.523910,-0.024785,-1.321080,-1.299940,-1.723620,0.000048 +1.522270,-0.024785,-1.321080,-1.299940,-1.731180,0.000048 +1.520630,-0.024785,-1.321080,-1.299940,-1.739000,0.000048 +1.518990,-0.024785,-1.321080,-1.299940,-1.747070,0.000048 +1.517350,-0.024785,-1.321080,-1.299940,-1.755410,0.000048 +1.515710,-0.024785,-1.321080,-1.299940,-1.764000,0.000048 +1.514070,-0.024785,-1.321080,-1.299940,-1.772860,0.000048 +1.512430,-0.024785,-1.321080,-1.299940,-1.781970,0.000048 +1.510780,-0.024785,-1.321080,-1.299940,-1.791340,0.000048 +1.509140,-0.024785,-1.321080,-1.299940,-1.800970,0.000048 +1.507500,-0.024785,-1.321080,-1.299940,-1.810860,0.000048 +1.505860,-0.024785,-1.321080,-1.299940,-1.821010,0.000048 +1.504220,-0.024785,-1.321080,-1.299940,-1.831420,0.000048 +1.502580,-0.024785,-1.321080,-1.299940,-1.842090,0.000048 +1.500940,-0.024785,-1.321080,-1.299940,-1.853020,0.000048 +1.499290,-0.024785,-1.321080,-1.299940,-1.864200,0.000048 +1.497650,-0.024785,-1.321080,-1.299940,-1.875650,0.000048 +1.496010,-0.024785,-1.321080,-1.299940,-1.887360,0.000048 +1.494370,-0.024785,-1.321080,-1.299940,-1.899320,0.000048 +1.492730,-0.024785,-1.321080,-1.299940,-1.911540,0.000048 +1.491090,-0.024785,-1.321080,-1.299940,-1.924030,0.000048 +1.489450,-0.024785,-1.321080,-1.299940,-1.936770,0.000048 +1.487810,-0.024785,-1.321080,-1.299940,-1.949760,0.000048 +1.486160,-0.024785,-1.321080,-1.299940,-1.962980,0.000048 +1.484520,-0.024785,-1.321080,-1.299940,-1.976410,0.000048 +1.482880,-0.024785,-1.321080,-1.299940,-1.990020,0.000048 +1.481240,-0.024785,-1.321080,-1.299940,-2.003810,0.000048 +1.479600,-0.024785,-1.321080,-1.299940,-2.017750,0.000048 +1.477960,-0.024785,-1.321080,-1.299940,-2.031830,0.000048 +1.476320,-0.024785,-1.321080,-1.299940,-2.046010,0.000048 +1.474670,-0.024785,-1.321080,-1.299940,-2.060290,0.000048 +1.473030,-0.024785,-1.321080,-1.299940,-2.074640,0.000048 +1.471390,-0.024785,-1.321080,-1.299940,-2.089050,0.000048 +1.469750,-0.024785,-1.321080,-1.299940,-2.103490,0.000048 +1.468110,-0.024785,-1.321080,-1.299940,-2.117950,0.000048 +1.466470,-0.024785,-1.321080,-1.299940,-2.132400,0.000048 +1.464830,-0.024785,-1.321080,-1.299940,-2.146830,0.000048 +1.463190,-0.024785,-1.321080,-1.299940,-2.161210,0.000048 +1.461540,-0.024785,-1.321080,-1.299940,-2.175530,0.000048 +1.459900,-0.024785,-1.321080,-1.299940,-2.189770,0.000048 +1.458260,-0.024785,-1.321080,-1.299940,-2.203910,0.000048 +1.456620,-0.024785,-1.321080,-1.299940,-2.217930,0.000048 +1.454980,-0.024785,-1.321080,-1.299940,-2.231810,0.000048 +1.453340,-0.024785,-1.321080,-1.299940,-2.245530,0.000048 +1.451700,-0.024785,-1.321080,-1.299940,-2.259070,0.000048 +1.450050,-0.024785,-1.321080,-1.299940,-2.272410,0.000048 +1.448410,-0.024785,-1.321080,-1.299940,-2.285530,0.000048 +1.446770,-0.024785,-1.321080,-1.299940,-2.298420,0.000048 +1.445130,-0.024785,-1.321080,-1.299940,-2.311050,0.000048 +1.443490,-0.024785,-1.321080,-1.299940,-2.323420,0.000048 +1.441850,-0.024785,-1.321080,-1.299940,-2.335530,0.000048 +1.440210,-0.024785,-1.321080,-1.299940,-2.347380,0.000048 +1.438570,-0.024785,-1.321080,-1.299940,-2.358980,0.000048 +1.436920,-0.024785,-1.321080,-1.299940,-2.370310,0.000048 +1.435280,-0.024785,-1.321080,-1.299940,-2.381390,0.000048 +1.433640,-0.024785,-1.321080,-1.299940,-2.392200,0.000048 +1.432000,-0.024785,-1.321080,-1.299940,-2.402760,0.000048 +1.430360,-0.024785,-1.321080,-1.299940,-2.413060,0.000048 +1.428720,-0.024785,-1.321080,-1.299940,-2.423100,0.000048 +1.427080,-0.024785,-1.321080,-1.299940,-2.432880,0.000048 +1.425430,-0.024785,-1.321080,-1.299940,-2.442400,0.000048 +1.423790,-0.024785,-1.321080,-1.299940,-2.451660,0.000048 +1.422150,-0.024785,-1.321080,-1.299940,-2.460660,0.000048 +1.420510,-0.024785,-1.321080,-1.299940,-2.469400,0.000048 +1.418870,-0.024785,-1.321080,-1.299940,-2.477890,0.000048 +1.417230,-0.024785,-1.321080,-1.299940,-2.486110,0.000048 +1.415590,-0.024785,-1.321080,-1.299940,-2.494070,0.000048 +1.413950,-0.024785,-1.321080,-1.299940,-2.501780,0.000048 +1.412300,-0.024785,-1.321080,-1.299940,-2.509230,0.000048 +1.410660,-0.024785,-1.321080,-1.299940,-2.516410,0.000048 +1.409020,-0.024785,-1.321080,-1.299940,-2.523340,0.000048 +1.407380,-0.024785,-1.321080,-1.299940,-2.530010,0.000048 +1.405740,-0.024785,-1.321080,-1.299940,-2.536420,0.000048 +1.404100,-0.024785,-1.321080,-1.299940,-2.542570,0.000048 +1.402460,-0.024785,-1.321080,-1.299940,-2.548460,0.000048 +1.400810,-0.024785,-1.321080,-1.299940,-2.554090,0.000048 +1.399170,-0.024785,-1.321080,-1.299940,-2.559470,0.000048 +1.397530,-0.024785,-1.321080,-1.299940,-2.564580,0.000048 +1.395890,-0.024785,-1.321080,-1.299940,-2.569440,0.000048 +1.394250,-0.024785,-1.321080,-1.299940,-2.574030,0.000048 +1.392610,-0.024785,-1.321080,-1.299940,-2.578370,0.000048 +1.390970,-0.024785,-1.321080,-1.299940,-2.582440,0.000048 +1.389330,-0.024785,-1.321080,-1.299940,-2.586260,0.000048 +1.387680,-0.024785,-1.321080,-1.299940,-2.589820,0.000048 +1.386040,-0.024785,-1.321080,-1.299940,-2.593120,0.000048 +1.384400,-0.024785,-1.321080,-1.299940,-2.596160,0.000048 +1.382760,-0.024785,-1.321080,-1.299940,-2.598940,0.000048 +1.381120,-0.024785,-1.321080,-1.299940,-2.601460,0.000048 +1.379480,-0.024785,-1.321080,-1.299940,-2.603720,0.000048 +1.377840,-0.024785,-1.321080,-1.299940,-2.605730,0.000048 +1.376190,-0.024785,-1.321080,-1.299940,-2.607470,0.000048 +1.374550,-0.024785,-1.321080,-1.299940,-2.608960,0.000048 +1.372910,-0.024785,-1.321080,-1.299940,-2.610180,0.000048 +1.371270,-0.024785,-1.321080,-1.299940,-2.611150,0.000048 +1.369630,-0.024785,-1.321080,-1.299940,-2.611850,0.000048 +1.367990,-0.024785,-1.321080,-1.299940,-2.612300,0.000048 +1.366350,-0.024785,-1.321080,-1.299940,-2.612490,0.000048 +1.364710,-0.024785,-1.321080,-1.299940,-2.612420,0.000048 +1.363060,-0.024785,-1.321080,-1.299940,-2.612090,0.000048 +1.361420,-0.024785,-1.321080,-1.299940,-2.611500,0.000048 +1.359780,-0.024785,-1.321080,-1.299940,-2.610650,0.000048 +1.358140,-0.024785,-1.321080,-1.299940,-2.609550,0.000048 +1.356500,-0.024785,-1.321080,-1.299940,-2.608180,0.000048 +1.354860,-0.024785,-1.321080,-1.299940,-2.606550,0.000048 +1.353220,-0.024785,-1.321080,-1.299940,-2.604670,0.000048 +1.351570,-0.024785,-1.321080,-1.299940,-2.602520,0.000048 +1.349930,-0.024785,-1.321080,-1.299940,-2.600120,0.000048 +1.348290,-0.024785,-1.321080,-1.299940,-2.597460,0.000048 +1.346650,-0.024785,-1.321080,-1.299940,-2.594540,0.000048 +1.345010,-0.024785,-1.321080,-1.299940,-2.591360,0.000048 +1.343370,-0.024785,-1.321080,-1.299940,-2.587920,0.000048 +1.341730,-0.024785,-1.321080,-1.299940,-2.584220,0.000048 +1.340090,-0.024785,-1.321080,-1.299940,-2.580260,0.000048 +1.338440,-0.024785,-1.321080,-1.299940,-2.576040,0.000048 +1.336800,-0.024785,-1.321080,-1.299940,-2.571560,0.000048 +1.335160,-0.024785,-1.321080,-1.299940,-2.566830,0.000048 +1.333520,-0.024785,-1.321080,-1.299940,-2.561830,0.000048 +1.331880,-0.024785,-1.321080,-1.299940,-2.556580,0.000048 +1.330240,-0.024785,-1.321080,-1.299940,-2.551060,0.000048 +1.328600,-0.024785,-1.321080,-1.299940,-2.545290,0.000048 +1.326950,-0.024785,-1.321080,-1.299940,-2.539260,0.000048 +1.325310,-0.024785,-1.321080,-1.299940,-2.532970,0.000048 +1.323670,-0.024785,-1.321080,-1.299940,-2.526420,0.000048 +1.322030,-0.024785,-1.321080,-1.299940,-2.519610,0.000048 +1.320390,-0.024785,-1.321080,-1.299940,-2.512540,0.000048 +1.318750,-0.024785,-1.321080,-1.299940,-2.505210,0.000048 +1.317130,-0.024785,-1.321080,-1.299940,-2.497620,0.000048 +1.315530,-0.024785,-1.321080,-1.299940,-2.489770,0.000048 +1.313990,-0.024785,-1.321080,-1.299940,-2.481670,0.000048 +1.312510,-0.024785,-1.321080,-1.299940,-2.473300,0.000048 +1.311110,-0.024785,-1.321080,-1.299940,-2.464680,0.000048 +1.309800,-0.024785,-1.321080,-1.299940,-2.455790,0.000048 +1.308610,-0.024785,-1.321080,-1.299940,-2.446650,0.000048 +1.307550,-0.024785,-1.321080,-1.299940,-2.437250,0.000048 +1.306630,-0.024785,-1.321080,-1.299940,-2.427590,0.000048 +1.305870,-0.024785,-1.321080,-1.299940,-2.417670,0.000048 +1.305300,-0.024785,-1.321080,-1.299940,-2.407490,0.000048 +1.304910,-0.024785,-1.321080,-1.299940,-2.397050,0.000048 +1.304730,-0.024785,-1.321080,-1.299940,-2.386350,0.000048 +1.304770,-0.024785,-1.321080,-1.299940,-2.375390,0.000048 +1.305030,-0.024785,-1.321080,-1.299940,-2.364180,0.000048 +1.305500,-0.024785,-1.321080,-1.299940,-2.352700,0.000048 +1.306190,-0.024785,-1.321080,-1.299940,-2.340970,0.000048 +1.307100,-0.024785,-1.321080,-1.299940,-2.328970,0.000048 +1.308220,-0.024785,-1.321080,-1.299940,-2.316720,0.000048 +1.309560,-0.024785,-1.321080,-1.299940,-2.304210,0.000048 +1.311120,-0.024785,-1.321080,-1.299940,-2.291440,0.000048 +1.312890,-0.024785,-1.321080,-1.299940,-2.278410,0.000048 +1.314870,-0.024785,-1.321080,-1.299940,-2.265120,0.000048 +1.317080,-0.024785,-1.321080,-1.299940,-2.251570,0.000048 +1.319500,-0.024785,-1.321080,-1.299940,-2.237760,0.000048 +1.322130,-0.024785,-1.321080,-1.299940,-2.223700,0.000048 +1.324990,-0.024785,-1.321080,-1.299940,-2.209410,0.000048 +1.328060,-0.024785,-1.321080,-1.299940,-2.194910,0.000048 +1.331340,-0.024785,-1.321080,-1.299940,-2.180210,0.000048 +1.334840,-0.024785,-1.321080,-1.299940,-2.165350,0.000048 +1.338560,-0.024785,-1.321080,-1.299940,-2.150330,0.000048 +1.342500,-0.024785,-1.321080,-1.299940,-2.135170,0.000048 +1.346650,-0.024785,-1.321080,-1.299940,-2.119910,0.000048 +1.351020,-0.024785,-1.321080,-1.299940,-2.104540,0.000048 +1.355600,-0.024785,-1.321080,-1.299940,-2.089100,0.000048 +1.360400,-0.024785,-1.321080,-1.299940,-2.073610,0.000048 +1.365420,-0.024785,-1.321080,-1.299940,-2.058070,0.000048 +1.370650,-0.024785,-1.321080,-1.299940,-2.042520,0.000048 +1.376100,-0.024785,-1.321080,-1.299940,-2.026970,0.000048 +1.381770,-0.024785,-1.321080,-1.299940,-2.011390,0.000048 +1.387650,-0.024785,-1.321080,-1.299940,-1.995770,0.000048 +1.393750,-0.024785,-1.321080,-1.299940,-1.980090,0.000048 +1.400060,-0.024785,-1.321080,-1.299940,-1.964330,0.000048 +1.406590,-0.024785,-1.321080,-1.299940,-1.948470,0.000048 +1.413340,-0.024785,-1.321080,-1.299940,-1.932490,0.000048 +1.420300,-0.024785,-1.321080,-1.299940,-1.916380,0.000048 +1.427480,-0.024785,-1.321080,-1.299940,-1.900100,0.000048 +1.434880,-0.024785,-1.321080,-1.299940,-1.883650,0.000048 +1.442490,-0.024785,-1.321080,-1.299940,-1.867010,0.000048 +1.450320,-0.024785,-1.321080,-1.299940,-1.850150,0.000048 +1.458360,-0.024785,-1.321080,-1.299940,-1.833050,0.000048 +1.466600,-0.024785,-1.321080,-1.299940,-1.815720,0.000048 +1.475010,-0.024785,-1.321080,-1.299940,-1.798180,0.000048 +1.483580,-0.024785,-1.321080,-1.299940,-1.780440,0.000048 +1.492310,-0.024785,-1.321080,-1.299940,-1.762530,0.000048 +1.501160,-0.024785,-1.321080,-1.299940,-1.744460,0.000048 +1.510120,-0.024785,-1.321080,-1.299940,-1.726250,0.000048 +1.519180,-0.024785,-1.321080,-1.299940,-1.707930,0.000048 +1.528320,-0.024785,-1.321080,-1.299940,-1.689520,0.000048 +1.537530,-0.024785,-1.321080,-1.299940,-1.671020,0.000048 +1.546790,-0.024785,-1.321080,-1.299940,-1.652470,0.000048 +1.556080,-0.024785,-1.321080,-1.299940,-1.633870,0.000048 +1.565383,-0.024785,-1.321081,-1.299938,-1.615260,0.000048 +1.574707,-0.024785,-1.321081,-1.299938,-1.596611,0.000048 +1.584019,-0.024785,-1.321081,-1.299938,-1.577989,0.000048 +1.593304,-0.024785,-1.321081,-1.299938,-1.559418,0.000048 +1.602551,-0.024785,-1.321081,-1.299938,-1.540925,0.000048 +1.611746,-0.024785,-1.321081,-1.299938,-1.522535,0.000048 +1.620876,-0.024785,-1.321081,-1.299938,-1.504274,0.000048 +1.629929,-0.024785,-1.321081,-1.299938,-1.486168,0.000048 +1.638892,-0.024785,-1.321081,-1.299938,-1.468242,0.000048 +1.647753,-0.024785,-1.321081,-1.299938,-1.450520,0.000048 +1.656500,-0.024785,-1.321081,-1.299938,-1.433027,0.000048 +1.665119,-0.024785,-1.321081,-1.299938,-1.415788,0.000048 +1.673600,-0.024785,-1.321081,-1.299938,-1.398826,0.000048 +1.681930,-0.024785,-1.321081,-1.299938,-1.382166,0.000048 +1.690098,-0.024785,-1.321081,-1.299938,-1.365830,0.000048 +1.698093,-0.024785,-1.321081,-1.299938,-1.349841,0.000048 +1.705902,-0.024785,-1.321081,-1.299938,-1.334221,0.000048 +1.713517,-0.024785,-1.321081,-1.299938,-1.318993,0.000048 +1.720925,-0.024785,-1.321081,-1.299938,-1.304177,0.000048 +1.728116,-0.024785,-1.321081,-1.299938,-1.289793,0.000048 +1.735082,-0.024785,-1.321081,-1.299938,-1.275863,0.000048 +1.741811,-0.024785,-1.321081,-1.299938,-1.262405,0.000048 +1.748294,-0.024785,-1.321081,-1.299938,-1.249438,0.000048 +1.754523,-0.024785,-1.321081,-1.299938,-1.236980,0.000048 +1.760489,-0.024785,-1.321081,-1.299938,-1.225048,0.000048 +1.766183,-0.024785,-1.321081,-1.299938,-1.213659,0.000048 +1.771598,-0.024785,-1.321081,-1.299938,-1.202830,0.000048 +1.776726,-0.024785,-1.321081,-1.299938,-1.192574,0.000048 +1.781560,-0.024785,-1.321081,-1.299938,-1.182906,0.000048 +1.786093,-0.024785,-1.321081,-1.299938,-1.173840,0.000048 +1.790319,-0.024785,-1.321081,-1.299938,-1.165389,0.000048 +1.794231,-0.024785,-1.321081,-1.299938,-1.157563,0.000048 +1.797826,-0.024785,-1.321081,-1.299938,-1.150374,0.000048 +1.801097,-0.024785,-1.321081,-1.299938,-1.143833,0.000048 +1.804040,-0.024785,-1.321081,-1.299938,-1.137947,0.000048 +1.806650,-0.024785,-1.321081,-1.299938,-1.132725,0.000048 +1.808925,-0.024785,-1.321081,-1.299938,-1.128175,0.000048 +1.810862,-0.024785,-1.321081,-1.299938,-1.124303,0.000048 +1.812456,-0.024785,-1.321081,-1.299938,-1.121114,0.000048 +1.813707,-0.024785,-1.321081,-1.299938,-1.118612,0.000048 +1.814612,-0.024785,-1.321081,-1.299938,-1.116802,0.000048 +1.815170,-0.024785,-1.321081,-1.299938,-1.115685,0.000048 +1.815381,-0.024785,-1.321081,-1.299938,-1.115264,0.000048 +1.815244,-0.024785,-1.321081,-1.299938,-1.115538,0.000048 +1.814759,-0.024785,-1.321081,-1.299938,-1.116508,0.000048 +1.813927,-0.024785,-1.321081,-1.299938,-1.118172,0.000048 +1.812749,-0.024785,-1.321081,-1.299938,-1.120527,0.000048 +1.811227,-0.024785,-1.321081,-1.299938,-1.123571,0.000048 +1.809363,-0.024785,-1.321081,-1.299938,-1.127299,0.000048 +1.807160,-0.024785,-1.321081,-1.299938,-1.131707,0.000048 +1.804620,-0.024785,-1.321081,-1.299938,-1.136787,0.000048 +1.801747,-0.024785,-1.321081,-1.299938,-1.142533,0.000048 +1.798545,-0.024785,-1.321081,-1.299938,-1.148936,0.000048 +1.795018,-0.024785,-1.321081,-1.299938,-1.155989,0.000048 +1.791173,-0.024785,-1.321081,-1.299938,-1.163681,0.000048 +1.787012,-0.024785,-1.321081,-1.299938,-1.172001,0.000048 +1.782544,-0.024785,-1.321081,-1.299938,-1.180938,0.000048 +1.777773,-0.024785,-1.321081,-1.299938,-1.190480,0.000048 +1.772707,-0.024785,-1.321081,-1.299938,-1.200612,0.000048 +1.767352,-0.024785,-1.321081,-1.299938,-1.211322,0.000048 +1.761716,-0.024785,-1.321081,-1.299938,-1.222593,0.000048 +1.755807,-0.024785,-1.321081,-1.299938,-1.234412,0.000048 +1.749633,-0.024785,-1.321081,-1.299938,-1.246760,0.000048 +1.743203,-0.024785,-1.321081,-1.299938,-1.259620,0.000048 +1.736525,-0.024785,-1.321081,-1.299938,-1.272976,0.000048 +1.729609,-0.024785,-1.321081,-1.299938,-1.286808,0.000048 +1.722464,-0.024785,-1.321081,-1.299938,-1.301097,0.000048 +1.715101,-0.024785,-1.321081,-1.299938,-1.315824,0.000048 +1.707530,-0.024785,-1.321081,-1.299938,-1.330967,0.000048 +1.699760,-0.024785,-1.321081,-1.299938,-1.346505,0.000048 +1.691804,-0.024785,-1.321081,-1.299938,-1.362418,0.000048 +1.683672,-0.024785,-1.321081,-1.299938,-1.378683,0.000048 +1.675375,-0.024785,-1.321081,-1.299938,-1.395276,0.000048 +1.666925,-0.024785,-1.321081,-1.299938,-1.412176,0.000048 +1.658334,-0.024785,-1.321081,-1.299938,-1.429359,0.000048 +1.649613,-0.024785,-1.321081,-1.299938,-1.446800,0.000048 +1.640775,-0.024785,-1.321081,-1.299938,-1.464475,0.000048 +1.631833,-0.024785,-1.321081,-1.299938,-1.482361,0.000048 +1.622798,-0.024785,-1.321081,-1.299938,-1.500431,0.000048 +1.613683,-0.024785,-1.321081,-1.299938,-1.518661,0.000048 +1.604500,-0.024785,-1.321081,-1.299938,-1.537025,0.000048 +1.595264,-0.024785,-1.321081,-1.299938,-1.555499,0.000048 +1.585985,-0.024785,-1.321081,-1.299938,-1.574055,0.000048 +1.576678,-0.024785,-1.321081,-1.299938,-1.592669,0.000048 +1.567356,-0.024785,-1.321081,-1.299938,-1.611315,0.000048 +1.558030,-0.024785,-1.321081,-1.299938,-1.629966,0.000048 +1.548715,-0.024785,-1.321081,-1.299938,-1.648596,0.000048 +1.539423,-0.024785,-1.321081,-1.299938,-1.667180,0.000048 +1.530167,-0.024785,-1.321081,-1.299938,-1.685692,0.000048 +1.520960,-0.024785,-1.321081,-1.299938,-1.704105,0.000048 +1.511815,-0.024785,-1.321081,-1.299938,-1.722395,0.000048 +1.502745,-0.024785,-1.321081,-1.299938,-1.740536,0.000048 +1.493761,-0.024785,-1.321081,-1.299938,-1.758503,0.000048 +1.484878,-0.024785,-1.321081,-1.299938,-1.776270,0.000048 +1.476106,-0.024785,-1.321081,-1.299938,-1.793814,0.000048 +1.467459,-0.024785,-1.321081,-1.299938,-1.811108,0.000048 +1.458948,-0.024785,-1.321081,-1.299938,-1.828131,0.000048 +1.450585,-0.024785,-1.321081,-1.299938,-1.844857,0.000048 +1.442381,-0.024785,-1.321081,-1.299938,-1.861263,0.000048 +1.434349,-0.024785,-1.321081,-1.299938,-1.877327,0.000048 +1.426500,-0.024785,-1.321081,-1.299938,-1.893027,0.000048 +1.418843,-0.024785,-1.321081,-1.299938,-1.908340,0.000048 +1.411390,-0.024785,-1.321081,-1.299938,-1.923245,0.000048 +1.404152,-0.024785,-1.321081,-1.299938,-1.937722,0.000048 +1.397138,-0.024785,-1.321081,-1.299938,-1.951749,0.000048 +1.390358,-0.024785,-1.321081,-1.299938,-1.965309,0.000048 +1.383822,-0.024785,-1.321081,-1.299938,-1.978381,0.000048 +1.377539,-0.024785,-1.321081,-1.299938,-1.990949,0.000048 +1.371517,-0.024785,-1.321081,-1.299938,-2.002993,0.000048 +1.365764,-0.024785,-1.321081,-1.299938,-2.014498,0.000048 +1.360290,-0.024785,-1.321081,-1.299938,-2.025447,0.000048 +1.355100,-0.024785,-1.321081,-1.299938,-2.035825,0.000048 +1.350204,-0.024785,-1.321081,-1.299938,-2.045619,0.000048 +1.345607,-0.024785,-1.321081,-1.299938,-2.054813,0.000048 +1.341315,-0.024785,-1.321081,-1.299938,-2.063395,0.000048 +1.337336,-0.024785,-1.321081,-1.299938,-2.071354,0.000048 +1.333674,-0.024785,-1.321081,-1.299938,-2.078679,0.000048 +1.330334,-0.024785,-1.321081,-1.299938,-2.085358,0.000048 +1.327321,-0.024785,-1.321081,-1.299938,-2.091383,0.000048 +1.324640,-0.024785,-1.321081,-1.299938,-2.096746,0.000048 +1.322294,-0.024785,-1.321081,-1.299938,-2.101439,0.000048 +1.320286,-0.024785,-1.321081,-1.299938,-2.105455,0.000048 +1.318619,-0.024785,-1.321081,-1.299938,-2.108789,0.000048 +1.317295,-0.024785,-1.321081,-1.299938,-2.111436,0.000048 +1.316317,-0.024785,-1.321081,-1.299938,-2.113393,0.000048 +1.315685,-0.024785,-1.321081,-1.299938,-2.114656,0.000048 +1.315401,-0.024785,-1.321081,-1.299938,-2.115225,0.000048 +1.315464,-0.024785,-1.321081,-1.299938,-2.115098,0.000048 +1.315875,-0.024785,-1.321081,-1.299938,-2.114275,0.000048 +1.316634,-0.024785,-1.321081,-1.299938,-2.112758,0.000048 +1.317739,-0.024785,-1.321081,-1.299938,-2.110549,0.000048 +1.319188,-0.024785,-1.321081,-1.299938,-2.107650,0.000048 +1.320980,-0.024785,-1.321081,-1.299938,-2.104066,0.000048 +1.323112,-0.024785,-1.321081,-1.299938,-2.099802,0.000048 +1.325581,-0.024785,-1.321081,-1.299938,-2.094864,0.000048 +1.328384,-0.024785,-1.321081,-1.299938,-2.089258,0.000048 +1.331517,-0.024785,-1.321081,-1.299938,-2.082993,0.000048 +1.334975,-0.024785,-1.321081,-1.299938,-2.076076,0.000048 +1.338754,-0.024785,-1.321081,-1.299938,-2.068519,0.000048 +1.342848,-0.024785,-1.321081,-1.299938,-2.060331,0.000048 +1.347252,-0.024785,-1.321081,-1.299938,-2.051523,0.000048 +1.351959,-0.024785,-1.321081,-1.299938,-2.042108,0.000048 +1.356963,-0.024785,-1.321081,-1.299938,-2.032100,0.000048 +1.362258,-0.024785,-1.321081,-1.299938,-2.021511,0.000048 +1.367835,-0.024785,-1.321081,-1.299938,-2.010357,0.000048 +1.373687,-0.024785,-1.321081,-1.299938,-1.998653,0.000048 +1.379805,-0.024785,-1.321081,-1.299938,-1.986416,0.000048 +1.386182,-0.024785,-1.321081,-1.299938,-1.973662,0.000048 +1.392808,-0.024785,-1.321081,-1.299938,-1.960409,0.000048 +1.399675,-0.024785,-1.321081,-1.299938,-1.946676,0.000048 +1.406772,-0.024785,-1.321081,-1.299938,-1.932482,0.000048 +1.414090,-0.024785,-1.321081,-1.299938,-1.917846,0.000048 +1.421618,-0.024785,-1.321081,-1.299938,-1.902790,0.000048 +1.429346,-0.024785,-1.321081,-1.299938,-1.887333,0.000048 +1.437264,-0.024785,-1.321081,-1.299938,-1.871498,0.000048 +1.445360,-0.024785,-1.321081,-1.299938,-1.855306,0.000048 +1.453623,-0.024785,-1.321081,-1.299938,-1.838780,0.000048 +1.462042,-0.024785,-1.321081,-1.299938,-1.821943,0.000048 +1.470604,-0.024785,-1.321081,-1.299938,-1.804818,0.000048 +1.479298,-0.024785,-1.321081,-1.299938,-1.787430,0.000048 +1.488112,-0.024785,-1.321081,-1.299938,-1.769802,0.000048 +1.497034,-0.024785,-1.321081,-1.299938,-1.751959,0.000048 +1.506050,-0.024785,-1.321081,-1.299938,-1.733925,0.000048 +1.515149,-0.024785,-1.321081,-1.299938,-1.715727,0.000048 +1.524319,-0.024785,-1.321081,-1.299938,-1.697389,0.000048 +1.533545,-0.024785,-1.321081,-1.299938,-1.678936,0.000048 +1.542815,-0.024785,-1.321081,-1.299938,-1.660395,0.000048 +1.552117,-0.024785,-1.321081,-1.299938,-1.641791,0.000048 +1.561438,-0.024785,-1.321081,-1.299938,-1.623150,0.000048 +1.570764,-0.024785,-1.321081,-1.299938,-1.604499,0.000048 +1.580082,-0.024785,-1.321081,-1.299938,-1.585862,0.000048 +1.589380,-0.024785,-1.321081,-1.299938,-1.567266,0.000048 +1.598645,-0.024785,-1.321081,-1.299938,-1.548737,0.000048 +1.607863,-0.024785,-1.321081,-1.299938,-1.530300,0.000048 +1.617022,-0.024785,-1.321081,-1.299938,-1.511982,0.000048 +1.626109,-0.024785,-1.321081,-1.299938,-1.493807,0.000048 +1.635112,-0.024785,-1.321081,-1.299938,-1.475801,0.000048 +1.644018,-0.024785,-1.321081,-1.299938,-1.457990,0.000048 +1.652814,-0.024785,-1.321081,-1.299938,-1.440397,0.000048 +1.661489,-0.024785,-1.321081,-1.299938,-1.423048,0.000048 +1.670030,-0.024785,-1.321081,-1.299938,-1.405966,0.000048 +1.678425,-0.024785,-1.321081,-1.299938,-1.389175,0.000048 +1.686663,-0.024785,-1.321081,-1.299938,-1.372699,0.000048 +1.694733,-0.024785,-1.321081,-1.299938,-1.356561,0.000048 +1.702622,-0.024785,-1.321081,-1.299938,-1.340782,0.000048 +1.710320,-0.024785,-1.321081,-1.299938,-1.325386,0.000048 +1.717817,-0.024785,-1.321081,-1.299938,-1.310393,0.000048 +1.725101,-0.024785,-1.321081,-1.299938,-1.295824,0.000048 +1.732163,-0.024785,-1.321081,-1.299938,-1.281699,0.000048 +1.738993,-0.024785,-1.321081,-1.299938,-1.268039,0.000048 +1.745582,-0.024785,-1.321081,-1.299938,-1.254862,0.000048 +1.751920,-0.024785,-1.321081,-1.299938,-1.242186,0.000048 +1.757998,-0.024785,-1.321081,-1.299938,-1.230030,0.000048 +1.763808,-0.024785,-1.321081,-1.299938,-1.218410,0.000048 +1.769342,-0.024785,-1.321081,-1.299938,-1.207342,0.000048 +1.774592,-0.024785,-1.321081,-1.299938,-1.196841,0.000048 +1.779551,-0.024785,-1.321081,-1.299938,-1.186923,0.000048 +1.784212,-0.024785,-1.321081,-1.299938,-1.177601,0.000048 +1.788569,-0.024785,-1.321081,-1.299938,-1.168888,0.000048 +1.792615,-0.024785,-1.321081,-1.299938,-1.160796,0.000048 +1.796345,-0.024785,-1.321081,-1.299938,-1.153337,0.000048 +1.799753,-0.024785,-1.321081,-1.299938,-1.146520,0.000048 +1.802835,-0.024785,-1.321081,-1.299938,-1.140356,0.000048 +1.805587,-0.024785,-1.321081,-1.299938,-1.134852,0.000048 +1.808004,-0.024785,-1.321081,-1.299938,-1.130018,0.000048 +1.810084,-0.024785,-1.321081,-1.299938,-1.125858,0.000048 +1.811823,-0.024785,-1.321081,-1.299938,-1.122379,0.000048 +1.813220,-0.024785,-1.321081,-1.299938,-1.119586,0.000048 +1.814271,-0.024785,-1.321081,-1.299938,-1.117483,0.000048 +1.814977,-0.024785,-1.321081,-1.299938,-1.116073,0.000048 +1.815334,-0.024785,-1.321081,-1.299938,-1.115357,0.000048 +1.815344,-0.024785,-1.321081,-1.299938,-1.115337,0.000048 +1.815007,-0.024785,-1.321081,-1.299938,-1.116013,0.000048 +1.814321,-0.024785,-1.321081,-1.299938,-1.117383,0.000048 +1.813290,-0.024785,-1.321081,-1.299938,-1.119447,0.000048 +1.811913,-0.024785,-1.321081,-1.299938,-1.122200,0.000048 +1.810193,-0.024785,-1.321081,-1.299938,-1.125639,0.000048 +1.808133,-0.024785,-1.321081,-1.299938,-1.129760,0.000048 +1.805735,-0.024785,-1.321081,-1.299938,-1.134556,0.000048 +1.803002,-0.024785,-1.321081,-1.299938,-1.140021,0.000048 +1.799939,-0.024785,-1.321081,-1.299938,-1.146148,0.000048 +1.796549,-0.024785,-1.321081,-1.299938,-1.152927,0.000048 +1.792838,-0.024785,-1.321081,-1.299938,-1.160350,0.000048 +1.788810,-0.024785,-1.321081,-1.299938,-1.168405,0.000048 +1.784471,-0.024785,-1.321081,-1.299938,-1.177083,0.000048 +1.779828,-0.024785,-1.321081,-1.299938,-1.186370,0.000048 +1.774886,-0.024785,-1.321081,-1.299938,-1.196255,0.000048 +1.769652,-0.024785,-1.321081,-1.299938,-1.206722,0.000048 +1.764134,-0.024785,-1.321081,-1.299938,-1.217758,0.000048 +1.758340,-0.024785,-1.321081,-1.299938,-1.229347,0.000048 +1.752277,-0.024785,-1.321081,-1.299938,-1.241472,0.000048 +1.745954,-0.024785,-1.321081,-1.299938,-1.254119,0.000048 +1.739379,-0.024785,-1.321081,-1.299938,-1.267267,0.000048 +1.732563,-0.024785,-1.321081,-1.299938,-1.280900,0.000048 +1.725514,-0.024785,-1.321081,-1.299938,-1.294998,0.000048 +1.718242,-0.024785,-1.321081,-1.299938,-1.309542,0.000048 +1.710757,-0.024785,-1.321081,-1.299938,-1.324511,0.000048 +1.703070,-0.024785,-1.321081,-1.299938,-1.339885,0.000048 +1.695192,-0.024785,-1.321081,-1.299938,-1.355642,0.000048 +1.687133,-0.024785,-1.321081,-1.299938,-1.371761,0.000048 +1.678904,-0.024785,-1.321081,-1.299938,-1.388218,0.000048 +1.670517,-0.024785,-1.321081,-1.299938,-1.404991,0.000048 +1.661985,-0.024785,-1.321081,-1.299938,-1.422057,0.000048 +1.653317,-0.024785,-1.321081,-1.299938,-1.439392,0.000048 +1.644528,-0.024785,-1.321081,-1.299938,-1.456971,0.000048 +1.635628,-0.024785,-1.321081,-1.299938,-1.474771,0.000048 +1.626630,-0.024785,-1.321081,-1.299938,-1.492766,0.000048 +1.617547,-0.024785,-1.321081,-1.299938,-1.510931,0.000048 +1.608392,-0.024785,-1.321081,-1.299938,-1.529242,0.000048 +1.599177,-0.024785,-1.321081,-1.299938,-1.547673,0.000048 +1.589914,-0.024785,-1.321081,-1.299938,-1.566197,0.000048 +1.580618,-0.024785,-1.321081,-1.299938,-1.584790,0.000048 +1.571300,-0.024785,-1.321081,-1.299938,-1.603425,0.000048 +1.561975,-0.024785,-1.321081,-1.299938,-1.622077,0.000048 +1.552654,-0.024785,-1.321081,-1.299938,-1.640719,0.000048 +1.543350,-0.024785,-1.321081,-1.299938,-1.659326,0.000048 +1.534077,-0.024785,-1.321081,-1.299938,-1.677871,0.000048 +1.524848,-0.024785,-1.321081,-1.299938,-1.696329,0.000048 +1.515676,-0.024785,-1.321081,-1.299938,-1.714675,0.000048 +1.506572,-0.024785,-1.321081,-1.299938,-1.732882,0.000048 +1.497550,-0.024785,-1.321081,-1.299938,-1.750926,0.000048 +1.488623,-0.024785,-1.321081,-1.299938,-1.768780,0.000048 +1.479802,-0.024785,-1.321081,-1.299938,-1.786421,0.000048 +1.471101,-0.024785,-1.321081,-1.299938,-1.803824,0.000048 +1.462531,-0.024785,-1.321081,-1.299938,-1.820965,0.000048 +1.454104,-0.024785,-1.321081,-1.299938,-1.837819,0.000048 +1.445831,-0.024785,-1.321081,-1.299938,-1.854363,0.000048 +1.437725,-0.024785,-1.321081,-1.299938,-1.870575,0.000048 +1.429797,-0.024785,-1.321081,-1.299938,-1.886432,0.000048 +1.422058,-0.024785,-1.321081,-1.299938,-1.901911,0.000048 +1.414518,-0.024785,-1.321081,-1.299938,-1.916991,0.000048 +1.407187,-0.024785,-1.321081,-1.299938,-1.931651,0.000048 +1.400077,-0.024785,-1.321081,-1.299938,-1.945871,0.000048 +1.393197,-0.024785,-1.321081,-1.299938,-1.959631,0.000048 +1.386557,-0.024785,-1.321081,-1.299938,-1.972912,0.000048 +1.380165,-0.024785,-1.321081,-1.299938,-1.985695,0.000048 +1.374032,-0.024785,-1.321081,-1.299938,-1.997963,0.000048 +1.368164,-0.024785,-1.321081,-1.299938,-2.009698,0.000048 +1.362571,-0.024785,-1.321081,-1.299938,-2.020884,0.000048 +1.357260,-0.024785,-1.321081,-1.299938,-2.031506,0.000048 +1.352239,-0.024785,-1.321081,-1.299938,-2.041548,0.000048 +1.347514,-0.024785,-1.321081,-1.299938,-2.050997,0.000048 +1.343093,-0.024785,-1.321081,-1.299938,-2.059840,0.000048 +1.338981,-0.024785,-1.321081,-1.299938,-2.068064,0.000048 +1.335184,-0.024785,-1.321081,-1.299938,-2.075659,0.000048 +1.331707,-0.024785,-1.321081,-1.299938,-2.082612,0.000048 +1.328555,-0.024785,-1.321081,-1.299938,-2.088915,0.000048 +1.325734,-0.024785,-1.321081,-1.299938,-2.094559,0.000048 +1.323245,-0.024785,-1.321081,-1.299938,-2.099536,0.000048 +1.321094,-0.024785,-1.321081,-1.299938,-2.103839,0.000048 +1.319282,-0.024785,-1.321081,-1.299938,-2.107462,0.000048 +1.317813,-0.024785,-1.321081,-1.299938,-2.110400,0.000048 +1.316688,-0.024785,-1.321081,-1.299938,-2.112650,0.000048 +1.315910,-0.024785,-1.321081,-1.299938,-2.114207,0.000048 +1.315478,-0.024785,-1.321081,-1.299938,-2.115069,0.000048 +1.315395,-0.024785,-1.321081,-1.299938,-2.115237,0.000048 +1.315659,-0.024785,-1.321081,-1.299938,-2.114708,0.000048 +1.316271,-0.024785,-1.321081,-1.299938,-2.113484,0.000048 +1.317229,-0.024785,-1.321081,-1.299938,-2.111568,0.000048 +1.318533,-0.024785,-1.321081,-1.299938,-2.108960,0.000048 +1.320180,-0.024785,-1.321081,-1.299938,-2.105665,0.000048 +1.322169,-0.024785,-1.321081,-1.299938,-2.101688,0.000048 +1.324496,-0.024785,-1.321081,-1.299938,-2.097035,0.000048 +1.327158,-0.024785,-1.321081,-1.299938,-2.091710,0.000048 +1.330152,-0.024785,-1.321081,-1.299938,-2.085723,0.000048 +1.333473,-0.024785,-1.321081,-1.299938,-2.079081,0.000048 +1.337116,-0.024785,-1.321081,-1.299938,-2.071793,0.000048 +1.341078,-0.024785,-1.321081,-1.299938,-2.063871,0.000048 +1.345351,-0.024785,-1.321081,-1.299938,-2.055324,0.000048 +1.349931,-0.024785,-1.321081,-1.299938,-2.046164,0.000048 +1.354810,-0.024785,-1.321081,-1.299938,-2.036405,0.000048 +1.359983,-0.024785,-1.321081,-1.299938,-2.026060,0.000048 +1.365441,-0.024785,-1.321081,-1.299938,-2.015143,0.000048 +1.371178,-0.024785,-1.321081,-1.299938,-2.003670,0.000048 +1.377185,-0.024785,-1.321081,-1.299938,-1.991656,0.000048 +1.383454,-0.024785,-1.321081,-1.299938,-1.979119,0.000048 +1.389976,-0.024785,-1.321081,-1.299938,-1.966075,0.000048 +1.396742,-0.024785,-1.321081,-1.299938,-1.952543,0.000048 +1.403742,-0.024785,-1.321081,-1.299938,-1.938542,0.000048 +1.410968,-0.024785,-1.321081,-1.299938,-1.924090,0.000048 +1.418408,-0.024785,-1.321081,-1.299938,-1.909209,0.000048 +1.426053,-0.024785,-1.321081,-1.299938,-1.893919,0.000048 +1.433892,-0.024785,-1.321081,-1.299938,-1.878241,0.000048 +1.441914,-0.024785,-1.321081,-1.299938,-1.862197,0.000048 +1.450108,-0.024785,-1.321081,-1.299938,-1.845810,0.000048 +1.458462,-0.024785,-1.321081,-1.299938,-1.829102,0.000048 +1.466965,-0.024785,-1.321081,-1.299938,-1.812096,0.000048 +1.475605,-0.024785,-1.321081,-1.299938,-1.794816,0.000048 +1.484370,-0.024785,-1.321081,-1.299938,-1.777287,0.000048 +1.493247,-0.024785,-1.321081,-1.299938,-1.759531,0.000048 +1.502225,-0.024785,-1.321081,-1.299938,-1.741576,0.000048 +1.511291,-0.024785,-1.321081,-1.299938,-1.723444,0.000048 +1.520432,-0.024785,-1.321081,-1.299938,-1.705162,0.000048 +1.529636,-0.024785,-1.321081,-1.299938,-1.686754,0.000048 +1.538889,-0.024785,-1.321081,-1.299938,-1.668248,0.000048 +1.548179,-0.024785,-1.321081,-1.299938,-1.649667,0.000048 +1.557494,-0.024785,-1.321081,-1.299938,-1.631039,0.000048 +1.566819,-0.024785,-1.321081,-1.299938,-1.612388,0.000048 +1.576142,-0.024785,-1.321081,-1.299938,-1.593742,0.000048 +1.585450,-0.024785,-1.321081,-1.299938,-1.575126,0.000048 +1.594730,-0.024785,-1.321081,-1.299938,-1.556565,0.000048 +1.603970,-0.024785,-1.321081,-1.299938,-1.538086,0.000048 +1.613156,-0.024785,-1.321081,-1.299938,-1.519715,0.000048 +1.622275,-0.024785,-1.321081,-1.299938,-1.501476,0.000048 +1.631315,-0.024785,-1.321081,-1.299938,-1.483396,0.000048 +1.640263,-0.024785,-1.321081,-1.299938,-1.465499,0.000048 +1.649107,-0.024785,-1.321081,-1.299938,-1.447811,0.000048 +1.657835,-0.024785,-1.321081,-1.299938,-1.430356,0.000048 +1.666434,-0.024785,-1.321081,-1.299938,-1.413158,0.000048 +1.674892,-0.024785,-1.321081,-1.299938,-1.396241,0.000048 +1.683198,-0.024785,-1.321081,-1.299938,-1.379629,0.000048 +1.691340,-0.024785,-1.321081,-1.299938,-1.363345,0.000048 +1.699307,-0.024785,-1.321081,-1.299938,-1.347412,0.000048 +1.707088,-0.024785,-1.321081,-1.299938,-1.331851,0.000048 +1.714671,-0.024785,-1.321081,-1.299938,-1.316684,0.000048 +1.722046,-0.024785,-1.321081,-1.299938,-1.301934,0.000048 +1.729204,-0.024785,-1.321081,-1.299938,-1.287619,0.000048 +1.736133,-0.024785,-1.321081,-1.299938,-1.273760,0.000048 +1.742825,-0.024785,-1.321081,-1.299938,-1.260376,0.000048 +1.749270,-0.024785,-1.321081,-1.299938,-1.247486,0.000048 +1.755459,-0.024785,-1.321081,-1.299938,-1.235108,0.000048 +1.761383,-0.024785,-1.321081,-1.299938,-1.223259,0.000048 +1.767035,-0.024785,-1.321081,-1.299938,-1.211956,0.000048 +1.772406,-0.024785,-1.321081,-1.299938,-1.201213,0.000048 +1.777489,-0.024785,-1.321081,-1.299938,-1.191047,0.000048 +1.782277,-0.024785,-1.321081,-1.299938,-1.181471,0.000048 +1.786764,-0.024785,-1.321081,-1.299938,-1.172499,0.000048 +1.790942,-0.024785,-1.321081,-1.299938,-1.164143,0.000048 +1.794806,-0.024785,-1.321081,-1.299938,-1.156415,0.000048 +1.798351,-0.024785,-1.321081,-1.299938,-1.149325,0.000048 +1.801571,-0.024785,-1.321081,-1.299938,-1.142883,0.000048 +1.804463,-0.024785,-1.321081,-1.299938,-1.137099,0.000048 +1.807023,-0.024785,-1.321081,-1.299938,-1.131981,0.000048 +1.809246,-0.024785,-1.321081,-1.299938,-1.127535,0.000048 +1.811129,-0.024785,-1.321081,-1.299938,-1.123767,0.000048 +1.812671,-0.024785,-1.321081,-1.299938,-1.120684,0.000048 +1.813869,-0.024785,-1.321081,-1.299938,-1.118289,0.000048 +1.814721,-0.024785,-1.321081,-1.299938,-1.116585,0.000048 +1.815225,-0.024785,-1.321081,-1.299938,-1.115575,0.000048 +1.815383,-0.024785,-1.321081,-1.299938,-1.115261,0.000048 +1.815192,-0.024785,-1.321081,-1.299938,-1.115642,0.000048 +1.814654,-0.024785,-1.321081,-1.299938,-1.116719,0.000048 +1.813768,-0.024785,-1.321081,-1.299938,-1.118489,0.000048 +1.812537,-0.024785,-1.321081,-1.299938,-1.120951,0.000048 +1.810963,-0.024785,-1.321081,-1.299938,-1.124101,0.000048 +1.809046,-0.024785,-1.321081,-1.299938,-1.127934,0.000048 +1.806791,-0.024785,-1.321081,-1.299938,-1.132445,0.000048 +1.804199,-0.024785,-1.321081,-1.299938,-1.137628,0.000048 +1.801275,-0.024785,-1.321081,-1.299938,-1.143476,0.000048 +1.798023,-0.024785,-1.321081,-1.299938,-1.149980,0.000048 +1.794447,-0.024785,-1.321081,-1.299938,-1.157132,0.000048 +1.790552,-0.024785,-1.321081,-1.299938,-1.164921,0.000048 +1.786344,-0.024785,-1.321081,-1.299938,-1.173337,0.000048 +1.781829,-0.024785,-1.321081,-1.299938,-1.182368,0.000048 +1.777012,-0.024785,-1.321081,-1.299938,-1.192001,0.000048 +1.771901,-0.024785,-1.321081,-1.299938,-1.202224,0.000048 +1.766503,-0.024785,-1.321081,-1.299938,-1.213021,0.000048 +1.760824,-0.024785,-1.321081,-1.299938,-1.224378,0.000048 +1.754874,-0.024785,-1.321081,-1.299938,-1.236278,0.000048 +1.748660,-0.024785,-1.321081,-1.299938,-1.248707,0.000048 +1.742191,-0.024785,-1.321081,-1.299938,-1.261645,0.000048 +1.735475,-0.024785,-1.321081,-1.299938,-1.275075,0.000048 +1.728524,-0.024785,-1.321081,-1.299938,-1.288979,0.000048 +1.721345,-0.024785,-1.321081,-1.299938,-1.303337,0.000048 +1.713949,-0.024785,-1.321081,-1.299938,-1.318128,0.000048 +1.706346,-0.024785,-1.321081,-1.299938,-1.333334,0.000048 +1.698547,-0.024785,-1.321081,-1.299938,-1.348931,0.000048 +1.690563,-0.024785,-1.321081,-1.299938,-1.364900,0.000048 +1.682405,-0.024785,-1.321081,-1.299938,-1.381216,0.000048 +1.674084,-0.024785,-1.321081,-1.299938,-1.397859,0.000048 +1.665611,-0.024785,-1.321081,-1.299938,-1.414803,0.000048 +1.656999,-0.024785,-1.321081,-1.299938,-1.432027,0.000048 +1.648260,-0.024785,-1.321081,-1.299938,-1.449506,0.000048 +1.639405,-0.024785,-1.321081,-1.299938,-1.467216,0.000048 +1.630447,-0.024785,-1.321081,-1.299938,-1.485131,0.000048 +1.621399,-0.024785,-1.321081,-1.299938,-1.503228,0.000048 +1.612273,-0.024785,-1.321081,-1.299938,-1.521480,0.000048 +1.603082,-0.024785,-1.321081,-1.299938,-1.539863,0.000048 +1.593838,-0.024785,-1.321081,-1.299938,-1.558351,0.000048 +1.584554,-0.024785,-1.321081,-1.299938,-1.576918,0.000048 +1.575244,-0.024785,-1.321081,-1.299938,-1.595538,0.000048 +1.565920,-0.024785,-1.321081,-1.299938,-1.614186,0.000048 +1.556595,-0.024785,-1.321081,-1.299938,-1.632836,0.000048 +1.547283,-0.024785,-1.321081,-1.299938,-1.651460,0.000048 +1.537995,-0.024785,-1.321081,-1.299938,-1.670035,0.000048 +1.528746,-0.024785,-1.321081,-1.299938,-1.688533,0.000048 +1.519548,-0.024785,-1.321081,-1.299938,-1.706930,0.000048 +1.510414,-0.024785,-1.321081,-1.299938,-1.725198,0.000048 +1.501356,-0.024785,-1.321081,-1.299938,-1.743314,0.000048 +1.492387,-0.024785,-1.321081,-1.299938,-1.761252,0.000048 +1.483520,-0.024785,-1.321081,-1.299938,-1.778986,0.000048 +1.474767,-0.024785,-1.321081,-1.299938,-1.796493,0.000048 +1.466139,-0.024785,-1.321081,-1.299938,-1.813747,0.000048 +1.457650,-0.024785,-1.321081,-1.299938,-1.830725,0.000048 +1.449311,-0.024785,-1.321081,-1.299938,-1.847404,0.000048 +1.441133,-0.024785,-1.321081,-1.299938,-1.863759,0.000048 +1.433129,-0.024785,-1.321081,-1.299938,-1.879769,0.000048 +1.425308,-0.024785,-1.321081,-1.299938,-1.895410,0.000048 +1.417682,-0.024785,-1.321081,-1.299938,-1.910662,0.000048 +1.410262,-0.024785,-1.321081,-1.299938,-1.925502,0.000048 +1.403058,-0.024785,-1.321081,-1.299938,-1.939911,0.000048 +1.396079,-0.024785,-1.321081,-1.299938,-1.953868,0.000048 +1.389336,-0.024785,-1.321081,-1.299938,-1.967354,0.000048 +1.382838,-0.024785,-1.321081,-1.299938,-1.980350,0.000048 +1.376594,-0.024785,-1.321081,-1.299938,-1.992837,0.000048 +1.370613,-0.024785,-1.321081,-1.299938,-2.004800,0.000048 +1.364903,-0.024785,-1.321081,-1.299938,-2.016220,0.000048 +1.359472,-0.024785,-1.321081,-1.299938,-2.027082,0.000048 +1.354327,-0.024785,-1.321081,-1.299938,-2.037371,0.000048 +1.349476,-0.024785,-1.321081,-1.299938,-2.047073,0.000048 +1.344926,-0.024785,-1.321081,-1.299938,-2.056174,0.000048 +1.340682,-0.024785,-1.321081,-1.299938,-2.064662,0.000048 +1.336751,-0.024785,-1.321081,-1.299938,-2.072524,0.000048 +1.333138,-0.024785,-1.321081,-1.299938,-2.079749,0.000048 +1.329849,-0.024785,-1.321081,-1.299938,-2.086329,0.000048 +1.326887,-0.024785,-1.321081,-1.299938,-2.092252,0.000048 +1.324257,-0.024785,-1.321081,-1.299938,-2.097512,0.000048 +1.321962,-0.024785,-1.321081,-1.299938,-2.102101,0.000048 +1.320007,-0.024785,-1.321081,-1.299938,-2.106013,0.000048 +1.318392,-0.024785,-1.321081,-1.299938,-2.109241,0.000048 +1.317122,-0.024785,-1.321081,-1.299938,-2.111782,0.000048 +1.316197,-0.024785,-1.321081,-1.299938,-2.113633,0.000048 +1.315618,-0.024785,-1.321081,-1.299938,-2.114789,0.000048 +1.315388,-0.024785,-1.321081,-1.299938,-2.115251,0.000048 +1.315505,-0.024785,-1.321081,-1.299938,-2.115016,0.000048 +1.315970,-0.024785,-1.321081,-1.299938,-2.114087,0.000048 +1.316782,-0.024785,-1.321081,-1.299938,-2.112463,0.000048 +1.317939,-0.024785,-1.321081,-1.299938,-2.110147,0.000048 +1.319442,-0.024785,-1.321081,-1.299938,-2.107143,0.000048 +1.321286,-0.024785,-1.321081,-1.299938,-2.103454,0.000048 +1.323470,-0.024785,-1.321081,-1.299938,-2.099085,0.000048 +1.325991,-0.024785,-1.321081,-1.299938,-2.094044,0.000048 +1.328845,-0.024785,-1.321081,-1.299938,-2.088336,0.000048 +1.332028,-0.024785,-1.321081,-1.299938,-2.081970,0.000048 +1.335536,-0.024785,-1.321081,-1.299938,-2.074954,0.000048 +1.339363,-0.024785,-1.321081,-1.299938,-2.067299,0.000048 +1.343506,-0.024785,-1.321081,-1.299938,-2.059015,0.000048 +1.347957,-0.024785,-1.321081,-1.299938,-2.050113,0.000048 +1.352710,-0.024785,-1.321081,-1.299938,-2.040606,0.000048 +1.357760,-0.024785,-1.321081,-1.299938,-2.030507,0.000048 +1.363098,-0.024785,-1.321081,-1.299938,-2.019830,0.000048 +1.368718,-0.024785,-1.321081,-1.299938,-2.008590,0.000048 +1.374611,-0.024785,-1.321081,-1.299938,-1.996803,0.000048 +1.380770,-0.024785,-1.321081,-1.299938,-1.984485,0.000048 +1.387186,-0.024785,-1.321081,-1.299938,-1.971653,0.000048 +1.393850,-0.024785,-1.321081,-1.299938,-1.958326,0.000048 +1.400753,-0.024785,-1.321081,-1.299938,-1.944521,0.000048 +1.407884,-0.024785,-1.321081,-1.299938,-1.930257,0.000048 +1.415235,-0.024785,-1.321081,-1.299938,-1.915555,0.000048 +1.422795,-0.024785,-1.321081,-1.299938,-1.900436,0.000048 +1.430553,-0.024785,-1.321081,-1.299938,-1.884919,0.000048 +1.438499,-0.024785,-1.321081,-1.299938,-1.869028,0.000048 +1.446622,-0.024785,-1.321081,-1.299938,-1.852783,0.000048 +1.454909,-0.024785,-1.321081,-1.299938,-1.836207,0.000048 +1.463351,-0.024785,-1.321081,-1.299938,-1.819325,0.000048 +1.471934,-0.024785,-1.321081,-1.299938,-1.802158,0.000048 +1.480648,-0.024785,-1.321081,-1.299938,-1.784731,0.000048 +1.489479,-0.024785,-1.321081,-1.299938,-1.767068,0.000048 +1.498416,-0.024785,-1.321081,-1.299938,-1.749194,0.000048 +1.507446,-0.024785,-1.321081,-1.299938,-1.731134,0.000048 +1.516540,-0.024785,-1.321080,-1.299940,-1.712950,0.000048 +1.525700,-0.024785,-1.321080,-1.299940,-1.694610,0.000048 +1.534920,-0.024785,-1.321080,-1.299940,-1.676140,0.000048 +1.544190,-0.024785,-1.321080,-1.299940,-1.657550,0.000048 +1.553500,-0.024785,-1.321080,-1.299940,-1.638850,0.000048 +1.562830,-0.024785,-1.321080,-1.299940,-1.620060,0.000048 +1.572180,-0.024785,-1.321080,-1.299940,-1.601180,0.000048 +1.581530,-0.024785,-1.321080,-1.299940,-1.582230,0.000048 +1.590870,-0.024785,-1.321080,-1.299940,-1.563220,0.000048 +1.600200,-0.024785,-1.321080,-1.299940,-1.544170,0.000048 +1.609500,-0.024785,-1.321080,-1.299940,-1.525090,0.000048 +1.618770,-0.024785,-1.321080,-1.299940,-1.506000,0.000048 +1.627980,-0.024785,-1.321080,-1.299940,-1.486890,0.000048 +1.637130,-0.024785,-1.321080,-1.299940,-1.467800,0.000048 +1.646210,-0.024785,-1.321080,-1.299940,-1.448720,0.000048 +1.655210,-0.024785,-1.321080,-1.299940,-1.429680,0.000048 +1.664130,-0.024785,-1.321080,-1.299940,-1.410690,0.000048 +1.672960,-0.024785,-1.321080,-1.299940,-1.391750,0.000048 +1.681700,-0.024785,-1.321080,-1.299940,-1.372890,0.000048 +1.690360,-0.024785,-1.321080,-1.299940,-1.354110,0.000048 +1.698940,-0.024785,-1.321080,-1.299940,-1.335430,0.000048 +1.707430,-0.024785,-1.321080,-1.299940,-1.316870,0.000048 +1.715840,-0.024785,-1.321080,-1.299940,-1.298430,0.000048 +1.724160,-0.024785,-1.321080,-1.299940,-1.280120,0.000048 +1.732390,-0.024785,-1.321080,-1.299940,-1.261970,0.000048 +1.740550,-0.024785,-1.321080,-1.299940,-1.243980,0.000048 +1.748610,-0.024785,-1.321080,-1.299940,-1.226160,0.000048 +1.756600,-0.024785,-1.321080,-1.299940,-1.208540,0.000048 +1.764490,-0.024785,-1.321080,-1.299940,-1.191120,0.000048 +1.772300,-0.024785,-1.321080,-1.299940,-1.173900,0.000048 +1.780030,-0.024785,-1.321080,-1.299940,-1.156890,0.000048 +1.787670,-0.024785,-1.321080,-1.299940,-1.140070,0.000048 +1.795230,-0.024785,-1.321080,-1.299940,-1.123420,0.000048 +1.802710,-0.024785,-1.321080,-1.299940,-1.106930,0.000048 +1.810090,-0.024785,-1.321080,-1.299940,-1.090600,0.000048 +1.817400,-0.024785,-1.321080,-1.299940,-1.074400,0.000048 +1.824610,-0.024785,-1.321080,-1.299940,-1.058320,0.000048 +1.831750,-0.024785,-1.321080,-1.299940,-1.042350,0.000048 +1.838800,-0.024785,-1.321080,-1.299940,-1.026480,0.000048 +1.845760,-0.024785,-1.321080,-1.299940,-1.010690,0.000048 +1.852640,-0.024785,-1.321080,-1.299940,-0.994978,0.000048 +1.859430,-0.024785,-1.321080,-1.299940,-0.979321,0.000048 +1.866140,-0.024785,-1.321080,-1.299940,-0.963710,0.000048 +1.872770,-0.024785,-1.321080,-1.299940,-0.948131,0.000048 +1.879310,-0.024785,-1.321080,-1.299940,-0.932571,0.000048 +1.885760,-0.024785,-1.321080,-1.299940,-0.917019,0.000048 +1.892130,-0.024785,-1.321080,-1.299940,-0.901473,0.000048 +1.898420,-0.024785,-1.321080,-1.299940,-0.885947,0.000048 +1.904620,-0.024785,-1.321080,-1.299940,-0.870453,0.000048 +1.910730,-0.024785,-1.321080,-1.299940,-0.855005,0.000048 +1.916760,-0.024785,-1.321080,-1.299940,-0.839615,0.000048 +1.922710,-0.024785,-1.321080,-1.299940,-0.824296,0.000048 +1.928570,-0.024785,-1.321080,-1.299940,-0.809062,0.000048 +1.934350,-0.024785,-1.321080,-1.299940,-0.793924,0.000048 +1.940040,-0.024785,-1.321080,-1.299940,-0.778897,0.000048 +1.945640,-0.024785,-1.321080,-1.299940,-0.763993,0.000048 +1.951170,-0.024785,-1.321080,-1.299940,-0.749225,0.000048 +1.956600,-0.024785,-1.321080,-1.299940,-0.734606,0.000048 +1.961950,-0.024785,-1.321080,-1.299940,-0.720149,0.000048 +1.967220,-0.024785,-1.321080,-1.299940,-0.705867,0.000048 +1.972400,-0.024785,-1.321080,-1.299940,-0.691772,0.000048 +1.977500,-0.024785,-1.321080,-1.299940,-0.677879,0.000048 +1.982510,-0.024785,-1.321080,-1.299940,-0.664199,0.000048 +1.987440,-0.024785,-1.321080,-1.299940,-0.650747,0.000048 +1.992280,-0.024785,-1.321080,-1.299940,-0.637534,0.000048 +1.997040,-0.024785,-1.321080,-1.299940,-0.624573,0.000048 +2.001710,-0.024785,-1.321080,-1.299940,-0.611871,0.000048 +2.006300,-0.024785,-1.321080,-1.299940,-0.599429,0.000048 +2.010810,-0.024785,-1.321080,-1.299940,-0.587245,0.000048 +2.015220,-0.024785,-1.321080,-1.299940,-0.575321,0.000048 +2.019560,-0.024785,-1.321080,-1.299940,-0.563656,0.000048 +2.023810,-0.024785,-1.321080,-1.299940,-0.552251,0.000048 +2.027970,-0.024785,-1.321080,-1.299940,-0.541104,0.000048 +2.032050,-0.024785,-1.321080,-1.299940,-0.530217,0.000048 +2.036050,-0.024785,-1.321080,-1.299940,-0.519589,0.000048 +2.039950,-0.024785,-1.321080,-1.299940,-0.509220,0.000048 +2.043780,-0.024785,-1.321080,-1.299940,-0.499111,0.000048 +2.047520,-0.024785,-1.321080,-1.299940,-0.489260,0.000048 +2.051170,-0.024785,-1.321080,-1.299940,-0.479669,0.000048 +2.054740,-0.024785,-1.321080,-1.299940,-0.470337,0.000048 +2.058230,-0.024785,-1.321080,-1.299940,-0.461264,0.000048 +2.061630,-0.024785,-1.321080,-1.299940,-0.452451,0.000048 +2.064950,-0.024785,-1.321080,-1.299940,-0.443896,0.000048 +2.068180,-0.024785,-1.321080,-1.299940,-0.435601,0.000048 +2.071320,-0.024785,-1.321080,-1.299940,-0.427565,0.000048 +2.074380,-0.024785,-1.321080,-1.299940,-0.419788,0.000048 +2.077360,-0.024785,-1.321080,-1.299940,-0.412271,0.000048 +2.080250,-0.024785,-1.321080,-1.299940,-0.405013,0.000048 +2.083060,-0.024785,-1.321080,-1.299940,-0.398013,0.000048 +2.085780,-0.024785,-1.321080,-1.299940,-0.391273,0.000048 +2.088420,-0.024785,-1.321080,-1.299940,-0.384793,0.000048 +2.090970,-0.024785,-1.321080,-1.299940,-0.378571,0.000048 +2.093440,-0.024785,-1.321080,-1.299940,-0.372609,0.000048 +2.095820,-0.024785,-1.321080,-1.299940,-0.366906,0.000048 +2.098120,-0.024785,-1.321080,-1.299940,-0.361462,0.000048 +2.100330,-0.024785,-1.321080,-1.299940,-0.356277,0.000048 +2.102460,-0.024785,-1.321080,-1.299940,-0.351352,0.000048 +2.104500,-0.024785,-1.321080,-1.299940,-0.346686,0.000048 +2.106460,-0.024785,-1.321080,-1.299940,-0.342278,0.000048 +2.108330,-0.024785,-1.321080,-1.299940,-0.338131,0.000048 +2.110120,-0.024785,-1.321080,-1.299940,-0.334242,0.000048 +2.111820,-0.024785,-1.321080,-1.299940,-0.330613,0.000048 +2.113440,-0.024785,-1.321080,-1.299940,-0.327242,0.000048 +2.114980,-0.024785,-1.321080,-1.299940,-0.324131,0.000048 +2.116430,-0.024785,-1.321080,-1.299940,-0.321279,0.000048 +2.117790,-0.024785,-1.321080,-1.299940,-0.318687,0.000048 +2.119070,-0.024785,-1.321080,-1.299940,-0.316346,0.000048 +2.120260,-0.024785,-1.321080,-1.299940,-0.314246,0.000048 +2.121370,-0.024785,-1.321080,-1.299940,-0.312372,0.000048 +2.122400,-0.024785,-1.321080,-1.299940,-0.310712,0.000048 +2.123340,-0.024785,-1.321080,-1.299940,-0.309253,0.000048 +2.124190,-0.024785,-1.321080,-1.299940,-0.307982,0.000048 +2.124960,-0.024785,-1.321080,-1.299940,-0.306886,0.000048 +2.125650,-0.024785,-1.321080,-1.299940,-0.305952,0.000048 +2.126250,-0.024785,-1.321080,-1.299940,-0.305167,0.000048 +2.126770,-0.024785,-1.321080,-1.299940,-0.304518,0.000048 +2.127200,-0.024785,-1.321080,-1.299940,-0.303992,0.000048 +2.127540,-0.024785,-1.321080,-1.299940,-0.303577,0.000048 +2.127810,-0.024785,-1.321080,-1.299940,-0.303259,0.000048 +2.128010,-0.024785,-1.321080,-1.299940,-0.303025,0.000048 +2.128140,-0.024785,-1.321080,-1.299940,-0.302862,0.000048 +2.128230,-0.024785,-1.321080,-1.299940,-0.302758,0.000048 +2.128280,-0.024785,-1.321080,-1.299940,-0.302699,0.000048 +2.128300,-0.024785,-1.321080,-1.299940,-0.302672,0.000048 +2.128310,-0.024785,-1.321080,-1.299940,-0.302665,0.000048 +2.128310,-0.024785,-1.321080,-1.299940,-0.302665,0.000048 +2.128310,-0.024784,-1.321080,-1.299940,-0.302664,0.000048 +2.128300,-0.024779,-1.321070,-1.299950,-0.302658,0.000048 +2.128290,-0.024765,-1.321060,-1.299960,-0.302642,0.000048 +2.128260,-0.024739,-1.321030,-1.300000,-0.302610,0.000048 +2.128220,-0.024695,-1.320990,-1.300050,-0.302557,0.000048 +2.128150,-0.024629,-1.320920,-1.300130,-0.302478,0.000048 +2.128060,-0.024538,-1.320830,-1.300240,-0.302369,0.000048 +2.127940,-0.024416,-1.320710,-1.300380,-0.302223,0.000048 +2.127780,-0.024259,-1.320560,-1.300570,-0.302035,0.000048 +2.127590,-0.024064,-1.320370,-1.300800,-0.301801,0.000048 +2.127350,-0.023825,-1.320160,-1.301090,-0.301515,0.000048 +2.127060,-0.023539,-1.319920,-1.301430,-0.301177,0.000048 +2.126730,-0.023200,-1.319670,-1.301840,-0.300793,0.000048 +2.126330,-0.022806,-1.319400,-1.302310,-0.300366,0.000048 +2.125880,-0.022351,-1.319120,-1.302860,-0.299903,0.000048 +2.125360,-0.021831,-1.318840,-1.303480,-0.299409,0.000048 +2.124770,-0.021242,-1.318560,-1.304180,-0.298888,0.000048 +2.124100,-0.020579,-1.318270,-1.304970,-0.298346,0.000048 +2.123360,-0.019838,-1.317990,-1.305840,-0.297789,0.000048 +2.122540,-0.019015,-1.317710,-1.306790,-0.297221,0.000048 +2.121630,-0.018107,-1.317420,-1.307800,-0.296647,0.000048 +2.120630,-0.017116,-1.317140,-1.308870,-0.296072,0.000048 +2.119540,-0.016047,-1.316860,-1.310000,-0.295497,0.000048 +2.118340,-0.014904,-1.316580,-1.311190,-0.294922,0.000048 +2.117040,-0.013691,-1.316290,-1.312420,-0.294348,0.000048 +2.115630,-0.012413,-1.316010,-1.313700,-0.293773,0.000048 +2.114110,-0.011074,-1.315730,-1.315010,-0.293198,0.000048 +2.112480,-0.009678,-1.315440,-1.316360,-0.292623,0.000048 +2.110720,-0.008230,-1.315160,-1.317730,-0.292048,0.000048 +2.108840,-0.006734,-1.314880,-1.319120,-0.291474,0.000048 +2.106820,-0.005194,-1.314590,-1.320540,-0.290899,0.000048 +2.104680,-0.003615,-1.314310,-1.321960,-0.290324,0.000048 +2.102390,-0.002001,-1.314030,-1.323390,-0.289749,0.000048 +2.099960,-0.000356,-1.313740,-1.324820,-0.289175,0.000048 +2.097390,0.001316,-1.313460,-1.326250,-0.288600,0.000048 +2.094670,0.003009,-1.313180,-1.327680,-0.288025,0.000048 +2.091820,0.004720,-1.312900,-1.329110,-0.287450,0.000048 +2.088830,0.006444,-1.312610,-1.330540,-0.286875,0.000048 +2.085710,0.008178,-1.312330,-1.331970,-0.286301,0.000048 +2.082470,0.009916,-1.312050,-1.333410,-0.285726,0.000048 +2.079100,0.011656,-1.311760,-1.334840,-0.285151,0.000048 +2.075620,0.013395,-1.311480,-1.336270,-0.284576,0.000048 +2.072020,0.015134,-1.311200,-1.337700,-0.284001,0.000048 +2.068320,0.016873,-1.310910,-1.339130,-0.283427,0.000048 +2.064510,0.018613,-1.310630,-1.340560,-0.282852,0.000048 +2.060610,0.020352,-1.310350,-1.341990,-0.282277,0.000048 +2.056610,0.022091,-1.310060,-1.343420,-0.281702,0.000048 +2.052520,0.023830,-1.309780,-1.344850,-0.281127,0.000048 +2.048340,0.025570,-1.309500,-1.346280,-0.280553,0.000048 +2.044080,0.027309,-1.309220,-1.347720,-0.279978,0.000048 +2.039740,0.029048,-1.308930,-1.349150,-0.279403,0.000048 +2.035330,0.030787,-1.308650,-1.350580,-0.278828,0.000048 +2.030850,0.032527,-1.308370,-1.352010,-0.278253,0.000048 +2.026300,0.034266,-1.308080,-1.353440,-0.277679,0.000048 +2.021700,0.036005,-1.307800,-1.354870,-0.277104,0.000048 +2.017030,0.037745,-1.307520,-1.356300,-0.276529,0.000048 +2.012320,0.039484,-1.307230,-1.357730,-0.275954,0.000048 +2.007560,0.041223,-1.306950,-1.359160,-0.275380,0.000048 +2.002750,0.042962,-1.306670,-1.360590,-0.274805,0.000048 +1.997910,0.044701,-1.306380,-1.362030,-0.274230,0.000048 +1.993030,0.046441,-1.306100,-1.363460,-0.273655,0.000048 +1.988120,0.048180,-1.305820,-1.364890,-0.273080,0.000048 +1.983190,0.049919,-1.305540,-1.366320,-0.272506,0.000048 +1.978230,0.051659,-1.305250,-1.367750,-0.271931,0.000048 +1.973260,0.053398,-1.304970,-1.369180,-0.271356,0.000048 +1.968280,0.055137,-1.304690,-1.370610,-0.270781,0.000048 +1.963280,0.056876,-1.304400,-1.372040,-0.270206,0.000048 +1.958280,0.058616,-1.304120,-1.373470,-0.269632,0.000048 +1.953280,0.060355,-1.303840,-1.374900,-0.269057,0.000048 +1.948280,0.062094,-1.303550,-1.376340,-0.268482,0.000048 +1.943280,0.063833,-1.303270,-1.377770,-0.267907,0.000048 +1.938280,0.065573,-1.302990,-1.379200,-0.267332,0.000048 +1.933290,0.067312,-1.302700,-1.380630,-0.266758,0.000048 +1.928290,0.069051,-1.302420,-1.382060,-0.266183,0.000048 +1.923290,0.070790,-1.302140,-1.383490,-0.265608,0.000048 +1.918290,0.072530,-1.301860,-1.384920,-0.265033,0.000048 +1.913290,0.074269,-1.301570,-1.386350,-0.264459,0.000048 +1.908290,0.076008,-1.301290,-1.387780,-0.263884,0.000048 +1.903290,0.077747,-1.301010,-1.389210,-0.263309,0.000048 +1.898290,0.079487,-1.300720,-1.390650,-0.262734,0.000048 +1.893290,0.081226,-1.300440,-1.392080,-0.262159,0.000048 +1.888290,0.082965,-1.300160,-1.393510,-0.261585,0.000048 +1.883290,0.084704,-1.299870,-1.394940,-0.261010,0.000048 +1.878290,0.086444,-1.299590,-1.396370,-0.260435,0.000048 +1.873290,0.088183,-1.299310,-1.397800,-0.259860,0.000048 +1.868290,0.089922,-1.299020,-1.399230,-0.259285,0.000048 +1.863290,0.091661,-1.298740,-1.400660,-0.258711,0.000048 +1.858300,0.093401,-1.298460,-1.402090,-0.258136,0.000048 +1.853300,0.095140,-1.298180,-1.403530,-0.257561,0.000048 +1.848300,0.096879,-1.297890,-1.404960,-0.256986,0.000048 +1.843300,0.098618,-1.297610,-1.406390,-0.256411,0.000048 +1.838300,0.100358,-1.297330,-1.407820,-0.255837,0.000048 +1.833300,0.102097,-1.297040,-1.409250,-0.255262,0.000048 +1.828300,0.103836,-1.296760,-1.410680,-0.254687,0.000048 +1.823300,0.105576,-1.296480,-1.412110,-0.254112,0.000048 +1.818300,0.107315,-1.296190,-1.413540,-0.253538,0.000048 +1.813300,0.109054,-1.295910,-1.414970,-0.252963,0.000048 +1.808300,0.110793,-1.295630,-1.416400,-0.252388,0.000048 +1.803300,0.112533,-1.295340,-1.417840,-0.251813,0.000048 +1.798300,0.114272,-1.295060,-1.419270,-0.251238,0.000048 +1.793300,0.116011,-1.294780,-1.420700,-0.250664,0.000048 +1.788300,0.117750,-1.294500,-1.422130,-0.250089,0.000048 +1.783310,0.119490,-1.294210,-1.423560,-0.249514,0.000048 +1.778310,0.121229,-1.293930,-1.424990,-0.248939,0.000048 +1.773310,0.122968,-1.293650,-1.426420,-0.248364,0.000048 +1.768310,0.124707,-1.293360,-1.427850,-0.247790,0.000048 +1.763310,0.126447,-1.293080,-1.429280,-0.247215,0.000048 +1.758310,0.128186,-1.292800,-1.430710,-0.246640,0.000048 +1.753310,0.129925,-1.292510,-1.432150,-0.246065,0.000048 +1.748310,0.131664,-1.292230,-1.433580,-0.245490,0.000048 +1.743310,0.133404,-1.291950,-1.435010,-0.244916,0.000048 +1.738310,0.135143,-1.291660,-1.436440,-0.244341,0.000048 +1.733310,0.136882,-1.291380,-1.437870,-0.243766,0.000048 +1.728310,0.138621,-1.291100,-1.439300,-0.243191,0.000048 +1.723310,0.140361,-1.290820,-1.440730,-0.242617,0.000048 +1.718310,0.142100,-1.290530,-1.442160,-0.242042,0.000048 +1.713310,0.143839,-1.290250,-1.443590,-0.241467,0.000048 +1.708320,0.145578,-1.289970,-1.445020,-0.240892,0.000048 +1.703320,0.147318,-1.289680,-1.446460,-0.240317,0.000048 +1.698320,0.149057,-1.289400,-1.447890,-0.239743,0.000048 +1.693320,0.150796,-1.289120,-1.449320,-0.239168,0.000048 +1.688320,0.152535,-1.288830,-1.450750,-0.238593,0.000048 +1.683320,0.154275,-1.288550,-1.452180,-0.238018,0.000048 +1.678320,0.156014,-1.288270,-1.453610,-0.237443,0.000048 +1.673320,0.157753,-1.287980,-1.455040,-0.236869,0.000048 +1.668320,0.159493,-1.287700,-1.456470,-0.236294,0.000048 +1.663320,0.161232,-1.287420,-1.457900,-0.235719,0.000048 +1.658320,0.162971,-1.287140,-1.459330,-0.235144,0.000048 +1.653320,0.164710,-1.286850,-1.460770,-0.234569,0.000048 +1.648320,0.166450,-1.286570,-1.462200,-0.233995,0.000048 +1.643320,0.168189,-1.286290,-1.463630,-0.233420,0.000048 +1.638320,0.169928,-1.286000,-1.465060,-0.232845,0.000048 +1.633330,0.171667,-1.285720,-1.466490,-0.232270,0.000048 +1.628330,0.173407,-1.285440,-1.467920,-0.231696,0.000048 +1.623330,0.175146,-1.285150,-1.469350,-0.231121,0.000048 +1.618330,0.176885,-1.284870,-1.470780,-0.230546,0.000048 +1.613330,0.178624,-1.284590,-1.472210,-0.229971,0.000048 +1.608330,0.180364,-1.284300,-1.473650,-0.229396,0.000048 +1.603330,0.182103,-1.284020,-1.475080,-0.228822,0.000048 +1.598330,0.183842,-1.283740,-1.476510,-0.228247,0.000048 +1.593330,0.185581,-1.283460,-1.477940,-0.227672,0.000048 +1.588330,0.187321,-1.283170,-1.479370,-0.227097,0.000048 +1.583330,0.189060,-1.282890,-1.480800,-0.226522,0.000048 +1.578330,0.190799,-1.282610,-1.482230,-0.225948,0.000048 +1.573330,0.192538,-1.282320,-1.483660,-0.225373,0.000048 +1.568330,0.194278,-1.282040,-1.485090,-0.224798,0.000048 +1.563330,0.196017,-1.281760,-1.486520,-0.224223,0.000048 +1.558340,0.197756,-1.281470,-1.487960,-0.223648,0.000048 +1.553340,0.199495,-1.281190,-1.489390,-0.223074,0.000048 +1.548340,0.201235,-1.280910,-1.490820,-0.222499,0.000048 +1.543340,0.202974,-1.280620,-1.492250,-0.221924,0.000048 +1.538340,0.204713,-1.280340,-1.493680,-0.221349,0.000048 +1.533340,0.206452,-1.280060,-1.495110,-0.220775,0.000048 +1.528340,0.208192,-1.279780,-1.496540,-0.220200,0.000048 +1.523340,0.209931,-1.279490,-1.497970,-0.219625,0.000048 +1.518340,0.211670,-1.279210,-1.499400,-0.219050,0.000048 +1.513340,0.213410,-1.278930,-1.500830,-0.218475,0.000048 +1.508340,0.215149,-1.278640,-1.502270,-0.217901,0.000048 +1.503340,0.216888,-1.278360,-1.503700,-0.217326,0.000048 +1.498340,0.218627,-1.278080,-1.505130,-0.216751,0.000048 +1.493340,0.220367,-1.277790,-1.506560,-0.216176,0.000048 +1.488340,0.222106,-1.277510,-1.507990,-0.215601,0.000048 +1.483350,0.223845,-1.277230,-1.509420,-0.215027,0.000048 +1.478350,0.225584,-1.276940,-1.510850,-0.214452,0.000048 +1.473350,0.227324,-1.276660,-1.512280,-0.213877,0.000048 +1.468350,0.229063,-1.276380,-1.513710,-0.213302,0.000048 +1.463350,0.230802,-1.276100,-1.515140,-0.212727,0.000048 +1.458350,0.232541,-1.275810,-1.516580,-0.212153,0.000048 +1.453350,0.234281,-1.275530,-1.518010,-0.211578,0.000048 +1.448350,0.236020,-1.275250,-1.519440,-0.211003,0.000048 +1.443350,0.237759,-1.274960,-1.520870,-0.210428,0.000048 +1.438350,0.239498,-1.274680,-1.522300,-0.209854,0.000048 +1.433350,0.241238,-1.274400,-1.523730,-0.209279,0.000048 +1.428350,0.242977,-1.274110,-1.525160,-0.208704,0.000048 +1.423350,0.244716,-1.273830,-1.526590,-0.208129,0.000048 +1.418350,0.246455,-1.273550,-1.528020,-0.207554,0.000048 +1.413350,0.248195,-1.273260,-1.529450,-0.206980,0.000048 +1.408360,0.249934,-1.272980,-1.530890,-0.206405,0.000048 +1.403360,0.251673,-1.272700,-1.532320,-0.205830,0.000048 +1.398360,0.253412,-1.272420,-1.533750,-0.205255,0.000048 +1.393360,0.255152,-1.272130,-1.535180,-0.204680,0.000048 +1.388360,0.256891,-1.271850,-1.536610,-0.204106,0.000048 +1.383360,0.258630,-1.271570,-1.538040,-0.203531,0.000048 +1.378360,0.260369,-1.271280,-1.539470,-0.202956,0.000048 +1.373360,0.262109,-1.271000,-1.540900,-0.202381,0.000048 +1.368360,0.263848,-1.270720,-1.542330,-0.201806,0.000048 +1.363360,0.265587,-1.270430,-1.543760,-0.201232,0.000048 +1.358360,0.267326,-1.270150,-1.545200,-0.200657,0.000048 +1.353360,0.269066,-1.269870,-1.546630,-0.200082,0.000048 +1.348360,0.270805,-1.269580,-1.548060,-0.199507,0.000048 +1.343360,0.272544,-1.269300,-1.549490,-0.198932,0.000048 +1.338360,0.274284,-1.269020,-1.550920,-0.198358,0.000048 +1.333370,0.276023,-1.268740,-1.552350,-0.197783,0.000048 +1.328370,0.277762,-1.268450,-1.553780,-0.197208,0.000048 +1.323370,0.279501,-1.268170,-1.555210,-0.196633,0.000048 +1.318370,0.281241,-1.267890,-1.556640,-0.196059,0.000048 +1.313370,0.282980,-1.267600,-1.558080,-0.195484,0.000048 +1.308370,0.284719,-1.267320,-1.559510,-0.194909,0.000048 +1.303370,0.286458,-1.267040,-1.560940,-0.194334,0.000048 +1.298370,0.288198,-1.266750,-1.562370,-0.193759,0.000048 +1.293370,0.289937,-1.266470,-1.563800,-0.193185,0.000048 +1.288370,0.291676,-1.266190,-1.565230,-0.192610,0.000048 +1.283370,0.293415,-1.265900,-1.566660,-0.192035,0.000048 +1.278370,0.295155,-1.265620,-1.568090,-0.191460,0.000048 +1.273370,0.296894,-1.265340,-1.569520,-0.190885,0.000048 +1.268370,0.298633,-1.265060,-1.570950,-0.190311,0.000048 +1.263370,0.300372,-1.264770,-1.572390,-0.189736,0.000048 +1.258380,0.302112,-1.264490,-1.573820,-0.189161,0.000048 +1.253380,0.303851,-1.264210,-1.575250,-0.188586,0.000048 +1.248380,0.305590,-1.263920,-1.576680,-0.188011,0.000048 +1.243380,0.307329,-1.263640,-1.578110,-0.187437,0.000048 +1.238380,0.309069,-1.263360,-1.579540,-0.186862,0.000048 +1.233380,0.310808,-1.263070,-1.580970,-0.186287,0.000048 +1.228380,0.312547,-1.262790,-1.582400,-0.185712,0.000048 +1.223380,0.314286,-1.262510,-1.583830,-0.185138,0.000048 +1.218380,0.316026,-1.262220,-1.585260,-0.184563,0.000048 +1.213380,0.317765,-1.261940,-1.586700,-0.183988,0.000048 +1.208380,0.319504,-1.261660,-1.588130,-0.183413,0.000048 +1.203380,0.321243,-1.261380,-1.589560,-0.182838,0.000048 +1.198380,0.322983,-1.261090,-1.590990,-0.182264,0.000048 +1.193380,0.324722,-1.260810,-1.592420,-0.181689,0.000048 +1.188380,0.326461,-1.260530,-1.593850,-0.181114,0.000048 +1.183390,0.328201,-1.260240,-1.595280,-0.180539,0.000048 +1.178390,0.329940,-1.259960,-1.596710,-0.179964,0.000048 +1.173390,0.331679,-1.259680,-1.598140,-0.179390,0.000048 +1.168390,0.333418,-1.259390,-1.599570,-0.178815,0.000048 +1.163390,0.335158,-1.259110,-1.601010,-0.178240,0.000048 +1.158390,0.336897,-1.258830,-1.602440,-0.177665,0.000048 +1.153390,0.338636,-1.258540,-1.603870,-0.177090,0.000048 +1.148390,0.340375,-1.258260,-1.605300,-0.176516,0.000048 +1.143390,0.342115,-1.257980,-1.606730,-0.175941,0.000048 +1.138390,0.343854,-1.257700,-1.608160,-0.175366,0.000048 +1.133390,0.345593,-1.257410,-1.609590,-0.174791,0.000048 +1.128390,0.347332,-1.257130,-1.611020,-0.174217,0.000048 +1.123390,0.349072,-1.256850,-1.612450,-0.173642,0.000048 +1.118390,0.350811,-1.256560,-1.613880,-0.173067,0.000048 +1.113400,0.352550,-1.256280,-1.615320,-0.172492,0.000048 +1.108400,0.354289,-1.256000,-1.616750,-0.171917,0.000048 +1.103400,0.356029,-1.255710,-1.618180,-0.171343,0.000048 +1.098400,0.357768,-1.255430,-1.619610,-0.170768,0.000048 +1.093400,0.359507,-1.255150,-1.621040,-0.170193,0.000048 +1.088400,0.361246,-1.254860,-1.622470,-0.169618,0.000048 +1.083400,0.362986,-1.254580,-1.623900,-0.169043,0.000048 +1.078400,0.364725,-1.254300,-1.625330,-0.168469,0.000048 +1.073400,0.366464,-1.254020,-1.626760,-0.167894,0.000048 +1.068400,0.368203,-1.253730,-1.628190,-0.167319,0.000048 +1.063400,0.369943,-1.253450,-1.629630,-0.166744,0.000048 +1.058400,0.371682,-1.253170,-1.631060,-0.166169,0.000048 +1.053400,0.373421,-1.252880,-1.632490,-0.165595,0.000048 +1.048400,0.375160,-1.252600,-1.633920,-0.165020,0.000048 +1.043400,0.376900,-1.252320,-1.635350,-0.164445,0.000048 +1.038410,0.378639,-1.252030,-1.636780,-0.163870,0.000048 +1.033410,0.380378,-1.251750,-1.638210,-0.163296,0.000048 +1.028410,0.382118,-1.251470,-1.639640,-0.162721,0.000048 +1.023410,0.383857,-1.251180,-1.641070,-0.162146,0.000048 +1.018410,0.385596,-1.250900,-1.642510,-0.161571,0.000048 +1.013410,0.387335,-1.250620,-1.643940,-0.160996,0.000048 +1.008410,0.389075,-1.250340,-1.645370,-0.160422,0.000048 +1.003410,0.390814,-1.250050,-1.646800,-0.159847,0.000048 +0.998410,0.392553,-1.249770,-1.648230,-0.159272,0.000048 +0.993411,0.394292,-1.249490,-1.649660,-0.158697,0.000048 +0.988412,0.396032,-1.249200,-1.651090,-0.158122,0.000048 +0.983412,0.397771,-1.248920,-1.652520,-0.157548,0.000048 +0.978413,0.399510,-1.248640,-1.653950,-0.156973,0.000048 +0.973414,0.401249,-1.248350,-1.655380,-0.156398,0.000048 +0.968414,0.402989,-1.248070,-1.656820,-0.155823,0.000048 +0.963415,0.404728,-1.247790,-1.658250,-0.155248,0.000048 +0.958416,0.406467,-1.247500,-1.659680,-0.154674,0.000048 +0.953416,0.408206,-1.247220,-1.661110,-0.154099,0.000048 +0.948417,0.409946,-1.246940,-1.662540,-0.153524,0.000048 +0.943418,0.411685,-1.246660,-1.663970,-0.152949,0.000048 +0.938418,0.413424,-1.246370,-1.665400,-0.152375,0.000048 +0.933419,0.415163,-1.246090,-1.666830,-0.151800,0.000048 +0.928420,0.416903,-1.245810,-1.668260,-0.151225,0.000048 +0.923420,0.418642,-1.245520,-1.669690,-0.150650,0.000048 +0.918421,0.420381,-1.245240,-1.671130,-0.150075,0.000048 +0.913422,0.422120,-1.244960,-1.672560,-0.149501,0.000048 +0.908422,0.423860,-1.244670,-1.673990,-0.148926,0.000048 +0.903423,0.425599,-1.244390,-1.675420,-0.148351,0.000048 +0.898424,0.427338,-1.244110,-1.676850,-0.147776,0.000048 +0.893424,0.429077,-1.243820,-1.678280,-0.147201,0.000048 +0.888425,0.430817,-1.243540,-1.679710,-0.146627,0.000048 +0.883426,0.432556,-1.243260,-1.681140,-0.146052,0.000048 +0.878426,0.434295,-1.242980,-1.682570,-0.145477,0.000048 +0.873427,0.436035,-1.242690,-1.684000,-0.144902,0.000048 +0.868428,0.437774,-1.242410,-1.685440,-0.144327,0.000048 +0.863428,0.439513,-1.242130,-1.686870,-0.143753,0.000048 +0.858429,0.441252,-1.241840,-1.688300,-0.143178,0.000048 +0.853430,0.442992,-1.241560,-1.689730,-0.142603,0.000048 +0.848430,0.444731,-1.241280,-1.691160,-0.142028,0.000048 +0.843431,0.446470,-1.240990,-1.692590,-0.141454,0.000048 +0.838432,0.448209,-1.240710,-1.694020,-0.140879,0.000048 +0.833432,0.449949,-1.240430,-1.695450,-0.140304,0.000048 +0.828433,0.451688,-1.240140,-1.696880,-0.139729,0.000048 +0.823434,0.453427,-1.239860,-1.698310,-0.139154,0.000048 +0.818434,0.455166,-1.239580,-1.699750,-0.138580,0.000048 +0.813435,0.456906,-1.239300,-1.701180,-0.138005,0.000048 +0.808436,0.458645,-1.239010,-1.702610,-0.137430,0.000048 +0.803436,0.460384,-1.238730,-1.704040,-0.136855,0.000048 +0.798437,0.462123,-1.238450,-1.705470,-0.136280,0.000048 +0.793438,0.463863,-1.238160,-1.706900,-0.135706,0.000048 +0.788438,0.465602,-1.237880,-1.708330,-0.135131,0.000048 +0.783439,0.467341,-1.237600,-1.709760,-0.134556,0.000048 +0.778440,0.469080,-1.237310,-1.711190,-0.133981,0.000048 +0.773440,0.470820,-1.237030,-1.712630,-0.133406,0.000048 +0.768441,0.472559,-1.236750,-1.714060,-0.132832,0.000048 +0.763442,0.474298,-1.236460,-1.715490,-0.132257,0.000048 +0.758442,0.476037,-1.236180,-1.716920,-0.131682,0.000048 +0.753443,0.477777,-1.235900,-1.718350,-0.131107,0.000048 +0.748444,0.479516,-1.235620,-1.719780,-0.130532,0.000048 +0.743444,0.481255,-1.235330,-1.721210,-0.129958,0.000048 +0.738445,0.482994,-1.235050,-1.722640,-0.129383,0.000048 +0.733446,0.484734,-1.234770,-1.724070,-0.128808,0.000048 +0.728446,0.486473,-1.234480,-1.725500,-0.128233,0.000048 +0.723447,0.488212,-1.234200,-1.726940,-0.127659,0.000048 +0.718448,0.489952,-1.233920,-1.728370,-0.127084,0.000048 +0.713448,0.491691,-1.233630,-1.729800,-0.126509,0.000048 +0.708449,0.493430,-1.233350,-1.731230,-0.125934,0.000048 +0.703450,0.495169,-1.233070,-1.732660,-0.125359,0.000048 +0.698450,0.496909,-1.232780,-1.734090,-0.124785,0.000048 +0.693451,0.498648,-1.232500,-1.735520,-0.124210,0.000048 +0.688452,0.500387,-1.232220,-1.736950,-0.123635,0.000048 +0.683452,0.502126,-1.231940,-1.738380,-0.123060,0.000048 +0.678453,0.503866,-1.231650,-1.739810,-0.122485,0.000048 +0.673454,0.505605,-1.231370,-1.741250,-0.121911,0.000048 +0.668455,0.507344,-1.231090,-1.742680,-0.121336,0.000048 +0.663455,0.509083,-1.230800,-1.744110,-0.120761,0.000048 +0.658456,0.510823,-1.230520,-1.745540,-0.120186,0.000048 +0.653457,0.512562,-1.230240,-1.746970,-0.119611,0.000048 +0.648457,0.514301,-1.229950,-1.748400,-0.119037,0.000048 +0.643458,0.516040,-1.229670,-1.749830,-0.118462,0.000048 +0.638459,0.517780,-1.229390,-1.751260,-0.117887,0.000048 +0.633459,0.519519,-1.229100,-1.752690,-0.117312,0.000048 +0.628460,0.521258,-1.228820,-1.754120,-0.116738,0.000048 +0.623461,0.522997,-1.228540,-1.755560,-0.116163,0.000048 +0.618461,0.524737,-1.228260,-1.756990,-0.115588,0.000048 +0.613462,0.526476,-1.227970,-1.758420,-0.115013,0.000048 +0.608463,0.528215,-1.227690,-1.759850,-0.114438,0.000048 +0.603463,0.529954,-1.227410,-1.761280,-0.113864,0.000048 +0.598464,0.531694,-1.227120,-1.762710,-0.113289,0.000048 +0.593465,0.533433,-1.226840,-1.764140,-0.112714,0.000048 +0.588465,0.535172,-1.226560,-1.765570,-0.112139,0.000048 +0.583466,0.536911,-1.226270,-1.767000,-0.111564,0.000048 +0.578467,0.538651,-1.225990,-1.768430,-0.110990,0.000048 +0.573467,0.540390,-1.225710,-1.769870,-0.110415,0.000048 +0.568468,0.542129,-1.225420,-1.771300,-0.109840,0.000048 +0.563469,0.543869,-1.225140,-1.772730,-0.109265,0.000048 +0.558469,0.545608,-1.224860,-1.774160,-0.108690,0.000048 +0.553470,0.547347,-1.224580,-1.775590,-0.108116,0.000048 +0.548471,0.549086,-1.224290,-1.777020,-0.107541,0.000048 +0.543471,0.550826,-1.224010,-1.778450,-0.106966,0.000048 +0.538472,0.552565,-1.223730,-1.779880,-0.106391,0.000048 +0.533473,0.554304,-1.223440,-1.781310,-0.105817,0.000048 +0.528473,0.556043,-1.223160,-1.782740,-0.105242,0.000048 +0.523474,0.557783,-1.222880,-1.784180,-0.104667,0.000048 +0.518475,0.559522,-1.222590,-1.785610,-0.104092,0.000048 +0.513475,0.561261,-1.222310,-1.787040,-0.103517,0.000048 +0.508476,0.563000,-1.222030,-1.788470,-0.102943,0.000048 +0.503477,0.564740,-1.221740,-1.789900,-0.102368,0.000048 +0.498477,0.566479,-1.221460,-1.791330,-0.101793,0.000048 +0.493478,0.568218,-1.221180,-1.792760,-0.101218,0.000048 +0.488479,0.569957,-1.220900,-1.794190,-0.100643,0.000048 +0.483479,0.571697,-1.220610,-1.795620,-0.100069,0.000048 +0.478480,0.573436,-1.220330,-1.797060,-0.099494,0.000048 +0.473481,0.575175,-1.220050,-1.798490,-0.098919,0.000048 +0.468481,0.576914,-1.219760,-1.799920,-0.098344,0.000048 +0.463482,0.578654,-1.219480,-1.801350,-0.097769,0.000048 +0.458483,0.580393,-1.219200,-1.802780,-0.097195,0.000048 +0.453483,0.582132,-1.218910,-1.804210,-0.096620,0.000048 +0.448484,0.583871,-1.218630,-1.805640,-0.096045,0.000048 +0.443485,0.585611,-1.218350,-1.807070,-0.095470,0.000048 +0.438485,0.587350,-1.218060,-1.808500,-0.094895,0.000048 +0.433486,0.589089,-1.217780,-1.809930,-0.094321,0.000048 +0.428487,0.590828,-1.217500,-1.811370,-0.093746,0.000048 +0.423487,0.592568,-1.217220,-1.812800,-0.093171,0.000048 +0.418488,0.594307,-1.216930,-1.814230,-0.092596,0.000048 +0.413489,0.596046,-1.216650,-1.815660,-0.092022,0.000048 +0.408489,0.597785,-1.216370,-1.817090,-0.091447,0.000048 +0.403490,0.599525,-1.216080,-1.818520,-0.090872,0.000048 +0.398491,0.601264,-1.215800,-1.819950,-0.090297,0.000048 +0.393491,0.603003,-1.215520,-1.821380,-0.089722,0.000048 +0.388492,0.604743,-1.215230,-1.822810,-0.089148,0.000048 +0.383493,0.606482,-1.214950,-1.824240,-0.088573,0.000048 +0.378493,0.608221,-1.214670,-1.825680,-0.087998,0.000048 +0.373494,0.609960,-1.214380,-1.827110,-0.087423,0.000048 +0.368495,0.611700,-1.214100,-1.828540,-0.086848,0.000048 +0.363495,0.613439,-1.213820,-1.829970,-0.086274,0.000048 +0.358496,0.615178,-1.213540,-1.831400,-0.085699,0.000048 +0.353497,0.616917,-1.213250,-1.832830,-0.085124,0.000048 +0.348497,0.618657,-1.212970,-1.834260,-0.084549,0.000048 +0.343498,0.620396,-1.212690,-1.835690,-0.083974,0.000048 +0.338499,0.622135,-1.212400,-1.837120,-0.083400,0.000048 +0.333499,0.623874,-1.212120,-1.838550,-0.082825,0.000048 +0.328500,0.625614,-1.211840,-1.839990,-0.082250,0.000048 +0.323501,0.627353,-1.211550,-1.841420,-0.081675,0.000048 +0.318501,0.629092,-1.211270,-1.842850,-0.081101,0.000048 +0.313502,0.630831,-1.210990,-1.844280,-0.080526,0.000048 +0.308503,0.632571,-1.210700,-1.845710,-0.079951,0.000048 +0.303503,0.634310,-1.210420,-1.847140,-0.079376,0.000048 +0.298504,0.636049,-1.210140,-1.848570,-0.078801,0.000048 +0.293505,0.637788,-1.209860,-1.850000,-0.078227,0.000048 +0.288505,0.639528,-1.209570,-1.851430,-0.077652,0.000048 +0.283506,0.641267,-1.209290,-1.852860,-0.077077,0.000048 +0.278507,0.643006,-1.209010,-1.854300,-0.076502,0.000048 +0.273507,0.644745,-1.208720,-1.855730,-0.075927,0.000048 +0.268508,0.646485,-1.208440,-1.857160,-0.075353,0.000048 +0.263509,0.648224,-1.208160,-1.858590,-0.074778,0.000048 +0.258509,0.649963,-1.207870,-1.860020,-0.074203,0.000048 +0.253510,0.651702,-1.207590,-1.861450,-0.073628,0.000048 +0.248511,0.653442,-1.207310,-1.862880,-0.073053,0.000048 +0.243511,0.655181,-1.207020,-1.864310,-0.072479,0.000048 +0.238512,0.656920,-1.206740,-1.865740,-0.071904,0.000048 +0.233513,0.658660,-1.206460,-1.867170,-0.071329,0.000048 +0.228513,0.660399,-1.206180,-1.868610,-0.070754,0.000048 +0.223514,0.662138,-1.205890,-1.870040,-0.070180,0.000048 +0.218515,0.663877,-1.205610,-1.871470,-0.069605,0.000048 +0.213515,0.665617,-1.205330,-1.872900,-0.069030,0.000048 +0.208516,0.667356,-1.205040,-1.874330,-0.068455,0.000048 +0.203517,0.669095,-1.204760,-1.875760,-0.067880,0.000048 +0.198517,0.670834,-1.204480,-1.877190,-0.067306,0.000048 +0.193518,0.672574,-1.204190,-1.878620,-0.066731,0.000048 +0.188519,0.674313,-1.203910,-1.880050,-0.066156,0.000048 +0.183519,0.676052,-1.203630,-1.881490,-0.065581,0.000048 +0.178520,0.677791,-1.203340,-1.882920,-0.065006,0.000048 +0.173521,0.679531,-1.203060,-1.884350,-0.064432,0.000048 +0.168527,0.681270,-1.202780,-1.885780,-0.063857,0.000048 +0.163541,0.683009,-1.202500,-1.887210,-0.063282,0.000048 +0.158568,0.684748,-1.202210,-1.888640,-0.062707,0.000048 +0.153612,0.686488,-1.201930,-1.890070,-0.062133,0.000048 +0.148678,0.688227,-1.201650,-1.891500,-0.061558,0.000048 +0.143770,0.689966,-1.201360,-1.892930,-0.060983,0.000048 +0.138892,0.691705,-1.201080,-1.894360,-0.060408,0.000048 +0.134048,0.693445,-1.200800,-1.895800,-0.059833,0.000048 +0.129244,0.695184,-1.200510,-1.897230,-0.059258,0.000048 +0.124482,0.696923,-1.200230,-1.898660,-0.058684,0.000048 +0.119768,0.698662,-1.199950,-1.900090,-0.058109,0.000048 +0.115106,0.700402,-1.199660,-1.901520,-0.057534,0.000048 +0.110500,0.702141,-1.199380,-1.902950,-0.056959,0.000048 +0.105954,0.703880,-1.199100,-1.904380,-0.056385,0.000048 +0.101474,0.705619,-1.198820,-1.905810,-0.055810,0.000048 +0.097062,0.707359,-1.198530,-1.907240,-0.055235,0.000048 +0.092724,0.709098,-1.198250,-1.908670,-0.054660,0.000048 +0.088464,0.710837,-1.197970,-1.910110,-0.054085,0.000048 +0.084285,0.712577,-1.197680,-1.911540,-0.053511,0.000048 +0.080194,0.714316,-1.197400,-1.912970,-0.052936,0.000048 +0.076193,0.716055,-1.197120,-1.914400,-0.052361,0.000048 +0.072287,0.717794,-1.196830,-1.915830,-0.051786,0.000048 +0.068481,0.719534,-1.196550,-1.917260,-0.051212,0.000048 +0.064778,0.721273,-1.196270,-1.918690,-0.050637,0.000048 +0.061184,0.723012,-1.195980,-1.920120,-0.050062,0.000048 +0.057702,0.724751,-1.195700,-1.921550,-0.049487,0.000048 +0.054336,0.726491,-1.195420,-1.922980,-0.048912,0.000048 +0.051092,0.728229,-1.195140,-1.924420,-0.048337,0.000048 +0.047973,0.729962,-1.194850,-1.925850,-0.047763,0.000048 +0.044984,0.731687,-1.194570,-1.927280,-0.047188,0.000048 +0.042129,0.733398,-1.194290,-1.928710,-0.046613,0.000048 +0.039413,0.735091,-1.194000,-1.930140,-0.046038,0.000048 +0.036839,0.736763,-1.193720,-1.931570,-0.045464,0.000048 +0.034410,0.738408,-1.193440,-1.933000,-0.044889,0.000048 +0.032125,0.740022,-1.193150,-1.934430,-0.044314,0.000048 +0.029978,0.741601,-1.192870,-1.935850,-0.043739,0.000048 +0.027965,0.743141,-1.192590,-1.937270,-0.043164,0.000048 +0.026082,0.744637,-1.192300,-1.938660,-0.042590,0.000048 +0.024324,0.746085,-1.192020,-1.940030,-0.042015,0.000048 +0.022688,0.747481,-1.191740,-1.941380,-0.041440,0.000048 +0.021168,0.748820,-1.191460,-1.942690,-0.040865,0.000048 +0.019761,0.750098,-1.191170,-1.943970,-0.040291,0.000048 +0.018462,0.751311,-1.190890,-1.945200,-0.039716,0.000048 +0.017267,0.752454,-1.190610,-1.946390,-0.039141,0.000048 +0.016171,0.753523,-1.190320,-1.947520,-0.038566,0.000048 +0.015171,0.754514,-1.190040,-1.948590,-0.037991,0.000048 +0.014262,0.755422,-1.189760,-1.949600,-0.037418,0.000048 +0.013439,0.756245,-1.189470,-1.950550,-0.036849,0.000048 +0.012698,0.756986,-1.189190,-1.951420,-0.036292,0.000048 +0.012035,0.757649,-1.188910,-1.952210,-0.035750,0.000048 +0.011446,0.758238,-1.188620,-1.952910,-0.035229,0.000048 +0.010926,0.758758,-1.188340,-1.953530,-0.034735,0.000048 +0.010471,0.759213,-1.188070,-1.954080,-0.034272,0.000048 +0.010077,0.759607,-1.187800,-1.954550,-0.033845,0.000048 +0.009738,0.759946,-1.187540,-1.954960,-0.033461,0.000048 +0.009452,0.760232,-1.187310,-1.955300,-0.033123,0.000048 +0.009213,0.760471,-1.187100,-1.955590,-0.032837,0.000048 +0.009018,0.760666,-1.186910,-1.955820,-0.032603,0.000048 +0.008861,0.760823,-1.186750,-1.956010,-0.032416,0.000048 +0.008739,0.760945,-1.186630,-1.956150,-0.032270,0.000048 +0.008648,0.761036,-1.186540,-1.956260,-0.032160,0.000048 +0.008582,0.761102,-1.186480,-1.956340,-0.032081,0.000048 +0.008538,0.761146,-1.186430,-1.956390,-0.032028,0.000048 +0.008512,0.761172,-1.186400,-1.956430,-0.031996,0.000048 +0.008498,0.761186,-1.186390,-1.956440,-0.031980,0.000048 +0.008493,0.761191,-1.186390,-1.956450,-0.031974,0.000048 +0.008492,0.761192,-1.186380,-1.956450,-0.031973,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761193,-1.186375,-1.956453,-0.031971,0.000048 +0.008484,0.761195,-1.186372,-1.956452,-0.031971,0.000048 +0.008484,0.761199,-1.186366,-1.956450,-0.031971,0.000048 +0.008484,0.761205,-1.186357,-1.956447,-0.031971,0.000048 +0.008484,0.761214,-1.186344,-1.956443,-0.031971,0.000048 +0.008484,0.761227,-1.186324,-1.956437,-0.031971,0.000048 +0.008484,0.761245,-1.186299,-1.956429,-0.031971,0.000048 +0.008484,0.761267,-1.186266,-1.956418,-0.031971,0.000048 +0.008484,0.761295,-1.186226,-1.956405,-0.031971,0.000048 +0.008483,0.761329,-1.186176,-1.956390,-0.031970,0.000048 +0.008483,0.761369,-1.186116,-1.956371,-0.031970,0.000048 +0.008483,0.761418,-1.186046,-1.956348,-0.031970,0.000048 +0.008483,0.761474,-1.185963,-1.956322,-0.031970,0.000048 +0.008482,0.761538,-1.185868,-1.956292,-0.031969,0.000048 +0.008482,0.761612,-1.185760,-1.956258,-0.031969,0.000049 +0.008482,0.761696,-1.185637,-1.956219,-0.031969,0.000049 +0.008481,0.761791,-1.185499,-1.956176,-0.031968,0.000049 +0.008481,0.761896,-1.185345,-1.956127,-0.031968,0.000049 +0.008480,0.762013,-1.185173,-1.956073,-0.031967,0.000049 +0.008479,0.762143,-1.184984,-1.956013,-0.031966,0.000049 +0.008479,0.762286,-1.184775,-1.955947,-0.031966,0.000049 +0.008478,0.762442,-1.184547,-1.955875,-0.031965,0.000050 +0.008477,0.762612,-1.184298,-1.955797,-0.031964,0.000050 +0.008476,0.762797,-1.184027,-1.955712,-0.031963,0.000050 +0.008475,0.762998,-1.183734,-1.955619,-0.031962,0.000050 +0.008474,0.763214,-1.183418,-1.955520,-0.031961,0.000051 +0.008473,0.763448,-1.183077,-1.955413,-0.031960,0.000051 +0.008472,0.763699,-1.182711,-1.955298,-0.031959,0.000051 +0.008471,0.763967,-1.182319,-1.955175,-0.031958,0.000052 +0.008469,0.764255,-1.181901,-1.955044,-0.031956,0.000052 +0.008468,0.764561,-1.181454,-1.954905,-0.031955,0.000052 +0.008466,0.764888,-1.180979,-1.954757,-0.031953,0.000053 +0.008465,0.765235,-1.180474,-1.954599,-0.031952,0.000053 +0.008463,0.765603,-1.179938,-1.954433,-0.031950,0.000054 +0.008461,0.765993,-1.179372,-1.954257,-0.031948,0.000054 +0.008459,0.766406,-1.178773,-1.954071,-0.031946,0.000055 +0.008457,0.766841,-1.178141,-1.953875,-0.031944,0.000056 +0.008455,0.767301,-1.177476,-1.953670,-0.031942,0.000056 +0.008453,0.767785,-1.176775,-1.953454,-0.031940,0.000057 +0.008450,0.768293,-1.176039,-1.953227,-0.031937,0.000057 +0.008448,0.768828,-1.175267,-1.952990,-0.031935,0.000058 +0.008445,0.769389,-1.174457,-1.952742,-0.031932,0.000059 +0.008442,0.769977,-1.173609,-1.952483,-0.031929,0.000060 +0.008439,0.770592,-1.172723,-1.952212,-0.031926,0.000060 +0.008436,0.771237,-1.171796,-1.951931,-0.031923,0.000061 +0.008433,0.771910,-1.170829,-1.951638,-0.031920,0.000062 +0.008430,0.772612,-1.169821,-1.951333,-0.031917,0.000063 +0.008427,0.773346,-1.168770,-1.951016,-0.031914,0.000064 +0.008423,0.774110,-1.167676,-1.950688,-0.031910,0.000065 +0.008419,0.774906,-1.166539,-1.950348,-0.031906,0.000066 +0.008416,0.775733,-1.165358,-1.949996,-0.031903,0.000067 +0.008412,0.776593,-1.164134,-1.949632,-0.031899,0.000068 +0.008407,0.777485,-1.162866,-1.949257,-0.031894,0.000069 +0.008403,0.778408,-1.161555,-1.948870,-0.031890,0.000070 +0.008399,0.779364,-1.160200,-1.948473,-0.031886,0.000072 +0.008394,0.780351,-1.158803,-1.948064,-0.031881,0.000073 +0.008390,0.781371,-1.157363,-1.947645,-0.031877,0.000074 +0.008385,0.782423,-1.155881,-1.947216,-0.031872,0.000076 +0.008380,0.783507,-1.154356,-1.946777,-0.031867,0.000077 +0.008375,0.784624,-1.152788,-1.946327,-0.031862,0.000078 +0.008370,0.785773,-1.151179,-1.945868,-0.031857,0.000080 +0.008365,0.786954,-1.149528,-1.945400,-0.031852,0.000081 +0.008359,0.788168,-1.147835,-1.944923,-0.031846,0.000083 +0.008354,0.789414,-1.146100,-1.944436,-0.031841,0.000084 +0.008348,0.790693,-1.144325,-1.943941,-0.031835,0.000086 +0.008342,0.792005,-1.142509,-1.943438,-0.031829,0.000088 +0.008337,0.793349,-1.140652,-1.942927,-0.031824,0.000089 +0.008331,0.794726,-1.138755,-1.942408,-0.031818,0.000091 +0.008324,0.796135,-1.136817,-1.941882,-0.031812,0.000093 +0.008318,0.797578,-1.134840,-1.941349,-0.031805,0.000094 +0.008312,0.799053,-1.132824,-1.940809,-0.031799,0.000096 +0.008305,0.800560,-1.130768,-1.940263,-0.031792,0.000098 +0.008299,0.802101,-1.128674,-1.939711,-0.031786,0.000100 +0.008292,0.803674,-1.126541,-1.939153,-0.031779,0.000102 +0.008285,0.805280,-1.124370,-1.938590,-0.031773,0.000104 +0.008279,0.806918,-1.122162,-1.938022,-0.031766,0.000105 +0.008272,0.808590,-1.119916,-1.937450,-0.031759,0.000107 +0.008265,0.810294,-1.117634,-1.936874,-0.031752,0.000109 +0.008257,0.812030,-1.115315,-1.936294,-0.031744,0.000111 +0.008250,0.813799,-1.112961,-1.935711,-0.031737,0.000113 +0.008243,0.815601,-1.110571,-1.935125,-0.031730,0.000116 +0.008235,0.817435,-1.108147,-1.934537,-0.031722,0.000118 +0.008228,0.819302,-1.105688,-1.933947,-0.031715,0.000120 +0.008220,0.821201,-1.103196,-1.933355,-0.031707,0.000122 +0.008212,0.823132,-1.100670,-1.932763,-0.031699,0.000124 +0.008205,0.825095,-1.098112,-1.932170,-0.031692,0.000126 +0.008197,0.827090,-1.095522,-1.931578,-0.031684,0.000129 +0.008189,0.829117,-1.092901,-1.930986,-0.031676,0.000131 +0.008181,0.831175,-1.090250,-1.930395,-0.031668,0.000133 +0.008173,0.833265,-1.087568,-1.929806,-0.031660,0.000135 +0.008164,0.835387,-1.084857,-1.929219,-0.031651,0.000138 +0.008156,0.837539,-1.082118,-1.928634,-0.031643,0.000140 +0.008148,0.839722,-1.079352,-1.928054,-0.031635,0.000142 +0.008139,0.841937,-1.076559,-1.927477,-0.031626,0.000145 +0.008131,0.844181,-1.073740,-1.926905,-0.031618,0.000147 +0.008123,0.846456,-1.070895,-1.926338,-0.031610,0.000150 +0.008114,0.848761,-1.068027,-1.925777,-0.031601,0.000152 +0.008105,0.851095,-1.065136,-1.925222,-0.031592,0.000154 +0.008097,0.853458,-1.062222,-1.924675,-0.031584,0.000157 +0.008088,0.855851,-1.059288,-1.924135,-0.031575,0.000159 +0.008079,0.858272,-1.056333,-1.923604,-0.031566,0.000162 +0.008071,0.860722,-1.053359,-1.923082,-0.031558,0.000164 +0.008062,0.863199,-1.050368,-1.922570,-0.031549,0.000167 +0.008053,0.865704,-1.047359,-1.922069,-0.031540,0.000169 +0.008044,0.868235,-1.044335,-1.921579,-0.031531,0.000172 +0.008035,0.870793,-1.041297,-1.921102,-0.031522,0.000174 +0.008026,0.873377,-1.038246,-1.920638,-0.031513,0.000177 +0.008017,0.875987,-1.035183,-1.920187,-0.031505,0.000180 +0.008009,0.878622,-1.032110,-1.919751,-0.031496,0.000182 +0.008000,0.881280,-1.029029,-1.919331,-0.031487,0.000185 +0.007991,0.883963,-1.025939,-1.918927,-0.031478,0.000187 +0.007982,0.886669,-1.022844,-1.918540,-0.031469,0.000190 +0.007973,0.889397,-1.019744,-1.918171,-0.031460,0.000192 +0.007964,0.892147,-1.016642,-1.917821,-0.031451,0.000195 +0.007955,0.894919,-1.013539,-1.917492,-0.031442,0.000197 +0.007946,0.897710,-1.010436,-1.917183,-0.031433,0.000200 +0.007937,0.900521,-1.007335,-1.916896,-0.031424,0.000203 +0.007929,0.903351,-1.004238,-1.916632,-0.031416,0.000205 +0.007920,0.906199,-1.001148,-1.916392,-0.031407,0.000208 +0.007911,0.909064,-0.998065,-1.916176,-0.031398,0.000210 +0.007902,0.911945,-0.994992,-1.915987,-0.031389,0.000213 +0.007894,0.914841,-0.991931,-1.915824,-0.031381,0.000215 +0.007885,0.917752,-0.988884,-1.915690,-0.031372,0.000218 +0.007876,0.920676,-0.985852,-1.915585,-0.031363,0.000220 +0.007868,0.923612,-0.982839,-1.915510,-0.031355,0.000223 +0.007859,0.926559,-0.979846,-1.915467,-0.031346,0.000225 +0.007851,0.929516,-0.976875,-1.915456,-0.031338,0.000228 +0.007843,0.932482,-0.973929,-1.915479,-0.031330,0.000230 +0.007834,0.935456,-0.971011,-1.915536,-0.031321,0.000232 +0.007826,0.938436,-0.968122,-1.915630,-0.031313,0.000235 +0.007818,0.941422,-0.965266,-1.915762,-0.031305,0.000237 +0.007810,0.944411,-0.962444,-1.915932,-0.031297,0.000239 +0.007802,0.947404,-0.959660,-1.916142,-0.031289,0.000242 +0.007795,0.950397,-0.956915,-1.916393,-0.031282,0.000244 +0.007787,0.953390,-0.954213,-1.916686,-0.031274,0.000246 +0.007779,0.956382,-0.951557,-1.917023,-0.031266,0.000248 +0.007772,0.959370,-0.948948,-1.917406,-0.031259,0.000250 +0.007765,0.962354,-0.946391,-1.917835,-0.031252,0.000253 +0.007757,0.965332,-0.943888,-1.918311,-0.031244,0.000255 +0.007750,0.968302,-0.941441,-1.918837,-0.031237,0.000257 +0.007743,0.971263,-0.939054,-1.919413,-0.031231,0.000259 +0.007737,0.974213,-0.936731,-1.920041,-0.031224,0.000261 +0.007730,0.977150,-0.934473,-1.920723,-0.031217,0.000263 +0.007724,0.980074,-0.932284,-1.921459,-0.031211,0.000264 +0.007717,0.982981,-0.930167,-1.922251,-0.031204,0.000266 +0.007711,0.985870,-0.928126,-1.923101,-0.031198,0.000268 +0.007705,0.988739,-0.926164,-1.924010,-0.031192,0.000270 +0.007700,0.991587,-0.924283,-1.924978,-0.031187,0.000271 +0.007694,0.994412,-0.922487,-1.926009,-0.031181,0.000273 +0.007689,0.997212,-0.920780,-1.927103,-0.031176,0.000275 +0.007684,0.999984,-0.919164,-1.928261,-0.031171,0.000276 +0.007679,1.002728,-0.917643,-1.929486,-0.031166,0.000278 +0.007674,1.005440,-0.916221,-1.930777,-0.031161,0.000279 +0.007669,1.008120,-0.914900,-1.932137,-0.031156,0.000280 +0.007665,1.010765,-0.913684,-1.933568,-0.031152,0.000282 +0.007661,1.013373,-0.912576,-1.935069,-0.031148,0.000283 +0.007657,1.015942,-0.911580,-1.936643,-0.031144,0.000284 +0.007654,1.018471,-0.910699,-1.938291,-0.031141,0.000285 +0.007650,1.020957,-0.909935,-1.940015,-0.031137,0.000286 +0.007647,1.023397,-0.909293,-1.941815,-0.031134,0.000287 +0.007645,1.025792,-0.908776,-1.943692,-0.031132,0.000288 +0.007642,1.028137,-0.908386,-1.945648,-0.031129,0.000288 +0.007640,1.030431,-0.908127,-1.947684,-0.031127,0.000289 +0.007638,1.032673,-0.908002,-1.949801,-0.031125,0.000290 +0.007636,1.034860,-0.908013,-1.952000,-0.031123,0.000290 +0.007635,1.036990,-0.908165,-1.954282,-0.031122,0.000290 +0.007634,1.039062,-0.908459,-1.956648,-0.031121,0.000291 +0.007633,1.041072,-0.908899,-1.959099,-0.031120,0.000291 +0.007633,1.043021,-0.909486,-1.961635,-0.031120,0.000291 +0.007633,1.044905,-0.910225,-1.964258,-0.031120,0.000291 +0.007633,1.046722,-0.911117,-1.966967,-0.031120,0.000291 +0.007633,1.048472,-0.912165,-1.969764,-0.031120,0.000291 +0.007634,1.050152,-0.913370,-1.972650,-0.031121,0.000291 +0.007636,1.051760,-0.914737,-1.975623,-0.031123,0.000290 +0.007637,1.053295,-0.916265,-1.978686,-0.031124,0.000290 +0.007639,1.054754,-0.917958,-1.981838,-0.031126,0.000289 +0.007642,1.056137,-0.919817,-1.985080,-0.031129,0.000288 +0.007644,1.057442,-0.921845,-1.988411,-0.031131,0.000288 +0.007648,1.058667,-0.924041,-1.991832,-0.031135,0.000287 +0.007651,1.059811,-0.926409,-1.995342,-0.031138,0.000286 +0.007655,1.060871,-0.928949,-1.998942,-0.031142,0.000285 +0.007659,1.061848,-0.931662,-2.002631,-0.031147,0.000283 +0.007664,1.062739,-0.934550,-2.006408,-0.031151,0.000282 +0.007669,1.063543,-0.937614,-2.010274,-0.031157,0.000280 +0.007675,1.064260,-0.940853,-2.014228,-0.031162,0.000279 +0.007681,1.064886,-0.944268,-2.018269,-0.031168,0.000277 +0.007688,1.065423,-0.947861,-2.022396,-0.031175,0.000275 +0.007695,1.065867,-0.951631,-2.026608,-0.031182,0.000273 +0.007702,1.066220,-0.955578,-2.030905,-0.031189,0.000271 +0.007710,1.066478,-0.959701,-2.035285,-0.031197,0.000268 +0.007718,1.066642,-0.964002,-2.039747,-0.031205,0.000266 +0.007727,1.066711,-0.968479,-2.044290,-0.031214,0.000263 +0.007737,1.066683,-0.973132,-2.048913,-0.031224,0.000261 +0.007746,1.066558,-0.977960,-2.053613,-0.031233,0.000258 +0.007757,1.066336,-0.982962,-2.058389,-0.031244,0.000255 +0.007768,1.066014,-0.988137,-2.063240,-0.031255,0.000252 +0.007779,1.065594,-0.993484,-2.068164,-0.031266,0.000248 +0.007791,1.065074,-0.999002,-2.073158,-0.031278,0.000245 +0.007803,1.064453,-1.004688,-2.078220,-0.031290,0.000241 +0.007816,1.063732,-1.010542,-2.083348,-0.031303,0.000238 +0.007829,1.062909,-1.016560,-2.088540,-0.031316,0.000234 +0.007843,1.061985,-1.022741,-2.093793,-0.031330,0.000230 +0.007858,1.060959,-1.029080,-2.099102,-0.031345,0.000225 +0.007873,1.059831,-1.035576,-2.104465,-0.031360,0.000221 +0.007889,1.058601,-1.042224,-2.109879,-0.031376,0.000217 +0.007905,1.057269,-1.049022,-2.115340,-0.031392,0.000212 +0.007921,1.055835,-1.055965,-2.120845,-0.031409,0.000207 +0.007939,1.054299,-1.063051,-2.126389,-0.031426,0.000202 +0.007957,1.052662,-1.070274,-2.131970,-0.031444,0.000197 +0.007975,1.050923,-1.077631,-2.137582,-0.031462,0.000192 +0.007994,1.049082,-1.085118,-2.143223,-0.031481,0.000186 +0.008013,1.047141,-1.092730,-2.148889,-0.031500,0.000181 +0.008033,1.045100,-1.100462,-2.154574,-0.031520,0.000175 +0.008054,1.042958,-1.108312,-2.160276,-0.031541,0.000169 +0.008075,1.040718,-1.116272,-2.165990,-0.031562,0.000163 +0.008097,1.038378,-1.124339,-2.171711,-0.031584,0.000157 +0.008119,1.035940,-1.132508,-2.177436,-0.031606,0.000151 +0.008142,1.033404,-1.140774,-2.183159,-0.031629,0.000144 +0.008165,1.030771,-1.149131,-2.188877,-0.031652,0.000138 +0.008189,1.028042,-1.157575,-2.194585,-0.031676,0.000131 +0.008213,1.025218,-1.166101,-2.200279,-0.031700,0.000124 +0.008238,1.022298,-1.174702,-2.205954,-0.031725,0.000117 +0.008263,1.019285,-1.183374,-2.211606,-0.031750,0.000110 +0.008289,1.016179,-1.192111,-2.217229,-0.031776,0.000102 +0.008316,1.012980,-1.200908,-2.222820,-0.031803,0.000095 +0.008343,1.009690,-1.209759,-2.228374,-0.031830,0.000087 +0.008370,1.006310,-1.218659,-2.233887,-0.031857,0.000080 +0.008398,1.002841,-1.227603,-2.239353,-0.031885,0.000072 +0.008426,0.999284,-1.236583,-2.244768,-0.031913,0.000064 +0.008455,0.995639,-1.245596,-2.250129,-0.031942,0.000056 +0.008484,0.991909,-1.254635,-2.255429,-0.031971,0.000048 +0.008513,0.988094,-1.263694,-2.260665,-0.032000,0.000040 +0.008543,0.984195,-1.272769,-2.265832,-0.032030,0.000032 +0.008574,0.980214,-1.281852,-2.270926,-0.032061,0.000023 +0.008605,0.976151,-1.290940,-2.275943,-0.032092,0.000015 +0.008636,0.972009,-1.300025,-2.280877,-0.032123,0.000006 +0.008667,0.967789,-1.309102,-2.285725,-0.032154,-0.000003 +0.008699,0.963492,-1.318165,-2.290483,-0.032186,-0.000011 +0.008731,0.959119,-1.327210,-2.295145,-0.032218,-0.000020 +0.008763,0.954672,-1.336230,-2.299710,-0.032250,-0.000029 +0.008796,0.950153,-1.345219,-2.304171,-0.032283,-0.000038 +0.008829,0.945563,-1.354172,-2.308525,-0.032316,-0.000047 +0.008862,0.940904,-1.363083,-2.312769,-0.032349,-0.000056 +0.008895,0.936178,-1.371947,-2.316898,-0.032382,-0.000065 +0.008929,0.931387,-1.380759,-2.320909,-0.032416,-0.000074 +0.008962,0.926531,-1.389512,-2.324798,-0.032449,-0.000083 +0.008996,0.921615,-1.398202,-2.328562,-0.032483,-0.000092 +0.009030,0.916638,-1.406822,-2.332197,-0.032517,-0.000101 +0.009064,0.911605,-1.415369,-2.335700,-0.032551,-0.000110 +0.009098,0.906515,-1.423836,-2.339069,-0.032585,-0.000119 +0.009132,0.901373,-1.432219,-2.342300,-0.032619,-0.000129 +0.009166,0.896178,-1.440513,-2.345390,-0.032653,-0.000138 +0.009200,0.890933,-1.448715,-2.348338,-0.032687,-0.000147 +0.009234,0.885640,-1.456820,-2.351141,-0.032721,-0.000156 +0.009268,0.880301,-1.464824,-2.353797,-0.032755,-0.000165 +0.009302,0.874917,-1.472722,-2.356302,-0.032789,-0.000174 +0.009336,0.869491,-1.480511,-2.358657,-0.032823,-0.000183 +0.009369,0.864026,-1.488186,-2.360857,-0.032856,-0.000191 +0.009403,0.858522,-1.495743,-2.362902,-0.032890,-0.000200 +0.009436,0.852984,-1.503178,-2.364790,-0.032923,-0.000209 +0.009469,0.847412,-1.510487,-2.366518,-0.032956,-0.000218 +0.009502,0.841809,-1.517666,-2.368086,-0.032989,-0.000226 +0.009534,0.836179,-1.524711,-2.369493,-0.033021,-0.000235 +0.009567,0.830523,-1.531619,-2.370736,-0.033053,-0.000243 +0.009598,0.824844,-1.538384,-2.371814,-0.033085,-0.000251 +0.009630,0.819146,-1.545004,-2.372728,-0.033117,-0.000259 +0.009661,0.813431,-1.551474,-2.373475,-0.033148,-0.000268 +0.009692,0.807702,-1.557792,-2.374055,-0.033178,-0.000275 +0.009722,0.801961,-1.563953,-2.374468,-0.033209,-0.000283 +0.009751,0.796214,-1.569953,-2.374713,-0.033238,-0.000291 +0.009781,0.790462,-1.575790,-2.374790,-0.033268,-0.000298 +0.009809,0.784708,-1.581459,-2.374699,-0.033296,-0.000306 +0.009837,0.778958,-1.586957,-2.374439,-0.033324,-0.000313 +0.009865,0.773213,-1.592282,-2.374012,-0.033352,-0.000320 +0.009892,0.767478,-1.597429,-2.373417,-0.033379,-0.000327 +0.009918,0.761756,-1.602396,-2.372656,-0.033405,-0.000333 +0.009943,0.756051,-1.607180,-2.371728,-0.033430,-0.000340 +0.009968,0.750367,-1.611777,-2.370635,-0.033455,-0.000346 +0.009992,0.744708,-1.616184,-2.369378,-0.033479,-0.000352 +0.010016,0.739079,-1.620400,-2.367958,-0.033503,-0.000358 +0.010038,0.733482,-1.624421,-2.366376,-0.033525,-0.000364 +0.010060,0.727922,-1.628244,-2.364634,-0.033547,-0.000369 +0.010081,0.722404,-1.631868,-2.362735,-0.033568,-0.000375 +0.010101,0.716932,-1.635290,-2.360679,-0.033588,-0.000380 +0.010120,0.711509,-1.638507,-2.358469,-0.033607,-0.000385 +0.010138,0.706141,-1.641517,-2.356107,-0.033625,-0.000389 +0.010156,0.700832,-1.644320,-2.353595,-0.033642,-0.000394 +0.010172,0.695586,-1.646911,-2.350937,-0.033659,-0.000398 +0.010187,0.690408,-1.649291,-2.348134,-0.033674,-0.000402 +0.010202,0.685301,-1.651457,-2.345191,-0.033689,-0.000405 +0.010215,0.680272,-1.653408,-2.342108,-0.033702,-0.000408 +0.010228,0.675323,-1.655143,-2.338891,-0.033714,-0.000412 +0.010239,0.670459,-1.656659,-2.335542,-0.033726,-0.000414 +0.010249,0.665686,-1.657958,-2.332064,-0.033736,-0.000417 +0.010259,0.661007,-1.659036,-2.328461,-0.033745,-0.000419 +0.010267,0.656426,-1.659895,-2.324737,-0.033754,-0.000421 +0.010274,0.651948,-1.660532,-2.320895,-0.033761,-0.000423 +0.010280,0.647578,-1.660949,-2.316939,-0.033767,-0.000425 +0.010285,0.643319,-1.661143,-2.312873,-0.033772,-0.000426 +0.010289,0.639175,-1.661116,-2.308701,-0.033776,-0.000427 +0.010291,0.635150,-1.660867,-2.304428,-0.033778,-0.000427 +0.010293,0.631250,-1.660397,-2.300056,-0.033780,-0.000428 +0.010294,0.627476,-1.659706,-2.295591,-0.033780,-0.000428 +0.010293,0.623833,-1.658794,-2.291036,-0.033780,-0.000428 +0.010291,0.620326,-1.657661,-2.286397,-0.033778,-0.000427 +0.010288,0.616956,-1.656310,-2.281676,-0.033775,-0.000427 +0.010284,0.613727,-1.654740,-2.276878,-0.033771,-0.000426 +0.010279,0.610644,-1.652952,-2.272009,-0.033766,-0.000425 +0.010273,0.607708,-1.650949,-2.267071,-0.033760,-0.000423 +0.010266,0.604923,-1.648730,-2.262070,-0.033753,-0.000421 +0.010258,0.602292,-1.646299,-2.257009,-0.033745,-0.000419 +0.010249,0.599817,-1.643656,-2.251893,-0.033736,-0.000417 +0.010238,0.597501,-1.640802,-2.246726,-0.033725,-0.000414 +0.010227,0.595345,-1.637741,-2.241512,-0.033714,-0.000411 +0.010214,0.593353,-1.634474,-2.236256,-0.033701,-0.000408 +0.010201,0.591527,-1.631003,-2.230962,-0.033688,-0.000405 +0.010186,0.589867,-1.627330,-2.225633,-0.033673,-0.000401 +0.010171,0.588376,-1.623458,-2.220274,-0.033658,-0.000397 +0.010155,0.587054,-1.619390,-2.214888,-0.033642,-0.000393 +0.010137,0.585905,-1.615127,-2.209480,-0.033624,-0.000389 +0.010119,0.584927,-1.610673,-2.204053,-0.033606,-0.000384 +0.010100,0.584124,-1.606030,-2.198611,-0.033587,-0.000380 +0.010080,0.583494,-1.601202,-2.193158,-0.033567,-0.000375 +0.010059,0.583039,-1.596190,-2.187697,-0.033546,-0.000369 +0.010037,0.582759,-1.591000,-2.182232,-0.033524,-0.000364 +0.010015,0.582654,-1.585632,-2.176766,-0.033502,-0.000358 +0.009992,0.582725,-1.580092,-2.171302,-0.033479,-0.000352 +0.009968,0.582972,-1.574382,-2.165844,-0.033455,-0.000346 +0.009943,0.583393,-1.568505,-2.160395,-0.033430,-0.000340 +0.009917,0.583989,-1.562465,-2.154957,-0.033404,-0.000333 +0.009891,0.584758,-1.556266,-2.149535,-0.033378,-0.000327 +0.009864,0.585701,-1.549911,-2.144129,-0.033351,-0.000320 +0.009837,0.586817,-1.543403,-2.138745,-0.033324,-0.000313 +0.009809,0.588104,-1.536748,-2.133383,-0.033296,-0.000306 +0.009781,0.589560,-1.529947,-2.128046,-0.033268,-0.000298 +0.009752,0.591186,-1.523006,-2.122738,-0.033239,-0.000291 +0.009722,0.592979,-1.515928,-2.117461,-0.033209,-0.000283 +0.009692,0.594938,-1.508717,-2.112216,-0.033179,-0.000276 +0.009661,0.597060,-1.501377,-2.107006,-0.033148,-0.000268 +0.009631,0.599345,-1.493911,-2.101834,-0.033118,-0.000260 +0.009599,0.601790,-1.486325,-2.096701,-0.033086,-0.000252 +0.009568,0.604393,-1.478622,-2.091609,-0.033055,-0.000243 +0.009536,0.607152,-1.470806,-2.086561,-0.033023,-0.000235 +0.009503,0.610065,-1.462882,-2.081558,-0.032990,-0.000227 +0.009471,0.613129,-1.454853,-2.076601,-0.032958,-0.000218 +0.009438,0.616342,-1.446724,-2.071694,-0.032925,-0.000209 +0.009405,0.619701,-1.438499,-2.066836,-0.032892,-0.000201 +0.009372,0.623203,-1.430183,-2.062031,-0.032859,-0.000192 +0.009338,0.626847,-1.421779,-2.057279,-0.032825,-0.000183 +0.009305,0.630628,-1.413292,-2.052583,-0.032792,-0.000174 +0.009271,0.634544,-1.404727,-2.047943,-0.032758,-0.000166 +0.009237,0.638592,-1.396088,-2.043361,-0.032724,-0.000157 +0.009204,0.642770,-1.387379,-2.038838,-0.032691,-0.000148 +0.009170,0.647073,-1.378605,-2.034376,-0.032657,-0.000139 +0.009136,0.651499,-1.369770,-2.029976,-0.032623,-0.000130 +0.009102,0.656044,-1.360879,-2.025639,-0.032589,-0.000121 +0.009068,0.660705,-1.351936,-2.021367,-0.032555,-0.000111 +0.009034,0.665479,-1.342946,-2.017160,-0.032521,-0.000102 +0.009001,0.670363,-1.333914,-2.013021,-0.032488,-0.000093 +0.008967,0.675352,-1.324845,-2.008949,-0.032454,-0.000084 +0.008934,0.680444,-1.315742,-2.004947,-0.032421,-0.000075 +0.008900,0.685634,-1.306611,-2.001015,-0.032387,-0.000066 +0.008867,0.690919,-1.297456,-1.997155,-0.032354,-0.000057 +0.008834,0.696296,-1.288282,-1.993368,-0.032321,-0.000048 +0.008801,0.701761,-1.279095,-1.989654,-0.032288,-0.000039 +0.008769,0.707310,-1.269899,-1.986015,-0.032256,-0.000030 +0.008736,0.712939,-1.260698,-1.982453,-0.032223,-0.000022 +0.008704,0.718644,-1.251499,-1.978967,-0.032191,-0.000013 +0.008672,0.724422,-1.242305,-1.975560,-0.032159,-0.000004 +0.008641,0.730268,-1.233123,-1.972232,-0.032128,0.000005 +0.008610,0.736179,-1.223956,-1.968985,-0.032097,0.000013 +0.008579,0.742151,-1.214810,-1.965820,-0.032066,0.000022 +0.008548,0.748179,-1.205691,-1.962738,-0.032035,0.000030 +0.008518,0.754260,-1.196604,-1.959739,-0.032005,0.000039 +0.008488,0.760389,-1.187554,-1.956827,-0.031975,0.000047 +0.008458,0.766563,-1.178545,-1.954000,-0.031945,0.000055 +0.008429,0.772777,-1.169585,-1.951262,-0.031916,0.000063 +0.008400,0.779027,-1.160678,-1.948613,-0.031887,0.000071 +0.008372,0.785308,-1.151829,-1.946054,-0.031859,0.000079 +0.008344,0.791618,-1.143045,-1.943586,-0.031831,0.000087 +0.008317,0.797950,-1.134330,-1.941212,-0.031804,0.000095 +0.008290,0.804302,-1.125691,-1.938932,-0.031777,0.000102 +0.008263,0.810668,-1.117134,-1.936748,-0.031750,0.000110 +0.008237,0.817044,-1.108663,-1.934662,-0.031724,0.000117 +0.008211,0.823427,-1.100285,-1.932673,-0.031698,0.000124 +0.008186,0.829811,-1.092006,-1.930785,-0.031673,0.000132 +0.008161,0.836192,-1.083832,-1.928999,-0.031648,0.000139 +0.008137,0.842565,-1.075768,-1.927315,-0.031624,0.000145 +0.008113,0.848927,-1.067820,-1.925737,-0.031600,0.000152 +0.008090,0.855273,-1.059996,-1.924264,-0.031577,0.000159 +0.008067,0.861598,-1.052299,-1.922899,-0.031554,0.000165 +0.008045,0.867897,-1.044738,-1.921644,-0.031532,0.000172 +0.008024,0.874167,-1.037318,-1.920499,-0.031511,0.000178 +0.008003,0.880403,-1.030044,-1.919467,-0.031490,0.000184 +0.007982,0.886599,-1.022923,-1.918549,-0.031469,0.000190 +0.007962,0.892753,-1.015962,-1.917747,-0.031449,0.000195 +0.007943,0.898859,-1.009166,-1.917063,-0.031430,0.000201 +0.007924,0.904912,-1.002541,-1.916497,-0.031411,0.000207 +0.007905,0.910909,-0.996094,-1.916052,-0.031392,0.000212 +0.007888,0.916845,-0.989830,-1.915729,-0.031375,0.000217 +0.007870,0.922715,-0.983756,-1.915530,-0.031357,0.000222 +0.007854,0.928516,-0.977876,-1.915456,-0.031341,0.000227 +0.007838,0.934242,-0.972198,-1.915509,-0.031325,0.000231 +0.007822,0.939890,-0.966727,-1.915690,-0.031309,0.000236 +0.007807,0.945455,-0.961468,-1.916000,-0.031294,0.000240 +0.007793,0.950934,-0.956427,-1.916442,-0.031280,0.000244 +0.007779,0.956321,-0.951610,-1.917016,-0.031267,0.000248 +0.007766,0.961614,-0.947021,-1.917724,-0.031253,0.000252 +0.007754,0.966808,-0.942665,-1.918566,-0.031241,0.000256 +0.007742,0.971900,-0.938548,-1.919544,-0.031229,0.000259 +0.007731,0.976885,-0.934674,-1.920659,-0.031218,0.000262 +0.007720,0.981761,-0.931048,-1.921911,-0.031207,0.000266 +0.007710,0.986523,-0.927673,-1.923302,-0.031197,0.000268 +0.007701,0.991169,-0.924555,-1.924832,-0.031188,0.000271 +0.007692,0.995695,-0.921696,-1.926501,-0.031179,0.000274 +0.007683,1.000098,-0.919099,-1.928311,-0.031170,0.000276 +0.007676,1.004375,-0.916770,-1.930260,-0.031163,0.000278 +0.007669,1.008524,-0.914709,-1.932350,-0.031156,0.000281 +0.007662,1.012541,-0.912919,-1.934580,-0.031149,0.000282 +0.007657,1.016425,-0.911404,-1.936950,-0.031144,0.000284 +0.007651,1.020173,-0.910165,-1.939460,-0.031138,0.000286 +0.007647,1.023783,-0.909202,-1.942109,-0.031134,0.000287 +0.007643,1.027253,-0.908519,-1.944897,-0.031130,0.000288 +0.007640,1.030582,-0.908114,-1.947822,-0.031127,0.000289 +0.007637,1.033767,-0.907990,-1.950884,-0.031124,0.000290 +0.007635,1.036808,-0.908146,-1.954082,-0.031122,0.000290 +0.007634,1.039704,-0.908582,-1.957413,-0.031121,0.000291 +0.007633,1.042452,-0.909297,-1.960877,-0.031120,0.000291 +0.007633,1.045053,-0.910291,-1.964472,-0.031120,0.000291 +0.007633,1.047506,-0.911562,-1.968196,-0.031120,0.000291 +0.007634,1.049811,-0.913108,-1.972046,-0.031121,0.000291 +0.007636,1.051966,-0.914928,-1.976021,-0.031123,0.000290 +0.007638,1.053972,-0.917020,-1.980119,-0.031125,0.000289 +0.007641,1.055830,-0.919380,-1.984335,-0.031128,0.000289 +0.007645,1.057538,-0.922006,-1.988669,-0.031132,0.000288 +0.007649,1.059098,-0.924895,-1.993116,-0.031136,0.000286 +0.007654,1.060511,-0.928043,-1.997675,-0.031141,0.000285 +0.007659,1.061775,-0.931446,-2.002341,-0.031146,0.000283 +0.007665,1.062894,-0.935100,-2.007112,-0.031152,0.000282 +0.007672,1.063866,-0.939002,-2.011985,-0.031159,0.000280 +0.007679,1.064694,-0.943146,-2.016954,-0.031166,0.000277 +0.007687,1.065378,-0.947528,-2.022018,-0.031174,0.000275 +0.007696,1.065920,-0.952144,-2.027173,-0.031183,0.000273 +0.007705,1.066320,-0.956987,-2.032414,-0.031192,0.000270 +0.007715,1.066580,-0.962053,-2.037737,-0.031202,0.000267 +0.007725,1.066703,-0.967336,-2.043139,-0.031212,0.000264 +0.007736,1.066688,-0.972831,-2.048616,-0.031223,0.000261 +0.007748,1.066537,-0.978532,-2.054164,-0.031235,0.000258 +0.007760,1.066253,-0.984434,-2.059778,-0.031247,0.000254 +0.007773,1.065837,-0.990530,-2.065454,-0.031260,0.000250 +0.007786,1.065290,-0.996815,-2.071188,-0.031273,0.000246 +0.007800,1.064614,-1.003282,-2.076976,-0.031287,0.000242 +0.007815,1.063812,-1.009927,-2.082813,-0.031302,0.000238 +0.007830,1.062883,-1.016742,-2.088696,-0.031317,0.000234 +0.007846,1.061832,-1.023722,-2.094619,-0.031333,0.000229 +0.007862,1.060658,-1.030860,-2.100579,-0.031349,0.000224 +0.007879,1.059364,-1.038150,-2.106571,-0.031366,0.000219 +0.007897,1.057951,-1.045587,-2.112590,-0.031384,0.000214 +0.007915,1.056422,-1.053164,-2.118633,-0.031402,0.000209 +0.007933,1.054778,-1.060875,-2.124694,-0.031420,0.000204 +0.007953,1.053021,-1.068714,-2.130770,-0.031440,0.000198 +0.007973,1.051153,-1.076675,-2.136857,-0.031460,0.000192 +0.007993,1.049174,-1.084752,-2.142949,-0.031480,0.000187 +0.008014,1.047087,-1.092938,-2.149043,-0.031501,0.000181 +0.008035,1.044894,-1.101229,-2.155134,-0.031522,0.000174 +0.008057,1.042595,-1.109618,-2.161218,-0.031544,0.000168 +0.008080,1.040194,-1.118099,-2.167291,-0.031567,0.000162 +0.008103,1.037690,-1.126666,-2.173348,-0.031590,0.000155 +0.008127,1.035087,-1.135314,-2.179386,-0.031614,0.000148 +0.008151,1.032384,-1.144036,-2.185399,-0.031638,0.000142 +0.008175,1.029585,-1.152828,-2.191385,-0.031662,0.000135 +0.008201,1.026690,-1.161684,-2.197338,-0.031688,0.000127 +0.008226,1.023700,-1.170597,-2.203255,-0.031713,0.000120 +0.008252,1.020618,-1.179563,-2.209131,-0.031739,0.000113 +0.008279,1.017444,-1.188577,-2.214963,-0.031766,0.000105 +0.008306,1.014180,-1.197632,-2.220746,-0.031793,0.000098 +0.008333,1.010827,-1.206723,-2.226477,-0.031820,0.000090 +0.008361,1.007387,-1.215845,-2.232151,-0.031848,0.000082 +0.008390,1.003861,-1.224993,-2.237766,-0.031877,0.000074 +0.008418,1.000250,-1.234162,-2.243316,-0.031905,0.000066 +0.008448,0.996556,-1.243346,-2.248798,-0.031935,0.000058 +0.008477,0.992780,-1.252541,-2.254208,-0.031964,0.000050 +0.008507,0.988923,-1.261741,-2.259542,-0.031994,0.000042 +0.008537,0.984986,-1.270941,-2.264798,-0.032024,0.000033 +0.008568,0.980972,-1.280137,-2.269970,-0.032055,0.000025 +0.008599,0.976880,-1.289323,-2.275056,-0.032086,0.000016 +0.008630,0.972713,-1.298494,-2.280051,-0.032117,0.000007 +0.008662,0.968471,-1.307646,-2.284953,-0.032149,-0.000001 +0.008694,0.964156,-1.316775,-2.289758,-0.032181,-0.000010 +0.008726,0.959770,-1.325874,-2.294462,-0.032213,-0.000019 +0.008759,0.955313,-1.334940,-2.299062,-0.032246,-0.000028 +0.008791,0.950787,-1.343967,-2.303555,-0.032278,-0.000037 +0.008824,0.946194,-1.352952,-2.307937,-0.032311,-0.000046 +0.008858,0.941534,-1.361889,-2.312205,-0.032345,-0.000055 +0.008891,0.936809,-1.370774,-2.316356,-0.032378,-0.000064 +0.008924,0.932021,-1.379602,-2.320388,-0.032411,-0.000073 +0.008958,0.927171,-1.388369,-2.324295,-0.032445,-0.000082 +0.008992,0.922260,-1.397071,-2.328077,-0.032479,-0.000091 +0.009026,0.917291,-1.405702,-2.331730,-0.032513,-0.000100 +0.009060,0.912265,-1.414258,-2.335251,-0.032547,-0.000109 +0.009094,0.907182,-1.422736,-2.338637,-0.032581,-0.000118 +0.009128,0.902046,-1.431130,-2.341886,-0.032615,-0.000127 +0.009162,0.896858,-1.439436,-2.344995,-0.032649,-0.000136 +0.009196,0.891620,-1.447650,-2.347962,-0.032683,-0.000146 +0.009230,0.886333,-1.455768,-2.350784,-0.032717,-0.000155 +0.009264,0.881000,-1.463785,-2.353459,-0.032751,-0.000164 +0.009298,0.875622,-1.471698,-2.355984,-0.032785,-0.000173 +0.009331,0.870201,-1.479501,-2.358358,-0.032818,-0.000181 +0.009365,0.864741,-1.487191,-2.360579,-0.032852,-0.000190 +0.009399,0.859242,-1.494764,-2.362644,-0.032886,-0.000199 +0.009432,0.853708,-1.502215,-2.364552,-0.032919,-0.000208 +0.009465,0.848140,-1.509541,-2.366302,-0.032952,-0.000217 +0.009498,0.842542,-1.516737,-2.367891,-0.032985,-0.000225 +0.009530,0.836915,-1.523800,-2.369318,-0.033017,-0.000234 +0.009562,0.831262,-1.530725,-2.370583,-0.033049,-0.000242 +0.009594,0.825586,-1.537510,-2.371683,-0.033081,-0.000250 +0.009626,0.819890,-1.544149,-2.372618,-0.033113,-0.000258 +0.009657,0.814177,-1.550639,-2.373387,-0.033144,-0.000266 +0.009688,0.808450,-1.556977,-2.373989,-0.033175,-0.000274 +0.009718,0.802711,-1.563158,-2.374424,-0.033205,-0.000282 +0.009748,0.796964,-1.569179,-2.374691,-0.033235,-0.000290 +0.009777,0.791212,-1.575038,-2.374789,-0.033264,-0.000297 +0.009806,0.785459,-1.580729,-2.374720,-0.033293,-0.000305 +0.009834,0.779708,-1.586250,-2.374483,-0.033321,-0.000312 +0.009861,0.773962,-1.591597,-2.374077,-0.033348,-0.000319 +0.009888,0.768225,-1.596768,-2.373504,-0.033375,-0.000326 +0.009915,0.762501,-1.601759,-2.372765,-0.033401,-0.000333 +0.009940,0.756794,-1.606566,-2.371858,-0.033427,-0.000339 +0.009965,0.751107,-1.611188,-2.370787,-0.033452,-0.000345 +0.009989,0.745445,-1.615620,-2.369551,-0.033476,-0.000352 +0.010013,0.739811,-1.619861,-2.368152,-0.033500,-0.000358 +0.010035,0.734210,-1.623908,-2.366591,-0.033522,-0.000363 +0.010057,0.728645,-1.627757,-2.364871,-0.033544,-0.000369 +0.010078,0.723121,-1.631407,-2.362991,-0.033565,-0.000374 +0.010098,0.717643,-1.634855,-2.360956,-0.033585,-0.000379 +0.010118,0.712214,-1.638099,-2.358766,-0.033604,-0.000384 +0.010136,0.706838,-1.641137,-2.356423,-0.033623,-0.000389 +0.010153,0.701521,-1.643966,-2.353931,-0.033640,-0.000393 +0.010170,0.696267,-1.646585,-2.351292,-0.033657,-0.000397 +0.010185,0.691079,-1.648993,-2.348508,-0.033672,-0.000401 +0.010200,0.685963,-1.651187,-2.345583,-0.033687,-0.000405 +0.010213,0.680923,-1.653166,-2.342518,-0.033700,-0.000408 +0.010226,0.675964,-1.654929,-2.339318,-0.033713,-0.000411 +0.010238,0.671089,-1.656474,-2.335986,-0.033724,-0.000414 +0.010248,0.666303,-1.657801,-2.332525,-0.033735,-0.000417 +0.010257,0.661612,-1.658908,-2.328938,-0.033744,-0.000419 +0.010266,0.657018,-1.659795,-2.325229,-0.033753,-0.000421 +0.010273,0.652526,-1.660462,-2.321402,-0.033760,-0.000423 +0.010279,0.648142,-1.660907,-2.317461,-0.033766,-0.000424 +0.010284,0.643868,-1.661130,-2.313410,-0.033771,-0.000426 +0.010288,0.639709,-1.661132,-2.309251,-0.033775,-0.000427 +0.010291,0.635669,-1.660912,-2.304991,-0.033778,-0.000427 +0.010293,0.631751,-1.660471,-2.300632,-0.033780,-0.000428 +0.010294,0.627961,-1.659808,-2.296179,-0.033780,-0.000428 +0.010293,0.624301,-1.658925,-2.291635,-0.033780,-0.000428 +0.010291,0.620775,-1.657821,-2.287006,-0.033778,-0.000428 +0.010289,0.617387,-1.656498,-2.282296,-0.033776,-0.000427 +0.010285,0.614140,-1.654957,-2.277508,-0.033772,-0.000426 +0.010280,0.611038,-1.653198,-2.272648,-0.033767,-0.000425 +0.010274,0.608083,-1.651222,-2.267719,-0.033761,-0.000423 +0.010267,0.605278,-1.649032,-2.262726,-0.033754,-0.000421 +0.010259,0.602626,-1.646628,-2.257672,-0.033746,-0.000419 +0.010250,0.600131,-1.644012,-2.252563,-0.033737,-0.000417 +0.010240,0.597794,-1.641186,-2.247403,-0.033727,-0.000415 +0.010228,0.595617,-1.638152,-2.242195,-0.033715,-0.000412 +0.010216,0.593604,-1.634912,-2.236944,-0.033703,-0.000409 +0.010203,0.591755,-1.631467,-2.231655,-0.033690,-0.000405 +0.010188,0.590074,-1.627821,-2.226330,-0.033675,-0.000402 +0.010173,0.588560,-1.623975,-2.220974,-0.033660,-0.000398 +0.010157,0.587217,-1.619932,-2.215592,-0.033644,-0.000394 +0.010140,0.586045,-1.615694,-2.210187,-0.033627,-0.000390 +0.010121,0.585045,-1.611265,-2.204762,-0.033608,-0.000385 +0.010102,0.584219,-1.606646,-2.199322,-0.033589,-0.000380 +0.010083,0.583566,-1.601842,-2.193870,-0.033569,-0.000375 +0.010062,0.583088,-1.596854,-2.188410,-0.033549,-0.000370 +0.010040,0.582786,-1.591687,-2.182945,-0.033527,-0.000364 +0.010018,0.582658,-1.586342,-2.177479,-0.033505,-0.000359 +0.009995,0.582706,-1.580824,-2.172015,-0.033482,-0.000353 +0.009971,0.582929,-1.575136,-2.166556,-0.033458,-0.000347 +0.009946,0.583328,-1.569281,-2.161105,-0.033433,-0.000341 +0.009921,0.583901,-1.563262,-2.155666,-0.033408,-0.000334 +0.009895,0.584648,-1.557083,-2.150241,-0.033382,-0.000328 +0.009868,0.585569,-1.550748,-2.144833,-0.033355,-0.000321 +0.009841,0.586662,-1.544261,-2.139446,-0.033328,-0.000314 +0.009813,0.587926,-1.537624,-2.134081,-0.033300,-0.000307 +0.009784,0.589361,-1.530842,-2.128741,-0.033271,-0.000299 +0.009755,0.590965,-1.523919,-2.123429,-0.033242,-0.000292 +0.009726,0.592736,-1.516859,-2.118147,-0.033213,-0.000284 +0.009696,0.594673,-1.509665,-2.112898,-0.033183,-0.000277 +0.009665,0.596774,-1.502341,-2.107684,-0.033152,-0.000269 +0.009635,0.599038,-1.494892,-2.102507,-0.033122,-0.000261 +0.009603,0.601462,-1.487321,-2.097368,-0.033090,-0.000253 +0.009572,0.604045,-1.479633,-2.092271,-0.033059,-0.000244 +0.009540,0.606784,-1.471832,-2.087217,-0.033027,-0.000236 +0.009508,0.609677,-1.463922,-2.082208,-0.032995,-0.000228 +0.009475,0.612721,-1.455906,-2.077245,-0.032962,-0.000219 +0.009442,0.615914,-1.447790,-2.072331,-0.032929,-0.000211 +0.009409,0.619254,-1.439577,-2.067467,-0.032896,-0.000202 +0.009376,0.622738,-1.431273,-2.062655,-0.032863,-0.000193 +0.009343,0.626363,-1.422880,-2.057896,-0.032830,-0.000184 +0.009309,0.630127,-1.414404,-2.053192,-0.032796,-0.000176 +0.009276,0.634026,-1.405849,-2.048545,-0.032762,-0.000167 +0.009242,0.638057,-1.397219,-2.043955,-0.032729,-0.000158 +0.009208,0.642217,-1.388519,-2.039425,-0.032695,-0.000149 +0.009174,0.646504,-1.379753,-2.034955,-0.032661,-0.000140 +0.009140,0.650914,-1.370926,-2.030546,-0.032627,-0.000131 +0.009106,0.655444,-1.362042,-2.026201,-0.032593,-0.000122 +0.009073,0.660091,-1.353105,-2.021921,-0.032560,-0.000113 +0.009039,0.664850,-1.344122,-2.017705,-0.032526,-0.000104 +0.009005,0.669720,-1.335095,-2.013557,-0.032492,-0.000095 +0.008971,0.674695,-1.326030,-2.009477,-0.032458,-0.000085 +0.008938,0.679774,-1.316931,-2.005465,-0.032425,-0.000076 +0.008905,0.684951,-1.307803,-2.001524,-0.032392,-0.000067 +0.008871,0.690225,-1.298651,-1.997655,-0.032358,-0.000058 +0.008838,0.695590,-1.289480,-1.993858,-0.032325,-0.000049 +0.008806,0.701043,-1.280294,-1.990134,-0.032293,-0.000040 +0.008773,0.706581,-1.271099,-1.986486,-0.032260,-0.000032 +0.008741,0.712200,-1.261899,-1.982913,-0.032228,-0.000023 +0.008708,0.717896,-1.252699,-1.979417,-0.032195,-0.000014 +0.008677,0.723664,-1.243504,-1.976000,-0.032164,-0.000005 +0.008645,0.729502,-1.234320,-1.972662,-0.032132,0.000003 +0.008614,0.735405,-1.225151,-1.969404,-0.032101,0.000012 +0.008583,0.741368,-1.216002,-1.966228,-0.032070,0.000021 +0.008552,0.747390,-1.206879,-1.963135,-0.032039,0.000029 +0.008522,0.753464,-1.197787,-1.960126,-0.032009,0.000038 +0.008492,0.759587,-1.188732,-1.957202,-0.031979,0.000046 +0.008462,0.765755,-1.179718,-1.954364,-0.031949,0.000054 +0.008433,0.771964,-1.170751,-1.951614,-0.031920,0.000062 +0.008404,0.778209,-1.161836,-1.948953,-0.031891,0.000070 +0.008376,0.784487,-1.152980,-1.946382,-0.031863,0.000078 +0.008348,0.790793,-1.144187,-1.943903,-0.031835,0.000086 +0.008320,0.797123,-1.135463,-1.941517,-0.031807,0.000094 +0.008293,0.803472,-1.126814,-1.939224,-0.031780,0.000101 +0.008266,0.809837,-1.118245,-1.937028,-0.031753,0.000109 +0.008240,0.816212,-1.109763,-1.934928,-0.031727,0.000116 +0.008215,0.822594,-1.101373,-1.932927,-0.031702,0.000124 +0.008189,0.828978,-1.093080,-1.931026,-0.031676,0.000131 +0.008164,0.835360,-1.084892,-1.929226,-0.031651,0.000138 +0.008140,0.841734,-1.076813,-1.927529,-0.031627,0.000145 +0.008116,0.848098,-1.068850,-1.925937,-0.031603,0.000151 +0.008093,0.854446,-1.061009,-1.924450,-0.031580,0.000158 +0.008070,0.860774,-1.053296,-1.923071,-0.031557,0.000164 +0.008048,0.867077,-1.045717,-1.921801,-0.031535,0.000171 +0.008026,0.873351,-1.038277,-1.920642,-0.031513,0.000177 +0.008005,0.879591,-1.030984,-1.919595,-0.031492,0.000183 +0.007985,0.885793,-1.023843,-1.918663,-0.031472,0.000189 +0.007965,0.891953,-1.016861,-1.917845,-0.031452,0.000195 +0.007945,0.898065,-1.010043,-1.917145,-0.031432,0.000200 +0.007926,0.904126,-1.003396,-1.916564,-0.031413,0.000206 +0.007908,0.910130,-0.996925,-1.916103,-0.031395,0.000211 +0.007890,0.916074,-0.990637,-1.915764,-0.031377,0.000216 +0.007873,0.921953,-0.984537,-1.915549,-0.031360,0.000221 +0.007856,0.927763,-0.978632,-1.915458,-0.031343,0.000226 +0.007840,0.933499,-0.972927,-1.915494,-0.031327,0.000231 +0.007824,0.939158,-0.967429,-1.915659,-0.031311,0.000235 +0.007809,0.944734,-0.962142,-1.915952,-0.031296,0.000240 +0.007795,0.950224,-0.957072,-1.916377,-0.031282,0.000244 +0.007781,0.955624,-0.952225,-1.916934,-0.031268,0.000248 +0.007768,0.960929,-0.947606,-1.917624,-0.031255,0.000252 +0.007755,0.966137,-0.943220,-1.918449,-0.031243,0.000255 +0.007744,0.971242,-0.939071,-1.919409,-0.031231,0.000259 +0.007732,0.976241,-0.935166,-1.920506,-0.031219,0.000262 +0.007721,0.981131,-0.931507,-1.921740,-0.031208,0.000265 +0.007711,0.985909,-0.928099,-1.923113,-0.031198,0.000268 +0.007702,0.990570,-0.924947,-1.924624,-0.031189,0.000271 +0.007693,0.995112,-0.922054,-1.926276,-0.031180,0.000274 +0.007684,0.999531,-0.919423,-1.928067,-0.031171,0.000276 +0.007677,1.003824,-0.917058,-1.929998,-0.031164,0.000278 +0.007670,1.007990,-0.914962,-1.932069,-0.031157,0.000280 +0.007663,1.012025,-0.913137,-1.934281,-0.031150,0.000282 +0.007657,1.015926,-0.911586,-1.936633,-0.031144,0.000284 +0.007652,1.019692,-0.910311,-1.939125,-0.031139,0.000285 +0.007647,1.023320,-0.909312,-1.941756,-0.031135,0.000287 +0.007643,1.026809,-0.908592,-1.944526,-0.031131,0.000288 +0.007640,1.030156,-0.908151,-1.947433,-0.031127,0.000289 +0.007637,1.033360,-0.907991,-1.950477,-0.031124,0.000290 +0.007635,1.036420,-0.908110,-1.953657,-0.031122,0.000290 +0.007634,1.039334,-0.908509,-1.956971,-0.031121,0.000291 +0.007633,1.042102,-0.909188,-1.960418,-0.031120,0.000291 +0.007633,1.044722,-0.910146,-1.963996,-0.031120,0.000291 +0.007633,1.047195,-0.911380,-1.967703,-0.031120,0.000291 +0.007634,1.049518,-0.912891,-1.971537,-0.031121,0.000291 +0.007636,1.051693,-0.914675,-1.975496,-0.031123,0.000290 +0.007638,1.053719,-0.916732,-1.979577,-0.031125,0.000290 +0.007641,1.055596,-0.919057,-1.983778,-0.031128,0.000289 +0.007644,1.057324,-0.921649,-1.988097,-0.031131,0.000288 +0.007648,1.058903,-0.924503,-1.992530,-0.031135,0.000287 +0.007653,1.060335,-0.927617,-1.997074,-0.031140,0.000285 +0.007658,1.061619,-0.930987,-2.001727,-0.031145,0.000284 +0.007664,1.062756,-0.934609,-2.006484,-0.031151,0.000282 +0.007671,1.063747,-0.938479,-2.011343,-0.031158,0.000280 +0.007678,1.064594,-0.942592,-2.016301,-0.031165,0.000278 +0.007686,1.065297,-0.946943,-2.021353,-0.031173,0.000275 +0.007695,1.065857,-0.951529,-2.026495,-0.031182,0.000273 +0.007704,1.066276,-0.956342,-2.031725,-0.031191,0.000270 +0.007713,1.066554,-0.961379,-2.037038,-0.031200,0.000268 +0.007724,1.066694,-0.966635,-2.042430,-0.031211,0.000265 +0.007735,1.066697,-0.972102,-2.047898,-0.031222,0.000261 +0.007746,1.066565,-0.977777,-2.053436,-0.031233,0.000258 +0.007758,1.066298,-0.983653,-2.059042,-0.031245,0.000254 +0.007771,1.065899,-0.989724,-2.064710,-0.031258,0.000251 +0.007784,1.065369,-0.995984,-2.070437,-0.031271,0.000247 +0.007798,1.064710,-1.002429,-2.076218,-0.031285,0.000243 +0.007813,1.063923,-1.009050,-2.082049,-0.031300,0.000239 +0.007828,1.063012,-1.015844,-2.087926,-0.031315,0.000234 +0.007844,1.061976,-1.022802,-2.093844,-0.031331,0.000230 +0.007860,1.060818,-1.029920,-2.099800,-0.031347,0.000225 +0.007877,1.059539,-1.037191,-2.105787,-0.031364,0.000220 +0.007894,1.058142,-1.044609,-2.111803,-0.031381,0.000215 +0.007912,1.056628,-1.052168,-2.117843,-0.031399,0.000210 +0.007931,1.054999,-1.059862,-2.123903,-0.031418,0.000204 +0.007950,1.053257,-1.067685,-2.129977,-0.031437,0.000199 +0.007970,1.051403,-1.075630,-2.136063,-0.031457,0.000193 +0.007990,1.049438,-1.083692,-2.142154,-0.031477,0.000187 +0.008011,1.047365,-1.091864,-2.148248,-0.031498,0.000181 +0.008033,1.045186,-1.100142,-2.154340,-0.031520,0.000175 +0.008054,1.042901,-1.108518,-2.160425,-0.031541,0.000169 +0.008077,1.040513,-1.116987,-2.166500,-0.031564,0.000163 +0.008100,1.038023,-1.125544,-2.172559,-0.031587,0.000156 +0.008124,1.035432,-1.134181,-2.178599,-0.031611,0.000149 +0.008148,1.032742,-1.142894,-2.184616,-0.031635,0.000143 +0.008172,1.029956,-1.151678,-2.190606,-0.031659,0.000136 +0.008197,1.027073,-1.160525,-2.196563,-0.031684,0.000128 +0.008223,1.024095,-1.169431,-2.202485,-0.031710,0.000121 +0.008249,1.021025,-1.178391,-2.208367,-0.031736,0.000114 +0.008275,1.017863,-1.187398,-2.214205,-0.031762,0.000106 +0.008302,1.014611,-1.196448,-2.219995,-0.031789,0.000099 +0.008330,1.011269,-1.205535,-2.225733,-0.031817,0.000091 +0.008358,1.007841,-1.214654,-2.231415,-0.031845,0.000083 +0.008386,1.004326,-1.223799,-2.237037,-0.031873,0.000075 +0.008415,1.000726,-1.232965,-2.242595,-0.031902,0.000067 +0.008444,0.997043,-1.242147,-2.248086,-0.031931,0.000059 +0.008473,0.993277,-1.251341,-2.253506,-0.031960,0.000051 +0.008503,0.989431,-1.260541,-2.258851,-0.031990,0.000043 +0.008533,0.985504,-1.269741,-2.264117,-0.032020,0.000034 +0.008564,0.981500,-1.278937,-2.269300,-0.032051,0.000026 +0.008595,0.977418,-1.288125,-2.274397,-0.032082,0.000017 +0.008626,0.973261,-1.297299,-2.279405,-0.032113,0.000009 +0.008658,0.969029,-1.306454,-2.284319,-0.032145,-0.000000 +0.008690,0.964723,-1.315585,-2.289137,-0.032177,-0.000009 +0.008722,0.960346,-1.324689,-2.293854,-0.032209,-0.000018 +0.008754,0.955898,-1.333759,-2.298468,-0.032241,-0.000027 +0.008787,0.951381,-1.342792,-2.302975,-0.032274,-0.000035 +0.008820,0.946797,-1.351783,-2.307372,-0.032307,-0.000044 +0.008853,0.942145,-1.360726,-2.311655,-0.032340,-0.000053 +0.008887,0.937429,-1.369618,-2.315822,-0.032374,-0.000062 +0.008920,0.932649,-1.378454,-2.319869,-0.032407,-0.000072 +0.008954,0.927807,-1.387229,-2.323793,-0.032441,-0.000081 +0.008987,0.922904,-1.395940,-2.327591,-0.032474,-0.000090 +0.009021,0.917943,-1.404580,-2.331261,-0.032508,-0.000099 +0.009055,0.912923,-1.413147,-2.334799,-0.032542,-0.000108 +0.009089,0.907848,-1.421635,-2.338203,-0.032576,-0.000117 +0.009123,0.902719,-1.430040,-2.341470,-0.032610,-0.000126 +0.009157,0.897538,-1.438357,-2.344597,-0.032644,-0.000135 +0.009191,0.892307,-1.446582,-2.347582,-0.032678,-0.000144 +0.009225,0.887029,-1.454709,-2.350422,-0.032712,-0.000153 +0.009259,0.881707,-1.462733,-2.353114,-0.032746,-0.000162 +0.009293,0.876342,-1.470649,-2.355656,-0.032780,-0.000171 +0.009327,0.870937,-1.478452,-2.358046,-0.032814,-0.000180 +0.009360,0.865496,-1.486138,-2.360282,-0.032847,-0.000189 +0.009394,0.860020,-1.493703,-2.362362,-0.032881,-0.000198 +0.009427,0.854514,-1.501141,-2.364285,-0.032914,-0.000207 +0.009460,0.848979,-1.508448,-2.366049,-0.032947,-0.000215 +0.009493,0.843420,-1.515620,-2.367653,-0.032979,-0.000224 +0.009525,0.837839,-1.522652,-2.369096,-0.033012,-0.000232 +0.009557,0.832239,-1.529541,-2.370376,-0.033044,-0.000241 +0.009588,0.826623,-1.536283,-2.371495,-0.033075,-0.000249 +0.009620,0.820996,-1.542873,-2.372450,-0.033107,-0.000257 +0.009650,0.815360,-1.549309,-2.373241,-0.033137,-0.000265 +0.009681,0.809719,-1.555586,-2.373870,-0.033168,-0.000273 +0.009711,0.804077,-1.561702,-2.374335,-0.033198,-0.000280 +0.009740,0.798436,-1.567653,-2.374638,-0.033227,-0.000288 +0.009769,0.792802,-1.573435,-2.374779,-0.033256,-0.000295 +0.009797,0.787177,-1.579047,-2.374758,-0.033284,-0.000303 +0.009825,0.781565,-1.584485,-2.374578,-0.033312,-0.000310 +0.009852,0.775971,-1.589747,-2.374238,-0.033339,-0.000317 +0.009878,0.770397,-1.594830,-2.373741,-0.033365,-0.000323 +0.009904,0.764848,-1.599733,-2.373088,-0.033391,-0.000330 +0.009929,0.759328,-1.604452,-2.372282,-0.033416,-0.000336 +0.009953,0.753841,-1.608987,-2.371323,-0.033440,-0.000342 +0.009977,0.748390,-1.613336,-2.370215,-0.033464,-0.000348 +0.010000,0.742980,-1.617497,-2.368960,-0.033487,-0.000354 +0.010022,0.737614,-1.621469,-2.367560,-0.033509,-0.000360 +0.010043,0.732296,-1.625251,-2.366019,-0.033530,-0.000365 +0.010063,0.727030,-1.628842,-2.364339,-0.033550,-0.000370 +0.010083,0.721820,-1.632242,-2.362523,-0.033570,-0.000375 +0.010102,0.716669,-1.635450,-2.360576,-0.033589,-0.000380 +0.010120,0.711582,-1.638465,-2.358499,-0.033607,-0.000385 +0.010137,0.706561,-1.641288,-2.356298,-0.033624,-0.000389 +0.010153,0.701611,-1.643920,-2.353975,-0.033640,-0.000393 +0.010168,0.696735,-1.646359,-2.351535,-0.033655,-0.000397 +0.010183,0.691936,-1.648608,-2.348980,-0.033670,-0.000400 +0.010196,0.687218,-1.650666,-2.346317,-0.033683,-0.000404 +0.010209,0.682583,-1.652535,-2.343548,-0.033696,-0.000407 +0.010221,0.678035,-1.654215,-2.340678,-0.033708,-0.000410 +0.010232,0.673577,-1.655709,-2.337711,-0.033719,-0.000413 +0.010242,0.669211,-1.657018,-2.334651,-0.033729,-0.000415 +0.010251,0.664941,-1.658143,-2.331503,-0.033738,-0.000417 +0.010259,0.660768,-1.659086,-2.328272,-0.033746,-0.000419 +0.010266,0.656695,-1.659850,-2.324961,-0.033753,-0.000421 +0.010273,0.652725,-1.660437,-2.321576,-0.033760,-0.000423 +0.010278,0.648859,-1.660849,-2.318120,-0.033765,-0.000424 +0.010283,0.645099,-1.661088,-2.314599,-0.033770,-0.000425 +0.010287,0.641447,-1.661159,-2.311016,-0.033774,-0.000426 +0.010290,0.637903,-1.661062,-2.307376,-0.033777,-0.000427 +0.010292,0.634470,-1.660802,-2.303682,-0.033779,-0.000428 +0.010293,0.631148,-1.660382,-2.299939,-0.033780,-0.000428 +0.010294,0.627937,-1.659803,-2.296149,-0.033780,-0.000428 +0.010293,0.624838,-1.659071,-2.292318,-0.033780,-0.000428 +0.010292,0.621852,-1.658187,-2.288448,-0.033779,-0.000428 +0.010290,0.618980,-1.657154,-2.284544,-0.033777,-0.000427 +0.010288,0.616221,-1.655977,-2.280608,-0.033775,-0.000427 +0.010284,0.613575,-1.654658,-2.276645,-0.033771,-0.000426 +0.010280,0.611043,-1.653201,-2.272657,-0.033767,-0.000425 +0.010275,0.608625,-1.651609,-2.268647,-0.033762,-0.000424 +0.010270,0.606320,-1.649885,-2.264620,-0.033757,-0.000422 +0.010264,0.604128,-1.648032,-2.260577,-0.033751,-0.000421 +0.010257,0.602049,-1.646055,-2.256522,-0.033744,-0.000419 +0.010250,0.600081,-1.643956,-2.252458,-0.033737,-0.000417 +0.010242,0.598226,-1.641739,-2.248387,-0.033729,-0.000415 +0.010233,0.596481,-1.639408,-2.244313,-0.033720,-0.000413 +0.010224,0.594845,-1.636965,-2.240237,-0.033711,-0.000411 +0.010214,0.593319,-1.634414,-2.236162,-0.033701,-0.000408 +0.010204,0.591901,-1.631758,-2.232091,-0.033691,-0.000406 +0.010193,0.590590,-1.629001,-2.228025,-0.033680,-0.000403 +0.010182,0.589384,-1.626146,-2.223968,-0.033669,-0.000400 +0.010170,0.588283,-1.623197,-2.219921,-0.033657,-0.000397 +0.010158,0.587286,-1.620156,-2.215885,-0.033645,-0.000394 +0.010145,0.586390,-1.617028,-2.211864,-0.033632,-0.000391 +0.010132,0.585594,-1.613815,-2.207859,-0.033619,-0.000388 +0.010118,0.584898,-1.610520,-2.203871,-0.033605,-0.000384 +0.010105,0.584298,-1.607147,-2.199902,-0.033591,-0.000381 +0.010090,0.583795,-1.603699,-2.195954,-0.033577,-0.000377 +0.010076,0.583385,-1.600180,-2.192029,-0.033563,-0.000373 +0.010061,0.583068,-1.596591,-2.188127,-0.033548,-0.000370 +0.010045,0.582842,-1.592937,-2.184250,-0.033532,-0.000366 +0.010030,0.582704,-1.589220,-2.180399,-0.033517,-0.000362 +0.010014,0.582654,-1.585443,-2.176576,-0.033501,-0.000358 +0.009998,0.582689,-1.581609,-2.172781,-0.033485,-0.000354 +0.009982,0.582807,-1.577722,-2.169016,-0.033469,-0.000350 +0.009965,0.583007,-1.573783,-2.165282,-0.033452,-0.000345 +0.009948,0.583286,-1.569796,-2.161579,-0.033435,-0.000341 +0.009931,0.583643,-1.565764,-2.157908,-0.033418,-0.000337 +0.009914,0.584076,-1.561689,-2.154271,-0.033401,-0.000332 +0.009897,0.584583,-1.557575,-2.150667,-0.033384,-0.000328 +0.009879,0.585162,-1.553422,-2.147098,-0.033366,-0.000324 +0.009862,0.585810,-1.549235,-2.143564,-0.033349,-0.000319 +0.009844,0.586527,-1.545016,-2.140065,-0.033331,-0.000315 +0.009826,0.587310,-1.540767,-2.136603,-0.033313,-0.000310 +0.009808,0.588156,-1.536490,-2.133178,-0.033295,-0.000305 +0.009790,0.589065,-1.532189,-2.129790,-0.033277,-0.000301 +0.009772,0.590034,-1.527865,-2.126440,-0.033259,-0.000296 +0.009754,0.591061,-1.523520,-2.123127,-0.033241,-0.000291 +0.009735,0.592145,-1.519158,-2.119853,-0.033222,-0.000287 +0.009717,0.593282,-1.514779,-2.116617,-0.033204,-0.000282 +0.009699,0.594473,-1.510387,-2.113419,-0.033186,-0.000277 +0.009681,0.595713,-1.505983,-2.110261,-0.033168,-0.000273 +0.009662,0.597003,-1.501570,-2.107142,-0.033149,-0.000268 +0.009644,0.598339,-1.497149,-2.104062,-0.033131,-0.000263 +0.009626,0.599720,-1.492722,-2.101021,-0.033113,-0.000258 +0.009607,0.601145,-1.488292,-2.098020,-0.033094,-0.000254 +0.009589,0.602611,-1.483860,-2.095058,-0.033076,-0.000249 +0.009571,0.604116,-1.479427,-2.092136,-0.033058,-0.000244 +0.009553,0.605659,-1.474997,-2.089253,-0.033040,-0.000239 +0.009535,0.607238,-1.470569,-2.086410,-0.033022,-0.000235 +0.009517,0.608851,-1.466147,-2.083606,-0.033004,-0.000230 +0.009499,0.610497,-1.461732,-2.080841,-0.032986,-0.000225 +0.009481,0.612174,-1.457325,-2.078115,-0.032968,-0.000221 +0.009463,0.613880,-1.452928,-2.075429,-0.032950,-0.000216 +0.009445,0.615614,-1.448542,-2.072782,-0.032932,-0.000211 +0.009428,0.617374,-1.444169,-2.070174,-0.032915,-0.000207 +0.009410,0.619158,-1.439811,-2.067604,-0.032897,-0.000202 +0.009393,0.620965,-1.435468,-2.065073,-0.032880,-0.000198 +0.009376,0.622794,-1.431142,-2.062580,-0.032862,-0.000193 +0.009358,0.624643,-1.426834,-2.060126,-0.032845,-0.000189 +0.009341,0.626510,-1.422546,-2.057709,-0.032828,-0.000184 +0.009324,0.628394,-1.418279,-2.055330,-0.032811,-0.000180 +0.009308,0.630293,-1.414034,-2.052989,-0.032795,-0.000175 +0.009291,0.632207,-1.409812,-2.050685,-0.032778,-0.000171 +0.009275,0.634134,-1.405614,-2.048418,-0.032762,-0.000166 +0.009258,0.636073,-1.401441,-2.046188,-0.032745,-0.000162 +0.009242,0.638021,-1.397294,-2.043995,-0.032729,-0.000158 +0.009226,0.639979,-1.393175,-2.041838,-0.032713,-0.000154 +0.009210,0.641944,-1.389085,-2.039716,-0.032697,-0.000149 +0.009194,0.643916,-1.385023,-2.037631,-0.032681,-0.000145 +0.009179,0.645893,-1.380992,-2.035581,-0.032666,-0.000141 +0.009164,0.647874,-1.376991,-2.033566,-0.032650,-0.000137 +0.009148,0.649858,-1.373023,-2.031585,-0.032635,-0.000133 +0.009133,0.651844,-1.369087,-2.029640,-0.032620,-0.000129 +0.009118,0.653831,-1.365184,-2.027728,-0.032605,-0.000125 +0.009104,0.655818,-1.361316,-2.025850,-0.032591,-0.000121 +0.009089,0.657803,-1.357483,-2.024006,-0.032576,-0.000117 +0.009075,0.659787,-1.353685,-2.022195,-0.032562,-0.000113 +0.009061,0.661766,-1.349923,-2.020418,-0.032548,-0.000109 +0.009047,0.663742,-1.346199,-2.018672,-0.032534,-0.000106 +0.009033,0.665712,-1.342512,-2.016959,-0.032520,-0.000102 +0.009019,0.667677,-1.338863,-2.015278,-0.032506,-0.000098 +0.009006,0.669634,-1.335252,-2.013629,-0.032493,-0.000095 +0.008992,0.671583,-1.331681,-2.012010,-0.032479,-0.000091 +0.008979,0.673524,-1.328149,-2.010423,-0.032466,-0.000088 +0.008966,0.675455,-1.324658,-2.008867,-0.032453,-0.000084 +0.008954,0.677376,-1.321207,-2.007340,-0.032441,-0.000081 +0.008941,0.679286,-1.317798,-2.005844,-0.032428,-0.000077 +0.008929,0.681184,-1.314429,-2.004377,-0.032416,-0.000074 +0.008917,0.683070,-1.311103,-2.002940,-0.032404,-0.000071 +0.008905,0.684942,-1.307819,-2.001531,-0.032392,-0.000067 +0.008893,0.686801,-1.304578,-2.000151,-0.032380,-0.000064 +0.008881,0.688644,-1.301379,-1.998800,-0.032368,-0.000061 +0.008870,0.690473,-1.298224,-1.997476,-0.032357,-0.000058 +0.008859,0.692285,-1.295112,-1.996180,-0.032346,-0.000055 +0.008848,0.694082,-1.292045,-1.994911,-0.032335,-0.000052 +0.008837,0.695861,-1.289021,-1.993670,-0.032324,-0.000049 +0.008826,0.697622,-1.286042,-1.992455,-0.032313,-0.000046 +0.008816,0.699365,-1.283107,-1.991266,-0.032303,-0.000043 +0.008805,0.701089,-1.280217,-1.990103,-0.032292,-0.000040 +0.008795,0.702795,-1.277373,-1.988966,-0.032282,-0.000038 +0.008785,0.704480,-1.274573,-1.987855,-0.032272,-0.000035 +0.008775,0.706145,-1.271819,-1.986768,-0.032262,-0.000032 +0.008766,0.707789,-1.269110,-1.985707,-0.032253,-0.000030 +0.008757,0.709413,-1.266447,-1.984670,-0.032244,-0.000027 +0.008747,0.711014,-1.263830,-1.983657,-0.032234,-0.000025 +0.008738,0.712594,-1.261259,-1.982667,-0.032225,-0.000022 +0.008729,0.714151,-1.258733,-1.981702,-0.032216,-0.000020 +0.008721,0.715685,-1.256254,-1.980759,-0.032208,-0.000017 +0.008712,0.717196,-1.253822,-1.979840,-0.032199,-0.000015 +0.008704,0.718684,-1.251435,-1.978943,-0.032191,-0.000013 +0.008696,0.720147,-1.249095,-1.978069,-0.032183,-0.000011 +0.008688,0.721587,-1.246801,-1.977217,-0.032175,-0.000008 +0.008680,0.723002,-1.244554,-1.976386,-0.032167,-0.000006 +0.008673,0.724391,-1.242353,-1.975578,-0.032160,-0.000004 +0.008665,0.725756,-1.240199,-1.974790,-0.032152,-0.000002 +0.008658,0.727095,-1.238092,-1.974024,-0.032145,-0.000000 +0.008651,0.728408,-1.236031,-1.973278,-0.032138,0.000002 +0.008644,0.729696,-1.234016,-1.972553,-0.032131,0.000004 +0.008637,0.730957,-1.232049,-1.971848,-0.032124,0.000006 +0.008631,0.732191,-1.230128,-1.971163,-0.032118,0.000007 +0.008624,0.733399,-1.228253,-1.970498,-0.032111,0.000009 +0.008618,0.734579,-1.226425,-1.969853,-0.032105,0.000011 +0.008612,0.735733,-1.224644,-1.969226,-0.032099,0.000013 +0.008606,0.736859,-1.222909,-1.968619,-0.032093,0.000014 +0.008600,0.737957,-1.221221,-1.968031,-0.032087,0.000016 +0.008595,0.739028,-1.219579,-1.967461,-0.032082,0.000017 +0.008589,0.740070,-1.217984,-1.966910,-0.032076,0.000019 +0.008584,0.741084,-1.216435,-1.966377,-0.032071,0.000020 +0.008579,0.742070,-1.214933,-1.965862,-0.032066,0.000022 +0.008574,0.743028,-1.213477,-1.965365,-0.032061,0.000023 +0.008569,0.743957,-1.212067,-1.964885,-0.032056,0.000024 +0.008565,0.744857,-1.210703,-1.964423,-0.032052,0.000026 +0.008560,0.745728,-1.209386,-1.963978,-0.032047,0.000027 +0.008556,0.746570,-1.208115,-1.963550,-0.032043,0.000028 +0.008552,0.747382,-1.206890,-1.963139,-0.032039,0.000029 +0.008548,0.748166,-1.205711,-1.962744,-0.032035,0.000030 +0.008544,0.748920,-1.204578,-1.962366,-0.032031,0.000031 +0.008541,0.749645,-1.203491,-1.962005,-0.032028,0.000032 +0.008537,0.750341,-1.202448,-1.961659,-0.032024,0.000033 +0.008534,0.751009,-1.201449,-1.961329,-0.032021,0.000034 +0.008531,0.751649,-1.200492,-1.961013,-0.032018,0.000035 +0.008528,0.752263,-1.199576,-1.960712,-0.032015,0.000036 +0.008525,0.752850,-1.198702,-1.960425,-0.032012,0.000037 +0.008522,0.753410,-1.197867,-1.960152,-0.032009,0.000037 +0.008519,0.753946,-1.197071,-1.959892,-0.032006,0.000038 +0.008517,0.754456,-1.196312,-1.959644,-0.032004,0.000039 +0.008514,0.754942,-1.195591,-1.959410,-0.032001,0.000040 +0.008512,0.755405,-1.194905,-1.959187,-0.031999,0.000040 +0.008510,0.755844,-1.194255,-1.958976,-0.031997,0.000041 +0.008508,0.756260,-1.193638,-1.958777,-0.031995,0.000041 +0.008506,0.756655,-1.193055,-1.958588,-0.031993,0.000042 +0.008504,0.757028,-1.192504,-1.958411,-0.031991,0.000042 +0.008502,0.757380,-1.191984,-1.958243,-0.031989,0.000043 +0.008501,0.757711,-1.191494,-1.958086,-0.031988,0.000043 +0.008499,0.758023,-1.191034,-1.957938,-0.031986,0.000044 +0.008498,0.758316,-1.190603,-1.957800,-0.031985,0.000044 +0.008497,0.758590,-1.190199,-1.957670,-0.031984,0.000045 +0.008495,0.758846,-1.189821,-1.957550,-0.031982,0.000045 +0.008494,0.759085,-1.189470,-1.957437,-0.031981,0.000045 +0.008493,0.759308,-1.189143,-1.957333,-0.031980,0.000045 +0.008492,0.759514,-1.188840,-1.957236,-0.031979,0.000046 +0.008491,0.759704,-1.188560,-1.957147,-0.031978,0.000046 +0.008490,0.759879,-1.188302,-1.957065,-0.031977,0.000046 +0.008490,0.760041,-1.188065,-1.956989,-0.031977,0.000046 +0.008489,0.760188,-1.187849,-1.956920,-0.031976,0.000047 +0.008488,0.760322,-1.187652,-1.956858,-0.031975,0.000047 +0.008488,0.760444,-1.187473,-1.956801,-0.031975,0.000047 +0.008487,0.760554,-1.187312,-1.956750,-0.031974,0.000047 +0.008487,0.760652,-1.187167,-1.956704,-0.031974,0.000047 +0.008486,0.760740,-1.187039,-1.956663,-0.031973,0.000047 +0.008486,0.760818,-1.186924,-1.956627,-0.031973,0.000047 +0.008485,0.760886,-1.186824,-1.956595,-0.031972,0.000048 +0.008485,0.760946,-1.186737,-1.956567,-0.031972,0.000048 +0.008485,0.760997,-1.186662,-1.956544,-0.031972,0.000048 +0.008485,0.761040,-1.186598,-1.956523,-0.031972,0.000048 +0.008485,0.761077,-1.186545,-1.956506,-0.031972,0.000048 +0.008484,0.761107,-1.186501,-1.956492,-0.031971,0.000048 +0.008484,0.761131,-1.186465,-1.956481,-0.031971,0.000048 +0.008484,0.761151,-1.186437,-1.956472,-0.031971,0.000048 +0.008484,0.761165,-1.186415,-1.956465,-0.031971,0.000048 +0.008484,0.761176,-1.186400,-1.956460,-0.031971,0.000048 +0.008484,0.761183,-1.186389,-1.956457,-0.031971,0.000048 +0.008484,0.761188,-1.186382,-1.956455,-0.031971,0.000048 +0.008484,0.761191,-1.186378,-1.956454,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008478,0.761191,-1.186370,-1.956450,-0.031973,0.000039 +0.008483,0.761186,-1.186370,-1.956450,-0.031979,0.000033 +0.008498,0.761171,-1.186350,-1.956430,-0.031997,0.000015 +0.008528,0.761141,-1.186320,-1.956390,-0.032033,-0.000021 +0.008579,0.761090,-1.186270,-1.956330,-0.032094,-0.000082 +0.008656,0.761013,-1.186200,-1.956240,-0.032187,-0.000175 +0.008765,0.760904,-1.186090,-1.956110,-0.032317,-0.000305 +0.008911,0.760759,-1.185940,-1.955930,-0.032491,-0.000480 +0.009099,0.760571,-1.185750,-1.955710,-0.032717,-0.000705 +0.009335,0.760335,-1.185520,-1.955430,-0.032999,-0.000987 +0.009624,0.760046,-1.185230,-1.955080,-0.033345,-0.001334 +0.009971,0.759698,-1.184880,-1.954660,-0.033762,-0.001750 +0.010383,0.759286,-1.184470,-1.954170,-0.034255,-0.002243 +0.010864,0.758805,-1.183990,-1.953590,-0.034831,-0.002819 +0.011420,0.758250,-1.183430,-1.952930,-0.035497,-0.003482 +0.012056,0.757613,-1.182800,-1.952170,-0.036259,-0.004225 +0.012778,0.756892,-1.182070,-1.951300,-0.037123,-0.005042 +0.013591,0.756079,-1.181260,-1.950330,-0.038085,-0.005926 +0.014500,0.755170,-1.180350,-1.949240,-0.039139,-0.006872 +0.015511,0.754158,-1.179340,-1.948030,-0.040278,-0.007872 +0.016629,0.753040,-1.178220,-1.946690,-0.041496,-0.008921 +0.017858,0.751809,-1.176990,-1.945210,-0.042787,-0.010012 +0.019192,0.750460,-1.175640,-1.943600,-0.044144,-0.011137 +0.020626,0.748995,-1.174170,-1.941830,-0.045561,-0.012292 +0.022154,0.747419,-1.172570,-1.939910,-0.047031,-0.013468 +0.023772,0.745737,-1.170830,-1.937830,-0.048547,-0.014661 +0.025475,0.743955,-1.168960,-1.935590,-0.050103,-0.015863 +0.027255,0.742078,-1.166940,-1.933160,-0.051693,-0.017067 +0.029109,0.740112,-1.164760,-1.930560,-0.053310,-0.018272 +0.031030,0.738062,-1.162440,-1.927780,-0.054948,-0.019477 +0.033014,0.735933,-1.159950,-1.924790,-0.056601,-0.020682 +0.035055,0.733731,-1.157290,-1.921610,-0.058260,-0.021887 +0.037147,0.731461,-1.154470,-1.918220,-0.059922,-0.023092 +0.039285,0.729128,-1.151480,-1.914620,-0.061584,-0.024297 +0.041464,0.726739,-1.148330,-1.910800,-0.063245,-0.025502 +0.043678,0.724298,-1.145020,-1.906760,-0.064907,-0.026707 +0.045922,0.721811,-1.141570,-1.902480,-0.066569,-0.027912 +0.048190,0.719284,-1.137970,-1.897970,-0.068231,-0.029117 +0.050477,0.716720,-1.134240,-1.893200,-0.069892,-0.030322 +0.052778,0.714127,-1.130370,-1.888190,-0.071554,-0.031527 +0.055088,0.711510,-1.126370,-1.882920,-0.073216,-0.032732 +0.057400,0.708873,-1.122250,-1.877390,-0.074877,-0.033937 +0.059712,0.706223,-1.118020,-1.871600,-0.076539,-0.035142 +0.062024,0.703564,-1.113670,-1.865550,-0.078201,-0.036347 +0.064336,0.700903,-1.109220,-1.859250,-0.079863,-0.037552 +0.066648,0.698241,-1.104670,-1.852680,-0.081524,-0.038757 +0.068961,0.695579,-1.100020,-1.845850,-0.083186,-0.039962 +0.071273,0.692918,-1.095280,-1.838770,-0.084848,-0.041167 +0.073585,0.690256,-1.090460,-1.831420,-0.086509,-0.042371 +0.075897,0.687594,-1.085560,-1.823820,-0.088171,-0.043576 +0.078210,0.684933,-1.080590,-1.815960,-0.089833,-0.044781 +0.080522,0.682271,-1.075550,-1.807840,-0.091494,-0.045986 +0.082834,0.679609,-1.070440,-1.799460,-0.093156,-0.047191 +0.085146,0.676948,-1.065280,-1.790820,-0.094818,-0.048396 +0.087458,0.674286,-1.060070,-1.781920,-0.096479,-0.049601 +0.089771,0.671624,-1.054810,-1.772760,-0.098141,-0.050806 +0.092083,0.668962,-1.049510,-1.763340,-0.099803,-0.052011 +0.094395,0.666301,-1.044170,-1.753660,-0.101465,-0.053216 +0.096707,0.663639,-1.038810,-1.743730,-0.103126,-0.054421 +0.099020,0.660977,-1.033420,-1.733530,-0.104788,-0.055626 +0.101332,0.658316,-1.028010,-1.723080,-0.106450,-0.056831 +0.103644,0.655654,-1.022580,-1.712370,-0.108111,-0.058036 +0.105956,0.652992,-1.017150,-1.701410,-0.109773,-0.059241 +0.108268,0.650331,-1.011720,-1.690220,-0.111435,-0.060446 +0.110581,0.647669,-1.006280,-1.678790,-0.113097,-0.061651 +0.112893,0.645007,-1.000850,-1.667130,-0.114758,-0.062856 +0.115205,0.642345,-0.995410,-1.655250,-0.116420,-0.064061 +0.117517,0.639684,-0.989975,-1.643150,-0.118082,-0.065266 +0.119830,0.637022,-0.984539,-1.630850,-0.119743,-0.066471 +0.122142,0.634360,-0.979104,-1.618350,-0.121405,-0.067676 +0.124454,0.631699,-0.973669,-1.605640,-0.123067,-0.068880 +0.126766,0.629037,-0.968233,-1.592760,-0.124728,-0.070085 +0.129078,0.626375,-0.962798,-1.579680,-0.126390,-0.071290 +0.131391,0.623714,-0.957363,-1.566440,-0.128052,-0.072495 +0.133703,0.621052,-0.951927,-1.553020,-0.129714,-0.073700 +0.136015,0.618390,-0.946492,-1.539440,-0.131375,-0.074905 +0.138327,0.615728,-0.941057,-1.525700,-0.133037,-0.076110 +0.140640,0.613067,-0.935621,-1.511810,-0.134699,-0.077315 +0.142952,0.610405,-0.930186,-1.497780,-0.136360,-0.078520 +0.145264,0.607743,-0.924751,-1.483610,-0.138022,-0.079725 +0.147576,0.605082,-0.919315,-1.469310,-0.139684,-0.080930 +0.149888,0.602420,-0.913880,-1.454890,-0.141345,-0.082135 +0.152201,0.599758,-0.908445,-1.440350,-0.143007,-0.083340 +0.154513,0.597097,-0.903009,-1.425700,-0.144669,-0.084545 +0.156825,0.594435,-0.897574,-1.410940,-0.146331,-0.085750 +0.159137,0.591773,-0.892139,-1.396090,-0.147992,-0.086955 +0.161450,0.589111,-0.886703,-1.381140,-0.149654,-0.088160 +0.163762,0.586450,-0.881268,-1.366110,-0.151316,-0.089365 +0.166074,0.583788,-0.875833,-1.350990,-0.152977,-0.090570 +0.168386,0.581126,-0.870397,-1.335810,-0.154639,-0.091775 +0.170698,0.578465,-0.864962,-1.320560,-0.156301,-0.092980 +0.173011,0.575803,-0.859527,-1.305250,-0.157962,-0.094185 +0.175323,0.573141,-0.854091,-1.289890,-0.159624,-0.095390 +0.177635,0.570480,-0.848656,-1.274480,-0.161286,-0.096594 +0.179947,0.567818,-0.843221,-1.259030,-0.162948,-0.097799 +0.182259,0.565156,-0.837785,-1.243550,-0.164609,-0.099004 +0.184572,0.562494,-0.832350,-1.228040,-0.166271,-0.100209 +0.186884,0.559833,-0.826915,-1.212520,-0.167933,-0.101414 +0.189196,0.557171,-0.821479,-1.196970,-0.169594,-0.102619 +0.191508,0.554509,-0.816044,-1.181420,-0.171256,-0.103824 +0.193821,0.551848,-0.810609,-1.165870,-0.172918,-0.105029 +0.196133,0.549186,-0.805173,-1.150320,-0.174579,-0.106234 +0.198445,0.546524,-0.799738,-1.134760,-0.176241,-0.107439 +0.200757,0.543863,-0.794303,-1.119210,-0.177903,-0.108644 +0.203069,0.541201,-0.788867,-1.103660,-0.179565,-0.109849 +0.205382,0.538539,-0.783432,-1.088110,-0.181226,-0.111054 +0.207694,0.535877,-0.777997,-1.072550,-0.182888,-0.112259 +0.210006,0.533216,-0.772561,-1.057000,-0.184550,-0.113464 +0.212318,0.530554,-0.767126,-1.041450,-0.186211,-0.114669 +0.214631,0.527892,-0.761691,-1.025900,-0.187873,-0.115874 +0.216943,0.525231,-0.756255,-1.010340,-0.189535,-0.117079 +0.219255,0.522569,-0.750820,-0.994792,-0.191196,-0.118284 +0.221567,0.519907,-0.745385,-0.979240,-0.192858,-0.119489 +0.223879,0.517245,-0.739949,-0.963687,-0.194520,-0.120694 +0.226192,0.514584,-0.734514,-0.948135,-0.196182,-0.121898 +0.228504,0.511922,-0.729079,-0.932582,-0.197843,-0.123103 +0.230816,0.509260,-0.723643,-0.917030,-0.199505,-0.124308 +0.233128,0.506599,-0.718208,-0.901478,-0.201167,-0.125513 +0.235441,0.503937,-0.712773,-0.885925,-0.202828,-0.126718 +0.237753,0.501275,-0.707337,-0.870373,-0.204490,-0.127923 +0.240065,0.498614,-0.701902,-0.854820,-0.206152,-0.129128 +0.242377,0.495952,-0.696467,-0.839268,-0.207813,-0.130333 +0.244689,0.493290,-0.691031,-0.823715,-0.209475,-0.131538 +0.247002,0.490628,-0.685596,-0.808163,-0.211137,-0.132743 +0.249314,0.487967,-0.680161,-0.792611,-0.212799,-0.133948 +0.251626,0.485305,-0.674725,-0.777058,-0.214460,-0.135153 +0.253938,0.482643,-0.669290,-0.761506,-0.216122,-0.136358 +0.256250,0.479982,-0.663855,-0.745953,-0.217784,-0.137563 +0.258563,0.477320,-0.658419,-0.730401,-0.219445,-0.138768 +0.260875,0.474658,-0.652984,-0.714848,-0.221107,-0.139973 +0.263187,0.471997,-0.647548,-0.699296,-0.222769,-0.141178 +0.265499,0.469335,-0.642113,-0.683744,-0.224430,-0.142383 +0.267812,0.466673,-0.636678,-0.668196,-0.226092,-0.143588 +0.270124,0.464011,-0.631242,-0.652660,-0.227754,-0.144793 +0.272436,0.461350,-0.625807,-0.637141,-0.229416,-0.145998 +0.274748,0.458688,-0.620372,-0.621646,-0.231077,-0.147202 +0.277060,0.456026,-0.614936,-0.606182,-0.232739,-0.148407 +0.279373,0.453365,-0.609501,-0.590754,-0.234401,-0.149612 +0.281685,0.450703,-0.604066,-0.575370,-0.236062,-0.150817 +0.283997,0.448041,-0.598630,-0.560036,-0.237724,-0.152022 +0.286309,0.445380,-0.593195,-0.544759,-0.239386,-0.153227 +0.288622,0.442718,-0.587760,-0.529544,-0.241047,-0.154432 +0.290934,0.440056,-0.582324,-0.514399,-0.242709,-0.155637 +0.293246,0.437394,-0.576889,-0.499329,-0.244371,-0.156842 +0.295558,0.434733,-0.571454,-0.484342,-0.246033,-0.158047 +0.297870,0.432071,-0.566018,-0.469444,-0.247694,-0.159252 +0.300183,0.429409,-0.560583,-0.454640,-0.249356,-0.160457 +0.302495,0.426748,-0.555148,-0.439939,-0.251018,-0.161662 +0.304807,0.424086,-0.549712,-0.425346,-0.252679,-0.162867 +0.307119,0.421424,-0.544277,-0.410868,-0.254341,-0.164072 +0.309432,0.418763,-0.538842,-0.396511,-0.256003,-0.165277 +0.311744,0.416101,-0.533406,-0.382281,-0.257664,-0.166482 +0.314056,0.413439,-0.527971,-0.368186,-0.259326,-0.167687 +0.316368,0.410777,-0.522536,-0.354231,-0.260988,-0.168892 +0.318680,0.408116,-0.517100,-0.340424,-0.262650,-0.170097 +0.320993,0.405454,-0.511665,-0.326770,-0.264311,-0.171302 +0.323305,0.402792,-0.506230,-0.313276,-0.265973,-0.172507 +0.325617,0.400131,-0.500794,-0.299949,-0.267635,-0.173711 +0.327929,0.397469,-0.495359,-0.286795,-0.269296,-0.174916 +0.330241,0.394807,-0.489924,-0.273820,-0.270958,-0.176121 +0.332554,0.392146,-0.484488,-0.261032,-0.272620,-0.177326 +0.334866,0.389484,-0.479053,-0.248436,-0.274281,-0.178531 +0.337178,0.386822,-0.473618,-0.236039,-0.275943,-0.179736 +0.339490,0.384160,-0.468182,-0.223847,-0.277605,-0.180941 +0.341803,0.381499,-0.462747,-0.211867,-0.279267,-0.182146 +0.344115,0.378837,-0.457312,-0.200106,-0.280928,-0.183351 +0.346427,0.376175,-0.451876,-0.188569,-0.282590,-0.184556 +0.348739,0.373514,-0.446441,-0.177264,-0.284252,-0.185761 +0.351051,0.370852,-0.441006,-0.166197,-0.285913,-0.186966 +0.353364,0.368190,-0.435570,-0.155374,-0.287575,-0.188171 +0.355676,0.365529,-0.430135,-0.144802,-0.289237,-0.189376 +0.357988,0.362867,-0.424700,-0.134487,-0.290898,-0.190581 +0.360300,0.360205,-0.419264,-0.124431,-0.292560,-0.191786 +0.362613,0.357543,-0.413829,-0.114634,-0.294222,-0.192991 +0.364925,0.354882,-0.408394,-0.105097,-0.295884,-0.194196 +0.367237,0.352220,-0.402958,-0.095819,-0.297545,-0.195401 +0.369549,0.349558,-0.397523,-0.086800,-0.299207,-0.196606 +0.371861,0.346897,-0.392088,-0.078039,-0.300869,-0.197811 +0.374174,0.344235,-0.386652,-0.069539,-0.302530,-0.199016 +0.376486,0.341573,-0.381217,-0.061297,-0.304192,-0.200220 +0.378798,0.338911,-0.375782,-0.053315,-0.305854,-0.201425 +0.381110,0.336250,-0.370346,-0.045592,-0.307515,-0.202630 +0.383423,0.333588,-0.364911,-0.038128,-0.309177,-0.203835 +0.385735,0.330926,-0.359476,-0.030923,-0.310839,-0.205040 +0.388047,0.328265,-0.354040,-0.023978,-0.312501,-0.206245 +0.390359,0.325603,-0.348605,-0.017292,-0.314162,-0.207450 +0.392671,0.322941,-0.343170,-0.010865,-0.315824,-0.208655 +0.394984,0.320280,-0.337734,-0.004697,-0.317486,-0.209860 +0.397296,0.317618,-0.332299,0.001212,-0.319147,-0.211065 +0.399608,0.314956,-0.326864,0.006861,-0.320809,-0.212270 +0.401920,0.312294,-0.321428,0.012251,-0.322471,-0.213475 +0.404232,0.309633,-0.315993,0.017382,-0.324132,-0.214680 +0.406545,0.306971,-0.310558,0.022254,-0.325794,-0.215885 +0.408857,0.304309,-0.305122,0.026867,-0.327456,-0.217090 +0.411169,0.301648,-0.299687,0.031220,-0.329118,-0.218295 +0.413481,0.298986,-0.294252,0.035314,-0.330779,-0.219500 +0.415794,0.296324,-0.288816,0.039149,-0.332441,-0.220705 +0.418106,0.293663,-0.283381,0.042725,-0.334103,-0.221910 +0.420418,0.291001,-0.277946,0.046042,-0.335764,-0.223115 +0.422730,0.288339,-0.272510,0.049099,-0.337426,-0.224320 +0.425042,0.285677,-0.267075,0.051897,-0.339088,-0.225524 +0.427355,0.283016,-0.261640,0.054436,-0.340749,-0.226729 +0.429667,0.280354,-0.256204,0.056716,-0.342411,-0.227934 +0.431979,0.277692,-0.250769,0.058736,-0.344073,-0.229139 +0.434291,0.275031,-0.245334,0.060498,-0.345735,-0.230344 +0.436604,0.272369,-0.239898,0.062000,-0.347396,-0.231549 +0.438916,0.269707,-0.234463,0.063243,-0.349058,-0.232754 +0.441228,0.267046,-0.229028,0.064226,-0.350720,-0.233959 +0.443540,0.264384,-0.223592,0.064951,-0.352381,-0.235164 +0.445852,0.261726,-0.218157,0.065416,-0.354043,-0.236369 +0.448165,0.259077,-0.212722,0.065622,-0.355705,-0.237574 +0.450477,0.256442,-0.207286,0.065569,-0.357366,-0.238779 +0.452789,0.253826,-0.201851,0.065257,-0.359028,-0.239984 +0.455101,0.251236,-0.196416,0.064685,-0.360690,-0.241189 +0.457414,0.248676,-0.190984,0.063854,-0.362352,-0.242394 +0.459729,0.246152,-0.185560,0.062764,-0.364013,-0.243599 +0.462052,0.243669,-0.180151,0.061415,-0.365675,-0.244804 +0.464390,0.241233,-0.174761,0.059807,-0.367337,-0.246009 +0.466746,0.238849,-0.169396,0.057939,-0.368998,-0.247214 +0.469127,0.236523,-0.164061,0.055813,-0.370660,-0.248419 +0.471537,0.234259,-0.158761,0.053427,-0.372322,-0.249624 +0.473983,0.232064,-0.153503,0.050781,-0.373983,-0.250829 +0.476470,0.229942,-0.148291,0.047877,-0.375645,-0.252033 +0.479003,0.227900,-0.143131,0.044716,-0.377307,-0.253238 +0.481587,0.225942,-0.138028,0.041304,-0.378969,-0.254443 +0.484229,0.224074,-0.132987,0.037648,-0.380630,-0.255648 +0.486932,0.222302,-0.128015,0.033754,-0.382292,-0.256853 +0.489704,0.220630,-0.123116,0.029629,-0.383954,-0.258058 +0.492548,0.219064,-0.118297,0.025279,-0.385615,-0.259263 +0.495471,0.217610,-0.113561,0.020711,-0.387277,-0.260468 +0.498478,0.216273,-0.108915,0.015932,-0.388939,-0.261673 +0.501575,0.215058,-0.104364,0.010947,-0.390600,-0.262878 +0.504762,0.213971,-0.099914,0.005763,-0.392262,-0.264083 +0.508035,0.213018,-0.095570,0.000386,-0.393924,-0.265285 +0.511389,0.212203,-0.091337,-0.005176,-0.395586,-0.266479 +0.514817,0.211532,-0.087220,-0.010917,-0.397247,-0.267658 +0.518315,0.211010,-0.083226,-0.016832,-0.398903,-0.268814 +0.521878,0.210644,-0.079360,-0.022913,-0.400548,-0.269943 +0.525499,0.210437,-0.075624,-0.029153,-0.402176,-0.271037 +0.529173,0.210396,-0.072017,-0.035548,-0.403779,-0.272090 +0.532896,0.210527,-0.068531,-0.042089,-0.405351,-0.273096 +0.536661,0.210834,-0.065163,-0.048771,-0.406886,-0.274047 +0.540463,0.211322,-0.061906,-0.055586,-0.408377,-0.274938 +0.544298,0.211998,-0.058755,-0.062530,-0.409818,-0.275762 +0.548158,0.212860,-0.055704,-0.069594,-0.411202,-0.276512 +0.552040,0.213903,-0.052749,-0.076773,-0.412524,-0.277183 +0.555937,0.215121,-0.049884,-0.084060,-0.413775,-0.277767 +0.559844,0.216509,-0.047103,-0.091449,-0.414951,-0.278258 +0.563755,0.218061,-0.044401,-0.098933,-0.416043,-0.278650 +0.567667,0.219773,-0.041773,-0.106505,-0.417047,-0.278935 +0.571572,0.221639,-0.039213,-0.114160,-0.417955,-0.279109 +0.575465,0.223653,-0.036715,-0.121890,-0.418761,-0.279163 +0.579342,0.225810,-0.034275,-0.129690,-0.419459,-0.279092 +0.583196,0.228104,-0.031887,-0.137552,-0.420042,-0.278890 +0.587023,0.230531,-0.029546,-0.145471,-0.420503,-0.278549 +0.590816,0.233085,-0.027245,-0.153439,-0.420836,-0.278063 +0.594571,0.235759,-0.024981,-0.161451,-0.421035,-0.277426 +0.598282,0.238550,-0.022746,-0.169500,-0.421092,-0.276635 +0.601944,0.241451,-0.020537,-0.177579,-0.421003,-0.275694 +0.605550,0.244458,-0.018347,-0.185681,-0.420759,-0.274610 +0.609097,0.247564,-0.016171,-0.193801,-0.420355,-0.273390 +0.612578,0.250764,-0.014004,-0.201932,-0.419785,-0.272040 +0.615988,0.254053,-0.011840,-0.210068,-0.419041,-0.270567 +0.619322,0.257426,-0.009674,-0.218201,-0.418118,-0.268976 +0.622573,0.260876,-0.007501,-0.226326,-0.417018,-0.267276 +0.625738,0.264400,-0.005314,-0.234436,-0.415748,-0.265471 +0.628810,0.267990,-0.003109,-0.242524,-0.414315,-0.263569 +0.631784,0.271643,-0.000881,-0.250585,-0.412724,-0.261575 +0.634654,0.275352,0.001377,-0.258611,-0.410982,-0.259497 +0.637416,0.279112,0.003670,-0.266595,-0.409096,-0.257341 +0.640063,0.282917,0.006002,-0.274533,-0.407072,-0.255114 +0.642592,0.286765,0.008379,-0.282421,-0.404915,-0.252819 +0.644998,0.290650,0.010799,-0.290251,-0.402625,-0.250458 +0.647278,0.294568,0.013257,-0.298022,-0.400201,-0.248030 +0.649431,0.298517,0.015750,-0.305730,-0.397643,-0.245533 +0.651451,0.302493,0.018276,-0.313373,-0.394949,-0.242967 +0.653338,0.306493,0.020829,-0.320947,-0.392118,-0.240331 +0.655089,0.310513,0.023408,-0.328450,-0.389151,-0.237624 +0.656700,0.314551,0.026008,-0.335879,-0.386046,-0.234845 +0.658169,0.318602,0.028626,-0.343231,-0.382803,-0.231993 +0.659494,0.322665,0.031259,-0.350503,-0.379421,-0.229069 +0.660673,0.326734,0.033902,-0.357692,-0.375900,-0.226070 +0.661703,0.330808,0.036552,-0.364797,-0.372240,-0.222997 +0.662581,0.334882,0.039207,-0.371814,-0.368441,-0.219849 +0.663307,0.338955,0.041861,-0.378740,-0.364503,-0.216625 +0.663878,0.343021,0.044513,-0.385573,-0.360426,-0.213325 +0.664292,0.347078,0.047157,-0.392310,-0.356210,-0.209949 +0.664547,0.351123,0.049791,-0.398949,-0.351856,-0.206497 +0.664641,0.355153,0.052411,-0.405487,-0.347363,-0.202967 +0.664574,0.359165,0.055013,-0.411922,-0.342733,-0.199361 +0.664342,0.363155,0.057595,-0.418251,-0.337966,-0.195678 +0.663946,0.367120,0.060151,-0.424472,-0.333063,-0.191917 +0.663382,0.371058,0.062680,-0.430582,-0.328024,-0.188079 +0.662652,0.374965,0.065178,-0.436580,-0.322851,-0.184164 +0.661752,0.378838,0.067641,-0.442463,-0.317544,-0.180173 +0.660682,0.382675,0.070066,-0.448228,-0.312105,-0.176104 +0.659441,0.386473,0.072449,-0.453874,-0.306535,-0.171959 +0.658029,0.390228,0.074787,-0.459399,-0.300835,-0.167739 +0.656444,0.393939,0.077077,-0.464801,-0.295007,-0.163442 +0.654687,0.397602,0.079315,-0.470077,-0.289052,-0.159070 +0.652756,0.401215,0.081499,-0.475226,-0.282971,-0.154624 +0.650651,0.404775,0.083625,-0.480245,-0.276767,-0.150103 +0.648372,0.408280,0.085690,-0.485134,-0.270442,-0.145509 +0.645919,0.411728,0.087691,-0.489890,-0.263996,-0.140843 +0.643291,0.415116,0.089625,-0.494512,-0.257433,-0.136104 +0.640490,0.418441,0.091488,-0.498998,-0.250754,-0.131295 +0.637514,0.421702,0.093279,-0.503347,-0.243961,-0.126416 +0.634365,0.424896,0.094994,-0.507556,-0.237057,-0.121467 +0.631042,0.428021,0.096630,-0.511626,-0.230044,-0.116451 +0.627547,0.431076,0.098185,-0.515553,-0.222925,-0.111367 +0.623880,0.434059,0.099656,-0.519338,-0.215701,-0.106218 +0.620042,0.436966,0.101040,-0.522979,-0.208377,-0.101005 +0.616033,0.439798,0.102335,-0.526475,-0.200953,-0.095728 +0.611855,0.442552,0.103538,-0.529825,-0.193433,-0.090390 +0.607508,0.445227,0.104646,-0.533027,-0.185820,-0.084991 +0.602995,0.447821,0.105659,-0.536082,-0.178117,-0.079533 +0.598315,0.450333,0.106572,-0.538988,-0.170326,-0.074018 +0.593472,0.452761,0.107385,-0.541744,-0.162450,-0.068448 +0.588466,0.455104,0.108094,-0.544350,-0.154494,-0.062823 +0.583299,0.457362,0.108699,-0.546805,-0.146459,-0.057146 +0.577973,0.459533,0.109196,-0.549109,-0.138350,-0.051419 +0.572489,0.461616,0.109584,-0.551262,-0.130168,-0.045642 +0.566850,0.463610,0.109862,-0.553262,-0.121919,-0.039819 +0.561058,0.465515,0.110027,-0.555110,-0.113604,-0.033951 +0.555115,0.467330,0.110078,-0.556806,-0.105228,-0.028040 +0.549023,0.469054,0.110014,-0.558349,-0.096793,-0.022088 +0.542785,0.470687,0.109832,-0.559740,-0.088304,-0.016098 +0.536404,0.472228,0.109532,-0.560977,-0.079764,-0.010070 +0.529881,0.473678,0.109113,-0.562063,-0.071177,-0.004008 +0.523220,0.475036,0.108573,-0.562996,-0.062546,0.002087 +0.516423,0.476301,0.107910,-0.563777,-0.053874,0.008212 +0.509493,0.477475,0.107125,-0.564407,-0.045166,0.014365 +0.502434,0.478556,0.106216,-0.564886,-0.036426,0.020543 +0.495248,0.479546,0.105183,-0.565214,-0.027656,0.026745 +0.487938,0.480444,0.104024,-0.565392,-0.018861,0.032967 +0.480509,0.481251,0.102739,-0.565420,-0.010045,0.039208 +0.472962,0.481968,0.101328,-0.565300,-0.001211,0.045465 +0.465302,0.482594,0.099790,-0.565032,0.007637,0.051736 +0.457531,0.483131,0.098124,-0.564618,0.016495,0.058018 +0.449654,0.483578,0.096331,-0.564057,0.025359,0.064309 +0.441675,0.483938,0.094411,-0.563351,0.034226,0.070605 +0.433596,0.484211,0.092363,-0.562502,0.043091,0.076906 +0.425421,0.484397,0.090188,-0.561510,0.051951,0.083207 +0.417155,0.484499,0.087885,-0.560377,0.060801,0.089506 +0.408801,0.484516,0.085454,-0.559104,0.069639,0.095802 +0.400363,0.484451,0.082897,-0.557693,0.078461,0.102090 +0.391845,0.484304,0.080214,-0.556144,0.087261,0.108369 +0.383251,0.484077,0.077405,-0.554460,0.096038,0.114637 +0.374585,0.483772,0.074470,-0.552641,0.104786,0.120889 +0.365852,0.483390,0.071411,-0.550691,0.113503,0.127124 +0.357055,0.482931,0.068228,-0.548610,0.122185,0.133340 +0.348199,0.482400,0.064922,-0.546400,0.130827,0.139532 +0.339288,0.481796,0.061494,-0.544063,0.139427,0.145700 +0.330326,0.481121,0.057945,-0.541601,0.147981,0.151840 +0.321317,0.480378,0.054276,-0.539016,0.156485,0.157950 +0.312266,0.479569,0.050490,-0.536310,0.164935,0.164026 +0.303177,0.478695,0.046586,-0.533486,0.173329,0.170067 +0.294054,0.477758,0.042566,-0.530544,0.181662,0.176070 +0.284902,0.476761,0.038432,-0.527488,0.189932,0.182032 +0.275725,0.475706,0.034185,-0.524319,0.198135,0.187952 +0.266528,0.474594,0.029828,-0.521040,0.206268,0.193825 +0.257314,0.473428,0.025361,-0.517653,0.214328,0.199650 +0.248089,0.472211,0.020787,-0.514161,0.222311,0.205425 +0.238856,0.470944,0.016107,-0.510566,0.230214,0.211146 +0.229621,0.469630,0.011324,-0.506871,0.238035,0.216812 +0.220386,0.468271,0.006439,-0.503077,0.245770,0.222420 +0.211157,0.466870,0.001455,-0.499188,0.253416,0.227968 +0.201938,0.465429,-0.003626,-0.495206,0.260972,0.233453 +0.192734,0.463950,-0.008802,-0.491133,0.268433,0.238874 +0.183548,0.462437,-0.014071,-0.486973,0.275798,0.244228 +0.174384,0.460891,-0.019430,-0.482728,0.283063,0.249512 +0.165248,0.459316,-0.024877,-0.478400,0.290227,0.254725 +0.156143,0.457712,-0.030409,-0.473993,0.297286,0.259865 +0.147073,0.456085,-0.036024,-0.469509,0.304239,0.264929 +0.138043,0.454434,-0.041719,-0.464951,0.311083,0.269915 +0.129056,0.452764,-0.047491,-0.460321,0.317816,0.274822 +0.120116,0.451077,-0.053338,-0.455623,0.324436,0.279648 +0.111228,0.449375,-0.059256,-0.450859,0.330940,0.284391 +0.102395,0.447662,-0.065244,-0.446032,0.337328,0.289048 +0.093622,0.445938,-0.071298,-0.441145,0.343597,0.293619 +0.084911,0.444208,-0.077415,-0.436201,0.349745,0.298101 +0.076267,0.442474,-0.083592,-0.431203,0.355771,0.302493 +0.067694,0.440737,-0.089827,-0.426153,0.361673,0.306794 +0.059194,0.439001,-0.096116,-0.421054,0.367451,0.311002 +0.050771,0.437268,-0.102456,-0.415910,0.373101,0.315115 +0.042430,0.435541,-0.108844,-0.410722,0.378624,0.319132 +0.034173,0.433821,-0.115277,-0.405495,0.384018,0.323051 +0.026003,0.432112,-0.121752,-0.400230,0.389282,0.326873 +0.017924,0.430416,-0.128265,-0.394932,0.394415,0.330595 +0.009939,0.428735,-0.134813,-0.389601,0.399417,0.334216 +0.002050,0.427071,-0.141394,-0.384242,0.404286,0.337735 +-0.005738,0.425427,-0.148004,-0.378857,0.409021,0.341151 +-0.013424,0.423804,-0.154639,-0.373450,0.413624,0.344464 +-0.021005,0.422206,-0.161296,-0.368022,0.418091,0.347672 +-0.028477,0.420634,-0.167973,-0.362576,0.422425,0.350776 +-0.035839,0.419089,-0.174665,-0.357116,0.426624,0.353773 +-0.043088,0.417575,-0.181370,-0.351644,0.430688,0.356664 +-0.050222,0.416094,-0.188083,-0.346162,0.434617,0.359448 +-0.057238,0.414646,-0.194803,-0.340674,0.438411,0.362124 +-0.064134,0.413234,-0.201525,-0.335181,0.442070,0.364693 +-0.070908,0.411860,-0.208246,-0.329688,0.445595,0.367154 +-0.077558,0.410525,-0.214963,-0.324195,0.448986,0.369506 +-0.084083,0.409231,-0.221673,-0.318707,0.452244,0.371750 +-0.090481,0.407980,-0.228372,-0.313224,0.455368,0.373885 +-0.096749,0.406773,-0.235058,-0.307751,0.458360,0.375912 +-0.102888,0.405611,-0.241726,-0.302288,0.461220,0.377830 +-0.108894,0.404497,-0.248373,-0.296839,0.463949,0.379641 +-0.114768,0.403431,-0.254998,-0.291406,0.466548,0.381343 +-0.120507,0.402414,-0.261595,-0.285991,0.469019,0.382937 +-0.126111,0.401448,-0.268162,-0.280597,0.471362,0.384424 +-0.131580,0.400533,-0.274696,-0.275225,0.473578,0.385805 +-0.136911,0.399671,-0.281195,-0.269878,0.475668,0.387079 +-0.142105,0.398863,-0.287653,-0.264558,0.477635,0.388247 +-0.147160,0.398109,-0.294070,-0.259267,0.479480,0.389310 +-0.152077,0.397410,-0.300441,-0.254007,0.481203,0.390270 +-0.156856,0.396766,-0.306764,-0.248781,0.482807,0.391125 +-0.161495,0.396179,-0.313035,-0.243589,0.484294,0.391879 +-0.165995,0.395649,-0.319253,-0.238434,0.485664,0.392530 +-0.170356,0.395175,-0.325413,-0.233317,0.486921,0.393082 +-0.174578,0.394759,-0.331514,-0.228241,0.488065,0.393534 +-0.178662,0.394400,-0.337552,-0.223207,0.489100,0.393888 +-0.182607,0.394099,-0.343525,-0.218216,0.490026,0.394145 +-0.186414,0.393856,-0.349430,-0.213270,0.490847,0.394306 +-0.190085,0.393670,-0.355264,-0.208371,0.491564,0.394374 +-0.193619,0.393542,-0.361025,-0.203521,0.492179,0.394348 +-0.197017,0.393470,-0.366711,-0.198719,0.492696,0.394232 +-0.200281,0.393456,-0.372319,-0.193969,0.493115,0.394025 +-0.203411,0.393498,-0.377846,-0.189270,0.493441,0.393731 +-0.206409,0.393595,-0.383290,-0.184625,0.493674,0.393351 +-0.209276,0.393748,-0.388649,-0.180034,0.493818,0.392886 +-0.212014,0.393955,-0.393921,-0.175498,0.493876,0.392338 +-0.214623,0.394215,-0.399104,-0.171018,0.493849,0.391709 +-0.217106,0.394529,-0.404195,-0.166596,0.493741,0.391002 +-0.219464,0.394893,-0.409192,-0.162232,0.493554,0.390217 +-0.221699,0.395309,-0.414094,-0.157926,0.493292,0.389358 +-0.223813,0.395774,-0.418898,-0.153681,0.492956,0.388425 +-0.225808,0.396287,-0.423604,-0.149495,0.492550,0.387422 +-0.227685,0.396847,-0.428208,-0.145370,0.492076,0.386350 +-0.229448,0.397453,-0.432709,-0.141307,0.491537,0.385212 +-0.231099,0.398102,-0.437107,-0.137305,0.490937,0.384009 +-0.232640,0.398794,-0.441398,-0.133365,0.490278,0.382744 +-0.234072,0.399526,-0.445582,-0.129488,0.489562,0.381420 +-0.235400,0.400297,-0.449657,-0.125673,0.488794,0.380038 +-0.236625,0.401105,-0.453622,-0.121921,0.487976,0.378602 +-0.237751,0.401949,-0.457476,-0.118232,0.487110,0.377112 +-0.238779,0.402825,-0.461217,-0.114607,0.486200,0.375573 +-0.239714,0.403733,-0.464844,-0.111044,0.485249,0.373986 +-0.240557,0.404669,-0.468357,-0.107544,0.484259,0.372353 +-0.241311,0.405632,-0.471753,-0.104106,0.483234,0.370678 +-0.241981,0.406620,-0.475034,-0.100731,0.482177,0.368962 +-0.242568,0.407630,-0.478196,-0.097419,0.481090,0.367209 +-0.243077,0.408660,-0.481241,-0.094168,0.479977,0.365421 +-0.243509,0.409707,-0.484166,-0.090978,0.478840,0.363600 +-0.243870,0.410769,-0.486972,-0.087850,0.477682,0.361749 +-0.244161,0.411844,-0.489658,-0.084782,0.476507,0.359870 +-0.244386,0.412928,-0.492223,-0.081774,0.475316,0.357966 +-0.244549,0.414019,-0.494667,-0.078825,0.474113,0.356040 +-0.244654,0.415114,-0.496990,-0.075935,0.472900,0.354095 +-0.244702,0.416211,-0.499191,-0.073103,0.471681,0.352132 +-0.244699,0.417306,-0.501270,-0.070327,0.470458,0.350154 +-0.244648,0.418398,-0.503228,-0.067608,0.469233,0.348164 +-0.244551,0.419482,-0.505063,-0.064944,0.468010,0.346165 +-0.244414,0.420557,-0.506777,-0.062334,0.466791,0.344158 +-0.244239,0.421618,-0.508369,-0.059777,0.465578,0.342147 +-0.244030,0.422664,-0.509839,-0.057272,0.464374,0.340135 +-0.243791,0.423691,-0.511187,-0.054819,0.463182,0.338122 +-0.243525,0.424696,-0.512414,-0.052415,0.462004,0.336113 +-0.243236,0.425677,-0.513521,-0.050060,0.460841,0.334109 +-0.242928,0.426629,-0.514506,-0.047752,0.459697,0.332113 +-0.242604,0.427550,-0.515372,-0.045491,0.458574,0.330127 +-0.242268,0.428437,-0.516118,-0.043274,0.457474,0.328154 +-0.241923,0.429287,-0.516745,-0.041100,0.456399,0.326196 +-0.241574,0.430097,-0.517254,-0.038969,0.455350,0.324255 +-0.241224,0.430864,-0.517645,-0.036878,0.454331,0.322333 +-0.240876,0.431583,-0.517920,-0.034826,0.453343,0.320433 +-0.240534,0.432254,-0.518078,-0.032812,0.452387,0.318557 +-0.240201,0.432872,-0.518121,-0.030834,0.451466,0.316708 +-0.239882,0.433434,-0.518050,-0.028890,0.450581,0.314886 +-0.239579,0.433937,-0.517866,-0.026978,0.449734,0.313095 +-0.239296,0.434379,-0.517569,-0.025099,0.448926,0.311336 +-0.239036,0.434756,-0.517161,-0.023248,0.448159,0.309611 +-0.238803,0.435065,-0.516642,-0.021426,0.447434,0.307922 +-0.238600,0.435303,-0.516015,-0.019629,0.446753,0.306272 +-0.238430,0.435468,-0.515280,-0.017857,0.446116,0.304661 +-0.238297,0.435557,-0.514438,-0.016108,0.445525,0.303092 +-0.238204,0.435566,-0.513491,-0.014380,0.444980,0.301566 +-0.238153,0.435493,-0.512439,-0.012671,0.444484,0.300084 +-0.238148,0.435335,-0.511285,-0.010980,0.444036,0.298650 +-0.238192,0.435090,-0.510030,-0.009304,0.443637,0.297263 +-0.238288,0.434754,-0.508675,-0.007642,0.443289,0.295926 +-0.238438,0.434325,-0.507221,-0.005992,0.442991,0.294639 +-0.238646,0.433801,-0.505670,-0.004352,0.442744,0.293405 +-0.238913,0.433179,-0.504024,-0.002721,0.442549,0.292223 +-0.239243,0.432457,-0.502283,-0.001097,0.442405,0.291097 +-0.239639,0.431632,-0.500451,0.000523,0.442314,0.290026 +-0.240101,0.430702,-0.498527,0.002139,0.442275,0.289012 +-0.240634,0.429665,-0.496514,0.003754,0.442289,0.288055 +-0.241240,0.428518,-0.494413,0.005370,0.442354,0.287157 +-0.241919,0.427260,-0.492225,0.006988,0.442472,0.286318 +-0.242675,0.425889,-0.489954,0.008610,0.442642,0.285540 +-0.243510,0.424402,-0.487599,0.010238,0.442863,0.284822 +-0.244425,0.422798,-0.485164,0.011874,0.443135,0.284166 +-0.245423,0.421075,-0.482649,0.013519,0.443458,0.283571 +-0.246505,0.419231,-0.480056,0.015175,0.443831,0.283039 +-0.247672,0.417266,-0.477386,0.016843,0.444254,0.282570 +-0.248926,0.415176,-0.474643,0.018526,0.444725,0.282164 +-0.250269,0.412962,-0.471826,0.020226,0.445244,0.281821 +-0.251702,0.410621,-0.468938,0.021942,0.445810,0.281541 +-0.253226,0.408153,-0.465981,0.023679,0.446421,0.281325 +-0.254843,0.405556,-0.462956,0.025436,0.447078,0.281172 +-0.256552,0.402829,-0.459866,0.027215,0.447778,0.281083 +-0.258355,0.399972,-0.456710,0.029019,0.448520,0.281056 +-0.260254,0.396984,-0.453492,0.030848,0.449302,0.281093 +-0.262248,0.393864,-0.450213,0.032704,0.450125,0.281192 +-0.264337,0.390612,-0.446875,0.034589,0.450985,0.281353 +-0.266524,0.387227,-0.443478,0.036503,0.451881,0.281576 +-0.268807,0.383708,-0.440026,0.038449,0.452812,0.281860 +-0.271187,0.380056,-0.436519,0.040427,0.453776,0.282205 +-0.273664,0.376271,-0.432959,0.042438,0.454771,0.282609 +-0.276238,0.372352,-0.429348,0.044485,0.455795,0.283072 +-0.278909,0.368299,-0.425687,0.046568,0.456847,0.283594 +-0.281677,0.364114,-0.421977,0.048689,0.457923,0.284172 +-0.284541,0.359795,-0.418221,0.050848,0.459023,0.284807 +-0.287501,0.355345,-0.414420,0.053047,0.460143,0.285496 +-0.290556,0.350762,-0.410575,0.055286,0.461282,0.286240 +-0.293705,0.346049,-0.406687,0.057567,0.462438,0.287036 +-0.296949,0.341205,-0.402759,0.059891,0.463608,0.287884 +-0.300285,0.336232,-0.398791,0.062259,0.464789,0.288781 +-0.303713,0.331130,-0.394785,0.064670,0.465980,0.289728 +-0.307231,0.325902,-0.390742,0.067127,0.467177,0.290721 +-0.310839,0.320548,-0.386663,0.069630,0.468379,0.291760 +-0.314534,0.315069,-0.382551,0.072179,0.469582,0.292842 +-0.318317,0.309468,-0.378405,0.074776,0.470784,0.293967 +-0.322184,0.303745,-0.374227,0.077421,0.471983,0.295133 +-0.326134,0.297903,-0.370019,0.080114,0.473175,0.296337 +-0.330166,0.291944,-0.365782,0.082856,0.474359,0.297578 +-0.334277,0.285869,-0.361516,0.085647,0.475530,0.298853 +-0.338466,0.279680,-0.357222,0.088489,0.476687,0.300162 +-0.342730,0.273380,-0.352903,0.091380,0.477826,0.301501 +-0.347068,0.266972,-0.348558,0.094322,0.478946,0.302869 +-0.351476,0.260457,-0.344189,0.097314,0.480042,0.304264 +-0.355953,0.253838,-0.339796,0.100358,0.481112,0.305684 +-0.360497,0.247117,-0.335381,0.103452,0.482153,0.307125 +-0.365104,0.240298,-0.330945,0.106597,0.483162,0.308587 +-0.369771,0.233384,-0.326487,0.109794,0.484137,0.310066 +-0.374497,0.226377,-0.322010,0.113041,0.485074,0.311561 +-0.379279,0.219280,-0.317513,0.116340,0.485970,0.313069 +-0.384113,0.212097,-0.312998,0.119689,0.486823,0.314587 +-0.388996,0.204830,-0.308465,0.123089,0.487630,0.316114 +-0.393926,0.197484,-0.303914,0.126539,0.488387,0.317646 +-0.398900,0.190062,-0.299347,0.130039,0.489092,0.319181 +-0.403913,0.182566,-0.294763,0.133589,0.489741,0.320717 +-0.408964,0.175001,-0.290164,0.137188,0.490333,0.322251 +-0.414048,0.167371,-0.285549,0.140836,0.490864,0.323780 +-0.419163,0.159679,-0.280920,0.144533,0.491331,0.325303 +-0.424304,0.151929,-0.276277,0.148277,0.491731,0.326815 +-0.429469,0.144125,-0.271619,0.152068,0.492063,0.328316 +-0.434653,0.136271,-0.266947,0.155906,0.492322,0.329801 +-0.439854,0.128371,-0.262263,0.159790,0.492506,0.331269 +-0.445067,0.120430,-0.257565,0.163719,0.492612,0.332716 +-0.450290,0.112451,-0.252854,0.167692,0.492639,0.334141 +-0.455517,0.104439,-0.248130,0.171708,0.492582,0.335540 +-0.460746,0.096398,-0.243394,0.175767,0.492440,0.336910 +-0.465973,0.088333,-0.238645,0.179868,0.492210,0.338250 +-0.471193,0.080248,-0.233883,0.184009,0.491890,0.339556 +-0.476403,0.072147,-0.229109,0.188190,0.491476,0.340825 +-0.481600,0.064035,-0.224323,0.192409,0.490968,0.342056 +-0.486779,0.055917,-0.219525,0.196665,0.490361,0.343246 +-0.491936,0.047797,-0.214714,0.200958,0.489655,0.344391 +-0.497067,0.039680,-0.209890,0.205286,0.488846,0.345489 +-0.502169,0.031571,-0.205054,0.209648,0.487934,0.346538 +-0.507238,0.023474,-0.200205,0.214042,0.486914,0.347535 +-0.512269,0.015394,-0.195344,0.218467,0.485787,0.348477 +-0.517259,0.007336,-0.190469,0.222923,0.484549,0.349363 +-0.522204,-0.000695,-0.185581,0.227407,0.483199,0.350189 +-0.527099,-0.008695,-0.180680,0.231918,0.481734,0.350953 +-0.531942,-0.016659,-0.175765,0.236455,0.480154,0.351653 +-0.536727,-0.024581,-0.170836,0.241016,0.478456,0.352286 +-0.541452,-0.032458,-0.165893,0.245601,0.476640,0.352849 +-0.546112,-0.040285,-0.160935,0.250206,0.474702,0.353342 +-0.550703,-0.048055,-0.155963,0.254831,0.472643,0.353760 +-0.555222,-0.055766,-0.150975,0.259475,0.470460,0.354103 +-0.559665,-0.063411,-0.145972,0.264135,0.468153,0.354367 +-0.564028,-0.070987,-0.140954,0.268810,0.465720,0.354551 +-0.568308,-0.078488,-0.135919,0.273498,0.463161,0.354652 +-0.572500,-0.085910,-0.130868,0.278199,0.460473,0.354669 +-0.576601,-0.093248,-0.125800,0.282909,0.457657,0.354600 +-0.580608,-0.100497,-0.120714,0.287628,0.454712,0.354442 +-0.584517,-0.107653,-0.115611,0.292354,0.451636,0.354194 +-0.588324,-0.114711,-0.110491,0.297085,0.448429,0.353853 +-0.592027,-0.121667,-0.105351,0.301819,0.445091,0.353419 +-0.595621,-0.128516,-0.100193,0.306555,0.441622,0.352889 +-0.599104,-0.135254,-0.095016,0.311291,0.438020,0.352262 +-0.602472,-0.141876,-0.089820,0.316025,0.434286,0.351536 +-0.605723,-0.148378,-0.084603,0.320755,0.430420,0.350709 +-0.608852,-0.154756,-0.079367,0.325481,0.426421,0.349781 +-0.611857,-0.161005,-0.074109,0.330199,0.422290,0.348749 +-0.614735,-0.167122,-0.068831,0.334909,0.418026,0.347613 +-0.617484,-0.173102,-0.063532,0.339608,0.413631,0.346371 +-0.620100,-0.178942,-0.058211,0.344295,0.409104,0.345022 +-0.622580,-0.184636,-0.052868,0.348968,0.404446,0.343565 +-0.624923,-0.190183,-0.047503,0.353626,0.399657,0.341999 +-0.627125,-0.195577,-0.042115,0.358266,0.394739,0.340323 +-0.629184,-0.200816,-0.036704,0.362887,0.389691,0.338536 +-0.631098,-0.205896,-0.031271,0.367487,0.384516,0.336638 +-0.632864,-0.210812,-0.025814,0.372065,0.379213,0.334627 +-0.634481,-0.215563,-0.020334,0.376619,0.373783,0.332503 +-0.635946,-0.220144,-0.014830,0.381148,0.368229,0.330265 +-0.637258,-0.224552,-0.009302,0.385649,0.362551,0.327913 +-0.638413,-0.228785,-0.003751,0.390121,0.356750,0.325447 +-0.639412,-0.232840,0.001825,0.394562,0.350828,0.322866 +-0.640251,-0.236713,0.007425,0.398971,0.344787,0.320170 +-0.640930,-0.240402,0.013049,0.403347,0.338628,0.317359 +-0.641447,-0.243904,0.018697,0.407687,0.332353,0.314432 +-0.641801,-0.247217,0.024370,0.411990,0.325963,0.311390 +-0.641990,-0.250338,0.030067,0.416255,0.319462,0.308233 +-0.642014,-0.253266,0.035787,0.420481,0.312849,0.304961 +-0.641871,-0.255998,0.041532,0.424665,0.306129,0.301575 +-0.641560,-0.258532,0.047301,0.428807,0.299302,0.298074 +-0.641081,-0.260866,0.053093,0.432905,0.292372,0.294459 +-0.640433,-0.262999,0.058909,0.436957,0.285340,0.290730 +-0.639615,-0.264928,0.064748,0.440963,0.278208,0.286889 +-0.638628,-0.266653,0.070609,0.444921,0.270981,0.282936 +-0.637470,-0.268172,0.076494,0.448830,0.263659,0.278871 +-0.636141,-0.269484,0.082400,0.452688,0.256245,0.274695 +-0.634642,-0.270588,0.088329,0.456495,0.248743,0.270410 +-0.632972,-0.271482,0.094279,0.460249,0.241155,0.266016 +-0.631132,-0.272167,0.100249,0.463949,0.233484,0.261515 +-0.629122,-0.272642,0.106240,0.467595,0.225733,0.256907 +-0.626941,-0.272905,0.112250,0.471184,0.217905,0.252193 +-0.624591,-0.272957,0.118280,0.474717,0.210003,0.247376 +-0.622073,-0.272797,0.124328,0.478192,0.202030,0.242456 +-0.619386,-0.272426,0.130393,0.481607,0.193989,0.237435 +-0.616532,-0.271843,0.136476,0.484964,0.185883,0.232314 +-0.613511,-0.271049,0.142574,0.488259,0.177716,0.227096 +-0.610325,-0.270044,0.148688,0.491494,0.169491,0.221781 +-0.606975,-0.268828,0.154816,0.494666,0.161212,0.216371 +-0.603462,-0.267402,0.160958,0.497776,0.152882,0.210869 +-0.599787,-0.265767,0.167111,0.500822,0.144503,0.205275 +-0.595952,-0.263924,0.173277,0.503804,0.136081,0.199593 +-0.591958,-0.261874,0.179452,0.506721,0.127618,0.193823 +-0.587808,-0.259618,0.185636,0.509573,0.119118,0.187969 +-0.583502,-0.257157,0.191829,0.512360,0.110584,0.182032 +-0.579043,-0.254493,0.198028,0.515080,0.102021,0.176014 +-0.574433,-0.251628,0.204232,0.517734,0.093431,0.169918 +-0.569673,-0.248563,0.210440,0.520320,0.084819,0.163745 +-0.564766,-0.245300,0.216652,0.522840,0.076188,0.157499 +-0.559715,-0.241841,0.222864,0.525292,0.067542,0.151182 +-0.554521,-0.238189,0.229076,0.527676,0.058884,0.144795 +-0.549187,-0.234345,0.235287,0.529992,0.050219,0.138343 +-0.543715,-0.230312,0.241494,0.532240,0.041550,0.131826 +-0.538109,-0.226093,0.247697,0.534420,0.032881,0.125248 +-0.532370,-0.221690,0.253893,0.536532,0.024216,0.118612 +-0.526501,-0.217107,0.260082,0.538575,0.015557,0.111920 +-0.520506,-0.212345,0.266260,0.540550,0.006910,0.105174 +-0.514388,-0.207408,0.272427,0.542456,-0.001722,0.098378 +-0.508148,-0.202300,0.278580,0.544295,-0.010336,0.091535 +-0.501791,-0.197023,0.284719,0.546065,-0.018928,0.084646 +-0.495320,-0.191580,0.290840,0.547768,-0.027494,0.077716 +-0.488737,-0.185977,0.296943,0.549403,-0.036030,0.070746 +-0.482046,-0.180215,0.303024,0.550970,-0.044532,0.063740 +-0.475250,-0.174298,0.309083,0.552471,-0.052998,0.056701 +-0.468352,-0.168232,0.315117,0.553904,-0.061424,0.049632 +-0.461357,-0.162018,0.321125,0.555272,-0.069805,0.042535 +-0.454267,-0.155662,0.327103,0.556573,-0.078139,0.035414 +-0.447086,-0.149168,0.333051,0.557809,-0.086422,0.028271 +-0.439818,-0.142539,0.338965,0.558979,-0.094651,0.021110 +-0.432466,-0.135780,0.344844,0.560085,-0.102821,0.013934 +-0.425034,-0.128896,0.350686,0.561127,-0.110930,0.006746 +-0.417525,-0.121890,0.356489,0.562106,-0.118975,-0.000452 +-0.409943,-0.114768,0.362249,0.563021,-0.126952,-0.007657 +-0.402292,-0.107533,0.367966,0.563875,-0.134857,-0.014864 +-0.394576,-0.100191,0.373636,0.564666,-0.142689,-0.022071 +-0.386798,-0.092747,0.379258,0.565397,-0.150443,-0.029276 +-0.378962,-0.085204,0.384829,0.566068,-0.158117,-0.036475 +-0.371073,-0.077569,0.390347,0.566678,-0.165707,-0.043665 +-0.363133,-0.069845,0.395810,0.567231,-0.173212,-0.050843 +-0.355147,-0.062038,0.401215,0.567725,-0.180627,-0.058006 +-0.347118,-0.054153,0.406560,0.568162,-0.187950,-0.065152 +-0.339051,-0.046194,0.411843,0.568543,-0.195179,-0.072276 +-0.330949,-0.038168,0.417062,0.568868,-0.202310,-0.079377 +-0.322816,-0.030079,0.422213,0.569139,-0.209342,-0.086451 +-0.314656,-0.021932,0.427295,0.569355,-0.216272,-0.093496 +-0.306472,-0.013732,0.432305,0.569519,-0.223097,-0.100508 +-0.298269,-0.005485,0.437242,0.569631,-0.229815,-0.107485 +-0.290051,0.002804,0.442102,0.569692,-0.236424,-0.114424 +-0.281820,0.011130,0.446884,0.569703,-0.242922,-0.121322 +-0.273581,0.019487,0.451585,0.569664,-0.249306,-0.128177 +-0.265337,0.027871,0.456202,0.569577,-0.255576,-0.134985 +-0.257093,0.036276,0.460735,0.569443,-0.261728,-0.141745 +-0.248852,0.044697,0.465179,0.569263,-0.267761,-0.148453 +-0.240617,0.053128,0.469534,0.569037,-0.273673,-0.155107 +-0.232392,0.061565,0.473796,0.568767,-0.279463,-0.161704 +-0.224180,0.070001,0.477964,0.568453,-0.285130,-0.168242 +-0.215986,0.078433,0.482036,0.568097,-0.290671,-0.174718 +-0.207812,0.086854,0.486009,0.567700,-0.296086,-0.181131 +-0.199662,0.095259,0.489881,0.567262,-0.301373,-0.187477 +-0.191540,0.103643,0.493650,0.566784,-0.306532,-0.193755 +-0.183447,0.112002,0.497314,0.566268,-0.311560,-0.199962 +-0.175389,0.120329,0.500870,0.565714,-0.316458,-0.206096 +-0.167368,0.128621,0.504318,0.565123,-0.321225,-0.212154 +-0.159386,0.136871,0.507655,0.564497,-0.325859,-0.218136 +-0.151448,0.145075,0.510879,0.563836,-0.330360,-0.224038 +-0.143556,0.153229,0.513988,0.563141,-0.334728,-0.229860 +-0.135712,0.161326,0.516980,0.562414,-0.338962,-0.235598 +-0.127921,0.169363,0.519853,0.561654,-0.343062,-0.241252 +-0.120184,0.177335,0.522607,0.560863,-0.347028,-0.246819 +-0.112504,0.185236,0.525238,0.560042,-0.350859,-0.252298 +-0.104885,0.193063,0.527746,0.559191,-0.354555,-0.257687 +-0.097327,0.200810,0.530128,0.558312,-0.358118,-0.262984 +-0.089835,0.208474,0.532384,0.557405,-0.361546,-0.268189 +-0.082410,0.216050,0.534511,0.556472,-0.364840,-0.273300 +-0.075054,0.223534,0.536509,0.555512,-0.368001,-0.278315 +-0.067770,0.230921,0.538376,0.554526,-0.371029,-0.283233 +-0.060559,0.238208,0.540110,0.553516,-0.373924,-0.288053 +-0.053425,0.245390,0.541710,0.552482,-0.376687,-0.292774 +-0.046368,0.252463,0.543175,0.551425,-0.379320,-0.297395 +-0.039390,0.259424,0.544504,0.550345,-0.381822,-0.301915 +-0.032494,0.266269,0.545696,0.549243,-0.384196,-0.306332 +-0.025681,0.272994,0.546750,0.548120,-0.386441,-0.310647 +-0.018952,0.279596,0.547665,0.546976,-0.388559,-0.314858 +-0.012310,0.286070,0.548440,0.545812,-0.390552,-0.318964 +-0.005754,0.292415,0.549074,0.544628,-0.392420,-0.322966 +0.000713,0.298627,0.549566,0.543425,-0.394165,-0.326862 +0.007091,0.304702,0.549917,0.542203,-0.395789,-0.330652 +0.013377,0.310639,0.550124,0.540962,-0.397293,-0.334336 +0.019573,0.316433,0.550189,0.539704,-0.398678,-0.337913 +0.025675,0.322082,0.550110,0.538428,-0.399948,-0.341384 +0.031684,0.327583,0.549886,0.537135,-0.401102,-0.344747 +0.037600,0.332935,0.549519,0.535825,-0.402144,-0.348003 +0.043421,0.338135,0.549007,0.534498,-0.403075,-0.351153 +0.049147,0.343180,0.548350,0.533154,-0.403897,-0.354195 +0.054777,0.348068,0.547549,0.531795,-0.404613,-0.357130 +0.060312,0.352798,0.546603,0.530419,-0.405224,-0.359959 +0.065752,0.357368,0.545512,0.529027,-0.405733,-0.362681 +0.071095,0.361776,0.544277,0.527619,-0.406142,-0.365297 +0.076343,0.366020,0.542899,0.526195,-0.406454,-0.367807 +0.081495,0.370099,0.541377,0.524755,-0.406670,-0.370212 +0.086552,0.374011,0.539711,0.523299,-0.406794,-0.372512 +0.091514,0.377757,0.537903,0.521827,-0.406828,-0.374708 +0.096381,0.381333,0.535953,0.520339,-0.406775,-0.376801 +0.101154,0.384741,0.533862,0.518834,-0.406636,-0.378792 +0.105833,0.387978,0.531630,0.517313,-0.406416,-0.380680 +0.110420,0.391045,0.529258,0.515776,-0.406116,-0.382468 +0.114914,0.393940,0.526748,0.514221,-0.405740,-0.384155 +0.119318,0.396664,0.524100,0.512649,-0.405290,-0.385743 +0.123631,0.399216,0.521316,0.511059,-0.404769,-0.387234 +0.127855,0.401596,0.518396,0.509452,-0.404179,-0.388627 +0.131992,0.403805,0.515343,0.507826,-0.403525,-0.389925 +0.136041,0.405842,0.512156,0.506181,-0.402809,-0.391128 +0.140005,0.407708,0.508839,0.504517,-0.402033,-0.392238 +0.143885,0.409404,0.505391,0.502833,-0.401201,-0.393256 +0.147682,0.410929,0.501816,0.501128,-0.400315,-0.394184 +0.151398,0.412285,0.498114,0.499403,-0.399380,-0.395022 +0.155034,0.413473,0.494288,0.497656,-0.398397,-0.395772 +0.158593,0.414494,0.490339,0.495886,-0.397370,-0.396436 +0.162076,0.415348,0.486269,0.494094,-0.396302,-0.397016 +0.165484,0.416037,0.482080,0.492279,-0.395195,-0.397512 +0.168820,0.416563,0.477774,0.490439,-0.394054,-0.397927 +0.172085,0.416927,0.473354,0.488573,-0.392880,-0.398263 +0.175282,0.417130,0.468821,0.486682,-0.391678,-0.398520 +0.178413,0.417175,0.464178,0.484764,-0.390449,-0.398700 +0.181479,0.417063,0.459427,0.482819,-0.389197,-0.398806 +0.184483,0.416796,0.454571,0.480845,-0.387926,-0.398839 +0.187427,0.416377,0.449612,0.478841,-0.386637,-0.398801 +0.190313,0.415807,0.444553,0.476808,-0.385335,-0.398694 +0.193144,0.415090,0.439396,0.474743,-0.384021,-0.398520 +0.195922,0.414226,0.434144,0.472645,-0.382699,-0.398280 +0.198649,0.413220,0.428800,0.470515,-0.381371,-0.397976 +0.201327,0.412074,0.423366,0.468350,-0.380042,-0.397611 +0.203960,0.410790,0.417846,0.466150,-0.378712,-0.397186 +0.206549,0.409371,0.412243,0.463913,-0.377386,-0.396704 +0.209098,0.407820,0.406558,0.461639,-0.376065,-0.396165 +0.211608,0.406141,0.400796,0.459327,-0.374754,-0.395573 +0.214082,0.404336,0.394959,0.456975,-0.373453,-0.394929 +0.216523,0.402409,0.389051,0.454582,-0.372166,-0.394235 +0.218933,0.400362,0.383075,0.452147,-0.370895,-0.393493 +0.221315,0.398200,0.377033,0.449670,-0.369644,-0.392705 +0.223671,0.395926,0.370930,0.447148,-0.368413,-0.391874 +0.226005,0.393544,0.364768,0.444581,-0.367207,-0.391000 +0.228318,0.391056,0.358551,0.441967,-0.366026,-0.390087 +0.230613,0.388467,0.352283,0.439306,-0.364874,-0.389135 +0.232893,0.385780,0.345966,0.436596,-0.363752,-0.388148 +0.235161,0.383000,0.339604,0.433836,-0.362662,-0.387126 +0.237418,0.380130,0.333200,0.431025,-0.361608,-0.386072 +0.239668,0.377173,0.326758,0.428162,-0.360590,-0.384988 +0.241913,0.374135,0.320282,0.425245,-0.359611,-0.383876 +0.244156,0.371019,0.313775,0.422273,-0.358672,-0.382737 +0.246398,0.367828,0.307241,0.419246,-0.357775,-0.381574 +0.248644,0.364568,0.300683,0.416162,-0.356923,-0.380387 +0.250894,0.361242,0.294104,0.413020,-0.356116,-0.379180 +0.253152,0.357855,0.287509,0.409819,-0.355356,-0.377954 +0.255419,0.354410,0.280901,0.406558,-0.354644,-0.376711 +0.257699,0.350912,0.274283,0.403235,-0.353983,-0.375451 +0.259994,0.347365,0.267660,0.399850,-0.353373,-0.374178 +0.262305,0.343774,0.261034,0.396401,-0.352815,-0.372893 +0.264635,0.340142,0.254410,0.392888,-0.352311,-0.371597 +0.266986,0.336474,0.247790,0.389309,-0.351861,-0.370292 +0.269361,0.332774,0.241180,0.385663,-0.351467,-0.368979 +0.271761,0.329047,0.234581,0.381950,-0.351129,-0.367660 +0.274188,0.325296,0.227998,0.378168,-0.350848,-0.366337 +0.276645,0.321527,0.221434,0.374317,-0.350625,-0.365011 +0.279133,0.317743,0.214894,0.370396,-0.350460,-0.363683 +0.281655,0.313948,0.208379,0.366403,-0.350354,-0.362355 +0.284211,0.310148,0.201895,0.362338,-0.350308,-0.361028 +0.286804,0.306345,0.195444,0.358200,-0.350320,-0.359704 +0.289435,0.302545,0.189030,0.353988,-0.350393,-0.358382 +0.292106,0.298751,0.182655,0.349702,-0.350525,-0.357066 +0.294818,0.294968,0.176325,0.345341,-0.350717,-0.355755 +0.297573,0.291200,0.170042,0.340904,-0.350969,-0.354450 +0.300372,0.287450,0.163809,0.336390,-0.351280,-0.353154 +0.303217,0.283723,0.157629,0.331799,-0.351650,-0.351867 +0.306108,0.280023,0.151506,0.327130,-0.352080,-0.350589 +0.309046,0.276354,0.145443,0.322383,-0.352567,-0.349321 +0.312034,0.272720,0.139444,0.317558,-0.353113,-0.348065 +0.315071,0.269124,0.133511,0.312653,-0.353715,-0.346821 +0.318158,0.265570,0.127646,0.307668,-0.354375,-0.345590 +0.321297,0.262062,0.121855,0.302604,-0.355089,-0.344372 +0.324488,0.258604,0.116138,0.297460,-0.355859,-0.343168 +0.327731,0.255199,0.110499,0.292235,-0.356682,-0.341978 +0.331028,0.251852,0.104942,0.286929,-0.357557,-0.340803 +0.334378,0.248564,0.099468,0.281543,-0.358484,-0.339643 +0.337781,0.245340,0.094080,0.276076,-0.359462,-0.338499 +0.341239,0.242183,0.088781,0.270528,-0.360487,-0.337371 +0.344750,0.239096,0.083574,0.264899,-0.361560,-0.336259 +0.348316,0.236082,0.078460,0.259189,-0.362679,-0.335163 +0.351936,0.233145,0.073443,0.253398,-0.363842,-0.334083 +0.355610,0.230287,0.068525,0.247527,-0.365047,-0.333020 +0.359337,0.227512,0.063708,0.241575,-0.366293,-0.331973 +0.363118,0.224821,0.058993,0.235544,-0.367578,-0.330942 +0.366951,0.222218,0.054384,0.229432,-0.368899,-0.329927 +0.370837,0.219706,0.049883,0.223241,-0.370255,-0.328928 +0.374775,0.217286,0.045490,0.216972,-0.371644,-0.327945 +0.378763,0.214962,0.041209,0.210624,-0.373064,-0.326977 +0.382802,0.212735,0.037040,0.204198,-0.374512,-0.326024 +0.386890,0.210608,0.032985,0.197695,-0.375987,-0.325086 +0.391026,0.208582,0.029047,0.191115,-0.377485,-0.324162 +0.395209,0.206661,0.025227,0.184460,-0.379004,-0.323251 +0.399438,0.204845,0.021525,0.177730,-0.380542,-0.322353 +0.403711,0.203137,0.017943,0.170926,-0.382097,-0.321468 +0.408028,0.201537,0.014483,0.164049,-0.383666,-0.320594 +0.412386,0.200049,0.011146,0.157099,-0.385246,-0.319731 +0.416785,0.198673,0.007933,0.150079,-0.386834,-0.318878 +0.421221,0.197410,0.004844,0.142988,-0.388428,-0.318034 +0.425695,0.196262,0.001880,0.135829,-0.390026,-0.317199 +0.430203,0.195230,-0.000957,0.128602,-0.391623,-0.316371 +0.434745,0.194314,-0.003668,0.121309,-0.393218,-0.315549 +0.439317,0.193517,-0.006251,0.113951,-0.394808,-0.314733 +0.443918,0.192838,-0.008706,0.106529,-0.396389,-0.313921 +0.448546,0.192278,-0.011033,0.099045,-0.397959,-0.313112 +0.453199,0.191837,-0.013231,0.091501,-0.399514,-0.312305 +0.457873,0.191517,-0.015301,0.083898,-0.401053,-0.311500 +0.462567,0.191317,-0.017242,0.076238,-0.402571,-0.310693 +0.467279,0.191238,-0.019054,0.068521,-0.404065,-0.309886 +0.472005,0.191280,-0.020738,0.060751,-0.405533,-0.309075 +0.476744,0.191442,-0.022293,0.052929,-0.406972,-0.308260 +0.481492,0.191725,-0.023721,0.045057,-0.408378,-0.307439 +0.486246,0.192128,-0.025021,0.037137,-0.409749,-0.306611 +0.491005,0.192651,-0.026193,0.029170,-0.411081,-0.305775 +0.495764,0.193293,-0.027240,0.021158,-0.412370,-0.304929 +0.500522,0.194054,-0.028161,0.013105,-0.413615,-0.304071 +0.505275,0.194933,-0.028957,0.005011,-0.414812,-0.303200 +0.510020,0.195930,-0.029629,-0.003120,-0.415958,-0.302315 +0.514755,0.197043,-0.030178,-0.011288,-0.417050,-0.301414 +0.519475,0.198271,-0.030605,-0.019488,-0.418084,-0.300496 +0.524178,0.199614,-0.030912,-0.027720,-0.419058,-0.299558 +0.528860,0.201070,-0.031100,-0.035981,-0.419969,-0.298600 +0.533520,0.202637,-0.031169,-0.044268,-0.420814,-0.297619 +0.538152,0.204315,-0.031122,-0.052580,-0.421589,-0.296615 +0.542754,0.206102,-0.030960,-0.060913,-0.422292,-0.295585 +0.547322,0.207996,-0.030685,-0.069264,-0.422920,-0.294528 +0.551854,0.209995,-0.030299,-0.077633,-0.423470,-0.293442 +0.556345,0.212098,-0.029803,-0.086015,-0.423939,-0.292325 +0.560792,0.214302,-0.029199,-0.094408,-0.424324,-0.291177 +0.565193,0.216607,-0.028489,-0.102810,-0.424623,-0.289995 +0.569542,0.219009,-0.027676,-0.111218,-0.424833,-0.288777 +0.573838,0.221507,-0.026761,-0.119630,-0.424951,-0.287523 +0.578077,0.224098,-0.025747,-0.128041,-0.424974,-0.286230 +0.582254,0.226781,-0.024636,-0.136451,-0.424900,-0.284896 +0.586367,0.229552,-0.023430,-0.144855,-0.424727,-0.283522 +0.590412,0.232409,-0.022132,-0.153251,-0.424451,-0.282103 +0.594386,0.235350,-0.020745,-0.161637,-0.424071,-0.280640 +0.598285,0.238373,-0.019270,-0.170009,-0.423585,-0.279130 +0.602106,0.241473,-0.017711,-0.178365,-0.422989,-0.277573 +0.605845,0.244650,-0.016071,-0.186701,-0.422282,-0.275965 +0.609499,0.247899,-0.014352,-0.195015,-0.421462,-0.274307 +0.613065,0.251219,-0.012556,-0.203304,-0.420526,-0.272597 +0.616539,0.254606,-0.010688,-0.211564,-0.419473,-0.270832 +0.619918,0.258058,-0.008749,-0.219794,-0.418300,-0.269012 +0.623198,0.261571,-0.006744,-0.227989,-0.417007,-0.267135 +0.626377,0.265142,-0.004674,-0.236148,-0.415590,-0.265201 +0.629450,0.268768,-0.002543,-0.244267,-0.414048,-0.263207 +0.632416,0.272447,-0.000355,-0.252343,-0.412381,-0.261152 +0.635270,0.276175,0.001888,-0.260373,-0.410586,-0.259035 +0.638010,0.279949,0.004182,-0.268354,-0.408661,-0.256856 +0.640633,0.283766,0.006524,-0.276284,-0.406606,-0.254612 +0.643135,0.287622,0.008911,-0.284159,-0.404419,-0.252302 +0.645514,0.291514,0.011340,-0.291977,-0.402100,-0.249926 +0.647766,0.295440,0.013806,-0.299734,-0.399646,-0.247483 +0.649889,0.299395,0.016307,-0.307428,-0.397058,-0.244971 +0.651881,0.303376,0.018839,-0.315055,-0.394334,-0.242390 +0.653738,0.307381,0.021398,-0.322614,-0.391473,-0.239738 +0.655457,0.311405,0.023982,-0.330101,-0.388475,-0.237015 +0.657037,0.315447,0.026586,-0.337513,-0.385340,-0.234220 +0.658475,0.319501,0.029208,-0.344847,-0.382066,-0.231352 +0.659768,0.323565,0.031843,-0.352101,-0.378653,-0.228411 +0.660914,0.327636,0.034488,-0.359273,-0.375102,-0.225396 +0.661910,0.331710,0.037140,-0.366358,-0.371411,-0.222306 +0.662755,0.335784,0.039795,-0.373355,-0.367582,-0.219142 +0.663447,0.339855,0.042449,-0.380260,-0.363613,-0.215901 +0.663983,0.343920,0.045099,-0.387072,-0.359505,-0.212584 +0.664362,0.347975,0.047741,-0.393788,-0.355258,-0.209192 +0.664582,0.352017,0.050372,-0.400405,-0.350873,-0.205722 +0.664640,0.356043,0.052988,-0.406920,-0.346350,-0.202176 +0.664537,0.360050,0.055586,-0.413332,-0.341690,-0.198552 +0.664269,0.364035,0.058163,-0.419637,-0.336893,-0.194852 +0.663835,0.367994,0.060714,-0.425834,-0.331959,-0.191074 +0.663235,0.371925,0.063236,-0.431920,-0.326891,-0.187219 +0.662467,0.375825,0.065726,-0.437892,-0.321688,-0.183287 +0.661530,0.379691,0.068181,-0.443749,-0.316352,-0.179279 +0.660422,0.383519,0.070597,-0.449488,-0.310883,-0.175193 +0.659144,0.387308,0.072970,-0.455108,-0.305284,-0.171032 +0.657693,0.391054,0.075298,-0.460606,-0.299556,-0.166794 +0.656070,0.394754,0.077577,-0.465980,-0.293699,-0.162481 +0.654274,0.398406,0.079803,-0.471228,-0.287716,-0.158092 +0.652305,0.402008,0.081975,-0.476348,-0.281608,-0.153629 +0.650161,0.405556,0.084087,-0.481339,-0.275377,-0.149093 +0.647844,0.409049,0.086138,-0.486198,-0.269025,-0.144483 +0.645352,0.412483,0.088125,-0.490925,-0.262553,-0.139800 +0.642686,0.415857,0.090043,-0.495517,-0.255964,-0.135046 +0.639846,0.419168,0.091891,-0.499973,-0.249260,-0.130221 +0.636832,0.422415,0.093665,-0.504290,-0.242442,-0.125326 +0.633644,0.425594,0.095363,-0.508469,-0.235514,-0.120362 +0.630284,0.428704,0.096982,-0.512507,-0.228478,-0.115331 +0.626750,0.431743,0.098518,-0.516404,-0.221335,-0.110233 +0.623045,0.434709,0.099970,-0.520157,-0.214089,-0.105070 +0.619169,0.437600,0.101334,-0.523766,-0.206742,-0.099842 +0.615122,0.440415,0.102609,-0.527229,-0.199296,-0.094552 +0.610907,0.443151,0.103791,-0.530546,-0.191756,-0.089200 +0.606523,0.445808,0.104879,-0.533716,-0.184122,-0.083788 +0.601973,0.448384,0.105870,-0.536738,-0.176399,-0.078317 +0.597257,0.450878,0.106761,-0.539611,-0.168590,-0.072790 +0.592378,0.453287,0.107551,-0.542334,-0.160696,-0.067207 +0.587336,0.455612,0.108237,-0.544907,-0.152722,-0.061571 +0.582133,0.457850,0.108818,-0.547328,-0.144670,-0.055883 +0.576772,0.460002,0.109291,-0.549599,-0.136545,-0.050144 +0.571254,0.462065,0.109655,-0.551718,-0.128348,-0.044357 +0.565581,0.464039,0.109908,-0.553685,-0.120083,-0.038524 +0.559755,0.465924,0.110048,-0.555499,-0.111755,-0.032646 +0.553779,0.467719,0.110074,-0.557161,-0.103365,-0.026726 +0.547655,0.469423,0.109984,-0.558670,-0.094919,-0.020766 +0.541385,0.471036,0.109776,-0.560027,-0.086418,-0.014766 +0.534972,0.472557,0.109450,-0.561231,-0.077867,-0.008731 +0.528418,0.473986,0.109004,-0.562283,-0.069270,-0.002661 +0.521727,0.475324,0.108436,-0.563182,-0.060629,0.003440 +0.514900,0.476569,0.107747,-0.563930,-0.051950,0.009571 +0.507942,0.477722,0.106935,-0.564526,-0.043234,0.015730 +0.500854,0.478783,0.105998,-0.564971,-0.034487,0.021914 +0.493640,0.479753,0.104937,-0.565266,-0.025711,0.028120 +0.486304,0.480631,0.103750,-0.565411,-0.016911,0.034347 +0.478848,0.481418,0.102437,-0.565406,-0.008091,0.040592 +0.471276,0.482114,0.100998,-0.565253,0.000747,0.046853 +0.463591,0.482720,0.099432,-0.564953,0.009597,0.053126 +0.455797,0.483237,0.097738,-0.564506,0.018457,0.059410 +0.447897,0.483666,0.095917,-0.563913,0.027322,0.065702 +0.439895,0.484006,0.093969,-0.563176,0.036188,0.072000 +0.431794,0.484260,0.091893,-0.562295,0.045053,0.078300 +0.423599,0.484427,0.089689,-0.561272,0.053911,0.084601 +0.415313,0.484510,0.087358,-0.560107,0.062759,0.090900 +0.406940,0.484509,0.084899,-0.558804,0.071594,0.097194 +0.398484,0.484425,0.082314,-0.557362,0.080411,0.103481 +0.389949,0.484261,0.079603,-0.555783,0.089206,0.109758 +0.381339,0.484017,0.076766,-0.554069,0.097977,0.116022 +0.372658,0.483694,0.073803,-0.552221,0.106719,0.122271 +0.363910,0.483295,0.070717,-0.550241,0.115428,0.128502 +0.355100,0.482820,0.067506,-0.548132,0.124102,0.134713 +0.346231,0.482272,0.064173,-0.545893,0.132735,0.140900 +0.337308,0.481652,0.060718,-0.543529,0.141325,0.147062 +0.328335,0.480963,0.057143,-0.541040,0.149868,0.153195 +0.319317,0.480205,0.053448,-0.538428,0.158360,0.159298 +0.310257,0.479381,0.049635,-0.535695,0.166798,0.165367 +0.301160,0.478493,0.045706,-0.532844,0.175179,0.171399 +0.292030,0.477543,0.041660,-0.529877,0.183499,0.177394 +0.282873,0.476532,0.037501,-0.526796,0.191754,0.183347 +0.273691,0.475464,0.033230,-0.523602,0.199942,0.189256 +0.264489,0.474340,0.028848,-0.520300,0.208059,0.195119 +0.255273,0.473163,0.024358,-0.516889,0.216101,0.200933 +0.246046,0.471934,0.019760,-0.513374,0.224067,0.206696 +0.236812,0.470657,0.015057,-0.509757,0.231952,0.212405 +0.227576,0.469333,0.010251,-0.506039,0.239754,0.218059 +0.218342,0.467964,0.005344,-0.502224,0.247470,0.223654 +0.209115,0.466554,0.000338,-0.498314,0.255097,0.229188 +0.199899,0.465105,-0.004764,-0.494312,0.262632,0.234659 +0.190699,0.463618,-0.009961,-0.490220,0.270072,0.240065 +0.181517,0.462098,-0.015250,-0.486041,0.277415,0.245403 +0.172359,0.460545,-0.020629,-0.481777,0.284658,0.250672 +0.163230,0.458963,-0.026094,-0.477432,0.291799,0.255869 +0.154132,0.457354,-0.031645,-0.473007,0.298835,0.260992 +0.145071,0.455721,-0.037278,-0.468506,0.305763,0.266039 +0.136049,0.454066,-0.042990,-0.463932,0.312583,0.271008 +0.127073,0.452392,-0.048779,-0.459287,0.319291,0.275898 +0.118144,0.450702,-0.054642,-0.454574,0.325885,0.280705 +0.109268,0.448997,-0.060576,-0.449796,0.332364,0.285429 +0.100448,0.447281,-0.066579,-0.444955,0.338726,0.290067 +0.091688,0.445556,-0.072647,-0.440056,0.344968,0.294619 +0.082992,0.443824,-0.078777,-0.435099,0.351090,0.299081 +0.074363,0.442089,-0.084968,-0.430089,0.357088,0.303453 +0.065805,0.440353,-0.091215,-0.425028,0.362963,0.307734 +0.057323,0.438617,-0.097515,-0.419919,0.368712,0.311920 +0.048918,0.436885,-0.103866,-0.414765,0.374335,0.316012 +0.040595,0.435159,-0.110264,-0.409568,0.379829,0.320008 +0.032357,0.433442,-0.116707,-0.404333,0.385195,0.323906 +0.024207,0.431736,-0.123190,-0.399060,0.390430,0.327705 +0.016148,0.430043,-0.129712,-0.393754,0.395534,0.331405 +0.008184,0.428365,-0.136268,-0.388417,0.400506,0.335003 +0.000318,0.426705,-0.142855,-0.383052,0.405346,0.338500 +-0.007449,0.425066,-0.149470,-0.377662,0.410052,0.341894 +-0.015111,0.423448,-0.156111,-0.372250,0.414624,0.345183 +-0.022668,0.421856,-0.162773,-0.366818,0.419062,0.348368 +-0.030117,0.420289,-0.169453,-0.361369,0.423366,0.351448 +-0.037454,0.418752,-0.176148,-0.355905,0.427535,0.354422 +-0.044677,0.417245,-0.182855,-0.350431,0.431569,0.357289 +-0.051785,0.415770,-0.189570,-0.344947,0.435468,0.360050 +-0.058774,0.414330,-0.196291,-0.339458,0.439232,0.362702 +-0.065644,0.412926,-0.203013,-0.333965,0.442862,0.365247 +-0.072391,0.411561,-0.209734,-0.328472,0.446357,0.367684 +-0.079014,0.410235,-0.216450,-0.322980,0.449719,0.370012 +-0.085510,0.408950,-0.223157,-0.317493,0.452947,0.372232 +-0.091880,0.407709,-0.229854,-0.312012,0.456041,0.374343 +-0.098120,0.406512,-0.236535,-0.306540,0.459004,0.376346 +-0.104229,0.405361,-0.243199,-0.301081,0.461835,0.378240 +-0.110206,0.404257,-0.249842,-0.295635,0.464536,0.380027 +-0.116050,0.403201,-0.256460,-0.290206,0.467106,0.381705 +-0.121759,0.402196,-0.263051,-0.284795,0.469548,0.383276 +-0.127334,0.401241,-0.269612,-0.279406,0.471863,0.384739 +-0.132772,0.400338,-0.276138,-0.274039,0.474051,0.386096 +-0.138072,0.399488,-0.282628,-0.268698,0.476114,0.387346 +-0.143236,0.398691,-0.289077,-0.263384,0.478054,0.388491 +-0.148261,0.397949,-0.295484,-0.258100,0.479871,0.389532 +-0.153147,0.397262,-0.301845,-0.252848,0.481568,0.390468 +-0.157895,0.396631,-0.308157,-0.247628,0.483146,0.391301 +-0.162503,0.396057,-0.314416,-0.242444,0.484607,0.392032 +-0.166972,0.395539,-0.320621,-0.237298,0.485952,0.392661 +-0.171303,0.395078,-0.326769,-0.232190,0.487184,0.393190 +-0.175494,0.394675,-0.332856,-0.227123,0.488304,0.393621 +-0.179547,0.394329,-0.338880,-0.222098,0.489314,0.393953 +-0.183462,0.394041,-0.344838,-0.217117,0.490217,0.394189 +-0.187239,0.393810,-0.350727,-0.212182,0.491014,0.394329 +-0.190879,0.393637,-0.356546,-0.207293,0.491709,0.394376 +-0.194383,0.393521,-0.362291,-0.202453,0.492302,0.394330 +-0.197751,0.393462,-0.367959,-0.197663,0.492797,0.394194 +-0.200985,0.393460,-0.373549,-0.192924,0.493195,0.393968 +-0.204086,0.393514,-0.379058,-0.188237,0.493500,0.393654 +-0.207055,0.393624,-0.384484,-0.183604,0.493714,0.393255 +-0.209893,0.393789,-0.389824,-0.179025,0.493838,0.392772 +-0.212602,0.394008,-0.395076,-0.174501,0.493877,0.392206 +-0.215184,0.394280,-0.400239,-0.170034,0.493832,0.391560 +-0.217638,0.394605,-0.405309,-0.165625,0.493707,0.390835 +-0.219969,0.394981,-0.410286,-0.161274,0.493503,0.390033 +-0.222177,0.395408,-0.415166,-0.156981,0.493224,0.389158 +-0.224264,0.395884,-0.419949,-0.152749,0.492872,0.388209 +-0.226233,0.396407,-0.424632,-0.148577,0.492450,0.387191 +-0.228085,0.396977,-0.429213,-0.144465,0.491962,0.386104 +-0.229823,0.397593,-0.433692,-0.140415,0.491410,0.384951 +-0.231450,0.398252,-0.438066,-0.136427,0.490796,0.383734 +-0.232966,0.398952,-0.442333,-0.132501,0.490124,0.382456 +-0.234375,0.399693,-0.446493,-0.128638,0.489397,0.381119 +-0.235680,0.400473,-0.450544,-0.124837,0.488617,0.379725 +-0.236883,0.401289,-0.454485,-0.121099,0.487788,0.378276 +-0.237987,0.402140,-0.458314,-0.117424,0.486912,0.376776 +-0.238994,0.403023,-0.462029,-0.113812,0.485993,0.375225 +-0.239908,0.403937,-0.465632,-0.110263,0.485033,0.373628 +-0.240731,0.404880,-0.469119,-0.106777,0.484035,0.371986 +-0.241467,0.405849,-0.472490,-0.103354,0.483003,0.370302 +-0.242118,0.406842,-0.475744,-0.099993,0.481939,0.368578 +-0.242687,0.407857,-0.478880,-0.096694,0.480846,0.366816 +-0.243179,0.408891,-0.481898,-0.093456,0.479727,0.365020 +-0.243595,0.409941,-0.484797,-0.090281,0.478585,0.363192 +-0.243940,0.411006,-0.487577,-0.087166,0.477423,0.361335 +-0.244216,0.412083,-0.490236,-0.084111,0.476244,0.359451 +-0.244428,0.413169,-0.492774,-0.081116,0.475050,0.357542 +-0.244577,0.414261,-0.495192,-0.078181,0.473845,0.355611 +-0.244669,0.415357,-0.497488,-0.075303,0.472631,0.353661 +-0.244706,0.416454,-0.499662,-0.072483,0.471411,0.351695 +-0.244692,0.417548,-0.501714,-0.069720,0.470187,0.349714 +-0.244630,0.418639,-0.503645,-0.067013,0.468962,0.347722 +-0.244524,0.419721,-0.505453,-0.064361,0.467740,0.345721 +-0.244378,0.420793,-0.507140,-0.061763,0.466522,0.343713 +-0.244196,0.421851,-0.508705,-0.059218,0.465311,0.341702 +-0.243980,0.422893,-0.510148,-0.056725,0.464109,0.339689 +-0.243734,0.423916,-0.511469,-0.054283,0.462920,0.337677 +-0.243463,0.424916,-0.512670,-0.051890,0.461745,0.335669 +-0.243169,0.425890,-0.513749,-0.049545,0.460586,0.333666 +-0.242857,0.426836,-0.514708,-0.047248,0.459447,0.331672 +-0.242530,0.427750,-0.515547,-0.044996,0.458329,0.329689 +-0.242192,0.428629,-0.516267,-0.042789,0.457234,0.327719 +-0.241846,0.429470,-0.516868,-0.040625,0.456164,0.325764 +-0.241496,0.430271,-0.517351,-0.038503,0.455122,0.323827 +-0.241146,0.431027,-0.517716,-0.036421,0.454110,0.321911 +-0.240799,0.431736,-0.517965,-0.034377,0.453128,0.320016 +-0.240459,0.432395,-0.518098,-0.032371,0.452180,0.318146 +-0.240129,0.433001,-0.518115,-0.030400,0.451267,0.316302 +-0.239813,0.433550,-0.518019,-0.028464,0.450390,0.314487 +-0.239514,0.434040,-0.517809,-0.026560,0.449552,0.312703 +-0.239236,0.434468,-0.517488,-0.024686,0.448753,0.310951 +-0.238982,0.434830,-0.517055,-0.022842,0.447995,0.309234 +-0.238755,0.435124,-0.516513,-0.021026,0.447280,0.307554 +-0.238560,0.435346,-0.515861,-0.019235,0.446608,0.305912 +-0.238398,0.435495,-0.515102,-0.017468,0.445981,0.304310 +-0.238273,0.435566,-0.514237,-0.015724,0.445400,0.302750 +-0.238189,0.435557,-0.513267,-0.014000,0.444866,0.301234 +-0.238148,0.435465,-0.512193,-0.012295,0.444381,0.299763 +-0.238154,0.435288,-0.511016,-0.010607,0.443943,0.298339 +-0.238209,0.435023,-0.509739,-0.008935,0.443556,0.296963 +-0.238316,0.434667,-0.508361,-0.007276,0.443218,0.295636 +-0.238479,0.434218,-0.506886,-0.005628,0.442932,0.294361 +-0.238700,0.433672,-0.505314,-0.003991,0.442696,0.293138 +-0.238981,0.433028,-0.503647,-0.002361,0.442513,0.291969 +-0.239325,0.432283,-0.501886,-0.000738,0.442381,0.290855 +-0.239735,0.431435,-0.500032,0.000881,0.442301,0.289796 +-0.240213,0.430482,-0.498089,0.002497,0.442274,0.288795 +-0.240762,0.429421,-0.496056,0.004112,0.442299,0.287851 +-0.241383,0.428250,-0.493936,0.005728,0.442376,0.286966 +-0.242080,0.426967,-0.491730,0.007347,0.442505,0.286141 +-0.242853,0.425570,-0.489440,0.008970,0.442686,0.285376 +-0.243706,0.424057,-0.487067,0.010600,0.442919,0.284672 +-0.244639,0.422427,-0.484614,0.012237,0.443202,0.284029 +-0.245655,0.420677,-0.482081,0.013884,0.443537,0.283448 +-0.246756,0.418807,-0.479471,0.015543,0.443921,0.282930 +-0.247942,0.416814,-0.476785,0.017215,0.444354,0.282475 +-0.249216,0.414697,-0.474025,0.018901,0.444836,0.282082 +-0.250579,0.412454,-0.471193,0.020604,0.445365,0.281753 +-0.252032,0.410085,-0.468290,0.022325,0.445941,0.281488 +-0.253576,0.407589,-0.465317,0.024066,0.446563,0.281286 +-0.255213,0.404963,-0.462278,0.025828,0.447229,0.281147 +-0.256943,0.402208,-0.459173,0.027613,0.447938,0.281071 +-0.258767,0.399322,-0.456003,0.029422,0.448689,0.281059 +-0.260687,0.396305,-0.452772,0.031257,0.449481,0.281109 +-0.262702,0.393156,-0.449479,0.033119,0.450312,0.281222 +-0.264813,0.389874,-0.446128,0.035010,0.451180,0.281397 +-0.267021,0.386459,-0.442719,0.036931,0.452084,0.281634 +-0.269325,0.382911,-0.439254,0.038884,0.453023,0.281931 +-0.271727,0.379230,-0.435735,0.040869,0.453994,0.282289 +-0.274225,0.375415,-0.432164,0.042889,0.454996,0.282707 +-0.276821,0.371466,-0.428542,0.044943,0.456026,0.283183 +-0.279513,0.367384,-0.424870,0.047035,0.457083,0.283717 +-0.282302,0.363169,-0.421150,0.049164,0.458165,0.284308 +-0.285188,0.358822,-0.417384,0.051331,0.459269,0.284955 +-0.288169,0.354342,-0.413572,0.053539,0.460394,0.285656 +-0.291245,0.349730,-0.409718,0.055788,0.461537,0.286412 +-0.294415,0.344987,-0.405821,0.058078,0.462696,0.287219 +-0.297679,0.340115,-0.401884,0.060412,0.463868,0.288078 +-0.301036,0.335113,-0.397907,0.062789,0.465052,0.288987 +-0.304484,0.329984,-0.393893,0.065210,0.466244,0.289944 +-0.308022,0.324727,-0.389842,0.067677,0.467443,0.290947 +-0.311649,0.319346,-0.385756,0.070190,0.468645,0.291996 +-0.315364,0.313840,-0.381636,0.072750,0.469848,0.293088 +-0.319165,0.308211,-0.377483,0.075357,0.471050,0.294222 +-0.323051,0.302462,-0.373298,0.078013,0.472247,0.295396 +-0.327020,0.296594,-0.369084,0.080717,0.473438,0.296608 +-0.331069,0.290609,-0.364840,0.083470,0.474619,0.297857 +-0.335198,0.284508,-0.360568,0.086272,0.475788,0.299140 +-0.339404,0.278295,-0.356268,0.089124,0.476941,0.300456 +-0.343684,0.271971,-0.351943,0.092027,0.478076,0.301802 +-0.348038,0.265539,-0.347593,0.094980,0.479190,0.303176 +-0.352462,0.259000,-0.343218,0.097984,0.480281,0.304576 +-0.356954,0.252359,-0.338821,0.101038,0.481345,0.306001 +-0.361511,0.245616,-0.334401,0.104144,0.482379,0.307447 +-0.366132,0.238776,-0.329960,0.107301,0.483381,0.308913 +-0.370813,0.231841,-0.325498,0.110508,0.484348,0.310396 +-0.375551,0.224813,-0.321016,0.113767,0.485276,0.311894 +-0.380345,0.217697,-0.316515,0.117077,0.486163,0.313404 +-0.385190,0.210495,-0.311996,0.120437,0.487006,0.314924 +-0.390084,0.203211,-0.307459,0.123848,0.487802,0.316452 +-0.395024,0.195848,-0.302904,0.127309,0.488547,0.317985 +-0.400006,0.188408,-0.298333,0.130821,0.489240,0.319521 +-0.405028,0.180897,-0.293746,0.134382,0.489877,0.321057 +-0.410087,0.173318,-0.289144,0.137992,0.490456,0.322590 +-0.415178,0.165673,-0.284526,0.141650,0.490973,0.324118 +-0.420299,0.157968,-0.279893,0.145358,0.491425,0.325639 +-0.425445,0.150206,-0.275247,0.149112,0.491811,0.327149 +-0.430615,0.142391,-0.270586,0.152914,0.492126,0.328646 +-0.435803,0.134526,-0.265912,0.156762,0.492369,0.330128 +-0.441007,0.126617,-0.261224,0.160656,0.492536,0.331591 +-0.446223,0.118667,-0.256523,0.164595,0.492625,0.333034 +-0.451447,0.110680,-0.251809,0.168577,0.492633,0.334453 +-0.456675,0.102662,-0.247083,0.172603,0.492558,0.335845 +-0.461903,0.094615,-0.242343,0.176671,0.492397,0.337209 +-0.467129,0.086545,-0.237592,0.180781,0.492147,0.338542 +-0.472347,0.078456,-0.232828,0.184931,0.491806,0.339840 +-0.477555,0.070352,-0.228051,0.189120,0.491372,0.341101 +-0.482748,0.062239,-0.223262,0.193348,0.490842,0.342323 +-0.487922,0.054120,-0.218461,0.197612,0.490214,0.343503 +-0.493074,0.046000,-0.213647,0.201913,0.489485,0.344638 +-0.498199,0.037885,-0.208821,0.206249,0.488653,0.345725 +-0.503294,0.029778,-0.203982,0.210618,0.487717,0.346763 +-0.508355,0.021684,-0.199130,0.215019,0.486674,0.347748 +-0.513377,0.013609,-0.194266,0.219451,0.485522,0.348678 +-0.518358,0.005556,-0.189388,0.223913,0.484260,0.349551 +-0.523292,-0.002469,-0.184497,0.228403,0.482884,0.350364 +-0.528176,-0.010461,-0.179593,0.232920,0.481394,0.351114 +-0.533006,-0.018416,-0.174675,0.237463,0.479788,0.351799 +-0.537778,-0.026329,-0.169743,0.242029,0.478064,0.352416 +-0.542489,-0.034195,-0.164797,0.246618,0.476221,0.352965 +-0.547134,-0.042010,-0.159836,0.251228,0.474257,0.353441 +-0.551710,-0.049768,-0.154860,0.255858,0.472171,0.353843 +-0.556212,-0.057464,-0.149869,0.260505,0.469961,0.354168 +-0.560638,-0.065094,-0.144863,0.265168,0.467626,0.354415 +-0.564983,-0.072654,-0.139841,0.269847,0.465165,0.354581 +-0.569243,-0.080138,-0.134802,0.274538,0.462577,0.354664 +-0.573416,-0.087542,-0.129747,0.279241,0.459861,0.354662 +-0.577496,-0.094860,-0.124675,0.283953,0.457016,0.354573 +-0.581482,-0.102089,-0.119586,0.288674,0.454042,0.354395 +-0.585369,-0.109224,-0.114479,0.293401,0.450937,0.354126 +-0.589153,-0.116260,-0.109354,0.298133,0.447702,0.353765 +-0.592832,-0.123193,-0.104211,0.302867,0.444335,0.353310 +-0.596402,-0.130018,-0.099049,0.307603,0.440836,0.352759 +-0.599860,-0.136730,-0.093868,0.312339,0.437205,0.352110 +-0.603202,-0.143326,-0.088667,0.317072,0.433442,0.351362 +-0.606426,-0.149801,-0.083446,0.321802,0.429546,0.350513 +-0.609528,-0.156151,-0.078205,0.326526,0.425518,0.349561 +-0.612505,-0.162371,-0.072943,0.331242,0.421357,0.348507 +-0.615355,-0.168458,-0.067660,0.335950,0.417065,0.347347 +-0.618074,-0.174407,-0.062356,0.340646,0.412640,0.346082 +-0.620660,-0.180215,-0.057030,0.345331,0.408084,0.344709 +-0.623111,-0.185877,-0.051682,0.350000,0.403397,0.343228 +-0.625422,-0.191390,-0.046312,0.354654,0.398580,0.341638 +-0.627593,-0.196751,-0.040919,0.359290,0.393633,0.339937 +-0.629620,-0.201954,-0.035504,0.363907,0.388557,0.338126 +-0.631502,-0.206998,-0.030065,0.368503,0.383353,0.336202 +-0.633235,-0.211878,-0.024603,0.373076,0.378021,0.334166 +-0.634819,-0.216591,-0.019117,0.377624,0.372564,0.332017 +-0.636250,-0.221135,-0.013608,0.382147,0.366982,0.329754 +-0.637527,-0.225505,-0.008075,0.386641,0.361277,0.327377 +-0.638648,-0.229698,-0.002518,0.391106,0.355449,0.324885 +-0.639611,-0.233713,0.003063,0.395541,0.349501,0.322279 +-0.640416,-0.237545,0.008668,0.399943,0.343434,0.319557 +-0.641059,-0.241193,0.014297,0.404310,0.337249,0.316721 +-0.641540,-0.244654,0.019951,0.408643,0.330948,0.313769 +-0.641857,-0.247925,0.025629,0.412938,0.324534,0.310701 +-0.642010,-0.251003,0.031331,0.417194,0.318007,0.307519 +-0.641996,-0.253888,0.037057,0.421411,0.311371,0.304222 +-0.641816,-0.256576,0.042807,0.425586,0.304627,0.300810 +-0.641468,-0.259066,0.048581,0.429718,0.297777,0.297283 +-0.640952,-0.261355,0.054378,0.433806,0.290824,0.293643 +-0.640266,-0.263443,0.060199,0.437848,0.283770,0.289890 +-0.639411,-0.265328,0.066043,0.441843,0.276617,0.286024 +-0.638386,-0.267007,0.071910,0.445790,0.269368,0.282045 +-0.637190,-0.268480,0.077800,0.449688,0.262025,0.277956 +-0.635824,-0.269746,0.083711,0.453535,0.254592,0.273756 +-0.634287,-0.270804,0.089644,0.457331,0.247071,0.269447 +-0.632580,-0.271652,0.095598,0.461073,0.239464,0.265029 +-0.630702,-0.272290,0.101574,0.464761,0.231775,0.260504 +-0.628654,-0.272718,0.107569,0.468394,0.224007,0.255872 +-0.626436,-0.272935,0.113584,0.471971,0.216162,0.251136 +-0.624048,-0.272940,0.119617,0.475491,0.208244,0.246296 +-0.621492,-0.272733,0.125669,0.478953,0.200255,0.241353 +-0.618768,-0.272315,0.131738,0.482356,0.192200,0.236310 +-0.615877,-0.271686,0.137825,0.485699,0.184080,0.231168 +-0.612820,-0.270845,0.143927,0.488981,0.175900,0.225927 +-0.609598,-0.269793,0.150044,0.492201,0.167663,0.220591 +-0.606211,-0.268530,0.156175,0.495360,0.159372,0.215161 +-0.602662,-0.267058,0.162319,0.498455,0.151031,0.209638 +-0.598952,-0.265377,0.168475,0.501487,0.142643,0.204025 +-0.595081,-0.263488,0.174643,0.504455,0.134211,0.198323 +-0.591053,-0.261392,0.180820,0.507358,0.125739,0.192535 +-0.586868,-0.259091,0.187006,0.510196,0.117232,0.186662 +-0.582528,-0.256585,0.193200,0.512968,0.108691,0.180706 +-0.578035,-0.253876,0.199401,0.515673,0.100121,0.174671 +-0.573392,-0.250967,0.205606,0.518312,0.091527,0.168558 +-0.568600,-0.247858,0.211815,0.520884,0.082910,0.162369 +-0.563661,-0.244551,0.218027,0.523389,0.074275,0.156107 +-0.558577,-0.241049,0.224239,0.525826,0.065626,0.149774 +-0.553352,-0.237354,0.230451,0.528195,0.056967,0.143373 +-0.547987,-0.233469,0.236661,0.530496,0.048301,0.136906 +-0.542486,-0.229394,0.242868,0.532729,0.039631,0.130375 +-0.536849,-0.225134,0.249069,0.534894,0.030962,0.123784 +-0.531082,-0.220691,0.255264,0.536990,0.022298,0.117135 +-0.525185,-0.216068,0.261450,0.539018,0.013642,0.110431 +-0.519163,-0.211267,0.267626,0.540978,0.004998,0.103674 +-0.513017,-0.206292,0.273790,0.542869,-0.003631,0.096867 +-0.506751,-0.201146,0.279941,0.544693,-0.012240,0.090013 +-0.500368,-0.195832,0.286075,0.546448,-0.020826,0.083115 +-0.493872,-0.190354,0.292193,0.548136,-0.029386,0.076176 +-0.487265,-0.184715,0.298291,0.549756,-0.037915,0.069198 +-0.480550,-0.178918,0.304368,0.551308,-0.046410,0.062185 +-0.473732,-0.172968,0.310421,0.552794,-0.054867,0.055139 +-0.466812,-0.166869,0.316450,0.554213,-0.063283,0.048063 +-0.459796,-0.160623,0.322451,0.555565,-0.071655,0.040961 +-0.452685,-0.154236,0.328423,0.556852,-0.079978,0.033834 +-0.445485,-0.147712,0.334363,0.558073,-0.088249,0.026688 +-0.438198,-0.141054,0.340270,0.559230,-0.096464,0.019523 +-0.430827,-0.134267,0.346141,0.560321,-0.104622,0.012344 +-0.423378,-0.127355,0.351974,0.561349,-0.112717,0.005153 +-0.415852,-0.120323,0.357767,0.562314,-0.120747,-0.002047 +-0.408255,-0.113176,0.363519,0.563216,-0.128708,-0.009252 +-0.400589,-0.105917,0.369225,0.564055,-0.136598,-0.016459 +-0.392859,-0.098552,0.374885,0.564833,-0.144412,-0.023667 +-0.385068,-0.091085,0.380496,0.565551,-0.152149,-0.030870 +-0.377220,-0.083522,0.386055,0.566208,-0.159804,-0.038068 +-0.369319,-0.075866,0.391561,0.566806,-0.167376,-0.045255 +-0.361369,-0.068124,0.397012,0.567345,-0.174861,-0.052430 +-0.353373,-0.060299,0.402404,0.567827,-0.182256,-0.059590 +-0.345335,-0.052397,0.407735,0.568251,-0.189558,-0.066731 +-0.337260,-0.044423,0.413004,0.568620,-0.196766,-0.073850 +-0.329151,-0.036383,0.418208,0.568933,-0.203876,-0.080946 +-0.321012,-0.028280,0.423344,0.569191,-0.210885,-0.088013 +-0.312846,-0.020121,0.428410,0.569396,-0.217792,-0.095051 +-0.304658,-0.011910,0.433405,0.569549,-0.224593,-0.102056 +-0.296451,-0.003654,0.438324,0.569649,-0.231288,-0.109025 +-0.288229,0.004644,0.443167,0.569699,-0.237872,-0.115955 +-0.279997,0.012977,0.447932,0.569698,-0.244345,-0.122844 +-0.271756,0.021341,0.452614,0.569649,-0.250704,-0.129688 +-0.263512,0.029730,0.457213,0.569552,-0.256948,-0.136486 +-0.255268,0.038139,0.461726,0.569407,-0.263073,-0.143234 +-0.247028,0.046563,0.466151,0.569217,-0.269080,-0.149931 +-0.238795,0.054996,0.470485,0.568981,-0.274966,-0.156572 +-0.230573,0.063433,0.474727,0.568701,-0.280728,-0.163156 +-0.222365,0.071869,0.478874,0.568378,-0.286367,-0.169681 +-0.214175,0.080298,0.482924,0.568013,-0.291881,-0.176144 +-0.206006,0.088716,0.486875,0.567606,-0.297268,-0.182542 +-0.197862,0.097117,0.490724,0.567159,-0.302526,-0.188873 +-0.189745,0.105496,0.494470,0.566673,-0.307656,-0.195135 +-0.181660,0.113848,0.498110,0.566148,-0.312656,-0.201326 +-0.173610,0.122168,0.501643,0.565586,-0.317525,-0.207443 +-0.165597,0.130451,0.505066,0.564988,-0.322262,-0.213485 +-0.157625,0.138691,0.508378,0.564354,-0.326867,-0.219450 +-0.149697,0.146885,0.511577,0.563685,-0.331339,-0.225334 +-0.141815,0.155026,0.514660,0.562983,-0.335677,-0.231137 +-0.133983,0.163111,0.517626,0.562248,-0.339881,-0.236857 +-0.126203,0.171133,0.520473,0.561482,-0.343951,-0.242492 +-0.118479,0.179090,0.523200,0.560684,-0.347887,-0.248039 +-0.110812,0.186975,0.525804,0.559856,-0.351689,-0.253499 +-0.103206,0.194785,0.528284,0.558999,-0.355356,-0.258867 +-0.095663,0.202514,0.530639,0.558114,-0.358888,-0.264145 +-0.088185,0.210159,0.532866,0.557201,-0.362287,-0.269329 +-0.080775,0.217715,0.534965,0.556261,-0.365551,-0.274418 +-0.073435,0.225178,0.536934,0.555296,-0.368683,-0.279412 +-0.066167,0.232543,0.538771,0.554305,-0.371681,-0.284309 +-0.058973,0.239807,0.540475,0.553289,-0.374547,-0.289107 +-0.051856,0.246965,0.542046,0.552250,-0.377281,-0.293806 +-0.044816,0.254014,0.543481,0.551188,-0.379885,-0.298404 +-0.037857,0.260949,0.544780,0.550103,-0.382359,-0.302901 +-0.030979,0.267768,0.545942,0.548996,-0.384704,-0.307296 +-0.024184,0.274466,0.546965,0.547869,-0.386921,-0.311588 +-0.017474,0.281040,0.547849,0.546720,-0.389011,-0.315776 +-0.010851,0.287486,0.548592,0.545551,-0.390976,-0.319859 +-0.004315,0.293802,0.549195,0.544363,-0.392817,-0.323837 +0.002133,0.299984,0.549656,0.543156,-0.394535,-0.327710 +0.008490,0.306029,0.549975,0.541930,-0.396132,-0.331477 +0.014757,0.311933,0.550151,0.540685,-0.397610,-0.335137 +0.020931,0.317696,0.550184,0.539423,-0.398969,-0.338691 +0.027013,0.323312,0.550073,0.538143,-0.400213,-0.342138 +0.033002,0.328781,0.549817,0.536846,-0.401342,-0.345477 +0.038896,0.334099,0.549418,0.535532,-0.402359,-0.348710 +0.044696,0.339265,0.548874,0.534202,-0.403266,-0.351835 +0.050401,0.344276,0.548185,0.532855,-0.404065,-0.354854 +0.056011,0.349129,0.547352,0.531492,-0.404757,-0.357765 +0.061525,0.353824,0.546374,0.530112,-0.405345,-0.360570 +0.066943,0.358358,0.545251,0.528717,-0.405832,-0.363269 +0.072265,0.362729,0.543985,0.527305,-0.406219,-0.365861 +0.077492,0.366937,0.542574,0.525878,-0.406510,-0.368348 +0.082623,0.370979,0.541020,0.524434,-0.406705,-0.370730 +0.087658,0.374855,0.539323,0.522975,-0.406809,-0.373007 +0.092599,0.378563,0.537484,0.521499,-0.406824,-0.375181 +0.097445,0.382102,0.535502,0.520007,-0.406751,-0.377251 +0.102198,0.385472,0.533380,0.518499,-0.406594,-0.379218 +0.106856,0.388672,0.531117,0.516975,-0.406356,-0.381084 +0.111423,0.391700,0.528715,0.515433,-0.406039,-0.382850 +0.115897,0.394558,0.526174,0.513875,-0.405646,-0.384515 +0.120280,0.397244,0.523496,0.512299,-0.405180,-0.386082 +0.124574,0.399758,0.520681,0.510705,-0.404644,-0.387551 +0.128778,0.402100,0.517732,0.509093,-0.404040,-0.388923 +0.132895,0.404271,0.514649,0.507463,-0.403372,-0.390199 +0.136926,0.406270,0.511433,0.505814,-0.402642,-0.391382 +0.140871,0.408098,0.508087,0.504145,-0.401853,-0.392471 +0.144732,0.409756,0.504611,0.502457,-0.401009,-0.393469 +0.148511,0.411244,0.501007,0.500748,-0.400113,-0.394377 +0.152210,0.412563,0.497278,0.499018,-0.399166,-0.395195 +0.155829,0.413714,0.493424,0.497266,-0.398173,-0.395927 +0.159371,0.414697,0.489448,0.495492,-0.397137,-0.396572 +0.162837,0.415515,0.485352,0.493694,-0.396060,-0.397133 +0.166229,0.416168,0.481137,0.491873,-0.394945,-0.397611 +0.169549,0.416657,0.476805,0.490028,-0.393797,-0.398008 +0.172799,0.416986,0.472360,0.488157,-0.392616,-0.398326 +0.175981,0.417154,0.467803,0.486260,-0.391408,-0.398566 +0.179097,0.417164,0.463136,0.484336,-0.390174,-0.398730 +0.182149,0.417017,0.458361,0.482384,-0.388918,-0.398820 +0.185140,0.416716,0.453482,0.480404,-0.387642,-0.398837 +0.188071,0.416264,0.448501,0.478394,-0.386350,-0.398783 +0.190944,0.415661,0.443420,0.476353,-0.385045,-0.398661 +0.193763,0.414911,0.438242,0.474281,-0.383729,-0.398472 +0.196530,0.414016,0.432969,0.472177,-0.382405,-0.398218 +0.199246,0.412978,0.427605,0.470039,-0.381077,-0.397901 +0.201914,0.411801,0.422152,0.467866,-0.379747,-0.397522 +0.204537,0.410487,0.416613,0.465658,-0.378418,-0.397084 +0.207117,0.409039,0.410991,0.463413,-0.377093,-0.396589 +0.209657,0.407459,0.405289,0.461131,-0.375774,-0.396039 +0.212159,0.405752,0.399510,0.458810,-0.374465,-0.395435 +0.214625,0.403920,0.393657,0.456449,-0.373167,-0.394779 +0.217059,0.401966,0.387734,0.454047,-0.371883,-0.394075 +0.219463,0.399894,0.381743,0.451603,-0.370617,-0.393323 +0.221839,0.397707,0.375687,0.449115,-0.369369,-0.392525 +0.224190,0.395408,0.369571,0.446583,-0.368144,-0.391684 +0.226518,0.393002,0.363397,0.444006,-0.366943,-0.390801 +0.228827,0.390491,0.357168,0.441382,-0.365768,-0.389879 +0.231119,0.387880,0.350888,0.438710,-0.364623,-0.388920 +0.233396,0.385173,0.344561,0.435989,-0.363508,-0.387924 +0.235661,0.382372,0.338189,0.433218,-0.362426,-0.386895 +0.237917,0.379482,0.331777,0.430396,-0.361379,-0.385835 +0.240165,0.376508,0.325328,0.427520,-0.360370,-0.384744 +0.242409,0.373452,0.318845,0.424592,-0.359399,-0.383626 +0.244652,0.370319,0.312331,0.421608,-0.358470,-0.382481 +0.246895,0.367112,0.305791,0.418569,-0.357583,-0.381313 +0.249141,0.363837,0.299228,0.415472,-0.356740,-0.380122 +0.251393,0.360497,0.292646,0.412317,-0.355943,-0.378911 +0.253653,0.357097,0.286047,0.409102,-0.355194,-0.377680 +0.255923,0.353640,0.279437,0.405827,-0.354494,-0.376433 +0.258206,0.350131,0.272817,0.402491,-0.353843,-0.375171 +0.260504,0.346574,0.266193,0.399092,-0.353245,-0.373895 +0.262819,0.342973,0.259567,0.395629,-0.352699,-0.372607 +0.265153,0.339333,0.252944,0.392101,-0.352206,-0.371309 +0.267510,0.335657,0.246326,0.388507,-0.351769,-0.370002 +0.269890,0.331951,0.239718,0.384847,-0.351387,-0.368688 +0.272296,0.328218,0.233122,0.381119,-0.351062,-0.367368 +0.274730,0.324463,0.226543,0.377322,-0.350794,-0.366044 +0.277193,0.320690,0.219984,0.373455,-0.350583,-0.364717 +0.279689,0.316904,0.213449,0.369518,-0.350432,-0.363389 +0.282217,0.313107,0.206941,0.365509,-0.350339,-0.362062 +0.284782,0.309306,0.200464,0.361428,-0.350305,-0.360735 +0.287383,0.305504,0.194021,0.357274,-0.350331,-0.359411 +0.290023,0.301705,0.187615,0.353046,-0.350417,-0.358090 +0.292702,0.297913,0.181250,0.348743,-0.350562,-0.356775 +0.295424,0.294132,0.174930,0.344365,-0.350768,-0.355465 +0.298189,0.290368,0.168657,0.339911,-0.351032,-0.354163 +0.300998,0.286623,0.162436,0.335380,-0.351357,-0.352868 +0.303852,0.282902,0.156269,0.330772,-0.351740,-0.351583 +0.306754,0.279208,0.150159,0.326086,-0.352183,-0.350307 +0.309703,0.275546,0.144110,0.321322,-0.352683,-0.349042 +0.312702,0.271920,0.138125,0.316479,-0.353241,-0.347789 +0.315750,0.268333,0.132206,0.311556,-0.353857,-0.346547 +0.318849,0.264789,0.126358,0.306554,-0.354528,-0.345319 +0.321999,0.261292,0.120583,0.301472,-0.355255,-0.344104 +0.325202,0.257846,0.114883,0.296310,-0.356036,-0.342903 +0.328457,0.254453,0.109262,0.291067,-0.356871,-0.341716 +0.331765,0.251118,0.103723,0.285744,-0.357758,-0.340545 +0.335126,0.247845,0.098267,0.280340,-0.358696,-0.339389 +0.338542,0.244635,0.092899,0.274855,-0.359684,-0.338248 +0.342011,0.241493,0.087620,0.269289,-0.360721,-0.337123 +0.345535,0.238423,0.082434,0.263642,-0.361804,-0.336015 +0.349113,0.235426,0.077341,0.257914,-0.362933,-0.334922 +0.352745,0.232506,0.072346,0.252105,-0.364105,-0.333846 +0.356430,0.229666,0.067450,0.246216,-0.365319,-0.332787 +0.360169,0.226909,0.062655,0.240247,-0.366574,-0.331743 +0.363962,0.224237,0.057964,0.234198,-0.367867,-0.330716 +0.367807,0.221654,0.053379,0.228069,-0.369196,-0.329705 +0.371704,0.219162,0.048901,0.221860,-0.370560,-0.328709 +0.375653,0.216763,0.044533,0.215573,-0.371956,-0.327730 +0.379653,0.214460,0.040276,0.209208,-0.373382,-0.326765 +0.383703,0.212255,0.036132,0.202765,-0.374836,-0.325815 +0.387801,0.210150,0.032104,0.196245,-0.376316,-0.324880 +0.391948,0.208148,0.028191,0.189649,-0.377819,-0.323959 +0.396141,0.206250,0.024397,0.182977,-0.379343,-0.323051 +0.400380,0.204457,0.020722,0.176230,-0.380885,-0.322156 +0.404663,0.202773,0.017167,0.169410,-0.382443,-0.321273 +0.408989,0.201198,0.013734,0.162516,-0.384015,-0.320402 +0.413356,0.199735,0.010424,0.155551,-0.385597,-0.319541 +0.417763,0.198383,0.007238,0.148515,-0.387187,-0.318690 +0.422209,0.197146,0.004177,0.141409,-0.388782,-0.317848 +0.426690,0.196023,0.001241,0.134235,-0.390380,-0.317015 +0.431206,0.195017,-0.001568,0.126993,-0.391977,-0.316188 +0.435754,0.194128,-0.004250,0.119685,-0.393571,-0.315368 +0.440333,0.193356,-0.006805,0.112313,-0.395159,-0.314553 +0.444941,0.192703,-0.009232,0.104878,-0.396738,-0.313742 +0.449574,0.192170,-0.011530,0.097380,-0.398305,-0.312933 +0.454232,0.191756,-0.013700,0.089823,-0.399857,-0.312127 +0.458911,0.191463,-0.015741,0.082207,-0.401391,-0.311321 +0.463609,0.191289,-0.017654,0.074534,-0.402904,-0.310515 +0.468324,0.191237,-0.019438,0.066806,-0.404393,-0.309706 +0.473053,0.191305,-0.021093,0.059024,-0.405855,-0.308895 +0.477794,0.191494,-0.022620,0.051191,-0.407286,-0.308078 +0.482544,0.191804,-0.024019,0.043308,-0.408685,-0.307256 +0.487299,0.192233,-0.025291,0.035377,-0.410047,-0.306427 +0.492058,0.192782,-0.026436,0.027400,-0.411370,-0.305588 +0.496818,0.193451,-0.027455,0.019379,-0.412650,-0.304740 +0.501575,0.194239,-0.028348,0.011317,-0.413885,-0.303879 +0.506326,0.195144,-0.029116,0.003214,-0.415071,-0.303006 +0.511069,0.196166,-0.029761,-0.004925,-0.416205,-0.302117 +0.515801,0.197305,-0.030283,-0.013100,-0.417284,-0.301213 +0.520517,0.198559,-0.030684,-0.021308,-0.418305,-0.300290 +0.525216,0.199927,-0.030964,-0.029547,-0.419266,-0.299348 +0.529894,0.201407,-0.031125,-0.037814,-0.420162,-0.298385 +0.534547,0.202999,-0.031169,-0.046106,-0.420992,-0.297399 +0.539173,0.204701,-0.031096,-0.054423,-0.421751,-0.296389 +0.543768,0.206512,-0.030909,-0.062760,-0.422438,-0.295353 +0.548328,0.208429,-0.030609,-0.071116,-0.423049,-0.294290 +0.552851,0.210451,-0.030198,-0.079487,-0.423581,-0.293197 +0.557333,0.212577,-0.029678,-0.087872,-0.424032,-0.292074 +0.561771,0.214804,-0.029051,-0.096268,-0.424398,-0.290918 +0.566160,0.217130,-0.028318,-0.104671,-0.424677,-0.289728 +0.570498,0.219554,-0.027482,-0.113080,-0.424867,-0.288503 +0.574782,0.222073,-0.026545,-0.121492,-0.424964,-0.287240 +0.579007,0.224684,-0.025509,-0.129903,-0.424966,-0.285938 +0.583170,0.227387,-0.024377,-0.138312,-0.424870,-0.284596 +0.587268,0.230177,-0.023150,-0.146715,-0.424675,-0.283211 +0.591298,0.233053,-0.021833,-0.155109,-0.424376,-0.281783 +0.595256,0.236012,-0.020426,-0.163492,-0.423973,-0.280310 +0.599138,0.239052,-0.018932,-0.171860,-0.423462,-0.278790 +0.602941,0.242170,-0.017355,-0.180212,-0.422842,-0.277221 +0.606661,0.245363,-0.015697,-0.188543,-0.422111,-0.275603 +0.610296,0.248628,-0.013961,-0.196852,-0.421265,-0.273933 +0.613842,0.251963,-0.012149,-0.205135,-0.420303,-0.272211 +0.617295,0.255365,-0.010265,-0.213389,-0.419224,-0.270434 +0.620652,0.258830,-0.008311,-0.221611,-0.418024,-0.268602 +0.623910,0.262356,-0.006291,-0.229799,-0.416704,-0.266712 +0.627066,0.265940,-0.004208,-0.237949,-0.415259,-0.264764 +0.630116,0.269578,-0.002064,-0.246058,-0.413690,-0.262757 +0.633058,0.273268,0.000137,-0.254124,-0.411995,-0.260689 +0.635887,0.277007,0.002391,-0.262144,-0.410171,-0.258558 +0.638601,0.280790,0.004697,-0.270114,-0.408217,-0.256364 +0.641197,0.284616,0.007049,-0.278032,-0.406133,-0.254106 +0.643672,0.288480,0.009445,-0.285895,-0.403917,-0.251782 +0.646023,0.292380,0.011882,-0.293699,-0.401568,-0.249391 +0.648247,0.296313,0.014357,-0.301443,-0.399085,-0.246933 +0.650342,0.300274,0.016865,-0.309122,-0.396467,-0.244406 +0.652304,0.304261,0.019403,-0.316735,-0.393712,-0.241809 +0.654130,0.308270,0.021968,-0.324278,-0.390821,-0.239141 +0.655819,0.312299,0.024557,-0.331748,-0.387793,-0.236402 +0.657368,0.316343,0.027165,-0.339143,-0.384627,-0.233592 +0.658773,0.320400,0.029790,-0.346460,-0.381322,-0.230708 +0.660034,0.324466,0.032428,-0.353696,-0.377879,-0.227750 +0.661147,0.328538,0.035075,-0.360848,-0.374297,-0.224719 +0.662110,0.332612,0.037727,-0.367914,-0.370576,-0.221612 +0.662922,0.336686,0.040382,-0.374891,-0.366715,-0.218431 +0.663579,0.340756,0.043036,-0.381777,-0.362715,-0.215173 +0.664081,0.344818,0.045684,-0.388567,-0.358577,-0.211840 +0.664425,0.348871,0.048324,-0.395261,-0.354300,-0.208430 +0.664609,0.352910,0.050953,-0.401856,-0.349884,-0.204944 +0.664632,0.356932,0.053565,-0.408349,-0.345331,-0.201380 +0.664492,0.360934,0.056159,-0.414737,-0.340640,-0.197740 +0.664187,0.364913,0.058730,-0.421018,-0.335812,-0.194022 +0.663717,0.368867,0.061275,-0.427191,-0.330849,-0.190227 +0.663080,0.372791,0.063790,-0.433252,-0.325750,-0.186355 +0.662274,0.376684,0.066273,-0.439199,-0.320518,-0.182407 +0.661299,0.380541,0.068719,-0.445030,-0.315152,-0.178381 +0.660154,0.384361,0.071126,-0.450743,-0.309655,-0.174279 +0.658837,0.388141,0.073489,-0.456336,-0.304027,-0.170100 +0.657349,0.391877,0.075807,-0.461806,-0.298270,-0.165846 +0.655688,0.395567,0.078074,-0.467152,-0.292386,-0.161516 +0.653853,0.399208,0.080289,-0.472372,-0.286375,-0.157111 +0.651845,0.402798,0.082447,-0.477464,-0.280240,-0.152631 +0.649663,0.406334,0.084547,-0.482426,-0.273982,-0.148078 +0.647307,0.409814,0.086584,-0.487256,-0.267603,-0.143452 +0.644777,0.413235,0.088555,-0.491953,-0.261105,-0.138754 +0.642073,0.416596,0.090459,-0.496515,-0.254490,-0.133984 +0.639194,0.419893,0.092290,-0.500940,-0.247760,-0.129143 +0.636141,0.423124,0.094048,-0.505227,-0.240918,-0.124233 +0.632915,0.426288,0.095728,-0.509375,-0.233966,-0.119254 +0.629516,0.429383,0.097329,-0.513382,-0.226905,-0.114208 +0.625945,0.432406,0.098847,-0.517247,-0.219740,-0.109096 +0.622202,0.435355,0.100280,-0.520968,-0.212471,-0.103918 +0.618288,0.438230,0.101624,-0.524545,-0.205102,-0.098676 +0.614204,0.441027,0.102879,-0.527976,-0.197635,-0.093372 +0.609951,0.443746,0.104040,-0.531261,-0.190074,-0.088007 +0.605530,0.446386,0.105107,-0.534398,-0.182420,-0.082582 +0.600943,0.448943,0.106076,-0.537387,-0.174678,-0.077099 +0.596191,0.451418,0.106945,-0.540226,-0.166849,-0.071559 +0.591276,0.453809,0.107712,-0.542916,-0.158938,-0.065964 +0.586198,0.456115,0.108375,-0.545456,-0.150946,-0.060316 +0.580960,0.458334,0.108932,-0.547844,-0.142878,-0.054617 +0.575564,0.460466,0.109381,-0.550081,-0.134736,-0.048867 +0.570012,0.462510,0.109721,-0.552166,-0.126524,-0.043070 +0.564305,0.464464,0.109949,-0.554099,-0.118245,-0.037227 +0.558445,0.466330,0.110064,-0.555880,-0.109903,-0.031340 +0.552436,0.468104,0.110064,-0.557508,-0.101500,-0.025410 +0.546280,0.469788,0.109948,-0.558984,-0.093041,-0.019441 +0.539978,0.471381,0.109714,-0.560306,-0.084529,-0.013433 +0.533533,0.472881,0.109361,-0.561477,-0.075968,-0.007390 +0.526949,0.474290,0.108889,-0.562495,-0.067361,-0.001313 +0.520227,0.475607,0.108294,-0.563361,-0.058711,0.004795 +0.513371,0.476832,0.107578,-0.564075,-0.050023,0.010932 +0.506384,0.477965,0.106738,-0.564638,-0.041300,0.017097 +0.499268,0.479006,0.105774,-0.565049,-0.032546,0.023286 +0.492027,0.479955,0.104685,-0.565311,-0.023765,0.029497 +0.484664,0.480813,0.103470,-0.565423,-0.014960,0.035728 +0.477182,0.481580,0.102130,-0.565385,-0.006136,0.041977 +0.469584,0.482256,0.100662,-0.565200,0.002705,0.048240 +0.461875,0.482843,0.099068,-0.564867,0.011558,0.054516 +0.454057,0.483340,0.097346,-0.564387,0.020419,0.060802 +0.446134,0.483748,0.095497,-0.563762,0.029285,0.067096 +0.438110,0.484070,0.093520,-0.562993,0.038151,0.073394 +0.429988,0.484304,0.091416,-0.562081,0.047014,0.079695 +0.421772,0.484453,0.089184,-0.561026,0.055871,0.085996 +0.413467,0.484517,0.086824,-0.559831,0.064716,0.092294 +0.405075,0.484497,0.084338,-0.558496,0.073547,0.098587 +0.396601,0.484396,0.081725,-0.557024,0.082360,0.104872 +0.388049,0.484214,0.078986,-0.555415,0.091150,0.111146 +0.379423,0.483952,0.076121,-0.553671,0.099915,0.117407 +0.370727,0.483612,0.073131,-0.551794,0.108650,0.123652 +0.361965,0.483196,0.070017,-0.549785,0.117352,0.129879 +0.353141,0.482705,0.066779,-0.547647,0.126016,0.136084 +0.344260,0.482141,0.063419,-0.545381,0.134640,0.142266 +0.335326,0.481506,0.059937,-0.542988,0.143220,0.148422 +0.326343,0.480801,0.056335,-0.540472,0.151752,0.154549 +0.317315,0.480028,0.052614,-0.537833,0.160233,0.160644 +0.308246,0.479190,0.048775,-0.535074,0.168658,0.166705 +0.299142,0.478288,0.044820,-0.532197,0.177026,0.172730 +0.290005,0.477324,0.040750,-0.529205,0.185332,0.178715 +0.280842,0.476301,0.036566,-0.526098,0.193572,0.184659 +0.271655,0.475220,0.032270,-0.522881,0.201745,0.190558 +0.262450,0.474084,0.027863,-0.519554,0.209846,0.196410 +0.253231,0.472895,0.023349,-0.516120,0.217872,0.202213 +0.244002,0.471656,0.018728,-0.512582,0.225820,0.207964 +0.234767,0.470368,0.014002,-0.508942,0.233687,0.213662 +0.225532,0.469033,0.009174,-0.505203,0.241470,0.219302 +0.216299,0.467656,0.004245,-0.501367,0.249166,0.224884 +0.207074,0.466237,-0.000783,-0.497436,0.256773,0.230404 +0.197861,0.464779,-0.005906,-0.493414,0.264287,0.235861 +0.188664,0.463285,-0.011124,-0.489302,0.271706,0.241253 +0.179488,0.461757,-0.016433,-0.485104,0.279027,0.246576 +0.170336,0.460197,-0.021831,-0.480822,0.286248,0.251829 +0.161213,0.458609,-0.027316,-0.476459,0.293365,0.257010 +0.152123,0.456995,-0.032885,-0.472017,0.300378,0.262116 +0.143070,0.455356,-0.038535,-0.467500,0.307283,0.267146 +0.134058,0.453697,-0.044265,-0.462910,0.314078,0.272098 +0.125092,0.452019,-0.050070,-0.458249,0.320761,0.276969 +0.116175,0.450325,-0.055949,-0.453522,0.327330,0.281758 +0.107311,0.448618,-0.061899,-0.448730,0.333783,0.286463 +0.098503,0.446900,-0.067916,-0.443876,0.340118,0.291082 +0.089757,0.445173,-0.073999,-0.438963,0.346334,0.295614 +0.081076,0.443441,-0.080143,-0.433995,0.352428,0.300057 +0.072462,0.441705,-0.086346,-0.428973,0.358400,0.304409 +0.063921,0.439968,-0.092605,-0.423901,0.364247,0.308668 +0.055455,0.438233,-0.098917,-0.418782,0.369968,0.312834 +0.047068,0.436503,-0.105278,-0.413618,0.375562,0.316905 +0.038764,0.434779,-0.111687,-0.408413,0.381028,0.320879 +0.030545,0.433063,-0.118139,-0.403169,0.386365,0.324756 +0.022415,0.431360,-0.124631,-0.397888,0.391571,0.328533 +0.014377,0.429670,-0.131160,-0.392575,0.396646,0.332210 +0.006434,0.427996,-0.137723,-0.387232,0.401589,0.335786 +-0.001410,0.426341,-0.144317,-0.381861,0.406399,0.339260 +-0.009154,0.424706,-0.150938,-0.376466,0.411075,0.342631 +-0.016793,0.423094,-0.157584,-0.371049,0.415618,0.345897 +-0.024327,0.421506,-0.164250,-0.365613,0.420027,0.349059 +-0.031750,0.419946,-0.170934,-0.360160,0.424301,0.352116 +-0.039063,0.418415,-0.177632,-0.354694,0.428440,0.355066 +-0.046261,0.416915,-0.184341,-0.349218,0.432444,0.357910 +-0.053342,0.415448,-0.191058,-0.343733,0.436313,0.360646 +-0.060306,0.414016,-0.197779,-0.338242,0.440048,0.363275 +-0.067148,0.412621,-0.204501,-0.332749,0.443647,0.365796 +-0.073868,0.411264,-0.211221,-0.327256,0.447113,0.368208 +-0.080463,0.409947,-0.217935,-0.321765,0.450445,0.370513 +-0.086931,0.408672,-0.224641,-0.316279,0.453643,0.372709 +-0.093272,0.407440,-0.231334,-0.310800,0.456709,0.374796 +-0.099483,0.406253,-0.238012,-0.305331,0.459642,0.376775 +-0.105563,0.405112,-0.244672,-0.299874,0.462444,0.378645 +-0.111511,0.404019,-0.251309,-0.294432,0.465116,0.380408 +-0.117325,0.402974,-0.257922,-0.289006,0.467658,0.382062 +-0.123005,0.401980,-0.264506,-0.283600,0.470072,0.383609 +-0.128549,0.401036,-0.271059,-0.278216,0.472358,0.385049 +-0.133957,0.400145,-0.277578,-0.272855,0.474519,0.386382 +-0.139227,0.399307,-0.284059,-0.267519,0.476554,0.387609 +-0.144360,0.398522,-0.290499,-0.262212,0.478467,0.388731 +-0.149354,0.397792,-0.296896,-0.256935,0.480257,0.389748 +-0.154210,0.397118,-0.303246,-0.251689,0.481928,0.390661 +-0.158927,0.396499,-0.309547,-0.246478,0.483480,0.391471 +-0.163504,0.395937,-0.315795,-0.241302,0.484915,0.392180 +-0.167943,0.395432,-0.321987,-0.236164,0.486234,0.392787 +-0.172242,0.394984,-0.328122,-0.231065,0.487441,0.393294 +-0.176403,0.394593,-0.334195,-0.226007,0.488537,0.393703 +-0.180425,0.394260,-0.340205,-0.220992,0.489523,0.394013 +-0.184310,0.393985,-0.346148,-0.216021,0.490402,0.394228 +-0.188056,0.393767,-0.352022,-0.211096,0.491177,0.394348 +-0.191666,0.393606,-0.357824,-0.206218,0.491849,0.394374 +-0.195140,0.393503,-0.363552,-0.201389,0.492420,0.394308 +-0.198479,0.393457,-0.369203,-0.196610,0.492893,0.394151 +-0.201683,0.393467,-0.374776,-0.191882,0.493271,0.393906 +-0.204755,0.393534,-0.380266,-0.187207,0.493555,0.393573 +-0.207695,0.393656,-0.385673,-0.182585,0.493749,0.393155 +-0.210504,0.393833,-0.390994,-0.178018,0.493854,0.392653 +-0.213185,0.394063,-0.396227,-0.173507,0.493874,0.392070 +-0.215738,0.394348,-0.401369,-0.169053,0.493811,0.391406 +-0.218165,0.394684,-0.406419,-0.164657,0.493668,0.390664 +-0.220468,0.395071,-0.411374,-0.160318,0.493447,0.389846 +-0.222649,0.395509,-0.416233,-0.156039,0.493152,0.388954 +-0.224710,0.395995,-0.420994,-0.151820,0.492785,0.387990 +-0.226653,0.396529,-0.425655,-0.147661,0.492348,0.386956 +-0.228480,0.397110,-0.430214,-0.143563,0.491845,0.385854 +-0.230193,0.397735,-0.434669,-0.139527,0.491279,0.384687 +-0.231795,0.398403,-0.439020,-0.135553,0.490652,0.383457 +-0.233287,0.399113,-0.443264,-0.131641,0.489968,0.382165 +-0.234673,0.399863,-0.447400,-0.127791,0.489229,0.380815 +-0.235955,0.400650,-0.451426,-0.124004,0.488438,0.379409 +-0.237136,0.401474,-0.455342,-0.120280,0.487598,0.377949 +-0.238218,0.402333,-0.459146,-0.116619,0.486712,0.376437 +-0.239204,0.403223,-0.462837,-0.113021,0.485784,0.374876 +-0.240098,0.404144,-0.466413,-0.109486,0.484815,0.373268 +-0.240901,0.405092,-0.469875,-0.106014,0.483810,0.371617 +-0.241618,0.406067,-0.473220,-0.102604,0.482770,0.369923 +-0.242251,0.407065,-0.476448,-0.099257,0.481700,0.368191 +-0.242803,0.408084,-0.479559,-0.095972,0.480601,0.366422 +-0.243277,0.409122,-0.482551,-0.092748,0.479476,0.364618 +-0.243678,0.410176,-0.485423,-0.089586,0.478330,0.362784 +-0.244007,0.411244,-0.488176,-0.086484,0.477164,0.360920 +-0.244269,0.412323,-0.490808,-0.083443,0.475981,0.359030 +-0.244466,0.413410,-0.493320,-0.080461,0.474785,0.357116 +-0.244603,0.414503,-0.495710,-0.077539,0.473577,0.355181 +-0.244682,0.415600,-0.497979,-0.074674,0.472361,0.353227 +-0.244707,0.416696,-0.500127,-0.071867,0.471140,0.351258 +-0.244682,0.417790,-0.502152,-0.069116,0.469916,0.349274 +-0.244610,0.418879,-0.504056,-0.066422,0.468692,0.347280 +-0.244495,0.419959,-0.505837,-0.063782,0.467470,0.345277 +-0.244341,0.421028,-0.507497,-0.061195,0.466253,0.343268 +-0.244150,0.422083,-0.509035,-0.058662,0.465044,0.341256 +-0.243928,0.423121,-0.510451,-0.056180,0.463845,0.339243 +-0.243676,0.424139,-0.511745,-0.053749,0.462658,0.337232 +-0.243400,0.425134,-0.512919,-0.051367,0.461487,0.335225 +-0.243102,0.426102,-0.513972,-0.049033,0.460332,0.333224 +-0.242786,0.427041,-0.514904,-0.046745,0.459197,0.331232 +-0.242456,0.427947,-0.515717,-0.044504,0.458084,0.329252 +-0.242116,0.428818,-0.516410,-0.042306,0.456995,0.327285 +-0.241769,0.429651,-0.516985,-0.040152,0.455931,0.325334 +-0.241419,0.430442,-0.517442,-0.038038,0.454896,0.323401 +-0.241069,0.431188,-0.517781,-0.035965,0.453890,0.321489 +-0.240723,0.431887,-0.518004,-0.033930,0.452916,0.319600 +-0.240385,0.432534,-0.518111,-0.031932,0.451975,0.317735 +-0.240058,0.433128,-0.518104,-0.029969,0.451070,0.315898 +-0.239745,0.433664,-0.517982,-0.028040,0.450201,0.314089 +-0.239451,0.434140,-0.517748,-0.026142,0.449371,0.312312 +-0.239178,0.434554,-0.517402,-0.024276,0.448582,0.310568 +-0.238929,0.434901,-0.516945,-0.022438,0.447833,0.308859 +-0.238709,0.435179,-0.516378,-0.020627,0.447127,0.307187 +-0.238521,0.435386,-0.515703,-0.018842,0.446465,0.305554 +-0.238367,0.435517,-0.514920,-0.017080,0.445849,0.303961 +-0.238251,0.435571,-0.514031,-0.015341,0.445278,0.302411 +-0.238176,0.435544,-0.513038,-0.013621,0.444755,0.300904 +-0.238145,0.435434,-0.511941,-0.011920,0.444280,0.299443 +-0.238162,0.435237,-0.510742,-0.010236,0.443853,0.298030 +-0.238228,0.434952,-0.509442,-0.008566,0.443477,0.296665 +-0.238348,0.434576,-0.508043,-0.006910,0.443151,0.295350 +-0.238523,0.434105,-0.506546,-0.005265,0.442875,0.294086 +-0.238756,0.433538,-0.504953,-0.003629,0.442651,0.292875 +-0.239051,0.432872,-0.503265,-0.002001,0.442479,0.291718 +-0.239410,0.432105,-0.501483,-0.000379,0.442359,0.290616 +-0.239835,0.431234,-0.499610,0.001239,0.442291,0.289570 +-0.240329,0.430256,-0.497646,0.002854,0.442275,0.288581 +-0.240893,0.429171,-0.495594,0.004470,0.442311,0.287650 +-0.241531,0.427975,-0.493455,0.006086,0.442400,0.286778 +-0.242244,0.426667,-0.491230,0.007706,0.442541,0.285966 +-0.243035,0.425245,-0.488922,0.009330,0.442733,0.285215 +-0.243905,0.423706,-0.486531,0.010961,0.442977,0.284524 +-0.244857,0.422050,-0.484060,0.012601,0.443272,0.283895 +-0.245891,0.420274,-0.481510,0.014250,0.443617,0.283328 +-0.247011,0.418376,-0.478883,0.015912,0.444012,0.282824 +-0.248216,0.416356,-0.476181,0.017587,0.444457,0.282382 +-0.249510,0.414211,-0.473404,0.019277,0.444949,0.282004 +-0.250893,0.411941,-0.470556,0.020983,0.445489,0.281689 +-0.252366,0.409544,-0.467638,0.022709,0.446075,0.281437 +-0.253930,0.407019,-0.464650,0.024454,0.446707,0.281249 +-0.255588,0.404365,-0.461596,0.026221,0.447382,0.281125 +-0.257339,0.401581,-0.458476,0.028011,0.448101,0.281063 +-0.259184,0.398666,-0.455293,0.029826,0.448861,0.281065 +-0.261125,0.395619,-0.452048,0.031667,0.449662,0.281129 +-0.263161,0.392441,-0.448742,0.033535,0.450501,0.281256 +-0.265293,0.389130,-0.445378,0.035433,0.451377,0.281444 +-0.267522,0.385685,-0.441957,0.037361,0.452289,0.281694 +-0.269848,0.382108,-0.438480,0.039320,0.453235,0.282005 +-0.272271,0.378397,-0.434949,0.041313,0.454213,0.282376 +-0.274791,0.374552,-0.431366,0.043340,0.455221,0.282807 +-0.277409,0.370574,-0.427733,0.045403,0.456258,0.283296 +-0.280122,0.366463,-0.424050,0.047503,0.457320,0.283843 +-0.282933,0.362218,-0.420320,0.049640,0.458407,0.284446 +-0.285839,0.357841,-0.416544,0.051817,0.459516,0.285105 +-0.288841,0.353332,-0.412723,0.054033,0.460645,0.285819 +-0.291938,0.348691,-0.408859,0.056291,0.461792,0.286586 +-0.295130,0.343920,-0.404953,0.058591,0.462954,0.287405 +-0.298414,0.339019,-0.401007,0.060934,0.464129,0.288275 +-0.301791,0.333989,-0.397022,0.063321,0.465315,0.289194 +-0.305259,0.328831,-0.392999,0.065752,0.466509,0.290162 +-0.308817,0.323547,-0.388940,0.068229,0.467709,0.291175 +-0.312464,0.318137,-0.384847,0.070753,0.468911,0.292234 +-0.316198,0.312604,-0.380719,0.073323,0.470114,0.293335 +-0.320018,0.306949,-0.376559,0.075941,0.471316,0.294478 +-0.323923,0.301173,-0.372368,0.078607,0.472512,0.295661 +-0.327909,0.295279,-0.368147,0.081322,0.473700,0.296882 +-0.331976,0.289268,-0.363896,0.084086,0.474879,0.298138 +-0.336122,0.283143,-0.359618,0.086899,0.476044,0.299429 +-0.340345,0.276905,-0.355313,0.089762,0.477194,0.300751 +-0.344642,0.270556,-0.350982,0.092676,0.478325,0.302104 +-0.349011,0.264100,-0.346627,0.095640,0.479434,0.303484 +-0.353450,0.257539,-0.342247,0.098655,0.480519,0.304890 +-0.357957,0.250875,-0.337844,0.101721,0.481576,0.306319 +-0.362529,0.244110,-0.333420,0.104838,0.482604,0.307770 +-0.367163,0.237249,-0.328974,0.108006,0.483598,0.309240 +-0.371857,0.230293,-0.324508,0.111225,0.484557,0.310726 +-0.376608,0.223246,-0.320021,0.114495,0.485476,0.312227 +-0.381413,0.216110,-0.315516,0.117816,0.486353,0.313740 +-0.386269,0.208890,-0.310993,0.121188,0.487186,0.315262 +-0.391173,0.201588,-0.306452,0.124610,0.487971,0.316791 +-0.396123,0.194207,-0.301894,0.128082,0.488705,0.318325 +-0.401115,0.186752,-0.297319,0.131605,0.489386,0.319861 +-0.406145,0.179225,-0.292729,0.135176,0.490011,0.321396 +-0.411211,0.171631,-0.288123,0.138797,0.490576,0.322929 +-0.416309,0.163973,-0.283502,0.142467,0.491079,0.324455 +-0.421436,0.156255,-0.278866,0.146185,0.491517,0.325974 +-0.426588,0.148480,-0.274216,0.149950,0.491887,0.327481 +-0.431762,0.140654,-0.269552,0.153762,0.492186,0.328975 +-0.436954,0.132779,-0.264875,0.157620,0.492413,0.330453 +-0.442161,0.124860,-0.260184,0.161524,0.492563,0.331912 +-0.447379,0.116902,-0.255481,0.165472,0.492634,0.333350 +-0.452604,0.108908,-0.250764,0.169465,0.492624,0.334763 +-0.457832,0.100883,-0.246034,0.173500,0.492530,0.336150 +-0.463060,0.092830,-0.241293,0.177578,0.492349,0.337507 +-0.468285,0.084756,-0.236538,0.181696,0.492080,0.338832 +-0.473501,0.076663,-0.231771,0.185855,0.491718,0.340123 +-0.478706,0.068557,-0.226992,0.190053,0.491263,0.341375 +-0.483895,0.060442,-0.222200,0.194289,0.490711,0.342588 +-0.489065,0.052322,-0.217396,0.198561,0.490061,0.343758 +-0.494211,0.044203,-0.212580,0.202870,0.489310,0.344883 +-0.499330,0.036089,-0.207751,0.207213,0.488455,0.345960 +-0.504418,0.027985,-0.202909,0.211589,0.487496,0.346986 +-0.509470,0.019895,-0.198055,0.215997,0.486429,0.347959 +-0.514484,0.011824,-0.193187,0.220436,0.485252,0.348877 +-0.519454,0.003777,-0.188307,0.224905,0.483965,0.349736 +-0.524377,-0.004241,-0.183413,0.229401,0.482564,0.350535 +-0.529250,-0.012226,-0.178505,0.233924,0.481049,0.351271 +-0.534068,-0.020172,-0.173584,0.238472,0.479417,0.351941 +-0.538827,-0.028075,-0.168649,0.243043,0.477667,0.352544 +-0.543523,-0.035930,-0.163700,0.247637,0.475797,0.353076 +-0.548153,-0.043732,-0.158736,0.252251,0.473806,0.353536 +-0.552713,-0.051477,-0.153757,0.256885,0.471692,0.353921 +-0.557199,-0.059159,-0.148762,0.261536,0.469454,0.354229 +-0.561607,-0.066774,-0.143752,0.266203,0.467092,0.354458 +-0.565933,-0.074317,-0.138727,0.270884,0.464603,0.354606 +-0.570175,-0.081784,-0.133685,0.275578,0.461987,0.354670 +-0.574327,-0.089169,-0.128626,0.280283,0.459242,0.354649 +-0.578387,-0.096469,-0.123550,0.284998,0.456369,0.354541 +-0.582351,-0.103677,-0.118457,0.289720,0.453366,0.354343 +-0.586215,-0.110790,-0.113346,0.294448,0.450232,0.354055 +-0.589977,-0.117804,-0.108217,0.299180,0.446968,0.353673 +-0.593632,-0.124713,-0.103070,0.303916,0.443572,0.353196 +-0.597177,-0.131513,-0.097904,0.308652,0.440044,0.352624 +-0.600610,-0.138200,-0.092718,0.313387,0.436383,0.351953 +-0.603926,-0.144770,-0.087513,0.318120,0.432591,0.351182 +-0.607123,-0.151217,-0.082287,0.322848,0.428666,0.350311 +-0.610198,-0.157539,-0.077042,0.327571,0.424608,0.349337 +-0.613147,-0.163730,-0.071775,0.332285,0.420419,0.348259 +-0.615968,-0.169787,-0.066488,0.336991,0.416097,0.347076 +-0.618658,-0.175705,-0.061179,0.341685,0.411643,0.345787 +-0.621215,-0.181481,-0.055848,0.346366,0.407058,0.344391 +-0.623634,-0.187111,-0.050495,0.351032,0.402342,0.342886 +-0.625915,-0.192590,-0.045120,0.355682,0.397496,0.341271 +-0.628054,-0.197916,-0.039722,0.360314,0.392520,0.339546 +-0.630049,-0.203085,-0.034302,0.364926,0.387416,0.337710 +-0.631898,-0.208093,-0.028858,0.369517,0.382183,0.335761 +-0.633599,-0.212936,-0.023391,0.374085,0.376824,0.333700 +-0.635149,-0.217612,-0.017900,0.378628,0.371339,0.331526 +-0.636546,-0.222117,-0.012386,0.383144,0.365730,0.329238 +-0.637789,-0.226448,-0.006847,0.387632,0.359997,0.326835 +-0.638875,-0.230603,-0.001285,0.392091,0.354143,0.324318 +-0.639803,-0.234577,0.004301,0.396518,0.348168,0.321686 +-0.640572,-0.238369,0.009912,0.400913,0.342075,0.318939 +-0.641179,-0.241975,0.015547,0.405273,0.335864,0.316077 +-0.641624,-0.245394,0.021206,0.409597,0.329538,0.313099 +-0.641905,-0.248623,0.026889,0.413883,0.323099,0.310007 +-0.642021,-0.251659,0.032596,0.418131,0.316548,0.306799 +-0.641971,-0.254500,0.038328,0.422339,0.309887,0.303476 +-0.641754,-0.257144,0.044083,0.426504,0.303119,0.300039 +-0.641369,-0.259590,0.049862,0.430627,0.296247,0.296487 +-0.640815,-0.261835,0.055665,0.434704,0.289271,0.292822 +-0.640092,-0.263878,0.061491,0.438736,0.282195,0.289044 +-0.639199,-0.265717,0.067340,0.442721,0.275020,0.285153 +-0.638136,-0.267351,0.073212,0.446658,0.267750,0.281150 +-0.636903,-0.268778,0.079106,0.450544,0.260388,0.277036 +-0.635499,-0.269998,0.085023,0.454380,0.252935,0.272812 +-0.633924,-0.271010,0.090960,0.458164,0.245394,0.268478 +-0.632179,-0.271812,0.096919,0.461894,0.237769,0.264036 +-0.630263,-0.272403,0.102899,0.465570,0.230063,0.259488 +-0.628177,-0.272784,0.108899,0.469191,0.222277,0.254833 +-0.625922,-0.272954,0.114918,0.472755,0.214416,0.250073 +-0.623497,-0.272912,0.120955,0.476262,0.206481,0.245210 +-0.620904,-0.272659,0.127011,0.479711,0.198478,0.240246 +-0.618143,-0.272194,0.133084,0.483101,0.190408,0.235180 +-0.615215,-0.271518,0.139174,0.486430,0.182275,0.230016 +-0.612121,-0.270630,0.145279,0.489699,0.174082,0.224754 +-0.608862,-0.269531,0.151400,0.492906,0.165832,0.219397 +-0.605440,-0.268222,0.157534,0.496051,0.157530,0.213946 +-0.601855,-0.266704,0.163681,0.499132,0.149178,0.208403 +-0.598109,-0.264977,0.169840,0.502150,0.140780,0.202770 +-0.594203,-0.263042,0.176009,0.505103,0.132339,0.197049 +-0.590140,-0.260900,0.182189,0.507992,0.123859,0.191242 +-0.585920,-0.258554,0.188377,0.510815,0.115344,0.185350 +-0.581547,-0.256003,0.194572,0.513572,0.106796,0.179377 +-0.577020,-0.253249,0.200774,0.516263,0.098221,0.173324 +-0.572344,-0.250296,0.206980,0.518887,0.089621,0.167194 +-0.567519,-0.247143,0.213190,0.521444,0.081000,0.160989 +-0.562548,-0.243793,0.219402,0.523934,0.072362,0.154711 +-0.557433,-0.240248,0.225615,0.526356,0.063710,0.148363 +-0.552176,-0.236511,0.231826,0.528710,0.055049,0.141947 +-0.546781,-0.232583,0.238036,0.530996,0.046382,0.135465 +-0.541249,-0.228467,0.244241,0.533214,0.037712,0.128921 +-0.535584,-0.224167,0.250441,0.535364,0.029044,0.122317 +-0.529787,-0.219683,0.256634,0.537445,0.020381,0.115656 +-0.523863,-0.215020,0.262818,0.539458,0.011727,0.108940 +-0.517813,-0.210181,0.268992,0.541402,0.003086,0.102171 +-0.511640,-0.205168,0.275153,0.543279,-0.005539,0.095354 +-0.505348,-0.199984,0.281300,0.545087,-0.014143,0.088490 +-0.498940,-0.194633,0.287431,0.546827,-0.022724,0.081583 +-0.492419,-0.189119,0.293544,0.548500,-0.031277,0.074635 +-0.485787,-0.183445,0.299638,0.550105,-0.039798,0.067649 +-0.479050,-0.177614,0.305710,0.551643,-0.048285,0.060628 +-0.472208,-0.171631,0.311758,0.553114,-0.056734,0.053575 +-0.465267,-0.165499,0.317781,0.554518,-0.065140,0.046493 +-0.458230,-0.159222,0.323775,0.555856,-0.073501,0.039385 +-0.451099,-0.152804,0.329740,0.557128,-0.081813,0.032254 +-0.443879,-0.146249,0.335673,0.558335,-0.090072,0.025103 +-0.436573,-0.139563,0.341573,0.559477,-0.098275,0.017935 +-0.429185,-0.132748,0.347436,0.560554,-0.106419,0.010753 +-0.421718,-0.125809,0.353260,0.561568,-0.114500,0.003560 +-0.414177,-0.118751,0.359044,0.562519,-0.122515,-0.003641 +-0.406564,-0.111578,0.364786,0.563407,-0.130461,-0.010847 +-0.398883,-0.104296,0.370482,0.564233,-0.138334,-0.018055 +-0.391139,-0.096908,0.376131,0.564997,-0.146132,-0.025262 +-0.383336,-0.089419,0.381731,0.565701,-0.153851,-0.032464 +-0.375476,-0.081835,0.387279,0.566345,-0.161488,-0.039660 +-0.367563,-0.074160,0.392773,0.566930,-0.169041,-0.046845 +-0.359602,-0.066398,0.398210,0.567457,-0.176506,-0.054017 +-0.351597,-0.058556,0.403589,0.567926,-0.183881,-0.061172 +-0.343551,-0.050638,0.408907,0.568338,-0.191162,-0.068309 +-0.335468,-0.042649,0.414162,0.568694,-0.198348,-0.075423 +-0.327352,-0.034594,0.419351,0.568995,-0.205436,-0.082513 +-0.319206,-0.026479,0.424472,0.569241,-0.212423,-0.089574 +-0.311035,-0.018308,0.429522,0.569434,-0.219307,-0.096605 +-0.302843,-0.010086,0.434500,0.569575,-0.226085,-0.103602 +-0.294632,-0.001820,0.439403,0.569664,-0.232755,-0.110562 +-0.286408,0.006486,0.444229,0.569703,-0.239315,-0.117484 +-0.278173,0.014827,0.448975,0.569692,-0.245763,-0.124363 +-0.269932,0.023196,0.453639,0.569632,-0.252096,-0.131197 +-0.261687,0.031590,0.458220,0.569524,-0.258314,-0.137984 +-0.253444,0.040003,0.462713,0.569369,-0.264413,-0.144721 +-0.245205,0.048429,0.467118,0.569169,-0.270393,-0.151406 +-0.236974,0.056863,0.471432,0.568923,-0.276252,-0.158035 +-0.228754,0.065300,0.475653,0.568633,-0.281987,-0.164606 +-0.220550,0.073735,0.479779,0.568301,-0.287599,-0.171117 +-0.212364,0.082163,0.483807,0.567926,-0.293084,-0.177566 +-0.204201,0.090577,0.487735,0.567511,-0.298443,-0.183949 +-0.196062,0.098974,0.491562,0.567055,-0.303673,-0.190265 +-0.187953,0.107347,0.495285,0.566560,-0.308774,-0.196512 +-0.179875,0.115693,0.498902,0.566027,-0.313745,-0.202687 +-0.171833,0.124005,0.502410,0.565457,-0.318585,-0.208787 +-0.163829,0.132279,0.505809,0.564851,-0.323293,-0.214812 +-0.155866,0.140509,0.509096,0.564209,-0.327868,-0.220759 +-0.147948,0.148692,0.512269,0.563533,-0.332310,-0.226626 +-0.140077,0.156821,0.515327,0.562823,-0.336619,-0.232411 +-0.132256,0.164892,0.518267,0.562081,-0.340794,-0.238112 +-0.124489,0.172901,0.521087,0.561308,-0.344834,-0.243727 +-0.116777,0.180842,0.523787,0.560503,-0.348740,-0.249256 +-0.109123,0.188711,0.526364,0.559669,-0.352512,-0.254695 +-0.101531,0.196503,0.528816,0.558806,-0.356149,-0.260044 +-0.094002,0.204214,0.531143,0.557914,-0.359652,-0.265300 +-0.086539,0.211840,0.533342,0.556995,-0.363021,-0.270464 +-0.079144,0.219375,0.535412,0.556050,-0.366256,-0.275532 +-0.071820,0.226817,0.537352,0.555079,-0.369358,-0.280504 +-0.064568,0.234160,0.539160,0.554082,-0.372327,-0.285379 +-0.057391,0.241401,0.540835,0.553061,-0.375164,-0.290156 +-0.050291,0.248535,0.542375,0.552017,-0.377869,-0.294832 +-0.043269,0.255559,0.543780,0.550950,-0.380444,-0.299408 +-0.036327,0.262469,0.545049,0.549860,-0.382889,-0.303883 +-0.029468,0.269261,0.546180,0.548749,-0.385205,-0.308255 +-0.022692,0.275932,0.547173,0.547616,-0.387394,-0.312524 +-0.016001,0.282478,0.548025,0.546463,-0.389457,-0.316689 +-0.009396,0.288896,0.548738,0.545290,-0.391394,-0.320749 +-0.002880,0.295182,0.549309,0.544097,-0.393208,-0.324704 +0.003548,0.301334,0.549739,0.542886,-0.394899,-0.328553 +0.009885,0.307348,0.550026,0.541656,-0.396469,-0.332296 +0.016132,0.313221,0.550171,0.540407,-0.397921,-0.335933 +0.022286,0.318952,0.550172,0.539141,-0.399255,-0.339463 +0.028347,0.324536,0.550029,0.537858,-0.400473,-0.342886 +0.034315,0.329971,0.549741,0.536557,-0.401577,-0.346202 +0.040189,0.335256,0.549310,0.535239,-0.402570,-0.349411 +0.045967,0.340388,0.548734,0.533905,-0.403452,-0.352513 +0.051651,0.345364,0.548013,0.532554,-0.404227,-0.355508 +0.057240,0.350182,0.547148,0.531188,-0.404896,-0.358395 +0.062732,0.354841,0.546138,0.529804,-0.405462,-0.361177 +0.068129,0.359340,0.544983,0.528405,-0.405926,-0.363852 +0.073430,0.363675,0.543685,0.526990,-0.406292,-0.366421 +0.078636,0.367846,0.542243,0.525559,-0.406561,-0.368885 +0.083746,0.371852,0.540657,0.524112,-0.406736,-0.371243 +0.088760,0.375690,0.538928,0.522649,-0.406820,-0.373497 +0.093680,0.379361,0.537057,0.521170,-0.406815,-0.375648 +0.098505,0.382863,0.535044,0.519675,-0.406724,-0.377695 +0.103237,0.386195,0.532891,0.518163,-0.406549,-0.379640 +0.107875,0.389357,0.530597,0.516635,-0.406293,-0.381484 +0.112421,0.392348,0.528164,0.515090,-0.405959,-0.383227 +0.116875,0.395167,0.525593,0.513527,-0.405549,-0.384870 +0.121239,0.397815,0.522884,0.511947,-0.405068,-0.386415 +0.125512,0.400291,0.520040,0.510350,-0.404516,-0.387863 +0.129697,0.402595,0.517061,0.508734,-0.403898,-0.389214 +0.133795,0.404728,0.513948,0.507100,-0.403215,-0.390469 +0.137806,0.406690,0.510704,0.505446,-0.402472,-0.391631 +0.141733,0.408480,0.507328,0.503773,-0.401671,-0.392700 +0.145576,0.410100,0.503824,0.502080,-0.400815,-0.393678 +0.149337,0.411551,0.500193,0.500367,-0.399907,-0.394566 +0.153018,0.412832,0.496435,0.498632,-0.398950,-0.395365 +0.156619,0.413946,0.492555,0.496875,-0.397948,-0.396077 +0.160144,0.414892,0.488552,0.495096,-0.396902,-0.396703 +0.163594,0.415673,0.484429,0.493293,-0.395816,-0.397246 +0.166970,0.416290,0.480188,0.491467,-0.394694,-0.397706 +0.170274,0.416744,0.475831,0.489616,-0.393538,-0.398086 +0.173509,0.417036,0.471361,0.487739,-0.392351,-0.398386 +0.176676,0.417169,0.466779,0.485836,-0.391137,-0.398609 +0.179778,0.417145,0.462088,0.483906,-0.389897,-0.398756 +0.182816,0.416964,0.457290,0.481948,-0.388637,-0.398830 +0.185794,0.416629,0.452388,0.479961,-0.387357,-0.398831 +0.188712,0.416143,0.447385,0.477945,-0.386062,-0.398762 +0.191573,0.415508,0.442282,0.475897,-0.384754,-0.398625 +0.194380,0.414725,0.437082,0.473818,-0.383436,-0.398421 +0.197135,0.413798,0.431789,0.471706,-0.382112,-0.398153 +0.199840,0.412730,0.426405,0.469561,-0.380783,-0.397822 +0.202498,0.411522,0.420933,0.467380,-0.379453,-0.397430 +0.205112,0.410178,0.415375,0.465164,-0.378125,-0.396980 +0.207683,0.408700,0.409736,0.462911,-0.376800,-0.396472 +0.210214,0.407092,0.404016,0.460620,-0.375483,-0.395910 +0.212708,0.405357,0.398221,0.458291,-0.374176,-0.395294 +0.215167,0.403497,0.392352,0.455921,-0.372881,-0.394628 +0.217594,0.401517,0.386413,0.453509,-0.371601,-0.393912 +0.219991,0.399419,0.380408,0.451056,-0.370339,-0.393150 +0.222361,0.397207,0.374339,0.448559,-0.369096,-0.392343 +0.224707,0.394885,0.368209,0.446017,-0.367876,-0.391492 +0.227031,0.392455,0.362022,0.443429,-0.366681,-0.390601 +0.229336,0.389922,0.355782,0.440795,-0.365512,-0.389670 +0.231624,0.387289,0.349492,0.438112,-0.364373,-0.388702 +0.233898,0.384561,0.343154,0.435380,-0.363265,-0.387699 +0.236161,0.381740,0.336773,0.432598,-0.362191,-0.386663 +0.238415,0.378831,0.330353,0.429764,-0.361153,-0.385596 +0.240662,0.375838,0.323895,0.426877,-0.360152,-0.384499 +0.242906,0.372765,0.317405,0.423936,-0.359190,-0.383375 +0.245148,0.369615,0.310886,0.420940,-0.358270,-0.382225 +0.247392,0.366393,0.304340,0.417888,-0.357392,-0.381051 +0.249639,0.363103,0.297773,0.414778,-0.356560,-0.379855 +0.251892,0.359750,0.291186,0.411610,-0.355773,-0.378640 +0.254154,0.356336,0.284585,0.408383,-0.355035,-0.377406 +0.256427,0.352868,0.277972,0.405094,-0.354345,-0.376155 +0.258713,0.349347,0.271351,0.401744,-0.353706,-0.374889 +0.261015,0.345780,0.264726,0.398331,-0.353119,-0.373611 +0.263334,0.342170,0.258101,0.394853,-0.352585,-0.372320 +0.265673,0.338522,0.251478,0.391311,-0.352105,-0.371020 +0.268035,0.334839,0.244862,0.387703,-0.351679,-0.369711 +0.270420,0.331127,0.238256,0.384028,-0.351310,-0.368396 +0.272832,0.327389,0.231664,0.380284,-0.350997,-0.367075 +0.275272,0.323630,0.225089,0.376472,-0.350742,-0.365751 +0.277743,0.319853,0.218536,0.372590,-0.350545,-0.364424 +0.280245,0.316064,0.212006,0.368637,-0.350406,-0.363095 +0.282782,0.312266,0.205505,0.364612,-0.350326,-0.361768 +0.285354,0.308464,0.199034,0.360515,-0.350306,-0.360441 +0.287964,0.304662,0.192599,0.356345,-0.350345,-0.359118 +0.290612,0.300864,0.186202,0.352100,-0.350444,-0.357799 +0.293301,0.297075,0.179847,0.347781,-0.350603,-0.356484 +0.296032,0.293298,0.173537,0.343386,-0.350821,-0.355176 +0.298807,0.289537,0.167276,0.338915,-0.351099,-0.353876 +0.301626,0.285797,0.161066,0.334367,-0.351437,-0.352583 +0.304491,0.282082,0.154911,0.329741,-0.351833,-0.351300 +0.307403,0.278395,0.148814,0.325038,-0.352288,-0.350026 +0.310363,0.274740,0.142779,0.320256,-0.352802,-0.348764 +0.313372,0.271123,0.136809,0.315396,-0.353373,-0.347513 +0.316432,0.267545,0.130906,0.310456,-0.354000,-0.346274 +0.319542,0.264011,0.125073,0.305436,-0.354684,-0.345049 +0.322704,0.260525,0.119314,0.300336,-0.355423,-0.343837 +0.325918,0.257090,0.113632,0.295156,-0.356217,-0.342639 +0.329184,0.253710,0.108029,0.289896,-0.357063,-0.341456 +0.332504,0.250388,0.102508,0.284555,-0.357962,-0.340288 +0.335878,0.247129,0.097072,0.279133,-0.358911,-0.339135 +0.339305,0.243934,0.091723,0.273630,-0.359910,-0.337998 +0.342787,0.240807,0.086464,0.268046,-0.360957,-0.336877 +0.346322,0.237753,0.081298,0.262381,-0.362050,-0.335771 +0.349912,0.234773,0.076227,0.256635,-0.363188,-0.334683 +0.353556,0.231870,0.071254,0.250809,-0.364370,-0.333610 +0.357253,0.229048,0.066380,0.244902,-0.365594,-0.332554 +0.361004,0.226310,0.061608,0.238915,-0.366857,-0.331514 +0.364809,0.223658,0.056940,0.232848,-0.368158,-0.330491 +0.368665,0.221095,0.052378,0.226701,-0.369495,-0.329483 +0.372574,0.218623,0.047924,0.220475,-0.370866,-0.328491 +0.376534,0.216245,0.043581,0.214171,-0.372269,-0.327515 +0.380545,0.213964,0.039349,0.207788,-0.373702,-0.326554 +0.384606,0.211781,0.035231,0.201328,-0.375162,-0.325607 +0.388715,0.209698,0.031227,0.194791,-0.376647,-0.324675 +0.392872,0.207719,0.027341,0.188178,-0.378155,-0.323757 +0.397075,0.205844,0.023573,0.181490,-0.379683,-0.322852 +0.401324,0.204075,0.019924,0.174727,-0.381229,-0.321960 +0.405617,0.202415,0.016397,0.167890,-0.382790,-0.321079 +0.409952,0.200865,0.012991,0.160981,-0.384364,-0.320210 +0.414329,0.199426,0.009708,0.154000,-0.385948,-0.319352 +0.418744,0.198100,0.006550,0.146948,-0.387539,-0.318503 +0.423198,0.196887,0.003516,0.139827,-0.389135,-0.317663 +0.427687,0.195791,0.000608,0.132637,-0.390733,-0.316831 +0.432210,0.194810,-0.002173,0.125381,-0.392330,-0.316006 +0.436765,0.193947,-0.004827,0.118059,-0.393923,-0.315187 +0.441351,0.193201,-0.007353,0.110673,-0.395509,-0.314373 +0.445964,0.192575,-0.009752,0.103223,-0.397086,-0.313562 +0.450603,0.192068,-0.012022,0.095713,-0.398650,-0.312755 +0.455266,0.191681,-0.014163,0.088142,-0.400198,-0.311949 +0.459949,0.191414,-0.016176,0.080513,-0.401727,-0.311143 +0.464651,0.191267,-0.018060,0.072828,-0.403235,-0.310336 +0.469370,0.191242,-0.019815,0.065088,-0.404719,-0.309527 +0.474102,0.191337,-0.021442,0.057295,-0.406174,-0.308714 +0.478845,0.191552,-0.022941,0.049450,-0.407599,-0.307897 +0.483596,0.191888,-0.024312,0.041556,-0.408990,-0.307073 +0.488353,0.192344,-0.025555,0.033615,-0.410343,-0.306242 +0.493112,0.192920,-0.026672,0.025628,-0.411657,-0.305401 +0.497871,0.193615,-0.027663,0.017598,-0.412927,-0.304550 +0.502627,0.194429,-0.028529,0.009526,-0.414151,-0.303687 +0.507377,0.195360,-0.029270,0.001416,-0.415326,-0.302810 +0.512118,0.196408,-0.029887,-0.006732,-0.416448,-0.301919 +0.516846,0.197573,-0.030382,-0.014914,-0.417515,-0.301010 +0.521559,0.198852,-0.030756,-0.023129,-0.418523,-0.300083 +0.526254,0.200245,-0.031010,-0.031374,-0.419470,-0.299137 +0.530926,0.201750,-0.031145,-0.039647,-0.420352,-0.298169 +0.535574,0.203367,-0.031163,-0.047945,-0.421166,-0.297178 +0.540193,0.205093,-0.031065,-0.056266,-0.421910,-0.296162 +0.544781,0.206927,-0.030852,-0.064608,-0.422580,-0.295120 +0.549333,0.208868,-0.030528,-0.072968,-0.423173,-0.294050 +0.553847,0.210913,-0.030093,-0.081342,-0.423688,-0.292951 +0.558319,0.213061,-0.029548,-0.089730,-0.424120,-0.291821 +0.562746,0.215311,-0.028897,-0.098127,-0.424467,-0.290658 +0.567125,0.217659,-0.028142,-0.106532,-0.424727,-0.289460 +0.571451,0.220104,-0.027283,-0.114942,-0.424896,-0.288226 +0.575722,0.222643,-0.026324,-0.123354,-0.424973,-0.286955 +0.579934,0.225275,-0.025267,-0.131765,-0.424953,-0.285644 +0.584083,0.227997,-0.024113,-0.140172,-0.424836,-0.284293 +0.588166,0.230806,-0.022867,-0.148574,-0.424617,-0.282899 +0.592180,0.233701,-0.021529,-0.156966,-0.424296,-0.281461 +0.596122,0.236678,-0.020102,-0.165346,-0.423869,-0.279977 +0.599986,0.239736,-0.018590,-0.173711,-0.423335,-0.278447 +0.603771,0.242870,-0.016995,-0.182058,-0.422690,-0.276867 +0.607473,0.246080,-0.015319,-0.190385,-0.421933,-0.275238 +0.611089,0.249361,-0.013566,-0.198688,-0.421062,-0.273556 +0.614614,0.252711,-0.011738,-0.206964,-0.420074,-0.271822 +0.618047,0.256127,-0.009838,-0.215212,-0.418969,-0.270033 +0.621382,0.259606,-0.007869,-0.223427,-0.417743,-0.268188 +0.624618,0.263145,-0.005835,-0.231606,-0.416395,-0.266286 +0.627751,0.266741,-0.003738,-0.239747,-0.414923,-0.264325 +0.630777,0.270391,-0.001582,-0.247848,-0.413326,-0.262305 +0.633694,0.274092,0.000631,-0.255904,-0.411602,-0.260223 +0.636498,0.277841,0.002897,-0.263913,-0.409750,-0.258078 +0.639186,0.281634,0.005213,-0.271871,-0.407767,-0.255870 +0.641756,0.285468,0.007576,-0.279777,-0.405654,-0.253597 +0.644203,0.289341,0.009981,-0.287627,-0.403409,-0.251259 +0.646527,0.293248,0.012427,-0.295419,-0.401030,-0.248853 +0.648722,0.297187,0.014909,-0.303148,-0.398517,-0.246379 +0.650787,0.301154,0.017424,-0.310813,-0.395869,-0.243837 +0.652720,0.305147,0.019969,-0.318411,-0.393084,-0.241224 +0.654516,0.309160,0.022539,-0.325938,-0.390163,-0.238541 +0.656174,0.313193,0.025133,-0.333392,-0.387104,-0.235786 +0.657691,0.317240,0.027745,-0.340770,-0.383907,-0.232959 +0.659065,0.321299,0.030373,-0.348069,-0.380572,-0.230059 +0.660293,0.325367,0.033013,-0.355287,-0.377098,-0.227086 +0.661373,0.329439,0.035662,-0.362420,-0.373485,-0.224037 +0.662303,0.333514,0.038315,-0.369467,-0.369733,-0.220915 +0.663081,0.337587,0.040970,-0.376424,-0.365842,-0.217716 +0.663704,0.341656,0.043623,-0.383288,-0.361811,-0.214442 +0.664171,0.345717,0.046270,-0.390058,-0.357642,-0.211092 +0.664479,0.349766,0.048907,-0.396730,-0.353334,-0.207665 +0.664628,0.353802,0.051532,-0.403302,-0.348888,-0.204161 +0.664615,0.357820,0.054141,-0.409772,-0.344304,-0.200581 +0.664438,0.361817,0.056730,-0.416137,-0.339583,-0.196923 +0.664097,0.365791,0.059296,-0.422394,-0.334725,-0.193189 +0.663590,0.369738,0.061834,-0.428542,-0.329732,-0.189377 +0.662916,0.373656,0.064343,-0.434578,-0.324604,-0.185488 +0.662073,0.377541,0.066818,-0.440500,-0.319342,-0.181522 +0.661060,0.381390,0.069256,-0.446305,-0.313947,-0.177479 +0.659877,0.385202,0.071653,-0.451991,-0.308421,-0.173360 +0.658523,0.388972,0.074007,-0.457557,-0.302764,-0.169165 +0.656996,0.392698,0.076313,-0.463000,-0.296979,-0.164894 +0.655297,0.396377,0.078569,-0.468319,-0.291066,-0.160547 +0.653424,0.400007,0.080772,-0.473511,-0.285027,-0.156126 +0.651377,0.403585,0.082917,-0.478574,-0.278865,-0.151630 +0.649157,0.407109,0.085003,-0.483507,-0.272580,-0.147061 +0.646762,0.410577,0.087026,-0.488308,-0.266174,-0.142418 +0.644193,0.413984,0.088983,-0.492975,-0.259650,-0.137704 +0.641450,0.417331,0.090870,-0.497506,-0.253010,-0.132918 +0.638533,0.420614,0.092686,-0.501901,-0.246255,-0.128062 +0.635442,0.423830,0.094427,-0.506158,-0.239389,-0.123137 +0.632178,0.426979,0.096090,-0.510274,-0.232412,-0.118143 +0.628741,0.430058,0.097672,-0.514250,-0.225328,-0.113082 +0.625131,0.433065,0.099171,-0.518083,-0.218139,-0.107955 +0.621350,0.435998,0.100585,-0.521772,-0.210848,-0.102763 +0.617398,0.438856,0.101910,-0.525317,-0.203457,-0.097507 +0.613277,0.441636,0.103144,-0.528716,-0.195969,-0.092190 +0.608987,0.444338,0.104285,-0.531968,-0.188387,-0.086811 +0.604529,0.446959,0.105330,-0.535072,-0.180714,-0.081373 +0.599905,0.449498,0.106277,-0.538028,-0.172952,-0.075877 +0.595117,0.451955,0.107123,-0.540835,-0.165105,-0.070325 +0.590165,0.454327,0.107868,-0.543491,-0.157175,-0.064718 +0.585052,0.456613,0.108508,-0.545997,-0.149167,-0.059059 +0.579779,0.458813,0.109041,-0.548352,-0.141082,-0.053348 +0.574348,0.460926,0.109466,-0.550556,-0.132924,-0.047588 +0.568761,0.462950,0.109781,-0.552607,-0.124697,-0.041780 +0.563021,0.464885,0.109984,-0.554507,-0.116404,-0.035927 +0.557128,0.466730,0.110074,-0.556254,-0.108048,-0.030031 +0.551086,0.468485,0.110048,-0.557848,-0.099633,-0.024092 +0.544897,0.470148,0.109906,-0.559290,-0.091162,-0.018114 +0.538563,0.471721,0.109646,-0.560579,-0.082638,-0.012099 +0.532087,0.473201,0.109267,-0.561715,-0.074066,-0.006048 +0.525472,0.474590,0.108768,-0.562700,-0.065450,0.000036 +0.518721,0.475886,0.108146,-0.563532,-0.056791,0.006151 +0.511836,0.477091,0.107403,-0.564213,-0.048095,0.012295 +0.504819,0.478203,0.106535,-0.564742,-0.039365,0.018465 +0.497676,0.479224,0.105544,-0.565120,-0.030605,0.024659 +0.490407,0.480153,0.104427,-0.565348,-0.021818,0.030875 +0.483018,0.480991,0.103185,-0.565427,-0.013008,0.037110 +0.475510,0.481737,0.101816,-0.565357,-0.004180,0.043362 +0.467887,0.482394,0.100320,-0.565139,0.004664,0.049629 +0.460153,0.482960,0.098698,-0.564773,0.013519,0.055907 +0.452312,0.483438,0.096948,-0.564261,0.022381,0.062195 +0.444366,0.483827,0.095070,-0.563604,0.031247,0.068490 +0.436320,0.484129,0.093065,-0.562803,0.040113,0.074789 +0.428177,0.484344,0.090933,-0.561859,0.048975,0.081090 +0.419941,0.484474,0.088672,-0.560774,0.057830,0.087391 +0.411616,0.484520,0.086285,-0.559547,0.066672,0.093688 +0.403206,0.484482,0.083770,-0.558182,0.075500,0.099979 +0.394715,0.484362,0.081129,-0.556679,0.084308,0.106261 +0.386146,0.484162,0.078362,-0.555040,0.093093,0.112533 +0.377504,0.483883,0.075470,-0.553267,0.101851,0.118791 +0.368793,0.483526,0.072452,-0.551361,0.110579,0.125032 +0.360017,0.483094,0.069310,-0.549323,0.119273,0.131254 +0.351180,0.482586,0.066046,-0.547156,0.127929,0.137455 +0.342287,0.482006,0.062659,-0.544862,0.136544,0.143631 +0.333341,0.481355,0.059150,-0.542442,0.145113,0.149781 +0.324348,0.480635,0.055522,-0.539898,0.153634,0.155901 +0.315310,0.479848,0.051775,-0.537233,0.162103,0.161989 +0.306234,0.478996,0.047910,-0.534448,0.170516,0.168042 +0.297122,0.478080,0.043929,-0.531545,0.178870,0.174058 +0.287979,0.477103,0.039833,-0.528527,0.187162,0.180034 +0.278810,0.476066,0.035624,-0.525396,0.195388,0.185968 +0.269619,0.474973,0.031304,-0.522154,0.203544,0.191857 +0.260411,0.473825,0.026873,-0.518803,0.211629,0.197699 +0.251189,0.472625,0.022335,-0.515346,0.219638,0.203491 +0.241958,0.471375,0.017691,-0.511785,0.227568,0.209230 +0.232723,0.470076,0.012942,-0.508123,0.235417,0.214915 +0.223487,0.468732,0.008091,-0.504362,0.243181,0.220543 +0.214256,0.467345,0.003140,-0.500505,0.250858,0.226111 +0.205034,0.465917,-0.001909,-0.496554,0.258444,0.231618 +0.195824,0.464451,-0.007053,-0.492511,0.265938,0.237061 +0.186631,0.462949,-0.012291,-0.488380,0.273335,0.242437 +0.177460,0.461414,-0.017620,-0.484163,0.280634,0.247745 +0.168314,0.459848,-0.023038,-0.479863,0.287832,0.252982 +0.159198,0.458254,-0.028542,-0.475482,0.294927,0.258146 +0.150115,0.456634,-0.034129,-0.471024,0.301916,0.263236 +0.141071,0.454991,-0.039797,-0.466490,0.308796,0.268249 +0.132069,0.453327,-0.045544,-0.461884,0.315567,0.273183 +0.123113,0.451646,-0.051366,-0.457208,0.322225,0.278036 +0.114208,0.449949,-0.057261,-0.452466,0.328768,0.282807 +0.105356,0.448239,-0.063225,-0.447660,0.335195,0.287493 +0.096562,0.446518,-0.069257,-0.442793,0.341504,0.292093 +0.087830,0.444790,-0.075354,-0.437868,0.347693,0.296605 +0.079163,0.443057,-0.081511,-0.432887,0.353761,0.301028 +0.070565,0.441320,-0.087727,-0.427854,0.359705,0.305360 +0.062040,0.439584,-0.093998,-0.422772,0.365524,0.309599 +0.053592,0.437850,-0.100321,-0.417642,0.371217,0.313744 +0.045223,0.436120,-0.106693,-0.412469,0.376783,0.317793 +0.036937,0.434398,-0.113111,-0.407255,0.382221,0.321746 +0.028737,0.432685,-0.119572,-0.402003,0.387529,0.325600 +0.020627,0.430984,-0.126073,-0.396715,0.392706,0.329356 +0.012610,0.429298,-0.132610,-0.391395,0.397752,0.333011 +0.004689,0.427628,-0.139180,-0.386045,0.402665,0.336564 +-0.003133,0.425977,-0.145780,-0.380669,0.407446,0.340015 +-0.010854,0.424347,-0.152407,-0.375269,0.412093,0.343363 +-0.018470,0.422740,-0.159058,-0.369847,0.416606,0.346606 +-0.025979,0.421159,-0.165728,-0.364407,0.420984,0.349745 +-0.033379,0.419605,-0.172415,-0.358951,0.425228,0.352778 +-0.040666,0.418080,-0.179116,-0.353483,0.429338,0.355705 +-0.047839,0.416588,-0.185827,-0.348004,0.433312,0.358525 +-0.054894,0.415128,-0.192545,-0.342518,0.437151,0.361237 +-0.061831,0.413704,-0.199267,-0.337027,0.440856,0.363842 +-0.068646,0.412317,-0.205989,-0.331533,0.444426,0.366339 +-0.075338,0.410969,-0.212708,-0.326040,0.447862,0.368728 +-0.081906,0.409661,-0.219420,-0.320550,0.451164,0.371008 +-0.088346,0.408395,-0.226124,-0.315065,0.454333,0.373180 +-0.094658,0.407173,-0.232814,-0.309588,0.457369,0.375243 +-0.100841,0.405996,-0.239488,-0.304122,0.460274,0.377198 +-0.106891,0.404866,-0.246143,-0.298668,0.463047,0.379045 +-0.112810,0.403783,-0.252775,-0.293229,0.465690,0.380783 +-0.118594,0.402750,-0.259382,-0.287808,0.468203,0.382414 +-0.124244,0.401767,-0.265960,-0.282406,0.470589,0.383937 +-0.129758,0.400835,-0.272506,-0.277027,0.472847,0.385353 +-0.135135,0.399955,-0.279016,-0.271671,0.474980,0.386663 +-0.140375,0.399128,-0.285488,-0.266342,0.476988,0.387866 +-0.145477,0.398356,-0.291919,-0.261041,0.478874,0.388965 +-0.150441,0.397638,-0.298306,-0.255771,0.480637,0.389959 +-0.155266,0.396976,-0.304645,-0.250533,0.482281,0.390849 +-0.159952,0.396370,-0.310935,-0.245329,0.483807,0.391637 +-0.164499,0.395820,-0.317170,-0.240161,0.485217,0.392323 +-0.168907,0.395328,-0.323350,-0.235031,0.486511,0.392908 +-0.173175,0.394892,-0.329471,-0.229941,0.487693,0.393393 +-0.177305,0.394514,-0.335531,-0.224893,0.488764,0.393780 +-0.181297,0.394194,-0.341526,-0.219887,0.489727,0.394069 +-0.185151,0.393931,-0.347454,-0.214926,0.490583,0.394263 +-0.188867,0.393726,-0.353312,-0.210012,0.491334,0.394361 +-0.192447,0.393579,-0.359098,-0.205145,0.491984,0.394367 +-0.195891,0.393488,-0.364810,-0.200326,0.492533,0.394281 +-0.199200,0.393454,-0.370444,-0.195559,0.492985,0.394105 +-0.202375,0.393477,-0.375998,-0.190842,0.493342,0.393840 +-0.205417,0.393556,-0.381471,-0.186179,0.493606,0.393488 +-0.208328,0.393690,-0.386859,-0.181570,0.493780,0.393051 +-0.211109,0.393879,-0.392160,-0.177015,0.493866,0.392531 +-0.213761,0.394122,-0.397373,-0.172517,0.493867,0.391929 +-0.216286,0.394417,-0.402495,-0.168075,0.493786,0.391248 +-0.218686,0.394765,-0.407524,-0.163691,0.493626,0.390489 +-0.220962,0.395164,-0.412458,-0.159366,0.493388,0.389655 +-0.223116,0.395612,-0.417296,-0.155100,0.493077,0.388747 +-0.225151,0.396110,-0.422034,-0.150894,0.492694,0.387767 +-0.227068,0.396654,-0.426673,-0.146749,0.492242,0.386718 +-0.228869,0.397244,-0.431209,-0.142665,0.491725,0.385601 +-0.230557,0.397879,-0.435641,-0.138642,0.491145,0.384420 +-0.232134,0.398557,-0.439968,-0.134681,0.490505,0.383176 +-0.233603,0.399276,-0.444189,-0.130783,0.489809,0.381871 +-0.234966,0.400034,-0.448300,-0.126947,0.489058,0.380509 +-0.236225,0.400830,-0.452303,-0.123175,0.488256,0.379090 +-0.237384,0.401661,-0.456194,-0.119465,0.487406,0.377618 +-0.238444,0.402527,-0.459973,-0.115817,0.486510,0.376095 +-0.239410,0.403424,-0.463638,-0.112233,0.485573,0.374524 +-0.240283,0.404351,-0.467190,-0.108712,0.484596,0.372906 +-0.241067,0.405306,-0.470625,-0.105254,0.483582,0.371245 +-0.241765,0.406286,-0.473945,-0.101858,0.482536,0.369543 +-0.242380,0.407289,-0.477147,-0.098524,0.481459,0.367802 +-0.242915,0.408312,-0.480231,-0.095253,0.480354,0.366025 +-0.243372,0.409354,-0.483197,-0.092043,0.479224,0.364215 +-0.243757,0.410411,-0.486043,-0.088894,0.478073,0.362374 +-0.244071,0.411482,-0.488769,-0.085806,0.476903,0.360504 +-0.244318,0.412563,-0.491375,-0.082778,0.475717,0.358608 +-0.244501,0.413652,-0.493859,-0.079809,0.474518,0.356690 +-0.244625,0.414746,-0.496223,-0.076899,0.473308,0.354750 +-0.244692,0.415842,-0.498465,-0.074048,0.472091,0.352793 +-0.244706,0.416939,-0.500586,-0.071253,0.470869,0.350820 +-0.244670,0.418032,-0.502584,-0.068515,0.469645,0.348834 +-0.244589,0.419119,-0.504461,-0.065833,0.468421,0.346837 +-0.244465,0.420197,-0.506215,-0.063205,0.467200,0.344833 +-0.244302,0.421263,-0.507848,-0.060630,0.465985,0.342823 +-0.244104,0.422315,-0.509359,-0.058108,0.464778,0.340811 +-0.243874,0.423348,-0.510748,-0.055637,0.463581,0.338798 +-0.243617,0.424361,-0.512016,-0.053217,0.462398,0.336787 +-0.243335,0.425350,-0.513162,-0.050846,0.461230,0.334781 +-0.243033,0.426312,-0.514189,-0.048522,0.460079,0.332782 +-0.242714,0.427244,-0.515095,-0.046245,0.458949,0.330793 +-0.242382,0.428143,-0.515881,-0.044014,0.457841,0.328815 +-0.242040,0.429006,-0.516548,-0.041826,0.456757,0.326852 +-0.241692,0.429830,-0.517096,-0.039680,0.455699,0.324904 +-0.241341,0.430611,-0.517527,-0.037576,0.454670,0.322976 +-0.240992,0.431347,-0.517841,-0.035511,0.453671,0.321069 +-0.240648,0.432034,-0.518038,-0.033484,0.452704,0.319185 +-0.240311,0.432670,-0.518120,-0.031494,0.451772,0.317326 +-0.239987,0.433251,-0.518087,-0.029539,0.450874,0.315495 +-0.239678,0.433775,-0.517940,-0.027617,0.450014,0.313693 +-0.239388,0.434238,-0.517681,-0.025727,0.449193,0.311923 +-0.239120,0.434637,-0.517310,-0.023867,0.448412,0.310187 +-0.238878,0.434969,-0.516829,-0.022035,0.447673,0.308486 +-0.238665,0.435231,-0.516238,-0.020230,0.446977,0.306822 +-0.238483,0.435421,-0.515539,-0.018450,0.446325,0.305197 +-0.238338,0.435536,-0.514732,-0.016693,0.445718,0.303614 +-0.238231,0.435572,-0.513820,-0.014958,0.445158,0.302073 +-0.238165,0.435527,-0.512804,-0.013243,0.444645,0.300577 +-0.238145,0.435398,-0.511684,-0.011546,0.444181,0.299126 +-0.238172,0.435182,-0.510463,-0.009865,0.443766,0.297723 +-0.238250,0.434877,-0.509141,-0.008199,0.443400,0.296369 +-0.238381,0.434480,-0.507720,-0.006545,0.443085,0.295065 +-0.238569,0.433988,-0.506202,-0.004902,0.442821,0.293813 +-0.238816,0.433399,-0.504587,-0.003268,0.442609,0.292614 +-0.239125,0.432711,-0.502878,-0.001642,0.442448,0.291469 +-0.239498,0.431921,-0.501076,-0.000021,0.442339,0.290379 +-0.239938,0.431026,-0.499183,0.001596,0.442283,0.289346 +-0.240447,0.430026,-0.497200,0.003212,0.442278,0.288370 +-0.241028,0.428916,-0.495128,0.004827,0.442326,0.287452 +-0.241682,0.427696,-0.492970,0.006444,0.442427,0.286593 +-0.242413,0.426362,-0.490726,0.008065,0.442579,0.285795 +-0.243221,0.424914,-0.488399,0.009691,0.442783,0.285056 +-0.244109,0.423350,-0.485991,0.011324,0.443038,0.284379 +-0.245079,0.421667,-0.483502,0.012965,0.443344,0.283764 +-0.246132,0.419864,-0.480935,0.014617,0.443701,0.283211 +-0.247270,0.417940,-0.478291,0.016281,0.444107,0.282721 +-0.248495,0.415892,-0.475572,0.017959,0.444561,0.282293 +-0.249808,0.413719,-0.472780,0.019653,0.445064,0.281929 +-0.251211,0.411421,-0.469916,0.021364,0.445615,0.281628 +-0.252704,0.408996,-0.466982,0.023093,0.446211,0.281390 +-0.254289,0.406442,-0.463980,0.024843,0.446852,0.281216 +-0.255967,0.403760,-0.460911,0.026615,0.447538,0.281106 +-0.257739,0.400947,-0.457777,0.028410,0.448266,0.281058 +-0.259605,0.398003,-0.454580,0.030231,0.449035,0.281074 +-0.261567,0.394927,-0.451321,0.032078,0.449844,0.281152 +-0.263625,0.391719,-0.448003,0.033953,0.450692,0.281292 +-0.265778,0.388379,-0.444625,0.035857,0.451576,0.281494 +-0.268029,0.384905,-0.441192,0.037792,0.452496,0.281758 +-0.270376,0.381298,-0.437703,0.039759,0.453449,0.282082 +-0.272821,0.377557,-0.434161,0.041759,0.454434,0.282467 +-0.275362,0.373683,-0.430566,0.043794,0.455448,0.282910 +-0.278001,0.369675,-0.426922,0.045865,0.456491,0.283412 +-0.280736,0.365535,-0.423229,0.047972,0.457559,0.283971 +-0.283568,0.361261,-0.419488,0.050119,0.458651,0.284587 +-0.286496,0.356854,-0.415702,0.052304,0.459765,0.285259 +-0.289519,0.352316,-0.411871,0.054530,0.460898,0.285984 +-0.292637,0.347646,-0.407998,0.056797,0.462048,0.286763 +-0.295849,0.342846,-0.404083,0.059106,0.463213,0.287593 +-0.299154,0.337916,-0.400128,0.061458,0.464391,0.288474 +-0.302551,0.332858,-0.396135,0.063855,0.465579,0.289405 +-0.306039,0.327672,-0.392104,0.066297,0.466774,0.290382 +-0.309617,0.322360,-0.388037,0.068784,0.467975,0.291406 +-0.313283,0.316923,-0.383936,0.071318,0.469178,0.292474 +-0.317037,0.311363,-0.379801,0.073898,0.470381,0.293585 +-0.320875,0.305681,-0.375634,0.076527,0.471581,0.294737 +-0.324798,0.299879,-0.371436,0.079204,0.472776,0.295928 +-0.328803,0.293958,-0.367208,0.081929,0.473962,0.297157 +-0.332887,0.287922,-0.362952,0.084704,0.475138,0.298421 +-0.337050,0.281771,-0.358667,0.087529,0.476300,0.299719 +-0.341290,0.275509,-0.354357,0.090403,0.477446,0.301048 +-0.345603,0.269136,-0.350020,0.093328,0.478572,0.302407 +-0.349988,0.262657,-0.345659,0.096303,0.479676,0.303793 +-0.354442,0.256072,-0.341274,0.099330,0.480755,0.305204 +-0.358963,0.249386,-0.336867,0.102407,0.481807,0.306639 +-0.363549,0.242600,-0.332437,0.105535,0.482827,0.308094 +-0.368197,0.235717,-0.327987,0.108714,0.483814,0.309568 +-0.372904,0.228741,-0.323516,0.111945,0.484764,0.311057 +-0.377667,0.221674,-0.319026,0.115226,0.485674,0.312561 +-0.382483,0.214519,-0.314517,0.118558,0.486542,0.314076 +-0.387351,0.207280,-0.309989,0.121941,0.487364,0.315600 +-0.392265,0.199961,-0.305444,0.125374,0.488138,0.317131 +-0.397225,0.192563,-0.300883,0.128858,0.488861,0.318665 +-0.402225,0.185092,-0.296304,0.132391,0.489529,0.320201 +-0.407264,0.177550,-0.291710,0.135974,0.490141,0.321736 +-0.412337,0.169941,-0.287101,0.139606,0.490693,0.323267 +-0.417442,0.162269,-0.282477,0.143286,0.491181,0.324792 +-0.422574,0.154538,-0.277838,0.147014,0.491605,0.326309 +-0.427732,0.146752,-0.273185,0.150790,0.491959,0.327813 +-0.432910,0.138915,-0.268518,0.154612,0.492243,0.329304 +-0.438106,0.131030,-0.263838,0.158480,0.492452,0.330778 +-0.443315,0.123102,-0.259144,0.162394,0.492585,0.332232 +-0.448535,0.115135,-0.254438,0.166352,0.492639,0.333665 +-0.453761,0.107134,-0.249718,0.170354,0.492611,0.335073 +-0.458990,0.099102,-0.244986,0.174399,0.492498,0.336453 +-0.464217,0.091045,-0.240241,0.178486,0.492297,0.337803 +-0.469440,0.082966,-0.235484,0.182613,0.492008,0.339121 +-0.474655,0.074869,-0.230714,0.186781,0.491626,0.340403 +-0.479856,0.066761,-0.225932,0.190987,0.491149,0.341647 +-0.485041,0.058644,-0.221138,0.195231,0.490576,0.342851 +-0.490206,0.050525,-0.216331,0.199512,0.489903,0.344011 +-0.495347,0.042406,-0.211512,0.203828,0.489130,0.345125 +-0.500459,0.034294,-0.206680,0.208179,0.488252,0.346191 +-0.505539,0.026192,-0.201835,0.212562,0.487269,0.347206 +-0.510584,0.018106,-0.196978,0.216977,0.486178,0.348167 +-0.515588,0.010040,-0.192108,0.221423,0.484977,0.349072 +-0.520548,0.001999,-0.187224,0.225898,0.483665,0.349918 +-0.525461,-0.006012,-0.182328,0.230400,0.482239,0.350703 +-0.530321,-0.013988,-0.177417,0.234928,0.480698,0.351425 +-0.535126,-0.021925,-0.172493,0.239482,0.479040,0.352081 +-0.539872,-0.029818,-0.167555,0.244058,0.477263,0.352668 +-0.544554,-0.037662,-0.162602,0.248657,0.475367,0.353184 +-0.549169,-0.045452,-0.157635,0.253276,0.473348,0.353628 +-0.553713,-0.053183,-0.152652,0.257913,0.471207,0.353996 +-0.558181,-0.060851,-0.147655,0.262568,0.468942,0.354287 +-0.562572,-0.068450,-0.142641,0.267238,0.466552,0.354498 +-0.566880,-0.075977,-0.137612,0.271922,0.464035,0.354628 +-0.571102,-0.083426,-0.132566,0.276619,0.461390,0.354673 +-0.575234,-0.090793,-0.127504,0.281326,0.458618,0.354633 +-0.579273,-0.098072,-0.122424,0.286042,0.455716,0.354505 +-0.583215,-0.105260,-0.117327,0.290766,0.452684,0.354287 +-0.587057,-0.112352,-0.112213,0.295495,0.449521,0.353978 +-0.590795,-0.119342,-0.107080,0.300228,0.446227,0.353576 +-0.594426,-0.126228,-0.101928,0.304964,0.442802,0.353078 +-0.597947,-0.133003,-0.096757,0.309700,0.439245,0.352484 +-0.601354,-0.139665,-0.091567,0.314435,0.435555,0.351791 +-0.604644,-0.146208,-0.086358,0.319167,0.431733,0.350998 +-0.607814,-0.152628,-0.081128,0.323894,0.427779,0.350104 +-0.610862,-0.158921,-0.075878,0.328615,0.423692,0.349107 +-0.613783,-0.165082,-0.070606,0.333328,0.419473,0.348007 +-0.616575,-0.171109,-0.065314,0.338031,0.415122,0.346800 +-0.619236,-0.176996,-0.060000,0.342722,0.410639,0.345487 +-0.621762,-0.182740,-0.054665,0.347400,0.406025,0.344067 +-0.624151,-0.188337,-0.049307,0.352063,0.401280,0.342538 +-0.626401,-0.193783,-0.043927,0.356709,0.396406,0.340899 +-0.628508,-0.199074,-0.038524,0.361337,0.391401,0.339149 +-0.630471,-0.204207,-0.033099,0.365945,0.386268,0.337288 +-0.632288,-0.209179,-0.027650,0.370530,0.381008,0.335315 +-0.633955,-0.213986,-0.022177,0.375093,0.375621,0.333229 +-0.635471,-0.218624,-0.016681,0.379630,0.370108,0.331029 +-0.636834,-0.223091,-0.011162,0.384140,0.364472,0.328716 +-0.638043,-0.227383,-0.005618,0.388622,0.358712,0.326288 +-0.639094,-0.231498,-0.000050,0.393074,0.352831,0.323746 +-0.639987,-0.235432,0.005541,0.397494,0.346829,0.321088 +-0.640720,-0.239183,0.011157,0.401881,0.340710,0.318316 +-0.641292,-0.242749,0.016797,0.406233,0.334473,0.315428 +-0.641700,-0.246125,0.022462,0.410549,0.328122,0.312425 +-0.641945,-0.249311,0.028150,0.414827,0.321658,0.309307 +-0.642024,-0.252305,0.033863,0.419066,0.315083,0.306073 +-0.641937,-0.255102,0.039600,0.423264,0.308398,0.302725 +-0.641683,-0.257703,0.045360,0.427421,0.301607,0.299262 +-0.641261,-0.260104,0.051145,0.431533,0.294711,0.295686 +-0.640669,-0.262305,0.056953,0.435601,0.287713,0.291995 +-0.639909,-0.264303,0.062784,0.439623,0.280615,0.288192 +-0.638978,-0.266096,0.068638,0.443597,0.273419,0.284276 +-0.637878,-0.267685,0.074515,0.447522,0.266128,0.280249 +-0.636607,-0.269066,0.080414,0.451398,0.258746,0.276110 +-0.635165,-0.270240,0.086335,0.455222,0.251273,0.271862 +-0.633552,-0.271205,0.092278,0.458994,0.243714,0.267504 +-0.631769,-0.271961,0.098241,0.462713,0.236070,0.263039 +-0.629816,-0.272506,0.104225,0.466377,0.228346,0.258466 +-0.627693,-0.272840,0.110229,0.469985,0.220543,0.253788 +-0.625400,-0.272963,0.116253,0.473537,0.212665,0.249006 +-0.622937,-0.272874,0.122294,0.477031,0.204716,0.244120 +-0.620307,-0.272574,0.128354,0.480467,0.196697,0.239133 +-0.617509,-0.272063,0.134431,0.483843,0.188613,0.234045 +-0.614544,-0.271339,0.140524,0.487159,0.180466,0.228860 +-0.611414,-0.270405,0.146633,0.490414,0.172260,0.223577 +-0.608119,-0.269260,0.152756,0.493608,0.163999,0.218199 +-0.604660,-0.267904,0.158893,0.496738,0.155685,0.212727 +-0.601039,-0.266340,0.165043,0.499806,0.147323,0.207164 +-0.597258,-0.264566,0.171205,0.502809,0.138915,0.201511 +-0.593317,-0.262586,0.177377,0.505748,0.130465,0.195771 +-0.589219,-0.260399,0.183558,0.508623,0.121977,0.189945 +-0.584966,-0.258006,0.189748,0.511431,0.113454,0.184035 +-0.580558,-0.255411,0.195945,0.514174,0.104900,0.178044 +-0.575998,-0.252613,0.202147,0.516850,0.096319,0.171974 +-0.571288,-0.249615,0.208355,0.519459,0.087714,0.165827 +-0.566431,-0.246418,0.214565,0.522001,0.079089,0.159605 +-0.561428,-0.243025,0.220777,0.524476,0.070448,0.153312 +-0.556281,-0.239437,0.226990,0.526883,0.061794,0.146948 +-0.550994,-0.235657,0.233201,0.529222,0.053131,0.140517 +-0.545568,-0.231688,0.239410,0.531493,0.044462,0.134022 +-0.540007,-0.227531,0.245614,0.533696,0.035793,0.127464 +-0.534312,-0.223190,0.251813,0.535830,0.027126,0.120847 +-0.528487,-0.218666,0.258004,0.537896,0.018464,0.114174 +-0.522534,-0.213964,0.264186,0.539894,0.009813,0.107446 +-0.516457,-0.209086,0.270357,0.541824,0.001175,0.100666 +-0.510257,-0.204035,0.276515,0.543685,-0.007445,0.093838 +-0.503940,-0.198814,0.282659,0.545478,-0.016045,0.086965 +-0.497506,-0.193427,0.288786,0.547204,-0.024619,0.080048 +-0.490960,-0.187877,0.294895,0.548861,-0.033166,0.073091 +-0.484305,-0.182167,0.300984,0.550451,-0.041680,0.066097 +-0.477544,-0.176303,0.307051,0.551974,-0.050159,0.059069 +-0.470680,-0.170286,0.313093,0.553430,-0.058599,0.052010 +-0.463718,-0.164121,0.319110,0.554820,-0.066995,0.044922 +-0.456659,-0.157813,0.325098,0.556143,-0.075346,0.037808 +-0.449508,-0.151365,0.331057,0.557401,-0.083646,0.030673 +-0.442269,-0.144780,0.336982,0.558593,-0.091893,0.023518 +-0.434945,-0.138065,0.342874,0.559721,-0.100083,0.016346 +-0.427539,-0.131222,0.348728,0.560784,-0.108214,0.009161 +-0.420055,-0.124257,0.354544,0.561784,-0.116280,0.001966 +-0.412497,-0.117173,0.360319,0.562721,-0.124280,-0.005236 +-0.404869,-0.109976,0.366051,0.563595,-0.132210,-0.012443 +-0.397175,-0.102669,0.371737,0.564407,-0.140067,-0.019651 +-0.389417,-0.095259,0.377375,0.565158,-0.147847,-0.026857 +-0.381600,-0.087748,0.382964,0.565849,-0.155548,-0.034058 +-0.373728,-0.080143,0.388500,0.566480,-0.163167,-0.041251 +-0.365805,-0.072449,0.393982,0.567052,-0.170701,-0.048434 +-0.357834,-0.064669,0.399406,0.567565,-0.178146,-0.055602 +-0.349819,-0.056810,0.404772,0.568022,-0.185501,-0.062754 +-0.341765,-0.048875,0.410076,0.568421,-0.192761,-0.069886 +-0.333674,-0.040871,0.415316,0.568765,-0.199926,-0.076995 +-0.325551,-0.032803,0.420490,0.569054,-0.206992,-0.084078 +-0.317399,-0.024674,0.425596,0.569289,-0.213956,-0.091133 +-0.309223,-0.016492,0.430630,0.569470,-0.220816,-0.098157 +-0.301027,-0.008260,0.435592,0.569599,-0.227571,-0.105146 +-0.292813,0.000015,0.440478,0.569677,-0.234216,-0.112098 +-0.284586,0.008329,0.445287,0.569705,-0.240752,-0.119010 +-0.276349,0.016677,0.450015,0.569683,-0.247175,-0.125880 +-0.268107,0.025053,0.454661,0.569612,-0.253483,-0.132704 +-0.259862,0.033451,0.459222,0.569494,-0.259674,-0.139480 +-0.251620,0.041867,0.463696,0.569329,-0.265748,-0.146206 +-0.243382,0.050296,0.468081,0.569118,-0.271701,-0.152878 +-0.235153,0.058731,0.472375,0.568863,-0.277532,-0.159494 +-0.226937,0.067168,0.476575,0.568563,-0.283240,-0.166053 +-0.218736,0.075602,0.480679,0.568221,-0.288824,-0.172550 +-0.210555,0.084027,0.484685,0.567838,-0.294281,-0.178984 +-0.202397,0.092438,0.488591,0.567413,-0.299612,-0.185353 +-0.194265,0.100830,0.492395,0.566949,-0.304814,-0.191654 +-0.186162,0.109197,0.496095,0.566445,-0.309886,-0.197885 +-0.178092,0.117536,0.499688,0.565904,-0.314828,-0.204044 +-0.170058,0.125840,0.503172,0.565326,-0.319638,-0.210128 +-0.162062,0.134105,0.506547,0.564711,-0.324317,-0.216136 +-0.154109,0.142325,0.509809,0.564062,-0.328863,-0.222065 +-0.146201,0.150496,0.512956,0.563379,-0.333276,-0.227914 +-0.138341,0.158613,0.515988,0.562662,-0.337555,-0.233680 +-0.130532,0.166671,0.518901,0.561913,-0.341700,-0.239362 +-0.122777,0.174665,0.521695,0.561132,-0.345710,-0.244959 +-0.115077,0.182590,0.524368,0.560321,-0.349587,-0.250467 +-0.107437,0.190442,0.526917,0.559480,-0.353329,-0.255887 +-0.099859,0.198217,0.529342,0.558611,-0.356936,-0.261215 +-0.092344,0.205910,0.531641,0.557713,-0.360409,-0.266451 +-0.084896,0.213516,0.533811,0.556788,-0.363748,-0.271594 +-0.077517,0.221031,0.535853,0.555837,-0.366954,-0.276641 +-0.070208,0.228451,0.537763,0.554860,-0.370026,-0.281592 +-0.062973,0.235772,0.539542,0.553858,-0.372966,-0.286445 +-0.055813,0.242989,0.541187,0.552832,-0.375774,-0.291200 +-0.048729,0.250100,0.542698,0.551783,-0.378450,-0.295854 +-0.041725,0.257099,0.544073,0.550710,-0.380996,-0.300408 +-0.034802,0.263983,0.545311,0.549616,-0.383413,-0.304860 +-0.027960,0.270749,0.546412,0.548500,-0.385701,-0.309209 +-0.021203,0.277392,0.547373,0.547363,-0.387862,-0.313455 +-0.014531,0.283910,0.548195,0.546205,-0.389896,-0.317596 +-0.007946,0.290299,0.548877,0.545028,-0.391806,-0.321633 +-0.001449,0.296556,0.549417,0.543831,-0.393593,-0.325565 +0.004959,0.302677,0.549815,0.542615,-0.395257,-0.329391 +0.011276,0.308660,0.550071,0.541381,-0.396801,-0.333110 +0.017502,0.314502,0.550183,0.540129,-0.398226,-0.336724 +0.023636,0.320200,0.550152,0.538859,-0.399534,-0.340230 +0.029676,0.325752,0.549977,0.537571,-0.400727,-0.343629 +0.035623,0.331154,0.549658,0.536267,-0.401806,-0.346922 +0.041476,0.336405,0.549195,0.534945,-0.402774,-0.350107 +0.047234,0.341503,0.548587,0.533608,-0.403633,-0.353185 +0.052897,0.346444,0.547834,0.532253,-0.404384,-0.356156 +0.058464,0.351227,0.546936,0.530883,-0.405030,-0.359020 +0.063935,0.355851,0.545895,0.529496,-0.405573,-0.361778 +0.069311,0.360313,0.544708,0.528094,-0.406016,-0.364430 +0.074591,0.364613,0.543378,0.526675,-0.406360,-0.366975 +0.079775,0.368747,0.541904,0.525240,-0.406608,-0.369416 +0.084864,0.372716,0.540286,0.523790,-0.406763,-0.371751 +0.089858,0.376517,0.538526,0.522323,-0.406827,-0.373982 +0.094756,0.380151,0.536624,0.520841,-0.406802,-0.376110 +0.099561,0.383615,0.534580,0.519342,-0.406692,-0.378135 +0.104272,0.386910,0.532395,0.517826,-0.406499,-0.380057 +0.108889,0.390034,0.530070,0.516294,-0.406226,-0.381878 +0.113415,0.392987,0.527607,0.514745,-0.405875,-0.383599 +0.117849,0.395768,0.525005,0.513179,-0.405449,-0.385221 +0.122192,0.398378,0.522266,0.511595,-0.404951,-0.386744 +0.126446,0.400816,0.519392,0.509994,-0.404385,-0.388170 +0.130612,0.403082,0.516383,0.508374,-0.403752,-0.389500 +0.134690,0.405177,0.513241,0.506735,-0.403056,-0.390735 +0.138683,0.407101,0.509968,0.505078,-0.402300,-0.391876 +0.142591,0.408853,0.506564,0.503400,-0.401486,-0.392924 +0.146415,0.410436,0.503031,0.501703,-0.400619,-0.393882 +0.150159,0.411849,0.499372,0.499985,-0.399700,-0.394750 +0.153822,0.413093,0.495587,0.498245,-0.398732,-0.395530 +0.157406,0.414170,0.491679,0.496483,-0.397720,-0.396223 +0.160914,0.415079,0.487649,0.494699,-0.396665,-0.396831 +0.164347,0.415824,0.483500,0.492891,-0.395571,-0.397355 +0.167707,0.416405,0.479233,0.491059,-0.394441,-0.397797 +0.170996,0.416823,0.474851,0.489203,-0.393278,-0.398159 +0.174216,0.417080,0.470356,0.487320,-0.392085,-0.398442 +0.177369,0.417177,0.465750,0.485412,-0.390864,-0.398648 +0.180456,0.417118,0.461035,0.483475,-0.389620,-0.398779 +0.183481,0.416903,0.456214,0.481511,-0.388355,-0.398836 +0.186445,0.416535,0.451289,0.479518,-0.387072,-0.398822 +0.189350,0.416015,0.446263,0.477494,-0.385773,-0.398738 +0.192199,0.415347,0.441139,0.475440,-0.384463,-0.398586 +0.194994,0.414532,0.435919,0.473353,-0.383144,-0.398367 +0.197738,0.413574,0.430605,0.471234,-0.381818,-0.398085 +0.200433,0.412474,0.425201,0.469081,-0.380488,-0.397740 +0.203081,0.411236,0.419710,0.466893,-0.379159,-0.397335 +0.205684,0.409862,0.414134,0.464669,-0.377831,-0.396872 +0.208246,0.408355,0.408476,0.462408,-0.376508,-0.396352 +0.210769,0.406719,0.402740,0.460108,-0.375193,-0.395778 +0.213255,0.404956,0.396928,0.457769,-0.373888,-0.395151 +0.215707,0.403069,0.391043,0.455390,-0.372597,-0.394473 +0.218127,0.401063,0.385090,0.452970,-0.371320,-0.393748 +0.220518,0.398939,0.379070,0.450507,-0.370062,-0.392975 +0.222883,0.396703,0.372987,0.448000,-0.368824,-0.392158 +0.225223,0.394356,0.366844,0.445448,-0.367609,-0.391298 +0.227543,0.391903,0.360646,0.442850,-0.366420,-0.390398 +0.229844,0.389348,0.354394,0.440205,-0.365257,-0.389459 +0.232129,0.386693,0.348093,0.437512,-0.364125,-0.388483 +0.234400,0.383944,0.341745,0.434769,-0.363025,-0.387473 +0.236661,0.381103,0.335355,0.431975,-0.361958,-0.386430 +0.238913,0.378176,0.328926,0.429129,-0.360928,-0.385355 +0.241159,0.375164,0.322461,0.426230,-0.359935,-0.384252 +0.243402,0.372074,0.315964,0.423278,-0.358983,-0.383122 +0.245645,0.368908,0.309439,0.420269,-0.358072,-0.381967 +0.247889,0.365671,0.302888,0.417205,-0.357204,-0.380788 +0.250137,0.362366,0.296316,0.414082,-0.356382,-0.379588 +0.252392,0.358999,0.289726,0.410901,-0.355606,-0.378368 +0.254656,0.355573,0.283122,0.407660,-0.354878,-0.377130 +0.256932,0.352093,0.276507,0.404358,-0.354199,-0.375876 +0.259221,0.348562,0.269885,0.400994,-0.353572,-0.374607 +0.261526,0.344985,0.263260,0.397566,-0.352996,-0.373326 +0.263847,0.341368,0.256638,0.394077,-0.352473,-0.372034 +0.266183,0.337713,0.250020,0.390529,-0.351998,-0.370737 +0.268528,0.334025,0.243411,0.386927,-0.351565,-0.369439 +0.270878,0.330309,0.236815,0.383277,-0.351170,-0.368145 +0.273229,0.326568,0.230236,0.379583,-0.350808,-0.366860 +0.275577,0.322806,0.223680,0.375851,-0.350472,-0.365590 +0.277917,0.319029,0.217149,0.372086,-0.350159,-0.364338 +0.280245,0.315241,0.210649,0.368293,-0.349862,-0.363104 +0.282557,0.311445,0.204184,0.364477,-0.349578,-0.361888 +0.284848,0.307647,0.197758,0.360644,-0.349299,-0.360690 +0.287114,0.303850,0.191375,0.356799,-0.349025,-0.359509 +0.289351,0.300059,0.185040,0.352946,-0.348755,-0.358347 +0.291554,0.296278,0.178757,0.349091,-0.348490,-0.357202 +0.293721,0.292511,0.172531,0.345240,-0.348228,-0.356075 +0.295853,0.288764,0.166365,0.341397,-0.347970,-0.354966 +0.297949,0.285039,0.160264,0.337568,-0.347716,-0.353875 +0.300009,0.281342,0.154233,0.333757,-0.347467,-0.352802 +0.302033,0.277677,0.148276,0.329971,-0.347221,-0.351747 +0.304022,0.274048,0.142396,0.326213,-0.346980,-0.350710 +0.305974,0.270459,0.136599,0.322490,-0.346742,-0.349690 +0.307891,0.266915,0.130889,0.318807,-0.346509,-0.348689 +0.309773,0.263420,0.125270,0.315168,-0.346280,-0.347705 +0.311618,0.259979,0.119746,0.311579,-0.346055,-0.346739 +0.313427,0.256595,0.114321,0.308045,-0.345833,-0.345791 +0.315201,0.253273,0.109001,0.304572,-0.345616,-0.344862 +0.316939,0.250018,0.103789,0.301163,-0.345403,-0.343949 +0.318642,0.246834,0.098690,0.297826,-0.345194,-0.343055 +0.320308,0.243723,0.093708,0.294563,-0.344990,-0.342179 +0.321939,0.240686,0.088847,0.291375,-0.344789,-0.341320 +0.323534,0.237722,0.084112,0.288262,-0.344592,-0.340480 +0.325093,0.234832,0.079506,0.285224,-0.344400,-0.339657 +0.326616,0.232016,0.075035,0.282261,-0.344211,-0.338853 +0.328104,0.229274,0.070703,0.279374,-0.344027,-0.338066 +0.329555,0.226606,0.066514,0.276561,-0.343846,-0.337297 +0.330971,0.224011,0.062471,0.273824,-0.343670,-0.336546 +0.332352,0.221490,0.058581,0.271161,-0.343498,-0.335812 +0.333696,0.219043,0.054847,0.268574,-0.343329,-0.335097 +0.335005,0.216669,0.051272,0.266061,-0.343165,-0.334400 +0.336277,0.214369,0.047863,0.263624,-0.343005,-0.333720 +0.337515,0.212143,0.044621,0.261262,-0.342849,-0.333059 +0.338716,0.209991,0.041544,0.258975,-0.342697,-0.332415 +0.339881,0.207913,0.038629,0.256763,-0.342550,-0.331789 +0.341011,0.205908,0.035870,0.254626,-0.342406,-0.331181 +0.342105,0.203977,0.033264,0.252564,-0.342266,-0.330591 +0.343163,0.202119,0.030805,0.250577,-0.342130,-0.330019 +0.344186,0.200336,0.028490,0.248665,-0.341999,-0.329465 +0.345172,0.198626,0.026315,0.246829,-0.341871,-0.328928 +0.346123,0.196990,0.024275,0.245067,-0.341748,-0.328410 +0.347038,0.195428,0.022365,0.243380,-0.341629,-0.327909 +0.347917,0.193939,0.020582,0.241769,-0.341513,-0.327426 +0.348761,0.192524,0.018921,0.240233,-0.341402,-0.326962 +0.349569,0.191183,0.017377,0.238771,-0.341295,-0.326515 +0.350340,0.189916,0.015947,0.237385,-0.341192,-0.326086 +0.351077,0.188722,0.014626,0.236074,-0.341093,-0.325674 +0.351777,0.187602,0.013410,0.234838,-0.340998,-0.325281 +0.352441,0.186556,0.012294,0.233676,-0.340907,-0.324906 +0.353070,0.185584,0.011275,0.232590,-0.340821,-0.324548 +0.353663,0.184685,0.010347,0.231579,-0.340738,-0.324209 +0.354220,0.183860,0.009506,0.230644,-0.340659,-0.323887 +0.354742,0.183109,0.008749,0.229783,-0.340585,-0.323583 +0.355228,0.182431,0.008070,0.228997,-0.340514,-0.323297 +0.355677,0.181827,0.007466,0.228286,-0.340448,-0.323029 +0.356092,0.181293,0.006932,0.227651,-0.340385,-0.322779 +0.356470,0.180825,0.006464,0.227090,-0.340327,-0.322547 +0.356812,0.180418,0.006057,0.226603,-0.340273,-0.322332 +0.357119,0.180069,0.005708,0.226184,-0.340223,-0.322136 +0.357390,0.179772,0.005411,0.225829,-0.340177,-0.321957 +0.357625,0.179524,0.005163,0.225531,-0.340135,-0.321797 +0.357825,0.179320,0.004959,0.225287,-0.340097,-0.321654 +0.357988,0.179156,0.004795,0.225090,-0.340063,-0.321529 +0.358117,0.179027,0.004666,0.224936,-0.340033,-0.321422 +0.358214,0.178929,0.004569,0.224819,-0.340007,-0.321333 +0.358285,0.178859,0.004498,0.224735,-0.339986,-0.321262 +0.358333,0.178811,0.004450,0.224677,-0.339968,-0.321208 +0.358363,0.178781,0.004420,0.224641,-0.339955,-0.321173 +0.358379,0.178765,0.004404,0.224622,-0.339945,-0.321154 +0.358386,0.178758,0.004397,0.224614,-0.339940,-0.321146 +0.358387,0.178757,0.004396,0.224613,-0.339939,-0.321144 +0.358387,0.178757,0.004396,0.224613,-0.339939,-0.321144 +0.358379,0.178760,0.004395,0.224613,-0.339935,-0.321144 +0.358379,0.178760,0.004395,0.224613,-0.339935,-0.321144 +0.358378,0.178761,0.004395,0.224612,-0.339934,-0.321143 +0.358372,0.178767,0.004388,0.224604,-0.339926,-0.321136 +0.358355,0.178784,0.004371,0.224584,-0.339906,-0.321115 +0.358322,0.178818,0.004338,0.224544,-0.339866,-0.321075 +0.358267,0.178873,0.004283,0.224478,-0.339800,-0.321009 +0.358185,0.178955,0.004201,0.224380,-0.339702,-0.320911 +0.358070,0.179069,0.004086,0.224242,-0.339564,-0.320774 +0.357918,0.179221,0.003934,0.224060,-0.339382,-0.320591 +0.357722,0.179417,0.003738,0.223826,-0.339148,-0.320357 +0.357478,0.179661,0.003494,0.223533,-0.338855,-0.320064 +0.357179,0.179960,0.003196,0.223175,-0.338497,-0.319707 +0.356821,0.180318,0.002838,0.222747,-0.338069,-0.319278 +0.356399,0.180740,0.002415,0.222240,-0.337562,-0.318771 +0.355905,0.181234,0.001922,0.221649,-0.336971,-0.318181 +0.355337,0.181802,0.001353,0.220968,-0.336290,-0.317499 +0.354687,0.182452,0.000703,0.220189,-0.335511,-0.316720 +0.353950,0.183189,-0.000034,0.219307,-0.334629,-0.315838 +0.353122,0.184017,-0.000862,0.218314,-0.333636,-0.314846 +0.352196,0.184943,-0.001788,0.217205,-0.332527,-0.313736 +0.351167,0.185972,-0.002817,0.215973,-0.331295,-0.312504 +0.350030,0.187109,-0.003954,0.214611,-0.329933,-0.311142 +0.348780,0.188354,-0.005204,0.213113,-0.328435,-0.309644 +0.347411,0.189703,-0.006573,0.211472,-0.326797,-0.308004 +0.345921,0.191150,-0.008061,0.209683,-0.325026,-0.306214 +0.344316,0.192689,-0.009662,0.207737,-0.323127,-0.304269 +0.342601,0.194316,-0.011372,0.205630,-0.321107,-0.302162 +0.340781,0.196025,-0.013184,0.203355,-0.318973,-0.299886 +0.338862,0.197810,-0.015094,0.200904,-0.316730,-0.297435 +0.336849,0.199667,-0.017096,0.198272,-0.314385,-0.294803 +0.334748,0.201589,-0.019184,0.195452,-0.311946,-0.291983 +0.332564,0.203571,-0.021353,0.192438,-0.309417,-0.288969 +0.330303,0.205609,-0.023598,0.189222,-0.306807,-0.285754 +0.327969,0.207695,-0.025913,0.185800,-0.304120,-0.282331 +0.325568,0.209826,-0.028293,0.182163,-0.301365,-0.278695 +0.323106,0.211995,-0.030732,0.178307,-0.298546,-0.274838 +0.320588,0.214198,-0.033226,0.174226,-0.295672,-0.270754 +0.318020,0.216428,-0.035768,0.169927,-0.292747,-0.266437 +0.315406,0.218681,-0.038353,0.165415,-0.289779,-0.261881 +0.312753,0.220951,-0.040977,0.160698,-0.286775,-0.257078 +0.310066,0.223232,-0.043632,0.155781,-0.283740,-0.252022 +0.307349,0.225519,-0.046315,0.150672,-0.280681,-0.246709 +0.304609,0.227808,-0.049019,0.145376,-0.277604,-0.241136 +0.301851,0.230097,-0.051740,0.139900,-0.274517,-0.235303 +0.299081,0.232386,-0.054471,0.134251,-0.271425,-0.229212 +0.296303,0.234675,-0.057207,0.128436,-0.268333,-0.222862 +0.293523,0.236963,-0.059945,0.122459,-0.265240,-0.216258 +0.290743,0.239252,-0.062682,0.116329,-0.262148,-0.209406 +0.287963,0.241541,-0.065420,0.110051,-0.259056,-0.202313 +0.285183,0.243830,-0.068157,0.103633,-0.255964,-0.194985 +0.282403,0.246119,-0.070895,0.097079,-0.252871,-0.187430 +0.279623,0.248408,-0.073632,0.090398,-0.249779,-0.179652 +0.276843,0.250696,-0.076370,0.083595,-0.246687,-0.171659 +0.274063,0.252985,-0.079107,0.076678,-0.243595,-0.163458 +0.271283,0.255274,-0.081845,0.069651,-0.240502,-0.155054 +0.268503,0.257563,-0.084582,0.062523,-0.237410,-0.146454 +0.265723,0.259852,-0.087319,0.055299,-0.234318,-0.137665 +0.262943,0.262141,-0.090057,0.047985,-0.231226,-0.128693 +0.260163,0.264429,-0.092794,0.040590,-0.228133,-0.119545 +0.257383,0.266718,-0.095532,0.033118,-0.225041,-0.110227 +0.254603,0.269007,-0.098269,0.025576,-0.221949,-0.100746 +0.251823,0.271296,-0.101007,0.017971,-0.218857,-0.091107 +0.249043,0.273585,-0.103744,0.010309,-0.215764,-0.081319 +0.246263,0.275873,-0.106482,0.002597,-0.212672,-0.071386 +0.243483,0.278162,-0.109219,-0.005159,-0.209580,-0.061316 +0.240703,0.280451,-0.111957,-0.012952,-0.206488,-0.051114 +0.237923,0.282740,-0.114694,-0.020775,-0.203395,-0.040788 +0.235143,0.285029,-0.117432,-0.028624,-0.200303,-0.030345 +0.232363,0.287318,-0.120169,-0.036490,-0.197211,-0.019789 +0.229583,0.289606,-0.122906,-0.044367,-0.194119,-0.009129 +0.226803,0.291895,-0.125644,-0.052249,-0.191026,0.001630 +0.224023,0.294184,-0.128381,-0.060132,-0.187934,0.012481 +0.221243,0.296473,-0.131119,-0.068015,-0.184842,0.023418 +0.218463,0.298762,-0.133856,-0.075898,-0.181750,0.034434 +0.215683,0.301050,-0.136594,-0.083780,-0.178657,0.045523 +0.212903,0.303339,-0.139331,-0.091663,-0.175565,0.056677 +0.210123,0.305628,-0.142069,-0.099546,-0.172473,0.067892 +0.207343,0.307917,-0.144806,-0.107429,-0.169381,0.079160 +0.204563,0.310206,-0.147544,-0.115311,-0.166288,0.090474 +0.201783,0.312495,-0.150281,-0.123194,-0.163196,0.101829 +0.199003,0.314783,-0.153019,-0.131077,-0.160104,0.113218 +0.196223,0.317072,-0.155756,-0.138960,-0.157012,0.124634 +0.193443,0.319361,-0.158494,-0.146842,-0.153919,0.136070 +0.190663,0.321650,-0.161231,-0.154725,-0.150827,0.147521 +0.187882,0.323939,-0.163968,-0.162608,-0.147735,0.158980 +0.185102,0.326228,-0.166706,-0.170491,-0.144643,0.170441 +0.182322,0.328516,-0.169443,-0.178374,-0.141550,0.181902 +0.179542,0.330805,-0.172181,-0.186256,-0.138458,0.193363 +0.176762,0.333094,-0.174918,-0.194139,-0.135366,0.204824 +0.173982,0.335383,-0.177656,-0.202022,-0.132274,0.216285 +0.171202,0.337672,-0.180393,-0.209905,-0.129181,0.227746 +0.168422,0.339960,-0.183131,-0.217787,-0.126089,0.239207 +0.165642,0.342249,-0.185868,-0.225670,-0.122997,0.250667 +0.162862,0.344538,-0.188606,-0.233553,-0.119905,0.262128 +0.160082,0.346827,-0.191343,-0.241436,-0.116812,0.273589 +0.157302,0.349116,-0.194081,-0.249318,-0.113720,0.285050 +0.154522,0.351405,-0.196818,-0.257201,-0.110628,0.296511 +0.151742,0.353693,-0.199555,-0.265084,-0.107536,0.307972 +0.148962,0.355982,-0.202293,-0.272967,-0.104443,0.319433 +0.146182,0.358271,-0.205030,-0.280850,-0.101351,0.330894 +0.143402,0.360560,-0.207768,-0.288732,-0.098259,0.342355 +0.140622,0.362849,-0.210505,-0.296615,-0.095167,0.353816 +0.137842,0.365137,-0.213243,-0.304498,-0.092075,0.365276 +0.135062,0.367426,-0.215980,-0.312381,-0.088982,0.376737 +0.132282,0.369715,-0.218718,-0.320263,-0.085890,0.388198 +0.129502,0.372004,-0.221455,-0.328146,-0.082798,0.399659 +0.126722,0.374293,-0.224193,-0.336029,-0.079705,0.411120 +0.123942,0.376582,-0.226930,-0.343912,-0.076613,0.422581 +0.121162,0.378870,-0.229668,-0.351794,-0.073521,0.434042 +0.118382,0.381159,-0.232405,-0.359677,-0.070429,0.445503 +0.115602,0.383448,-0.235142,-0.367560,-0.067336,0.456964 +0.112822,0.385737,-0.237880,-0.375443,-0.064244,0.468424 +0.110042,0.388026,-0.240617,-0.383325,-0.061152,0.479885 +0.107262,0.390315,-0.243355,-0.391208,-0.058060,0.491346 +0.104482,0.392603,-0.246092,-0.399091,-0.054968,0.502807 +0.101702,0.394892,-0.248830,-0.406974,-0.051875,0.514268 +0.098922,0.397181,-0.251567,-0.414857,-0.048783,0.525729 +0.096142,0.399470,-0.254305,-0.422739,-0.045691,0.537190 +0.093362,0.401759,-0.257042,-0.430622,-0.042598,0.548651 +0.090582,0.404047,-0.259780,-0.438505,-0.039506,0.560112 +0.087802,0.406336,-0.262517,-0.446388,-0.036414,0.571573 +0.085022,0.408625,-0.265255,-0.454270,-0.033322,0.583033 +0.082242,0.410914,-0.267992,-0.462153,-0.030230,0.594494 +0.079462,0.413203,-0.270729,-0.470036,-0.027137,0.605955 +0.076682,0.415492,-0.273467,-0.477919,-0.024045,0.617416 +0.073902,0.417780,-0.276204,-0.485801,-0.020953,0.628877 +0.071122,0.420069,-0.278942,-0.493684,-0.017861,0.640338 +0.068342,0.422358,-0.281679,-0.501567,-0.014768,0.651799 +0.065562,0.424647,-0.284417,-0.509450,-0.011676,0.663260 +0.062782,0.426936,-0.287154,-0.517332,-0.008584,0.674721 +0.060002,0.429224,-0.289892,-0.525215,-0.005492,0.686182 +0.057222,0.431513,-0.292629,-0.533098,-0.002399,0.697642 +0.054442,0.433802,-0.295367,-0.540981,0.000693,0.709103 +0.051662,0.436091,-0.298104,-0.548864,0.003785,0.720564 +0.048882,0.438380,-0.300842,-0.556746,0.006877,0.732025 +0.046102,0.440669,-0.303579,-0.564629,0.009970,0.743486 +0.043322,0.442957,-0.306316,-0.572512,0.013062,0.754947 +0.040542,0.445246,-0.309054,-0.580395,0.016154,0.766408 +0.037762,0.447535,-0.311791,-0.588277,0.019246,0.777869 +0.034982,0.449824,-0.314529,-0.596160,0.022339,0.789330 +0.032202,0.452113,-0.317266,-0.604043,0.025431,0.800790 +0.029422,0.454402,-0.320004,-0.611926,0.028523,0.812251 +0.026642,0.456690,-0.322741,-0.619808,0.031615,0.823712 +0.023862,0.458979,-0.325479,-0.627691,0.034708,0.835173 +0.021082,0.461268,-0.328216,-0.635574,0.037800,0.846634 +0.018302,0.463557,-0.330954,-0.643457,0.040892,0.858095 +0.015522,0.465846,-0.333691,-0.651340,0.043984,0.869556 +0.012742,0.468134,-0.336429,-0.659222,0.047077,0.881017 +0.009962,0.470423,-0.339166,-0.667105,0.050169,0.892478 +0.007182,0.472712,-0.341903,-0.674988,0.053261,0.903939 +0.004402,0.475001,-0.344641,-0.682871,0.056353,0.915399 +0.001622,0.477290,-0.347378,-0.690753,0.059446,0.926860 +-0.001158,0.479579,-0.350116,-0.698636,0.062538,0.938321 +-0.003938,0.481867,-0.352853,-0.706519,0.065630,0.949782 +-0.006718,0.484156,-0.355591,-0.714402,0.068722,0.961243 +-0.009498,0.486445,-0.358328,-0.722284,0.071815,0.972704 +-0.012278,0.488734,-0.361066,-0.730167,0.074907,0.984165 +-0.015059,0.491023,-0.363803,-0.738050,0.077999,0.995626 +-0.017839,0.493311,-0.366541,-0.745933,0.081091,1.007090 +-0.020619,0.495600,-0.369278,-0.753815,0.084184,1.018550 +-0.023399,0.497889,-0.372016,-0.761698,0.087276,1.030010 +-0.026179,0.500178,-0.374753,-0.769581,0.090368,1.041470 +-0.028959,0.502467,-0.377490,-0.777464,0.093460,1.052930 +-0.031739,0.504756,-0.380228,-0.785347,0.096553,1.064390 +-0.034519,0.507044,-0.382965,-0.793229,0.099645,1.075850 +-0.037299,0.509333,-0.385703,-0.801112,0.102737,1.087310 +-0.040079,0.511622,-0.388440,-0.808995,0.105829,1.098770 +-0.042859,0.513911,-0.391178,-0.816878,0.108922,1.110230 +-0.045639,0.516200,-0.393915,-0.824760,0.112014,1.121700 +-0.048419,0.518489,-0.396653,-0.832643,0.115106,1.133160 +-0.051199,0.520777,-0.399390,-0.840526,0.118198,1.144620 +-0.053979,0.523066,-0.402128,-0.848409,0.121291,1.156080 +-0.056759,0.525355,-0.404865,-0.856291,0.124383,1.167540 +-0.059539,0.527644,-0.407603,-0.864174,0.127475,1.179000 +-0.062319,0.529933,-0.410340,-0.872057,0.130567,1.190460 +-0.065099,0.532221,-0.413077,-0.879940,0.133660,1.201920 +-0.067879,0.534510,-0.415815,-0.887822,0.136752,1.213380 +-0.070659,0.536799,-0.418552,-0.895705,0.139844,1.224840 +-0.073439,0.539088,-0.421290,-0.903588,0.142936,1.236300 +-0.076219,0.541377,-0.424027,-0.911471,0.146029,1.247770 +-0.078999,0.543666,-0.426765,-0.919354,0.149121,1.259230 +-0.081779,0.545954,-0.429502,-0.927236,0.152213,1.270690 +-0.084559,0.548243,-0.432240,-0.935119,0.155305,1.282150 +-0.087339,0.550532,-0.434977,-0.943002,0.158398,1.293610 +-0.090119,0.552821,-0.437715,-0.950885,0.161490,1.305070 +-0.092899,0.555110,-0.440452,-0.958767,0.164582,1.316530 +-0.095679,0.557398,-0.443190,-0.966650,0.167674,1.327990 +-0.098459,0.559687,-0.445927,-0.974533,0.170766,1.339450 +-0.101239,0.561976,-0.448664,-0.982416,0.173859,1.350910 +-0.104019,0.564265,-0.451402,-0.990298,0.176951,1.362370 +-0.106799,0.566554,-0.454139,-0.998181,0.180043,1.373840 +-0.109579,0.568843,-0.456877,-1.006060,0.183135,1.385300 +-0.112359,0.571131,-0.459614,-1.013950,0.186228,1.396760 +-0.115139,0.573420,-0.462352,-1.021830,0.189320,1.408220 +-0.117919,0.575709,-0.465089,-1.029710,0.192412,1.419680 +-0.120699,0.577998,-0.467827,-1.037600,0.195504,1.431140 +-0.123479,0.580287,-0.470564,-1.045480,0.198597,1.442600 +-0.126259,0.582575,-0.473302,-1.053360,0.201689,1.454060 +-0.129039,0.584864,-0.476039,-1.061240,0.204781,1.465520 +-0.131819,0.587153,-0.478777,-1.069130,0.207873,1.476980 +-0.134599,0.589442,-0.481514,-1.077010,0.210966,1.488440 +-0.137379,0.591731,-0.484251,-1.084890,0.214058,1.499910 +-0.140159,0.594020,-0.486989,-1.092770,0.217150,1.511370 +-0.142939,0.596308,-0.489726,-1.100660,0.220242,1.522830 +-0.145719,0.598597,-0.492464,-1.108540,0.223335,1.534290 +-0.148499,0.600886,-0.495201,-1.116420,0.226427,1.545750 +-0.151279,0.603175,-0.497939,-1.124310,0.229519,1.557210 +-0.154059,0.605464,-0.500676,-1.132190,0.232611,1.568670 +-0.156839,0.607753,-0.503414,-1.140070,0.235704,1.580130 +-0.159619,0.610041,-0.506151,-1.147950,0.238796,1.591590 +-0.162399,0.612330,-0.508889,-1.155840,0.241888,1.603050 +-0.165179,0.614619,-0.511626,-1.163720,0.244980,1.614510 +-0.167959,0.616908,-0.514364,-1.171600,0.248073,1.625970 +-0.170739,0.619197,-0.517101,-1.179480,0.251165,1.637440 +-0.173519,0.621485,-0.519838,-1.187370,0.254257,1.648900 +-0.176299,0.623774,-0.522576,-1.195250,0.257349,1.660360 +-0.179079,0.626063,-0.525313,-1.203130,0.260442,1.671820 +-0.181859,0.628352,-0.528051,-1.211020,0.263534,1.683280 +-0.184639,0.630641,-0.530788,-1.218900,0.266626,1.694740 +-0.187419,0.632930,-0.533526,-1.226780,0.269718,1.706200 +-0.190199,0.635218,-0.536263,-1.234660,0.272811,1.717660 +-0.192979,0.637507,-0.539001,-1.242550,0.275903,1.729120 +-0.195759,0.639796,-0.541738,-1.250430,0.278995,1.740580 +-0.198539,0.642085,-0.544476,-1.258310,0.282087,1.752040 +-0.201319,0.644374,-0.547213,-1.266200,0.285180,1.763510 +-0.204099,0.646662,-0.549951,-1.274080,0.288272,1.774970 +-0.206879,0.648951,-0.552688,-1.281960,0.291364,1.786430 +-0.209659,0.651240,-0.555425,-1.289840,0.294456,1.797890 +-0.212440,0.653529,-0.558163,-1.297730,0.297549,1.809350 +-0.215220,0.655818,-0.560900,-1.305610,0.300641,1.820810 +-0.218000,0.658107,-0.563638,-1.313490,0.303733,1.832270 +-0.220780,0.660395,-0.566375,-1.321370,0.306825,1.843730 +-0.223560,0.662684,-0.569113,-1.329260,0.309918,1.855190 +-0.226340,0.664973,-0.571850,-1.337140,0.313010,1.866650 +-0.229120,0.667262,-0.574588,-1.345020,0.316102,1.878110 +-0.231900,0.669551,-0.577325,-1.352910,0.319194,1.889580 +-0.234680,0.671840,-0.580063,-1.360790,0.322287,1.901040 +-0.237460,0.674128,-0.582800,-1.368670,0.325379,1.912500 +-0.240240,0.676417,-0.585538,-1.376550,0.328471,1.923960 +-0.243020,0.678706,-0.588275,-1.384440,0.331563,1.935420 +-0.245800,0.680995,-0.591012,-1.392320,0.334656,1.946880 +-0.248580,0.683284,-0.593750,-1.400200,0.337748,1.958340 +-0.251360,0.685572,-0.596487,-1.408090,0.340840,1.969800 +-0.254140,0.687861,-0.599225,-1.415970,0.343932,1.981260 +-0.256920,0.690150,-0.601962,-1.423850,0.347025,1.992720 +-0.259700,0.692439,-0.604700,-1.431730,0.350117,2.004180 +-0.262480,0.694728,-0.607437,-1.439620,0.353209,2.015650 +-0.265260,0.697017,-0.610175,-1.447500,0.356301,2.027110 +-0.268040,0.699305,-0.612912,-1.455380,0.359394,2.038570 +-0.270820,0.701594,-0.615650,-1.463260,0.362486,2.050030 +-0.273600,0.703883,-0.618387,-1.471150,0.365578,2.061490 +-0.276380,0.706172,-0.621125,-1.479030,0.368670,2.072950 +-0.279160,0.708461,-0.623862,-1.486910,0.371763,2.084410 +-0.281940,0.710749,-0.626599,-1.494800,0.374855,2.095870 +-0.284720,0.713038,-0.629337,-1.502680,0.377947,2.107330 +-0.287500,0.715327,-0.632074,-1.510560,0.381039,2.118790 +-0.290280,0.717616,-0.634812,-1.518440,0.384132,2.130250 +-0.293060,0.719905,-0.637549,-1.526330,0.387224,2.141720 +-0.295840,0.722194,-0.640287,-1.534210,0.390316,2.153180 +-0.298620,0.724482,-0.643024,-1.542090,0.393408,2.164640 +-0.301400,0.726771,-0.645762,-1.549970,0.396501,2.176100 +-0.304180,0.729060,-0.648499,-1.557860,0.399593,2.187560 +-0.306960,0.731349,-0.651237,-1.565740,0.402685,2.199020 +-0.309740,0.733638,-0.653974,-1.573620,0.405777,2.210480 +-0.312520,0.735927,-0.656712,-1.581510,0.408870,2.221940 +-0.315300,0.738215,-0.659449,-1.589390,0.411962,2.233400 +-0.318080,0.740504,-0.662186,-1.597270,0.415054,2.244850 +-0.320860,0.742793,-0.664924,-1.605150,0.418146,2.256280 +-0.323640,0.745082,-0.667661,-1.613040,0.421238,2.267680 +-0.326420,0.747371,-0.670399,-1.620920,0.424331,2.279060 +-0.329200,0.749659,-0.673136,-1.628800,0.427423,2.290400 +-0.331980,0.751948,-0.675874,-1.636690,0.430515,2.301700 +-0.334760,0.754237,-0.678611,-1.644570,0.433607,2.312950 +-0.337540,0.756526,-0.681349,-1.652450,0.436700,2.324150 +-0.340320,0.758815,-0.684086,-1.660330,0.439792,2.335280 +-0.343100,0.761104,-0.686824,-1.668220,0.442884,2.346340 +-0.345880,0.763392,-0.689561,-1.676100,0.445976,2.357330 +-0.348660,0.765681,-0.692299,-1.683980,0.449069,2.368240 +-0.351440,0.767970,-0.695036,-1.691860,0.452161,2.379060 +-0.354220,0.770259,-0.697773,-1.699730,0.455253,2.389790 +-0.357000,0.772548,-0.700511,-1.707590,0.458345,2.400410 +-0.359780,0.774836,-0.703248,-1.715430,0.461438,2.410930 +-0.362560,0.777125,-0.705986,-1.723230,0.464530,2.421340 +-0.365340,0.779414,-0.708723,-1.731010,0.467622,2.431620 +-0.368120,0.781703,-0.711461,-1.738740,0.470714,2.441780 +-0.370900,0.783992,-0.714198,-1.746420,0.473807,2.451800 +-0.373680,0.786281,-0.716936,-1.754060,0.476899,2.461690 +-0.376460,0.788569,-0.719673,-1.761630,0.479991,2.471430 +-0.379240,0.790858,-0.722411,-1.769130,0.483083,2.481010 +-0.382020,0.793147,-0.725148,-1.776560,0.486176,2.490440 +-0.384800,0.795436,-0.727886,-1.783910,0.489268,2.499700 +-0.387580,0.797725,-0.730623,-1.791180,0.492360,2.508790 +-0.390360,0.800014,-0.733360,-1.798350,0.495452,2.517700 +-0.393140,0.802302,-0.736098,-1.805420,0.498545,2.526420 +-0.395920,0.804591,-0.738835,-1.812390,0.501637,2.534960 +-0.398700,0.806880,-0.741573,-1.819240,0.504729,2.543290 +-0.401480,0.809169,-0.744310,-1.825980,0.507821,2.551420 +-0.404260,0.811458,-0.747048,-1.832590,0.510914,2.559340 +-0.407040,0.813746,-0.749785,-1.839070,0.514006,2.567050 +-0.409820,0.816035,-0.752523,-1.845410,0.517098,2.574520 +-0.412601,0.818324,-0.755260,-1.851610,0.520190,2.581770 +-0.415381,0.820613,-0.757998,-1.857650,0.523283,2.588780 +-0.418161,0.822902,-0.760735,-1.863540,0.526375,2.595550 +-0.420941,0.825191,-0.763473,-1.869270,0.529467,2.602070 +-0.423720,0.827479,-0.766210,-1.874820,0.532559,2.608330 +-0.426494,0.829768,-0.768947,-1.880200,0.535652,2.614340 +-0.429257,0.832056,-0.771685,-1.885390,0.538744,2.620080 +-0.432004,0.834339,-0.774422,-1.890390,0.541836,2.625560 +-0.434730,0.836612,-0.777160,-1.895200,0.544928,2.630790 +-0.437429,0.838869,-0.779896,-1.899800,0.548019,2.635760 +-0.440096,0.841104,-0.782625,-1.904200,0.551103,2.640460 +-0.442725,0.843313,-0.785343,-1.908380,0.554174,2.644920 +-0.445311,0.845489,-0.788044,-1.912340,0.557225,2.649120 +-0.447849,0.847628,-0.790722,-1.916090,0.560250,2.653090 +-0.450332,0.849724,-0.793372,-1.919630,0.563242,2.656820 +-0.452757,0.851772,-0.795989,-1.922970,0.566195,2.660330 +-0.455116,0.853766,-0.798567,-1.926120,0.569102,2.663610 +-0.457406,0.855701,-0.801100,-1.929080,0.571957,2.666670 +-0.459620,0.857572,-0.803584,-1.931860,0.574753,2.669530 +-0.461753,0.859372,-0.806013,-1.934470,0.577484,2.672190 +-0.463799,0.861097,-0.808382,-1.936910,0.580143,2.674650 +-0.465754,0.862741,-0.810684,-1.939180,0.582724,2.676930 +-0.467612,0.864300,-0.812916,-1.941310,0.585221,2.679020 +-0.469367,0.865766,-0.815071,-1.943280,0.587626,2.680930 +-0.471014,0.867135,-0.817143,-1.945120,0.589934,2.682680 +-0.472550,0.868402,-0.819128,-1.946820,0.592138,2.684260 +-0.473979,0.869562,-0.821020,-1.948390,0.594232,2.685680 +-0.475306,0.870608,-0.822814,-1.949840,0.596208,2.686960 +-0.476537,0.871536,-0.824504,-1.951170,0.598061,2.688090 +-0.477677,0.872347,-0.826086,-1.952390,0.599784,2.689080 +-0.478732,0.873047,-0.827559,-1.953520,0.601376,2.689950 +-0.479706,0.873640,-0.828928,-1.954540,0.602843,2.690690 +-0.480606,0.874134,-0.830200,-1.955480,0.604191,2.691310 +-0.481436,0.874532,-0.831379,-1.956330,0.605427,2.691820 +-0.482203,0.874841,-0.832471,-1.957100,0.606558,2.692230 +-0.482911,0.875065,-0.833482,-1.957810,0.607589,2.692530 +-0.483566,0.875210,-0.834416,-1.958450,0.608527,2.692750 +-0.484173,0.875282,-0.835280,-1.959030,0.609379,2.692880 +-0.484738,0.875286,-0.836078,-1.959570,0.610152,2.692930 +-0.485267,0.875227,-0.836817,-1.960060,0.610851,2.692910 +-0.485764,0.875111,-0.837500,-1.960510,0.611483,2.692830 +-0.486235,0.874943,-0.838135,-1.960930,0.612055,2.692680 +-0.486685,0.874728,-0.838726,-1.961320,0.612573,2.692480 +-0.487121,0.874473,-0.839278,-1.961700,0.613043,2.692240 +-0.487546,0.874182,-0.839798,-1.962060,0.613473,2.691950 +-0.487967,0.873861,-0.840290,-1.962420,0.613869,2.691640 +-0.488389,0.873514,-0.840760,-1.962780,0.614236,2.691290 +-0.488818,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-0.489779,0.872313,-0.842149,-1.963985,0.615274,2.690091 +-0.490791,0.871415,-0.843027,-1.964882,0.615892,2.689194 +-0.491847,0.870462,-0.843844,-1.965835,0.616435,2.688241 +-0.492943,0.869458,-0.844594,-1.966839,0.616898,2.687237 +-0.494072,0.868409,-0.845274,-1.967888,0.617279,2.686187 +-0.495229,0.867319,-0.845881,-1.968978,0.617577,2.685097 +-0.496408,0.866195,-0.846410,-1.970103,0.617790,2.683973 +-0.497603,0.865041,-0.846861,-1.971256,0.617917,2.682820 +-0.498806,0.863866,-0.847229,-1.972431,0.617956,2.681644 +-0.500013,0.862673,-0.847514,-1.973624,0.617909,2.680452 +-0.501216,0.861471,-0.847713,-1.974826,0.617774,2.679249 +-0.502410,0.860264,-0.847826,-1.976033,0.617554,2.678042 +-0.503588,0.859060,-0.847852,-1.977237,0.617248,2.676838 +-0.504745,0.857864,-0.847790,-1.978433,0.616859,2.675642 +-0.505873,0.856683,-0.847643,-1.979614,0.616388,2.674461 +-0.506967,0.855523,-0.847409,-1.980774,0.615839,2.673301 +-0.508022,0.854390,-0.847090,-1.981907,0.615213,2.672168 +-0.509032,0.853289,-0.846688,-1.983008,0.614515,2.671068 +-0.509992,0.852228,-0.846206,-1.984069,0.613747,2.670006 +-0.510896,0.851210,-0.845644,-1.985087,0.612914,2.668988 +-0.511741,0.850242,-0.845007,-1.986055,0.612021,2.668020 +-0.512521,0.849329,-0.844298,-1.986968,0.611071,2.667107 +-0.513232,0.848474,-0.843521,-1.987823,0.610070,2.666253 +-0.513871,0.847684,-0.842679,-1.988613,0.609023,2.665462 +-0.514435,0.846961,-0.841777,-1.989336,0.607935,2.664739 +-0.514920,0.846310,-0.840819,-1.989987,0.606813,2.664088 +-0.515325,0.845734,-0.839811,-1.990563,0.605661,2.663512 +-0.515646,0.845236,-0.838758,-1.991061,0.604487,2.663014 +-0.515882,0.844819,-0.837665,-1.991479,0.603295,2.662597 +-0.516033,0.844484,-0.836539,-1.991813,0.602093,2.662262 +-0.516096,0.844234,-0.835384,-1.992063,0.600887,2.662012 +-0.516073,0.844070,-0.834207,-1.992227,0.599682,2.661848 +-0.515962,0.843992,-0.833014,-1.992305,0.598485,2.661770 +-0.515765,0.844002,-0.831812,-1.992295,0.597303,2.661780 +-0.515483,0.844098,-0.830606,-1.992199,0.596142,2.661876 +-0.515117,0.844281,-0.829403,-1.992016,0.595007,2.662060 +-0.514669,0.844550,-0.828209,-1.991747,0.593904,2.662328 +-0.514141,0.844903,-0.827030,-1.991394,0.592840,2.662681 +-0.513536,0.845338,-0.825873,-1.990959,0.591820,2.663117 +-0.512857,0.845854,-0.824744,-1.990443,0.590849,2.663632 +-0.512108,0.846446,-0.823648,-1.989851,0.589932,2.664225 +-0.511293,0.847114,-0.822591,-1.989184,0.589074,2.664892 +-0.510416,0.847851,-0.821579,-1.988446,0.588279,2.665630 +-0.509481,0.848656,-0.820616,-1.987641,0.587553,2.666434 +-0.508494,0.849524,-0.819709,-1.986773,0.586897,2.667302 +-0.507459,0.850450,-0.818861,-1.985847,0.586316,2.668228 +-0.506382,0.851429,-0.818077,-1.984868,0.585814,2.669207 +-0.505268,0.852457,-0.817362,-1.983840,0.585391,2.670235 +-0.504124,0.853527,-0.816718,-1.982770,0.585052,2.671306 +-0.502955,0.854635,-0.816150,-1.981662,0.584797,2.672414 +-0.501768,0.855775,-0.815660,-1.980522,0.584627,2.673553 +-0.500568,0.856940,-0.815251,-1.979357,0.584544,2.674718 +-0.499362,0.858125,-0.814925,-1.978172,0.584549,2.675903 +-0.498156,0.859323,-0.814683,-1.976974,0.584640,2.677102 +-0.496957,0.860529,-0.814527,-1.975768,0.584818,2.678307 +-0.495770,0.861735,-0.814458,-1.974562,0.585082,2.679513 +-0.494602,0.862936,-0.814476,-1.973361,0.585430,2.680714 +-0.493459,0.864125,-0.814581,-1.972172,0.585860,2.681903 +-0.492347,0.865296,-0.814772,-1.971001,0.586371,2.683075 +-0.491272,0.866444,-0.815049,-1.969853,0.586959,2.684222 +-0.490239,0.867561,-0.815410,-1.968736,0.587622,2.685339 +-0.489254,0.868643,-0.815853,-1.967655,0.588355,2.686421 +-0.488322,0.869683,-0.816375,-1.966615,0.589156,2.687461 +-0.487447,0.870676,-0.816975,-1.965621,0.590020,2.688454 +-0.486634,0.871617,-0.817649,-1.964680,0.590943,2.689395 +-0.485889,0.872501,-0.818393,-1.963796,0.591919,2.690279 +-0.485213,0.873324,-0.819203,-1.962973,0.592944,2.691102 +-0.484611,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-0.484087,0.874768,-0.821007,-1.961529,0.595118,2.692546 +-0.483642,0.875381,-0.821990,-1.960916,0.596256,2.693160 +-0.483279,0.875919,-0.823022,-1.960379,0.597420,2.693697 +-0.483001,0.876376,-0.824096,-1.959921,0.598604,2.694154 +-0.482808,0.876752,-0.825206,-1.959545,0.599802,2.694530 +-0.482701,0.877044,-0.826348,-1.959253,0.601007,2.694823 +-0.482681,0.877251,-0.827514,-1.959046,0.602213,2.695030 +-0.482748,0.877372,-0.828700,-1.958925,0.603414,2.695150 +-0.482903,0.877406,-0.829899,-1.958891,0.604604,2.695184 +-0.483143,0.877352,-0.831104,-1.958945,0.605777,2.695130 +-0.483468,0.877212,-0.832309,-1.959085,0.606926,2.694990 +-0.483875,0.876985,-0.833508,-1.959312,0.608045,2.694764 +-0.484364,0.876674,-0.834695,-1.959623,0.609129,2.694452 +-0.484931,0.876279,-0.835863,-1.960018,0.610172,2.694058 +-0.485574,0.875803,-0.837007,-1.960494,0.611168,2.693582 +-0.486288,0.875249,-0.838121,-1.961048,0.612112,2.693027 +-0.487071,0.874618,-0.839198,-1.961679,0.613000,2.692396 +-0.487918,0.873915,-0.840233,-1.962382,0.613827,2.691693 +-0.488825,0.873143,-0.841221,-1.963154,0.614588,2.690921 +-0.489787,0.872306,-0.842156,-1.963991,0.615279,2.690084 +-0.490799,0.871408,-0.843034,-1.964889,0.615897,2.689186 +-0.491856,0.870455,-0.843850,-1.965843,0.616439,2.688233 +-0.492952,0.869450,-0.844600,-1.966847,0.616901,2.687228 +-0.494081,0.868400,-0.845279,-1.967897,0.617282,2.686178 +-0.495239,0.867310,-0.845885,-1.968987,0.617579,2.685088 +-0.496418,0.866185,-0.846414,-1.970112,0.617792,2.683964 +-0.497612,0.865032,-0.846864,-1.971265,0.617917,2.682810 +-0.498816,0.863856,-0.847232,-1.972441,0.617956,2.681634 +-0.500022,0.862664,-0.847515,-1.973633,0.617908,2.680442 +-0.501226,0.861461,-0.847714,-1.974836,0.617773,2.679239 +-0.502420,0.860255,-0.847826,-1.976042,0.617552,2.678033 +-0.503598,0.859050,-0.847851,-1.977247,0.617245,2.676829 +-0.504754,0.857855,-0.847790,-1.978443,0.616855,2.675633 +-0.505882,0.856674,-0.847641,-1.979623,0.616384,2.674452 +-0.506976,0.855514,-0.847406,-1.980783,0.615834,2.673292 +-0.508031,0.854381,-0.847087,-1.981916,0.615208,2.672159 +-0.509040,0.853281,-0.846685,-1.983016,0.614509,2.671059 +-0.509999,0.852219,-0.846201,-1.984078,0.613741,2.669998 +-0.510903,0.851202,-0.845640,-1.985095,0.612908,2.668981 +-0.511747,0.850235,-0.845002,-1.986062,0.612014,2.668013 +-0.512526,0.849322,-0.844293,-1.986976,0.611063,2.667100 +-0.513237,0.848468,-0.843514,-1.987829,0.610062,2.666246 +-0.513876,0.847678,-0.842672,-1.988619,0.609014,2.665456 +-0.514439,0.846956,-0.841769,-1.989341,0.607927,2.664734 +-0.514924,0.846305,-0.840811,-1.989992,0.606804,2.664083 +-0.515328,0.845730,-0.839803,-1.990567,0.605652,2.663508 +-0.515648,0.845232,-0.838750,-1.991065,0.604477,2.663011 +-0.515884,0.844816,-0.837656,-1.991482,0.603286,2.662594 +-0.516034,0.844482,-0.836530,-1.991815,0.602084,2.662260 +-0.516096,0.844232,-0.835375,-1.992065,0.600877,2.662010 +-0.516072,0.844069,-0.834198,-1.992228,0.599672,2.661847 +-0.515961,0.843992,-0.833005,-1.992305,0.598476,2.661770 +-0.515763,0.844002,-0.831802,-1.992295,0.597294,2.661780 +-0.515480,0.844099,-0.830596,-1.992198,0.596133,2.661878 +-0.515114,0.844283,-0.829393,-1.992014,0.594998,2.662061 +-0.514665,0.844553,-0.828199,-1.991745,0.593896,2.662331 +-0.514136,0.844906,-0.827021,-1.991391,0.592832,2.662684 +-0.513531,0.845342,-0.825864,-1.990955,0.591812,2.663120 +-0.512851,0.845858,-0.824735,-1.990439,0.590841,2.663636 +-0.512102,0.846452,-0.823639,-1.989846,0.589925,2.664230 +-0.511286,0.847119,-0.822583,-1.989178,0.589067,2.664897 +-0.510408,0.847858,-0.821571,-1.988440,0.588273,2.665636 +-0.509473,0.848663,-0.820609,-1.987634,0.587547,2.666441 +-0.508485,0.849531,-0.819702,-1.986766,0.586892,2.667309 +-0.507450,0.850457,-0.818854,-1.985840,0.586312,2.668236 +-0.506373,0.851437,-0.818071,-1.984860,0.585810,2.669215 +-0.505259,0.852465,-0.817356,-1.983832,0.585388,2.670243 +-0.504115,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-0.502946,0.854644,-0.816146,-1.981653,0.584795,2.672423 +-0.501758,0.855784,-0.815657,-1.980513,0.584626,2.673562 +-0.500559,0.856950,-0.815248,-1.979347,0.584544,2.674728 +-0.499353,0.858135,-0.814922,-1.978163,0.584549,2.675913 +-0.498147,0.859333,-0.814681,-1.976964,0.584641,2.677111 +-0.496947,0.860538,-0.814526,-1.975759,0.584820,2.678317 +-0.495761,0.861745,-0.814458,-1.974553,0.585084,2.679523 +-0.494593,0.862945,-0.814476,-1.973352,0.585433,2.680724 +-0.493450,0.864134,-0.814582,-1.972163,0.585864,2.681913 +-0.492339,0.865306,-0.814774,-1.970992,0.586375,2.683084 +-0.491264,0.866453,-0.815052,-1.969844,0.586964,2.684231 +-0.490231,0.867570,-0.815413,-1.968727,0.587627,2.685348 +-0.489246,0.868651,-0.815856,-1.967646,0.588362,2.686429 +-0.488314,0.869691,-0.816380,-1.966606,0.589163,2.687469 +-0.487440,0.870684,-0.816980,-1.965614,0.590028,2.688462 +-0.486628,0.871624,-0.817654,-1.964673,0.590951,2.689402 +-0.485883,0.872508,-0.818399,-1.963789,0.591927,2.690286 +-0.485208,0.873330,-0.819210,-1.962967,0.592953,2.691108 +-0.484607,0.874087,-0.820083,-1.962211,0.594021,2.691865 +-0.484083,0.874773,-0.821015,-1.961524,0.595127,2.692551 +-0.483639,0.875386,-0.821999,-1.960911,0.596265,2.693164 +-0.483277,0.875923,-0.823030,-1.960375,0.597429,2.693701 +-0.482999,0.876380,-0.824104,-1.959918,0.598613,2.694158 +-0.482806,0.876755,-0.825215,-1.959542,0.599811,2.694533 +-0.482700,0.877046,-0.826357,-1.959251,0.601016,2.694825 +-0.482681,0.877253,-0.827524,-1.959044,0.602223,2.695031 +-0.482749,0.877373,-0.828710,-1.958925,0.603424,2.695151 +-0.482904,0.877406,-0.829908,-1.958892,0.604614,2.695184 +-0.483145,0.877351,-0.831113,-1.958946,0.605786,2.695130 +-0.483471,0.877210,-0.832318,-1.959087,0.606935,2.694989 +-0.483879,0.876983,-0.833517,-1.959314,0.608054,2.694761 +-0.484368,0.876671,-0.834704,-1.959626,0.609137,2.694449 +-0.484936,0.876276,-0.835873,-1.960021,0.610180,2.694054 +-0.485579,0.875799,-0.837016,-1.960498,0.611176,2.693578 +-0.486294,0.875244,-0.838129,-1.961053,0.612120,2.693022 +-0.487078,0.874613,-0.839206,-1.961684,0.613007,2.692391 +-0.487925,0.873909,-0.840241,-1.962388,0.613833,2.691687 +-0.488832,0.873136,-0.841228,-1.963161,0.614593,2.690914 +-0.489795,0.872299,-0.842163,-1.963998,0.615284,2.690077 +-0.490807,0.871401,-0.843041,-1.964896,0.615902,2.689179 +-0.491864,0.870447,-0.843856,-1.965850,0.616443,2.688225 +-0.492961,0.869442,-0.844605,-1.966855,0.616905,2.687220 +-0.494091,0.868392,-0.845284,-1.967905,0.617285,2.686170 +-0.495248,0.867301,-0.845890,-1.968996,0.617581,2.685079 +-0.496427,0.866176,-0.846418,-1.970121,0.617793,2.683955 +-0.497622,0.865023,-0.846867,-1.971274,0.617918,2.682801 +-0.498825,0.863847,-0.847234,-1.972450,0.617956,2.681625 +-0.500032,0.862654,-0.847517,-1.973643,0.617907,2.680433 +-0.501235,0.861452,-0.847715,-1.974845,0.617771,2.679230 +-0.502429,0.860245,-0.847827,-1.976052,0.617549,2.678023 +-0.503607,0.859041,-0.847851,-1.977256,0.617242,2.676819 +-0.504763,0.857845,-0.847789,-1.978452,0.616852,2.675623 +-0.505891,0.856664,-0.847639,-1.979633,0.616380,2.674443 +-0.506984,0.855505,-0.847404,-1.980793,0.615829,2.673283 +-0.508039,0.854372,-0.847084,-1.981925,0.615203,2.672150 +-0.509048,0.853272,-0.846681,-1.983025,0.614503,2.671050 +-0.510007,0.852211,-0.846197,-1.984086,0.613735,2.669989 +-0.510910,0.851194,-0.845635,-1.985103,0.612901,2.668973 +-0.511754,0.850227,-0.844997,-1.986070,0.612006,2.668005 +-0.512532,0.849315,-0.844287,-1.986983,0.611056,2.667093 +-0.513243,0.848461,-0.843508,-1.987836,0.610054,2.666239 +-0.513881,0.847672,-0.842665,-1.988625,0.609006,2.665450 +-0.514443,0.846950,-0.841762,-1.989347,0.607918,2.664728 +-0.514927,0.846300,-0.840803,-1.989997,0.606795,2.664079 +-0.515330,0.845726,-0.839795,-1.990572,0.605643,2.663504 +-0.515650,0.845229,-0.838741,-1.991068,0.604468,2.663007 +-0.515885,0.844813,-0.837648,-1.991485,0.603276,2.662591 +-0.516034,0.844479,-0.836520,-1.991818,0.602074,2.662258 +-0.516097,0.844231,-0.835365,-1.992067,0.600867,2.662009 +-0.516072,0.844068,-0.834188,-1.992229,0.599663,2.661846 +-0.515960,0.843992,-0.832995,-1.992306,0.598466,2.661770 +-0.515762,0.844003,-0.831793,-1.992295,0.597285,2.661781 +-0.515478,0.844100,-0.830587,-1.992197,0.596123,2.661879 +-0.515110,0.844285,-0.829384,-1.992012,0.594989,2.662063 +-0.514661,0.844555,-0.828190,-1.991742,0.593887,2.662333 +-0.514132,0.844909,-0.827012,-1.991388,0.592824,2.662688 +-0.513525,0.845346,-0.825855,-1.990951,0.591804,2.663124 +-0.512846,0.845863,-0.824726,-1.990435,0.590834,2.663641 +-0.512096,0.846457,-0.823631,-1.989841,0.589918,2.664235 +-0.511280,0.847125,-0.822574,-1.989172,0.589061,2.664903 +-0.510401,0.847864,-0.821563,-1.988433,0.588267,2.665642 +-0.509466,0.848670,-0.820601,-1.987627,0.587542,2.666448 +-0.508477,0.849538,-0.819695,-1.986759,0.586887,2.667316 +-0.507442,0.850465,-0.818848,-1.985832,0.586308,2.668243 +-0.506364,0.851445,-0.818065,-1.984852,0.585806,2.669223 +-0.505250,0.852474,-0.817351,-1.983824,0.585385,2.670252 +-0.504106,0.853545,-0.816709,-1.982752,0.585047,2.671323 +-0.502937,0.854653,-0.816142,-1.981644,0.584793,2.672432 +-0.501749,0.855793,-0.815653,-1.980504,0.584625,2.673572 +-0.500549,0.856959,-0.815245,-1.979338,0.584544,2.674737 +-0.499343,0.858144,-0.814920,-1.978153,0.584550,2.675922 +-0.498137,0.859343,-0.814680,-1.976955,0.584642,2.677121 +-0.496938,0.860548,-0.814525,-1.975749,0.584822,2.678326 +-0.495751,0.861754,-0.814458,-1.974543,0.585087,2.679532 +-0.494584,0.862955,-0.814477,-1.973342,0.585436,2.680733 +-0.493441,0.864144,-0.814583,-1.972153,0.585868,2.681922 +-0.492330,0.865315,-0.814776,-1.970982,0.586380,2.683093 +-0.491255,0.866462,-0.815054,-1.969835,0.586969,2.684240 +-0.490223,0.867578,-0.815416,-1.968719,0.587633,2.685357 +-0.489239,0.868659,-0.815860,-1.967638,0.588368,2.686438 +-0.488307,0.869699,-0.816384,-1.966598,0.589170,2.687477 +-0.487433,0.870691,-0.816985,-1.965606,0.590035,2.688469 +-0.486622,0.871632,-0.817660,-1.964666,0.590958,2.689410 +-0.485877,0.872515,-0.818405,-1.963782,0.591935,2.690293 +-0.485203,0.873337,-0.819217,-1.962961,0.592961,2.691115 +-0.484602,0.874092,-0.820091,-1.962205,0.594030,2.691870 +-0.484079,0.874778,-0.821022,-1.961519,0.595136,2.692556 +-0.483636,0.875391,-0.822007,-1.960907,0.596275,2.693169 +-0.483274,0.875926,-0.823039,-1.960371,0.597439,2.693705 +-0.482997,0.876383,-0.824113,-1.959914,0.598623,2.694161 +-0.482805,0.876757,-0.825224,-1.959540,0.599821,2.694536 +-0.482700,0.877048,-0.826366,-1.959249,0.601026,2.694827 +-0.482681,0.877254,-0.827533,-1.959043,0.602232,2.695032 +-0.482750,0.877373,-0.828719,-1.958924,0.603433,2.695151 +-0.482906,0.877406,-0.829918,-1.958892,0.604623,2.695184 +-0.483147,0.877351,-0.831123,-1.958946,0.605795,2.695129 +-0.483473,0.877209,-0.832328,-1.959088,0.606944,2.694987 +-0.483883,0.876981,-0.833527,-1.959316,0.608063,2.694759 +-0.484373,0.876668,-0.834714,-1.959629,0.609146,2.694447 +-0.484941,0.876272,-0.835882,-1.960025,0.610188,2.694051 +-0.485585,0.875795,-0.837025,-1.960502,0.611183,2.693573 +-0.486300,0.875239,-0.838138,-1.961058,0.612127,2.693017 +-0.487084,0.874607,-0.839215,-1.961690,0.613014,2.692386 +-0.487932,0.873903,-0.840249,-1.962394,0.613839,2.691681 +-0.488840,0.873130,-0.841236,-1.963167,0.614599,2.690908 +-0.489803,0.872292,-0.842170,-1.964005,0.615289,2.690070 +-0.490815,0.871393,-0.843047,-1.964904,0.615906,2.689171 +-0.491873,0.870439,-0.843862,-1.965858,0.616447,2.688217 +-0.492969,0.869434,-0.844611,-1.966863,0.616908,2.687212 +-0.494100,0.868383,-0.845289,-1.967914,0.617288,2.686161 +-0.495257,0.867292,-0.845894,-1.969005,0.617583,2.685071 +-0.496437,0.866167,-0.846422,-1.970130,0.617794,2.683946 +-0.497631,0.865014,-0.846870,-1.971283,0.617919,2.682792 +-0.498835,0.863837,-0.847237,-1.972460,0.617956,2.681616 +-0.500042,0.862645,-0.847519,-1.973652,0.617907,2.680423 +-0.501245,0.861442,-0.847716,-1.974855,0.617770,2.679220 +-0.502438,0.860235,-0.847827,-1.976062,0.617547,2.678014 +-0.503616,0.859031,-0.847851,-1.977266,0.617240,2.676809 +-0.504772,0.857836,-0.847788,-1.978461,0.616849,2.675614 +-0.505899,0.856655,-0.847638,-1.979642,0.616376,2.674433 +-0.506993,0.855495,-0.847402,-1.980802,0.615825,2.673274 +-0.508047,0.854363,-0.847081,-1.981934,0.615197,2.672141 +-0.509056,0.853264,-0.846678,-1.983034,0.614497,2.671042 +-0.510014,0.852203,-0.846193,-1.984094,0.613728,2.669981 +-0.510917,0.851187,-0.845630,-1.985111,0.612894,2.668965 +-0.511760,0.850220,-0.844991,-1.986077,0.611999,2.667998 +-0.512538,0.849308,-0.844281,-1.986990,0.611048,2.667086 +-0.513248,0.848455,-0.843502,-1.987842,0.610046,2.666233 +-0.513886,0.847666,-0.842658,-1.988631,0.608997,2.665444 +-0.514448,0.846945,-0.841754,-1.989352,0.607909,2.664723 +-0.514931,0.846295,-0.840796,-1.990002,0.606786,2.664074 +-0.515333,0.845721,-0.839787,-1.990576,0.605634,2.663499 +-0.515652,0.845225,-0.838732,-1.991072,0.604458,2.663003 +-0.515887,0.844810,-0.837639,-1.991487,0.603267,2.662588 +-0.516035,0.844477,-0.836511,-1.991820,0.602064,2.662255 +-0.516097,0.844229,-0.835356,-1.992068,0.600858,2.662007 +-0.516071,0.844067,-0.834179,-1.992230,0.599653,2.661845 +-0.515959,0.843991,-0.832986,-1.992306,0.598457,2.661769 +-0.515760,0.844003,-0.831783,-1.992294,0.597275,2.661781 +-0.515475,0.844102,-0.830577,-1.992196,0.596114,2.661880 +-0.515107,0.844287,-0.829374,-1.992010,0.594980,2.662065 +-0.514657,0.844558,-0.828181,-1.991740,0.593878,2.662336 +-0.514127,0.844913,-0.827003,-1.991385,0.592815,2.662691 +-0.513520,0.845350,-0.825846,-1.990947,0.591796,2.663128 +-0.512840,0.845867,-0.824717,-1.990430,0.590826,2.663645 +-0.512089,0.846462,-0.823622,-1.989836,0.589911,2.664240 +-0.511273,0.847130,-0.822566,-1.989167,0.589054,2.664909 +-0.510394,0.847870,-0.821555,-1.988427,0.588261,2.665648 +-0.509458,0.848676,-0.820594,-1.987621,0.587536,2.666454 +-0.508469,0.849545,-0.819688,-1.986752,0.586882,2.667324 +-0.507433,0.850473,-0.818842,-1.985824,0.586304,2.668251 +-0.506355,0.851453,-0.818059,-1.984844,0.585803,2.669231 +-0.505241,0.852482,-0.817346,-1.983815,0.585382,2.670260 +-0.504096,0.853553,-0.816704,-1.982744,0.585045,2.671332 +-0.502927,0.854662,-0.816137,-1.981635,0.584792,2.672440 +-0.501739,0.855803,-0.815649,-1.980495,0.584624,2.673581 +-0.500539,0.856968,-0.815242,-1.979329,0.584543,2.674747 +-0.499333,0.858154,-0.814918,-1.978144,0.584550,2.675932 +-0.498128,0.859352,-0.814678,-1.976945,0.584643,2.677130 +-0.496928,0.860558,-0.814524,-1.975740,0.584823,2.678336 +-0.495742,0.861764,-0.814457,-1.974533,0.585089,2.679542 +-0.494575,0.862964,-0.814477,-1.973333,0.585439,2.680743 +-0.493432,0.864153,-0.814584,-1.972144,0.585871,2.681931 +-0.492321,0.865324,-0.814778,-1.970973,0.586384,2.683102 +-0.491247,0.866471,-0.815057,-1.969826,0.586974,2.684249 +-0.490215,0.867587,-0.815419,-1.968710,0.587638,2.685365 +-0.489231,0.868668,-0.815864,-1.967629,0.588374,2.686446 +-0.488300,0.869707,-0.816389,-1.966590,0.589176,2.687485 +-0.487427,0.870699,-0.816990,-1.965598,0.590042,2.688477 +-0.486616,0.871639,-0.817666,-1.964658,0.590966,2.689417 +-0.485872,0.872522,-0.818411,-1.963776,0.591943,2.690300 +-0.485198,0.873343,-0.819223,-1.962954,0.592969,2.691121 +-0.484598,0.874098,-0.820098,-1.962199,0.594038,2.691876 +-0.484075,0.874783,-0.821030,-1.961514,0.595145,2.692562 +-0.483632,0.875395,-0.822015,-1.960902,0.596284,2.693173 +-0.483272,0.875930,-0.823047,-1.960367,0.597448,2.693709 +-0.482995,0.876386,-0.824122,-1.959911,0.598632,2.694164 +-0.482804,0.876760,-0.825233,-1.959537,0.599830,2.694538 +-0.482699,0.877050,-0.826375,-1.959247,0.601035,2.694829 +-0.482682,0.877255,-0.827543,-1.959042,0.602242,2.695033 +-0.482751,0.877374,-0.828729,-1.958923,0.603443,2.695152 +-0.482907,0.877405,-0.829927,-1.958892,0.604633,2.695184 +-0.483150,0.877350,-0.831132,-1.958947,0.605805,2.695128 +-0.483476,0.877207,-0.832337,-1.959090,0.606953,2.694986 +-0.483886,0.876979,-0.833536,-1.959318,0.608071,2.694757 +-0.484377,0.876666,-0.834723,-1.959632,0.609154,2.694444 +-0.484946,0.876269,-0.835891,-1.960028,0.610196,2.694047 +-0.485590,0.875791,-0.837034,-1.960506,0.611191,2.693569 +-0.486306,0.875235,-0.838147,-1.961063,0.612134,2.693013 +-0.487091,0.874602,-0.839223,-1.961695,0.613021,2.692380 +-0.487939,0.873897,-0.840257,-1.962400,0.613846,2.691675 +-0.488847,0.873123,-0.841244,-1.963174,0.614605,2.690902 +-0.489810,0.872285,-0.842178,-1.964012,0.615294,2.690063 +-0.490824,0.871386,-0.843054,-1.964911,0.615911,2.689164 +-0.491881,0.870431,-0.843868,-1.965866,0.616451,2.688209 +-0.492978,0.869426,-0.844617,-1.966871,0.616911,2.687204 +-0.494109,0.868375,-0.845295,-1.967922,0.617290,2.686153 +-0.495267,0.867284,-0.845899,-1.969013,0.617585,2.685062 +-0.496446,0.866158,-0.846426,-1.970139,0.617796,2.683936 +-0.497641,0.865004,-0.846874,-1.971293,0.617919,2.682783 +-0.498845,0.863828,-0.847239,-1.972469,0.617956,2.681606 +-0.500051,0.862635,-0.847521,-1.973662,0.617906,2.680414 +-0.501254,0.861433,-0.847718,-1.974865,0.617769,2.679211 +-0.502448,0.860226,-0.847828,-1.976071,0.617545,2.678004 +-0.503625,0.859022,-0.847851,-1.977275,0.617237,2.676800 +-0.504781,0.857826,-0.847787,-1.978471,0.616845,2.675604 +-0.505908,0.856646,-0.847636,-1.979651,0.616372,2.674424 +-0.507002,0.855486,-0.847400,-1.980811,0.615820,2.673265 +-0.508055,0.854354,-0.847078,-1.981943,0.615192,2.672132 +-0.509064,0.853255,-0.846674,-1.983042,0.614491,2.671033 +-0.510022,0.852195,-0.846189,-1.984102,0.613722,2.669973 +-0.510924,0.851179,-0.845625,-1.985118,0.612887,2.668957 +-0.511766,0.850212,-0.844986,-1.986085,0.611991,2.667990 +-0.512544,0.849301,-0.844275,-1.986997,0.611040,2.667079 +-0.513253,0.848448,-0.843495,-1.987849,0.610037,2.666226 +-0.513890,0.847660,-0.842651,-1.988637,0.608989,2.665438 +-0.514452,0.846939,-0.841747,-1.989358,0.607900,2.664718 +-0.514934,0.846291,-0.840788,-1.990007,0.606777,2.664069 +-0.515336,0.845717,-0.839778,-1.990580,0.605624,2.663495 +-0.515655,0.845221,-0.838724,-1.991076,0.604449,2.663000 +-0.515888,0.844807,-0.837630,-1.991490,0.603257,2.662585 +-0.516036,0.844475,-0.836502,-1.991822,0.602055,2.662253 +-0.516097,0.844227,-0.835347,-1.992070,0.600848,2.662006 +-0.516071,0.844066,-0.834169,-1.992231,0.599644,2.661844 +-0.515957,0.843991,-0.832976,-1.992306,0.598448,2.661769 +-0.515758,0.844003,-0.831773,-1.992294,0.597266,2.661782 +-0.515473,0.844103,-0.830568,-1.992194,0.596105,2.661881 +-0.515104,0.844289,-0.829365,-1.992008,0.594971,2.662067 +-0.514653,0.844560,-0.828171,-1.991737,0.593870,2.662338 +-0.514123,0.844916,-0.826993,-1.991381,0.592807,2.662694 +-0.513515,0.845354,-0.825837,-1.990944,0.591788,2.663132 +-0.512834,0.845871,-0.824708,-1.990426,0.590819,2.663650 +-0.512083,0.846467,-0.823613,-1.989831,0.589904,2.664245 +-0.511266,0.847136,-0.822558,-1.989161,0.589048,2.664914 +-0.510387,0.847876,-0.821547,-1.988421,0.588255,2.665654 +-0.509450,0.848683,-0.820586,-1.987614,0.587531,2.666461 +-0.508461,0.849553,-0.819681,-1.986745,0.586877,2.667331 +-0.507425,0.850480,-0.818835,-1.985817,0.586299,2.668258 +-0.506347,0.851461,-0.818054,-1.984836,0.585799,2.669239 +-0.505232,0.852490,-0.817340,-1.983807,0.585379,2.670268 +-0.504087,0.853562,-0.816699,-1.982735,0.585042,2.671340 +-0.502918,0.854671,-0.816133,-1.981626,0.584790,2.672449 +-0.501730,0.855812,-0.815646,-1.980485,0.584623,2.673590 +-0.500530,0.856978,-0.815239,-1.979319,0.584543,2.674756 +-0.499324,0.858163,-0.814916,-1.978134,0.584550,2.675941 +-0.498118,0.859362,-0.814677,-1.976935,0.584644,2.677140 +-0.496919,0.860567,-0.814524,-1.975730,0.584825,2.678345 +-0.495733,0.861773,-0.814457,-1.974524,0.585092,2.679552 +-0.494566,0.862974,-0.814478,-1.973323,0.585442,2.680752 +-0.493424,0.864163,-0.814586,-1.972134,0.585875,2.681941 +-0.492313,0.865333,-0.814780,-1.970964,0.586388,2.683111 +-0.491239,0.866480,-0.815059,-1.969817,0.586979,2.684258 +-0.490207,0.867596,-0.815423,-1.968701,0.587644,2.685374 +-0.489223,0.868676,-0.815868,-1.967621,0.588380,2.686454 +-0.488293,0.869715,-0.816393,-1.966582,0.589183,2.687493 +-0.487420,0.870707,-0.816995,-1.965591,0.590049,2.688485 +-0.486610,0.871646,-0.817671,-1.964651,0.590973,2.689424 +-0.485866,0.872528,-0.818417,-1.963769,0.591951,2.690307 +-0.485193,0.873349,-0.819230,-1.962948,0.592978,2.691127 +-0.484594,0.874104,-0.820105,-1.962193,0.594047,2.691882 +-0.484071,0.874788,-0.821037,-1.961509,0.595154,2.692567 +-0.483629,0.875400,-0.822023,-1.960897,0.596293,2.693178 +-0.483269,0.875934,-0.823055,-1.960363,0.597457,2.693713 +-0.482993,0.876389,-0.824130,-1.959908,0.598642,2.694168 +-0.482803,0.876763,-0.825242,-1.959534,0.599840,2.694541 +-0.482699,0.877052,-0.826385,-1.959245,0.601045,2.694830 +-0.482682,0.877257,-0.827552,-1.959041,0.602251,2.695035 +-0.482752,0.877374,-0.828738,-1.958923,0.603452,2.695153 +-0.482909,0.877405,-0.829937,-1.958892,0.604642,2.695183 +-0.483152,0.877349,-0.831142,-1.958948,0.605814,2.695127 +-0.483479,0.877206,-0.832347,-1.959091,0.606962,2.694984 +-0.483890,0.876977,-0.833546,-1.959320,0.608080,2.694755 +-0.484381,0.876663,-0.834732,-1.959634,0.609163,2.694441 +-0.484951,0.876265,-0.835900,-1.960032,0.610204,2.694044 +-0.485595,0.875787,-0.837043,-1.960510,0.611199,2.693565 +-0.486312,0.875230,-0.838156,-1.961067,0.612142,2.693008 +-0.487097,0.874597,-0.839231,-1.961700,0.613027,2.692375 +-0.487946,0.873891,-0.840265,-1.962406,0.613852,2.691670 +-0.488855,0.873117,-0.841251,-1.963180,0.614611,2.690895 +-0.489818,0.872278,-0.842185,-1.964019,0.615300,2.690056 +-0.490832,0.871379,-0.843061,-1.964919,0.615915,2.689157 +-0.491890,0.870423,-0.843875,-1.965874,0.616455,2.688202 +-0.492987,0.869418,-0.844622,-1.966880,0.616915,2.687196 +-0.494118,0.868366,-0.845300,-1.967931,0.617293,2.686144 +-0.495276,0.867275,-0.845903,-1.969022,0.617587,2.685053 +-0.496455,0.866149,-0.846430,-1.970148,0.617797,2.683927 +-0.497650,0.864995,-0.846877,-1.971302,0.617920,2.682773 +-0.498854,0.863819,-0.847242,-1.972479,0.617956,2.681597 +-0.500061,0.862626,-0.847523,-1.973671,0.617905,2.680404 +-0.501264,0.861423,-0.847719,-1.974874,0.617767,2.679201 +-0.502457,0.860216,-0.847828,-1.976081,0.617543,2.677994 +-0.503635,0.859012,-0.847851,-1.977285,0.617234,2.676790 +-0.504790,0.857817,-0.847786,-1.978480,0.616842,2.675595 +-0.505917,0.856636,-0.847635,-1.979661,0.616368,2.674415 +-0.507010,0.855477,-0.847398,-1.980820,0.615815,2.673255 +-0.508063,0.854345,-0.847076,-1.981952,0.615187,2.672123 +-0.509071,0.853246,-0.846671,-1.983051,0.614486,2.671025 +-0.510029,0.852186,-0.846185,-1.984111,0.613715,2.669965 +-0.510931,0.851171,-0.845620,-1.985126,0.612880,2.668949 +-0.511773,0.850205,-0.844981,-1.986092,0.611984,2.667983 +-0.512550,0.849294,-0.844269,-1.987004,0.611032,2.667072 +-0.513259,0.848442,-0.843489,-1.987855,0.610029,2.666220 +-0.513895,0.847654,-0.842644,-1.988643,0.608980,2.665432 +-0.514456,0.846934,-0.841740,-1.989363,0.607891,2.664712 +-0.514938,0.846286,-0.840780,-1.990011,0.606768,2.664064 +-0.515339,0.845713,-0.839770,-1.990584,0.605615,2.663491 +-0.515657,0.845218,-0.838715,-1.991079,0.604440,2.662996 +-0.515890,0.844804,-0.837621,-1.991493,0.603248,2.662582 +-0.516037,0.844472,-0.836493,-1.991825,0.602045,2.662251 +-0.516097,0.844226,-0.835337,-1.992071,0.600839,2.662004 +-0.516070,0.844065,-0.834160,-1.992232,0.599634,2.661843 +-0.515956,0.843991,-0.832967,-1.992306,0.598438,2.661769 +-0.515756,0.844004,-0.831764,-1.992293,0.597257,2.661782 +-0.515470,0.844104,-0.830558,-1.992193,0.596096,2.661882 +-0.515101,0.844290,-0.829355,-1.992007,0.594962,2.662069 +-0.514649,0.844563,-0.828162,-1.991735,0.593861,2.662341 +-0.514118,0.844919,-0.826984,-1.991378,0.592799,2.662697 +-0.513510,0.845357,-0.825828,-1.990940,0.591780,2.663136 +-0.512829,0.845876,-0.824700,-1.990421,0.590811,2.663654 +-0.512077,0.846472,-0.823605,-1.989825,0.589897,2.664250 +-0.511259,0.847142,-0.822550,-1.989156,0.589041,2.664920 +-0.510380,0.847882,-0.821539,-1.988415,0.588249,2.665660 +-0.509443,0.848690,-0.820579,-1.987607,0.587525,2.666468 +-0.508453,0.849560,-0.819674,-1.986737,0.586873,2.667338 +-0.507417,0.850488,-0.818829,-1.985809,0.586295,2.668266 +-0.506338,0.851469,-0.818048,-1.984828,0.585795,2.669247 +-0.505223,0.852499,-0.817335,-1.983798,0.585376,2.670277 +-0.504078,0.853571,-0.816694,-1.982726,0.585040,2.671349 +-0.502908,0.854680,-0.816129,-1.981617,0.584788,2.672458 +-0.501720,0.855821,-0.815642,-1.980476,0.584622,2.673599 +-0.500520,0.856987,-0.815236,-1.979310,0.584543,2.674765 +-0.499314,0.858173,-0.814913,-1.978125,0.584551,2.675951 +-0.498108,0.859371,-0.814675,-1.976926,0.584646,2.677149 +-0.496909,0.860577,-0.814523,-1.975720,0.584827,2.678355 +-0.495723,0.861783,-0.814457,-1.974514,0.585094,2.679561 +-0.494556,0.862983,-0.814478,-1.973314,0.585445,2.680762 +-0.493415,0.864172,-0.814587,-1.972125,0.585879,2.681950 +-0.492304,0.865342,-0.814782,-1.970955,0.586393,2.683121 +-0.491230,0.866489,-0.815062,-1.969808,0.586984,2.684267 +-0.490199,0.867605,-0.815426,-1.968692,0.587650,2.685383 +-0.489216,0.868685,-0.815872,-1.967612,0.588386,2.686463 +-0.488286,0.869723,-0.816398,-1.966574,0.589190,2.687501 +-0.487413,0.870714,-0.817000,-1.965583,0.590056,2.688492 +-0.486603,0.871653,-0.817677,-1.964644,0.590981,2.689431 +-0.485860,0.872535,-0.818424,-1.963762,0.591959,2.690313 +-0.485188,0.873355,-0.819237,-1.962942,0.592986,2.691134 +-0.484589,0.874109,-0.820112,-1.962188,0.594056,2.691888 +-0.484068,0.874794,-0.821045,-1.961503,0.595163,2.692572 +-0.483626,0.875404,-0.822031,-1.960893,0.596302,2.693182 +-0.483267,0.875938,-0.823064,-1.960359,0.597467,2.693716 +-0.482991,0.876393,-0.824139,-1.959904,0.598651,2.694171 +-0.482802,0.876765,-0.825251,-1.959532,0.599849,2.694544 +-0.482698,0.877054,-0.826394,-1.959243,0.601055,2.694832 +-0.482682,0.877258,-0.827561,-1.959039,0.602261,2.695036 +-0.482753,0.877375,-0.828748,-1.958922,0.603462,2.695153 +-0.482911,0.877405,-0.829946,-1.958892,0.604651,2.695183 +-0.483154,0.877348,-0.831151,-1.958949,0.605823,2.695126 +-0.483482,0.877205,-0.832357,-1.959093,0.606971,2.694983 +-0.483893,0.876975,-0.833555,-1.959322,0.608089,2.694753 +-0.484385,0.876660,-0.834742,-1.959637,0.609171,2.694438 +-0.484955,0.876262,-0.835909,-1.960035,0.610212,2.694040 +-0.485601,0.875783,-0.837052,-1.960514,0.611207,2.693561 +-0.486318,0.875225,-0.838164,-1.961072,0.612149,2.693003 +-0.487104,0.874591,-0.839240,-1.961706,0.613034,2.692370 +-0.487953,0.873885,-0.840273,-1.962412,0.613858,2.691664 +-0.488862,0.873111,-0.841259,-1.963187,0.614616,2.690889 +-0.489826,0.872271,-0.842192,-1.964026,0.615305,2.690049 +-0.490840,0.871371,-0.843068,-1.964926,0.615920,2.689149 +-0.491899,0.870416,-0.843881,-1.965882,0.616459,2.688194 +-0.492996,0.869409,-0.844628,-1.966888,0.616918,2.687188 +-0.494127,0.868358,-0.845305,-1.967939,0.617296,2.686136 +-0.495285,0.867266,-0.845908,-1.969031,0.617589,2.685044 +-0.496465,0.866140,-0.846434,-1.970157,0.617798,2.683918 +-0.497660,0.864986,-0.846880,-1.971311,0.617921,2.682764 +-0.498864,0.863809,-0.847245,-1.972488,0.617956,2.681587 +-0.500070,0.862616,-0.847525,-1.973681,0.617904,2.680394 +-0.501274,0.861413,-0.847720,-1.974884,0.617766,2.679192 +-0.502467,0.860207,-0.847829,-1.976090,0.617541,2.677985 +-0.503644,0.859003,-0.847851,-1.977295,0.617231,2.676781 +-0.504799,0.857807,-0.847785,-1.978490,0.616838,2.675585 +-0.505926,0.856627,-0.847633,-1.979670,0.616364,2.674405 +-0.507019,0.855468,-0.847395,-1.980829,0.615811,2.673246 +-0.508072,0.854336,-0.847073,-1.981961,0.615182,2.672115 +-0.509079,0.853238,-0.846667,-1.983059,0.614480,2.671016 +-0.510036,0.852178,-0.846180,-1.984119,0.613709,2.669956 +-0.510938,0.851163,-0.845616,-1.985134,0.612873,2.668941 +-0.511779,0.850197,-0.844975,-1.986100,0.611977,2.667975 +-0.512556,0.849286,-0.844263,-1.987011,0.611024,2.667065 +-0.513264,0.848435,-0.843482,-1.987862,0.610021,2.666213 +-0.513900,0.847648,-0.842637,-1.988649,0.608972,2.665426 +-0.514460,0.846928,-0.841732,-1.989369,0.607882,2.664707 +-0.514941,0.846281,-0.840772,-1.990016,0.606758,2.664059 +-0.515342,0.845708,-0.839762,-1.990589,0.605606,2.663487 +-0.515659,0.845214,-0.838707,-1.991083,0.604430,2.662992 +-0.515891,0.844801,-0.837612,-1.991496,0.603238,2.662579 +-0.516038,0.844470,-0.836484,-1.991827,0.602036,2.662248 +-0.516097,0.844224,-0.835328,-1.992073,0.600829,2.662002 +-0.516070,0.844064,-0.834150,-1.992233,0.599625,2.661842 +-0.515955,0.843991,-0.832957,-1.992307,0.598429,2.661769 +-0.515754,0.844004,-0.831754,-1.992293,0.597247,2.661782 +-0.515467,0.844105,-0.830548,-1.992192,0.596087,2.661883 +-0.515097,0.844292,-0.829346,-1.992005,0.594953,2.662070 +-0.514645,0.844565,-0.828152,-1.991732,0.593853,2.662343 +-0.514113,0.844922,-0.826975,-1.991375,0.592790,2.662700 +-0.513505,0.845361,-0.825819,-1.990936,0.591772,2.663139 +-0.512823,0.845880,-0.824691,-1.990417,0.590804,2.663658 +-0.512071,0.846477,-0.823596,-1.989820,0.589889,2.664255 +-0.511252,0.847147,-0.822541,-1.989150,0.589034,2.664925 +-0.510372,0.847888,-0.821531,-1.988409,0.588243,2.665667 +-0.509435,0.848696,-0.820572,-1.987601,0.587520,2.666475 +-0.508445,0.849567,-0.819667,-1.986730,0.586868,2.667345 +-0.507408,0.850495,-0.818822,-1.985802,0.586291,2.668274 +-0.506329,0.851477,-0.818042,-1.984820,0.585792,2.669255 +-0.505214,0.852507,-0.817330,-1.983790,0.585373,2.670285 +-0.504069,0.853580,-0.816690,-1.982718,0.585038,2.671358 +-0.502899,0.854689,-0.816125,-1.981608,0.584787,2.672467 +-0.501711,0.855830,-0.815639,-1.980467,0.584621,2.673608 +-0.500511,0.856996,-0.815233,-1.979301,0.584543,2.674775 +-0.499305,0.858182,-0.814911,-1.978115,0.584551,2.675960 +-0.498099,0.859381,-0.814673,-1.976916,0.584647,2.677159 +-0.496900,0.860586,-0.814522,-1.975711,0.584829,2.678365 +-0.495714,0.861793,-0.814457,-1.974505,0.585096,2.679571 +-0.494547,0.862993,-0.814479,-1.973304,0.585448,2.680771 +-0.493406,0.864181,-0.814588,-1.972116,0.585883,2.681960 +-0.492295,0.865352,-0.814784,-1.970945,0.586397,2.683130 +-0.491222,0.866498,-0.815064,-1.969799,0.586989,2.684276 +-0.490191,0.867613,-0.815429,-1.968684,0.587655,2.685392 +-0.489208,0.868693,-0.815876,-1.967604,0.588392,2.686471 +-0.488278,0.869731,-0.816402,-1.966566,0.589196,2.687509 +-0.487407,0.870722,-0.817005,-1.965575,0.590063,2.688500 +-0.486597,0.871661,-0.817683,-1.964637,0.590988,2.689439 +-0.485855,0.872542,-0.818430,-1.963755,0.591967,2.690320 +-0.485183,0.873362,-0.819244,-1.962936,0.592994,2.691140 +-0.484585,0.874115,-0.820119,-1.962182,0.594064,2.691893 +-0.484064,0.874799,-0.821053,-1.961498,0.595172,2.692577 +-0.483623,0.875409,-0.822039,-1.960888,0.596311,2.693187 +-0.483264,0.875942,-0.823072,-1.960355,0.597476,2.693720 +-0.482990,0.876396,-0.824148,-1.959901,0.598661,2.694174 +-0.482801,0.876768,-0.825260,-1.959529,0.599859,2.694546 +-0.482698,0.877056,-0.826403,-1.959241,0.601064,2.694834 +-0.482682,0.877259,-0.827571,-1.959038,0.602271,2.695037 +-0.482754,0.877376,-0.828757,-1.958922,0.603472,2.695154 +-0.482912,0.877405,-0.829956,-1.958892,0.604661,2.695183 +-0.483156,0.877347,-0.831161,-1.958950,0.605832,2.695126 +-0.483485,0.877203,-0.832366,-1.959094,0.606980,2.694981 +-0.483897,0.876973,-0.833565,-1.959325,0.608098,2.694751 +-0.484390,0.876657,-0.834751,-1.959640,0.609180,2.694435 +-0.484960,0.876258,-0.835919,-1.960039,0.610220,2.694037 +-0.485606,0.875779,-0.837061,-1.960518,0.611214,2.693557 +-0.486324,0.875220,-0.838173,-1.961077,0.612156,2.692998 +-0.487110,0.874586,-0.839248,-1.961711,0.613041,2.692364 +-0.487960,0.873880,-0.840281,-1.962418,0.613864,2.691658 +-0.488870,0.873104,-0.841267,-1.963193,0.614622,2.690882 +-0.489834,0.872264,-0.842199,-1.964033,0.615310,2.690042 +-0.490848,0.871364,-0.843074,-1.964933,0.615925,2.689142 +-0.491907,0.870408,-0.843887,-1.965889,0.616463,2.688186 +-0.493005,0.869401,-0.844634,-1.966896,0.616921,2.687179 +-0.494136,0.868349,-0.845310,-1.967948,0.617298,2.686127 +-0.495295,0.867257,-0.845912,-1.969040,0.617591,2.685035 +-0.496474,0.866131,-0.846438,-1.970166,0.617799,2.683909 +-0.497669,0.864977,-0.846883,-1.971321,0.617921,2.682755 +-0.498873,0.863800,-0.847247,-1.972497,0.617956,2.681578 +-0.500080,0.862607,-0.847527,-1.973690,0.617903,2.680385 +-0.501283,0.861404,-0.847721,-1.974893,0.617764,2.679182 +-0.502476,0.860197,-0.847829,-1.976100,0.617539,2.677975 +-0.503653,0.858993,-0.847850,-1.977304,0.617228,2.676771 +-0.504808,0.857798,-0.847784,-1.978499,0.616835,2.675576 +-0.505935,0.856618,-0.847632,-1.979679,0.616360,2.674396 +-0.507027,0.855459,-0.847393,-1.980838,0.615806,2.673237 +-0.508080,0.854328,-0.847070,-1.981970,0.615176,2.672106 +-0.509087,0.853229,-0.846663,-1.983068,0.614474,2.671007 +-0.510044,0.852170,-0.846176,-1.984127,0.613703,2.669948 +-0.510945,0.851155,-0.845611,-1.985142,0.612866,2.668933 +-0.511786,0.850190,-0.844970,-1.986107,0.611969,2.667968 +-0.512562,0.849279,-0.844257,-1.987018,0.611017,2.667058 +-0.513270,0.848429,-0.843476,-1.987868,0.610013,2.666207 +-0.513905,0.847642,-0.842630,-1.988655,0.608963,2.665420 +-0.514464,0.846923,-0.841725,-1.989374,0.607874,2.664701 +-0.514945,0.846276,-0.840764,-1.990021,0.606749,2.664054 +-0.515345,0.845704,-0.839754,-1.990593,0.605596,2.663482 +-0.515661,0.845211,-0.838698,-1.991086,0.604421,2.662989 +-0.515893,0.844798,-0.837603,-1.991499,0.603229,2.662576 +-0.516039,0.844468,-0.836475,-1.991829,0.602026,2.662246 +-0.516097,0.844222,-0.835319,-1.992075,0.600819,2.662001 +-0.516069,0.844063,-0.834141,-1.992234,0.599615,2.661841 +-0.515954,0.843990,-0.832947,-1.992307,0.598419,2.661769 +-0.515752,0.844005,-0.831745,-1.992292,0.597238,2.661783 +-0.515465,0.844106,-0.830539,-1.992191,0.596078,2.661884 +-0.515094,0.844294,-0.829336,-1.992003,0.594944,2.662072 +-0.514641,0.844568,-0.828143,-1.991730,0.593844,2.662346 +-0.514109,0.844925,-0.826965,-1.991372,0.592782,2.662703 +-0.513500,0.845365,-0.825810,-1.990932,0.591764,2.663143 +-0.512817,0.845885,-0.824682,-1.990412,0.590796,2.663663 +-0.512065,0.846482,-0.823588,-1.989815,0.589882,2.664260 +-0.511246,0.847153,-0.822533,-1.989144,0.589028,2.664931 +-0.510365,0.847895,-0.821524,-1.988403,0.588237,2.665673 +-0.509427,0.848703,-0.820564,-1.987594,0.587514,2.666481 +-0.508437,0.849574,-0.819660,-1.986723,0.586863,2.667352 +-0.507400,0.850503,-0.818816,-1.985794,0.586286,2.668281 +-0.506321,0.851485,-0.818036,-1.984812,0.585788,2.669263 +-0.505205,0.852515,-0.817324,-1.983782,0.585370,2.670294 +-0.504060,0.853588,-0.816685,-1.982709,0.585035,2.671366 +-0.502890,0.854698,-0.816121,-1.981599,0.584785,2.672476 +-0.501701,0.855839,-0.815635,-1.980458,0.584620,2.673617 +-0.500501,0.857006,-0.815230,-1.979291,0.584542,2.674784 +-0.499295,0.858192,-0.814909,-1.978106,0.584552,2.675970 +-0.498089,0.859390,-0.814672,-1.976907,0.584648,2.677169 +-0.496890,0.860596,-0.814521,-1.975701,0.584831,2.678374 +-0.495705,0.861802,-0.814457,-1.974495,0.585099,2.679580 +-0.494538,0.863002,-0.814480,-1.973295,0.585452,2.680781 +-0.493397,0.864191,-0.814589,-1.972106,0.585887,2.681969 +-0.492287,0.865361,-0.814785,-1.970936,0.586402,2.683139 +-0.491213,0.866507,-0.815067,-1.969790,0.586994,2.684285 +-0.490183,0.867622,-0.815432,-1.968675,0.587661,2.685400 +-0.489201,0.868702,-0.815880,-1.967596,0.588398,2.686480 +-0.488271,0.869739,-0.816407,-1.966558,0.589203,2.687517 +-0.487400,0.870730,-0.817011,-1.965567,0.590070,2.688508 +-0.486591,0.871668,-0.817688,-1.964629,0.590996,2.689446 +-0.485849,0.872549,-0.818436,-1.963748,0.591975,2.690327 +-0.485178,0.873368,-0.819250,-1.962929,0.593003,2.691146 +-0.484580,0.874121,-0.820127,-1.962176,0.594073,2.691899 +-0.484060,0.874804,-0.821060,-1.961493,0.595181,2.692582 +-0.483620,0.875413,-0.822047,-1.960884,0.596320,2.693192 +-0.483262,0.875946,-0.823081,-1.960351,0.597486,2.693724 +-0.482988,0.876399,-0.824157,-1.959898,0.598670,2.694178 +-0.482799,0.876771,-0.825269,-1.959526,0.599868,2.694549 +-0.482697,0.877058,-0.826412,-1.959239,0.601074,2.694836 +-0.482683,0.877260,-0.827580,-1.959037,0.602280,2.695039 +-0.482755,0.877376,-0.828767,-1.958921,0.603481,2.695154 +-0.482914,0.877405,-0.829966,-1.958892,0.604670,2.695183 +-0.483159,0.877347,-0.831171,-1.958950,0.605842,2.695125 +-0.483488,0.877202,-0.832376,-1.959096,0.606989,2.694980 +-0.483901,0.876970,-0.833574,-1.959327,0.608107,2.694749 +-0.484394,0.876654,-0.834761,-1.959643,0.609188,2.694432 +-0.484965,0.876255,-0.835928,-1.960042,0.610228,2.694033 +-0.485612,0.875775,-0.837070,-1.960523,0.611222,2.693553 +-0.486330,0.875216,-0.838182,-1.961082,0.612163,2.692994 +-0.487117,0.874581,-0.839257,-1.961716,0.613048,2.692359 +-0.487967,0.873874,-0.840289,-1.962423,0.613871,2.691652 +-0.488877,0.873098,-0.841274,-1.963199,0.614628,2.690876 +-0.489842,0.872257,-0.842206,-1.964040,0.615315,2.690035 +-0.490857,0.871356,-0.843081,-1.964941,0.615929,2.689135 +-0.491916,0.870400,-0.843893,-1.965897,0.616467,2.688178 +-0.493014,0.869393,-0.844639,-1.966904,0.616925,2.687171 +-0.494145,0.868341,-0.845315,-1.967957,0.617301,2.686119 +-0.495304,0.867248,-0.845917,-1.969049,0.617593,2.685027 +-0.496484,0.866122,-0.846442,-1.970175,0.617801,2.683900 +-0.497679,0.864967,-0.846887,-1.971330,0.617922,2.682745 +-0.498883,0.863790,-0.847250,-1.972507,0.617956,2.681568 +-0.500090,0.862597,-0.847529,-1.973700,0.617903,2.680375 +-0.501293,0.861394,-0.847723,-1.974903,0.617763,2.679172 +-0.502486,0.860187,-0.847830,-1.976110,0.617537,2.677966 +-0.503663,0.858983,-0.847850,-1.977314,0.617226,2.676762 +-0.504817,0.857788,-0.847784,-1.978509,0.616831,2.675567 +-0.505944,0.856608,-0.847630,-1.979689,0.616356,2.674387 +-0.507036,0.855450,-0.847391,-1.980847,0.615801,2.673228 +-0.508088,0.854319,-0.847067,-1.981979,0.615171,2.672097 +-0.509095,0.853221,-0.846660,-1.983077,0.614468,2.670999 +-0.510051,0.852162,-0.846172,-1.984136,0.613696,2.669940 +-0.510952,0.851147,-0.845606,-1.985150,0.612859,2.668925 +-0.511792,0.850182,-0.844964,-1.986115,0.611962,2.667961 +-0.512568,0.849272,-0.844251,-1.987025,0.611009,2.667051 +-0.513275,0.848422,-0.843469,-1.987875,0.610005,2.666200 +-0.513909,0.847636,-0.842623,-1.988661,0.608955,2.665414 +-0.514468,0.846918,-0.841717,-1.989380,0.607865,2.664696 +-0.514949,0.846271,-0.840756,-1.990026,0.606740,2.664049 +-0.515348,0.845700,-0.839745,-1.990597,0.605587,2.663478 +-0.515663,0.845207,-0.838690,-1.991090,0.604411,2.662985 +-0.515894,0.844795,-0.837595,-1.991502,0.603219,2.662573 +-0.516039,0.844466,-0.836466,-1.991832,0.602016,2.662244 +-0.516097,0.844221,-0.835310,-1.992076,0.600810,2.661999 +-0.516068,0.844062,-0.834131,-1.992235,0.599605,2.661840 +-0.515952,0.843990,-0.832938,-1.992307,0.598410,2.661768 +-0.515750,0.844005,-0.831735,-1.992292,0.597229,2.661783 +-0.515462,0.844107,-0.830529,-1.992190,0.596069,2.661886 +-0.515091,0.844296,-0.829327,-1.992001,0.594936,2.662074 +-0.514637,0.844570,-0.828133,-1.991727,0.593835,2.662348 +-0.514104,0.844928,-0.826956,-1.991369,0.592774,2.662707 +-0.513495,0.845369,-0.825801,-1.990928,0.591757,2.663147 +-0.512811,0.845889,-0.824673,-1.990408,0.590789,2.663667 +-0.512058,0.846487,-0.823579,-1.989810,0.589875,2.664265 +-0.511239,0.847158,-0.822525,-1.989139,0.589021,2.664937 +-0.510358,0.847901,-0.821516,-1.988396,0.588231,2.665679 +-0.509420,0.848710,-0.820557,-1.987587,0.587509,2.666488 +-0.508429,0.849581,-0.819653,-1.986716,0.586858,2.667359 +-0.507391,0.850511,-0.818809,-1.985786,0.586282,2.668289 +-0.506312,0.851493,-0.818030,-1.984804,0.585784,2.669271 +-0.505196,0.852524,-0.817319,-1.983773,0.585367,2.670302 +-0.504050,0.853597,-0.816680,-1.982700,0.585033,2.671375 +-0.502880,0.854707,-0.816117,-1.981590,0.584783,2.672485 +-0.501692,0.855849,-0.815632,-1.980449,0.584619,2.673627 +-0.500491,0.857015,-0.815228,-1.979282,0.584542,2.674793 +-0.499285,0.858201,-0.814907,-1.978096,0.584552,2.675979 +-0.498080,0.859400,-0.814670,-1.976897,0.584649,2.677178 +-0.496881,0.860606,-0.814520,-1.975692,0.584832,2.678384 +-0.495695,0.861812,-0.814457,-1.974485,0.585101,2.679590 +-0.494529,0.863012,-0.814480,-1.973285,0.585455,2.680790 +-0.493388,0.864200,-0.814591,-1.972097,0.585890,2.681978 +-0.492278,0.865370,-0.814787,-1.970927,0.586406,2.683148 +-0.491205,0.866516,-0.815070,-1.969781,0.586999,2.684294 +-0.490175,0.867631,-0.815436,-1.968666,0.587666,2.685409 +-0.489193,0.868710,-0.815884,-1.967587,0.588405,2.686488 +-0.488264,0.869747,-0.816411,-1.966550,0.589210,2.687525 +-0.487393,0.870737,-0.817016,-1.965560,0.590077,2.688516 +-0.486585,0.871675,-0.817694,-1.964622,0.591004,2.689453 +-0.485843,0.872556,-0.818442,-1.963742,0.591983,2.690334 +-0.485172,0.873374,-0.819257,-1.962923,0.593011,2.691152 +-0.484576,0.874127,-0.820134,-1.962171,0.594082,2.691905 +-0.484056,0.874809,-0.821068,-1.961488,0.595190,2.692587 +-0.483617,0.875418,-0.822055,-1.960879,0.596330,2.693196 +-0.483259,0.875950,-0.823089,-1.960347,0.597495,2.693728 +-0.482986,0.876403,-0.824165,-1.959894,0.598680,2.694181 +-0.482798,0.876773,-0.825278,-1.959524,0.599878,2.694551 +-0.482697,0.877060,-0.826421,-1.959237,0.601083,2.694838 +-0.482683,0.877262,-0.827589,-1.959036,0.602290,2.695040 +-0.482756,0.877377,-0.828776,-1.958920,0.603491,2.695155 +-0.482915,0.877405,-0.829975,-1.958892,0.604680,2.695183 +-0.483161,0.877346,-0.831180,-1.958951,0.605851,2.695124 +-0.483491,0.877200,-0.832385,-1.959097,0.606998,2.694978 +-0.483904,0.876968,-0.833584,-1.959329,0.608115,2.694746 +-0.484398,0.876651,-0.834770,-1.959646,0.609197,2.694430 +-0.484970,0.876251,-0.835937,-1.960046,0.610237,2.694030 +-0.485617,0.875770,-0.837079,-1.960527,0.611230,2.693549 +-0.486336,0.875211,-0.838190,-1.961086,0.612171,2.692989 +-0.487123,0.874575,-0.839265,-1.961722,0.613055,2.692354 +-0.487974,0.873868,-0.840297,-1.962429,0.613877,2.691646 +-0.488885,0.873091,-0.841282,-1.963206,0.614634,2.690870 +-0.489850,0.872250,-0.842214,-1.964047,0.615320,2.690028 +-0.490865,0.871349,-0.843088,-1.964948,0.615934,2.689127 +-0.491924,0.870392,-0.843900,-1.965905,0.616471,2.688170 +-0.493023,0.869385,-0.844645,-1.966912,0.616928,2.687163 +-0.494154,0.868332,-0.845320,-1.967965,0.617304,2.686110 +-0.495313,0.867240,-0.845921,-1.969058,0.617595,2.685018 +-0.496493,0.866113,-0.846445,-1.970184,0.617802,2.683891 +-0.497688,0.864958,-0.846890,-1.971339,0.617922,2.682736 +-0.498893,0.863781,-0.847252,-1.972516,0.617956,2.681559 +-0.500099,0.862588,-0.847531,-1.973709,0.617902,2.680366 +-0.501302,0.861385,-0.847724,-1.974913,0.617761,2.679163 +-0.502495,0.860178,-0.847830,-1.976119,0.617535,2.677956 +-0.503672,0.858974,-0.847850,-1.977323,0.617223,2.676752 +-0.504826,0.857779,-0.847783,-1.978518,0.616828,2.675557 +-0.505952,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-0.507044,0.855441,-0.847389,-1.980856,0.615797,2.673219 +-0.508096,0.854310,-0.847064,-1.981987,0.615166,2.672088 +-0.509103,0.853212,-0.846656,-1.983085,0.614462,2.670990 +-0.510059,0.852153,-0.846168,-1.984144,0.613690,2.669932 +-0.510959,0.851139,-0.845601,-1.985158,0.612852,2.668917 +-0.511799,0.850175,-0.844959,-1.986122,0.611955,2.667953 +-0.512574,0.849265,-0.844245,-1.987032,0.611001,2.667044 +-0.513280,0.848416,-0.843463,-1.987882,0.609996,2.666194 +-0.513914,0.847630,-0.842616,-1.988667,0.608946,2.665408 +-0.514472,0.846912,-0.841710,-1.989385,0.607856,2.664690 +-0.514952,0.846266,-0.840749,-1.990031,0.606731,2.664045 +-0.515350,0.845696,-0.839737,-1.990601,0.605578,2.663474 +-0.515666,0.845203,-0.838681,-1.991094,0.604402,2.662982 +-0.515896,0.844792,-0.837586,-1.991505,0.603210,2.662570 +-0.516040,0.844463,-0.836457,-1.991834,0.602007,2.662241 +-0.516098,0.844219,-0.835300,-1.992078,0.600800,2.661997 +-0.516068,0.844061,-0.834122,-1.992236,0.599596,2.661839 +-0.515951,0.843990,-0.832928,-1.992307,0.598400,2.661768 +-0.515748,0.844006,-0.831725,-1.992291,0.597219,2.661784 +-0.515460,0.844108,-0.830520,-1.992189,0.596059,2.661887 +-0.515087,0.844298,-0.829317,-1.991999,0.594927,2.662076 +-0.514633,0.844573,-0.828124,-1.991724,0.593827,2.662351 +-0.514100,0.844932,-0.826947,-1.991366,0.592766,2.662710 +-0.513490,0.845373,-0.825791,-1.990924,0.591749,2.663151 +-0.512806,0.845894,-0.824664,-1.990403,0.590781,2.663672 +-0.512052,0.846492,-0.823571,-1.989805,0.589868,2.664270 +-0.511232,0.847164,-0.822517,-1.989133,0.589015,2.664942 +-0.510351,0.847907,-0.821508,-1.988390,0.588225,2.665685 +-0.509412,0.848716,-0.820549,-1.987581,0.587503,2.666495 +-0.508421,0.849588,-0.819646,-1.986709,0.586853,2.667367 +-0.507383,0.850518,-0.818803,-1.985779,0.586278,2.668296 +-0.506303,0.851501,-0.818024,-1.984796,0.585781,2.669279 +-0.505187,0.852532,-0.817313,-1.983765,0.585364,2.670310 +-0.504041,0.853606,-0.816675,-1.982692,0.585031,2.671384 +-0.502871,0.854716,-0.816112,-1.981581,0.584782,2.672494 +-0.501682,0.855858,-0.815628,-1.980439,0.584618,2.673636 +-0.500482,0.857025,-0.815225,-1.979273,0.584542,2.674803 +-0.499276,0.858211,-0.814904,-1.978087,0.584552,2.675989 +-0.498070,0.859410,-0.814669,-1.976888,0.584650,2.677188 +-0.496871,0.860615,-0.814519,-1.975682,0.584834,2.678393 +-0.495686,0.861821,-0.814456,-1.974476,0.585104,2.679599 +-0.494520,0.863022,-0.814481,-1.973276,0.585458,2.680800 +-0.493379,0.864210,-0.814592,-1.972088,0.585894,2.681988 +-0.492269,0.865379,-0.814789,-1.970918,0.586410,2.683158 +-0.491197,0.866525,-0.815072,-1.969772,0.587004,2.684303 +-0.490167,0.867640,-0.815439,-1.968657,0.587672,2.685418 +-0.489185,0.868718,-0.815887,-1.967579,0.588411,2.686497 +-0.488257,0.869755,-0.816416,-1.966542,0.589216,2.687534 +-0.487387,0.870745,-0.817021,-1.965552,0.590085,2.688523 +-0.486579,0.871682,-0.817700,-1.964615,0.591011,2.689460 +-0.485838,0.872562,-0.818449,-1.963735,0.591991,2.690340 +-0.485167,0.873380,-0.819264,-1.962917,0.593019,2.691159 +-0.484571,0.874132,-0.820141,-1.962165,0.594090,2.691911 +-0.484052,0.874814,-0.821076,-1.961483,0.595199,2.692592 +-0.483613,0.875423,-0.822063,-1.960875,0.596339,2.693201 +-0.483257,0.875954,-0.823097,-1.960343,0.597504,2.693732 +-0.482984,0.876406,-0.824174,-1.959891,0.598689,2.694184 +-0.482797,0.876776,-0.825287,-1.959521,0.599888,2.694554 +-0.482697,0.877062,-0.826431,-1.959235,0.601093,2.694840 +-0.482683,0.877263,-0.827599,-1.959034,0.602299,2.695041 +-0.482757,0.877377,-0.828786,-1.958920,0.603500,2.695155 +-0.482917,0.877405,-0.829985,-1.958892,0.604689,2.695183 +-0.483163,0.877345,-0.831190,-1.958952,0.605860,2.695123 +-0.483494,0.877199,-0.832395,-1.959099,0.607007,2.694977 +-0.483908,0.876966,-0.833593,-1.959331,0.608124,2.694744 +-0.484402,0.876649,-0.834779,-1.959649,0.609205,2.694427 +-0.484975,0.876248,-0.835946,-1.960049,0.610245,2.694026 +-0.485623,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-0.486342,0.875206,-0.838199,-1.961091,0.612178,2.692984 +-0.487130,0.874570,-0.839273,-1.961727,0.613061,2.692348 +-0.487981,0.873862,-0.840305,-1.962435,0.613883,2.691640 +-0.488892,0.873085,-0.841289,-1.963212,0.614639,2.690863 +-0.489858,0.872243,-0.842221,-1.964054,0.615326,2.690022 +-0.490873,0.871342,-0.843094,-1.964956,0.615938,2.689120 +-0.491933,0.870384,-0.843906,-1.965913,0.616475,2.688163 +-0.493032,0.869377,-0.844651,-1.966921,0.616931,2.687155 +-0.494163,0.868324,-0.845325,-1.967974,0.617306,2.686102 +-0.495322,0.867231,-0.845926,-1.969066,0.617597,2.685009 +-0.496503,0.866104,-0.846449,-1.970193,0.617803,2.683882 +-0.497698,0.864949,-0.846893,-1.971348,0.617923,2.682727 +-0.498902,0.863771,-0.847255,-1.972526,0.617956,2.681550 +-0.500109,0.862578,-0.847533,-1.973719,0.617901,2.680356 +-0.501312,0.861375,-0.847725,-1.974922,0.617760,2.679153 +-0.502505,0.860168,-0.847831,-1.976129,0.617532,2.677946 +-0.503681,0.858964,-0.847850,-1.977333,0.617220,2.676743 +-0.504835,0.857769,-0.847782,-1.978528,0.616824,2.675548 +-0.505961,0.856590,-0.847627,-1.979707,0.616347,2.674368 +-0.507053,0.855432,-0.847386,-1.980865,0.615792,2.673210 +-0.508104,0.854301,-0.847061,-1.981996,0.615160,2.672079 +-0.509110,0.853203,-0.846653,-1.983094,0.614456,2.670982 +-0.510066,0.852145,-0.846164,-1.984152,0.613683,2.669923 +-0.510966,0.851131,-0.845596,-1.985166,0.612846,2.668910 +-0.511805,0.850167,-0.844954,-1.986130,0.611947,2.667946 +-0.512580,0.849258,-0.844239,-1.987039,0.610993,2.667037 +-0.513286,0.848409,-0.843456,-1.987888,0.609988,2.666187 +-0.513919,0.847624,-0.842609,-1.988673,0.608938,2.665402 +-0.514477,0.846907,-0.841702,-1.989390,0.607847,2.664685 +-0.514955,0.846261,-0.840741,-1.990036,0.606722,2.664040 +-0.515353,0.845692,-0.839729,-1.990606,0.605569,2.663470 +-0.515668,0.845200,-0.838673,-1.991097,0.604392,2.662978 +-0.515897,0.844789,-0.837577,-1.991508,0.603200,2.662567 +-0.516041,0.844461,-0.836448,-1.991836,0.601997,2.662239 +-0.516098,0.844218,-0.835291,-1.992079,0.600791,2.661996 +-0.516067,0.844060,-0.834113,-1.992237,0.599586,2.661838 +-0.515950,0.843990,-0.832919,-1.992307,0.598391,2.661768 +-0.515746,0.844006,-0.831716,-1.992291,0.597210,2.661784 +-0.515457,0.844110,-0.830510,-1.992187,0.596050,2.661888 +-0.515084,0.844300,-0.829307,-1.991997,0.594918,2.662078 +-0.514629,0.844575,-0.828115,-1.991722,0.593818,2.662353 +-0.514095,0.844935,-0.826937,-1.991362,0.592757,2.662713 +-0.513484,0.845376,-0.825782,-1.990921,0.591741,2.663155 +-0.512800,0.845898,-0.824655,-1.990399,0.590774,2.663676 +-0.512046,0.846497,-0.823562,-1.989800,0.589861,2.664275 +-0.511225,0.847170,-0.822509,-1.989127,0.589008,2.664948 +-0.510343,0.847913,-0.821500,-1.988384,0.588219,2.665691 +-0.509404,0.848723,-0.820542,-1.987574,0.587498,2.666501 +-0.508413,0.849596,-0.819639,-1.986702,0.586848,2.667374 +-0.507374,0.850526,-0.818796,-1.985771,0.586274,2.668304 +-0.506294,0.851509,-0.818018,-1.984788,0.585777,2.669287 +-0.505178,0.852541,-0.817308,-1.983757,0.585361,2.670319 +-0.504032,0.853614,-0.816670,-1.982683,0.585028,2.671392 +-0.502861,0.854725,-0.816108,-1.981572,0.584780,2.672503 +-0.501673,0.855867,-0.815625,-1.980430,0.584617,2.673645 +-0.500472,0.857034,-0.815222,-1.979263,0.584542,2.674812 +-0.499266,0.858220,-0.814902,-1.978077,0.584553,2.675998 +-0.498061,0.859419,-0.814667,-1.976878,0.584651,2.677197 +-0.496862,0.860625,-0.814518,-1.975672,0.584836,2.678403 +-0.495676,0.861831,-0.814456,-1.974466,0.585106,2.679609 +-0.494510,0.863031,-0.814481,-1.973266,0.585461,2.680809 +-0.493370,0.864219,-0.814593,-1.972078,0.585898,2.681997 +-0.492260,0.865389,-0.814791,-1.970909,0.586415,2.683167 +-0.491188,0.866534,-0.815075,-1.969763,0.587009,2.684312 +-0.490159,0.867648,-0.815442,-1.968649,0.587678,2.685427 +-0.489178,0.868727,-0.815891,-1.967570,0.588417,2.686505 +-0.488250,0.869763,-0.816420,-1.966534,0.589223,2.687542 +-0.487380,0.870753,-0.817026,-1.965544,0.590092,2.688531 +-0.486573,0.871690,-0.817705,-1.964608,0.591019,2.689468 +-0.485832,0.872569,-0.818455,-1.963728,0.591999,2.690347 +-0.485162,0.873387,-0.819271,-1.962911,0.593028,2.691165 +-0.484567,0.874138,-0.820148,-1.962159,0.594099,2.691916 +-0.484049,0.874819,-0.821083,-1.961478,0.595208,2.692598 +-0.483610,0.875427,-0.822071,-1.960870,0.596348,2.693205 +-0.483254,0.875958,-0.823106,-1.960339,0.597514,2.693736 +-0.482982,0.876409,-0.824183,-1.959888,0.598699,2.694187 +-0.482796,0.876779,-0.825296,-1.959519,0.599897,2.694557 +-0.482696,0.877064,-0.826440,-1.959233,0.601103,2.694842 +-0.482683,0.877264,-0.827608,-1.959033,0.602309,2.695042 +-0.482758,0.877378,-0.828795,-1.958919,0.603510,2.695156 +-0.482919,0.877405,-0.829994,-1.958893,0.604698,2.695183 +-0.483166,0.877344,-0.831199,-1.958953,0.605869,2.695122 +-0.483497,0.877197,-0.832404,-1.959100,0.607016,2.694975 +-0.483911,0.876964,-0.833603,-1.959333,0.608133,2.694742 +-0.484406,0.876646,-0.834789,-1.959651,0.609214,2.694424 +-0.484980,0.876244,-0.835955,-1.960053,0.610253,2.694023 +-0.485628,0.875762,-0.837097,-1.960535,0.611245,2.693540 +-0.486348,0.875201,-0.838208,-1.961096,0.612185,2.692979 +-0.487136,0.874565,-0.839282,-1.961732,0.613068,2.692343 +-0.487988,0.873856,-0.840313,-1.962441,0.613890,2.691634 +-0.488900,0.873078,-0.841297,-1.963219,0.614645,2.690857 +-0.489866,0.872236,-0.842228,-1.964061,0.615331,2.690015 +-0.490881,0.871334,-0.843101,-1.964963,0.615943,2.689112 +-0.491942,0.870377,-0.843912,-1.965921,0.616478,2.688155 +-0.493040,0.869368,-0.844656,-1.966929,0.616935,2.687147 +-0.494173,0.868315,-0.845330,-1.967982,0.617309,2.686093 +-0.495332,0.867222,-0.845930,-1.969075,0.617599,2.685000 +-0.496512,0.866095,-0.846453,-1.970202,0.617805,2.683873 +-0.497708,0.864939,-0.846896,-1.971358,0.617924,2.682718 +-0.498912,0.863762,-0.847257,-1.972535,0.617956,2.681540 +-0.500118,0.862569,-0.847534,-1.973729,0.617900,2.680347 +-0.501321,0.861365,-0.847726,-1.974932,0.617758,2.679144 +-0.502514,0.860159,-0.847831,-1.976138,0.617530,2.677937 +-0.503690,0.858955,-0.847850,-1.977342,0.617217,2.676733 +-0.504844,0.857760,-0.847781,-1.978537,0.616821,2.675538 +-0.505970,0.856581,-0.847625,-1.979717,0.616343,2.674359 +-0.507061,0.855423,-0.847384,-1.980875,0.615787,2.673201 +-0.508113,0.854292,-0.847058,-1.982005,0.615155,2.672070 +-0.509118,0.853195,-0.846649,-1.983102,0.614450,2.670973 +-0.510073,0.852137,-0.846159,-1.984160,0.613677,2.669915 +-0.510973,0.851123,-0.845592,-1.985174,0.612839,2.668902 +-0.511811,0.850160,-0.844948,-1.986137,0.611940,2.667938 +-0.512586,0.849251,-0.844233,-1.987046,0.610985,2.667030 +-0.513291,0.848403,-0.843450,-1.987895,0.609980,2.666181 +-0.513924,0.847618,-0.842602,-1.988679,0.608929,2.665396 +-0.514481,0.846901,-0.841695,-1.989396,0.607838,2.664679 +-0.514959,0.846257,-0.840733,-1.990040,0.606713,2.664035 +-0.515356,0.845687,-0.839721,-1.990610,0.605559,2.663465 +-0.515670,0.845196,-0.838664,-1.991101,0.604383,2.662974 +-0.515899,0.844786,-0.837568,-1.991511,0.603190,2.662564 +-0.516042,0.844459,-0.836439,-1.991838,0.601988,2.662237 +-0.516098,0.844216,-0.835282,-1.992081,0.600781,2.661994 +-0.516067,0.844059,-0.834103,-1.992238,0.599577,2.661838 +-0.515949,0.843989,-0.832909,-1.992308,0.598381,2.661768 +-0.515744,0.844007,-0.831706,-1.992291,0.597201,2.661785 +-0.515454,0.844111,-0.830500,-1.992186,0.596041,2.661889 +-0.515081,0.844302,-0.829298,-1.991996,0.594909,2.662080 +-0.514625,0.844578,-0.828105,-1.991719,0.593810,2.662356 +-0.514091,0.844938,-0.826928,-1.991359,0.592749,2.662716 +-0.513479,0.845380,-0.825773,-1.990917,0.591733,2.663158 +-0.512794,0.845903,-0.824646,-1.990395,0.590766,2.663681 +-0.512039,0.846502,-0.823554,-1.989795,0.589854,2.664280 +-0.511219,0.847175,-0.822500,-1.989122,0.589002,2.664954 +-0.510336,0.847919,-0.821492,-1.988378,0.588213,2.665697 +-0.509397,0.848730,-0.820534,-1.987567,0.587492,2.666508 +-0.508405,0.849603,-0.819632,-1.986694,0.586843,2.667381 +-0.507366,0.850534,-0.818790,-1.985764,0.586269,2.668312 +-0.506286,0.851517,-0.818012,-1.984780,0.585773,2.669295 +-0.505169,0.852549,-0.817303,-1.983748,0.585358,2.670327 +-0.504023,0.853623,-0.816666,-1.982674,0.585026,2.671401 +-0.502852,0.854734,-0.816104,-1.981563,0.584778,2.672512 +-0.501663,0.855876,-0.815621,-1.980421,0.584616,2.673654 +-0.500463,0.857043,-0.815219,-1.979254,0.584541,2.674821 +-0.499257,0.858230,-0.814900,-1.978068,0.584553,2.676008 +-0.498051,0.859429,-0.814666,-1.976868,0.584652,2.677207 +-0.496852,0.860634,-0.814518,-1.975663,0.584838,2.678413 +-0.495667,0.861840,-0.814456,-1.974457,0.585109,2.679619 +-0.494501,0.863041,-0.814482,-1.973257,0.585464,2.680819 +-0.493361,0.864228,-0.814594,-1.972069,0.585902,2.682007 +-0.492252,0.865398,-0.814793,-1.970899,0.586419,2.683176 +-0.491180,0.866543,-0.815077,-1.969754,0.587014,2.684321 +-0.490151,0.867657,-0.815445,-1.968640,0.587683,2.685435 +-0.489170,0.868735,-0.815895,-1.967562,0.588423,2.686513 +-0.488243,0.869771,-0.816425,-1.966526,0.589230,2.687550 +-0.487373,0.870760,-0.817031,-1.965537,0.590099,2.688539 +-0.486566,0.871697,-0.817711,-1.964600,0.591026,2.689475 +-0.485827,0.872576,-0.818461,-1.963721,0.592007,2.690354 +-0.485157,0.873393,-0.819277,-1.962904,0.593036,2.691171 +-0.484562,0.874144,-0.820155,-1.962153,0.594108,2.691922 +-0.484045,0.874824,-0.821091,-1.961473,0.595217,2.692603 +-0.483607,0.875432,-0.822079,-1.960866,0.596357,2.693210 +-0.483252,0.875962,-0.823114,-1.960335,0.597523,2.693740 +-0.482980,0.876412,-0.824191,-1.959885,0.598708,2.694191 +-0.482795,0.876781,-0.825305,-1.959516,0.599907,2.694559 +-0.482696,0.877066,-0.826449,-1.959231,0.601112,2.694844 +-0.482684,0.877265,-0.827618,-1.959032,0.602318,2.695044 +-0.482759,0.877378,-0.828805,-1.958919,0.603519,2.695157 +-0.482920,0.877404,-0.830004,-1.958893,0.604708,2.695183 +-0.483168,0.877343,-0.831209,-1.958954,0.605879,2.695122 +-0.483500,0.877196,-0.832414,-1.959102,0.607025,2.694974 +-0.483915,0.876962,-0.833612,-1.959336,0.608142,2.694740 +-0.484411,0.876643,-0.834798,-1.959654,0.609222,2.694421 +-0.484985,0.876241,-0.835965,-1.960056,0.610261,2.694019 +-0.485633,0.875758,-0.837106,-1.960539,0.611253,2.693536 +-0.486354,0.875196,-0.838216,-1.961101,0.612192,2.692975 +-0.487143,0.874559,-0.839290,-1.961738,0.613075,2.692338 +-0.487995,0.873850,-0.840321,-1.962447,0.613896,2.691628 +-0.488907,0.873072,-0.841305,-1.963225,0.614651,2.690850 +-0.489874,0.872229,-0.842235,-1.964068,0.615336,2.690008 +-0.490890,0.871327,-0.843108,-1.964970,0.615947,2.689105 +-0.491950,0.870369,-0.843918,-1.965928,0.616482,2.688147 +-0.493049,0.869360,-0.844662,-1.966937,0.616938,2.687138 +-0.494182,0.868306,-0.845335,-1.967991,0.617312,2.686085 +-0.495341,0.867213,-0.845935,-1.969084,0.617601,2.684991 +-0.496522,0.866086,-0.846457,-1.970212,0.617806,2.683864 +-0.497717,0.864930,-0.846899,-1.971367,0.617924,2.682708 +-0.498921,0.863753,-0.847260,-1.972545,0.617955,2.681531 +-0.500128,0.862559,-0.847536,-1.973738,0.617900,2.680337 +-0.501331,0.861356,-0.847727,-1.974941,0.617757,2.679134 +-0.502523,0.860149,-0.847832,-1.976148,0.617528,2.677927 +-0.503700,0.858945,-0.847849,-1.977352,0.617214,2.676723 +-0.504854,0.857751,-0.847780,-1.978547,0.616817,2.675529 +-0.505979,0.856571,-0.847624,-1.979726,0.616339,2.674349 +-0.507070,0.855413,-0.847382,-1.980884,0.615782,2.673192 +-0.508121,0.854283,-0.847055,-1.982014,0.615150,2.672061 +-0.509126,0.853186,-0.846646,-1.983111,0.614445,2.670964 +-0.510081,0.852129,-0.846155,-1.984169,0.613671,2.669907 +-0.510980,0.851116,-0.845587,-1.985182,0.612832,2.668894 +-0.511818,0.850153,-0.844943,-1.986145,0.611933,2.667931 +-0.512591,0.849244,-0.844227,-1.987053,0.610978,2.667023 +-0.513296,0.848396,-0.843443,-1.987901,0.609972,2.666174 +-0.513928,0.847612,-0.842595,-1.988685,0.608921,2.665390 +-0.514485,0.846896,-0.841688,-1.989401,0.607830,2.664674 +-0.514962,0.846252,-0.840725,-1.990045,0.606704,2.664030 +-0.515359,0.845683,-0.839712,-1.990614,0.605550,2.663461 +-0.515672,0.845193,-0.838655,-1.991104,0.604374,2.662971 +-0.515900,0.844783,-0.837559,-1.991514,0.603181,2.662561 +-0.516043,0.844456,-0.836429,-1.991841,0.601978,2.662235 +-0.516098,0.844214,-0.835272,-1.992083,0.600771,2.661993 +-0.516066,0.844058,-0.834094,-1.992239,0.599567,2.661837 +-0.515947,0.843989,-0.832900,-1.992308,0.598372,2.661767 +-0.515742,0.844007,-0.831697,-1.992290,0.597191,2.661785 +-0.515452,0.844112,-0.830491,-1.992185,0.596032,2.661890 +-0.515078,0.844303,-0.829288,-1.991994,0.594900,2.662082 +-0.514622,0.844580,-0.828096,-1.991717,0.593801,2.662358 +-0.514086,0.844941,-0.826919,-1.991356,0.592741,2.662719 +-0.513474,0.845384,-0.825764,-1.990913,0.591725,2.663162 +-0.512789,0.845907,-0.824638,-1.990390,0.590759,2.663685 +-0.512033,0.846507,-0.823545,-1.989790,0.589847,2.664285 +-0.511212,0.847181,-0.822492,-1.989116,0.588995,2.664959 +-0.510329,0.847925,-0.821484,-1.988372,0.588207,2.665704 +-0.509389,0.848737,-0.820527,-1.987561,0.587487,2.666515 +-0.508397,0.849610,-0.819625,-1.986687,0.586838,2.667388 +-0.507358,0.850541,-0.818783,-1.985756,0.586265,2.668319 +-0.506277,0.851525,-0.818006,-1.984772,0.585770,2.669303 +-0.505160,0.852557,-0.817297,-1.983740,0.585355,2.670335 +-0.504013,0.853632,-0.816661,-1.982665,0.585024,2.671410 +-0.502843,0.854743,-0.816100,-1.981554,0.584777,2.672521 +-0.501654,0.855885,-0.815617,-1.980412,0.584616,2.673663 +-0.500453,0.857053,-0.815216,-1.979244,0.584541,2.674831 +-0.499247,0.858239,-0.814898,-1.978058,0.584554,2.676017 +-0.498041,0.859438,-0.814664,-1.976859,0.584653,2.677216 +-0.496843,0.860644,-0.814517,-1.975653,0.584840,2.678422 +-0.495658,0.861850,-0.814456,-1.974447,0.585111,2.679628 +-0.494492,0.863050,-0.814482,-1.973247,0.585467,2.680828 +-0.493352,0.864238,-0.814595,-1.972059,0.585905,2.682016 +-0.492243,0.865407,-0.814795,-1.970890,0.586424,2.683185 +-0.491172,0.866552,-0.815080,-1.969745,0.587019,2.684330 +-0.490143,0.867666,-0.815449,-1.968631,0.587689,2.685444 +-0.489163,0.868744,-0.815899,-1.967553,0.588429,2.686522 +-0.488236,0.869780,-0.816429,-1.966518,0.589236,2.687558 +-0.487367,0.870768,-0.817036,-1.965529,0.590106,2.688546 +-0.486560,0.871704,-0.817717,-1.964593,0.591034,2.689482 +-0.485821,0.872583,-0.818467,-1.963715,0.592015,2.690361 +-0.485152,0.873399,-0.819284,-1.962898,0.593044,2.691177 +-0.484558,0.874149,-0.820163,-1.962148,0.594116,2.691928 +-0.484041,0.874830,-0.821099,-1.961468,0.595226,2.692608 +-0.483604,0.875436,-0.822087,-1.960861,0.596366,2.693214 +-0.483249,0.875966,-0.823123,-1.960331,0.597532,2.693744 +-0.482979,0.876416,-0.824200,-1.959881,0.598718,2.694194 +-0.482794,0.876784,-0.825314,-1.959513,0.599916,2.694562 +-0.482695,0.877068,-0.826458,-1.959229,0.601122,2.694846 +-0.482684,0.877267,-0.827627,-1.959031,0.602328,2.695045 +-0.482759,0.877379,-0.828814,-1.958918,0.603529,2.695157 +-0.482922,0.877404,-0.830013,-1.958893,0.604717,2.695183 +-0.483170,0.877343,-0.831219,-1.958955,0.605888,2.695121 +-0.483503,0.877194,-0.832424,-1.959103,0.607034,2.694972 +-0.483919,0.876959,-0.833622,-1.959338,0.608150,2.694738 +-0.484415,0.876640,-0.834807,-1.959657,0.609230,2.694418 +-0.484989,0.876237,-0.835974,-1.960060,0.610269,2.694016 +-0.485639,0.875754,-0.837115,-1.960543,0.611260,2.693532 +-0.486360,0.875192,-0.838225,-1.961105,0.612200,2.692970 +-0.487149,0.874554,-0.839298,-1.961743,0.613082,2.692332 +-0.488002,0.873844,-0.840329,-1.962453,0.613902,2.691622 +-0.488915,0.873066,-0.841312,-1.963232,0.614657,2.690844 +-0.489881,0.872223,-0.842242,-1.964075,0.615341,2.690001 +-0.490898,0.871319,-0.843114,-1.964978,0.615952,2.689098 +-0.491959,0.870361,-0.843924,-1.965936,0.616486,2.688139 +-0.493058,0.869352,-0.844668,-1.966945,0.616941,2.687130 +-0.494191,0.868298,-0.845340,-1.967999,0.617314,2.686076 +-0.495350,0.867204,-0.845939,-1.969093,0.617603,2.684982 +-0.496531,0.866077,-0.846461,-1.970221,0.617807,2.683855 +-0.497727,0.864921,-0.846903,-1.971376,0.617925,2.682699 +-0.498931,0.863743,-0.847262,-1.972554,0.617955,2.681521 +-0.500138,0.862549,-0.847538,-1.973748,0.617899,2.680328 +-0.501340,0.861346,-0.847728,-1.974951,0.617755,2.679124 +-0.502533,0.860140,-0.847832,-1.976158,0.617526,2.677918 +-0.503709,0.858936,-0.847849,-1.977361,0.617212,2.676714 +-0.504863,0.857741,-0.847779,-1.978556,0.616814,2.675519 +-0.505988,0.856562,-0.847622,-1.979735,0.616335,2.674340 +-0.507078,0.855404,-0.847380,-1.980893,0.615778,2.673182 +-0.508129,0.854274,-0.847052,-1.982023,0.615144,2.672052 +-0.509134,0.853178,-0.846642,-1.983119,0.614439,2.670956 +-0.510088,0.852120,-0.846151,-1.984177,0.613664,2.669899 +-0.510986,0.851108,-0.845582,-1.985189,0.612825,2.668886 +-0.511824,0.850145,-0.844937,-1.986152,0.611925,2.667923 +-0.512597,0.849237,-0.844221,-1.987060,0.610970,2.667016 +-0.513302,0.848390,-0.843437,-1.987908,0.609964,2.666168 +-0.513933,0.847606,-0.842588,-1.988691,0.608912,2.665384 +-0.514489,0.846890,-0.841680,-1.989407,0.607821,2.664669 +-0.514966,0.846247,-0.840717,-1.990050,0.606695,2.664025 +-0.515362,0.845679,-0.839704,-1.990618,0.605541,2.663457 +-0.515674,0.845189,-0.838647,-1.991108,0.604364,2.662967 +-0.515902,0.844780,-0.837550,-1.991517,0.603171,2.662558 +-0.516043,0.844454,-0.836420,-1.991843,0.601968,2.662232 +-0.516098,0.844213,-0.835263,-1.992084,0.600762,2.661991 +-0.516065,0.844058,-0.834084,-1.992240,0.599558,2.661836 +-0.515946,0.843989,-0.832890,-1.992308,0.598362,2.661767 +-0.515740,0.844008,-0.831687,-1.992290,0.597182,2.661786 +-0.515449,0.844113,-0.830481,-1.992184,0.596023,2.661891 +-0.515074,0.844305,-0.829279,-1.991992,0.594891,2.662083 +-0.514618,0.844583,-0.828086,-1.991714,0.593792,2.662361 +-0.514082,0.844944,-0.826910,-1.991353,0.592733,2.662722 +-0.513469,0.845388,-0.825755,-1.990909,0.591717,2.663166 +-0.512783,0.845912,-0.824629,-1.990386,0.590751,2.663690 +-0.512027,0.846512,-0.823537,-1.989785,0.589840,2.664290 +-0.511205,0.847187,-0.822484,-1.989110,0.588989,2.664965 +-0.510322,0.847932,-0.821477,-1.988365,0.588201,2.665710 +-0.509381,0.848743,-0.820520,-1.987554,0.587481,2.666521 +-0.508389,0.849617,-0.819618,-1.986680,0.586834,2.667395 +-0.507349,0.850549,-0.818777,-1.985748,0.586261,2.668327 +-0.506268,0.851533,-0.818000,-1.984764,0.585766,2.669312 +-0.505151,0.852566,-0.817292,-1.983731,0.585352,2.670344 +-0.504004,0.853640,-0.816656,-1.982657,0.585021,2.671419 +-0.502833,0.854752,-0.816096,-1.981545,0.584775,2.672530 +-0.501644,0.855894,-0.815614,-1.980403,0.584615,2.673673 +-0.500444,0.857062,-0.815213,-1.979235,0.584541,2.674840 +-0.499237,0.858249,-0.814896,-1.978049,0.584554,2.676027 +-0.498032,0.859448,-0.814663,-1.976849,0.584655,2.677226 +-0.496833,0.860654,-0.814516,-1.975644,0.584841,2.678432 +-0.495648,0.861860,-0.814456,-1.974438,0.585114,2.679638 +-0.494483,0.863060,-0.814483,-1.973238,0.585470,2.680838 +-0.493343,0.864247,-0.814597,-1.972050,0.585909,2.682025 +-0.492234,0.865416,-0.814797,-1.970881,0.586428,2.683194 +-0.491163,0.866561,-0.815082,-1.969736,0.587024,2.684339 +-0.490135,0.867675,-0.815452,-1.968623,0.587694,2.685453 +-0.489155,0.868752,-0.815903,-1.967545,0.588435,2.686530 +-0.488228,0.869788,-0.816434,-1.966510,0.589243,2.687566 +-0.487360,0.870776,-0.817041,-1.965521,0.590113,2.688554 +-0.486554,0.871711,-0.817722,-1.964586,0.591042,2.689489 +-0.485815,0.872589,-0.818474,-1.963708,0.592023,2.690367 +-0.485147,0.873405,-0.819291,-1.962892,0.593053,2.691184 +-0.484554,0.874155,-0.820170,-1.962142,0.594125,2.691933 +-0.484037,0.874835,-0.821106,-1.961462,0.595235,2.692613 +-0.483601,0.875441,-0.822095,-1.960857,0.596375,2.693219 +-0.483247,0.875970,-0.823131,-1.960328,0.597542,2.693748 +-0.482977,0.876419,-0.824209,-1.959878,0.598727,2.694197 +-0.482793,0.876786,-0.825323,-1.959511,0.599926,2.694564 +-0.482695,0.877070,-0.826467,-1.959227,0.601131,2.694848 +-0.482684,0.877268,-0.827636,-1.959029,0.602338,2.695046 +-0.482760,0.877380,-0.828824,-1.958918,0.603538,2.695158 +-0.482924,0.877404,-0.830023,-1.958893,0.604727,2.695182 +-0.483172,0.877342,-0.831228,-1.958955,0.605897,2.695120 +-0.483506,0.877192,-0.832433,-1.959105,0.607043,2.694971 +-0.483922,0.876957,-0.833631,-1.959340,0.608159,2.694735 +-0.484419,0.876637,-0.834817,-1.959660,0.609239,2.694415 +-0.484994,0.876234,-0.835983,-1.960063,0.610277,2.694012 +-0.485644,0.875750,-0.837124,-1.960547,0.611268,2.693528 +-0.486366,0.875187,-0.838234,-1.961110,0.612207,2.692965 +-0.487156,0.874549,-0.839307,-1.961748,0.613089,2.692327 +-0.488009,0.873838,-0.840337,-1.962459,0.613908,2.691616 +-0.488922,0.873059,-0.841320,-1.963238,0.614662,2.690837 +-0.489889,0.872216,-0.842249,-1.964082,0.615346,2.689994 +-0.490906,0.871312,-0.843121,-1.964985,0.615957,2.689090 +-0.491967,0.870353,-0.843930,-1.965944,0.616490,2.688131 +-0.493067,0.869344,-0.844673,-1.966953,0.616944,2.687122 +-0.494200,0.868289,-0.845345,-1.968008,0.617317,2.686067 +-0.495360,0.867195,-0.845944,-1.969102,0.617605,2.684973 +-0.496541,0.866067,-0.846465,-1.970230,0.617809,2.683846 +-0.497736,0.864912,-0.846906,-1.971386,0.617925,2.682690 +-0.498941,0.863734,-0.847265,-1.972563,0.617955,2.681512 +-0.500147,0.862540,-0.847540,-1.973757,0.617898,2.680318 +-0.501350,0.861337,-0.847730,-1.974961,0.617754,2.679115 +-0.502542,0.860130,-0.847833,-1.976167,0.617524,2.677908 +-0.503718,0.858926,-0.847849,-1.977371,0.617209,2.676704 +-0.504872,0.857732,-0.847778,-1.978565,0.616810,2.675510 +-0.505997,0.856553,-0.847621,-1.979744,0.616331,2.674331 +-0.507087,0.855395,-0.847377,-1.980902,0.615773,2.673173 +-0.508137,0.854265,-0.847049,-1.982032,0.615139,2.672044 +-0.509142,0.853169,-0.846638,-1.983128,0.614433,2.670947 +-0.510095,0.852112,-0.846147,-1.984185,0.613658,2.669890 +-0.510993,0.851100,-0.845577,-1.985197,0.612818,2.668878 +-0.511831,0.850138,-0.844932,-1.986159,0.611918,2.667916 +-0.512603,0.849230,-0.844215,-1.987067,0.610962,2.667009 +-0.513307,0.848383,-0.843430,-1.987914,0.609956,2.666161 +-0.513938,0.847600,-0.842581,-1.988697,0.608904,2.665378 +-0.514493,0.846885,-0.841673,-1.989412,0.607812,2.664663 +-0.514969,0.846242,-0.840709,-1.990055,0.606686,2.664020 +-0.515365,0.845675,-0.839696,-1.990622,0.605532,2.663453 +-0.515676,0.845185,-0.838638,-1.991112,0.604355,2.662964 +-0.515903,0.844777,-0.837541,-1.991520,0.603162,2.662555 +-0.516044,0.844452,-0.836411,-1.991845,0.601959,2.662230 +-0.516098,0.844211,-0.835254,-1.992086,0.600752,2.661990 +-0.516065,0.844057,-0.834075,-1.992240,0.599548,2.661835 +-0.515945,0.843989,-0.832881,-1.992308,0.598353,2.661767 +-0.515738,0.844008,-0.831678,-1.992289,0.597173,2.661786 +-0.515446,0.844114,-0.830472,-1.992183,0.596014,2.661893 +-0.515071,0.844307,-0.829269,-1.991990,0.594882,2.662085 +-0.514614,0.844585,-0.828077,-1.991712,0.593784,2.662363 +-0.514077,0.844948,-0.826900,-1.991350,0.592724,2.662726 +-0.513464,0.845392,-0.825746,-1.990905,0.591709,2.663170 +-0.512777,0.845916,-0.824620,-1.990381,0.590744,2.663694 +-0.512021,0.846517,-0.823528,-1.989780,0.589833,2.664295 +-0.511198,0.847192,-0.822476,-1.989105,0.588982,2.664970 +-0.510314,0.847938,-0.821469,-1.988359,0.588195,2.665716 +-0.509373,0.848750,-0.820512,-1.987547,0.587476,2.666528 +-0.508380,0.849624,-0.819611,-1.986673,0.586829,2.667402 +-0.507341,0.850556,-0.818770,-1.985741,0.586257,2.668335 +-0.506259,0.851541,-0.817994,-1.984756,0.585763,2.669320 +-0.505142,0.852574,-0.817287,-1.983723,0.585349,2.670352 +-0.503995,0.853649,-0.816651,-1.982648,0.585019,2.671427 +-0.502824,0.854761,-0.816092,-1.981536,0.584773,2.672539 +-0.501635,0.855904,-0.815610,-1.980393,0.584614,2.673682 +-0.500434,0.857071,-0.815210,-1.979226,0.584541,2.674850 +-0.499228,0.858258,-0.814893,-1.978039,0.584555,2.676036 +-0.498022,0.859457,-0.814661,-1.976840,0.584656,2.677236 +-0.496824,0.860663,-0.814515,-1.975634,0.584843,2.678441 +-0.495639,0.861869,-0.814456,-1.974428,0.585116,2.679647 +-0.494474,0.863069,-0.814483,-1.973228,0.585474,2.680847 +-0.493334,0.864257,-0.814598,-1.972041,0.585913,2.682035 +-0.492226,0.865425,-0.814799,-1.970872,0.586433,2.683204 +-0.491155,0.866570,-0.815085,-1.969727,0.587029,2.684348 +-0.490127,0.867683,-0.815455,-1.968614,0.587700,2.685461 +-0.489147,0.868761,-0.815907,-1.967537,0.588441,2.686539 +-0.488221,0.869796,-0.816438,-1.966501,0.589250,2.687574 +-0.487353,0.870783,-0.817046,-1.965514,0.590120,2.688562 +-0.486548,0.871718,-0.817728,-1.964579,0.591049,2.689497 +-0.485810,0.872596,-0.818480,-1.963701,0.592031,2.690374 +-0.485142,0.873412,-0.819298,-1.962886,0.593061,2.691190 +-0.484549,0.874161,-0.820177,-1.962136,0.594134,2.691939 +-0.484033,0.874840,-0.821114,-1.961457,0.595244,2.692618 +-0.483598,0.875445,-0.822103,-1.960852,0.596385,2.693223 +-0.483244,0.875974,-0.823139,-1.960324,0.597551,2.693752 +-0.482975,0.876422,-0.824218,-1.959875,0.598737,2.694200 +-0.482791,0.876789,-0.825332,-1.959508,0.599935,2.694567 +-0.482694,0.877072,-0.826477,-1.959225,0.601141,2.694850 +-0.482684,0.877269,-0.827646,-1.959028,0.602347,2.695047 +-0.482761,0.877380,-0.828833,-1.958917,0.603548,2.695158 +-0.482925,0.877404,-0.830033,-1.958893,0.604736,2.695182 +-0.483175,0.877341,-0.831238,-1.958956,0.605906,2.695119 +-0.483509,0.877191,-0.832443,-1.959106,0.607052,2.694969 +-0.483926,0.876955,-0.833641,-1.959342,0.608168,2.694733 +-0.484424,0.876634,-0.834826,-1.959663,0.609247,2.694412 +-0.484680,0.876458,-0.835369,-1.959840,0.609733,2.694240 +-0.484947,0.876270,-0.835901,-1.960020,0.610202,2.694050 +-0.485218,0.876078,-0.836416,-1.960210,0.610646,2.693860 +-0.485486,0.875887,-0.836907,-1.960400,0.611059,2.693680 +-0.485745,0.875704,-0.837369,-1.960570,0.611437,2.693510 +-0.485988,0.875535,-0.837793,-1.960720,0.611781,2.693350 +-0.486209,0.875382,-0.838175,-1.960870,0.612091,2.693210 +-0.486407,0.875243,-0.838507,-1.961000,0.612367,2.693080 +-0.486582,0.875120,-0.838783,-1.961110,0.612608,2.692960 +-0.486733,0.875012,-0.839003,-1.961210,0.612814,2.692860 +-0.486860,0.874920,-0.839173,-1.961300,0.612987,2.692770 +-0.486964,0.874843,-0.839299,-1.961370,0.613125,2.692700 +-0.487044,0.874781,-0.839388,-1.961430,0.613228,2.692640 +-0.487101,0.874734,-0.839447,-1.961480,0.613298,2.692590 +-0.487135,0.874703,-0.839481,-1.961510,0.613339,2.692560 +-0.487152,0.874686,-0.839497,-1.961530,0.613359,2.692540 +-0.487157,0.874681,-0.839502,-1.961540,0.613365,2.692540 +-0.487157,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487157,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487169,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487185,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487211,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487250,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487305,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487379,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487472,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487733,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487905,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488108,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488344,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488617,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488929,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.489283,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.489681,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.490125,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.490619,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.491164,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.491765,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.492422,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.493139,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.493918,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.494763,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.495674,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.496656,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.497711,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.498841,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.500048,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.501337,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.502708,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.504165,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.505710,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.507346,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.509076,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.510902,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.512826,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.514851,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.516981,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.519217,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.521562,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.524018,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.526589,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.529277,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.532084,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.535013,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.538067,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.541248,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.544558,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.547998,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.551568,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.555268,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.559098,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.563057,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.567146,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.571366,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.575714,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.580193,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.584802,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.589540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.594408,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.599406,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.604534,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.609792,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.615179,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.620696,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.626343,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.632120,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.638027,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.644064,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.650230,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.656526,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.662952,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.669508,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.676193,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.683009,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.689954,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.697029,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.704234,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.711569,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.719033,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.726628,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.734352,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.742206,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.750189,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.758299,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.766533,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.774888,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.783362,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.791953,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.800658,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.809473,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.818397,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.827428,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.836561,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.845795,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.855128,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.864556,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.874077,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.883688,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.893387,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.903171,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.913038,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.922985,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.933009,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.943108,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.953280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.963521,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.973828,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.984201,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.994635,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.005130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.015680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.026280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.036940,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.047640,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.058390,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.069190,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.080020,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.090900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.101800,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.112750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.123720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.134720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.145750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.156800,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.167870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.178960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.190060,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.201170,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.212300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.223430,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.234570,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.245710,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.256850,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.267980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.279110,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.290230,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.301350,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.312440,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.323520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.334590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.345630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.356650,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.367640,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.378600,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.389530,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.400420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.411280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.422100,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.432880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.443610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.454300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.464940,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.475520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.486050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.496520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.506930,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.517280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.527560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.537780,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.547920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.557990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.567990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.577900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.587740,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.597490,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.607160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.616730,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.626220,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.635610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.644900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.654100,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.663200,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.672180,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.681070,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.689840,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.698500,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.707050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.715480,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.723790,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.731970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.740040,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.747970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.755770,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.763450,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.770990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.778410,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.785690,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.792850,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.799870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.806770,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.813540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.820170,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.826680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.833050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.839300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.845420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.851400,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.857260,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.862990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.868590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.874050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.879390,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.884600,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.889680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.894630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.899440,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.904130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.908690,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.913120,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.917420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.921590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.925630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.929540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.933320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.936970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.940490,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.943880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.947140,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.950270,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.953280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.956160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.958920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.961560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.964090,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.966500,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.968810,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.971000,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.973090,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.975080,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.976960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.978750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.980450,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.982050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.983560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.984980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.986320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.987580,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.988760,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.989860,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.990880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.991840,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.992720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.993540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.994300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.994990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.995630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.996210,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.996730,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.997210,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.997630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998010,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998350,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998650,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998910,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999480,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999810,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-2.000000,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-2.000010,0.874679,-0.839503,-1.961540,0.613369,2.692540 +-2.000010,0.874679,-0.839500,-1.961540,0.613369,2.692540 +-2.000010,0.874680,-0.839498,-1.961540,0.613368,2.692540 +-2.000000,0.874685,-0.839494,-1.961530,0.613362,2.692550 +-1.999990,0.874696,-0.839483,-1.961520,0.613349,2.692560 +-1.999970,0.874715,-0.839463,-1.961500,0.613326,2.692580 +-1.999940,0.874742,-0.839433,-1.961470,0.613289,2.692610 +-1.999890,0.874774,-0.839388,-1.961450,0.613235,2.692630 +-1.999830,0.874808,-0.839326,-1.961420,0.613162,2.692660 +-1.999760,0.874843,-0.839246,-1.961390,0.613068,2.692690 +-1.999670,0.874878,-0.839144,-1.961360,0.612957,2.692720 +-1.999570,0.874913,-0.839017,-1.961340,0.612832,2.692740 +-1.999470,0.874948,-0.838864,-1.961310,0.612696,2.692770 +-1.999360,0.874983,-0.838684,-1.961280,0.612552,2.692800 +-1.999250,0.875018,-0.838481,-1.961250,0.612403,2.692830 +-1.999150,0.875053,-0.838256,-1.961220,0.612252,2.692850 +-1.999040,0.875088,-0.838013,-1.961200,0.612101,2.692880 +-1.998930,0.875123,-0.837754,-1.961170,0.611950,2.692910 +-1.998820,0.875158,-0.837481,-1.961140,0.611799,2.692940 +-1.998710,0.875193,-0.837198,-1.961110,0.611648,2.692970 +-1.998600,0.875227,-0.836907,-1.961090,0.611497,2.692990 +-1.998490,0.875262,-0.836609,-1.961060,0.611346,2.693020 +-1.998380,0.875297,-0.836309,-1.961030,0.611194,2.693050 +-1.998270,0.875332,-0.836009,-1.961000,0.611043,2.693080 +-1.998160,0.875367,-0.835710,-1.960970,0.610892,2.693100 +-1.998050,0.875402,-0.835416,-1.960950,0.610741,2.693130 +-1.997940,0.875437,-0.835130,-1.960920,0.610590,2.693160 +-1.997830,0.875472,-0.834854,-1.960890,0.610439,2.693190 +-1.997720,0.875507,-0.834590,-1.960860,0.610288,2.693220 +-1.997610,0.875542,-0.834342,-1.960830,0.610137,2.693240 +-1.997510,0.875577,-0.834111,-1.960810,0.609986,2.693270 +-1.997400,0.875612,-0.833900,-1.960780,0.609836,2.693300 +-1.997290,0.875647,-0.833713,-1.960750,0.609687,2.693330 +-1.997180,0.875681,-0.833551,-1.960720,0.609545,2.693350 +-1.997070,0.875716,-0.833417,-1.960700,0.609410,2.693380 +-1.996960,0.875751,-0.833314,-1.960670,0.609288,2.693410 +-1.996850,0.875786,-0.833244,-1.960640,0.609181,2.693440 +-1.996740,0.875821,-0.833210,-1.960610,0.609091,2.693460 +-1.996630,0.875856,-0.833215,-1.960580,0.609023,2.693490 +-1.996530,0.875891,-0.833261,-1.960560,0.608979,2.693520 +-1.996440,0.875926,-0.833350,-1.960530,0.608962,2.693550 +-1.996360,0.875961,-0.833483,-1.960500,0.608975,2.693580 +-1.996290,0.875993,-0.833656,-1.960470,0.609023,2.693600 +-1.996240,0.876021,-0.833867,-1.960450,0.609106,2.693630 +-1.996200,0.876041,-0.834114,-1.960420,0.609229,2.693650 +-1.996190,0.876052,-0.834393,-1.960400,0.609390,2.693670 +-1.996200,0.876050,-0.834703,-1.960400,0.609586,2.693680 +-1.996230,0.876033,-0.835040,-1.960400,0.609813,2.693670 +-1.996300,0.875998,-0.835403,-1.960420,0.610069,2.693650 +-1.996390,0.875943,-0.835788,-1.960460,0.610351,2.693610 +-1.996520,0.875865,-0.836192,-1.960520,0.610655,2.693550 +-1.996690,0.875761,-0.836614,-1.960610,0.610978,2.693460 +-1.996890,0.875629,-0.837051,-1.960730,0.611317,2.693350 +-1.997130,0.875467,-0.837500,-1.960870,0.611669,2.693200 +-1.997400,0.875272,-0.837958,-1.961050,0.612031,2.693020 +-1.997710,0.875044,-0.838423,-1.961270,0.612400,2.692800 +-1.998030,0.874787,-0.838893,-1.961520,0.612773,2.692550 +-1.998390,0.874503,-0.839364,-1.961800,0.613146,2.692280 +-1.998760,0.874194,-0.839834,-1.962100,0.613516,2.691970 +-1.999160,0.873864,-0.840301,-1.962430,0.613881,2.691640 +-1.999570,0.873515,-0.840761,-1.962780,0.614238,2.691290 +-2.000000,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-2.001260,0.872049,-0.842419,-1.964248,0.615467,2.689827 +-2.002603,0.870849,-0.843525,-1.965448,0.616227,2.688628 +-2.004015,0.869560,-0.844523,-1.966737,0.616856,2.687338 +-2.005486,0.868193,-0.845402,-1.968105,0.617346,2.685971 +-2.007001,0.866759,-0.846156,-1.969538,0.617695,2.684537 +-2.008547,0.865272,-0.846778,-1.971025,0.617898,2.683050 +-2.010112,0.863745,-0.847262,-1.972552,0.617955,2.681523 +-2.011680,0.862190,-0.847604,-1.974107,0.617865,2.679969 +-2.013239,0.860623,-0.847801,-1.975674,0.617628,2.678401 +-2.014774,0.859056,-0.847852,-1.977241,0.617247,2.676834 +-2.016272,0.857504,-0.847755,-1.978793,0.616725,2.675282 +-2.017720,0.855980,-0.847512,-1.980317,0.616066,2.673758 +-2.019105,0.854497,-0.847124,-1.981800,0.615277,2.672275 +-2.020415,0.853069,-0.846596,-1.983228,0.614364,2.670847 +-2.021638,0.851709,-0.845932,-1.984589,0.613335,2.669487 +-2.022763,0.850427,-0.845138,-1.985870,0.612200,2.668205 +-2.023781,0.849236,-0.844220,-1.987061,0.610968,2.667014 +-2.024683,0.848146,-0.843187,-1.988151,0.609651,2.665924 +-2.025460,0.847167,-0.842048,-1.989131,0.608259,2.664945 +-2.026105,0.846306,-0.840813,-1.989991,0.606806,2.664085 +-2.026614,0.845573,-0.839493,-1.990724,0.605304,2.663351 +-2.026982,0.844973,-0.838100,-1.991324,0.603766,2.662751 +-2.027205,0.844512,-0.836645,-1.991786,0.602205,2.662290 +-2.027281,0.844193,-0.835142,-1.992104,0.600637,2.661971 +-2.027210,0.844019,-0.833603,-1.992278,0.599073,2.661798 +-2.026992,0.843993,-0.832043,-1.992304,0.597529,2.661771 +-2.026630,0.844114,-0.830476,-1.992183,0.596018,2.661892 +-2.026126,0.844381,-0.828914,-1.991916,0.594552,2.662159 +-2.025485,0.844792,-0.827372,-1.991505,0.593146,2.662570 +-2.024712,0.845343,-0.825863,-1.990954,0.591811,2.663121 +-2.023815,0.846029,-0.824401,-1.990268,0.590559,2.663807 +-2.022801,0.846845,-0.822998,-1.989453,0.589401,2.664623 +-2.021680,0.847782,-0.821668,-1.988515,0.588348,2.665560 +-2.020460,0.848834,-0.820421,-1.987463,0.587409,2.666612 +-2.019153,0.849990,-0.819268,-1.986307,0.586591,2.667768 +-2.017771,0.851240,-0.818220,-1.985057,0.585903,2.669018 +-2.016325,0.852574,-0.817287,-1.983723,0.585350,2.670352 +-2.014828,0.853979,-0.816475,-1.982318,0.584936,2.671757 +-2.013294,0.855444,-0.815793,-1.980854,0.584667,2.673222 +-2.011736,0.856954,-0.815246,-1.979343,0.584544,2.674733 +-2.010168,0.858498,-0.814840,-1.977799,0.584568,2.676276 +-2.008603,0.860061,-0.814577,-1.976236,0.584739,2.677840 +-2.007055,0.861630,-0.814461,-1.974667,0.585055,2.679408 +-2.005539,0.863191,-0.814491,-1.973106,0.585515,2.680969 +-2.004067,0.864729,-0.814668,-1.971568,0.586113,2.682507 +-2.002652,0.866232,-0.814991,-1.970065,0.586844,2.684010 +-2.001307,0.867686,-0.815456,-1.968611,0.587702,2.685464 +-2.000043,0.869079,-0.816060,-1.967218,0.588679,2.686857 +-1.998873,0.870398,-0.816796,-1.965900,0.589768,2.688176 +-1.997805,0.871631,-0.817659,-1.964666,0.590957,2.689409 +-1.996850,0.872768,-0.818641,-1.963530,0.592237,2.690546 +-1.996016,0.873798,-0.819734,-1.962499,0.593597,2.691576 +-1.995310,0.874713,-0.820927,-1.961584,0.595024,2.692491 +-1.994739,0.875504,-0.822210,-1.960793,0.596506,2.693282 +-1.994307,0.876165,-0.823572,-1.960132,0.598029,2.693943 +-1.994019,0.876690,-0.825000,-1.959608,0.599581,2.694468 +-1.993876,0.877073,-0.826483,-1.959224,0.601148,2.694851 +-1.993881,0.877312,-0.828007,-1.958985,0.602716,2.695090 +-1.994033,0.877405,-0.829559,-1.958892,0.604270,2.695183 +-1.994330,0.877350,-0.831125,-1.958947,0.605798,2.695129 +-1.994771,0.877149,-0.832691,-1.959148,0.607286,2.694927 +-1.995351,0.876803,-0.834244,-1.959494,0.608720,2.694581 +-1.996065,0.876314,-0.835769,-1.959983,0.610089,2.694093 +-1.996907,0.875688,-0.837254,-1.960609,0.611380,2.693467 +-1.997869,0.874930,-0.838685,-1.961367,0.612581,2.692709 +-1.998943,0.874047,-0.840050,-1.962250,0.613682,2.691825 +-2.000120,0.873046,-0.841336,-1.963252,0.614674,2.690824 +-2.001389,0.871935,-0.842532,-1.964362,0.615548,2.689714 +-2.002739,0.870726,-0.843628,-1.965571,0.616295,2.688504 +-2.004158,0.869429,-0.844615,-1.966868,0.616910,2.687207 +-2.005633,0.868054,-0.845482,-1.968243,0.617387,2.685832 +-2.007152,0.866615,-0.846223,-1.969682,0.617721,2.684393 +-2.008701,0.865123,-0.846832,-1.971174,0.617911,2.682901 +-2.010266,0.863593,-0.847302,-1.972705,0.617953,2.681371 +-2.011835,0.862036,-0.847630,-1.974261,0.617848,2.679815 +-2.013392,0.860468,-0.847813,-1.975829,0.617597,2.678247 +-2.014924,0.858903,-0.847849,-1.977395,0.617202,2.676681 +-2.016418,0.857352,-0.847737,-1.978945,0.616666,2.675131 +-2.017860,0.855832,-0.847480,-1.980465,0.615994,2.673610 +-2.019238,0.854354,-0.847078,-1.981943,0.615192,2.672132 +-2.020539,0.852932,-0.846537,-1.983365,0.614267,2.670710 +-2.021753,0.851579,-0.845859,-1.984719,0.613228,2.669357 +-2.022868,0.850306,-0.845053,-1.985992,0.612083,2.668084 +-2.023875,0.849124,-0.844123,-1.987173,0.610842,2.666902 +-2.024765,0.848044,-0.843079,-1.988253,0.609517,2.665823 +-2.025529,0.847076,-0.841931,-1.989221,0.608119,2.664855 +-2.026162,0.846228,-0.840687,-1.990069,0.606660,2.664007 +-2.026657,0.845508,-0.839359,-1.990789,0.605154,2.663286 +-2.027010,0.844921,-0.837959,-1.991376,0.603613,2.662700 +-2.027219,0.844474,-0.836499,-1.991823,0.602051,2.662252 +-2.027281,0.844169,-0.834991,-1.992128,0.600482,2.661947 +-2.027195,0.844010,-0.833450,-1.992287,0.598920,2.661788 +-2.026963,0.843998,-0.831889,-1.992299,0.597379,2.661777 +-2.026587,0.844134,-0.830321,-1.992163,0.595871,2.661912 +-2.026069,0.844415,-0.828761,-1.991882,0.594411,2.662193 +-2.025415,0.844840,-0.827221,-1.991457,0.593011,2.662618 +-2.024629,0.845404,-0.825717,-1.990893,0.591684,2.663183 +-2.023720,0.846104,-0.824260,-1.990193,0.590441,2.663882 +-2.022695,0.846932,-0.822864,-1.989366,0.589293,2.664710 +-2.021564,0.847881,-0.821541,-1.988416,0.588251,2.665659 +-2.020335,0.848943,-0.820303,-1.987354,0.587323,2.666721 +-2.019020,0.850109,-0.819160,-1.986188,0.586517,2.667887 +-2.017631,0.851368,-0.818123,-1.984929,0.585842,2.669146 +-2.016180,0.852709,-0.817201,-1.983588,0.585303,2.670487 +-2.014679,0.854121,-0.816402,-1.982176,0.584904,2.671899 +-2.013142,0.855591,-0.815733,-1.980707,0.584648,2.673369 +-2.011582,0.857105,-0.815200,-1.979192,0.584540,2.674883 +-2.010013,0.858652,-0.814808,-1.977646,0.584578,2.676430 +-2.008449,0.860216,-0.814559,-1.976081,0.584764,2.677994 +-2.006904,0.861784,-0.814457,-1.974513,0.585094,2.679563 +-2.005392,0.863343,-0.814502,-1.972954,0.585567,2.681122 +-2.003925,0.864879,-0.814694,-1.971418,0.586179,2.682657 +-2.002516,0.866378,-0.815031,-1.969919,0.586923,2.684156 +-2.001178,0.867826,-0.815510,-1.968471,0.587793,2.685605 +-1.999924,0.869212,-0.816126,-1.967085,0.588782,2.686990 +-1.998763,0.870523,-0.816876,-1.965774,0.589881,2.688301 +-1.997706,0.871747,-0.817751,-1.964550,0.591080,2.689525 +-1.996763,0.872874,-0.818744,-1.963423,0.592368,2.690652 +-1.995941,0.873893,-0.819847,-1.962404,0.593735,2.691671 +-1.995248,0.874796,-0.821049,-1.961501,0.595168,2.692575 +-1.994690,0.875575,-0.822340,-1.960722,0.596654,2.693353 +-1.994273,0.876223,-0.823709,-1.960074,0.598181,2.694001 +-1.993998,0.876734,-0.825144,-1.959563,0.599735,2.694512 +-1.993870,0.877103,-0.826632,-1.959194,0.601303,2.694881 +-1.993890,0.877328,-0.828159,-1.958969,0.602869,2.695106 +-1.994056,0.877406,-0.829713,-1.958891,0.604422,2.695184 +-1.994367,0.877337,-0.831280,-1.958960,0.605946,2.695115 +-1.994822,0.877121,-0.832845,-1.959176,0.607430,2.694900 +-1.995415,0.876761,-0.834396,-1.959536,0.608858,2.694539 +-1.996142,0.876259,-0.835918,-1.960038,0.610220,2.694037 +-1.996996,0.875620,-0.837398,-1.960678,0.611502,2.693398 +-1.997970,0.874849,-0.838823,-1.961448,0.612694,2.692627 +-1.999055,0.873953,-0.840180,-1.962344,0.613785,2.691731 +-2.000241,0.872941,-0.841458,-1.963356,0.614766,2.690719 +-2.001519,0.871821,-0.842645,-1.964477,0.615627,2.689599 +-2.002876,0.870602,-0.843731,-1.965695,0.616362,2.688380 +-2.004301,0.869296,-0.844705,-1.967001,0.616963,2.687075 +-2.005781,0.867915,-0.845561,-1.968382,0.617426,2.685693 +-2.007303,0.866470,-0.846289,-1.969827,0.617746,2.684248 +-2.008855,0.864974,-0.846884,-1.971323,0.617921,2.682752 +-2.010421,0.863440,-0.847341,-1.972857,0.617949,2.681218 +-2.011989,0.861882,-0.847654,-1.974415,0.617830,2.679660 +-2.013544,0.860314,-0.847823,-1.975983,0.617564,2.678092 +-2.015073,0.858749,-0.847844,-1.977548,0.617155,2.676527 +-2.016562,0.857201,-0.847718,-1.979096,0.616606,2.674979 +-2.017999,0.855684,-0.847447,-1.980613,0.615921,2.673462 +-2.019370,0.854211,-0.847031,-1.982086,0.615106,2.671989 +-2.020663,0.852796,-0.846476,-1.983502,0.614170,2.670574 +-2.021868,0.851449,-0.845786,-1.984848,0.613120,2.669228 +-2.022973,0.850185,-0.844966,-1.986112,0.611965,2.667963 +-2.023968,0.849013,-0.844025,-1.987284,0.610715,2.666791 +-2.024846,0.847944,-0.842971,-1.988353,0.609382,2.665722 +-2.025597,0.846987,-0.841812,-1.989310,0.607977,2.664766 +-2.026217,0.846152,-0.840560,-1.990145,0.606514,2.663930 +-2.026698,0.845444,-0.839224,-1.990853,0.605003,2.663222 +-2.027037,0.844871,-0.837817,-1.991426,0.603460,2.662649 +-2.027231,0.844437,-0.836352,-1.991860,0.601897,2.662216 +-2.027279,0.844147,-0.834841,-1.992150,0.600328,2.661925 +-2.027179,0.844003,-0.833297,-1.992295,0.598767,2.661781 +-2.026932,0.844005,-0.831735,-1.992292,0.597228,2.661783 +-2.026542,0.844155,-0.830167,-1.992142,0.595725,2.661933 +-2.026010,0.844451,-0.828608,-1.991847,0.594270,2.662229 +-2.025343,0.844889,-0.827071,-1.991408,0.592877,2.662667 +-2.024545,0.845467,-0.825571,-1.990830,0.591557,2.663245 +-2.023624,0.846180,-0.824120,-1.990118,0.590323,2.663958 +-2.022589,0.847020,-0.822730,-1.989277,0.589185,2.664798 +-2.021447,0.847981,-0.821415,-1.988317,0.588154,2.665759 +-2.020209,0.849053,-0.820186,-1.987244,0.587238,2.666832 +-2.018887,0.850229,-0.819053,-1.986068,0.586445,2.668007 +-2.017491,0.851497,-0.818027,-1.984801,0.585783,2.669275 +-2.016034,0.852845,-0.817117,-1.983452,0.585257,2.670624 +-2.014529,0.854263,-0.816330,-1.982034,0.584872,2.672041 +-2.012989,0.855738,-0.815675,-1.980559,0.584631,2.673516 +-2.011428,0.857256,-0.815155,-1.979041,0.584537,2.675035 +-2.009859,0.858805,-0.814777,-1.977492,0.584590,2.676583 +-2.008296,0.860370,-0.814543,-1.975927,0.584790,2.678149 +-2.006754,0.861939,-0.814455,-1.974359,0.585135,2.679717 +-2.005245,0.863496,-0.814514,-1.972801,0.585622,2.681274 +-2.003783,0.865028,-0.814721,-1.971269,0.586246,2.682807 +-2.002381,0.866523,-0.815072,-1.969774,0.587003,2.684301 +-2.001051,0.867966,-0.815564,-1.968331,0.587885,2.685744 +-1.999805,0.869345,-0.816194,-1.966952,0.588885,2.687123 +-1.998654,0.870648,-0.816956,-1.965650,0.589994,2.688426 +-1.997608,0.871863,-0.817844,-1.964435,0.591203,2.689641 +-1.996676,0.872979,-0.818848,-1.963318,0.592499,2.690757 +-1.995867,0.873988,-0.819961,-1.962310,0.593873,2.691766 +-1.995187,0.874879,-0.821173,-1.961418,0.595312,2.692657 +-1.994643,0.875645,-0.822472,-1.960652,0.596803,2.693423 +-1.994239,0.876279,-0.823848,-1.960018,0.598333,2.694057 +-1.993979,0.876776,-0.825289,-1.959521,0.599889,2.694555 +-1.993866,0.877132,-0.826781,-1.959165,0.601457,2.694910 +-1.993899,0.877342,-0.828311,-1.958955,0.603023,2.695120 +-1.994080,0.877406,-0.829867,-1.958891,0.604574,2.695184 +-1.994406,0.877322,-0.831434,-1.958975,0.606095,2.695101 +-1.994874,0.877092,-0.832999,-1.959205,0.607573,2.694870 +-1.995481,0.876718,-0.834547,-1.959579,0.608995,2.694496 +-1.996221,0.876202,-0.836066,-1.960095,0.610350,2.693980 +-1.997087,0.875549,-0.837541,-1.960748,0.611624,2.693328 +-1.998072,0.874766,-0.838960,-1.961531,0.612806,2.692544 +-1.999167,0.873859,-0.840310,-1.962439,0.613887,2.691637 +-2.000363,0.872835,-0.841579,-1.963462,0.614856,2.690613 +-2.001649,0.871705,-0.842756,-1.964592,0.615705,2.689483 +-2.003013,0.870477,-0.843832,-1.965820,0.616427,2.688255 +-2.004444,0.869164,-0.844795,-1.967134,0.617015,2.686942 +-2.005929,0.867775,-0.845638,-1.968522,0.617464,2.685553 +-2.007455,0.866325,-0.846354,-1.969973,0.617770,2.684103 +-2.009008,0.864824,-0.846936,-1.971473,0.617931,2.682602 +-2.010575,0.863288,-0.847378,-1.973010,0.617944,2.681066 +-2.012143,0.861728,-0.847677,-1.974569,0.617810,2.679506 +-2.013696,0.860159,-0.847831,-1.976138,0.617530,2.677938 +-2.015221,0.858595,-0.847838,-1.977702,0.617107,2.676374 +-2.016706,0.857050,-0.847698,-1.979247,0.616544,2.674828 +-2.018137,0.855537,-0.847412,-1.980760,0.615846,2.673315 +-2.019501,0.854069,-0.846983,-1.982228,0.615019,2.671847 +-2.020786,0.852660,-0.846414,-1.983637,0.614071,2.670438 +-2.021981,0.851321,-0.845711,-1.984976,0.613010,2.669099 +-2.023076,0.850065,-0.844879,-1.986232,0.611845,2.667843 +-2.024060,0.848903,-0.843926,-1.987394,0.610587,2.666681 +-2.024925,0.847845,-0.842861,-1.988452,0.609247,2.665623 +-2.025664,0.846900,-0.841693,-1.989398,0.607836,2.664678 +-2.026270,0.846076,-0.840431,-1.990221,0.606367,2.663854 +-2.026738,0.845382,-0.839088,-1.990915,0.604852,2.663160 +-2.027063,0.844822,-0.837675,-1.991475,0.603306,2.662600 +-2.027243,0.844402,-0.836205,-1.991895,0.601742,2.662181 +-2.027275,0.844126,-0.834690,-1.992171,0.600173,2.661904 +-2.027161,0.843996,-0.833144,-1.992301,0.598614,2.661774 +-2.026900,0.844013,-0.831580,-1.992284,0.597078,2.661792 +-2.026496,0.844178,-0.830013,-1.992119,0.595579,2.661956 +-2.025951,0.844487,-0.828455,-1.991810,0.594130,2.662266 +-2.025270,0.844940,-0.826922,-1.991357,0.592743,2.662718 +-2.024460,0.845532,-0.825426,-1.990766,0.591432,2.663310 +-2.023527,0.846257,-0.823980,-1.990040,0.590207,2.664035 +-2.022481,0.847109,-0.822597,-1.989188,0.589079,2.664887 +-2.021329,0.848081,-0.821290,-1.988216,0.588058,2.665860 +-2.020082,0.849165,-0.820070,-1.987132,0.587154,2.666943 +-2.018752,0.850350,-0.818947,-1.985947,0.586374,2.668128 +-2.017350,0.851626,-0.817932,-1.984671,0.585725,2.669404 +-2.015887,0.852982,-0.817034,-1.983315,0.585213,2.670760 +-2.014378,0.854406,-0.816260,-1.981891,0.584842,2.672184 +-2.012836,0.855886,-0.815617,-1.980411,0.584615,2.673664 +-2.011273,0.857408,-0.815112,-1.978889,0.584536,2.675186 +-2.009704,0.858959,-0.814747,-1.977338,0.584603,2.676737 +-2.008143,0.860525,-0.814527,-1.975772,0.584817,2.678303 +-2.006603,0.862093,-0.814454,-1.974204,0.585176,2.679871 +-2.005099,0.863648,-0.814528,-1.972649,0.585677,2.681426 +-2.003642,0.865178,-0.814749,-1.971120,0.586315,2.682956 +-2.002247,0.866668,-0.815114,-1.969630,0.587084,2.684446 +-2.000924,0.868105,-0.815620,-1.968192,0.587979,2.685883 +-1.999687,0.869477,-0.816264,-1.966820,0.588990,2.687255 +-1.998546,0.870771,-0.817038,-1.965526,0.590109,2.688550 +-1.997511,0.871977,-0.817937,-1.964320,0.591327,2.689755 +-1.996591,0.873083,-0.818953,-1.963214,0.592631,2.690862 +-1.995794,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-1.995127,0.874960,-0.821297,-1.961337,0.595457,2.692738 +-1.994597,0.875713,-0.822604,-1.960584,0.596952,2.693492 +-1.994207,0.876334,-0.823987,-1.959963,0.598486,2.694113 +-1.993962,0.876818,-0.825433,-1.959479,0.600043,2.694596 +-1.993863,0.877159,-0.826930,-1.959138,0.601612,2.694937 +-1.993911,0.877355,-0.828464,-1.958942,0.603177,2.695133 +-1.994106,0.877404,-0.830021,-1.958893,0.604725,2.695182 +-1.994446,0.877306,-0.831589,-1.958991,0.606242,2.695084 +-1.994928,0.877062,-0.833152,-1.959235,0.607716,2.694840 +-1.995548,0.876673,-0.834698,-1.959624,0.609132,2.694451 +-1.996301,0.876144,-0.836213,-1.960154,0.610479,2.693922 +-1.997179,0.875478,-0.837683,-1.960819,0.611744,2.693256 +-1.998175,0.874682,-0.839096,-1.961615,0.612917,2.692460 +-1.999281,0.873763,-0.840438,-1.962534,0.613987,2.691541 +-2.000486,0.872728,-0.841699,-1.963569,0.614945,2.690507 +-2.001780,0.871588,-0.842867,-1.964709,0.615782,2.689366 +-2.003151,0.870352,-0.843932,-1.965946,0.616491,2.688130 +-2.004588,0.869030,-0.844884,-1.967267,0.617066,2.686808 +-2.006078,0.867635,-0.845715,-1.968662,0.617501,2.685413 +-2.007607,0.866179,-0.846417,-1.970118,0.617792,2.683957 +-2.009162,0.864674,-0.846985,-1.971623,0.617938,2.682452 +-2.010730,0.863135,-0.847414,-1.973162,0.617937,2.680913 +-2.012296,0.861574,-0.847699,-1.974723,0.617789,2.679352 +-2.013847,0.860005,-0.847839,-1.976292,0.617495,2.677783 +-2.015370,0.858442,-0.847831,-1.977855,0.617058,2.676220 +-2.016850,0.856899,-0.847676,-1.979398,0.616481,2.674678 +-2.018274,0.855390,-0.847376,-1.980907,0.615770,2.673168 +-2.019631,0.853927,-0.846933,-1.982370,0.614931,2.671706 +-2.020908,0.852524,-0.846350,-1.983773,0.613972,2.670303 +-2.022093,0.851194,-0.845634,-1.985104,0.612900,2.668972 +-2.023178,0.849946,-0.844790,-1.986351,0.611726,2.667725 +-2.024151,0.848794,-0.843826,-1.987503,0.610459,2.666572 +-2.025004,0.847746,-0.842750,-1.988551,0.609111,2.665525 +-2.025730,0.846813,-0.841572,-1.989484,0.607693,2.664591 +-2.026323,0.846002,-0.840303,-1.990295,0.606219,2.663780 +-2.026776,0.845320,-0.838952,-1.990977,0.604701,2.663099 +-2.027087,0.844774,-0.837533,-1.991523,0.603153,2.662553 +-2.027252,0.844369,-0.836058,-1.991928,0.601588,2.662147 +-2.027271,0.844107,-0.834539,-1.992190,0.600019,2.661885 +-2.027142,0.843991,-0.832990,-1.992306,0.598462,2.661770 +-2.026867,0.844023,-0.831426,-1.992274,0.596929,2.661801 +-2.026448,0.844202,-0.829859,-1.992095,0.595434,2.661980 +-2.025889,0.844526,-0.828303,-1.991771,0.593990,2.662304 +-2.025196,0.844992,-0.826773,-1.991305,0.592611,2.662770 +-2.024373,0.845597,-0.825281,-1.990700,0.591307,2.663375 +-2.023429,0.846335,-0.823841,-1.989962,0.590091,2.664113 +-2.022372,0.847200,-0.822465,-1.989097,0.588974,2.664978 +-2.021210,0.848183,-0.821166,-1.988114,0.587964,2.665962 +-2.019955,0.849277,-0.819955,-1.987020,0.587072,2.667055 +-2.018617,0.850472,-0.818842,-1.985825,0.586304,2.668250 +-2.017208,0.851756,-0.817839,-1.984541,0.585668,2.669534 +-2.015741,0.853120,-0.816952,-1.983178,0.585170,2.670898 +-2.014228,0.854550,-0.816191,-1.981747,0.584813,2.672328 +-2.012682,0.856034,-0.815561,-1.980263,0.584601,2.673812 +-2.011119,0.857559,-0.815069,-1.978738,0.584536,2.675338 +-2.009550,0.859113,-0.814719,-1.977185,0.584618,2.676891 +-2.007990,0.860680,-0.814514,-1.975618,0.584846,2.678458 +-2.006453,0.862247,-0.814455,-1.974050,0.585220,2.680025 +-2.004953,0.863800,-0.814543,-1.972497,0.585734,2.681578 +-2.003502,0.865326,-0.814778,-1.970971,0.586385,2.683104 +-2.002113,0.866812,-0.815158,-1.969486,0.587167,2.684590 +-2.000799,0.868243,-0.815678,-1.968054,0.588073,2.686021 +-1.999570,0.869608,-0.816334,-1.966689,0.589096,2.687386 +-1.998439,0.870894,-0.817122,-1.965403,0.590225,2.688672 +-1.997415,0.872091,-0.818032,-1.964206,0.591451,2.689869 +-1.996507,0.873187,-0.819059,-1.963110,0.592764,2.690965 +-1.995722,0.874173,-0.820192,-1.962125,0.594152,2.691951 +-1.995069,0.875040,-0.821422,-1.961257,0.595602,2.692818 +-1.994552,0.875780,-0.822737,-1.960517,0.597102,2.693559 +-1.994176,0.876388,-0.824127,-1.959909,0.598638,2.694166 +-1.993945,0.876858,-0.825579,-1.959439,0.600198,2.694636 +-1.993861,0.877185,-0.827080,-1.959112,0.601766,2.694963 +-1.993923,0.877366,-0.828616,-1.958931,0.603330,2.695145 +-1.994133,0.877401,-0.830175,-1.958896,0.604876,2.695179 +-1.994487,0.877289,-0.831743,-1.959009,0.606390,2.695067 +-1.994983,0.877030,-0.833306,-1.959267,0.607858,2.694808 +-1.995617,0.876627,-0.834849,-1.959670,0.609268,2.694405 +-1.996382,0.876084,-0.836360,-1.960213,0.610607,2.693862 +-1.997272,0.875405,-0.837825,-1.960892,0.611864,2.693183 +-1.998280,0.874597,-0.839231,-1.961700,0.613027,2.692375 +-1.999395,0.873666,-0.840566,-1.962631,0.614087,2.691444 +-2.000610,0.872621,-0.841819,-1.963677,0.615033,2.690399 +-2.001912,0.871470,-0.842977,-1.964827,0.615858,2.689248 +-2.003290,0.870225,-0.844031,-1.966072,0.616554,2.688003 +-2.004733,0.868896,-0.844971,-1.967401,0.617115,2.686674 +-2.006227,0.867494,-0.845790,-1.968803,0.617536,2.685272 +-2.007759,0.866033,-0.846479,-1.970265,0.617813,2.683811 +-2.009316,0.864524,-0.847034,-1.971773,0.617945,2.682302 +-2.010885,0.862982,-0.847448,-1.973315,0.617929,2.680760 +-2.012450,0.861419,-0.847719,-1.974878,0.617767,2.679197 +-2.013999,0.859851,-0.847844,-1.976447,0.617458,2.677629 +-2.015518,0.858289,-0.847822,-1.978008,0.617007,2.676067 +-2.016993,0.856749,-0.847653,-1.979548,0.616417,2.674527 +-2.018411,0.855244,-0.847339,-1.981053,0.615693,2.673022 +-2.019760,0.853786,-0.846882,-1.982511,0.614842,2.671565 +-2.021029,0.852390,-0.846286,-1.983907,0.613871,2.670168 +-2.022205,0.851067,-0.845557,-1.985230,0.612789,2.668845 +-2.023278,0.849828,-0.844701,-1.986469,0.611605,2.667607 +-2.024240,0.848686,-0.843725,-1.987611,0.610329,2.666464 +-2.025081,0.847649,-0.842639,-1.988648,0.608974,2.665427 +-2.025794,0.846728,-0.841451,-1.989570,0.607550,2.664506 +-2.026374,0.845929,-0.840173,-1.990368,0.606071,2.663707 +-2.026813,0.845261,-0.838815,-1.991037,0.604550,2.663039 +-2.027110,0.844728,-0.837390,-1.991569,0.602999,2.662506 +-2.027261,0.844337,-0.835910,-1.991961,0.601433,2.662115 +-2.027264,0.844089,-0.834388,-1.992208,0.599865,2.661867 +-2.027121,0.843988,-0.832837,-1.992309,0.598310,2.661766 +-2.026832,0.844034,-0.831271,-1.992263,0.596780,2.661812 +-2.026399,0.844227,-0.829705,-1.992070,0.595289,2.662005 +-2.025827,0.844565,-0.828151,-1.991732,0.593851,2.662344 +-2.025120,0.845046,-0.826624,-1.991251,0.592479,2.662824 +-2.024286,0.845664,-0.825136,-1.990633,0.591183,2.663442 +-2.023330,0.846415,-0.823702,-1.989882,0.589977,2.664193 +-2.022262,0.847292,-0.822333,-1.989006,0.588869,2.665070 +-2.021091,0.848286,-0.821042,-1.988011,0.587871,2.666065 +-2.019827,0.849391,-0.819841,-1.986907,0.586990,2.667169 +-2.018481,0.850594,-0.818739,-1.985703,0.586236,2.668373 +-2.017066,0.851887,-0.817746,-1.984410,0.585613,2.669665 +-2.015593,0.853258,-0.816871,-1.983039,0.585128,2.671036 +-2.014077,0.854694,-0.816123,-1.981603,0.584786,2.672472 +-2.012529,0.856183,-0.815507,-1.980114,0.584588,2.673961 +-2.010964,0.857711,-0.815028,-1.978586,0.584537,2.675490 +-2.009396,0.859266,-0.814692,-1.977031,0.584634,2.677045 +-2.007838,0.860834,-0.814501,-1.975463,0.584877,2.678612 +-2.006304,0.862401,-0.814457,-1.973897,0.585264,2.680179 +-2.004807,0.863952,-0.814560,-1.972345,0.585792,2.681730 +-2.003362,0.865475,-0.814809,-1.970823,0.586456,2.683253 +-2.001980,0.866955,-0.815203,-1.969342,0.587251,2.684733 +-2.000674,0.868381,-0.815736,-1.967917,0.588169,2.686159 +-1.999455,0.869738,-0.816406,-1.966559,0.589202,2.687516 +-1.998334,0.871016,-0.817206,-1.965281,0.590342,2.688794 +-1.997320,0.872203,-0.818129,-1.964094,0.591577,2.689981 +-1.996424,0.873289,-0.819166,-1.963008,0.592898,2.691067 +-1.995652,0.874263,-0.820309,-1.962034,0.594292,2.692042 +-1.995012,0.875118,-0.821548,-1.961179,0.595748,2.692897 +-1.994509,0.875846,-0.822871,-1.960451,0.597252,2.693625 +-1.994147,0.876441,-0.824268,-1.959856,0.598791,2.694219 +-1.993930,0.876896,-0.825725,-1.959401,0.600352,2.694674 +-1.993860,0.877209,-0.827230,-1.959088,0.601921,2.694987 +-1.993938,0.877376,-0.828769,-1.958921,0.603484,2.695154 +-1.994161,0.877397,-0.830330,-1.958901,0.605027,2.695175 +-1.994530,0.877270,-0.831897,-1.959028,0.606536,2.695048 +-1.995039,0.876997,-0.833459,-1.959301,0.608000,2.694775 +-1.995686,0.876580,-0.835000,-1.959717,0.609403,2.694358 +-1.996464,0.876023,-0.836507,-1.960274,0.610735,2.693801 +-1.997366,0.875331,-0.837966,-1.960966,0.611983,2.693109 +-1.998385,0.874510,-0.839366,-1.961787,0.613137,2.692289 +-1.999511,0.873568,-0.840694,-1.962729,0.614185,2.691346 +-2.000734,0.872512,-0.841937,-1.963785,0.615120,2.690290 +-2.002044,0.871352,-0.843085,-1.964945,0.615932,2.689130 +-2.003430,0.870098,-0.844128,-1.966200,0.616615,2.687876 +-2.004878,0.868761,-0.845057,-1.967537,0.617162,2.686539 +-2.006376,0.867353,-0.845863,-1.968945,0.617570,2.685131 +-2.007912,0.865886,-0.846540,-1.970411,0.617833,2.683664 +-2.009471,0.864373,-0.847081,-1.971924,0.617950,2.682152 +-2.011039,0.862829,-0.847482,-1.973469,0.617920,2.680607 +-2.012604,0.861265,-0.847738,-1.975032,0.617743,2.679043 +-2.014150,0.859696,-0.847849,-1.976601,0.617420,2.677474 +-2.015665,0.858136,-0.847812,-1.978161,0.616955,2.675914 +-2.017135,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-2.018547,0.855098,-0.847300,-1.981199,0.615615,2.672876 +-2.019889,0.853646,-0.846829,-1.982651,0.614752,2.671424 +-2.021149,0.852256,-0.846220,-1.984041,0.613769,2.670034 +-2.022315,0.850941,-0.845478,-1.985356,0.612676,2.668719 +-2.023378,0.849712,-0.844610,-1.986586,0.611483,2.667490 +-2.024328,0.848579,-0.843623,-1.987718,0.610199,2.666357 +-2.025157,0.847553,-0.842526,-1.988744,0.608837,2.665331 +-2.025858,0.846643,-0.841329,-1.989654,0.607407,2.664421 +-2.026423,0.845857,-0.840043,-1.990440,0.605923,2.663635 +-2.026849,0.845202,-0.838678,-1.991095,0.604398,2.662980 +-2.027131,0.844683,-0.837246,-1.991614,0.602845,2.662461 +-2.027268,0.844306,-0.835761,-1.991991,0.601278,2.662084 +-2.027257,0.844073,-0.834236,-1.992225,0.599711,2.661851 +-2.027099,0.843986,-0.832683,-1.992311,0.598157,2.661764 +-2.026796,0.844047,-0.831117,-1.992250,0.596631,2.661825 +-2.026349,0.844254,-0.829551,-1.992043,0.595145,2.662032 +-2.025763,0.844606,-0.827999,-1.991691,0.593713,2.662385 +-2.025044,0.845101,-0.826475,-1.991196,0.592348,2.662879 +-2.024197,0.845732,-0.824993,-1.990565,0.591060,2.663510 +-2.023230,0.846496,-0.823564,-1.989801,0.589863,2.664274 +-2.022151,0.847384,-0.822203,-1.988913,0.588766,2.665163 +-2.020970,0.848390,-0.820920,-1.987907,0.587779,2.666169 +-2.019698,0.849505,-0.819727,-1.986792,0.586910,2.667283 +-2.018345,0.850718,-0.818636,-1.985579,0.586168,2.668496 +-2.016923,0.852019,-0.817654,-1.984278,0.585559,2.669797 +-2.015446,0.853396,-0.816792,-1.982901,0.585088,2.671175 +-2.013925,0.854838,-0.816056,-1.981459,0.584760,2.672616 +-2.012375,0.856332,-0.815453,-1.979965,0.584577,2.674110 +-2.010810,0.857864,-0.814989,-1.978433,0.584540,2.675642 +-2.009242,0.859421,-0.814667,-1.976877,0.584651,2.677199 +-2.007685,0.860989,-0.814491,-1.975308,0.584909,2.678767 +-2.006154,0.862554,-0.814461,-1.973743,0.585310,2.680332 +-2.004663,0.864103,-0.814578,-1.972194,0.585852,2.681882 +-2.003223,0.865623,-0.814842,-1.970675,0.586529,2.683401 +-2.001848,0.867098,-0.815249,-1.969199,0.587336,2.684876 +-2.000550,0.868518,-0.815796,-1.967780,0.588266,2.686296 +-1.999340,0.869868,-0.816479,-1.966429,0.589310,2.687646 +-1.998229,0.871137,-0.817291,-1.965160,0.590459,2.688916 +-1.997227,0.872315,-0.818226,-1.963982,0.591704,2.690093 +-1.996342,0.873390,-0.819274,-1.962907,0.593032,2.691168 +-1.995583,0.874353,-0.820427,-1.961944,0.594433,2.692131 +-1.994956,0.875196,-0.821675,-1.961101,0.595894,2.692974 +-1.994467,0.875911,-0.823006,-1.960386,0.597402,2.693689 +-1.994119,0.876492,-0.824409,-1.959805,0.598944,2.694270 +-1.993917,0.876933,-0.825871,-1.959364,0.600506,2.694712 +-1.993861,0.877232,-0.827380,-1.959065,0.602075,2.695010 +-1.993953,0.877385,-0.828922,-1.958912,0.603637,2.695163 +-1.994191,0.877391,-0.830484,-1.958907,0.605177,2.695169 +-1.994574,0.877249,-0.832052,-1.959048,0.606683,2.695027 +-1.995097,0.876962,-0.833612,-1.959335,0.608141,2.694740 +-1.995757,0.876531,-0.835150,-1.959766,0.609538,2.694309 +-1.996547,0.875961,-0.836653,-1.960336,0.610862,2.693739 +-1.997461,0.875256,-0.838107,-1.961041,0.612101,2.693034 +-1.998491,0.874423,-0.839500,-1.961874,0.613245,2.692201 +-1.999627,0.873469,-0.840820,-1.962828,0.614282,2.691247 +-2.000860,0.872402,-0.842054,-1.963895,0.615205,2.690180 +-2.002178,0.871232,-0.843193,-1.965065,0.616005,2.689010 +-2.003570,0.869969,-0.844225,-1.966328,0.616675,2.687748 +-2.005024,0.868625,-0.845142,-1.967672,0.617209,2.686403 +-2.006526,0.867210,-0.845936,-1.969087,0.617602,2.684989 +-2.008065,0.865739,-0.846599,-1.970558,0.617851,2.683517 +-2.009625,0.864222,-0.847127,-1.972075,0.617953,2.682001 +-2.011194,0.862675,-0.847513,-1.973622,0.617909,2.680453 +-2.012757,0.861110,-0.847756,-1.975187,0.617717,2.678889 +-2.014301,0.859542,-0.847852,-1.976755,0.617381,2.677320 +-2.015812,0.857984,-0.847800,-1.978313,0.616902,2.675762 +-2.017277,0.856449,-0.847603,-1.979848,0.616285,2.674227 +-2.018683,0.854952,-0.847260,-1.981345,0.615535,2.672731 +-2.020017,0.853506,-0.846775,-1.982791,0.614660,2.671284 +-2.021268,0.852123,-0.846152,-1.984174,0.613666,2.669901 +-2.022425,0.850816,-0.845398,-1.985481,0.612563,2.668594 +-2.023477,0.849595,-0.844518,-1.986702,0.611360,2.667374 +-2.024416,0.848473,-0.843520,-1.987824,0.610068,2.666251 +-2.025232,0.847458,-0.842413,-1.988839,0.608699,2.665236 +-2.025919,0.846560,-0.841206,-1.989737,0.607263,2.664338 +-2.026471,0.845787,-0.839911,-1.990510,0.605775,2.663565 +-2.026883,0.845145,-0.838539,-1.991152,0.604246,2.662923 +-2.027151,0.844640,-0.837102,-1.991657,0.602691,2.662418 +-2.027273,0.844276,-0.835613,-1.992021,0.601124,2.662054 +-2.027248,0.844058,-0.834084,-1.992240,0.599557,2.661836 +-2.027076,0.843985,-0.832529,-1.992312,0.598006,2.661764 +-2.026758,0.844061,-0.830962,-1.992236,0.596483,2.661839 +-2.026297,0.844282,-0.829397,-1.992015,0.595002,2.662061 +-2.025698,0.844649,-0.827848,-1.991648,0.593576,2.662427 +-2.024966,0.845157,-0.826327,-1.991140,0.592217,2.662935 +-2.024107,0.845802,-0.824849,-1.990495,0.590938,2.663580 +-2.023128,0.846578,-0.823427,-1.989719,0.589750,2.664356 +-2.022039,0.847478,-0.822073,-1.988819,0.588664,2.665257 +-2.020849,0.848495,-0.820798,-1.987802,0.587688,2.666274 +-2.019568,0.849620,-0.819615,-1.986677,0.586832,2.667398 +-2.018207,0.850842,-0.818534,-1.985455,0.586102,2.668621 +-2.016780,0.852151,-0.817564,-1.984146,0.585507,2.669930 +-2.015298,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-2.013774,0.854983,-0.815991,-1.981314,0.584735,2.672761 +-2.012222,0.856481,-0.815401,-1.979816,0.584566,2.674259 +-2.010655,0.858016,-0.814951,-1.978281,0.584545,2.675794 +-2.009088,0.859575,-0.814643,-1.976722,0.584670,2.677353 +-2.007533,0.861143,-0.814481,-1.975154,0.584942,2.678921 +-2.006006,0.862708,-0.814466,-1.973589,0.585357,2.680486 +-2.004518,0.864255,-0.814598,-1.972043,0.585912,2.682033 +-2.003084,0.865770,-0.814875,-1.970527,0.586603,2.683548 +-2.001716,0.867241,-0.815297,-1.969056,0.587422,2.685019 +-2.000426,0.868654,-0.815858,-1.967643,0.588364,2.686432 +-1.999226,0.869997,-0.816554,-1.966300,0.589419,2.687775 +-1.998125,0.871258,-0.817378,-1.965039,0.590578,2.689036 +-1.997134,0.872425,-0.818324,-1.963872,0.591831,2.690204 +-1.996262,0.873490,-0.819383,-1.962807,0.593167,2.691268 +-1.995515,0.874442,-0.820546,-1.961856,0.594574,2.692220 +-1.994902,0.875272,-0.821802,-1.961025,0.596041,2.693050 +-1.994426,0.875974,-0.823141,-1.960323,0.597553,2.693752 +-1.994093,0.876542,-0.824550,-1.959756,0.599097,2.694320 +-1.993905,0.876969,-0.826018,-1.959328,0.600661,2.694747 +-1.993864,0.877254,-0.827531,-1.959044,0.602230,2.695032 +-1.993970,0.877392,-0.829075,-1.958905,0.603790,2.695170 +-1.994222,0.877383,-0.830638,-1.958914,0.605327,2.695161 +-1.994619,0.877227,-0.832206,-1.959070,0.606829,2.695005 +-1.995156,0.876926,-0.833764,-1.959371,0.608281,2.694704 +-1.995829,0.876481,-0.835300,-1.959816,0.609672,2.694259 +-1.996632,0.875897,-0.836798,-1.960400,0.610988,2.693675 +-1.997558,0.875180,-0.838247,-1.961118,0.612218,2.692958 +-1.998598,0.874334,-0.839634,-1.961963,0.613352,2.692112 +-1.999744,0.873369,-0.840946,-1.962929,0.614379,2.691147 +-2.000986,0.872291,-0.842171,-1.964006,0.615290,2.690069 +-2.002312,0.871112,-0.843299,-1.965185,0.616077,2.688890 +-2.003710,0.869840,-0.844321,-1.966457,0.616734,2.687619 +-2.005170,0.868488,-0.845226,-1.967809,0.617254,2.686267 +-2.006676,0.867068,-0.846007,-1.969229,0.617633,2.684846 +-2.008217,0.865591,-0.846657,-1.970706,0.617868,2.683369 +-2.009779,0.864071,-0.847171,-1.972226,0.617956,2.681849 +-2.011348,0.862522,-0.847544,-1.973776,0.617896,2.680300 +-2.012910,0.860956,-0.847772,-1.975341,0.617691,2.678734 +-2.014451,0.859388,-0.847853,-1.976909,0.617340,2.677166 +-2.015959,0.857831,-0.847787,-1.978466,0.616847,2.675609 +-2.017418,0.856300,-0.847575,-1.979997,0.616217,2.674078 +-2.018818,0.854807,-0.847218,-1.981490,0.615455,2.672586 +-2.020144,0.853367,-0.846720,-1.982930,0.614567,2.671145 +-2.021386,0.851991,-0.846084,-1.984306,0.613562,2.669769 +-2.022533,0.850692,-0.845317,-1.985606,0.612449,2.668470 +-2.023575,0.849480,-0.844424,-1.986817,0.611237,2.667259 +-2.024502,0.848368,-0.843415,-1.987929,0.609937,2.666146 +-2.025306,0.847365,-0.842298,-1.988933,0.608560,2.665143 +-2.025980,0.846478,-0.841083,-1.989819,0.607119,2.664257 +-2.026518,0.845718,-0.839780,-1.990579,0.605626,2.663496 +-2.026916,0.845089,-0.838401,-1.991208,0.604094,2.662867 +-2.027170,0.844598,-0.836958,-1.991700,0.602537,2.662376 +-2.027277,0.844248,-0.835464,-1.992049,0.600969,2.662026 +-2.027237,0.844044,-0.833932,-1.992253,0.599404,2.661822 +-2.027051,0.843986,-0.832375,-1.992311,0.597854,2.661765 +-2.026719,0.844076,-0.830808,-1.992221,0.596335,2.661854 +-2.026244,0.844312,-0.829244,-1.991985,0.594858,2.662090 +-2.025632,0.844693,-0.827696,-1.991604,0.593439,2.662471 +-2.024887,0.845214,-0.826179,-1.991083,0.592087,2.662993 +-2.024015,0.845872,-0.824706,-1.990425,0.590817,2.663651 +-2.023026,0.846661,-0.823290,-1.989636,0.589639,2.664439 +-2.021926,0.847574,-0.821943,-1.988724,0.588562,2.665352 +-2.020726,0.848602,-0.820678,-1.987695,0.587598,2.666380 +-2.019437,0.849736,-0.819504,-1.986561,0.586754,2.667515 +-2.018070,0.850968,-0.818433,-1.985330,0.586038,2.668746 +-2.016636,0.852285,-0.817475,-1.984013,0.585455,2.670063 +-2.015149,0.853676,-0.816637,-1.982621,0.585012,2.671454 +-2.013622,0.855129,-0.815927,-1.981168,0.584712,2.672907 +-2.012068,0.856631,-0.815351,-1.979666,0.584558,2.674409 +-2.010500,0.858169,-0.814914,-1.978128,0.584551,2.675947 +-2.008934,0.859729,-0.814621,-1.976568,0.584690,2.677507 +-2.007381,0.861298,-0.814473,-1.974999,0.584976,2.679076 +-2.005857,0.862861,-0.814472,-1.973436,0.585406,2.680639 +-2.004374,0.864405,-0.814619,-1.971892,0.585974,2.682184 +-2.002946,0.865917,-0.814911,-1.970380,0.586678,2.683695 +-2.001585,0.867383,-0.815346,-1.968914,0.587510,2.685161 +-2.000304,0.868789,-0.815920,-1.967508,0.588463,2.686568 +-1.999113,0.870125,-0.816629,-1.966172,0.589528,2.687903 +-1.998022,0.871377,-0.817466,-1.964920,0.590697,2.689155 +-1.997043,0.872535,-0.818424,-1.963762,0.591959,2.690313 +-1.996183,0.873589,-0.819493,-1.962708,0.593303,2.691367 +-1.995449,0.874529,-0.820666,-1.961768,0.594716,2.692307 +-1.994849,0.875347,-0.821931,-1.960950,0.596188,2.693125 +-1.994387,0.876036,-0.823277,-1.960261,0.597704,2.693814 +-1.994068,0.876590,-0.824692,-1.959707,0.599251,2.694368 +-1.993894,0.877004,-0.826165,-1.959293,0.600815,2.694782 +-1.993868,0.877274,-0.827681,-1.959023,0.602384,2.695052 +-1.993988,0.877398,-0.829229,-1.958900,0.603942,2.695176 +-1.994255,0.877374,-0.830793,-1.958923,0.605477,2.695152 +-1.994666,0.877204,-0.832360,-1.959093,0.606974,2.694982 +-1.995217,0.876888,-0.833917,-1.959409,0.608421,2.694666 +-1.995903,0.876430,-0.835449,-1.959867,0.609805,2.694208 +-1.996718,0.875832,-0.836943,-1.960465,0.611113,2.693611 +-1.997655,0.875102,-0.838387,-1.961195,0.612334,2.692880 +-1.998707,0.874244,-0.839767,-1.962053,0.613458,2.692022 +-1.999863,0.873267,-0.841070,-1.963030,0.614474,2.691045 +-2.001113,0.872179,-0.842287,-1.964118,0.615373,2.689958 +-2.002446,0.870990,-0.843405,-1.965307,0.616148,2.688769 +-2.003852,0.869711,-0.844415,-1.966587,0.616791,2.687489 +-2.005316,0.868351,-0.845308,-1.967946,0.617298,2.686130 +-2.006827,0.866925,-0.846077,-1.969372,0.617662,2.684703 +-2.008371,0.865443,-0.846714,-1.970854,0.617883,2.683221 +-2.009934,0.863920,-0.847214,-1.972377,0.617956,2.681698 +-2.011502,0.862368,-0.847572,-1.973929,0.617883,2.680146 +-2.013063,0.860801,-0.847786,-1.975496,0.617662,2.678579 +-2.014602,0.859234,-0.847853,-1.977063,0.617297,2.677012 +-2.016105,0.857679,-0.847773,-1.978618,0.616791,2.675457 +-2.017559,0.856151,-0.847546,-1.980146,0.616147,2.673929 +-2.018952,0.854663,-0.847175,-1.981634,0.615373,2.672441 +-2.020270,0.853228,-0.846663,-1.983069,0.614473,2.671006 +-2.021504,0.851859,-0.846014,-1.984438,0.613457,2.669637 +-2.022641,0.850568,-0.845234,-1.985729,0.612334,2.668346 +-2.023671,0.849366,-0.844330,-1.986931,0.611113,2.667144 +-2.024586,0.848264,-0.843310,-1.988033,0.609804,2.666043 +-2.025378,0.847272,-0.842182,-1.989025,0.608421,2.665050 +-2.026039,0.846398,-0.840958,-1.989899,0.606974,2.664176 +-2.026564,0.845650,-0.839647,-1.990647,0.605476,2.663428 +-2.026947,0.845034,-0.838261,-1.991263,0.603942,2.662812 +-2.027187,0.844557,-0.836813,-1.991740,0.602383,2.662335 +-2.027280,0.844222,-0.835314,-1.992075,0.600815,2.662000 +-2.027226,0.844032,-0.833779,-1.992265,0.599250,2.661810 +-2.027024,0.843989,-0.832221,-1.992309,0.597703,2.661767 +-2.026678,0.844093,-0.830654,-1.992204,0.596187,2.661871 +-2.026190,0.844343,-0.829090,-1.991954,0.594716,2.662121 +-2.025564,0.844738,-0.827545,-1.991559,0.593302,2.662516 +-2.024807,0.845273,-0.826032,-1.991024,0.591959,2.663051 +-2.023923,0.845944,-0.824564,-1.990353,0.590697,2.663723 +-2.022922,0.846746,-0.823154,-1.989551,0.589528,2.664524 +-2.021812,0.847670,-0.821815,-1.988627,0.588462,2.665448 +-2.020603,0.848709,-0.820558,-1.987588,0.587509,2.666487 +-2.019306,0.849853,-0.819394,-1.986444,0.586678,2.667632 +-2.017931,0.851094,-0.818334,-1.985203,0.585974,2.668872 +-2.016492,0.852419,-0.817387,-1.983879,0.585405,2.670197 +-2.015000,0.853816,-0.816561,-1.982481,0.584976,2.671595 +-2.013470,0.855275,-0.815864,-1.981022,0.584690,2.673053 +-2.011914,0.856781,-0.815302,-1.979516,0.584551,2.674559 +-2.010346,0.858322,-0.814879,-1.977975,0.584558,2.676100 +-2.008780,0.859883,-0.814600,-1.976414,0.584712,2.677662 +-2.007230,0.861452,-0.814466,-1.974845,0.585012,2.679230 +-2.005709,0.863014,-0.814480,-1.973283,0.585455,2.680793 +-2.004231,0.864556,-0.814641,-1.971741,0.586038,2.682334 +-2.002809,0.866064,-0.814947,-1.970233,0.586754,2.683842 +-2.001456,0.867524,-0.815396,-1.968773,0.587598,2.685302 +-2.000182,0.868924,-0.815984,-1.967373,0.588563,2.686702 +-1.999001,0.870252,-0.816706,-1.966045,0.589639,2.688030 +-1.997921,0.871495,-0.817555,-1.964802,0.590817,2.689274 +-1.996953,0.872644,-0.818524,-1.963653,0.592088,2.690422 +-1.996105,0.873687,-0.819604,-1.962611,0.593439,2.691465 +-1.995384,0.874615,-0.820786,-1.961682,0.594859,2.692393 +-1.994797,0.875421,-0.822060,-1.960876,0.596335,2.693199 +-1.994349,0.876097,-0.823413,-1.960200,0.597855,2.693875 +-1.994044,0.876637,-0.824835,-1.959660,0.599404,2.694415 +-1.993885,0.877037,-0.826313,-1.959260,0.600970,2.694815 +-1.993873,0.877292,-0.827833,-1.959005,0.602538,2.695071 +-1.994008,0.877402,-0.829382,-1.958895,0.604095,2.695180 +-1.994289,0.877364,-0.830947,-1.958933,0.605626,2.695142 +-1.994714,0.877179,-0.832514,-1.959118,0.607119,2.694957 +-1.995278,0.876849,-0.834069,-1.959448,0.608560,2.694627 +-1.995977,0.876377,-0.835598,-1.959920,0.609937,2.694155 +-1.996805,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-1.997754,0.875023,-0.838526,-1.961274,0.612449,2.692801 +-1.998816,0.874153,-0.839899,-1.962144,0.613563,2.691931 +-1.999982,0.873165,-0.841194,-1.963132,0.614568,2.690943 +-2.001241,0.872067,-0.842401,-1.964231,0.615455,2.689845 +-2.002582,0.870868,-0.843509,-1.965429,0.616217,2.688646 +-2.003994,0.869580,-0.844508,-1.966717,0.616847,2.687358 +-2.005463,0.868214,-0.845390,-1.968083,0.617340,2.685992 +-2.006978,0.866781,-0.846146,-1.969516,0.617691,2.684559 +-2.008524,0.865295,-0.846770,-1.971002,0.617897,2.683073 +-2.010088,0.863768,-0.847256,-1.972529,0.617956,2.681546 +-2.011657,0.862214,-0.847600,-1.974083,0.617867,2.679992 +-2.013216,0.860647,-0.847799,-1.975650,0.617633,2.678425 +-2.014751,0.859080,-0.847852,-1.977217,0.617254,2.676858 +-2.016250,0.857527,-0.847757,-1.978770,0.616734,2.675305 +-2.017699,0.856002,-0.847516,-1.980295,0.616077,2.673781 +-2.019085,0.854519,-0.847131,-1.981778,0.615289,2.672297 +-2.020396,0.853090,-0.846605,-1.983207,0.614378,2.670868 +-2.021620,0.851728,-0.845943,-1.984569,0.613351,2.669507 +-2.022747,0.850446,-0.845150,-1.985852,0.612218,2.668224 +-2.023767,0.849253,-0.844235,-1.987044,0.610987,2.667031 +-2.024670,0.848162,-0.843203,-1.988136,0.609671,2.665940 +-2.025449,0.847180,-0.842066,-1.989117,0.608281,2.664959 +-2.026097,0.846318,-0.840832,-1.989979,0.606828,2.664097 +-2.026608,0.845583,-0.839514,-1.990714,0.605327,2.663361 +-2.026977,0.844981,-0.838121,-1.991316,0.603789,2.662759 +-2.027203,0.844517,-0.836667,-1.991780,0.602229,2.662296 +-2.027281,0.844196,-0.835164,-1.992101,0.600660,2.661975 +-2.027212,0.844021,-0.833627,-1.992276,0.599097,2.661799 +-2.026997,0.843992,-0.832067,-1.992305,0.597552,2.661771 +-2.026636,0.844111,-0.830499,-1.992186,0.596040,2.661889 +-2.026135,0.844376,-0.828937,-1.991921,0.594574,2.662154 +-2.025496,0.844784,-0.827395,-1.991513,0.593167,2.662563 +-2.024725,0.845333,-0.825885,-1.990964,0.591830,2.663112 +-2.023830,0.846018,-0.824423,-1.990279,0.590577,2.663796 +-2.022817,0.846831,-0.823019,-1.989466,0.589418,2.664610 +-2.021697,0.847767,-0.821687,-1.988530,0.588363,2.665545 +-2.020479,0.848817,-0.820439,-1.987480,0.587422,2.666595 +-2.019173,0.849972,-0.819285,-1.986326,0.586602,2.667750 +-2.017792,0.851221,-0.818235,-1.985077,0.585912,2.668999 +-2.016347,0.852553,-0.817300,-1.983744,0.585357,2.670331 +-2.014851,0.853958,-0.816487,-1.982340,0.584942,2.671736 +-2.013317,0.855421,-0.815802,-1.980876,0.584670,2.673199 +-2.011760,0.856931,-0.815254,-1.979366,0.584545,2.674710 +-2.010191,0.858475,-0.814845,-1.977822,0.584566,2.676253 +-2.008626,0.860038,-0.814580,-1.976259,0.584735,2.677816 +-2.007078,0.861607,-0.814461,-1.974691,0.585050,2.679385 +-2.005561,0.863167,-0.814490,-1.973130,0.585507,2.680945 +-2.004088,0.864706,-0.814665,-1.971591,0.586103,2.682484 +-2.002673,0.866210,-0.814985,-1.970087,0.586832,2.683988 +-2.001326,0.867665,-0.815448,-1.968632,0.587688,2.685443 +-2.000062,0.869058,-0.816050,-1.967239,0.588664,2.686837 +-1.998890,0.870378,-0.816784,-1.965919,0.589751,2.688157 +-1.997820,0.871613,-0.817645,-1.964684,0.590939,2.689391 +-1.996864,0.872751,-0.818626,-1.963546,0.592218,2.690529 +-1.996028,0.873783,-0.819716,-1.962514,0.593576,2.691561 +-1.995320,0.874700,-0.820908,-1.961597,0.595002,2.692478 +-1.994747,0.875493,-0.822190,-1.960804,0.596483,2.693271 +-1.994313,0.876156,-0.823551,-1.960141,0.598006,2.693934 +-1.994022,0.876683,-0.824978,-1.959614,0.599558,2.694461 +-1.993878,0.877068,-0.826461,-1.959229,0.601124,2.694847 +-1.993880,0.877310,-0.827984,-1.958987,0.602692,2.695088 +-1.994029,0.877405,-0.829536,-1.958892,0.604247,2.695183 +-1.994325,0.877352,-0.831102,-1.958945,0.605775,2.695131 +-1.994763,0.877153,-0.832668,-1.959144,0.607264,2.694931 +-1.995341,0.876809,-0.834221,-1.959488,0.608699,2.694587 +-1.996053,0.876323,-0.835747,-1.959974,0.610069,2.694101 +-1.996893,0.875699,-0.837232,-1.960598,0.611361,2.693477 +-1.997854,0.874943,-0.838664,-1.961354,0.612564,2.692721 +-1.998926,0.874061,-0.840030,-1.962236,0.613667,2.691839 +-2.000102,0.873061,-0.841317,-1.963236,0.614660,2.690840 +-2.001369,0.871953,-0.842515,-1.964344,0.615536,2.689731 +-2.002718,0.870745,-0.843613,-1.965552,0.616285,2.688523 +-2.004136,0.869449,-0.844601,-1.966848,0.616902,2.687227 +-2.005610,0.868075,-0.845470,-1.968222,0.617381,2.685853 +-2.007129,0.866637,-0.846213,-1.969660,0.617717,2.684415 +-2.008677,0.865146,-0.846824,-1.971151,0.617909,2.682924 +-2.010243,0.863616,-0.847296,-1.972681,0.617953,2.681394 +-2.011811,0.862060,-0.847626,-1.974237,0.617851,2.679838 +-2.013368,0.860492,-0.847811,-1.975805,0.617602,2.678270 +-2.014901,0.858926,-0.847849,-1.977371,0.617209,2.676704 +-2.016395,0.857376,-0.847740,-1.978922,0.616675,2.675154 +-2.017839,0.855854,-0.847485,-1.980443,0.616005,2.673633 +-2.019218,0.854376,-0.847086,-1.981921,0.615205,2.672154 +-2.020520,0.852953,-0.846546,-1.983344,0.614282,2.670731 +-2.021736,0.851598,-0.845871,-1.984699,0.613244,2.669377 +-2.022852,0.850324,-0.845066,-1.985973,0.612101,2.668102 +-2.023861,0.849141,-0.844138,-1.987156,0.610861,2.666919 +-2.024752,0.848060,-0.843096,-1.988237,0.609537,2.665838 +-2.025519,0.847090,-0.841949,-1.989207,0.608140,2.664868 +-2.026153,0.846240,-0.840706,-1.990057,0.606682,2.664018 +-2.026651,0.845518,-0.839379,-1.990779,0.605176,2.663296 +-2.027006,0.844929,-0.837980,-1.991368,0.603636,2.662707 +-2.027217,0.844479,-0.836521,-1.991818,0.602075,2.662258 +-2.027281,0.844173,-0.835014,-1.992124,0.600506,2.661951 +-2.027197,0.844012,-0.833474,-1.992286,0.598943,2.661790 +-2.026968,0.843998,-0.831913,-1.992300,0.597401,2.661776 +-2.026593,0.844131,-0.830345,-1.992167,0.595893,2.661909 +-2.026078,0.844410,-0.828784,-1.991887,0.594432,2.662188 +-2.025425,0.844832,-0.827244,-1.991465,0.593032,2.662611 +-2.024642,0.845395,-0.825739,-1.990902,0.591703,2.663173 +-2.023735,0.846092,-0.824281,-1.990205,0.590459,2.663870 +-2.022712,0.846918,-0.822884,-1.989379,0.589309,2.664696 +-2.021581,0.847866,-0.821560,-1.988431,0.588265,2.665644 +-2.020354,0.848926,-0.820321,-1.987371,0.587336,2.666704 +-2.019041,0.850091,-0.819177,-1.986207,0.586529,2.667869 +-2.017652,0.851348,-0.818138,-1.984949,0.585851,2.669127 +-2.016202,0.852689,-0.817214,-1.983609,0.585310,2.670467 +-2.014702,0.854099,-0.816413,-1.982198,0.584908,2.671877 +-2.013165,0.855568,-0.815742,-1.980729,0.584651,2.673346 +-2.011605,0.857082,-0.815207,-1.979215,0.584540,2.674860 +-2.010037,0.858628,-0.814812,-1.977669,0.584577,2.676406 +-2.008473,0.860192,-0.814562,-1.976105,0.584760,2.677970 +-2.006927,0.861761,-0.814457,-1.974536,0.585088,2.679539 +-2.005414,0.863320,-0.814500,-1.972977,0.585559,2.681098 +-2.003946,0.864856,-0.814690,-1.971441,0.586169,2.682634 +-2.002537,0.866356,-0.815025,-1.969942,0.586911,2.684134 +-2.001198,0.867805,-0.815501,-1.968492,0.587779,2.685583 +-1.999942,0.869192,-0.816116,-1.967105,0.588766,2.686970 +-1.998780,0.870504,-0.816864,-1.965793,0.589863,2.688282 +-1.997721,0.871729,-0.817737,-1.964568,0.591061,2.689508 +-1.996776,0.872858,-0.818728,-1.963439,0.592348,2.690636 +-1.995952,0.873879,-0.819829,-1.962418,0.593714,2.691657 +-1.995257,0.874784,-0.821030,-1.961513,0.595146,2.692562 +-1.994698,0.875564,-0.822320,-1.960733,0.596632,2.693343 +-1.994278,0.876214,-0.823688,-1.960083,0.598158,2.693992 +-1.994001,0.876727,-0.825122,-1.959570,0.599712,2.694505 +-1.993871,0.877099,-0.826609,-1.959199,0.601279,2.694877 +-1.993888,0.877326,-0.828136,-1.958972,0.602846,2.695104 +-1.994052,0.877406,-0.829690,-1.958891,0.604399,2.695184 +-1.994362,0.877339,-0.831256,-1.958958,0.605924,2.695117 +-1.994814,0.877126,-0.832822,-1.959171,0.607408,2.694904 +-1.995405,0.876767,-0.834373,-1.959530,0.608837,2.694546 +-1.996130,0.876267,-0.835895,-1.960030,0.610200,2.694046 +-1.996983,0.875630,-0.837376,-1.960667,0.611483,2.693408 +-1.997955,0.874861,-0.838802,-1.961436,0.612677,2.692639 +-1.999038,0.873968,-0.840160,-1.962330,0.613770,2.691746 +-2.000223,0.872957,-0.841439,-1.963340,0.614752,2.690735 +-2.001499,0.871838,-0.842628,-1.964459,0.615615,2.689616 +-2.002855,0.870621,-0.843715,-1.965676,0.616352,2.688399 +-2.004279,0.869317,-0.844692,-1.966980,0.616955,2.687095 +-2.005758,0.867936,-0.845549,-1.968361,0.617420,2.685714 +-2.007280,0.866492,-0.846279,-1.969805,0.617743,2.684270 +-2.008831,0.864997,-0.846876,-1.971300,0.617920,2.682775 +-2.010397,0.863463,-0.847335,-1.972834,0.617950,2.681242 +-2.011965,0.861906,-0.847651,-1.974391,0.617833,2.679684 +-2.013521,0.860338,-0.847821,-1.975960,0.617569,2.678116 +-2.015050,0.858772,-0.847845,-1.977525,0.617162,2.676551 +-2.016540,0.857224,-0.847721,-1.979073,0.616615,2.675002 +-2.017977,0.855707,-0.847452,-1.980591,0.615932,2.673485 +-2.019350,0.854233,-0.847039,-1.982064,0.615119,2.672011 +-2.020644,0.852816,-0.846485,-1.983481,0.614185,2.670594 +-2.021850,0.851469,-0.845797,-1.984828,0.613136,2.669247 +-2.022957,0.850203,-0.844980,-1.986094,0.611983,2.667981 +-2.023954,0.849030,-0.844040,-1.987267,0.610734,2.666808 +-2.024833,0.847959,-0.842987,-1.988338,0.609403,2.665737 +-2.025587,0.847001,-0.841830,-1.989296,0.607999,2.664779 +-2.026208,0.846163,-0.840579,-1.990134,0.606536,2.663942 +-2.026692,0.845454,-0.839245,-1.990843,0.605026,2.663232 +-2.027033,0.844879,-0.837839,-1.991419,0.603483,2.662657 +-2.027230,0.844443,-0.836374,-1.991854,0.601920,2.662221 +-2.027279,0.844150,-0.834864,-1.992147,0.600351,2.661929 +-2.027181,0.844004,-0.833321,-1.992293,0.598790,2.661782 +-2.026937,0.844004,-0.831758,-1.992293,0.597251,2.661782 +-2.026549,0.844152,-0.830191,-1.992145,0.595747,2.661930 +-2.026019,0.844445,-0.828631,-1.991852,0.594292,2.662223 +-2.025354,0.844882,-0.827094,-1.991415,0.592897,2.662660 +-2.024558,0.845458,-0.825593,-1.990840,0.591577,2.663236 +-2.023639,0.846168,-0.824141,-1.990129,0.590341,2.663946 +-2.022605,0.847006,-0.822751,-1.989291,0.589202,2.664784 +-2.021465,0.847965,-0.821434,-1.988332,0.588169,2.665743 +-2.020228,0.849037,-0.820204,-1.987261,0.587251,2.666815 +-2.018907,0.850210,-0.819069,-1.986087,0.586456,2.667989 +-2.017512,0.851477,-0.818042,-1.984820,0.585792,2.669255 +-2.016056,0.852825,-0.817130,-1.983473,0.585264,2.670603 +-2.014552,0.854242,-0.816341,-1.982056,0.584877,2.672020 +-2.013012,0.855715,-0.815683,-1.980582,0.584634,2.673494 +-2.011451,0.857233,-0.815162,-1.979064,0.584537,2.675011 +-2.009882,0.858782,-0.814781,-1.977516,0.584588,2.676560 +-2.008320,0.860347,-0.814545,-1.975950,0.584786,2.678125 +-2.006777,0.861915,-0.814455,-1.974382,0.585128,2.679693 +-2.005267,0.863473,-0.814512,-1.972824,0.585613,2.681251 +-2.003805,0.865006,-0.814716,-1.971291,0.586236,2.682784 +-2.002401,0.866501,-0.815065,-1.969796,0.586991,2.684279 +-2.001070,0.867945,-0.815556,-1.968352,0.587871,2.685723 +-1.999823,0.869325,-0.816184,-1.966972,0.588870,2.687103 +-1.998671,0.870629,-0.816944,-1.965668,0.589977,2.688407 +-1.997623,0.871845,-0.817829,-1.964452,0.591184,2.689623 +-1.996689,0.872963,-0.818832,-1.963334,0.592479,2.690741 +-1.995878,0.873973,-0.819943,-1.962324,0.593852,2.691751 +-1.995196,0.874866,-0.821154,-1.961431,0.595290,2.692644 +-1.994650,0.875634,-0.822452,-1.960663,0.596780,2.693413 +-1.994244,0.876271,-0.823827,-1.960026,0.598310,2.694049 +-1.993982,0.876770,-0.825266,-1.959527,0.599866,2.694548 +-1.993866,0.877127,-0.826758,-1.959170,0.601434,2.694906 +-1.993898,0.877340,-0.828288,-1.958957,0.603000,2.695118 +-1.994076,0.877406,-0.829844,-1.958891,0.604550,2.695184 +-1.994400,0.877325,-0.831411,-1.958972,0.606072,2.695103 +-1.994866,0.877097,-0.832975,-1.959200,0.607551,2.694875 +-1.995471,0.876724,-0.834524,-1.959573,0.608975,2.694503 +-1.996209,0.876211,-0.836043,-1.960086,0.610330,2.693989 +-1.997073,0.875560,-0.837519,-1.960737,0.611605,2.693338 +-1.998057,0.874779,-0.838939,-1.961518,0.612789,2.692557 +-1.999150,0.873873,-0.840290,-1.962424,0.613871,2.691651 +-2.000345,0.872851,-0.841561,-1.963446,0.614842,2.690630 +-2.001629,0.871722,-0.842740,-1.964575,0.615693,2.689501 +-2.002992,0.870496,-0.843816,-1.965801,0.616417,2.688275 +-2.004422,0.869184,-0.844782,-1.967113,0.617007,2.686962 +-2.005907,0.867797,-0.845627,-1.968500,0.617458,2.685575 +-2.007432,0.866347,-0.846344,-1.969950,0.617767,2.684125 +-2.008985,0.864847,-0.846928,-1.971450,0.617929,2.682625 +-2.010552,0.863311,-0.847372,-1.972986,0.617945,2.681089 +-2.012119,0.861752,-0.847674,-1.974546,0.617813,2.679530 +-2.013673,0.860183,-0.847830,-1.976114,0.617536,2.677961 +-2.015199,0.858619,-0.847839,-1.977678,0.617114,2.676397 +-2.016684,0.857073,-0.847701,-1.979224,0.616553,2.674851 +-2.018116,0.855559,-0.847417,-1.980738,0.615857,2.673337 +-2.019481,0.854091,-0.846990,-1.982206,0.615033,2.671869 +-2.020767,0.852680,-0.846423,-1.983617,0.614086,2.670459 +-2.021964,0.851341,-0.845722,-1.984957,0.613027,2.669119 +-2.023060,0.850083,-0.844892,-1.986214,0.611864,2.667862 +-2.024046,0.848920,-0.843941,-1.987377,0.610607,2.666698 +-2.024913,0.847860,-0.842878,-1.988437,0.609267,2.665638 +-2.025654,0.846913,-0.841711,-1.989384,0.607857,2.664691 +-2.026262,0.846088,-0.840451,-1.990209,0.606389,2.663866 +-2.026732,0.845391,-0.839109,-1.990906,0.604875,2.663169 +-2.027059,0.844829,-0.837697,-1.991468,0.603330,2.662608 +-2.027241,0.844408,-0.836228,-1.991889,0.601766,2.662186 +-2.027276,0.844129,-0.834713,-1.992168,0.600197,2.661908 +-2.027164,0.843997,-0.833167,-1.992300,0.598638,2.661775 +-2.026905,0.844012,-0.831604,-1.992285,0.597101,2.661790 +-2.026503,0.844174,-0.830036,-1.992123,0.595601,2.661952 +-2.025960,0.844482,-0.828479,-1.991815,0.594151,2.662260 +-2.025281,0.844932,-0.826945,-1.991365,0.592764,2.662710 +-2.024473,0.845522,-0.825448,-1.990775,0.591451,2.663300 +-2.023542,0.846245,-0.824001,-1.990052,0.590224,2.664023 +-2.022497,0.847096,-0.822617,-1.989202,0.589095,2.664874 +-2.021347,0.848066,-0.821309,-1.988231,0.588073,2.665844 +-2.020102,0.849148,-0.820087,-1.987149,0.587167,2.666926 +-2.018773,0.850331,-0.818963,-1.985966,0.586385,2.668109 +-2.017371,0.851606,-0.817947,-1.984691,0.585734,2.669384 +-2.015910,0.852961,-0.817047,-1.983336,0.585219,2.670739 +-2.014401,0.854384,-0.816271,-1.981913,0.584846,2.672163 +-2.012859,0.855863,-0.815626,-1.980434,0.584618,2.673641 +-2.011297,0.857385,-0.815118,-1.978912,0.584536,2.675163 +-2.009728,0.858935,-0.814752,-1.977362,0.584601,2.676713 +-2.008166,0.860501,-0.814530,-1.975796,0.584813,2.678280 +-2.006626,0.862069,-0.814454,-1.974228,0.585170,2.679847 +-2.005121,0.863625,-0.814526,-1.972672,0.585669,2.681403 +-2.003663,0.865155,-0.814744,-1.971142,0.586304,2.682933 +-2.002267,0.866645,-0.815107,-1.969652,0.587072,2.684424 +-2.000944,0.868084,-0.815612,-1.968213,0.587964,2.685862 +-1.999705,0.869457,-0.816253,-1.966840,0.588974,2.687235 +-1.998563,0.870753,-0.817026,-1.965545,0.590092,2.688531 +-1.997526,0.871960,-0.817923,-1.964337,0.591308,2.689738 +-1.996604,0.873068,-0.818937,-1.963229,0.592611,2.690846 +-1.995805,0.874067,-0.820058,-1.962231,0.593991,2.691845 +-1.995136,0.874948,-0.821278,-1.961350,0.595435,2.692726 +-1.994604,0.875703,-0.822584,-1.960594,0.596930,2.693481 +-1.994212,0.876326,-0.823966,-1.959971,0.598462,2.694104 +-1.993964,0.876811,-0.825411,-1.959486,0.600020,2.694590 +-1.993863,0.877155,-0.826907,-1.959142,0.601588,2.694933 +-1.993909,0.877353,-0.828440,-1.958944,0.603153,2.695131 +-1.994102,0.877405,-0.829998,-1.958893,0.604702,2.695183 +-1.994440,0.877309,-0.831565,-1.958988,0.606220,2.695087 +-1.994920,0.877067,-0.833129,-1.959231,0.607694,2.694845 +-1.995538,0.876680,-0.834675,-1.959617,0.609111,2.694458 +-1.996288,0.876153,-0.836191,-1.960145,0.610459,2.693931 +-1.997165,0.875489,-0.837662,-1.960808,0.611726,2.693267 +-1.998160,0.874695,-0.839075,-1.961602,0.612900,2.692473 +-1.999264,0.873777,-0.840419,-1.962520,0.613972,2.691556 +-2.000467,0.872745,-0.841681,-1.963552,0.614932,2.690523 +-2.001760,0.871606,-0.842850,-1.964691,0.615770,2.689384 +-2.003130,0.870371,-0.843916,-1.965926,0.616481,2.688149 +-2.004566,0.869050,-0.844870,-1.967247,0.617058,2.686829 +-2.006055,0.867656,-0.845703,-1.968641,0.617495,2.685435 +-2.007584,0.866201,-0.846408,-1.970096,0.617789,2.683979 +-2.009139,0.864697,-0.846978,-1.971600,0.617937,2.682475 +-2.010706,0.863158,-0.847409,-1.973139,0.617938,2.680936 +-2.012273,0.861597,-0.847696,-1.974700,0.617792,2.679375 +-2.013824,0.860028,-0.847838,-1.976269,0.617501,2.677807 +-2.015347,0.858466,-0.847832,-1.977832,0.617065,2.676244 +-2.016828,0.856922,-0.847680,-1.979375,0.616491,2.674701 +-2.018253,0.855412,-0.847382,-1.980885,0.615782,2.673191 +-2.019611,0.853949,-0.846940,-1.982348,0.614945,2.671727 +-2.020889,0.852545,-0.846360,-1.983752,0.613987,2.670323 +-2.022076,0.851213,-0.845646,-1.985084,0.612917,2.668991 +-2.023162,0.849964,-0.844804,-1.986333,0.611744,2.667743 +-2.024137,0.848810,-0.843842,-1.987487,0.610478,2.666589 +-2.024992,0.847761,-0.842767,-1.988536,0.609132,2.665539 +-2.025720,0.846826,-0.841591,-1.989471,0.607715,2.664604 +-2.026315,0.846013,-0.840322,-1.990284,0.606242,2.663791 +-2.026771,0.845330,-0.838973,-1.990967,0.604724,2.663108 +-2.027084,0.844782,-0.837555,-1.991516,0.603176,2.662560 +-2.027251,0.844374,-0.836080,-1.991923,0.601611,2.662152 +-2.027271,0.844110,-0.834562,-1.992187,0.600043,2.661888 +-2.027145,0.843992,-0.833014,-1.992305,0.598485,2.661770 +-2.026872,0.844022,-0.831449,-1.992276,0.596952,2.661800 +-2.026455,0.844198,-0.829882,-1.992099,0.595456,2.661976 +-2.025899,0.844520,-0.828326,-1.991777,0.594012,2.662298 +-2.025207,0.844984,-0.826795,-1.991313,0.592631,2.662762 +-2.024387,0.845587,-0.825303,-1.990710,0.591326,2.663365 +-2.023444,0.846323,-0.823862,-1.989974,0.590109,2.664101 +-2.022388,0.847186,-0.822485,-1.989111,0.588990,2.664964 +-2.021228,0.848168,-0.821185,-1.988129,0.587978,2.665946 +-2.019974,0.849260,-0.819972,-1.987037,0.587084,2.667038 +-2.018638,0.850453,-0.818858,-1.985844,0.586315,2.668231 +-2.017230,0.851736,-0.817853,-1.984561,0.585677,2.669514 +-2.015763,0.853099,-0.816964,-1.983199,0.585176,2.670877 +-2.014251,0.854528,-0.816201,-1.981769,0.584817,2.672306 +-2.012706,0.856011,-0.815570,-1.980286,0.584603,2.673790 +-2.011142,0.857536,-0.815076,-1.978761,0.584536,2.675314 +-2.009574,0.859089,-0.814723,-1.977208,0.584616,2.676867 +-2.008014,0.860656,-0.814516,-1.975641,0.584842,2.678434 +-2.006476,0.862223,-0.814455,-1.974074,0.585213,2.680001 +-2.004975,0.863777,-0.814541,-1.972520,0.585725,2.681555 +-2.003523,0.865304,-0.814774,-1.970993,0.586374,2.683082 +-2.002133,0.866790,-0.815151,-1.969507,0.587154,2.684568 +-2.000818,0.868222,-0.815669,-1.968075,0.588059,2.686000 +-1.999588,0.869588,-0.816323,-1.966709,0.589079,2.687366 +-1.998456,0.870876,-0.817109,-1.965422,0.590207,2.688654 +-1.997430,0.872073,-0.818018,-1.964224,0.591432,2.689852 +-1.996520,0.873171,-0.819043,-1.963126,0.592744,2.690949 +-1.995733,0.874159,-0.820174,-1.962138,0.594131,2.691937 +-1.995078,0.875028,-0.821403,-1.961269,0.595580,2.692806 +-1.994559,0.875770,-0.822717,-1.960527,0.597079,2.693548 +-1.994181,0.876380,-0.824106,-1.959917,0.598615,2.694158 +-1.993948,0.876852,-0.825557,-1.959445,0.600174,2.694630 +-1.993861,0.877181,-0.827057,-1.959116,0.601743,2.694959 +-1.993921,0.877365,-0.828593,-1.958932,0.603307,2.695143 +-1.994129,0.877402,-0.830152,-1.958895,0.604853,2.695180 +-1.994481,0.877291,-0.831719,-1.959006,0.606367,2.695070 +-1.994975,0.877035,-0.833282,-1.959262,0.607836,2.694813 +-1.995606,0.876634,-0.834826,-1.959663,0.609247,2.694412 +-1.995860,0.876458,-0.835369,-1.959840,0.609733,2.694240 +-1.996130,0.876270,-0.835901,-1.960020,0.610202,2.694050 +-1.996400,0.876078,-0.836416,-1.960210,0.610646,2.693860 +-1.996670,0.875887,-0.836907,-1.960400,0.611059,2.693680 +-1.996930,0.875704,-0.837369,-1.960570,0.611437,2.693510 +-1.997170,0.875535,-0.837793,-1.960720,0.611781,2.693350 +-1.997390,0.875382,-0.838175,-1.960870,0.612091,2.693210 +-1.997590,0.875243,-0.838507,-1.961000,0.612367,2.693080 +-1.997760,0.875120,-0.838783,-1.961110,0.612608,2.692960 +-1.997910,0.875012,-0.839003,-1.961210,0.612814,2.692860 +-1.998040,0.874920,-0.839173,-1.961300,0.612987,2.692770 +-1.998150,0.874843,-0.839299,-1.961370,0.613125,2.692700 +-1.998230,0.874781,-0.839388,-1.961430,0.613228,2.692640 +-1.998280,0.874734,-0.839447,-1.961480,0.613298,2.692590 +-1.998320,0.874703,-0.839481,-1.961510,0.613339,2.692560 +-1.998330,0.874686,-0.839497,-1.961530,0.613359,2.692540 +-1.998340,0.874681,-0.839502,-1.961540,0.613365,2.692540 +-1.998340,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874675,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874674,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874672,-0.839500,-1.961540,0.613362,2.692540 +-1.998330,0.874666,-0.839494,-1.961530,0.613354,2.692530 +-1.998320,0.874652,-0.839480,-1.961510,0.613337,2.692510 +-1.998300,0.874628,-0.839456,-1.961480,0.613309,2.692480 +-1.998260,0.874592,-0.839420,-1.961440,0.613266,2.692440 +-1.998210,0.874541,-0.839370,-1.961380,0.613205,2.692380 +-1.998140,0.874473,-0.839301,-1.961300,0.613123,2.692300 +-1.998050,0.874384,-0.839213,-1.961190,0.613017,2.692190 +-1.997940,0.874273,-0.839101,-1.961060,0.612884,2.692060 +-1.997800,0.874137,-0.838965,-1.960900,0.612720,2.691900 +-1.997640,0.873972,-0.838800,-1.960700,0.612523,2.691700 +-1.997450,0.873777,-0.838605,-1.960460,0.612289,2.691460 +-1.997220,0.873549,-0.838377,-1.960190,0.612016,2.691190 +-1.996950,0.873285,-0.838113,-1.959880,0.611700,2.690880 +-1.996650,0.872983,-0.837811,-1.959510,0.611338,2.690510 +-1.996310,0.872640,-0.837468,-1.959100,0.610927,2.690100 +-1.995920,0.872253,-0.837082,-1.958640,0.610464,2.689640 +-1.995490,0.871821,-0.836649,-1.958120,0.609946,2.689120 +-1.995010,0.871339,-0.836168,-1.957540,0.609369,2.688540 +-1.994480,0.870807,-0.835635,-1.956910,0.608731,2.687910 +-1.993890,0.870220,-0.835049,-1.956200,0.608028,2.687200 +-1.993250,0.869577,-0.834406,-1.955430,0.607258,2.686430 +-1.992540,0.868875,-0.833704,-1.954590,0.606417,2.685590 +-1.991780,0.868112,-0.832940,-1.953680,0.605502,2.684680 +-1.990950,0.867284,-0.832112,-1.952690,0.604510,2.683690 +-1.990060,0.866389,-0.831217,-1.951610,0.603438,2.682610 +-1.989090,0.865424,-0.830253,-1.950460,0.602283,2.681460 +-1.988060,0.864388,-0.829216,-1.949220,0.601041,2.680220 +-1.986950,0.863277,-0.828105,-1.947890,0.599710,2.678890 +-1.985760,0.862089,-0.826917,-1.946460,0.598287,2.677460 +-1.984490,0.860821,-0.825649,-1.944940,0.596768,2.675940 +-1.983140,0.859470,-0.824298,-1.943320,0.595153,2.674320 +-1.981700,0.858035,-0.822863,-1.941600,0.593447,2.672600 +-1.980180,0.856511,-0.821340,-1.939780,0.591651,2.670780 +-1.978570,0.854898,-0.819726,-1.937850,0.589769,2.668850 +-1.976860,0.853192,-0.818020,-1.935800,0.587804,2.666800 +-1.975060,0.851390,-0.816218,-1.933640,0.585759,2.664640 +-1.973160,0.849490,-0.814318,-1.931370,0.583637,2.662370 +-1.971160,0.847490,-0.812318,-1.928970,0.581442,2.659970 +-1.969050,0.845386,-0.810214,-1.926450,0.579176,2.657450 +-1.966850,0.843177,-0.808005,-1.923810,0.576843,2.654810 +-1.964530,0.840859,-0.805687,-1.921030,0.574446,2.652030 +-1.962100,0.838430,-0.803258,-1.918120,0.571987,2.649120 +-1.959560,0.835888,-0.800717,-1.915070,0.569470,2.646070 +-1.956900,0.833233,-0.798066,-1.911890,0.566898,2.642890 +-1.954120,0.830468,-0.795307,-1.908560,0.564275,2.639560 +-1.951220,0.827595,-0.792443,-1.905090,0.561602,2.636090 +-1.948200,0.824618,-0.789476,-1.901470,0.558884,2.632470 +-1.945050,0.821538,-0.786410,-1.897690,0.556124,2.628690 +-1.941770,0.818358,-0.783246,-1.893770,0.553323,2.624770 +-1.938360,0.815080,-0.779988,-1.889680,0.550487,2.620680 +-1.934830,0.811709,-0.776637,-1.885440,0.547617,2.616440 +-1.931160,0.808245,-0.773197,-1.881050,0.544718,2.612050 +-1.927360,0.804692,-0.769670,-1.876500,0.541791,2.607500 +-1.923430,0.801052,-0.766059,-1.871800,0.538841,2.602800 +-1.919380,0.797327,-0.762366,-1.866930,0.535869,2.597960 +-1.915190,0.793521,-0.758594,-1.861920,0.532880,2.592970 +-1.910870,0.789636,-0.754746,-1.856750,0.529877,2.587830 +-1.906420,0.785675,-0.750823,-1.851420,0.526862,2.582560 +-1.901850,0.781640,-0.746830,-1.845940,0.523838,2.577160 +-1.897140,0.777533,-0.742767,-1.840300,0.520810,2.571620 +-1.892310,0.773358,-0.738639,-1.834510,0.517779,2.565950 +-1.887340,0.769117,-0.734447,-1.828560,0.514748,2.560160 +-1.882260,0.764812,-0.730194,-1.822450,0.511718,2.554240 +-1.877050,0.760446,-0.725882,-1.816190,0.508687,2.548210 +-1.871720,0.756022,-0.721515,-1.809770,0.505656,2.542050 +-1.866270,0.751543,-0.717095,-1.803200,0.502625,2.535790 +-1.860720,0.747010,-0.712624,-1.796480,0.499594,2.529410 +-1.855050,0.742427,-0.708105,-1.789590,0.496564,2.522930 +-1.849270,0.737796,-0.703541,-1.782560,0.493533,2.516340 +-1.843380,0.733120,-0.698934,-1.775360,0.490502,2.509650 +-1.837390,0.728401,-0.694287,-1.768010,0.487471,2.502870 +-1.831300,0.723642,-0.689603,-1.760510,0.484440,2.495980 +-1.825110,0.718845,-0.684883,-1.752850,0.481410,2.489010 +-1.818830,0.714014,-0.680131,-1.745030,0.478379,2.481950 +-1.812450,0.709150,-0.675350,-1.737060,0.475348,2.474800 +-1.805980,0.704256,-0.670541,-1.728940,0.472317,2.467570 +-1.799430,0.699336,-0.665707,-1.720650,0.469286,2.460260 +-1.792780,0.694391,-0.660852,-1.712220,0.466256,2.452880 +-1.786060,0.689424,-0.655977,-1.703620,0.463225,2.445420 +-1.779250,0.684437,-0.651085,-1.694870,0.460194,2.437890 +-1.772370,0.679434,-0.646180,-1.685970,0.457163,2.430300 +-1.765410,0.674417,-0.641262,-1.676910,0.454132,2.422640 +-1.758380,0.669388,-0.636336,-1.667690,0.451102,2.414920 +-1.751280,0.664350,-0.631403,-1.658320,0.448071,2.407140 +-1.744110,0.659306,-0.626466,-1.648800,0.445040,2.399310 +-1.736880,0.654258,-0.621528,-1.639120,0.442009,2.391430 +-1.729590,0.649209,-0.616590,-1.629280,0.438978,2.383500 +-1.722230,0.644160,-0.611652,-1.619290,0.435948,2.375520 +-1.714820,0.639111,-0.606714,-1.609140,0.432917,2.367500 +-1.707360,0.634062,-0.601776,-1.598830,0.429886,2.359450 +-1.699840,0.629013,-0.596839,-1.588370,0.426855,2.351350 +-1.692270,0.623964,-0.591901,-1.577760,0.423824,2.343230 +-1.684660,0.618914,-0.586963,-1.566990,0.420794,2.335070 +-1.677000,0.613865,-0.582025,-1.556070,0.417763,2.326890 +-1.669310,0.608816,-0.577087,-1.545000,0.414732,2.318690 +-1.661570,0.603767,-0.572149,-1.533790,0.411701,2.310470 +-1.653800,0.598718,-0.567211,-1.522430,0.408670,2.302220 +-1.645990,0.593669,-0.562273,-1.510940,0.405640,2.293970 +-1.638150,0.588620,-0.557335,-1.499310,0.402609,2.285700 +-1.630290,0.583571,-0.552397,-1.487550,0.399578,2.277430 +-1.622390,0.578522,-0.547459,-1.475660,0.396547,2.269150 +-1.614480,0.573472,-0.542521,-1.463640,0.393516,2.260870 +-1.606540,0.568423,-0.537583,-1.451500,0.390486,2.252590 +-1.598590,0.563374,-0.532645,-1.439240,0.387455,2.244310 +-1.590620,0.558325,-0.527707,-1.426860,0.384424,2.236030 +-1.582640,0.553276,-0.522769,-1.414370,0.381393,2.227750 +-1.574650,0.548227,-0.517831,-1.401770,0.378362,2.219470 +-1.566650,0.543178,-0.512893,-1.389060,0.375332,2.211190 +-1.558640,0.538129,-0.507955,-1.376250,0.372301,2.202910 +-1.550640,0.533080,-0.503017,-1.363330,0.369270,2.194630 +-1.542630,0.528030,-0.498079,-1.350320,0.366239,2.186350 +-1.534620,0.522981,-0.493141,-1.337210,0.363208,2.178070 +-1.526610,0.517932,-0.488203,-1.324010,0.360178,2.169790 +-1.518610,0.512883,-0.483265,-1.310720,0.357147,2.161510 +-1.510600,0.507834,-0.478327,-1.297350,0.354116,2.153230 +-1.502590,0.502785,-0.473389,-1.283890,0.351085,2.144950 +-1.494590,0.497736,-0.468451,-1.270350,0.348054,2.136670 +-1.486580,0.492687,-0.463513,-1.256740,0.345024,2.128390 +-1.478570,0.487638,-0.458575,-1.243050,0.341993,2.120110 +-1.470560,0.482588,-0.453637,-1.229290,0.338962,2.111830 +-1.462560,0.477539,-0.448699,-1.215470,0.335931,2.103550 +-1.454550,0.472490,-0.443762,-1.201580,0.332900,2.095270 +-1.446540,0.467441,-0.438824,-1.187630,0.329870,2.086990 +-1.438540,0.462392,-0.433886,-1.173630,0.326839,2.078710 +-1.430530,0.457343,-0.428948,-1.159560,0.323808,2.070430 +-1.422520,0.452294,-0.424010,-1.145450,0.320777,2.062140 +-1.414510,0.447245,-0.419072,-1.131290,0.317746,2.053860 +-1.406510,0.442196,-0.414134,-1.117080,0.314716,2.045580 +-1.398500,0.437146,-0.409196,-1.102830,0.311685,2.037300 +-1.390490,0.432097,-0.404258,-1.088540,0.308654,2.029020 +-1.382480,0.427048,-0.399320,-1.074220,0.305623,2.020740 +-1.374480,0.421999,-0.394382,-1.059860,0.302592,2.012460 +-1.366470,0.416950,-0.389444,-1.045470,0.299562,2.004180 +-1.358460,0.411901,-0.384506,-1.031060,0.296531,1.995900 +-1.350460,0.406852,-0.379568,-1.016620,0.293500,1.987620 +-1.342450,0.401803,-0.374630,-1.002160,0.290469,1.979340 +-1.334440,0.396754,-0.369692,-0.987689,0.287438,1.971060 +-1.326430,0.391704,-0.364754,-0.973200,0.284408,1.962780 +-1.318430,0.386655,-0.359816,-0.958699,0.281377,1.954500 +-1.310420,0.381606,-0.354878,-0.944190,0.278346,1.946220 +-1.302410,0.376557,-0.349940,-0.929677,0.275315,1.937940 +-1.294410,0.371508,-0.345002,-0.915161,0.272284,1.929660 +-1.286400,0.366459,-0.340064,-0.900646,0.269254,1.921380 +-1.278390,0.361410,-0.335126,-0.886130,0.266223,1.913100 +-1.270380,0.356361,-0.330188,-0.871614,0.263192,1.904820 +-1.262380,0.351312,-0.325250,-0.857099,0.260161,1.896540 +-1.254370,0.346262,-0.320312,-0.842583,0.257130,1.888260 +-1.246360,0.341213,-0.315374,-0.828068,0.254100,1.879980 +-1.238360,0.336164,-0.310436,-0.813552,0.251069,1.871700 +-1.230350,0.331115,-0.305498,-0.799036,0.248038,1.863420 +-1.222340,0.326066,-0.300560,-0.784521,0.245007,1.855140 +-1.214330,0.321017,-0.295622,-0.770005,0.241976,1.846860 +-1.206330,0.315968,-0.290685,-0.755489,0.238946,1.838580 +-1.198320,0.310919,-0.285747,-0.740974,0.235915,1.830300 +-1.190310,0.305869,-0.280809,-0.726458,0.232884,1.822020 +-1.182300,0.300820,-0.275871,-0.711943,0.229853,1.813740 +-1.174300,0.295771,-0.270933,-0.697427,0.226822,1.805460 +-1.166290,0.290722,-0.265995,-0.682911,0.223792,1.797180 +-1.158280,0.285673,-0.261057,-0.668396,0.220761,1.788900 +-1.150280,0.280624,-0.256119,-0.653880,0.217730,1.780620 +-1.142270,0.275575,-0.251181,-0.639365,0.214699,1.772340 +-1.134260,0.270526,-0.246243,-0.624849,0.211668,1.764060 +-1.126250,0.265477,-0.241305,-0.610333,0.208638,1.755780 +-1.118250,0.260427,-0.236367,-0.595818,0.205607,1.747500 +-1.110240,0.255378,-0.231429,-0.581302,0.202576,1.739220 +-1.102230,0.250329,-0.226491,-0.566787,0.199545,1.730940 +-1.094230,0.245280,-0.221553,-0.552271,0.196514,1.722660 +-1.086220,0.240231,-0.216615,-0.537755,0.193484,1.714380 +-1.078210,0.235182,-0.211677,-0.523240,0.190453,1.706100 +-1.070200,0.230133,-0.206739,-0.508724,0.187422,1.697820 +-1.062200,0.225084,-0.201801,-0.494209,0.184391,1.689540 +-1.054190,0.220035,-0.196863,-0.479693,0.181360,1.681260 +-1.046180,0.214985,-0.191925,-0.465177,0.178330,1.672980 +-1.038180,0.209936,-0.186987,-0.450662,0.175299,1.664700 +-1.030170,0.204887,-0.182049,-0.436146,0.172268,1.656420 +-1.022160,0.199838,-0.177111,-0.421630,0.169237,1.648140 +-1.014150,0.194789,-0.172173,-0.407115,0.166206,1.639860 +-1.006150,0.189740,-0.167235,-0.392599,0.163176,1.631570 +-0.998139,0.184691,-0.162297,-0.378084,0.160145,1.623290 +-0.990132,0.179642,-0.157359,-0.363568,0.157114,1.615010 +-0.982125,0.174593,-0.152421,-0.349052,0.154083,1.606730 +-0.974117,0.169543,-0.147483,-0.334537,0.151052,1.598450 +-0.966110,0.164494,-0.142545,-0.320021,0.148022,1.590170 +-0.958103,0.159445,-0.137607,-0.305506,0.144991,1.581890 +-0.950096,0.154396,-0.132670,-0.290990,0.141960,1.573610 +-0.942089,0.149347,-0.127732,-0.276474,0.138929,1.565330 +-0.934081,0.144298,-0.122794,-0.261959,0.135898,1.557050 +-0.926074,0.139249,-0.117856,-0.247443,0.132868,1.548770 +-0.918067,0.134200,-0.112918,-0.232928,0.129837,1.540490 +-0.910060,0.129151,-0.107980,-0.218412,0.126806,1.532210 +-0.902053,0.124101,-0.103042,-0.203896,0.123775,1.523930 +-0.894045,0.119052,-0.098104,-0.189381,0.120744,1.515650 +-0.886038,0.114003,-0.093166,-0.174865,0.117714,1.507370 +-0.878031,0.108954,-0.088228,-0.160349,0.114683,1.499090 +-0.870024,0.103905,-0.083290,-0.145834,0.111652,1.490810 +-0.862017,0.098856,-0.078352,-0.131318,0.108621,1.482530 +-0.854009,0.093807,-0.073414,-0.116803,0.105590,1.474250 +-0.846002,0.088758,-0.068476,-0.102287,0.102560,1.465970 +-0.837995,0.083709,-0.063538,-0.087771,0.099529,1.457690 +-0.829988,0.078659,-0.058600,-0.073256,0.096498,1.449410 +-0.821980,0.073610,-0.053662,-0.058740,0.093467,1.441130 +-0.813973,0.068561,-0.048724,-0.044225,0.090436,1.432850 +-0.805966,0.063512,-0.043786,-0.029709,0.087406,1.424570 +-0.797959,0.058463,-0.038848,-0.015193,0.084375,1.416290 +-0.789952,0.053414,-0.033910,-0.000678,0.081344,1.408010 +-0.781944,0.048365,-0.028972,0.013838,0.078313,1.399730 +-0.773937,0.043316,-0.024034,0.028353,0.075282,1.391450 +-0.765930,0.038267,-0.019096,0.042869,0.072252,1.383170 +-0.757923,0.033217,-0.014158,0.057385,0.069221,1.374890 +-0.749916,0.028168,-0.009220,0.071900,0.066190,1.366610 +-0.741908,0.023119,-0.004282,0.086416,0.063159,1.358330 +-0.733901,0.018070,0.000656,0.100931,0.060128,1.350050 +-0.725894,0.013021,0.005594,0.115447,0.057098,1.341770 +-0.717887,0.007972,0.010531,0.129963,0.054067,1.333490 +-0.709880,0.002923,0.015470,0.144478,0.051036,1.325210 +-0.701872,-0.002126,0.020407,0.158994,0.048005,1.316930 +-0.693865,-0.007175,0.025345,0.173510,0.044974,1.308650 +-0.685858,-0.012225,0.030283,0.188025,0.041944,1.300370 +-0.677851,-0.017274,0.035221,0.202541,0.038913,1.292090 +-0.669844,-0.022323,0.040159,0.217056,0.035882,1.283810 +-0.661836,-0.027372,0.045097,0.231572,0.032851,1.275530 +-0.653829,-0.032421,0.050035,0.246088,0.029820,1.267250 +-0.645822,-0.037470,0.054973,0.260603,0.026790,1.258970 +-0.637815,-0.042519,0.059911,0.275119,0.023759,1.250690 +-0.629808,-0.047568,0.064849,0.289634,0.020728,1.242410 +-0.621800,-0.052617,0.069787,0.304150,0.017697,1.234130 +-0.613793,-0.057667,0.074725,0.318666,0.014666,1.225850 +-0.605786,-0.062716,0.079663,0.333181,0.011636,1.217570 +-0.597779,-0.067765,0.084601,0.347697,0.008605,1.209280 +-0.589771,-0.072814,0.089539,0.362212,0.005574,1.201000 +-0.581764,-0.077863,0.094477,0.376728,0.002543,1.192720 +-0.573757,-0.082912,0.099415,0.391244,-0.000488,1.184440 +-0.565750,-0.087961,0.104353,0.405759,-0.003518,1.176160 +-0.557743,-0.093010,0.109291,0.420275,-0.006549,1.167880 +-0.549735,-0.098059,0.114229,0.434791,-0.009580,1.159600 +-0.541728,-0.103109,0.119167,0.449306,-0.012611,1.151320 +-0.533721,-0.108158,0.124105,0.463822,-0.015642,1.143040 +-0.525714,-0.113207,0.129043,0.478337,-0.018672,1.134760 +-0.517707,-0.118256,0.133981,0.492853,-0.021703,1.126480 +-0.509699,-0.123305,0.138919,0.507369,-0.024734,1.118200 +-0.501692,-0.128354,0.143857,0.521884,-0.027765,1.109920 +-0.493685,-0.133403,0.148795,0.536400,-0.030796,1.101640 +-0.485678,-0.138452,0.153733,0.550915,-0.033826,1.093360 +-0.477671,-0.143502,0.158671,0.565431,-0.036857,1.085080 +-0.469663,-0.148551,0.163609,0.579947,-0.039888,1.076800 +-0.461656,-0.153600,0.168547,0.594462,-0.042919,1.068520 +-0.453649,-0.158649,0.173484,0.608978,-0.045950,1.060240 +-0.445642,-0.163698,0.178422,0.623493,-0.048980,1.051960 +-0.437635,-0.168747,0.183360,0.638009,-0.052011,1.043680 +-0.429627,-0.173796,0.188298,0.652525,-0.055042,1.035400 +-0.421620,-0.178845,0.193236,0.667040,-0.058073,1.027120 +-0.413613,-0.183894,0.198174,0.681556,-0.061104,1.018840 +-0.405606,-0.188944,0.203112,0.696071,-0.064134,1.010560 +-0.397599,-0.193993,0.208050,0.710587,-0.067165,1.002280 +-0.389591,-0.199042,0.212988,0.725103,-0.070196,0.994000 +-0.381584,-0.204091,0.217926,0.739618,-0.073227,0.985720 +-0.373577,-0.209140,0.222864,0.754134,-0.076258,0.977439 +-0.365570,-0.214189,0.227802,0.768650,-0.079288,0.969159 +-0.357562,-0.219238,0.232740,0.783165,-0.082319,0.960879 +-0.349555,-0.224287,0.237678,0.797681,-0.085350,0.952599 +-0.341548,-0.229336,0.242616,0.812196,-0.088381,0.944319 +-0.333541,-0.234386,0.247554,0.826712,-0.091412,0.936038 +-0.325534,-0.239435,0.252492,0.841228,-0.094442,0.927758 +-0.317526,-0.244484,0.257430,0.855743,-0.097473,0.919478 +-0.309519,-0.249533,0.262368,0.870259,-0.100504,0.911198 +-0.301512,-0.254582,0.267306,0.884774,-0.103535,0.902918 +-0.293505,-0.259631,0.272244,0.899290,-0.106566,0.894637 +-0.285498,-0.264680,0.277182,0.913806,-0.109596,0.886357 +-0.277490,-0.269729,0.282120,0.928321,-0.112627,0.878077 +-0.269483,-0.274778,0.287058,0.942837,-0.115658,0.869797 +-0.261476,-0.279828,0.291996,0.957352,-0.118689,0.861517 +-0.253469,-0.284877,0.296934,0.971868,-0.121720,0.853236 +-0.245462,-0.289926,0.301872,0.986384,-0.124750,0.844956 +-0.237454,-0.294975,0.306810,1.000900,-0.127781,0.836676 +-0.229447,-0.300024,0.311748,1.015410,-0.130812,0.828396 +-0.221440,-0.305073,0.316686,1.029930,-0.133843,0.820116 +-0.213433,-0.310122,0.321624,1.044440,-0.136874,0.811836 +-0.205426,-0.315171,0.326562,1.058940,-0.139904,0.803555 +-0.197418,-0.320220,0.331499,1.073430,-0.142935,0.795275 +-0.189411,-0.325270,0.336437,1.087900,-0.145966,0.786995 +-0.181404,-0.330319,0.341375,1.102360,-0.148997,0.778715 +-0.173397,-0.335368,0.346313,1.116800,-0.152028,0.770435 +-0.165390,-0.340417,0.351251,1.131210,-0.155058,0.762154 +-0.157382,-0.345466,0.356189,1.145600,-0.158089,0.753874 +-0.149375,-0.350515,0.361127,1.159950,-0.161120,0.745594 +-0.141368,-0.355564,0.366065,1.174280,-0.164151,0.737314 +-0.133361,-0.360613,0.371003,1.188560,-0.167182,0.729034 +-0.125353,-0.365662,0.375941,1.202810,-0.170212,0.720753 +-0.117346,-0.370712,0.380879,1.217020,-0.173243,0.712473 +-0.109339,-0.375761,0.385817,1.231180,-0.176274,0.704193 +-0.101332,-0.380810,0.390755,1.245290,-0.179305,0.695913 +-0.093325,-0.385859,0.395693,1.259350,-0.182336,0.687633 +-0.085317,-0.390908,0.400631,1.273360,-0.185366,0.679352 +-0.077310,-0.395957,0.405569,1.287310,-0.188397,0.671072 +-0.069303,-0.401006,0.410507,1.301190,-0.191428,0.662792 +-0.061296,-0.406055,0.415445,1.315020,-0.194459,0.654512 +-0.053289,-0.411104,0.420383,1.328770,-0.197490,0.646232 +-0.045281,-0.416154,0.425321,1.342460,-0.200520,0.637951 +-0.037274,-0.421203,0.430259,1.356070,-0.203551,0.629671 +-0.029267,-0.426252,0.435197,1.369600,-0.206582,0.621391 +-0.021260,-0.431301,0.440135,1.383060,-0.209613,0.613111 +-0.013253,-0.436350,0.445073,1.396430,-0.212644,0.604831 +-0.005245,-0.441399,0.450011,1.409720,-0.215674,0.596550 +0.002762,-0.446448,0.454949,1.422920,-0.218705,0.588270 +0.010769,-0.451497,0.459887,1.436020,-0.221736,0.579990 +0.018776,-0.456547,0.464825,1.449040,-0.224767,0.571710 +0.026783,-0.461596,0.469763,1.461950,-0.227798,0.563430 +0.034791,-0.466645,0.474701,1.474760,-0.230828,0.555149 +0.042798,-0.471694,0.479639,1.487470,-0.233859,0.546869 +0.050805,-0.476743,0.484576,1.500060,-0.236890,0.538589 +0.058810,-0.481792,0.489514,1.512550,-0.239921,0.530309 +0.066811,-0.486841,0.494452,1.524930,-0.242952,0.522029 +0.074805,-0.491890,0.499390,1.537180,-0.245982,0.513748 +0.082789,-0.496939,0.504328,1.549320,-0.249013,0.505468 +0.090761,-0.501989,0.509266,1.561340,-0.252044,0.497188 +0.098718,-0.507038,0.514204,1.573220,-0.255075,0.488908 +0.106658,-0.512087,0.519142,1.584980,-0.258106,0.480628 +0.114578,-0.517136,0.524080,1.596610,-0.261136,0.472348 +0.122475,-0.522185,0.529018,1.608100,-0.264167,0.464067 +0.130347,-0.527234,0.533956,1.619450,-0.267198,0.455787 +0.138191,-0.532283,0.538894,1.630660,-0.270229,0.447507 +0.146005,-0.537332,0.543832,1.641730,-0.273260,0.439227 +0.153786,-0.542381,0.548770,1.652640,-0.276290,0.430947 +0.161532,-0.547431,0.553708,1.663410,-0.279321,0.422671 +0.169239,-0.552480,0.558646,1.674020,-0.282352,0.414401 +0.176905,-0.557529,0.563584,1.684470,-0.285383,0.406141 +0.184528,-0.562578,0.568522,1.694780,-0.288414,0.397894 +0.192106,-0.567627,0.573460,1.704920,-0.291444,0.389663 +0.199634,-0.572676,0.578398,1.714910,-0.294475,0.381450 +0.207112,-0.577725,0.583336,1.724740,-0.297506,0.373259 +0.214535,-0.582774,0.588274,1.734420,-0.300537,0.365094 +0.221903,-0.587823,0.593212,1.743940,-0.303568,0.356957 +0.229211,-0.592873,0.598150,1.753310,-0.306598,0.348851 +0.236458,-0.597922,0.603088,1.762520,-0.309629,0.340780 +0.243641,-0.602971,0.608026,1.771580,-0.312660,0.332746 +0.250757,-0.608020,0.612964,1.780480,-0.315691,0.324754 +0.257804,-0.613069,0.617902,1.789230,-0.318722,0.316804 +0.264778,-0.618118,0.622840,1.797810,-0.321752,0.308902 +0.271679,-0.623167,0.627778,1.806250,-0.324783,0.301050 +0.278502,-0.628216,0.632716,1.814530,-0.327814,0.293251 +0.285245,-0.633265,0.637653,1.822650,-0.330845,0.285509 +0.291907,-0.638315,0.642591,1.830620,-0.333876,0.277825 +0.298483,-0.643364,0.647529,1.838430,-0.336906,0.270204 +0.304972,-0.648413,0.652467,1.846090,-0.339937,0.262649 +0.311370,-0.653462,0.657405,1.853590,-0.342968,0.255163 +0.317676,-0.658511,0.662343,1.860930,-0.345999,0.247748 +0.323887,-0.663560,0.667281,1.868120,-0.349030,0.240408 +0.330000,-0.668609,0.672219,1.875160,-0.352060,0.233146 +0.336012,-0.673658,0.677157,1.882040,-0.355091,0.225966 +0.341922,-0.678707,0.682095,1.888760,-0.358122,0.218869 +0.347725,-0.683757,0.687033,1.895330,-0.361153,0.211860 +0.353421,-0.688806,0.691971,1.901740,-0.364184,0.204942 +0.359005,-0.693855,0.696909,1.908000,-0.367214,0.198117 +0.364476,-0.698904,0.701847,1.914100,-0.370245,0.191389 +0.369831,-0.703953,0.706785,1.920040,-0.373276,0.184760 +0.375068,-0.709002,0.711723,1.925830,-0.376307,0.178235 +0.380183,-0.714051,0.716661,1.931470,-0.379338,0.171815 +0.385174,-0.719100,0.721599,1.936950,-0.382368,0.165505 +0.390039,-0.724149,0.726537,1.942270,-0.385399,0.159307 +0.394775,-0.729199,0.731475,1.947440,-0.388430,0.153224 +0.399381,-0.734248,0.736413,1.952450,-0.391461,0.147260 +0.403857,-0.739297,0.741351,1.957310,-0.394492,0.141417 +0.408204,-0.744346,0.746289,1.962010,-0.397522,0.135699 +0.412420,-0.749395,0.751227,1.966560,-0.400553,0.130109 +0.416507,-0.754444,0.756165,1.970950,-0.403584,0.124650 +0.420464,-0.759493,0.761103,1.975180,-0.406615,0.119325 +0.424291,-0.764542,0.766041,1.979260,-0.409646,0.114137 +0.427989,-0.769591,0.770979,1.983180,-0.412676,0.109089 +0.431556,-0.774641,0.775916,1.986950,-0.415707,0.104184 +0.434994,-0.779690,0.780850,1.990560,-0.418738,0.099426 +0.438303,-0.784738,0.785779,1.994020,-0.421769,0.094818 +0.441484,-0.789783,0.790700,1.997320,-0.424800,0.090362 +0.444540,-0.794822,0.795610,2.000470,-0.427830,0.086061 +0.447474,-0.799853,0.800506,2.003460,-0.430858,0.081916 +0.450288,-0.804872,0.805387,2.006300,-0.433879,0.077924 +0.452986,-0.809878,0.810249,2.008980,-0.436892,0.074083 +0.455569,-0.814868,0.815089,2.011500,-0.439892,0.070389 +0.458041,-0.819839,0.819907,2.013880,-0.442877,0.066839 +0.460403,-0.824788,0.824697,2.016110,-0.445844,0.063430 +0.462659,-0.829713,0.829459,2.018200,-0.448789,0.060159 +0.464810,-0.834612,0.834190,2.020140,-0.451709,0.057023 +0.466861,-0.839482,0.838886,2.021950,-0.454602,0.054018 +0.468812,-0.844319,0.843545,2.023630,-0.457464,0.051142 +0.470668,-0.849122,0.848165,2.025170,-0.460292,0.048392 +0.472430,-0.853889,0.852744,2.026590,-0.463083,0.045764 +0.474101,-0.858615,0.857277,2.027880,-0.465833,0.043255 +0.475683,-0.863300,0.861764,2.029050,-0.468541,0.040863 +0.477180,-0.867939,0.866201,2.030100,-0.471202,0.038583 +0.478593,-0.872531,0.870585,2.031030,-0.473813,0.036414 +0.479926,-0.877073,0.874915,2.031850,-0.476372,0.034351 +0.481181,-0.881563,0.879187,2.032570,-0.478875,0.032392 +0.482360,-0.885997,0.883399,2.033170,-0.481319,0.030533 +0.483467,-0.890374,0.887549,2.033680,-0.483702,0.028772 +0.484503,-0.894690,0.891633,2.034080,-0.486019,0.027106 +0.485472,-0.898943,0.895649,2.034390,-0.488268,0.025530 +0.486376,-0.903131,0.899595,2.034600,-0.490446,0.024043 +0.487217,-0.907250,0.903468,2.034720,-0.492549,0.022641 +0.487999,-0.911298,0.907265,2.034760,-0.494575,0.021321 +0.488723,-0.915274,0.910984,2.034700,-0.496521,0.020080 +0.489392,-0.919173,0.914621,2.034570,-0.498382,0.018914 +0.490010,-0.922994,0.918176,2.034360,-0.500157,0.017821 +0.490578,-0.926733,0.921644,2.034080,-0.501842,0.016798 +0.491099,-0.930389,0.925024,2.033720,-0.503433,0.015841 +0.491576,-0.933958,0.928313,2.033300,-0.504929,0.014947 +0.492012,-0.937439,0.931507,2.032800,-0.506325,0.014113 +0.492408,-0.940828,0.934609,2.032250,-0.507619,0.013337 +0.492768,-0.944123,0.937619,2.031630,-0.508807,0.012614 +0.493094,-0.947321,0.940541,2.030960,-0.509887,0.011942 +0.493388,-0.950419,0.943377,2.030240,-0.510855,0.011318 +0.493654,-0.953416,0.946131,2.029470,-0.511709,0.010739 +0.493894,-0.956308,0.948803,2.028640,-0.512446,0.010201 +0.494111,-0.959093,0.951398,2.027780,-0.513072,0.009701 +0.494306,-0.961769,0.953917,2.026870,-0.513587,0.009237 +0.494483,-0.964336,0.956364,2.025930,-0.513997,0.008805 +0.494645,-0.966796,0.958740,2.024950,-0.514303,0.008402 +0.494793,-0.969153,0.961049,2.023940,-0.514509,0.008025 +0.494931,-0.971408,0.963293,2.022900,-0.514618,0.007671 +0.495061,-0.973565,0.965474,2.021830,-0.514633,0.007336 +0.495186,-0.975626,0.967596,2.020750,-0.514557,0.007018 +0.495308,-0.977593,0.969660,2.019640,-0.514394,0.006714 +0.495430,-0.979470,0.971670,2.018520,-0.514146,0.006420 +0.495554,-0.981258,0.973628,2.017380,-0.513816,0.006133 +0.495684,-0.982961,0.975536,2.016240,-0.513408,0.005851 +0.495821,-0.984581,0.977398,2.015090,-0.512925,0.005569 +0.495968,-0.986121,0.979215,2.013930,-0.512370,0.005286 +0.496129,-0.987582,0.980991,2.012780,-0.511745,0.004997 +0.496304,-0.988969,0.982728,2.011620,-0.511055,0.004700 +0.496498,-0.990283,0.984428,2.010480,-0.510302,0.004392 +0.496712,-0.991527,0.986095,2.009340,-0.509489,0.004069 +0.496950,-0.992703,0.987730,2.008210,-0.508620,0.003729 +0.497214,-0.993815,0.989337,2.007100,-0.507697,0.003368 +0.497506,-0.994865,0.990917,2.006010,-0.506724,0.002983 +0.497829,-0.995854,0.992475,2.004930,-0.505703,0.002572 +0.498185,-0.996787,0.994011,2.003890,-0.504638,0.002130 +0.498578,-0.997666,0.995529,2.002860,-0.503532,0.001655 +0.499010,-0.998492,0.997032,2.001880,-0.502389,0.001144 +0.499483,-0.999269,0.998521,2.000920,-0.501210,0.000593 +0.500000,-1.000000,1.000000,2.000000,-0.500000,0.000000 +0.501271,-1.001423,1.003158,1.998155,-0.497295,-0.001431 +0.502752,-1.002634,1.006262,1.996505,-0.494472,-0.003066 +0.504436,-1.003626,1.009298,1.995059,-0.491544,-0.004897 +0.506312,-1.004396,1.012248,1.993824,-0.488528,-0.006914 +0.508372,-1.004937,1.015098,1.992806,-0.485439,-0.009107 +0.510605,-1.005249,1.017833,1.992012,-0.482292,-0.011464 +0.513000,-1.005328,1.020438,1.991444,-0.479106,-0.013973 +0.515542,-1.005175,1.022901,1.991107,-0.475895,-0.016621 +0.518221,-1.004791,1.025207,1.991001,-0.472677,-0.019394 +0.521021,-1.004177,1.027345,1.991128,-0.469469,-0.022278 +0.523927,-1.003336,1.029305,1.991487,-0.466287,-0.025257 +0.526926,-1.002274,1.031075,1.992075,-0.463149,-0.028316 +0.530000,-1.000995,1.032646,1.992890,-0.460069,-0.031439 +0.533135,-0.999507,1.034011,1.993928,-0.457065,-0.034610 +0.536313,-0.997816,1.035162,1.995182,-0.454152,-0.037812 +0.539519,-0.995933,1.036093,1.996648,-0.451345,-0.041028 +0.542735,-0.993865,1.036799,1.998316,-0.448659,-0.044243 +0.545944,-0.991626,1.037277,2.000178,-0.446108,-0.047438 +0.549131,-0.989225,1.037524,2.002225,-0.443705,-0.050598 +0.552278,-0.986677,1.037539,2.004446,-0.441463,-0.053706 +0.555368,-0.983993,1.037322,2.006829,-0.439393,-0.056745 +0.558387,-0.981187,1.036874,2.009362,-0.437506,-0.059700 +0.561317,-0.978276,1.036196,2.012031,-0.435813,-0.062556 +0.564144,-0.975273,1.035294,2.014823,-0.434321,-0.065297 +0.566854,-0.972195,1.034171,2.017724,-0.433039,-0.067909 +0.569431,-0.969057,1.032833,2.020717,-0.431973,-0.070379 +0.571862,-0.965875,1.031288,2.023788,-0.431129,-0.072694 +0.574136,-0.962668,1.029543,2.026920,-0.430511,-0.074841 +0.576239,-0.959450,1.027607,2.030097,-0.430123,-0.076810 +0.578161,-0.956239,1.025491,2.033303,-0.429966,-0.078590 +0.579892,-0.953052,1.023206,2.036520,-0.430042,-0.080172 +0.581423,-0.949905,1.020763,2.039733,-0.430350,-0.081547 +0.582746,-0.946814,1.018175,2.042923,-0.430888,-0.082709 +0.583854,-0.943797,1.015456,2.046076,-0.431653,-0.083652 +0.584742,-0.940868,1.012620,2.049173,-0.432643,-0.084370 +0.585403,-0.938043,1.009681,2.052200,-0.433850,-0.084859 +0.585836,-0.935336,1.006656,2.055140,-0.435270,-0.085118 +0.586038,-0.932762,1.003559,2.057977,-0.436894,-0.085145 +0.586008,-0.930334,1.000408,2.060698,-0.438714,-0.084940 +0.585746,-0.928064,0.997217,2.063288,-0.440722,-0.084503 +0.585253,-0.925965,0.994005,2.065733,-0.442905,-0.083837 +0.584532,-0.924048,0.990788,2.068021,-0.445254,-0.082946 +0.583587,-0.922322,0.987582,2.070139,-0.447755,-0.081835 +0.582422,-0.920797,0.984404,2.072078,-0.450395,-0.080508 +0.581044,-0.919480,0.981271,2.073825,-0.453162,-0.078973 +0.579460,-0.918378,0.978199,2.075374,-0.456039,-0.077238 +0.577678,-0.917498,0.975205,2.076715,-0.459014,-0.075312 +0.575708,-0.916843,0.972303,2.077841,-0.462069,-0.073205 +0.573559,-0.916417,0.969509,2.078746,-0.465189,-0.070927 +0.571244,-0.916222,0.966838,2.079427,-0.468357,-0.068492 +0.568773,-0.916260,0.964303,2.079879,-0.471558,-0.065912 +0.566160,-0.916530,0.961918,2.080099,-0.474774,-0.063199 +0.563419,-0.917030,0.959695,2.080088,-0.477989,-0.060369 +0.560563,-0.917759,0.957645,2.079844,-0.481186,-0.057435 +0.557608,-0.918712,0.955780,2.079369,-0.484349,-0.054414 +0.554569,-0.919884,0.954109,2.078666,-0.487460,-0.051320 +0.551462,-0.921269,0.952641,2.077738,-0.490503,-0.048171 +0.548304,-0.922861,0.951383,2.076591,-0.493463,-0.044982 +0.545110,-0.924650,0.950342,2.075229,-0.496325,-0.041771 +0.541897,-0.926627,0.949524,2.073660,-0.499072,-0.038553 +0.538682,-0.928782,0.948932,2.071893,-0.501692,-0.035346 +0.535482,-0.931105,0.948570,2.069937,-0.504170,-0.032167 +0.532313,-0.933581,0.948440,2.067801,-0.506494,-0.029031 +0.529193,-0.936200,0.948542,2.065497,-0.508650,-0.025956 +0.526137,-0.938947,0.948876,2.063036,-0.510629,-0.022957 +0.523161,-0.941808,0.949440,2.060433,-0.512420,-0.020050 +0.520280,-0.944767,0.950232,2.057700,-0.514013,-0.017250 +0.517511,-0.947810,0.951246,2.054851,-0.515400,-0.014572 +0.514866,-0.950920,0.952478,2.051902,-0.516574,-0.012030 +0.512361,-0.954082,0.953921,2.048868,-0.517528,-0.009637 +0.510008,-0.957279,0.955568,2.045764,-0.518259,-0.007405 +0.507818,-0.960494,0.957410,2.042607,-0.518761,-0.005347 +0.505805,-0.963710,0.959438,2.039414,-0.519033,-0.003472 +0.503978,-0.966911,0.961641,2.036200,-0.519072,-0.001790 +0.502347,-0.970080,0.964008,2.032983,-0.518879,-0.000312 +0.500919,-0.973201,0.966525,2.029779,-0.518455,0.000957 +0.499704,-0.976256,0.969181,2.026606,-0.517802,0.002009 +0.498707,-0.979231,0.971961,2.023479,-0.516923,0.002839 +0.497933,-0.982110,0.974850,2.020416,-0.515824,0.003442 +0.497386,-0.984877,0.977834,2.017431,-0.514508,0.003816 +0.497069,-0.987519,0.980898,2.014541,-0.512985,0.003958 +0.496984,-0.990021,0.984024,2.011760,-0.511260,0.003868 +0.497131,-0.992371,0.987197,2.009104,-0.509344,0.003546 +0.497510,-0.994556,0.990401,2.006585,-0.507247,0.002993 +0.498118,-0.996564,0.993618,2.004218,-0.504979,0.002213 +0.498953,-0.998386,0.996831,2.002014,-0.502552,0.001210 +0.500009,-1.000012,1.000025,1.999985,-0.499979,-0.000011 +0.501282,-1.001433,1.003182,1.998141,-0.497273,-0.001443 +0.502765,-1.002643,1.006287,1.996493,-0.494449,-0.003080 +0.504450,-1.003633,1.009321,1.995048,-0.491521,-0.004913 +0.506328,-1.004401,1.012271,1.993815,-0.488504,-0.006931 +0.508389,-1.004941,1.015120,1.992799,-0.485414,-0.009125 +0.510624,-1.005250,1.017854,1.992006,-0.482267,-0.011484 +0.513019,-1.005328,1.020458,1.991441,-0.479080,-0.013994 +0.515563,-1.005173,1.022920,1.991105,-0.475870,-0.016643 +0.518243,-1.004787,1.025225,1.991001,-0.472652,-0.019417 +0.521043,-1.004171,1.027362,1.991130,-0.469444,-0.022301 +0.523951,-1.003329,1.029320,1.991490,-0.466262,-0.025281 +0.526950,-1.002265,1.031088,1.992081,-0.463124,-0.028340 +0.530025,-1.000984,1.032658,1.992897,-0.460045,-0.031464 +0.533160,-0.999494,1.034021,1.993937,-0.457041,-0.034635 +0.536339,-0.997802,1.035170,1.995193,-0.454129,-0.037837 +0.539544,-0.995917,1.036099,1.996660,-0.451323,-0.041054 +0.542760,-0.993848,1.036804,1.998330,-0.448638,-0.044268 +0.545970,-0.991607,1.037280,2.000194,-0.446088,-0.047464 +0.549156,-0.989206,1.037525,2.002242,-0.443686,-0.050623 +0.552302,-0.986656,1.037538,2.004464,-0.441445,-0.053730 +0.555393,-0.983971,1.037319,2.006849,-0.439377,-0.056769 +0.558410,-0.981165,1.036869,2.009382,-0.437492,-0.059723 +0.561340,-0.978252,1.036190,2.012053,-0.435800,-0.062578 +0.564166,-0.975249,1.035286,2.014846,-0.434310,-0.065318 +0.566875,-0.972170,1.034161,2.017747,-0.433029,-0.067930 +0.569451,-0.969032,1.032822,2.020741,-0.431965,-0.070398 +0.571881,-0.965850,1.031275,2.023812,-0.431123,-0.072712 +0.574153,-0.962642,1.029528,2.026945,-0.430507,-0.074858 +0.576255,-0.959424,1.027591,2.030122,-0.430121,-0.076825 +0.578176,-0.956214,1.025474,2.033328,-0.429966,-0.078603 +0.579905,-0.953027,1.023187,2.036546,-0.430044,-0.080184 +0.581435,-0.949880,1.020743,2.039758,-0.430353,-0.081557 +0.582756,-0.946790,1.018154,2.042949,-0.430893,-0.082718 +0.583862,-0.943773,1.015434,2.046101,-0.431660,-0.083658 +0.584748,-0.940845,1.012597,2.049198,-0.432651,-0.084374 +0.585408,-0.938021,1.009658,2.052224,-0.433861,-0.084862 +0.585839,-0.935315,1.006632,2.055163,-0.435282,-0.085119 +0.586039,-0.932742,1.003534,2.057999,-0.436908,-0.085144 +0.586007,-0.930315,1.000382,2.060719,-0.438730,-0.084937 +0.585743,-0.928047,0.997192,2.063308,-0.440738,-0.084499 +0.585248,-0.925949,0.993980,2.065752,-0.442923,-0.083831 +0.584525,-0.924034,0.990762,2.068038,-0.445273,-0.082938 +0.583578,-0.922309,0.987556,2.070155,-0.447775,-0.081825 +0.582412,-0.920786,0.984379,2.072092,-0.450417,-0.080496 +0.581033,-0.919470,0.981246,2.073839,-0.453184,-0.078960 +0.579447,-0.918370,0.978175,2.075385,-0.456063,-0.077223 +0.577664,-0.917492,0.975181,2.076724,-0.459038,-0.075296 +0.575692,-0.916839,0.972280,2.077849,-0.462093,-0.073187 +0.573542,-0.916414,0.969487,2.078753,-0.465214,-0.070909 +0.571225,-0.916222,0.966817,2.079431,-0.468383,-0.068472 +0.568753,-0.916261,0.964283,2.079881,-0.471584,-0.065891 +0.566139,-0.916533,0.961899,2.080100,-0.474800,-0.063177 +0.563396,-0.917035,0.959678,2.080087,-0.478015,-0.060346 +0.560540,-0.917766,0.957629,2.079841,-0.481212,-0.057411 +0.557584,-0.918720,0.955766,2.079365,-0.484374,-0.054389 +0.554545,-0.919894,0.954096,2.078660,-0.487484,-0.051295 +0.551437,-0.921281,0.952630,2.077730,-0.490527,-0.048146 +0.548278,-0.922874,0.951374,2.076581,-0.493486,-0.044957 +0.545084,-0.924665,0.950335,2.075217,-0.496347,-0.041745 +0.541871,-0.926643,0.949518,2.073647,-0.499094,-0.038528 +0.538656,-0.928800,0.948928,2.071878,-0.501712,-0.035321 +0.535457,-0.931124,0.948568,2.069920,-0.504189,-0.032141 +0.532288,-0.933602,0.948440,2.067783,-0.506512,-0.029006 +0.529168,-0.936222,0.948544,2.065478,-0.508667,-0.025932 +0.526113,-0.938969,0.948880,2.063016,-0.510644,-0.022933 +0.523137,-0.941831,0.949446,2.060412,-0.512433,-0.020027 +0.520258,-0.944791,0.950239,2.057678,-0.514025,-0.017229 +0.517489,-0.947834,0.951255,2.054828,-0.515410,-0.014552 +0.514846,-0.950945,0.952488,2.051879,-0.516582,-0.012011 +0.512342,-0.954108,0.953933,2.048844,-0.517535,-0.009619 +0.509989,-0.957305,0.955582,2.045739,-0.518264,-0.007388 +0.507802,-0.960520,0.957426,2.042582,-0.518764,-0.005331 +0.505790,-0.963736,0.959455,2.039388,-0.519034,-0.003458 +0.503964,-0.966937,0.961659,2.036175,-0.519072,-0.001778 +0.502334,-0.970105,0.964027,2.032958,-0.518877,-0.000301 +0.500909,-0.973225,0.966546,2.029754,-0.518451,0.000966 +0.499695,-0.976280,0.969202,2.026581,-0.517796,0.002017 +0.498700,-0.979255,0.971983,2.023455,-0.516916,0.002845 +0.497927,-0.982132,0.974874,2.020391,-0.515814,0.003446 +0.497382,-0.984899,0.977858,2.017407,-0.514497,0.003818 +0.497067,-0.987539,0.980922,2.014518,-0.512972,0.003958 +0.496984,-0.990040,0.984049,2.011738,-0.511246,0.003866 +0.497133,-0.992389,0.987223,2.009083,-0.509328,0.003542 +0.497514,-0.994572,0.990426,2.006566,-0.507230,0.002988 +0.498124,-0.996579,0.993643,2.004199,-0.504960,0.002206 +0.498960,-0.998400,0.996857,2.001997,-0.502532,0.001202 +0.500019,-1.000024,1.000051,1.999969,-0.499958,-0.000021 +0.501293,-1.001444,1.003207,1.998127,-0.497251,-0.001455 +0.502778,-1.002651,1.006311,1.996480,-0.494426,-0.003094 +0.504464,-1.003640,1.009345,1.995037,-0.491497,-0.004928 +0.506344,-1.004406,1.012294,1.993806,-0.488479,-0.006948 +0.508407,-1.004944,1.015143,1.992792,-0.485389,-0.009144 +0.510642,-1.005252,1.017875,1.992001,-0.482242,-0.011503 +0.513039,-1.005327,1.020479,1.991437,-0.479055,-0.014014 +0.515584,-1.005171,1.022939,1.991103,-0.475844,-0.016664 +0.518265,-1.004783,1.025242,1.991001,-0.472626,-0.019439 +0.521066,-1.004165,1.027378,1.991132,-0.469418,-0.022324 +0.523974,-1.003321,1.029334,1.991494,-0.466237,-0.025305 +0.526974,-1.002255,1.031101,1.992086,-0.463099,-0.028365 +0.530050,-1.000973,1.032670,1.992905,-0.460021,-0.031489 +0.533185,-0.999481,1.034031,1.993946,-0.457018,-0.034660 +0.536364,-0.997788,1.035178,1.995204,-0.454106,-0.037863 +0.539570,-0.995901,1.036106,1.996673,-0.451301,-0.041080 +0.542786,-0.993831,1.036809,1.998344,-0.448617,-0.044294 +0.545995,-0.991589,1.037283,2.000209,-0.446068,-0.047489 +0.549181,-0.989186,1.037526,2.002259,-0.443668,-0.050648 +0.552327,-0.986635,1.037538,2.004483,-0.441428,-0.053755 +0.555417,-0.983949,1.037317,2.006868,-0.439361,-0.056793 +0.558434,-0.981142,1.036865,2.009403,-0.437478,-0.059747 +0.561363,-0.978229,1.036184,2.012075,-0.435787,-0.062600 +0.564188,-0.975225,1.035278,2.014869,-0.434299,-0.065340 +0.566896,-0.972145,1.034151,2.017771,-0.433020,-0.067950 +0.569471,-0.969006,1.032810,2.020765,-0.431958,-0.070417 +0.571900,-0.965825,1.031262,2.023837,-0.431117,-0.072729 +0.574171,-0.962616,1.029513,2.026970,-0.430503,-0.074874 +0.576271,-0.959399,1.027575,2.030148,-0.430119,-0.076840 +0.578190,-0.956188,1.025456,2.033354,-0.429966,-0.078617 +0.579918,-0.953001,1.023168,2.036571,-0.430045,-0.080195 +0.581446,-0.949855,1.020723,2.039784,-0.430357,-0.081567 +0.582766,-0.946766,1.018133,2.042974,-0.430898,-0.082726 +0.583870,-0.943750,1.015412,2.046125,-0.431667,-0.083665 +0.584754,-0.940822,1.012574,2.049222,-0.432660,-0.084379 +0.585412,-0.937999,1.009634,2.052247,-0.433871,-0.084865 +0.585841,-0.935294,1.006607,2.055186,-0.435294,-0.085121 +0.586040,-0.932722,1.003510,2.058021,-0.436921,-0.085144 +0.586006,-0.930296,1.000357,2.060740,-0.438745,-0.084935 +0.585740,-0.928029,0.997166,2.063328,-0.440755,-0.084494 +0.585243,-0.925933,0.993954,2.065771,-0.442941,-0.083825 +0.584519,-0.924019,0.990736,2.068056,-0.445292,-0.082930 +0.583570,-0.922296,0.987531,2.070172,-0.447796,-0.081815 +0.582402,-0.920774,0.984354,2.072107,-0.450438,-0.080485 +0.581021,-0.919461,0.981222,2.073852,-0.453207,-0.078947 +0.579433,-0.918363,0.978151,2.075397,-0.456086,-0.077209 +0.577649,-0.917486,0.975158,2.076734,-0.459062,-0.075280 +0.575675,-0.916834,0.972258,2.077857,-0.462118,-0.073170 +0.573524,-0.916412,0.969466,2.078759,-0.465239,-0.070890 +0.571205,-0.916221,0.966796,2.079436,-0.468408,-0.068452 +0.568732,-0.916263,0.964264,2.079884,-0.471609,-0.065869 +0.566117,-0.916536,0.961881,2.080101,-0.474826,-0.063155 +0.563374,-0.917040,0.959661,2.080086,-0.478041,-0.060323 +0.560517,-0.917772,0.957614,2.079838,-0.481237,-0.057388 +0.557560,-0.918729,0.955752,2.079360,-0.484399,-0.054365 +0.554520,-0.919904,0.954084,2.078653,-0.487509,-0.051271 +0.551413,-0.921293,0.952619,2.077722,-0.490551,-0.048121 +0.548253,-0.922888,0.951364,2.076571,-0.493510,-0.044931 +0.545059,-0.924680,0.950327,2.075206,-0.496369,-0.041720 +0.541846,-0.926660,0.949512,2.073634,-0.499115,-0.038502 +0.538631,-0.928818,0.948924,2.071864,-0.501733,-0.035295 +0.535431,-0.931143,0.948566,2.069904,-0.504208,-0.032116 +0.532263,-0.933622,0.948440,2.067765,-0.506529,-0.028982 +0.529144,-0.936243,0.948546,2.065459,-0.508683,-0.025907 +0.526089,-0.938992,0.948883,2.062996,-0.510659,-0.022910 +0.523114,-0.941854,0.949451,2.060391,-0.512447,-0.020005 +0.520235,-0.944815,0.950246,2.057656,-0.514036,-0.017207 +0.517468,-0.947859,0.951264,2.054805,-0.515420,-0.014531 +0.514825,-0.950970,0.952499,2.051855,-0.516591,-0.011991 +0.512322,-0.954133,0.953946,2.048819,-0.517542,-0.009600 +0.509971,-0.957330,0.955596,2.045714,-0.518268,-0.007371 +0.507785,-0.960545,0.957441,2.042557,-0.518767,-0.005315 +0.505775,-0.963761,0.959472,2.039363,-0.519035,-0.003443 +0.503950,-0.966962,0.961678,2.036149,-0.519071,-0.001765 +0.502322,-0.970130,0.964046,2.032932,-0.518874,-0.000290 +0.500898,-0.973250,0.966566,2.029729,-0.518447,0.000976 +0.499686,-0.976304,0.969224,2.026556,-0.517790,0.002024 +0.498693,-0.979278,0.972006,2.023430,-0.516908,0.002850 +0.497922,-0.982155,0.974897,2.020367,-0.515804,0.003450 +0.497379,-0.984920,0.977883,2.017384,-0.514486,0.003820 +0.497066,-0.987560,0.980947,2.014495,-0.512959,0.003958 +0.496985,-0.990060,0.984074,2.011717,-0.511231,0.003864 +0.497136,-0.992407,0.987248,2.009062,-0.509312,0.003539 +0.497518,-0.994589,0.990452,2.006546,-0.507212,0.002983 +0.498130,-0.996595,0.993669,2.004181,-0.504941,0.002199 +0.498968,-0.998414,0.996882,2.001980,-0.502512,0.001193 +0.500028,-1.000036,1.000076,1.999954,-0.499937,-0.000032 +0.501304,-1.001454,1.003232,1.998113,-0.497229,-0.001468 +0.502790,-1.002660,1.006335,1.996468,-0.494403,-0.003108 +0.504478,-1.003647,1.009369,1.995027,-0.491473,-0.004943 +0.506359,-1.004411,1.012317,1.993797,-0.488455,-0.006965 +0.508424,-1.004947,1.015165,1.992785,-0.485364,-0.009162 +0.510661,-1.005253,1.017897,1.991995,-0.482217,-0.011522 +0.513059,-1.005327,1.020499,1.991433,-0.479029,-0.014035 +0.515605,-1.005169,1.022957,1.991102,-0.475818,-0.016686 +0.518286,-1.004779,1.025260,1.991002,-0.472601,-0.019462 +0.521089,-1.004159,1.027394,1.991134,-0.469393,-0.022348 +0.523998,-1.003313,1.029349,1.991498,-0.466212,-0.025329 +0.526998,-1.002246,1.031115,1.992092,-0.463074,-0.028389 +0.530075,-1.000962,1.032681,1.992912,-0.459996,-0.031514 +0.533211,-0.999469,1.034041,1.993955,-0.456994,-0.034686 +0.536390,-0.997773,1.035187,1.995215,-0.454084,-0.037888 +0.539596,-0.995885,1.036112,1.996685,-0.451279,-0.041105 +0.542812,-0.993814,1.036813,1.998358,-0.448596,-0.044319 +0.546021,-0.991570,1.037286,2.000225,-0.446049,-0.047514 +0.549206,-0.989166,1.037527,2.002276,-0.443649,-0.050673 +0.552352,-0.986614,1.037537,2.004501,-0.441411,-0.053779 +0.555441,-0.983927,1.037314,2.006888,-0.439346,-0.056817 +0.558458,-0.981119,1.036860,2.009424,-0.437463,-0.059770 +0.561386,-0.978205,1.036177,2.012097,-0.435775,-0.062623 +0.564211,-0.975200,1.035270,2.014891,-0.434288,-0.065361 +0.566917,-0.972120,1.034141,2.017794,-0.433011,-0.067970 +0.569491,-0.968981,1.032799,2.020789,-0.431950,-0.070436 +0.571919,-0.965799,1.031248,2.023862,-0.431111,-0.072747 +0.574188,-0.962591,1.029499,2.026995,-0.430499,-0.074890 +0.576287,-0.959373,1.027559,2.030173,-0.430117,-0.076855 +0.578205,-0.956163,1.025438,2.033379,-0.429966,-0.078630 +0.579931,-0.952976,1.023149,2.036597,-0.430047,-0.080207 +0.581458,-0.949830,1.020702,2.039809,-0.430360,-0.081578 +0.582775,-0.946742,1.018111,2.042999,-0.430904,-0.082734 +0.583878,-0.943726,1.015389,2.046150,-0.431674,-0.083672 +0.584760,-0.940799,1.012551,2.049246,-0.432669,-0.084384 +0.585416,-0.937977,1.009610,2.052271,-0.433882,-0.084868 +0.585844,-0.935273,1.006583,2.055209,-0.435306,-0.085122 +0.586040,-0.932702,1.003485,2.058044,-0.436935,-0.085143 +0.586005,-0.930278,1.000332,2.060761,-0.438760,-0.084932 +0.585737,-0.928012,0.997141,2.063348,-0.440772,-0.084490 +0.585238,-0.925918,0.993928,2.065789,-0.442959,-0.083819 +0.584512,-0.924005,0.990711,2.068073,-0.445312,-0.082922 +0.583562,-0.922283,0.987505,2.070188,-0.447816,-0.081805 +0.582392,-0.920763,0.984329,2.072122,-0.450460,-0.080473 +0.581009,-0.919451,0.981197,2.073865,-0.453229,-0.078934 +0.579420,-0.918355,0.978127,2.075408,-0.456109,-0.077194 +0.577634,-0.917479,0.975134,2.076744,-0.459086,-0.075263 +0.575659,-0.916830,0.972235,2.077865,-0.462142,-0.073152 +0.573506,-0.916410,0.969444,2.078765,-0.465264,-0.070871 +0.571186,-0.916221,0.966776,2.079440,-0.468433,-0.068432 +0.568712,-0.916264,0.964244,2.079887,-0.471635,-0.065848 +0.566096,-0.916539,0.961863,2.080102,-0.474851,-0.063133 +0.563352,-0.917045,0.959644,2.080085,-0.478066,-0.060300 +0.560494,-0.917779,0.957598,2.079835,-0.481262,-0.057364 +0.557536,-0.918737,0.955738,2.079355,-0.484424,-0.054341 +0.554496,-0.919915,0.954071,2.078647,-0.487533,-0.051246 +0.551388,-0.921305,0.952608,2.077714,-0.490575,-0.048095 +0.548228,-0.922901,0.951355,2.076561,-0.493533,-0.044906 +0.545033,-0.924695,0.950320,2.075194,-0.496392,-0.041694 +0.541820,-0.926676,0.949507,2.073621,-0.499137,-0.038476 +0.538605,-0.928836,0.948921,2.071849,-0.501753,-0.035270 +0.535406,-0.931162,0.948564,2.069888,-0.504228,-0.032091 +0.532238,-0.933642,0.948440,2.067748,-0.506547,-0.028957 +0.529119,-0.936264,0.948547,2.065440,-0.508700,-0.025883 +0.526065,-0.939014,0.948887,2.062976,-0.510674,-0.022886 +0.523091,-0.941877,0.949457,2.060369,-0.512460,-0.019982 +0.520213,-0.944839,0.950253,2.057633,-0.514048,-0.017185 +0.517446,-0.947883,0.951273,2.054782,-0.515430,-0.014510 +0.514805,-0.950995,0.952510,2.051831,-0.516599,-0.011971 +0.512303,-0.954158,0.953958,2.048795,-0.517548,-0.009582 +0.509953,-0.957356,0.955610,2.045690,-0.518273,-0.007354 +0.507768,-0.960571,0.957457,2.042532,-0.518770,-0.005300 +0.505759,-0.963787,0.959489,2.039337,-0.519036,-0.003429 +0.503937,-0.966987,0.961696,2.036123,-0.519070,-0.001753 +0.502310,-0.970155,0.964066,2.032906,-0.518872,-0.000279 +0.500888,-0.973275,0.966587,2.029703,-0.518442,0.000985 +0.499678,-0.976328,0.969246,2.026531,-0.517784,0.002032 +0.498686,-0.979301,0.972028,2.023405,-0.516900,0.002856 +0.497917,-0.982177,0.974920,2.020343,-0.515795,0.003454 +0.497375,-0.984942,0.977907,2.017361,-0.514474,0.003822 +0.497064,-0.987580,0.980972,2.014473,-0.512946,0.003959 +0.496985,-0.990079,0.984099,2.011695,-0.511217,0.003863 +0.497138,-0.992425,0.987273,2.009042,-0.509296,0.003535 +0.497522,-0.994606,0.990477,2.006527,-0.507195,0.002977 +0.498136,-0.996610,0.993694,2.004163,-0.504923,0.002192 +0.498975,-0.998427,0.996908,2.001963,-0.502492,0.001184 +0.500037,-1.000048,1.000101,1.999938,-0.499916,-0.000042 +0.501315,-1.001465,1.003257,1.998099,-0.497207,-0.001480 +0.502803,-1.002669,1.006360,1.996456,-0.494380,-0.003122 +0.504492,-1.003654,1.009393,1.995016,-0.491450,-0.004959 +0.506375,-1.004416,1.012340,1.993788,-0.488431,-0.006982 +0.508441,-1.004951,1.015187,1.992777,-0.485339,-0.009180 +0.510679,-1.005255,1.017918,1.991990,-0.482192,-0.011542 +0.513078,-1.005327,1.020519,1.991430,-0.479004,-0.014056 +0.515626,-1.005166,1.022976,1.991100,-0.475793,-0.016708 +0.518308,-1.004775,1.025278,1.991002,-0.472575,-0.019484 +0.521112,-1.004153,1.027411,1.991136,-0.469367,-0.022371 +0.524022,-1.003306,1.029364,1.991502,-0.466187,-0.025353 +0.527023,-1.002237,1.031128,1.992097,-0.463050,-0.028414 +0.530099,-1.000951,1.032693,1.992920,-0.459972,-0.031539 +0.533236,-0.999456,1.034051,1.993964,-0.456971,-0.034711 +0.536415,-0.997759,1.035195,1.995226,-0.454061,-0.037914 +0.539621,-0.995869,1.036119,1.996698,-0.451258,-0.041131 +0.542837,-0.993797,1.036818,1.998372,-0.448576,-0.044345 +0.546046,-0.991552,1.037289,2.000241,-0.446029,-0.047539 +0.549232,-0.989146,1.037528,2.002293,-0.443631,-0.050698 +0.552377,-0.986593,1.037536,2.004519,-0.441394,-0.053804 +0.555465,-0.983905,1.037311,2.006907,-0.439330,-0.056841 +0.558481,-0.981096,1.036855,2.009445,-0.437449,-0.059793 +0.561409,-0.978182,1.036171,2.012118,-0.435762,-0.062645 +0.564233,-0.975176,1.035261,2.014914,-0.434277,-0.065382 +0.566938,-0.972096,1.034132,2.017818,-0.433001,-0.067990 +0.569511,-0.968956,1.032787,2.020814,-0.431942,-0.070455 +0.571937,-0.965774,1.031235,2.023887,-0.431106,-0.072765 +0.574205,-0.962565,1.029484,2.027020,-0.430495,-0.074907 +0.576303,-0.959347,1.027543,2.030199,-0.430115,-0.076870 +0.578219,-0.956137,1.025421,2.033405,-0.429965,-0.078643 +0.579944,-0.952951,1.023130,2.036623,-0.430048,-0.080219 +0.581469,-0.949805,1.020682,2.039835,-0.430363,-0.081588 +0.582785,-0.946717,1.018090,2.043024,-0.430909,-0.082743 +0.583886,-0.943702,1.015367,2.046175,-0.431682,-0.083678 +0.584766,-0.940776,1.012528,2.049271,-0.432678,-0.084389 +0.585421,-0.937955,1.009586,2.052295,-0.433892,-0.084871 +0.585846,-0.935252,1.006558,2.055232,-0.435318,-0.085123 +0.586041,-0.932682,1.003460,2.058066,-0.436949,-0.085142 +0.586003,-0.930259,1.000307,2.060783,-0.438776,-0.084929 +0.585734,-0.927995,0.997115,2.063368,-0.440789,-0.084485 +0.585234,-0.925902,0.993903,2.065808,-0.442977,-0.083813 +0.584505,-0.923990,0.990685,2.068091,-0.445331,-0.082914 +0.583553,-0.922271,0.987480,2.070204,-0.447837,-0.081796 +0.582382,-0.920752,0.984303,2.072136,-0.450481,-0.080462 +0.580997,-0.919442,0.981172,2.073878,-0.453251,-0.078921 +0.579407,-0.918347,0.978103,2.075420,-0.456133,-0.077179 +0.577619,-0.917473,0.975111,2.076754,-0.459110,-0.075247 +0.575642,-0.916826,0.972212,2.077873,-0.462167,-0.073135 +0.573488,-0.916407,0.969422,2.078772,-0.465289,-0.070852 +0.571167,-0.916220,0.966755,2.079445,-0.468459,-0.068412 +0.568692,-0.916265,0.964225,2.079889,-0.471660,-0.065827 +0.566075,-0.916542,0.961844,2.080103,-0.474877,-0.063111 +0.563329,-0.917050,0.959627,2.080084,-0.478092,-0.060277 +0.560470,-0.917786,0.957583,2.079832,-0.481288,-0.057340 +0.557513,-0.918746,0.955724,2.079351,-0.484448,-0.054316 +0.554471,-0.919925,0.954059,2.078640,-0.487558,-0.051221 +0.551363,-0.921317,0.952597,2.077705,-0.490599,-0.048070 +0.548203,-0.922915,0.951346,2.076551,-0.493556,-0.044880 +0.545008,-0.924710,0.950312,2.075182,-0.496414,-0.041668 +0.541794,-0.926693,0.949501,2.073607,-0.499158,-0.038451 +0.538580,-0.928854,0.948917,2.071834,-0.501773,-0.035245 +0.535381,-0.931181,0.948562,2.069871,-0.504247,-0.032066 +0.532213,-0.933663,0.948440,2.067730,-0.506565,-0.028932 +0.529095,-0.936286,0.948549,2.065421,-0.508716,-0.025859 +0.526041,-0.939036,0.948891,2.062956,-0.510689,-0.022863 +0.523067,-0.941900,0.949462,2.060348,-0.512474,-0.019959 +0.520190,-0.944863,0.950260,2.057611,-0.514060,-0.017163 +0.517425,-0.947908,0.951282,2.054759,-0.515440,-0.014489 +0.514784,-0.951020,0.952520,2.051807,-0.516607,-0.011952 +0.512284,-0.954184,0.953970,2.048770,-0.517555,-0.009563 +0.509935,-0.957381,0.955624,2.045665,-0.518278,-0.007337 +0.507752,-0.960596,0.957472,2.042506,-0.518773,-0.005284 +0.505744,-0.963812,0.959506,2.039312,-0.519037,-0.003415 +0.503923,-0.967013,0.961714,2.036098,-0.519070,-0.001740 +0.502298,-0.970180,0.964085,2.032881,-0.518869,-0.000268 +0.500878,-0.973299,0.966608,2.029678,-0.518438,0.000994 +0.499669,-0.976352,0.969267,2.026506,-0.517778,0.002039 +0.498679,-0.979324,0.972051,2.023381,-0.516892,0.002862 +0.497912,-0.982200,0.974944,2.020319,-0.515785,0.003458 +0.497372,-0.984963,0.977931,2.017337,-0.514463,0.003824 +0.497063,-0.987601,0.980996,2.014450,-0.512933,0.003959 +0.496985,-0.990098,0.984124,2.011673,-0.511202,0.003861 +0.497140,-0.992443,0.987299,2.009021,-0.509280,0.003531 +0.497526,-0.994622,0.990503,2.006507,-0.507177,0.002972 +0.498141,-0.996625,0.993720,2.004145,-0.504904,0.002185 +0.498983,-0.998441,0.996934,2.001946,-0.502472,0.001175 +0.500046,-1.000061,1.000126,1.999923,-0.499895,-0.000053 +0.501326,-1.001475,1.003282,1.998086,-0.497185,-0.001492 +0.502815,-1.002678,1.006384,1.996444,-0.494357,-0.003135 +0.504507,-1.003661,1.009417,1.995005,-0.491426,-0.004974 +0.506391,-1.004422,1.012363,1.993779,-0.488406,-0.006998 +0.508458,-1.004954,1.015209,1.992770,-0.485314,-0.009198 +0.510698,-1.005256,1.017939,1.991985,-0.482166,-0.011561 +0.513098,-1.005326,1.020539,1.991426,-0.478978,-0.014076 +0.515647,-1.005164,1.022995,1.991098,-0.475767,-0.016729 +0.518330,-1.004771,1.025295,1.991002,-0.472549,-0.019507 +0.521134,-1.004147,1.027427,1.991138,-0.469342,-0.022394 +0.524045,-1.003298,1.029379,1.991506,-0.466162,-0.025377 +0.527047,-1.002227,1.031141,1.992103,-0.463025,-0.028439 +0.530124,-1.000940,1.032705,1.992927,-0.459948,-0.031564 +0.533261,-0.999443,1.034061,1.993973,-0.456947,-0.034736 +0.536441,-0.997745,1.035203,1.995237,-0.454038,-0.037939 +0.539647,-0.995854,1.036125,1.996710,-0.451236,-0.041156 +0.542863,-0.993780,1.036823,1.998386,-0.448555,-0.044370 +0.546072,-0.991533,1.037292,2.000256,-0.446009,-0.047565 +0.549257,-0.989127,1.037529,2.002310,-0.443613,-0.050723 +0.552402,-0.986572,1.037535,2.004538,-0.441377,-0.053828 +0.555490,-0.983883,1.037309,2.006927,-0.439314,-0.056864 +0.558505,-0.981074,1.036851,2.009465,-0.437435,-0.059816 +0.561432,-0.978158,1.036165,2.012140,-0.435749,-0.062667 +0.564255,-0.975152,1.035253,2.014937,-0.434266,-0.065403 +0.566959,-0.972071,1.034122,2.017841,-0.432992,-0.068010 +0.569530,-0.968931,1.032776,2.020838,-0.431935,-0.070474 +0.571956,-0.965748,1.031222,2.023911,-0.431100,-0.072783 +0.574223,-0.962540,1.029469,2.027046,-0.430491,-0.074923 +0.576319,-0.959322,1.027526,2.030224,-0.430112,-0.076884 +0.578234,-0.956112,1.025403,2.033431,-0.429965,-0.078657 +0.579957,-0.952926,1.023111,2.036648,-0.430050,-0.080230 +0.581480,-0.949781,1.020662,2.039860,-0.430367,-0.081598 +0.582795,-0.946693,1.018069,2.043050,-0.430914,-0.082751 +0.583894,-0.943679,1.015345,2.046200,-0.431689,-0.083685 +0.584772,-0.940753,1.012505,2.049295,-0.432686,-0.084394 +0.585425,-0.937933,1.009563,2.052318,-0.433903,-0.084874 +0.585849,-0.935231,1.006534,2.055254,-0.435330,-0.085124 +0.586042,-0.932662,1.003435,2.058088,-0.436963,-0.085141 +0.586002,-0.930240,1.000281,2.060804,-0.438791,-0.084927 +0.585731,-0.927977,0.997090,2.063388,-0.440805,-0.084481 +0.585229,-0.925886,0.993877,2.065827,-0.442996,-0.083806 +0.584499,-0.923976,0.990660,2.068108,-0.445350,-0.082906 +0.583545,-0.922258,0.987455,2.070220,-0.447857,-0.081786 +0.582371,-0.920740,0.984278,2.072151,-0.450503,-0.080451 +0.580985,-0.919432,0.981148,2.073891,-0.453274,-0.078908 +0.579393,-0.918339,0.978079,2.075431,-0.456156,-0.077165 +0.577604,-0.917467,0.975087,2.076763,-0.459134,-0.075231 +0.575626,-0.916821,0.972190,2.077881,-0.462192,-0.073117 +0.573470,-0.916405,0.969400,2.078778,-0.465314,-0.070834 +0.571148,-0.916219,0.966734,2.079449,-0.468484,-0.068392 +0.568672,-0.916266,0.964205,2.079892,-0.471686,-0.065806 +0.566053,-0.916545,0.961826,2.080103,-0.474902,-0.063089 +0.563307,-0.917055,0.959610,2.080083,-0.478117,-0.060254 +0.560447,-0.917793,0.957567,2.079830,-0.481313,-0.057316 +0.557489,-0.918754,0.955710,2.079346,-0.484473,-0.054292 +0.554447,-0.919935,0.954046,2.078634,-0.487582,-0.051196 +0.551338,-0.921329,0.952586,2.077697,-0.490623,-0.048045 +0.548177,-0.922928,0.951337,2.076541,-0.493579,-0.044855 +0.544982,-0.924725,0.950305,2.075170,-0.496436,-0.041643 +0.541769,-0.926709,0.949496,2.073594,-0.499179,-0.038425 +0.538554,-0.928872,0.948913,2.071819,-0.501794,-0.035219 +0.535355,-0.931200,0.948560,2.069855,-0.504266,-0.032041 +0.532188,-0.933683,0.948440,2.067712,-0.506583,-0.028907 +0.529070,-0.936307,0.948551,2.065402,-0.508733,-0.025835 +0.526017,-0.939059,0.948894,2.062936,-0.510704,-0.022839 +0.523044,-0.941923,0.949467,2.060327,-0.512487,-0.019937 +0.520168,-0.944887,0.950268,2.057589,-0.514072,-0.017141 +0.517403,-0.947932,0.951291,2.054736,-0.515451,-0.014469 +0.514764,-0.951045,0.952531,2.051783,-0.516616,-0.011932 +0.512264,-0.954209,0.953983,2.048746,-0.517562,-0.009545 +0.509917,-0.957407,0.955638,2.045640,-0.518283,-0.007320 +0.507735,-0.960622,0.957488,2.042481,-0.518776,-0.005268 +0.505729,-0.963838,0.959523,2.039286,-0.519039,-0.003401 +0.503909,-0.967038,0.961732,2.036072,-0.519069,-0.001728 +0.502286,-0.970205,0.964105,2.032855,-0.518867,-0.000257 +0.500867,-0.973324,0.966628,2.029653,-0.518434,0.001003 +0.499660,-0.976376,0.969289,2.026481,-0.517772,0.002046 +0.498672,-0.979348,0.972074,2.023356,-0.516884,0.002867 +0.497906,-0.982222,0.974967,2.020295,-0.515775,0.003462 +0.497369,-0.984985,0.977955,2.017314,-0.514452,0.003826 +0.497061,-0.987621,0.981021,2.014428,-0.512920,0.003959 +0.496985,-0.990118,0.984149,2.011652,-0.511188,0.003859 +0.497142,-0.992461,0.987324,2.009001,-0.509264,0.003528 +0.497530,-0.994639,0.990528,2.006488,-0.507160,0.002966 +0.498147,-0.996640,0.993746,2.004127,-0.504885,0.002178 +0.498991,-0.998455,0.996959,2.001929,-0.502452,0.001166 +0.500056,-1.000073,1.000152,1.999908,-0.499874,-0.000064 +0.501337,-1.001486,1.003307,1.998072,-0.497163,-0.001504 +0.502828,-1.002686,1.006409,1.996431,-0.494334,-0.003149 +0.504521,-1.003668,1.009440,1.994995,-0.491402,-0.004989 +0.506406,-1.004427,1.012386,1.993770,-0.488382,-0.007015 +0.508475,-1.004957,1.015231,1.992763,-0.485290,-0.009216 +0.510716,-1.005258,1.017960,1.991979,-0.482141,-0.011581 +0.513118,-1.005326,1.020559,1.991423,-0.478953,-0.014097 +0.515667,-1.005162,1.023014,1.991097,-0.475742,-0.016751 +0.518352,-1.004767,1.025313,1.991002,-0.472524,-0.019529 +0.521157,-1.004142,1.027443,1.991140,-0.469317,-0.022418 +0.524069,-1.003291,1.029394,1.991509,-0.466136,-0.025401 +0.527071,-1.002218,1.031154,1.992109,-0.463000,-0.028463 +0.530149,-1.000929,1.032716,1.992935,-0.459924,-0.031589 +0.533286,-0.999431,1.034071,1.993983,-0.456924,-0.034762 +0.536466,-0.997731,1.035211,1.995248,-0.454015,-0.037965 +0.539672,-0.995838,1.036132,1.996723,-0.451214,-0.041182 +0.542888,-0.993762,1.036827,1.998400,-0.448534,-0.044396 +0.546097,-0.991515,1.037294,2.000272,-0.445990,-0.047590 +0.549282,-0.989107,1.037530,2.002327,-0.443594,-0.050748 +0.552427,-0.986551,1.037534,2.004556,-0.441360,-0.053853 +0.555514,-0.983861,1.037306,2.006947,-0.439298,-0.056888 +0.558529,-0.981051,1.036846,2.009486,-0.437421,-0.059839 +0.561455,-0.978135,1.036158,2.012162,-0.435737,-0.062689 +0.564277,-0.975128,1.035245,2.014960,-0.434255,-0.065425 +0.566980,-0.972046,1.034112,2.017865,-0.432983,-0.068031 +0.569550,-0.968906,1.032764,2.020862,-0.431927,-0.070493 +0.571975,-0.965723,1.031209,2.023936,-0.431094,-0.072800 +0.574240,-0.962514,1.029455,2.027071,-0.430487,-0.074939 +0.576335,-0.959296,1.027510,2.030250,-0.430110,-0.076899 +0.578248,-0.956086,1.025386,2.033456,-0.429965,-0.078670 +0.579970,-0.952901,1.023092,2.036674,-0.430052,-0.080242 +0.581491,-0.949756,1.020642,2.039886,-0.430370,-0.081608 +0.582804,-0.946669,1.018048,2.043075,-0.430919,-0.082759 +0.583902,-0.943655,1.015323,2.046225,-0.431696,-0.083691 +0.584778,-0.940731,1.012482,2.049319,-0.432695,-0.084398 +0.585429,-0.937911,1.009539,2.052342,-0.433913,-0.084877 +0.585851,-0.935210,1.006510,2.055277,-0.435343,-0.085125 +0.586042,-0.932642,1.003410,2.058110,-0.436976,-0.085141 +0.586001,-0.930222,1.000256,2.060825,-0.438806,-0.084924 +0.585728,-0.927960,0.997064,2.063408,-0.440822,-0.084476 +0.585224,-0.925870,0.993852,2.065846,-0.443014,-0.083800 +0.584492,-0.923961,0.990634,2.068126,-0.445370,-0.082898 +0.583536,-0.922245,0.987429,2.070236,-0.447878,-0.081776 +0.582361,-0.920729,0.984253,2.072165,-0.450524,-0.080439 +0.580973,-0.919422,0.981123,2.073904,-0.453297,-0.078894 +0.579380,-0.918331,0.978055,2.075443,-0.456179,-0.077150 +0.577589,-0.917461,0.975064,2.076773,-0.459158,-0.075215 +0.575609,-0.916817,0.972167,2.077889,-0.462216,-0.073100 +0.573453,-0.916402,0.969379,2.078784,-0.465339,-0.070815 +0.571129,-0.916219,0.966714,2.079454,-0.468509,-0.068372 +0.568651,-0.916268,0.964186,2.079894,-0.471711,-0.065785 +0.566032,-0.916549,0.961808,2.080104,-0.474928,-0.063066 +0.563285,-0.917060,0.959593,2.080081,-0.478143,-0.060231 +0.560424,-0.917799,0.957552,2.079827,-0.481338,-0.057293 +0.557465,-0.918763,0.955696,2.079341,-0.484498,-0.054268 +0.554422,-0.919945,0.954034,2.078627,-0.487607,-0.051171 +0.551313,-0.921341,0.952576,2.077689,-0.490646,-0.048020 +0.548152,-0.922942,0.951328,2.076531,-0.493602,-0.044829 +0.544957,-0.924740,0.950298,2.075159,-0.496459,-0.041617 +0.541743,-0.926726,0.949490,2.073581,-0.499201,-0.038400 +0.538529,-0.928890,0.948909,2.071804,-0.501814,-0.035194 +0.535330,-0.931219,0.948559,2.069839,-0.504285,-0.032016 +0.532163,-0.933703,0.948440,2.067694,-0.506601,-0.028883 +0.529045,-0.936328,0.948553,2.065383,-0.508749,-0.025811 +0.525993,-0.939081,0.948898,2.062915,-0.510719,-0.022816 +0.523021,-0.941947,0.949473,2.060305,-0.512500,-0.019914 +0.520145,-0.944910,0.950275,2.057567,-0.514084,-0.017120 +0.517382,-0.947957,0.951300,2.054713,-0.515461,-0.014448 +0.514743,-0.951070,0.952542,2.051759,-0.516624,-0.011912 +0.512245,-0.954234,0.953995,2.048721,-0.517568,-0.009527 +0.509899,-0.957432,0.955652,2.045615,-0.518288,-0.007303 +0.507718,-0.960648,0.957503,2.042456,-0.518779,-0.005253 +0.505714,-0.963864,0.959540,2.039261,-0.519040,-0.003387 +0.503896,-0.967063,0.961751,2.036046,-0.519068,-0.001715 +0.502274,-0.970231,0.964124,2.032830,-0.518864,-0.000246 +0.500857,-0.973348,0.966649,2.029627,-0.518429,0.001012 +0.499651,-0.976400,0.969311,2.026456,-0.517765,0.002054 +0.498665,-0.979371,0.972096,2.023331,-0.516876,0.002873 +0.497901,-0.982245,0.974991,2.020271,-0.515766,0.003465 +0.497365,-0.985006,0.977979,2.017291,-0.514440,0.003828 +0.497060,-0.987642,0.981046,2.014405,-0.512907,0.003959 +0.496986,-0.990137,0.984175,2.011630,-0.511173,0.003858 +0.497144,-0.992479,0.987350,2.008980,-0.509248,0.003524 +0.497534,-0.994656,0.990554,2.006468,-0.507142,0.002961 +0.498153,-0.996656,0.993771,2.004109,-0.504867,0.002171 +0.498998,-0.998468,0.996985,2.001913,-0.502432,0.001157 +0.500065,-1.000085,1.000177,1.999892,-0.499853,-0.000074 +0.501348,-1.001496,1.003332,1.998058,-0.497141,-0.001517 +0.502841,-1.002695,1.006433,1.996419,-0.494311,-0.003163 +0.504535,-1.003675,1.009464,1.994984,-0.491378,-0.005005 +0.506422,-1.004432,1.012409,1.993761,-0.488358,-0.007032 +0.508492,-1.004961,1.015254,1.992756,-0.485265,-0.009234 +0.510735,-1.005259,1.017982,1.991974,-0.482116,-0.011600 +0.513137,-1.005326,1.020579,1.991419,-0.478927,-0.014117 +0.515688,-1.005160,1.023033,1.991095,-0.475716,-0.016772 +0.518374,-1.004762,1.025331,1.991002,-0.472498,-0.019552 +0.521180,-1.004136,1.027459,1.991142,-0.469291,-0.022441 +0.524092,-1.003283,1.029408,1.991513,-0.466111,-0.025425 +0.527095,-1.002208,1.031168,1.992114,-0.462975,-0.028488 +0.530174,-1.000918,1.032728,1.992942,-0.459900,-0.031614 +0.533311,-0.999418,1.034081,1.993992,-0.456900,-0.034787 +0.536491,-0.997716,1.035220,1.995259,-0.453993,-0.037991 +0.539698,-0.995822,1.036138,1.996735,-0.451192,-0.041208 +0.542914,-0.993745,1.036832,1.998415,-0.448513,-0.044421 +0.546123,-0.991496,1.037297,2.000287,-0.445970,-0.047615 +0.549307,-0.989087,1.037531,2.002344,-0.443576,-0.050773 +0.552451,-0.986530,1.037533,2.004574,-0.441343,-0.053877 +0.555538,-0.983839,1.037303,2.006966,-0.439283,-0.056912 +0.558552,-0.981028,1.036842,2.009507,-0.437407,-0.059862 +0.561477,-0.978111,1.036152,2.012184,-0.435724,-0.062712 +0.564299,-0.975104,1.035237,2.014982,-0.434244,-0.065446 +0.567001,-0.972021,1.034102,2.017888,-0.432973,-0.068051 +0.569570,-0.968881,1.032752,2.020886,-0.431920,-0.070512 +0.571993,-0.965697,1.031196,2.023961,-0.431088,-0.072818 +0.574257,-0.962489,1.029440,2.027096,-0.430484,-0.074956 +0.576351,-0.959271,1.027494,2.030275,-0.430108,-0.076914 +0.578263,-0.956061,1.025368,2.033482,-0.429965,-0.078683 +0.579983,-0.952875,1.023074,2.036699,-0.430053,-0.080254 +0.581503,-0.949731,1.020622,2.039911,-0.430374,-0.081618 +0.582814,-0.946644,1.018027,2.043100,-0.430925,-0.082768 +0.583910,-0.943631,1.015301,2.046250,-0.431703,-0.083698 +0.584784,-0.940708,1.012459,2.049344,-0.432704,-0.084403 +0.585434,-0.937889,1.009515,2.052366,-0.433924,-0.084880 +0.585854,-0.935189,1.006485,2.055300,-0.435355,-0.085126 +0.586043,-0.932623,1.003385,2.058132,-0.436990,-0.085140 +0.586000,-0.930203,1.000231,2.060846,-0.438821,-0.084921 +0.585724,-0.927943,0.997039,2.063428,-0.440839,-0.084472 +0.585219,-0.925854,0.993826,2.065865,-0.443032,-0.083794 +0.584485,-0.923947,0.990609,2.068143,-0.445389,-0.082890 +0.583528,-0.922232,0.987404,2.070252,-0.447898,-0.081766 +0.582351,-0.920718,0.984228,2.072180,-0.450546,-0.080428 +0.580961,-0.919413,0.981098,2.073917,-0.453319,-0.078881 +0.579366,-0.918323,0.978030,2.075454,-0.456203,-0.077135 +0.577574,-0.917455,0.975041,2.076783,-0.459182,-0.075199 +0.575593,-0.916813,0.972144,2.077897,-0.462241,-0.073082 +0.573435,-0.916400,0.969357,2.078790,-0.465364,-0.070796 +0.571110,-0.916218,0.966693,2.079458,-0.468535,-0.068352 +0.568631,-0.916269,0.964166,2.079897,-0.471737,-0.065764 +0.566011,-0.916552,0.961790,2.080105,-0.474954,-0.063044 +0.563262,-0.917065,0.959576,2.080080,-0.478168,-0.060208 +0.560401,-0.917806,0.957536,2.079824,-0.481364,-0.057269 +0.557441,-0.918771,0.955682,2.079336,-0.484523,-0.054243 +0.554398,-0.919956,0.954022,2.078621,-0.487631,-0.051146 +0.551288,-0.921353,0.952565,2.077680,-0.490670,-0.047994 +0.548127,-0.922955,0.951319,2.076520,-0.493625,-0.044804 +0.544931,-0.924755,0.950290,2.075147,-0.496481,-0.041592 +0.541718,-0.926742,0.949485,2.073567,-0.499222,-0.038374 +0.538503,-0.928907,0.948906,2.071789,-0.501834,-0.035168 +0.535305,-0.931239,0.948557,2.069822,-0.504304,-0.031991 +0.532138,-0.933724,0.948440,2.067677,-0.506618,-0.028858 +0.529021,-0.936350,0.948555,2.065364,-0.508765,-0.025787 +0.525969,-0.939103,0.948902,2.062895,-0.510734,-0.022792 +0.522998,-0.941970,0.949478,2.060284,-0.512514,-0.019891 +0.520123,-0.944934,0.950282,2.057544,-0.514096,-0.017098 +0.517360,-0.947982,0.951309,2.054690,-0.515471,-0.014427 +0.514723,-0.951095,0.952553,2.051735,-0.516633,-0.011893 +0.512226,-0.954260,0.954008,2.048697,-0.517575,-0.009508 +0.509881,-0.957458,0.955666,2.045590,-0.518293,-0.007286 +0.507702,-0.960673,0.957519,2.042430,-0.518782,-0.005237 +0.505698,-0.963889,0.959556,2.039235,-0.519041,-0.003373 +0.503882,-0.967089,0.961769,2.036021,-0.519068,-0.001703 +0.502262,-0.970256,0.964144,2.032804,-0.518862,-0.000235 +0.500846,-0.973373,0.966670,2.029602,-0.518425,0.001021 +0.499643,-0.976424,0.969332,2.026431,-0.517759,0.002061 +0.498658,-0.979394,0.972119,2.023307,-0.516868,0.002879 +0.497896,-0.982267,0.975014,2.020247,-0.515756,0.003469 +0.497362,-0.985028,0.978003,2.017267,-0.514429,0.003830 +0.497058,-0.987662,0.981070,2.014383,-0.512894,0.003959 +0.496986,-0.990156,0.984200,2.011609,-0.511158,0.003856 +0.497146,-0.992497,0.987375,2.008959,-0.509232,0.003521 +0.497538,-0.994672,0.990580,2.006449,-0.507125,0.002956 +0.498159,-0.996671,0.993797,2.004090,-0.504848,0.002163 +0.499006,-0.998482,0.997010,2.001896,-0.502412,0.001148 +0.500075,-1.000097,1.000202,1.999877,-0.499832,-0.000085 +0.501359,-1.001506,1.003357,1.998044,-0.497119,-0.001529 +0.502854,-1.002704,1.006458,1.996407,-0.494288,-0.003177 +0.504549,-1.003682,1.009488,1.994974,-0.491355,-0.005020 +0.506438,-1.004437,1.012433,1.993752,-0.488333,-0.007049 +0.508509,-1.004964,1.015276,1.992749,-0.485240,-0.009253 +0.510753,-1.005261,1.018003,1.991969,-0.482091,-0.011620 +0.513157,-1.005325,1.020599,1.991416,-0.478902,-0.014138 +0.515709,-1.005158,1.023052,1.991093,-0.475690,-0.016794 +0.518396,-1.004758,1.025348,1.991002,-0.472473,-0.019574 +0.521203,-1.004130,1.027476,1.991144,-0.469266,-0.022464 +0.524116,-1.003275,1.029423,1.991517,-0.466086,-0.025449 +0.527120,-1.002199,1.031181,1.992120,-0.462951,-0.028513 +0.530198,-1.000907,1.032739,1.992950,-0.459875,-0.031639 +0.533336,-0.999405,1.034091,1.994001,-0.456877,-0.034813 +0.536517,-0.997702,1.035228,1.995269,-0.453970,-0.038016 +0.539723,-0.995806,1.036145,1.996748,-0.451170,-0.041233 +0.542939,-0.993728,1.036837,1.998429,-0.448492,-0.044447 +0.546148,-0.991478,1.037300,2.000303,-0.445950,-0.047641 +0.549332,-0.989067,1.037532,2.002361,-0.443557,-0.050798 +0.552476,-0.986510,1.037532,2.004593,-0.441326,-0.053901 +0.555563,-0.983817,1.037300,2.006986,-0.439267,-0.056936 +0.558576,-0.981005,1.036837,2.009528,-0.437392,-0.059885 +0.561500,-0.978087,1.036146,2.012205,-0.435711,-0.062734 +0.564321,-0.975079,1.035229,2.015005,-0.434233,-0.065467 +0.567022,-0.971997,1.034092,2.017912,-0.432964,-0.068071 +0.569590,-0.968855,1.032741,2.020910,-0.431912,-0.070531 +0.572012,-0.965672,1.031183,2.023985,-0.431083,-0.072836 +0.574275,-0.962463,1.029425,2.027121,-0.430480,-0.074972 +0.576367,-0.959245,1.027478,2.030300,-0.430106,-0.076929 +0.578277,-0.956035,1.025351,2.033507,-0.429964,-0.078697 +0.579996,-0.952850,1.023055,2.036725,-0.430055,-0.080266 +0.581514,-0.949706,1.020602,2.039937,-0.430377,-0.081628 +0.582823,-0.946620,1.018006,2.043125,-0.430930,-0.082776 +0.583918,-0.943608,1.015279,2.046275,-0.431710,-0.083704 +0.584791,-0.940685,1.012436,2.049368,-0.432713,-0.084408 +0.585438,-0.937867,1.009491,2.052390,-0.433934,-0.084883 +0.585856,-0.935168,1.006461,2.055323,-0.435367,-0.085127 +0.586043,-0.932603,1.003360,2.058154,-0.437004,-0.085139 +0.585998,-0.930184,1.000206,2.060867,-0.438837,-0.084919 +0.585721,-0.927925,0.997013,2.063448,-0.440856,-0.084467 +0.585214,-0.925838,0.993800,2.065883,-0.443050,-0.083787 +0.584478,-0.923932,0.990583,2.068161,-0.445408,-0.082882 +0.583519,-0.922219,0.987378,2.070268,-0.447919,-0.081756 +0.582341,-0.920707,0.984203,2.072195,-0.450568,-0.080416 +0.580950,-0.919403,0.981074,2.073930,-0.453342,-0.078868 +0.579353,-0.918316,0.978006,2.075465,-0.456226,-0.077121 +0.577559,-0.917449,0.975017,2.076793,-0.459206,-0.075183 +0.575576,-0.916809,0.972122,2.077905,-0.462265,-0.073065 +0.573417,-0.916398,0.969335,2.078796,-0.465389,-0.070777 +0.571091,-0.916218,0.966672,2.079462,-0.468560,-0.068332 +0.568611,-0.916270,0.964147,2.079900,-0.471763,-0.065743 +0.565989,-0.916555,0.961771,2.080106,-0.474979,-0.063022 +0.563240,-0.917070,0.959559,2.080079,-0.478194,-0.060185 +0.560378,-0.917813,0.957521,2.079821,-0.481389,-0.057245 +0.557417,-0.918780,0.955668,2.079331,-0.484548,-0.054219 +0.554373,-0.919966,0.954009,2.078614,-0.487655,-0.051121 +0.551263,-0.921365,0.952554,2.077672,-0.490694,-0.047969 +0.548101,-0.922969,0.951310,2.076510,-0.493648,-0.044778 +0.544906,-0.924770,0.950283,2.075135,-0.496503,-0.041566 +0.541692,-0.926759,0.949479,2.073554,-0.499243,-0.038349 +0.538478,-0.928925,0.948902,2.071774,-0.501854,-0.035143 +0.535279,-0.931258,0.948555,2.069806,-0.504323,-0.031966 +0.532113,-0.933744,0.948440,2.067659,-0.506636,-0.028833 +0.528996,-0.936371,0.948556,2.065345,-0.508782,-0.025762 +0.525945,-0.939126,0.948905,2.062875,-0.510749,-0.022769 +0.522974,-0.941993,0.949484,2.060263,-0.512527,-0.019868 +0.520101,-0.944958,0.950289,2.057522,-0.514107,-0.017076 +0.517339,-0.948006,0.951318,2.054667,-0.515481,-0.014406 +0.514703,-0.951120,0.952563,2.051712,-0.516641,-0.011873 +0.512206,-0.954285,0.954020,2.048672,-0.517582,-0.009490 +0.509863,-0.957483,0.955680,2.045565,-0.518297,-0.007269 +0.507685,-0.960699,0.957534,2.042405,-0.518785,-0.005222 +0.505683,-0.963915,0.959573,2.039210,-0.519042,-0.003359 +0.503868,-0.967114,0.961787,2.035995,-0.519067,-0.001690 +0.502250,-0.970281,0.964163,2.032779,-0.518859,-0.000225 +0.500836,-0.973397,0.966690,2.029576,-0.518421,0.001031 +0.499634,-0.976448,0.969354,2.026405,-0.517753,0.002069 +0.498651,-0.979418,0.972141,2.023282,-0.516860,0.002884 +0.497891,-0.982290,0.975037,2.020223,-0.515746,0.003473 +0.497359,-0.985049,0.978027,2.017244,-0.514417,0.003832 +0.497057,-0.987682,0.981095,2.014360,-0.512881,0.003959 +0.496987,-0.990175,0.984225,2.011587,-0.511144,0.003854 +0.497149,-0.992515,0.987400,2.008939,-0.509216,0.003517 +0.497542,-0.994689,0.990605,2.006430,-0.507108,0.002950 +0.498165,-0.996686,0.993822,2.004072,-0.504829,0.002156 +0.499013,-0.998496,0.997036,2.001879,-0.502392,0.001139 +0.500084,-1.000109,1.000227,1.999862,-0.499811,-0.000096 +0.501370,-1.001517,1.003382,1.998030,-0.497097,-0.001541 +0.502866,-1.002712,1.006482,1.996395,-0.494265,-0.003191 +0.504564,-1.003689,1.009512,1.994963,-0.491331,-0.005036 +0.506454,-1.004442,1.012456,1.993743,-0.488309,-0.007066 +0.508527,-1.004967,1.015298,1.992742,-0.485215,-0.009271 +0.510772,-1.005262,1.018024,1.991963,-0.482065,-0.011639 +0.513177,-1.005325,1.020619,1.991412,-0.478876,-0.014158 +0.515730,-1.005155,1.023071,1.991092,-0.475665,-0.016816 +0.518417,-1.004754,1.025366,1.991003,-0.472447,-0.019597 +0.521225,-1.004124,1.027492,1.991146,-0.469240,-0.022488 +0.524139,-1.003267,1.029438,1.991521,-0.466061,-0.025473 +0.527144,-1.002189,1.031194,1.992126,-0.462926,-0.028537 +0.530223,-1.000895,1.032751,1.992957,-0.459851,-0.031664 +0.533361,-0.999392,1.034101,1.994010,-0.456853,-0.034838 +0.536542,-0.997688,1.035236,1.995280,-0.453947,-0.038042 +0.539749,-0.995790,1.036151,1.996760,-0.451148,-0.041259 +0.542965,-0.993711,1.036841,1.998443,-0.448472,-0.044472 +0.546173,-0.991459,1.037303,2.000319,-0.445931,-0.047666 +0.549358,-0.989048,1.037533,2.002379,-0.443539,-0.050823 +0.552501,-0.986489,1.037531,2.004611,-0.441309,-0.053926 +0.555587,-0.983796,1.037298,2.007005,-0.439251,-0.056960 +0.558600,-0.980982,1.036833,2.009549,-0.437378,-0.059908 +0.561523,-0.978064,1.036139,2.012227,-0.435699,-0.062756 +0.564342,-0.975055,1.035221,2.015028,-0.434222,-0.065488 +0.567043,-0.971972,1.034082,2.017935,-0.432955,-0.068091 +0.569610,-0.968830,1.032729,2.020935,-0.431905,-0.070550 +0.572031,-0.965646,1.031169,2.024010,-0.431077,-0.072853 +0.574292,-0.962437,1.029410,2.027146,-0.430476,-0.074988 +0.576383,-0.959220,1.027461,2.030326,-0.430104,-0.076944 +0.578292,-0.956010,1.025333,2.033533,-0.429964,-0.078710 +0.580009,-0.952825,1.023036,2.036751,-0.430057,-0.080277 +0.581525,-0.949681,1.020582,2.039962,-0.430381,-0.081638 +0.582833,-0.946596,1.017984,2.043151,-0.430935,-0.082784 +0.583925,-0.943584,1.015257,2.046300,-0.431717,-0.083711 +0.584797,-0.940662,1.012413,2.049392,-0.432722,-0.084412 +0.585442,-0.937845,1.009467,2.052413,-0.433945,-0.084886 +0.585859,-0.935147,1.006436,2.055346,-0.435379,-0.085128 +0.586044,-0.932583,1.003335,2.058176,-0.437018,-0.085138 +0.585997,-0.930166,1.000180,2.060888,-0.438852,-0.084916 +0.585718,-0.927908,0.996988,2.063468,-0.440872,-0.084463 +0.585209,-0.925822,0.993775,2.065902,-0.443068,-0.083781 +0.584472,-0.923918,0.990557,2.068178,-0.445428,-0.082874 +0.583511,-0.922206,0.987353,2.070284,-0.447939,-0.081747 +0.582331,-0.920696,0.984178,2.072209,-0.450589,-0.080405 +0.580938,-0.919394,0.981049,2.073943,-0.453364,-0.078855 +0.579339,-0.918308,0.977982,2.075477,-0.456249,-0.077106 +0.577544,-0.917443,0.974994,2.076802,-0.459230,-0.075167 +0.575560,-0.916805,0.972099,2.077913,-0.462290,-0.073047 +0.573399,-0.916395,0.969314,2.078803,-0.465414,-0.070758 +0.571072,-0.916217,0.966652,2.079467,-0.468586,-0.068312 +0.568590,-0.916272,0.964127,2.079902,-0.471788,-0.065722 +0.565968,-0.916558,0.961753,2.080106,-0.475005,-0.063000 +0.563218,-0.917075,0.959542,2.080078,-0.478219,-0.060162 +0.560355,-0.917820,0.957505,2.079818,-0.481414,-0.057221 +0.557393,-0.918788,0.955654,2.079327,-0.484573,-0.054194 +0.554349,-0.919976,0.953997,2.078607,-0.487680,-0.051096 +0.551238,-0.921376,0.952543,2.077664,-0.490718,-0.047944 +0.548076,-0.922982,0.951301,2.076500,-0.493672,-0.044753 +0.544880,-0.924785,0.950276,2.075123,-0.496525,-0.041540 +0.541666,-0.926776,0.949474,2.073540,-0.499264,-0.038323 +0.538452,-0.928943,0.948898,2.071759,-0.501874,-0.035117 +0.535254,-0.931277,0.948553,2.069789,-0.504342,-0.031940 +0.532088,-0.933764,0.948440,2.067641,-0.506654,-0.028809 +0.528972,-0.936393,0.948558,2.065325,-0.508798,-0.025738 +0.525921,-0.939148,0.948909,2.062855,-0.510764,-0.022746 +0.522951,-0.942016,0.949489,2.060242,-0.512541,-0.019846 +0.520078,-0.944982,0.950297,2.057500,-0.514119,-0.017054 +0.517317,-0.948031,0.951327,2.054643,-0.515491,-0.014386 +0.514682,-0.951145,0.952574,2.051688,-0.516649,-0.011854 +0.512187,-0.954310,0.954032,2.048648,-0.517588,-0.009472 +0.509845,-0.957509,0.955694,2.045540,-0.518302,-0.007252 +0.507668,-0.960724,0.957550,2.042380,-0.518788,-0.005206 +0.505668,-0.963940,0.959590,2.039184,-0.519043,-0.003345 +0.503855,-0.967139,0.961805,2.035970,-0.519066,-0.001678 +0.502238,-0.970306,0.964183,2.032753,-0.518857,-0.000214 +0.500825,-0.973422,0.966711,2.029551,-0.518416,0.001040 +0.499625,-0.976472,0.969376,2.026380,-0.517747,0.002076 +0.498644,-0.979441,0.972164,2.023258,-0.516852,0.002890 +0.497886,-0.982312,0.975061,2.020199,-0.515736,0.003477 +0.497355,-0.985071,0.978051,2.017221,-0.514406,0.003834 +0.497055,-0.987703,0.981120,2.014338,-0.512868,0.003959 +0.496987,-0.990195,0.984250,2.011565,-0.511129,0.003852 +0.497151,-0.992533,0.987426,2.008918,-0.509200,0.003514 +0.497546,-0.994705,0.990631,2.006410,-0.507090,0.002945 +0.498171,-0.996701,0.993848,2.004054,-0.504810,0.002149 +0.499021,-0.998509,0.997061,2.001862,-0.502372,0.001130 +0.500093,-1.000121,1.000253,1.999846,-0.499789,-0.000106 +0.501381,-1.001527,1.003407,1.998016,-0.497075,-0.001554 +0.502879,-1.002721,1.006506,1.996382,-0.494242,-0.003205 +0.504578,-1.003696,1.009536,1.994953,-0.491307,-0.005051 +0.506469,-1.004447,1.012479,1.993735,-0.488285,-0.007083 +0.508544,-1.004970,1.015320,1.992735,-0.485190,-0.009289 +0.510790,-1.005263,1.018045,1.991958,-0.482040,-0.011659 +0.513197,-1.005324,1.020640,1.991409,-0.478851,-0.014179 +0.515751,-1.005153,1.023090,1.991090,-0.475639,-0.016837 +0.518439,-1.004750,1.025383,1.991003,-0.472422,-0.019620 +0.521248,-1.004118,1.027508,1.991148,-0.469215,-0.022511 +0.524163,-1.003260,1.029453,1.991525,-0.466036,-0.025497 +0.527168,-1.002180,1.031207,1.992132,-0.462901,-0.028562 +0.530248,-1.000884,1.032762,1.992965,-0.459827,-0.031689 +0.533387,-0.999379,1.034110,1.994020,-0.456830,-0.034863 +0.536568,-0.997673,1.035244,1.995291,-0.453924,-0.038067 +0.539775,-0.995775,1.036157,1.996773,-0.451127,-0.041284 +0.542991,-0.993693,1.036846,1.998457,-0.448451,-0.044498 +0.546199,-0.991441,1.037305,2.000334,-0.445911,-0.047691 +0.549383,-0.989028,1.037534,2.002396,-0.443520,-0.050847 +0.552526,-0.986468,1.037531,2.004630,-0.441292,-0.053950 +0.555611,-0.983774,1.037295,2.007025,-0.439236,-0.056984 +0.558623,-0.980960,1.036828,2.009569,-0.437364,-0.059931 +0.561546,-0.978040,1.036133,2.012249,-0.435686,-0.062778 +0.564364,-0.975031,1.035212,2.015050,-0.434211,-0.065510 +0.567064,-0.971947,1.034072,2.017959,-0.432946,-0.068111 +0.569630,-0.968805,1.032718,2.020959,-0.431897,-0.070569 +0.572049,-0.965621,1.031156,2.024035,-0.431071,-0.072871 +0.574309,-0.962412,1.029396,2.027171,-0.430472,-0.075004 +0.576399,-0.959194,1.027445,2.030351,-0.430102,-0.076959 +0.578306,-0.955984,1.025315,2.033559,-0.429964,-0.078723 +0.580022,-0.952800,1.023017,2.036776,-0.430058,-0.080289 +0.581536,-0.949657,1.020562,2.039988,-0.430384,-0.081648 +0.582843,-0.946572,1.017963,2.043176,-0.430941,-0.082792 +0.583933,-0.943560,1.015234,2.046324,-0.431724,-0.083717 +0.584803,-0.940639,1.012390,2.049417,-0.432731,-0.084417 +0.585446,-0.937823,1.009444,2.052437,-0.433955,-0.084889 +0.585861,-0.935126,1.006412,2.055369,-0.435391,-0.085129 +0.586044,-0.932563,1.003310,2.058198,-0.437032,-0.085137 +0.585996,-0.930147,1.000155,2.060909,-0.438867,-0.084913 +0.585715,-0.927891,0.996962,2.063488,-0.440889,-0.084458 +0.585204,-0.925806,0.993749,2.065921,-0.443086,-0.083775 +0.584465,-0.923904,0.990532,2.068196,-0.445447,-0.082866 +0.583502,-0.922193,0.987328,2.070300,-0.447960,-0.081737 +0.582320,-0.920684,0.984153,2.072224,-0.450611,-0.080393 +0.580926,-0.919384,0.981024,2.073956,-0.453387,-0.078842 +0.579326,-0.918300,0.977958,2.075488,-0.456273,-0.077091 +0.577528,-0.917437,0.974970,2.076812,-0.459254,-0.075151 +0.575543,-0.916801,0.972077,2.077921,-0.462315,-0.073029 +0.573381,-0.916393,0.969292,2.078809,-0.465439,-0.070739 +0.571053,-0.916217,0.966631,2.079471,-0.468611,-0.068292 +0.568570,-0.916273,0.964108,2.079905,-0.471814,-0.065700 +0.565946,-0.916561,0.961735,2.080107,-0.475031,-0.062978 +0.563195,-0.917080,0.959525,2.080077,-0.478245,-0.060139 +0.560331,-0.917827,0.957490,2.079815,-0.481439,-0.057198 +0.557369,-0.918797,0.955640,2.079322,-0.484598,-0.054170 +0.554324,-0.919986,0.953984,2.078601,-0.487704,-0.051072 +0.551213,-0.921388,0.952533,2.077655,-0.490742,-0.047919 +0.548051,-0.922996,0.951292,2.076490,-0.493695,-0.044727 +0.544854,-0.924800,0.950269,2.075112,-0.496548,-0.041515 +0.541641,-0.926792,0.949468,2.073527,-0.499286,-0.038297 +0.538427,-0.928961,0.948895,2.071744,-0.501895,-0.035092 +0.535229,-0.931296,0.948551,2.069773,-0.504361,-0.031915 +0.532063,-0.933785,0.948440,2.067623,-0.506672,-0.028784 +0.528947,-0.936414,0.948560,2.065306,-0.508815,-0.025714 +0.525897,-0.939171,0.948913,2.062834,-0.510779,-0.022722 +0.522928,-0.942040,0.949495,2.060220,-0.512554,-0.019823 +0.520056,-0.945006,0.950304,2.057477,-0.514131,-0.017033 +0.517296,-0.948055,0.951336,2.054620,-0.515501,-0.014365 +0.514662,-0.951170,0.952585,2.051664,-0.516658,-0.011834 +0.512168,-0.954336,0.954045,2.048623,-0.517595,-0.009453 +0.509827,-0.957534,0.955708,2.045515,-0.518307,-0.007235 +0.507652,-0.960750,0.957565,2.042355,-0.518791,-0.005190 +0.505653,-0.963966,0.959607,2.039159,-0.519044,-0.003331 +0.503841,-0.967165,0.961824,2.035944,-0.519065,-0.001665 +0.502225,-0.970331,0.964202,2.032727,-0.518854,-0.000203 +0.500815,-0.973446,0.966732,2.029526,-0.518412,0.001049 +0.499617,-0.976496,0.969398,2.026355,-0.517741,0.002083 +0.498637,-0.979464,0.972187,2.023233,-0.516844,0.002895 +0.497881,-0.982334,0.975084,2.020175,-0.515727,0.003481 +0.497352,-0.985092,0.978075,2.017197,-0.514395,0.003836 +0.497054,-0.987723,0.981144,2.014315,-0.512855,0.003959 +0.496987,-0.990214,0.984275,2.011544,-0.511115,0.003851 +0.497153,-0.992551,0.987451,2.008898,-0.509184,0.003510 +0.497550,-0.994722,0.990656,2.006391,-0.507073,0.002939 +0.498176,-0.996716,0.993874,2.004036,-0.504791,0.002142 +0.499029,-0.998523,0.997087,2.001846,-0.502352,0.001121 +0.500103,-1.000133,1.000278,1.999831,-0.499768,-0.000117 +0.501393,-1.001537,1.003432,1.998003,-0.497053,-0.001566 +0.502892,-1.002729,1.006531,1.996370,-0.494219,-0.003219 +0.504592,-1.003703,1.009559,1.994942,-0.491284,-0.005067 +0.506485,-1.004452,1.012502,1.993726,-0.488260,-0.007099 +0.508561,-1.004974,1.015342,1.992728,-0.485165,-0.009307 +0.510809,-1.005265,1.018066,1.991953,-0.482015,-0.011678 +0.513216,-1.005324,1.020660,1.991405,-0.478825,-0.014200 +0.515772,-1.005151,1.023109,1.991088,-0.475614,-0.016859 +0.518461,-1.004746,1.025401,1.991003,-0.472396,-0.019642 +0.521271,-1.004112,1.027524,1.991150,-0.469189,-0.022535 +0.524186,-1.003252,1.029467,1.991529,-0.466011,-0.025521 +0.527192,-1.002171,1.031220,1.992137,-0.462877,-0.028587 +0.530273,-1.000873,1.032774,1.992972,-0.459803,-0.031715 +0.533412,-0.999367,1.034120,1.994029,-0.456806,-0.034889 +0.536593,-0.997659,1.035252,1.995302,-0.453902,-0.038093 +0.539800,-0.995759,1.036164,1.996786,-0.451105,-0.041310 +0.543016,-0.993676,1.036850,1.998471,-0.448430,-0.044523 +0.546224,-0.991422,1.037308,2.000350,-0.445891,-0.047716 +0.549408,-0.989008,1.037535,2.002413,-0.443502,-0.050872 +0.552551,-0.986447,1.037530,2.004648,-0.441274,-0.053975 +0.555636,-0.983752,1.037292,2.007045,-0.439220,-0.057007 +0.558647,-0.980937,1.036823,2.009590,-0.437350,-0.059954 +0.561569,-0.978017,1.036126,2.012271,-0.435674,-0.062801 +0.564386,-0.975007,1.035204,2.015073,-0.434200,-0.065531 +0.567085,-0.971922,1.034062,2.017982,-0.432937,-0.068131 +0.569650,-0.968780,1.032706,2.020983,-0.431890,-0.070588 +0.572068,-0.965596,1.031143,2.024060,-0.431066,-0.072889 +0.574327,-0.962386,1.029381,2.027196,-0.430468,-0.075021 +0.576415,-0.959168,1.027429,2.030377,-0.430100,-0.076973 +0.578321,-0.955959,1.025298,2.033584,-0.429964,-0.078736 +0.580035,-0.952775,1.022998,2.036802,-0.430060,-0.080300 +0.581548,-0.949632,1.020542,2.040013,-0.430388,-0.081658 +0.582852,-0.946547,1.017942,2.043201,-0.430946,-0.082801 +0.583941,-0.943537,1.015212,2.046349,-0.431731,-0.083724 +0.584809,-0.940616,1.012366,2.049441,-0.432740,-0.084422 +0.585451,-0.937801,1.009420,2.052461,-0.433966,-0.084891 +0.585863,-0.935105,1.006388,2.055392,-0.435404,-0.085130 +0.586045,-0.932543,1.003286,2.058220,-0.437046,-0.085136 +0.585994,-0.930129,1.000130,2.060930,-0.438883,-0.084911 +0.585712,-0.927874,0.996937,2.063508,-0.440906,-0.084454 +0.585199,-0.925790,0.993724,2.065940,-0.443104,-0.083768 +0.584458,-0.923889,0.990506,2.068213,-0.445467,-0.082858 +0.583494,-0.922181,0.987302,2.070316,-0.447980,-0.081727 +0.582310,-0.920673,0.984128,2.072238,-0.450632,-0.080382 +0.580914,-0.919375,0.981000,2.073969,-0.453409,-0.078829 +0.579312,-0.918292,0.977934,2.075500,-0.456296,-0.077077 +0.577513,-0.917431,0.974947,2.076822,-0.459278,-0.075134 +0.575527,-0.916796,0.972054,2.077929,-0.462339,-0.073012 +0.573363,-0.916391,0.969270,2.078815,-0.465464,-0.070721 +0.571033,-0.916216,0.966610,2.079476,-0.468636,-0.068272 +0.568550,-0.916274,0.964088,2.079907,-0.471839,-0.065679 +0.565925,-0.916564,0.961716,2.080108,-0.475056,-0.062956 +0.563173,-0.917085,0.959508,2.080076,-0.478270,-0.060116 +0.560308,-0.917833,0.957474,2.079812,-0.481465,-0.057174 +0.557345,-0.918806,0.955626,2.079317,-0.484623,-0.054146 +0.554300,-0.919997,0.953972,2.078594,-0.487729,-0.051047 +0.551188,-0.921400,0.952522,2.077647,-0.490766,-0.047893 +0.548025,-0.923009,0.951283,2.076480,-0.493718,-0.044702 +0.544829,-0.924815,0.950261,2.075100,-0.496570,-0.041489 +0.541615,-0.926809,0.949463,2.073514,-0.499307,-0.038272 +0.538401,-0.928979,0.948891,2.071729,-0.501915,-0.035067 +0.535203,-0.931315,0.948549,2.069757,-0.504380,-0.031890 +0.532038,-0.933805,0.948440,2.067606,-0.506689,-0.028759 +0.528923,-0.936436,0.948562,2.065287,-0.508831,-0.025690 +0.525873,-0.939193,0.948916,2.062814,-0.510794,-0.022699 +0.522905,-0.942063,0.949500,2.060199,-0.512567,-0.019801 +0.520033,-0.945030,0.950311,2.057455,-0.514143,-0.017011 +0.517274,-0.948080,0.951345,2.054597,-0.515511,-0.014344 +0.514641,-0.951195,0.952596,2.051640,-0.516666,-0.011815 +0.512149,-0.954361,0.954057,2.048599,-0.517601,-0.009435 +0.509809,-0.957560,0.955722,2.045490,-0.518312,-0.007218 +0.507635,-0.960776,0.957581,2.042329,-0.518794,-0.005175 +0.505638,-0.963991,0.959624,2.039133,-0.519045,-0.003317 +0.503827,-0.967190,0.961842,2.035918,-0.519065,-0.001653 +0.502213,-0.970356,0.964222,2.032702,-0.518852,-0.000192 +0.500805,-0.973471,0.966752,2.029500,-0.518407,0.001058 +0.499608,-0.976520,0.969419,2.026330,-0.517734,0.002091 +0.498630,-0.979487,0.972209,2.023208,-0.516836,0.002901 +0.497876,-0.982357,0.975108,2.020151,-0.515717,0.003484 +0.497349,-0.985114,0.978100,2.017174,-0.514383,0.003838 +0.497052,-0.987744,0.981169,2.014293,-0.512842,0.003959 +0.496988,-0.990233,0.984300,2.011522,-0.511100,0.003849 +0.497155,-0.992569,0.987477,2.008877,-0.509168,0.003506 +0.497554,-0.994739,0.990682,2.006372,-0.507055,0.002934 +0.498182,-0.996731,0.993899,2.004018,-0.504773,0.002134 +0.499036,-0.998537,0.997112,2.001829,-0.502332,0.001112 +0.500112,-1.000145,1.000303,1.999816,-0.499747,-0.000128 +0.501404,-1.001548,1.003456,1.997989,-0.497031,-0.001578 +0.502904,-1.002738,1.006555,1.996358,-0.494197,-0.003233 +0.504607,-1.003710,1.009583,1.994932,-0.491260,-0.005082 +0.506501,-1.004457,1.012525,1.993717,-0.488236,-0.007116 +0.508578,-1.004977,1.015364,1.992721,-0.485140,-0.009325 +0.510827,-1.005266,1.018087,1.991948,-0.481990,-0.011697 +0.513236,-1.005323,1.020680,1.991402,-0.478800,-0.014220 +0.515793,-1.005148,1.023128,1.991087,-0.475588,-0.016881 +0.518483,-1.004742,1.025419,1.991003,-0.472370,-0.019665 +0.521294,-1.004106,1.027540,1.991152,-0.469164,-0.022558 +0.524210,-1.003244,1.029482,1.991533,-0.465986,-0.025545 +0.527216,-1.002161,1.031233,1.992143,-0.462852,-0.028611 +0.530297,-1.000862,1.032786,1.992980,-0.459779,-0.031740 +0.533437,-0.999354,1.034130,1.994038,-0.456783,-0.034914 +0.536619,-0.997645,1.035260,1.995313,-0.453879,-0.038118 +0.539826,-0.995743,1.036170,1.996798,-0.451083,-0.041336 +0.543042,-0.993659,1.036855,1.998485,-0.448409,-0.044549 +0.546250,-0.991403,1.037311,2.000366,-0.445872,-0.047742 +0.549433,-0.988988,1.037536,2.002430,-0.443484,-0.050897 +0.552575,-0.986426,1.037529,2.004667,-0.441257,-0.053999 +0.555660,-0.983730,1.037289,2.007064,-0.439205,-0.057031 +0.558671,-0.980914,1.036819,2.009611,-0.437336,-0.059977 +0.561592,-0.977993,1.036120,2.012293,-0.435661,-0.062823 +0.564408,-0.974982,1.035196,2.015096,-0.434189,-0.065552 +0.567106,-0.971897,1.034052,2.018006,-0.432927,-0.068151 +0.569669,-0.968755,1.032694,2.021007,-0.431883,-0.070607 +0.572086,-0.965570,1.031130,2.024084,-0.431060,-0.072906 +0.574344,-0.962361,1.029366,2.027222,-0.430464,-0.075037 +0.576431,-0.959143,1.027413,2.030402,-0.430098,-0.076988 +0.578335,-0.955933,1.025280,2.033610,-0.429964,-0.078750 +0.580047,-0.952749,1.022979,2.036827,-0.430062,-0.080312 +0.581559,-0.949607,1.020522,2.040038,-0.430391,-0.081668 +0.582862,-0.946523,1.017921,2.043226,-0.430951,-0.082809 +0.583949,-0.943513,1.015190,2.046374,-0.431738,-0.083730 +0.584815,-0.940593,1.012343,2.049465,-0.432749,-0.084426 +0.585455,-0.937779,1.009396,2.052484,-0.433977,-0.084894 +0.585866,-0.935084,1.006363,2.055415,-0.435416,-0.085131 +0.586045,-0.932523,1.003261,2.058242,-0.437059,-0.085136 +0.585993,-0.930110,1.000105,2.060951,-0.438898,-0.084908 +0.585709,-0.927856,0.996911,2.063528,-0.440923,-0.084449 +0.585194,-0.925774,0.993698,2.065958,-0.443122,-0.083762 +0.584451,-0.923875,0.990481,2.068231,-0.445486,-0.082850 +0.583485,-0.922168,0.987277,2.070332,-0.448001,-0.081717 +0.582300,-0.920662,0.984103,2.072253,-0.450654,-0.080370 +0.580902,-0.919365,0.980975,2.073982,-0.453432,-0.078816 +0.579299,-0.918285,0.977910,2.075511,-0.456319,-0.077062 +0.577498,-0.917425,0.974923,2.076831,-0.459302,-0.075118 +0.575510,-0.916792,0.972031,2.077937,-0.462364,-0.072994 +0.573345,-0.916388,0.969249,2.078821,-0.465489,-0.070702 +0.571014,-0.916216,0.966590,2.079480,-0.468662,-0.068252 +0.568529,-0.916276,0.964069,2.079910,-0.471865,-0.065658 +0.565904,-0.916568,0.961698,2.080108,-0.475082,-0.062934 +0.563151,-0.917090,0.959491,2.080075,-0.478296,-0.060093 +0.560285,-0.917840,0.957459,2.079809,-0.481490,-0.057150 +0.557321,-0.918814,0.955612,2.079312,-0.484648,-0.054121 +0.554275,-0.920007,0.953960,2.078587,-0.487753,-0.051022 +0.551163,-0.921412,0.952511,2.077638,-0.490790,-0.047868 +0.548000,-0.923023,0.951274,2.076470,-0.493741,-0.044676 +0.544803,-0.924830,0.950254,2.075088,-0.496592,-0.041464 +0.541590,-0.926825,0.949457,2.073500,-0.499328,-0.038246 +0.538376,-0.928997,0.948887,2.071714,-0.501935,-0.035041 +0.535178,-0.931335,0.948548,2.069740,-0.504399,-0.031865 +0.532013,-0.933826,0.948440,2.067588,-0.506707,-0.028735 +0.528898,-0.936457,0.948564,2.065268,-0.508847,-0.025666 +0.525849,-0.939215,0.948920,2.062794,-0.510809,-0.022675 +0.522881,-0.942086,0.949506,2.060178,-0.512581,-0.019778 +0.520011,-0.945054,0.950319,2.057433,-0.514154,-0.016989 +0.517253,-0.948104,0.951354,2.054574,-0.515521,-0.014324 +0.514621,-0.951220,0.952607,2.051616,-0.516674,-0.011795 +0.512129,-0.954386,0.954070,2.048574,-0.517608,-0.009417 +0.509791,-0.957585,0.955736,2.045465,-0.518317,-0.007201 +0.507618,-0.960801,0.957596,2.042304,-0.518797,-0.005159 +0.505622,-0.964017,0.959641,2.039108,-0.519046,-0.003303 +0.503814,-0.967215,0.961860,2.035893,-0.519064,-0.001640 +0.502201,-0.970381,0.964242,2.032676,-0.518849,-0.000181 +0.500794,-0.973496,0.966773,2.029475,-0.518403,0.001067 +0.499599,-0.976544,0.969441,2.026305,-0.517728,0.002098 +0.498623,-0.979511,0.972232,2.023184,-0.516828,0.002906 +0.497871,-0.982379,0.975131,2.020127,-0.515707,0.003488 +0.497346,-0.985135,0.978124,2.017151,-0.514372,0.003840 +0.497051,-0.987764,0.981194,2.014270,-0.512828,0.003959 +0.496988,-0.990252,0.984325,2.011501,-0.511085,0.003847 +0.497158,-0.992587,0.987502,2.008857,-0.509152,0.003503 +0.497558,-0.994755,0.990707,2.006352,-0.507038,0.002928 +0.498188,-0.996746,0.993925,2.004000,-0.504754,0.002127 +0.499044,-0.998550,0.997138,2.001812,-0.502312,0.001103 +0.500122,-1.000157,1.000329,1.999800,-0.499726,-0.000138 +0.501415,-1.001558,1.003481,1.997975,-0.497008,-0.001591 +0.502917,-1.002747,1.006580,1.996346,-0.494174,-0.003247 +0.504621,-1.003716,1.009607,1.994921,-0.491236,-0.005097 +0.506517,-1.004462,1.012548,1.993708,-0.488212,-0.007133 +0.508595,-1.004980,1.015387,1.992714,-0.485116,-0.009344 +0.510846,-1.005268,1.018109,1.991942,-0.481964,-0.011717 +0.513256,-1.005323,1.020700,1.991399,-0.478774,-0.014241 +0.515813,-1.005146,1.023147,1.991085,-0.475562,-0.016902 +0.518505,-1.004738,1.025436,1.991004,-0.472345,-0.019687 +0.521317,-1.004100,1.027556,1.991154,-0.469139,-0.022581 +0.524234,-1.003237,1.029497,1.991537,-0.465961,-0.025569 +0.527241,-1.002152,1.031247,1.992149,-0.462827,-0.028636 +0.530322,-1.000851,1.032797,1.992987,-0.459755,-0.031765 +0.533462,-0.999341,1.034140,1.994047,-0.456759,-0.034940 +0.536644,-0.997630,1.035268,1.995324,-0.453856,-0.038144 +0.539851,-0.995727,1.036177,1.996811,-0.451061,-0.041361 +0.543067,-0.993642,1.036859,1.998500,-0.448389,-0.044574 +0.546275,-0.991385,1.037314,2.000382,-0.445852,-0.047767 +0.549458,-0.988968,1.037537,2.002447,-0.443465,-0.050922 +0.552600,-0.986405,1.037528,2.004685,-0.441240,-0.054024 +0.555684,-0.983708,1.037286,2.007084,-0.439189,-0.057055 +0.558694,-0.980891,1.036814,2.009632,-0.437322,-0.060001 +0.561615,-0.977969,1.036113,2.012315,-0.435649,-0.062845 +0.564430,-0.974958,1.035188,2.015119,-0.434178,-0.065573 +0.567127,-0.971873,1.034042,2.018029,-0.432918,-0.068172 +0.569689,-0.968729,1.032683,2.021031,-0.431875,-0.070626 +0.572105,-0.965545,1.031116,2.024109,-0.431054,-0.072924 +0.574361,-0.962335,1.029351,2.027247,-0.430460,-0.075053 +0.576446,-0.959117,1.027396,2.030428,-0.430096,-0.077003 +0.578349,-0.955908,1.025262,2.033635,-0.429964,-0.078763 +0.580060,-0.952724,1.022960,2.036853,-0.430063,-0.080324 +0.581570,-0.949582,1.020501,2.040064,-0.430395,-0.081677 +0.582871,-0.946499,1.017900,2.043251,-0.430957,-0.082817 +0.583957,-0.943490,1.015168,2.046399,-0.431745,-0.083736 +0.584821,-0.940571,1.012320,2.049490,-0.432757,-0.084431 +0.585459,-0.937757,1.009372,2.052508,-0.433987,-0.084897 +0.585868,-0.935063,1.006339,2.055438,-0.435428,-0.085132 +0.586046,-0.932504,1.003236,2.058264,-0.437073,-0.085135 +0.585992,-0.930091,1.000079,2.060972,-0.438914,-0.084905 +0.585706,-0.927839,0.996886,2.063548,-0.440940,-0.084445 +0.585189,-0.925759,0.993672,2.065977,-0.443141,-0.083756 +0.584445,-0.923861,0.990455,2.068248,-0.445505,-0.082842 +0.583476,-0.922155,0.987251,2.070348,-0.448021,-0.081707 +0.582289,-0.920651,0.984078,2.072267,-0.450676,-0.080358 +0.580890,-0.919356,0.980950,2.073995,-0.453454,-0.078802 +0.579285,-0.918277,0.977886,2.075522,-0.456343,-0.077047 +0.577483,-0.917419,0.974900,2.076841,-0.459326,-0.075102 +0.575494,-0.916788,0.972009,2.077945,-0.462389,-0.072977 +0.573327,-0.916386,0.969227,2.078827,-0.465514,-0.070683 +0.570995,-0.916215,0.966569,2.079484,-0.468687,-0.068232 +0.568509,-0.916277,0.964049,2.079912,-0.471890,-0.065637 +0.565882,-0.916571,0.961680,2.080109,-0.475107,-0.062911 +0.563128,-0.917095,0.959474,2.080073,-0.478321,-0.060070 +0.560262,-0.917847,0.957443,2.079806,-0.481515,-0.057126 +0.557297,-0.918823,0.955598,2.079307,-0.484673,-0.054097 +0.554251,-0.920017,0.953947,2.078581,-0.487778,-0.050997 +0.551138,-0.921424,0.952501,2.077630,-0.490813,-0.047843 +0.547975,-0.923037,0.951265,2.076460,-0.493764,-0.044651 +0.544778,-0.924846,0.950247,2.075076,-0.496614,-0.041438 +0.541564,-0.926842,0.949452,2.073487,-0.499350,-0.038221 +0.538350,-0.929015,0.948884,2.071699,-0.501955,-0.035016 +0.535153,-0.931354,0.948546,2.069724,-0.504418,-0.031840 +0.531988,-0.933846,0.948440,2.067570,-0.506725,-0.028710 +0.528874,-0.936479,0.948566,2.065249,-0.508864,-0.025642 +0.525825,-0.939238,0.948924,2.062774,-0.510823,-0.022652 +0.522858,-0.942109,0.949512,2.060156,-0.512594,-0.019755 +0.519988,-0.945078,0.950326,2.057410,-0.514166,-0.016967 +0.517231,-0.948129,0.951363,2.054551,-0.515531,-0.014303 +0.514601,-0.951245,0.952617,2.051592,-0.516683,-0.011776 +0.512110,-0.954412,0.954082,2.048550,-0.517614,-0.009398 +0.509773,-0.957611,0.955750,2.045440,-0.518321,-0.007184 +0.507602,-0.960827,0.957612,2.042279,-0.518800,-0.005144 +0.505607,-0.964042,0.959658,2.039082,-0.519047,-0.003289 +0.503800,-0.967241,0.961879,2.035867,-0.519063,-0.001628 +0.502189,-0.970406,0.964261,2.032651,-0.518846,-0.000171 +0.500784,-0.973520,0.966794,2.029450,-0.518398,0.001076 +0.499591,-0.976568,0.969463,2.026280,-0.517722,0.002105 +0.498616,-0.979534,0.972255,2.023159,-0.516820,0.002912 +0.497865,-0.982402,0.975155,2.020103,-0.515697,0.003492 +0.497342,-0.985157,0.978148,2.017127,-0.514360,0.003841 +0.497049,-0.987784,0.981218,2.014248,-0.512815,0.003959 +0.496989,-0.990271,0.984350,2.011479,-0.511071,0.003845 +0.497160,-0.992605,0.987527,2.008836,-0.509136,0.003499 +0.497562,-0.994772,0.990733,2.006333,-0.507020,0.002923 +0.498194,-0.996762,0.993951,2.003982,-0.504735,0.002120 +0.499052,-0.998564,0.997163,2.001795,-0.502292,0.001094 +0.500131,-1.000169,1.000354,1.999785,-0.499705,-0.000149 +0.501426,-1.001568,1.003506,1.997961,-0.496986,-0.001603 +0.502930,-1.002755,1.006604,1.996334,-0.494151,-0.003261 +0.504635,-1.003723,1.009631,1.994911,-0.491212,-0.005113 +0.506533,-1.004467,1.012571,1.993699,-0.488187,-0.007150 +0.508613,-1.004983,1.015409,1.992707,-0.485091,-0.009362 +0.510864,-1.005269,1.018130,1.991937,-0.481939,-0.011736 +0.513276,-1.005322,1.020720,1.991395,-0.478749,-0.014262 +0.515834,-1.005144,1.023165,1.991084,-0.475537,-0.016924 +0.518527,-1.004734,1.025454,1.991004,-0.472319,-0.019710 +0.521339,-1.004094,1.027573,1.991157,-0.469113,-0.022605 +0.524257,-1.003229,1.029511,1.991541,-0.465935,-0.025594 +0.527265,-1.002142,1.031260,1.992155,-0.462802,-0.028661 +0.530347,-1.000840,1.032809,1.992995,-0.459730,-0.031790 +0.533487,-0.999328,1.034150,1.994057,-0.456736,-0.034965 +0.536669,-0.997616,1.035277,1.995335,-0.453834,-0.038170 +0.539877,-0.995711,1.036183,1.996824,-0.451040,-0.041387 +0.543093,-0.993624,1.036864,1.998514,-0.448368,-0.044600 +0.546301,-0.991366,1.037316,2.000397,-0.445833,-0.047792 +0.549484,-0.988949,1.037538,2.002464,-0.443447,-0.050947 +0.552625,-0.986384,1.037527,2.004704,-0.441223,-0.054048 +0.555708,-0.983686,1.037283,2.007104,-0.439173,-0.057079 +0.558718,-0.980868,1.036809,2.009653,-0.437308,-0.060024 +0.561637,-0.977946,1.036107,2.012336,-0.435636,-0.062867 +0.564452,-0.974934,1.035180,2.015141,-0.434167,-0.065595 +0.567148,-0.971848,1.034032,2.018053,-0.432909,-0.068192 +0.569709,-0.968704,1.032671,2.021055,-0.431868,-0.070645 +0.572124,-0.965519,1.031103,2.024134,-0.431049,-0.072942 +0.574379,-0.962309,1.029336,2.027272,-0.430457,-0.075070 +0.576462,-0.959092,1.027380,2.030453,-0.430094,-0.077018 +0.578364,-0.955883,1.025245,2.033661,-0.429963,-0.078776 +0.580073,-0.952699,1.022941,2.036879,-0.430065,-0.080335 +0.581581,-0.949557,1.020481,2.040089,-0.430398,-0.081687 +0.582881,-0.946474,1.017878,2.043277,-0.430962,-0.082825 +0.583964,-0.943466,1.015146,2.046424,-0.431753,-0.083743 +0.584827,-0.940548,1.012297,2.049514,-0.432766,-0.084436 +0.585463,-0.937735,1.009348,2.052532,-0.433998,-0.084900 +0.585870,-0.935042,1.006314,2.055461,-0.435441,-0.085133 +0.586046,-0.932484,1.003211,2.058286,-0.437087,-0.085134 +0.585990,-0.930073,1.000054,2.060993,-0.438929,-0.084902 +0.585702,-0.927822,0.996860,2.063568,-0.440956,-0.084440 +0.585184,-0.925743,0.993647,2.065996,-0.443159,-0.083749 +0.584438,-0.923846,0.990430,2.068265,-0.445525,-0.082833 +0.583468,-0.922142,0.987226,2.070364,-0.448042,-0.081697 +0.582279,-0.920640,0.984052,2.072282,-0.450697,-0.080347 +0.580878,-0.919346,0.980926,2.074008,-0.453477,-0.078789 +0.579271,-0.918269,0.977862,2.075534,-0.456366,-0.077032 +0.577468,-0.917414,0.974877,2.076851,-0.459350,-0.075086 +0.575477,-0.916784,0.971986,2.077953,-0.462413,-0.072959 +0.573309,-0.916384,0.969205,2.078833,-0.465539,-0.070664 +0.570976,-0.916215,0.966549,2.079489,-0.468713,-0.068212 +0.568489,-0.916279,0.964030,2.079915,-0.471916,-0.065616 +0.565861,-0.916574,0.961662,2.080110,-0.475133,-0.062889 +0.563106,-0.917100,0.959457,2.080072,-0.478347,-0.060047 +0.560238,-0.917854,0.957428,2.079803,-0.481541,-0.057103 +0.557273,-0.918832,0.955584,2.079302,-0.484698,-0.054072 +0.554226,-0.920028,0.953935,2.078574,-0.487802,-0.050972 +0.551113,-0.921436,0.952490,2.077621,-0.490837,-0.047818 +0.547949,-0.923050,0.951256,2.076449,-0.493787,-0.044625 +0.544752,-0.924861,0.950240,2.075064,-0.496637,-0.041412 +0.541539,-0.926858,0.949446,2.073473,-0.499371,-0.038195 +0.538325,-0.929033,0.948880,2.071684,-0.501975,-0.034990 +0.535127,-0.931373,0.948544,2.069707,-0.504437,-0.031815 +0.531963,-0.933866,0.948440,2.067552,-0.506742,-0.028685 +0.528849,-0.936500,0.948568,2.065230,-0.508880,-0.025618 +0.525801,-0.939260,0.948928,2.062753,-0.510838,-0.022628 +0.522835,-0.942133,0.949517,2.060135,-0.512607,-0.019733 +0.519966,-0.945102,0.950334,2.057388,-0.514178,-0.016946 +0.517210,-0.948153,0.951372,2.054528,-0.515541,-0.014282 +0.514580,-0.951270,0.952628,2.051568,-0.516691,-0.011756 +0.512091,-0.954437,0.954095,2.048525,-0.517621,-0.009380 +0.509755,-0.957636,0.955764,2.045415,-0.518326,-0.007167 +0.507585,-0.960852,0.957627,2.042253,-0.518803,-0.005128 +0.505592,-0.964068,0.959675,2.039057,-0.519049,-0.003275 +0.503786,-0.967266,0.961897,2.035842,-0.519062,-0.001616 +0.502177,-0.970431,0.964281,2.032625,-0.518844,-0.000160 +0.500774,-0.973545,0.966814,2.029424,-0.518394,0.001085 +0.499582,-0.976592,0.969485,2.026255,-0.517715,0.002113 +0.498609,-0.979557,0.972277,2.023135,-0.516812,0.002917 +0.497860,-0.982424,0.975178,2.020079,-0.515688,0.003495 +0.497339,-0.985178,0.978172,2.017104,-0.514349,0.003843 +0.497048,-0.987805,0.981243,2.014225,-0.512802,0.003959 +0.496991,-0.988976,0.982689,2.012930,-0.512017,0.003935 +0.496977,-0.990110,0.984141,2.011660,-0.511198,0.003869 +0.497000,-0.991202,0.985594,2.010440,-0.510350,0.003769 +0.497053,-0.992253,0.987040,2.009250,-0.509483,0.003642 +0.497131,-0.993263,0.988474,2.008120,-0.508605,0.003496 +0.497225,-0.994231,0.989888,2.007030,-0.507722,0.003338 +0.497331,-0.995157,0.991277,2.005990,-0.506843,0.003178 +0.497442,-0.996042,0.992634,2.004990,-0.505975,0.003021 +0.497550,-0.996885,0.993951,2.004040,-0.505126,0.002871 +0.497654,-0.997686,0.995224,2.003140,-0.504305,0.002727 +0.497754,-0.998446,0.996444,2.002290,-0.503518,0.002590 +0.497848,-0.999164,0.997607,2.001480,-0.502772,0.002459 +0.497938,-0.999841,0.998705,2.000710,-0.502069,0.002335 +0.498023,-1.000480,0.999732,1.999990,-0.501407,0.002217 +0.498104,-1.001070,1.000680,1.999320,-0.500787,0.002106 +0.498179,-1.001620,1.001550,1.998700,-0.500209,0.002002 +0.498250,-1.002130,1.002320,1.998120,-0.499673,0.001904 +0.498317,-1.002600,1.003000,1.997590,-0.499179,0.001812 +0.498378,-1.003030,1.003590,1.997100,-0.498727,0.001727 +0.498435,-1.003410,1.004090,1.996660,-0.498317,0.001649 +0.498488,-1.003760,1.004520,1.996270,-0.497949,0.001577 +0.498535,-1.004060,1.004870,1.995920,-0.497624,0.001511 +0.498578,-1.004320,1.005170,1.995620,-0.497340,0.001452 +0.498616,-1.004540,1.005400,1.995370,-0.497098,0.001400 +0.498649,-1.004710,1.005580,1.995160,-0.496897,0.001354 +0.498678,-1.004850,1.005720,1.995000,-0.496739,0.001314 +0.498702,-1.004950,1.005810,1.994880,-0.496623,0.001281 +0.498721,-1.005010,1.005880,1.994800,-0.496545,0.001255 +0.498736,-1.005050,1.005920,1.994760,-0.496498,0.001235 +0.498746,-1.005070,1.005940,1.994730,-0.496475,0.001222 +0.498751,-1.005080,1.005940,1.994720,-0.496466,0.001215 +0.498752,-1.005080,1.005940,1.994720,-0.496465,0.001214 +0.498752,-1.005080,1.005940,1.994720,-0.496472,0.001218 +0.498754,-1.005080,1.005940,1.994720,-0.496472,0.001218 +0.498755,-1.005080,1.005940,1.994720,-0.496473,0.001219 +0.498759,-1.005070,1.005930,1.994730,-0.496478,0.001224 +0.498770,-1.005060,1.005920,1.994740,-0.496490,0.001234 +0.498788,-1.005050,1.005900,1.994760,-0.496513,0.001245 +0.498818,-1.005020,1.005870,1.994800,-0.496549,0.001256 +0.498862,-1.004970,1.005830,1.994850,-0.496599,0.001267 +0.498922,-1.004910,1.005770,1.994920,-0.496660,0.001279 +0.499001,-1.004830,1.005690,1.995020,-0.496729,0.001290 +0.499101,-1.004730,1.005590,1.995130,-0.496803,0.001301 +0.499226,-1.004610,1.005470,1.995260,-0.496879,0.001312 +0.499377,-1.004470,1.005330,1.995410,-0.496955,0.001324 +0.499558,-1.004320,1.005180,1.995570,-0.497031,0.001335 +0.499771,-1.004160,1.005010,1.995740,-0.497108,0.001346 +0.500018,-1.003980,1.004830,1.995910,-0.497184,0.001358 +0.500302,-1.003800,1.004650,1.996080,-0.497260,0.001369 +0.500626,-1.003610,1.004460,1.996260,-0.497336,0.001380 +0.500992,-1.003420,1.004260,1.996430,-0.497412,0.001391 +0.501403,-1.003240,1.004070,1.996600,-0.497488,0.001403 +0.501862,-1.003050,1.003880,1.996780,-0.497565,0.001414 +0.502370,-1.002860,1.003690,1.996950,-0.497641,0.001425 +0.502932,-1.002670,1.003490,1.997130,-0.497717,0.001436 +0.503548,-1.002480,1.003300,1.997300,-0.497793,0.001448 +0.504223,-1.002290,1.003110,1.997480,-0.497869,0.001459 +0.504958,-1.002100,1.002910,1.997650,-0.497945,0.001470 +0.505756,-1.001910,1.002720,1.997820,-0.498022,0.001482 +0.506620,-1.001730,1.002530,1.998000,-0.498098,0.001493 +0.507552,-1.001540,1.002340,1.998170,-0.498174,0.001504 +0.508554,-1.001350,1.002140,1.998350,-0.498250,0.001515 +0.509631,-1.001160,1.001950,1.998520,-0.498326,0.001527 +0.510783,-1.000970,1.001760,1.998700,-0.498402,0.001538 +0.512014,-1.000780,1.001570,1.998870,-0.498479,0.001549 +0.513326,-1.000590,1.001370,1.999040,-0.498555,0.001560 +0.514723,-1.000400,1.001180,1.999220,-0.498631,0.001572 +0.516205,-1.000220,1.000990,1.999390,-0.498707,0.001583 +0.517777,-1.000030,1.000790,1.999570,-0.498783,0.001594 +0.519440,-0.999838,1.000600,1.999740,-0.498859,0.001606 +0.521197,-0.999649,1.000410,1.999920,-0.498936,0.001617 +0.523052,-0.999460,1.000220,2.000090,-0.499012,0.001628 +0.525005,-0.999271,1.000020,2.000260,-0.499088,0.001639 +0.527061,-0.999082,0.999831,2.000440,-0.499164,0.001651 +0.529222,-0.998894,0.999638,2.000610,-0.499240,0.001662 +0.531489,-0.998705,0.999446,2.000790,-0.499316,0.001673 +0.533866,-0.998516,0.999253,2.000960,-0.499393,0.001684 +0.536356,-0.998327,0.999060,2.001140,-0.499469,0.001696 +0.538961,-0.998138,0.998867,2.001310,-0.499545,0.001707 +0.541683,-0.997949,0.998675,2.001480,-0.499621,0.001718 +0.544526,-0.997761,0.998482,2.001660,-0.499697,0.001730 +0.547491,-0.997572,0.998289,2.001830,-0.499773,0.001741 +0.550582,-0.997383,0.998096,2.002010,-0.499850,0.001752 +0.553801,-0.997194,0.997904,2.002180,-0.499926,0.001763 +0.557149,-0.997005,0.997711,2.002360,-0.500002,0.001775 +0.560627,-0.996817,0.997518,2.002530,-0.500078,0.001786 +0.564235,-0.996628,0.997325,2.002710,-0.500154,0.001797 +0.567973,-0.996439,0.997133,2.002880,-0.500230,0.001808 +0.571841,-0.996250,0.996940,2.003050,-0.500307,0.001820 +0.575838,-0.996061,0.996747,2.003230,-0.500383,0.001831 +0.579965,-0.995873,0.996554,2.003400,-0.500459,0.001842 +0.584223,-0.995684,0.996362,2.003580,-0.500535,0.001854 +0.588609,-0.995495,0.996169,2.003750,-0.500611,0.001865 +0.593126,-0.995306,0.995976,2.003930,-0.500687,0.001876 +0.597773,-0.995117,0.995783,2.004100,-0.500764,0.001887 +0.602549,-0.994929,0.995591,2.004270,-0.500840,0.001899 +0.607455,-0.994740,0.995398,2.004450,-0.500916,0.001910 +0.612491,-0.994551,0.995205,2.004620,-0.500992,0.001921 +0.617657,-0.994362,0.995012,2.004800,-0.501068,0.001932 +0.622953,-0.994173,0.994820,2.004970,-0.501144,0.001944 +0.628378,-0.993985,0.994627,2.005150,-0.501221,0.001955 +0.633933,-0.993796,0.994434,2.005320,-0.501297,0.001966 +0.639619,-0.993607,0.994241,2.005490,-0.501373,0.001978 +0.645433,-0.993418,0.994049,2.005670,-0.501449,0.001989 +0.651378,-0.993229,0.993856,2.005840,-0.501525,0.002000 +0.657453,-0.993041,0.993663,2.006020,-0.501601,0.002011 +0.663657,-0.992852,0.993470,2.006190,-0.501678,0.002023 +0.669991,-0.992663,0.993278,2.006370,-0.501754,0.002034 +0.676455,-0.992474,0.993085,2.006540,-0.501830,0.002045 +0.683049,-0.992285,0.992892,2.006710,-0.501906,0.002056 +0.689773,-0.992096,0.992699,2.006890,-0.501982,0.002068 +0.696626,-0.991908,0.992507,2.007060,-0.502058,0.002079 +0.703609,-0.991719,0.992314,2.007240,-0.502135,0.002090 +0.710722,-0.991530,0.992121,2.007410,-0.502211,0.002102 +0.717965,-0.991341,0.991928,2.007590,-0.502287,0.002113 +0.725338,-0.991152,0.991736,2.007760,-0.502363,0.002124 +0.732841,-0.990964,0.991543,2.007930,-0.502439,0.002135 +0.740473,-0.990775,0.991350,2.008110,-0.502515,0.002147 +0.748235,-0.990586,0.991157,2.008280,-0.502592,0.002158 +0.756127,-0.990397,0.990965,2.008460,-0.502668,0.002169 +0.764145,-0.990208,0.990772,2.008630,-0.502744,0.002180 +0.772287,-0.990020,0.990579,2.008810,-0.502820,0.002192 +0.780551,-0.989831,0.990386,2.008980,-0.502896,0.002203 +0.788934,-0.989642,0.990194,2.009150,-0.502972,0.002214 +0.797433,-0.989453,0.990001,2.009330,-0.503049,0.002226 +0.806047,-0.989264,0.989808,2.009500,-0.503125,0.002237 +0.814771,-0.989076,0.989615,2.009680,-0.503201,0.002248 +0.823604,-0.988887,0.989423,2.009850,-0.503277,0.002259 +0.832544,-0.988698,0.989230,2.010030,-0.503353,0.002271 +0.841586,-0.988509,0.989037,2.010200,-0.503429,0.002282 +0.850730,-0.988320,0.988844,2.010370,-0.503506,0.002293 +0.859972,-0.988132,0.988652,2.010550,-0.503582,0.002304 +0.869309,-0.987943,0.988459,2.010720,-0.503658,0.002316 +0.878740,-0.987754,0.988266,2.010900,-0.503734,0.002327 +0.888261,-0.987565,0.988073,2.011070,-0.503810,0.002338 +0.897869,-0.987376,0.987881,2.011250,-0.503886,0.002350 +0.907563,-0.987188,0.987688,2.011420,-0.503963,0.002361 +0.917340,-0.986999,0.987495,2.011590,-0.504039,0.002372 +0.927197,-0.986810,0.987302,2.011770,-0.504115,0.002383 +0.937132,-0.986621,0.987110,2.011940,-0.504191,0.002395 +0.947141,-0.986432,0.986917,2.012120,-0.504267,0.002406 +0.957222,-0.986243,0.986724,2.012290,-0.504343,0.002417 +0.967374,-0.986055,0.986531,2.012470,-0.504420,0.002428 +0.977592,-0.985866,0.986339,2.012640,-0.504496,0.002440 +0.987875,-0.985677,0.986146,2.012820,-0.504572,0.002451 +0.998220,-0.985488,0.985953,2.012990,-0.504648,0.002462 +1.008620,-0.985299,0.985760,2.013160,-0.504724,0.002474 +1.019080,-0.985111,0.985568,2.013340,-0.504800,0.002485 +1.029600,-0.984922,0.985375,2.013510,-0.504877,0.002496 +1.040170,-0.984733,0.985182,2.013690,-0.504953,0.002507 +1.050780,-0.984544,0.984989,2.013860,-0.505029,0.002519 +1.061440,-0.984355,0.984797,2.014040,-0.505105,0.002530 +1.072150,-0.984167,0.984604,2.014210,-0.505181,0.002541 +1.082890,-0.983978,0.984411,2.014380,-0.505257,0.002552 +1.093680,-0.983789,0.984218,2.014560,-0.505334,0.002564 +1.104500,-0.983600,0.984026,2.014730,-0.505410,0.002575 +1.115360,-0.983411,0.983833,2.014910,-0.505486,0.002586 +1.126240,-0.983223,0.983640,2.015080,-0.505562,0.002598 +1.137150,-0.983034,0.983447,2.015260,-0.505638,0.002609 +1.148090,-0.982845,0.983255,2.015430,-0.505714,0.002620 +1.159050,-0.982656,0.983062,2.015600,-0.505791,0.002631 +1.170040,-0.982467,0.982869,2.015780,-0.505867,0.002643 +1.181040,-0.982279,0.982676,2.015950,-0.505943,0.002654 +1.192050,-0.982090,0.982484,2.016130,-0.506019,0.002665 +1.203080,-0.981901,0.982291,2.016300,-0.506095,0.002676 +1.214120,-0.981712,0.982098,2.016480,-0.506171,0.002688 +1.225160,-0.981523,0.981905,2.016650,-0.506248,0.002699 +1.236210,-0.981335,0.981713,2.016820,-0.506324,0.002710 +1.247260,-0.981146,0.981520,2.017000,-0.506400,0.002722 +1.258320,-0.980957,0.981327,2.017170,-0.506476,0.002733 +1.269360,-0.980768,0.981134,2.017350,-0.506552,0.002744 +1.280410,-0.980579,0.980942,2.017520,-0.506628,0.002755 +1.291440,-0.980391,0.980749,2.017700,-0.506705,0.002767 +1.302470,-0.980202,0.980556,2.017870,-0.506781,0.002778 +1.313480,-0.980013,0.980363,2.018040,-0.506857,0.002789 +1.324470,-0.979824,0.980171,2.018220,-0.506933,0.002800 +1.335450,-0.979635,0.979978,2.018390,-0.507009,0.002812 +1.346400,-0.979446,0.979785,2.018570,-0.507085,0.002823 +1.357330,-0.979258,0.979592,2.018740,-0.507162,0.002834 +1.368240,-0.979069,0.979400,2.018920,-0.507238,0.002846 +1.379110,-0.978880,0.979207,2.019090,-0.507314,0.002857 +1.389960,-0.978691,0.979014,2.019260,-0.507390,0.002868 +1.400770,-0.978502,0.978821,2.019440,-0.507466,0.002879 +1.411540,-0.978314,0.978629,2.019610,-0.507542,0.002891 +1.422280,-0.978125,0.978436,2.019790,-0.507619,0.002902 +1.432970,-0.977936,0.978243,2.019960,-0.507695,0.002913 +1.443620,-0.977747,0.978050,2.020140,-0.507771,0.002924 +1.454220,-0.977558,0.977858,2.020310,-0.507847,0.002936 +1.464770,-0.977370,0.977665,2.020480,-0.507923,0.002947 +1.475270,-0.977181,0.977472,2.020660,-0.507999,0.002958 +1.485710,-0.976992,0.977279,2.020830,-0.508076,0.002970 +1.496090,-0.976803,0.977087,2.021010,-0.508152,0.002981 +1.506420,-0.976614,0.976894,2.021180,-0.508228,0.002992 +1.516680,-0.976426,0.976701,2.021360,-0.508304,0.003003 +1.526880,-0.976237,0.976508,2.021530,-0.508380,0.003015 +1.537010,-0.976048,0.976316,2.021710,-0.508456,0.003026 +1.547070,-0.975859,0.976123,2.021880,-0.508533,0.003037 +1.557060,-0.975670,0.975930,2.022050,-0.508609,0.003048 +1.566970,-0.975482,0.975737,2.022230,-0.508685,0.003060 +1.576800,-0.975293,0.975545,2.022400,-0.508761,0.003071 +1.586550,-0.975104,0.975352,2.022580,-0.508837,0.003082 +1.596220,-0.974915,0.975159,2.022750,-0.508913,0.003094 +1.605800,-0.974726,0.974967,2.022930,-0.508990,0.003105 +1.615290,-0.974538,0.974774,2.023100,-0.509066,0.003116 +1.624700,-0.974349,0.974581,2.023270,-0.509142,0.003127 +1.634000,-0.974160,0.974388,2.023450,-0.509218,0.003139 +1.643210,-0.973971,0.974196,2.023620,-0.509294,0.003150 +1.652330,-0.973782,0.974003,2.023800,-0.509370,0.003161 +1.661340,-0.973593,0.973810,2.023970,-0.509447,0.003172 +1.670240,-0.973405,0.973617,2.024150,-0.509523,0.003184 +1.679040,-0.973216,0.973425,2.024320,-0.509599,0.003195 +1.687730,-0.973027,0.973232,2.024490,-0.509675,0.003206 +1.696310,-0.972838,0.973039,2.024670,-0.509751,0.003218 +1.704780,-0.972649,0.972846,2.024840,-0.509827,0.003229 +1.713120,-0.972461,0.972654,2.025020,-0.509904,0.003240 +1.721350,-0.972272,0.972461,2.025190,-0.509980,0.003251 +1.729450,-0.972083,0.972268,2.025370,-0.510056,0.003263 +1.737430,-0.971894,0.972075,2.025540,-0.510132,0.003274 +1.745280,-0.971705,0.971883,2.025710,-0.510208,0.003285 +1.753000,-0.971517,0.971690,2.025890,-0.510284,0.003296 +1.760600,-0.971328,0.971497,2.026060,-0.510361,0.003308 +1.768060,-0.971139,0.971304,2.026240,-0.510437,0.003319 +1.775390,-0.970950,0.971112,2.026410,-0.510513,0.003330 +1.782590,-0.970761,0.970919,2.026590,-0.510589,0.003342 +1.789670,-0.970573,0.970726,2.026760,-0.510665,0.003353 +1.796610,-0.970384,0.970533,2.026930,-0.510741,0.003364 +1.803420,-0.970195,0.970341,2.027110,-0.510818,0.003375 +1.810100,-0.970006,0.970148,2.027280,-0.510894,0.003387 +1.816660,-0.969817,0.969955,2.027460,-0.510970,0.003398 +1.823080,-0.969629,0.969762,2.027630,-0.511046,0.003409 +1.829380,-0.969440,0.969570,2.027810,-0.511122,0.003420 +1.835540,-0.969251,0.969377,2.027980,-0.511198,0.003432 +1.841570,-0.969062,0.969184,2.028150,-0.511275,0.003443 +1.847480,-0.968873,0.968991,2.028330,-0.511351,0.003454 +1.853250,-0.968685,0.968799,2.028500,-0.511427,0.003466 +1.858900,-0.968496,0.968606,2.028680,-0.511503,0.003477 +1.864410,-0.968307,0.968413,2.028850,-0.511579,0.003488 +1.869800,-0.968118,0.968220,2.029030,-0.511655,0.003499 +1.875050,-0.967929,0.968028,2.029200,-0.511732,0.003511 +1.880180,-0.967740,0.967835,2.029370,-0.511808,0.003522 +1.885170,-0.967552,0.967642,2.029550,-0.511884,0.003533 +1.890040,-0.967363,0.967449,2.029720,-0.511960,0.003544 +1.894770,-0.967174,0.967257,2.029900,-0.512036,0.003556 +1.899380,-0.966985,0.967064,2.030070,-0.512112,0.003567 +1.903860,-0.966796,0.966871,2.030250,-0.512189,0.003578 +1.908200,-0.966608,0.966678,2.030420,-0.512265,0.003590 +1.912420,-0.966419,0.966486,2.030590,-0.512341,0.003601 +1.916510,-0.966230,0.966293,2.030770,-0.512417,0.003612 +1.920460,-0.966041,0.966100,2.030940,-0.512493,0.003623 +1.924290,-0.965852,0.965907,2.031120,-0.512569,0.003635 +1.927990,-0.965664,0.965715,2.031290,-0.512646,0.003646 +1.931560,-0.965475,0.965522,2.031470,-0.512722,0.003657 +1.934990,-0.965286,0.965329,2.031640,-0.512798,0.003668 +1.938300,-0.965097,0.965136,2.031820,-0.512874,0.003680 +1.941480,-0.964908,0.964944,2.031990,-0.512950,0.003691 +1.944540,-0.964720,0.964751,2.032160,-0.513026,0.003702 +1.947470,-0.964531,0.964558,2.032340,-0.513103,0.003714 +1.950290,-0.964342,0.964365,2.032510,-0.513179,0.003725 +1.952990,-0.964153,0.964173,2.032690,-0.513255,0.003736 +1.955570,-0.963964,0.963980,2.032860,-0.513331,0.003747 +1.958040,-0.963776,0.963787,2.033040,-0.513407,0.003759 +1.960400,-0.963591,0.963594,2.033210,-0.513483,0.003770 +1.962660,-0.963412,0.963402,2.033380,-0.513560,0.003781 +1.964810,-0.963241,0.963209,2.033560,-0.513636,0.003792 +1.966860,-0.963082,0.963016,2.033730,-0.513712,0.003804 +1.968810,-0.962935,0.962823,2.033910,-0.513788,0.003815 +1.970670,-0.962805,0.962631,2.034080,-0.513864,0.003826 +1.972430,-0.962693,0.962438,2.034250,-0.513940,0.003838 +1.974100,-0.962603,0.962248,2.034420,-0.514017,0.003849 +1.975680,-0.962537,0.962063,2.034590,-0.514093,0.003860 +1.977180,-0.962497,0.961885,2.034740,-0.514169,0.003871 +1.978590,-0.962486,0.961718,2.034880,-0.514245,0.003883 +1.979930,-0.962507,0.961563,2.035000,-0.514321,0.003894 +1.981180,-0.962563,0.961423,2.035110,-0.514397,0.003905 +1.982360,-0.962655,0.961301,2.035190,-0.514474,0.003917 +1.983470,-0.962786,0.961200,2.035250,-0.514550,0.003928 +1.984500,-0.962960,0.961122,2.035270,-0.514626,0.003939 +1.985470,-0.963179,0.961069,2.035270,-0.514702,0.003950 +1.986380,-0.963444,0.961045,2.035230,-0.514778,0.003962 +1.987220,-0.963760,0.961052,2.035160,-0.514854,0.003973 +1.988000,-0.964128,0.961092,2.035040,-0.514931,0.003984 +1.988720,-0.964551,0.961168,2.034880,-0.515007,0.003995 +1.989390,-0.965031,0.961283,2.034670,-0.515083,0.004007 +1.990010,-0.965565,0.961439,2.034410,-0.515159,0.004018 +1.990580,-0.966151,0.961639,2.034090,-0.515235,0.004029 +1.991100,-0.966787,0.961885,2.033720,-0.515311,0.004041 +1.991580,-0.967470,0.962181,2.033300,-0.515388,0.004052 +1.992010,-0.968197,0.962528,2.032800,-0.515464,0.004063 +1.992410,-0.968965,0.962929,2.032250,-0.515537,0.004074 +1.992770,-0.969772,0.963388,2.031630,-0.515606,0.004086 +1.993090,-0.970616,0.963905,2.030960,-0.515665,0.004097 +1.993390,-0.971494,0.964485,2.030240,-0.515714,0.004108 +1.993650,-0.972403,0.965129,2.029470,-0.515747,0.004119 +1.993890,-0.973341,0.965838,2.028640,-0.515763,0.004131 +1.994110,-0.974304,0.966609,2.027780,-0.515758,0.004142 +1.994310,-0.975292,0.967440,2.026870,-0.515728,0.004153 +1.994480,-0.976300,0.968328,2.025930,-0.515672,0.004165 +1.994640,-0.977326,0.969270,2.024950,-0.515585,0.004176 +1.994790,-0.978368,0.970264,2.023940,-0.515465,0.004187 +1.994930,-0.979423,0.971308,2.022900,-0.515309,0.004198 +1.995060,-0.980488,0.972398,2.021830,-0.515113,0.004210 +1.995190,-0.981562,0.973532,2.020750,-0.514874,0.004219 +1.995310,-0.982640,0.974707,2.019640,-0.514589,0.004224 +1.995430,-0.983722,0.975922,2.018520,-0.514256,0.004221 +1.995550,-0.984803,0.977173,2.017380,-0.513870,0.004208 +1.995680,-0.985882,0.978457,2.016240,-0.513429,0.004180 +1.995820,-0.986956,0.979773,2.015090,-0.512931,0.004135 +1.995970,-0.988022,0.981117,2.013930,-0.512370,0.004071 +1.996130,-0.989078,0.982486,2.012780,-0.511745,0.003982 +1.996300,-0.990121,0.983880,2.011620,-0.511055,0.003868 +1.996500,-0.991148,0.985294,2.010480,-0.510302,0.003724 +1.996710,-0.992158,0.986726,2.009340,-0.509489,0.003547 +1.996950,-0.993146,0.988173,2.008210,-0.508620,0.003334 +1.997210,-0.994112,0.989634,2.007100,-0.507697,0.003083 +1.997510,-0.995051,0.991104,2.006010,-0.506724,0.002790 +1.997830,-0.995963,0.992583,2.004930,-0.505703,0.002451 +1.998190,-0.996843,0.994066,2.003890,-0.504638,0.002065 +1.998580,-0.997689,0.995552,2.002860,-0.503532,0.001627 +1.999010,-0.998499,0.997039,2.001880,-0.502389,0.001135 +1.999480,-0.999270,0.998522,2.000920,-0.501210,0.000592 +2.000000,-1.000000,1.000000,2.000000,-0.500000,0.000000 +2.001173,-1.001328,1.002933,1.998280,-0.497493,-0.001322 +2.002528,-1.002474,1.005822,1.996729,-0.494882,-0.002820 +2.004058,-1.003432,1.008653,1.995351,-0.492180,-0.004489 +2.005756,-1.004199,1.011414,1.994155,-0.489399,-0.006319 +2.007616,-1.004770,1.014092,1.993144,-0.486550,-0.008304 +2.009627,-1.005143,1.016675,1.992325,-0.483648,-0.010434 +2.011782,-1.005317,1.019152,1.991700,-0.480704,-0.012700 +2.014071,-1.005291,1.021511,1.991271,-0.477733,-0.015091 +2.016483,-1.005064,1.023742,1.991043,-0.474747,-0.017597 +2.019008,-1.004639,1.025834,1.991014,-0.471761,-0.020206 +2.021633,-1.004016,1.027780,1.991185,-0.468786,-0.022907 +2.024349,-1.003199,1.029568,1.991556,-0.465838,-0.025687 +2.027141,-1.002190,1.031193,1.992125,-0.462929,-0.028535 +2.029998,-1.000996,1.032645,1.992889,-0.460071,-0.031436 +2.032907,-0.999621,1.033920,1.993845,-0.457279,-0.034379 +2.035855,-0.998071,1.035010,1.994989,-0.454564,-0.037350 +2.038828,-0.996354,1.035911,1.996315,-0.451939,-0.040336 +2.041813,-0.994476,1.036620,1.997817,-0.449416,-0.043323 +2.044797,-0.992447,1.037133,1.999490,-0.447005,-0.046297 +2.047766,-0.990276,1.037447,2.001324,-0.444718,-0.049246 +2.050707,-0.987971,1.037561,2.003312,-0.442565,-0.052156 +2.053606,-0.985545,1.037475,2.005445,-0.440556,-0.055014 +2.056452,-0.983007,1.037189,2.007714,-0.438700,-0.057808 +2.059230,-0.980369,1.036704,2.010108,-0.437004,-0.060523 +2.061929,-0.977643,1.036023,2.012616,-0.435478,-0.063150 +2.064535,-0.974842,1.035148,2.015228,-0.434126,-0.065675 +2.067039,-0.971977,1.034084,2.017931,-0.432957,-0.068087 +2.069427,-0.969061,1.032835,2.020713,-0.431974,-0.070376 +2.071690,-0.966109,1.031407,2.023562,-0.431183,-0.072531 +2.073818,-0.963132,1.029807,2.026464,-0.430586,-0.074542 +2.075800,-0.960144,1.028041,2.029408,-0.430187,-0.076401 +2.077628,-0.957160,1.026117,2.032380,-0.429988,-0.078098 +2.079294,-0.954192,1.024044,2.035365,-0.429988,-0.079627 +2.080790,-0.951253,1.021832,2.038352,-0.430189,-0.080981 +2.082109,-0.948357,1.019491,2.041326,-0.430589,-0.082153 +2.083246,-0.945517,1.017030,2.044274,-0.431187,-0.083139 +2.084195,-0.942745,1.014461,2.047183,-0.431979,-0.083933 +2.084953,-0.940055,1.011796,2.050040,-0.432963,-0.084532 +2.085515,-0.937458,1.009046,2.052832,-0.434134,-0.084934 +2.085879,-0.934965,1.006224,2.055546,-0.435486,-0.085136 +2.086044,-0.932588,1.003342,2.058170,-0.437014,-0.085138 +2.086008,-0.930339,1.000415,2.060692,-0.438710,-0.084940 +2.085773,-0.928226,0.997453,2.063102,-0.440568,-0.084543 +2.085339,-0.926259,0.994472,2.065388,-0.442578,-0.083948 +2.084707,-0.924447,0.991484,2.067539,-0.444732,-0.083158 +2.083882,-0.922799,0.988503,2.069547,-0.447019,-0.082177 +2.082866,-0.921322,0.985542,2.071402,-0.449431,-0.081009 +2.081664,-0.920022,0.982615,2.073096,-0.451955,-0.079659 +2.080282,-0.918905,0.979734,2.074621,-0.454580,-0.078134 +2.078725,-0.917976,0.976913,2.075971,-0.457296,-0.076440 +2.077001,-0.917240,0.974165,2.077139,-0.460088,-0.074585 +2.075117,-0.916699,0.971501,2.078120,-0.462946,-0.072577 +2.073083,-0.916356,0.968933,2.078909,-0.465856,-0.070425 +2.070906,-0.916214,0.966474,2.079504,-0.468804,-0.068139 +2.068598,-0.916271,0.964134,2.079901,-0.471779,-0.065730 +2.066168,-0.916529,0.961924,2.080099,-0.474765,-0.063207 +2.063626,-0.916985,0.959854,2.080097,-0.477751,-0.060583 +2.060986,-0.917639,0.957933,2.079894,-0.480722,-0.057869 +2.058258,-0.918486,0.956169,2.079492,-0.483665,-0.055077 +2.055455,-0.919523,0.954571,2.078893,-0.486567,-0.052220 +2.052589,-0.920746,0.953146,2.078098,-0.489415,-0.049311 +2.049673,-0.922149,0.951899,2.077113,-0.492196,-0.046363 +2.046720,-0.923725,0.950838,2.075941,-0.494898,-0.043389 +2.043745,-0.925468,0.949966,2.074587,-0.497508,-0.040402 +2.040759,-0.927370,0.949288,2.073057,-0.500015,-0.037416 +2.037776,-0.929422,0.948806,2.071360,-0.502407,-0.034445 +2.034811,-0.931614,0.948523,2.069501,-0.504673,-0.031501 +2.031875,-0.933938,0.948440,2.067489,-0.506805,-0.028598 +2.028983,-0.936383,0.948557,2.065334,-0.508791,-0.025750 +2.026147,-0.938937,0.948875,2.063045,-0.510623,-0.022967 +2.023381,-0.941589,0.949390,2.060633,-0.512292,-0.020265 +2.020696,-0.944328,0.950102,2.058108,-0.513792,-0.017653 +2.018104,-0.947140,0.951006,2.055482,-0.515115,-0.015145 +2.015618,-0.950014,0.952099,2.052766,-0.516256,-0.012751 +2.013248,-0.952936,0.953376,2.049972,-0.517209,-0.010483 +2.011006,-0.955893,0.954831,2.047114,-0.517971,-0.008350 +2.008900,-0.958873,0.956458,2.044204,-0.518537,-0.006362 +2.006942,-0.961860,0.958249,2.041255,-0.518905,-0.004527 +2.005138,-0.964843,0.960197,2.038280,-0.519073,-0.002855 +2.003498,-0.967808,0.962292,2.035294,-0.519041,-0.001353 +2.002029,-0.970741,0.964525,2.032308,-0.518809,-0.000027 +2.000738,-0.973629,0.966885,2.029337,-0.518378,0.001116 +1.999630,-0.976459,0.969364,2.026394,-0.517750,0.002072 +1.998711,-0.979219,0.971948,2.023493,-0.516928,0.002836 +1.997983,-0.981896,0.974628,2.020645,-0.515914,0.003405 +1.997452,-0.984477,0.977390,2.017865,-0.514715,0.003775 +1.997119,-0.986953,0.980222,2.015164,-0.513335,0.003947 +1.996985,-0.989310,0.983111,2.012555,-0.511781,0.003918 +1.997051,-0.991539,0.986045,2.010049,-0.510059,0.003689 +1.997318,-0.993630,0.989010,2.007658,-0.508177,0.003261 +1.997783,-0.995573,0.991994,2.005393,-0.506144,0.002635 +1.998445,-0.997360,0.994981,2.003263,-0.503969,0.001815 +1.999300,-0.998982,0.997960,2.001278,-0.501661,0.000805 +2.000345,-1.000432,1.000917,1.999448,-0.499232,-0.000392 +2.001576,-1.001704,1.003838,1.997779,-0.496691,-0.001769 +2.002986,-1.002792,1.006710,1.996281,-0.494051,-0.003321 +2.004569,-1.003691,1.009520,1.994959,-0.491323,-0.005041 +2.006318,-1.004398,1.012257,1.993820,-0.488519,-0.006921 +2.008226,-1.004907,1.014906,1.992869,-0.485652,-0.008952 +2.010283,-1.005219,1.017457,1.992109,-0.482736,-0.011125 +2.012480,-1.005331,1.019899,1.991545,-0.479782,-0.013431 +2.014809,-1.005242,1.022219,1.991179,-0.476805,-0.015859 +2.017257,-1.004953,1.024408,1.991012,-0.473818,-0.018398 +2.019814,-1.004466,1.026456,1.991046,-0.470833,-0.021037 +2.022469,-1.003782,1.028353,1.991279,-0.467866,-0.023764 +2.025210,-1.002905,1.030092,1.991712,-0.464928,-0.026566 +2.028024,-1.001839,1.031663,1.992342,-0.462033,-0.029432 +2.030898,-1.000587,1.033061,1.993166,-0.459195,-0.032348 +2.033821,-0.999157,1.034279,1.994181,-0.456426,-0.035301 +2.036778,-0.997554,1.035311,1.995382,-0.453737,-0.038278 +2.039756,-0.995786,1.036153,1.996764,-0.451143,-0.041266 +2.042742,-0.993861,1.036801,1.998320,-0.448653,-0.044250 +2.045723,-0.991786,1.037252,2.000043,-0.446280,-0.047218 +2.048684,-0.989572,1.037504,2.001926,-0.444034,-0.050156 +2.051614,-0.987229,1.037556,2.003961,-0.441924,-0.053052 +2.054498,-0.984767,1.037407,2.006137,-0.439962,-0.055891 +2.057324,-0.982197,1.037059,2.008446,-0.438155,-0.058661 +2.060079,-0.979530,1.036513,2.010877,-0.436511,-0.061351 +2.062750,-0.976779,1.035771,2.013418,-0.435038,-0.063947 +2.065326,-0.973957,1.034837,2.016059,-0.433743,-0.066438 +2.067795,-0.971074,1.033715,2.018788,-0.432631,-0.068813 +2.070145,-0.968146,1.032410,2.021592,-0.431707,-0.071061 +2.072367,-0.965184,1.030927,2.024460,-0.430976,-0.073172 +2.074450,-0.962203,1.029275,2.027377,-0.430441,-0.075137 +2.076386,-0.959215,1.027459,2.030330,-0.430104,-0.076946 +2.078164,-0.956234,1.025488,2.033308,-0.429966,-0.078592 +2.079778,-0.953274,1.023371,2.036295,-0.430029,-0.080068 +2.081219,-0.950347,1.021117,2.039279,-0.430292,-0.081366 +2.082483,-0.947467,1.018737,2.042247,-0.430754,-0.082480 +2.083562,-0.944647,1.016242,2.045184,-0.431413,-0.083406 +2.084452,-0.941899,1.013642,2.048078,-0.432265,-0.084140 +2.085148,-0.939236,1.010949,2.050916,-0.433308,-0.084678 +2.085649,-0.936670,1.008175,2.053685,-0.434535,-0.085018 +2.085952,-0.934213,1.005333,2.056372,-0.435943,-0.085158 +2.086054,-0.931874,1.002436,2.058966,-0.437524,-0.085098 +2.085957,-0.929666,0.999496,2.061455,-0.439271,-0.084838 +2.085659,-0.927598,0.996527,2.063827,-0.441177,-0.084379 +2.085163,-0.925678,0.993543,2.066072,-0.443233,-0.083723 +2.084471,-0.923917,0.990555,2.068180,-0.445429,-0.082873 +2.083586,-0.922321,0.987579,2.070141,-0.447757,-0.081834 +2.082512,-0.920898,0.984627,2.071947,-0.450204,-0.080608 +2.081253,-0.919654,0.981713,2.073589,-0.452761,-0.079203 +2.079816,-0.918595,0.978850,2.075060,-0.455416,-0.077625 +2.078206,-0.917726,0.976050,2.076354,-0.458157,-0.075880 +2.076432,-0.917050,0.973326,2.077464,-0.460971,-0.073976 +2.074500,-0.916571,0.970691,2.078386,-0.463846,-0.071922 +2.072421,-0.916291,0.968156,2.079115,-0.466769,-0.069728 +2.070202,-0.916210,0.965733,2.079649,-0.469727,-0.067402 +2.067854,-0.916330,0.963432,2.079984,-0.472707,-0.064956 +2.065388,-0.916650,0.961265,2.080120,-0.475695,-0.062401 +2.062815,-0.917168,0.959240,2.080055,-0.478677,-0.059747 +2.060146,-0.917882,0.957367,2.079790,-0.481641,-0.057008 +2.057393,-0.918788,0.955654,2.079327,-0.484573,-0.054194 +2.054569,-0.919884,0.954109,2.078666,-0.487460,-0.051320 +2.051686,-0.921163,0.952738,2.077812,-0.490288,-0.048397 +2.048758,-0.922621,0.951549,2.076768,-0.493046,-0.045440 +2.045796,-0.924250,0.950546,2.075539,-0.495720,-0.042460 +2.042816,-0.926043,0.949735,2.074129,-0.498300,-0.039472 +2.039830,-0.927993,0.949117,2.072547,-0.500772,-0.036490 +2.036851,-0.930089,0.948697,2.070798,-0.503126,-0.033526 +2.033894,-0.932324,0.948476,2.068891,-0.505351,-0.030593 +2.030970,-0.934686,0.948455,2.066834,-0.507438,-0.027706 +2.028094,-0.937166,0.948635,2.064636,-0.509377,-0.024876 +2.025279,-0.939752,0.949014,2.062308,-0.511160,-0.022118 +2.022536,-0.942433,0.949590,2.059859,-0.512777,-0.019442 +2.019879,-0.945195,0.950362,2.057301,-0.514223,-0.016861 +2.017319,-0.948028,0.951326,2.054646,-0.515490,-0.014388 +2.014868,-0.950918,0.952477,2.051904,-0.516573,-0.012032 +2.012537,-0.953853,0.953810,2.049089,-0.517467,-0.009804 +2.010336,-0.956818,0.955319,2.046214,-0.518168,-0.007715 +2.008275,-0.959802,0.956998,2.043290,-0.518672,-0.005774 +2.006363,-0.962789,0.958839,2.040332,-0.518978,-0.003990 +2.004610,-0.965768,0.960833,2.037352,-0.519085,-0.002370 +2.003023,-0.968724,0.962972,2.034364,-0.518991,-0.000921 +2.001608,-0.971645,0.965246,2.031382,-0.518697,0.000348 +2.000374,-0.974516,0.967644,2.028418,-0.518204,0.001434 +1.999324,-0.977326,0.970157,2.025487,-0.517515,0.002330 +1.998463,-0.980061,0.972772,2.022600,-0.516633,0.003034 +1.997797,-0.982710,0.975479,2.019772,-0.515561,0.003541 +1.997327,-0.985259,0.978264,2.017015,-0.514305,0.003850 +1.997055,-0.987699,0.981115,2.014342,-0.512870,0.003959 +1.996984,-0.990018,0.984020,2.011764,-0.511263,0.003868 +1.997113,-0.992205,0.986965,2.009292,-0.509490,0.003577 +1.997441,-0.994251,0.989937,2.006939,-0.507560,0.003087 +1.997968,-0.996146,0.992923,2.004715,-0.505482,0.002401 +1.998690,-0.997883,0.995910,2.002629,-0.503265,0.001521 +1.999605,-0.999452,0.998883,2.000692,-0.500918,0.000452 +2.000708,-1.000848,1.001830,1.998911,-0.498453,-0.000801 +2.001995,-1.002063,1.004737,1.997295,-0.495880,-0.002234 +2.003460,-1.003093,1.007591,1.995851,-0.493211,-0.003839 +2.005095,-1.003932,1.010380,1.994585,-0.490458,-0.005609 +2.006895,-1.004577,1.013091,1.993504,-0.487633,-0.007537 +2.008850,-1.005026,1.015711,1.992612,-0.484750,-0.009613 +2.010952,-1.005275,1.018229,1.991913,-0.481820,-0.011829 +2.013191,-1.005324,1.020634,1.991410,-0.478858,-0.014173 +2.015558,-1.005174,1.022915,1.991106,-0.475876,-0.016637 +2.018041,-1.004823,1.025061,1.991001,-0.472888,-0.019209 +2.020630,-1.004274,1.027063,1.991097,-0.469908,-0.021876 +2.023313,-1.003530,1.028911,1.991393,-0.466948,-0.024628 +2.026078,-1.002593,1.030599,1.991887,-0.464022,-0.027452 +2.028912,-1.001469,1.032117,1.992578,-0.461144,-0.030335 +2.031803,-1.000161,1.033459,1.993462,-0.458325,-0.033264 +2.034737,-0.998677,1.034620,1.994535,-0.455580,-0.036226 +2.037702,-0.997022,1.035593,1.995793,-0.452920,-0.039207 +2.040685,-0.995204,1.036375,1.997230,-0.450356,-0.042195 +2.043671,-0.993231,1.036962,1.998838,-0.447902,-0.045176 +2.046647,-0.991112,1.037351,2.000612,-0.445567,-0.048136 +2.049600,-0.988857,1.037541,2.002543,-0.443362,-0.051062 +2.052517,-0.986475,1.037531,2.004623,-0.441298,-0.053941 +2.055384,-0.983978,1.037320,2.006842,-0.439383,-0.056761 +2.058189,-0.981377,1.036910,2.009190,-0.437625,-0.059507 +2.060919,-0.978683,1.036303,2.011656,-0.436034,-0.062169 +2.063562,-0.975908,1.035501,2.014230,-0.434616,-0.064734 +2.066106,-0.973066,1.034508,2.016899,-0.433377,-0.067190 +2.068539,-0.970168,1.033328,2.019653,-0.432323,-0.069526 +2.070851,-0.967228,1.031967,2.022478,-0.431459,-0.071733 +2.073031,-0.964258,1.030431,2.025362,-0.430789,-0.073800 +2.075069,-0.961273,1.028727,2.028292,-0.430315,-0.075717 +2.076956,-0.958286,1.026862,2.031255,-0.430040,-0.077476 +2.078684,-0.955310,1.024844,2.034237,-0.429965,-0.079070 +2.080245,-0.952359,1.022684,2.037224,-0.430090,-0.080491 +2.081632,-0.949445,1.020390,2.040205,-0.430415,-0.081732 +2.082838,-0.946583,1.017973,2.043164,-0.430938,-0.082789 +2.083859,-0.943784,1.015443,2.046090,-0.431657,-0.083655 +2.084689,-0.941061,1.012813,2.048968,-0.432569,-0.084329 +2.085325,-0.938427,1.010094,2.051785,-0.433670,-0.084805 +2.085765,-0.935894,1.007298,2.054530,-0.434954,-0.085083 +2.086005,-0.933472,1.004437,2.057190,-0.436417,-0.085161 +2.086045,-0.931173,1.001525,2.059752,-0.438050,-0.085039 +2.085885,-0.929007,0.998575,2.062206,-0.439848,-0.084716 +2.085526,-0.926984,0.995600,2.064539,-0.441801,-0.084196 +2.084969,-0.925113,0.992613,2.066743,-0.443902,-0.083479 +2.084216,-0.923402,0.989628,2.068806,-0.446140,-0.082570 +2.083272,-0.921859,0.986658,2.070720,-0.448506,-0.081472 +2.082139,-0.920491,0.983716,2.072476,-0.450989,-0.080190 +2.080825,-0.919305,0.980816,2.074065,-0.453577,-0.078731 +2.079333,-0.918304,0.977971,2.075482,-0.456260,-0.077099 +2.077671,-0.917495,0.975194,2.076719,-0.459025,-0.075304 +2.075847,-0.916880,0.972496,2.077771,-0.461859,-0.073353 +2.073869,-0.916462,0.969891,2.078634,-0.464751,-0.071254 +2.071745,-0.916244,0.967390,2.079302,-0.467686,-0.069018 +2.069485,-0.916226,0.965004,2.079775,-0.470653,-0.066654 +2.067099,-0.916408,0.962743,2.080048,-0.473636,-0.064172 +2.064599,-0.916790,0.960619,2.080121,-0.476624,-0.061585 +2.061994,-0.917369,0.958640,2.079994,-0.479602,-0.058904 +2.059298,-0.918143,0.956816,2.079667,-0.482557,-0.056140 +2.056522,-0.919109,0.955155,2.079142,-0.485477,-0.053306 +2.053678,-0.920263,0.953663,2.078421,-0.488347,-0.050415 +2.050779,-0.921598,0.952349,2.077507,-0.491154,-0.047480 +2.047839,-0.923110,0.951217,2.076405,-0.493888,-0.044514 +2.044871,-0.924791,0.950273,2.075119,-0.496534,-0.041531 +2.041887,-0.926633,0.949521,2.073655,-0.499081,-0.038543 +2.038902,-0.928629,0.948965,2.072020,-0.501517,-0.035565 +2.035928,-0.930770,0.948607,2.070221,-0.503833,-0.032609 +2.032980,-0.933046,0.948448,2.068267,-0.506016,-0.029689 +2.030070,-0.935446,0.948490,2.066165,-0.508058,-0.026819 +2.027211,-0.937960,0.948731,2.063925,-0.509949,-0.024010 +2.024417,-0.940576,0.949172,2.061558,-0.511681,-0.021276 +2.021700,-0.943284,0.949810,2.059075,-0.513246,-0.018628 +2.019072,-0.946070,0.950642,2.056485,-0.514637,-0.016080 +2.016544,-0.948922,0.951664,2.053801,-0.515847,-0.013642 +2.014129,-0.951827,0.952872,2.051036,-0.516872,-0.011324 +2.011837,-0.954773,0.954261,2.048201,-0.517706,-0.009139 +2.009679,-0.957745,0.955824,2.045309,-0.518346,-0.007095 +2.007664,-0.960731,0.957554,2.042373,-0.518789,-0.005202 +2.005801,-0.963718,0.959443,2.039406,-0.519033,-0.003468 +2.004098,-0.966691,0.961483,2.036423,-0.519077,-0.001900 +2.002564,-0.969637,0.963665,2.033435,-0.518921,-0.000507 +2.001205,-0.972544,0.965979,2.030457,-0.518565,0.000706 +2.000027,-0.975397,0.968414,2.027502,-0.518011,0.001733 +1.999036,-0.978185,0.970960,2.024583,-0.517261,0.002570 +1.998235,-0.980895,0.973605,2.021714,-0.516319,0.003213 +1.997629,-0.983514,0.976337,2.018906,-0.515190,0.003659 +1.997221,-0.986031,0.979144,2.016174,-0.513877,0.003906 +1.997012,-0.988434,0.982014,2.013529,-0.512388,0.003952 +1.997003,-0.990713,0.984932,2.010983,-0.510729,0.003799 +1.997194,-0.992857,0.987887,2.008547,-0.508906,0.003446 +1.997584,-0.994857,0.990865,2.006233,-0.506929,0.002894 +1.998172,-0.996704,0.993853,2.004051,-0.504807,0.002148 +1.998954,-0.998389,0.996837,2.002010,-0.502548,0.001209 +1.999928,-0.999905,0.999803,2.000120,-0.500163,0.000082 +2.001089,-1.001245,1.002739,1.998390,-0.497663,-0.001228 +2.002432,-1.002403,1.005631,1.996827,-0.495059,-0.002715 +2.003951,-1.003374,1.008467,1.995438,-0.492363,-0.004372 +2.005638,-1.004154,1.011232,1.994229,-0.489586,-0.006192 +2.007487,-1.004738,1.013916,1.993206,-0.486742,-0.008167 +2.009489,-1.005125,1.016506,1.992373,-0.483843,-0.010288 +2.011634,-1.005312,1.018990,1.991735,-0.480902,-0.012545 +2.013914,-1.005299,1.021357,1.991294,-0.477932,-0.014928 +2.016319,-1.005086,1.023597,1.991052,-0.474947,-0.017426 +2.018836,-1.004673,1.025699,1.991009,-0.471960,-0.020029 +2.021455,-1.004064,1.027655,1.991168,-0.468984,-0.022724 +2.024165,-1.003259,1.029454,1.991525,-0.466033,-0.025500 +2.026953,-1.002264,1.031090,1.992081,-0.463121,-0.028343 +2.029806,-1.001081,1.032554,1.992832,-0.460260,-0.031242 +2.032712,-0.999718,1.033840,1.993776,-0.457463,-0.034182 +2.035657,-0.998180,1.034943,1.994907,-0.454743,-0.037152 +2.038629,-0.996473,1.035857,1.996221,-0.452111,-0.040137 +2.041614,-0.994606,1.036579,1.997712,-0.449581,-0.043124 +2.044598,-0.992587,1.037105,1.999373,-0.447162,-0.046100 +2.047569,-0.990425,1.037432,2.001197,-0.444867,-0.049051 +2.050512,-0.988129,1.037559,2.003175,-0.442705,-0.051964 +2.053415,-0.985710,1.037487,2.005299,-0.440685,-0.054826 +2.056264,-0.983180,1.037214,2.007559,-0.438819,-0.057624 +2.059047,-0.980548,1.036742,2.009945,-0.437112,-0.060345 +2.061751,-0.977828,1.036074,2.012446,-0.435574,-0.062978 +2.064365,-0.975031,1.035212,2.015051,-0.434211,-0.065510 +2.066875,-0.972169,1.034161,2.017748,-0.433029,-0.067930 +2.069272,-0.969257,1.032924,2.020525,-0.432034,-0.070227 +2.071544,-0.966306,1.031508,2.023370,-0.431230,-0.072391 +2.073680,-0.963331,1.029919,2.026269,-0.430620,-0.074412 +2.075673,-0.960344,1.028163,2.029211,-0.430208,-0.076282 +2.077511,-0.957359,1.026250,2.032181,-0.429995,-0.077990 +2.079188,-0.954389,1.024187,2.035166,-0.429982,-0.079531 +2.080695,-0.951448,1.021984,2.038153,-0.430170,-0.080896 +2.082027,-0.948549,1.019651,2.041128,-0.430556,-0.082081 +2.083176,-0.945704,1.017197,2.044079,-0.431141,-0.083079 +2.084138,-0.942928,1.014635,2.046991,-0.431921,-0.083886 +2.084908,-0.940232,1.011976,2.049851,-0.432892,-0.084498 +2.085483,-0.937628,1.009232,2.052648,-0.434050,-0.084913 +2.085861,-0.935128,1.006414,2.055367,-0.435390,-0.085129 +2.086039,-0.932743,1.003536,2.057998,-0.436907,-0.085145 +2.086017,-0.930485,1.000611,2.060528,-0.438592,-0.084960 +2.085795,-0.928362,0.997651,2.062945,-0.440439,-0.084576 +2.085374,-0.926385,0.994671,2.065239,-0.442439,-0.083994 +2.084756,-0.924563,0.991683,2.067400,-0.444584,-0.083217 +2.083943,-0.922904,0.988701,2.069418,-0.446863,-0.082248 +2.082939,-0.921415,0.985739,2.071283,-0.449266,-0.081093 +2.081750,-0.920103,0.982809,2.072988,-0.451783,-0.079755 +2.080379,-0.918973,0.979925,2.074525,-0.454402,-0.078241 +2.078834,-0.918032,0.977099,2.075886,-0.457112,-0.076558 +2.077121,-0.917283,0.974345,2.077067,-0.459900,-0.074713 +2.075248,-0.916729,0.971675,2.078060,-0.462754,-0.072715 +2.073223,-0.916373,0.969101,2.078863,-0.465660,-0.070573 +2.071056,-0.916217,0.966635,2.079471,-0.468607,-0.068296 +2.068756,-0.916261,0.964286,2.079881,-0.471580,-0.065894 +2.066333,-0.916505,0.962067,2.080092,-0.474566,-0.063378 +2.063799,-0.916949,0.959987,2.080103,-0.477552,-0.060761 +2.061165,-0.917589,0.958056,2.079914,-0.480525,-0.058052 +2.058442,-0.918423,0.956281,2.079525,-0.483470,-0.055265 +2.055644,-0.919448,0.954672,2.078939,-0.486375,-0.052412 +2.052781,-0.920659,0.953235,2.078157,-0.489227,-0.049506 +2.049868,-0.922050,0.951977,2.077184,-0.492013,-0.046560 +2.046918,-0.923615,0.950903,2.076024,-0.494721,-0.043588 +2.043943,-0.925347,0.950019,2.074682,-0.497337,-0.040601 +2.040958,-0.927238,0.949327,2.073165,-0.499851,-0.037615 +2.037975,-0.929280,0.948832,2.071478,-0.502251,-0.034642 +2.035008,-0.931464,0.948536,2.069629,-0.504526,-0.031696 +2.032070,-0.933779,0.948440,2.067628,-0.506667,-0.028790 +2.029174,-0.936216,0.948543,2.065482,-0.508663,-0.025938 +2.026335,-0.938763,0.948847,2.063202,-0.510505,-0.023151 +2.023563,-0.941410,0.949349,2.060798,-0.512186,-0.020442 +2.020872,-0.944143,0.950048,2.058280,-0.513697,-0.017824 +2.018274,-0.946951,0.950940,2.055660,-0.515033,-0.015309 +2.015780,-0.949821,0.952020,2.052949,-0.516186,-0.012907 +2.013403,-0.952740,0.953285,2.050161,-0.517152,-0.010630 +2.011151,-0.955695,0.954729,2.047306,-0.517926,-0.008488 +2.009036,-0.958674,0.956345,2.044399,-0.518505,-0.006489 +2.007067,-0.961661,0.958125,2.041453,-0.518886,-0.004645 +2.005253,-0.964645,0.960062,2.038479,-0.519068,-0.002962 +2.003602,-0.967611,0.962148,2.035493,-0.519050,-0.001448 +2.002122,-0.970546,0.964372,2.032507,-0.518831,-0.000110 +2.000819,-0.973438,0.966724,2.029535,-0.518413,0.001046 +1.999698,-0.976272,0.969195,2.026589,-0.517798,0.002014 +1.998766,-0.979037,0.971773,2.023684,-0.516988,0.002791 +1.998026,-0.981720,0.974446,2.020833,-0.515988,0.003373 +1.997481,-0.984308,0.977203,2.018048,-0.514801,0.003757 +1.997135,-0.986791,0.980031,2.015341,-0.513433,0.003942 +1.996987,-0.989157,0.982917,2.012726,-0.511890,0.003926 +1.997041,-0.991395,0.985848,2.010213,-0.510179,0.003710 +1.997294,-0.993495,0.988812,2.007814,-0.508307,0.003295 +1.997746,-0.995448,0.991794,2.005540,-0.506284,0.002683 +1.998394,-0.997246,0.994782,2.003400,-0.504118,0.001876 +1.999237,-0.998879,0.997762,2.001406,-0.501819,0.000878 +2.000270,-1.000341,1.000720,1.999565,-0.499397,-0.000306 +2.001488,-1.001625,1.003644,1.997885,-0.496864,-0.001672 +2.002886,-1.002726,1.006520,1.996376,-0.494230,-0.003213 +2.004458,-1.003637,1.009335,1.995042,-0.491507,-0.004921 +2.006196,-1.004357,1.012077,1.993890,-0.488708,-0.006791 +2.008094,-1.004880,1.014733,1.992926,-0.485845,-0.008812 +2.010141,-1.005204,1.017291,1.992154,-0.482932,-0.010976 +2.012330,-1.005329,1.019740,1.991577,-0.479980,-0.013273 +2.014650,-1.005254,1.022068,1.991197,-0.477004,-0.015693 +2.017090,-1.004979,1.024266,1.991017,-0.474017,-0.018225 +2.019641,-1.004505,1.026324,1.991037,-0.471032,-0.020858 +2.022289,-1.003834,1.028232,1.991258,-0.468063,-0.023579 +2.025025,-1.002970,1.029981,1.991677,-0.465123,-0.026377 +2.027834,-1.001916,1.031564,1.992294,-0.462225,-0.029239 +2.030705,-1.000677,1.032973,1.993106,-0.459382,-0.032153 +2.033625,-0.999258,1.034203,1.994108,-0.456608,-0.035104 +2.036580,-0.997667,1.035248,1.995296,-0.453914,-0.038079 +2.039557,-0.995909,1.036103,1.996666,-0.451313,-0.041066 +2.042543,-0.993994,1.036764,1.998211,-0.448816,-0.044051 +2.045524,-0.991929,1.037228,1.999923,-0.446434,-0.047021 +2.048488,-0.989724,1.037493,2.001796,-0.444179,-0.049962 +2.051420,-0.987389,1.037558,2.003821,-0.442061,-0.052860 +2.054308,-0.984935,1.037423,2.005988,-0.440088,-0.055703 +2.057138,-0.982371,1.037089,2.008288,-0.438270,-0.058479 +2.059897,-0.979711,1.036556,2.010711,-0.436615,-0.061174 +2.062575,-0.976965,1.035827,2.013245,-0.435131,-0.063777 +2.065157,-0.974147,1.034905,2.015880,-0.433824,-0.066275 +2.067634,-0.971268,1.033796,2.018604,-0.432699,-0.068658 +2.069992,-0.968342,1.032502,2.021403,-0.431763,-0.070915 +2.072223,-0.965383,1.031032,2.024267,-0.431019,-0.073036 +2.074316,-0.962402,1.029390,2.027181,-0.430470,-0.075011 +2.076261,-0.959414,1.027585,2.030132,-0.430120,-0.076831 +2.078051,-0.956432,1.025624,2.033109,-0.429969,-0.078488 +2.079675,-0.953470,1.023516,2.036096,-0.430019,-0.079975 +2.081129,-0.950541,1.021272,2.039081,-0.430269,-0.081285 +2.082404,-0.947657,1.018900,2.042050,-0.430717,-0.082412 +2.083495,-0.944833,1.016411,2.044989,-0.431363,-0.083351 +2.084398,-0.942080,1.013818,2.047887,-0.432202,-0.084097 +2.085108,-0.939411,1.011131,2.050729,-0.433232,-0.084649 +2.085622,-0.936838,1.008362,2.053503,-0.434448,-0.085002 +2.085938,-0.934373,1.005525,2.056196,-0.435844,-0.085155 +2.086054,-0.932026,1.002631,2.058796,-0.437413,-0.085108 +2.085969,-0.929809,0.999693,2.061292,-0.439150,-0.084862 +2.085685,-0.927731,0.996726,2.063672,-0.441045,-0.084416 +2.085202,-0.925802,0.993742,2.065926,-0.443091,-0.083773 +2.084523,-0.924029,0.990754,2.068044,-0.445279,-0.082936 +2.083651,-0.922422,0.987777,2.070015,-0.447598,-0.081909 +2.082589,-0.920987,0.984823,2.071831,-0.450038,-0.080696 +2.081342,-0.919731,0.981906,2.073485,-0.452588,-0.079303 +2.079917,-0.918660,0.979039,2.074968,-0.455236,-0.077735 +2.078319,-0.917778,0.976234,2.076273,-0.457971,-0.076001 +2.076555,-0.917089,0.973505,2.077396,-0.460781,-0.074108 +2.074634,-0.916597,0.970864,2.078331,-0.463653,-0.072064 +2.072564,-0.916303,0.968322,2.079073,-0.466573,-0.069878 +2.070354,-0.916209,0.965891,2.079619,-0.469529,-0.067561 +2.068015,-0.916316,0.963582,2.079968,-0.472508,-0.065123 +2.065556,-0.916622,0.961405,2.080117,-0.475496,-0.062574 +2.062990,-0.917127,0.959370,2.080066,-0.478479,-0.059927 +2.060327,-0.917828,0.957487,2.079814,-0.481445,-0.057193 +2.057579,-0.918722,0.955763,2.079364,-0.484379,-0.054384 +2.054759,-0.919805,0.954206,2.078716,-0.487269,-0.051513 +2.051880,-0.921073,0.952824,2.077875,-0.490102,-0.048593 +2.048954,-0.922518,0.951623,2.076843,-0.492865,-0.045638 +2.045995,-0.924136,0.950607,2.075626,-0.495545,-0.042659 +2.043015,-0.925919,0.949783,2.074229,-0.498131,-0.039672 +2.040029,-0.927858,0.949152,2.072658,-0.500610,-0.036688 +2.037049,-0.929945,0.948719,2.070920,-0.502973,-0.033722 +2.034090,-0.932171,0.948485,2.069023,-0.505207,-0.030787 +2.031164,-0.934525,0.948450,2.066975,-0.507304,-0.027897 +2.028284,-0.936997,0.948617,2.064787,-0.509253,-0.025063 +2.025464,-0.939577,0.948982,2.062467,-0.511046,-0.022299 +2.022717,-0.942251,0.949546,2.060026,-0.512675,-0.019617 +2.020053,-0.945009,0.950305,2.057475,-0.514132,-0.017030 +2.017486,-0.947837,0.951256,2.054825,-0.515411,-0.014549 +2.015028,-0.950724,0.952394,2.052089,-0.516507,-0.012185 +2.012688,-0.953656,0.953716,2.049279,-0.517413,-0.009949 +2.010478,-0.956620,0.955213,2.046407,-0.518127,-0.007850 +2.008408,-0.959603,0.956881,2.043486,-0.518645,-0.005899 +2.006486,-0.962590,0.958711,2.040530,-0.518964,-0.004103 +2.004722,-0.965570,0.960696,2.037551,-0.519084,-0.002472 +2.003123,-0.968528,0.962825,2.034563,-0.519003,-0.001013 +2.001697,-0.971451,0.965090,2.031580,-0.518722,0.000269 +2.000450,-0.974326,0.967481,2.028615,-0.518243,0.001367 +1.999388,-0.977141,0.969986,2.025681,-0.517567,0.002277 +1.998515,-0.979881,0.972595,2.022791,-0.516697,0.002993 +1.997835,-0.982536,0.975296,2.019959,-0.515638,0.003514 +1.997352,-0.985093,0.978076,2.017197,-0.514394,0.003836 +1.997067,-0.987540,0.980923,2.014517,-0.512971,0.003958 +1.996983,-0.989867,0.983825,2.011932,-0.511375,0.003880 +1.997098,-0.992064,0.986768,2.009454,-0.509613,0.003602 +1.997413,-0.994119,0.989738,2.007092,-0.507694,0.003126 +1.997927,-0.996025,0.992724,2.004859,-0.505625,0.002453 +1.998636,-0.997772,0.995711,2.002764,-0.503417,0.001586 +1.999538,-0.999353,0.998685,2.000816,-0.501078,0.000529 +2.000629,-1.000760,1.001634,1.999024,-0.498621,-0.000712 +2.001904,-1.001988,1.004545,1.997397,-0.496054,-0.002133 +2.003357,-1.003030,1.007403,1.995941,-0.493391,-0.003727 +2.004981,-1.003882,1.010196,1.994664,-0.490644,-0.005486 +2.006770,-1.004540,1.012913,1.993570,-0.487824,-0.007403 +2.008715,-1.005002,1.015539,1.992665,-0.484944,-0.009470 +2.010807,-1.005265,1.018065,1.991953,-0.482017,-0.011677 +2.013038,-1.005327,1.020478,1.991437,-0.479056,-0.014013 +2.015396,-1.005190,1.022767,1.991120,-0.476075,-0.016469 +2.017872,-1.004852,1.024922,1.991002,-0.473087,-0.019034 +2.020455,-1.004317,1.026934,1.991084,-0.470106,-0.021696 +2.023132,-1.003586,1.028793,1.991367,-0.467144,-0.024442 +2.025891,-1.002662,1.030491,1.991848,-0.464216,-0.027262 +2.028721,-1.001550,1.032021,1.992526,-0.461334,-0.030141 +2.031609,-1.000254,1.033376,1.993397,-0.458511,-0.033067 +2.034541,-0.998781,1.034548,1.994458,-0.455760,-0.036027 +2.037504,-0.997137,1.035534,1.995703,-0.453094,-0.039008 +2.040486,-0.995330,1.036329,1.997128,-0.450524,-0.041996 +2.043472,-0.993367,1.036929,1.998726,-0.448062,-0.044978 +2.046449,-0.991258,1.037332,2.000489,-0.445719,-0.047939 +2.049404,-0.989011,1.037535,2.002410,-0.443505,-0.050868 +2.052324,-0.986638,1.037538,2.004480,-0.441431,-0.053751 +2.055195,-0.984148,1.037340,2.006690,-0.439505,-0.056575 +2.058004,-0.981553,1.036944,2.009029,-0.437737,-0.059327 +2.060740,-0.978865,1.036350,2.011488,-0.436135,-0.061994 +2.063389,-0.976096,1.035561,2.014055,-0.434705,-0.064566 +2.065940,-0.973257,1.034580,2.016719,-0.433454,-0.067030 +2.068380,-0.970362,1.033413,2.019467,-0.432388,-0.069375 +2.070701,-0.967425,1.032064,2.022288,-0.431511,-0.071590 +2.072890,-0.964457,1.030539,2.025168,-0.430827,-0.073666 +2.074937,-0.961473,1.028845,2.028096,-0.430340,-0.075594 +2.076835,-0.958485,1.026991,2.031056,-0.430052,-0.077364 +2.078574,-0.955508,1.024983,2.034037,-0.429963,-0.078969 +2.080146,-0.952555,1.022832,2.037025,-0.430075,-0.080402 +2.081545,-0.949638,1.020547,2.040007,-0.430387,-0.081655 +2.082764,-0.946772,1.018138,2.042968,-0.430897,-0.082724 +2.083797,-0.943968,1.015615,2.045896,-0.431603,-0.083604 +2.084640,-0.941240,1.012991,2.048778,-0.432503,-0.084290 +2.085289,-0.938600,1.010278,2.051600,-0.433591,-0.084780 +2.085742,-0.936059,1.007486,2.054350,-0.434863,-0.085071 +2.085995,-0.933630,1.004630,2.057015,-0.436314,-0.085162 +2.086049,-0.931322,1.001721,2.059584,-0.437936,-0.085053 +2.085902,-0.929147,0.998773,2.062046,-0.439723,-0.084744 +2.085556,-0.927114,0.995799,2.064388,-0.441666,-0.084237 +2.085012,-0.925233,0.992812,2.066600,-0.443757,-0.083533 +2.084272,-0.923511,0.989826,2.068673,-0.445987,-0.082637 +2.083341,-0.921957,0.986855,2.070597,-0.448344,-0.081551 +2.082221,-0.920577,0.983911,2.072364,-0.450820,-0.080281 +2.080918,-0.919378,0.981008,2.073965,-0.453401,-0.078833 +2.079438,-0.918365,0.978159,2.075393,-0.456078,-0.077213 +2.077787,-0.917543,0.975377,2.076642,-0.458838,-0.075429 +2.075974,-0.916915,0.972673,2.077707,-0.461669,-0.073488 +2.074005,-0.916484,0.970062,2.078582,-0.464557,-0.071399 +2.071891,-0.916252,0.967553,2.079264,-0.467490,-0.069171 +2.069640,-0.916221,0.965159,2.079749,-0.470454,-0.066815 +2.067262,-0.916390,0.962890,2.080036,-0.473437,-0.064341 +2.064769,-0.916758,0.960756,2.080122,-0.476425,-0.061761 +2.062171,-0.917324,0.958768,2.080009,-0.479404,-0.059085 +2.059480,-0.918086,0.956933,2.079695,-0.482361,-0.056326 +2.056709,-0.919039,0.955260,2.079183,-0.485283,-0.053497 +2.053869,-0.920180,0.953757,2.078475,-0.488157,-0.050610 +2.050974,-0.921504,0.952431,2.077574,-0.490969,-0.047677 +2.048036,-0.923004,0.951287,2.076484,-0.493708,-0.044713 +2.045069,-0.924673,0.950330,2.075210,-0.496360,-0.041730 +2.042086,-0.926506,0.949565,2.073758,-0.498914,-0.038742 +2.039101,-0.928492,0.948996,2.072134,-0.501358,-0.035763 +2.036126,-0.930623,0.948624,2.070346,-0.503682,-0.032805 +2.033175,-0.932890,0.948452,2.068402,-0.505875,-0.029883 +2.030262,-0.935282,0.948481,2.066309,-0.507926,-0.027008 +2.027400,-0.937789,0.948709,2.064079,-0.509828,-0.024195 +2.024601,-0.940399,0.949137,2.061720,-0.511571,-0.021455 +2.021878,-0.943101,0.949761,2.059244,-0.513147,-0.018802 +2.019244,-0.945882,0.950580,2.056661,-0.514549,-0.016246 +2.016709,-0.948730,0.951590,2.053983,-0.515772,-0.013800 +2.014287,-0.951632,0.952786,2.051222,-0.516809,-0.011475 +2.011986,-0.954575,0.954163,2.048392,-0.517656,-0.009280 +2.009819,-0.957547,0.955714,2.045503,-0.518309,-0.007227 +2.007793,-0.960532,0.957434,2.042570,-0.518766,-0.005323 +2.005920,-0.963519,0.959312,2.039605,-0.519023,-0.003578 +2.004206,-0.966493,0.961343,2.036622,-0.519080,-0.001999 +2.002661,-0.969442,0.963516,2.033634,-0.518937,-0.000594 +2.001290,-0.972351,0.965821,2.030655,-0.518594,0.000631 +2.000100,-0.975209,0.968249,2.027698,-0.518054,0.001671 +1.999096,-0.978002,0.970787,2.024776,-0.517317,0.002520 +1.998283,-0.980717,0.973426,2.021903,-0.516388,0.003176 +1.997664,-0.983342,0.976153,2.019091,-0.515271,0.003635 +1.997242,-0.985866,0.978955,2.016354,-0.513971,0.003895 +1.997020,-0.988278,0.981821,2.013702,-0.512493,0.003955 +1.996997,-0.990565,0.984736,2.011149,-0.510844,0.003815 +1.997175,-0.992719,0.987689,2.008706,-0.509033,0.003475 +1.997552,-0.994728,0.990666,2.006383,-0.507066,0.002937 +1.998126,-0.996586,0.993654,2.004192,-0.504953,0.002203 +1.998896,-0.998282,0.996638,2.002142,-0.502703,0.001277 +1.999858,-0.999809,0.999606,2.000242,-0.500326,0.000163 +2.001006,-1.001161,1.002545,1.998500,-0.497833,-0.001135 +2.002337,-1.002332,1.005440,1.996926,-0.495236,-0.002611 +2.003844,-1.003315,1.008280,1.995525,-0.492545,-0.004257 +2.005520,-1.004108,1.011050,1.994304,-0.489774,-0.006066 +2.007359,-1.004705,1.013740,1.993268,-0.486933,-0.008031 +2.009350,-1.005105,1.016336,1.992423,-0.484037,-0.010142 +2.011487,-1.005306,1.018828,1.991772,-0.481099,-0.012390 +2.013758,-1.005306,1.021203,1.991317,-0.478130,-0.014765 +2.016155,-1.005106,1.023452,1.991062,-0.475146,-0.017256 +2.018665,-1.004707,1.025564,1.991006,-0.472158,-0.019852 +2.021278,-1.004110,1.027529,1.991151,-0.469182,-0.022542 +2.023982,-1.003319,1.029339,1.991495,-0.466229,-0.025312 +2.026765,-1.002336,1.030986,1.992038,-0.463314,-0.028152 +2.029614,-1.001166,1.032462,1.992776,-0.460449,-0.031047 +2.032517,-0.999815,1.033760,1.993707,-0.457647,-0.033985 +2.035460,-0.998288,1.034875,1.994826,-0.454921,-0.036953 +2.038430,-0.996592,1.035802,1.996128,-0.452284,-0.039937 +2.041415,-0.994735,1.036537,1.997607,-0.449746,-0.042925 +2.044399,-0.992726,1.037076,1.999257,-0.447320,-0.045902 +2.047371,-0.990573,1.037416,2.001070,-0.445016,-0.048855 +2.050317,-0.988286,1.037557,2.003038,-0.442844,-0.051771 +2.053223,-0.985875,1.037498,2.005153,-0.440815,-0.054637 +2.056076,-0.983352,1.037238,2.007404,-0.438938,-0.057439 +2.058864,-0.980726,1.036780,2.009782,-0.437221,-0.060166 +2.061574,-0.978012,1.036125,2.012276,-0.435671,-0.062805 +2.064193,-0.975219,1.035276,2.014874,-0.434296,-0.065344 +2.066711,-0.972362,1.034237,2.017565,-0.433102,-0.067772 +2.069116,-0.969452,1.033012,2.020338,-0.432094,-0.070078 +2.071396,-0.966504,1.031608,2.023178,-0.431277,-0.072251 +2.073542,-0.963530,1.030030,2.026075,-0.430654,-0.074282 +2.075544,-0.960543,1.028285,2.029014,-0.430229,-0.076162 +2.077394,-0.957557,1.026382,2.031982,-0.430003,-0.077882 +2.079081,-0.954586,1.024329,2.034967,-0.429977,-0.079434 +2.080600,-0.951643,1.022135,2.037954,-0.430151,-0.080811 +2.081944,-0.948740,1.019810,2.040931,-0.430524,-0.082008 +2.083105,-0.945892,1.017364,2.043883,-0.431096,-0.083018 +2.084080,-0.943111,1.014809,2.046798,-0.431863,-0.083838 +2.084863,-0.940409,1.012156,2.049663,-0.432821,-0.084463 +2.085451,-0.937798,1.009417,2.052464,-0.433967,-0.084892 +2.085842,-0.935291,1.006604,2.055189,-0.435296,-0.085121 +2.086033,-0.932898,1.003730,2.057826,-0.436800,-0.085150 +2.086025,-0.930631,1.000807,2.060362,-0.438475,-0.084978 +2.085816,-0.928499,0.997850,2.062788,-0.440311,-0.084607 +2.085408,-0.926512,0.994870,2.065090,-0.442301,-0.084039 +2.084803,-0.924680,0.991882,2.067260,-0.444436,-0.083275 +2.084003,-0.923009,0.988900,2.069288,-0.446707,-0.082319 +2.083012,-0.921509,0.985935,2.071164,-0.449102,-0.081175 +2.081835,-0.920184,0.983003,2.072880,-0.451612,-0.079850 +2.080476,-0.919043,0.980115,2.074428,-0.454225,-0.078347 +2.078942,-0.918089,0.977286,2.075801,-0.456929,-0.076675 +2.077240,-0.917326,0.974526,2.076994,-0.459712,-0.074841 +2.075378,-0.916760,0.971851,2.078000,-0.462562,-0.072853 +2.073363,-0.916391,0.969270,2.078815,-0.465465,-0.070720 +2.071205,-0.916221,0.966795,2.079436,-0.468409,-0.068451 +2.068913,-0.916252,0.964439,2.079860,-0.471381,-0.066058 +2.066498,-0.916483,0.962211,2.080084,-0.474367,-0.063549 +2.063971,-0.916913,0.960122,2.080109,-0.477353,-0.060938 +2.061343,-0.917540,0.958180,2.079933,-0.480327,-0.058235 +2.058626,-0.918362,0.956395,2.079557,-0.483275,-0.055453 +2.055832,-0.919374,0.954774,2.078984,-0.486183,-0.052604 +2.052974,-0.920572,0.953325,2.078215,-0.489039,-0.049701 +2.050064,-0.921952,0.952055,2.077255,-0.491830,-0.046758 +2.047116,-0.923505,0.950969,2.076107,-0.494543,-0.043786 +2.044142,-0.925226,0.950072,2.074778,-0.497166,-0.040801 +2.041157,-0.927107,0.949367,2.073271,-0.499687,-0.037814 +2.038173,-0.929140,0.948859,2.071595,-0.502095,-0.034840 +2.035205,-0.931314,0.948550,2.069758,-0.504379,-0.031892 +2.032264,-0.933621,0.948440,2.067766,-0.506529,-0.028983 +2.029366,-0.936050,0.948530,2.065630,-0.508534,-0.026126 +2.026522,-0.938590,0.948821,2.063358,-0.510387,-0.023334 +2.023745,-0.941230,0.949310,2.060962,-0.512079,-0.020620 +2.021049,-0.943958,0.949995,2.058451,-0.513602,-0.017996 +2.018444,-0.946761,0.950874,2.055837,-0.514949,-0.015473 +2.015943,-0.949628,0.951943,2.053132,-0.516115,-0.013064 +2.013557,-0.952544,0.953195,2.050349,-0.517093,-0.010778 +2.011297,-0.955497,0.954627,2.047498,-0.517880,-0.008626 +2.009173,-0.958475,0.956232,2.044595,-0.518472,-0.006618 +2.007194,-0.961462,0.958001,2.041650,-0.518867,-0.004763 +2.005369,-0.964446,0.959928,2.038678,-0.519062,-0.003069 +2.003707,-0.967414,0.962004,2.035692,-0.519057,-0.001543 +2.002215,-0.970352,0.964219,2.032706,-0.518852,-0.000194 +2.000900,-0.973247,0.966564,2.029732,-0.518447,0.000974 +1.999767,-0.976085,0.969027,2.026785,-0.517845,0.001955 +1.998822,-0.978855,0.971598,2.023877,-0.517048,0.002745 +1.998069,-0.981544,0.974265,2.021021,-0.516060,0.003340 +1.997511,-0.984139,0.977017,2.018231,-0.514886,0.003738 +1.997151,-0.986629,0.979840,2.015519,-0.513530,0.003936 +1.996991,-0.989003,0.982723,2.012897,-0.511998,0.003933 +1.997031,-0.991250,0.985652,2.010377,-0.510298,0.003731 +1.997271,-0.993360,0.988614,2.007970,-0.508437,0.003329 +1.997709,-0.995323,0.991595,2.005687,-0.506424,0.002730 +1.998345,-0.997131,0.994583,2.003539,-0.504267,0.001936 +1.999175,-0.998776,0.997564,2.001534,-0.501976,0.000950 +2.000195,-1.000249,1.000524,1.999682,-0.499562,-0.000222 +2.001401,-1.001545,1.003451,1.997992,-0.497036,-0.001575 +2.002787,-1.002658,1.006330,1.996471,-0.494408,-0.003105 +2.004348,-1.003583,1.009150,1.995125,-0.491691,-0.004802 +2.006075,-1.004315,1.011896,1.993961,-0.488897,-0.006661 +2.007962,-1.004851,1.014558,1.992985,-0.486038,-0.008672 +2.010000,-1.005189,1.017123,1.992199,-0.483127,-0.010827 +2.012180,-1.005327,1.019580,1.991609,-0.480178,-0.013116 +2.014491,-1.005265,1.021917,1.991216,-0.477203,-0.015528 +2.016924,-1.005003,1.024124,1.991023,-0.474216,-0.018053 +2.019467,-1.004542,1.026191,1.991030,-0.471231,-0.020680 +2.022110,-1.003885,1.028109,1.991237,-0.468260,-0.023396 +2.024840,-1.003033,1.029869,1.991643,-0.465318,-0.026189 +2.027645,-1.001992,1.031464,1.992247,-0.462416,-0.029047 +2.030512,-1.000765,1.032885,1.993045,-0.459570,-0.031957 +2.033429,-0.999358,1.034127,1.994035,-0.456790,-0.034906 +2.036382,-0.997778,1.035184,1.995212,-0.454091,-0.037880 +2.039358,-0.996031,1.036052,1.996569,-0.451483,-0.040867 +2.042344,-0.994126,1.036726,1.998102,-0.448979,-0.043853 +2.045326,-0.992071,1.037203,1.999804,-0.446589,-0.046824 +2.048291,-0.989875,1.037482,2.001666,-0.444325,-0.049767 +2.051226,-0.987549,1.037560,2.003681,-0.442197,-0.052668 +2.054117,-0.985102,1.037439,2.005839,-0.440215,-0.055516 +2.056951,-0.982545,1.037117,2.008131,-0.438386,-0.058296 +2.059716,-0.979891,1.036597,2.010546,-0.436720,-0.060997 +2.062399,-0.977151,1.035881,2.013073,-0.435224,-0.063606 +2.064988,-0.974337,1.034973,2.015702,-0.433905,-0.066112 +2.067472,-0.971462,1.033875,2.018420,-0.432768,-0.068503 +2.069839,-0.968539,1.032594,2.021215,-0.431819,-0.070769 +2.072079,-0.965581,1.031135,2.024074,-0.431062,-0.072899 +2.074181,-0.962601,1.029505,2.026985,-0.430501,-0.074884 +2.076136,-0.959613,1.027710,2.029935,-0.430137,-0.076714 +2.077936,-0.956631,1.025759,2.032910,-0.429973,-0.078383 +2.079572,-0.953667,1.023661,2.035897,-0.430009,-0.079881 +2.081037,-0.950735,1.021425,2.038882,-0.430246,-0.081203 +2.082325,-0.947848,1.019062,2.041852,-0.430681,-0.082342 +2.083428,-0.945019,1.016581,2.044795,-0.431314,-0.083294 +2.084344,-0.942261,1.013994,2.047695,-0.432141,-0.084054 +2.085067,-0.939586,1.011313,2.050541,-0.433158,-0.084618 +2.085594,-0.937007,1.008549,2.053320,-0.434361,-0.084984 +2.085923,-0.934534,1.005716,2.056019,-0.435745,-0.085151 +2.086052,-0.932179,1.002825,2.058626,-0.437303,-0.085118 +2.085981,-0.929953,0.999890,2.061129,-0.439029,-0.084884 +2.085710,-0.927865,0.996924,2.063518,-0.440914,-0.084452 +2.085241,-0.925925,0.993941,2.065780,-0.442950,-0.083822 +2.084575,-0.924142,0.990953,2.067907,-0.445129,-0.082998 +2.083715,-0.922524,0.987975,2.069888,-0.447439,-0.081983 +2.082666,-0.921077,0.985019,2.071715,-0.449871,-0.080782 +2.081431,-0.919809,0.982099,2.073380,-0.452414,-0.079401 +2.080017,-0.918726,0.979228,2.074874,-0.455057,-0.077845 +2.078430,-0.917831,0.976419,2.076192,-0.457787,-0.076122 +2.076678,-0.917129,0.973684,2.077327,-0.460592,-0.074239 +2.074767,-0.916623,0.971037,2.078274,-0.463460,-0.072205 +2.072706,-0.916316,0.968488,2.079029,-0.466377,-0.070028 +2.070505,-0.916209,0.966049,2.079589,-0.469331,-0.067720 +2.068174,-0.916302,0.963732,2.079951,-0.472309,-0.065289 +2.065724,-0.916595,0.961546,2.080113,-0.475296,-0.062748 +2.063164,-0.917087,0.959501,2.080075,-0.478280,-0.060106 +2.060507,-0.917775,0.957607,2.079837,-0.481248,-0.057378 +2.057765,-0.918656,0.955873,2.079400,-0.484185,-0.054573 +2.054949,-0.919727,0.954305,2.078766,-0.487078,-0.051706 +2.052073,-0.920982,0.952911,2.077937,-0.489915,-0.048789 +2.049150,-0.922417,0.951697,2.076918,-0.492683,-0.045836 +2.046193,-0.924023,0.950669,2.075713,-0.495369,-0.042858 +2.043214,-0.925795,0.949832,2.074327,-0.497962,-0.039871 +2.040228,-0.927724,0.949188,2.072768,-0.500449,-0.036887 +2.037248,-0.929801,0.948741,2.071041,-0.502819,-0.033919 +2.034286,-0.932018,0.948494,2.069154,-0.505062,-0.030982 +2.031358,-0.934364,0.948446,2.067116,-0.507169,-0.028088 +2.028475,-0.936829,0.948599,2.064937,-0.509128,-0.025250 +2.025650,-0.939402,0.948952,2.062625,-0.510931,-0.022481 +2.022897,-0.942070,0.949502,2.060192,-0.512571,-0.019793 +2.020228,-0.944823,0.950248,2.057648,-0.514040,-0.017200 +2.017654,-0.947647,0.951187,2.055005,-0.515332,-0.014711 +2.015188,-0.950530,0.952313,2.052274,-0.516439,-0.012339 +2.012840,-0.953460,0.953622,2.049468,-0.517359,-0.010093 +2.010621,-0.956422,0.955108,2.046600,-0.518086,-0.007985 +2.008541,-0.959403,0.956765,2.043682,-0.518616,-0.006024 +2.006609,-0.962391,0.958584,2.040728,-0.518949,-0.004218 +2.004834,-0.965372,0.960559,2.037750,-0.519082,-0.002576 +2.003225,-0.968332,0.962679,2.034763,-0.519015,-0.001104 +2.001787,-0.971258,0.964935,2.031779,-0.518747,0.000189 +2.000528,-0.974136,0.967318,2.028812,-0.518281,0.001300 +1.999453,-0.976955,0.969816,2.025875,-0.517618,0.002222 +1.998567,-0.979701,0.972418,2.022982,-0.516761,0.002951 +1.997874,-0.982362,0.975113,2.020146,-0.515715,0.003485 +1.997378,-0.984925,0.977888,2.017378,-0.514483,0.003821 +1.997080,-0.987381,0.980731,2.014693,-0.513071,0.003956 +1.996982,-0.989716,0.983630,2.012101,-0.511487,0.003892 +1.997084,-0.991921,0.986570,2.009615,-0.509736,0.003627 +1.997386,-0.993987,0.989540,2.007246,-0.507827,0.003164 +1.997886,-0.995903,0.992525,2.005004,-0.505768,0.002503 +1.998583,-0.997661,0.995512,2.002899,-0.503568,0.001649 +1.999472,-0.999253,0.998488,2.000941,-0.501238,0.000605 +2.000551,-1.000672,1.001439,1.999139,-0.498788,-0.000624 +2.001813,-1.001911,1.004352,1.997500,-0.496229,-0.002033 +2.003254,-1.002966,1.007214,1.996033,-0.493572,-0.003615 +2.004868,-1.003831,1.010012,1.994743,-0.490829,-0.005364 +2.006646,-1.004503,1.012734,1.993637,-0.488014,-0.007271 +2.008581,-1.004977,1.015367,1.992720,-0.485137,-0.009328 +2.010663,-1.005253,1.017900,1.991995,-0.482213,-0.011525 +2.012885,-1.005329,1.020320,1.991465,-0.479254,-0.013854 +2.015235,-1.005205,1.022618,1.991135,-0.476274,-0.016302 +2.017704,-1.004881,1.024783,1.991003,-0.473287,-0.018860 +2.020279,-1.004359,1.026804,1.991073,-0.470304,-0.021515 +2.022950,-1.003640,1.028674,1.991342,-0.467341,-0.024257 +2.025705,-1.002729,1.030383,1.991810,-0.464410,-0.027072 +2.028531,-1.001630,1.031925,1.992475,-0.461524,-0.029947 +2.031415,-1.000346,1.033291,1.993333,-0.458697,-0.032871 +2.034344,-0.998885,1.034476,1.994381,-0.455941,-0.035829 +2.037306,-0.997252,1.035475,1.995615,-0.453269,-0.038809 +2.040286,-0.995455,1.036282,1.997028,-0.450692,-0.041797 +2.043273,-0.993503,1.036895,1.998614,-0.448222,-0.044779 +2.046251,-0.991403,1.037311,2.000367,-0.445871,-0.047743 +2.049208,-0.989165,1.037528,2.002277,-0.443648,-0.050674 +2.052130,-0.986800,1.037544,2.004337,-0.441565,-0.053561 +2.055005,-0.984318,1.037360,2.006538,-0.439629,-0.056389 +2.057819,-0.981729,1.036976,2.008869,-0.437850,-0.059146 +2.060560,-0.979047,1.036395,2.011321,-0.436236,-0.061819 +2.063215,-0.976282,1.035619,2.013881,-0.434795,-0.064398 +2.065773,-0.973448,1.034651,2.016538,-0.433532,-0.066869 +2.068221,-0.970557,1.033496,2.019282,-0.432453,-0.069222 +2.070550,-0.967622,1.032159,2.022098,-0.431563,-0.071447 +2.072748,-0.964655,1.030646,2.024975,-0.430867,-0.073532 +2.074806,-0.961672,1.028963,2.027899,-0.430366,-0.075470 +2.076713,-0.958684,1.027119,2.030858,-0.430065,-0.077251 +2.078463,-0.955706,1.025122,2.033838,-0.429963,-0.078867 +2.080047,-0.952751,1.022980,2.036826,-0.430061,-0.080312 +2.081457,-0.949831,1.020703,2.039808,-0.430360,-0.081577 +2.082688,-0.946961,1.018302,2.042771,-0.430857,-0.082659 +2.083734,-0.944153,1.015787,2.045702,-0.431550,-0.083551 +2.084590,-0.941419,1.013169,2.048587,-0.432437,-0.084250 +2.085252,-0.938773,1.010461,2.051414,-0.433513,-0.084753 +2.085718,-0.936225,1.007674,2.054169,-0.434773,-0.085058 +2.085984,-0.933788,1.004822,2.056841,-0.436212,-0.085162 +2.086051,-0.931472,1.001916,2.059416,-0.437823,-0.085067 +2.085918,-0.929288,0.998970,2.061885,-0.439599,-0.084771 +2.085585,-0.927245,0.995997,2.064235,-0.441532,-0.084277 +2.085054,-0.925353,0.993011,2.066457,-0.443613,-0.083586 +2.084328,-0.923621,0.990025,2.068539,-0.445834,-0.082702 +2.083409,-0.922055,0.987052,2.070474,-0.448183,-0.081629 +2.082301,-0.920664,0.984106,2.072251,-0.450651,-0.080372 +2.081010,-0.919452,0.981200,2.073863,-0.453226,-0.078935 +2.079542,-0.918427,0.978347,2.075303,-0.455897,-0.077326 +2.077903,-0.917592,0.975560,2.076565,-0.458652,-0.075553 +2.076100,-0.916951,0.972851,2.077642,-0.461478,-0.073622 +2.074141,-0.916507,0.970233,2.078530,-0.464363,-0.071542 +2.072036,-0.916262,0.967717,2.079225,-0.467293,-0.069324 +2.069794,-0.916217,0.965315,2.079723,-0.470256,-0.066976 +2.067424,-0.916372,0.963037,2.080023,-0.473238,-0.064510 +2.064938,-0.916727,0.960894,2.080123,-0.476226,-0.061936 +2.062347,-0.917280,0.958895,2.080023,-0.479206,-0.059266 +2.059662,-0.918029,0.957050,2.079722,-0.482165,-0.056513 +2.056896,-0.918970,0.955367,2.079224,-0.485090,-0.053688 +2.054060,-0.920098,0.953852,2.078528,-0.487967,-0.050804 +2.051168,-0.921410,0.952514,2.077640,-0.490784,-0.047874 +2.048233,-0.922898,0.951357,2.076563,-0.493528,-0.044911 +2.045268,-0.924557,0.950388,2.075301,-0.496186,-0.041929 +2.042285,-0.926379,0.949610,2.073861,-0.498747,-0.038942 +2.039299,-0.928355,0.949028,2.072248,-0.501199,-0.035961 +2.036324,-0.930477,0.948643,2.070470,-0.503531,-0.033002 +2.033371,-0.932735,0.948458,2.068536,-0.505733,-0.030076 +2.030455,-0.935119,0.948473,2.066453,-0.507794,-0.027198 +2.027589,-0.937618,0.948688,2.064231,-0.509706,-0.024380 +2.024786,-0.940222,0.949102,2.061881,-0.511460,-0.021635 +2.022057,-0.942918,0.949714,2.059412,-0.513047,-0.018976 +2.019416,-0.945694,0.950520,2.056836,-0.514461,-0.016414 +2.016875,-0.948538,0.951517,2.054164,-0.515696,-0.013960 +2.014444,-0.951437,0.952701,2.051409,-0.516746,-0.011626 +2.012136,-0.954378,0.954066,2.048582,-0.517606,-0.009422 +2.009959,-0.957348,0.955606,2.045697,-0.518272,-0.007359 +2.007924,-0.960333,0.957314,2.042766,-0.518741,-0.005445 +2.006040,-0.963320,0.959182,2.039803,-0.519012,-0.003689 +2.004316,-0.966296,0.961203,2.036821,-0.519083,-0.002099 +2.002758,-0.969246,0.963367,2.033833,-0.518953,-0.000683 +2.001376,-0.972159,0.965663,2.030853,-0.518623,0.000555 +2.000173,-0.975020,0.968083,2.027894,-0.518096,0.001607 +1.999157,-0.977818,0.970615,2.024970,-0.517372,0.002470 +1.998331,-0.980538,0.973247,2.022093,-0.516456,0.003139 +1.997699,-0.983170,0.975968,2.019277,-0.515351,0.003611 +1.997264,-0.985701,0.978766,2.016534,-0.514063,0.003884 +1.997028,-0.988120,0.981628,2.013876,-0.512597,0.003958 +1.996992,-0.990417,0.984541,2.011316,-0.510959,0.003831 +1.997157,-0.992579,0.987492,2.008865,-0.509158,0.003504 +1.997520,-0.994599,0.990467,2.006534,-0.507202,0.002979 +1.998082,-0.996467,0.993454,2.004334,-0.505098,0.002258 +1.998839,-0.998174,0.996439,2.002274,-0.502857,0.001345 +1.999788,-0.999713,0.999409,2.000363,-0.500488,0.000243 +2.000924,-1.001077,1.002350,1.998611,-0.498003,-0.001043 +2.002243,-1.002260,1.005249,1.997025,-0.495412,-0.002507 +2.003738,-1.003256,1.008092,1.995613,-0.492727,-0.004142 +2.005404,-1.004061,1.010868,1.994379,-0.489961,-0.005941 +2.007231,-1.004671,1.013563,1.993331,-0.487125,-0.007895 +2.009213,-1.005085,1.016167,1.992473,-0.484232,-0.009997 +2.011340,-1.005299,1.018665,1.991809,-0.481296,-0.012236 +2.013603,-1.005312,1.021049,1.991341,-0.478329,-0.014603 +2.015991,-1.005126,1.023306,1.991072,-0.475345,-0.017087 +2.018494,-1.004740,1.025427,1.991004,-0.472357,-0.019676 +2.021101,-1.004156,1.027403,1.991135,-0.469380,-0.022360 +2.023799,-1.003377,1.029223,1.991466,-0.466425,-0.025125 +2.026577,-1.002407,1.030881,1.991996,-0.463507,-0.027960 +2.029422,-1.001250,1.032369,1.992721,-0.460638,-0.030852 +2.032322,-0.999910,1.033679,1.993639,-0.457832,-0.033788 +2.035263,-0.998395,1.034807,1.994745,-0.455100,-0.036755 +2.038232,-0.996710,1.035746,1.996035,-0.452456,-0.039738 +2.041216,-0.994864,1.036494,1.997503,-0.449912,-0.042726 +2.044201,-0.992865,1.037046,1.999142,-0.447478,-0.045704 +2.047174,-0.990721,1.037400,2.000944,-0.445165,-0.048659 +2.050121,-0.988442,1.037554,2.002903,-0.442985,-0.051578 +2.053030,-0.986040,1.037508,2.005008,-0.440946,-0.054447 +2.055888,-0.983523,1.037262,2.007250,-0.439058,-0.057255 +2.058680,-0.980904,1.036817,2.009620,-0.437330,-0.059987 +2.061396,-0.978195,1.036175,2.012106,-0.435769,-0.062632 +2.064022,-0.975408,1.035338,2.014698,-0.434382,-0.065178 +2.066547,-0.972554,1.034312,2.017383,-0.433176,-0.067614 +2.068959,-0.969648,1.033100,2.020150,-0.432156,-0.069928 +2.071248,-0.966701,1.031707,2.022987,-0.431326,-0.072111 +2.073404,-0.963728,1.030140,2.025880,-0.430690,-0.074152 +2.075416,-0.960742,1.028407,2.028817,-0.430251,-0.076041 +2.077275,-0.957756,1.026514,2.031784,-0.430012,-0.077772 +2.078974,-0.954783,1.024470,2.034768,-0.429972,-0.079335 +2.080504,-0.951838,1.022286,2.037755,-0.430133,-0.080725 +2.081860,-0.948932,1.019969,2.040733,-0.430493,-0.081934 +2.083033,-0.946080,1.017531,2.043687,-0.431052,-0.082957 +2.084021,-0.943294,1.014983,2.046605,-0.431806,-0.083789 +2.084817,-0.940586,1.012336,2.049473,-0.432751,-0.084428 +2.085418,-0.937969,1.009602,2.052279,-0.433885,-0.084869 +2.085822,-0.935455,1.006793,2.055010,-0.435201,-0.085112 +2.086027,-0.933054,1.003923,2.057653,-0.436695,-0.085154 +2.086031,-0.930778,1.001003,2.060196,-0.438358,-0.084996 +2.085836,-0.928637,0.998048,2.062629,-0.440184,-0.084638 +2.085441,-0.926640,0.995069,2.064941,-0.442164,-0.084083 +2.084849,-0.924797,0.992082,2.067120,-0.444290,-0.083332 +2.084062,-0.923115,0.989098,2.069157,-0.446551,-0.082389 +2.083084,-0.921603,0.986132,2.071044,-0.448939,-0.081257 +2.081919,-0.920267,0.983197,2.072771,-0.451441,-0.079944 +2.080572,-0.919113,0.980306,2.074330,-0.454048,-0.078453 +2.079050,-0.918146,0.977472,2.075715,-0.456746,-0.076792 +2.077359,-0.917371,0.974708,2.076920,-0.459524,-0.074968 +2.075507,-0.916791,0.972026,2.077939,-0.462370,-0.072990 +2.073502,-0.916409,0.969439,2.078767,-0.465270,-0.070866 +2.071353,-0.916226,0.966957,2.079401,-0.468212,-0.068607 +2.069070,-0.916244,0.964592,2.079838,-0.471182,-0.066221 +2.066663,-0.916461,0.962355,2.080075,-0.474168,-0.063720 +2.064143,-0.916878,0.960256,2.080113,-0.477154,-0.061115 +2.061521,-0.917492,0.958305,2.079951,-0.480130,-0.058418 +2.058810,-0.918301,0.956509,2.079588,-0.483079,-0.055641 +2.056021,-0.919301,0.954877,2.079028,-0.485991,-0.052796 +2.053166,-0.920487,0.953417,2.078273,-0.488851,-0.049896 +2.050259,-0.921854,0.952134,2.077325,-0.491646,-0.046955 +2.047313,-0.923396,0.951035,2.076190,-0.494365,-0.043985 +2.044341,-0.925107,0.950125,2.074872,-0.496994,-0.041000 +2.041356,-0.926977,0.949408,2.073377,-0.499522,-0.038013 +2.038372,-0.929000,0.948887,2.071712,-0.501938,-0.035038 +2.035402,-0.931165,0.948564,2.069885,-0.504231,-0.032087 +2.032459,-0.933463,0.948441,2.067903,-0.506390,-0.029175 +2.029558,-0.935885,0.948518,2.065776,-0.508405,-0.026314 +2.026710,-0.938418,0.948795,2.063514,-0.510269,-0.023518 +2.023928,-0.941051,0.949271,2.061125,-0.511972,-0.020798 +2.021226,-0.943774,0.949944,2.058622,-0.513506,-0.018168 +2.018615,-0.946572,0.950810,2.056014,-0.514865,-0.015638 +2.016106,-0.949435,0.951866,2.053315,-0.516043,-0.013220 +2.013713,-0.952348,0.953106,2.050537,-0.517034,-0.010926 +2.011444,-0.955300,0.954526,2.047690,-0.517834,-0.008765 +2.009310,-0.958276,0.956119,2.044790,-0.518439,-0.006747 +2.007321,-0.961263,0.957878,2.041847,-0.518847,-0.004882 +2.005486,-0.964248,0.959795,2.038877,-0.519055,-0.003177 +2.003813,-0.967217,0.961861,2.035891,-0.519064,-0.001640 +2.002309,-0.970157,0.964067,2.032905,-0.518872,-0.000278 +2.000982,-0.973055,0.966403,2.029930,-0.518480,0.000902 +1.999837,-0.975898,0.968859,2.026980,-0.517892,0.001896 +1.998879,-0.978673,0.971424,2.024069,-0.517108,0.002699 +1.998113,-0.981367,0.974085,2.021210,-0.516132,0.003307 +1.997542,-0.983969,0.976831,2.018415,-0.514970,0.003717 +1.997169,-0.986467,0.979650,2.015697,-0.513625,0.003929 +1.996996,-0.988848,0.982529,2.013069,-0.512105,0.003940 +1.997022,-0.991104,0.985455,2.010541,-0.510416,0.003751 +1.997248,-0.993223,0.988415,2.008127,-0.508566,0.003362 +1.997674,-0.995197,0.991396,2.005835,-0.506562,0.002776 +1.998297,-0.997015,0.994384,2.003677,-0.504415,0.001995 +1.999114,-0.998671,0.997366,2.001663,-0.502133,0.001022 +2.000121,-1.000156,1.000328,1.999801,-0.499727,-0.000138 +2.001315,-1.001465,1.003257,1.998100,-0.497208,-0.001480 +2.002689,-1.002590,1.006140,1.996567,-0.494586,-0.002997 +2.004238,-1.003527,1.008964,1.995209,-0.491875,-0.004684 +2.005955,-1.004272,1.011716,1.994033,-0.489085,-0.006532 +2.007832,-1.004821,1.014384,1.993044,-0.486230,-0.008534 +2.009860,-1.005173,1.016956,1.992246,-0.483323,-0.010679 +2.012030,-1.005324,1.019420,1.991642,-0.480375,-0.012959 +2.014333,-1.005276,1.021765,1.991236,-0.477402,-0.015364 +2.016758,-1.005027,1.023981,1.991029,-0.474415,-0.017882 +2.019295,-1.004579,1.026058,1.991023,-0.471429,-0.020502 +2.021931,-1.003935,1.027986,1.991217,-0.468457,-0.023212 +2.024655,-1.003096,1.029757,1.991610,-0.465513,-0.026000 +2.027456,-1.002067,1.031363,1.992201,-0.462608,-0.028855 +2.030319,-1.000852,1.032796,1.992986,-0.459758,-0.031762 +2.033233,-0.999457,1.034050,1.993963,-0.456973,-0.034708 +2.036184,-0.997889,1.035120,1.995127,-0.454268,-0.037682 +2.039159,-0.996153,1.036000,1.996473,-0.451654,-0.040668 +2.042145,-0.994258,1.036687,1.997995,-0.449142,-0.043654 +2.045128,-0.992213,1.037177,1.999685,-0.446745,-0.046626 +2.048094,-0.990026,1.037469,2.001537,-0.444472,-0.049572 +2.051031,-0.987708,1.037561,2.003542,-0.442335,-0.052476 +2.053925,-0.985268,1.037453,2.005691,-0.440342,-0.055328 +2.056764,-0.982719,1.037145,2.007974,-0.438503,-0.058113 +2.059534,-0.980071,1.036638,2.010381,-0.436826,-0.060820 +2.062223,-0.977336,1.035935,2.012901,-0.435319,-0.063436 +2.064819,-0.974526,1.035039,2.015524,-0.433987,-0.065949 +2.067310,-0.971655,1.033954,2.018236,-0.432838,-0.068348 +2.069685,-0.968735,1.032685,2.021026,-0.431877,-0.070622 +2.071934,-0.965779,1.031238,2.023882,-0.431107,-0.072761 +2.074045,-0.962800,1.029619,2.026790,-0.430532,-0.074756 +2.076011,-0.959813,1.027835,2.029737,-0.430155,-0.076597 +2.077821,-0.956829,1.025894,2.032711,-0.429978,-0.078277 +2.079469,-0.953864,1.023805,2.035697,-0.430001,-0.079787 +2.080945,-0.950929,1.021578,2.038683,-0.430224,-0.081120 +2.082244,-0.948039,1.019223,2.041655,-0.430646,-0.082272 +2.083361,-0.945205,1.016750,2.044600,-0.431265,-0.083236 +2.084289,-0.942442,1.014169,2.047503,-0.432079,-0.084009 +2.085025,-0.939762,1.011494,2.050354,-0.433084,-0.084586 +2.085565,-0.937175,1.008736,2.053137,-0.434275,-0.084966 +2.085907,-0.934695,1.005906,2.055842,-0.435647,-0.085146 +2.086050,-0.932332,1.003019,2.058455,-0.437194,-0.085126 +2.085992,-0.930097,1.000087,2.060966,-0.438909,-0.084906 +2.085735,-0.928000,0.997123,2.063362,-0.440784,-0.084487 +2.085278,-0.926050,0.994140,2.065633,-0.442810,-0.083870 +2.084625,-0.924256,0.991152,2.067770,-0.444979,-0.083059 +2.083778,-0.922627,0.988173,2.069761,-0.447281,-0.082057 +2.082741,-0.921168,0.985215,2.071598,-0.449706,-0.080868 +2.081519,-0.919888,0.982292,2.073274,-0.452242,-0.079498 +2.080117,-0.918792,0.979418,2.074780,-0.454878,-0.077954 +2.078541,-0.917884,0.976604,2.076110,-0.457602,-0.076242 +2.076799,-0.917170,0.973864,2.077257,-0.460403,-0.074369 +2.074899,-0.916651,0.971210,2.078217,-0.463267,-0.072345 +2.072848,-0.916331,0.968655,2.078985,-0.466181,-0.070178 +2.070656,-0.916210,0.966208,2.079558,-0.469134,-0.067877 +2.068334,-0.916290,0.963882,2.079933,-0.472110,-0.065455 +2.065891,-0.916570,0.961687,2.080109,-0.475097,-0.062920 +2.063338,-0.917048,0.959633,2.080084,-0.478082,-0.060285 +2.060687,-0.917723,0.957729,2.079859,-0.481051,-0.057562 +2.057950,-0.918592,0.955983,2.079435,-0.483990,-0.054762 +2.055139,-0.919650,0.954404,2.078814,-0.486887,-0.051899 +2.052267,-0.920893,0.952998,2.077998,-0.489728,-0.048985 +2.049346,-0.922315,0.951772,2.076992,-0.492501,-0.046033 +2.046391,-0.923911,0.950732,2.075799,-0.495193,-0.043057 +2.043413,-0.925672,0.949881,2.074425,-0.497792,-0.040070 +2.040427,-0.927591,0.949225,2.072877,-0.500286,-0.037085 +2.037446,-0.929658,0.948765,2.071161,-0.502665,-0.034116 +2.034483,-0.931866,0.948504,2.069285,-0.504917,-0.031177 +2.031552,-0.934204,0.948443,2.067257,-0.507033,-0.028279 +2.028665,-0.936661,0.948583,2.065086,-0.509002,-0.025437 +2.025837,-0.939227,0.948922,2.062783,-0.510816,-0.022663 +2.023078,-0.941889,0.949459,2.060358,-0.512467,-0.019970 +2.020403,-0.944637,0.950193,2.057821,-0.513948,-0.017369 +2.017823,-0.947457,0.951118,2.055184,-0.515251,-0.014873 +2.015349,-0.950336,0.952232,2.052459,-0.516371,-0.012493 +2.012993,-0.953263,0.953529,2.049658,-0.517303,-0.010239 +2.010765,-0.956223,0.955004,2.046793,-0.518043,-0.008122 +2.008675,-0.959204,0.956649,2.043878,-0.518587,-0.006150 +2.006733,-0.962192,0.958458,2.040926,-0.518933,-0.004334 +2.004948,-0.965174,0.960422,2.037949,-0.519079,-0.002680 +2.003327,-0.968135,0.962533,2.034962,-0.519025,-0.001197 +2.001877,-0.971064,0.964781,2.031977,-0.518771,0.000109 +2.000606,-0.973946,0.967155,2.029009,-0.518318,0.001232 +1.999519,-0.976769,0.969646,2.026070,-0.517668,0.002166 +1.998620,-0.979520,0.972242,2.023173,-0.516824,0.002909 +1.997915,-0.982187,0.974931,2.020333,-0.515790,0.003456 +1.997405,-0.984758,0.977701,2.017561,-0.514571,0.003804 +1.997094,-0.987220,0.980540,2.014869,-0.513171,0.003953 +1.996982,-0.989564,0.983435,2.012271,-0.511598,0.003902 +1.997071,-0.991779,0.986373,2.009778,-0.509858,0.003651 +1.997360,-0.993853,0.989341,2.007400,-0.507959,0.003201 +1.997847,-0.995780,0.992325,2.005149,-0.505909,0.002554 +1.998530,-0.997548,0.995313,2.003035,-0.503719,0.001712 +1.999407,-0.999152,0.998290,2.001067,-0.501397,0.000681 +2.000473,-1.000583,1.001243,1.999254,-0.498955,-0.000536 +2.001723,-1.001834,1.004159,1.997604,-0.496402,-0.001933 +2.003153,-1.002902,1.007025,1.996125,-0.493752,-0.003504 +2.004755,-1.003779,1.009828,1.994824,-0.491015,-0.005242 +2.006522,-1.004464,1.012555,1.993705,-0.488203,-0.007139 +2.008447,-1.004952,1.015195,1.992775,-0.485331,-0.009186 +2.010520,-1.005241,1.017734,1.992037,-0.482409,-0.011375 +2.012733,-1.005331,1.020163,1.991495,-0.479452,-0.013695 +2.015075,-1.005220,1.022469,1.991150,-0.476473,-0.016135 +2.017536,-1.004909,1.024643,1.991006,-0.473486,-0.018686 +2.020105,-1.004400,1.026674,1.991062,-0.470503,-0.021336 +2.022770,-1.003694,1.028554,1.991318,-0.467538,-0.024072 +2.025519,-1.002796,1.030275,1.991773,-0.464604,-0.026882 +2.028340,-1.001709,1.031827,1.992424,-0.461715,-0.029754 +2.031221,-1.000437,1.033205,1.993270,-0.458884,-0.032675 +2.034148,-0.998988,1.034403,1.994306,-0.456123,-0.035631 +2.037108,-0.997366,1.035414,1.995527,-0.453444,-0.038610 +2.040087,-0.995580,1.036234,1.996928,-0.450861,-0.041598 +2.043074,-0.993637,1.036861,1.998503,-0.448384,-0.044581 +2.046053,-0.991547,1.037289,2.000245,-0.446024,-0.047546 +2.049012,-0.989318,1.037519,2.002145,-0.443792,-0.050480 +2.051937,-0.986961,1.037549,2.004196,-0.441699,-0.053370 +2.054815,-0.984486,1.037378,2.006387,-0.439753,-0.056202 +2.057634,-0.981905,1.037008,2.008710,-0.437964,-0.058964 +2.060380,-0.979229,1.036440,2.011154,-0.436339,-0.061644 +2.063041,-0.976469,1.035677,2.013707,-0.434885,-0.064229 +2.065606,-0.973639,1.034722,2.016358,-0.433610,-0.066708 +2.068062,-0.970751,1.033579,2.019096,-0.432519,-0.069069 +2.070399,-0.967818,1.032254,2.021908,-0.431616,-0.071302 +2.072606,-0.964854,1.030752,2.024781,-0.430907,-0.073398 +2.074673,-0.961871,1.029081,2.027703,-0.430394,-0.075346 +2.076591,-0.958883,1.027247,2.030660,-0.430079,-0.077137 +2.078352,-0.955904,1.025260,2.033639,-0.429963,-0.078765 +2.079947,-0.952947,1.023127,2.036627,-0.430049,-0.080221 +2.081369,-0.950024,1.020859,2.039610,-0.430334,-0.081499 +2.082612,-0.947150,1.018466,2.042575,-0.430818,-0.082592 +2.083670,-0.944338,1.015958,2.045508,-0.431498,-0.083497 +2.084539,-0.941599,1.013347,2.048396,-0.432372,-0.084210 +2.085214,-0.938946,1.010644,2.051227,-0.433435,-0.084726 +2.085693,-0.936392,1.007862,2.053988,-0.434683,-0.085044 +2.085973,-0.933947,1.005014,2.056665,-0.436110,-0.085162 +2.086053,-0.931623,1.002111,2.059248,-0.437710,-0.085079 +2.085933,-0.929429,0.999168,2.061724,-0.439475,-0.084797 +2.085614,-0.927377,0.996196,2.064083,-0.441398,-0.084316 +2.085096,-0.925475,0.993211,2.066313,-0.443470,-0.083638 +2.084382,-0.923731,0.990224,2.068405,-0.445682,-0.082767 +2.083476,-0.922154,0.987250,2.070349,-0.448023,-0.081707 +2.082381,-0.920751,0.984301,2.072137,-0.450483,-0.080461 +2.081102,-0.919527,0.981392,2.073761,-0.453051,-0.079036 +2.079645,-0.918489,0.978535,2.075213,-0.455716,-0.077439 +2.078017,-0.917641,0.975743,2.076486,-0.458466,-0.075676 +2.076225,-0.916987,0.973029,2.077576,-0.461288,-0.073755 +2.074276,-0.916530,0.970404,2.078477,-0.464169,-0.071685 +2.072181,-0.916272,0.967881,2.079184,-0.467096,-0.069476 +2.069947,-0.916213,0.965471,2.079696,-0.470058,-0.067136 +2.067586,-0.916356,0.963185,2.080009,-0.473039,-0.064678 +2.065108,-0.916697,0.961033,2.080122,-0.476027,-0.062111 +2.062523,-0.917237,0.959024,2.080035,-0.479008,-0.059447 +2.059844,-0.917973,0.957168,2.079749,-0.481969,-0.056699 +2.057083,-0.918901,0.955474,2.079263,-0.484896,-0.053878 +2.054251,-0.920017,0.953948,2.078581,-0.487777,-0.050998 +2.051363,-0.921317,0.952597,2.077705,-0.490598,-0.048070 +2.048430,-0.922794,0.951429,2.076640,-0.493347,-0.045110 +2.045466,-0.924441,0.950447,2.075391,-0.496012,-0.042129 +2.042484,-0.926252,0.949656,2.073962,-0.498580,-0.039141 +2.039498,-0.928218,0.949061,2.072361,-0.501039,-0.036159 +2.036521,-0.930331,0.948663,2.070594,-0.503380,-0.033198 +2.033567,-0.932580,0.948464,2.068670,-0.505590,-0.030270 +2.030648,-0.934956,0.948465,2.066596,-0.507661,-0.027388 +2.027778,-0.937448,0.948667,2.064384,-0.509583,-0.024566 +2.024970,-0.940045,0.949068,2.062041,-0.511348,-0.021816 +2.022237,-0.942736,0.949667,2.059580,-0.512947,-0.019150 +2.019590,-0.945507,0.950460,2.057011,-0.514373,-0.016581 +2.017041,-0.948347,0.951445,2.054345,-0.515620,-0.014120 +2.014603,-0.951242,0.952616,2.051595,-0.516682,-0.011778 +2.012285,-0.954181,0.953969,2.048773,-0.517554,-0.009565 +2.010100,-0.957149,0.955498,2.045891,-0.518234,-0.007492 +2.008055,-0.960134,0.957195,2.042963,-0.518716,-0.005568 +2.006161,-0.963121,0.959053,2.040002,-0.519000,-0.003801 +2.004425,-0.966098,0.961064,2.037020,-0.519084,-0.002200 +2.002857,-0.969051,0.963218,2.034032,-0.518968,-0.000772 +2.001462,-0.971966,0.965506,2.031051,-0.518652,0.000478 +2.000248,-0.974831,0.967918,2.028091,-0.518137,0.001543 +1.999219,-0.977633,0.970443,2.025163,-0.517426,0.002418 +1.998380,-0.980360,0.973069,2.022283,-0.516523,0.003100 +1.997735,-0.982998,0.975784,2.019462,-0.515431,0.003585 +1.997287,-0.985536,0.978577,2.016714,-0.514154,0.003872 +1.997038,-0.987963,0.981435,2.014050,-0.512700,0.003959 +1.996988,-0.990267,0.984345,2.011484,-0.511074,0.003846 +1.997139,-0.992439,0.987294,2.009025,-0.509283,0.003532 +1.997490,-0.994469,0.990268,2.006686,-0.507337,0.003020 +1.998038,-0.996347,0.993255,2.004476,-0.505242,0.002312 +1.998782,-0.998065,0.996241,2.002407,-0.503010,0.001412 +1.999718,-0.999616,0.999212,2.000486,-0.500650,0.000322 +2.000842,-1.000992,1.002155,1.998723,-0.498172,-0.000952 +2.002149,-1.002187,1.005057,1.997126,-0.495588,-0.002404 +2.003633,-1.003195,1.007905,1.995701,-0.492909,-0.004027 +2.005287,-1.004013,1.010685,1.994456,-0.490147,-0.005816 +2.007105,-1.004637,1.013387,1.993395,-0.487316,-0.007760 +2.009076,-1.005063,1.015996,1.992524,-0.484426,-0.009852 +2.011194,-1.005291,1.018502,1.991847,-0.481493,-0.012083 +2.013448,-1.005318,1.020894,1.991366,-0.478527,-0.014441 +2.015828,-1.005144,1.023160,1.991084,-0.475544,-0.016918 +2.018324,-1.004772,1.025290,1.991002,-0.472557,-0.019500 +2.020924,-1.004201,1.027276,1.991120,-0.469578,-0.022178 +2.023617,-1.003435,1.029107,1.991438,-0.466621,-0.024939 +2.026390,-1.002478,1.030776,1.991954,-0.463700,-0.027769 +2.029231,-1.001333,1.032275,1.992667,-0.460827,-0.030658 +2.032127,-1.000005,1.033597,1.993572,-0.458017,-0.033591 +2.035066,-0.998501,1.034737,1.994666,-0.455280,-0.036556 +2.038033,-0.996828,1.035690,1.995944,-0.452630,-0.039539 +2.041016,-0.994992,1.036450,1.997400,-0.450078,-0.042527 +2.044002,-0.993002,1.037015,1.999027,-0.447636,-0.045506 +2.046976,-0.990868,1.037382,2.000819,-0.445315,-0.048463 +2.049926,-0.988598,1.037550,2.002767,-0.443126,-0.051385 +2.052838,-0.986203,1.037517,2.004863,-0.441077,-0.054258 +2.055699,-0.983694,1.037285,2.007096,-0.439179,-0.057070 +2.058496,-0.981082,1.036853,2.009458,-0.437440,-0.059807 +2.061217,-0.978378,1.036224,2.011937,-0.435868,-0.062459 +2.063850,-0.975596,1.035400,2.014522,-0.434469,-0.065012 +2.066382,-0.972746,1.034386,2.017201,-0.433251,-0.067455 +2.068802,-0.969843,1.033186,2.019964,-0.432218,-0.069778 +2.071100,-0.966899,1.031805,2.022796,-0.431375,-0.071970 +2.073264,-0.963927,1.030250,2.025686,-0.430726,-0.074020 +2.075286,-0.960941,1.028527,2.028620,-0.430274,-0.075920 +2.077156,-0.957955,1.026645,2.031585,-0.430021,-0.077662 +2.078866,-0.954981,1.024611,2.034568,-0.429969,-0.079237 +2.080408,-0.952033,1.022435,2.037556,-0.430116,-0.080638 +2.081775,-0.949124,1.020127,2.040535,-0.430463,-0.081859 +2.082961,-0.946268,1.017697,2.043491,-0.431008,-0.082894 +2.083961,-0.943477,1.015156,2.046412,-0.431749,-0.083740 +2.084770,-0.940764,1.012515,2.049284,-0.432682,-0.084391 +2.085384,-0.938141,1.009787,2.052094,-0.433804,-0.084846 +2.085801,-0.935619,1.006983,2.054830,-0.435108,-0.085102 +2.086019,-0.933210,1.004116,2.057479,-0.436590,-0.085157 +2.086037,-0.930926,1.001199,2.060030,-0.438242,-0.085013 +2.085855,-0.928775,0.998246,2.062471,-0.440057,-0.084668 +2.085474,-0.926769,0.995268,2.064791,-0.442027,-0.084126 +2.084895,-0.924915,0.992281,2.066979,-0.444144,-0.083388 +2.084121,-0.923222,0.989297,2.069026,-0.446397,-0.082457 +2.083155,-0.921699,0.986329,2.070923,-0.448776,-0.081339 +2.082002,-0.920351,0.983392,2.072661,-0.451271,-0.080037 +2.080668,-0.919184,0.980497,2.074231,-0.453871,-0.078558 +2.079157,-0.918205,0.977659,2.075628,-0.456563,-0.076908 +2.077477,-0.917417,0.974890,2.076845,-0.459337,-0.075095 +2.075635,-0.916824,0.972202,2.077877,-0.462178,-0.073127 +2.073640,-0.916428,0.969608,2.078718,-0.465075,-0.071012 +2.071500,-0.916232,0.967119,2.079365,-0.468015,-0.068761 +2.069226,-0.916236,0.964746,2.079815,-0.470984,-0.066384 +2.066827,-0.916441,0.962500,2.080066,-0.473968,-0.063890 +2.064314,-0.916844,0.960392,2.080117,-0.476956,-0.061292 +2.061699,-0.917445,0.958430,2.079968,-0.479932,-0.058601 +2.058993,-0.918241,0.956623,2.079619,-0.482884,-0.055828 +2.056209,-0.919228,0.954980,2.079072,-0.485798,-0.052988 +2.053358,-0.920402,0.953508,2.078329,-0.488662,-0.050091 +2.050455,-0.921757,0.952214,2.077394,-0.491462,-0.047152 +2.047511,-0.923288,0.951103,2.076271,-0.494186,-0.044184 +2.044540,-0.924987,0.950180,2.074965,-0.496822,-0.041199 +2.041555,-0.926848,0.949450,2.073482,-0.499357,-0.038212 +2.038571,-0.928860,0.948916,2.071828,-0.501781,-0.035235 +2.035599,-0.931016,0.948579,2.070012,-0.504082,-0.032283 +2.032654,-0.933306,0.948443,2.068040,-0.506250,-0.029368 +2.029750,-0.935720,0.948507,2.065923,-0.508276,-0.026503 +2.026898,-0.938246,0.948771,2.063668,-0.510150,-0.023702 +2.024111,-0.940873,0.949233,2.061288,-0.511863,-0.020977 +2.021403,-0.943590,0.949893,2.058792,-0.513409,-0.018340 +2.018786,-0.946384,0.950746,2.056191,-0.514780,-0.015803 +2.016270,-0.949242,0.951789,2.053498,-0.515970,-0.013378 +2.013868,-0.952153,0.953018,2.050724,-0.516974,-0.011075 +2.011591,-0.955102,0.954426,2.047882,-0.517787,-0.008905 +2.009448,-0.958077,0.956008,2.044984,-0.518405,-0.006877 +2.007449,-0.961063,0.957756,2.042045,-0.518826,-0.005001 +2.005603,-0.964049,0.959663,2.039076,-0.519048,-0.003285 +2.003919,-0.967020,0.961719,2.036091,-0.519069,-0.001737 +2.002404,-0.969962,0.963916,2.033104,-0.518891,-0.000363 +2.001065,-0.972864,0.966244,2.030127,-0.518513,0.000829 +1.999907,-0.975711,0.968692,2.027176,-0.517937,0.001836 +1.998937,-0.978490,0.971249,2.024262,-0.517166,0.002651 +1.998158,-0.981190,0.973905,2.021398,-0.516203,0.003272 +1.997574,-0.983799,0.976646,2.018599,-0.515053,0.003696 +1.997188,-0.986304,0.979460,2.015876,-0.513721,0.003921 +1.997001,-0.988693,0.982336,2.013241,-0.512212,0.003945 +1.997014,-0.990958,0.985259,2.010707,-0.510534,0.003769 +1.997227,-0.993087,0.988217,2.008284,-0.508694,0.003394 +1.997639,-0.995070,0.991197,2.005984,-0.506701,0.002821 +1.998249,-0.996899,0.994185,2.003817,-0.504562,0.002053 +1.999053,-0.998566,0.997167,2.001793,-0.502289,0.001093 +2.000048,-1.000063,1.000131,1.999920,-0.499891,-0.000055 +2.001230,-1.001383,1.003063,1.998208,-0.497379,-0.001385 +2.002592,-1.002521,1.005949,1.996664,-0.494764,-0.002891 +2.004130,-1.003470,1.008777,1.995294,-0.492058,-0.004567 +2.005836,-1.004228,1.011535,1.994106,-0.489273,-0.006404 +2.007702,-1.004791,1.014209,1.993104,-0.486422,-0.008396 +2.009720,-1.005155,1.016787,1.992293,-0.483518,-0.010532 +2.011881,-1.005320,1.019259,1.991676,-0.480573,-0.012803 +2.014175,-1.005285,1.021613,1.991257,-0.477601,-0.015200 +2.016593,-1.005050,1.023838,1.991037,-0.474615,-0.017710 +2.019122,-1.004615,1.025924,1.991017,-0.471628,-0.020324 +2.021752,-1.003984,1.027862,1.991198,-0.468655,-0.023029 +2.024471,-1.003158,1.029644,1.991577,-0.465708,-0.025812 +2.027267,-1.002141,1.031261,1.992155,-0.462800,-0.028662 +2.030126,-1.000939,1.032706,1.992928,-0.459946,-0.031566 +2.033037,-0.999556,1.033972,1.993892,-0.457157,-0.034511 +2.035986,-0.997998,1.035054,1.995044,-0.454446,-0.037483 +2.038960,-0.996274,1.035947,1.996378,-0.451825,-0.040469 +2.041946,-0.994389,1.036647,1.997888,-0.449306,-0.043455 +2.044929,-0.992354,1.037151,1.999568,-0.446901,-0.046429 +2.047897,-0.990176,1.037456,2.001409,-0.444620,-0.049376 +2.050837,-0.987866,1.037561,2.003404,-0.442473,-0.052284 +2.053734,-0.985435,1.037466,2.005543,-0.440470,-0.055140 +2.056577,-0.982892,1.037171,2.007818,-0.438621,-0.057930 +2.059352,-0.980250,1.036678,2.010217,-0.436933,-0.060642 +2.062046,-0.977521,1.035988,2.012730,-0.435414,-0.063264 +2.064649,-0.974716,1.035105,2.015346,-0.434071,-0.065784 +2.067147,-0.971848,1.034032,2.018053,-0.432909,-0.068191 +2.069530,-0.968931,1.032776,2.020838,-0.431935,-0.070474 +2.071788,-0.965977,1.031340,2.023689,-0.431152,-0.072623 +2.073909,-0.962999,1.029732,2.026594,-0.430564,-0.074628 +2.075885,-0.960012,1.027958,2.029540,-0.430174,-0.076479 +2.077706,-0.957028,1.026028,2.032512,-0.429983,-0.078170 +2.079364,-0.954060,1.023949,2.035498,-0.429993,-0.079691 +2.080852,-0.951123,1.021731,2.038484,-0.430203,-0.081037 +2.082163,-0.948230,1.019384,2.041458,-0.430612,-0.082201 +2.083292,-0.945392,1.016918,2.044404,-0.431218,-0.083178 +2.084233,-0.942624,1.014345,2.047311,-0.432019,-0.083963 +2.084982,-0.939938,1.011675,2.050165,-0.433011,-0.084554 +2.085535,-0.937345,1.008922,2.052954,-0.434190,-0.084947 +2.085890,-0.934857,1.006097,2.055664,-0.435550,-0.085141 +2.086046,-0.932486,1.003213,2.058284,-0.437086,-0.085134 +2.086002,-0.930242,1.000284,2.060802,-0.438789,-0.084927 +2.085758,-0.928135,0.997321,2.063206,-0.440654,-0.084521 +2.085315,-0.926175,0.994339,2.065486,-0.442671,-0.083917 +2.084675,-0.924371,0.991351,2.067632,-0.444830,-0.083119 +2.083841,-0.922730,0.988371,2.069633,-0.447124,-0.082129 +2.082816,-0.921260,0.985411,2.071481,-0.449540,-0.080953 +2.081606,-0.919968,0.982486,2.073167,-0.452069,-0.079595 +2.080216,-0.918859,0.979608,2.074685,-0.454699,-0.078062 +2.078652,-0.917939,0.976790,2.076027,-0.457418,-0.076361 +2.076921,-0.917211,0.974044,2.077186,-0.460214,-0.074499 +2.075030,-0.916679,0.971384,2.078159,-0.463074,-0.072484 +2.072989,-0.916346,0.968822,2.078940,-0.465986,-0.070326 +2.070807,-0.916212,0.966368,2.079526,-0.468936,-0.068035 +2.068492,-0.916278,0.964033,2.079914,-0.471911,-0.065620 +2.066057,-0.916545,0.961829,2.080103,-0.474898,-0.063092 +2.063511,-0.917010,0.959765,2.080092,-0.477883,-0.060464 +2.060867,-0.917672,0.957851,2.079880,-0.480853,-0.057746 +2.058135,-0.918528,0.956094,2.079470,-0.483795,-0.054951 +2.055328,-0.919574,0.954504,2.078861,-0.486695,-0.052092 +2.052460,-0.920805,0.953086,2.078059,-0.489540,-0.049181 +2.049542,-0.922215,0.951848,2.077065,-0.492318,-0.046231 +2.046589,-0.923799,0.950795,2.075884,-0.495016,-0.043256 +2.043612,-0.925549,0.949932,2.074522,-0.497622,-0.040269 +2.040626,-0.927458,0.949263,2.072986,-0.500123,-0.037284 +2.037644,-0.929516,0.948790,2.071280,-0.502510,-0.034314 +2.034680,-0.931715,0.948515,2.069415,-0.504771,-0.031371 +2.031746,-0.934044,0.948441,2.067397,-0.506896,-0.028471 +2.028856,-0.936494,0.948567,2.065235,-0.508875,-0.025624 +2.026023,-0.939053,0.948893,2.062941,-0.510700,-0.022846 +2.023260,-0.941709,0.949417,2.060523,-0.512362,-0.020147 +2.020579,-0.944451,0.950138,2.057993,-0.513855,-0.017540 +2.017992,-0.947267,0.951050,2.055363,-0.515170,-0.015036 +2.015510,-0.950143,0.952152,2.052643,-0.516303,-0.012648 +2.013146,-0.953067,0.953437,2.049847,-0.517247,-0.010385 +2.010909,-0.956025,0.954900,2.046986,-0.518000,-0.008258 +2.008810,-0.959005,0.956534,2.044074,-0.518557,-0.006277 +2.006858,-0.961993,0.958333,2.041123,-0.518916,-0.004450 +2.005062,-0.964975,0.960287,2.038148,-0.519076,-0.002785 +2.003429,-0.967939,0.962388,2.035161,-0.519035,-0.001290 +2.001968,-0.970870,0.964627,2.032176,-0.518794,0.000027 +2.000685,-0.973756,0.966993,2.029206,-0.518355,0.001163 +1.999585,-0.976583,0.969476,2.026264,-0.517718,0.002110 +1.998674,-0.979339,0.972066,2.023365,-0.516887,0.002865 +1.997956,-0.982012,0.974749,2.020520,-0.515865,0.003425 +1.997433,-0.984590,0.977514,2.017743,-0.514658,0.003787 +1.997108,-0.987060,0.980349,2.015046,-0.513270,0.003950 +1.996983,-0.989412,0.983241,2.012441,-0.511708,0.003912 +1.997059,-0.991635,0.986176,2.009940,-0.509979,0.003674 +1.997334,-0.993720,0.989143,2.007555,-0.508090,0.003237 +1.997808,-0.995656,0.992126,2.005295,-0.506050,0.002603 +1.998479,-0.997436,0.995114,2.003171,-0.503869,0.001774 +1.999342,-0.999050,0.998092,2.001193,-0.501556,0.000756 +2.000396,-1.000493,1.001047,1.999370,-0.499121,-0.000449 +2.001634,-1.001757,1.003966,1.997709,-0.496576,-0.001835 +2.003052,-1.002836,1.006836,1.996219,-0.493931,-0.003394 +2.004643,-1.003727,1.009643,1.994905,-0.491200,-0.005121 +2.006399,-1.004424,1.012376,1.993774,-0.488393,-0.007008 +2.008314,-1.004926,1.015022,1.992831,-0.485524,-0.009045 +2.010377,-1.005228,1.017568,1.992080,-0.482605,-0.011225 +2.012581,-1.005331,1.020004,1.991525,-0.479650,-0.013536 +2.014915,-1.005233,1.022319,1.991167,-0.476672,-0.015969 +2.017368,-1.004936,1.024502,1.991009,-0.473685,-0.018513 +2.019930,-1.004440,1.026543,1.991052,-0.470701,-0.021156 +2.022589,-1.003747,1.028434,1.991294,-0.467735,-0.023887 +2.025333,-1.002862,1.030165,1.991736,-0.464798,-0.026692 +2.028150,-1.001787,1.031729,1.992375,-0.461906,-0.029561 +2.031027,-1.000528,1.033119,1.993207,-0.459070,-0.032479 +2.033951,-0.999090,1.034329,1.994231,-0.456304,-0.035433 +2.036909,-0.997479,1.035352,1.995440,-0.453620,-0.038411 +2.039888,-0.995704,1.036186,1.996829,-0.451030,-0.041398 +2.042875,-0.993772,1.036825,1.998393,-0.448545,-0.044382 +2.045855,-0.991691,1.037267,2.000124,-0.446177,-0.047349 +2.048815,-0.989471,1.037510,2.002014,-0.443937,-0.050286 +2.051743,-0.987122,1.037553,2.004054,-0.441834,-0.053179 +2.054625,-0.984655,1.037396,2.006237,-0.439878,-0.056015 +2.057448,-0.982080,1.037039,2.008551,-0.438078,-0.058783 +2.060199,-0.979410,1.036484,2.010987,-0.436442,-0.061468 +2.062866,-0.976655,1.035734,2.013533,-0.434977,-0.064060 +2.065438,-0.973830,1.034791,2.016179,-0.433689,-0.066546 +2.067902,-0.970945,1.033661,2.018911,-0.432586,-0.068915 +2.070247,-0.968015,1.032348,2.021719,-0.431671,-0.071158 +2.072463,-0.965052,1.030858,2.024588,-0.430948,-0.073263 +2.074540,-0.962070,1.029197,2.027507,-0.430422,-0.075221 +2.076468,-0.959082,1.027374,2.030462,-0.430093,-0.077023 +2.078239,-0.956102,1.025397,2.033440,-0.429965,-0.078662 +2.079845,-0.953143,1.023273,2.036428,-0.430037,-0.080129 +2.081279,-0.950218,1.021014,2.039411,-0.430309,-0.081419 +2.082534,-0.947340,1.018629,2.042378,-0.430779,-0.082525 +2.083605,-0.944523,1.016128,2.045314,-0.431447,-0.083443 +2.084487,-0.941779,1.013524,2.048206,-0.432308,-0.084168 +2.085175,-0.939120,1.010827,2.051041,-0.433358,-0.084698 +2.085667,-0.936559,1.008050,2.053806,-0.434594,-0.085029 +2.085960,-0.934106,1.005206,2.056490,-0.436010,-0.085160 +2.086054,-0.931774,1.002306,2.059079,-0.437598,-0.085091 +2.085948,-0.929571,0.999365,2.061563,-0.439353,-0.084822 +2.085641,-0.927509,0.996395,2.063929,-0.441265,-0.084354 +2.085137,-0.925597,0.993410,2.066168,-0.443328,-0.083689 +2.084436,-0.923842,0.990423,2.068270,-0.445530,-0.082831 +2.083542,-0.922254,0.987447,2.070225,-0.447863,-0.081783 +2.082460,-0.920839,0.984497,2.072023,-0.450316,-0.080550 +2.081193,-0.919603,0.981585,2.073658,-0.452877,-0.079137 +2.079748,-0.918553,0.978724,2.075121,-0.455536,-0.077551 +2.078131,-0.917692,0.975927,2.076407,-0.458280,-0.075798 +2.076349,-0.917025,0.973207,2.077509,-0.461097,-0.073888 +2.074411,-0.916554,0.970576,2.078423,-0.463975,-0.071828 +2.072325,-0.916283,0.968046,2.079143,-0.466900,-0.069627 +2.070100,-0.916211,0.965628,2.079668,-0.469859,-0.067296 +2.067747,-0.916340,0.963333,2.079994,-0.472840,-0.064845 +2.065276,-0.916668,0.961172,2.080121,-0.475828,-0.062285 +2.062698,-0.917195,0.959153,2.080048,-0.478810,-0.059627 +2.060025,-0.917918,0.957287,2.079774,-0.481772,-0.056884 +2.057269,-0.918833,0.955581,2.079301,-0.484702,-0.054068 +2.054442,-0.919937,0.954044,2.078632,-0.487587,-0.051191 +2.051557,-0.921224,0.952682,2.077770,-0.490412,-0.048267 +2.048627,-0.922690,0.951501,2.076717,-0.493167,-0.045308 +2.045664,-0.924326,0.950506,2.075480,-0.495837,-0.042328 +2.042683,-0.926126,0.949703,2.074063,-0.498412,-0.039340 +2.039697,-0.928083,0.949094,2.072473,-0.500879,-0.036358 +2.036719,-0.930186,0.948683,2.070717,-0.503228,-0.033395 +2.033763,-0.932426,0.948471,2.068803,-0.505447,-0.030464 +2.030841,-0.934794,0.948459,2.066739,-0.507528,-0.027579 +2.027968,-0.937279,0.948647,2.064535,-0.509460,-0.024752 +2.025155,-0.939869,0.949035,2.062201,-0.511235,-0.021997 +2.022416,-0.942554,0.949621,2.059748,-0.512845,-0.019325 +2.019763,-0.945320,0.950401,2.057185,-0.514283,-0.016749 +2.017208,-0.948156,0.951373,2.054526,-0.515542,-0.014280 +2.014762,-0.951048,0.952532,2.051781,-0.516617,-0.011930 +2.012436,-0.953984,0.953873,2.048963,-0.517502,-0.009708 +2.010241,-0.956951,0.955390,2.046085,-0.518194,-0.007626 +2.008187,-0.959935,0.957077,2.043159,-0.518690,-0.005691 +2.006282,-0.962922,0.958924,2.040200,-0.518987,-0.003914 +2.004536,-0.965900,0.960925,2.037219,-0.519085,-0.002302 +2.002956,-0.968855,0.963070,2.034231,-0.518982,-0.000861 +2.001550,-0.971773,0.965350,2.031250,-0.518679,0.000400 +2.000323,-0.974642,0.967754,2.028287,-0.518178,0.001478 +1.999281,-0.977449,0.970271,2.025357,-0.517480,0.002366 +1.998430,-0.980181,0.972891,2.022473,-0.516589,0.003061 +1.997772,-0.982825,0.975601,2.019648,-0.515509,0.003559 +1.997311,-0.985370,0.978389,2.016895,-0.514245,0.003859 +1.997048,-0.987805,0.981243,2.014225,-0.512802,0.003959 +1.996990,-0.988976,0.982689,2.012930,-0.512017,0.003934 +1.996980,-0.990115,0.984146,2.011650,-0.511191,0.003863 +1.997020,-0.991218,0.985611,2.010390,-0.510329,0.003748 +1.997090,-0.992282,0.987082,2.009140,-0.509434,0.003592 +1.997210,-0.993306,0.988555,2.007910,-0.508507,0.003398 +1.997370,-0.994287,0.990029,2.006680,-0.507554,0.003170 +1.997550,-0.995222,0.991500,2.005460,-0.506576,0.002911 +1.997770,-0.996108,0.992966,2.004240,-0.505577,0.002623 +1.998020,-0.996943,0.994424,2.003020,-0.504559,0.002311 +1.998300,-0.997724,0.995873,2.001800,-0.503527,0.001976 +1.998600,-0.998449,0.997308,2.000560,-0.502483,0.001622 +1.998920,-0.999115,0.998729,1.999320,-0.501430,0.001252 +1.999260,-0.999720,1.000130,1.998070,-0.500372,0.000870 +1.999620,-1.000260,1.001510,1.996800,-0.499311,0.000478 +1.999990,-1.000730,1.002870,1.995510,-0.498250,0.000080 +2.000370,-1.001140,1.004200,1.994190,-0.497193,-0.000322 +2.000760,-1.001470,1.005510,1.992860,-0.496143,-0.000724 +2.001150,-1.001730,1.006780,1.991490,-0.495103,-0.001123 +2.001550,-1.001910,1.008020,1.990090,-0.494076,-0.001516 +2.001950,-1.002010,1.009230,1.988650,-0.493065,-0.001900 +2.002340,-1.002030,1.010390,1.987180,-0.492073,-0.002272 +2.002740,-1.001960,1.011520,1.985660,-0.491101,-0.002629 +2.003120,-1.001810,1.012600,1.984100,-0.490145,-0.002967 +2.003500,-1.001570,1.013630,1.982500,-0.489202,-0.003284 +2.003860,-1.001230,1.014610,1.980840,-0.488270,-0.003576 +2.004210,-1.000810,1.015550,1.979130,-0.487345,-0.003841 +2.004540,-1.000290,1.016420,1.977360,-0.486424,-0.004074 +2.004850,-0.999694,1.017250,1.975530,-0.485504,-0.004274 +2.005130,-0.999012,1.018010,1.973640,-0.484584,-0.004439 +2.005400,-0.998250,1.018710,1.971680,-0.483664,-0.004573 +2.005630,-0.997410,1.019340,1.969660,-0.482744,-0.004679 +2.005830,-0.996496,1.019910,1.967560,-0.481825,-0.004760 +2.006000,-0.995509,1.020410,1.965380,-0.480905,-0.004818 +2.006140,-0.994453,1.020830,1.963130,-0.479985,-0.004858 +2.006230,-0.993329,1.021180,1.960790,-0.479065,-0.004881 +2.006290,-0.992141,1.021460,1.958370,-0.478145,-0.004892 +2.006300,-0.990891,1.021650,1.955860,-0.477225,-0.004894 +2.006270,-0.989581,1.021760,1.953260,-0.476305,-0.004889 +2.006180,-0.988215,1.021780,1.950570,-0.475386,-0.004880 +2.006050,-0.986794,1.021720,1.947800,-0.474466,-0.004871 +2.005860,-0.985322,1.021560,1.944940,-0.473546,-0.004862 +2.005610,-0.983801,1.021320,1.942000,-0.472626,-0.004853 +2.005310,-0.982234,1.020970,1.938980,-0.471706,-0.004844 +2.004940,-0.980623,1.020540,1.935890,-0.470786,-0.004835 +2.004510,-0.978971,1.020010,1.932730,-0.469866,-0.004825 +2.004020,-0.977280,1.019390,1.929500,-0.468947,-0.004816 +2.003450,-0.975553,1.018690,1.926210,-0.468027,-0.004807 +2.002810,-0.973793,1.017910,1.922850,-0.467107,-0.004798 +2.002100,-0.972002,1.017040,1.919440,-0.466187,-0.004789 +2.001310,-0.970182,1.016100,1.915970,-0.465267,-0.004780 +2.000440,-0.968338,1.015080,1.912450,-0.464347,-0.004770 +1.999480,-0.966470,1.013990,1.908880,-0.463427,-0.004761 +1.998450,-0.964581,1.012830,1.905260,-0.462508,-0.004752 +1.997320,-0.962675,1.011600,1.901600,-0.461588,-0.004743 +1.996100,-0.960754,1.010310,1.897900,-0.460668,-0.004734 +1.994800,-0.958820,1.008950,1.894170,-0.459748,-0.004725 +1.993390,-0.956876,1.007530,1.890390,-0.458828,-0.004715 +1.991890,-0.954925,1.006060,1.886590,-0.457908,-0.004706 +1.990290,-0.952969,1.004530,1.882770,-0.456988,-0.004697 +1.988580,-0.951010,1.002950,1.878910,-0.456069,-0.004688 +1.986770,-0.949052,1.001320,1.875040,-0.455149,-0.004679 +1.984850,-0.947093,0.999645,1.871150,-0.454229,-0.004670 +1.982820,-0.945134,0.997925,1.867240,-0.453309,-0.004661 +1.980680,-0.943176,0.996163,1.863320,-0.452389,-0.004651 +1.978440,-0.941217,0.994361,1.859400,-0.451469,-0.004642 +1.976090,-0.939258,0.992524,1.855460,-0.450549,-0.004633 +1.973650,-0.937300,0.990653,1.851530,-0.449630,-0.004624 +1.971110,-0.935341,0.988750,1.847590,-0.448710,-0.004615 +1.968480,-0.933382,0.986819,1.843650,-0.447790,-0.004606 +1.965760,-0.931423,0.984861,1.839720,-0.446870,-0.004596 +1.962940,-0.929465,0.982881,1.835780,-0.445950,-0.004587 +1.960040,-0.927506,0.980879,1.831850,-0.445030,-0.004578 +1.957060,-0.925547,0.978859,1.827910,-0.444110,-0.004569 +1.954000,-0.923589,0.976824,1.823980,-0.443191,-0.004560 +1.950850,-0.921630,0.974775,1.820040,-0.442271,-0.004551 +1.947630,-0.919671,0.972716,1.816100,-0.441351,-0.004542 +1.944340,-0.917713,0.970650,1.812170,-0.440431,-0.004532 +1.940980,-0.915754,0.968577,1.808230,-0.439511,-0.004523 +1.937550,-0.913795,0.966503,1.804300,-0.438591,-0.004514 +1.934050,-0.911837,0.964427,1.800360,-0.437671,-0.004505 +1.930490,-0.909878,0.962352,1.796420,-0.436752,-0.004496 +1.926880,-0.907919,0.960277,1.792490,-0.435832,-0.004487 +1.923200,-0.905960,0.958202,1.788550,-0.434912,-0.004477 +1.919470,-0.904002,0.956126,1.784620,-0.433992,-0.004468 +1.915680,-0.902043,0.954051,1.780680,-0.433072,-0.004459 +1.911850,-0.900084,0.951976,1.776750,-0.432152,-0.004450 +1.907970,-0.898126,0.949901,1.772810,-0.431232,-0.004441 +1.904040,-0.896167,0.947825,1.768870,-0.430312,-0.004432 +1.900070,-0.894208,0.945750,1.764940,-0.429393,-0.004422 +1.896060,-0.892250,0.943675,1.761000,-0.428473,-0.004413 +1.892020,-0.890291,0.941600,1.757070,-0.427553,-0.004404 +1.887940,-0.888332,0.939524,1.753130,-0.426633,-0.004395 +1.883830,-0.886374,0.937449,1.749200,-0.425713,-0.004386 +1.879690,-0.884415,0.935374,1.745260,-0.424793,-0.004377 +1.875520,-0.882456,0.933299,1.741320,-0.423873,-0.004368 +1.871330,-0.880497,0.931223,1.737390,-0.422954,-0.004358 +1.867120,-0.878539,0.929148,1.733450,-0.422034,-0.004349 +1.862890,-0.876580,0.927073,1.729520,-0.421114,-0.004340 +1.858640,-0.874621,0.924998,1.725580,-0.420194,-0.004331 +1.854380,-0.872663,0.922922,1.721640,-0.419274,-0.004322 +1.850110,-0.870704,0.920847,1.717710,-0.418354,-0.004313 +1.845830,-0.868745,0.918772,1.713770,-0.417434,-0.004303 +1.841550,-0.866787,0.916697,1.709840,-0.416515,-0.004294 +1.837260,-0.864828,0.914622,1.705900,-0.415595,-0.004285 +1.832970,-0.862869,0.912546,1.701970,-0.414675,-0.004276 +1.828680,-0.860911,0.910471,1.698030,-0.413755,-0.004267 +1.824390,-0.858952,0.908396,1.694090,-0.412835,-0.004258 +1.820100,-0.856993,0.906321,1.690160,-0.411915,-0.004248 +1.815810,-0.855035,0.904245,1.686220,-0.410995,-0.004239 +1.811530,-0.853076,0.902170,1.682290,-0.410076,-0.004230 +1.807240,-0.851117,0.900095,1.678350,-0.409156,-0.004221 +1.802950,-0.849158,0.898020,1.674410,-0.408236,-0.004212 +1.798660,-0.847200,0.895944,1.670480,-0.407316,-0.004203 +1.794370,-0.845241,0.893869,1.666540,-0.406396,-0.004194 +1.790080,-0.843282,0.891794,1.662610,-0.405476,-0.004184 +1.785790,-0.841324,0.889719,1.658670,-0.404556,-0.004175 +1.781500,-0.839365,0.887643,1.654740,-0.403637,-0.004166 +1.777210,-0.837406,0.885568,1.650800,-0.402717,-0.004157 +1.772920,-0.835448,0.883493,1.646860,-0.401797,-0.004148 +1.768630,-0.833489,0.881418,1.642930,-0.400877,-0.004139 +1.764350,-0.831530,0.879342,1.638990,-0.399957,-0.004129 +1.760060,-0.829572,0.877267,1.635060,-0.399037,-0.004120 +1.755770,-0.827613,0.875192,1.631120,-0.398117,-0.004111 +1.751480,-0.825654,0.873117,1.627180,-0.397198,-0.004102 +1.747190,-0.823695,0.871041,1.623250,-0.396278,-0.004093 +1.742900,-0.821737,0.868966,1.619310,-0.395358,-0.004084 +1.738610,-0.819778,0.866891,1.615380,-0.394438,-0.004075 +1.734320,-0.817819,0.864816,1.611440,-0.393518,-0.004065 +1.730030,-0.815861,0.862740,1.607510,-0.392598,-0.004056 +1.725740,-0.813902,0.860665,1.603570,-0.391678,-0.004047 +1.721450,-0.811943,0.858590,1.599630,-0.390759,-0.004038 +1.717160,-0.809985,0.856515,1.595700,-0.389839,-0.004029 +1.712880,-0.808026,0.854439,1.591760,-0.388919,-0.004020 +1.708590,-0.806067,0.852364,1.587830,-0.387999,-0.004010 +1.704300,-0.804109,0.850289,1.583890,-0.387079,-0.004001 +1.700010,-0.802150,0.848214,1.579950,-0.386159,-0.003992 +1.695720,-0.800191,0.846138,1.576020,-0.385239,-0.003983 +1.691430,-0.798232,0.844063,1.572080,-0.384320,-0.003974 +1.687140,-0.796274,0.841988,1.568150,-0.383400,-0.003965 +1.682850,-0.794315,0.839913,1.564210,-0.382480,-0.003955 +1.678560,-0.792356,0.837837,1.560280,-0.381560,-0.003946 +1.674270,-0.790398,0.835762,1.556340,-0.380640,-0.003937 +1.669980,-0.788439,0.833687,1.552400,-0.379720,-0.003928 +1.665700,-0.786480,0.831612,1.548470,-0.378800,-0.003919 +1.661410,-0.784522,0.829536,1.544530,-0.377881,-0.003910 +1.657120,-0.782563,0.827461,1.540600,-0.376961,-0.003901 +1.652830,-0.780604,0.825386,1.536660,-0.376041,-0.003891 +1.648540,-0.778646,0.823311,1.532720,-0.375121,-0.003882 +1.644250,-0.776687,0.821235,1.528790,-0.374201,-0.003873 +1.639960,-0.774728,0.819160,1.524850,-0.373281,-0.003864 +1.635670,-0.772769,0.817085,1.520920,-0.372361,-0.003855 +1.631380,-0.770811,0.815010,1.516980,-0.371442,-0.003846 +1.627090,-0.768852,0.812934,1.513050,-0.370522,-0.003836 +1.622800,-0.766893,0.810859,1.509110,-0.369602,-0.003827 +1.618520,-0.764935,0.808784,1.505170,-0.368682,-0.003818 +1.614230,-0.762976,0.806709,1.501240,-0.367762,-0.003809 +1.609940,-0.761017,0.804633,1.497300,-0.366842,-0.003800 +1.605650,-0.759059,0.802558,1.493370,-0.365922,-0.003791 +1.601360,-0.757100,0.800483,1.489430,-0.365003,-0.003782 +1.597070,-0.755141,0.798408,1.485490,-0.364083,-0.003772 +1.592780,-0.753183,0.796332,1.481560,-0.363163,-0.003763 +1.588490,-0.751224,0.794257,1.477620,-0.362243,-0.003754 +1.584200,-0.749265,0.792182,1.473690,-0.361323,-0.003745 +1.579910,-0.747307,0.790107,1.469750,-0.360403,-0.003736 +1.575620,-0.745348,0.788031,1.465820,-0.359483,-0.003727 +1.571340,-0.743389,0.785956,1.461880,-0.358564,-0.003717 +1.567050,-0.741430,0.783881,1.457940,-0.357644,-0.003708 +1.562760,-0.739472,0.781806,1.454010,-0.356724,-0.003699 +1.558470,-0.737513,0.779730,1.450070,-0.355804,-0.003690 +1.554180,-0.735554,0.777655,1.446140,-0.354884,-0.003681 +1.549890,-0.733596,0.775580,1.442200,-0.353964,-0.003672 +1.545600,-0.731637,0.773505,1.438260,-0.353044,-0.003662 +1.541310,-0.729678,0.771429,1.434330,-0.352125,-0.003653 +1.537020,-0.727720,0.769354,1.430390,-0.351205,-0.003644 +1.532730,-0.725761,0.767279,1.426460,-0.350285,-0.003635 +1.528440,-0.723802,0.765204,1.422520,-0.349365,-0.003626 +1.524160,-0.721844,0.763128,1.418590,-0.348445,-0.003617 +1.519870,-0.719885,0.761053,1.414650,-0.347525,-0.003608 +1.515580,-0.717926,0.758978,1.410710,-0.346605,-0.003598 +1.511290,-0.715967,0.756903,1.406780,-0.345686,-0.003589 +1.507000,-0.714009,0.754827,1.402840,-0.344766,-0.003580 +1.502710,-0.712050,0.752752,1.398910,-0.343846,-0.003571 +1.498420,-0.710091,0.750677,1.394970,-0.342926,-0.003562 +1.494130,-0.708133,0.748602,1.391030,-0.342006,-0.003553 +1.489840,-0.706174,0.746526,1.387100,-0.341086,-0.003543 +1.485550,-0.704215,0.744451,1.383160,-0.340166,-0.003534 +1.481260,-0.702257,0.742376,1.379230,-0.339247,-0.003525 +1.476980,-0.700298,0.740301,1.375290,-0.338327,-0.003516 +1.472690,-0.698339,0.738225,1.371360,-0.337407,-0.003507 +1.468400,-0.696381,0.736150,1.367420,-0.336487,-0.003498 +1.464110,-0.694422,0.734075,1.363480,-0.335567,-0.003489 +1.459820,-0.692463,0.732000,1.359550,-0.334647,-0.003479 +1.455530,-0.690504,0.729924,1.355610,-0.333727,-0.003470 +1.451240,-0.688546,0.727849,1.351680,-0.332808,-0.003461 +1.446950,-0.686587,0.725774,1.347740,-0.331888,-0.003452 +1.442660,-0.684628,0.723699,1.343800,-0.330968,-0.003443 +1.438370,-0.682670,0.721623,1.339870,-0.330048,-0.003434 +1.434080,-0.680711,0.719548,1.335930,-0.329128,-0.003424 +1.429800,-0.678752,0.717473,1.332000,-0.328208,-0.003415 +1.425510,-0.676794,0.715398,1.328060,-0.327288,-0.003406 +1.421220,-0.674835,0.713322,1.324130,-0.326369,-0.003397 +1.416930,-0.672876,0.711247,1.320190,-0.325449,-0.003388 +1.412640,-0.670918,0.709172,1.316250,-0.324529,-0.003379 +1.408350,-0.668959,0.707097,1.312320,-0.323609,-0.003369 +1.404060,-0.667000,0.705021,1.308380,-0.322689,-0.003360 +1.399770,-0.665042,0.702946,1.304450,-0.321769,-0.003351 +1.395480,-0.663083,0.700871,1.300510,-0.320849,-0.003342 +1.391190,-0.661124,0.698796,1.296570,-0.319930,-0.003333 +1.386900,-0.659165,0.696720,1.292640,-0.319010,-0.003324 +1.382620,-0.657207,0.694645,1.288700,-0.318090,-0.003315 +1.378330,-0.655248,0.692570,1.284770,-0.317170,-0.003305 +1.374040,-0.653289,0.690495,1.280830,-0.316250,-0.003296 +1.369750,-0.651331,0.688419,1.276900,-0.315330,-0.003287 +1.365460,-0.649372,0.686344,1.272960,-0.314410,-0.003278 +1.361170,-0.647413,0.684269,1.269020,-0.313491,-0.003269 +1.356880,-0.645455,0.682194,1.265090,-0.312571,-0.003260 +1.352590,-0.643496,0.680118,1.261150,-0.311651,-0.003250 +1.348300,-0.641537,0.678043,1.257220,-0.310731,-0.003241 +1.344010,-0.639579,0.675968,1.253280,-0.309811,-0.003232 +1.339720,-0.637620,0.673893,1.249340,-0.308891,-0.003223 +1.335440,-0.635661,0.671817,1.245410,-0.307971,-0.003214 +1.331150,-0.633702,0.669742,1.241470,-0.307052,-0.003205 +1.326860,-0.631744,0.667667,1.237540,-0.306132,-0.003196 +1.322570,-0.629785,0.665592,1.233600,-0.305212,-0.003186 +1.318280,-0.627826,0.663516,1.229670,-0.304292,-0.003177 +1.313990,-0.625868,0.661441,1.225730,-0.303372,-0.003168 +1.309700,-0.623909,0.659366,1.221790,-0.302452,-0.003159 +1.305410,-0.621950,0.657291,1.217860,-0.301532,-0.003150 +1.301120,-0.619992,0.655215,1.213920,-0.300613,-0.003141 +1.296830,-0.618033,0.653140,1.209990,-0.299693,-0.003131 +1.292540,-0.616074,0.651065,1.206050,-0.298773,-0.003122 +1.288260,-0.614116,0.648990,1.202110,-0.297853,-0.003113 +1.283970,-0.612157,0.646914,1.198180,-0.296933,-0.003104 +1.279680,-0.610198,0.644839,1.194240,-0.296013,-0.003095 +1.275390,-0.608239,0.642764,1.190310,-0.295093,-0.003086 +1.271100,-0.606281,0.640689,1.186370,-0.294174,-0.003076 +1.266810,-0.604322,0.638613,1.182440,-0.293254,-0.003067 +1.262520,-0.602363,0.636538,1.178500,-0.292334,-0.003058 +1.258230,-0.600405,0.634463,1.174560,-0.291414,-0.003049 +1.253940,-0.598446,0.632388,1.170630,-0.290494,-0.003040 +1.249650,-0.596487,0.630313,1.166690,-0.289574,-0.003031 +1.245360,-0.594529,0.628237,1.162760,-0.288654,-0.003022 +1.241070,-0.592570,0.626162,1.158820,-0.287735,-0.003012 +1.236790,-0.590611,0.624087,1.154880,-0.286815,-0.003003 +1.232500,-0.588653,0.622012,1.150950,-0.285895,-0.002994 +1.228210,-0.586694,0.619936,1.147010,-0.284975,-0.002985 +1.223920,-0.584735,0.617861,1.143080,-0.284055,-0.002976 +1.219630,-0.582776,0.615786,1.139140,-0.283135,-0.002967 +1.215340,-0.580818,0.613711,1.135210,-0.282215,-0.002957 +1.211050,-0.578859,0.611635,1.131270,-0.281296,-0.002948 +1.206760,-0.576900,0.609560,1.127330,-0.280376,-0.002939 +1.202470,-0.574942,0.607485,1.123400,-0.279456,-0.002930 +1.198180,-0.572983,0.605410,1.119460,-0.278536,-0.002921 +1.193890,-0.571024,0.603334,1.115530,-0.277616,-0.002912 +1.189610,-0.569066,0.601259,1.111590,-0.276696,-0.002903 +1.185320,-0.567107,0.599184,1.107650,-0.275776,-0.002893 +1.181030,-0.565148,0.597109,1.103720,-0.274857,-0.002884 +1.176740,-0.563190,0.595033,1.099780,-0.273937,-0.002875 +1.172450,-0.561231,0.592958,1.095850,-0.273017,-0.002866 +1.168160,-0.559272,0.590883,1.091910,-0.272097,-0.002857 +1.163870,-0.557314,0.588808,1.087980,-0.271177,-0.002848 +1.159580,-0.555355,0.586732,1.084040,-0.270257,-0.002838 +1.155290,-0.553396,0.584657,1.080100,-0.269337,-0.002829 +1.151000,-0.551437,0.582582,1.076170,-0.268417,-0.002820 +1.146710,-0.549479,0.580507,1.072230,-0.267498,-0.002811 +1.142430,-0.547520,0.578431,1.068300,-0.266578,-0.002802 +1.138140,-0.545561,0.576356,1.064360,-0.265658,-0.002793 +1.133850,-0.543603,0.574281,1.060420,-0.264738,-0.002783 +1.129560,-0.541644,0.572206,1.056490,-0.263818,-0.002774 +1.125270,-0.539685,0.570130,1.052550,-0.262898,-0.002765 +1.120980,-0.537727,0.568055,1.048620,-0.261978,-0.002756 +1.116690,-0.535768,0.565980,1.044680,-0.261059,-0.002747 +1.112400,-0.533809,0.563905,1.040750,-0.260139,-0.002738 +1.108110,-0.531851,0.561829,1.036810,-0.259219,-0.002729 +1.103820,-0.529892,0.559754,1.032870,-0.258299,-0.002719 +1.099530,-0.527933,0.557679,1.028940,-0.257379,-0.002710 +1.095250,-0.525974,0.555604,1.025000,-0.256459,-0.002701 +1.090960,-0.524016,0.553528,1.021070,-0.255539,-0.002692 +1.086670,-0.522057,0.551453,1.017130,-0.254620,-0.002683 +1.082380,-0.520098,0.549378,1.013190,-0.253700,-0.002674 +1.078090,-0.518140,0.547303,1.009260,-0.252780,-0.002664 +1.073800,-0.516181,0.545227,1.005320,-0.251860,-0.002655 +1.069510,-0.514222,0.543152,1.001390,-0.250940,-0.002646 +1.065220,-0.512264,0.541077,0.997451,-0.250020,-0.002637 +1.060930,-0.510305,0.539002,0.993515,-0.249100,-0.002628 +1.056640,-0.508346,0.536926,0.989580,-0.248181,-0.002619 +1.052350,-0.506388,0.534851,0.985644,-0.247261,-0.002610 +1.048070,-0.504429,0.532776,0.981708,-0.246341,-0.002600 +1.043780,-0.502470,0.530701,0.977772,-0.245421,-0.002591 +1.039490,-0.500511,0.528625,0.973836,-0.244501,-0.002582 +1.035200,-0.498553,0.526550,0.969900,-0.243581,-0.002573 +1.030910,-0.496594,0.524475,0.965965,-0.242661,-0.002564 +1.026620,-0.494635,0.522400,0.962029,-0.241742,-0.002555 +1.022330,-0.492677,0.520324,0.958093,-0.240822,-0.002545 +1.018040,-0.490718,0.518249,0.954157,-0.239902,-0.002536 +1.013750,-0.488759,0.516174,0.950221,-0.238982,-0.002527 +1.009460,-0.486801,0.514099,0.946286,-0.238062,-0.002518 +1.005170,-0.484842,0.512023,0.942350,-0.237142,-0.002509 +1.000890,-0.482883,0.509948,0.938414,-0.236222,-0.002500 +0.996596,-0.480925,0.507873,0.934478,-0.235303,-0.002490 +0.992307,-0.478966,0.505798,0.930542,-0.234383,-0.002481 +0.988018,-0.477007,0.503722,0.926606,-0.233463,-0.002472 +0.983729,-0.475048,0.501647,0.922671,-0.232543,-0.002463 +0.979440,-0.473090,0.499572,0.918735,-0.231623,-0.002454 +0.975151,-0.471131,0.497497,0.914799,-0.230703,-0.002445 +0.970862,-0.469172,0.495421,0.910863,-0.229783,-0.002436 +0.966573,-0.467214,0.493346,0.906927,-0.228864,-0.002426 +0.962284,-0.465255,0.491271,0.902991,-0.227944,-0.002417 +0.957994,-0.463296,0.489196,0.899056,-0.227024,-0.002408 +0.953705,-0.461338,0.487120,0.895120,-0.226104,-0.002399 +0.949416,-0.459379,0.485045,0.891184,-0.225184,-0.002390 +0.945127,-0.457420,0.482970,0.887248,-0.224264,-0.002381 +0.940838,-0.455462,0.480895,0.883312,-0.223344,-0.002371 +0.936549,-0.453503,0.478819,0.879376,-0.222425,-0.002362 +0.932260,-0.451544,0.476744,0.875441,-0.221505,-0.002353 +0.927971,-0.449586,0.474669,0.871505,-0.220585,-0.002344 +0.923682,-0.447627,0.472594,0.867569,-0.219665,-0.002335 +0.919393,-0.445668,0.470518,0.863633,-0.218745,-0.002326 +0.915103,-0.443709,0.468443,0.859697,-0.217825,-0.002317 +0.910814,-0.441751,0.466368,0.855761,-0.216905,-0.002307 +0.906525,-0.439792,0.464293,0.851826,-0.215986,-0.002298 +0.902236,-0.437833,0.462217,0.847890,-0.215066,-0.002289 +0.897947,-0.435875,0.460142,0.843954,-0.214146,-0.002280 +0.893658,-0.433916,0.458067,0.840018,-0.213226,-0.002271 +0.889369,-0.431957,0.455992,0.836082,-0.212306,-0.002262 +0.885080,-0.429999,0.453916,0.832146,-0.211386,-0.002252 +0.880791,-0.428040,0.451841,0.828211,-0.210466,-0.002243 +0.876502,-0.426081,0.449766,0.824275,-0.209547,-0.002234 +0.872212,-0.424123,0.447691,0.820339,-0.208627,-0.002225 +0.867923,-0.422164,0.445615,0.816403,-0.207707,-0.002216 +0.863634,-0.420205,0.443540,0.812467,-0.206787,-0.002207 +0.859345,-0.418246,0.441465,0.808531,-0.205867,-0.002197 +0.855056,-0.416288,0.439390,0.804596,-0.204947,-0.002188 +0.850767,-0.414329,0.437314,0.800660,-0.204027,-0.002179 +0.846478,-0.412370,0.435239,0.796724,-0.203108,-0.002170 +0.842189,-0.410412,0.433164,0.792788,-0.202188,-0.002161 +0.837900,-0.408453,0.431089,0.788852,-0.201268,-0.002152 +0.833611,-0.406494,0.429013,0.784916,-0.200348,-0.002143 +0.829321,-0.404536,0.426938,0.780981,-0.199428,-0.002133 +0.825032,-0.402577,0.424863,0.777045,-0.198508,-0.002124 +0.820743,-0.400618,0.422788,0.773109,-0.197588,-0.002115 +0.816454,-0.398660,0.420712,0.769173,-0.196669,-0.002106 +0.812165,-0.396701,0.418637,0.765237,-0.195749,-0.002097 +0.807876,-0.394742,0.416562,0.761301,-0.194829,-0.002088 +0.803587,-0.392783,0.414487,0.757366,-0.193909,-0.002078 +0.799298,-0.390825,0.412411,0.753430,-0.192989,-0.002069 +0.795009,-0.388866,0.410336,0.749494,-0.192069,-0.002060 +0.790720,-0.386907,0.408261,0.745558,-0.191149,-0.002051 +0.786430,-0.384949,0.406186,0.741622,-0.190230,-0.002042 +0.782141,-0.382990,0.404110,0.737686,-0.189310,-0.002033 +0.777852,-0.381031,0.402035,0.733751,-0.188390,-0.002024 +0.773563,-0.379073,0.399960,0.729815,-0.187470,-0.002014 +0.769274,-0.377114,0.397885,0.725879,-0.186550,-0.002005 +0.764985,-0.375155,0.395809,0.721943,-0.185630,-0.001996 +0.760696,-0.373197,0.393734,0.718007,-0.184710,-0.001987 +0.756407,-0.371238,0.391659,0.714071,-0.183791,-0.001978 +0.752118,-0.369279,0.389584,0.710136,-0.182871,-0.001969 +0.747829,-0.367321,0.387508,0.706200,-0.181951,-0.001959 +0.743539,-0.365362,0.385433,0.702264,-0.181031,-0.001950 +0.739250,-0.363403,0.383358,0.698328,-0.180111,-0.001941 +0.734961,-0.361444,0.381283,0.694392,-0.179191,-0.001932 +0.730672,-0.359486,0.379207,0.690456,-0.178271,-0.001923 +0.726383,-0.357527,0.377132,0.686521,-0.177352,-0.001914 +0.722094,-0.355568,0.375057,0.682585,-0.176432,-0.001904 +0.717805,-0.353610,0.372982,0.678649,-0.175512,-0.001895 +0.713516,-0.351651,0.370906,0.674713,-0.174592,-0.001886 +0.709227,-0.349692,0.368831,0.670777,-0.173672,-0.001877 +0.704938,-0.347734,0.366756,0.666842,-0.172752,-0.001868 +0.700648,-0.345775,0.364681,0.662906,-0.171832,-0.001859 +0.696359,-0.343816,0.362605,0.658970,-0.170913,-0.001850 +0.692070,-0.341858,0.360530,0.655034,-0.169993,-0.001840 +0.687781,-0.339899,0.358455,0.651098,-0.169073,-0.001831 +0.683492,-0.337940,0.356380,0.647162,-0.168153,-0.001822 +0.679203,-0.335981,0.354304,0.643227,-0.167233,-0.001813 +0.674914,-0.334023,0.352229,0.639291,-0.166313,-0.001804 +0.670625,-0.332064,0.350154,0.635355,-0.165393,-0.001795 +0.666336,-0.330105,0.348079,0.631419,-0.164474,-0.001785 +0.662047,-0.328147,0.346004,0.627483,-0.163554,-0.001776 +0.657757,-0.326188,0.343928,0.623547,-0.162634,-0.001767 +0.653468,-0.324229,0.341853,0.619612,-0.161714,-0.001758 +0.649179,-0.322271,0.339778,0.615676,-0.160794,-0.001749 +0.644890,-0.320312,0.337703,0.611740,-0.159874,-0.001740 +0.640601,-0.318353,0.335627,0.607804,-0.158954,-0.001731 +0.636312,-0.316395,0.333552,0.603868,-0.158035,-0.001721 +0.632023,-0.314436,0.331477,0.599932,-0.157115,-0.001712 +0.627734,-0.312477,0.329402,0.595997,-0.156195,-0.001703 +0.623445,-0.310518,0.327326,0.592061,-0.155275,-0.001694 +0.619156,-0.308560,0.325251,0.588125,-0.154355,-0.001685 +0.614867,-0.306601,0.323176,0.584189,-0.153435,-0.001676 +0.610577,-0.304642,0.321101,0.580253,-0.152515,-0.001666 +0.606288,-0.302684,0.319025,0.576317,-0.151596,-0.001657 +0.601999,-0.300725,0.316950,0.572382,-0.150676,-0.001648 +0.597710,-0.298766,0.314875,0.568446,-0.149756,-0.001639 +0.593421,-0.296808,0.312800,0.564510,-0.148836,-0.001630 +0.589132,-0.294849,0.310724,0.560574,-0.147916,-0.001621 +0.584843,-0.292890,0.308649,0.556638,-0.146996,-0.001611 +0.580554,-0.290932,0.306574,0.552702,-0.146076,-0.001602 +0.576265,-0.288973,0.304499,0.548767,-0.145157,-0.001593 +0.571976,-0.287014,0.302423,0.544831,-0.144237,-0.001584 +0.567686,-0.285055,0.300348,0.540895,-0.143317,-0.001575 +0.563397,-0.283097,0.298273,0.536959,-0.142397,-0.001566 +0.559108,-0.281138,0.296198,0.533023,-0.141477,-0.001557 +0.554819,-0.279179,0.294122,0.529087,-0.140557,-0.001547 +0.550530,-0.277221,0.292047,0.525152,-0.139637,-0.001538 +0.546241,-0.275262,0.289972,0.521216,-0.138718,-0.001529 +0.541952,-0.273303,0.287897,0.517280,-0.137798,-0.001520 +0.537663,-0.271345,0.285821,0.513344,-0.136878,-0.001511 +0.533374,-0.269386,0.283746,0.509408,-0.135958,-0.001502 +0.529085,-0.267427,0.281671,0.505472,-0.135038,-0.001492 +0.524795,-0.265469,0.279596,0.501537,-0.134118,-0.001483 +0.520506,-0.263510,0.277520,0.497601,-0.133198,-0.001474 +0.516217,-0.261551,0.275445,0.493665,-0.132279,-0.001465 +0.511928,-0.259593,0.273370,0.489729,-0.131359,-0.001456 +0.507639,-0.257634,0.271295,0.485793,-0.130439,-0.001447 +0.503350,-0.255675,0.269219,0.481857,-0.129519,-0.001438 +0.499061,-0.253716,0.267144,0.477922,-0.128599,-0.001428 +0.494772,-0.251758,0.265069,0.473986,-0.127679,-0.001419 +0.490483,-0.249799,0.262994,0.470050,-0.126759,-0.001410 +0.486194,-0.247840,0.260918,0.466114,-0.125840,-0.001401 +0.481904,-0.245882,0.258843,0.462178,-0.124920,-0.001392 +0.477615,-0.243923,0.256768,0.458242,-0.124000,-0.001383 +0.473326,-0.241964,0.254693,0.454307,-0.123080,-0.001373 +0.469037,-0.240006,0.252617,0.450371,-0.122160,-0.001364 +0.464748,-0.238047,0.250542,0.446435,-0.121240,-0.001355 +0.460459,-0.236088,0.248467,0.442499,-0.120320,-0.001346 +0.456170,-0.234130,0.246392,0.438563,-0.119401,-0.001337 +0.451881,-0.232171,0.244316,0.434627,-0.118481,-0.001328 +0.447592,-0.230212,0.242241,0.430692,-0.117561,-0.001318 +0.443303,-0.228253,0.240166,0.426756,-0.116641,-0.001309 +0.439013,-0.226295,0.238091,0.422820,-0.115721,-0.001300 +0.434724,-0.224336,0.236015,0.418884,-0.114801,-0.001291 +0.430435,-0.222377,0.233940,0.414948,-0.113881,-0.001282 +0.426146,-0.220419,0.231865,0.411013,-0.112961,-0.001273 +0.421857,-0.218460,0.229790,0.407077,-0.112042,-0.001264 +0.417568,-0.216501,0.227714,0.403141,-0.111122,-0.001254 +0.413279,-0.214543,0.225639,0.399205,-0.110202,-0.001245 +0.408990,-0.212584,0.223564,0.395269,-0.109282,-0.001236 +0.404701,-0.210625,0.221489,0.391333,-0.108362,-0.001227 +0.400412,-0.208667,0.219413,0.387398,-0.107442,-0.001218 +0.396122,-0.206708,0.217338,0.383462,-0.106522,-0.001209 +0.391833,-0.204749,0.215263,0.379526,-0.105603,-0.001199 +0.387544,-0.202790,0.213188,0.375590,-0.104683,-0.001190 +0.383255,-0.200832,0.211112,0.371654,-0.103763,-0.001181 +0.378966,-0.198873,0.209037,0.367718,-0.102843,-0.001172 +0.374677,-0.196914,0.206962,0.363783,-0.101923,-0.001163 +0.370388,-0.194956,0.204887,0.359847,-0.101003,-0.001154 +0.366099,-0.192997,0.202811,0.355911,-0.100083,-0.001144 +0.361810,-0.191038,0.200736,0.351975,-0.099164,-0.001135 +0.357521,-0.189080,0.198661,0.348039,-0.098244,-0.001126 +0.353231,-0.187121,0.196586,0.344103,-0.097324,-0.001117 +0.348942,-0.185162,0.194510,0.340168,-0.096404,-0.001108 +0.344653,-0.183204,0.192435,0.336232,-0.095484,-0.001099 +0.340364,-0.181245,0.190360,0.332296,-0.094564,-0.001090 +0.336075,-0.179286,0.188285,0.328360,-0.093645,-0.001080 +0.331786,-0.177328,0.186209,0.324424,-0.092725,-0.001071 +0.327497,-0.175369,0.184134,0.320488,-0.091805,-0.001062 +0.323208,-0.173410,0.182059,0.316553,-0.090885,-0.001053 +0.318919,-0.171451,0.179984,0.312617,-0.089965,-0.001044 +0.314630,-0.169493,0.177908,0.308681,-0.089045,-0.001035 +0.310340,-0.167534,0.175833,0.304745,-0.088125,-0.001025 +0.306051,-0.165575,0.173758,0.300809,-0.087206,-0.001016 +0.301762,-0.163617,0.171683,0.296873,-0.086286,-0.001007 +0.297473,-0.161658,0.169607,0.292938,-0.085366,-0.000998 +0.293184,-0.159699,0.167532,0.289002,-0.084446,-0.000989 +0.288895,-0.157741,0.165457,0.285066,-0.083526,-0.000980 +0.284606,-0.155782,0.163382,0.281130,-0.082606,-0.000971 +0.280317,-0.153823,0.161306,0.277194,-0.081686,-0.000961 +0.276028,-0.151865,0.159231,0.273258,-0.080767,-0.000952 +0.271739,-0.149906,0.157156,0.269323,-0.079847,-0.000943 +0.267449,-0.147947,0.155081,0.265387,-0.078927,-0.000934 +0.263160,-0.145988,0.153005,0.261451,-0.078007,-0.000925 +0.258871,-0.144030,0.150930,0.257515,-0.077087,-0.000916 +0.254582,-0.142071,0.148855,0.253579,-0.076167,-0.000906 +0.250293,-0.140112,0.146780,0.249643,-0.075247,-0.000897 +0.246004,-0.138154,0.144704,0.245708,-0.074328,-0.000888 +0.241715,-0.136195,0.142629,0.241772,-0.073408,-0.000879 +0.237426,-0.134236,0.140554,0.237836,-0.072488,-0.000870 +0.233137,-0.132278,0.138479,0.233900,-0.071568,-0.000861 +0.228848,-0.130319,0.136403,0.229964,-0.070648,-0.000851 +0.224558,-0.128360,0.134328,0.226028,-0.069728,-0.000842 +0.220269,-0.126402,0.132253,0.222093,-0.068808,-0.000833 +0.215980,-0.124443,0.130178,0.218157,-0.067889,-0.000824 +0.211691,-0.122484,0.128102,0.214221,-0.066969,-0.000815 +0.207402,-0.120525,0.126027,0.210285,-0.066049,-0.000806 +0.203113,-0.118567,0.123952,0.206349,-0.065129,-0.000797 +0.198824,-0.116608,0.121877,0.202413,-0.064209,-0.000787 +0.194535,-0.114649,0.119801,0.198478,-0.063289,-0.000778 +0.190246,-0.112691,0.117726,0.194542,-0.062369,-0.000769 +0.185957,-0.110732,0.115651,0.190606,-0.061449,-0.000760 +0.181668,-0.108773,0.113576,0.186670,-0.060530,-0.000751 +0.177378,-0.106815,0.111500,0.182734,-0.059610,-0.000742 +0.173089,-0.104856,0.109425,0.178798,-0.058690,-0.000732 +0.168801,-0.102897,0.107350,0.174863,-0.057770,-0.000723 +0.164516,-0.100939,0.105275,0.170927,-0.056850,-0.000714 +0.160237,-0.098980,0.103199,0.166991,-0.055930,-0.000705 +0.155967,-0.097021,0.101124,0.163055,-0.055010,-0.000696 +0.151708,-0.095062,0.099049,0.159119,-0.054091,-0.000687 +0.147462,-0.093104,0.096974,0.155183,-0.053171,-0.000678 +0.143233,-0.091145,0.094898,0.151248,-0.052251,-0.000668 +0.139023,-0.089186,0.092823,0.147312,-0.051331,-0.000659 +0.134834,-0.087228,0.090748,0.143376,-0.050411,-0.000650 +0.130670,-0.085269,0.088673,0.139440,-0.049491,-0.000641 +0.126532,-0.083310,0.086597,0.135505,-0.048571,-0.000632 +0.122423,-0.081352,0.084522,0.131574,-0.047652,-0.000623 +0.118347,-0.079393,0.082447,0.127649,-0.046732,-0.000613 +0.114304,-0.077434,0.080372,0.123734,-0.045812,-0.000604 +0.110299,-0.075476,0.078297,0.119832,-0.044892,-0.000595 +0.106334,-0.073517,0.076221,0.115945,-0.043972,-0.000586 +0.102411,-0.071558,0.074146,0.112078,-0.043052,-0.000577 +0.098533,-0.069599,0.072071,0.108233,-0.042132,-0.000568 +0.094702,-0.067641,0.069996,0.104414,-0.041213,-0.000558 +0.090921,-0.065682,0.067920,0.100623,-0.040293,-0.000549 +0.087193,-0.063723,0.065845,0.096863,-0.039373,-0.000540 +0.083521,-0.061765,0.063770,0.093138,-0.038453,-0.000531 +0.079906,-0.059806,0.061694,0.089451,-0.037533,-0.000522 +0.076352,-0.057847,0.059619,0.085805,-0.036613,-0.000513 +0.072860,-0.055889,0.057544,0.082203,-0.035693,-0.000504 +0.069435,-0.053930,0.055470,0.078648,-0.034774,-0.000494 +0.066077,-0.051972,0.053401,0.075143,-0.033854,-0.000485 +0.062791,-0.050016,0.051338,0.071691,-0.032934,-0.000476 +0.059578,-0.048065,0.049284,0.068296,-0.032014,-0.000467 +0.056441,-0.046122,0.047241,0.064961,-0.031094,-0.000458 +0.053382,-0.044188,0.045214,0.061688,-0.030174,-0.000449 +0.050405,-0.042268,0.043203,0.058480,-0.029254,-0.000439 +0.047512,-0.040363,0.041212,0.055342,-0.028335,-0.000430 +0.044705,-0.038476,0.039243,0.052276,-0.027415,-0.000421 +0.041987,-0.036610,0.037299,0.049285,-0.026495,-0.000412 +0.039361,-0.034767,0.035382,0.046372,-0.025575,-0.000403 +0.036829,-0.032950,0.033495,0.043540,-0.024655,-0.000394 +0.034394,-0.031161,0.031641,0.040793,-0.023735,-0.000385 +0.032058,-0.029403,0.029822,0.038133,-0.022815,-0.000375 +0.029824,-0.027679,0.028040,0.035564,-0.021896,-0.000366 +0.027695,-0.025991,0.026299,0.033089,-0.020976,-0.000357 +0.025669,-0.024341,0.024601,0.030710,-0.020056,-0.000348 +0.023745,-0.022733,0.022949,0.028432,-0.019136,-0.000339 +0.021919,-0.021169,0.021344,0.026256,-0.018216,-0.000330 +0.020189,-0.019651,0.019791,0.024187,-0.017296,-0.000320 +0.018553,-0.018183,0.018291,0.022227,-0.016376,-0.000311 +0.017008,-0.016767,0.016846,0.020376,-0.015457,-0.000302 +0.015551,-0.015404,0.015460,0.018630,-0.014538,-0.000293 +0.014180,-0.014099,0.014136,0.016988,-0.013624,-0.000284 +0.012892,-0.012853,0.012875,0.015444,-0.012717,-0.000275 +0.011684,-0.011670,0.011680,0.013997,-0.011821,-0.000265 +0.010554,-0.010551,0.010554,0.012644,-0.010939,-0.000256 +0.009499,-0.009499,0.009500,0.011380,-0.010073,-0.000247 +0.008518,-0.008517,0.008518,0.010204,-0.009227,-0.000238 +0.007606,-0.007606,0.007607,0.009112,-0.008404,-0.000229 +0.006762,-0.006761,0.006762,0.008100,-0.007608,-0.000220 +0.005982,-0.005982,0.005983,0.007167,-0.006840,-0.000211 +0.005265,-0.005265,0.005266,0.006308,-0.006105,-0.000201 +0.004608,-0.004608,0.004609,0.005520,-0.005405,-0.000192 +0.004008,-0.004008,0.004008,0.004801,-0.004744,-0.000183 +0.003462,-0.003462,0.003463,0.004147,-0.004124,-0.000174 +0.002968,-0.002968,0.002969,0.003556,-0.003550,-0.000165 +0.002524,-0.002524,0.002525,0.003024,-0.003023,-0.000156 +0.002126,-0.002126,0.002127,0.002547,-0.002547,-0.000146 +0.001773,-0.001772,0.001773,0.002124,-0.002123,-0.000137 +0.001461,-0.001461,0.001461,0.001750,-0.001750,-0.000128 +0.001188,-0.001187,0.001188,0.001423,-0.001422,-0.000119 +0.000951,-0.000951,0.000952,0.001139,-0.001139,-0.000110 +0.000748,-0.000748,0.000749,0.000896,-0.000896,-0.000101 +0.000576,-0.000576,0.000577,0.000690,-0.000690,-0.000092 +0.000433,-0.000433,0.000434,0.000519,-0.000518,-0.000082 +0.000316,-0.000316,0.000316,0.000378,-0.000378,-0.000073 +0.000222,-0.000222,0.000223,0.000266,-0.000265,-0.000064 +0.000149,-0.000148,0.000149,0.000178,-0.000178,-0.000055 +0.000094,-0.000094,0.000094,0.000112,-0.000112,-0.000046 +0.000054,-0.000054,0.000055,0.000065,-0.000065,-0.000037 +0.000028,-0.000028,0.000029,0.000033,-0.000033,-0.000027 +0.000012,-0.000012,0.000013,0.000014,-0.000014,-0.000018 +0.000004,-0.000004,0.000004,0.000004,-0.000004,-0.000011 +0.000001,-0.000000,0.000001,0.000001,-0.000000,-0.000007 +0.000000,-0.000000,0.000001,0.000000,0.000000,-0.000006 +0.000000,-0.000000,0.000001,0.000000,0.000000,-0.000006 +0.000000,0.000000,-0.000000,0.000001,-0.000001,0.000000 +0.000003,0.000003,-0.000003,0.000004,-0.000004,0.000000 +0.000012,0.000012,-0.000012,0.000014,-0.000014,0.000000 +0.000028,0.000028,-0.000028,0.000033,-0.000033,0.000000 +0.000054,0.000054,-0.000054,0.000065,-0.000065,0.000000 +0.000093,0.000093,-0.000093,0.000112,-0.000112,0.000000 +0.000148,0.000148,-0.000148,0.000178,-0.000178,0.000000 +0.000222,0.000222,-0.000222,0.000265,-0.000265,0.000000 +0.000315,0.000315,-0.000315,0.000378,-0.000378,0.000000 +0.000433,0.000432,-0.000433,0.000518,-0.000518,0.000000 +0.000576,0.000571,-0.000576,0.000690,-0.000690,0.000000 +0.000748,0.000729,-0.000748,0.000896,-0.000896,0.000000 +0.000951,0.000904,-0.000951,0.001139,-0.001139,0.000000 +0.001187,0.001093,-0.001187,0.001421,-0.001423,0.000000 +0.001460,0.001293,-0.001460,0.001739,-0.001750,0.000000 +0.001772,0.001503,-0.001772,0.002091,-0.002123,0.000000 +0.002126,0.001718,-0.002126,0.002472,-0.002547,0.000000 +0.002524,0.001938,-0.002524,0.002881,-0.003023,0.000000 +0.002968,0.002158,-0.002968,0.003314,-0.003556,0.000000 +0.003462,0.002379,-0.003462,0.003767,-0.004147,0.000000 +0.004007,0.002599,-0.004007,0.004238,-0.004801,0.000000 +0.004608,0.002820,-0.004608,0.004723,-0.005520,0.000000 +0.005265,0.003041,-0.005265,0.005220,-0.006308,0.000000 +0.005982,0.003261,-0.005982,0.005726,-0.007167,0.000000 +0.006761,0.003482,-0.006761,0.006236,-0.008100,0.000000 +0.007606,0.003703,-0.007605,0.006749,-0.009112,0.000000 +0.008517,0.003923,-0.008512,0.007262,-0.010204,0.000000 +0.009499,0.004144,-0.009480,0.007775,-0.011380,0.000000 +0.010554,0.004364,-0.010507,0.008288,-0.012637,0.000000 +0.011684,0.004585,-0.011589,0.008801,-0.013973,0.000000 +0.012890,0.004806,-0.012724,0.009313,-0.015384,0.000000 +0.014172,0.005026,-0.013909,0.009826,-0.016868,0.000000 +0.015526,0.005247,-0.015142,0.010339,-0.018421,0.000000 +0.016949,0.005468,-0.016421,0.010852,-0.020041,0.000000 +0.018440,0.005688,-0.017742,0.011365,-0.021723,0.000000 +0.019996,0.005909,-0.019103,0.011878,-0.023465,0.000000 +0.021613,0.006130,-0.020501,0.012391,-0.025265,0.000000 +0.023290,0.006350,-0.021935,0.012904,-0.027118,0.000000 +0.025023,0.006571,-0.023401,0.013416,-0.029021,0.000000 +0.026811,0.006791,-0.024896,0.013929,-0.030972,0.000000 +0.028650,0.007012,-0.026419,0.014442,-0.032968,0.000000 +0.030538,0.007233,-0.027965,0.014955,-0.035004,0.000000 +0.032473,0.007453,-0.029534,0.015468,-0.037079,0.000000 +0.034451,0.007674,-0.031122,0.015981,-0.039189,0.000000 +0.036470,0.007895,-0.032727,0.016494,-0.041331,0.000000 +0.038528,0.008115,-0.034346,0.017007,-0.043502,0.000000 +0.040622,0.008336,-0.035976,0.017519,-0.045699,0.000000 +0.042750,0.008556,-0.037615,0.018032,-0.047918,0.000000 +0.044908,0.008777,-0.039261,0.018545,-0.050157,0.000000 +0.047094,0.008998,-0.040910,0.019058,-0.052412,0.000000 +0.049306,0.009218,-0.042561,0.019571,-0.054680,0.000000 +0.051541,0.009439,-0.044211,0.020084,-0.056959,0.000000 +0.053797,0.009660,-0.045861,0.020597,-0.059244,0.000000 +0.056070,0.009880,-0.047512,0.021110,-0.061534,0.000000 +0.058358,0.010101,-0.049162,0.021622,-0.063825,0.000000 +0.060659,0.010322,-0.050813,0.022135,-0.066115,0.000000 +0.062970,0.010542,-0.052463,0.022648,-0.068406,0.000000 +0.065289,0.010763,-0.054114,0.023161,-0.070697,0.000000 +0.067612,0.010983,-0.055764,0.023674,-0.072988,0.000000 +0.069938,0.011204,-0.057415,0.024187,-0.075278,0.000000 +0.072264,0.011425,-0.059065,0.024700,-0.077569,0.000000 +0.074590,0.011645,-0.060715,0.025212,-0.079860,0.000000 +0.076915,0.011866,-0.062366,0.025725,-0.082150,0.000000 +0.079241,0.012087,-0.064016,0.026238,-0.084441,0.000000 +0.081567,0.012307,-0.065667,0.026751,-0.086732,0.000000 +0.083893,0.012528,-0.067317,0.027264,-0.089023,0.000000 +0.086219,0.012748,-0.068968,0.027777,-0.091313,0.000000 +0.088545,0.012969,-0.070618,0.028290,-0.093604,0.000000 +0.090871,0.013190,-0.072269,0.028803,-0.095895,0.000000 +0.093196,0.013410,-0.073919,0.029316,-0.098185,0.000000 +0.095522,0.013631,-0.075569,0.029828,-0.100476,0.000000 +0.097848,0.013852,-0.077220,0.030341,-0.102767,0.000000 +0.100174,0.014072,-0.078870,0.030854,-0.105057,0.000000 +0.102500,0.014293,-0.080521,0.031367,-0.107348,0.000000 +0.104826,0.014514,-0.082171,0.031880,-0.109639,0.000000 +0.107151,0.014734,-0.083822,0.032393,-0.111930,0.000000 +0.109477,0.014955,-0.085472,0.032906,-0.114220,0.000000 +0.111803,0.015175,-0.087123,0.033418,-0.116511,0.000000 +0.114129,0.015396,-0.088773,0.033931,-0.118802,0.000000 +0.116455,0.015617,-0.090423,0.034444,-0.121092,0.000000 +0.118781,0.015837,-0.092074,0.034957,-0.123383,0.000000 +0.121106,0.016058,-0.093724,0.035470,-0.125674,0.000000 +0.123432,0.016279,-0.095375,0.035983,-0.127965,0.000000 +0.125758,0.016499,-0.097025,0.036496,-0.130255,0.000000 +0.128084,0.016720,-0.098676,0.037009,-0.132546,0.000000 +0.130410,0.016940,-0.100326,0.037521,-0.134837,0.000000 +0.132736,0.017161,-0.101977,0.038034,-0.137127,0.000000 +0.135061,0.017382,-0.103627,0.038547,-0.139418,0.000000 +0.137387,0.017602,-0.105277,0.039060,-0.141709,0.000000 +0.139713,0.017823,-0.106928,0.039573,-0.144000,0.000000 +0.142039,0.018044,-0.108578,0.040086,-0.146290,0.000000 +0.144365,0.018264,-0.110229,0.040599,-0.148581,0.000000 +0.146691,0.018485,-0.111879,0.041112,-0.150872,0.000000 +0.149016,0.018705,-0.113530,0.041625,-0.153162,0.000000 +0.151342,0.018926,-0.115180,0.042137,-0.155453,0.000000 +0.153668,0.019147,-0.116831,0.042650,-0.157744,0.000000 +0.155994,0.019367,-0.118481,0.043163,-0.160034,0.000000 +0.158320,0.019588,-0.120131,0.043676,-0.162325,0.000000 +0.160646,0.019809,-0.121782,0.044189,-0.164616,0.000000 +0.162972,0.020029,-0.123432,0.044702,-0.166907,0.000000 +0.165297,0.020250,-0.125083,0.045215,-0.169197,0.000000 +0.167623,0.020470,-0.126733,0.045727,-0.171488,0.000000 +0.169949,0.020691,-0.128384,0.046240,-0.173779,0.000000 +0.172275,0.020912,-0.130034,0.046753,-0.176069,0.000000 +0.174601,0.021132,-0.131684,0.047266,-0.178360,0.000000 +0.176927,0.021353,-0.133335,0.047779,-0.180651,0.000000 +0.179252,0.021574,-0.134985,0.048292,-0.182942,0.000000 +0.181578,0.021794,-0.136636,0.048805,-0.185232,0.000000 +0.183904,0.022015,-0.138286,0.049318,-0.187523,0.000000 +0.186230,0.022235,-0.139937,0.049831,-0.189814,0.000000 +0.188556,0.022456,-0.141587,0.050343,-0.192104,0.000000 +0.190882,0.022677,-0.143238,0.050856,-0.194395,0.000000 +0.193207,0.022897,-0.144888,0.051369,-0.196686,0.000000 +0.195533,0.023118,-0.146538,0.051882,-0.198976,0.000000 +0.197859,0.023339,-0.148189,0.052395,-0.201267,0.000000 +0.200185,0.023559,-0.149839,0.052908,-0.203558,0.000000 +0.202511,0.023780,-0.151490,0.053421,-0.205849,0.000000 +0.204837,0.024001,-0.153140,0.053934,-0.208139,0.000000 +0.207163,0.024221,-0.154791,0.054446,-0.210430,0.000000 +0.209488,0.024442,-0.156441,0.054959,-0.212721,0.000000 +0.211814,0.024663,-0.158092,0.055472,-0.215011,0.000000 +0.214140,0.024883,-0.159742,0.055985,-0.217302,0.000000 +0.216466,0.025104,-0.161392,0.056498,-0.219593,0.000000 +0.218792,0.025324,-0.163043,0.057011,-0.221884,0.000000 +0.221118,0.025545,-0.164693,0.057524,-0.224174,0.000000 +0.223443,0.025766,-0.166344,0.058036,-0.226465,0.000000 +0.225769,0.025986,-0.167994,0.058549,-0.228756,0.000000 +0.228095,0.026207,-0.169645,0.059062,-0.231046,0.000000 +0.230421,0.026428,-0.171295,0.059575,-0.233337,0.000000 +0.232747,0.026648,-0.172946,0.060088,-0.235628,0.000000 +0.235073,0.026869,-0.174596,0.060601,-0.237919,0.000000 +0.237398,0.027089,-0.176246,0.061114,-0.240209,0.000000 +0.239724,0.027310,-0.177897,0.061627,-0.242500,0.000000 +0.242050,0.027531,-0.179547,0.062140,-0.244791,0.000000 +0.244376,0.027751,-0.181198,0.062652,-0.247081,0.000000 +0.246702,0.027972,-0.182848,0.063165,-0.249372,0.000000 +0.249028,0.028193,-0.184499,0.063678,-0.251663,0.000000 +0.251354,0.028413,-0.186149,0.064191,-0.253953,0.000000 +0.253679,0.028634,-0.187800,0.064704,-0.256244,0.000000 +0.256005,0.028855,-0.189450,0.065217,-0.258535,0.000000 +0.258331,0.029075,-0.191100,0.065730,-0.260826,0.000000 +0.260657,0.029296,-0.192751,0.066242,-0.263116,0.000000 +0.262983,0.029516,-0.194401,0.066755,-0.265407,0.000000 +0.265309,0.029737,-0.196052,0.067268,-0.267698,0.000000 +0.267634,0.029958,-0.197702,0.067781,-0.269988,0.000000 +0.269960,0.030178,-0.199353,0.068294,-0.272279,0.000000 +0.272286,0.030399,-0.201003,0.068807,-0.274570,0.000000 +0.274612,0.030620,-0.202654,0.069320,-0.276861,0.000000 +0.276938,0.030840,-0.204304,0.069833,-0.279151,0.000000 +0.279264,0.031061,-0.205954,0.070346,-0.281442,0.000000 +0.281589,0.031281,-0.207605,0.070858,-0.283733,0.000000 +0.283915,0.031502,-0.209255,0.071371,-0.286023,0.000000 +0.286241,0.031723,-0.210906,0.071884,-0.288314,0.000000 +0.288567,0.031943,-0.212556,0.072397,-0.290605,0.000000 +0.290893,0.032164,-0.214207,0.072910,-0.292896,0.000000 +0.293219,0.032384,-0.215857,0.073423,-0.295186,0.000000 +0.295545,0.032605,-0.217508,0.073936,-0.297477,0.000000 +0.297870,0.032826,-0.219158,0.074448,-0.299768,0.000000 +0.300196,0.033046,-0.220808,0.074961,-0.302058,0.000000 +0.302522,0.033267,-0.222459,0.075474,-0.304349,0.000000 +0.304848,0.033488,-0.224109,0.075987,-0.306640,0.000000 +0.307174,0.033708,-0.225760,0.076500,-0.308930,0.000000 +0.309500,0.033929,-0.227410,0.077013,-0.311221,0.000000 +0.311825,0.034150,-0.229061,0.077526,-0.313512,0.000000 +0.314151,0.034370,-0.230711,0.078039,-0.315803,0.000000 +0.316477,0.034591,-0.232361,0.078551,-0.318093,0.000000 +0.318803,0.034812,-0.234012,0.079064,-0.320384,0.000000 +0.321129,0.035032,-0.235662,0.079577,-0.322675,0.000000 +0.323455,0.035253,-0.237313,0.080090,-0.324965,0.000000 +0.325780,0.035473,-0.238963,0.080603,-0.327256,0.000000 +0.328106,0.035694,-0.240614,0.081116,-0.329547,0.000000 +0.330432,0.035915,-0.242264,0.081629,-0.331838,0.000000 +0.332758,0.036135,-0.243915,0.082142,-0.334128,0.000000 +0.335084,0.036356,-0.245565,0.082654,-0.336419,0.000000 +0.337410,0.036576,-0.247215,0.083167,-0.338710,0.000000 +0.339736,0.036797,-0.248866,0.083680,-0.341000,0.000000 +0.342061,0.037018,-0.250516,0.084193,-0.343291,0.000000 +0.344387,0.037238,-0.252167,0.084706,-0.345582,0.000000 +0.346713,0.037459,-0.253817,0.085219,-0.347872,0.000000 +0.349039,0.037680,-0.255468,0.085732,-0.350163,0.000000 +0.351365,0.037900,-0.257118,0.086245,-0.352454,0.000000 +0.353691,0.038121,-0.258769,0.086757,-0.354745,0.000000 +0.356016,0.038342,-0.260419,0.087270,-0.357035,0.000000 +0.358342,0.038562,-0.262069,0.087783,-0.359326,0.000000 +0.360668,0.038783,-0.263720,0.088296,-0.361617,0.000000 +0.362994,0.039004,-0.265370,0.088809,-0.363907,0.000000 +0.365320,0.039224,-0.267021,0.089322,-0.366198,0.000000 +0.367646,0.039445,-0.268671,0.089835,-0.368489,0.000000 +0.369971,0.039665,-0.270322,0.090348,-0.370780,0.000000 +0.372297,0.039886,-0.271972,0.090860,-0.373070,0.000000 +0.374623,0.040107,-0.273623,0.091373,-0.375361,0.000000 +0.376949,0.040327,-0.275273,0.091886,-0.377652,0.000000 +0.379275,0.040548,-0.276923,0.092399,-0.379942,0.000000 +0.381601,0.040768,-0.278574,0.092912,-0.382233,0.000000 +0.383926,0.040989,-0.280224,0.093425,-0.384524,0.000000 +0.386252,0.041210,-0.281875,0.093938,-0.386815,0.000000 +0.388578,0.041430,-0.283525,0.094451,-0.389105,0.000000 +0.390904,0.041651,-0.285176,0.094963,-0.391396,0.000000 +0.393230,0.041872,-0.286826,0.095476,-0.393687,0.000000 +0.395556,0.042092,-0.288477,0.095989,-0.395977,0.000000 +0.397882,0.042313,-0.290127,0.096502,-0.398268,0.000000 +0.400207,0.042534,-0.291777,0.097015,-0.400559,0.000000 +0.402533,0.042754,-0.293428,0.097528,-0.402849,0.000000 +0.404859,0.042975,-0.295078,0.098041,-0.405140,0.000000 +0.407185,0.043195,-0.296729,0.098554,-0.407431,0.000000 +0.409511,0.043416,-0.298379,0.099066,-0.409722,0.000000 +0.411837,0.043637,-0.300030,0.099579,-0.412012,0.000000 +0.414162,0.043857,-0.301680,0.100092,-0.414303,0.000000 +0.416488,0.044078,-0.303331,0.100605,-0.416594,0.000000 +0.418814,0.044299,-0.304981,0.101118,-0.418884,0.000000 +0.421140,0.044519,-0.306631,0.101631,-0.421175,0.000000 +0.423466,0.044740,-0.308282,0.102144,-0.423466,0.000000 +0.425792,0.044961,-0.309932,0.102657,-0.425757,0.000000 +0.428117,0.045181,-0.311583,0.103169,-0.428047,0.000000 +0.430443,0.045402,-0.313233,0.103682,-0.430338,0.000000 +0.432769,0.045622,-0.314884,0.104195,-0.432629,0.000000 +0.435095,0.045843,-0.316534,0.104708,-0.434919,0.000000 +0.437421,0.046064,-0.318184,0.105221,-0.437210,0.000000 +0.439747,0.046284,-0.319835,0.105734,-0.439501,0.000000 +0.442073,0.046505,-0.321485,0.106247,-0.441792,0.000000 +0.444398,0.046726,-0.323136,0.106760,-0.444082,0.000000 +0.446724,0.046946,-0.324786,0.107272,-0.446373,0.000000 +0.449050,0.047167,-0.326437,0.107785,-0.448664,0.000000 +0.451376,0.047387,-0.328087,0.108298,-0.450954,0.000000 +0.453702,0.047608,-0.329738,0.108811,-0.453245,0.000000 +0.456028,0.047829,-0.331388,0.109324,-0.455536,0.000000 +0.458353,0.048049,-0.333038,0.109837,-0.457826,0.000000 +0.460679,0.048270,-0.334689,0.110350,-0.460117,0.000000 +0.463005,0.048491,-0.336339,0.110863,-0.462408,0.000000 +0.465331,0.048711,-0.337990,0.111375,-0.464699,0.000000 +0.467657,0.048932,-0.339640,0.111888,-0.466989,0.000000 +0.469983,0.049153,-0.341291,0.112401,-0.469280,0.000000 +0.472308,0.049373,-0.342941,0.112914,-0.471571,0.000000 +0.474634,0.049594,-0.344592,0.113427,-0.473861,0.000000 +0.476960,0.049814,-0.346242,0.113940,-0.476152,0.000000 +0.479286,0.050035,-0.347892,0.114453,-0.478443,0.000000 +0.481612,0.050256,-0.349543,0.114966,-0.480734,0.000000 +0.483938,0.050476,-0.351193,0.115478,-0.483024,0.000000 +0.486264,0.050697,-0.352844,0.115991,-0.485315,0.000000 +0.488589,0.050917,-0.354494,0.116504,-0.487606,0.000000 +0.490915,0.051138,-0.356145,0.117017,-0.489896,0.000000 +0.493241,0.051359,-0.357795,0.117530,-0.492187,0.000000 +0.495567,0.051579,-0.359446,0.118043,-0.494478,0.000000 +0.497893,0.051800,-0.361096,0.118556,-0.496768,0.000000 +0.500219,0.052021,-0.362746,0.119069,-0.499059,0.000000 +0.502544,0.052241,-0.364397,0.119581,-0.501350,0.000000 +0.504870,0.052462,-0.366047,0.120094,-0.503641,0.000000 +0.507196,0.052683,-0.367698,0.120607,-0.505931,0.000000 +0.509522,0.052903,-0.369348,0.121120,-0.508222,0.000000 +0.511848,0.053124,-0.370999,0.121633,-0.510513,0.000000 +0.514174,0.053345,-0.372649,0.122146,-0.512803,0.000000 +0.516499,0.053565,-0.374300,0.122659,-0.515094,0.000000 +0.518825,0.053786,-0.375950,0.123172,-0.517385,0.000000 +0.521151,0.054006,-0.377600,0.123684,-0.519676,0.000000 +0.523477,0.054227,-0.379251,0.124197,-0.521966,0.000000 +0.525803,0.054448,-0.380901,0.124710,-0.524257,0.000000 +0.528129,0.054668,-0.382552,0.125223,-0.526548,0.000000 +0.530455,0.054889,-0.384202,0.125736,-0.528838,0.000000 +0.532780,0.055109,-0.385853,0.126249,-0.531129,0.000000 +0.535106,0.055330,-0.387503,0.126762,-0.533420,0.000000 +0.537432,0.055551,-0.389154,0.127275,-0.535711,0.000000 +0.539758,0.055771,-0.390804,0.127787,-0.538001,0.000000 +0.542084,0.055992,-0.392454,0.128300,-0.540292,0.000000 +0.544410,0.056213,-0.394105,0.128813,-0.542583,0.000000 +0.546735,0.056433,-0.395755,0.129326,-0.544873,0.000000 +0.549061,0.056654,-0.397406,0.129839,-0.547164,0.000000 +0.551387,0.056875,-0.399056,0.130352,-0.549455,0.000000 +0.553713,0.057095,-0.400707,0.130865,-0.551745,0.000000 +0.556039,0.057316,-0.402357,0.131378,-0.554036,0.000000 +0.558365,0.057536,-0.404008,0.131890,-0.556327,0.000000 +0.560690,0.057757,-0.405658,0.132403,-0.558618,0.000000 +0.563016,0.057978,-0.407308,0.132916,-0.560908,0.000000 +0.565342,0.058198,-0.408959,0.133429,-0.563199,0.000000 +0.567668,0.058419,-0.410609,0.133942,-0.565490,0.000000 +0.569994,0.058640,-0.412260,0.134455,-0.567780,0.000000 +0.572320,0.058860,-0.413910,0.134968,-0.570071,0.000000 +0.574646,0.059081,-0.415561,0.135480,-0.572362,0.000000 +0.576971,0.059302,-0.417211,0.135993,-0.574653,0.000000 +0.579297,0.059522,-0.418861,0.136506,-0.576943,0.000000 +0.581623,0.059743,-0.420512,0.137019,-0.579234,0.000000 +0.583949,0.059963,-0.422162,0.137532,-0.581525,0.000000 +0.586275,0.060184,-0.423813,0.138045,-0.583815,0.000000 +0.588601,0.060405,-0.425463,0.138558,-0.586106,0.000000 +0.590926,0.060625,-0.427114,0.139071,-0.588397,0.000000 +0.593252,0.060846,-0.428764,0.139583,-0.590688,0.000000 +0.595578,0.061067,-0.430415,0.140096,-0.592978,0.000000 +0.597904,0.061287,-0.432065,0.140609,-0.595269,0.000000 +0.600230,0.061508,-0.433715,0.141122,-0.597560,0.000000 +0.602556,0.061728,-0.435366,0.141635,-0.599850,0.000000 +0.604881,0.061949,-0.437016,0.142148,-0.602141,0.000000 +0.607207,0.062170,-0.438667,0.142661,-0.604432,0.000000 +0.609533,0.062390,-0.440317,0.143174,-0.606722,0.000000 +0.611859,0.062611,-0.441968,0.143686,-0.609013,0.000000 +0.614185,0.062832,-0.443618,0.144199,-0.611304,0.000000 +0.616511,0.063052,-0.445269,0.144712,-0.613595,0.000000 +0.618836,0.063273,-0.446919,0.145225,-0.615885,0.000000 +0.621162,0.063493,-0.448569,0.145738,-0.618176,0.000000 +0.623488,0.063714,-0.450220,0.146251,-0.620467,0.000000 +0.625814,0.063935,-0.451870,0.146764,-0.622757,0.000000 +0.628140,0.064155,-0.453521,0.147277,-0.625048,0.000000 +0.630466,0.064376,-0.455171,0.147789,-0.627339,0.000000 +0.632792,0.064597,-0.456822,0.148302,-0.629630,0.000000 +0.635117,0.064817,-0.458472,0.148815,-0.631920,0.000000 +0.637443,0.065038,-0.460123,0.149328,-0.634211,0.000000 +0.639769,0.065258,-0.461773,0.149841,-0.636502,0.000000 +0.642095,0.065479,-0.463423,0.150354,-0.638792,0.000000 +0.644421,0.065700,-0.465074,0.150867,-0.641083,0.000000 +0.646747,0.065920,-0.466724,0.151380,-0.643374,0.000000 +0.649072,0.066141,-0.468375,0.151892,-0.645664,0.000000 +0.651398,0.066362,-0.470025,0.152405,-0.647955,0.000000 +0.653724,0.066582,-0.471676,0.152918,-0.650246,0.000000 +0.656050,0.066803,-0.473326,0.153431,-0.652537,0.000000 +0.658376,0.067024,-0.474977,0.153944,-0.654827,0.000000 +0.660702,0.067244,-0.476627,0.154457,-0.657118,0.000000 +0.663027,0.067465,-0.478277,0.154970,-0.659409,0.000000 +0.665353,0.067685,-0.479928,0.155483,-0.661699,0.000000 +0.667679,0.067906,-0.481578,0.155995,-0.663990,0.000000 +0.670005,0.068127,-0.483229,0.156508,-0.666281,0.000000 +0.672331,0.068347,-0.484879,0.157021,-0.668572,0.000000 +0.674657,0.068568,-0.486530,0.157534,-0.670862,0.000000 +0.676983,0.068789,-0.488180,0.158047,-0.673153,0.000000 +0.679308,0.069009,-0.489831,0.158560,-0.675444,0.000000 +0.681634,0.069230,-0.491481,0.159073,-0.677734,0.000000 +0.683960,0.069450,-0.493131,0.159586,-0.680025,0.000000 +0.686286,0.069671,-0.494782,0.160098,-0.682316,0.000000 +0.688612,0.069892,-0.496432,0.160611,-0.684607,0.000000 +0.690938,0.070112,-0.498083,0.161124,-0.686897,0.000000 +0.693263,0.070333,-0.499733,0.161637,-0.689188,0.000000 +0.695589,0.070554,-0.501384,0.162150,-0.691479,0.000000 +0.697915,0.070774,-0.503034,0.162663,-0.693769,0.000000 +0.700241,0.070995,-0.504685,0.163176,-0.696060,0.000000 +0.702567,0.071216,-0.506335,0.163689,-0.698351,0.000000 +0.704893,0.071436,-0.507985,0.164201,-0.700641,0.000000 +0.707218,0.071657,-0.509636,0.164714,-0.702932,0.000000 +0.709544,0.071877,-0.511286,0.165227,-0.705223,0.000000 +0.711870,0.072098,-0.512937,0.165740,-0.707514,0.000000 +0.714196,0.072319,-0.514587,0.166253,-0.709804,0.000000 +0.716522,0.072539,-0.516238,0.166766,-0.712095,0.000000 +0.718848,0.072760,-0.517888,0.167279,-0.714386,0.000000 +0.721174,0.072981,-0.519538,0.167792,-0.716676,0.000000 +0.723499,0.073201,-0.521189,0.168304,-0.718967,0.000000 +0.725825,0.073422,-0.522839,0.168817,-0.721258,0.000000 +0.728151,0.073643,-0.524490,0.169330,-0.723549,0.000000 +0.730477,0.073863,-0.526140,0.169843,-0.725839,0.000000 +0.732803,0.074084,-0.527791,0.170356,-0.728130,0.000000 +0.735129,0.074304,-0.529441,0.170869,-0.730421,0.000000 +0.737454,0.074525,-0.531092,0.171382,-0.732711,0.000000 +0.739780,0.074746,-0.532742,0.171895,-0.735002,0.000000 +0.742106,0.074966,-0.534392,0.172407,-0.737293,0.000000 +0.744432,0.075187,-0.536043,0.172920,-0.739584,0.000000 +0.746758,0.075408,-0.537693,0.173433,-0.741874,0.000000 +0.749084,0.075628,-0.539344,0.173946,-0.744165,0.000000 +0.751409,0.075849,-0.540994,0.174459,-0.746456,0.000000 +0.753735,0.076069,-0.542645,0.174972,-0.748746,0.000000 +0.756061,0.076290,-0.544295,0.175485,-0.751037,0.000000 +0.758387,0.076511,-0.545946,0.175998,-0.753328,0.000000 +0.760713,0.076731,-0.547596,0.176510,-0.755618,0.000000 +0.763039,0.076952,-0.549246,0.177023,-0.757909,0.000000 +0.765365,0.077173,-0.550897,0.177536,-0.760200,0.000000 +0.767690,0.077393,-0.552547,0.178049,-0.762491,0.000000 +0.770016,0.077614,-0.554198,0.178562,-0.764781,0.000000 +0.772342,0.077835,-0.555848,0.179075,-0.767072,0.000000 +0.774668,0.078055,-0.557499,0.179588,-0.769363,0.000000 +0.776994,0.078276,-0.559149,0.180101,-0.771653,0.000000 +0.779320,0.078496,-0.560800,0.180613,-0.773944,0.000000 +0.781645,0.078717,-0.562450,0.181126,-0.776235,0.000000 +0.783971,0.078938,-0.564100,0.181639,-0.778526,0.000000 +0.786297,0.079158,-0.565751,0.182152,-0.780816,0.000000 +0.788623,0.079379,-0.567401,0.182665,-0.783107,0.000000 +0.790949,0.079600,-0.569052,0.183178,-0.785398,0.000000 +0.793275,0.079820,-0.570702,0.183691,-0.787688,0.000000 +0.795600,0.080041,-0.572353,0.184204,-0.789979,0.000000 +0.797926,0.080261,-0.574003,0.184716,-0.792270,0.000000 +0.800252,0.080482,-0.575654,0.185229,-0.794560,0.000000 +0.802578,0.080703,-0.577304,0.185742,-0.796851,0.000000 +0.804904,0.080923,-0.578954,0.186255,-0.799142,0.000000 +0.807230,0.081144,-0.580605,0.186768,-0.801433,0.000000 +0.809556,0.081365,-0.582255,0.187281,-0.803723,0.000000 +0.811881,0.081585,-0.583906,0.187794,-0.806014,0.000000 +0.814207,0.081806,-0.585556,0.188307,-0.808305,0.000000 +0.816533,0.082027,-0.587207,0.188819,-0.810595,0.000000 +0.818859,0.082247,-0.588857,0.189332,-0.812886,0.000000 +0.821185,0.082468,-0.590508,0.189845,-0.815177,0.000000 +0.823511,0.082688,-0.592158,0.190358,-0.817468,0.000000 +0.825836,0.082909,-0.593808,0.190871,-0.819758,0.000000 +0.828162,0.083130,-0.595459,0.191384,-0.822049,0.000000 +0.830488,0.083350,-0.597109,0.191897,-0.824340,0.000000 +0.832814,0.083571,-0.598760,0.192410,-0.826630,0.000000 +0.835140,0.083792,-0.600410,0.192922,-0.828921,0.000000 +0.837466,0.084012,-0.602061,0.193435,-0.831212,0.000000 +0.839791,0.084233,-0.603711,0.193948,-0.833503,0.000000 +0.842117,0.084453,-0.605362,0.194461,-0.835793,0.000000 +0.844443,0.084674,-0.607012,0.194974,-0.838084,0.000000 +0.846769,0.084895,-0.608662,0.195487,-0.840375,0.000000 +0.849095,0.085115,-0.610313,0.196000,-0.842665,0.000000 +0.851421,0.085336,-0.611963,0.196513,-0.844956,0.000000 +0.853747,0.085556,-0.613614,0.197025,-0.847247,0.000000 +0.856072,0.085777,-0.615264,0.197538,-0.849537,0.000000 +0.858398,0.085998,-0.616915,0.198051,-0.851828,0.000000 +0.860724,0.086218,-0.618565,0.198564,-0.854119,0.000000 +0.863050,0.086439,-0.620215,0.199077,-0.856410,0.000000 +0.865376,0.086660,-0.621866,0.199590,-0.858700,0.000000 +0.867702,0.086880,-0.623516,0.200103,-0.860991,0.000000 +0.870027,0.087101,-0.625167,0.200616,-0.863282,0.000000 +0.872353,0.087322,-0.626817,0.201128,-0.865572,0.000000 +0.874679,0.087542,-0.628468,0.201641,-0.867863,0.000000 +0.877005,0.087763,-0.630118,0.202154,-0.870154,0.000000 +0.879331,0.087984,-0.631769,0.202667,-0.872445,0.000000 +0.881657,0.088204,-0.633419,0.203180,-0.874735,0.000000 +0.883982,0.088425,-0.635069,0.203693,-0.877026,0.000000 +0.886308,0.088645,-0.636720,0.204206,-0.879317,0.000000 +0.888634,0.088866,-0.638370,0.204719,-0.881607,0.000000 +0.890960,0.089087,-0.640021,0.205231,-0.883898,0.000000 +0.893286,0.089307,-0.641671,0.205744,-0.886189,0.000000 +0.895612,0.089528,-0.643322,0.206257,-0.888480,0.000000 +0.897937,0.089748,-0.644972,0.206770,-0.890770,0.000000 +0.900263,0.089969,-0.646623,0.207283,-0.893061,0.000000 +0.902589,0.090190,-0.648273,0.207796,-0.895352,0.000000 +0.904915,0.090410,-0.649923,0.208309,-0.897642,0.000000 +0.907241,0.090631,-0.651574,0.208822,-0.899933,0.000000 +0.909567,0.090852,-0.653224,0.209334,-0.902224,0.000000 +0.911893,0.091072,-0.654875,0.209847,-0.904514,0.000000 +0.914218,0.091293,-0.656525,0.210360,-0.906805,0.000000 +0.916544,0.091514,-0.658176,0.210873,-0.909096,0.000000 +0.918870,0.091734,-0.659826,0.211386,-0.911387,0.000000 +0.921196,0.091955,-0.661477,0.211899,-0.913677,0.000000 +0.923522,0.092175,-0.663127,0.212412,-0.915968,0.000000 +0.925848,0.092396,-0.664777,0.212925,-0.918259,0.000000 +0.928173,0.092617,-0.666428,0.213437,-0.920549,0.000000 +0.930499,0.092837,-0.668078,0.213950,-0.922840,0.000000 +0.932825,0.093058,-0.669729,0.214463,-0.925131,0.000000 +0.935151,0.093279,-0.671379,0.214976,-0.927422,0.000000 +0.937477,0.093499,-0.673030,0.215489,-0.929712,0.000000 +0.939803,0.093720,-0.674680,0.216002,-0.932003,0.000000 +0.942128,0.093940,-0.676331,0.216515,-0.934294,0.000000 +0.944454,0.094161,-0.677981,0.217028,-0.936584,0.000000 +0.946780,0.094382,-0.679631,0.217540,-0.938875,0.000000 +0.949106,0.094602,-0.681282,0.218053,-0.941166,0.000000 +0.951432,0.094823,-0.682932,0.218566,-0.943456,0.000000 +0.953758,0.095044,-0.684583,0.219079,-0.945747,0.000000 +0.956084,0.095264,-0.686233,0.219592,-0.948038,0.000000 +0.958409,0.095485,-0.687884,0.220105,-0.950329,0.000000 +0.960735,0.095706,-0.689534,0.220618,-0.952619,0.000000 +0.963061,0.095926,-0.691185,0.221131,-0.954910,0.000000 +0.965387,0.096147,-0.692835,0.221643,-0.957201,0.000000 +0.967713,0.096367,-0.694485,0.222156,-0.959491,0.000000 +0.970039,0.096588,-0.696136,0.222669,-0.961782,0.000000 +0.972364,0.096809,-0.697786,0.223182,-0.964073,0.000000 +0.974690,0.097029,-0.699437,0.223695,-0.966364,0.000000 +0.977016,0.097250,-0.701087,0.224208,-0.968654,0.000000 +0.979342,0.097471,-0.702738,0.224721,-0.970945,0.000000 +0.981668,0.097691,-0.704388,0.225234,-0.973236,0.000000 +0.983994,0.097912,-0.706038,0.225746,-0.975526,0.000000 +0.986319,0.098132,-0.707689,0.226259,-0.977817,0.000000 +0.988645,0.098353,-0.709339,0.226772,-0.980108,0.000000 +0.990971,0.098574,-0.710990,0.227285,-0.982399,0.000000 +0.993297,0.098794,-0.712640,0.227798,-0.984689,0.000000 +0.995623,0.099015,-0.714291,0.228311,-0.986980,0.000000 +0.997949,0.099236,-0.715941,0.228824,-0.989271,0.000000 +1.000270,0.099456,-0.717592,0.229337,-0.991561,0.000000 +1.002600,0.099677,-0.719242,0.229849,-0.993852,0.000000 +1.004930,0.099898,-0.720892,0.230362,-0.996143,0.000000 +1.007250,0.100118,-0.722543,0.230875,-0.998433,0.000000 +1.009580,0.100339,-0.724193,0.231388,-1.000720,0.000000 +1.011900,0.100559,-0.725844,0.231901,-1.003010,0.000000 +1.014230,0.100780,-0.727494,0.232414,-1.005310,0.000000 +1.016560,0.101001,-0.729145,0.232927,-1.007600,0.000000 +1.018880,0.101221,-0.730795,0.233440,-1.009890,0.000000 +1.021210,0.101442,-0.732446,0.233952,-1.012180,0.000000 +1.023530,0.101663,-0.734096,0.234465,-1.014470,0.000000 +1.025860,0.101883,-0.735746,0.234978,-1.016760,0.000000 +1.028180,0.102104,-0.737397,0.235491,-1.019050,0.000000 +1.030510,0.102324,-0.739047,0.236004,-1.021340,0.000000 +1.032840,0.102545,-0.740698,0.236517,-1.023630,0.000000 +1.035160,0.102766,-0.742348,0.237030,-1.025920,0.000000 +1.037490,0.102986,-0.743999,0.237542,-1.028210,0.000000 +1.039810,0.103207,-0.745649,0.238055,-1.030500,0.000000 +1.042140,0.103428,-0.747300,0.238568,-1.032790,0.000000 +1.044470,0.103648,-0.748950,0.239081,-1.035080,0.000000 +1.046790,0.103869,-0.750600,0.239594,-1.037380,0.000000 +1.049120,0.104090,-0.752251,0.240107,-1.039670,0.000000 +1.051440,0.104310,-0.753901,0.240620,-1.041960,0.000000 +1.053770,0.104531,-0.755552,0.241133,-1.044250,0.000000 +1.056090,0.104751,-0.757202,0.241645,-1.046540,0.000000 +1.058420,0.104972,-0.758853,0.242158,-1.048830,0.000000 +1.060750,0.105193,-0.760503,0.242671,-1.051120,0.000000 +1.063070,0.105413,-0.762154,0.243184,-1.053410,0.000000 +1.065400,0.105634,-0.763804,0.243697,-1.055700,0.000000 +1.067720,0.105855,-0.765454,0.244210,-1.057990,0.000000 +1.070050,0.106075,-0.767105,0.244723,-1.060280,0.000000 +1.072380,0.106296,-0.768755,0.245236,-1.062570,0.000000 +1.074700,0.106516,-0.770406,0.245748,-1.064860,0.000000 +1.077030,0.106737,-0.772056,0.246261,-1.067150,0.000000 +1.079350,0.106958,-0.773707,0.246774,-1.069450,0.000000 +1.081680,0.107178,-0.775357,0.247287,-1.071740,0.000000 +1.084000,0.107399,-0.777008,0.247800,-1.074030,0.000000 +1.086330,0.107620,-0.778658,0.248313,-1.076320,0.000000 +1.088660,0.107840,-0.780308,0.248826,-1.078610,0.000000 +1.090980,0.108061,-0.781959,0.249339,-1.080900,0.000000 +1.093310,0.108282,-0.783609,0.249851,-1.083190,0.000000 +1.095630,0.108502,-0.785260,0.250364,-1.085480,0.000000 +1.097960,0.108723,-0.786910,0.250877,-1.087770,0.000000 +1.100290,0.108943,-0.788561,0.251390,-1.090060,0.000000 +1.102610,0.109164,-0.790211,0.251903,-1.092350,0.000000 +1.104940,0.109385,-0.791862,0.252416,-1.094640,0.000000 +1.107260,0.109605,-0.793512,0.252929,-1.096930,0.000000 +1.109590,0.109826,-0.795162,0.253442,-1.099220,0.000000 +1.111910,0.110047,-0.796813,0.253954,-1.101520,0.000000 +1.114240,0.110267,-0.798463,0.254467,-1.103810,0.000000 +1.116570,0.110488,-0.800114,0.254980,-1.106100,0.000000 +1.118890,0.110708,-0.801764,0.255493,-1.108390,0.000000 +1.121220,0.110929,-0.803415,0.256006,-1.110680,0.000000 +1.123540,0.111150,-0.805065,0.256519,-1.112970,0.000000 +1.125870,0.111370,-0.806715,0.257032,-1.115260,0.000000 +1.128200,0.111591,-0.808366,0.257545,-1.117550,0.000000 +1.130520,0.111812,-0.810016,0.258057,-1.119840,0.000000 +1.132850,0.112032,-0.811667,0.258570,-1.122130,0.000000 +1.135170,0.112253,-0.813317,0.259083,-1.124420,0.000000 +1.137500,0.112473,-0.814968,0.259596,-1.126710,0.000000 +1.139830,0.112694,-0.816618,0.260109,-1.129000,0.000000 +1.142150,0.112915,-0.818269,0.260622,-1.131290,0.000000 +1.144480,0.113135,-0.819919,0.261135,-1.133590,0.000000 +1.146800,0.113356,-0.821569,0.261648,-1.135880,0.000000 +1.149130,0.113577,-0.823220,0.262160,-1.138170,0.000000 +1.151450,0.113797,-0.824870,0.262673,-1.140460,0.000000 +1.153780,0.114018,-0.826521,0.263186,-1.142750,0.000000 +1.156110,0.114239,-0.828171,0.263699,-1.145040,0.000000 +1.158430,0.114459,-0.829822,0.264212,-1.147330,0.000000 +1.160760,0.114680,-0.831472,0.264725,-1.149620,0.000000 +1.163080,0.114900,-0.833123,0.265238,-1.151910,0.000000 +1.165410,0.115121,-0.834773,0.265751,-1.154200,0.000000 +1.167740,0.115342,-0.836423,0.266263,-1.156490,0.000000 +1.170060,0.115562,-0.838074,0.266776,-1.158780,0.000000 +1.172390,0.115783,-0.839724,0.267289,-1.161070,0.000000 +1.174710,0.116004,-0.841375,0.267802,-1.163360,0.000000 +1.177040,0.116224,-0.843025,0.268315,-1.165660,0.000000 +1.179360,0.116445,-0.844676,0.268828,-1.167950,0.000000 +1.181690,0.116665,-0.846326,0.269341,-1.170240,0.000000 +1.184020,0.116886,-0.847977,0.269854,-1.172530,0.000000 +1.186340,0.117107,-0.849627,0.270366,-1.174820,0.000000 +1.188670,0.117327,-0.851277,0.270879,-1.177110,0.000000 +1.190990,0.117548,-0.852928,0.271392,-1.179400,0.000000 +1.193320,0.117769,-0.854578,0.271905,-1.181690,0.000000 +1.195650,0.117989,-0.856229,0.272418,-1.183980,0.000000 +1.197970,0.118210,-0.857879,0.272931,-1.186270,0.000000 +1.200300,0.118431,-0.859530,0.273444,-1.188560,0.000000 +1.202620,0.118651,-0.861180,0.273957,-1.190850,0.000000 +1.204950,0.118872,-0.862831,0.274469,-1.193140,0.000000 +1.207270,0.119092,-0.864481,0.274982,-1.195430,0.000000 +1.209600,0.119313,-0.866131,0.275495,-1.197730,0.000000 +1.211930,0.119534,-0.867782,0.276008,-1.200020,0.000000 +1.214250,0.119754,-0.869432,0.276521,-1.202310,0.000000 +1.216580,0.119975,-0.871083,0.277034,-1.204600,0.000000 +1.218900,0.120196,-0.872733,0.277547,-1.206890,0.000000 +1.221230,0.120416,-0.874384,0.278060,-1.209180,0.000000 +1.223560,0.120637,-0.876034,0.278572,-1.211470,0.000000 +1.225880,0.120857,-0.877685,0.279085,-1.213760,0.000000 +1.228210,0.121078,-0.879335,0.279598,-1.216050,0.000000 +1.230530,0.121299,-0.880985,0.280111,-1.218340,0.000000 +1.232860,0.121519,-0.882636,0.280624,-1.220630,0.000000 +1.235180,0.121740,-0.884286,0.281137,-1.222920,0.000000 +1.237510,0.121961,-0.885937,0.281650,-1.225210,0.000000 +1.239840,0.122181,-0.887587,0.282163,-1.227500,0.000000 +1.242160,0.122402,-0.889238,0.282675,-1.229790,0.000000 +1.244490,0.122623,-0.890888,0.283188,-1.232090,0.000000 +1.246810,0.122843,-0.892539,0.283701,-1.234380,0.000000 +1.249140,0.123064,-0.894189,0.284214,-1.236670,0.000000 +1.251470,0.123284,-0.895839,0.284727,-1.238960,0.000000 +1.253790,0.123505,-0.897490,0.285240,-1.241250,0.000000 +1.256120,0.123726,-0.899140,0.285753,-1.243540,0.000000 +1.258440,0.123946,-0.900791,0.286266,-1.245830,0.000000 +1.260770,0.124167,-0.902441,0.286778,-1.248120,0.000000 +1.263090,0.124388,-0.904092,0.287291,-1.250410,0.000000 +1.265420,0.124608,-0.905742,0.287804,-1.252700,0.000000 +1.267750,0.124829,-0.907392,0.288317,-1.254990,0.000000 +1.270070,0.125049,-0.909043,0.288830,-1.257280,0.000000 +1.272400,0.125270,-0.910693,0.289343,-1.259570,0.000000 +1.274720,0.125491,-0.912344,0.289856,-1.261860,0.000000 +1.277050,0.125711,-0.913994,0.290369,-1.264160,0.000000 +1.279380,0.125932,-0.915645,0.290881,-1.266450,0.000000 +1.281700,0.126153,-0.917295,0.291394,-1.268740,0.000000 +1.284030,0.126373,-0.918946,0.291907,-1.271030,0.000000 +1.286350,0.126594,-0.920596,0.292420,-1.273320,0.000000 +1.288680,0.126814,-0.922246,0.292933,-1.275610,0.000000 +1.291000,0.127035,-0.923897,0.293446,-1.277900,0.000000 +1.293330,0.127256,-0.925547,0.293959,-1.280190,0.000000 +1.295660,0.127476,-0.927198,0.294472,-1.282480,0.000000 +1.297980,0.127697,-0.928848,0.294984,-1.284770,0.000000 +1.300310,0.127918,-0.930499,0.295497,-1.287060,0.000000 +1.302630,0.128138,-0.932149,0.296010,-1.289350,0.000000 +1.304960,0.128359,-0.933800,0.296523,-1.291640,0.000000 +1.307290,0.128580,-0.935450,0.297036,-1.293930,0.000000 +1.309610,0.128800,-0.937100,0.297549,-1.296230,0.000000 +1.311940,0.129021,-0.938751,0.298062,-1.298520,0.000000 +1.314260,0.129241,-0.940401,0.298575,-1.300810,0.000000 +1.316590,0.129462,-0.942052,0.299087,-1.303100,0.000000 +1.318910,0.129683,-0.943702,0.299600,-1.305390,0.000000 +1.321240,0.129903,-0.945353,0.300113,-1.307680,0.000000 +1.323570,0.130124,-0.947003,0.300626,-1.309970,0.000000 +1.325890,0.130345,-0.948654,0.301139,-1.312260,0.000000 +1.328220,0.130565,-0.950304,0.301652,-1.314550,0.000000 +1.330540,0.130786,-0.951954,0.302165,-1.316840,0.000000 +1.332870,0.131006,-0.953605,0.302678,-1.319130,0.000000 +1.335200,0.131227,-0.955255,0.303190,-1.321420,0.000000 +1.337520,0.131448,-0.956906,0.303703,-1.323710,0.000000 +1.339850,0.131668,-0.958556,0.304216,-1.326000,0.000000 +1.342170,0.131889,-0.960207,0.304729,-1.328300,0.000000 +1.344500,0.132110,-0.961857,0.305242,-1.330590,0.000000 +1.346820,0.132330,-0.963508,0.305755,-1.332880,0.000000 +1.349150,0.132551,-0.965158,0.306268,-1.335170,0.000000 +1.351480,0.132772,-0.966808,0.306781,-1.337460,0.000000 +1.353800,0.132992,-0.968459,0.307293,-1.339750,0.000000 +1.356130,0.133213,-0.970109,0.307806,-1.342040,0.000000 +1.358450,0.133433,-0.971760,0.308319,-1.344330,0.000000 +1.360780,0.133654,-0.973410,0.308832,-1.346620,0.000000 +1.363110,0.133875,-0.975061,0.309345,-1.348910,0.000000 +1.365430,0.134095,-0.976711,0.309858,-1.351200,0.000000 +1.367760,0.134316,-0.978362,0.310371,-1.353490,0.000000 +1.370080,0.134537,-0.980012,0.310884,-1.355780,0.000000 +1.372410,0.134757,-0.981662,0.311396,-1.358070,0.000000 +1.374740,0.134978,-0.983313,0.311909,-1.360370,0.000000 +1.377060,0.135198,-0.984963,0.312422,-1.362660,0.000000 +1.379390,0.135419,-0.986614,0.312935,-1.364950,0.000000 +1.381710,0.135640,-0.988264,0.313448,-1.367240,0.000000 +1.384040,0.135860,-0.989915,0.313961,-1.369530,0.000000 +1.386360,0.136081,-0.991565,0.314474,-1.371820,0.000000 +1.388690,0.136302,-0.993216,0.314987,-1.374110,0.000000 +1.391020,0.136522,-0.994866,0.315499,-1.376400,0.000000 +1.393340,0.136743,-0.996516,0.316012,-1.378690,0.000000 +1.395670,0.136963,-0.998167,0.316525,-1.380980,0.000000 +1.397990,0.137184,-0.999817,0.317038,-1.383270,0.000000 +1.400320,0.137405,-1.001470,0.317551,-1.385560,0.000000 +1.402650,0.137625,-1.003120,0.318064,-1.387850,0.000000 +1.404970,0.137846,-1.004770,0.318577,-1.390140,0.000000 +1.407300,0.138067,-1.006420,0.319090,-1.392440,0.000000 +1.409620,0.138287,-1.008070,0.319602,-1.394730,0.000000 +1.411950,0.138508,-1.009720,0.320115,-1.397020,0.000000 +1.414270,0.138729,-1.011370,0.320628,-1.399310,0.000000 +1.416600,0.138949,-1.013020,0.321141,-1.401600,0.000000 +1.418930,0.139170,-1.014670,0.321654,-1.403890,0.000000 +1.421250,0.139390,-1.016320,0.322167,-1.406180,0.000000 +1.423580,0.139611,-1.017970,0.322680,-1.408470,0.000000 +1.425900,0.139832,-1.019620,0.323193,-1.410760,0.000000 +1.428230,0.140052,-1.021270,0.323705,-1.413050,0.000000 +1.430560,0.140273,-1.022920,0.324218,-1.415340,0.000000 +1.432880,0.140494,-1.024570,0.324731,-1.417630,0.000000 +1.435210,0.140714,-1.026220,0.325244,-1.419920,0.000000 +1.437530,0.140935,-1.027870,0.325757,-1.422210,0.000000 +1.439860,0.141155,-1.029530,0.326270,-1.424510,0.000000 +1.442180,0.141376,-1.031180,0.326783,-1.426800,0.000000 +1.444510,0.141597,-1.032830,0.327296,-1.429090,0.000000 +1.446840,0.141817,-1.034480,0.327808,-1.431380,0.000000 +1.449160,0.142038,-1.036130,0.328321,-1.433670,0.000000 +1.451490,0.142259,-1.037780,0.328834,-1.435960,0.000000 +1.453810,0.142479,-1.039430,0.329347,-1.438250,0.000000 +1.456140,0.142700,-1.041080,0.329860,-1.440540,0.000000 +1.458470,0.142921,-1.042730,0.330373,-1.442830,0.000000 +1.460790,0.143141,-1.044380,0.330886,-1.445120,0.000000 +1.463120,0.143362,-1.046030,0.331399,-1.447410,0.000000 +1.465440,0.143582,-1.047680,0.331911,-1.449700,0.000000 +1.467770,0.143803,-1.049330,0.332424,-1.451990,0.000000 +1.470090,0.144024,-1.050980,0.332937,-1.454280,0.000000 +1.472420,0.144244,-1.052630,0.333450,-1.456580,0.000000 +1.474750,0.144465,-1.054280,0.333963,-1.458870,0.000000 +1.477070,0.144686,-1.055930,0.334476,-1.461160,0.000000 +1.479400,0.144906,-1.057580,0.334989,-1.463450,0.000000 +1.481720,0.145127,-1.059230,0.335502,-1.465740,0.000000 +1.484050,0.145347,-1.060880,0.336014,-1.468030,0.000000 +1.486380,0.145568,-1.062530,0.336527,-1.470320,0.000000 +1.488700,0.145789,-1.064180,0.337040,-1.472610,0.000000 +1.491030,0.146009,-1.065830,0.337553,-1.474900,0.000000 +1.493350,0.146230,-1.067490,0.338066,-1.477190,0.000000 +1.495680,0.146451,-1.069140,0.338579,-1.479480,0.000000 +1.498000,0.146671,-1.070790,0.339092,-1.481770,0.000000 +1.500330,0.146892,-1.072440,0.339605,-1.484060,0.000000 +1.502660,0.147113,-1.074090,0.340117,-1.486350,0.000000 +1.504980,0.147333,-1.075740,0.340630,-1.488640,0.000000 +1.507310,0.147554,-1.077390,0.341143,-1.490940,0.000000 +1.509630,0.147774,-1.079040,0.341656,-1.493230,0.000000 +1.511960,0.147995,-1.080690,0.342169,-1.495520,0.000000 +1.514290,0.148216,-1.082340,0.342682,-1.497810,0.000000 +1.516610,0.148436,-1.083990,0.343195,-1.500100,0.000000 +1.518930,0.148657,-1.085640,0.343707,-1.502390,0.000000 +1.521240,0.148878,-1.087290,0.344220,-1.504680,0.000000 +1.523540,0.149098,-1.088940,0.344733,-1.506970,0.000000 +1.525830,0.149319,-1.090590,0.345246,-1.509260,0.000000 +1.528100,0.149539,-1.092240,0.345759,-1.511550,0.000000 +1.530360,0.149760,-1.093890,0.346272,-1.513840,0.000000 +1.532590,0.149981,-1.095540,0.346785,-1.516120,0.000000 +1.534800,0.150201,-1.097190,0.347298,-1.518380,0.000000 +1.536990,0.150422,-1.098840,0.347810,-1.520640,0.000000 +1.539150,0.150643,-1.100490,0.348323,-1.522880,0.000000 +1.541280,0.150863,-1.102130,0.348836,-1.525100,0.000000 +1.543370,0.151084,-1.103760,0.349349,-1.527290,0.000000 +1.545430,0.151304,-1.105380,0.349862,-1.529460,0.000000 +1.547450,0.151525,-1.106980,0.350375,-1.531610,0.000000 +1.549430,0.151746,-1.108570,0.350888,-1.533720,0.000000 +1.551360,0.151966,-1.110140,0.351401,-1.535790,0.000000 +1.553250,0.152187,-1.111690,0.351913,-1.537830,0.000000 +1.555090,0.152408,-1.113210,0.352426,-1.539820,0.000000 +1.556870,0.152628,-1.114700,0.352939,-1.541770,0.000000 +1.558610,0.152849,-1.116170,0.353452,-1.543680,0.000000 +1.560280,0.153070,-1.117600,0.353965,-1.545530,0.000000 +1.561900,0.153290,-1.119000,0.354478,-1.547330,0.000000 +1.563460,0.153511,-1.120360,0.354991,-1.549070,0.000000 +1.564950,0.153731,-1.121680,0.355504,-1.550750,0.000000 +1.566370,0.153952,-1.122960,0.356016,-1.552370,0.000000 +1.567730,0.154173,-1.124190,0.356529,-1.553930,0.000000 +1.569010,0.154393,-1.125380,0.357042,-1.555410,0.000000 +1.570210,0.154614,-1.126510,0.357555,-1.556820,0.000000 +1.571340,0.154835,-1.127600,0.358068,-1.558160,0.000000 +1.572400,0.155055,-1.128620,0.358581,-1.559420,0.000000 +1.573380,0.155276,-1.129590,0.359094,-1.560590,0.000000 +1.574290,0.155496,-1.130500,0.359607,-1.561680,0.000000 +1.575140,0.155717,-1.131340,0.360119,-1.562700,0.000000 +1.575920,0.155938,-1.132120,0.360630,-1.563630,0.000000 +1.576630,0.156158,-1.132840,0.361135,-1.564490,0.000000 +1.577290,0.156379,-1.133500,0.361632,-1.565280,0.000000 +1.577890,0.156600,-1.134100,0.362118,-1.565990,0.000000 +1.578440,0.156820,-1.134640,0.362589,-1.566650,0.000000 +1.578930,0.157041,-1.135140,0.363042,-1.567240,0.000000 +1.579370,0.157261,-1.135580,0.363475,-1.567770,0.000000 +1.579770,0.157481,-1.135980,0.363883,-1.568250,0.000000 +1.580130,0.157697,-1.136330,0.364265,-1.568670,0.000000 +1.580440,0.157906,-1.136640,0.364616,-1.569050,0.000000 +1.580710,0.158106,-1.136920,0.364935,-1.569370,0.000000 +1.580950,0.158295,-1.137150,0.365217,-1.569660,0.000000 +1.581150,0.158470,-1.137360,0.365460,-1.569900,0.000000 +1.581320,0.158628,-1.137530,0.365666,-1.570110,0.000000 +1.581460,0.158767,-1.137670,0.365837,-1.570280,0.000000 +1.581580,0.158884,-1.137790,0.365978,-1.570420,0.000000 +1.581680,0.158977,-1.137880,0.366090,-1.570530,0.000000 +1.581750,0.159051,-1.137960,0.366178,-1.570620,0.000000 +1.581800,0.159106,-1.138010,0.366244,-1.570680,0.000000 +1.581840,0.159145,-1.138050,0.366291,-1.570730,0.000000 +1.581870,0.159171,-1.138080,0.366322,-1.570760,0.000000 +1.581890,0.159187,-1.138090,0.366342,-1.570780,0.000000 +1.581890,0.159196,-1.138100,0.366351,-1.570790,0.000000 +1.581900,0.159199,-1.138100,0.366355,-1.570790,0.000000 +1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +1.581900,0.159203,-1.138110,0.366355,-1.570800,-0.000008 +1.581890,0.159200,-1.138100,0.366352,-1.570790,-0.000008 +1.581890,0.159191,-1.138100,0.366342,-1.570780,-0.000008 +1.581870,0.159175,-1.138080,0.366323,-1.570760,-0.000008 +1.581840,0.159149,-1.138050,0.366291,-1.570730,-0.000008 +1.581800,0.159110,-1.138010,0.366244,-1.570680,-0.000008 +1.581750,0.159055,-1.137960,0.366178,-1.570620,-0.000008 +1.581680,0.158981,-1.137890,0.366091,-1.570530,-0.000008 +1.581580,0.158888,-1.137790,0.365978,-1.570420,-0.000008 +1.581470,0.158771,-1.137680,0.365838,-1.570280,-0.000008 +1.581320,0.158632,-1.137530,0.365666,-1.570110,-0.000008 +1.581150,0.158474,-1.137360,0.365460,-1.569900,-0.000008 +1.580950,0.158299,-1.137160,0.365217,-1.569660,-0.000008 +1.580710,0.158110,-1.136920,0.364935,-1.569370,-0.000008 +1.580440,0.157910,-1.136650,0.364617,-1.569050,-0.000008 +1.580130,0.157700,-1.136340,0.364265,-1.568670,-0.000008 +1.579770,0.157485,-1.135980,0.363884,-1.568250,-0.000008 +1.579370,0.157265,-1.135580,0.363475,-1.567770,-0.000008 +1.578930,0.157045,-1.135140,0.363042,-1.567240,-0.000008 +1.578440,0.156824,-1.134650,0.362589,-1.566650,-0.000008 +1.577890,0.156604,-1.134100,0.362118,-1.565990,-0.000008 +1.577290,0.156383,-1.133500,0.361633,-1.565280,-0.000008 +1.576630,0.156162,-1.132840,0.361136,-1.564490,-0.000008 +1.575920,0.155942,-1.132130,0.360630,-1.563630,-0.000008 +1.575140,0.155721,-1.131350,0.360120,-1.562700,-0.000008 +1.574290,0.155500,-1.130500,0.359607,-1.561680,-0.000008 +1.573380,0.155280,-1.129600,0.359094,-1.560590,-0.000008 +1.572400,0.155059,-1.128630,0.358581,-1.559420,-0.000008 +1.571340,0.154839,-1.127600,0.358068,-1.558160,-0.000008 +1.570210,0.154618,-1.126520,0.357555,-1.556820,-0.000008 +1.569010,0.154397,-1.125380,0.357043,-1.555410,-0.000008 +1.567730,0.154177,-1.124200,0.356530,-1.553930,-0.000008 +1.566370,0.153956,-1.122970,0.356017,-1.552370,-0.000008 +1.564950,0.153735,-1.121690,0.355504,-1.550760,-0.000008 +1.563460,0.153515,-1.120370,0.354991,-1.549070,-0.000008 +1.561900,0.153294,-1.119010,0.354478,-1.547330,-0.000008 +1.560280,0.153074,-1.117610,0.353965,-1.545530,-0.000008 +1.558610,0.152853,-1.116170,0.353452,-1.543680,-0.000008 +1.556870,0.152632,-1.114710,0.352940,-1.541770,-0.000008 +1.555090,0.152412,-1.113210,0.352427,-1.539820,-0.000008 +1.553250,0.152191,-1.111690,0.351914,-1.537830,-0.000008 +1.551360,0.151970,-1.110140,0.351401,-1.535790,-0.000008 +1.549430,0.151750,-1.108570,0.350888,-1.533720,-0.000008 +1.547450,0.151529,-1.106990,0.350375,-1.531610,-0.000008 +1.545430,0.151308,-1.105380,0.349862,-1.529460,-0.000008 +1.543370,0.151088,-1.103760,0.349349,-1.527290,-0.000008 +1.541280,0.150867,-1.102130,0.348837,-1.525100,-0.000008 +1.539150,0.150647,-1.100490,0.348324,-1.522880,-0.000008 +1.536990,0.150426,-1.098850,0.347811,-1.520640,-0.000008 +1.534800,0.150205,-1.097200,0.347298,-1.518380,-0.000008 +1.532590,0.149985,-1.095550,0.346785,-1.516120,-0.000008 +1.530360,0.149764,-1.093900,0.346272,-1.513840,-0.000008 +1.528100,0.149543,-1.092250,0.345759,-1.511550,-0.000008 +1.525830,0.149323,-1.090600,0.345246,-1.509260,-0.000008 +1.523540,0.149102,-1.088950,0.344734,-1.506970,-0.000008 +1.521240,0.148882,-1.087300,0.344221,-1.504680,-0.000008 +1.518930,0.148661,-1.085640,0.343708,-1.502390,-0.000008 +1.516610,0.148440,-1.083990,0.343195,-1.500100,-0.000008 +1.514290,0.148220,-1.082340,0.342682,-1.497810,-0.000008 +1.511960,0.147999,-1.080690,0.342169,-1.495520,-0.000008 +1.509630,0.147778,-1.079040,0.341656,-1.493230,-0.000008 +1.507310,0.147558,-1.077390,0.341143,-1.490940,-0.000008 +1.504980,0.147337,-1.075740,0.340631,-1.488650,-0.000008 +1.502660,0.147116,-1.074090,0.340118,-1.486350,-0.000008 +1.500330,0.146896,-1.072440,0.339605,-1.484060,-0.000008 +1.498010,0.146675,-1.070790,0.339092,-1.481770,-0.000008 +1.495680,0.146455,-1.069140,0.338579,-1.479480,-0.000008 +1.493350,0.146234,-1.067490,0.338066,-1.477190,-0.000008 +1.491030,0.146013,-1.065840,0.337553,-1.474900,-0.000008 +1.488700,0.145793,-1.064190,0.337040,-1.472610,-0.000008 +1.486380,0.145572,-1.062540,0.336528,-1.470320,-0.000008 +1.484050,0.145351,-1.060890,0.336015,-1.468030,-0.000008 +1.481720,0.145131,-1.059240,0.335502,-1.465740,-0.000008 +1.479400,0.144910,-1.057590,0.334989,-1.463450,-0.000008 +1.477070,0.144690,-1.055940,0.334476,-1.461160,-0.000008 +1.474750,0.144469,-1.054290,0.333963,-1.458870,-0.000008 +1.472420,0.144248,-1.052640,0.333450,-1.456580,-0.000008 +1.470090,0.144028,-1.050990,0.332938,-1.454280,-0.000008 +1.467770,0.143807,-1.049340,0.332425,-1.451990,-0.000008 +1.465440,0.143586,-1.047680,0.331912,-1.449700,-0.000008 +1.463120,0.143366,-1.046030,0.331399,-1.447410,-0.000008 +1.460790,0.143145,-1.044380,0.330886,-1.445120,-0.000008 +1.458470,0.142924,-1.042730,0.330373,-1.442830,-0.000008 +1.456140,0.142704,-1.041080,0.329860,-1.440540,-0.000008 +1.453810,0.142483,-1.039430,0.329347,-1.438250,-0.000008 +1.451490,0.142263,-1.037780,0.328835,-1.435960,-0.000008 +1.449160,0.142042,-1.036130,0.328322,-1.433670,-0.000008 +1.446840,0.141821,-1.034480,0.327809,-1.431380,-0.000008 +1.444510,0.141601,-1.032830,0.327296,-1.429090,-0.000008 +1.442180,0.141380,-1.031180,0.326783,-1.426800,-0.000008 +1.439860,0.141159,-1.029530,0.326270,-1.424510,-0.000008 +1.437530,0.140939,-1.027880,0.325757,-1.422220,-0.000008 +1.435210,0.140718,-1.026230,0.325244,-1.419920,-0.000008 +1.432880,0.140498,-1.024580,0.324732,-1.417630,-0.000008 +1.430560,0.140277,-1.022930,0.324219,-1.415340,-0.000008 +1.428230,0.140056,-1.021280,0.323706,-1.413050,-0.000008 +1.425900,0.139836,-1.019630,0.323193,-1.410760,-0.000008 +1.423580,0.139615,-1.017980,0.322680,-1.408470,-0.000008 +1.421250,0.139394,-1.016330,0.322167,-1.406180,-0.000008 +1.418930,0.139174,-1.014680,0.321654,-1.403890,-0.000008 +1.416600,0.138953,-1.013030,0.321141,-1.401600,-0.000008 +1.414270,0.138733,-1.011370,0.320629,-1.399310,-0.000008 +1.411950,0.138512,-1.009720,0.320116,-1.397020,-0.000008 +1.409620,0.138291,-1.008070,0.319603,-1.394730,-0.000008 +1.407300,0.138071,-1.006420,0.319090,-1.392440,-0.000008 +1.404970,0.137850,-1.004770,0.318577,-1.390150,-0.000008 +1.402650,0.137629,-1.003120,0.318064,-1.387850,-0.000008 +1.400320,0.137409,-1.001470,0.317551,-1.385560,-0.000008 +1.397990,0.137188,-0.999822,0.317038,-1.383270,-0.000008 +1.395670,0.136967,-0.998171,0.316526,-1.380980,-0.000008 +1.393340,0.136747,-0.996521,0.316013,-1.378690,-0.000008 +1.391020,0.136526,-0.994870,0.315500,-1.376400,-0.000008 +1.388690,0.136306,-0.993220,0.314987,-1.374110,-0.000008 +1.386360,0.136085,-0.991570,0.314474,-1.371820,-0.000008 +1.384040,0.135864,-0.989919,0.313961,-1.369530,-0.000008 +1.381710,0.135644,-0.988269,0.313448,-1.367240,-0.000008 +1.379390,0.135423,-0.986618,0.312935,-1.364950,-0.000008 +1.377060,0.135202,-0.984968,0.312423,-1.362660,-0.000008 +1.374740,0.134982,-0.983317,0.311910,-1.360370,-0.000008 +1.372410,0.134761,-0.981667,0.311397,-1.358080,-0.000008 +1.370080,0.134541,-0.980016,0.310884,-1.355780,-0.000008 +1.367760,0.134320,-0.978366,0.310371,-1.353490,-0.000008 +1.365430,0.134099,-0.976716,0.309858,-1.351200,-0.000008 +1.363110,0.133879,-0.975065,0.309345,-1.348910,-0.000008 +1.360780,0.133658,-0.973415,0.308832,-1.346620,-0.000008 +1.358450,0.133437,-0.971764,0.308320,-1.344330,-0.000008 +1.356130,0.133217,-0.970114,0.307807,-1.342040,-0.000008 +1.353800,0.132996,-0.968463,0.307294,-1.339750,-0.000008 +1.351480,0.132775,-0.966813,0.306781,-1.337460,-0.000008 +1.349150,0.132555,-0.965162,0.306268,-1.335170,-0.000008 +1.346830,0.132334,-0.963512,0.305755,-1.332880,-0.000008 +1.344500,0.132114,-0.961862,0.305242,-1.330590,-0.000008 +1.342170,0.131893,-0.960211,0.304729,-1.328300,-0.000008 +1.339850,0.131672,-0.958561,0.304217,-1.326010,-0.000008 +1.337520,0.131452,-0.956910,0.303704,-1.323710,-0.000008 +1.335200,0.131231,-0.955260,0.303191,-1.321420,-0.000008 +1.332870,0.131010,-0.953609,0.302678,-1.319130,-0.000008 +1.330540,0.130790,-0.951959,0.302165,-1.316840,-0.000008 +1.328220,0.130569,-0.950308,0.301652,-1.314550,-0.000008 +1.325890,0.130349,-0.948658,0.301139,-1.312260,-0.000008 +1.323570,0.130128,-0.947008,0.300626,-1.309970,-0.000008 +1.321240,0.129907,-0.945357,0.300114,-1.307680,-0.000008 +1.318920,0.129687,-0.943707,0.299601,-1.305390,-0.000008 +1.316590,0.129466,-0.942056,0.299088,-1.303100,-0.000008 +1.314260,0.129245,-0.940406,0.298575,-1.300810,-0.000008 +1.311940,0.129025,-0.938755,0.298062,-1.298520,-0.000008 +1.309610,0.128804,-0.937105,0.297549,-1.296230,-0.000008 +1.307290,0.128583,-0.935454,0.297036,-1.293940,-0.000008 +1.304960,0.128363,-0.933804,0.296523,-1.291640,-0.000008 +1.302630,0.128142,-0.932154,0.296011,-1.289350,-0.000008 +1.300310,0.127922,-0.930503,0.295498,-1.287060,-0.000008 +1.297980,0.127701,-0.928853,0.294985,-1.284770,-0.000008 +1.295660,0.127480,-0.927202,0.294472,-1.282480,-0.000008 +1.293330,0.127260,-0.925552,0.293959,-1.280190,-0.000008 +1.291010,0.127039,-0.923901,0.293446,-1.277900,-0.000008 +1.288680,0.126818,-0.922251,0.292933,-1.275610,-0.000008 +1.286350,0.126598,-0.920600,0.292420,-1.273320,-0.000008 +1.284030,0.126377,-0.918950,0.291908,-1.271030,-0.000008 +1.281700,0.126157,-0.917300,0.291395,-1.268740,-0.000008 +1.279380,0.125936,-0.915649,0.290882,-1.266450,-0.000008 +1.277050,0.125715,-0.913999,0.290369,-1.264160,-0.000008 +1.274720,0.125495,-0.912348,0.289856,-1.261870,-0.000008 +1.272400,0.125274,-0.910698,0.289343,-1.259570,-0.000008 +1.270070,0.125053,-0.909047,0.288830,-1.257280,-0.000008 +1.267750,0.124833,-0.907397,0.288317,-1.254990,-0.000008 +1.265420,0.124612,-0.905747,0.287805,-1.252700,-0.000008 +1.263100,0.124392,-0.904096,0.287292,-1.250410,-0.000008 +1.260770,0.124171,-0.902446,0.286779,-1.248120,-0.000008 +1.258440,0.123950,-0.900795,0.286266,-1.245830,-0.000008 +1.256120,0.123730,-0.899145,0.285753,-1.243540,-0.000008 +1.253790,0.123509,-0.897494,0.285240,-1.241250,-0.000008 +1.251470,0.123288,-0.895844,0.284727,-1.238960,-0.000008 +1.249140,0.123068,-0.894193,0.284214,-1.236670,-0.000008 +1.246810,0.122847,-0.892543,0.283702,-1.234380,-0.000008 +1.244490,0.122626,-0.890893,0.283189,-1.232090,-0.000008 +1.242160,0.122406,-0.889242,0.282676,-1.229800,-0.000008 +1.239840,0.122185,-0.887592,0.282163,-1.227500,-0.000008 +1.237510,0.121965,-0.885941,0.281650,-1.225210,-0.000008 +1.235180,0.121744,-0.884291,0.281137,-1.222920,-0.000008 +1.232860,0.121523,-0.882640,0.280624,-1.220630,-0.000008 +1.230530,0.121303,-0.880990,0.280111,-1.218340,-0.000008 +1.228210,0.121082,-0.879339,0.279599,-1.216050,-0.000008 +1.225880,0.120861,-0.877689,0.279086,-1.213760,-0.000008 +1.223560,0.120641,-0.876039,0.278573,-1.211470,-0.000008 +1.221230,0.120420,-0.874388,0.278060,-1.209180,-0.000008 +1.218900,0.120200,-0.872738,0.277547,-1.206890,-0.000008 +1.216580,0.119979,-0.871087,0.277034,-1.204600,-0.000008 +1.214250,0.119758,-0.869437,0.276521,-1.202310,-0.000008 +1.211930,0.119538,-0.867786,0.276008,-1.200020,-0.000008 +1.209600,0.119317,-0.866136,0.275496,-1.197730,-0.000008 +1.207270,0.119096,-0.864485,0.274983,-1.195440,-0.000008 +1.204950,0.118876,-0.862835,0.274470,-1.193140,-0.000008 +1.202620,0.118655,-0.861185,0.273957,-1.190850,-0.000008 +1.200300,0.118434,-0.859534,0.273444,-1.188560,-0.000008 +1.197970,0.118214,-0.857884,0.272931,-1.186270,-0.000008 +1.195650,0.117993,-0.856233,0.272418,-1.183980,-0.000008 +1.193320,0.117773,-0.854583,0.271905,-1.181690,-0.000008 +1.190990,0.117552,-0.852932,0.271393,-1.179400,-0.000008 +1.188670,0.117331,-0.851282,0.270880,-1.177110,-0.000008 +1.186340,0.117111,-0.849631,0.270367,-1.174820,-0.000008 +1.184020,0.116890,-0.847981,0.269854,-1.172530,-0.000008 +1.181690,0.116669,-0.846331,0.269341,-1.170240,-0.000008 +1.179360,0.116449,-0.844680,0.268828,-1.167950,-0.000008 +1.177040,0.116228,-0.843030,0.268315,-1.165660,-0.000008 +1.174710,0.116008,-0.841379,0.267802,-1.163370,-0.000008 +1.172390,0.115787,-0.839729,0.267290,-1.161070,-0.000008 +1.170060,0.115566,-0.838078,0.266777,-1.158780,-0.000008 +1.167740,0.115346,-0.836428,0.266264,-1.156490,-0.000008 +1.165410,0.115125,-0.834777,0.265751,-1.154200,-0.000008 +1.163080,0.114904,-0.833127,0.265238,-1.151910,-0.000008 +1.160760,0.114684,-0.831477,0.264725,-1.149620,-0.000008 +1.158430,0.114463,-0.829826,0.264212,-1.147330,-0.000008 +1.156110,0.114243,-0.828176,0.263699,-1.145040,-0.000008 +1.153780,0.114022,-0.826525,0.263187,-1.142750,-0.000008 +1.151450,0.113801,-0.824875,0.262674,-1.140460,-0.000008 +1.149130,0.113581,-0.823224,0.262161,-1.138170,-0.000008 +1.146800,0.113360,-0.821574,0.261648,-1.135880,-0.000008 +1.144480,0.113139,-0.819924,0.261135,-1.133590,-0.000008 +1.142150,0.112919,-0.818273,0.260622,-1.131300,-0.000008 +1.139830,0.112698,-0.816623,0.260109,-1.129000,-0.000008 +1.137500,0.112477,-0.814972,0.259596,-1.126710,-0.000008 +1.135170,0.112257,-0.813322,0.259084,-1.124420,-0.000008 +1.132850,0.112036,-0.811671,0.258571,-1.122130,-0.000008 +1.130520,0.111816,-0.810021,0.258058,-1.119840,-0.000008 +1.128200,0.111595,-0.808370,0.257545,-1.117550,-0.000008 +1.125870,0.111374,-0.806720,0.257032,-1.115260,-0.000008 +1.123540,0.111154,-0.805070,0.256519,-1.112970,-0.000008 +1.121220,0.110933,-0.803419,0.256006,-1.110680,-0.000008 +1.118890,0.110712,-0.801769,0.255493,-1.108390,-0.000008 +1.116570,0.110492,-0.800118,0.254981,-1.106100,-0.000008 +1.114240,0.110271,-0.798468,0.254468,-1.103810,-0.000008 +1.111920,0.110051,-0.796817,0.253955,-1.101520,-0.000008 +1.109590,0.109830,-0.795167,0.253442,-1.099230,-0.000008 +1.107260,0.109609,-0.793516,0.252929,-1.096930,-0.000008 +1.104940,0.109389,-0.791866,0.252416,-1.094640,-0.000008 +1.102610,0.109168,-0.790216,0.251903,-1.092350,-0.000008 +1.100290,0.108947,-0.788565,0.251390,-1.090060,-0.000008 +1.097960,0.108727,-0.786915,0.250878,-1.087770,-0.000008 +1.095630,0.108506,-0.785264,0.250365,-1.085480,-0.000008 +1.093310,0.108285,-0.783614,0.249852,-1.083190,-0.000008 +1.090980,0.108065,-0.781963,0.249339,-1.080900,-0.000008 +1.088660,0.107844,-0.780313,0.248826,-1.078610,-0.000008 +1.086330,0.107624,-0.778662,0.248313,-1.076320,-0.000008 +1.084010,0.107403,-0.777012,0.247800,-1.074030,-0.000008 +1.081680,0.107182,-0.775362,0.247287,-1.071740,-0.000008 +1.079350,0.106962,-0.773711,0.246775,-1.069450,-0.000008 +1.077030,0.106741,-0.772061,0.246262,-1.067160,-0.000008 +1.074700,0.106520,-0.770410,0.245749,-1.064860,-0.000008 +1.072380,0.106300,-0.768760,0.245236,-1.062570,-0.000008 +1.070050,0.106079,-0.767109,0.244723,-1.060280,-0.000008 +1.067720,0.105859,-0.765459,0.244210,-1.057990,-0.000008 +1.065400,0.105638,-0.763808,0.243697,-1.055700,-0.000008 +1.063070,0.105417,-0.762158,0.243184,-1.053410,-0.000008 +1.060750,0.105197,-0.760508,0.242672,-1.051120,-0.000008 +1.058420,0.104976,-0.758857,0.242159,-1.048830,-0.000008 +1.056100,0.104755,-0.757207,0.241646,-1.046540,-0.000008 +1.053770,0.104535,-0.755556,0.241133,-1.044250,-0.000008 +1.051440,0.104314,-0.753906,0.240620,-1.041960,-0.000008 +1.049120,0.104093,-0.752255,0.240107,-1.039670,-0.000008 +1.046790,0.103873,-0.750605,0.239594,-1.037380,-0.000008 +1.044470,0.103652,-0.748954,0.239081,-1.035090,-0.000008 +1.042140,0.103432,-0.747304,0.238569,-1.032790,-0.000008 +1.039810,0.103211,-0.745654,0.238056,-1.030500,-0.000008 +1.037490,0.102990,-0.744003,0.237543,-1.028210,-0.000008 +1.035160,0.102770,-0.742353,0.237030,-1.025920,-0.000008 +1.032840,0.102549,-0.740702,0.236517,-1.023630,-0.000008 +1.030510,0.102328,-0.739052,0.236004,-1.021340,-0.000008 +1.028190,0.102108,-0.737401,0.235491,-1.019050,-0.000008 +1.025860,0.101887,-0.735751,0.234978,-1.016760,-0.000008 +1.023530,0.101667,-0.734100,0.234466,-1.014470,-0.000008 +1.021210,0.101446,-0.732450,0.233953,-1.012180,-0.000008 +1.018880,0.101225,-0.730800,0.233440,-1.009890,-0.000008 +1.016560,0.101005,-0.729149,0.232927,-1.007600,-0.000008 +1.014230,0.100784,-0.727499,0.232414,-1.005310,-0.000008 +1.011900,0.100563,-0.725848,0.231901,-1.003020,-0.000008 +1.009580,0.100343,-0.724198,0.231388,-1.000720,-0.000008 +1.007250,0.100122,-0.722547,0.230876,-0.998434,-0.000008 +1.004930,0.099902,-0.720897,0.230363,-0.996143,-0.000008 +1.002600,0.099681,-0.719247,0.229850,-0.993853,-0.000008 +1.000270,0.099460,-0.717596,0.229337,-0.991562,-0.000008 +0.997949,0.099240,-0.715946,0.228824,-0.989271,-0.000008 +0.995623,0.099019,-0.714295,0.228311,-0.986981,-0.000008 +0.993297,0.098798,-0.712645,0.227798,-0.984690,-0.000008 +0.990972,0.098578,-0.710994,0.227285,-0.982399,-0.000008 +0.988646,0.098357,-0.709344,0.226773,-0.980108,-0.000008 +0.986320,0.098137,-0.707693,0.226260,-0.977818,-0.000008 +0.983994,0.097916,-0.706043,0.225747,-0.975527,-0.000008 +0.981668,0.097695,-0.704393,0.225234,-0.973236,-0.000008 +0.979342,0.097475,-0.702742,0.224721,-0.970946,-0.000008 +0.977017,0.097254,-0.701092,0.224208,-0.968655,-0.000008 +0.974691,0.097033,-0.699441,0.223695,-0.966364,-0.000008 +0.972365,0.096813,-0.697791,0.223182,-0.964074,-0.000008 +0.970039,0.096592,-0.696140,0.222670,-0.961783,-0.000008 +0.967713,0.096371,-0.694490,0.222157,-0.959492,-0.000008 +0.965387,0.096151,-0.692839,0.221644,-0.957201,-0.000008 +0.963062,0.095930,-0.691189,0.221131,-0.954911,-0.000008 +0.960736,0.095710,-0.689539,0.220618,-0.952620,-0.000008 +0.958410,0.095489,-0.687888,0.220105,-0.950329,-0.000008 +0.956084,0.095268,-0.686238,0.219592,-0.948039,-0.000008 +0.953758,0.095048,-0.684587,0.219079,-0.945748,-0.000008 +0.951432,0.094827,-0.682937,0.218567,-0.943457,-0.000008 +0.949106,0.094606,-0.681286,0.218054,-0.941166,-0.000008 +0.946781,0.094386,-0.679636,0.217541,-0.938876,-0.000008 +0.944455,0.094165,-0.677985,0.217028,-0.936585,-0.000008 +0.942129,0.093945,-0.676335,0.216515,-0.934294,-0.000008 +0.939803,0.093724,-0.674685,0.216002,-0.932004,-0.000008 +0.937477,0.093503,-0.673034,0.215489,-0.929713,-0.000008 +0.935151,0.093283,-0.671384,0.214976,-0.927422,-0.000008 +0.932826,0.093062,-0.669733,0.214464,-0.925132,-0.000008 +0.930500,0.092841,-0.668083,0.213951,-0.922841,-0.000008 +0.928174,0.092621,-0.666432,0.213438,-0.920550,-0.000008 +0.925848,0.092400,-0.664782,0.212925,-0.918259,-0.000008 +0.923522,0.092179,-0.663131,0.212412,-0.915969,-0.000008 +0.921196,0.091959,-0.661481,0.211899,-0.913678,-0.000008 +0.918871,0.091738,-0.659831,0.211386,-0.911387,-0.000008 +0.916545,0.091518,-0.658180,0.210873,-0.909097,-0.000008 +0.914219,0.091297,-0.656530,0.210361,-0.906806,-0.000008 +0.911893,0.091076,-0.654879,0.209848,-0.904515,-0.000008 +0.909567,0.090856,-0.653229,0.209335,-0.902224,-0.000008 +0.907241,0.090635,-0.651578,0.208822,-0.899934,-0.000008 +0.904915,0.090414,-0.649928,0.208309,-0.897643,-0.000008 +0.902590,0.090194,-0.648277,0.207796,-0.895352,-0.000008 +0.900264,0.089973,-0.646627,0.207283,-0.893062,-0.000008 +0.897938,0.089752,-0.644977,0.206770,-0.890771,-0.000008 +0.895612,0.089532,-0.643326,0.206258,-0.888480,-0.000008 +0.893286,0.089311,-0.641676,0.205745,-0.886189,-0.000008 +0.890960,0.089091,-0.640025,0.205232,-0.883899,-0.000008 +0.888635,0.088870,-0.638375,0.204719,-0.881608,-0.000008 +0.886309,0.088649,-0.636724,0.204206,-0.879317,-0.000008 +0.883983,0.088429,-0.635074,0.203693,-0.877027,-0.000008 +0.881657,0.088208,-0.633423,0.203180,-0.874736,-0.000008 +0.879331,0.087987,-0.631773,0.202667,-0.872445,-0.000008 +0.877005,0.087767,-0.630123,0.202155,-0.870155,-0.000008 +0.874680,0.087546,-0.628472,0.201642,-0.867864,-0.000008 +0.872354,0.087326,-0.626822,0.201129,-0.865573,-0.000008 +0.870028,0.087105,-0.625171,0.200616,-0.863282,-0.000008 +0.867702,0.086884,-0.623521,0.200103,-0.860992,-0.000008 +0.865376,0.086664,-0.621870,0.199590,-0.858701,-0.000008 +0.863050,0.086443,-0.620220,0.199077,-0.856410,-0.000008 +0.860724,0.086222,-0.618570,0.198564,-0.854120,-0.000008 +0.858399,0.086002,-0.616919,0.198052,-0.851829,-0.000008 +0.856073,0.085781,-0.615269,0.197539,-0.849538,-0.000008 +0.853747,0.085560,-0.613618,0.197026,-0.847247,-0.000008 +0.851421,0.085340,-0.611968,0.196513,-0.844957,-0.000008 +0.849095,0.085119,-0.610317,0.196000,-0.842666,-0.000008 +0.846769,0.084899,-0.608667,0.195487,-0.840375,-0.000008 +0.844444,0.084678,-0.607016,0.194974,-0.838085,-0.000008 +0.842118,0.084457,-0.605366,0.194461,-0.835794,-0.000008 +0.839792,0.084237,-0.603716,0.193949,-0.833503,-0.000008 +0.837466,0.084016,-0.602065,0.193436,-0.831212,-0.000008 +0.835140,0.083795,-0.600415,0.192923,-0.828922,-0.000008 +0.832814,0.083575,-0.598764,0.192410,-0.826631,-0.000008 +0.830489,0.083354,-0.597114,0.191897,-0.824340,-0.000008 +0.828163,0.083134,-0.595463,0.191384,-0.822050,-0.000008 +0.825837,0.082913,-0.593813,0.190871,-0.819759,-0.000008 +0.823511,0.082692,-0.592162,0.190358,-0.817468,-0.000008 +0.821185,0.082472,-0.590512,0.189846,-0.815178,-0.000008 +0.818859,0.082251,-0.588862,0.189333,-0.812887,-0.000008 +0.816533,0.082030,-0.587211,0.188820,-0.810596,-0.000008 +0.814208,0.081810,-0.585561,0.188307,-0.808305,-0.000008 +0.811882,0.081589,-0.583910,0.187794,-0.806015,-0.000008 +0.809556,0.081368,-0.582260,0.187281,-0.803724,-0.000008 +0.807230,0.081148,-0.580609,0.186768,-0.801433,-0.000008 +0.804904,0.080927,-0.578959,0.186255,-0.799143,-0.000008 +0.802578,0.080707,-0.577308,0.185743,-0.796852,-0.000008 +0.800253,0.080486,-0.575658,0.185230,-0.794561,-0.000008 +0.797927,0.080265,-0.574008,0.184717,-0.792270,-0.000008 +0.795601,0.080045,-0.572357,0.184204,-0.789980,-0.000008 +0.793275,0.079824,-0.570707,0.183691,-0.787689,-0.000008 +0.790949,0.079603,-0.569056,0.183178,-0.785398,-0.000008 +0.788623,0.079383,-0.567406,0.182665,-0.783108,-0.000008 +0.786298,0.079162,-0.565755,0.182152,-0.780817,-0.000008 +0.783972,0.078942,-0.564105,0.181640,-0.778526,-0.000008 +0.781646,0.078721,-0.562454,0.181127,-0.776236,-0.000008 +0.779320,0.078500,-0.560804,0.180614,-0.773945,-0.000008 +0.776994,0.078280,-0.559154,0.180101,-0.771654,-0.000008 +0.774668,0.078059,-0.557503,0.179588,-0.769363,-0.000008 +0.772342,0.077838,-0.555853,0.179075,-0.767073,-0.000008 +0.770017,0.077618,-0.554202,0.178562,-0.764782,-0.000008 +0.767691,0.077397,-0.552552,0.178049,-0.762491,-0.000008 +0.765365,0.077176,-0.550901,0.177537,-0.760201,-0.000008 +0.763039,0.076956,-0.549251,0.177024,-0.757910,-0.000008 +0.760713,0.076735,-0.547600,0.176511,-0.755619,-0.000008 +0.758387,0.076515,-0.545950,0.175998,-0.753328,-0.000008 +0.756062,0.076294,-0.544300,0.175485,-0.751038,-0.000008 +0.753736,0.076073,-0.542649,0.174972,-0.748747,-0.000008 +0.751410,0.075853,-0.540999,0.174459,-0.746456,-0.000008 +0.749084,0.075632,-0.539348,0.173946,-0.744166,-0.000008 +0.746758,0.075412,-0.537698,0.173434,-0.741875,-0.000008 +0.744432,0.075191,-0.536047,0.172921,-0.739584,-0.000008 +0.742107,0.074970,-0.534397,0.172408,-0.737293,-0.000008 +0.739781,0.074750,-0.532746,0.171895,-0.735003,-0.000008 +0.737455,0.074529,-0.531096,0.171382,-0.732712,-0.000008 +0.735129,0.074308,-0.529446,0.170869,-0.730421,-0.000008 +0.732803,0.074088,-0.527795,0.170356,-0.728131,-0.000008 +0.730477,0.073867,-0.526145,0.169843,-0.725840,-0.000008 +0.728151,0.073647,-0.524494,0.169331,-0.723549,-0.000008 +0.725826,0.073426,-0.522844,0.168818,-0.721259,-0.000008 +0.723500,0.073205,-0.521193,0.168305,-0.718968,-0.000008 +0.721174,0.072985,-0.519543,0.167792,-0.716677,-0.000008 +0.718848,0.072764,-0.517893,0.167279,-0.714386,-0.000008 +0.716522,0.072543,-0.516242,0.166766,-0.712096,-0.000008 +0.714196,0.072323,-0.514592,0.166253,-0.709805,-0.000008 +0.711871,0.072102,-0.512941,0.165740,-0.707514,-0.000008 +0.709545,0.071881,-0.511291,0.165228,-0.705224,-0.000008 +0.707219,0.071661,-0.509640,0.164715,-0.702933,-0.000008 +0.704893,0.071440,-0.507990,0.164202,-0.700642,-0.000008 +0.702567,0.071220,-0.506339,0.163689,-0.698351,-0.000008 +0.700241,0.070999,-0.504689,0.163176,-0.696061,-0.000008 +0.697916,0.070778,-0.503039,0.162663,-0.693770,-0.000008 +0.695590,0.070558,-0.501388,0.162150,-0.691479,-0.000008 +0.693264,0.070337,-0.499738,0.161637,-0.689189,-0.000008 +0.690938,0.070116,-0.498087,0.161125,-0.686898,-0.000008 +0.688612,0.069896,-0.496437,0.160612,-0.684607,-0.000008 +0.686286,0.069675,-0.494786,0.160099,-0.682316,-0.000008 +0.683961,0.069455,-0.493136,0.159586,-0.680026,-0.000008 +0.681635,0.069234,-0.491485,0.159073,-0.677735,-0.000008 +0.679309,0.069013,-0.489835,0.158560,-0.675444,-0.000008 +0.676983,0.068793,-0.488185,0.158047,-0.673154,-0.000008 +0.674657,0.068572,-0.486534,0.157534,-0.670863,-0.000008 +0.672331,0.068351,-0.484884,0.157022,-0.668572,-0.000008 +0.670005,0.068131,-0.483233,0.156509,-0.666282,-0.000008 +0.667680,0.067910,-0.481583,0.155996,-0.663991,-0.000008 +0.665354,0.067689,-0.479932,0.155483,-0.661700,-0.000008 +0.663028,0.067469,-0.478282,0.154970,-0.659409,-0.000008 +0.660702,0.067248,-0.476631,0.154457,-0.657119,-0.000008 +0.658376,0.067028,-0.474981,0.153944,-0.654828,-0.000008 +0.656050,0.066807,-0.473331,0.153431,-0.652537,-0.000008 +0.653725,0.066586,-0.471680,0.152919,-0.650247,-0.000008 +0.651399,0.066366,-0.470030,0.152406,-0.647956,-0.000008 +0.649073,0.066145,-0.468379,0.151893,-0.645665,-0.000008 +0.646747,0.065924,-0.466729,0.151380,-0.643374,-0.000008 +0.644421,0.065704,-0.465078,0.150867,-0.641084,-0.000008 +0.642095,0.065483,-0.463428,0.150354,-0.638793,-0.000008 +0.639770,0.065263,-0.461777,0.149841,-0.636502,-0.000008 +0.637444,0.065042,-0.460127,0.149328,-0.634212,-0.000008 +0.635118,0.064821,-0.458477,0.148816,-0.631921,-0.000008 +0.632792,0.064601,-0.456826,0.148303,-0.629630,-0.000008 +0.630466,0.064380,-0.455176,0.147790,-0.627340,-0.000008 +0.628140,0.064159,-0.453525,0.147277,-0.625049,-0.000008 +0.625814,0.063939,-0.451875,0.146764,-0.622758,-0.000008 +0.623489,0.063718,-0.450224,0.146251,-0.620467,-0.000008 +0.621163,0.063497,-0.448574,0.145738,-0.618177,-0.000008 +0.618837,0.063277,-0.446923,0.145225,-0.615886,-0.000008 +0.616511,0.063056,-0.445273,0.144713,-0.613595,-0.000008 +0.614185,0.062836,-0.443623,0.144200,-0.611305,-0.000008 +0.611859,0.062615,-0.441972,0.143687,-0.609014,-0.000008 +0.609534,0.062394,-0.440322,0.143174,-0.606723,-0.000008 +0.607208,0.062174,-0.438671,0.142661,-0.604432,-0.000008 +0.604882,0.061953,-0.437021,0.142148,-0.602142,-0.000008 +0.602556,0.061732,-0.435370,0.141635,-0.599851,-0.000008 +0.600230,0.061512,-0.433720,0.141122,-0.597560,-0.000008 +0.597904,0.061291,-0.432070,0.140610,-0.595270,-0.000008 +0.595579,0.061071,-0.430419,0.140097,-0.592979,-0.000008 +0.593253,0.060850,-0.428769,0.139584,-0.590688,-0.000008 +0.590927,0.060629,-0.427118,0.139071,-0.588397,-0.000008 +0.588601,0.060409,-0.425468,0.138558,-0.586107,-0.000008 +0.586275,0.060188,-0.423817,0.138045,-0.583816,-0.000008 +0.583949,0.059967,-0.422167,0.137532,-0.581525,-0.000008 +0.581623,0.059747,-0.420516,0.137019,-0.579235,-0.000008 +0.579298,0.059526,-0.418866,0.136507,-0.576944,-0.000008 +0.576972,0.059305,-0.417216,0.135994,-0.574653,-0.000008 +0.574646,0.059085,-0.415565,0.135481,-0.572363,-0.000008 +0.572320,0.058864,-0.413915,0.134968,-0.570072,-0.000008 +0.569994,0.058644,-0.412264,0.134455,-0.567781,-0.000008 +0.567668,0.058423,-0.410614,0.133942,-0.565490,-0.000008 +0.565343,0.058202,-0.408963,0.133429,-0.563200,-0.000008 +0.563017,0.057982,-0.407313,0.132916,-0.560909,-0.000008 +0.560691,0.057761,-0.405662,0.132404,-0.558618,-0.000008 +0.558365,0.057540,-0.404012,0.131891,-0.556328,-0.000008 +0.556039,0.057320,-0.402362,0.131378,-0.554037,-0.000008 +0.553713,0.057099,-0.400711,0.130865,-0.551746,-0.000008 +0.551388,0.056878,-0.399061,0.130352,-0.549455,-0.000008 +0.549062,0.056658,-0.397410,0.129839,-0.547165,-0.000008 +0.546736,0.056437,-0.395760,0.129326,-0.544874,-0.000008 +0.544410,0.056217,-0.394109,0.128814,-0.542583,-0.000008 +0.542084,0.055996,-0.392459,0.128301,-0.540293,-0.000008 +0.539758,0.055775,-0.390808,0.127788,-0.538002,-0.000008 +0.537432,0.055555,-0.389158,0.127275,-0.535711,-0.000008 +0.535107,0.055334,-0.387508,0.126762,-0.533420,-0.000008 +0.532781,0.055114,-0.385857,0.126249,-0.531130,-0.000008 +0.530455,0.054893,-0.384207,0.125736,-0.528839,-0.000008 +0.528129,0.054672,-0.382556,0.125223,-0.526548,-0.000008 +0.525803,0.054452,-0.380906,0.124711,-0.524258,-0.000008 +0.523477,0.054231,-0.379255,0.124198,-0.521967,-0.000008 +0.521152,0.054010,-0.377605,0.123685,-0.519676,-0.000008 +0.518826,0.053790,-0.375954,0.123172,-0.517386,-0.000008 +0.516500,0.053569,-0.374304,0.122659,-0.515095,-0.000008 +0.514174,0.053348,-0.372654,0.122146,-0.512804,-0.000008 +0.511848,0.053128,-0.371003,0.121633,-0.510513,-0.000008 +0.509522,0.052907,-0.369353,0.121120,-0.508223,-0.000008 +0.507197,0.052686,-0.367702,0.120608,-0.505932,-0.000008 +0.504871,0.052466,-0.366052,0.120095,-0.503641,-0.000008 +0.502545,0.052245,-0.364401,0.119582,-0.501351,-0.000008 +0.500219,0.052025,-0.362751,0.119069,-0.499060,-0.000008 +0.497893,0.051804,-0.361100,0.118556,-0.496769,-0.000008 +0.495567,0.051583,-0.359450,0.118043,-0.494478,-0.000008 +0.493241,0.051363,-0.357800,0.117530,-0.492188,-0.000008 +0.490916,0.051142,-0.356149,0.117017,-0.489897,-0.000008 +0.488590,0.050922,-0.354499,0.116505,-0.487606,-0.000008 +0.486264,0.050701,-0.352848,0.115992,-0.485316,-0.000008 +0.483938,0.050480,-0.351198,0.115479,-0.483025,-0.000008 +0.481612,0.050260,-0.349547,0.114966,-0.480734,-0.000008 +0.479286,0.050039,-0.347897,0.114453,-0.478444,-0.000008 +0.476961,0.049818,-0.346246,0.113940,-0.476153,-0.000008 +0.474635,0.049598,-0.344596,0.113427,-0.473862,-0.000008 +0.472309,0.049377,-0.342946,0.112914,-0.471571,-0.000008 +0.469983,0.049156,-0.341295,0.112402,-0.469281,-0.000008 +0.467657,0.048936,-0.339645,0.111889,-0.466990,-0.000008 +0.465331,0.048715,-0.337994,0.111376,-0.464699,-0.000008 +0.463006,0.048495,-0.336344,0.110863,-0.462409,-0.000008 +0.460680,0.048274,-0.334693,0.110350,-0.460118,-0.000008 +0.458354,0.048053,-0.333043,0.109837,-0.457827,-0.000008 +0.456028,0.047833,-0.331393,0.109324,-0.455536,-0.000008 +0.453702,0.047612,-0.329742,0.108811,-0.453246,-0.000008 +0.451376,0.047391,-0.328092,0.108299,-0.450955,-0.000008 +0.449051,0.047171,-0.326441,0.107786,-0.448664,-0.000008 +0.446725,0.046950,-0.324791,0.107273,-0.446374,-0.000008 +0.444399,0.046730,-0.323140,0.106760,-0.444083,-0.000008 +0.442073,0.046509,-0.321490,0.106247,-0.441792,-0.000008 +0.439747,0.046288,-0.319839,0.105734,-0.439501,-0.000008 +0.437421,0.046068,-0.318189,0.105221,-0.437211,-0.000008 +0.435095,0.045847,-0.316539,0.104708,-0.434920,-0.000008 +0.432770,0.045626,-0.314888,0.104196,-0.432629,-0.000008 +0.430444,0.045406,-0.313238,0.103683,-0.430339,-0.000008 +0.428118,0.045185,-0.311587,0.103170,-0.428048,-0.000008 +0.425792,0.044964,-0.309937,0.102657,-0.425757,-0.000008 +0.423466,0.044744,-0.308286,0.102144,-0.423467,-0.000008 +0.421140,0.044523,-0.306636,0.101631,-0.421176,-0.000008 +0.418815,0.044303,-0.304985,0.101118,-0.418885,-0.000008 +0.416489,0.044082,-0.303335,0.100605,-0.416594,-0.000008 +0.414163,0.043861,-0.301685,0.100093,-0.414304,-0.000008 +0.411837,0.043641,-0.300034,0.099580,-0.412013,-0.000008 +0.409511,0.043420,-0.298384,0.099067,-0.409722,-0.000008 +0.407185,0.043199,-0.296733,0.098554,-0.407432,-0.000008 +0.404860,0.042979,-0.295083,0.098041,-0.405141,-0.000008 +0.402534,0.042758,-0.293432,0.097528,-0.402850,-0.000008 +0.400208,0.042537,-0.291782,0.097015,-0.400559,-0.000008 +0.397882,0.042317,-0.290131,0.096502,-0.398269,-0.000008 +0.395556,0.042096,-0.288481,0.095990,-0.395978,-0.000008 +0.393230,0.041876,-0.286831,0.095477,-0.393687,-0.000008 +0.390904,0.041655,-0.285180,0.094964,-0.391397,-0.000008 +0.388579,0.041434,-0.283530,0.094451,-0.389106,-0.000008 +0.386253,0.041214,-0.281879,0.093938,-0.386815,-0.000008 +0.383927,0.040993,-0.280229,0.093425,-0.384524,-0.000008 +0.381601,0.040773,-0.278578,0.092912,-0.382234,-0.000008 +0.379275,0.040552,-0.276928,0.092399,-0.379943,-0.000008 +0.376949,0.040331,-0.275277,0.091886,-0.377652,-0.000008 +0.374624,0.040111,-0.273627,0.091374,-0.375362,-0.000008 +0.372298,0.039890,-0.271977,0.090861,-0.373071,-0.000008 +0.369972,0.039669,-0.270326,0.090348,-0.370780,-0.000008 +0.367646,0.039449,-0.268676,0.089835,-0.368490,-0.000008 +0.365320,0.039228,-0.267025,0.089322,-0.366199,-0.000008 +0.362994,0.039007,-0.265375,0.088809,-0.363908,-0.000008 +0.360669,0.038787,-0.263724,0.088296,-0.361617,-0.000008 +0.358343,0.038566,-0.262074,0.087784,-0.359327,-0.000008 +0.356017,0.038345,-0.260423,0.087271,-0.357036,-0.000008 +0.353691,0.038125,-0.258773,0.086758,-0.354745,-0.000008 +0.351365,0.037904,-0.257123,0.086245,-0.352455,-0.000008 +0.349039,0.037684,-0.255472,0.085732,-0.350164,-0.000008 +0.346713,0.037463,-0.253822,0.085219,-0.347873,-0.000008 +0.344388,0.037242,-0.252171,0.084706,-0.345582,-0.000008 +0.342062,0.037022,-0.250521,0.084193,-0.343292,-0.000008 +0.339736,0.036801,-0.248870,0.083681,-0.341001,-0.000008 +0.337410,0.036581,-0.247220,0.083168,-0.338710,-0.000008 +0.335084,0.036360,-0.245569,0.082655,-0.336420,-0.000008 +0.332758,0.036139,-0.243919,0.082142,-0.334129,-0.000008 +0.330433,0.035919,-0.242269,0.081629,-0.331838,-0.000008 +0.328107,0.035698,-0.240618,0.081116,-0.329548,-0.000008 +0.325781,0.035477,-0.238968,0.080603,-0.327257,-0.000008 +0.323455,0.035257,-0.237317,0.080090,-0.324966,-0.000008 +0.321129,0.035036,-0.235667,0.079578,-0.322675,-0.000008 +0.318803,0.034815,-0.234016,0.079065,-0.320385,-0.000008 +0.316478,0.034595,-0.232366,0.078552,-0.318094,-0.000008 +0.314152,0.034374,-0.230716,0.078039,-0.315803,-0.000008 +0.311826,0.034154,-0.229065,0.077526,-0.313513,-0.000008 +0.309500,0.033933,-0.227415,0.077013,-0.311222,-0.000008 +0.307174,0.033712,-0.225764,0.076500,-0.308931,-0.000008 +0.304848,0.033492,-0.224114,0.075987,-0.306640,-0.000008 +0.302522,0.033271,-0.222463,0.075475,-0.304350,-0.000008 +0.300197,0.033050,-0.220813,0.074962,-0.302059,-0.000008 +0.297871,0.032830,-0.219162,0.074449,-0.299768,-0.000008 +0.295545,0.032609,-0.217512,0.073936,-0.297478,-0.000008 +0.293219,0.032389,-0.215862,0.073423,-0.295187,-0.000008 +0.290893,0.032168,-0.214211,0.072910,-0.292896,-0.000008 +0.288567,0.031947,-0.212561,0.072397,-0.290605,-0.000008 +0.286242,0.031727,-0.210910,0.071884,-0.288315,-0.000008 +0.283916,0.031506,-0.209260,0.071372,-0.286024,-0.000008 +0.281590,0.031285,-0.207609,0.070859,-0.283733,-0.000008 +0.279264,0.031065,-0.205959,0.070346,-0.281443,-0.000008 +0.276938,0.030844,-0.204308,0.069833,-0.279152,-0.000008 +0.274612,0.030624,-0.202658,0.069320,-0.276861,-0.000008 +0.272287,0.030403,-0.201008,0.068807,-0.274571,-0.000008 +0.269961,0.030182,-0.199357,0.068294,-0.272280,-0.000008 +0.267635,0.029962,-0.197707,0.067781,-0.269989,-0.000008 +0.265309,0.029741,-0.196056,0.067269,-0.267698,-0.000008 +0.262983,0.029520,-0.194406,0.066756,-0.265408,-0.000008 +0.260657,0.029300,-0.192755,0.066243,-0.263117,-0.000008 +0.258331,0.029079,-0.191105,0.065730,-0.260826,-0.000008 +0.256006,0.028858,-0.189454,0.065217,-0.258536,-0.000008 +0.253680,0.028638,-0.187804,0.064704,-0.256245,-0.000008 +0.251354,0.028417,-0.186154,0.064191,-0.253954,-0.000008 +0.249028,0.028196,-0.184503,0.063678,-0.251663,-0.000008 +0.246702,0.027976,-0.182853,0.063166,-0.249373,-0.000008 +0.244376,0.027755,-0.181202,0.062653,-0.247082,-0.000008 +0.242051,0.027535,-0.179552,0.062140,-0.244791,-0.000008 +0.239725,0.027314,-0.177901,0.061627,-0.242501,-0.000008 +0.237399,0.027093,-0.176251,0.061114,-0.240210,-0.000008 +0.235073,0.026873,-0.174600,0.060601,-0.237919,-0.000008 +0.232747,0.026652,-0.172950,0.060088,-0.235628,-0.000008 +0.230421,0.026432,-0.171300,0.059576,-0.233338,-0.000008 +0.228096,0.026211,-0.169649,0.059063,-0.231047,-0.000008 +0.225770,0.025990,-0.167999,0.058550,-0.228756,-0.000008 +0.223444,0.025770,-0.166348,0.058037,-0.226466,-0.000008 +0.221118,0.025549,-0.164698,0.057524,-0.224175,-0.000008 +0.218792,0.025328,-0.163047,0.057011,-0.221884,-0.000008 +0.216466,0.025108,-0.161397,0.056498,-0.219594,-0.000008 +0.214141,0.024887,-0.159746,0.055985,-0.217303,-0.000008 +0.211815,0.024666,-0.158096,0.055473,-0.215012,-0.000008 +0.209489,0.024446,-0.156446,0.054960,-0.212721,-0.000008 +0.207163,0.024225,-0.154795,0.054447,-0.210431,-0.000008 +0.204837,0.024005,-0.153145,0.053934,-0.208140,-0.000008 +0.202511,0.023784,-0.151494,0.053421,-0.205849,-0.000008 +0.200185,0.023563,-0.149844,0.052908,-0.203559,-0.000008 +0.197860,0.023343,-0.148193,0.052395,-0.201268,-0.000008 +0.195534,0.023122,-0.146543,0.051882,-0.198977,-0.000008 +0.193208,0.022901,-0.144892,0.051369,-0.196686,-0.000008 +0.190882,0.022681,-0.143242,0.050857,-0.194396,-0.000008 +0.188556,0.022460,-0.141592,0.050344,-0.192105,-0.000008 +0.186230,0.022239,-0.139941,0.049831,-0.189814,-0.000008 +0.183905,0.022019,-0.138291,0.049318,-0.187524,-0.000008 +0.181579,0.021798,-0.136640,0.048805,-0.185233,-0.000008 +0.179253,0.021578,-0.134990,0.048292,-0.182942,-0.000008 +0.176927,0.021357,-0.133339,0.047779,-0.180652,-0.000008 +0.174601,0.021136,-0.131689,0.047267,-0.178361,-0.000008 +0.172275,0.020916,-0.130039,0.046754,-0.176070,-0.000008 +0.169950,0.020695,-0.128388,0.046241,-0.173779,-0.000008 +0.167624,0.020475,-0.126738,0.045728,-0.171489,-0.000008 +0.165298,0.020254,-0.125087,0.045215,-0.169198,-0.000008 +0.162972,0.020033,-0.123437,0.044702,-0.166907,-0.000008 +0.160646,0.019813,-0.121786,0.044189,-0.164617,-0.000008 +0.158320,0.019592,-0.120136,0.043676,-0.162326,-0.000008 +0.155994,0.019371,-0.118485,0.043164,-0.160035,-0.000008 +0.153669,0.019151,-0.116835,0.042651,-0.157744,-0.000008 +0.151343,0.018930,-0.115185,0.042138,-0.155454,-0.000008 +0.149017,0.018709,-0.113534,0.041625,-0.153163,-0.000008 +0.146691,0.018489,-0.111884,0.041112,-0.150872,-0.000008 +0.144365,0.018268,-0.110233,0.040599,-0.148582,-0.000008 +0.142039,0.018048,-0.108583,0.040086,-0.146291,-0.000008 +0.139714,0.017827,-0.106932,0.039573,-0.144000,-0.000008 +0.137388,0.017606,-0.105282,0.039060,-0.141709,-0.000008 +0.135062,0.017386,-0.103631,0.038548,-0.139419,-0.000008 +0.132736,0.017165,-0.101981,0.038035,-0.137128,-0.000008 +0.130410,0.016944,-0.100331,0.037522,-0.134837,-0.000008 +0.128084,0.016724,-0.098680,0.037009,-0.132547,-0.000008 +0.125759,0.016503,-0.097030,0.036496,-0.130256,-0.000008 +0.123433,0.016282,-0.095379,0.035983,-0.127965,-0.000008 +0.121107,0.016062,-0.093729,0.035470,-0.125675,-0.000008 +0.118781,0.015841,-0.092078,0.034958,-0.123384,-0.000008 +0.116455,0.015621,-0.090428,0.034445,-0.121093,-0.000008 +0.114129,0.015400,-0.088777,0.033932,-0.118802,-0.000008 +0.111803,0.015179,-0.087127,0.033419,-0.116512,-0.000008 +0.109478,0.014959,-0.085477,0.032906,-0.114221,-0.000008 +0.107152,0.014738,-0.083826,0.032393,-0.111930,-0.000008 +0.104826,0.014517,-0.082176,0.031880,-0.109640,-0.000008 +0.102500,0.014297,-0.080525,0.031367,-0.107349,-0.000008 +0.100174,0.014076,-0.078875,0.030855,-0.105058,-0.000008 +0.097848,0.013856,-0.077224,0.030342,-0.102767,-0.000008 +0.095523,0.013635,-0.075574,0.029829,-0.100477,-0.000008 +0.093197,0.013414,-0.073924,0.029316,-0.098186,-0.000008 +0.090871,0.013194,-0.072273,0.028803,-0.095895,-0.000008 +0.088545,0.012973,-0.070623,0.028290,-0.093605,-0.000008 +0.086219,0.012752,-0.068972,0.027777,-0.091314,-0.000008 +0.083893,0.012532,-0.067322,0.027264,-0.089023,-0.000008 +0.081568,0.012311,-0.065671,0.026752,-0.086733,-0.000008 +0.079242,0.012091,-0.064021,0.026239,-0.084442,-0.000008 +0.076916,0.011870,-0.062370,0.025726,-0.082151,-0.000008 +0.074590,0.011649,-0.060720,0.025213,-0.079860,-0.000008 +0.072264,0.011429,-0.059069,0.024700,-0.077570,-0.000008 +0.069938,0.011208,-0.057419,0.024187,-0.075279,-0.000008 +0.067613,0.010987,-0.055769,0.023674,-0.072988,-0.000008 +0.065289,0.010767,-0.054118,0.023161,-0.070697,-0.000008 +0.062971,0.010546,-0.052468,0.022648,-0.068407,-0.000008 +0.060660,0.010325,-0.050817,0.022136,-0.066116,-0.000008 +0.058359,0.010105,-0.049167,0.021623,-0.063825,-0.000008 +0.056070,0.009884,-0.047516,0.021110,-0.061535,-0.000008 +0.053797,0.009664,-0.045866,0.020597,-0.059245,-0.000008 +0.051542,0.009443,-0.044215,0.020084,-0.056959,-0.000008 +0.049307,0.009222,-0.042565,0.019571,-0.054681,-0.000008 +0.047095,0.009002,-0.040915,0.019058,-0.052412,-0.000008 +0.044908,0.008781,-0.039265,0.018545,-0.050157,-0.000008 +0.042750,0.008560,-0.037620,0.018033,-0.047919,-0.000008 +0.040623,0.008340,-0.035981,0.017520,-0.045699,-0.000008 +0.038529,0.008119,-0.034350,0.017007,-0.043503,-0.000008 +0.036471,0.007899,-0.032731,0.016494,-0.041332,-0.000008 +0.034451,0.007678,-0.031127,0.015981,-0.039190,-0.000008 +0.032473,0.007457,-0.029539,0.015468,-0.037080,-0.000008 +0.030539,0.007237,-0.027970,0.014955,-0.035005,-0.000008 +0.028650,0.007016,-0.026423,0.014443,-0.032968,-0.000008 +0.026811,0.006795,-0.024900,0.013930,-0.030973,-0.000008 +0.025024,0.006575,-0.023405,0.013417,-0.029022,-0.000008 +0.023290,0.006354,-0.021939,0.012904,-0.027118,-0.000008 +0.021614,0.006133,-0.020506,0.012391,-0.025265,-0.000008 +0.019996,0.005913,-0.019107,0.011878,-0.023466,-0.000008 +0.018441,0.005692,-0.017746,0.011365,-0.021724,-0.000008 +0.016950,0.005472,-0.016425,0.010852,-0.020041,-0.000008 +0.015526,0.005251,-0.015147,0.010340,-0.018422,-0.000008 +0.014172,0.005030,-0.013913,0.009827,-0.016869,-0.000008 +0.012891,0.004810,-0.012728,0.009314,-0.015385,-0.000008 +0.011684,0.004589,-0.011593,0.008801,-0.013974,-0.000008 +0.010554,0.004368,-0.010511,0.008288,-0.012638,-0.000008 +0.009500,0.004148,-0.009485,0.007775,-0.011380,-0.000008 +0.008518,0.003927,-0.008517,0.007262,-0.010205,-0.000008 +0.007606,0.003707,-0.007610,0.006749,-0.009112,-0.000008 +0.006762,0.003486,-0.006766,0.006237,-0.008101,-0.000008 +0.005982,0.003265,-0.005986,0.005726,-0.007167,-0.000008 +0.005265,0.003045,-0.005269,0.005221,-0.006308,-0.000008 +0.004608,0.002824,-0.004612,0.004724,-0.005521,-0.000008 +0.004008,0.002603,-0.004012,0.004238,-0.004802,-0.000008 +0.003462,0.002383,-0.003466,0.003767,-0.004148,-0.000008 +0.002969,0.002162,-0.002973,0.003314,-0.003556,-0.000008 +0.002524,0.001942,-0.002528,0.002881,-0.003024,-0.000008 +0.002126,0.001722,-0.002130,0.002473,-0.002548,-0.000008 +0.001773,0.001506,-0.001777,0.002091,-0.002124,-0.000008 +0.001461,0.001297,-0.001465,0.001740,-0.001750,-0.000008 +0.001188,0.001097,-0.001192,0.001421,-0.001423,-0.000008 +0.000951,0.000908,-0.000955,0.001139,-0.001140,-0.000008 +0.000748,0.000733,-0.000752,0.000896,-0.000897,-0.000008 +0.000576,0.000575,-0.000580,0.000690,-0.000691,-0.000008 +0.000433,0.000436,-0.000437,0.000519,-0.000519,-0.000008 +0.000316,0.000319,-0.000320,0.000378,-0.000379,-0.000008 +0.000222,0.000226,-0.000226,0.000266,-0.000266,-0.000008 +0.000149,0.000152,-0.000153,0.000178,-0.000179,-0.000008 +0.000094,0.000097,-0.000098,0.000112,-0.000113,-0.000008 +0.000055,0.000058,-0.000059,0.000065,-0.000065,-0.000008 +0.000028,0.000032,-0.000032,0.000034,-0.000034,-0.000008 +0.000012,0.000016,-0.000016,0.000014,-0.000015,-0.000008 +0.000004,0.000007,-0.000008,0.000005,-0.000005,-0.000008 +0.000001,0.000004,-0.000005,0.000001,-0.000001,-0.000008 +0.000000,0.000004,-0.000004,0.000000,-0.000001,-0.000008 +0.000000,0.000004,-0.000004,0.000000,-0.000001,-0.000008 +-0.000000,0.000000,-0.000000,0.000001,-0.000001,0.000000 +-0.000003,0.000003,-0.000003,0.000004,-0.000004,0.000000 +-0.000012,0.000012,-0.000012,0.000014,-0.000014,0.000000 +-0.000028,0.000028,-0.000028,0.000033,-0.000033,0.000000 +-0.000054,0.000054,-0.000054,0.000065,-0.000065,0.000000 +-0.000093,0.000093,-0.000093,0.000112,-0.000112,0.000000 +-0.000148,0.000148,-0.000148,0.000178,-0.000178,0.000000 +-0.000222,0.000222,-0.000222,0.000265,-0.000265,0.000000 +-0.000315,0.000315,-0.000315,0.000378,-0.000378,0.000000 +-0.000433,0.000432,-0.000433,0.000518,-0.000518,0.000000 +-0.000576,0.000571,-0.000576,0.000690,-0.000690,0.000000 +-0.000748,0.000729,-0.000748,0.000896,-0.000896,0.000000 +-0.000951,0.000904,-0.000951,0.001139,-0.001139,0.000000 +-0.001187,0.001093,-0.001187,0.001421,-0.001423,0.000000 +-0.001460,0.001293,-0.001460,0.001739,-0.001750,0.000000 +-0.001772,0.001503,-0.001772,0.002091,-0.002123,0.000000 +-0.002126,0.001718,-0.002126,0.002472,-0.002547,0.000000 +-0.002524,0.001938,-0.002524,0.002881,-0.003023,0.000000 +-0.002968,0.002158,-0.002968,0.003314,-0.003556,0.000000 +-0.003462,0.002379,-0.003462,0.003767,-0.004147,0.000000 +-0.004007,0.002599,-0.004007,0.004238,-0.004801,0.000000 +-0.004608,0.002820,-0.004608,0.004723,-0.005520,0.000000 +-0.005265,0.003041,-0.005265,0.005220,-0.006308,0.000000 +-0.005982,0.003261,-0.005982,0.005726,-0.007167,0.000000 +-0.006761,0.003482,-0.006761,0.006236,-0.008100,0.000000 +-0.007606,0.003703,-0.007605,0.006749,-0.009112,0.000000 +-0.008517,0.003923,-0.008512,0.007262,-0.010204,0.000000 +-0.009499,0.004144,-0.009480,0.007775,-0.011380,0.000000 +-0.010554,0.004364,-0.010507,0.008288,-0.012637,0.000000 +-0.011684,0.004585,-0.011589,0.008801,-0.013973,0.000000 +-0.012890,0.004806,-0.012724,0.009313,-0.015384,0.000000 +-0.014172,0.005026,-0.013909,0.009826,-0.016868,0.000000 +-0.015526,0.005247,-0.015142,0.010339,-0.018421,0.000000 +-0.016949,0.005468,-0.016421,0.010852,-0.020041,0.000000 +-0.018440,0.005688,-0.017742,0.011365,-0.021723,0.000000 +-0.019996,0.005909,-0.019103,0.011878,-0.023465,0.000000 +-0.021613,0.006130,-0.020501,0.012391,-0.025265,0.000000 +-0.023290,0.006350,-0.021935,0.012904,-0.027118,0.000000 +-0.025023,0.006571,-0.023401,0.013416,-0.029021,0.000000 +-0.026811,0.006791,-0.024896,0.013929,-0.030972,0.000000 +-0.028650,0.007012,-0.026419,0.014442,-0.032968,0.000000 +-0.030538,0.007233,-0.027965,0.014955,-0.035004,0.000000 +-0.032473,0.007453,-0.029534,0.015468,-0.037079,0.000000 +-0.034451,0.007674,-0.031122,0.015981,-0.039189,0.000000 +-0.036470,0.007895,-0.032727,0.016494,-0.041331,0.000000 +-0.038528,0.008115,-0.034346,0.017007,-0.043502,0.000000 +-0.040622,0.008336,-0.035976,0.017519,-0.045699,0.000000 +-0.042750,0.008556,-0.037615,0.018032,-0.047918,0.000000 +-0.044908,0.008777,-0.039261,0.018545,-0.050157,0.000000 +-0.047094,0.008998,-0.040910,0.019058,-0.052412,0.000000 +-0.049306,0.009218,-0.042561,0.019571,-0.054680,0.000000 +-0.051541,0.009439,-0.044211,0.020084,-0.056959,0.000000 +-0.053797,0.009660,-0.045861,0.020597,-0.059244,0.000000 +-0.056070,0.009880,-0.047512,0.021110,-0.061534,0.000000 +-0.058358,0.010101,-0.049162,0.021622,-0.063825,0.000000 +-0.060659,0.010322,-0.050813,0.022135,-0.066115,0.000000 +-0.062970,0.010542,-0.052463,0.022648,-0.068406,0.000000 +-0.065289,0.010763,-0.054114,0.023161,-0.070697,0.000000 +-0.067612,0.010983,-0.055764,0.023674,-0.072988,0.000000 +-0.069938,0.011204,-0.057415,0.024187,-0.075278,0.000000 +-0.072264,0.011425,-0.059065,0.024700,-0.077569,0.000000 +-0.074590,0.011645,-0.060715,0.025212,-0.079860,0.000000 +-0.076915,0.011866,-0.062366,0.025725,-0.082150,0.000000 +-0.079241,0.012087,-0.064016,0.026238,-0.084441,0.000000 +-0.081567,0.012307,-0.065667,0.026751,-0.086732,0.000000 +-0.083893,0.012528,-0.067317,0.027264,-0.089023,0.000000 +-0.086219,0.012748,-0.068968,0.027777,-0.091313,0.000000 +-0.088545,0.012969,-0.070618,0.028290,-0.093604,0.000000 +-0.090871,0.013190,-0.072269,0.028803,-0.095895,0.000000 +-0.093196,0.013410,-0.073919,0.029316,-0.098185,0.000000 +-0.095522,0.013631,-0.075569,0.029828,-0.100476,0.000000 +-0.097848,0.013852,-0.077220,0.030341,-0.102767,0.000000 +-0.100174,0.014072,-0.078870,0.030854,-0.105057,0.000000 +-0.102500,0.014293,-0.080521,0.031367,-0.107348,0.000000 +-0.104826,0.014514,-0.082171,0.031880,-0.109639,0.000000 +-0.107151,0.014734,-0.083822,0.032393,-0.111930,0.000000 +-0.109477,0.014955,-0.085472,0.032906,-0.114220,0.000000 +-0.111803,0.015175,-0.087123,0.033418,-0.116511,0.000000 +-0.114129,0.015396,-0.088773,0.033931,-0.118802,0.000000 +-0.116455,0.015617,-0.090423,0.034444,-0.121092,0.000000 +-0.118781,0.015837,-0.092074,0.034957,-0.123383,0.000000 +-0.121106,0.016058,-0.093724,0.035470,-0.125674,0.000000 +-0.123432,0.016279,-0.095375,0.035983,-0.127965,0.000000 +-0.125758,0.016499,-0.097025,0.036496,-0.130255,0.000000 +-0.128084,0.016720,-0.098676,0.037009,-0.132546,0.000000 +-0.130410,0.016940,-0.100326,0.037521,-0.134837,0.000000 +-0.132736,0.017161,-0.101977,0.038034,-0.137127,0.000000 +-0.135061,0.017382,-0.103627,0.038547,-0.139418,0.000000 +-0.137387,0.017602,-0.105277,0.039060,-0.141709,0.000000 +-0.139713,0.017823,-0.106928,0.039573,-0.144000,0.000000 +-0.142039,0.018044,-0.108578,0.040086,-0.146290,0.000000 +-0.144365,0.018264,-0.110229,0.040599,-0.148581,0.000000 +-0.146691,0.018485,-0.111879,0.041112,-0.150872,0.000000 +-0.149016,0.018705,-0.113530,0.041625,-0.153162,0.000000 +-0.151342,0.018926,-0.115180,0.042137,-0.155453,0.000000 +-0.153668,0.019147,-0.116831,0.042650,-0.157744,0.000000 +-0.155994,0.019367,-0.118481,0.043163,-0.160034,0.000000 +-0.158320,0.019588,-0.120131,0.043676,-0.162325,0.000000 +-0.160646,0.019809,-0.121782,0.044189,-0.164616,0.000000 +-0.162972,0.020029,-0.123432,0.044702,-0.166907,0.000000 +-0.165297,0.020250,-0.125083,0.045215,-0.169197,0.000000 +-0.167623,0.020470,-0.126733,0.045727,-0.171488,0.000000 +-0.169949,0.020691,-0.128384,0.046240,-0.173779,0.000000 +-0.172275,0.020912,-0.130034,0.046753,-0.176069,0.000000 +-0.174601,0.021132,-0.131684,0.047266,-0.178360,0.000000 +-0.176927,0.021353,-0.133335,0.047779,-0.180651,0.000000 +-0.179252,0.021574,-0.134985,0.048292,-0.182942,0.000000 +-0.181578,0.021794,-0.136636,0.048805,-0.185232,0.000000 +-0.183904,0.022015,-0.138286,0.049318,-0.187523,0.000000 +-0.186230,0.022235,-0.139937,0.049831,-0.189814,0.000000 +-0.188556,0.022456,-0.141587,0.050343,-0.192104,0.000000 +-0.190882,0.022677,-0.143238,0.050856,-0.194395,0.000000 +-0.193207,0.022897,-0.144888,0.051369,-0.196686,0.000000 +-0.195533,0.023118,-0.146538,0.051882,-0.198976,0.000000 +-0.197859,0.023339,-0.148189,0.052395,-0.201267,0.000000 +-0.200185,0.023559,-0.149839,0.052908,-0.203558,0.000000 +-0.202511,0.023780,-0.151490,0.053421,-0.205849,0.000000 +-0.204837,0.024001,-0.153140,0.053934,-0.208139,0.000000 +-0.207163,0.024221,-0.154791,0.054446,-0.210430,0.000000 +-0.209488,0.024442,-0.156441,0.054959,-0.212721,0.000000 +-0.211814,0.024663,-0.158092,0.055472,-0.215011,0.000000 +-0.214140,0.024883,-0.159742,0.055985,-0.217302,0.000000 +-0.216466,0.025104,-0.161392,0.056498,-0.219593,0.000000 +-0.218792,0.025324,-0.163043,0.057011,-0.221884,0.000000 +-0.221118,0.025545,-0.164693,0.057524,-0.224174,0.000000 +-0.223443,0.025766,-0.166344,0.058036,-0.226465,0.000000 +-0.225769,0.025986,-0.167994,0.058549,-0.228756,0.000000 +-0.228095,0.026207,-0.169645,0.059062,-0.231046,0.000000 +-0.230421,0.026428,-0.171295,0.059575,-0.233337,0.000000 +-0.232747,0.026648,-0.172946,0.060088,-0.235628,0.000000 +-0.235073,0.026869,-0.174596,0.060601,-0.237919,0.000000 +-0.237398,0.027089,-0.176246,0.061114,-0.240209,0.000000 +-0.239724,0.027310,-0.177897,0.061627,-0.242500,0.000000 +-0.242050,0.027531,-0.179547,0.062140,-0.244791,0.000000 +-0.244376,0.027751,-0.181198,0.062652,-0.247081,0.000000 +-0.246702,0.027972,-0.182848,0.063165,-0.249372,0.000000 +-0.249028,0.028193,-0.184499,0.063678,-0.251663,0.000000 +-0.251354,0.028413,-0.186149,0.064191,-0.253953,0.000000 +-0.253679,0.028634,-0.187800,0.064704,-0.256244,0.000000 +-0.256005,0.028855,-0.189450,0.065217,-0.258535,0.000000 +-0.258331,0.029075,-0.191100,0.065730,-0.260826,0.000000 +-0.260657,0.029296,-0.192751,0.066242,-0.263116,0.000000 +-0.262983,0.029516,-0.194401,0.066755,-0.265407,0.000000 +-0.265309,0.029737,-0.196052,0.067268,-0.267698,0.000000 +-0.267634,0.029958,-0.197702,0.067781,-0.269988,0.000000 +-0.269960,0.030178,-0.199353,0.068294,-0.272279,0.000000 +-0.272286,0.030399,-0.201003,0.068807,-0.274570,0.000000 +-0.274612,0.030620,-0.202654,0.069320,-0.276861,0.000000 +-0.276938,0.030840,-0.204304,0.069833,-0.279151,0.000000 +-0.279264,0.031061,-0.205954,0.070346,-0.281442,0.000000 +-0.281589,0.031281,-0.207605,0.070858,-0.283733,0.000000 +-0.283915,0.031502,-0.209255,0.071371,-0.286023,0.000000 +-0.286241,0.031723,-0.210906,0.071884,-0.288314,0.000000 +-0.288567,0.031943,-0.212556,0.072397,-0.290605,0.000000 +-0.290893,0.032164,-0.214207,0.072910,-0.292896,0.000000 +-0.293219,0.032384,-0.215857,0.073423,-0.295186,0.000000 +-0.295545,0.032605,-0.217508,0.073936,-0.297477,0.000000 +-0.297870,0.032826,-0.219158,0.074448,-0.299768,0.000000 +-0.300196,0.033046,-0.220808,0.074961,-0.302058,0.000000 +-0.302522,0.033267,-0.222459,0.075474,-0.304349,0.000000 +-0.304848,0.033488,-0.224109,0.075987,-0.306640,0.000000 +-0.307174,0.033708,-0.225760,0.076500,-0.308930,0.000000 +-0.309500,0.033929,-0.227410,0.077013,-0.311221,0.000000 +-0.311825,0.034150,-0.229061,0.077526,-0.313512,0.000000 +-0.314151,0.034370,-0.230711,0.078039,-0.315803,0.000000 +-0.316477,0.034591,-0.232361,0.078551,-0.318093,0.000000 +-0.318803,0.034812,-0.234012,0.079064,-0.320384,0.000000 +-0.321129,0.035032,-0.235662,0.079577,-0.322675,0.000000 +-0.323455,0.035253,-0.237313,0.080090,-0.324965,0.000000 +-0.325780,0.035473,-0.238963,0.080603,-0.327256,0.000000 +-0.328106,0.035694,-0.240614,0.081116,-0.329547,0.000000 +-0.330432,0.035915,-0.242264,0.081629,-0.331838,0.000000 +-0.332758,0.036135,-0.243915,0.082142,-0.334128,0.000000 +-0.335084,0.036356,-0.245565,0.082654,-0.336419,0.000000 +-0.337410,0.036576,-0.247215,0.083167,-0.338710,0.000000 +-0.339736,0.036797,-0.248866,0.083680,-0.341000,0.000000 +-0.342061,0.037018,-0.250516,0.084193,-0.343291,0.000000 +-0.344387,0.037238,-0.252167,0.084706,-0.345582,0.000000 +-0.346713,0.037459,-0.253817,0.085219,-0.347872,0.000000 +-0.349039,0.037680,-0.255468,0.085732,-0.350163,0.000000 +-0.351365,0.037900,-0.257118,0.086245,-0.352454,0.000000 +-0.353691,0.038121,-0.258769,0.086757,-0.354745,0.000000 +-0.356016,0.038342,-0.260419,0.087270,-0.357035,0.000000 +-0.358342,0.038562,-0.262069,0.087783,-0.359326,0.000000 +-0.360668,0.038783,-0.263720,0.088296,-0.361617,0.000000 +-0.362994,0.039004,-0.265370,0.088809,-0.363907,0.000000 +-0.365320,0.039224,-0.267021,0.089322,-0.366198,0.000000 +-0.367646,0.039445,-0.268671,0.089835,-0.368489,0.000000 +-0.369971,0.039665,-0.270322,0.090348,-0.370780,0.000000 +-0.372297,0.039886,-0.271972,0.090860,-0.373070,0.000000 +-0.374623,0.040107,-0.273623,0.091373,-0.375361,0.000000 +-0.376949,0.040327,-0.275273,0.091886,-0.377652,0.000000 +-0.379275,0.040548,-0.276923,0.092399,-0.379942,0.000000 +-0.381601,0.040768,-0.278574,0.092912,-0.382233,0.000000 +-0.383926,0.040989,-0.280224,0.093425,-0.384524,0.000000 +-0.386252,0.041210,-0.281875,0.093938,-0.386815,0.000000 +-0.388578,0.041430,-0.283525,0.094451,-0.389105,0.000000 +-0.390904,0.041651,-0.285176,0.094963,-0.391396,0.000000 +-0.393230,0.041872,-0.286826,0.095476,-0.393687,0.000000 +-0.395556,0.042092,-0.288477,0.095989,-0.395977,0.000000 +-0.397882,0.042313,-0.290127,0.096502,-0.398268,0.000000 +-0.400207,0.042534,-0.291777,0.097015,-0.400559,0.000000 +-0.402533,0.042754,-0.293428,0.097528,-0.402849,0.000000 +-0.404859,0.042975,-0.295078,0.098041,-0.405140,0.000000 +-0.407185,0.043195,-0.296729,0.098554,-0.407431,0.000000 +-0.409511,0.043416,-0.298379,0.099066,-0.409722,0.000000 +-0.411837,0.043637,-0.300030,0.099579,-0.412012,0.000000 +-0.414162,0.043857,-0.301680,0.100092,-0.414303,0.000000 +-0.416488,0.044078,-0.303331,0.100605,-0.416594,0.000000 +-0.418814,0.044299,-0.304981,0.101118,-0.418884,0.000000 +-0.421140,0.044519,-0.306631,0.101631,-0.421175,0.000000 +-0.423466,0.044740,-0.308282,0.102144,-0.423466,0.000000 +-0.425792,0.044961,-0.309932,0.102657,-0.425757,0.000000 +-0.428117,0.045181,-0.311583,0.103169,-0.428047,0.000000 +-0.430443,0.045402,-0.313233,0.103682,-0.430338,0.000000 +-0.432769,0.045622,-0.314884,0.104195,-0.432629,0.000000 +-0.435095,0.045843,-0.316534,0.104708,-0.434919,0.000000 +-0.437421,0.046064,-0.318184,0.105221,-0.437210,0.000000 +-0.439747,0.046284,-0.319835,0.105734,-0.439501,0.000000 +-0.442073,0.046505,-0.321485,0.106247,-0.441792,0.000000 +-0.444398,0.046726,-0.323136,0.106760,-0.444082,0.000000 +-0.446724,0.046946,-0.324786,0.107272,-0.446373,0.000000 +-0.449050,0.047167,-0.326437,0.107785,-0.448664,0.000000 +-0.451376,0.047387,-0.328087,0.108298,-0.450954,0.000000 +-0.453702,0.047608,-0.329738,0.108811,-0.453245,0.000000 +-0.456028,0.047829,-0.331388,0.109324,-0.455536,0.000000 +-0.458353,0.048049,-0.333038,0.109837,-0.457826,0.000000 +-0.460679,0.048270,-0.334689,0.110350,-0.460117,0.000000 +-0.463005,0.048491,-0.336339,0.110863,-0.462408,0.000000 +-0.465331,0.048711,-0.337990,0.111375,-0.464699,0.000000 +-0.467657,0.048932,-0.339640,0.111888,-0.466989,0.000000 +-0.469983,0.049153,-0.341291,0.112401,-0.469280,0.000000 +-0.472308,0.049373,-0.342941,0.112914,-0.471571,0.000000 +-0.474634,0.049594,-0.344592,0.113427,-0.473861,0.000000 +-0.476960,0.049814,-0.346242,0.113940,-0.476152,0.000000 +-0.479286,0.050035,-0.347892,0.114453,-0.478443,0.000000 +-0.481612,0.050256,-0.349543,0.114966,-0.480734,0.000000 +-0.483938,0.050476,-0.351193,0.115478,-0.483024,0.000000 +-0.486264,0.050697,-0.352844,0.115991,-0.485315,0.000000 +-0.488589,0.050917,-0.354494,0.116504,-0.487606,0.000000 +-0.490915,0.051138,-0.356145,0.117017,-0.489896,0.000000 +-0.493241,0.051359,-0.357795,0.117530,-0.492187,0.000000 +-0.495567,0.051579,-0.359446,0.118043,-0.494478,0.000000 +-0.497893,0.051800,-0.361096,0.118556,-0.496768,0.000000 +-0.500219,0.052021,-0.362746,0.119069,-0.499059,0.000000 +-0.502544,0.052241,-0.364397,0.119581,-0.501350,0.000000 +-0.504870,0.052462,-0.366047,0.120094,-0.503641,0.000000 +-0.507196,0.052683,-0.367698,0.120607,-0.505931,0.000000 +-0.509522,0.052903,-0.369348,0.121120,-0.508222,0.000000 +-0.511848,0.053124,-0.370999,0.121633,-0.510513,0.000000 +-0.514174,0.053345,-0.372649,0.122146,-0.512803,0.000000 +-0.516499,0.053565,-0.374300,0.122659,-0.515094,0.000000 +-0.518825,0.053786,-0.375950,0.123172,-0.517385,0.000000 +-0.521151,0.054006,-0.377600,0.123684,-0.519676,0.000000 +-0.523477,0.054227,-0.379251,0.124197,-0.521966,0.000000 +-0.525803,0.054448,-0.380901,0.124710,-0.524257,0.000000 +-0.528129,0.054668,-0.382552,0.125223,-0.526548,0.000000 +-0.530455,0.054889,-0.384202,0.125736,-0.528838,0.000000 +-0.532780,0.055109,-0.385853,0.126249,-0.531129,0.000000 +-0.535106,0.055330,-0.387503,0.126762,-0.533420,0.000000 +-0.537432,0.055551,-0.389154,0.127275,-0.535711,0.000000 +-0.539758,0.055771,-0.390804,0.127787,-0.538001,0.000000 +-0.542084,0.055992,-0.392454,0.128300,-0.540292,0.000000 +-0.544410,0.056213,-0.394105,0.128813,-0.542583,0.000000 +-0.546735,0.056433,-0.395755,0.129326,-0.544873,0.000000 +-0.549061,0.056654,-0.397406,0.129839,-0.547164,0.000000 +-0.551387,0.056875,-0.399056,0.130352,-0.549455,0.000000 +-0.553713,0.057095,-0.400707,0.130865,-0.551745,0.000000 +-0.556039,0.057316,-0.402357,0.131378,-0.554036,0.000000 +-0.558365,0.057536,-0.404008,0.131890,-0.556327,0.000000 +-0.560690,0.057757,-0.405658,0.132403,-0.558618,0.000000 +-0.563016,0.057978,-0.407308,0.132916,-0.560908,0.000000 +-0.565342,0.058198,-0.408959,0.133429,-0.563199,0.000000 +-0.567668,0.058419,-0.410609,0.133942,-0.565490,0.000000 +-0.569994,0.058640,-0.412260,0.134455,-0.567780,0.000000 +-0.572320,0.058860,-0.413910,0.134968,-0.570071,0.000000 +-0.574646,0.059081,-0.415561,0.135480,-0.572362,0.000000 +-0.576971,0.059302,-0.417211,0.135993,-0.574653,0.000000 +-0.579297,0.059522,-0.418861,0.136506,-0.576943,0.000000 +-0.581623,0.059743,-0.420512,0.137019,-0.579234,0.000000 +-0.583949,0.059963,-0.422162,0.137532,-0.581525,0.000000 +-0.586275,0.060184,-0.423813,0.138045,-0.583815,0.000000 +-0.588601,0.060405,-0.425463,0.138558,-0.586106,0.000000 +-0.590926,0.060625,-0.427114,0.139071,-0.588397,0.000000 +-0.593252,0.060846,-0.428764,0.139583,-0.590688,0.000000 +-0.595578,0.061067,-0.430415,0.140096,-0.592978,0.000000 +-0.597904,0.061287,-0.432065,0.140609,-0.595269,0.000000 +-0.600230,0.061508,-0.433715,0.141122,-0.597560,0.000000 +-0.602556,0.061728,-0.435366,0.141635,-0.599850,0.000000 +-0.604881,0.061949,-0.437016,0.142148,-0.602141,0.000000 +-0.607207,0.062170,-0.438667,0.142661,-0.604432,0.000000 +-0.609533,0.062390,-0.440317,0.143174,-0.606722,0.000000 +-0.611859,0.062611,-0.441968,0.143686,-0.609013,0.000000 +-0.614185,0.062832,-0.443618,0.144199,-0.611304,0.000000 +-0.616511,0.063052,-0.445269,0.144712,-0.613595,0.000000 +-0.618836,0.063273,-0.446919,0.145225,-0.615885,0.000000 +-0.621162,0.063493,-0.448569,0.145738,-0.618176,0.000000 +-0.623488,0.063714,-0.450220,0.146251,-0.620467,0.000000 +-0.625814,0.063935,-0.451870,0.146764,-0.622757,0.000000 +-0.628140,0.064155,-0.453521,0.147277,-0.625048,0.000000 +-0.630466,0.064376,-0.455171,0.147789,-0.627339,0.000000 +-0.632792,0.064597,-0.456822,0.148302,-0.629630,0.000000 +-0.635117,0.064817,-0.458472,0.148815,-0.631920,0.000000 +-0.637443,0.065038,-0.460123,0.149328,-0.634211,0.000000 +-0.639769,0.065258,-0.461773,0.149841,-0.636502,0.000000 +-0.642095,0.065479,-0.463423,0.150354,-0.638792,0.000000 +-0.644421,0.065700,-0.465074,0.150867,-0.641083,0.000000 +-0.646747,0.065920,-0.466724,0.151380,-0.643374,0.000000 +-0.649072,0.066141,-0.468375,0.151892,-0.645664,0.000000 +-0.651398,0.066362,-0.470025,0.152405,-0.647955,0.000000 +-0.653724,0.066582,-0.471676,0.152918,-0.650246,0.000000 +-0.656050,0.066803,-0.473326,0.153431,-0.652537,0.000000 +-0.658376,0.067024,-0.474977,0.153944,-0.654827,0.000000 +-0.660702,0.067244,-0.476627,0.154457,-0.657118,0.000000 +-0.663027,0.067465,-0.478277,0.154970,-0.659409,0.000000 +-0.665353,0.067685,-0.479928,0.155483,-0.661699,0.000000 +-0.667679,0.067906,-0.481578,0.155995,-0.663990,0.000000 +-0.670005,0.068127,-0.483229,0.156508,-0.666281,0.000000 +-0.672331,0.068347,-0.484879,0.157021,-0.668572,0.000000 +-0.674657,0.068568,-0.486530,0.157534,-0.670862,0.000000 +-0.676983,0.068789,-0.488180,0.158047,-0.673153,0.000000 +-0.679308,0.069009,-0.489831,0.158560,-0.675444,0.000000 +-0.681634,0.069230,-0.491481,0.159073,-0.677734,0.000000 +-0.683960,0.069450,-0.493131,0.159586,-0.680025,0.000000 +-0.686286,0.069671,-0.494782,0.160098,-0.682316,0.000000 +-0.688612,0.069892,-0.496432,0.160611,-0.684607,0.000000 +-0.690938,0.070112,-0.498083,0.161124,-0.686897,0.000000 +-0.693263,0.070333,-0.499733,0.161637,-0.689188,0.000000 +-0.695589,0.070554,-0.501384,0.162150,-0.691479,0.000000 +-0.697915,0.070774,-0.503034,0.162663,-0.693769,0.000000 +-0.700241,0.070995,-0.504685,0.163176,-0.696060,0.000000 +-0.702567,0.071216,-0.506335,0.163689,-0.698351,0.000000 +-0.704893,0.071436,-0.507985,0.164201,-0.700641,0.000000 +-0.707218,0.071657,-0.509636,0.164714,-0.702932,0.000000 +-0.709544,0.071877,-0.511286,0.165227,-0.705223,0.000000 +-0.711870,0.072098,-0.512937,0.165740,-0.707514,0.000000 +-0.714196,0.072319,-0.514587,0.166253,-0.709804,0.000000 +-0.716522,0.072539,-0.516238,0.166766,-0.712095,0.000000 +-0.718848,0.072760,-0.517888,0.167279,-0.714386,0.000000 +-0.721174,0.072981,-0.519538,0.167792,-0.716676,0.000000 +-0.723499,0.073201,-0.521189,0.168304,-0.718967,0.000000 +-0.725825,0.073422,-0.522839,0.168817,-0.721258,0.000000 +-0.728151,0.073643,-0.524490,0.169330,-0.723549,0.000000 +-0.730477,0.073863,-0.526140,0.169843,-0.725839,0.000000 +-0.732803,0.074084,-0.527791,0.170356,-0.728130,0.000000 +-0.735129,0.074304,-0.529441,0.170869,-0.730421,0.000000 +-0.737454,0.074525,-0.531092,0.171382,-0.732711,0.000000 +-0.739780,0.074746,-0.532742,0.171895,-0.735002,0.000000 +-0.742106,0.074966,-0.534392,0.172407,-0.737293,0.000000 +-0.744432,0.075187,-0.536043,0.172920,-0.739584,0.000000 +-0.746758,0.075408,-0.537693,0.173433,-0.741874,0.000000 +-0.749084,0.075628,-0.539344,0.173946,-0.744165,0.000000 +-0.751409,0.075849,-0.540994,0.174459,-0.746456,0.000000 +-0.753735,0.076069,-0.542645,0.174972,-0.748746,0.000000 +-0.756061,0.076290,-0.544295,0.175485,-0.751037,0.000000 +-0.758387,0.076511,-0.545946,0.175998,-0.753328,0.000000 +-0.760713,0.076731,-0.547596,0.176510,-0.755618,0.000000 +-0.763039,0.076952,-0.549246,0.177023,-0.757909,0.000000 +-0.765365,0.077173,-0.550897,0.177536,-0.760200,0.000000 +-0.767690,0.077393,-0.552547,0.178049,-0.762491,0.000000 +-0.770016,0.077614,-0.554198,0.178562,-0.764781,0.000000 +-0.772342,0.077835,-0.555848,0.179075,-0.767072,0.000000 +-0.774668,0.078055,-0.557499,0.179588,-0.769363,0.000000 +-0.776994,0.078276,-0.559149,0.180101,-0.771653,0.000000 +-0.779320,0.078496,-0.560800,0.180613,-0.773944,0.000000 +-0.781645,0.078717,-0.562450,0.181126,-0.776235,0.000000 +-0.783971,0.078938,-0.564100,0.181639,-0.778526,0.000000 +-0.786297,0.079158,-0.565751,0.182152,-0.780816,0.000000 +-0.788623,0.079379,-0.567401,0.182665,-0.783107,0.000000 +-0.790949,0.079600,-0.569052,0.183178,-0.785398,0.000000 +-0.793275,0.079820,-0.570702,0.183691,-0.787688,0.000000 +-0.795600,0.080041,-0.572353,0.184204,-0.789979,0.000000 +-0.797926,0.080261,-0.574003,0.184716,-0.792270,0.000000 +-0.800252,0.080482,-0.575654,0.185229,-0.794560,0.000000 +-0.802578,0.080703,-0.577304,0.185742,-0.796851,0.000000 +-0.804904,0.080923,-0.578954,0.186255,-0.799142,0.000000 +-0.807230,0.081144,-0.580605,0.186768,-0.801433,0.000000 +-0.809556,0.081365,-0.582255,0.187281,-0.803723,0.000000 +-0.811881,0.081585,-0.583906,0.187794,-0.806014,0.000000 +-0.814207,0.081806,-0.585556,0.188307,-0.808305,0.000000 +-0.816533,0.082027,-0.587207,0.188819,-0.810595,0.000000 +-0.818859,0.082247,-0.588857,0.189332,-0.812886,0.000000 +-0.821185,0.082468,-0.590508,0.189845,-0.815177,0.000000 +-0.823511,0.082688,-0.592158,0.190358,-0.817468,0.000000 +-0.825836,0.082909,-0.593808,0.190871,-0.819758,0.000000 +-0.828162,0.083130,-0.595459,0.191384,-0.822049,0.000000 +-0.830488,0.083350,-0.597109,0.191897,-0.824340,0.000000 +-0.832814,0.083571,-0.598760,0.192410,-0.826630,0.000000 +-0.835140,0.083792,-0.600410,0.192922,-0.828921,0.000000 +-0.837466,0.084012,-0.602061,0.193435,-0.831212,0.000000 +-0.839791,0.084233,-0.603711,0.193948,-0.833503,0.000000 +-0.842117,0.084453,-0.605362,0.194461,-0.835793,0.000000 +-0.844443,0.084674,-0.607012,0.194974,-0.838084,0.000000 +-0.846769,0.084895,-0.608662,0.195487,-0.840375,0.000000 +-0.849095,0.085115,-0.610313,0.196000,-0.842665,0.000000 +-0.851421,0.085336,-0.611963,0.196513,-0.844956,0.000000 +-0.853747,0.085556,-0.613614,0.197025,-0.847247,0.000000 +-0.856072,0.085777,-0.615264,0.197538,-0.849537,0.000000 +-0.858398,0.085998,-0.616915,0.198051,-0.851828,0.000000 +-0.860724,0.086218,-0.618565,0.198564,-0.854119,0.000000 +-0.863050,0.086439,-0.620215,0.199077,-0.856410,0.000000 +-0.865376,0.086660,-0.621866,0.199590,-0.858700,0.000000 +-0.867702,0.086880,-0.623516,0.200103,-0.860991,0.000000 +-0.870027,0.087101,-0.625167,0.200616,-0.863282,0.000000 +-0.872353,0.087322,-0.626817,0.201128,-0.865572,0.000000 +-0.874679,0.087542,-0.628468,0.201641,-0.867863,0.000000 +-0.877005,0.087763,-0.630118,0.202154,-0.870154,0.000000 +-0.879331,0.087984,-0.631769,0.202667,-0.872445,0.000000 +-0.881657,0.088204,-0.633419,0.203180,-0.874735,0.000000 +-0.883982,0.088425,-0.635069,0.203693,-0.877026,0.000000 +-0.886308,0.088645,-0.636720,0.204206,-0.879317,0.000000 +-0.888634,0.088866,-0.638370,0.204719,-0.881607,0.000000 +-0.890960,0.089087,-0.640021,0.205231,-0.883898,0.000000 +-0.893286,0.089307,-0.641671,0.205744,-0.886189,0.000000 +-0.895612,0.089528,-0.643322,0.206257,-0.888480,0.000000 +-0.897937,0.089748,-0.644972,0.206770,-0.890770,0.000000 +-0.900263,0.089969,-0.646623,0.207283,-0.893061,0.000000 +-0.902589,0.090190,-0.648273,0.207796,-0.895352,0.000000 +-0.904915,0.090410,-0.649923,0.208309,-0.897642,0.000000 +-0.907241,0.090631,-0.651574,0.208822,-0.899933,0.000000 +-0.909567,0.090852,-0.653224,0.209334,-0.902224,0.000000 +-0.911893,0.091072,-0.654875,0.209847,-0.904514,0.000000 +-0.914218,0.091293,-0.656525,0.210360,-0.906805,0.000000 +-0.916544,0.091514,-0.658176,0.210873,-0.909096,0.000000 +-0.918870,0.091734,-0.659826,0.211386,-0.911387,0.000000 +-0.921196,0.091955,-0.661477,0.211899,-0.913677,0.000000 +-0.923522,0.092175,-0.663127,0.212412,-0.915968,0.000000 +-0.925848,0.092396,-0.664777,0.212925,-0.918259,0.000000 +-0.928173,0.092617,-0.666428,0.213437,-0.920549,0.000000 +-0.930499,0.092837,-0.668078,0.213950,-0.922840,0.000000 +-0.932825,0.093058,-0.669729,0.214463,-0.925131,0.000000 +-0.935151,0.093279,-0.671379,0.214976,-0.927422,0.000000 +-0.937477,0.093499,-0.673030,0.215489,-0.929712,0.000000 +-0.939803,0.093720,-0.674680,0.216002,-0.932003,0.000000 +-0.942128,0.093940,-0.676331,0.216515,-0.934294,0.000000 +-0.944454,0.094161,-0.677981,0.217028,-0.936584,0.000000 +-0.946780,0.094382,-0.679631,0.217540,-0.938875,0.000000 +-0.949106,0.094602,-0.681282,0.218053,-0.941166,0.000000 +-0.951432,0.094823,-0.682932,0.218566,-0.943456,0.000000 +-0.953758,0.095044,-0.684583,0.219079,-0.945747,0.000000 +-0.956084,0.095264,-0.686233,0.219592,-0.948038,0.000000 +-0.958409,0.095485,-0.687884,0.220105,-0.950329,0.000000 +-0.960735,0.095706,-0.689534,0.220618,-0.952619,0.000000 +-0.963061,0.095926,-0.691185,0.221131,-0.954910,0.000000 +-0.965387,0.096147,-0.692835,0.221643,-0.957201,0.000000 +-0.967713,0.096367,-0.694485,0.222156,-0.959491,0.000000 +-0.970039,0.096588,-0.696136,0.222669,-0.961782,0.000000 +-0.972364,0.096809,-0.697786,0.223182,-0.964073,0.000000 +-0.974690,0.097029,-0.699437,0.223695,-0.966364,0.000000 +-0.977016,0.097250,-0.701087,0.224208,-0.968654,0.000000 +-0.979342,0.097471,-0.702738,0.224721,-0.970945,0.000000 +-0.981668,0.097691,-0.704388,0.225234,-0.973236,0.000000 +-0.983994,0.097912,-0.706038,0.225746,-0.975526,0.000000 +-0.986319,0.098132,-0.707689,0.226259,-0.977817,0.000000 +-0.988645,0.098353,-0.709339,0.226772,-0.980108,0.000000 +-0.990971,0.098574,-0.710990,0.227285,-0.982399,0.000000 +-0.993297,0.098794,-0.712640,0.227798,-0.984689,0.000000 +-0.995623,0.099015,-0.714291,0.228311,-0.986980,0.000000 +-0.997949,0.099236,-0.715941,0.228824,-0.989271,0.000000 +-1.000270,0.099456,-0.717592,0.229337,-0.991561,0.000000 +-1.002600,0.099677,-0.719242,0.229849,-0.993852,0.000000 +-1.004930,0.099898,-0.720892,0.230362,-0.996143,0.000000 +-1.007250,0.100118,-0.722543,0.230875,-0.998433,0.000000 +-1.009580,0.100339,-0.724193,0.231388,-1.000720,0.000000 +-1.011900,0.100559,-0.725844,0.231901,-1.003010,0.000000 +-1.014230,0.100780,-0.727494,0.232414,-1.005310,0.000000 +-1.016560,0.101001,-0.729145,0.232927,-1.007600,0.000000 +-1.018880,0.101221,-0.730795,0.233440,-1.009890,0.000000 +-1.021210,0.101442,-0.732446,0.233952,-1.012180,0.000000 +-1.023530,0.101663,-0.734096,0.234465,-1.014470,0.000000 +-1.025860,0.101883,-0.735746,0.234978,-1.016760,0.000000 +-1.028180,0.102104,-0.737397,0.235491,-1.019050,0.000000 +-1.030510,0.102324,-0.739047,0.236004,-1.021340,0.000000 +-1.032840,0.102545,-0.740698,0.236517,-1.023630,0.000000 +-1.035160,0.102766,-0.742348,0.237030,-1.025920,0.000000 +-1.037490,0.102986,-0.743999,0.237542,-1.028210,0.000000 +-1.039810,0.103207,-0.745649,0.238055,-1.030500,0.000000 +-1.042140,0.103428,-0.747300,0.238568,-1.032790,0.000000 +-1.044470,0.103648,-0.748950,0.239081,-1.035080,0.000000 +-1.046790,0.103869,-0.750600,0.239594,-1.037380,0.000000 +-1.049120,0.104090,-0.752251,0.240107,-1.039670,0.000000 +-1.051440,0.104310,-0.753901,0.240620,-1.041960,0.000000 +-1.053770,0.104531,-0.755552,0.241133,-1.044250,0.000000 +-1.056090,0.104751,-0.757202,0.241645,-1.046540,0.000000 +-1.058420,0.104972,-0.758853,0.242158,-1.048830,0.000000 +-1.060750,0.105193,-0.760503,0.242671,-1.051120,0.000000 +-1.063070,0.105413,-0.762154,0.243184,-1.053410,0.000000 +-1.065400,0.105634,-0.763804,0.243697,-1.055700,0.000000 +-1.067720,0.105855,-0.765454,0.244210,-1.057990,0.000000 +-1.070050,0.106075,-0.767105,0.244723,-1.060280,0.000000 +-1.072380,0.106296,-0.768755,0.245236,-1.062570,0.000000 +-1.074700,0.106516,-0.770406,0.245748,-1.064860,0.000000 +-1.077030,0.106737,-0.772056,0.246261,-1.067150,0.000000 +-1.079350,0.106958,-0.773707,0.246774,-1.069450,0.000000 +-1.081680,0.107178,-0.775357,0.247287,-1.071740,0.000000 +-1.084000,0.107399,-0.777008,0.247800,-1.074030,0.000000 +-1.086330,0.107620,-0.778658,0.248313,-1.076320,0.000000 +-1.088660,0.107840,-0.780308,0.248826,-1.078610,0.000000 +-1.090980,0.108061,-0.781959,0.249339,-1.080900,0.000000 +-1.093310,0.108282,-0.783609,0.249851,-1.083190,0.000000 +-1.095630,0.108502,-0.785260,0.250364,-1.085480,0.000000 +-1.097960,0.108723,-0.786910,0.250877,-1.087770,0.000000 +-1.100290,0.108943,-0.788561,0.251390,-1.090060,0.000000 +-1.102610,0.109164,-0.790211,0.251903,-1.092350,0.000000 +-1.104940,0.109385,-0.791862,0.252416,-1.094640,0.000000 +-1.107260,0.109605,-0.793512,0.252929,-1.096930,0.000000 +-1.109590,0.109826,-0.795162,0.253442,-1.099220,0.000000 +-1.111910,0.110047,-0.796813,0.253954,-1.101520,0.000000 +-1.114240,0.110267,-0.798463,0.254467,-1.103810,0.000000 +-1.116570,0.110488,-0.800114,0.254980,-1.106100,0.000000 +-1.118890,0.110708,-0.801764,0.255493,-1.108390,0.000000 +-1.121220,0.110929,-0.803415,0.256006,-1.110680,0.000000 +-1.123540,0.111150,-0.805065,0.256519,-1.112970,0.000000 +-1.125870,0.111370,-0.806715,0.257032,-1.115260,0.000000 +-1.128200,0.111591,-0.808366,0.257545,-1.117550,0.000000 +-1.130520,0.111812,-0.810016,0.258057,-1.119840,0.000000 +-1.132850,0.112032,-0.811667,0.258570,-1.122130,0.000000 +-1.135170,0.112253,-0.813317,0.259083,-1.124420,0.000000 +-1.137500,0.112473,-0.814968,0.259596,-1.126710,0.000000 +-1.139830,0.112694,-0.816618,0.260109,-1.129000,0.000000 +-1.142150,0.112915,-0.818269,0.260622,-1.131290,0.000000 +-1.144480,0.113135,-0.819919,0.261135,-1.133590,0.000000 +-1.146800,0.113356,-0.821569,0.261648,-1.135880,0.000000 +-1.149130,0.113577,-0.823220,0.262160,-1.138170,0.000000 +-1.151450,0.113797,-0.824870,0.262673,-1.140460,0.000000 +-1.153780,0.114018,-0.826521,0.263186,-1.142750,0.000000 +-1.156110,0.114239,-0.828171,0.263699,-1.145040,0.000000 +-1.158430,0.114459,-0.829822,0.264212,-1.147330,0.000000 +-1.160760,0.114680,-0.831472,0.264725,-1.149620,0.000000 +-1.163080,0.114900,-0.833123,0.265238,-1.151910,0.000000 +-1.165410,0.115121,-0.834773,0.265751,-1.154200,0.000000 +-1.167740,0.115342,-0.836423,0.266263,-1.156490,0.000000 +-1.170060,0.115562,-0.838074,0.266776,-1.158780,0.000000 +-1.172390,0.115783,-0.839724,0.267289,-1.161070,0.000000 +-1.174710,0.116004,-0.841375,0.267802,-1.163360,0.000000 +-1.177040,0.116224,-0.843025,0.268315,-1.165660,0.000000 +-1.179360,0.116445,-0.844676,0.268828,-1.167950,0.000000 +-1.181690,0.116665,-0.846326,0.269341,-1.170240,0.000000 +-1.184020,0.116886,-0.847977,0.269854,-1.172530,0.000000 +-1.186340,0.117107,-0.849627,0.270366,-1.174820,0.000000 +-1.188670,0.117327,-0.851277,0.270879,-1.177110,0.000000 +-1.190990,0.117548,-0.852928,0.271392,-1.179400,0.000000 +-1.193320,0.117769,-0.854578,0.271905,-1.181690,0.000000 +-1.195650,0.117989,-0.856229,0.272418,-1.183980,0.000000 +-1.197970,0.118210,-0.857879,0.272931,-1.186270,0.000000 +-1.200300,0.118431,-0.859530,0.273444,-1.188560,0.000000 +-1.202620,0.118651,-0.861180,0.273957,-1.190850,0.000000 +-1.204950,0.118872,-0.862831,0.274469,-1.193140,0.000000 +-1.207270,0.119092,-0.864481,0.274982,-1.195430,0.000000 +-1.209600,0.119313,-0.866131,0.275495,-1.197730,0.000000 +-1.211930,0.119534,-0.867782,0.276008,-1.200020,0.000000 +-1.214250,0.119754,-0.869432,0.276521,-1.202310,0.000000 +-1.216580,0.119975,-0.871083,0.277034,-1.204600,0.000000 +-1.218900,0.120196,-0.872733,0.277547,-1.206890,0.000000 +-1.221230,0.120416,-0.874384,0.278060,-1.209180,0.000000 +-1.223560,0.120637,-0.876034,0.278572,-1.211470,0.000000 +-1.225880,0.120857,-0.877685,0.279085,-1.213760,0.000000 +-1.228210,0.121078,-0.879335,0.279598,-1.216050,0.000000 +-1.230530,0.121299,-0.880985,0.280111,-1.218340,0.000000 +-1.232860,0.121519,-0.882636,0.280624,-1.220630,0.000000 +-1.235180,0.121740,-0.884286,0.281137,-1.222920,0.000000 +-1.237510,0.121961,-0.885937,0.281650,-1.225210,0.000000 +-1.239840,0.122181,-0.887587,0.282163,-1.227500,0.000000 +-1.242160,0.122402,-0.889238,0.282675,-1.229790,0.000000 +-1.244490,0.122623,-0.890888,0.283188,-1.232090,0.000000 +-1.246810,0.122843,-0.892539,0.283701,-1.234380,0.000000 +-1.249140,0.123064,-0.894189,0.284214,-1.236670,0.000000 +-1.251470,0.123284,-0.895839,0.284727,-1.238960,0.000000 +-1.253790,0.123505,-0.897490,0.285240,-1.241250,0.000000 +-1.256120,0.123726,-0.899140,0.285753,-1.243540,0.000000 +-1.258440,0.123946,-0.900791,0.286266,-1.245830,0.000000 +-1.260770,0.124167,-0.902441,0.286778,-1.248120,0.000000 +-1.263090,0.124388,-0.904092,0.287291,-1.250410,0.000000 +-1.265420,0.124608,-0.905742,0.287804,-1.252700,0.000000 +-1.267750,0.124829,-0.907392,0.288317,-1.254990,0.000000 +-1.270070,0.125049,-0.909043,0.288830,-1.257280,0.000000 +-1.272400,0.125270,-0.910693,0.289343,-1.259570,0.000000 +-1.274720,0.125491,-0.912344,0.289856,-1.261860,0.000000 +-1.277050,0.125711,-0.913994,0.290369,-1.264160,0.000000 +-1.279380,0.125932,-0.915645,0.290881,-1.266450,0.000000 +-1.281700,0.126153,-0.917295,0.291394,-1.268740,0.000000 +-1.284030,0.126373,-0.918946,0.291907,-1.271030,0.000000 +-1.286350,0.126594,-0.920596,0.292420,-1.273320,0.000000 +-1.288680,0.126814,-0.922246,0.292933,-1.275610,0.000000 +-1.291000,0.127035,-0.923897,0.293446,-1.277900,0.000000 +-1.293330,0.127256,-0.925547,0.293959,-1.280190,0.000000 +-1.295660,0.127476,-0.927198,0.294472,-1.282480,0.000000 +-1.297980,0.127697,-0.928848,0.294984,-1.284770,0.000000 +-1.300310,0.127918,-0.930499,0.295497,-1.287060,0.000000 +-1.302630,0.128138,-0.932149,0.296010,-1.289350,0.000000 +-1.304960,0.128359,-0.933800,0.296523,-1.291640,0.000000 +-1.307290,0.128580,-0.935450,0.297036,-1.293930,0.000000 +-1.309610,0.128800,-0.937100,0.297549,-1.296230,0.000000 +-1.311940,0.129021,-0.938751,0.298062,-1.298520,0.000000 +-1.314260,0.129241,-0.940401,0.298575,-1.300810,0.000000 +-1.316590,0.129462,-0.942052,0.299087,-1.303100,0.000000 +-1.318910,0.129683,-0.943702,0.299600,-1.305390,0.000000 +-1.321240,0.129903,-0.945353,0.300113,-1.307680,0.000000 +-1.323570,0.130124,-0.947003,0.300626,-1.309970,0.000000 +-1.325890,0.130345,-0.948654,0.301139,-1.312260,0.000000 +-1.328220,0.130565,-0.950304,0.301652,-1.314550,0.000000 +-1.330540,0.130786,-0.951954,0.302165,-1.316840,0.000000 +-1.332870,0.131006,-0.953605,0.302678,-1.319130,0.000000 +-1.335200,0.131227,-0.955255,0.303190,-1.321420,0.000000 +-1.337520,0.131448,-0.956906,0.303703,-1.323710,0.000000 +-1.339850,0.131668,-0.958556,0.304216,-1.326000,0.000000 +-1.342170,0.131889,-0.960207,0.304729,-1.328300,0.000000 +-1.344500,0.132110,-0.961857,0.305242,-1.330590,0.000000 +-1.346820,0.132330,-0.963508,0.305755,-1.332880,0.000000 +-1.349150,0.132551,-0.965158,0.306268,-1.335170,0.000000 +-1.351480,0.132772,-0.966808,0.306781,-1.337460,0.000000 +-1.353800,0.132992,-0.968459,0.307293,-1.339750,0.000000 +-1.356130,0.133213,-0.970109,0.307806,-1.342040,0.000000 +-1.358450,0.133433,-0.971760,0.308319,-1.344330,0.000000 +-1.360780,0.133654,-0.973410,0.308832,-1.346620,0.000000 +-1.363110,0.133875,-0.975061,0.309345,-1.348910,0.000000 +-1.365430,0.134095,-0.976711,0.309858,-1.351200,0.000000 +-1.367760,0.134316,-0.978362,0.310371,-1.353490,0.000000 +-1.370080,0.134537,-0.980012,0.310884,-1.355780,0.000000 +-1.372410,0.134757,-0.981662,0.311396,-1.358070,0.000000 +-1.374740,0.134978,-0.983313,0.311909,-1.360370,0.000000 +-1.377060,0.135198,-0.984963,0.312422,-1.362660,0.000000 +-1.379390,0.135419,-0.986614,0.312935,-1.364950,0.000000 +-1.381710,0.135640,-0.988264,0.313448,-1.367240,0.000000 +-1.384040,0.135860,-0.989915,0.313961,-1.369530,0.000000 +-1.386360,0.136081,-0.991565,0.314474,-1.371820,0.000000 +-1.388690,0.136302,-0.993216,0.314987,-1.374110,0.000000 +-1.391020,0.136522,-0.994866,0.315499,-1.376400,0.000000 +-1.393340,0.136743,-0.996516,0.316012,-1.378690,0.000000 +-1.395670,0.136963,-0.998167,0.316525,-1.380980,0.000000 +-1.397990,0.137184,-0.999817,0.317038,-1.383270,0.000000 +-1.400320,0.137405,-1.001470,0.317551,-1.385560,0.000000 +-1.402650,0.137625,-1.003120,0.318064,-1.387850,0.000000 +-1.404970,0.137846,-1.004770,0.318577,-1.390140,0.000000 +-1.407300,0.138067,-1.006420,0.319090,-1.392440,0.000000 +-1.409620,0.138287,-1.008070,0.319602,-1.394730,0.000000 +-1.411950,0.138508,-1.009720,0.320115,-1.397020,0.000000 +-1.414270,0.138729,-1.011370,0.320628,-1.399310,0.000000 +-1.416600,0.138949,-1.013020,0.321141,-1.401600,0.000000 +-1.418930,0.139170,-1.014670,0.321654,-1.403890,0.000000 +-1.421250,0.139390,-1.016320,0.322167,-1.406180,0.000000 +-1.423580,0.139611,-1.017970,0.322680,-1.408470,0.000000 +-1.425900,0.139832,-1.019620,0.323193,-1.410760,0.000000 +-1.428230,0.140052,-1.021270,0.323705,-1.413050,0.000000 +-1.430560,0.140273,-1.022920,0.324218,-1.415340,0.000000 +-1.432880,0.140494,-1.024570,0.324731,-1.417630,0.000000 +-1.435210,0.140714,-1.026220,0.325244,-1.419920,0.000000 +-1.437530,0.140935,-1.027870,0.325757,-1.422210,0.000000 +-1.439860,0.141155,-1.029530,0.326270,-1.424510,0.000000 +-1.442180,0.141376,-1.031180,0.326783,-1.426800,0.000000 +-1.444510,0.141597,-1.032830,0.327296,-1.429090,0.000000 +-1.446840,0.141817,-1.034480,0.327808,-1.431380,0.000000 +-1.449160,0.142038,-1.036130,0.328321,-1.433670,0.000000 +-1.451490,0.142259,-1.037780,0.328834,-1.435960,0.000000 +-1.453810,0.142479,-1.039430,0.329347,-1.438250,0.000000 +-1.456140,0.142700,-1.041080,0.329860,-1.440540,0.000000 +-1.458470,0.142921,-1.042730,0.330373,-1.442830,0.000000 +-1.460790,0.143141,-1.044380,0.330886,-1.445120,0.000000 +-1.463120,0.143362,-1.046030,0.331399,-1.447410,0.000000 +-1.465440,0.143582,-1.047680,0.331911,-1.449700,0.000000 +-1.467770,0.143803,-1.049330,0.332424,-1.451990,0.000000 +-1.470090,0.144024,-1.050980,0.332937,-1.454280,0.000000 +-1.472420,0.144244,-1.052630,0.333450,-1.456580,0.000000 +-1.474750,0.144465,-1.054280,0.333963,-1.458870,0.000000 +-1.477070,0.144686,-1.055930,0.334476,-1.461160,0.000000 +-1.479400,0.144906,-1.057580,0.334989,-1.463450,0.000000 +-1.481720,0.145127,-1.059230,0.335502,-1.465740,0.000000 +-1.484050,0.145347,-1.060880,0.336014,-1.468030,0.000000 +-1.486380,0.145568,-1.062530,0.336527,-1.470320,0.000000 +-1.488700,0.145789,-1.064180,0.337040,-1.472610,0.000000 +-1.491030,0.146009,-1.065830,0.337553,-1.474900,0.000000 +-1.493350,0.146230,-1.067490,0.338066,-1.477190,0.000000 +-1.495680,0.146451,-1.069140,0.338579,-1.479480,0.000000 +-1.498000,0.146671,-1.070790,0.339092,-1.481770,0.000000 +-1.500330,0.146892,-1.072440,0.339605,-1.484060,0.000000 +-1.502660,0.147113,-1.074090,0.340117,-1.486350,0.000000 +-1.504980,0.147333,-1.075740,0.340630,-1.488640,0.000000 +-1.507310,0.147554,-1.077390,0.341143,-1.490940,0.000000 +-1.509630,0.147774,-1.079040,0.341656,-1.493230,0.000000 +-1.511960,0.147995,-1.080690,0.342169,-1.495520,0.000000 +-1.514290,0.148216,-1.082340,0.342682,-1.497810,0.000000 +-1.516610,0.148436,-1.083990,0.343195,-1.500100,0.000000 +-1.518930,0.148657,-1.085640,0.343707,-1.502390,0.000000 +-1.521240,0.148878,-1.087290,0.344220,-1.504680,0.000000 +-1.523540,0.149098,-1.088940,0.344733,-1.506970,0.000000 +-1.525830,0.149319,-1.090590,0.345246,-1.509260,0.000000 +-1.528100,0.149539,-1.092240,0.345759,-1.511550,0.000000 +-1.530360,0.149760,-1.093890,0.346272,-1.513840,0.000000 +-1.532590,0.149981,-1.095540,0.346785,-1.516120,0.000000 +-1.534800,0.150201,-1.097190,0.347298,-1.518380,0.000000 +-1.536990,0.150422,-1.098840,0.347810,-1.520640,0.000000 +-1.539150,0.150643,-1.100490,0.348323,-1.522880,0.000000 +-1.541280,0.150863,-1.102130,0.348836,-1.525100,0.000000 +-1.543370,0.151084,-1.103760,0.349349,-1.527290,0.000000 +-1.545430,0.151304,-1.105380,0.349862,-1.529460,0.000000 +-1.547450,0.151525,-1.106980,0.350375,-1.531610,0.000000 +-1.549430,0.151746,-1.108570,0.350888,-1.533720,0.000000 +-1.551360,0.151966,-1.110140,0.351401,-1.535790,0.000000 +-1.553250,0.152187,-1.111690,0.351913,-1.537830,0.000000 +-1.555090,0.152408,-1.113210,0.352426,-1.539820,0.000000 +-1.556870,0.152628,-1.114700,0.352939,-1.541770,0.000000 +-1.558610,0.152849,-1.116170,0.353452,-1.543680,0.000000 +-1.560280,0.153070,-1.117600,0.353965,-1.545530,0.000000 +-1.561900,0.153290,-1.119000,0.354478,-1.547330,0.000000 +-1.563460,0.153511,-1.120360,0.354991,-1.549070,0.000000 +-1.564950,0.153731,-1.121680,0.355504,-1.550750,0.000000 +-1.566370,0.153952,-1.122960,0.356016,-1.552370,0.000000 +-1.567730,0.154173,-1.124190,0.356529,-1.553930,0.000000 +-1.569010,0.154393,-1.125380,0.357042,-1.555410,0.000000 +-1.570210,0.154614,-1.126510,0.357555,-1.556820,0.000000 +-1.571340,0.154835,-1.127600,0.358068,-1.558160,0.000000 +-1.572400,0.155055,-1.128620,0.358581,-1.559420,0.000000 +-1.573380,0.155276,-1.129590,0.359094,-1.560590,0.000000 +-1.574290,0.155496,-1.130500,0.359607,-1.561680,0.000000 +-1.575140,0.155717,-1.131340,0.360119,-1.562700,0.000000 +-1.575920,0.155938,-1.132120,0.360630,-1.563630,0.000000 +-1.576630,0.156158,-1.132840,0.361135,-1.564490,0.000000 +-1.577290,0.156379,-1.133500,0.361632,-1.565280,0.000000 +-1.577890,0.156600,-1.134100,0.362118,-1.565990,0.000000 +-1.578440,0.156820,-1.134640,0.362589,-1.566650,0.000000 +-1.578930,0.157041,-1.135140,0.363042,-1.567240,0.000000 +-1.579370,0.157261,-1.135580,0.363475,-1.567770,0.000000 +-1.579770,0.157481,-1.135980,0.363883,-1.568250,0.000000 +-1.580130,0.157697,-1.136330,0.364265,-1.568670,0.000000 +-1.580440,0.157906,-1.136640,0.364616,-1.569050,0.000000 +-1.580710,0.158106,-1.136920,0.364935,-1.569370,0.000000 +-1.580950,0.158295,-1.137150,0.365217,-1.569660,0.000000 +-1.581150,0.158470,-1.137360,0.365460,-1.569900,0.000000 +-1.581320,0.158628,-1.137530,0.365666,-1.570110,0.000000 +-1.581460,0.158767,-1.137670,0.365837,-1.570280,0.000000 +-1.581580,0.158884,-1.137790,0.365978,-1.570420,0.000000 +-1.581680,0.158977,-1.137880,0.366090,-1.570530,0.000000 +-1.581750,0.159051,-1.137960,0.366178,-1.570620,0.000000 +-1.581800,0.159106,-1.138010,0.366244,-1.570680,0.000000 +-1.581840,0.159145,-1.138050,0.366291,-1.570730,0.000000 +-1.581870,0.159171,-1.138080,0.366322,-1.570760,0.000000 +-1.581890,0.159187,-1.138090,0.366342,-1.570780,0.000000 +-1.581890,0.159196,-1.138100,0.366351,-1.570790,0.000000 +-1.581900,0.159199,-1.138100,0.366355,-1.570790,0.000000 +-1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +-1.581900,0.159199,-1.138100,0.366356,-1.570800,0.000000 +-1.581900,0.159203,-1.138110,0.366355,-1.570800,-0.000008 +-1.581890,0.159200,-1.138100,0.366352,-1.570790,-0.000008 +-1.581890,0.159191,-1.138100,0.366342,-1.570780,-0.000008 +-1.581870,0.159175,-1.138080,0.366323,-1.570760,-0.000008 +-1.581840,0.159149,-1.138050,0.366291,-1.570730,-0.000008 +-1.581800,0.159110,-1.138010,0.366244,-1.570680,-0.000008 +-1.581750,0.159055,-1.137960,0.366178,-1.570620,-0.000008 +-1.581680,0.158981,-1.137890,0.366091,-1.570530,-0.000008 +-1.581580,0.158888,-1.137790,0.365978,-1.570420,-0.000008 +-1.581470,0.158770,-1.137680,0.365838,-1.570280,-0.000008 +-1.581320,0.158628,-1.137530,0.365666,-1.570110,-0.000008 +-1.581150,0.158461,-1.137360,0.365460,-1.569900,-0.000008 +-1.580950,0.158273,-1.137160,0.365217,-1.569660,-0.000008 +-1.580710,0.158067,-1.136920,0.364933,-1.569370,-0.000008 +-1.580440,0.157844,-1.136650,0.364607,-1.569050,-0.000008 +-1.580130,0.157607,-1.136340,0.364240,-1.568670,-0.000008 +-1.579770,0.157360,-1.135980,0.363834,-1.568250,-0.000008 +-1.579370,0.157104,-1.135580,0.363394,-1.567770,-0.000008 +-1.578930,0.156843,-1.135140,0.362922,-1.567240,-0.000008 +-1.578440,0.156578,-1.134650,0.362421,-1.566650,-0.000008 +-1.577890,0.156313,-1.134100,0.361894,-1.565990,-0.000008 +-1.577290,0.156047,-1.133500,0.361346,-1.565280,-0.000008 +-1.576630,0.155782,-1.132840,0.360777,-1.564490,-0.000008 +-1.575920,0.155516,-1.132130,0.360193,-1.563630,-0.000008 +-1.575140,0.155251,-1.131350,0.359596,-1.562700,-0.000008 +-1.574290,0.154986,-1.130500,0.358988,-1.561680,-0.000008 +-1.573380,0.154720,-1.129590,0.358374,-1.560590,-0.000008 +-1.572400,0.154455,-1.128610,0.357756,-1.559420,-0.000008 +-1.571340,0.154189,-1.127560,0.357137,-1.558150,-0.000008 +-1.570210,0.153924,-1.126430,0.356518,-1.556800,-0.000008 +-1.569010,0.153658,-1.125240,0.355898,-1.555350,-0.000008 +-1.567720,0.153393,-1.123990,0.355279,-1.553820,-0.000008 +-1.566350,0.153128,-1.122670,0.354660,-1.552190,-0.000008 +-1.564890,0.152862,-1.121300,0.354041,-1.550490,-0.000008 +-1.563350,0.152597,-1.119870,0.353422,-1.548700,-0.000008 +-1.561730,0.152331,-1.118380,0.352803,-1.546830,-0.000008 +-1.560030,0.152066,-1.116850,0.352184,-1.544890,-0.000008 +-1.558250,0.151800,-1.115260,0.351565,-1.542870,-0.000008 +-1.556400,0.151535,-1.113630,0.350946,-1.540790,-0.000008 +-1.554480,0.151269,-1.111960,0.350327,-1.538640,-0.000008 +-1.552490,0.151004,-1.110240,0.349708,-1.536430,-0.000008 +-1.550430,0.150739,-1.108490,0.349089,-1.534170,-0.000008 +-1.548310,0.150473,-1.106700,0.348470,-1.531840,-0.000008 +-1.546130,0.150208,-1.104880,0.347851,-1.529460,-0.000008 +-1.543900,0.149942,-1.103020,0.347232,-1.527030,-0.000008 +-1.541600,0.149677,-1.101140,0.346612,-1.524560,-0.000008 +-1.539260,0.149411,-1.099240,0.345993,-1.522040,-0.000008 +-1.536860,0.149146,-1.097310,0.345374,-1.519480,-0.000008 +-1.534420,0.148881,-1.095360,0.344755,-1.516880,-0.000008 +-1.531930,0.148615,-1.093390,0.344136,-1.514250,-0.000008 +-1.529400,0.148350,-1.091410,0.343517,-1.511590,-0.000008 +-1.526830,0.148084,-1.089420,0.342898,-1.508900,-0.000008 +-1.524220,0.147819,-1.087420,0.342279,-1.506180,-0.000008 +-1.521580,0.147553,-1.085410,0.341660,-1.503440,-0.000008 +-1.518900,0.147288,-1.083390,0.341041,-1.500680,-0.000008 +-1.516200,0.147023,-1.081370,0.340422,-1.497910,-0.000008 +-1.513470,0.146757,-1.079360,0.339803,-1.495130,-0.000008 +-1.510710,0.146492,-1.077340,0.339184,-1.492330,-0.000008 +-1.507930,0.146226,-1.075320,0.338565,-1.489530,-0.000008 +-1.505140,0.145961,-1.073310,0.337945,-1.486720,-0.000008 +-1.502330,0.145695,-1.071290,0.337326,-1.483920,-0.000008 +-1.499500,0.145430,-1.069270,0.336707,-1.481110,-0.000008 +-1.496660,0.145164,-1.067260,0.336088,-1.478310,-0.000008 +-1.493810,0.144899,-1.065240,0.335469,-1.475500,-0.000008 +-1.490960,0.144634,-1.063220,0.334850,-1.472700,-0.000008 +-1.488110,0.144368,-1.061200,0.334231,-1.469890,-0.000008 +-1.485250,0.144103,-1.059190,0.333612,-1.467090,-0.000008 +-1.482390,0.143837,-1.057170,0.332993,-1.464280,-0.000008 +-1.479530,0.143572,-1.055150,0.332374,-1.461480,-0.000008 +-1.476680,0.143306,-1.053140,0.331755,-1.458670,-0.000008 +-1.473820,0.143041,-1.051120,0.331136,-1.455870,-0.000008 +-1.470960,0.142776,-1.049100,0.330517,-1.453060,-0.000008 +-1.468110,0.142510,-1.047080,0.329898,-1.450260,-0.000008 +-1.465250,0.142245,-1.045070,0.329278,-1.447450,-0.000008 +-1.462390,0.141979,-1.043050,0.328659,-1.444650,-0.000008 +-1.459530,0.141714,-1.041030,0.328040,-1.441840,-0.000008 +-1.456680,0.141448,-1.039020,0.327421,-1.439030,-0.000008 +-1.453820,0.141183,-1.037000,0.326802,-1.436230,-0.000008 +-1.450960,0.140918,-1.034980,0.326183,-1.433420,-0.000008 +-1.448100,0.140652,-1.032970,0.325564,-1.430620,-0.000008 +-1.445250,0.140387,-1.030950,0.324945,-1.427810,-0.000008 +-1.442390,0.140121,-1.028930,0.324326,-1.425010,-0.000008 +-1.439530,0.139856,-1.026910,0.323707,-1.422200,-0.000008 +-1.436680,0.139590,-1.024900,0.323088,-1.419400,-0.000008 +-1.433820,0.139325,-1.022880,0.322469,-1.416590,-0.000008 +-1.430960,0.139060,-1.020860,0.321850,-1.413790,-0.000008 +-1.428100,0.138794,-1.018850,0.321231,-1.410980,-0.000008 +-1.425250,0.138529,-1.016830,0.320612,-1.408180,-0.000008 +-1.422390,0.138263,-1.014810,0.319992,-1.405370,-0.000008 +-1.419530,0.137998,-1.012800,0.319373,-1.402570,-0.000008 +-1.416680,0.137732,-1.010780,0.318754,-1.399760,-0.000008 +-1.413820,0.137467,-1.008760,0.318135,-1.396960,-0.000008 +-1.410960,0.137201,-1.006740,0.317516,-1.394150,-0.000008 +-1.408100,0.136936,-1.004730,0.316897,-1.391340,-0.000008 +-1.405250,0.136671,-1.002710,0.316278,-1.388540,-0.000008 +-1.402390,0.136405,-1.000690,0.315659,-1.385730,-0.000008 +-1.399530,0.136140,-0.998677,0.315040,-1.382930,-0.000008 +-1.396680,0.135874,-0.996660,0.314421,-1.380120,-0.000008 +-1.393820,0.135609,-0.994643,0.313802,-1.377320,-0.000008 +-1.390960,0.135343,-0.992626,0.313183,-1.374510,-0.000008 +-1.388100,0.135078,-0.990609,0.312564,-1.371710,-0.000008 +-1.385250,0.134813,-0.988592,0.311945,-1.368900,-0.000008 +-1.382390,0.134547,-0.986575,0.311325,-1.366100,-0.000008 +-1.379530,0.134282,-0.984558,0.310706,-1.363290,-0.000008 +-1.376670,0.134016,-0.982541,0.310087,-1.360490,-0.000008 +-1.373820,0.133751,-0.980524,0.309468,-1.357680,-0.000008 +-1.370960,0.133485,-0.978507,0.308849,-1.354880,-0.000008 +-1.368100,0.133220,-0.976490,0.308230,-1.352070,-0.000008 +-1.365250,0.132955,-0.974473,0.307611,-1.349260,-0.000008 +-1.362390,0.132689,-0.972456,0.306992,-1.346460,-0.000008 +-1.359530,0.132424,-0.970439,0.306373,-1.343650,-0.000008 +-1.356670,0.132158,-0.968422,0.305754,-1.340850,-0.000008 +-1.353820,0.131893,-0.966405,0.305135,-1.338040,-0.000008 +-1.350960,0.131627,-0.964388,0.304516,-1.335240,-0.000008 +-1.348100,0.131362,-0.962371,0.303897,-1.332430,-0.000008 +-1.345250,0.131097,-0.960354,0.303278,-1.329630,-0.000008 +-1.342390,0.130831,-0.958337,0.302658,-1.326820,-0.000008 +-1.339530,0.130566,-0.956320,0.302039,-1.324020,-0.000008 +-1.336670,0.130300,-0.954303,0.301420,-1.321210,-0.000008 +-1.333820,0.130035,-0.952286,0.300801,-1.318410,-0.000008 +-1.330960,0.129769,-0.950269,0.300182,-1.315600,-0.000008 +-1.328100,0.129504,-0.948252,0.299563,-1.312800,-0.000008 +-1.325250,0.129238,-0.946235,0.298944,-1.309990,-0.000008 +-1.322390,0.128973,-0.944218,0.298325,-1.307190,-0.000008 +-1.319530,0.128708,-0.942201,0.297706,-1.304380,-0.000008 +-1.316670,0.128442,-0.940184,0.297087,-1.301570,-0.000008 +-1.313820,0.128177,-0.938167,0.296468,-1.298770,-0.000008 +-1.310960,0.127911,-0.936150,0.295849,-1.295960,-0.000008 +-1.308100,0.127646,-0.934133,0.295230,-1.293160,-0.000008 +-1.305240,0.127380,-0.932116,0.294611,-1.290350,-0.000008 +-1.302390,0.127115,-0.930099,0.293992,-1.287550,-0.000008 +-1.299530,0.126850,-0.928081,0.293372,-1.284740,-0.000008 +-1.296670,0.126584,-0.926064,0.292753,-1.281940,-0.000008 +-1.293820,0.126319,-0.924047,0.292134,-1.279130,-0.000008 +-1.290960,0.126053,-0.922030,0.291515,-1.276330,-0.000008 +-1.288100,0.125788,-0.920013,0.290896,-1.273520,-0.000008 +-1.285240,0.125522,-0.917996,0.290277,-1.270720,-0.000008 +-1.282390,0.125257,-0.915979,0.289658,-1.267910,-0.000008 +-1.279530,0.124992,-0.913962,0.289039,-1.265110,-0.000008 +-1.276670,0.124726,-0.911945,0.288420,-1.262300,-0.000008 +-1.273820,0.124461,-0.909928,0.287801,-1.259500,-0.000008 +-1.270960,0.124195,-0.907911,0.287182,-1.256690,-0.000008 +-1.268100,0.123930,-0.905894,0.286563,-1.253880,-0.000008 +-1.265240,0.123664,-0.903877,0.285944,-1.251080,-0.000008 +-1.262390,0.123399,-0.901860,0.285325,-1.248270,-0.000008 +-1.259530,0.123134,-0.899843,0.284705,-1.245470,-0.000008 +-1.256670,0.122868,-0.897826,0.284086,-1.242660,-0.000008 +-1.253820,0.122603,-0.895809,0.283467,-1.239860,-0.000008 +-1.250960,0.122337,-0.893792,0.282848,-1.237050,-0.000008 +-1.248100,0.122072,-0.891775,0.282229,-1.234250,-0.000008 +-1.245240,0.121806,-0.889758,0.281610,-1.231440,-0.000008 +-1.242390,0.121541,-0.887741,0.280991,-1.228640,-0.000008 +-1.239530,0.121275,-0.885724,0.280372,-1.225830,-0.000008 +-1.236670,0.121010,-0.883707,0.279753,-1.223030,-0.000008 +-1.233810,0.120745,-0.881690,0.279134,-1.220220,-0.000008 +-1.230960,0.120479,-0.879673,0.278515,-1.217420,-0.000008 +-1.228100,0.120214,-0.877656,0.277896,-1.214610,-0.000008 +-1.225240,0.119948,-0.875639,0.277277,-1.211800,-0.000008 +-1.222390,0.119683,-0.873622,0.276658,-1.209000,-0.000008 +-1.219530,0.119417,-0.871605,0.276038,-1.206190,-0.000008 +-1.216670,0.119152,-0.869588,0.275419,-1.203390,-0.000008 +-1.213810,0.118887,-0.867571,0.274800,-1.200580,-0.000008 +-1.210960,0.118621,-0.865554,0.274181,-1.197780,-0.000008 +-1.208100,0.118356,-0.863537,0.273562,-1.194970,-0.000008 +-1.205240,0.118090,-0.861520,0.272943,-1.192170,-0.000008 +-1.202390,0.117825,-0.859503,0.272324,-1.189360,-0.000008 +-1.199530,0.117559,-0.857486,0.271705,-1.186560,-0.000008 +-1.196670,0.117294,-0.855469,0.271086,-1.183750,-0.000008 +-1.193810,0.117029,-0.853452,0.270467,-1.180950,-0.000008 +-1.190960,0.116763,-0.851435,0.269848,-1.178140,-0.000008 +-1.188100,0.116498,-0.849418,0.269229,-1.175340,-0.000008 +-1.185240,0.116232,-0.847401,0.268610,-1.172530,-0.000008 +-1.182390,0.115967,-0.845384,0.267991,-1.169730,-0.000008 +-1.179530,0.115701,-0.843367,0.267372,-1.166920,-0.000008 +-1.176670,0.115436,-0.841350,0.266752,-1.164110,-0.000008 +-1.173810,0.115171,-0.839333,0.266133,-1.161310,-0.000008 +-1.170960,0.114905,-0.837316,0.265514,-1.158500,-0.000008 +-1.168100,0.114640,-0.835299,0.264895,-1.155700,-0.000008 +-1.165240,0.114374,-0.833282,0.264276,-1.152890,-0.000008 +-1.162380,0.114109,-0.831265,0.263657,-1.150090,-0.000008 +-1.159530,0.113843,-0.829248,0.263038,-1.147280,-0.000008 +-1.156670,0.113578,-0.827231,0.262419,-1.144480,-0.000008 +-1.153810,0.113312,-0.825214,0.261800,-1.141670,-0.000008 +-1.150960,0.113047,-0.823197,0.261181,-1.138870,-0.000008 +-1.148100,0.112782,-0.821180,0.260562,-1.136060,-0.000008 +-1.145240,0.112516,-0.819163,0.259943,-1.133260,-0.000008 +-1.142380,0.112251,-0.817146,0.259324,-1.130450,-0.000008 +-1.139530,0.111985,-0.815129,0.258705,-1.127650,-0.000008 +-1.136670,0.111720,-0.813112,0.258085,-1.124840,-0.000008 +-1.133810,0.111454,-0.811095,0.257466,-1.122040,-0.000008 +-1.130960,0.111189,-0.809078,0.256847,-1.119230,-0.000008 +-1.128100,0.110924,-0.807061,0.256228,-1.116420,-0.000008 +-1.125240,0.110658,-0.805044,0.255609,-1.113620,-0.000008 +-1.122380,0.110393,-0.803027,0.254990,-1.110810,-0.000008 +-1.119530,0.110127,-0.801010,0.254371,-1.108010,-0.000008 +-1.116670,0.109862,-0.798993,0.253752,-1.105200,-0.000008 +-1.113810,0.109596,-0.796976,0.253133,-1.102400,-0.000008 +-1.110960,0.109331,-0.794959,0.252514,-1.099590,-0.000008 +-1.108100,0.109066,-0.792942,0.251895,-1.096790,-0.000008 +-1.105240,0.108800,-0.790925,0.251276,-1.093980,-0.000008 +-1.102380,0.108535,-0.788908,0.250657,-1.091180,-0.000008 +-1.099530,0.108269,-0.786891,0.250038,-1.088370,-0.000008 +-1.096670,0.108004,-0.784874,0.249419,-1.085570,-0.000008 +-1.093810,0.107738,-0.782857,0.248799,-1.082760,-0.000008 +-1.090950,0.107473,-0.780840,0.248180,-1.079960,-0.000008 +-1.088100,0.107207,-0.778823,0.247561,-1.077150,-0.000008 +-1.085240,0.106942,-0.776806,0.246942,-1.074340,-0.000008 +-1.082380,0.106677,-0.774789,0.246323,-1.071540,-0.000008 +-1.079530,0.106411,-0.772772,0.245704,-1.068730,-0.000008 +-1.076670,0.106146,-0.770755,0.245085,-1.065930,-0.000008 +-1.073810,0.105880,-0.768738,0.244466,-1.063120,-0.000008 +-1.070950,0.105615,-0.766721,0.243847,-1.060320,-0.000008 +-1.068100,0.105349,-0.764704,0.243228,-1.057510,-0.000008 +-1.065240,0.105084,-0.762687,0.242609,-1.054710,-0.000008 +-1.062380,0.104819,-0.760670,0.241990,-1.051900,-0.000008 +-1.059530,0.104553,-0.758653,0.241371,-1.049100,-0.000008 +-1.056670,0.104288,-0.756636,0.240752,-1.046290,-0.000008 +-1.053810,0.104022,-0.754619,0.240132,-1.043490,-0.000008 +-1.050950,0.103757,-0.752602,0.239513,-1.040680,-0.000008 +-1.048100,0.103491,-0.750585,0.238894,-1.037880,-0.000008 +-1.045240,0.103226,-0.748568,0.238275,-1.035070,-0.000008 +-1.042380,0.102961,-0.746551,0.237656,-1.032270,-0.000008 +-1.039530,0.102695,-0.744534,0.237037,-1.029460,-0.000008 +-1.036670,0.102430,-0.742517,0.236418,-1.026650,-0.000008 +-1.033810,0.102164,-0.740500,0.235799,-1.023850,-0.000008 +-1.030950,0.101899,-0.738483,0.235180,-1.021040,-0.000008 +-1.028100,0.101633,-0.736466,0.234561,-1.018240,-0.000008 +-1.025240,0.101368,-0.734449,0.233942,-1.015430,-0.000008 +-1.022380,0.101103,-0.732432,0.233323,-1.012630,-0.000008 +-1.019520,0.100837,-0.730415,0.232704,-1.009820,-0.000008 +-1.016670,0.100572,-0.728398,0.232085,-1.007020,-0.000008 +-1.013810,0.100306,-0.726381,0.231465,-1.004210,-0.000008 +-1.010950,0.100041,-0.724364,0.230846,-1.001410,-0.000008 +-1.008100,0.099775,-0.722347,0.230227,-0.998602,-0.000008 +-1.005240,0.099510,-0.720330,0.229608,-0.995796,-0.000008 +-1.002380,0.099244,-0.718313,0.228989,-0.992991,-0.000008 +-0.999525,0.098979,-0.716296,0.228370,-0.990186,-0.000008 +-0.996667,0.098714,-0.714279,0.227751,-0.987380,-0.000008 +-0.993810,0.098448,-0.712262,0.227132,-0.984575,-0.000008 +-0.990953,0.098183,-0.710245,0.226513,-0.981770,-0.000008 +-0.988096,0.097917,-0.708228,0.225894,-0.978964,-0.000008 +-0.985239,0.097652,-0.706211,0.225275,-0.976159,-0.000008 +-0.982381,0.097387,-0.704194,0.224656,-0.973354,-0.000008 +-0.979524,0.097121,-0.702177,0.224037,-0.970548,-0.000008 +-0.976667,0.096856,-0.700160,0.223418,-0.967743,-0.000008 +-0.973810,0.096590,-0.698143,0.222799,-0.964938,-0.000008 +-0.970953,0.096325,-0.696126,0.222179,-0.962133,-0.000008 +-0.968095,0.096059,-0.694109,0.221560,-0.959327,-0.000008 +-0.965238,0.095794,-0.692092,0.220941,-0.956522,-0.000008 +-0.962381,0.095528,-0.690075,0.220322,-0.953717,-0.000008 +-0.959524,0.095263,-0.688058,0.219703,-0.950911,-0.000008 +-0.956667,0.094998,-0.686041,0.219084,-0.948106,-0.000008 +-0.953809,0.094732,-0.684024,0.218465,-0.945301,-0.000008 +-0.950952,0.094467,-0.682007,0.217846,-0.942495,-0.000008 +-0.948095,0.094201,-0.679990,0.217227,-0.939690,-0.000008 +-0.945238,0.093936,-0.677973,0.216608,-0.936885,-0.000008 +-0.942381,0.093670,-0.675956,0.215989,-0.934079,-0.000008 +-0.939523,0.093405,-0.673939,0.215370,-0.931274,-0.000008 +-0.936666,0.093140,-0.671922,0.214751,-0.928469,-0.000008 +-0.933809,0.092874,-0.669905,0.214132,-0.925664,-0.000008 +-0.930952,0.092609,-0.667888,0.213512,-0.922858,-0.000008 +-0.928095,0.092343,-0.665871,0.212893,-0.920053,-0.000008 +-0.925237,0.092078,-0.663854,0.212274,-0.917248,-0.000008 +-0.922380,0.091812,-0.661837,0.211655,-0.914442,-0.000008 +-0.919523,0.091547,-0.659820,0.211036,-0.911637,-0.000008 +-0.916666,0.091282,-0.657803,0.210417,-0.908832,-0.000008 +-0.913809,0.091016,-0.655786,0.209798,-0.906026,-0.000008 +-0.910951,0.090751,-0.653769,0.209179,-0.903221,-0.000008 +-0.908094,0.090485,-0.651751,0.208560,-0.900416,-0.000008 +-0.905237,0.090220,-0.649734,0.207941,-0.897610,-0.000008 +-0.902380,0.089954,-0.647717,0.207322,-0.894805,-0.000008 +-0.899523,0.089689,-0.645700,0.206703,-0.892000,-0.000008 +-0.896665,0.089423,-0.643683,0.206084,-0.889195,-0.000008 +-0.893808,0.089158,-0.641666,0.205465,-0.886389,-0.000008 +-0.890951,0.088893,-0.639649,0.204845,-0.883584,-0.000008 +-0.888094,0.088627,-0.637632,0.204226,-0.880779,-0.000008 +-0.885237,0.088362,-0.635615,0.203607,-0.877973,-0.000008 +-0.882379,0.088096,-0.633598,0.202988,-0.875168,-0.000008 +-0.879522,0.087831,-0.631581,0.202369,-0.872363,-0.000008 +-0.876665,0.087565,-0.629564,0.201750,-0.869557,-0.000008 +-0.873808,0.087300,-0.627547,0.201131,-0.866752,-0.000008 +-0.870951,0.087035,-0.625530,0.200512,-0.863947,-0.000008 +-0.868093,0.086769,-0.623513,0.199893,-0.861141,-0.000008 +-0.865236,0.086504,-0.621496,0.199274,-0.858336,-0.000008 +-0.862379,0.086238,-0.619479,0.198655,-0.855531,-0.000008 +-0.859522,0.085973,-0.617462,0.198036,-0.852726,-0.000008 +-0.856665,0.085707,-0.615445,0.197417,-0.849920,-0.000008 +-0.853807,0.085442,-0.613428,0.196798,-0.847115,-0.000008 +-0.850950,0.085177,-0.611411,0.196179,-0.844310,-0.000008 +-0.848093,0.084911,-0.609394,0.195559,-0.841504,-0.000008 +-0.845236,0.084646,-0.607377,0.194940,-0.838699,-0.000008 +-0.842379,0.084380,-0.605360,0.194321,-0.835894,-0.000008 +-0.839521,0.084115,-0.603343,0.193702,-0.833088,-0.000008 +-0.836664,0.083849,-0.601326,0.193083,-0.830283,-0.000008 +-0.833807,0.083584,-0.599309,0.192464,-0.827478,-0.000008 +-0.830950,0.083319,-0.597292,0.191845,-0.824672,-0.000008 +-0.828093,0.083053,-0.595275,0.191226,-0.821867,-0.000008 +-0.825235,0.082788,-0.593258,0.190607,-0.819062,-0.000008 +-0.822378,0.082522,-0.591241,0.189988,-0.816257,-0.000008 +-0.819521,0.082257,-0.589224,0.189369,-0.813451,-0.000008 +-0.816664,0.081991,-0.587207,0.188750,-0.810646,-0.000008 +-0.813807,0.081726,-0.585190,0.188131,-0.807841,-0.000008 +-0.810949,0.081460,-0.583173,0.187512,-0.805035,-0.000008 +-0.808092,0.081195,-0.581156,0.186892,-0.802230,-0.000008 +-0.805235,0.080930,-0.579139,0.186273,-0.799425,-0.000008 +-0.802378,0.080664,-0.577122,0.185654,-0.796619,-0.000008 +-0.799521,0.080399,-0.575105,0.185035,-0.793814,-0.000008 +-0.796663,0.080133,-0.573088,0.184416,-0.791009,-0.000008 +-0.793806,0.079868,-0.571071,0.183797,-0.788203,-0.000008 +-0.790949,0.079602,-0.569054,0.183178,-0.785398,-0.000008 +-0.788092,0.079337,-0.567037,0.182559,-0.782593,-0.000008 +-0.785235,0.079072,-0.565020,0.181940,-0.779788,-0.000008 +-0.782377,0.078806,-0.563003,0.181321,-0.776982,-0.000008 +-0.779520,0.078541,-0.560986,0.180702,-0.774177,-0.000008 +-0.776663,0.078275,-0.558969,0.180083,-0.771372,-0.000008 +-0.773806,0.078010,-0.556952,0.179464,-0.768566,-0.000008 +-0.770949,0.077744,-0.554935,0.178845,-0.765761,-0.000008 +-0.768091,0.077479,-0.552918,0.178225,-0.762956,-0.000008 +-0.765234,0.077214,-0.550901,0.177606,-0.760150,-0.000008 +-0.762377,0.076948,-0.548884,0.176987,-0.757345,-0.000008 +-0.759520,0.076683,-0.546867,0.176368,-0.754540,-0.000008 +-0.756663,0.076417,-0.544850,0.175749,-0.751734,-0.000008 +-0.753805,0.076152,-0.542833,0.175130,-0.748929,-0.000008 +-0.750948,0.075886,-0.540816,0.174511,-0.746124,-0.000008 +-0.748091,0.075621,-0.538799,0.173892,-0.743319,-0.000008 +-0.745234,0.075356,-0.536782,0.173273,-0.740513,-0.000008 +-0.742377,0.075090,-0.534765,0.172654,-0.737708,-0.000008 +-0.739519,0.074825,-0.532748,0.172035,-0.734903,-0.000008 +-0.736662,0.074559,-0.530731,0.171416,-0.732097,-0.000008 +-0.733805,0.074294,-0.528714,0.170797,-0.729292,-0.000008 +-0.730948,0.074028,-0.526697,0.170178,-0.726487,-0.000008 +-0.728091,0.073763,-0.524680,0.169559,-0.723681,-0.000008 +-0.725233,0.073497,-0.522663,0.168939,-0.720876,-0.000008 +-0.722376,0.073232,-0.520646,0.168320,-0.718071,-0.000008 +-0.719519,0.072967,-0.518629,0.167701,-0.715265,-0.000008 +-0.716662,0.072701,-0.516612,0.167082,-0.712460,-0.000008 +-0.713805,0.072436,-0.514595,0.166463,-0.709655,-0.000008 +-0.710948,0.072170,-0.512578,0.165844,-0.706850,-0.000008 +-0.708090,0.071905,-0.510561,0.165225,-0.704044,-0.000008 +-0.705233,0.071639,-0.508544,0.164606,-0.701239,-0.000008 +-0.702376,0.071374,-0.506527,0.163987,-0.698434,-0.000008 +-0.699519,0.071109,-0.504510,0.163368,-0.695628,-0.000008 +-0.696662,0.070843,-0.502493,0.162749,-0.692823,-0.000008 +-0.693804,0.070578,-0.500476,0.162130,-0.690018,-0.000008 +-0.690947,0.070312,-0.498459,0.161511,-0.687212,-0.000008 +-0.688090,0.070047,-0.496442,0.160892,-0.684407,-0.000008 +-0.685233,0.069781,-0.494425,0.160272,-0.681602,-0.000008 +-0.682376,0.069516,-0.492408,0.159653,-0.678797,-0.000008 +-0.679518,0.069251,-0.490391,0.159034,-0.675991,-0.000008 +-0.676661,0.068985,-0.488374,0.158415,-0.673186,-0.000008 +-0.673804,0.068720,-0.486357,0.157796,-0.670381,-0.000008 +-0.670947,0.068454,-0.484340,0.157177,-0.667575,-0.000008 +-0.668090,0.068189,-0.482323,0.156558,-0.664770,-0.000008 +-0.665232,0.067923,-0.480306,0.155939,-0.661965,-0.000008 +-0.662375,0.067658,-0.478289,0.155320,-0.659159,-0.000008 +-0.659518,0.067392,-0.476272,0.154701,-0.656354,-0.000008 +-0.656661,0.067127,-0.474255,0.154082,-0.653549,-0.000008 +-0.653804,0.066862,-0.472238,0.153463,-0.650743,-0.000008 +-0.650946,0.066596,-0.470221,0.152844,-0.647938,-0.000008 +-0.648089,0.066331,-0.468204,0.152225,-0.645133,-0.000008 +-0.645232,0.066065,-0.466187,0.151606,-0.642328,-0.000008 +-0.642375,0.065800,-0.464170,0.150986,-0.639522,-0.000008 +-0.639518,0.065534,-0.462153,0.150367,-0.636717,-0.000008 +-0.636660,0.065269,-0.460136,0.149748,-0.633912,-0.000008 +-0.633803,0.065004,-0.458119,0.149129,-0.631106,-0.000008 +-0.630946,0.064738,-0.456102,0.148510,-0.628301,-0.000008 +-0.628089,0.064473,-0.454085,0.147891,-0.625496,-0.000008 +-0.625232,0.064207,-0.452068,0.147272,-0.622690,-0.000008 +-0.622374,0.063942,-0.450051,0.146653,-0.619885,-0.000008 +-0.619517,0.063676,-0.448034,0.146034,-0.617080,-0.000008 +-0.616660,0.063411,-0.446017,0.145415,-0.614274,-0.000008 +-0.613803,0.063145,-0.444000,0.144796,-0.611469,-0.000008 +-0.610946,0.062880,-0.441983,0.144177,-0.608664,-0.000008 +-0.608088,0.062615,-0.439966,0.143558,-0.605859,-0.000008 +-0.605231,0.062349,-0.437949,0.142939,-0.603053,-0.000008 +-0.602374,0.062084,-0.435932,0.142319,-0.600248,-0.000008 +-0.599517,0.061818,-0.433915,0.141700,-0.597443,-0.000008 +-0.596660,0.061553,-0.431898,0.141081,-0.594637,-0.000008 +-0.593802,0.061288,-0.429881,0.140462,-0.591832,-0.000008 +-0.590945,0.061022,-0.427864,0.139843,-0.589027,-0.000008 +-0.588088,0.060757,-0.425847,0.139224,-0.586221,-0.000008 +-0.585231,0.060491,-0.423830,0.138605,-0.583416,-0.000008 +-0.582374,0.060226,-0.421813,0.137986,-0.580611,-0.000008 +-0.579516,0.059960,-0.419796,0.137367,-0.577805,-0.000008 +-0.576659,0.059695,-0.417779,0.136748,-0.575000,-0.000008 +-0.573802,0.059430,-0.415762,0.136129,-0.572195,-0.000008 +-0.570945,0.059164,-0.413745,0.135510,-0.569390,-0.000008 +-0.568088,0.058899,-0.411728,0.134891,-0.566584,-0.000008 +-0.565230,0.058633,-0.409711,0.134272,-0.563779,-0.000008 +-0.562373,0.058368,-0.407694,0.133652,-0.560974,-0.000008 +-0.559516,0.058102,-0.405677,0.133033,-0.558168,-0.000008 +-0.556659,0.057837,-0.403660,0.132414,-0.555363,-0.000008 +-0.553802,0.057571,-0.401643,0.131795,-0.552558,-0.000008 +-0.550944,0.057306,-0.399626,0.131176,-0.549752,-0.000008 +-0.548087,0.057041,-0.397609,0.130557,-0.546947,-0.000008 +-0.545230,0.056775,-0.395592,0.129938,-0.544142,-0.000008 +-0.542373,0.056510,-0.393575,0.129319,-0.541336,-0.000008 +-0.539516,0.056244,-0.391558,0.128700,-0.538531,-0.000008 +-0.536658,0.055979,-0.389541,0.128081,-0.535726,-0.000008 +-0.533801,0.055713,-0.387524,0.127462,-0.532921,-0.000008 +-0.530944,0.055448,-0.385507,0.126843,-0.530115,-0.000008 +-0.528087,0.055183,-0.383490,0.126224,-0.527310,-0.000008 +-0.525230,0.054917,-0.381473,0.125605,-0.524505,-0.000008 +-0.522372,0.054652,-0.379456,0.124986,-0.521699,-0.000008 +-0.519515,0.054386,-0.377439,0.124366,-0.518894,-0.000008 +-0.516658,0.054121,-0.375421,0.123747,-0.516089,-0.000008 +-0.513801,0.053855,-0.373404,0.123128,-0.513283,-0.000008 +-0.510944,0.053590,-0.371387,0.122509,-0.510478,-0.000008 +-0.508086,0.053324,-0.369370,0.121890,-0.507673,-0.000008 +-0.505229,0.053059,-0.367353,0.121271,-0.504867,-0.000008 +-0.502372,0.052794,-0.365336,0.120652,-0.502062,-0.000008 +-0.499515,0.052528,-0.363319,0.120033,-0.499257,-0.000008 +-0.496658,0.052263,-0.361302,0.119414,-0.496452,-0.000008 +-0.493800,0.051997,-0.359285,0.118795,-0.493646,-0.000008 +-0.490943,0.051732,-0.357268,0.118176,-0.490841,-0.000008 +-0.488086,0.051466,-0.355251,0.117557,-0.488036,-0.000008 +-0.485229,0.051201,-0.353234,0.116938,-0.485230,-0.000008 +-0.482372,0.050936,-0.351217,0.116319,-0.482425,-0.000008 +-0.479514,0.050670,-0.349200,0.115699,-0.479620,-0.000008 +-0.476657,0.050405,-0.347183,0.115080,-0.476814,-0.000008 +-0.473800,0.050139,-0.345166,0.114461,-0.474009,-0.000008 +-0.470943,0.049874,-0.343149,0.113842,-0.471204,-0.000008 +-0.468086,0.049608,-0.341132,0.113223,-0.468398,-0.000008 +-0.465228,0.049343,-0.339115,0.112604,-0.465593,-0.000008 +-0.462371,0.049078,-0.337098,0.111985,-0.462788,-0.000008 +-0.459514,0.048812,-0.335081,0.111366,-0.459983,-0.000008 +-0.456657,0.048547,-0.333064,0.110747,-0.457177,-0.000008 +-0.453800,0.048281,-0.331047,0.110128,-0.454372,-0.000008 +-0.450942,0.048016,-0.329030,0.109509,-0.451567,-0.000008 +-0.448085,0.047750,-0.327013,0.108890,-0.448761,-0.000008 +-0.445228,0.047485,-0.324996,0.108271,-0.445956,-0.000008 +-0.442371,0.047219,-0.322979,0.107652,-0.443151,-0.000008 +-0.439514,0.046954,-0.320962,0.107032,-0.440345,-0.000008 +-0.436656,0.046689,-0.318945,0.106413,-0.437540,-0.000008 +-0.433799,0.046423,-0.316928,0.105794,-0.434735,-0.000008 +-0.430942,0.046158,-0.314911,0.105175,-0.431929,-0.000008 +-0.428085,0.045892,-0.312894,0.104556,-0.429124,-0.000008 +-0.425228,0.045627,-0.310877,0.103937,-0.426319,-0.000008 +-0.422370,0.045361,-0.308860,0.103318,-0.423514,-0.000008 +-0.419513,0.045096,-0.306843,0.102699,-0.420708,-0.000008 +-0.416656,0.044831,-0.304826,0.102080,-0.417903,-0.000008 +-0.413799,0.044565,-0.302809,0.101461,-0.415098,-0.000008 +-0.410942,0.044300,-0.300792,0.100842,-0.412292,-0.000008 +-0.408084,0.044034,-0.298775,0.100223,-0.409487,-0.000008 +-0.405227,0.043769,-0.296758,0.099604,-0.406682,-0.000008 +-0.402370,0.043503,-0.294741,0.098985,-0.403876,-0.000008 +-0.399513,0.043238,-0.292724,0.098365,-0.401071,-0.000008 +-0.396656,0.042973,-0.290707,0.097746,-0.398266,-0.000008 +-0.393798,0.042707,-0.288690,0.097127,-0.395460,-0.000008 +-0.390941,0.042442,-0.286673,0.096508,-0.392655,-0.000008 +-0.388084,0.042176,-0.284656,0.095889,-0.389850,-0.000008 +-0.385227,0.041911,-0.282639,0.095270,-0.387045,-0.000008 +-0.382370,0.041645,-0.280622,0.094651,-0.384239,-0.000008 +-0.379513,0.041380,-0.278605,0.094032,-0.381434,-0.000008 +-0.376655,0.041114,-0.276588,0.093413,-0.378629,-0.000008 +-0.373798,0.040849,-0.274571,0.092794,-0.375823,-0.000008 +-0.370941,0.040584,-0.272554,0.092175,-0.373018,-0.000008 +-0.368084,0.040318,-0.270537,0.091556,-0.370213,-0.000008 +-0.365227,0.040053,-0.268520,0.090937,-0.367407,-0.000008 +-0.362369,0.039787,-0.266503,0.090318,-0.364602,-0.000008 +-0.359512,0.039522,-0.264486,0.089699,-0.361797,-0.000008 +-0.356655,0.039257,-0.262469,0.089080,-0.358991,-0.000008 +-0.353798,0.038991,-0.260452,0.088460,-0.356186,-0.000008 +-0.350941,0.038726,-0.258435,0.087841,-0.353381,-0.000008 +-0.348083,0.038460,-0.256418,0.087222,-0.350576,-0.000008 +-0.345226,0.038195,-0.254401,0.086603,-0.347770,-0.000008 +-0.342369,0.037929,-0.252384,0.085984,-0.344965,-0.000008 +-0.339512,0.037664,-0.250367,0.085365,-0.342160,-0.000008 +-0.336655,0.037399,-0.248350,0.084746,-0.339354,-0.000008 +-0.333797,0.037133,-0.246333,0.084127,-0.336549,-0.000008 +-0.330940,0.036868,-0.244316,0.083508,-0.333744,-0.000008 +-0.328083,0.036602,-0.242299,0.082889,-0.330938,-0.000008 +-0.325226,0.036337,-0.240282,0.082270,-0.328133,-0.000008 +-0.322369,0.036071,-0.238265,0.081651,-0.325328,-0.000008 +-0.319511,0.035806,-0.236248,0.081032,-0.322523,-0.000008 +-0.316654,0.035540,-0.234231,0.080412,-0.319717,-0.000008 +-0.313797,0.035275,-0.232214,0.079793,-0.316912,-0.000008 +-0.310940,0.035010,-0.230197,0.079174,-0.314107,-0.000008 +-0.308083,0.034744,-0.228180,0.078555,-0.311301,-0.000008 +-0.305225,0.034479,-0.226163,0.077936,-0.308496,-0.000008 +-0.302368,0.034213,-0.224146,0.077317,-0.305691,-0.000008 +-0.299511,0.033948,-0.222129,0.076698,-0.302885,-0.000008 +-0.296654,0.033682,-0.220112,0.076079,-0.300080,-0.000008 +-0.293797,0.033417,-0.218095,0.075460,-0.297275,-0.000008 +-0.290939,0.033152,-0.216078,0.074841,-0.294469,-0.000008 +-0.288082,0.032886,-0.214061,0.074222,-0.291664,-0.000008 +-0.285225,0.032621,-0.212044,0.073603,-0.288859,-0.000008 +-0.282368,0.032355,-0.210027,0.072984,-0.286054,-0.000008 +-0.279511,0.032090,-0.208010,0.072365,-0.283248,-0.000008 +-0.276653,0.031824,-0.205993,0.071746,-0.280443,-0.000008 +-0.273796,0.031559,-0.203976,0.071126,-0.277638,-0.000008 +-0.270939,0.031294,-0.201959,0.070507,-0.274832,-0.000008 +-0.268082,0.031028,-0.199942,0.069888,-0.272027,-0.000008 +-0.265225,0.030763,-0.197925,0.069269,-0.269222,-0.000008 +-0.262367,0.030497,-0.195908,0.068650,-0.266416,-0.000008 +-0.259510,0.030232,-0.193891,0.068031,-0.263611,-0.000008 +-0.256653,0.029966,-0.191874,0.067412,-0.260806,-0.000008 +-0.253796,0.029701,-0.189857,0.066793,-0.258000,-0.000008 +-0.250939,0.029436,-0.187840,0.066174,-0.255195,-0.000008 +-0.248081,0.029170,-0.185823,0.065555,-0.252390,-0.000008 +-0.245224,0.028905,-0.183806,0.064936,-0.249585,-0.000008 +-0.242367,0.028639,-0.181789,0.064317,-0.246779,-0.000008 +-0.239510,0.028374,-0.179772,0.063698,-0.243974,-0.000008 +-0.236653,0.028108,-0.177755,0.063079,-0.241169,-0.000008 +-0.233795,0.027843,-0.175738,0.062460,-0.238363,-0.000008 +-0.230938,0.027577,-0.173721,0.061840,-0.235558,-0.000008 +-0.228081,0.027312,-0.171704,0.061221,-0.232753,-0.000008 +-0.225224,0.027047,-0.169687,0.060602,-0.229947,-0.000008 +-0.222367,0.026781,-0.167670,0.059983,-0.227142,-0.000008 +-0.219509,0.026516,-0.165653,0.059364,-0.224337,-0.000008 +-0.216652,0.026250,-0.163636,0.058745,-0.221531,-0.000008 +-0.213795,0.025985,-0.161619,0.058126,-0.218726,-0.000008 +-0.210938,0.025719,-0.159602,0.057507,-0.215921,-0.000008 +-0.208081,0.025454,-0.157585,0.056888,-0.213116,-0.000008 +-0.205223,0.025188,-0.155568,0.056269,-0.210310,-0.000008 +-0.202366,0.024923,-0.153551,0.055650,-0.207505,-0.000008 +-0.199509,0.024658,-0.151534,0.055031,-0.204700,-0.000008 +-0.196652,0.024392,-0.149517,0.054412,-0.201894,-0.000008 +-0.193795,0.024127,-0.147500,0.053793,-0.199089,-0.000008 +-0.190937,0.023861,-0.145483,0.053173,-0.196284,-0.000008 +-0.188080,0.023596,-0.143466,0.052554,-0.193478,-0.000008 +-0.185223,0.023331,-0.141449,0.051935,-0.190673,-0.000008 +-0.182366,0.023065,-0.139432,0.051316,-0.187868,-0.000008 +-0.179509,0.022800,-0.137415,0.050697,-0.185062,-0.000008 +-0.176651,0.022534,-0.135398,0.050078,-0.182257,-0.000008 +-0.173794,0.022269,-0.133381,0.049459,-0.179452,-0.000008 +-0.170937,0.022003,-0.131364,0.048840,-0.176647,-0.000008 +-0.168080,0.021738,-0.129347,0.048221,-0.173841,-0.000008 +-0.165223,0.021472,-0.127330,0.047602,-0.171036,-0.000008 +-0.162365,0.021207,-0.125313,0.046983,-0.168231,-0.000008 +-0.159508,0.020942,-0.123296,0.046364,-0.165425,-0.000008 +-0.156651,0.020676,-0.121279,0.045745,-0.162620,-0.000008 +-0.153794,0.020411,-0.119262,0.045125,-0.159815,-0.000008 +-0.150937,0.020145,-0.117245,0.044506,-0.157009,-0.000008 +-0.148079,0.019880,-0.115228,0.043887,-0.154204,-0.000008 +-0.145222,0.019614,-0.113211,0.043268,-0.151399,-0.000008 +-0.142365,0.019349,-0.111194,0.042649,-0.148593,-0.000008 +-0.139508,0.019084,-0.109177,0.042030,-0.145788,-0.000008 +-0.136651,0.018818,-0.107160,0.041411,-0.142983,-0.000008 +-0.133793,0.018553,-0.105143,0.040792,-0.140178,-0.000008 +-0.130936,0.018287,-0.103126,0.040173,-0.137372,-0.000008 +-0.128079,0.018022,-0.101109,0.039554,-0.134567,-0.000008 +-0.125222,0.017756,-0.099091,0.038935,-0.131762,-0.000008 +-0.122365,0.017491,-0.097074,0.038316,-0.128956,-0.000008 +-0.119507,0.017226,-0.095058,0.037697,-0.126151,-0.000008 +-0.116650,0.016960,-0.093040,0.037078,-0.123346,-0.000008 +-0.113793,0.016695,-0.091023,0.036459,-0.120540,-0.000008 +-0.110936,0.016429,-0.089007,0.035840,-0.117735,-0.000008 +-0.108079,0.016164,-0.086989,0.035220,-0.114930,-0.000008 +-0.105221,0.015898,-0.084972,0.034601,-0.112124,-0.000008 +-0.102364,0.015633,-0.082955,0.033982,-0.109319,-0.000008 +-0.099507,0.015367,-0.080938,0.033363,-0.106514,-0.000008 +-0.096650,0.015102,-0.078921,0.032744,-0.103709,-0.000008 +-0.093793,0.014837,-0.076904,0.032125,-0.100903,-0.000008 +-0.090937,0.014571,-0.074887,0.031506,-0.098098,-0.000008 +-0.088084,0.014306,-0.072870,0.030887,-0.095293,-0.000008 +-0.085237,0.014040,-0.070853,0.030268,-0.092487,-0.000008 +-0.082399,0.013775,-0.068836,0.029649,-0.089682,-0.000008 +-0.079573,0.013509,-0.066819,0.029030,-0.086877,-0.000008 +-0.076760,0.013244,-0.064802,0.028411,-0.084071,-0.000008 +-0.073964,0.012979,-0.062785,0.027792,-0.081267,-0.000008 +-0.071187,0.012713,-0.060768,0.027172,-0.078465,-0.000008 +-0.068431,0.012448,-0.058751,0.026553,-0.075670,-0.000008 +-0.065700,0.012182,-0.056734,0.025934,-0.072885,-0.000008 +-0.062996,0.011917,-0.054718,0.025315,-0.070112,-0.000008 +-0.060321,0.011651,-0.052703,0.024696,-0.067355,-0.000008 +-0.057678,0.011386,-0.050692,0.024077,-0.064617,-0.000008 +-0.055070,0.011121,-0.048689,0.023458,-0.061901,-0.000008 +-0.052499,0.010855,-0.046696,0.022839,-0.059209,-0.000008 +-0.049968,0.010590,-0.044714,0.022220,-0.056547,-0.000008 +-0.047479,0.010324,-0.042748,0.021601,-0.053915,-0.000008 +-0.045035,0.010059,-0.040799,0.020982,-0.051318,-0.000008 +-0.042639,0.009793,-0.038871,0.020363,-0.048758,-0.000008 +-0.040294,0.009528,-0.036965,0.019744,-0.046239,-0.000008 +-0.038001,0.009263,-0.035084,0.019125,-0.043763,-0.000008 +-0.035763,0.008997,-0.033231,0.018506,-0.041335,-0.000008 +-0.033584,0.008732,-0.031409,0.017887,-0.038956,-0.000008 +-0.031465,0.008466,-0.029620,0.017267,-0.036631,-0.000008 +-0.029409,0.008201,-0.027866,0.016648,-0.034362,-0.000008 +-0.027419,0.007935,-0.026151,0.016029,-0.032152,-0.000008 +-0.025498,0.007670,-0.024477,0.015410,-0.030004,-0.000008 +-0.023647,0.007404,-0.022846,0.014791,-0.027922,-0.000008 +-0.021871,0.007139,-0.021261,0.014172,-0.025909,-0.000008 +-0.020170,0.006874,-0.019725,0.013553,-0.023967,-0.000008 +-0.018548,0.006608,-0.018240,0.012934,-0.022100,-0.000008 +-0.017007,0.006343,-0.016809,0.012315,-0.020311,-0.000008 +-0.015551,0.006077,-0.015435,0.011696,-0.018603,-0.000008 +-0.014180,0.005812,-0.014119,0.011077,-0.016980,-0.000008 +-0.012892,0.005546,-0.012865,0.010458,-0.015444,-0.000008 +-0.011684,0.005281,-0.011676,0.009839,-0.013998,-0.000008 +-0.010554,0.005016,-0.010553,0.009219,-0.012644,-0.000008 +-0.009499,0.004750,-0.009500,0.008600,-0.011381,-0.000008 +-0.008517,0.004485,-0.008518,0.007982,-0.010204,-0.000008 +-0.007606,0.004219,-0.007606,0.007368,-0.009112,-0.000008 +-0.006761,0.003954,-0.006762,0.006760,-0.008101,-0.000008 +-0.005982,0.003688,-0.005982,0.006163,-0.007167,-0.000008 +-0.005265,0.003423,-0.005265,0.005579,-0.006308,-0.000008 +-0.004608,0.003158,-0.004608,0.005010,-0.005520,-0.000008 +-0.004008,0.002892,-0.004008,0.004462,-0.004801,-0.000008 +-0.003462,0.002627,-0.003462,0.003935,-0.004148,-0.000008 +-0.002968,0.002362,-0.002968,0.003435,-0.003556,-0.000008 +-0.002524,0.002101,-0.002524,0.002962,-0.003024,-0.000008 +-0.002126,0.001845,-0.002126,0.002522,-0.002547,-0.000008 +-0.001773,0.001598,-0.001773,0.002117,-0.002124,-0.000008 +-0.001461,0.001361,-0.001461,0.001749,-0.001750,-0.000008 +-0.001188,0.001138,-0.001188,0.001423,-0.001423,-0.000008 +-0.000951,0.000932,-0.000951,0.001139,-0.001139,-0.000008 +-0.000748,0.000744,-0.000748,0.000896,-0.000896,-0.000008 +-0.000576,0.000577,-0.000576,0.000690,-0.000690,-0.000008 +-0.000433,0.000435,-0.000433,0.000519,-0.000519,-0.000008 +-0.000316,0.000317,-0.000316,0.000378,-0.000378,-0.000008 +-0.000222,0.000223,-0.000222,0.000266,-0.000266,-0.000008 +-0.000149,0.000150,-0.000149,0.000178,-0.000178,-0.000008 +-0.000094,0.000095,-0.000094,0.000112,-0.000112,-0.000008 +-0.000054,0.000056,-0.000054,0.000065,-0.000065,-0.000008 +-0.000028,0.000030,-0.000028,0.000033,-0.000034,-0.000008 +-0.000012,0.000013,-0.000012,0.000014,-0.000014,-0.000008 +-0.000004,0.000005,-0.000004,0.000004,-0.000004,-0.000008 +-0.000001,0.000002,-0.000001,0.000001,-0.000001,-0.000008 +-0.000000,0.000002,-0.000000,0.000000,-0.000000,-0.000008 +-0.000000,0.000002,-0.000000,0.000000,-0.000000,-0.000008 +0.000000,-0.000000,0.000000,-0.000001,0.000001,0.000000 +0.000003,-0.000003,0.000003,-0.000004,0.000004,0.000000 +0.000012,-0.000012,0.000012,-0.000014,0.000014,0.000000 +0.000028,-0.000028,0.000028,-0.000033,0.000033,0.000000 +0.000054,-0.000054,0.000054,-0.000065,0.000065,0.000000 +0.000093,-0.000093,0.000093,-0.000112,0.000112,0.000000 +0.000148,-0.000148,0.000148,-0.000178,0.000178,0.000000 +0.000222,-0.000222,0.000222,-0.000265,0.000265,0.000000 +0.000315,-0.000315,0.000315,-0.000378,0.000378,0.000000 +0.000433,-0.000432,0.000433,-0.000518,0.000518,0.000000 +0.000576,-0.000571,0.000576,-0.000690,0.000690,0.000000 +0.000748,-0.000729,0.000748,-0.000896,0.000896,0.000000 +0.000951,-0.000904,0.000951,-0.001139,0.001139,0.000000 +0.001187,-0.001093,0.001187,-0.001421,0.001423,0.000000 +0.001460,-0.001293,0.001460,-0.001739,0.001750,0.000000 +0.001772,-0.001503,0.001772,-0.002091,0.002123,0.000000 +0.002126,-0.001718,0.002126,-0.002472,0.002547,0.000000 +0.002524,-0.001938,0.002524,-0.002881,0.003023,0.000000 +0.002968,-0.002158,0.002968,-0.003314,0.003556,0.000000 +0.003462,-0.002379,0.003462,-0.003767,0.004147,0.000000 +0.004007,-0.002599,0.004007,-0.004238,0.004801,0.000000 +0.004608,-0.002820,0.004608,-0.004723,0.005520,0.000000 +0.005265,-0.003041,0.005265,-0.005220,0.006308,0.000000 +0.005982,-0.003261,0.005982,-0.005726,0.007167,0.000000 +0.006761,-0.003482,0.006761,-0.006236,0.008100,0.000000 +0.007606,-0.003703,0.007605,-0.006749,0.009112,0.000000 +0.008517,-0.003923,0.008512,-0.007262,0.010204,0.000000 +0.009499,-0.004144,0.009480,-0.007775,0.011380,0.000000 +0.010554,-0.004364,0.010507,-0.008288,0.012637,0.000000 +0.011684,-0.004585,0.011589,-0.008801,0.013973,0.000000 +0.012890,-0.004806,0.012724,-0.009313,0.015384,0.000000 +0.014172,-0.005026,0.013909,-0.009826,0.016868,0.000000 +0.015526,-0.005247,0.015142,-0.010339,0.018421,0.000000 +0.016949,-0.005468,0.016421,-0.010852,0.020041,0.000000 +0.018440,-0.005688,0.017742,-0.011365,0.021723,0.000000 +0.019996,-0.005909,0.019103,-0.011878,0.023465,0.000000 +0.021613,-0.006130,0.020501,-0.012391,0.025265,0.000000 +0.023290,-0.006350,0.021935,-0.012904,0.027118,0.000000 +0.025023,-0.006571,0.023401,-0.013416,0.029021,0.000000 +0.026811,-0.006791,0.024896,-0.013929,0.030972,0.000000 +0.028650,-0.007012,0.026419,-0.014442,0.032968,0.000000 +0.030538,-0.007233,0.027965,-0.014955,0.035004,0.000000 +0.032473,-0.007453,0.029534,-0.015468,0.037079,0.000000 +0.034451,-0.007674,0.031122,-0.015981,0.039189,0.000000 +0.036470,-0.007895,0.032727,-0.016494,0.041331,0.000000 +0.038528,-0.008115,0.034346,-0.017007,0.043502,0.000000 +0.040622,-0.008336,0.035976,-0.017519,0.045699,0.000000 +0.042750,-0.008556,0.037615,-0.018032,0.047918,0.000000 +0.044908,-0.008777,0.039261,-0.018545,0.050157,0.000000 +0.047094,-0.008998,0.040910,-0.019058,0.052412,0.000000 +0.049306,-0.009218,0.042561,-0.019571,0.054680,0.000000 +0.051541,-0.009439,0.044211,-0.020084,0.056959,0.000000 +0.053797,-0.009660,0.045861,-0.020597,0.059244,0.000000 +0.056070,-0.009880,0.047512,-0.021110,0.061534,0.000000 +0.058358,-0.010101,0.049162,-0.021622,0.063825,0.000000 +0.060659,-0.010322,0.050813,-0.022135,0.066115,0.000000 +0.062970,-0.010542,0.052463,-0.022648,0.068406,0.000000 +0.065289,-0.010763,0.054114,-0.023161,0.070697,0.000000 +0.067612,-0.010983,0.055764,-0.023674,0.072988,0.000000 +0.069938,-0.011204,0.057415,-0.024187,0.075278,0.000000 +0.072264,-0.011425,0.059065,-0.024700,0.077569,0.000000 +0.074590,-0.011645,0.060715,-0.025212,0.079860,0.000000 +0.076915,-0.011866,0.062366,-0.025725,0.082150,0.000000 +0.079241,-0.012087,0.064016,-0.026238,0.084441,0.000000 +0.081567,-0.012307,0.065667,-0.026751,0.086732,0.000000 +0.083893,-0.012528,0.067317,-0.027264,0.089023,0.000000 +0.086219,-0.012748,0.068968,-0.027777,0.091313,0.000000 +0.088545,-0.012969,0.070618,-0.028290,0.093604,0.000000 +0.090871,-0.013190,0.072269,-0.028803,0.095895,0.000000 +0.093196,-0.013410,0.073919,-0.029316,0.098185,0.000000 +0.095522,-0.013631,0.075569,-0.029828,0.100476,0.000000 +0.097848,-0.013852,0.077220,-0.030341,0.102767,0.000000 +0.100174,-0.014072,0.078870,-0.030854,0.105057,0.000000 +0.102500,-0.014293,0.080521,-0.031367,0.107348,0.000000 +0.104826,-0.014514,0.082171,-0.031880,0.109639,0.000000 +0.107151,-0.014734,0.083822,-0.032393,0.111930,0.000000 +0.109477,-0.014955,0.085472,-0.032906,0.114220,0.000000 +0.111803,-0.015175,0.087123,-0.033418,0.116511,0.000000 +0.114129,-0.015396,0.088773,-0.033931,0.118802,0.000000 +0.116455,-0.015617,0.090423,-0.034444,0.121092,0.000000 +0.118781,-0.015837,0.092074,-0.034957,0.123383,0.000000 +0.121106,-0.016058,0.093724,-0.035470,0.125674,0.000000 +0.123432,-0.016279,0.095375,-0.035983,0.127965,0.000000 +0.125758,-0.016499,0.097025,-0.036496,0.130255,0.000000 +0.128084,-0.016720,0.098676,-0.037009,0.132546,0.000000 +0.130410,-0.016940,0.100326,-0.037521,0.134837,0.000000 +0.132736,-0.017161,0.101977,-0.038034,0.137127,0.000000 +0.135061,-0.017382,0.103627,-0.038547,0.139418,0.000000 +0.137387,-0.017602,0.105277,-0.039060,0.141709,0.000000 +0.139713,-0.017823,0.106928,-0.039573,0.144000,0.000000 +0.142039,-0.018044,0.108578,-0.040086,0.146290,0.000000 +0.144365,-0.018264,0.110229,-0.040599,0.148581,0.000000 +0.146691,-0.018485,0.111879,-0.041112,0.150872,0.000000 +0.149016,-0.018705,0.113530,-0.041625,0.153162,0.000000 +0.151342,-0.018926,0.115180,-0.042137,0.155453,0.000000 +0.153668,-0.019147,0.116831,-0.042650,0.157744,0.000000 +0.155994,-0.019367,0.118481,-0.043163,0.160034,0.000000 +0.158320,-0.019588,0.120131,-0.043676,0.162325,0.000000 +0.160646,-0.019809,0.121782,-0.044189,0.164616,0.000000 +0.162972,-0.020029,0.123432,-0.044702,0.166907,0.000000 +0.165297,-0.020250,0.125083,-0.045215,0.169197,0.000000 +0.167623,-0.020470,0.126733,-0.045727,0.171488,0.000000 +0.169949,-0.020691,0.128384,-0.046240,0.173779,0.000000 +0.172275,-0.020912,0.130034,-0.046753,0.176069,0.000000 +0.174601,-0.021132,0.131684,-0.047266,0.178360,0.000000 +0.176927,-0.021353,0.133335,-0.047779,0.180651,0.000000 +0.179252,-0.021574,0.134985,-0.048292,0.182942,0.000000 +0.181578,-0.021794,0.136636,-0.048805,0.185232,0.000000 +0.183904,-0.022015,0.138286,-0.049318,0.187523,0.000000 +0.186230,-0.022235,0.139937,-0.049831,0.189814,0.000000 +0.188556,-0.022456,0.141587,-0.050343,0.192104,0.000000 +0.190882,-0.022677,0.143238,-0.050856,0.194395,0.000000 +0.193207,-0.022897,0.144888,-0.051369,0.196686,0.000000 +0.195533,-0.023118,0.146538,-0.051882,0.198976,0.000000 +0.197859,-0.023339,0.148189,-0.052395,0.201267,0.000000 +0.200185,-0.023559,0.149839,-0.052908,0.203558,0.000000 +0.202511,-0.023780,0.151490,-0.053421,0.205849,0.000000 +0.204837,-0.024001,0.153140,-0.053934,0.208139,0.000000 +0.207163,-0.024221,0.154791,-0.054446,0.210430,0.000000 +0.209488,-0.024442,0.156441,-0.054959,0.212721,0.000000 +0.211814,-0.024663,0.158092,-0.055472,0.215011,0.000000 +0.214140,-0.024883,0.159742,-0.055985,0.217302,0.000000 +0.216466,-0.025104,0.161392,-0.056498,0.219593,0.000000 +0.218792,-0.025324,0.163043,-0.057011,0.221884,0.000000 +0.221118,-0.025545,0.164693,-0.057524,0.224174,0.000000 +0.223443,-0.025766,0.166344,-0.058036,0.226465,0.000000 +0.225769,-0.025986,0.167994,-0.058549,0.228756,0.000000 +0.228095,-0.026207,0.169645,-0.059062,0.231046,0.000000 +0.230421,-0.026428,0.171295,-0.059575,0.233337,0.000000 +0.232747,-0.026648,0.172946,-0.060088,0.235628,0.000000 +0.235073,-0.026869,0.174596,-0.060601,0.237919,0.000000 +0.237398,-0.027089,0.176246,-0.061114,0.240209,0.000000 +0.239724,-0.027310,0.177897,-0.061627,0.242500,0.000000 +0.242050,-0.027531,0.179547,-0.062140,0.244791,0.000000 +0.244376,-0.027751,0.181198,-0.062652,0.247081,0.000000 +0.246702,-0.027972,0.182848,-0.063165,0.249372,0.000000 +0.249028,-0.028193,0.184499,-0.063678,0.251663,0.000000 +0.251354,-0.028413,0.186149,-0.064191,0.253953,0.000000 +0.253679,-0.028634,0.187800,-0.064704,0.256244,0.000000 +0.256005,-0.028855,0.189450,-0.065217,0.258535,0.000000 +0.258331,-0.029075,0.191100,-0.065730,0.260826,0.000000 +0.260657,-0.029296,0.192751,-0.066242,0.263116,0.000000 +0.262983,-0.029516,0.194401,-0.066755,0.265407,0.000000 +0.265309,-0.029737,0.196052,-0.067268,0.267698,0.000000 +0.267634,-0.029958,0.197702,-0.067781,0.269988,0.000000 +0.269960,-0.030178,0.199353,-0.068294,0.272279,0.000000 +0.272286,-0.030399,0.201003,-0.068807,0.274570,0.000000 +0.274612,-0.030620,0.202654,-0.069320,0.276861,0.000000 +0.276938,-0.030840,0.204304,-0.069833,0.279151,0.000000 +0.279264,-0.031061,0.205954,-0.070346,0.281442,0.000000 +0.281589,-0.031281,0.207605,-0.070858,0.283733,0.000000 +0.283915,-0.031502,0.209255,-0.071371,0.286023,0.000000 +0.286241,-0.031723,0.210906,-0.071884,0.288314,0.000000 +0.288567,-0.031943,0.212556,-0.072397,0.290605,0.000000 +0.290893,-0.032164,0.214207,-0.072910,0.292896,0.000000 +0.293219,-0.032384,0.215857,-0.073423,0.295186,0.000000 +0.295545,-0.032605,0.217508,-0.073936,0.297477,0.000000 +0.297870,-0.032826,0.219158,-0.074448,0.299768,0.000000 +0.300196,-0.033046,0.220808,-0.074961,0.302058,0.000000 +0.302522,-0.033267,0.222459,-0.075474,0.304349,0.000000 +0.304848,-0.033488,0.224109,-0.075987,0.306640,0.000000 +0.307174,-0.033708,0.225760,-0.076500,0.308930,0.000000 +0.309500,-0.033929,0.227410,-0.077013,0.311221,0.000000 +0.311825,-0.034150,0.229061,-0.077526,0.313512,0.000000 +0.314151,-0.034370,0.230711,-0.078039,0.315803,0.000000 +0.316477,-0.034591,0.232361,-0.078551,0.318093,0.000000 +0.318803,-0.034812,0.234012,-0.079064,0.320384,0.000000 +0.321129,-0.035032,0.235662,-0.079577,0.322675,0.000000 +0.323455,-0.035253,0.237313,-0.080090,0.324965,0.000000 +0.325780,-0.035473,0.238963,-0.080603,0.327256,0.000000 +0.328106,-0.035694,0.240614,-0.081116,0.329547,0.000000 +0.330432,-0.035915,0.242264,-0.081629,0.331838,0.000000 +0.332758,-0.036135,0.243915,-0.082142,0.334128,0.000000 +0.335084,-0.036356,0.245565,-0.082654,0.336419,0.000000 +0.337410,-0.036576,0.247215,-0.083167,0.338710,0.000000 +0.339736,-0.036797,0.248866,-0.083680,0.341000,0.000000 +0.342061,-0.037018,0.250516,-0.084193,0.343291,0.000000 +0.344387,-0.037238,0.252167,-0.084706,0.345582,0.000000 +0.346713,-0.037459,0.253817,-0.085219,0.347872,0.000000 +0.349039,-0.037680,0.255468,-0.085732,0.350163,0.000000 +0.351365,-0.037900,0.257118,-0.086245,0.352454,0.000000 +0.353691,-0.038121,0.258769,-0.086757,0.354745,0.000000 +0.356016,-0.038342,0.260419,-0.087270,0.357035,0.000000 +0.358342,-0.038562,0.262069,-0.087783,0.359326,0.000000 +0.360668,-0.038783,0.263720,-0.088296,0.361617,0.000000 +0.362994,-0.039004,0.265370,-0.088809,0.363907,0.000000 +0.365320,-0.039224,0.267021,-0.089322,0.366198,0.000000 +0.367646,-0.039445,0.268671,-0.089835,0.368489,0.000000 +0.369971,-0.039665,0.270322,-0.090348,0.370780,0.000000 +0.372297,-0.039886,0.271972,-0.090860,0.373070,0.000000 +0.374623,-0.040107,0.273623,-0.091373,0.375361,0.000000 +0.376949,-0.040327,0.275273,-0.091886,0.377652,0.000000 +0.379275,-0.040548,0.276923,-0.092399,0.379942,0.000000 +0.381601,-0.040768,0.278574,-0.092912,0.382233,0.000000 +0.383926,-0.040989,0.280224,-0.093425,0.384524,0.000000 +0.386252,-0.041210,0.281875,-0.093938,0.386815,0.000000 +0.388578,-0.041430,0.283525,-0.094451,0.389105,0.000000 +0.390904,-0.041651,0.285176,-0.094963,0.391396,0.000000 +0.393230,-0.041872,0.286826,-0.095476,0.393687,0.000000 +0.395556,-0.042092,0.288477,-0.095989,0.395977,0.000000 +0.397882,-0.042313,0.290127,-0.096502,0.398268,0.000000 +0.400207,-0.042534,0.291777,-0.097015,0.400559,0.000000 +0.402533,-0.042754,0.293428,-0.097528,0.402849,0.000000 +0.404859,-0.042975,0.295078,-0.098041,0.405140,0.000000 +0.407185,-0.043195,0.296729,-0.098554,0.407431,0.000000 +0.409511,-0.043416,0.298379,-0.099066,0.409722,0.000000 +0.411837,-0.043637,0.300030,-0.099579,0.412012,0.000000 +0.414162,-0.043857,0.301680,-0.100092,0.414303,0.000000 +0.416488,-0.044078,0.303331,-0.100605,0.416594,0.000000 +0.418814,-0.044299,0.304981,-0.101118,0.418884,0.000000 +0.421140,-0.044519,0.306631,-0.101631,0.421175,0.000000 +0.423466,-0.044740,0.308282,-0.102144,0.423466,0.000000 +0.425792,-0.044961,0.309932,-0.102657,0.425757,0.000000 +0.428117,-0.045181,0.311583,-0.103169,0.428047,0.000000 +0.430443,-0.045402,0.313233,-0.103682,0.430338,0.000000 +0.432769,-0.045622,0.314884,-0.104195,0.432629,0.000000 +0.435095,-0.045843,0.316534,-0.104708,0.434919,0.000000 +0.437421,-0.046064,0.318184,-0.105221,0.437210,0.000000 +0.439747,-0.046284,0.319835,-0.105734,0.439501,0.000000 +0.442073,-0.046505,0.321485,-0.106247,0.441792,0.000000 +0.444398,-0.046726,0.323136,-0.106760,0.444082,0.000000 +0.446724,-0.046946,0.324786,-0.107272,0.446373,0.000000 +0.449050,-0.047167,0.326437,-0.107785,0.448664,0.000000 +0.451376,-0.047387,0.328087,-0.108298,0.450954,0.000000 +0.453702,-0.047608,0.329738,-0.108811,0.453245,0.000000 +0.456028,-0.047829,0.331388,-0.109324,0.455536,0.000000 +0.458353,-0.048049,0.333038,-0.109837,0.457826,0.000000 +0.460679,-0.048270,0.334689,-0.110350,0.460117,0.000000 +0.463005,-0.048491,0.336339,-0.110863,0.462408,0.000000 +0.465331,-0.048711,0.337990,-0.111375,0.464699,0.000000 +0.467657,-0.048932,0.339640,-0.111888,0.466989,0.000000 +0.469983,-0.049153,0.341291,-0.112401,0.469280,0.000000 +0.472308,-0.049373,0.342941,-0.112914,0.471571,0.000000 +0.474634,-0.049594,0.344592,-0.113427,0.473861,0.000000 +0.476960,-0.049814,0.346242,-0.113940,0.476152,0.000000 +0.479286,-0.050035,0.347892,-0.114453,0.478443,0.000000 +0.481612,-0.050256,0.349543,-0.114966,0.480734,0.000000 +0.483938,-0.050476,0.351193,-0.115478,0.483024,0.000000 +0.486264,-0.050697,0.352844,-0.115991,0.485315,0.000000 +0.488589,-0.050917,0.354494,-0.116504,0.487606,0.000000 +0.490915,-0.051138,0.356145,-0.117017,0.489896,0.000000 +0.493241,-0.051359,0.357795,-0.117530,0.492187,0.000000 +0.495567,-0.051579,0.359446,-0.118043,0.494478,0.000000 +0.497893,-0.051800,0.361096,-0.118556,0.496768,0.000000 +0.500219,-0.052021,0.362746,-0.119069,0.499059,0.000000 +0.502544,-0.052241,0.364397,-0.119581,0.501350,0.000000 +0.504870,-0.052462,0.366047,-0.120094,0.503641,0.000000 +0.507196,-0.052683,0.367698,-0.120607,0.505931,0.000000 +0.509522,-0.052903,0.369348,-0.121120,0.508222,0.000000 +0.511848,-0.053124,0.370999,-0.121633,0.510513,0.000000 +0.514174,-0.053345,0.372649,-0.122146,0.512803,0.000000 +0.516499,-0.053565,0.374300,-0.122659,0.515094,0.000000 +0.518825,-0.053786,0.375950,-0.123172,0.517385,0.000000 +0.521151,-0.054006,0.377600,-0.123684,0.519676,0.000000 +0.523477,-0.054227,0.379251,-0.124197,0.521966,0.000000 +0.525803,-0.054448,0.380901,-0.124710,0.524257,0.000000 +0.528129,-0.054668,0.382552,-0.125223,0.526548,0.000000 +0.530455,-0.054889,0.384202,-0.125736,0.528838,0.000000 +0.532780,-0.055109,0.385853,-0.126249,0.531129,0.000000 +0.535106,-0.055330,0.387503,-0.126762,0.533420,0.000000 +0.537432,-0.055551,0.389154,-0.127275,0.535711,0.000000 +0.539758,-0.055771,0.390804,-0.127787,0.538001,0.000000 +0.542084,-0.055992,0.392454,-0.128300,0.540292,0.000000 +0.544410,-0.056213,0.394105,-0.128813,0.542583,0.000000 +0.546735,-0.056433,0.395755,-0.129326,0.544873,0.000000 +0.549061,-0.056654,0.397406,-0.129839,0.547164,0.000000 +0.551387,-0.056875,0.399056,-0.130352,0.549455,0.000000 +0.553713,-0.057095,0.400707,-0.130865,0.551745,0.000000 +0.556039,-0.057316,0.402357,-0.131378,0.554036,0.000000 +0.558365,-0.057536,0.404008,-0.131890,0.556327,0.000000 +0.560690,-0.057757,0.405658,-0.132403,0.558618,0.000000 +0.563016,-0.057978,0.407308,-0.132916,0.560908,0.000000 +0.565342,-0.058198,0.408959,-0.133429,0.563199,0.000000 +0.567668,-0.058419,0.410609,-0.133942,0.565490,0.000000 +0.569994,-0.058640,0.412260,-0.134455,0.567780,0.000000 +0.572320,-0.058860,0.413910,-0.134968,0.570071,0.000000 +0.574646,-0.059081,0.415561,-0.135480,0.572362,0.000000 +0.576971,-0.059302,0.417211,-0.135993,0.574653,0.000000 +0.579297,-0.059522,0.418861,-0.136506,0.576943,0.000000 +0.581623,-0.059743,0.420512,-0.137019,0.579234,0.000000 +0.583949,-0.059963,0.422162,-0.137532,0.581525,0.000000 +0.586275,-0.060184,0.423813,-0.138045,0.583815,0.000000 +0.588601,-0.060405,0.425463,-0.138558,0.586106,0.000000 +0.590926,-0.060625,0.427114,-0.139071,0.588397,0.000000 +0.593252,-0.060846,0.428764,-0.139583,0.590688,0.000000 +0.595578,-0.061067,0.430415,-0.140096,0.592978,0.000000 +0.597904,-0.061287,0.432065,-0.140609,0.595269,0.000000 +0.600230,-0.061508,0.433715,-0.141122,0.597560,0.000000 +0.602556,-0.061728,0.435366,-0.141635,0.599850,0.000000 +0.604881,-0.061949,0.437016,-0.142148,0.602141,0.000000 +0.607207,-0.062170,0.438667,-0.142661,0.604432,0.000000 +0.609533,-0.062390,0.440317,-0.143174,0.606722,0.000000 +0.611859,-0.062611,0.441968,-0.143686,0.609013,0.000000 +0.614185,-0.062832,0.443618,-0.144199,0.611304,0.000000 +0.616511,-0.063052,0.445269,-0.144712,0.613595,0.000000 +0.618836,-0.063273,0.446919,-0.145225,0.615885,0.000000 +0.621162,-0.063493,0.448569,-0.145738,0.618176,0.000000 +0.623488,-0.063714,0.450220,-0.146251,0.620467,0.000000 +0.625814,-0.063935,0.451870,-0.146764,0.622757,0.000000 +0.628140,-0.064155,0.453521,-0.147277,0.625048,0.000000 +0.630466,-0.064376,0.455171,-0.147789,0.627339,0.000000 +0.632792,-0.064597,0.456822,-0.148302,0.629630,0.000000 +0.635117,-0.064817,0.458472,-0.148815,0.631920,0.000000 +0.637443,-0.065038,0.460123,-0.149328,0.634211,0.000000 +0.639769,-0.065258,0.461773,-0.149841,0.636502,0.000000 +0.642095,-0.065479,0.463423,-0.150354,0.638792,0.000000 +0.644421,-0.065700,0.465074,-0.150867,0.641083,0.000000 +0.646747,-0.065920,0.466724,-0.151380,0.643374,0.000000 +0.649072,-0.066141,0.468375,-0.151892,0.645664,0.000000 +0.651398,-0.066362,0.470025,-0.152405,0.647955,0.000000 +0.653724,-0.066582,0.471676,-0.152918,0.650246,0.000000 +0.656050,-0.066803,0.473326,-0.153431,0.652537,0.000000 +0.658376,-0.067024,0.474977,-0.153944,0.654827,0.000000 +0.660702,-0.067244,0.476627,-0.154457,0.657118,0.000000 +0.663027,-0.067465,0.478277,-0.154970,0.659409,0.000000 +0.665353,-0.067685,0.479928,-0.155483,0.661699,0.000000 +0.667679,-0.067906,0.481578,-0.155995,0.663990,0.000000 +0.670005,-0.068127,0.483229,-0.156508,0.666281,0.000000 +0.672331,-0.068347,0.484879,-0.157021,0.668572,0.000000 +0.674657,-0.068568,0.486530,-0.157534,0.670862,0.000000 +0.676983,-0.068789,0.488180,-0.158047,0.673153,0.000000 +0.679308,-0.069009,0.489831,-0.158560,0.675444,0.000000 +0.681634,-0.069230,0.491481,-0.159073,0.677734,0.000000 +0.683960,-0.069450,0.493131,-0.159586,0.680025,0.000000 +0.686286,-0.069671,0.494782,-0.160098,0.682316,0.000000 +0.688612,-0.069892,0.496432,-0.160611,0.684607,0.000000 +0.690938,-0.070112,0.498083,-0.161124,0.686897,0.000000 +0.693263,-0.070333,0.499733,-0.161637,0.689188,0.000000 +0.695589,-0.070554,0.501384,-0.162150,0.691479,0.000000 +0.697915,-0.070774,0.503034,-0.162663,0.693769,0.000000 +0.700241,-0.070995,0.504685,-0.163176,0.696060,0.000000 +0.702567,-0.071216,0.506335,-0.163689,0.698351,0.000000 +0.704893,-0.071436,0.507985,-0.164201,0.700641,0.000000 +0.707218,-0.071657,0.509636,-0.164714,0.702932,0.000000 +0.709544,-0.071877,0.511286,-0.165227,0.705223,0.000000 +0.711870,-0.072098,0.512937,-0.165740,0.707514,0.000000 +0.714196,-0.072319,0.514587,-0.166253,0.709804,0.000000 +0.716522,-0.072539,0.516238,-0.166766,0.712095,0.000000 +0.718848,-0.072760,0.517888,-0.167279,0.714386,0.000000 +0.721174,-0.072981,0.519538,-0.167792,0.716676,0.000000 +0.723499,-0.073201,0.521189,-0.168304,0.718967,0.000000 +0.725825,-0.073422,0.522839,-0.168817,0.721258,0.000000 +0.728151,-0.073643,0.524490,-0.169330,0.723549,0.000000 +0.730477,-0.073863,0.526140,-0.169843,0.725839,0.000000 +0.732803,-0.074084,0.527791,-0.170356,0.728130,0.000000 +0.735129,-0.074304,0.529441,-0.170869,0.730421,0.000000 +0.737454,-0.074525,0.531092,-0.171382,0.732711,0.000000 +0.739780,-0.074746,0.532742,-0.171895,0.735002,0.000000 +0.742106,-0.074966,0.534392,-0.172407,0.737293,0.000000 +0.744432,-0.075187,0.536043,-0.172920,0.739584,0.000000 +0.746758,-0.075408,0.537693,-0.173433,0.741874,0.000000 +0.749084,-0.075628,0.539344,-0.173946,0.744165,0.000000 +0.751409,-0.075849,0.540994,-0.174459,0.746456,0.000000 +0.753735,-0.076069,0.542645,-0.174972,0.748746,0.000000 +0.756061,-0.076290,0.544295,-0.175485,0.751037,0.000000 +0.758387,-0.076511,0.545946,-0.175998,0.753328,0.000000 +0.760713,-0.076731,0.547596,-0.176510,0.755618,0.000000 +0.763039,-0.076952,0.549246,-0.177023,0.757909,0.000000 +0.765365,-0.077173,0.550897,-0.177536,0.760200,0.000000 +0.767690,-0.077393,0.552547,-0.178049,0.762491,0.000000 +0.770016,-0.077614,0.554198,-0.178562,0.764781,0.000000 +0.772342,-0.077835,0.555848,-0.179075,0.767072,0.000000 +0.774668,-0.078055,0.557499,-0.179588,0.769363,0.000000 +0.776994,-0.078276,0.559149,-0.180101,0.771653,0.000000 +0.779320,-0.078496,0.560800,-0.180613,0.773944,0.000000 +0.781645,-0.078717,0.562450,-0.181126,0.776235,0.000000 +0.783971,-0.078938,0.564100,-0.181639,0.778526,0.000000 +0.786297,-0.079158,0.565751,-0.182152,0.780816,0.000000 +0.788623,-0.079379,0.567401,-0.182665,0.783107,0.000000 +0.790949,-0.079600,0.569052,-0.183178,0.785398,0.000000 +0.793275,-0.079820,0.570702,-0.183691,0.787688,0.000000 +0.795600,-0.080041,0.572353,-0.184204,0.789979,0.000000 +0.797926,-0.080261,0.574003,-0.184716,0.792270,0.000000 +0.800252,-0.080482,0.575654,-0.185229,0.794560,0.000000 +0.802578,-0.080703,0.577304,-0.185742,0.796851,0.000000 +0.804904,-0.080923,0.578954,-0.186255,0.799142,0.000000 +0.807230,-0.081144,0.580605,-0.186768,0.801433,0.000000 +0.809556,-0.081365,0.582255,-0.187281,0.803723,0.000000 +0.811881,-0.081585,0.583906,-0.187794,0.806014,0.000000 +0.814207,-0.081806,0.585556,-0.188307,0.808305,0.000000 +0.816533,-0.082027,0.587207,-0.188819,0.810595,0.000000 +0.818859,-0.082247,0.588857,-0.189332,0.812886,0.000000 +0.821185,-0.082468,0.590508,-0.189845,0.815177,0.000000 +0.823511,-0.082688,0.592158,-0.190358,0.817468,0.000000 +0.825836,-0.082909,0.593808,-0.190871,0.819758,0.000000 +0.828162,-0.083130,0.595459,-0.191384,0.822049,0.000000 +0.830488,-0.083350,0.597109,-0.191897,0.824340,0.000000 +0.832814,-0.083571,0.598760,-0.192410,0.826630,0.000000 +0.835140,-0.083792,0.600410,-0.192922,0.828921,0.000000 +0.837466,-0.084012,0.602061,-0.193435,0.831212,0.000000 +0.839791,-0.084233,0.603711,-0.193948,0.833503,0.000000 +0.842117,-0.084453,0.605362,-0.194461,0.835793,0.000000 +0.844443,-0.084674,0.607012,-0.194974,0.838084,0.000000 +0.846769,-0.084895,0.608662,-0.195487,0.840375,0.000000 +0.849095,-0.085115,0.610313,-0.196000,0.842665,0.000000 +0.851421,-0.085336,0.611963,-0.196513,0.844956,0.000000 +0.853747,-0.085556,0.613614,-0.197025,0.847247,0.000000 +0.856072,-0.085777,0.615264,-0.197538,0.849537,0.000000 +0.858398,-0.085998,0.616915,-0.198051,0.851828,0.000000 +0.860724,-0.086218,0.618565,-0.198564,0.854119,0.000000 +0.863050,-0.086439,0.620215,-0.199077,0.856410,0.000000 +0.865376,-0.086660,0.621866,-0.199590,0.858700,0.000000 +0.867702,-0.086880,0.623516,-0.200103,0.860991,0.000000 +0.870027,-0.087101,0.625167,-0.200616,0.863282,0.000000 +0.872353,-0.087322,0.626817,-0.201128,0.865572,0.000000 +0.874679,-0.087542,0.628468,-0.201641,0.867863,0.000000 +0.877005,-0.087763,0.630118,-0.202154,0.870154,0.000000 +0.879331,-0.087984,0.631769,-0.202667,0.872445,0.000000 +0.881657,-0.088204,0.633419,-0.203180,0.874735,0.000000 +0.883982,-0.088425,0.635069,-0.203693,0.877026,0.000000 +0.886308,-0.088645,0.636720,-0.204206,0.879317,0.000000 +0.888634,-0.088866,0.638370,-0.204719,0.881607,0.000000 +0.890960,-0.089087,0.640021,-0.205231,0.883898,0.000000 +0.893286,-0.089307,0.641671,-0.205744,0.886189,0.000000 +0.895612,-0.089528,0.643322,-0.206257,0.888480,0.000000 +0.897937,-0.089748,0.644972,-0.206770,0.890770,0.000000 +0.900263,-0.089969,0.646623,-0.207283,0.893061,0.000000 +0.902589,-0.090190,0.648273,-0.207796,0.895352,0.000000 +0.904915,-0.090410,0.649923,-0.208309,0.897642,0.000000 +0.907241,-0.090631,0.651574,-0.208822,0.899933,0.000000 +0.909567,-0.090852,0.653224,-0.209334,0.902224,0.000000 +0.911893,-0.091072,0.654875,-0.209847,0.904514,0.000000 +0.914218,-0.091293,0.656525,-0.210360,0.906805,0.000000 +0.916544,-0.091514,0.658176,-0.210873,0.909096,0.000000 +0.918870,-0.091734,0.659826,-0.211386,0.911387,0.000000 +0.921196,-0.091955,0.661477,-0.211899,0.913677,0.000000 +0.923522,-0.092175,0.663127,-0.212412,0.915968,0.000000 +0.925848,-0.092396,0.664777,-0.212925,0.918259,0.000000 +0.928173,-0.092617,0.666428,-0.213437,0.920549,0.000000 +0.930499,-0.092837,0.668078,-0.213950,0.922840,0.000000 +0.932825,-0.093058,0.669729,-0.214463,0.925131,0.000000 +0.935151,-0.093279,0.671379,-0.214976,0.927422,0.000000 +0.937477,-0.093499,0.673030,-0.215489,0.929712,0.000000 +0.939803,-0.093720,0.674680,-0.216002,0.932003,0.000000 +0.942128,-0.093940,0.676331,-0.216515,0.934294,0.000000 +0.944454,-0.094161,0.677981,-0.217028,0.936584,0.000000 +0.946780,-0.094382,0.679631,-0.217540,0.938875,0.000000 +0.949106,-0.094602,0.681282,-0.218053,0.941166,0.000000 +0.951432,-0.094823,0.682932,-0.218566,0.943456,0.000000 +0.953758,-0.095044,0.684583,-0.219079,0.945747,0.000000 +0.956084,-0.095264,0.686233,-0.219592,0.948038,0.000000 +0.958409,-0.095485,0.687884,-0.220105,0.950329,0.000000 +0.960735,-0.095706,0.689534,-0.220618,0.952619,0.000000 +0.963061,-0.095926,0.691185,-0.221131,0.954910,0.000000 +0.965387,-0.096147,0.692835,-0.221643,0.957201,0.000000 +0.967713,-0.096367,0.694485,-0.222156,0.959491,0.000000 +0.970039,-0.096588,0.696136,-0.222669,0.961782,0.000000 +0.972364,-0.096809,0.697786,-0.223182,0.964073,0.000000 +0.974690,-0.097029,0.699437,-0.223695,0.966364,0.000000 +0.977016,-0.097250,0.701087,-0.224208,0.968654,0.000000 +0.979342,-0.097471,0.702738,-0.224721,0.970945,0.000000 +0.981668,-0.097691,0.704388,-0.225234,0.973236,0.000000 +0.983994,-0.097912,0.706038,-0.225746,0.975526,0.000000 +0.986319,-0.098132,0.707689,-0.226259,0.977817,0.000000 +0.988645,-0.098353,0.709339,-0.226772,0.980108,0.000000 +0.990971,-0.098574,0.710990,-0.227285,0.982399,0.000000 +0.993297,-0.098794,0.712640,-0.227798,0.984689,0.000000 +0.995623,-0.099015,0.714291,-0.228311,0.986980,0.000000 +0.997949,-0.099236,0.715941,-0.228824,0.989271,0.000000 +1.000270,-0.099456,0.717592,-0.229337,0.991561,0.000000 +1.002600,-0.099677,0.719242,-0.229849,0.993852,0.000000 +1.004930,-0.099898,0.720892,-0.230362,0.996143,0.000000 +1.007250,-0.100118,0.722543,-0.230875,0.998433,0.000000 +1.009580,-0.100339,0.724193,-0.231388,1.000720,0.000000 +1.011900,-0.100559,0.725844,-0.231901,1.003010,0.000000 +1.014230,-0.100780,0.727494,-0.232414,1.005310,0.000000 +1.016560,-0.101001,0.729145,-0.232927,1.007600,0.000000 +1.018880,-0.101221,0.730795,-0.233440,1.009890,0.000000 +1.021210,-0.101442,0.732446,-0.233952,1.012180,0.000000 +1.023530,-0.101663,0.734096,-0.234465,1.014470,0.000000 +1.025860,-0.101883,0.735746,-0.234978,1.016760,0.000000 +1.028180,-0.102104,0.737397,-0.235491,1.019050,0.000000 +1.030510,-0.102324,0.739047,-0.236004,1.021340,0.000000 +1.032840,-0.102545,0.740698,-0.236517,1.023630,0.000000 +1.035160,-0.102766,0.742348,-0.237030,1.025920,0.000000 +1.037490,-0.102986,0.743999,-0.237542,1.028210,0.000000 +1.039810,-0.103207,0.745649,-0.238055,1.030500,0.000000 +1.042140,-0.103428,0.747300,-0.238568,1.032790,0.000000 +1.044470,-0.103648,0.748950,-0.239081,1.035080,0.000000 +1.046790,-0.103869,0.750600,-0.239594,1.037380,0.000000 +1.049120,-0.104090,0.752251,-0.240107,1.039670,0.000000 +1.051440,-0.104310,0.753901,-0.240620,1.041960,0.000000 +1.053770,-0.104531,0.755552,-0.241133,1.044250,0.000000 +1.056090,-0.104751,0.757202,-0.241645,1.046540,0.000000 +1.058420,-0.104972,0.758853,-0.242158,1.048830,0.000000 +1.060750,-0.105193,0.760503,-0.242671,1.051120,0.000000 +1.063070,-0.105413,0.762154,-0.243184,1.053410,0.000000 +1.065400,-0.105634,0.763804,-0.243697,1.055700,0.000000 +1.067720,-0.105855,0.765454,-0.244210,1.057990,0.000000 +1.070050,-0.106075,0.767105,-0.244723,1.060280,0.000000 +1.072380,-0.106296,0.768755,-0.245236,1.062570,0.000000 +1.074700,-0.106516,0.770406,-0.245748,1.064860,0.000000 +1.077030,-0.106737,0.772056,-0.246261,1.067150,0.000000 +1.079350,-0.106958,0.773707,-0.246774,1.069450,0.000000 +1.081680,-0.107178,0.775357,-0.247287,1.071740,0.000000 +1.084000,-0.107399,0.777008,-0.247800,1.074030,0.000000 +1.086330,-0.107620,0.778658,-0.248313,1.076320,0.000000 +1.088660,-0.107840,0.780308,-0.248826,1.078610,0.000000 +1.090980,-0.108061,0.781959,-0.249339,1.080900,0.000000 +1.093310,-0.108282,0.783609,-0.249851,1.083190,0.000000 +1.095630,-0.108502,0.785260,-0.250364,1.085480,0.000000 +1.097960,-0.108723,0.786910,-0.250877,1.087770,0.000000 +1.100290,-0.108943,0.788561,-0.251390,1.090060,0.000000 +1.102610,-0.109164,0.790211,-0.251903,1.092350,0.000000 +1.104940,-0.109385,0.791862,-0.252416,1.094640,0.000000 +1.107260,-0.109605,0.793512,-0.252929,1.096930,0.000000 +1.109590,-0.109826,0.795162,-0.253442,1.099220,0.000000 +1.111910,-0.110047,0.796813,-0.253954,1.101520,0.000000 +1.114240,-0.110267,0.798463,-0.254467,1.103810,0.000000 +1.116570,-0.110488,0.800114,-0.254980,1.106100,0.000000 +1.118890,-0.110708,0.801764,-0.255493,1.108390,0.000000 +1.121220,-0.110929,0.803415,-0.256006,1.110680,0.000000 +1.123540,-0.111150,0.805065,-0.256519,1.112970,0.000000 +1.125870,-0.111370,0.806715,-0.257032,1.115260,0.000000 +1.128200,-0.111591,0.808366,-0.257545,1.117550,0.000000 +1.130520,-0.111812,0.810016,-0.258057,1.119840,0.000000 +1.132850,-0.112032,0.811667,-0.258570,1.122130,0.000000 +1.135170,-0.112253,0.813317,-0.259083,1.124420,0.000000 +1.137500,-0.112473,0.814968,-0.259596,1.126710,0.000000 +1.139830,-0.112694,0.816618,-0.260109,1.129000,0.000000 +1.142150,-0.112915,0.818269,-0.260622,1.131290,0.000000 +1.144480,-0.113135,0.819919,-0.261135,1.133590,0.000000 +1.146800,-0.113356,0.821569,-0.261648,1.135880,0.000000 +1.149130,-0.113577,0.823220,-0.262160,1.138170,0.000000 +1.151450,-0.113797,0.824870,-0.262673,1.140460,0.000000 +1.153780,-0.114018,0.826521,-0.263186,1.142750,0.000000 +1.156110,-0.114239,0.828171,-0.263699,1.145040,0.000000 +1.158430,-0.114459,0.829822,-0.264212,1.147330,0.000000 +1.160760,-0.114680,0.831472,-0.264725,1.149620,0.000000 +1.163080,-0.114900,0.833123,-0.265238,1.151910,0.000000 +1.165410,-0.115121,0.834773,-0.265751,1.154200,0.000000 +1.167740,-0.115342,0.836423,-0.266263,1.156490,0.000000 +1.170060,-0.115562,0.838074,-0.266776,1.158780,0.000000 +1.172390,-0.115783,0.839724,-0.267289,1.161070,0.000000 +1.174710,-0.116004,0.841375,-0.267802,1.163360,0.000000 +1.177040,-0.116224,0.843025,-0.268315,1.165660,0.000000 +1.179360,-0.116445,0.844676,-0.268828,1.167950,0.000000 +1.181690,-0.116665,0.846326,-0.269341,1.170240,0.000000 +1.184020,-0.116886,0.847977,-0.269854,1.172530,0.000000 +1.186340,-0.117107,0.849627,-0.270366,1.174820,0.000000 +1.188670,-0.117327,0.851277,-0.270879,1.177110,0.000000 +1.190990,-0.117548,0.852928,-0.271392,1.179400,0.000000 +1.193320,-0.117769,0.854578,-0.271905,1.181690,0.000000 +1.195650,-0.117989,0.856229,-0.272418,1.183980,0.000000 +1.197970,-0.118210,0.857879,-0.272931,1.186270,0.000000 +1.200300,-0.118431,0.859530,-0.273444,1.188560,0.000000 +1.202620,-0.118651,0.861180,-0.273957,1.190850,0.000000 +1.204950,-0.118872,0.862831,-0.274469,1.193140,0.000000 +1.207270,-0.119092,0.864481,-0.274982,1.195430,0.000000 +1.209600,-0.119313,0.866131,-0.275495,1.197730,0.000000 +1.211930,-0.119534,0.867782,-0.276008,1.200020,0.000000 +1.214250,-0.119754,0.869432,-0.276521,1.202310,0.000000 +1.216580,-0.119975,0.871083,-0.277034,1.204600,0.000000 +1.218900,-0.120196,0.872733,-0.277547,1.206890,0.000000 +1.221230,-0.120416,0.874384,-0.278060,1.209180,0.000000 +1.223560,-0.120637,0.876034,-0.278572,1.211470,0.000000 +1.225880,-0.120857,0.877685,-0.279085,1.213760,0.000000 +1.228210,-0.121078,0.879335,-0.279598,1.216050,0.000000 +1.230530,-0.121299,0.880985,-0.280111,1.218340,0.000000 +1.232860,-0.121519,0.882636,-0.280624,1.220630,0.000000 +1.235180,-0.121740,0.884286,-0.281137,1.222920,0.000000 +1.237510,-0.121961,0.885937,-0.281650,1.225210,0.000000 +1.239840,-0.122181,0.887587,-0.282163,1.227500,0.000000 +1.242160,-0.122402,0.889238,-0.282675,1.229790,0.000000 +1.244490,-0.122623,0.890888,-0.283188,1.232090,0.000000 +1.246810,-0.122843,0.892539,-0.283701,1.234380,0.000000 +1.249140,-0.123064,0.894189,-0.284214,1.236670,0.000000 +1.251470,-0.123284,0.895839,-0.284727,1.238960,0.000000 +1.253790,-0.123505,0.897490,-0.285240,1.241250,0.000000 +1.256120,-0.123726,0.899140,-0.285753,1.243540,0.000000 +1.258440,-0.123946,0.900791,-0.286266,1.245830,0.000000 +1.260770,-0.124167,0.902441,-0.286778,1.248120,0.000000 +1.263090,-0.124388,0.904092,-0.287291,1.250410,0.000000 +1.265420,-0.124608,0.905742,-0.287804,1.252700,0.000000 +1.267750,-0.124829,0.907392,-0.288317,1.254990,0.000000 +1.270070,-0.125049,0.909043,-0.288830,1.257280,0.000000 +1.272400,-0.125270,0.910693,-0.289343,1.259570,0.000000 +1.274720,-0.125491,0.912344,-0.289856,1.261860,0.000000 +1.277050,-0.125711,0.913994,-0.290369,1.264160,0.000000 +1.279380,-0.125932,0.915645,-0.290881,1.266450,0.000000 +1.281700,-0.126153,0.917295,-0.291394,1.268740,0.000000 +1.284030,-0.126373,0.918946,-0.291907,1.271030,0.000000 +1.286350,-0.126594,0.920596,-0.292420,1.273320,0.000000 +1.288680,-0.126814,0.922246,-0.292933,1.275610,0.000000 +1.291000,-0.127035,0.923897,-0.293446,1.277900,0.000000 +1.293330,-0.127256,0.925547,-0.293959,1.280190,0.000000 +1.295660,-0.127476,0.927198,-0.294472,1.282480,0.000000 +1.297980,-0.127697,0.928848,-0.294984,1.284770,0.000000 +1.300310,-0.127918,0.930499,-0.295497,1.287060,0.000000 +1.302630,-0.128138,0.932149,-0.296010,1.289350,0.000000 +1.304960,-0.128359,0.933800,-0.296523,1.291640,0.000000 +1.307290,-0.128580,0.935450,-0.297036,1.293930,0.000000 +1.309610,-0.128800,0.937100,-0.297549,1.296230,0.000000 +1.311940,-0.129021,0.938751,-0.298062,1.298520,0.000000 +1.314260,-0.129241,0.940401,-0.298575,1.300810,0.000000 +1.316590,-0.129462,0.942052,-0.299087,1.303100,0.000000 +1.318910,-0.129683,0.943702,-0.299600,1.305390,0.000000 +1.321240,-0.129903,0.945353,-0.300113,1.307680,0.000000 +1.323570,-0.130124,0.947003,-0.300626,1.309970,0.000000 +1.325890,-0.130345,0.948654,-0.301139,1.312260,0.000000 +1.328220,-0.130565,0.950304,-0.301652,1.314550,0.000000 +1.330540,-0.130786,0.951954,-0.302165,1.316840,0.000000 +1.332870,-0.131006,0.953605,-0.302678,1.319130,0.000000 +1.335200,-0.131227,0.955255,-0.303190,1.321420,0.000000 +1.337520,-0.131448,0.956906,-0.303703,1.323710,0.000000 +1.339850,-0.131668,0.958556,-0.304216,1.326000,0.000000 +1.342170,-0.131889,0.960207,-0.304729,1.328300,0.000000 +1.344500,-0.132110,0.961857,-0.305242,1.330590,0.000000 +1.346820,-0.132330,0.963508,-0.305755,1.332880,0.000000 +1.349150,-0.132551,0.965158,-0.306268,1.335170,0.000000 +1.351480,-0.132772,0.966808,-0.306781,1.337460,0.000000 +1.353800,-0.132992,0.968459,-0.307293,1.339750,0.000000 +1.356130,-0.133213,0.970109,-0.307806,1.342040,0.000000 +1.358450,-0.133433,0.971760,-0.308319,1.344330,0.000000 +1.360780,-0.133654,0.973410,-0.308832,1.346620,0.000000 +1.363110,-0.133875,0.975061,-0.309345,1.348910,0.000000 +1.365430,-0.134095,0.976711,-0.309858,1.351200,0.000000 +1.367760,-0.134316,0.978362,-0.310371,1.353490,0.000000 +1.370080,-0.134537,0.980012,-0.310884,1.355780,0.000000 +1.372410,-0.134757,0.981662,-0.311396,1.358070,0.000000 +1.374740,-0.134978,0.983313,-0.311909,1.360370,0.000000 +1.377060,-0.135198,0.984963,-0.312422,1.362660,0.000000 +1.379390,-0.135419,0.986614,-0.312935,1.364950,0.000000 +1.381710,-0.135640,0.988264,-0.313448,1.367240,0.000000 +1.384040,-0.135860,0.989915,-0.313961,1.369530,0.000000 +1.386360,-0.136081,0.991565,-0.314474,1.371820,0.000000 +1.388690,-0.136302,0.993216,-0.314987,1.374110,0.000000 +1.391020,-0.136522,0.994866,-0.315499,1.376400,0.000000 +1.393340,-0.136743,0.996516,-0.316012,1.378690,0.000000 +1.395670,-0.136963,0.998167,-0.316525,1.380980,0.000000 +1.397990,-0.137184,0.999817,-0.317038,1.383270,0.000000 +1.400320,-0.137405,1.001470,-0.317551,1.385560,0.000000 +1.402650,-0.137625,1.003120,-0.318064,1.387850,0.000000 +1.404970,-0.137846,1.004770,-0.318577,1.390140,0.000000 +1.407300,-0.138067,1.006420,-0.319090,1.392440,0.000000 +1.409620,-0.138287,1.008070,-0.319602,1.394730,0.000000 +1.411950,-0.138508,1.009720,-0.320115,1.397020,0.000000 +1.414270,-0.138729,1.011370,-0.320628,1.399310,0.000000 +1.416600,-0.138949,1.013020,-0.321141,1.401600,0.000000 +1.418930,-0.139170,1.014670,-0.321654,1.403890,0.000000 +1.421250,-0.139390,1.016320,-0.322167,1.406180,0.000000 +1.423580,-0.139611,1.017970,-0.322680,1.408470,0.000000 +1.425900,-0.139832,1.019620,-0.323193,1.410760,0.000000 +1.428230,-0.140052,1.021270,-0.323705,1.413050,0.000000 +1.430560,-0.140273,1.022920,-0.324218,1.415340,0.000000 +1.432880,-0.140494,1.024570,-0.324731,1.417630,0.000000 +1.435210,-0.140714,1.026220,-0.325244,1.419920,0.000000 +1.437530,-0.140935,1.027870,-0.325757,1.422210,0.000000 +1.439860,-0.141155,1.029530,-0.326270,1.424510,0.000000 +1.442180,-0.141376,1.031180,-0.326783,1.426800,0.000000 +1.444510,-0.141597,1.032830,-0.327296,1.429090,0.000000 +1.446840,-0.141817,1.034480,-0.327808,1.431380,0.000000 +1.449160,-0.142038,1.036130,-0.328321,1.433670,0.000000 +1.451490,-0.142259,1.037780,-0.328834,1.435960,0.000000 +1.453810,-0.142479,1.039430,-0.329347,1.438250,0.000000 +1.456140,-0.142700,1.041080,-0.329860,1.440540,0.000000 +1.458470,-0.142921,1.042730,-0.330373,1.442830,0.000000 +1.460790,-0.143141,1.044380,-0.330886,1.445120,0.000000 +1.463120,-0.143362,1.046030,-0.331399,1.447410,0.000000 +1.465440,-0.143582,1.047680,-0.331911,1.449700,0.000000 +1.467770,-0.143803,1.049330,-0.332424,1.451990,0.000000 +1.470090,-0.144024,1.050980,-0.332937,1.454280,0.000000 +1.472420,-0.144244,1.052630,-0.333450,1.456580,0.000000 +1.474750,-0.144465,1.054280,-0.333963,1.458870,0.000000 +1.477070,-0.144686,1.055930,-0.334476,1.461160,0.000000 +1.479400,-0.144906,1.057580,-0.334989,1.463450,0.000000 +1.481720,-0.145127,1.059230,-0.335502,1.465740,0.000000 +1.484050,-0.145347,1.060880,-0.336014,1.468030,0.000000 +1.486380,-0.145568,1.062530,-0.336527,1.470320,0.000000 +1.488700,-0.145789,1.064180,-0.337040,1.472610,0.000000 +1.491030,-0.146009,1.065830,-0.337553,1.474900,0.000000 +1.493350,-0.146230,1.067490,-0.338066,1.477190,0.000000 +1.495680,-0.146451,1.069140,-0.338579,1.479480,0.000000 +1.498000,-0.146671,1.070790,-0.339092,1.481770,0.000000 +1.500330,-0.146892,1.072440,-0.339605,1.484060,0.000000 +1.502660,-0.147113,1.074090,-0.340117,1.486350,0.000000 +1.504980,-0.147333,1.075740,-0.340630,1.488640,0.000000 +1.507310,-0.147554,1.077390,-0.341143,1.490940,0.000000 +1.509630,-0.147774,1.079040,-0.341656,1.493230,0.000000 +1.511960,-0.147995,1.080690,-0.342169,1.495520,0.000000 +1.514290,-0.148216,1.082340,-0.342682,1.497810,0.000000 +1.516610,-0.148436,1.083990,-0.343195,1.500100,0.000000 +1.518930,-0.148657,1.085640,-0.343707,1.502390,0.000000 +1.521240,-0.148878,1.087290,-0.344220,1.504680,0.000000 +1.523540,-0.149098,1.088940,-0.344733,1.506970,0.000000 +1.525830,-0.149319,1.090590,-0.345246,1.509260,0.000000 +1.528100,-0.149539,1.092240,-0.345759,1.511550,0.000000 +1.530360,-0.149760,1.093890,-0.346272,1.513840,0.000000 +1.532590,-0.149981,1.095540,-0.346785,1.516120,0.000000 +1.534800,-0.150201,1.097190,-0.347298,1.518380,0.000000 +1.536990,-0.150422,1.098840,-0.347810,1.520640,0.000000 +1.539150,-0.150643,1.100490,-0.348323,1.522880,0.000000 +1.541280,-0.150863,1.102130,-0.348836,1.525100,0.000000 +1.543370,-0.151084,1.103760,-0.349349,1.527290,0.000000 +1.545430,-0.151304,1.105380,-0.349862,1.529460,0.000000 +1.547450,-0.151525,1.106980,-0.350375,1.531610,0.000000 +1.549430,-0.151746,1.108570,-0.350888,1.533720,0.000000 +1.551360,-0.151966,1.110140,-0.351401,1.535790,0.000000 +1.553250,-0.152187,1.111690,-0.351913,1.537830,0.000000 +1.555090,-0.152408,1.113210,-0.352426,1.539820,0.000000 +1.556870,-0.152628,1.114700,-0.352939,1.541770,0.000000 +1.558610,-0.152849,1.116170,-0.353452,1.543680,0.000000 +1.560280,-0.153070,1.117600,-0.353965,1.545530,0.000000 +1.561900,-0.153290,1.119000,-0.354478,1.547330,0.000000 +1.563460,-0.153511,1.120360,-0.354991,1.549070,0.000000 +1.564950,-0.153731,1.121680,-0.355504,1.550750,0.000000 +1.566370,-0.153952,1.122960,-0.356016,1.552370,0.000000 +1.567730,-0.154173,1.124190,-0.356529,1.553930,0.000000 +1.569010,-0.154393,1.125380,-0.357042,1.555410,0.000000 +1.570210,-0.154614,1.126510,-0.357555,1.556820,0.000000 +1.571340,-0.154835,1.127600,-0.358068,1.558160,0.000000 +1.572400,-0.155055,1.128620,-0.358581,1.559420,0.000000 +1.573380,-0.155276,1.129590,-0.359094,1.560590,0.000000 +1.574290,-0.155496,1.130500,-0.359607,1.561680,0.000000 +1.575140,-0.155717,1.131340,-0.360119,1.562700,0.000000 +1.575920,-0.155938,1.132120,-0.360630,1.563630,0.000000 +1.576630,-0.156158,1.132840,-0.361135,1.564490,0.000000 +1.577290,-0.156379,1.133500,-0.361632,1.565280,0.000000 +1.577890,-0.156600,1.134100,-0.362118,1.565990,0.000000 +1.578440,-0.156820,1.134640,-0.362589,1.566650,0.000000 +1.578930,-0.157041,1.135140,-0.363042,1.567240,0.000000 +1.579370,-0.157261,1.135580,-0.363475,1.567770,0.000000 +1.579770,-0.157481,1.135980,-0.363883,1.568250,0.000000 +1.580130,-0.157697,1.136330,-0.364265,1.568670,0.000000 +1.580440,-0.157906,1.136640,-0.364616,1.569050,0.000000 +1.580710,-0.158106,1.136920,-0.364935,1.569370,0.000000 +1.580950,-0.158295,1.137150,-0.365217,1.569660,0.000000 +1.581150,-0.158470,1.137360,-0.365460,1.569900,0.000000 +1.581320,-0.158628,1.137530,-0.365666,1.570110,0.000000 +1.581460,-0.158767,1.137670,-0.365837,1.570280,0.000000 +1.581580,-0.158884,1.137790,-0.365978,1.570420,0.000000 +1.581680,-0.158977,1.137880,-0.366090,1.570530,0.000000 +1.581750,-0.159051,1.137960,-0.366178,1.570620,0.000000 +1.581800,-0.159106,1.138010,-0.366244,1.570680,0.000000 +1.581840,-0.159145,1.138050,-0.366291,1.570730,0.000000 +1.581870,-0.159171,1.138080,-0.366322,1.570760,0.000000 +1.581890,-0.159187,1.138090,-0.366342,1.570780,0.000000 +1.581890,-0.159196,1.138100,-0.366351,1.570790,0.000000 +1.581900,-0.159199,1.138100,-0.366355,1.570790,0.000000 +1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +1.581900,-0.159203,1.138110,-0.366355,1.570800,-0.000008 +1.581890,-0.159200,1.138100,-0.366352,1.570790,-0.000008 +1.581890,-0.159191,1.138100,-0.366342,1.570780,-0.000008 +1.581870,-0.159175,1.138080,-0.366323,1.570760,-0.000008 +1.581840,-0.159149,1.138050,-0.366291,1.570730,-0.000008 +1.581800,-0.159110,1.138010,-0.366244,1.570680,-0.000008 +1.581750,-0.159055,1.137960,-0.366178,1.570620,-0.000008 +1.581680,-0.158981,1.137890,-0.366091,1.570530,-0.000008 +1.581580,-0.158888,1.137790,-0.365978,1.570420,-0.000008 +1.581470,-0.158771,1.137680,-0.365838,1.570280,-0.000008 +1.581320,-0.158632,1.137530,-0.365666,1.570110,-0.000008 +1.581150,-0.158474,1.137360,-0.365460,1.569900,-0.000008 +1.580950,-0.158299,1.137160,-0.365217,1.569660,-0.000008 +1.580710,-0.158110,1.136920,-0.364935,1.569370,-0.000008 +1.580440,-0.157910,1.136650,-0.364617,1.569050,-0.000008 +1.580130,-0.157700,1.136340,-0.364265,1.568670,-0.000008 +1.579770,-0.157485,1.135980,-0.363884,1.568250,-0.000008 +1.579370,-0.157265,1.135580,-0.363475,1.567770,-0.000008 +1.578930,-0.157045,1.135140,-0.363042,1.567240,-0.000008 +1.578440,-0.156824,1.134650,-0.362589,1.566650,-0.000008 +1.577890,-0.156604,1.134100,-0.362118,1.565990,-0.000008 +1.577290,-0.156383,1.133500,-0.361633,1.565280,-0.000008 +1.576630,-0.156162,1.132840,-0.361136,1.564490,-0.000008 +1.575920,-0.155942,1.132130,-0.360630,1.563630,-0.000008 +1.575140,-0.155721,1.131350,-0.360120,1.562700,-0.000008 +1.574290,-0.155500,1.130500,-0.359607,1.561680,-0.000008 +1.573380,-0.155280,1.129600,-0.359094,1.560590,-0.000008 +1.572400,-0.155059,1.128630,-0.358581,1.559420,-0.000008 +1.571340,-0.154839,1.127600,-0.358068,1.558160,-0.000008 +1.570210,-0.154618,1.126520,-0.357555,1.556820,-0.000008 +1.569010,-0.154397,1.125380,-0.357043,1.555410,-0.000008 +1.567730,-0.154177,1.124200,-0.356530,1.553930,-0.000008 +1.566370,-0.153956,1.122970,-0.356017,1.552370,-0.000008 +1.564950,-0.153735,1.121690,-0.355504,1.550760,-0.000008 +1.563460,-0.153515,1.120370,-0.354991,1.549070,-0.000008 +1.561900,-0.153294,1.119010,-0.354478,1.547330,-0.000008 +1.560280,-0.153074,1.117610,-0.353965,1.545530,-0.000008 +1.558610,-0.152853,1.116170,-0.353452,1.543680,-0.000008 +1.556870,-0.152632,1.114710,-0.352940,1.541770,-0.000008 +1.555090,-0.152412,1.113210,-0.352427,1.539820,-0.000008 +1.553250,-0.152191,1.111690,-0.351914,1.537830,-0.000008 +1.551360,-0.151970,1.110140,-0.351401,1.535790,-0.000008 +1.549430,-0.151750,1.108570,-0.350888,1.533720,-0.000008 +1.547450,-0.151529,1.106990,-0.350375,1.531610,-0.000008 +1.545430,-0.151308,1.105380,-0.349862,1.529460,-0.000008 +1.543370,-0.151088,1.103760,-0.349349,1.527290,-0.000008 +1.541280,-0.150867,1.102130,-0.348837,1.525100,-0.000008 +1.539150,-0.150647,1.100490,-0.348324,1.522880,-0.000008 +1.536990,-0.150426,1.098850,-0.347811,1.520640,-0.000008 +1.534800,-0.150205,1.097200,-0.347298,1.518380,-0.000008 +1.532590,-0.149985,1.095550,-0.346785,1.516120,-0.000008 +1.530360,-0.149764,1.093900,-0.346272,1.513840,-0.000008 +1.528100,-0.149543,1.092250,-0.345759,1.511550,-0.000008 +1.525830,-0.149323,1.090600,-0.345246,1.509260,-0.000008 +1.523540,-0.149102,1.088950,-0.344734,1.506970,-0.000008 +1.521240,-0.148882,1.087300,-0.344221,1.504680,-0.000008 +1.518930,-0.148661,1.085640,-0.343708,1.502390,-0.000008 +1.516610,-0.148440,1.083990,-0.343195,1.500100,-0.000008 +1.514290,-0.148220,1.082340,-0.342682,1.497810,-0.000008 +1.511960,-0.147999,1.080690,-0.342169,1.495520,-0.000008 +1.509630,-0.147778,1.079040,-0.341656,1.493230,-0.000008 +1.507310,-0.147558,1.077390,-0.341143,1.490940,-0.000008 +1.504980,-0.147337,1.075740,-0.340631,1.488650,-0.000008 +1.502660,-0.147116,1.074090,-0.340118,1.486350,-0.000008 +1.500330,-0.146896,1.072440,-0.339605,1.484060,-0.000008 +1.498010,-0.146675,1.070790,-0.339092,1.481770,-0.000008 +1.495680,-0.146455,1.069140,-0.338579,1.479480,-0.000008 +1.493350,-0.146234,1.067490,-0.338066,1.477190,-0.000008 +1.491030,-0.146013,1.065840,-0.337553,1.474900,-0.000008 +1.488700,-0.145793,1.064190,-0.337040,1.472610,-0.000008 +1.486380,-0.145572,1.062540,-0.336528,1.470320,-0.000008 +1.484050,-0.145351,1.060890,-0.336015,1.468030,-0.000008 +1.481720,-0.145131,1.059240,-0.335502,1.465740,-0.000008 +1.479400,-0.144910,1.057590,-0.334989,1.463450,-0.000008 +1.477070,-0.144690,1.055940,-0.334476,1.461160,-0.000008 +1.474750,-0.144469,1.054290,-0.333963,1.458870,-0.000008 +1.472420,-0.144248,1.052640,-0.333450,1.456580,-0.000008 +1.470090,-0.144028,1.050990,-0.332938,1.454280,-0.000008 +1.467770,-0.143807,1.049340,-0.332425,1.451990,-0.000008 +1.465440,-0.143586,1.047680,-0.331912,1.449700,-0.000008 +1.463120,-0.143366,1.046030,-0.331399,1.447410,-0.000008 +1.460790,-0.143145,1.044380,-0.330886,1.445120,-0.000008 +1.458470,-0.142924,1.042730,-0.330373,1.442830,-0.000008 +1.456140,-0.142704,1.041080,-0.329860,1.440540,-0.000008 +1.453810,-0.142483,1.039430,-0.329347,1.438250,-0.000008 +1.451490,-0.142263,1.037780,-0.328835,1.435960,-0.000008 +1.449160,-0.142042,1.036130,-0.328322,1.433670,-0.000008 +1.446840,-0.141821,1.034480,-0.327809,1.431380,-0.000008 +1.444510,-0.141601,1.032830,-0.327296,1.429090,-0.000008 +1.442180,-0.141380,1.031180,-0.326783,1.426800,-0.000008 +1.439860,-0.141159,1.029530,-0.326270,1.424510,-0.000008 +1.437530,-0.140939,1.027880,-0.325757,1.422220,-0.000008 +1.435210,-0.140718,1.026230,-0.325244,1.419920,-0.000008 +1.432880,-0.140498,1.024580,-0.324732,1.417630,-0.000008 +1.430560,-0.140277,1.022930,-0.324219,1.415340,-0.000008 +1.428230,-0.140056,1.021280,-0.323706,1.413050,-0.000008 +1.425900,-0.139836,1.019630,-0.323193,1.410760,-0.000008 +1.423580,-0.139615,1.017980,-0.322680,1.408470,-0.000008 +1.421250,-0.139394,1.016330,-0.322167,1.406180,-0.000008 +1.418930,-0.139174,1.014680,-0.321654,1.403890,-0.000008 +1.416600,-0.138953,1.013030,-0.321141,1.401600,-0.000008 +1.414270,-0.138733,1.011370,-0.320629,1.399310,-0.000008 +1.411950,-0.138512,1.009720,-0.320116,1.397020,-0.000008 +1.409620,-0.138291,1.008070,-0.319603,1.394730,-0.000008 +1.407300,-0.138071,1.006420,-0.319090,1.392440,-0.000008 +1.404970,-0.137850,1.004770,-0.318577,1.390150,-0.000008 +1.402650,-0.137629,1.003120,-0.318064,1.387850,-0.000008 +1.400320,-0.137409,1.001470,-0.317551,1.385560,-0.000008 +1.397990,-0.137188,0.999822,-0.317038,1.383270,-0.000008 +1.395670,-0.136967,0.998171,-0.316526,1.380980,-0.000008 +1.393340,-0.136747,0.996521,-0.316013,1.378690,-0.000008 +1.391020,-0.136526,0.994870,-0.315500,1.376400,-0.000008 +1.388690,-0.136306,0.993220,-0.314987,1.374110,-0.000008 +1.386360,-0.136085,0.991570,-0.314474,1.371820,-0.000008 +1.384040,-0.135864,0.989919,-0.313961,1.369530,-0.000008 +1.381710,-0.135644,0.988269,-0.313448,1.367240,-0.000008 +1.379390,-0.135423,0.986618,-0.312935,1.364950,-0.000008 +1.377060,-0.135202,0.984968,-0.312423,1.362660,-0.000008 +1.374740,-0.134982,0.983317,-0.311910,1.360370,-0.000008 +1.372410,-0.134761,0.981667,-0.311397,1.358080,-0.000008 +1.370080,-0.134541,0.980016,-0.310884,1.355780,-0.000008 +1.367760,-0.134320,0.978366,-0.310371,1.353490,-0.000008 +1.365430,-0.134099,0.976716,-0.309858,1.351200,-0.000008 +1.363110,-0.133879,0.975065,-0.309345,1.348910,-0.000008 +1.360780,-0.133658,0.973415,-0.308832,1.346620,-0.000008 +1.358450,-0.133437,0.971764,-0.308320,1.344330,-0.000008 +1.356130,-0.133217,0.970114,-0.307807,1.342040,-0.000008 +1.353800,-0.132996,0.968463,-0.307294,1.339750,-0.000008 +1.351480,-0.132775,0.966813,-0.306781,1.337460,-0.000008 +1.349150,-0.132555,0.965162,-0.306268,1.335170,-0.000008 +1.346830,-0.132334,0.963512,-0.305755,1.332880,-0.000008 +1.344500,-0.132114,0.961862,-0.305242,1.330590,-0.000008 +1.342170,-0.131893,0.960211,-0.304729,1.328300,-0.000008 +1.339850,-0.131672,0.958561,-0.304217,1.326010,-0.000008 +1.337520,-0.131452,0.956910,-0.303704,1.323710,-0.000008 +1.335200,-0.131231,0.955260,-0.303191,1.321420,-0.000008 +1.332870,-0.131010,0.953609,-0.302678,1.319130,-0.000008 +1.330540,-0.130790,0.951959,-0.302165,1.316840,-0.000008 +1.328220,-0.130569,0.950308,-0.301652,1.314550,-0.000008 +1.325890,-0.130349,0.948658,-0.301139,1.312260,-0.000008 +1.323570,-0.130128,0.947008,-0.300626,1.309970,-0.000008 +1.321240,-0.129907,0.945357,-0.300114,1.307680,-0.000008 +1.318920,-0.129687,0.943707,-0.299601,1.305390,-0.000008 +1.316590,-0.129466,0.942056,-0.299088,1.303100,-0.000008 +1.314260,-0.129245,0.940406,-0.298575,1.300810,-0.000008 +1.311940,-0.129025,0.938755,-0.298062,1.298520,-0.000008 +1.309610,-0.128804,0.937105,-0.297549,1.296230,-0.000008 +1.307290,-0.128583,0.935454,-0.297036,1.293940,-0.000008 +1.304960,-0.128363,0.933804,-0.296523,1.291640,-0.000008 +1.302630,-0.128142,0.932154,-0.296011,1.289350,-0.000008 +1.300310,-0.127922,0.930503,-0.295498,1.287060,-0.000008 +1.297980,-0.127701,0.928853,-0.294985,1.284770,-0.000008 +1.295660,-0.127480,0.927202,-0.294472,1.282480,-0.000008 +1.293330,-0.127260,0.925552,-0.293959,1.280190,-0.000008 +1.291010,-0.127039,0.923901,-0.293446,1.277900,-0.000008 +1.288680,-0.126818,0.922251,-0.292933,1.275610,-0.000008 +1.286350,-0.126598,0.920600,-0.292420,1.273320,-0.000008 +1.284030,-0.126377,0.918950,-0.291908,1.271030,-0.000008 +1.281700,-0.126157,0.917300,-0.291395,1.268740,-0.000008 +1.279380,-0.125936,0.915649,-0.290882,1.266450,-0.000008 +1.277050,-0.125715,0.913999,-0.290369,1.264160,-0.000008 +1.274720,-0.125495,0.912348,-0.289856,1.261870,-0.000008 +1.272400,-0.125274,0.910698,-0.289343,1.259570,-0.000008 +1.270070,-0.125053,0.909047,-0.288830,1.257280,-0.000008 +1.267750,-0.124833,0.907397,-0.288317,1.254990,-0.000008 +1.265420,-0.124612,0.905747,-0.287805,1.252700,-0.000008 +1.263100,-0.124392,0.904096,-0.287292,1.250410,-0.000008 +1.260770,-0.124171,0.902446,-0.286779,1.248120,-0.000008 +1.258440,-0.123950,0.900795,-0.286266,1.245830,-0.000008 +1.256120,-0.123730,0.899145,-0.285753,1.243540,-0.000008 +1.253790,-0.123509,0.897494,-0.285240,1.241250,-0.000008 +1.251470,-0.123288,0.895844,-0.284727,1.238960,-0.000008 +1.249140,-0.123068,0.894193,-0.284214,1.236670,-0.000008 +1.246810,-0.122847,0.892543,-0.283702,1.234380,-0.000008 +1.244490,-0.122626,0.890893,-0.283189,1.232090,-0.000008 +1.242160,-0.122406,0.889242,-0.282676,1.229800,-0.000008 +1.239840,-0.122185,0.887592,-0.282163,1.227500,-0.000008 +1.237510,-0.121965,0.885941,-0.281650,1.225210,-0.000008 +1.235180,-0.121744,0.884291,-0.281137,1.222920,-0.000008 +1.232860,-0.121523,0.882640,-0.280624,1.220630,-0.000008 +1.230530,-0.121303,0.880990,-0.280111,1.218340,-0.000008 +1.228210,-0.121082,0.879339,-0.279599,1.216050,-0.000008 +1.225880,-0.120861,0.877689,-0.279086,1.213760,-0.000008 +1.223560,-0.120641,0.876039,-0.278573,1.211470,-0.000008 +1.221230,-0.120420,0.874388,-0.278060,1.209180,-0.000008 +1.218900,-0.120200,0.872738,-0.277547,1.206890,-0.000008 +1.216580,-0.119979,0.871087,-0.277034,1.204600,-0.000008 +1.214250,-0.119758,0.869437,-0.276521,1.202310,-0.000008 +1.211930,-0.119538,0.867786,-0.276008,1.200020,-0.000008 +1.209600,-0.119317,0.866136,-0.275496,1.197730,-0.000008 +1.207270,-0.119096,0.864485,-0.274983,1.195440,-0.000008 +1.204950,-0.118876,0.862835,-0.274470,1.193140,-0.000008 +1.202620,-0.118655,0.861185,-0.273957,1.190850,-0.000008 +1.200300,-0.118434,0.859534,-0.273444,1.188560,-0.000008 +1.197970,-0.118214,0.857884,-0.272931,1.186270,-0.000008 +1.195650,-0.117993,0.856233,-0.272418,1.183980,-0.000008 +1.193320,-0.117773,0.854583,-0.271905,1.181690,-0.000008 +1.190990,-0.117552,0.852932,-0.271393,1.179400,-0.000008 +1.188670,-0.117331,0.851282,-0.270880,1.177110,-0.000008 +1.186340,-0.117111,0.849631,-0.270367,1.174820,-0.000008 +1.184020,-0.116890,0.847981,-0.269854,1.172530,-0.000008 +1.181690,-0.116669,0.846331,-0.269341,1.170240,-0.000008 +1.179360,-0.116449,0.844680,-0.268828,1.167950,-0.000008 +1.177040,-0.116228,0.843030,-0.268315,1.165660,-0.000008 +1.174710,-0.116008,0.841379,-0.267802,1.163370,-0.000008 +1.172390,-0.115787,0.839729,-0.267290,1.161070,-0.000008 +1.170060,-0.115566,0.838078,-0.266777,1.158780,-0.000008 +1.167740,-0.115346,0.836428,-0.266264,1.156490,-0.000008 +1.165410,-0.115125,0.834777,-0.265751,1.154200,-0.000008 +1.163080,-0.114904,0.833127,-0.265238,1.151910,-0.000008 +1.160760,-0.114684,0.831477,-0.264725,1.149620,-0.000008 +1.158430,-0.114463,0.829826,-0.264212,1.147330,-0.000008 +1.156110,-0.114243,0.828176,-0.263699,1.145040,-0.000008 +1.153780,-0.114022,0.826525,-0.263187,1.142750,-0.000008 +1.151450,-0.113801,0.824875,-0.262674,1.140460,-0.000008 +1.149130,-0.113581,0.823224,-0.262161,1.138170,-0.000008 +1.146800,-0.113360,0.821574,-0.261648,1.135880,-0.000008 +1.144480,-0.113139,0.819924,-0.261135,1.133590,-0.000008 +1.142150,-0.112919,0.818273,-0.260622,1.131300,-0.000008 +1.139830,-0.112698,0.816623,-0.260109,1.129000,-0.000008 +1.137500,-0.112477,0.814972,-0.259596,1.126710,-0.000008 +1.135170,-0.112257,0.813322,-0.259084,1.124420,-0.000008 +1.132850,-0.112036,0.811671,-0.258571,1.122130,-0.000008 +1.130520,-0.111816,0.810021,-0.258058,1.119840,-0.000008 +1.128200,-0.111595,0.808370,-0.257545,1.117550,-0.000008 +1.125870,-0.111374,0.806720,-0.257032,1.115260,-0.000008 +1.123540,-0.111154,0.805070,-0.256519,1.112970,-0.000008 +1.121220,-0.110933,0.803419,-0.256006,1.110680,-0.000008 +1.118890,-0.110712,0.801769,-0.255493,1.108390,-0.000008 +1.116570,-0.110492,0.800118,-0.254981,1.106100,-0.000008 +1.114240,-0.110271,0.798468,-0.254468,1.103810,-0.000008 +1.111920,-0.110051,0.796817,-0.253955,1.101520,-0.000008 +1.109590,-0.109830,0.795167,-0.253442,1.099230,-0.000008 +1.107260,-0.109609,0.793516,-0.252929,1.096930,-0.000008 +1.104940,-0.109389,0.791866,-0.252416,1.094640,-0.000008 +1.102610,-0.109168,0.790216,-0.251903,1.092350,-0.000008 +1.100290,-0.108947,0.788565,-0.251390,1.090060,-0.000008 +1.097960,-0.108727,0.786915,-0.250878,1.087770,-0.000008 +1.095630,-0.108506,0.785264,-0.250365,1.085480,-0.000008 +1.093310,-0.108285,0.783614,-0.249852,1.083190,-0.000008 +1.090980,-0.108065,0.781963,-0.249339,1.080900,-0.000008 +1.088660,-0.107844,0.780313,-0.248826,1.078610,-0.000008 +1.086330,-0.107624,0.778662,-0.248313,1.076320,-0.000008 +1.084010,-0.107403,0.777012,-0.247800,1.074030,-0.000008 +1.081680,-0.107182,0.775362,-0.247287,1.071740,-0.000008 +1.079350,-0.106962,0.773711,-0.246775,1.069450,-0.000008 +1.077030,-0.106741,0.772061,-0.246262,1.067160,-0.000008 +1.074700,-0.106520,0.770410,-0.245749,1.064860,-0.000008 +1.072380,-0.106300,0.768760,-0.245236,1.062570,-0.000008 +1.070050,-0.106079,0.767109,-0.244723,1.060280,-0.000008 +1.067720,-0.105859,0.765459,-0.244210,1.057990,-0.000008 +1.065400,-0.105638,0.763808,-0.243697,1.055700,-0.000008 +1.063070,-0.105417,0.762158,-0.243184,1.053410,-0.000008 +1.060750,-0.105197,0.760508,-0.242672,1.051120,-0.000008 +1.058420,-0.104976,0.758857,-0.242159,1.048830,-0.000008 +1.056100,-0.104755,0.757207,-0.241646,1.046540,-0.000008 +1.053770,-0.104535,0.755556,-0.241133,1.044250,-0.000008 +1.051440,-0.104314,0.753906,-0.240620,1.041960,-0.000008 +1.049120,-0.104093,0.752255,-0.240107,1.039670,-0.000008 +1.046790,-0.103873,0.750605,-0.239594,1.037380,-0.000008 +1.044470,-0.103652,0.748954,-0.239081,1.035090,-0.000008 +1.042140,-0.103432,0.747304,-0.238569,1.032790,-0.000008 +1.039810,-0.103211,0.745654,-0.238056,1.030500,-0.000008 +1.037490,-0.102990,0.744003,-0.237543,1.028210,-0.000008 +1.035160,-0.102770,0.742353,-0.237030,1.025920,-0.000008 +1.032840,-0.102549,0.740702,-0.236517,1.023630,-0.000008 +1.030510,-0.102328,0.739052,-0.236004,1.021340,-0.000008 +1.028190,-0.102108,0.737401,-0.235491,1.019050,-0.000008 +1.025860,-0.101887,0.735751,-0.234978,1.016760,-0.000008 +1.023530,-0.101667,0.734100,-0.234466,1.014470,-0.000008 +1.021210,-0.101446,0.732450,-0.233953,1.012180,-0.000008 +1.018880,-0.101225,0.730800,-0.233440,1.009890,-0.000008 +1.016560,-0.101005,0.729149,-0.232927,1.007600,-0.000008 +1.014230,-0.100784,0.727499,-0.232414,1.005310,-0.000008 +1.011900,-0.100563,0.725848,-0.231901,1.003020,-0.000008 +1.009580,-0.100343,0.724198,-0.231388,1.000720,-0.000008 +1.007250,-0.100122,0.722547,-0.230876,0.998434,-0.000008 +1.004930,-0.099902,0.720897,-0.230363,0.996143,-0.000008 +1.002600,-0.099681,0.719247,-0.229850,0.993853,-0.000008 +1.000270,-0.099460,0.717596,-0.229337,0.991562,-0.000008 +0.997949,-0.099240,0.715946,-0.228824,0.989271,-0.000008 +0.995623,-0.099019,0.714295,-0.228311,0.986981,-0.000008 +0.993297,-0.098798,0.712645,-0.227798,0.984690,-0.000008 +0.990972,-0.098578,0.710994,-0.227285,0.982399,-0.000008 +0.988646,-0.098357,0.709344,-0.226773,0.980108,-0.000008 +0.986320,-0.098137,0.707693,-0.226260,0.977818,-0.000008 +0.983994,-0.097916,0.706043,-0.225747,0.975527,-0.000008 +0.981668,-0.097695,0.704393,-0.225234,0.973236,-0.000008 +0.979342,-0.097475,0.702742,-0.224721,0.970946,-0.000008 +0.977017,-0.097254,0.701092,-0.224208,0.968655,-0.000008 +0.974691,-0.097033,0.699441,-0.223695,0.966364,-0.000008 +0.972365,-0.096813,0.697791,-0.223182,0.964074,-0.000008 +0.970039,-0.096592,0.696140,-0.222670,0.961783,-0.000008 +0.967713,-0.096371,0.694490,-0.222157,0.959492,-0.000008 +0.965387,-0.096151,0.692839,-0.221644,0.957201,-0.000008 +0.963062,-0.095930,0.691189,-0.221131,0.954911,-0.000008 +0.960736,-0.095710,0.689539,-0.220618,0.952620,-0.000008 +0.958410,-0.095489,0.687888,-0.220105,0.950329,-0.000008 +0.956084,-0.095268,0.686238,-0.219592,0.948039,-0.000008 +0.953758,-0.095048,0.684587,-0.219079,0.945748,-0.000008 +0.951432,-0.094827,0.682937,-0.218567,0.943457,-0.000008 +0.949106,-0.094606,0.681286,-0.218054,0.941166,-0.000008 +0.946781,-0.094386,0.679636,-0.217541,0.938876,-0.000008 +0.944455,-0.094165,0.677985,-0.217028,0.936585,-0.000008 +0.942129,-0.093945,0.676335,-0.216515,0.934294,-0.000008 +0.939803,-0.093724,0.674685,-0.216002,0.932004,-0.000008 +0.937477,-0.093503,0.673034,-0.215489,0.929713,-0.000008 +0.935151,-0.093283,0.671384,-0.214976,0.927422,-0.000008 +0.932826,-0.093062,0.669733,-0.214464,0.925132,-0.000008 +0.930500,-0.092841,0.668083,-0.213951,0.922841,-0.000008 +0.928174,-0.092621,0.666432,-0.213438,0.920550,-0.000008 +0.925848,-0.092400,0.664782,-0.212925,0.918259,-0.000008 +0.923522,-0.092179,0.663131,-0.212412,0.915969,-0.000008 +0.921196,-0.091959,0.661481,-0.211899,0.913678,-0.000008 +0.918871,-0.091738,0.659831,-0.211386,0.911387,-0.000008 +0.916545,-0.091518,0.658180,-0.210873,0.909097,-0.000008 +0.914219,-0.091297,0.656530,-0.210361,0.906806,-0.000008 +0.911893,-0.091076,0.654879,-0.209848,0.904515,-0.000008 +0.909567,-0.090856,0.653229,-0.209335,0.902224,-0.000008 +0.907241,-0.090635,0.651578,-0.208822,0.899934,-0.000008 +0.904915,-0.090414,0.649928,-0.208309,0.897643,-0.000008 +0.902590,-0.090194,0.648277,-0.207796,0.895352,-0.000008 +0.900264,-0.089973,0.646627,-0.207283,0.893062,-0.000008 +0.897938,-0.089752,0.644977,-0.206770,0.890771,-0.000008 +0.895612,-0.089532,0.643326,-0.206258,0.888480,-0.000008 +0.893286,-0.089311,0.641676,-0.205745,0.886189,-0.000008 +0.890960,-0.089091,0.640025,-0.205232,0.883899,-0.000008 +0.888635,-0.088870,0.638375,-0.204719,0.881608,-0.000008 +0.886309,-0.088649,0.636724,-0.204206,0.879317,-0.000008 +0.883983,-0.088429,0.635074,-0.203693,0.877027,-0.000008 +0.881657,-0.088208,0.633423,-0.203180,0.874736,-0.000008 +0.879331,-0.087987,0.631773,-0.202667,0.872445,-0.000008 +0.877005,-0.087767,0.630123,-0.202155,0.870155,-0.000008 +0.874680,-0.087546,0.628472,-0.201642,0.867864,-0.000008 +0.872354,-0.087326,0.626822,-0.201129,0.865573,-0.000008 +0.870028,-0.087105,0.625171,-0.200616,0.863282,-0.000008 +0.867702,-0.086884,0.623521,-0.200103,0.860992,-0.000008 +0.865376,-0.086664,0.621870,-0.199590,0.858701,-0.000008 +0.863050,-0.086443,0.620220,-0.199077,0.856410,-0.000008 +0.860724,-0.086222,0.618570,-0.198564,0.854120,-0.000008 +0.858399,-0.086002,0.616919,-0.198052,0.851829,-0.000008 +0.856073,-0.085781,0.615269,-0.197539,0.849538,-0.000008 +0.853747,-0.085560,0.613618,-0.197026,0.847247,-0.000008 +0.851421,-0.085340,0.611968,-0.196513,0.844957,-0.000008 +0.849095,-0.085119,0.610317,-0.196000,0.842666,-0.000008 +0.846769,-0.084899,0.608667,-0.195487,0.840375,-0.000008 +0.844444,-0.084678,0.607016,-0.194974,0.838085,-0.000008 +0.842118,-0.084457,0.605366,-0.194461,0.835794,-0.000008 +0.839792,-0.084237,0.603716,-0.193949,0.833503,-0.000008 +0.837466,-0.084016,0.602065,-0.193436,0.831212,-0.000008 +0.835140,-0.083795,0.600415,-0.192923,0.828922,-0.000008 +0.832814,-0.083575,0.598764,-0.192410,0.826631,-0.000008 +0.830489,-0.083354,0.597114,-0.191897,0.824340,-0.000008 +0.828163,-0.083134,0.595463,-0.191384,0.822050,-0.000008 +0.825837,-0.082913,0.593813,-0.190871,0.819759,-0.000008 +0.823511,-0.082692,0.592162,-0.190358,0.817468,-0.000008 +0.821185,-0.082472,0.590512,-0.189846,0.815178,-0.000008 +0.818859,-0.082251,0.588862,-0.189333,0.812887,-0.000008 +0.816533,-0.082030,0.587211,-0.188820,0.810596,-0.000008 +0.814208,-0.081810,0.585561,-0.188307,0.808305,-0.000008 +0.811882,-0.081589,0.583910,-0.187794,0.806015,-0.000008 +0.809556,-0.081368,0.582260,-0.187281,0.803724,-0.000008 +0.807230,-0.081148,0.580609,-0.186768,0.801433,-0.000008 +0.804904,-0.080927,0.578959,-0.186255,0.799143,-0.000008 +0.802578,-0.080707,0.577308,-0.185743,0.796852,-0.000008 +0.800253,-0.080486,0.575658,-0.185230,0.794561,-0.000008 +0.797927,-0.080265,0.574008,-0.184717,0.792270,-0.000008 +0.795601,-0.080045,0.572357,-0.184204,0.789980,-0.000008 +0.793275,-0.079824,0.570707,-0.183691,0.787689,-0.000008 +0.790949,-0.079603,0.569056,-0.183178,0.785398,-0.000008 +0.788623,-0.079383,0.567406,-0.182665,0.783108,-0.000008 +0.786298,-0.079162,0.565755,-0.182152,0.780817,-0.000008 +0.783972,-0.078942,0.564105,-0.181640,0.778526,-0.000008 +0.781646,-0.078721,0.562454,-0.181127,0.776236,-0.000008 +0.779320,-0.078500,0.560804,-0.180614,0.773945,-0.000008 +0.776994,-0.078280,0.559154,-0.180101,0.771654,-0.000008 +0.774668,-0.078059,0.557503,-0.179588,0.769363,-0.000008 +0.772342,-0.077838,0.555853,-0.179075,0.767073,-0.000008 +0.770017,-0.077618,0.554202,-0.178562,0.764782,-0.000008 +0.767691,-0.077397,0.552552,-0.178049,0.762491,-0.000008 +0.765365,-0.077176,0.550901,-0.177537,0.760201,-0.000008 +0.763039,-0.076956,0.549251,-0.177024,0.757910,-0.000008 +0.760713,-0.076735,0.547600,-0.176511,0.755619,-0.000008 +0.758387,-0.076515,0.545950,-0.175998,0.753328,-0.000008 +0.756062,-0.076294,0.544300,-0.175485,0.751038,-0.000008 +0.753736,-0.076073,0.542649,-0.174972,0.748747,-0.000008 +0.751410,-0.075853,0.540999,-0.174459,0.746456,-0.000008 +0.749084,-0.075632,0.539348,-0.173946,0.744166,-0.000008 +0.746758,-0.075412,0.537698,-0.173434,0.741875,-0.000008 +0.744432,-0.075191,0.536047,-0.172921,0.739584,-0.000008 +0.742107,-0.074970,0.534397,-0.172408,0.737293,-0.000008 +0.739781,-0.074750,0.532746,-0.171895,0.735003,-0.000008 +0.737455,-0.074529,0.531096,-0.171382,0.732712,-0.000008 +0.735129,-0.074308,0.529446,-0.170869,0.730421,-0.000008 +0.732803,-0.074088,0.527795,-0.170356,0.728131,-0.000008 +0.730477,-0.073867,0.526145,-0.169843,0.725840,-0.000008 +0.728151,-0.073647,0.524494,-0.169331,0.723549,-0.000008 +0.725826,-0.073426,0.522844,-0.168818,0.721259,-0.000008 +0.723500,-0.073205,0.521193,-0.168305,0.718968,-0.000008 +0.721174,-0.072985,0.519543,-0.167792,0.716677,-0.000008 +0.718848,-0.072764,0.517893,-0.167279,0.714386,-0.000008 +0.716522,-0.072543,0.516242,-0.166766,0.712096,-0.000008 +0.714196,-0.072323,0.514592,-0.166253,0.709805,-0.000008 +0.711871,-0.072102,0.512941,-0.165740,0.707514,-0.000008 +0.709545,-0.071881,0.511291,-0.165228,0.705224,-0.000008 +0.707219,-0.071661,0.509640,-0.164715,0.702933,-0.000008 +0.704893,-0.071440,0.507990,-0.164202,0.700642,-0.000008 +0.702567,-0.071220,0.506339,-0.163689,0.698351,-0.000008 +0.700241,-0.070999,0.504689,-0.163176,0.696061,-0.000008 +0.697916,-0.070778,0.503039,-0.162663,0.693770,-0.000008 +0.695590,-0.070558,0.501388,-0.162150,0.691479,-0.000008 +0.693264,-0.070337,0.499738,-0.161637,0.689189,-0.000008 +0.690938,-0.070116,0.498087,-0.161125,0.686898,-0.000008 +0.688612,-0.069896,0.496437,-0.160612,0.684607,-0.000008 +0.686286,-0.069675,0.494786,-0.160099,0.682316,-0.000008 +0.683961,-0.069455,0.493136,-0.159586,0.680026,-0.000008 +0.681635,-0.069234,0.491485,-0.159073,0.677735,-0.000008 +0.679309,-0.069013,0.489835,-0.158560,0.675444,-0.000008 +0.676983,-0.068793,0.488185,-0.158047,0.673154,-0.000008 +0.674657,-0.068572,0.486534,-0.157534,0.670863,-0.000008 +0.672331,-0.068351,0.484884,-0.157022,0.668572,-0.000008 +0.670005,-0.068131,0.483233,-0.156509,0.666282,-0.000008 +0.667680,-0.067910,0.481583,-0.155996,0.663991,-0.000008 +0.665354,-0.067689,0.479932,-0.155483,0.661700,-0.000008 +0.663028,-0.067469,0.478282,-0.154970,0.659409,-0.000008 +0.660702,-0.067248,0.476631,-0.154457,0.657119,-0.000008 +0.658376,-0.067028,0.474981,-0.153944,0.654828,-0.000008 +0.656050,-0.066807,0.473331,-0.153431,0.652537,-0.000008 +0.653725,-0.066586,0.471680,-0.152919,0.650247,-0.000008 +0.651399,-0.066366,0.470030,-0.152406,0.647956,-0.000008 +0.649073,-0.066145,0.468379,-0.151893,0.645665,-0.000008 +0.646747,-0.065924,0.466729,-0.151380,0.643374,-0.000008 +0.644421,-0.065704,0.465078,-0.150867,0.641084,-0.000008 +0.642095,-0.065483,0.463428,-0.150354,0.638793,-0.000008 +0.639770,-0.065263,0.461777,-0.149841,0.636502,-0.000008 +0.637444,-0.065042,0.460127,-0.149328,0.634212,-0.000008 +0.635118,-0.064821,0.458477,-0.148816,0.631921,-0.000008 +0.632792,-0.064601,0.456826,-0.148303,0.629630,-0.000008 +0.630466,-0.064380,0.455176,-0.147790,0.627340,-0.000008 +0.628140,-0.064159,0.453525,-0.147277,0.625049,-0.000008 +0.625814,-0.063939,0.451875,-0.146764,0.622758,-0.000008 +0.623489,-0.063718,0.450224,-0.146251,0.620467,-0.000008 +0.621163,-0.063497,0.448574,-0.145738,0.618177,-0.000008 +0.618837,-0.063277,0.446923,-0.145225,0.615886,-0.000008 +0.616511,-0.063056,0.445273,-0.144713,0.613595,-0.000008 +0.614185,-0.062836,0.443623,-0.144200,0.611305,-0.000008 +0.611859,-0.062615,0.441972,-0.143687,0.609014,-0.000008 +0.609534,-0.062394,0.440322,-0.143174,0.606723,-0.000008 +0.607208,-0.062174,0.438671,-0.142661,0.604432,-0.000008 +0.604882,-0.061953,0.437021,-0.142148,0.602142,-0.000008 +0.602556,-0.061732,0.435370,-0.141635,0.599851,-0.000008 +0.600230,-0.061512,0.433720,-0.141122,0.597560,-0.000008 +0.597904,-0.061291,0.432070,-0.140610,0.595270,-0.000008 +0.595579,-0.061071,0.430419,-0.140097,0.592979,-0.000008 +0.593253,-0.060850,0.428769,-0.139584,0.590688,-0.000008 +0.590927,-0.060629,0.427118,-0.139071,0.588397,-0.000008 +0.588601,-0.060409,0.425468,-0.138558,0.586107,-0.000008 +0.586275,-0.060188,0.423817,-0.138045,0.583816,-0.000008 +0.583949,-0.059967,0.422167,-0.137532,0.581525,-0.000008 +0.581623,-0.059747,0.420516,-0.137019,0.579235,-0.000008 +0.579298,-0.059526,0.418866,-0.136507,0.576944,-0.000008 +0.576972,-0.059305,0.417216,-0.135994,0.574653,-0.000008 +0.574646,-0.059085,0.415565,-0.135481,0.572363,-0.000008 +0.572320,-0.058864,0.413915,-0.134968,0.570072,-0.000008 +0.569994,-0.058644,0.412264,-0.134455,0.567781,-0.000008 +0.567668,-0.058423,0.410614,-0.133942,0.565490,-0.000008 +0.565343,-0.058202,0.408963,-0.133429,0.563200,-0.000008 +0.563017,-0.057982,0.407313,-0.132916,0.560909,-0.000008 +0.560691,-0.057761,0.405662,-0.132404,0.558618,-0.000008 +0.558365,-0.057540,0.404012,-0.131891,0.556328,-0.000008 +0.556039,-0.057320,0.402362,-0.131378,0.554037,-0.000008 +0.553713,-0.057099,0.400711,-0.130865,0.551746,-0.000008 +0.551388,-0.056878,0.399061,-0.130352,0.549455,-0.000008 +0.549062,-0.056658,0.397410,-0.129839,0.547165,-0.000008 +0.546736,-0.056437,0.395760,-0.129326,0.544874,-0.000008 +0.544410,-0.056217,0.394109,-0.128814,0.542583,-0.000008 +0.542084,-0.055996,0.392459,-0.128301,0.540293,-0.000008 +0.539758,-0.055775,0.390808,-0.127788,0.538002,-0.000008 +0.537432,-0.055555,0.389158,-0.127275,0.535711,-0.000008 +0.535107,-0.055334,0.387508,-0.126762,0.533420,-0.000008 +0.532781,-0.055114,0.385857,-0.126249,0.531130,-0.000008 +0.530455,-0.054893,0.384207,-0.125736,0.528839,-0.000008 +0.528129,-0.054672,0.382556,-0.125223,0.526548,-0.000008 +0.525803,-0.054452,0.380906,-0.124711,0.524258,-0.000008 +0.523477,-0.054231,0.379255,-0.124198,0.521967,-0.000008 +0.521152,-0.054010,0.377605,-0.123685,0.519676,-0.000008 +0.518826,-0.053790,0.375954,-0.123172,0.517386,-0.000008 +0.516500,-0.053569,0.374304,-0.122659,0.515095,-0.000008 +0.514174,-0.053348,0.372654,-0.122146,0.512804,-0.000008 +0.511848,-0.053128,0.371003,-0.121633,0.510513,-0.000008 +0.509522,-0.052907,0.369353,-0.121120,0.508223,-0.000008 +0.507197,-0.052686,0.367702,-0.120608,0.505932,-0.000008 +0.504871,-0.052466,0.366052,-0.120095,0.503641,-0.000008 +0.502545,-0.052245,0.364401,-0.119582,0.501351,-0.000008 +0.500219,-0.052025,0.362751,-0.119069,0.499060,-0.000008 +0.497893,-0.051804,0.361100,-0.118556,0.496769,-0.000008 +0.495567,-0.051583,0.359450,-0.118043,0.494478,-0.000008 +0.493241,-0.051363,0.357800,-0.117530,0.492188,-0.000008 +0.490916,-0.051142,0.356149,-0.117017,0.489897,-0.000008 +0.488590,-0.050922,0.354499,-0.116505,0.487606,-0.000008 +0.486264,-0.050701,0.352848,-0.115992,0.485316,-0.000008 +0.483938,-0.050480,0.351198,-0.115479,0.483025,-0.000008 +0.481612,-0.050260,0.349547,-0.114966,0.480734,-0.000008 +0.479286,-0.050039,0.347897,-0.114453,0.478444,-0.000008 +0.476961,-0.049818,0.346246,-0.113940,0.476153,-0.000008 +0.474635,-0.049598,0.344596,-0.113427,0.473862,-0.000008 +0.472309,-0.049377,0.342946,-0.112914,0.471571,-0.000008 +0.469983,-0.049156,0.341295,-0.112402,0.469281,-0.000008 +0.467657,-0.048936,0.339645,-0.111889,0.466990,-0.000008 +0.465331,-0.048715,0.337994,-0.111376,0.464699,-0.000008 +0.463006,-0.048495,0.336344,-0.110863,0.462409,-0.000008 +0.460680,-0.048274,0.334693,-0.110350,0.460118,-0.000008 +0.458354,-0.048053,0.333043,-0.109837,0.457827,-0.000008 +0.456028,-0.047833,0.331393,-0.109324,0.455536,-0.000008 +0.453702,-0.047612,0.329742,-0.108811,0.453246,-0.000008 +0.451376,-0.047391,0.328092,-0.108299,0.450955,-0.000008 +0.449051,-0.047171,0.326441,-0.107786,0.448664,-0.000008 +0.446725,-0.046950,0.324791,-0.107273,0.446374,-0.000008 +0.444399,-0.046730,0.323140,-0.106760,0.444083,-0.000008 +0.442073,-0.046509,0.321490,-0.106247,0.441792,-0.000008 +0.439747,-0.046288,0.319839,-0.105734,0.439501,-0.000008 +0.437421,-0.046068,0.318189,-0.105221,0.437211,-0.000008 +0.435095,-0.045847,0.316539,-0.104708,0.434920,-0.000008 +0.432770,-0.045626,0.314888,-0.104196,0.432629,-0.000008 +0.430444,-0.045406,0.313238,-0.103683,0.430339,-0.000008 +0.428118,-0.045185,0.311587,-0.103170,0.428048,-0.000008 +0.425792,-0.044964,0.309937,-0.102657,0.425757,-0.000008 +0.423466,-0.044744,0.308286,-0.102144,0.423467,-0.000008 +0.421140,-0.044523,0.306636,-0.101631,0.421176,-0.000008 +0.418815,-0.044303,0.304985,-0.101118,0.418885,-0.000008 +0.416489,-0.044082,0.303335,-0.100605,0.416594,-0.000008 +0.414163,-0.043861,0.301685,-0.100093,0.414304,-0.000008 +0.411837,-0.043641,0.300034,-0.099580,0.412013,-0.000008 +0.409511,-0.043420,0.298384,-0.099067,0.409722,-0.000008 +0.407185,-0.043199,0.296733,-0.098554,0.407432,-0.000008 +0.404860,-0.042979,0.295083,-0.098041,0.405141,-0.000008 +0.402534,-0.042758,0.293432,-0.097528,0.402850,-0.000008 +0.400208,-0.042537,0.291782,-0.097015,0.400559,-0.000008 +0.397882,-0.042317,0.290131,-0.096502,0.398269,-0.000008 +0.395556,-0.042096,0.288481,-0.095990,0.395978,-0.000008 +0.393230,-0.041876,0.286831,-0.095477,0.393687,-0.000008 +0.390904,-0.041655,0.285180,-0.094964,0.391397,-0.000008 +0.388579,-0.041434,0.283530,-0.094451,0.389106,-0.000008 +0.386253,-0.041214,0.281879,-0.093938,0.386815,-0.000008 +0.383927,-0.040993,0.280229,-0.093425,0.384524,-0.000008 +0.381601,-0.040773,0.278578,-0.092912,0.382234,-0.000008 +0.379275,-0.040552,0.276928,-0.092399,0.379943,-0.000008 +0.376949,-0.040331,0.275277,-0.091886,0.377652,-0.000008 +0.374624,-0.040111,0.273627,-0.091374,0.375362,-0.000008 +0.372298,-0.039890,0.271977,-0.090861,0.373071,-0.000008 +0.369972,-0.039669,0.270326,-0.090348,0.370780,-0.000008 +0.367646,-0.039449,0.268676,-0.089835,0.368490,-0.000008 +0.365320,-0.039228,0.267025,-0.089322,0.366199,-0.000008 +0.362994,-0.039007,0.265375,-0.088809,0.363908,-0.000008 +0.360669,-0.038787,0.263724,-0.088296,0.361617,-0.000008 +0.358343,-0.038566,0.262074,-0.087784,0.359327,-0.000008 +0.356017,-0.038345,0.260423,-0.087271,0.357036,-0.000008 +0.353691,-0.038125,0.258773,-0.086758,0.354745,-0.000008 +0.351365,-0.037904,0.257123,-0.086245,0.352455,-0.000008 +0.349039,-0.037684,0.255472,-0.085732,0.350164,-0.000008 +0.346713,-0.037463,0.253822,-0.085219,0.347873,-0.000008 +0.344388,-0.037242,0.252171,-0.084706,0.345582,-0.000008 +0.342062,-0.037022,0.250521,-0.084193,0.343292,-0.000008 +0.339736,-0.036801,0.248870,-0.083681,0.341001,-0.000008 +0.337410,-0.036581,0.247220,-0.083168,0.338710,-0.000008 +0.335084,-0.036360,0.245569,-0.082655,0.336420,-0.000008 +0.332758,-0.036139,0.243919,-0.082142,0.334129,-0.000008 +0.330433,-0.035919,0.242269,-0.081629,0.331838,-0.000008 +0.328107,-0.035698,0.240618,-0.081116,0.329548,-0.000008 +0.325781,-0.035477,0.238968,-0.080603,0.327257,-0.000008 +0.323455,-0.035257,0.237317,-0.080090,0.324966,-0.000008 +0.321129,-0.035036,0.235667,-0.079578,0.322675,-0.000008 +0.318803,-0.034815,0.234016,-0.079065,0.320385,-0.000008 +0.316478,-0.034595,0.232366,-0.078552,0.318094,-0.000008 +0.314152,-0.034374,0.230716,-0.078039,0.315803,-0.000008 +0.311826,-0.034154,0.229065,-0.077526,0.313513,-0.000008 +0.309500,-0.033933,0.227415,-0.077013,0.311222,-0.000008 +0.307174,-0.033712,0.225764,-0.076500,0.308931,-0.000008 +0.304848,-0.033492,0.224114,-0.075987,0.306640,-0.000008 +0.302522,-0.033271,0.222463,-0.075475,0.304350,-0.000008 +0.300197,-0.033050,0.220813,-0.074962,0.302059,-0.000008 +0.297871,-0.032830,0.219162,-0.074449,0.299768,-0.000008 +0.295545,-0.032609,0.217512,-0.073936,0.297478,-0.000008 +0.293219,-0.032389,0.215862,-0.073423,0.295187,-0.000008 +0.290893,-0.032168,0.214211,-0.072910,0.292896,-0.000008 +0.288567,-0.031947,0.212561,-0.072397,0.290605,-0.000008 +0.286242,-0.031727,0.210910,-0.071884,0.288315,-0.000008 +0.283916,-0.031506,0.209260,-0.071372,0.286024,-0.000008 +0.281590,-0.031285,0.207609,-0.070859,0.283733,-0.000008 +0.279264,-0.031065,0.205959,-0.070346,0.281443,-0.000008 +0.276938,-0.030844,0.204308,-0.069833,0.279152,-0.000008 +0.274612,-0.030624,0.202658,-0.069320,0.276861,-0.000008 +0.272287,-0.030403,0.201008,-0.068807,0.274571,-0.000008 +0.269961,-0.030182,0.199357,-0.068294,0.272280,-0.000008 +0.267635,-0.029962,0.197707,-0.067781,0.269989,-0.000008 +0.265309,-0.029741,0.196056,-0.067269,0.267698,-0.000008 +0.262983,-0.029520,0.194406,-0.066756,0.265408,-0.000008 +0.260657,-0.029300,0.192755,-0.066243,0.263117,-0.000008 +0.258331,-0.029079,0.191105,-0.065730,0.260826,-0.000008 +0.256006,-0.028858,0.189454,-0.065217,0.258536,-0.000008 +0.253680,-0.028638,0.187804,-0.064704,0.256245,-0.000008 +0.251354,-0.028417,0.186154,-0.064191,0.253954,-0.000008 +0.249028,-0.028196,0.184503,-0.063678,0.251663,-0.000008 +0.246702,-0.027976,0.182853,-0.063166,0.249373,-0.000008 +0.244376,-0.027755,0.181202,-0.062653,0.247082,-0.000008 +0.242051,-0.027535,0.179552,-0.062140,0.244791,-0.000008 +0.239725,-0.027314,0.177901,-0.061627,0.242501,-0.000008 +0.237399,-0.027093,0.176251,-0.061114,0.240210,-0.000008 +0.235073,-0.026873,0.174600,-0.060601,0.237919,-0.000008 +0.232747,-0.026652,0.172950,-0.060088,0.235628,-0.000008 +0.230421,-0.026432,0.171300,-0.059576,0.233338,-0.000008 +0.228096,-0.026211,0.169649,-0.059063,0.231047,-0.000008 +0.225770,-0.025990,0.167999,-0.058550,0.228756,-0.000008 +0.223444,-0.025770,0.166348,-0.058037,0.226466,-0.000008 +0.221118,-0.025549,0.164698,-0.057524,0.224175,-0.000008 +0.218792,-0.025328,0.163047,-0.057011,0.221884,-0.000008 +0.216466,-0.025108,0.161397,-0.056498,0.219594,-0.000008 +0.214141,-0.024887,0.159746,-0.055985,0.217303,-0.000008 +0.211815,-0.024666,0.158096,-0.055473,0.215012,-0.000008 +0.209489,-0.024446,0.156446,-0.054960,0.212721,-0.000008 +0.207163,-0.024225,0.154795,-0.054447,0.210431,-0.000008 +0.204837,-0.024005,0.153145,-0.053934,0.208140,-0.000008 +0.202511,-0.023784,0.151494,-0.053421,0.205849,-0.000008 +0.200185,-0.023563,0.149844,-0.052908,0.203559,-0.000008 +0.197860,-0.023343,0.148193,-0.052395,0.201268,-0.000008 +0.195534,-0.023122,0.146543,-0.051882,0.198977,-0.000008 +0.193208,-0.022901,0.144892,-0.051369,0.196686,-0.000008 +0.190882,-0.022681,0.143242,-0.050857,0.194396,-0.000008 +0.188556,-0.022460,0.141592,-0.050344,0.192105,-0.000008 +0.186230,-0.022239,0.139941,-0.049831,0.189814,-0.000008 +0.183905,-0.022019,0.138291,-0.049318,0.187524,-0.000008 +0.181579,-0.021798,0.136640,-0.048805,0.185233,-0.000008 +0.179253,-0.021578,0.134990,-0.048292,0.182942,-0.000008 +0.176927,-0.021357,0.133339,-0.047779,0.180652,-0.000008 +0.174601,-0.021136,0.131689,-0.047267,0.178361,-0.000008 +0.172275,-0.020916,0.130039,-0.046754,0.176070,-0.000008 +0.169950,-0.020695,0.128388,-0.046241,0.173779,-0.000008 +0.167624,-0.020475,0.126738,-0.045728,0.171489,-0.000008 +0.165298,-0.020254,0.125087,-0.045215,0.169198,-0.000008 +0.162972,-0.020033,0.123437,-0.044702,0.166907,-0.000008 +0.160646,-0.019813,0.121786,-0.044189,0.164617,-0.000008 +0.158320,-0.019592,0.120136,-0.043676,0.162326,-0.000008 +0.155994,-0.019371,0.118485,-0.043164,0.160035,-0.000008 +0.153669,-0.019151,0.116835,-0.042651,0.157744,-0.000008 +0.151343,-0.018930,0.115185,-0.042138,0.155454,-0.000008 +0.149017,-0.018709,0.113534,-0.041625,0.153163,-0.000008 +0.146691,-0.018489,0.111884,-0.041112,0.150872,-0.000008 +0.144365,-0.018268,0.110233,-0.040599,0.148582,-0.000008 +0.142039,-0.018048,0.108583,-0.040086,0.146291,-0.000008 +0.139714,-0.017827,0.106932,-0.039573,0.144000,-0.000008 +0.137388,-0.017606,0.105282,-0.039060,0.141709,-0.000008 +0.135062,-0.017386,0.103631,-0.038548,0.139419,-0.000008 +0.132736,-0.017165,0.101981,-0.038035,0.137128,-0.000008 +0.130410,-0.016944,0.100331,-0.037522,0.134837,-0.000008 +0.128084,-0.016724,0.098680,-0.037009,0.132547,-0.000008 +0.125759,-0.016503,0.097030,-0.036496,0.130256,-0.000008 +0.123433,-0.016282,0.095379,-0.035983,0.127965,-0.000008 +0.121107,-0.016062,0.093729,-0.035470,0.125675,-0.000008 +0.118781,-0.015841,0.092078,-0.034958,0.123384,-0.000008 +0.116455,-0.015621,0.090428,-0.034445,0.121093,-0.000008 +0.114129,-0.015400,0.088777,-0.033932,0.118802,-0.000008 +0.111803,-0.015179,0.087127,-0.033419,0.116512,-0.000008 +0.109478,-0.014959,0.085477,-0.032906,0.114221,-0.000008 +0.107152,-0.014738,0.083826,-0.032393,0.111930,-0.000008 +0.104826,-0.014517,0.082176,-0.031880,0.109640,-0.000008 +0.102500,-0.014297,0.080525,-0.031367,0.107349,-0.000008 +0.100174,-0.014076,0.078875,-0.030855,0.105058,-0.000008 +0.097848,-0.013856,0.077224,-0.030342,0.102767,-0.000008 +0.095523,-0.013635,0.075574,-0.029829,0.100477,-0.000008 +0.093197,-0.013414,0.073924,-0.029316,0.098186,-0.000008 +0.090871,-0.013194,0.072273,-0.028803,0.095895,-0.000008 +0.088545,-0.012973,0.070623,-0.028290,0.093605,-0.000008 +0.086219,-0.012752,0.068972,-0.027777,0.091314,-0.000008 +0.083893,-0.012532,0.067322,-0.027264,0.089023,-0.000008 +0.081568,-0.012311,0.065671,-0.026752,0.086733,-0.000008 +0.079242,-0.012091,0.064021,-0.026239,0.084442,-0.000008 +0.076916,-0.011870,0.062370,-0.025726,0.082151,-0.000008 +0.074590,-0.011649,0.060720,-0.025213,0.079860,-0.000008 +0.072264,-0.011429,0.059069,-0.024700,0.077570,-0.000008 +0.069938,-0.011208,0.057419,-0.024187,0.075279,-0.000008 +0.067613,-0.010987,0.055769,-0.023674,0.072988,-0.000008 +0.065289,-0.010767,0.054118,-0.023161,0.070697,-0.000008 +0.062971,-0.010546,0.052468,-0.022648,0.068407,-0.000008 +0.060660,-0.010325,0.050817,-0.022136,0.066116,-0.000008 +0.058359,-0.010105,0.049167,-0.021623,0.063825,-0.000008 +0.056070,-0.009884,0.047516,-0.021110,0.061535,-0.000008 +0.053797,-0.009664,0.045866,-0.020597,0.059245,-0.000008 +0.051542,-0.009443,0.044215,-0.020084,0.056959,-0.000008 +0.049307,-0.009222,0.042565,-0.019571,0.054681,-0.000008 +0.047095,-0.009002,0.040915,-0.019058,0.052412,-0.000008 +0.044908,-0.008781,0.039265,-0.018545,0.050157,-0.000008 +0.042750,-0.008560,0.037620,-0.018033,0.047919,-0.000008 +0.040623,-0.008340,0.035981,-0.017520,0.045699,-0.000008 +0.038529,-0.008119,0.034350,-0.017007,0.043503,-0.000008 +0.036471,-0.007899,0.032731,-0.016494,0.041332,-0.000008 +0.034451,-0.007678,0.031127,-0.015981,0.039190,-0.000008 +0.032473,-0.007457,0.029539,-0.015468,0.037080,-0.000008 +0.030539,-0.007237,0.027970,-0.014955,0.035005,-0.000008 +0.028650,-0.007016,0.026423,-0.014443,0.032968,-0.000008 +0.026811,-0.006795,0.024900,-0.013930,0.030973,-0.000008 +0.025024,-0.006575,0.023405,-0.013417,0.029022,-0.000008 +0.023290,-0.006354,0.021939,-0.012904,0.027118,-0.000008 +0.021614,-0.006133,0.020506,-0.012391,0.025265,-0.000008 +0.019996,-0.005913,0.019107,-0.011878,0.023466,-0.000008 +0.018441,-0.005692,0.017746,-0.011365,0.021724,-0.000008 +0.016950,-0.005472,0.016425,-0.010852,0.020041,-0.000008 +0.015526,-0.005251,0.015147,-0.010340,0.018422,-0.000008 +0.014172,-0.005030,0.013913,-0.009827,0.016869,-0.000008 +0.012891,-0.004810,0.012728,-0.009314,0.015385,-0.000008 +0.011684,-0.004589,0.011593,-0.008801,0.013974,-0.000008 +0.010554,-0.004368,0.010511,-0.008288,0.012638,-0.000008 +0.009500,-0.004148,0.009485,-0.007775,0.011380,-0.000008 +0.008518,-0.003927,0.008517,-0.007262,0.010205,-0.000008 +0.007606,-0.003707,0.007610,-0.006749,0.009112,-0.000008 +0.006762,-0.003486,0.006766,-0.006237,0.008101,-0.000008 +0.005982,-0.003265,0.005986,-0.005726,0.007167,-0.000008 +0.005265,-0.003045,0.005269,-0.005221,0.006308,-0.000008 +0.004608,-0.002824,0.004612,-0.004724,0.005521,-0.000008 +0.004008,-0.002603,0.004012,-0.004238,0.004802,-0.000008 +0.003462,-0.002383,0.003466,-0.003767,0.004148,-0.000008 +0.002969,-0.002162,0.002973,-0.003314,0.003556,-0.000008 +0.002524,-0.001942,0.002528,-0.002881,0.003024,-0.000008 +0.002126,-0.001722,0.002130,-0.002473,0.002548,-0.000008 +0.001773,-0.001506,0.001777,-0.002091,0.002124,-0.000008 +0.001461,-0.001297,0.001465,-0.001740,0.001750,-0.000008 +0.001188,-0.001097,0.001192,-0.001421,0.001423,-0.000008 +0.000951,-0.000908,0.000955,-0.001139,0.001140,-0.000008 +0.000748,-0.000733,0.000752,-0.000896,0.000897,-0.000008 +0.000576,-0.000575,0.000580,-0.000690,0.000691,-0.000008 +0.000433,-0.000436,0.000437,-0.000519,0.000519,-0.000008 +0.000316,-0.000319,0.000320,-0.000378,0.000379,-0.000008 +0.000222,-0.000226,0.000226,-0.000266,0.000266,-0.000008 +0.000149,-0.000152,0.000153,-0.000178,0.000179,-0.000008 +0.000094,-0.000097,0.000098,-0.000112,0.000113,-0.000008 +0.000055,-0.000058,0.000059,-0.000065,0.000065,-0.000008 +0.000028,-0.000032,0.000032,-0.000034,0.000034,-0.000008 +0.000012,-0.000016,0.000016,-0.000014,0.000015,-0.000008 +0.000004,-0.000007,0.000008,-0.000005,0.000005,-0.000008 +0.000001,-0.000004,0.000005,-0.000001,0.000001,-0.000008 +0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +-0.000000,-0.000000,0.000000,-0.000001,0.000001,0.000000 +-0.000003,-0.000003,0.000003,-0.000004,0.000004,0.000000 +-0.000012,-0.000012,0.000012,-0.000014,0.000014,0.000000 +-0.000028,-0.000028,0.000028,-0.000033,0.000033,0.000000 +-0.000054,-0.000054,0.000054,-0.000065,0.000065,0.000000 +-0.000093,-0.000093,0.000093,-0.000112,0.000112,0.000000 +-0.000148,-0.000148,0.000148,-0.000178,0.000178,0.000000 +-0.000222,-0.000222,0.000222,-0.000265,0.000265,0.000000 +-0.000315,-0.000315,0.000315,-0.000378,0.000378,0.000000 +-0.000433,-0.000432,0.000433,-0.000518,0.000518,0.000000 +-0.000576,-0.000571,0.000576,-0.000690,0.000690,0.000000 +-0.000748,-0.000729,0.000748,-0.000896,0.000896,0.000000 +-0.000951,-0.000904,0.000951,-0.001139,0.001139,0.000000 +-0.001187,-0.001093,0.001187,-0.001421,0.001423,0.000000 +-0.001460,-0.001293,0.001460,-0.001739,0.001750,0.000000 +-0.001772,-0.001503,0.001772,-0.002091,0.002123,0.000000 +-0.002126,-0.001718,0.002126,-0.002472,0.002547,0.000000 +-0.002524,-0.001938,0.002524,-0.002881,0.003023,0.000000 +-0.002968,-0.002158,0.002968,-0.003314,0.003556,0.000000 +-0.003462,-0.002379,0.003462,-0.003767,0.004147,0.000000 +-0.004007,-0.002599,0.004007,-0.004238,0.004801,0.000000 +-0.004608,-0.002820,0.004608,-0.004723,0.005520,0.000000 +-0.005265,-0.003041,0.005265,-0.005220,0.006308,0.000000 +-0.005982,-0.003261,0.005982,-0.005726,0.007167,0.000000 +-0.006761,-0.003482,0.006761,-0.006236,0.008100,0.000000 +-0.007606,-0.003703,0.007605,-0.006749,0.009112,0.000000 +-0.008517,-0.003923,0.008512,-0.007262,0.010204,0.000000 +-0.009499,-0.004144,0.009480,-0.007775,0.011380,0.000000 +-0.010554,-0.004364,0.010507,-0.008288,0.012637,0.000000 +-0.011684,-0.004585,0.011589,-0.008801,0.013973,0.000000 +-0.012890,-0.004806,0.012724,-0.009313,0.015384,0.000000 +-0.014172,-0.005026,0.013909,-0.009826,0.016868,0.000000 +-0.015526,-0.005247,0.015142,-0.010339,0.018421,0.000000 +-0.016949,-0.005468,0.016421,-0.010852,0.020041,0.000000 +-0.018440,-0.005688,0.017742,-0.011365,0.021723,0.000000 +-0.019996,-0.005909,0.019103,-0.011878,0.023465,0.000000 +-0.021613,-0.006130,0.020501,-0.012391,0.025265,0.000000 +-0.023290,-0.006350,0.021935,-0.012904,0.027118,0.000000 +-0.025023,-0.006571,0.023401,-0.013416,0.029021,0.000000 +-0.026811,-0.006791,0.024896,-0.013929,0.030972,0.000000 +-0.028650,-0.007012,0.026419,-0.014442,0.032968,0.000000 +-0.030538,-0.007233,0.027965,-0.014955,0.035004,0.000000 +-0.032473,-0.007453,0.029534,-0.015468,0.037079,0.000000 +-0.034451,-0.007674,0.031122,-0.015981,0.039189,0.000000 +-0.036470,-0.007895,0.032727,-0.016494,0.041331,0.000000 +-0.038528,-0.008115,0.034346,-0.017007,0.043502,0.000000 +-0.040622,-0.008336,0.035976,-0.017519,0.045699,0.000000 +-0.042750,-0.008556,0.037615,-0.018032,0.047918,0.000000 +-0.044908,-0.008777,0.039261,-0.018545,0.050157,0.000000 +-0.047094,-0.008998,0.040910,-0.019058,0.052412,0.000000 +-0.049306,-0.009218,0.042561,-0.019571,0.054680,0.000000 +-0.051541,-0.009439,0.044211,-0.020084,0.056959,0.000000 +-0.053797,-0.009660,0.045861,-0.020597,0.059244,0.000000 +-0.056070,-0.009880,0.047512,-0.021110,0.061534,0.000000 +-0.058358,-0.010101,0.049162,-0.021622,0.063825,0.000000 +-0.060659,-0.010322,0.050813,-0.022135,0.066115,0.000000 +-0.062970,-0.010542,0.052463,-0.022648,0.068406,0.000000 +-0.065289,-0.010763,0.054114,-0.023161,0.070697,0.000000 +-0.067612,-0.010983,0.055764,-0.023674,0.072988,0.000000 +-0.069938,-0.011204,0.057415,-0.024187,0.075278,0.000000 +-0.072264,-0.011425,0.059065,-0.024700,0.077569,0.000000 +-0.074590,-0.011645,0.060715,-0.025212,0.079860,0.000000 +-0.076915,-0.011866,0.062366,-0.025725,0.082150,0.000000 +-0.079241,-0.012087,0.064016,-0.026238,0.084441,0.000000 +-0.081567,-0.012307,0.065667,-0.026751,0.086732,0.000000 +-0.083893,-0.012528,0.067317,-0.027264,0.089023,0.000000 +-0.086219,-0.012748,0.068968,-0.027777,0.091313,0.000000 +-0.088545,-0.012969,0.070618,-0.028290,0.093604,0.000000 +-0.090871,-0.013190,0.072269,-0.028803,0.095895,0.000000 +-0.093196,-0.013410,0.073919,-0.029316,0.098185,0.000000 +-0.095522,-0.013631,0.075569,-0.029828,0.100476,0.000000 +-0.097848,-0.013852,0.077220,-0.030341,0.102767,0.000000 +-0.100174,-0.014072,0.078870,-0.030854,0.105057,0.000000 +-0.102500,-0.014293,0.080521,-0.031367,0.107348,0.000000 +-0.104826,-0.014514,0.082171,-0.031880,0.109639,0.000000 +-0.107151,-0.014734,0.083822,-0.032393,0.111930,0.000000 +-0.109477,-0.014955,0.085472,-0.032906,0.114220,0.000000 +-0.111803,-0.015175,0.087123,-0.033418,0.116511,0.000000 +-0.114129,-0.015396,0.088773,-0.033931,0.118802,0.000000 +-0.116455,-0.015617,0.090423,-0.034444,0.121092,0.000000 +-0.118781,-0.015837,0.092074,-0.034957,0.123383,0.000000 +-0.121106,-0.016058,0.093724,-0.035470,0.125674,0.000000 +-0.123432,-0.016279,0.095375,-0.035983,0.127965,0.000000 +-0.125758,-0.016499,0.097025,-0.036496,0.130255,0.000000 +-0.128084,-0.016720,0.098676,-0.037009,0.132546,0.000000 +-0.130410,-0.016940,0.100326,-0.037521,0.134837,0.000000 +-0.132736,-0.017161,0.101977,-0.038034,0.137127,0.000000 +-0.135061,-0.017382,0.103627,-0.038547,0.139418,0.000000 +-0.137387,-0.017602,0.105277,-0.039060,0.141709,0.000000 +-0.139713,-0.017823,0.106928,-0.039573,0.144000,0.000000 +-0.142039,-0.018044,0.108578,-0.040086,0.146290,0.000000 +-0.144365,-0.018264,0.110229,-0.040599,0.148581,0.000000 +-0.146691,-0.018485,0.111879,-0.041112,0.150872,0.000000 +-0.149016,-0.018705,0.113530,-0.041625,0.153162,0.000000 +-0.151342,-0.018926,0.115180,-0.042137,0.155453,0.000000 +-0.153668,-0.019147,0.116831,-0.042650,0.157744,0.000000 +-0.155994,-0.019367,0.118481,-0.043163,0.160034,0.000000 +-0.158320,-0.019588,0.120131,-0.043676,0.162325,0.000000 +-0.160646,-0.019809,0.121782,-0.044189,0.164616,0.000000 +-0.162972,-0.020029,0.123432,-0.044702,0.166907,0.000000 +-0.165297,-0.020250,0.125083,-0.045215,0.169197,0.000000 +-0.167623,-0.020470,0.126733,-0.045727,0.171488,0.000000 +-0.169949,-0.020691,0.128384,-0.046240,0.173779,0.000000 +-0.172275,-0.020912,0.130034,-0.046753,0.176069,0.000000 +-0.174601,-0.021132,0.131684,-0.047266,0.178360,0.000000 +-0.176927,-0.021353,0.133335,-0.047779,0.180651,0.000000 +-0.179252,-0.021574,0.134985,-0.048292,0.182942,0.000000 +-0.181578,-0.021794,0.136636,-0.048805,0.185232,0.000000 +-0.183904,-0.022015,0.138286,-0.049318,0.187523,0.000000 +-0.186230,-0.022235,0.139937,-0.049831,0.189814,0.000000 +-0.188556,-0.022456,0.141587,-0.050343,0.192104,0.000000 +-0.190882,-0.022677,0.143238,-0.050856,0.194395,0.000000 +-0.193207,-0.022897,0.144888,-0.051369,0.196686,0.000000 +-0.195533,-0.023118,0.146538,-0.051882,0.198976,0.000000 +-0.197859,-0.023339,0.148189,-0.052395,0.201267,0.000000 +-0.200185,-0.023559,0.149839,-0.052908,0.203558,0.000000 +-0.202511,-0.023780,0.151490,-0.053421,0.205849,0.000000 +-0.204837,-0.024001,0.153140,-0.053934,0.208139,0.000000 +-0.207163,-0.024221,0.154791,-0.054446,0.210430,0.000000 +-0.209488,-0.024442,0.156441,-0.054959,0.212721,0.000000 +-0.211814,-0.024663,0.158092,-0.055472,0.215011,0.000000 +-0.214140,-0.024883,0.159742,-0.055985,0.217302,0.000000 +-0.216466,-0.025104,0.161392,-0.056498,0.219593,0.000000 +-0.218792,-0.025324,0.163043,-0.057011,0.221884,0.000000 +-0.221118,-0.025545,0.164693,-0.057524,0.224174,0.000000 +-0.223443,-0.025766,0.166344,-0.058036,0.226465,0.000000 +-0.225769,-0.025986,0.167994,-0.058549,0.228756,0.000000 +-0.228095,-0.026207,0.169645,-0.059062,0.231046,0.000000 +-0.230421,-0.026428,0.171295,-0.059575,0.233337,0.000000 +-0.232747,-0.026648,0.172946,-0.060088,0.235628,0.000000 +-0.235073,-0.026869,0.174596,-0.060601,0.237919,0.000000 +-0.237398,-0.027089,0.176246,-0.061114,0.240209,0.000000 +-0.239724,-0.027310,0.177897,-0.061627,0.242500,0.000000 +-0.242050,-0.027531,0.179547,-0.062140,0.244791,0.000000 +-0.244376,-0.027751,0.181198,-0.062652,0.247081,0.000000 +-0.246702,-0.027972,0.182848,-0.063165,0.249372,0.000000 +-0.249028,-0.028193,0.184499,-0.063678,0.251663,0.000000 +-0.251354,-0.028413,0.186149,-0.064191,0.253953,0.000000 +-0.253679,-0.028634,0.187800,-0.064704,0.256244,0.000000 +-0.256005,-0.028855,0.189450,-0.065217,0.258535,0.000000 +-0.258331,-0.029075,0.191100,-0.065730,0.260826,0.000000 +-0.260657,-0.029296,0.192751,-0.066242,0.263116,0.000000 +-0.262983,-0.029516,0.194401,-0.066755,0.265407,0.000000 +-0.265309,-0.029737,0.196052,-0.067268,0.267698,0.000000 +-0.267634,-0.029958,0.197702,-0.067781,0.269988,0.000000 +-0.269960,-0.030178,0.199353,-0.068294,0.272279,0.000000 +-0.272286,-0.030399,0.201003,-0.068807,0.274570,0.000000 +-0.274612,-0.030620,0.202654,-0.069320,0.276861,0.000000 +-0.276938,-0.030840,0.204304,-0.069833,0.279151,0.000000 +-0.279264,-0.031061,0.205954,-0.070346,0.281442,0.000000 +-0.281589,-0.031281,0.207605,-0.070858,0.283733,0.000000 +-0.283915,-0.031502,0.209255,-0.071371,0.286023,0.000000 +-0.286241,-0.031723,0.210906,-0.071884,0.288314,0.000000 +-0.288567,-0.031943,0.212556,-0.072397,0.290605,0.000000 +-0.290893,-0.032164,0.214207,-0.072910,0.292896,0.000000 +-0.293219,-0.032384,0.215857,-0.073423,0.295186,0.000000 +-0.295545,-0.032605,0.217508,-0.073936,0.297477,0.000000 +-0.297870,-0.032826,0.219158,-0.074448,0.299768,0.000000 +-0.300196,-0.033046,0.220808,-0.074961,0.302058,0.000000 +-0.302522,-0.033267,0.222459,-0.075474,0.304349,0.000000 +-0.304848,-0.033488,0.224109,-0.075987,0.306640,0.000000 +-0.307174,-0.033708,0.225760,-0.076500,0.308930,0.000000 +-0.309500,-0.033929,0.227410,-0.077013,0.311221,0.000000 +-0.311825,-0.034150,0.229061,-0.077526,0.313512,0.000000 +-0.314151,-0.034370,0.230711,-0.078039,0.315803,0.000000 +-0.316477,-0.034591,0.232361,-0.078551,0.318093,0.000000 +-0.318803,-0.034812,0.234012,-0.079064,0.320384,0.000000 +-0.321129,-0.035032,0.235662,-0.079577,0.322675,0.000000 +-0.323455,-0.035253,0.237313,-0.080090,0.324965,0.000000 +-0.325780,-0.035473,0.238963,-0.080603,0.327256,0.000000 +-0.328106,-0.035694,0.240614,-0.081116,0.329547,0.000000 +-0.330432,-0.035915,0.242264,-0.081629,0.331838,0.000000 +-0.332758,-0.036135,0.243915,-0.082142,0.334128,0.000000 +-0.335084,-0.036356,0.245565,-0.082654,0.336419,0.000000 +-0.337410,-0.036576,0.247215,-0.083167,0.338710,0.000000 +-0.339736,-0.036797,0.248866,-0.083680,0.341000,0.000000 +-0.342061,-0.037018,0.250516,-0.084193,0.343291,0.000000 +-0.344387,-0.037238,0.252167,-0.084706,0.345582,0.000000 +-0.346713,-0.037459,0.253817,-0.085219,0.347872,0.000000 +-0.349039,-0.037680,0.255468,-0.085732,0.350163,0.000000 +-0.351365,-0.037900,0.257118,-0.086245,0.352454,0.000000 +-0.353691,-0.038121,0.258769,-0.086757,0.354745,0.000000 +-0.356016,-0.038342,0.260419,-0.087270,0.357035,0.000000 +-0.358342,-0.038562,0.262069,-0.087783,0.359326,0.000000 +-0.360668,-0.038783,0.263720,-0.088296,0.361617,0.000000 +-0.362994,-0.039004,0.265370,-0.088809,0.363907,0.000000 +-0.365320,-0.039224,0.267021,-0.089322,0.366198,0.000000 +-0.367646,-0.039445,0.268671,-0.089835,0.368489,0.000000 +-0.369971,-0.039665,0.270322,-0.090348,0.370780,0.000000 +-0.372297,-0.039886,0.271972,-0.090860,0.373070,0.000000 +-0.374623,-0.040107,0.273623,-0.091373,0.375361,0.000000 +-0.376949,-0.040327,0.275273,-0.091886,0.377652,0.000000 +-0.379275,-0.040548,0.276923,-0.092399,0.379942,0.000000 +-0.381601,-0.040768,0.278574,-0.092912,0.382233,0.000000 +-0.383926,-0.040989,0.280224,-0.093425,0.384524,0.000000 +-0.386252,-0.041210,0.281875,-0.093938,0.386815,0.000000 +-0.388578,-0.041430,0.283525,-0.094451,0.389105,0.000000 +-0.390904,-0.041651,0.285176,-0.094963,0.391396,0.000000 +-0.393230,-0.041872,0.286826,-0.095476,0.393687,0.000000 +-0.395556,-0.042092,0.288477,-0.095989,0.395977,0.000000 +-0.397882,-0.042313,0.290127,-0.096502,0.398268,0.000000 +-0.400207,-0.042534,0.291777,-0.097015,0.400559,0.000000 +-0.402533,-0.042754,0.293428,-0.097528,0.402849,0.000000 +-0.404859,-0.042975,0.295078,-0.098041,0.405140,0.000000 +-0.407185,-0.043195,0.296729,-0.098554,0.407431,0.000000 +-0.409511,-0.043416,0.298379,-0.099066,0.409722,0.000000 +-0.411837,-0.043637,0.300030,-0.099579,0.412012,0.000000 +-0.414162,-0.043857,0.301680,-0.100092,0.414303,0.000000 +-0.416488,-0.044078,0.303331,-0.100605,0.416594,0.000000 +-0.418814,-0.044299,0.304981,-0.101118,0.418884,0.000000 +-0.421140,-0.044519,0.306631,-0.101631,0.421175,0.000000 +-0.423466,-0.044740,0.308282,-0.102144,0.423466,0.000000 +-0.425792,-0.044961,0.309932,-0.102657,0.425757,0.000000 +-0.428117,-0.045181,0.311583,-0.103169,0.428047,0.000000 +-0.430443,-0.045402,0.313233,-0.103682,0.430338,0.000000 +-0.432769,-0.045622,0.314884,-0.104195,0.432629,0.000000 +-0.435095,-0.045843,0.316534,-0.104708,0.434919,0.000000 +-0.437421,-0.046064,0.318184,-0.105221,0.437210,0.000000 +-0.439747,-0.046284,0.319835,-0.105734,0.439501,0.000000 +-0.442073,-0.046505,0.321485,-0.106247,0.441792,0.000000 +-0.444398,-0.046726,0.323136,-0.106760,0.444082,0.000000 +-0.446724,-0.046946,0.324786,-0.107272,0.446373,0.000000 +-0.449050,-0.047167,0.326437,-0.107785,0.448664,0.000000 +-0.451376,-0.047387,0.328087,-0.108298,0.450954,0.000000 +-0.453702,-0.047608,0.329738,-0.108811,0.453245,0.000000 +-0.456028,-0.047829,0.331388,-0.109324,0.455536,0.000000 +-0.458353,-0.048049,0.333038,-0.109837,0.457826,0.000000 +-0.460679,-0.048270,0.334689,-0.110350,0.460117,0.000000 +-0.463005,-0.048491,0.336339,-0.110863,0.462408,0.000000 +-0.465331,-0.048711,0.337990,-0.111375,0.464699,0.000000 +-0.467657,-0.048932,0.339640,-0.111888,0.466989,0.000000 +-0.469983,-0.049153,0.341291,-0.112401,0.469280,0.000000 +-0.472308,-0.049373,0.342941,-0.112914,0.471571,0.000000 +-0.474634,-0.049594,0.344592,-0.113427,0.473861,0.000000 +-0.476960,-0.049814,0.346242,-0.113940,0.476152,0.000000 +-0.479286,-0.050035,0.347892,-0.114453,0.478443,0.000000 +-0.481612,-0.050256,0.349543,-0.114966,0.480734,0.000000 +-0.483938,-0.050476,0.351193,-0.115478,0.483024,0.000000 +-0.486264,-0.050697,0.352844,-0.115991,0.485315,0.000000 +-0.488589,-0.050917,0.354494,-0.116504,0.487606,0.000000 +-0.490915,-0.051138,0.356145,-0.117017,0.489896,0.000000 +-0.493241,-0.051359,0.357795,-0.117530,0.492187,0.000000 +-0.495567,-0.051579,0.359446,-0.118043,0.494478,0.000000 +-0.497893,-0.051800,0.361096,-0.118556,0.496768,0.000000 +-0.500219,-0.052021,0.362746,-0.119069,0.499059,0.000000 +-0.502544,-0.052241,0.364397,-0.119581,0.501350,0.000000 +-0.504870,-0.052462,0.366047,-0.120094,0.503641,0.000000 +-0.507196,-0.052683,0.367698,-0.120607,0.505931,0.000000 +-0.509522,-0.052903,0.369348,-0.121120,0.508222,0.000000 +-0.511848,-0.053124,0.370999,-0.121633,0.510513,0.000000 +-0.514174,-0.053345,0.372649,-0.122146,0.512803,0.000000 +-0.516499,-0.053565,0.374300,-0.122659,0.515094,0.000000 +-0.518825,-0.053786,0.375950,-0.123172,0.517385,0.000000 +-0.521151,-0.054006,0.377600,-0.123684,0.519676,0.000000 +-0.523477,-0.054227,0.379251,-0.124197,0.521966,0.000000 +-0.525803,-0.054448,0.380901,-0.124710,0.524257,0.000000 +-0.528129,-0.054668,0.382552,-0.125223,0.526548,0.000000 +-0.530455,-0.054889,0.384202,-0.125736,0.528838,0.000000 +-0.532780,-0.055109,0.385853,-0.126249,0.531129,0.000000 +-0.535106,-0.055330,0.387503,-0.126762,0.533420,0.000000 +-0.537432,-0.055551,0.389154,-0.127275,0.535711,0.000000 +-0.539758,-0.055771,0.390804,-0.127787,0.538001,0.000000 +-0.542084,-0.055992,0.392454,-0.128300,0.540292,0.000000 +-0.544410,-0.056213,0.394105,-0.128813,0.542583,0.000000 +-0.546735,-0.056433,0.395755,-0.129326,0.544873,0.000000 +-0.549061,-0.056654,0.397406,-0.129839,0.547164,0.000000 +-0.551387,-0.056875,0.399056,-0.130352,0.549455,0.000000 +-0.553713,-0.057095,0.400707,-0.130865,0.551745,0.000000 +-0.556039,-0.057316,0.402357,-0.131378,0.554036,0.000000 +-0.558365,-0.057536,0.404008,-0.131890,0.556327,0.000000 +-0.560690,-0.057757,0.405658,-0.132403,0.558618,0.000000 +-0.563016,-0.057978,0.407308,-0.132916,0.560908,0.000000 +-0.565342,-0.058198,0.408959,-0.133429,0.563199,0.000000 +-0.567668,-0.058419,0.410609,-0.133942,0.565490,0.000000 +-0.569994,-0.058640,0.412260,-0.134455,0.567780,0.000000 +-0.572320,-0.058860,0.413910,-0.134968,0.570071,0.000000 +-0.574646,-0.059081,0.415561,-0.135480,0.572362,0.000000 +-0.576971,-0.059302,0.417211,-0.135993,0.574653,0.000000 +-0.579297,-0.059522,0.418861,-0.136506,0.576943,0.000000 +-0.581623,-0.059743,0.420512,-0.137019,0.579234,0.000000 +-0.583949,-0.059963,0.422162,-0.137532,0.581525,0.000000 +-0.586275,-0.060184,0.423813,-0.138045,0.583815,0.000000 +-0.588601,-0.060405,0.425463,-0.138558,0.586106,0.000000 +-0.590926,-0.060625,0.427114,-0.139071,0.588397,0.000000 +-0.593252,-0.060846,0.428764,-0.139583,0.590688,0.000000 +-0.595578,-0.061067,0.430415,-0.140096,0.592978,0.000000 +-0.597904,-0.061287,0.432065,-0.140609,0.595269,0.000000 +-0.600230,-0.061508,0.433715,-0.141122,0.597560,0.000000 +-0.602556,-0.061728,0.435366,-0.141635,0.599850,0.000000 +-0.604881,-0.061949,0.437016,-0.142148,0.602141,0.000000 +-0.607207,-0.062170,0.438667,-0.142661,0.604432,0.000000 +-0.609533,-0.062390,0.440317,-0.143174,0.606722,0.000000 +-0.611859,-0.062611,0.441968,-0.143686,0.609013,0.000000 +-0.614185,-0.062832,0.443618,-0.144199,0.611304,0.000000 +-0.616511,-0.063052,0.445269,-0.144712,0.613595,0.000000 +-0.618836,-0.063273,0.446919,-0.145225,0.615885,0.000000 +-0.621162,-0.063493,0.448569,-0.145738,0.618176,0.000000 +-0.623488,-0.063714,0.450220,-0.146251,0.620467,0.000000 +-0.625814,-0.063935,0.451870,-0.146764,0.622757,0.000000 +-0.628140,-0.064155,0.453521,-0.147277,0.625048,0.000000 +-0.630466,-0.064376,0.455171,-0.147789,0.627339,0.000000 +-0.632792,-0.064597,0.456822,-0.148302,0.629630,0.000000 +-0.635117,-0.064817,0.458472,-0.148815,0.631920,0.000000 +-0.637443,-0.065038,0.460123,-0.149328,0.634211,0.000000 +-0.639769,-0.065258,0.461773,-0.149841,0.636502,0.000000 +-0.642095,-0.065479,0.463423,-0.150354,0.638792,0.000000 +-0.644421,-0.065700,0.465074,-0.150867,0.641083,0.000000 +-0.646747,-0.065920,0.466724,-0.151380,0.643374,0.000000 +-0.649072,-0.066141,0.468375,-0.151892,0.645664,0.000000 +-0.651398,-0.066362,0.470025,-0.152405,0.647955,0.000000 +-0.653724,-0.066582,0.471676,-0.152918,0.650246,0.000000 +-0.656050,-0.066803,0.473326,-0.153431,0.652537,0.000000 +-0.658376,-0.067024,0.474977,-0.153944,0.654827,0.000000 +-0.660702,-0.067244,0.476627,-0.154457,0.657118,0.000000 +-0.663027,-0.067465,0.478277,-0.154970,0.659409,0.000000 +-0.665353,-0.067685,0.479928,-0.155483,0.661699,0.000000 +-0.667679,-0.067906,0.481578,-0.155995,0.663990,0.000000 +-0.670005,-0.068127,0.483229,-0.156508,0.666281,0.000000 +-0.672331,-0.068347,0.484879,-0.157021,0.668572,0.000000 +-0.674657,-0.068568,0.486530,-0.157534,0.670862,0.000000 +-0.676983,-0.068789,0.488180,-0.158047,0.673153,0.000000 +-0.679308,-0.069009,0.489831,-0.158560,0.675444,0.000000 +-0.681634,-0.069230,0.491481,-0.159073,0.677734,0.000000 +-0.683960,-0.069450,0.493131,-0.159586,0.680025,0.000000 +-0.686286,-0.069671,0.494782,-0.160098,0.682316,0.000000 +-0.688612,-0.069892,0.496432,-0.160611,0.684607,0.000000 +-0.690938,-0.070112,0.498083,-0.161124,0.686897,0.000000 +-0.693263,-0.070333,0.499733,-0.161637,0.689188,0.000000 +-0.695589,-0.070554,0.501384,-0.162150,0.691479,0.000000 +-0.697915,-0.070774,0.503034,-0.162663,0.693769,0.000000 +-0.700241,-0.070995,0.504685,-0.163176,0.696060,0.000000 +-0.702567,-0.071216,0.506335,-0.163689,0.698351,0.000000 +-0.704893,-0.071436,0.507985,-0.164201,0.700641,0.000000 +-0.707218,-0.071657,0.509636,-0.164714,0.702932,0.000000 +-0.709544,-0.071877,0.511286,-0.165227,0.705223,0.000000 +-0.711870,-0.072098,0.512937,-0.165740,0.707514,0.000000 +-0.714196,-0.072319,0.514587,-0.166253,0.709804,0.000000 +-0.716522,-0.072539,0.516238,-0.166766,0.712095,0.000000 +-0.718848,-0.072760,0.517888,-0.167279,0.714386,0.000000 +-0.721174,-0.072981,0.519538,-0.167792,0.716676,0.000000 +-0.723499,-0.073201,0.521189,-0.168304,0.718967,0.000000 +-0.725825,-0.073422,0.522839,-0.168817,0.721258,0.000000 +-0.728151,-0.073643,0.524490,-0.169330,0.723549,0.000000 +-0.730477,-0.073863,0.526140,-0.169843,0.725839,0.000000 +-0.732803,-0.074084,0.527791,-0.170356,0.728130,0.000000 +-0.735129,-0.074304,0.529441,-0.170869,0.730421,0.000000 +-0.737454,-0.074525,0.531092,-0.171382,0.732711,0.000000 +-0.739780,-0.074746,0.532742,-0.171895,0.735002,0.000000 +-0.742106,-0.074966,0.534392,-0.172407,0.737293,0.000000 +-0.744432,-0.075187,0.536043,-0.172920,0.739584,0.000000 +-0.746758,-0.075408,0.537693,-0.173433,0.741874,0.000000 +-0.749084,-0.075628,0.539344,-0.173946,0.744165,0.000000 +-0.751409,-0.075849,0.540994,-0.174459,0.746456,0.000000 +-0.753735,-0.076069,0.542645,-0.174972,0.748746,0.000000 +-0.756061,-0.076290,0.544295,-0.175485,0.751037,0.000000 +-0.758387,-0.076511,0.545946,-0.175998,0.753328,0.000000 +-0.760713,-0.076731,0.547596,-0.176510,0.755618,0.000000 +-0.763039,-0.076952,0.549246,-0.177023,0.757909,0.000000 +-0.765365,-0.077173,0.550897,-0.177536,0.760200,0.000000 +-0.767690,-0.077393,0.552547,-0.178049,0.762491,0.000000 +-0.770016,-0.077614,0.554198,-0.178562,0.764781,0.000000 +-0.772342,-0.077835,0.555848,-0.179075,0.767072,0.000000 +-0.774668,-0.078055,0.557499,-0.179588,0.769363,0.000000 +-0.776994,-0.078276,0.559149,-0.180101,0.771653,0.000000 +-0.779320,-0.078496,0.560800,-0.180613,0.773944,0.000000 +-0.781645,-0.078717,0.562450,-0.181126,0.776235,0.000000 +-0.783971,-0.078938,0.564100,-0.181639,0.778526,0.000000 +-0.786297,-0.079158,0.565751,-0.182152,0.780816,0.000000 +-0.788623,-0.079379,0.567401,-0.182665,0.783107,0.000000 +-0.790949,-0.079600,0.569052,-0.183178,0.785398,0.000000 +-0.793275,-0.079820,0.570702,-0.183691,0.787688,0.000000 +-0.795600,-0.080041,0.572353,-0.184204,0.789979,0.000000 +-0.797926,-0.080261,0.574003,-0.184716,0.792270,0.000000 +-0.800252,-0.080482,0.575654,-0.185229,0.794560,0.000000 +-0.802578,-0.080703,0.577304,-0.185742,0.796851,0.000000 +-0.804904,-0.080923,0.578954,-0.186255,0.799142,0.000000 +-0.807230,-0.081144,0.580605,-0.186768,0.801433,0.000000 +-0.809556,-0.081365,0.582255,-0.187281,0.803723,0.000000 +-0.811881,-0.081585,0.583906,-0.187794,0.806014,0.000000 +-0.814207,-0.081806,0.585556,-0.188307,0.808305,0.000000 +-0.816533,-0.082027,0.587207,-0.188819,0.810595,0.000000 +-0.818859,-0.082247,0.588857,-0.189332,0.812886,0.000000 +-0.821185,-0.082468,0.590508,-0.189845,0.815177,0.000000 +-0.823511,-0.082688,0.592158,-0.190358,0.817468,0.000000 +-0.825836,-0.082909,0.593808,-0.190871,0.819758,0.000000 +-0.828162,-0.083130,0.595459,-0.191384,0.822049,0.000000 +-0.830488,-0.083350,0.597109,-0.191897,0.824340,0.000000 +-0.832814,-0.083571,0.598760,-0.192410,0.826630,0.000000 +-0.835140,-0.083792,0.600410,-0.192922,0.828921,0.000000 +-0.837466,-0.084012,0.602061,-0.193435,0.831212,0.000000 +-0.839791,-0.084233,0.603711,-0.193948,0.833503,0.000000 +-0.842117,-0.084453,0.605362,-0.194461,0.835793,0.000000 +-0.844443,-0.084674,0.607012,-0.194974,0.838084,0.000000 +-0.846769,-0.084895,0.608662,-0.195487,0.840375,0.000000 +-0.849095,-0.085115,0.610313,-0.196000,0.842665,0.000000 +-0.851421,-0.085336,0.611963,-0.196513,0.844956,0.000000 +-0.853747,-0.085556,0.613614,-0.197025,0.847247,0.000000 +-0.856072,-0.085777,0.615264,-0.197538,0.849537,0.000000 +-0.858398,-0.085998,0.616915,-0.198051,0.851828,0.000000 +-0.860724,-0.086218,0.618565,-0.198564,0.854119,0.000000 +-0.863050,-0.086439,0.620215,-0.199077,0.856410,0.000000 +-0.865376,-0.086660,0.621866,-0.199590,0.858700,0.000000 +-0.867702,-0.086880,0.623516,-0.200103,0.860991,0.000000 +-0.870027,-0.087101,0.625167,-0.200616,0.863282,0.000000 +-0.872353,-0.087322,0.626817,-0.201128,0.865572,0.000000 +-0.874679,-0.087542,0.628468,-0.201641,0.867863,0.000000 +-0.877005,-0.087763,0.630118,-0.202154,0.870154,0.000000 +-0.879331,-0.087984,0.631769,-0.202667,0.872445,0.000000 +-0.881657,-0.088204,0.633419,-0.203180,0.874735,0.000000 +-0.883982,-0.088425,0.635069,-0.203693,0.877026,0.000000 +-0.886308,-0.088645,0.636720,-0.204206,0.879317,0.000000 +-0.888634,-0.088866,0.638370,-0.204719,0.881607,0.000000 +-0.890960,-0.089087,0.640021,-0.205231,0.883898,0.000000 +-0.893286,-0.089307,0.641671,-0.205744,0.886189,0.000000 +-0.895612,-0.089528,0.643322,-0.206257,0.888480,0.000000 +-0.897937,-0.089748,0.644972,-0.206770,0.890770,0.000000 +-0.900263,-0.089969,0.646623,-0.207283,0.893061,0.000000 +-0.902589,-0.090190,0.648273,-0.207796,0.895352,0.000000 +-0.904915,-0.090410,0.649923,-0.208309,0.897642,0.000000 +-0.907241,-0.090631,0.651574,-0.208822,0.899933,0.000000 +-0.909567,-0.090852,0.653224,-0.209334,0.902224,0.000000 +-0.911893,-0.091072,0.654875,-0.209847,0.904514,0.000000 +-0.914218,-0.091293,0.656525,-0.210360,0.906805,0.000000 +-0.916544,-0.091514,0.658176,-0.210873,0.909096,0.000000 +-0.918870,-0.091734,0.659826,-0.211386,0.911387,0.000000 +-0.921196,-0.091955,0.661477,-0.211899,0.913677,0.000000 +-0.923522,-0.092175,0.663127,-0.212412,0.915968,0.000000 +-0.925848,-0.092396,0.664777,-0.212925,0.918259,0.000000 +-0.928173,-0.092617,0.666428,-0.213437,0.920549,0.000000 +-0.930499,-0.092837,0.668078,-0.213950,0.922840,0.000000 +-0.932825,-0.093058,0.669729,-0.214463,0.925131,0.000000 +-0.935151,-0.093279,0.671379,-0.214976,0.927422,0.000000 +-0.937477,-0.093499,0.673030,-0.215489,0.929712,0.000000 +-0.939803,-0.093720,0.674680,-0.216002,0.932003,0.000000 +-0.942128,-0.093940,0.676331,-0.216515,0.934294,0.000000 +-0.944454,-0.094161,0.677981,-0.217028,0.936584,0.000000 +-0.946780,-0.094382,0.679631,-0.217540,0.938875,0.000000 +-0.949106,-0.094602,0.681282,-0.218053,0.941166,0.000000 +-0.951432,-0.094823,0.682932,-0.218566,0.943456,0.000000 +-0.953758,-0.095044,0.684583,-0.219079,0.945747,0.000000 +-0.956084,-0.095264,0.686233,-0.219592,0.948038,0.000000 +-0.958409,-0.095485,0.687884,-0.220105,0.950329,0.000000 +-0.960735,-0.095706,0.689534,-0.220618,0.952619,0.000000 +-0.963061,-0.095926,0.691185,-0.221131,0.954910,0.000000 +-0.965387,-0.096147,0.692835,-0.221643,0.957201,0.000000 +-0.967713,-0.096367,0.694485,-0.222156,0.959491,0.000000 +-0.970039,-0.096588,0.696136,-0.222669,0.961782,0.000000 +-0.972364,-0.096809,0.697786,-0.223182,0.964073,0.000000 +-0.974690,-0.097029,0.699437,-0.223695,0.966364,0.000000 +-0.977016,-0.097250,0.701087,-0.224208,0.968654,0.000000 +-0.979342,-0.097471,0.702738,-0.224721,0.970945,0.000000 +-0.981668,-0.097691,0.704388,-0.225234,0.973236,0.000000 +-0.983994,-0.097912,0.706038,-0.225746,0.975526,0.000000 +-0.986319,-0.098132,0.707689,-0.226259,0.977817,0.000000 +-0.988645,-0.098353,0.709339,-0.226772,0.980108,0.000000 +-0.990971,-0.098574,0.710990,-0.227285,0.982399,0.000000 +-0.993297,-0.098794,0.712640,-0.227798,0.984689,0.000000 +-0.995623,-0.099015,0.714291,-0.228311,0.986980,0.000000 +-0.997949,-0.099236,0.715941,-0.228824,0.989271,0.000000 +-1.000270,-0.099456,0.717592,-0.229337,0.991561,0.000000 +-1.002600,-0.099677,0.719242,-0.229849,0.993852,0.000000 +-1.004930,-0.099898,0.720892,-0.230362,0.996143,0.000000 +-1.007250,-0.100118,0.722543,-0.230875,0.998433,0.000000 +-1.009580,-0.100339,0.724193,-0.231388,1.000720,0.000000 +-1.011900,-0.100559,0.725844,-0.231901,1.003010,0.000000 +-1.014230,-0.100780,0.727494,-0.232414,1.005310,0.000000 +-1.016560,-0.101001,0.729145,-0.232927,1.007600,0.000000 +-1.018880,-0.101221,0.730795,-0.233440,1.009890,0.000000 +-1.021210,-0.101442,0.732446,-0.233952,1.012180,0.000000 +-1.023530,-0.101663,0.734096,-0.234465,1.014470,0.000000 +-1.025860,-0.101883,0.735746,-0.234978,1.016760,0.000000 +-1.028180,-0.102104,0.737397,-0.235491,1.019050,0.000000 +-1.030510,-0.102324,0.739047,-0.236004,1.021340,0.000000 +-1.032840,-0.102545,0.740698,-0.236517,1.023630,0.000000 +-1.035160,-0.102766,0.742348,-0.237030,1.025920,0.000000 +-1.037490,-0.102986,0.743999,-0.237542,1.028210,0.000000 +-1.039810,-0.103207,0.745649,-0.238055,1.030500,0.000000 +-1.042140,-0.103428,0.747300,-0.238568,1.032790,0.000000 +-1.044470,-0.103648,0.748950,-0.239081,1.035080,0.000000 +-1.046790,-0.103869,0.750600,-0.239594,1.037380,0.000000 +-1.049120,-0.104090,0.752251,-0.240107,1.039670,0.000000 +-1.051440,-0.104310,0.753901,-0.240620,1.041960,0.000000 +-1.053770,-0.104531,0.755552,-0.241133,1.044250,0.000000 +-1.056090,-0.104751,0.757202,-0.241645,1.046540,0.000000 +-1.058420,-0.104972,0.758853,-0.242158,1.048830,0.000000 +-1.060750,-0.105193,0.760503,-0.242671,1.051120,0.000000 +-1.063070,-0.105413,0.762154,-0.243184,1.053410,0.000000 +-1.065400,-0.105634,0.763804,-0.243697,1.055700,0.000000 +-1.067720,-0.105855,0.765454,-0.244210,1.057990,0.000000 +-1.070050,-0.106075,0.767105,-0.244723,1.060280,0.000000 +-1.072380,-0.106296,0.768755,-0.245236,1.062570,0.000000 +-1.074700,-0.106516,0.770406,-0.245748,1.064860,0.000000 +-1.077030,-0.106737,0.772056,-0.246261,1.067150,0.000000 +-1.079350,-0.106958,0.773707,-0.246774,1.069450,0.000000 +-1.081680,-0.107178,0.775357,-0.247287,1.071740,0.000000 +-1.084000,-0.107399,0.777008,-0.247800,1.074030,0.000000 +-1.086330,-0.107620,0.778658,-0.248313,1.076320,0.000000 +-1.088660,-0.107840,0.780308,-0.248826,1.078610,0.000000 +-1.090980,-0.108061,0.781959,-0.249339,1.080900,0.000000 +-1.093310,-0.108282,0.783609,-0.249851,1.083190,0.000000 +-1.095630,-0.108502,0.785260,-0.250364,1.085480,0.000000 +-1.097960,-0.108723,0.786910,-0.250877,1.087770,0.000000 +-1.100290,-0.108943,0.788561,-0.251390,1.090060,0.000000 +-1.102610,-0.109164,0.790211,-0.251903,1.092350,0.000000 +-1.104940,-0.109385,0.791862,-0.252416,1.094640,0.000000 +-1.107260,-0.109605,0.793512,-0.252929,1.096930,0.000000 +-1.109590,-0.109826,0.795162,-0.253442,1.099220,0.000000 +-1.111910,-0.110047,0.796813,-0.253954,1.101520,0.000000 +-1.114240,-0.110267,0.798463,-0.254467,1.103810,0.000000 +-1.116570,-0.110488,0.800114,-0.254980,1.106100,0.000000 +-1.118890,-0.110708,0.801764,-0.255493,1.108390,0.000000 +-1.121220,-0.110929,0.803415,-0.256006,1.110680,0.000000 +-1.123540,-0.111150,0.805065,-0.256519,1.112970,0.000000 +-1.125870,-0.111370,0.806715,-0.257032,1.115260,0.000000 +-1.128200,-0.111591,0.808366,-0.257545,1.117550,0.000000 +-1.130520,-0.111812,0.810016,-0.258057,1.119840,0.000000 +-1.132850,-0.112032,0.811667,-0.258570,1.122130,0.000000 +-1.135170,-0.112253,0.813317,-0.259083,1.124420,0.000000 +-1.137500,-0.112473,0.814968,-0.259596,1.126710,0.000000 +-1.139830,-0.112694,0.816618,-0.260109,1.129000,0.000000 +-1.142150,-0.112915,0.818269,-0.260622,1.131290,0.000000 +-1.144480,-0.113135,0.819919,-0.261135,1.133590,0.000000 +-1.146800,-0.113356,0.821569,-0.261648,1.135880,0.000000 +-1.149130,-0.113577,0.823220,-0.262160,1.138170,0.000000 +-1.151450,-0.113797,0.824870,-0.262673,1.140460,0.000000 +-1.153780,-0.114018,0.826521,-0.263186,1.142750,0.000000 +-1.156110,-0.114239,0.828171,-0.263699,1.145040,0.000000 +-1.158430,-0.114459,0.829822,-0.264212,1.147330,0.000000 +-1.160760,-0.114680,0.831472,-0.264725,1.149620,0.000000 +-1.163080,-0.114900,0.833123,-0.265238,1.151910,0.000000 +-1.165410,-0.115121,0.834773,-0.265751,1.154200,0.000000 +-1.167740,-0.115342,0.836423,-0.266263,1.156490,0.000000 +-1.170060,-0.115562,0.838074,-0.266776,1.158780,0.000000 +-1.172390,-0.115783,0.839724,-0.267289,1.161070,0.000000 +-1.174710,-0.116004,0.841375,-0.267802,1.163360,0.000000 +-1.177040,-0.116224,0.843025,-0.268315,1.165660,0.000000 +-1.179360,-0.116445,0.844676,-0.268828,1.167950,0.000000 +-1.181690,-0.116665,0.846326,-0.269341,1.170240,0.000000 +-1.184020,-0.116886,0.847977,-0.269854,1.172530,0.000000 +-1.186340,-0.117107,0.849627,-0.270366,1.174820,0.000000 +-1.188670,-0.117327,0.851277,-0.270879,1.177110,0.000000 +-1.190990,-0.117548,0.852928,-0.271392,1.179400,0.000000 +-1.193320,-0.117769,0.854578,-0.271905,1.181690,0.000000 +-1.195650,-0.117989,0.856229,-0.272418,1.183980,0.000000 +-1.197970,-0.118210,0.857879,-0.272931,1.186270,0.000000 +-1.200300,-0.118431,0.859530,-0.273444,1.188560,0.000000 +-1.202620,-0.118651,0.861180,-0.273957,1.190850,0.000000 +-1.204950,-0.118872,0.862831,-0.274469,1.193140,0.000000 +-1.207270,-0.119092,0.864481,-0.274982,1.195430,0.000000 +-1.209600,-0.119313,0.866131,-0.275495,1.197730,0.000000 +-1.211930,-0.119534,0.867782,-0.276008,1.200020,0.000000 +-1.214250,-0.119754,0.869432,-0.276521,1.202310,0.000000 +-1.216580,-0.119975,0.871083,-0.277034,1.204600,0.000000 +-1.218900,-0.120196,0.872733,-0.277547,1.206890,0.000000 +-1.221230,-0.120416,0.874384,-0.278060,1.209180,0.000000 +-1.223560,-0.120637,0.876034,-0.278572,1.211470,0.000000 +-1.225880,-0.120857,0.877685,-0.279085,1.213760,0.000000 +-1.228210,-0.121078,0.879335,-0.279598,1.216050,0.000000 +-1.230530,-0.121299,0.880985,-0.280111,1.218340,0.000000 +-1.232860,-0.121519,0.882636,-0.280624,1.220630,0.000000 +-1.235180,-0.121740,0.884286,-0.281137,1.222920,0.000000 +-1.237510,-0.121961,0.885937,-0.281650,1.225210,0.000000 +-1.239840,-0.122181,0.887587,-0.282163,1.227500,0.000000 +-1.242160,-0.122402,0.889238,-0.282675,1.229790,0.000000 +-1.244490,-0.122623,0.890888,-0.283188,1.232090,0.000000 +-1.246810,-0.122843,0.892539,-0.283701,1.234380,0.000000 +-1.249140,-0.123064,0.894189,-0.284214,1.236670,0.000000 +-1.251470,-0.123284,0.895839,-0.284727,1.238960,0.000000 +-1.253790,-0.123505,0.897490,-0.285240,1.241250,0.000000 +-1.256120,-0.123726,0.899140,-0.285753,1.243540,0.000000 +-1.258440,-0.123946,0.900791,-0.286266,1.245830,0.000000 +-1.260770,-0.124167,0.902441,-0.286778,1.248120,0.000000 +-1.263090,-0.124388,0.904092,-0.287291,1.250410,0.000000 +-1.265420,-0.124608,0.905742,-0.287804,1.252700,0.000000 +-1.267750,-0.124829,0.907392,-0.288317,1.254990,0.000000 +-1.270070,-0.125049,0.909043,-0.288830,1.257280,0.000000 +-1.272400,-0.125270,0.910693,-0.289343,1.259570,0.000000 +-1.274720,-0.125491,0.912344,-0.289856,1.261860,0.000000 +-1.277050,-0.125711,0.913994,-0.290369,1.264160,0.000000 +-1.279380,-0.125932,0.915645,-0.290881,1.266450,0.000000 +-1.281700,-0.126153,0.917295,-0.291394,1.268740,0.000000 +-1.284030,-0.126373,0.918946,-0.291907,1.271030,0.000000 +-1.286350,-0.126594,0.920596,-0.292420,1.273320,0.000000 +-1.288680,-0.126814,0.922246,-0.292933,1.275610,0.000000 +-1.291000,-0.127035,0.923897,-0.293446,1.277900,0.000000 +-1.293330,-0.127256,0.925547,-0.293959,1.280190,0.000000 +-1.295660,-0.127476,0.927198,-0.294472,1.282480,0.000000 +-1.297980,-0.127697,0.928848,-0.294984,1.284770,0.000000 +-1.300310,-0.127918,0.930499,-0.295497,1.287060,0.000000 +-1.302630,-0.128138,0.932149,-0.296010,1.289350,0.000000 +-1.304960,-0.128359,0.933800,-0.296523,1.291640,0.000000 +-1.307290,-0.128580,0.935450,-0.297036,1.293930,0.000000 +-1.309610,-0.128800,0.937100,-0.297549,1.296230,0.000000 +-1.311940,-0.129021,0.938751,-0.298062,1.298520,0.000000 +-1.314260,-0.129241,0.940401,-0.298575,1.300810,0.000000 +-1.316590,-0.129462,0.942052,-0.299087,1.303100,0.000000 +-1.318910,-0.129683,0.943702,-0.299600,1.305390,0.000000 +-1.321240,-0.129903,0.945353,-0.300113,1.307680,0.000000 +-1.323570,-0.130124,0.947003,-0.300626,1.309970,0.000000 +-1.325890,-0.130345,0.948654,-0.301139,1.312260,0.000000 +-1.328220,-0.130565,0.950304,-0.301652,1.314550,0.000000 +-1.330540,-0.130786,0.951954,-0.302165,1.316840,0.000000 +-1.332870,-0.131006,0.953605,-0.302678,1.319130,0.000000 +-1.335200,-0.131227,0.955255,-0.303190,1.321420,0.000000 +-1.337520,-0.131448,0.956906,-0.303703,1.323710,0.000000 +-1.339850,-0.131668,0.958556,-0.304216,1.326000,0.000000 +-1.342170,-0.131889,0.960207,-0.304729,1.328300,0.000000 +-1.344500,-0.132110,0.961857,-0.305242,1.330590,0.000000 +-1.346820,-0.132330,0.963508,-0.305755,1.332880,0.000000 +-1.349150,-0.132551,0.965158,-0.306268,1.335170,0.000000 +-1.351480,-0.132772,0.966808,-0.306781,1.337460,0.000000 +-1.353800,-0.132992,0.968459,-0.307293,1.339750,0.000000 +-1.356130,-0.133213,0.970109,-0.307806,1.342040,0.000000 +-1.358450,-0.133433,0.971760,-0.308319,1.344330,0.000000 +-1.360780,-0.133654,0.973410,-0.308832,1.346620,0.000000 +-1.363110,-0.133875,0.975061,-0.309345,1.348910,0.000000 +-1.365430,-0.134095,0.976711,-0.309858,1.351200,0.000000 +-1.367760,-0.134316,0.978362,-0.310371,1.353490,0.000000 +-1.370080,-0.134537,0.980012,-0.310884,1.355780,0.000000 +-1.372410,-0.134757,0.981662,-0.311396,1.358070,0.000000 +-1.374740,-0.134978,0.983313,-0.311909,1.360370,0.000000 +-1.377060,-0.135198,0.984963,-0.312422,1.362660,0.000000 +-1.379390,-0.135419,0.986614,-0.312935,1.364950,0.000000 +-1.381710,-0.135640,0.988264,-0.313448,1.367240,0.000000 +-1.384040,-0.135860,0.989915,-0.313961,1.369530,0.000000 +-1.386360,-0.136081,0.991565,-0.314474,1.371820,0.000000 +-1.388690,-0.136302,0.993216,-0.314987,1.374110,0.000000 +-1.391020,-0.136522,0.994866,-0.315499,1.376400,0.000000 +-1.393340,-0.136743,0.996516,-0.316012,1.378690,0.000000 +-1.395670,-0.136963,0.998167,-0.316525,1.380980,0.000000 +-1.397990,-0.137184,0.999817,-0.317038,1.383270,0.000000 +-1.400320,-0.137405,1.001470,-0.317551,1.385560,0.000000 +-1.402650,-0.137625,1.003120,-0.318064,1.387850,0.000000 +-1.404970,-0.137846,1.004770,-0.318577,1.390140,0.000000 +-1.407300,-0.138067,1.006420,-0.319090,1.392440,0.000000 +-1.409620,-0.138287,1.008070,-0.319602,1.394730,0.000000 +-1.411950,-0.138508,1.009720,-0.320115,1.397020,0.000000 +-1.414270,-0.138729,1.011370,-0.320628,1.399310,0.000000 +-1.416600,-0.138949,1.013020,-0.321141,1.401600,0.000000 +-1.418930,-0.139170,1.014670,-0.321654,1.403890,0.000000 +-1.421250,-0.139390,1.016320,-0.322167,1.406180,0.000000 +-1.423580,-0.139611,1.017970,-0.322680,1.408470,0.000000 +-1.425900,-0.139832,1.019620,-0.323193,1.410760,0.000000 +-1.428230,-0.140052,1.021270,-0.323705,1.413050,0.000000 +-1.430560,-0.140273,1.022920,-0.324218,1.415340,0.000000 +-1.432880,-0.140494,1.024570,-0.324731,1.417630,0.000000 +-1.435210,-0.140714,1.026220,-0.325244,1.419920,0.000000 +-1.437530,-0.140935,1.027870,-0.325757,1.422210,0.000000 +-1.439860,-0.141155,1.029530,-0.326270,1.424510,0.000000 +-1.442180,-0.141376,1.031180,-0.326783,1.426800,0.000000 +-1.444510,-0.141597,1.032830,-0.327296,1.429090,0.000000 +-1.446840,-0.141817,1.034480,-0.327808,1.431380,0.000000 +-1.449160,-0.142038,1.036130,-0.328321,1.433670,0.000000 +-1.451490,-0.142259,1.037780,-0.328834,1.435960,0.000000 +-1.453810,-0.142479,1.039430,-0.329347,1.438250,0.000000 +-1.456140,-0.142700,1.041080,-0.329860,1.440540,0.000000 +-1.458470,-0.142921,1.042730,-0.330373,1.442830,0.000000 +-1.460790,-0.143141,1.044380,-0.330886,1.445120,0.000000 +-1.463120,-0.143362,1.046030,-0.331399,1.447410,0.000000 +-1.465440,-0.143582,1.047680,-0.331911,1.449700,0.000000 +-1.467770,-0.143803,1.049330,-0.332424,1.451990,0.000000 +-1.470090,-0.144024,1.050980,-0.332937,1.454280,0.000000 +-1.472420,-0.144244,1.052630,-0.333450,1.456580,0.000000 +-1.474750,-0.144465,1.054280,-0.333963,1.458870,0.000000 +-1.477070,-0.144686,1.055930,-0.334476,1.461160,0.000000 +-1.479400,-0.144906,1.057580,-0.334989,1.463450,0.000000 +-1.481720,-0.145127,1.059230,-0.335502,1.465740,0.000000 +-1.484050,-0.145347,1.060880,-0.336014,1.468030,0.000000 +-1.486380,-0.145568,1.062530,-0.336527,1.470320,0.000000 +-1.488700,-0.145789,1.064180,-0.337040,1.472610,0.000000 +-1.491030,-0.146009,1.065830,-0.337553,1.474900,0.000000 +-1.493350,-0.146230,1.067490,-0.338066,1.477190,0.000000 +-1.495680,-0.146451,1.069140,-0.338579,1.479480,0.000000 +-1.498000,-0.146671,1.070790,-0.339092,1.481770,0.000000 +-1.500330,-0.146892,1.072440,-0.339605,1.484060,0.000000 +-1.502660,-0.147113,1.074090,-0.340117,1.486350,0.000000 +-1.504980,-0.147333,1.075740,-0.340630,1.488640,0.000000 +-1.507310,-0.147554,1.077390,-0.341143,1.490940,0.000000 +-1.509630,-0.147774,1.079040,-0.341656,1.493230,0.000000 +-1.511960,-0.147995,1.080690,-0.342169,1.495520,0.000000 +-1.514290,-0.148216,1.082340,-0.342682,1.497810,0.000000 +-1.516610,-0.148436,1.083990,-0.343195,1.500100,0.000000 +-1.518930,-0.148657,1.085640,-0.343707,1.502390,0.000000 +-1.521240,-0.148878,1.087290,-0.344220,1.504680,0.000000 +-1.523540,-0.149098,1.088940,-0.344733,1.506970,0.000000 +-1.525830,-0.149319,1.090590,-0.345246,1.509260,0.000000 +-1.528100,-0.149539,1.092240,-0.345759,1.511550,0.000000 +-1.530360,-0.149760,1.093890,-0.346272,1.513840,0.000000 +-1.532590,-0.149981,1.095540,-0.346785,1.516120,0.000000 +-1.534800,-0.150201,1.097190,-0.347298,1.518380,0.000000 +-1.536990,-0.150422,1.098840,-0.347810,1.520640,0.000000 +-1.539150,-0.150643,1.100490,-0.348323,1.522880,0.000000 +-1.541280,-0.150863,1.102130,-0.348836,1.525100,0.000000 +-1.543370,-0.151084,1.103760,-0.349349,1.527290,0.000000 +-1.545430,-0.151304,1.105380,-0.349862,1.529460,0.000000 +-1.547450,-0.151525,1.106980,-0.350375,1.531610,0.000000 +-1.549430,-0.151746,1.108570,-0.350888,1.533720,0.000000 +-1.551360,-0.151966,1.110140,-0.351401,1.535790,0.000000 +-1.553250,-0.152187,1.111690,-0.351913,1.537830,0.000000 +-1.555090,-0.152408,1.113210,-0.352426,1.539820,0.000000 +-1.556870,-0.152628,1.114700,-0.352939,1.541770,0.000000 +-1.558610,-0.152849,1.116170,-0.353452,1.543680,0.000000 +-1.560280,-0.153070,1.117600,-0.353965,1.545530,0.000000 +-1.561900,-0.153290,1.119000,-0.354478,1.547330,0.000000 +-1.563460,-0.153511,1.120360,-0.354991,1.549070,0.000000 +-1.564950,-0.153731,1.121680,-0.355504,1.550750,0.000000 +-1.566370,-0.153952,1.122960,-0.356016,1.552370,0.000000 +-1.567730,-0.154173,1.124190,-0.356529,1.553930,0.000000 +-1.569010,-0.154393,1.125380,-0.357042,1.555410,0.000000 +-1.570210,-0.154614,1.126510,-0.357555,1.556820,0.000000 +-1.571340,-0.154835,1.127600,-0.358068,1.558160,0.000000 +-1.572400,-0.155055,1.128620,-0.358581,1.559420,0.000000 +-1.573380,-0.155276,1.129590,-0.359094,1.560590,0.000000 +-1.574290,-0.155496,1.130500,-0.359607,1.561680,0.000000 +-1.575140,-0.155717,1.131340,-0.360119,1.562700,0.000000 +-1.575920,-0.155938,1.132120,-0.360630,1.563630,0.000000 +-1.576630,-0.156158,1.132840,-0.361135,1.564490,0.000000 +-1.577290,-0.156379,1.133500,-0.361632,1.565280,0.000000 +-1.577890,-0.156600,1.134100,-0.362118,1.565990,0.000000 +-1.578440,-0.156820,1.134640,-0.362589,1.566650,0.000000 +-1.578930,-0.157041,1.135140,-0.363042,1.567240,0.000000 +-1.579370,-0.157261,1.135580,-0.363475,1.567770,0.000000 +-1.579770,-0.157481,1.135980,-0.363883,1.568250,0.000000 +-1.580130,-0.157697,1.136330,-0.364265,1.568670,0.000000 +-1.580440,-0.157906,1.136640,-0.364616,1.569050,0.000000 +-1.580710,-0.158106,1.136920,-0.364935,1.569370,0.000000 +-1.580950,-0.158295,1.137150,-0.365217,1.569660,0.000000 +-1.581150,-0.158470,1.137360,-0.365460,1.569900,0.000000 +-1.581320,-0.158628,1.137530,-0.365666,1.570110,0.000000 +-1.581460,-0.158767,1.137670,-0.365837,1.570280,0.000000 +-1.581580,-0.158884,1.137790,-0.365978,1.570420,0.000000 +-1.581680,-0.158977,1.137880,-0.366090,1.570530,0.000000 +-1.581750,-0.159051,1.137960,-0.366178,1.570620,0.000000 +-1.581800,-0.159106,1.138010,-0.366244,1.570680,0.000000 +-1.581840,-0.159145,1.138050,-0.366291,1.570730,0.000000 +-1.581870,-0.159171,1.138080,-0.366322,1.570760,0.000000 +-1.581890,-0.159187,1.138090,-0.366342,1.570780,0.000000 +-1.581890,-0.159196,1.138100,-0.366351,1.570790,0.000000 +-1.581900,-0.159199,1.138100,-0.366355,1.570790,0.000000 +-1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +-1.581900,-0.159199,1.138100,-0.366356,1.570800,0.000000 +-1.581900,-0.159203,1.138110,-0.366355,1.570800,-0.000008 +-1.581890,-0.159200,1.138100,-0.366352,1.570790,-0.000008 +-1.581890,-0.159191,1.138100,-0.366342,1.570780,-0.000008 +-1.581870,-0.159175,1.138080,-0.366323,1.570760,-0.000008 +-1.581840,-0.159149,1.138050,-0.366291,1.570730,-0.000008 +-1.581800,-0.159110,1.138010,-0.366244,1.570680,-0.000008 +-1.581750,-0.159055,1.137960,-0.366178,1.570620,-0.000008 +-1.581680,-0.158981,1.137890,-0.366091,1.570530,-0.000008 +-1.581580,-0.158888,1.137790,-0.365978,1.570420,-0.000008 +-1.581470,-0.158771,1.137680,-0.365838,1.570280,-0.000008 +-1.581320,-0.158632,1.137530,-0.365666,1.570110,-0.000008 +-1.581150,-0.158474,1.137360,-0.365460,1.569900,-0.000008 +-1.580950,-0.158299,1.137160,-0.365217,1.569660,-0.000008 +-1.580710,-0.158110,1.136920,-0.364935,1.569370,-0.000008 +-1.580440,-0.157910,1.136650,-0.364617,1.569050,-0.000008 +-1.580130,-0.157700,1.136340,-0.364265,1.568670,-0.000008 +-1.579770,-0.157485,1.135980,-0.363884,1.568250,-0.000008 +-1.579370,-0.157265,1.135580,-0.363475,1.567770,-0.000008 +-1.578930,-0.157045,1.135140,-0.363042,1.567240,-0.000008 +-1.578440,-0.156824,1.134650,-0.362589,1.566650,-0.000008 +-1.577890,-0.156604,1.134100,-0.362118,1.565990,-0.000008 +-1.577290,-0.156383,1.133500,-0.361633,1.565280,-0.000008 +-1.576630,-0.156162,1.132840,-0.361136,1.564490,-0.000008 +-1.575920,-0.155942,1.132130,-0.360630,1.563630,-0.000008 +-1.575140,-0.155721,1.131350,-0.360120,1.562700,-0.000008 +-1.574290,-0.155500,1.130500,-0.359607,1.561680,-0.000008 +-1.573380,-0.155280,1.129600,-0.359094,1.560590,-0.000008 +-1.572400,-0.155059,1.128630,-0.358581,1.559420,-0.000008 +-1.571340,-0.154839,1.127600,-0.358068,1.558160,-0.000008 +-1.570210,-0.154618,1.126520,-0.357555,1.556820,-0.000008 +-1.569010,-0.154397,1.125380,-0.357043,1.555410,-0.000008 +-1.567730,-0.154177,1.124200,-0.356530,1.553930,-0.000008 +-1.566370,-0.153956,1.122970,-0.356017,1.552370,-0.000008 +-1.564950,-0.153735,1.121690,-0.355504,1.550760,-0.000008 +-1.563460,-0.153515,1.120370,-0.354991,1.549070,-0.000008 +-1.561900,-0.153294,1.119010,-0.354478,1.547330,-0.000008 +-1.560280,-0.153074,1.117610,-0.353965,1.545530,-0.000008 +-1.558610,-0.152853,1.116170,-0.353452,1.543680,-0.000008 +-1.556870,-0.152632,1.114710,-0.352940,1.541770,-0.000008 +-1.555090,-0.152412,1.113210,-0.352427,1.539820,-0.000008 +-1.553250,-0.152191,1.111690,-0.351914,1.537830,-0.000008 +-1.551360,-0.151970,1.110140,-0.351401,1.535790,-0.000008 +-1.549430,-0.151750,1.108570,-0.350888,1.533720,-0.000008 +-1.547450,-0.151529,1.106990,-0.350375,1.531610,-0.000008 +-1.545430,-0.151308,1.105380,-0.349862,1.529460,-0.000008 +-1.543370,-0.151088,1.103760,-0.349349,1.527290,-0.000008 +-1.541280,-0.150867,1.102130,-0.348837,1.525100,-0.000008 +-1.539150,-0.150647,1.100490,-0.348324,1.522880,-0.000008 +-1.536990,-0.150426,1.098850,-0.347811,1.520640,-0.000008 +-1.534800,-0.150205,1.097200,-0.347298,1.518380,-0.000008 +-1.532590,-0.149985,1.095550,-0.346785,1.516120,-0.000008 +-1.530360,-0.149764,1.093900,-0.346272,1.513840,-0.000008 +-1.528100,-0.149543,1.092250,-0.345759,1.511550,-0.000008 +-1.525830,-0.149323,1.090600,-0.345246,1.509260,-0.000008 +-1.523540,-0.149102,1.088950,-0.344734,1.506970,-0.000008 +-1.521240,-0.148882,1.087300,-0.344221,1.504680,-0.000008 +-1.518930,-0.148661,1.085640,-0.343708,1.502390,-0.000008 +-1.516610,-0.148440,1.083990,-0.343195,1.500100,-0.000008 +-1.514290,-0.148220,1.082340,-0.342682,1.497810,-0.000008 +-1.511960,-0.147999,1.080690,-0.342169,1.495520,-0.000008 +-1.509630,-0.147778,1.079040,-0.341656,1.493230,-0.000008 +-1.507310,-0.147558,1.077390,-0.341143,1.490940,-0.000008 +-1.504980,-0.147337,1.075740,-0.340631,1.488650,-0.000008 +-1.502660,-0.147116,1.074090,-0.340118,1.486350,-0.000008 +-1.500330,-0.146896,1.072440,-0.339605,1.484060,-0.000008 +-1.498010,-0.146675,1.070790,-0.339092,1.481770,-0.000008 +-1.495680,-0.146455,1.069140,-0.338579,1.479480,-0.000008 +-1.493350,-0.146234,1.067490,-0.338066,1.477190,-0.000008 +-1.491030,-0.146013,1.065840,-0.337553,1.474900,-0.000008 +-1.488700,-0.145793,1.064190,-0.337040,1.472610,-0.000008 +-1.486380,-0.145572,1.062540,-0.336528,1.470320,-0.000008 +-1.484050,-0.145351,1.060890,-0.336015,1.468030,-0.000008 +-1.481720,-0.145131,1.059240,-0.335502,1.465740,-0.000008 +-1.479400,-0.144910,1.057590,-0.334989,1.463450,-0.000008 +-1.477070,-0.144690,1.055940,-0.334476,1.461160,-0.000008 +-1.474750,-0.144469,1.054290,-0.333963,1.458870,-0.000008 +-1.472420,-0.144248,1.052640,-0.333450,1.456580,-0.000008 +-1.470090,-0.144028,1.050990,-0.332938,1.454280,-0.000008 +-1.467770,-0.143807,1.049340,-0.332425,1.451990,-0.000008 +-1.465440,-0.143586,1.047680,-0.331912,1.449700,-0.000008 +-1.463120,-0.143366,1.046030,-0.331399,1.447410,-0.000008 +-1.460790,-0.143145,1.044380,-0.330886,1.445120,-0.000008 +-1.458470,-0.142924,1.042730,-0.330373,1.442830,-0.000008 +-1.456140,-0.142704,1.041080,-0.329860,1.440540,-0.000008 +-1.453810,-0.142483,1.039430,-0.329347,1.438250,-0.000008 +-1.451490,-0.142263,1.037780,-0.328835,1.435960,-0.000008 +-1.449160,-0.142042,1.036130,-0.328322,1.433670,-0.000008 +-1.446840,-0.141821,1.034480,-0.327809,1.431380,-0.000008 +-1.444510,-0.141601,1.032830,-0.327296,1.429090,-0.000008 +-1.442180,-0.141380,1.031180,-0.326783,1.426800,-0.000008 +-1.439860,-0.141159,1.029530,-0.326270,1.424510,-0.000008 +-1.437530,-0.140939,1.027880,-0.325757,1.422220,-0.000008 +-1.435210,-0.140718,1.026230,-0.325244,1.419920,-0.000008 +-1.432880,-0.140498,1.024580,-0.324732,1.417630,-0.000008 +-1.430560,-0.140277,1.022930,-0.324219,1.415340,-0.000008 +-1.428230,-0.140056,1.021280,-0.323706,1.413050,-0.000008 +-1.425900,-0.139836,1.019630,-0.323193,1.410760,-0.000008 +-1.423580,-0.139615,1.017980,-0.322680,1.408470,-0.000008 +-1.421250,-0.139394,1.016330,-0.322167,1.406180,-0.000008 +-1.418930,-0.139174,1.014680,-0.321654,1.403890,-0.000008 +-1.416600,-0.138953,1.013030,-0.321141,1.401600,-0.000008 +-1.414270,-0.138733,1.011370,-0.320629,1.399310,-0.000008 +-1.411950,-0.138512,1.009720,-0.320116,1.397020,-0.000008 +-1.409620,-0.138291,1.008070,-0.319603,1.394730,-0.000008 +-1.407300,-0.138071,1.006420,-0.319090,1.392440,-0.000008 +-1.404970,-0.137850,1.004770,-0.318577,1.390150,-0.000008 +-1.402650,-0.137629,1.003120,-0.318064,1.387850,-0.000008 +-1.400320,-0.137409,1.001470,-0.317551,1.385560,-0.000008 +-1.397990,-0.137188,0.999822,-0.317038,1.383270,-0.000008 +-1.395670,-0.136967,0.998171,-0.316526,1.380980,-0.000008 +-1.393340,-0.136747,0.996521,-0.316013,1.378690,-0.000008 +-1.391020,-0.136526,0.994870,-0.315500,1.376400,-0.000008 +-1.388690,-0.136306,0.993220,-0.314987,1.374110,-0.000008 +-1.386360,-0.136085,0.991570,-0.314474,1.371820,-0.000008 +-1.384040,-0.135864,0.989919,-0.313961,1.369530,-0.000008 +-1.381710,-0.135644,0.988269,-0.313448,1.367240,-0.000008 +-1.379390,-0.135423,0.986618,-0.312935,1.364950,-0.000008 +-1.377060,-0.135202,0.984968,-0.312423,1.362660,-0.000008 +-1.374740,-0.134982,0.983317,-0.311910,1.360370,-0.000008 +-1.372410,-0.134761,0.981667,-0.311397,1.358080,-0.000008 +-1.370080,-0.134541,0.980016,-0.310884,1.355780,-0.000008 +-1.367760,-0.134320,0.978366,-0.310371,1.353490,-0.000008 +-1.365430,-0.134099,0.976716,-0.309858,1.351200,-0.000008 +-1.363110,-0.133879,0.975065,-0.309345,1.348910,-0.000008 +-1.360780,-0.133658,0.973415,-0.308832,1.346620,-0.000008 +-1.358450,-0.133437,0.971764,-0.308320,1.344330,-0.000008 +-1.356130,-0.133217,0.970114,-0.307807,1.342040,-0.000008 +-1.353800,-0.132996,0.968463,-0.307294,1.339750,-0.000008 +-1.351480,-0.132775,0.966813,-0.306781,1.337460,-0.000008 +-1.349150,-0.132555,0.965162,-0.306268,1.335170,-0.000008 +-1.346830,-0.132334,0.963512,-0.305755,1.332880,-0.000008 +-1.344500,-0.132114,0.961862,-0.305242,1.330590,-0.000008 +-1.342170,-0.131893,0.960211,-0.304729,1.328300,-0.000008 +-1.339850,-0.131672,0.958561,-0.304217,1.326010,-0.000008 +-1.337520,-0.131452,0.956910,-0.303704,1.323710,-0.000008 +-1.335200,-0.131231,0.955260,-0.303191,1.321420,-0.000008 +-1.332870,-0.131010,0.953609,-0.302678,1.319130,-0.000008 +-1.330540,-0.130790,0.951959,-0.302165,1.316840,-0.000008 +-1.328220,-0.130569,0.950308,-0.301652,1.314550,-0.000008 +-1.325890,-0.130349,0.948658,-0.301139,1.312260,-0.000008 +-1.323570,-0.130128,0.947008,-0.300626,1.309970,-0.000008 +-1.321240,-0.129907,0.945357,-0.300114,1.307680,-0.000008 +-1.318920,-0.129687,0.943707,-0.299601,1.305390,-0.000008 +-1.316590,-0.129466,0.942056,-0.299088,1.303100,-0.000008 +-1.314260,-0.129245,0.940406,-0.298575,1.300810,-0.000008 +-1.311940,-0.129025,0.938755,-0.298062,1.298520,-0.000008 +-1.309610,-0.128804,0.937105,-0.297549,1.296230,-0.000008 +-1.307290,-0.128583,0.935454,-0.297036,1.293940,-0.000008 +-1.304960,-0.128363,0.933804,-0.296523,1.291640,-0.000008 +-1.302630,-0.128142,0.932154,-0.296011,1.289350,-0.000008 +-1.300310,-0.127922,0.930503,-0.295498,1.287060,-0.000008 +-1.297980,-0.127701,0.928853,-0.294985,1.284770,-0.000008 +-1.295660,-0.127480,0.927202,-0.294472,1.282480,-0.000008 +-1.293330,-0.127260,0.925552,-0.293959,1.280190,-0.000008 +-1.291010,-0.127039,0.923901,-0.293446,1.277900,-0.000008 +-1.288680,-0.126818,0.922251,-0.292933,1.275610,-0.000008 +-1.286350,-0.126598,0.920600,-0.292420,1.273320,-0.000008 +-1.284030,-0.126377,0.918950,-0.291908,1.271030,-0.000008 +-1.281700,-0.126157,0.917300,-0.291395,1.268740,-0.000008 +-1.279380,-0.125936,0.915649,-0.290882,1.266450,-0.000008 +-1.277050,-0.125715,0.913999,-0.290369,1.264160,-0.000008 +-1.274720,-0.125495,0.912348,-0.289856,1.261870,-0.000008 +-1.272400,-0.125274,0.910698,-0.289343,1.259570,-0.000008 +-1.270070,-0.125053,0.909047,-0.288830,1.257280,-0.000008 +-1.267750,-0.124833,0.907397,-0.288317,1.254990,-0.000008 +-1.265420,-0.124612,0.905747,-0.287805,1.252700,-0.000008 +-1.263100,-0.124392,0.904096,-0.287292,1.250410,-0.000008 +-1.260770,-0.124171,0.902446,-0.286779,1.248120,-0.000008 +-1.258440,-0.123950,0.900795,-0.286266,1.245830,-0.000008 +-1.256120,-0.123730,0.899145,-0.285753,1.243540,-0.000008 +-1.253790,-0.123509,0.897494,-0.285240,1.241250,-0.000008 +-1.251470,-0.123288,0.895844,-0.284727,1.238960,-0.000008 +-1.249140,-0.123068,0.894193,-0.284214,1.236670,-0.000008 +-1.246810,-0.122847,0.892543,-0.283702,1.234380,-0.000008 +-1.244490,-0.122626,0.890893,-0.283189,1.232090,-0.000008 +-1.242160,-0.122406,0.889242,-0.282676,1.229800,-0.000008 +-1.239840,-0.122185,0.887592,-0.282163,1.227500,-0.000008 +-1.237510,-0.121965,0.885941,-0.281650,1.225210,-0.000008 +-1.235180,-0.121744,0.884291,-0.281137,1.222920,-0.000008 +-1.232860,-0.121523,0.882640,-0.280624,1.220630,-0.000008 +-1.230530,-0.121303,0.880990,-0.280111,1.218340,-0.000008 +-1.228210,-0.121082,0.879339,-0.279599,1.216050,-0.000008 +-1.225880,-0.120861,0.877689,-0.279086,1.213760,-0.000008 +-1.223560,-0.120641,0.876039,-0.278573,1.211470,-0.000008 +-1.221230,-0.120420,0.874388,-0.278060,1.209180,-0.000008 +-1.218900,-0.120200,0.872738,-0.277547,1.206890,-0.000008 +-1.216580,-0.119979,0.871087,-0.277034,1.204600,-0.000008 +-1.214250,-0.119758,0.869437,-0.276521,1.202310,-0.000008 +-1.211930,-0.119538,0.867786,-0.276008,1.200020,-0.000008 +-1.209600,-0.119317,0.866136,-0.275496,1.197730,-0.000008 +-1.207270,-0.119096,0.864485,-0.274983,1.195440,-0.000008 +-1.204950,-0.118876,0.862835,-0.274470,1.193140,-0.000008 +-1.202620,-0.118655,0.861185,-0.273957,1.190850,-0.000008 +-1.200300,-0.118434,0.859534,-0.273444,1.188560,-0.000008 +-1.197970,-0.118214,0.857884,-0.272931,1.186270,-0.000008 +-1.195650,-0.117993,0.856233,-0.272418,1.183980,-0.000008 +-1.193320,-0.117773,0.854583,-0.271905,1.181690,-0.000008 +-1.190990,-0.117552,0.852932,-0.271393,1.179400,-0.000008 +-1.188670,-0.117331,0.851282,-0.270880,1.177110,-0.000008 +-1.186340,-0.117111,0.849631,-0.270367,1.174820,-0.000008 +-1.184020,-0.116890,0.847981,-0.269854,1.172530,-0.000008 +-1.181690,-0.116669,0.846331,-0.269341,1.170240,-0.000008 +-1.179360,-0.116449,0.844680,-0.268828,1.167950,-0.000008 +-1.177040,-0.116228,0.843030,-0.268315,1.165660,-0.000008 +-1.174710,-0.116008,0.841379,-0.267802,1.163370,-0.000008 +-1.172390,-0.115787,0.839729,-0.267290,1.161070,-0.000008 +-1.170060,-0.115566,0.838078,-0.266777,1.158780,-0.000008 +-1.167740,-0.115346,0.836428,-0.266264,1.156490,-0.000008 +-1.165410,-0.115125,0.834777,-0.265751,1.154200,-0.000008 +-1.163080,-0.114904,0.833127,-0.265238,1.151910,-0.000008 +-1.160760,-0.114684,0.831477,-0.264725,1.149620,-0.000008 +-1.158430,-0.114463,0.829826,-0.264212,1.147330,-0.000008 +-1.156110,-0.114243,0.828176,-0.263699,1.145040,-0.000008 +-1.153780,-0.114022,0.826525,-0.263187,1.142750,-0.000008 +-1.151450,-0.113801,0.824875,-0.262674,1.140460,-0.000008 +-1.149130,-0.113581,0.823224,-0.262161,1.138170,-0.000008 +-1.146800,-0.113360,0.821574,-0.261648,1.135880,-0.000008 +-1.144480,-0.113139,0.819924,-0.261135,1.133590,-0.000008 +-1.142150,-0.112919,0.818273,-0.260622,1.131300,-0.000008 +-1.139830,-0.112698,0.816623,-0.260109,1.129000,-0.000008 +-1.137500,-0.112477,0.814972,-0.259596,1.126710,-0.000008 +-1.135170,-0.112257,0.813322,-0.259084,1.124420,-0.000008 +-1.132850,-0.112036,0.811671,-0.258571,1.122130,-0.000008 +-1.130520,-0.111816,0.810021,-0.258058,1.119840,-0.000008 +-1.128200,-0.111595,0.808370,-0.257545,1.117550,-0.000008 +-1.125870,-0.111374,0.806720,-0.257032,1.115260,-0.000008 +-1.123540,-0.111154,0.805070,-0.256519,1.112970,-0.000008 +-1.121220,-0.110933,0.803419,-0.256006,1.110680,-0.000008 +-1.118890,-0.110712,0.801769,-0.255493,1.108390,-0.000008 +-1.116570,-0.110492,0.800118,-0.254981,1.106100,-0.000008 +-1.114240,-0.110271,0.798468,-0.254468,1.103810,-0.000008 +-1.111920,-0.110051,0.796817,-0.253955,1.101520,-0.000008 +-1.109590,-0.109830,0.795167,-0.253442,1.099230,-0.000008 +-1.107260,-0.109609,0.793516,-0.252929,1.096930,-0.000008 +-1.104940,-0.109389,0.791866,-0.252416,1.094640,-0.000008 +-1.102610,-0.109168,0.790216,-0.251903,1.092350,-0.000008 +-1.100290,-0.108947,0.788565,-0.251390,1.090060,-0.000008 +-1.097960,-0.108727,0.786915,-0.250878,1.087770,-0.000008 +-1.095630,-0.108506,0.785264,-0.250365,1.085480,-0.000008 +-1.093310,-0.108285,0.783614,-0.249852,1.083190,-0.000008 +-1.090980,-0.108065,0.781963,-0.249339,1.080900,-0.000008 +-1.088660,-0.107844,0.780313,-0.248826,1.078610,-0.000008 +-1.086330,-0.107624,0.778662,-0.248313,1.076320,-0.000008 +-1.084010,-0.107403,0.777012,-0.247800,1.074030,-0.000008 +-1.081680,-0.107182,0.775362,-0.247287,1.071740,-0.000008 +-1.079350,-0.106962,0.773711,-0.246775,1.069450,-0.000008 +-1.077030,-0.106741,0.772061,-0.246262,1.067160,-0.000008 +-1.074700,-0.106520,0.770410,-0.245749,1.064860,-0.000008 +-1.072380,-0.106300,0.768760,-0.245236,1.062570,-0.000008 +-1.070050,-0.106079,0.767109,-0.244723,1.060280,-0.000008 +-1.067720,-0.105859,0.765459,-0.244210,1.057990,-0.000008 +-1.065400,-0.105638,0.763808,-0.243697,1.055700,-0.000008 +-1.063070,-0.105417,0.762158,-0.243184,1.053410,-0.000008 +-1.060750,-0.105197,0.760508,-0.242672,1.051120,-0.000008 +-1.058420,-0.104976,0.758857,-0.242159,1.048830,-0.000008 +-1.056100,-0.104755,0.757207,-0.241646,1.046540,-0.000008 +-1.053770,-0.104535,0.755556,-0.241133,1.044250,-0.000008 +-1.051440,-0.104314,0.753906,-0.240620,1.041960,-0.000008 +-1.049120,-0.104093,0.752255,-0.240107,1.039670,-0.000008 +-1.046790,-0.103873,0.750605,-0.239594,1.037380,-0.000008 +-1.044470,-0.103652,0.748954,-0.239081,1.035090,-0.000008 +-1.042140,-0.103432,0.747304,-0.238569,1.032790,-0.000008 +-1.039810,-0.103211,0.745654,-0.238056,1.030500,-0.000008 +-1.037490,-0.102990,0.744003,-0.237543,1.028210,-0.000008 +-1.035160,-0.102770,0.742353,-0.237030,1.025920,-0.000008 +-1.032840,-0.102549,0.740702,-0.236517,1.023630,-0.000008 +-1.030510,-0.102328,0.739052,-0.236004,1.021340,-0.000008 +-1.028190,-0.102108,0.737401,-0.235491,1.019050,-0.000008 +-1.025860,-0.101887,0.735751,-0.234978,1.016760,-0.000008 +-1.023530,-0.101667,0.734100,-0.234466,1.014470,-0.000008 +-1.021210,-0.101446,0.732450,-0.233953,1.012180,-0.000008 +-1.018880,-0.101225,0.730800,-0.233440,1.009890,-0.000008 +-1.016560,-0.101005,0.729149,-0.232927,1.007600,-0.000008 +-1.014230,-0.100784,0.727499,-0.232414,1.005310,-0.000008 +-1.011900,-0.100563,0.725848,-0.231901,1.003020,-0.000008 +-1.009580,-0.100343,0.724198,-0.231388,1.000720,-0.000008 +-1.007250,-0.100122,0.722547,-0.230876,0.998434,-0.000008 +-1.004930,-0.099902,0.720897,-0.230363,0.996143,-0.000008 +-1.002600,-0.099681,0.719247,-0.229850,0.993853,-0.000008 +-1.000270,-0.099460,0.717596,-0.229337,0.991562,-0.000008 +-0.997949,-0.099240,0.715946,-0.228824,0.989271,-0.000008 +-0.995623,-0.099019,0.714295,-0.228311,0.986981,-0.000008 +-0.993297,-0.098798,0.712645,-0.227798,0.984690,-0.000008 +-0.990972,-0.098578,0.710994,-0.227285,0.982399,-0.000008 +-0.988646,-0.098357,0.709344,-0.226773,0.980108,-0.000008 +-0.986320,-0.098137,0.707693,-0.226260,0.977818,-0.000008 +-0.983994,-0.097916,0.706043,-0.225747,0.975527,-0.000008 +-0.981668,-0.097695,0.704393,-0.225234,0.973236,-0.000008 +-0.979342,-0.097475,0.702742,-0.224721,0.970946,-0.000008 +-0.977017,-0.097254,0.701092,-0.224208,0.968655,-0.000008 +-0.974691,-0.097033,0.699441,-0.223695,0.966364,-0.000008 +-0.972365,-0.096813,0.697791,-0.223182,0.964074,-0.000008 +-0.970039,-0.096592,0.696140,-0.222670,0.961783,-0.000008 +-0.967713,-0.096371,0.694490,-0.222157,0.959492,-0.000008 +-0.965387,-0.096151,0.692839,-0.221644,0.957201,-0.000008 +-0.963062,-0.095930,0.691189,-0.221131,0.954911,-0.000008 +-0.960736,-0.095710,0.689539,-0.220618,0.952620,-0.000008 +-0.958410,-0.095489,0.687888,-0.220105,0.950329,-0.000008 +-0.956084,-0.095268,0.686238,-0.219592,0.948039,-0.000008 +-0.953758,-0.095048,0.684587,-0.219079,0.945748,-0.000008 +-0.951432,-0.094827,0.682937,-0.218567,0.943457,-0.000008 +-0.949106,-0.094606,0.681286,-0.218054,0.941166,-0.000008 +-0.946781,-0.094386,0.679636,-0.217541,0.938876,-0.000008 +-0.944455,-0.094165,0.677985,-0.217028,0.936585,-0.000008 +-0.942129,-0.093945,0.676335,-0.216515,0.934294,-0.000008 +-0.939803,-0.093724,0.674685,-0.216002,0.932004,-0.000008 +-0.937477,-0.093503,0.673034,-0.215489,0.929713,-0.000008 +-0.935151,-0.093283,0.671384,-0.214976,0.927422,-0.000008 +-0.932826,-0.093062,0.669733,-0.214464,0.925132,-0.000008 +-0.930500,-0.092841,0.668083,-0.213951,0.922841,-0.000008 +-0.928174,-0.092621,0.666432,-0.213438,0.920550,-0.000008 +-0.925848,-0.092400,0.664782,-0.212925,0.918259,-0.000008 +-0.923522,-0.092179,0.663131,-0.212412,0.915969,-0.000008 +-0.921196,-0.091959,0.661481,-0.211899,0.913678,-0.000008 +-0.918871,-0.091738,0.659831,-0.211386,0.911387,-0.000008 +-0.916545,-0.091518,0.658180,-0.210873,0.909097,-0.000008 +-0.914219,-0.091297,0.656530,-0.210361,0.906806,-0.000008 +-0.911893,-0.091076,0.654879,-0.209848,0.904515,-0.000008 +-0.909567,-0.090856,0.653229,-0.209335,0.902224,-0.000008 +-0.907241,-0.090635,0.651578,-0.208822,0.899934,-0.000008 +-0.904915,-0.090414,0.649928,-0.208309,0.897643,-0.000008 +-0.902590,-0.090194,0.648277,-0.207796,0.895352,-0.000008 +-0.900264,-0.089973,0.646627,-0.207283,0.893062,-0.000008 +-0.897938,-0.089752,0.644977,-0.206770,0.890771,-0.000008 +-0.895612,-0.089532,0.643326,-0.206258,0.888480,-0.000008 +-0.893286,-0.089311,0.641676,-0.205745,0.886189,-0.000008 +-0.890960,-0.089091,0.640025,-0.205232,0.883899,-0.000008 +-0.888635,-0.088870,0.638375,-0.204719,0.881608,-0.000008 +-0.886309,-0.088649,0.636724,-0.204206,0.879317,-0.000008 +-0.883983,-0.088429,0.635074,-0.203693,0.877027,-0.000008 +-0.881657,-0.088208,0.633423,-0.203180,0.874736,-0.000008 +-0.879331,-0.087987,0.631773,-0.202667,0.872445,-0.000008 +-0.877005,-0.087767,0.630123,-0.202155,0.870155,-0.000008 +-0.874680,-0.087546,0.628472,-0.201642,0.867864,-0.000008 +-0.872354,-0.087326,0.626822,-0.201129,0.865573,-0.000008 +-0.870028,-0.087105,0.625171,-0.200616,0.863282,-0.000008 +-0.867702,-0.086884,0.623521,-0.200103,0.860992,-0.000008 +-0.865376,-0.086664,0.621870,-0.199590,0.858701,-0.000008 +-0.863050,-0.086443,0.620220,-0.199077,0.856410,-0.000008 +-0.860724,-0.086222,0.618570,-0.198564,0.854120,-0.000008 +-0.858399,-0.086002,0.616919,-0.198052,0.851829,-0.000008 +-0.856073,-0.085781,0.615269,-0.197539,0.849538,-0.000008 +-0.853747,-0.085560,0.613618,-0.197026,0.847247,-0.000008 +-0.851421,-0.085340,0.611968,-0.196513,0.844957,-0.000008 +-0.849095,-0.085119,0.610317,-0.196000,0.842666,-0.000008 +-0.846769,-0.084899,0.608667,-0.195487,0.840375,-0.000008 +-0.844444,-0.084678,0.607016,-0.194974,0.838085,-0.000008 +-0.842118,-0.084457,0.605366,-0.194461,0.835794,-0.000008 +-0.839792,-0.084237,0.603716,-0.193949,0.833503,-0.000008 +-0.837466,-0.084016,0.602065,-0.193436,0.831212,-0.000008 +-0.835140,-0.083795,0.600415,-0.192923,0.828922,-0.000008 +-0.832814,-0.083575,0.598764,-0.192410,0.826631,-0.000008 +-0.830489,-0.083354,0.597114,-0.191897,0.824340,-0.000008 +-0.828163,-0.083134,0.595463,-0.191384,0.822050,-0.000008 +-0.825837,-0.082913,0.593813,-0.190871,0.819759,-0.000008 +-0.823511,-0.082692,0.592162,-0.190358,0.817468,-0.000008 +-0.821185,-0.082472,0.590512,-0.189846,0.815178,-0.000008 +-0.818859,-0.082251,0.588862,-0.189333,0.812887,-0.000008 +-0.816533,-0.082030,0.587211,-0.188820,0.810596,-0.000008 +-0.814208,-0.081810,0.585561,-0.188307,0.808305,-0.000008 +-0.811882,-0.081589,0.583910,-0.187794,0.806015,-0.000008 +-0.809556,-0.081368,0.582260,-0.187281,0.803724,-0.000008 +-0.807230,-0.081148,0.580609,-0.186768,0.801433,-0.000008 +-0.804904,-0.080927,0.578959,-0.186255,0.799143,-0.000008 +-0.802578,-0.080707,0.577308,-0.185743,0.796852,-0.000008 +-0.800253,-0.080486,0.575658,-0.185230,0.794561,-0.000008 +-0.797927,-0.080265,0.574008,-0.184717,0.792270,-0.000008 +-0.795601,-0.080045,0.572357,-0.184204,0.789980,-0.000008 +-0.793275,-0.079824,0.570707,-0.183691,0.787689,-0.000008 +-0.790949,-0.079603,0.569056,-0.183178,0.785398,-0.000008 +-0.788623,-0.079383,0.567406,-0.182665,0.783108,-0.000008 +-0.786298,-0.079162,0.565755,-0.182152,0.780817,-0.000008 +-0.783972,-0.078942,0.564105,-0.181640,0.778526,-0.000008 +-0.781646,-0.078721,0.562454,-0.181127,0.776236,-0.000008 +-0.779320,-0.078500,0.560804,-0.180614,0.773945,-0.000008 +-0.776994,-0.078280,0.559154,-0.180101,0.771654,-0.000008 +-0.774668,-0.078059,0.557503,-0.179588,0.769363,-0.000008 +-0.772342,-0.077838,0.555853,-0.179075,0.767073,-0.000008 +-0.770017,-0.077618,0.554202,-0.178562,0.764782,-0.000008 +-0.767691,-0.077397,0.552552,-0.178049,0.762491,-0.000008 +-0.765365,-0.077176,0.550901,-0.177537,0.760201,-0.000008 +-0.763039,-0.076956,0.549251,-0.177024,0.757910,-0.000008 +-0.760713,-0.076735,0.547600,-0.176511,0.755619,-0.000008 +-0.758387,-0.076515,0.545950,-0.175998,0.753328,-0.000008 +-0.756062,-0.076294,0.544300,-0.175485,0.751038,-0.000008 +-0.753736,-0.076073,0.542649,-0.174972,0.748747,-0.000008 +-0.751410,-0.075853,0.540999,-0.174459,0.746456,-0.000008 +-0.749084,-0.075632,0.539348,-0.173946,0.744166,-0.000008 +-0.746758,-0.075412,0.537698,-0.173434,0.741875,-0.000008 +-0.744432,-0.075191,0.536047,-0.172921,0.739584,-0.000008 +-0.742107,-0.074970,0.534397,-0.172408,0.737293,-0.000008 +-0.739781,-0.074750,0.532746,-0.171895,0.735003,-0.000008 +-0.737455,-0.074529,0.531096,-0.171382,0.732712,-0.000008 +-0.735129,-0.074308,0.529446,-0.170869,0.730421,-0.000008 +-0.732803,-0.074088,0.527795,-0.170356,0.728131,-0.000008 +-0.730477,-0.073867,0.526145,-0.169843,0.725840,-0.000008 +-0.728151,-0.073647,0.524494,-0.169331,0.723549,-0.000008 +-0.725826,-0.073426,0.522844,-0.168818,0.721259,-0.000008 +-0.723500,-0.073205,0.521193,-0.168305,0.718968,-0.000008 +-0.721174,-0.072985,0.519543,-0.167792,0.716677,-0.000008 +-0.718848,-0.072764,0.517893,-0.167279,0.714386,-0.000008 +-0.716522,-0.072543,0.516242,-0.166766,0.712096,-0.000008 +-0.714196,-0.072323,0.514592,-0.166253,0.709805,-0.000008 +-0.711871,-0.072102,0.512941,-0.165740,0.707514,-0.000008 +-0.709545,-0.071881,0.511291,-0.165228,0.705224,-0.000008 +-0.707219,-0.071661,0.509640,-0.164715,0.702933,-0.000008 +-0.704893,-0.071440,0.507990,-0.164202,0.700642,-0.000008 +-0.702567,-0.071220,0.506339,-0.163689,0.698351,-0.000008 +-0.700241,-0.070999,0.504689,-0.163176,0.696061,-0.000008 +-0.697916,-0.070778,0.503039,-0.162663,0.693770,-0.000008 +-0.695590,-0.070558,0.501388,-0.162150,0.691479,-0.000008 +-0.693264,-0.070337,0.499738,-0.161637,0.689189,-0.000008 +-0.690938,-0.070116,0.498087,-0.161125,0.686898,-0.000008 +-0.688612,-0.069896,0.496437,-0.160612,0.684607,-0.000008 +-0.686286,-0.069675,0.494786,-0.160099,0.682316,-0.000008 +-0.683961,-0.069455,0.493136,-0.159586,0.680026,-0.000008 +-0.681635,-0.069234,0.491485,-0.159073,0.677735,-0.000008 +-0.679309,-0.069013,0.489835,-0.158560,0.675444,-0.000008 +-0.676983,-0.068793,0.488185,-0.158047,0.673154,-0.000008 +-0.674657,-0.068572,0.486534,-0.157534,0.670863,-0.000008 +-0.672331,-0.068351,0.484884,-0.157022,0.668572,-0.000008 +-0.670005,-0.068131,0.483233,-0.156509,0.666282,-0.000008 +-0.667680,-0.067910,0.481583,-0.155996,0.663991,-0.000008 +-0.665354,-0.067689,0.479932,-0.155483,0.661700,-0.000008 +-0.663028,-0.067469,0.478282,-0.154970,0.659409,-0.000008 +-0.660702,-0.067248,0.476631,-0.154457,0.657119,-0.000008 +-0.658376,-0.067028,0.474981,-0.153944,0.654828,-0.000008 +-0.656050,-0.066807,0.473331,-0.153431,0.652537,-0.000008 +-0.653725,-0.066586,0.471680,-0.152919,0.650247,-0.000008 +-0.651399,-0.066366,0.470030,-0.152406,0.647956,-0.000008 +-0.649073,-0.066145,0.468379,-0.151893,0.645665,-0.000008 +-0.646747,-0.065924,0.466729,-0.151380,0.643374,-0.000008 +-0.644421,-0.065704,0.465078,-0.150867,0.641084,-0.000008 +-0.642095,-0.065483,0.463428,-0.150354,0.638793,-0.000008 +-0.639770,-0.065263,0.461777,-0.149841,0.636502,-0.000008 +-0.637444,-0.065042,0.460127,-0.149328,0.634212,-0.000008 +-0.635118,-0.064821,0.458477,-0.148816,0.631921,-0.000008 +-0.632792,-0.064601,0.456826,-0.148303,0.629630,-0.000008 +-0.630466,-0.064380,0.455176,-0.147790,0.627340,-0.000008 +-0.628140,-0.064159,0.453525,-0.147277,0.625049,-0.000008 +-0.625814,-0.063939,0.451875,-0.146764,0.622758,-0.000008 +-0.623489,-0.063718,0.450224,-0.146251,0.620467,-0.000008 +-0.621163,-0.063497,0.448574,-0.145738,0.618177,-0.000008 +-0.618837,-0.063277,0.446923,-0.145225,0.615886,-0.000008 +-0.616511,-0.063056,0.445273,-0.144713,0.613595,-0.000008 +-0.614185,-0.062836,0.443623,-0.144200,0.611305,-0.000008 +-0.611859,-0.062615,0.441972,-0.143687,0.609014,-0.000008 +-0.609534,-0.062394,0.440322,-0.143174,0.606723,-0.000008 +-0.607208,-0.062174,0.438671,-0.142661,0.604432,-0.000008 +-0.604882,-0.061953,0.437021,-0.142148,0.602142,-0.000008 +-0.602556,-0.061732,0.435370,-0.141635,0.599851,-0.000008 +-0.600230,-0.061512,0.433720,-0.141122,0.597560,-0.000008 +-0.597904,-0.061291,0.432070,-0.140610,0.595270,-0.000008 +-0.595579,-0.061071,0.430419,-0.140097,0.592979,-0.000008 +-0.593253,-0.060850,0.428769,-0.139584,0.590688,-0.000008 +-0.590927,-0.060629,0.427118,-0.139071,0.588397,-0.000008 +-0.588601,-0.060409,0.425468,-0.138558,0.586107,-0.000008 +-0.586275,-0.060188,0.423817,-0.138045,0.583816,-0.000008 +-0.583949,-0.059967,0.422167,-0.137532,0.581525,-0.000008 +-0.581623,-0.059747,0.420516,-0.137019,0.579235,-0.000008 +-0.579298,-0.059526,0.418866,-0.136507,0.576944,-0.000008 +-0.576972,-0.059305,0.417216,-0.135994,0.574653,-0.000008 +-0.574646,-0.059085,0.415565,-0.135481,0.572363,-0.000008 +-0.572320,-0.058864,0.413915,-0.134968,0.570072,-0.000008 +-0.569994,-0.058644,0.412264,-0.134455,0.567781,-0.000008 +-0.567668,-0.058423,0.410614,-0.133942,0.565490,-0.000008 +-0.565343,-0.058202,0.408963,-0.133429,0.563200,-0.000008 +-0.563017,-0.057982,0.407313,-0.132916,0.560909,-0.000008 +-0.560691,-0.057761,0.405662,-0.132404,0.558618,-0.000008 +-0.558365,-0.057540,0.404012,-0.131891,0.556328,-0.000008 +-0.556039,-0.057320,0.402362,-0.131378,0.554037,-0.000008 +-0.553713,-0.057099,0.400711,-0.130865,0.551746,-0.000008 +-0.551388,-0.056878,0.399061,-0.130352,0.549455,-0.000008 +-0.549062,-0.056658,0.397410,-0.129839,0.547165,-0.000008 +-0.546736,-0.056437,0.395760,-0.129326,0.544874,-0.000008 +-0.544410,-0.056217,0.394109,-0.128814,0.542583,-0.000008 +-0.542084,-0.055996,0.392459,-0.128301,0.540293,-0.000008 +-0.539758,-0.055775,0.390808,-0.127788,0.538002,-0.000008 +-0.537432,-0.055555,0.389158,-0.127275,0.535711,-0.000008 +-0.535107,-0.055334,0.387508,-0.126762,0.533420,-0.000008 +-0.532781,-0.055114,0.385857,-0.126249,0.531130,-0.000008 +-0.530455,-0.054893,0.384207,-0.125736,0.528839,-0.000008 +-0.528129,-0.054672,0.382556,-0.125223,0.526548,-0.000008 +-0.525803,-0.054452,0.380906,-0.124711,0.524258,-0.000008 +-0.523477,-0.054231,0.379255,-0.124198,0.521967,-0.000008 +-0.521152,-0.054010,0.377605,-0.123685,0.519676,-0.000008 +-0.518826,-0.053790,0.375954,-0.123172,0.517386,-0.000008 +-0.516500,-0.053569,0.374304,-0.122659,0.515095,-0.000008 +-0.514174,-0.053348,0.372654,-0.122146,0.512804,-0.000008 +-0.511848,-0.053128,0.371003,-0.121633,0.510513,-0.000008 +-0.509522,-0.052907,0.369353,-0.121120,0.508223,-0.000008 +-0.507197,-0.052686,0.367702,-0.120608,0.505932,-0.000008 +-0.504871,-0.052466,0.366052,-0.120095,0.503641,-0.000008 +-0.502545,-0.052245,0.364401,-0.119582,0.501351,-0.000008 +-0.500219,-0.052025,0.362751,-0.119069,0.499060,-0.000008 +-0.497893,-0.051804,0.361100,-0.118556,0.496769,-0.000008 +-0.495567,-0.051583,0.359450,-0.118043,0.494478,-0.000008 +-0.493241,-0.051363,0.357800,-0.117530,0.492188,-0.000008 +-0.490916,-0.051142,0.356149,-0.117017,0.489897,-0.000008 +-0.488590,-0.050922,0.354499,-0.116505,0.487606,-0.000008 +-0.486264,-0.050701,0.352848,-0.115992,0.485316,-0.000008 +-0.483938,-0.050480,0.351198,-0.115479,0.483025,-0.000008 +-0.481612,-0.050260,0.349547,-0.114966,0.480734,-0.000008 +-0.479286,-0.050039,0.347897,-0.114453,0.478444,-0.000008 +-0.476961,-0.049818,0.346246,-0.113940,0.476153,-0.000008 +-0.474635,-0.049598,0.344596,-0.113427,0.473862,-0.000008 +-0.472309,-0.049377,0.342946,-0.112914,0.471571,-0.000008 +-0.469983,-0.049156,0.341295,-0.112402,0.469281,-0.000008 +-0.467657,-0.048936,0.339645,-0.111889,0.466990,-0.000008 +-0.465331,-0.048715,0.337994,-0.111376,0.464699,-0.000008 +-0.463006,-0.048495,0.336344,-0.110863,0.462409,-0.000008 +-0.460680,-0.048274,0.334693,-0.110350,0.460118,-0.000008 +-0.458354,-0.048053,0.333043,-0.109837,0.457827,-0.000008 +-0.456028,-0.047833,0.331393,-0.109324,0.455536,-0.000008 +-0.453702,-0.047612,0.329742,-0.108811,0.453246,-0.000008 +-0.451376,-0.047391,0.328092,-0.108299,0.450955,-0.000008 +-0.449051,-0.047171,0.326441,-0.107786,0.448664,-0.000008 +-0.446725,-0.046950,0.324791,-0.107273,0.446374,-0.000008 +-0.444399,-0.046730,0.323140,-0.106760,0.444083,-0.000008 +-0.442073,-0.046509,0.321490,-0.106247,0.441792,-0.000008 +-0.439747,-0.046288,0.319839,-0.105734,0.439501,-0.000008 +-0.437421,-0.046068,0.318189,-0.105221,0.437211,-0.000008 +-0.435095,-0.045847,0.316539,-0.104708,0.434920,-0.000008 +-0.432770,-0.045626,0.314888,-0.104196,0.432629,-0.000008 +-0.430444,-0.045406,0.313238,-0.103683,0.430339,-0.000008 +-0.428118,-0.045185,0.311587,-0.103170,0.428048,-0.000008 +-0.425792,-0.044964,0.309937,-0.102657,0.425757,-0.000008 +-0.423466,-0.044744,0.308286,-0.102144,0.423467,-0.000008 +-0.421140,-0.044523,0.306636,-0.101631,0.421176,-0.000008 +-0.418815,-0.044303,0.304985,-0.101118,0.418885,-0.000008 +-0.416489,-0.044082,0.303335,-0.100605,0.416594,-0.000008 +-0.414163,-0.043861,0.301685,-0.100093,0.414304,-0.000008 +-0.411837,-0.043641,0.300034,-0.099580,0.412013,-0.000008 +-0.409511,-0.043420,0.298384,-0.099067,0.409722,-0.000008 +-0.407185,-0.043199,0.296733,-0.098554,0.407432,-0.000008 +-0.404860,-0.042979,0.295083,-0.098041,0.405141,-0.000008 +-0.402534,-0.042758,0.293432,-0.097528,0.402850,-0.000008 +-0.400208,-0.042537,0.291782,-0.097015,0.400559,-0.000008 +-0.397882,-0.042317,0.290131,-0.096502,0.398269,-0.000008 +-0.395556,-0.042096,0.288481,-0.095990,0.395978,-0.000008 +-0.393230,-0.041876,0.286831,-0.095477,0.393687,-0.000008 +-0.390904,-0.041655,0.285180,-0.094964,0.391397,-0.000008 +-0.388579,-0.041434,0.283530,-0.094451,0.389106,-0.000008 +-0.386253,-0.041214,0.281879,-0.093938,0.386815,-0.000008 +-0.383927,-0.040993,0.280229,-0.093425,0.384524,-0.000008 +-0.381601,-0.040773,0.278578,-0.092912,0.382234,-0.000008 +-0.379275,-0.040552,0.276928,-0.092399,0.379943,-0.000008 +-0.376949,-0.040331,0.275277,-0.091886,0.377652,-0.000008 +-0.374624,-0.040111,0.273627,-0.091374,0.375362,-0.000008 +-0.372298,-0.039890,0.271977,-0.090861,0.373071,-0.000008 +-0.369972,-0.039669,0.270326,-0.090348,0.370780,-0.000008 +-0.367646,-0.039449,0.268676,-0.089835,0.368490,-0.000008 +-0.365320,-0.039228,0.267025,-0.089322,0.366199,-0.000008 +-0.362994,-0.039007,0.265375,-0.088809,0.363908,-0.000008 +-0.360669,-0.038787,0.263724,-0.088296,0.361617,-0.000008 +-0.358343,-0.038566,0.262074,-0.087784,0.359327,-0.000008 +-0.356017,-0.038345,0.260423,-0.087271,0.357036,-0.000008 +-0.353691,-0.038125,0.258773,-0.086758,0.354745,-0.000008 +-0.351365,-0.037904,0.257123,-0.086245,0.352455,-0.000008 +-0.349039,-0.037684,0.255472,-0.085732,0.350164,-0.000008 +-0.346713,-0.037463,0.253822,-0.085219,0.347873,-0.000008 +-0.344388,-0.037242,0.252171,-0.084706,0.345582,-0.000008 +-0.342062,-0.037022,0.250521,-0.084193,0.343292,-0.000008 +-0.339736,-0.036801,0.248870,-0.083681,0.341001,-0.000008 +-0.337410,-0.036581,0.247220,-0.083168,0.338710,-0.000008 +-0.335084,-0.036360,0.245569,-0.082655,0.336420,-0.000008 +-0.332758,-0.036139,0.243919,-0.082142,0.334129,-0.000008 +-0.330433,-0.035919,0.242269,-0.081629,0.331838,-0.000008 +-0.328107,-0.035698,0.240618,-0.081116,0.329548,-0.000008 +-0.325781,-0.035477,0.238968,-0.080603,0.327257,-0.000008 +-0.323455,-0.035257,0.237317,-0.080090,0.324966,-0.000008 +-0.321129,-0.035036,0.235667,-0.079578,0.322675,-0.000008 +-0.318803,-0.034815,0.234016,-0.079065,0.320385,-0.000008 +-0.316478,-0.034595,0.232366,-0.078552,0.318094,-0.000008 +-0.314152,-0.034374,0.230716,-0.078039,0.315803,-0.000008 +-0.311826,-0.034154,0.229065,-0.077526,0.313513,-0.000008 +-0.309500,-0.033933,0.227415,-0.077013,0.311222,-0.000008 +-0.307174,-0.033712,0.225764,-0.076500,0.308931,-0.000008 +-0.304848,-0.033492,0.224114,-0.075987,0.306640,-0.000008 +-0.302522,-0.033271,0.222463,-0.075475,0.304350,-0.000008 +-0.300197,-0.033050,0.220813,-0.074962,0.302059,-0.000008 +-0.297871,-0.032830,0.219162,-0.074449,0.299768,-0.000008 +-0.295545,-0.032609,0.217512,-0.073936,0.297478,-0.000008 +-0.293219,-0.032389,0.215862,-0.073423,0.295187,-0.000008 +-0.290893,-0.032168,0.214211,-0.072910,0.292896,-0.000008 +-0.288567,-0.031947,0.212561,-0.072397,0.290605,-0.000008 +-0.286242,-0.031727,0.210910,-0.071884,0.288315,-0.000008 +-0.283916,-0.031506,0.209260,-0.071372,0.286024,-0.000008 +-0.281590,-0.031285,0.207609,-0.070859,0.283733,-0.000008 +-0.279264,-0.031065,0.205959,-0.070346,0.281443,-0.000008 +-0.276938,-0.030844,0.204308,-0.069833,0.279152,-0.000008 +-0.274612,-0.030624,0.202658,-0.069320,0.276861,-0.000008 +-0.272287,-0.030403,0.201008,-0.068807,0.274571,-0.000008 +-0.269961,-0.030182,0.199357,-0.068294,0.272280,-0.000008 +-0.267635,-0.029962,0.197707,-0.067781,0.269989,-0.000008 +-0.265309,-0.029741,0.196056,-0.067269,0.267698,-0.000008 +-0.262983,-0.029520,0.194406,-0.066756,0.265408,-0.000008 +-0.260657,-0.029300,0.192755,-0.066243,0.263117,-0.000008 +-0.258331,-0.029079,0.191105,-0.065730,0.260826,-0.000008 +-0.256006,-0.028858,0.189454,-0.065217,0.258536,-0.000008 +-0.253680,-0.028638,0.187804,-0.064704,0.256245,-0.000008 +-0.251354,-0.028417,0.186154,-0.064191,0.253954,-0.000008 +-0.249028,-0.028196,0.184503,-0.063678,0.251663,-0.000008 +-0.246702,-0.027976,0.182853,-0.063166,0.249373,-0.000008 +-0.244376,-0.027755,0.181202,-0.062653,0.247082,-0.000008 +-0.242051,-0.027535,0.179552,-0.062140,0.244791,-0.000008 +-0.239725,-0.027314,0.177901,-0.061627,0.242501,-0.000008 +-0.237399,-0.027093,0.176251,-0.061114,0.240210,-0.000008 +-0.235073,-0.026873,0.174600,-0.060601,0.237919,-0.000008 +-0.232747,-0.026652,0.172950,-0.060088,0.235628,-0.000008 +-0.230421,-0.026432,0.171300,-0.059576,0.233338,-0.000008 +-0.228096,-0.026211,0.169649,-0.059063,0.231047,-0.000008 +-0.225770,-0.025990,0.167999,-0.058550,0.228756,-0.000008 +-0.223444,-0.025770,0.166348,-0.058037,0.226466,-0.000008 +-0.221118,-0.025549,0.164698,-0.057524,0.224175,-0.000008 +-0.218792,-0.025328,0.163047,-0.057011,0.221884,-0.000008 +-0.216466,-0.025108,0.161397,-0.056498,0.219594,-0.000008 +-0.214141,-0.024887,0.159746,-0.055985,0.217303,-0.000008 +-0.211815,-0.024666,0.158096,-0.055473,0.215012,-0.000008 +-0.209489,-0.024446,0.156446,-0.054960,0.212721,-0.000008 +-0.207163,-0.024225,0.154795,-0.054447,0.210431,-0.000008 +-0.204837,-0.024005,0.153145,-0.053934,0.208140,-0.000008 +-0.202511,-0.023784,0.151494,-0.053421,0.205849,-0.000008 +-0.200185,-0.023563,0.149844,-0.052908,0.203559,-0.000008 +-0.197860,-0.023343,0.148193,-0.052395,0.201268,-0.000008 +-0.195534,-0.023122,0.146543,-0.051882,0.198977,-0.000008 +-0.193208,-0.022901,0.144892,-0.051369,0.196686,-0.000008 +-0.190882,-0.022681,0.143242,-0.050857,0.194396,-0.000008 +-0.188556,-0.022460,0.141592,-0.050344,0.192105,-0.000008 +-0.186230,-0.022239,0.139941,-0.049831,0.189814,-0.000008 +-0.183905,-0.022019,0.138291,-0.049318,0.187524,-0.000008 +-0.181579,-0.021798,0.136640,-0.048805,0.185233,-0.000008 +-0.179253,-0.021578,0.134990,-0.048292,0.182942,-0.000008 +-0.176927,-0.021357,0.133339,-0.047779,0.180652,-0.000008 +-0.174601,-0.021136,0.131689,-0.047267,0.178361,-0.000008 +-0.172275,-0.020916,0.130039,-0.046754,0.176070,-0.000008 +-0.169950,-0.020695,0.128388,-0.046241,0.173779,-0.000008 +-0.167624,-0.020475,0.126738,-0.045728,0.171489,-0.000008 +-0.165298,-0.020254,0.125087,-0.045215,0.169198,-0.000008 +-0.162972,-0.020033,0.123437,-0.044702,0.166907,-0.000008 +-0.160646,-0.019813,0.121786,-0.044189,0.164617,-0.000008 +-0.158320,-0.019592,0.120136,-0.043676,0.162326,-0.000008 +-0.155994,-0.019371,0.118485,-0.043164,0.160035,-0.000008 +-0.153669,-0.019151,0.116835,-0.042651,0.157744,-0.000008 +-0.151343,-0.018930,0.115185,-0.042138,0.155454,-0.000008 +-0.149017,-0.018709,0.113534,-0.041625,0.153163,-0.000008 +-0.146691,-0.018489,0.111884,-0.041112,0.150872,-0.000008 +-0.144365,-0.018268,0.110233,-0.040599,0.148582,-0.000008 +-0.142039,-0.018048,0.108583,-0.040086,0.146291,-0.000008 +-0.139714,-0.017827,0.106932,-0.039573,0.144000,-0.000008 +-0.137388,-0.017606,0.105282,-0.039060,0.141709,-0.000008 +-0.135062,-0.017386,0.103631,-0.038548,0.139419,-0.000008 +-0.132736,-0.017165,0.101981,-0.038035,0.137128,-0.000008 +-0.130410,-0.016944,0.100331,-0.037522,0.134837,-0.000008 +-0.128084,-0.016724,0.098680,-0.037009,0.132547,-0.000008 +-0.125759,-0.016503,0.097030,-0.036496,0.130256,-0.000008 +-0.123433,-0.016282,0.095379,-0.035983,0.127965,-0.000008 +-0.121107,-0.016062,0.093729,-0.035470,0.125675,-0.000008 +-0.118781,-0.015841,0.092078,-0.034958,0.123384,-0.000008 +-0.116455,-0.015621,0.090428,-0.034445,0.121093,-0.000008 +-0.114129,-0.015400,0.088777,-0.033932,0.118802,-0.000008 +-0.111803,-0.015179,0.087127,-0.033419,0.116512,-0.000008 +-0.109478,-0.014959,0.085477,-0.032906,0.114221,-0.000008 +-0.107152,-0.014738,0.083826,-0.032393,0.111930,-0.000008 +-0.104826,-0.014517,0.082176,-0.031880,0.109640,-0.000008 +-0.102500,-0.014297,0.080525,-0.031367,0.107349,-0.000008 +-0.100174,-0.014076,0.078875,-0.030855,0.105058,-0.000008 +-0.097848,-0.013856,0.077224,-0.030342,0.102767,-0.000008 +-0.095523,-0.013635,0.075574,-0.029829,0.100477,-0.000008 +-0.093197,-0.013414,0.073924,-0.029316,0.098186,-0.000008 +-0.090871,-0.013194,0.072273,-0.028803,0.095895,-0.000008 +-0.088545,-0.012973,0.070623,-0.028290,0.093605,-0.000008 +-0.086219,-0.012752,0.068972,-0.027777,0.091314,-0.000008 +-0.083893,-0.012532,0.067322,-0.027264,0.089023,-0.000008 +-0.081568,-0.012311,0.065671,-0.026752,0.086733,-0.000008 +-0.079242,-0.012091,0.064021,-0.026239,0.084442,-0.000008 +-0.076916,-0.011870,0.062370,-0.025726,0.082151,-0.000008 +-0.074590,-0.011649,0.060720,-0.025213,0.079860,-0.000008 +-0.072264,-0.011429,0.059069,-0.024700,0.077570,-0.000008 +-0.069938,-0.011208,0.057419,-0.024187,0.075279,-0.000008 +-0.067613,-0.010987,0.055769,-0.023674,0.072988,-0.000008 +-0.065289,-0.010767,0.054118,-0.023161,0.070697,-0.000008 +-0.062971,-0.010546,0.052468,-0.022648,0.068407,-0.000008 +-0.060660,-0.010325,0.050817,-0.022136,0.066116,-0.000008 +-0.058359,-0.010105,0.049167,-0.021623,0.063825,-0.000008 +-0.056070,-0.009884,0.047516,-0.021110,0.061535,-0.000008 +-0.053797,-0.009664,0.045866,-0.020597,0.059245,-0.000008 +-0.051542,-0.009443,0.044215,-0.020084,0.056959,-0.000008 +-0.049307,-0.009222,0.042565,-0.019571,0.054681,-0.000008 +-0.047095,-0.009002,0.040915,-0.019058,0.052412,-0.000008 +-0.044908,-0.008781,0.039265,-0.018545,0.050157,-0.000008 +-0.042750,-0.008560,0.037620,-0.018033,0.047919,-0.000008 +-0.040623,-0.008340,0.035981,-0.017520,0.045699,-0.000008 +-0.038529,-0.008119,0.034350,-0.017007,0.043503,-0.000008 +-0.036471,-0.007899,0.032731,-0.016494,0.041332,-0.000008 +-0.034451,-0.007678,0.031127,-0.015981,0.039190,-0.000008 +-0.032473,-0.007457,0.029539,-0.015468,0.037080,-0.000008 +-0.030539,-0.007237,0.027970,-0.014955,0.035005,-0.000008 +-0.028650,-0.007016,0.026423,-0.014443,0.032968,-0.000008 +-0.026811,-0.006795,0.024900,-0.013930,0.030973,-0.000008 +-0.025024,-0.006575,0.023405,-0.013417,0.029022,-0.000008 +-0.023290,-0.006354,0.021939,-0.012904,0.027118,-0.000008 +-0.021614,-0.006133,0.020506,-0.012391,0.025265,-0.000008 +-0.019996,-0.005913,0.019107,-0.011878,0.023466,-0.000008 +-0.018441,-0.005692,0.017746,-0.011365,0.021724,-0.000008 +-0.016950,-0.005472,0.016425,-0.010852,0.020041,-0.000008 +-0.015526,-0.005251,0.015147,-0.010340,0.018422,-0.000008 +-0.014172,-0.005030,0.013913,-0.009827,0.016869,-0.000008 +-0.012891,-0.004810,0.012728,-0.009314,0.015385,-0.000008 +-0.011684,-0.004589,0.011593,-0.008801,0.013974,-0.000008 +-0.010554,-0.004368,0.010511,-0.008288,0.012638,-0.000008 +-0.009500,-0.004148,0.009485,-0.007775,0.011380,-0.000008 +-0.008518,-0.003927,0.008517,-0.007262,0.010205,-0.000008 +-0.007606,-0.003707,0.007610,-0.006749,0.009112,-0.000008 +-0.006762,-0.003486,0.006766,-0.006237,0.008101,-0.000008 +-0.005982,-0.003265,0.005986,-0.005726,0.007167,-0.000008 +-0.005265,-0.003045,0.005269,-0.005221,0.006308,-0.000008 +-0.004608,-0.002824,0.004612,-0.004724,0.005521,-0.000008 +-0.004008,-0.002603,0.004012,-0.004238,0.004802,-0.000008 +-0.003462,-0.002383,0.003466,-0.003767,0.004148,-0.000008 +-0.002969,-0.002162,0.002973,-0.003314,0.003556,-0.000008 +-0.002524,-0.001942,0.002528,-0.002881,0.003024,-0.000008 +-0.002126,-0.001722,0.002130,-0.002473,0.002548,-0.000008 +-0.001773,-0.001506,0.001777,-0.002091,0.002124,-0.000008 +-0.001461,-0.001297,0.001465,-0.001740,0.001750,-0.000008 +-0.001188,-0.001097,0.001192,-0.001421,0.001423,-0.000008 +-0.000951,-0.000908,0.000955,-0.001139,0.001140,-0.000008 +-0.000748,-0.000733,0.000752,-0.000896,0.000897,-0.000008 +-0.000576,-0.000575,0.000580,-0.000690,0.000691,-0.000008 +-0.000433,-0.000436,0.000437,-0.000519,0.000519,-0.000008 +-0.000316,-0.000319,0.000320,-0.000378,0.000379,-0.000008 +-0.000222,-0.000226,0.000226,-0.000266,0.000266,-0.000008 +-0.000149,-0.000152,0.000153,-0.000178,0.000179,-0.000008 +-0.000094,-0.000097,0.000098,-0.000112,0.000113,-0.000008 +-0.000055,-0.000058,0.000059,-0.000065,0.000065,-0.000008 +-0.000028,-0.000032,0.000032,-0.000034,0.000034,-0.000008 +-0.000012,-0.000016,0.000016,-0.000014,0.000015,-0.000008 +-0.000004,-0.000007,0.000008,-0.000005,0.000005,-0.000008 +-0.000001,-0.000004,0.000005,-0.000001,0.000001,-0.000008 +-0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +-0.000000,-0.000004,0.000004,-0.000000,0.000001,-0.000008 +0.000002,-0.000001,-0.000001,-0.000001,0.000006,0.000000 +0.000005,-0.000004,-0.000004,-0.000005,0.000002,0.000000 +0.000016,-0.000015,-0.000015,-0.000017,-0.000010,0.000000 +0.000036,-0.000034,-0.000035,-0.000041,-0.000034,0.000000 +0.000069,-0.000061,-0.000068,-0.000081,-0.000074,0.000000 +0.000118,-0.000093,-0.000117,-0.000140,-0.000133,0.000000 +0.000187,-0.000126,-0.000186,-0.000222,-0.000215,0.000000 +0.000278,-0.000160,-0.000277,-0.000332,-0.000325,0.000000 +0.000395,-0.000193,-0.000394,-0.000472,-0.000465,0.000000 +0.000542,-0.000226,-0.000541,-0.000648,-0.000641,0.000001 +0.000721,-0.000260,-0.000720,-0.000863,-0.000856,0.000001 +0.000936,-0.000293,-0.000935,-0.001120,-0.001113,0.000001 +0.001189,-0.000326,-0.001188,-0.001424,-0.001417,0.000001 +0.001485,-0.000360,-0.001484,-0.001778,-0.001771,0.000001 +0.001827,-0.000393,-0.001826,-0.002187,-0.002180,0.000001 +0.002217,-0.000426,-0.002216,-0.002654,-0.002647,0.000001 +0.002658,-0.000460,-0.002657,-0.003184,-0.003177,0.000001 +0.003156,-0.000493,-0.003155,-0.003779,-0.003772,0.000001 +0.003711,-0.000526,-0.003710,-0.004445,-0.004438,0.000001 +0.004328,-0.000560,-0.004327,-0.005184,-0.005177,0.000001 +0.005010,-0.000593,-0.005009,-0.006001,-0.005994,0.000001 +0.005761,-0.000626,-0.005760,-0.006900,-0.006893,0.000001 +0.006582,-0.000660,-0.006581,-0.007882,-0.007877,0.000001 +0.007479,-0.000693,-0.007478,-0.008944,-0.008951,0.000001 +0.008453,-0.000726,-0.008451,-0.010081,-0.010118,0.000001 +0.009508,-0.000760,-0.009499,-0.011290,-0.011377,0.000001 +0.010647,-0.000793,-0.010620,-0.012568,-0.012724,0.000001 +0.011870,-0.000826,-0.011809,-0.013910,-0.014155,0.000001 +0.013172,-0.000860,-0.013064,-0.015311,-0.015666,0.000001 +0.014551,-0.000893,-0.014380,-0.016770,-0.017254,0.000002 +0.016003,-0.000926,-0.015756,-0.018281,-0.018915,0.000002 +0.017525,-0.000960,-0.017188,-0.019840,-0.020644,0.000002 +0.019114,-0.000993,-0.018672,-0.021444,-0.022439,0.000002 +0.020767,-0.001026,-0.020205,-0.023090,-0.024294,0.000002 +0.022480,-0.001060,-0.021784,-0.024772,-0.026206,0.000002 +0.024250,-0.001093,-0.023406,-0.026487,-0.028172,0.000002 +0.026074,-0.001126,-0.025067,-0.028231,-0.030186,0.000002 +0.027948,-0.001160,-0.026765,-0.030001,-0.032246,0.000002 +0.029870,-0.001193,-0.028495,-0.031792,-0.034348,0.000002 +0.031836,-0.001226,-0.030256,-0.033600,-0.036487,0.000002 +0.033843,-0.001260,-0.032042,-0.035423,-0.038661,0.000002 +0.035888,-0.001293,-0.033853,-0.037255,-0.040863,0.000002 +0.037967,-0.001326,-0.035683,-0.039093,-0.043092,0.000002 +0.040077,-0.001360,-0.037529,-0.040932,-0.045343,0.000002 +0.042215,-0.001393,-0.039390,-0.042772,-0.047612,0.000002 +0.044378,-0.001426,-0.041260,-0.044612,-0.049896,0.000002 +0.046562,-0.001460,-0.043138,-0.046452,-0.052189,0.000002 +0.048764,-0.001493,-0.045020,-0.048292,-0.054490,0.000002 +0.050982,-0.001526,-0.046902,-0.050132,-0.056793,0.000002 +0.053211,-0.001560,-0.048784,-0.051972,-0.059096,0.000003 +0.055448,-0.001593,-0.050667,-0.053812,-0.061399,0.000003 +0.057690,-0.001626,-0.052549,-0.055652,-0.063702,0.000003 +0.059935,-0.001660,-0.054431,-0.057492,-0.066005,0.000003 +0.062179,-0.001693,-0.056314,-0.059332,-0.068308,0.000003 +0.064424,-0.001726,-0.058196,-0.061172,-0.070612,0.000003 +0.066669,-0.001760,-0.060078,-0.063012,-0.072915,0.000003 +0.068913,-0.001793,-0.061961,-0.064852,-0.075218,0.000003 +0.071158,-0.001826,-0.063843,-0.066692,-0.077521,0.000003 +0.073402,-0.001860,-0.065725,-0.068532,-0.079824,0.000003 +0.075647,-0.001893,-0.067608,-0.070372,-0.082128,0.000003 +0.077891,-0.001926,-0.069490,-0.072212,-0.084431,0.000003 +0.080136,-0.001960,-0.071372,-0.074052,-0.086734,0.000003 +0.082381,-0.001993,-0.073255,-0.075892,-0.089037,0.000003 +0.084625,-0.002026,-0.075137,-0.077732,-0.091340,0.000003 +0.086870,-0.002060,-0.077019,-0.079572,-0.093643,0.000003 +0.089114,-0.002093,-0.078901,-0.081412,-0.095947,0.000003 +0.091359,-0.002126,-0.080784,-0.083252,-0.098250,0.000003 +0.093604,-0.002160,-0.082666,-0.085092,-0.100553,0.000003 +0.095848,-0.002193,-0.084548,-0.086932,-0.102856,0.000004 +0.098093,-0.002226,-0.086431,-0.088772,-0.105159,0.000004 +0.100337,-0.002260,-0.088313,-0.090612,-0.107462,0.000004 +0.102582,-0.002293,-0.090195,-0.092452,-0.109766,0.000004 +0.104826,-0.002326,-0.092078,-0.094292,-0.112069,0.000004 +0.107071,-0.002360,-0.093960,-0.096132,-0.114372,0.000004 +0.109316,-0.002393,-0.095842,-0.097972,-0.116675,0.000004 +0.111560,-0.002426,-0.097725,-0.099812,-0.118978,0.000004 +0.113805,-0.002460,-0.099607,-0.101652,-0.121281,0.000004 +0.116049,-0.002493,-0.101489,-0.103492,-0.123585,0.000004 +0.118294,-0.002526,-0.103372,-0.105332,-0.125888,0.000004 +0.120539,-0.002560,-0.105254,-0.107172,-0.128191,0.000004 +0.122783,-0.002593,-0.107136,-0.109012,-0.130494,0.000004 +0.125028,-0.002626,-0.109019,-0.110852,-0.132797,0.000004 +0.127272,-0.002660,-0.110901,-0.112692,-0.135100,0.000004 +0.129517,-0.002693,-0.112783,-0.114532,-0.137404,0.000004 +0.131761,-0.002726,-0.114666,-0.116372,-0.139707,0.000004 +0.134006,-0.002760,-0.116548,-0.118212,-0.142010,0.000004 +0.136251,-0.002793,-0.118430,-0.120052,-0.144313,0.000004 +0.138495,-0.002826,-0.120313,-0.121892,-0.146616,0.000004 +0.140740,-0.002860,-0.122195,-0.123732,-0.148919,0.000005 +0.142984,-0.002893,-0.124077,-0.125572,-0.151223,0.000005 +0.145229,-0.002926,-0.125960,-0.127412,-0.153526,0.000005 +0.147474,-0.002960,-0.127842,-0.129252,-0.155829,0.000005 +0.149718,-0.002993,-0.129724,-0.131092,-0.158132,0.000005 +0.151963,-0.003026,-0.131607,-0.132932,-0.160435,0.000005 +0.154207,-0.003060,-0.133489,-0.134772,-0.162738,0.000005 +0.156452,-0.003093,-0.135371,-0.136612,-0.165042,0.000005 +0.158696,-0.003126,-0.137254,-0.138452,-0.167345,0.000005 +0.160941,-0.003160,-0.139136,-0.140292,-0.169648,0.000005 +0.163186,-0.003193,-0.141018,-0.142132,-0.171951,0.000005 +0.165430,-0.003226,-0.142900,-0.143972,-0.174254,0.000005 +0.167675,-0.003260,-0.144783,-0.145812,-0.176558,0.000005 +0.169919,-0.003293,-0.146665,-0.147652,-0.178861,0.000005 +0.172164,-0.003326,-0.148547,-0.149492,-0.181164,0.000005 +0.174409,-0.003360,-0.150430,-0.151332,-0.183467,0.000005 +0.176653,-0.003393,-0.152312,-0.153172,-0.185770,0.000005 +0.178898,-0.003426,-0.154194,-0.155012,-0.188073,0.000005 +0.181142,-0.003459,-0.156077,-0.156852,-0.190377,0.000005 +0.183387,-0.003493,-0.157959,-0.158692,-0.192680,0.000005 +0.185631,-0.003526,-0.159841,-0.160532,-0.194983,0.000006 +0.187876,-0.003559,-0.161724,-0.162372,-0.197286,0.000006 +0.190121,-0.003593,-0.163606,-0.164212,-0.199589,0.000006 +0.192365,-0.003626,-0.165488,-0.166052,-0.201892,0.000006 +0.194610,-0.003659,-0.167371,-0.167892,-0.204196,0.000006 +0.196854,-0.003693,-0.169253,-0.169732,-0.206499,0.000006 +0.199099,-0.003726,-0.171135,-0.171572,-0.208802,0.000006 +0.201344,-0.003759,-0.173018,-0.173412,-0.211105,0.000006 +0.203588,-0.003793,-0.174900,-0.175252,-0.213408,0.000006 +0.205833,-0.003826,-0.176782,-0.177092,-0.215711,0.000006 +0.208077,-0.003859,-0.178665,-0.178931,-0.218015,0.000006 +0.210322,-0.003893,-0.180547,-0.180771,-0.220318,0.000006 +0.212566,-0.003926,-0.182429,-0.182611,-0.222621,0.000006 +0.214811,-0.003959,-0.184312,-0.184451,-0.224924,0.000006 +0.217056,-0.003993,-0.186194,-0.186291,-0.227227,0.000006 +0.219300,-0.004026,-0.188076,-0.188131,-0.229530,0.000006 +0.221545,-0.004059,-0.189959,-0.189971,-0.231834,0.000006 +0.223789,-0.004093,-0.191841,-0.191811,-0.234137,0.000006 +0.226034,-0.004126,-0.193723,-0.193651,-0.236440,0.000006 +0.228279,-0.004159,-0.195606,-0.195491,-0.238743,0.000007 +0.230523,-0.004193,-0.197488,-0.197331,-0.241046,0.000007 +0.232768,-0.004226,-0.199370,-0.199171,-0.243349,0.000007 +0.235012,-0.004259,-0.201253,-0.201011,-0.245653,0.000007 +0.237257,-0.004293,-0.203135,-0.202851,-0.247956,0.000007 +0.239501,-0.004326,-0.205017,-0.204691,-0.250259,0.000007 +0.241746,-0.004359,-0.206900,-0.206531,-0.252562,0.000007 +0.243991,-0.004393,-0.208782,-0.208371,-0.254865,0.000007 +0.246235,-0.004426,-0.210664,-0.210211,-0.257168,0.000007 +0.248480,-0.004459,-0.212547,-0.212051,-0.259472,0.000007 +0.250724,-0.004493,-0.214429,-0.213891,-0.261775,0.000007 +0.252969,-0.004526,-0.216311,-0.215731,-0.264078,0.000007 +0.255213,-0.004559,-0.218193,-0.217571,-0.266381,0.000007 +0.257458,-0.004593,-0.220076,-0.219411,-0.268684,0.000007 +0.259703,-0.004626,-0.221958,-0.221251,-0.270988,0.000007 +0.261947,-0.004659,-0.223840,-0.223091,-0.273291,0.000007 +0.264192,-0.004693,-0.225723,-0.224931,-0.275594,0.000007 +0.266436,-0.004726,-0.227605,-0.226771,-0.277897,0.000007 +0.268681,-0.004759,-0.229487,-0.228611,-0.280200,0.000007 +0.270926,-0.004793,-0.231370,-0.230451,-0.282503,0.000007 +0.273170,-0.004826,-0.233252,-0.232291,-0.284807,0.000008 +0.275415,-0.004859,-0.235134,-0.234131,-0.287110,0.000008 +0.277659,-0.004893,-0.237017,-0.235971,-0.289413,0.000008 +0.279904,-0.004926,-0.238899,-0.237811,-0.291716,0.000008 +0.282148,-0.004959,-0.240781,-0.239651,-0.294019,0.000008 +0.284393,-0.004993,-0.242664,-0.241491,-0.296322,0.000008 +0.286638,-0.005026,-0.244546,-0.243331,-0.298626,0.000008 +0.288882,-0.005059,-0.246428,-0.245171,-0.300929,0.000008 +0.291127,-0.005093,-0.248311,-0.247011,-0.303232,0.000008 +0.293371,-0.005126,-0.250193,-0.248851,-0.305535,0.000008 +0.295616,-0.005159,-0.252075,-0.250691,-0.307838,0.000008 +0.297861,-0.005193,-0.253958,-0.252531,-0.310141,0.000008 +0.300105,-0.005226,-0.255840,-0.254371,-0.312445,0.000008 +0.302350,-0.005259,-0.257722,-0.256211,-0.314748,0.000008 +0.304594,-0.005293,-0.259605,-0.258051,-0.317051,0.000008 +0.306839,-0.005326,-0.261487,-0.259891,-0.319354,0.000008 +0.309083,-0.005359,-0.263369,-0.261731,-0.321657,0.000008 +0.311328,-0.005393,-0.265252,-0.263571,-0.323960,0.000008 +0.313573,-0.005426,-0.267134,-0.265411,-0.326264,0.000008 +0.315817,-0.005459,-0.269016,-0.267251,-0.328567,0.000009 +0.318062,-0.005493,-0.270899,-0.269091,-0.330870,0.000009 +0.320306,-0.005526,-0.272781,-0.270931,-0.333173,0.000009 +0.322551,-0.005559,-0.274663,-0.272771,-0.335476,0.000009 +0.324796,-0.005593,-0.276546,-0.274611,-0.337779,0.000009 +0.327040,-0.005626,-0.278428,-0.276451,-0.340083,0.000009 +0.329285,-0.005659,-0.280310,-0.278291,-0.342386,0.000009 +0.331529,-0.005693,-0.282193,-0.280131,-0.344689,0.000009 +0.333774,-0.005726,-0.284075,-0.281971,-0.346992,0.000009 +0.336018,-0.005759,-0.285957,-0.283811,-0.349295,0.000009 +0.338263,-0.005793,-0.287839,-0.285651,-0.351598,0.000009 +0.340508,-0.005826,-0.289722,-0.287491,-0.353902,0.000009 +0.342752,-0.005859,-0.291604,-0.289331,-0.356205,0.000009 +0.344997,-0.005893,-0.293486,-0.291171,-0.358508,0.000009 +0.347241,-0.005926,-0.295369,-0.293011,-0.360811,0.000009 +0.349486,-0.005959,-0.297251,-0.294851,-0.363114,0.000009 +0.351731,-0.005993,-0.299133,-0.296691,-0.365418,0.000009 +0.353975,-0.006026,-0.301016,-0.298531,-0.367721,0.000009 +0.356220,-0.006059,-0.302898,-0.300371,-0.370024,0.000009 +0.358464,-0.006093,-0.304780,-0.302211,-0.372327,0.000009 +0.360709,-0.006126,-0.306663,-0.304051,-0.374630,0.000010 +0.362953,-0.006159,-0.308545,-0.305891,-0.376933,0.000010 +0.365198,-0.006193,-0.310427,-0.307731,-0.379237,0.000010 +0.367443,-0.006226,-0.312310,-0.309571,-0.381540,0.000010 +0.369687,-0.006259,-0.314192,-0.311411,-0.383843,0.000010 +0.371932,-0.006293,-0.316074,-0.313251,-0.386146,0.000010 +0.374176,-0.006326,-0.317957,-0.315091,-0.388449,0.000010 +0.376421,-0.006359,-0.319839,-0.316931,-0.390752,0.000010 +0.378666,-0.006393,-0.321721,-0.318771,-0.393056,0.000010 +0.380910,-0.006426,-0.323604,-0.320611,-0.395359,0.000010 +0.383155,-0.006459,-0.325486,-0.322450,-0.397662,0.000010 +0.385399,-0.006493,-0.327368,-0.324290,-0.399965,0.000010 +0.387644,-0.006526,-0.329251,-0.326130,-0.402268,0.000010 +0.389888,-0.006559,-0.331133,-0.327970,-0.404571,0.000010 +0.392133,-0.006593,-0.333015,-0.329810,-0.406875,0.000010 +0.394378,-0.006626,-0.334898,-0.331650,-0.409178,0.000010 +0.396622,-0.006659,-0.336780,-0.333490,-0.411481,0.000010 +0.398867,-0.006693,-0.338662,-0.335330,-0.413784,0.000010 +0.401111,-0.006726,-0.340545,-0.337170,-0.416087,0.000010 +0.403356,-0.006759,-0.342427,-0.339010,-0.418390,0.000010 +0.405601,-0.006792,-0.344309,-0.340850,-0.420694,0.000011 +0.407845,-0.006826,-0.346192,-0.342690,-0.422997,0.000011 +0.410090,-0.006859,-0.348074,-0.344530,-0.425300,0.000011 +0.412334,-0.006892,-0.349956,-0.346370,-0.427603,0.000011 +0.414579,-0.006926,-0.351839,-0.348210,-0.429906,0.000011 +0.416823,-0.006959,-0.353721,-0.350050,-0.432209,0.000011 +0.419068,-0.006992,-0.355603,-0.351890,-0.434513,0.000011 +0.421313,-0.007026,-0.357485,-0.353730,-0.436816,0.000011 +0.423557,-0.007059,-0.359368,-0.355570,-0.439119,0.000011 +0.425802,-0.007092,-0.361250,-0.357410,-0.441422,0.000011 +0.428046,-0.007126,-0.363132,-0.359250,-0.443725,0.000011 +0.430291,-0.007159,-0.365015,-0.361090,-0.446028,0.000011 +0.432536,-0.007192,-0.366897,-0.362930,-0.448332,0.000011 +0.434780,-0.007226,-0.368779,-0.364770,-0.450635,0.000011 +0.437025,-0.007259,-0.370662,-0.366610,-0.452938,0.000011 +0.439269,-0.007292,-0.372544,-0.368450,-0.455241,0.000011 +0.441514,-0.007326,-0.374426,-0.370290,-0.457544,0.000011 +0.443758,-0.007359,-0.376309,-0.372130,-0.459847,0.000011 +0.446003,-0.007392,-0.378191,-0.373970,-0.462151,0.000011 +0.448248,-0.007426,-0.380073,-0.375810,-0.464454,0.000012 +0.450492,-0.007459,-0.381956,-0.377650,-0.466757,0.000012 +0.452737,-0.007492,-0.383838,-0.379490,-0.469060,0.000012 +0.454981,-0.007526,-0.385720,-0.381330,-0.471363,0.000012 +0.457226,-0.007559,-0.387603,-0.383170,-0.473667,0.000012 +0.459471,-0.007592,-0.389485,-0.385010,-0.475970,0.000012 +0.461715,-0.007626,-0.391367,-0.386850,-0.478273,0.000012 +0.463960,-0.007659,-0.393250,-0.388690,-0.480576,0.000012 +0.466204,-0.007692,-0.395132,-0.390530,-0.482879,0.000012 +0.468449,-0.007726,-0.397014,-0.392370,-0.485182,0.000012 +0.470693,-0.007759,-0.398897,-0.394210,-0.487486,0.000012 +0.472938,-0.007792,-0.400779,-0.396050,-0.489789,0.000012 +0.475183,-0.007826,-0.402661,-0.397890,-0.492092,0.000012 +0.477427,-0.007859,-0.404544,-0.399730,-0.494395,0.000012 +0.479672,-0.007892,-0.406426,-0.401570,-0.496698,0.000012 +0.481916,-0.007926,-0.408308,-0.403410,-0.499001,0.000012 +0.484161,-0.007959,-0.410191,-0.405250,-0.501305,0.000012 +0.486406,-0.007992,-0.412073,-0.407090,-0.503608,0.000012 +0.488650,-0.008026,-0.413955,-0.408930,-0.505911,0.000012 +0.490895,-0.008059,-0.415838,-0.410770,-0.508214,0.000012 +0.493139,-0.008092,-0.417720,-0.412610,-0.510517,0.000013 +0.495384,-0.008126,-0.419602,-0.414450,-0.512820,0.000013 +0.497628,-0.008159,-0.421485,-0.416290,-0.515124,0.000013 +0.499873,-0.008192,-0.423367,-0.418130,-0.517427,0.000013 +0.502118,-0.008226,-0.425249,-0.419970,-0.519730,0.000013 +0.504362,-0.008259,-0.427131,-0.421810,-0.522033,0.000013 +0.506607,-0.008292,-0.429014,-0.423650,-0.524336,0.000013 +0.508851,-0.008326,-0.430896,-0.425490,-0.526639,0.000013 +0.511096,-0.008359,-0.432778,-0.427330,-0.528943,0.000013 +0.513341,-0.008392,-0.434661,-0.429170,-0.531246,0.000013 +0.515585,-0.008426,-0.436543,-0.431010,-0.533549,0.000013 +0.517830,-0.008459,-0.438425,-0.432850,-0.535852,0.000013 +0.520074,-0.008492,-0.440308,-0.434690,-0.538155,0.000013 +0.522319,-0.008526,-0.442190,-0.436530,-0.540458,0.000013 +0.524563,-0.008559,-0.444072,-0.438370,-0.542762,0.000013 +0.526808,-0.008592,-0.445955,-0.440210,-0.545065,0.000013 +0.529053,-0.008626,-0.447837,-0.442050,-0.547368,0.000013 +0.531297,-0.008659,-0.449719,-0.443890,-0.549671,0.000013 +0.533542,-0.008692,-0.451602,-0.445730,-0.551974,0.000013 +0.535786,-0.008726,-0.453484,-0.447570,-0.554277,0.000013 +0.538031,-0.008759,-0.455366,-0.449410,-0.556581,0.000014 +0.540276,-0.008792,-0.457249,-0.451250,-0.558884,0.000014 +0.542520,-0.008826,-0.459131,-0.453090,-0.561187,0.000014 +0.544765,-0.008859,-0.461013,-0.454930,-0.563490,0.000014 +0.547009,-0.008892,-0.462896,-0.456770,-0.565793,0.000014 +0.549254,-0.008926,-0.464778,-0.458610,-0.568097,0.000014 +0.551498,-0.008959,-0.466660,-0.460450,-0.570400,0.000014 +0.553743,-0.008992,-0.468543,-0.462290,-0.572703,0.000014 +0.555988,-0.009026,-0.470425,-0.464130,-0.575006,0.000014 +0.558232,-0.009059,-0.472307,-0.465969,-0.577309,0.000014 +0.560477,-0.009092,-0.474190,-0.467809,-0.579612,0.000014 +0.562721,-0.009126,-0.476072,-0.469649,-0.581916,0.000014 +0.564966,-0.009159,-0.477954,-0.471489,-0.584219,0.000014 +0.567211,-0.009192,-0.479837,-0.473329,-0.586522,0.000014 +0.569455,-0.009226,-0.481719,-0.475169,-0.588825,0.000014 +0.571700,-0.009259,-0.483601,-0.477009,-0.591128,0.000014 +0.573944,-0.009292,-0.485484,-0.478849,-0.593431,0.000014 +0.576189,-0.009326,-0.487366,-0.480689,-0.595735,0.000014 +0.578433,-0.009359,-0.489248,-0.482529,-0.598038,0.000014 +0.580678,-0.009392,-0.491131,-0.484369,-0.600341,0.000015 +0.582923,-0.009426,-0.493013,-0.486209,-0.602644,0.000015 +0.585167,-0.009459,-0.494895,-0.488049,-0.604947,0.000015 +0.587412,-0.009492,-0.496778,-0.489889,-0.607250,0.000015 +0.589656,-0.009526,-0.498660,-0.491729,-0.609554,0.000015 +0.591901,-0.009559,-0.500542,-0.493569,-0.611857,0.000015 +0.594146,-0.009592,-0.502424,-0.495409,-0.614160,0.000015 +0.596390,-0.009626,-0.504307,-0.497249,-0.616463,0.000015 +0.598635,-0.009659,-0.506189,-0.499089,-0.618766,0.000015 +0.600879,-0.009692,-0.508071,-0.500929,-0.621069,0.000015 +0.603124,-0.009726,-0.509954,-0.502769,-0.623373,0.000015 +0.605368,-0.009759,-0.511836,-0.504609,-0.625676,0.000015 +0.607613,-0.009792,-0.513718,-0.506449,-0.627979,0.000015 +0.609858,-0.009826,-0.515601,-0.508289,-0.630282,0.000015 +0.612102,-0.009859,-0.517483,-0.510129,-0.632585,0.000015 +0.614347,-0.009892,-0.519365,-0.511969,-0.634888,0.000015 +0.616591,-0.009926,-0.521248,-0.513809,-0.637192,0.000015 +0.618836,-0.009959,-0.523130,-0.515649,-0.639495,0.000015 +0.621081,-0.009992,-0.525012,-0.517489,-0.641798,0.000015 +0.623325,-0.010026,-0.526895,-0.519329,-0.644101,0.000015 +0.625570,-0.010059,-0.528777,-0.521169,-0.646404,0.000016 +0.627814,-0.010092,-0.530659,-0.523009,-0.648707,0.000016 +0.630059,-0.010126,-0.532542,-0.524849,-0.651011,0.000016 +0.632303,-0.010159,-0.534424,-0.526689,-0.653314,0.000016 +0.634548,-0.010192,-0.536306,-0.528529,-0.655617,0.000016 +0.636793,-0.010226,-0.538189,-0.530369,-0.657920,0.000016 +0.639037,-0.010259,-0.540071,-0.532209,-0.660223,0.000016 +0.641282,-0.010292,-0.541953,-0.534049,-0.662527,0.000016 +0.643526,-0.010326,-0.543836,-0.535889,-0.664830,0.000016 +0.645771,-0.010359,-0.545718,-0.537729,-0.667133,0.000016 +0.648015,-0.010392,-0.547600,-0.539569,-0.669436,0.000016 +0.650260,-0.010426,-0.549483,-0.541409,-0.671739,0.000016 +0.652505,-0.010459,-0.551365,-0.543249,-0.674042,0.000016 +0.654749,-0.010492,-0.553247,-0.545089,-0.676346,0.000016 +0.656994,-0.010526,-0.555130,-0.546929,-0.678649,0.000016 +0.659238,-0.010559,-0.557012,-0.548769,-0.680952,0.000016 +0.661483,-0.010592,-0.558894,-0.550609,-0.683255,0.000016 +0.663728,-0.010626,-0.560777,-0.552449,-0.685558,0.000016 +0.665972,-0.010659,-0.562659,-0.554289,-0.687861,0.000016 +0.668217,-0.010692,-0.564541,-0.556129,-0.690165,0.000017 +0.670461,-0.010725,-0.566424,-0.557969,-0.692468,0.000017 +0.672706,-0.010759,-0.568306,-0.559809,-0.694771,0.000017 +0.674950,-0.010792,-0.570188,-0.561649,-0.697074,0.000017 +0.677195,-0.010825,-0.572070,-0.563489,-0.699377,0.000017 +0.679440,-0.010859,-0.573953,-0.565329,-0.701680,0.000017 +0.681684,-0.010892,-0.575835,-0.567169,-0.703984,0.000017 +0.683929,-0.010925,-0.577717,-0.569009,-0.706287,0.000017 +0.686173,-0.010959,-0.579600,-0.570849,-0.708590,0.000017 +0.688418,-0.010992,-0.581482,-0.572689,-0.710893,0.000017 +0.690663,-0.011025,-0.583364,-0.574529,-0.713196,0.000017 +0.692907,-0.011059,-0.585247,-0.576369,-0.715499,0.000017 +0.695152,-0.011092,-0.587129,-0.578209,-0.717803,0.000017 +0.697396,-0.011125,-0.589011,-0.580049,-0.720106,0.000017 +0.699641,-0.011159,-0.590894,-0.581889,-0.722409,0.000017 +0.701885,-0.011192,-0.592776,-0.583729,-0.724712,0.000017 +0.704130,-0.011225,-0.594658,-0.585569,-0.727015,0.000017 +0.706375,-0.011259,-0.596541,-0.587409,-0.729318,0.000017 +0.708619,-0.011292,-0.598423,-0.589249,-0.731622,0.000017 +0.710864,-0.011325,-0.600305,-0.591089,-0.733925,0.000017 +0.713108,-0.011359,-0.602188,-0.592929,-0.736228,0.000018 +0.715353,-0.011392,-0.604070,-0.594769,-0.738531,0.000018 +0.717598,-0.011425,-0.605952,-0.596609,-0.740834,0.000018 +0.719842,-0.011459,-0.607835,-0.598449,-0.743137,0.000018 +0.722087,-0.011492,-0.609717,-0.600289,-0.745441,0.000018 +0.724331,-0.011525,-0.611599,-0.602129,-0.747744,0.000018 +0.726576,-0.011559,-0.613482,-0.603969,-0.750047,0.000018 +0.728820,-0.011592,-0.615364,-0.605809,-0.752350,0.000018 +0.731065,-0.011625,-0.617246,-0.607649,-0.754653,0.000018 +0.733310,-0.011659,-0.619129,-0.609489,-0.756956,0.000018 +0.735554,-0.011692,-0.621011,-0.611328,-0.759260,0.000018 +0.737799,-0.011725,-0.622893,-0.613168,-0.761563,0.000018 +0.740043,-0.011759,-0.624776,-0.615008,-0.763866,0.000018 +0.742288,-0.011792,-0.626658,-0.616848,-0.766169,0.000018 +0.744533,-0.011825,-0.628540,-0.618688,-0.768472,0.000018 +0.746777,-0.011859,-0.630423,-0.620528,-0.770776,0.000018 +0.749022,-0.011892,-0.632305,-0.622368,-0.773079,0.000018 +0.751266,-0.011925,-0.634187,-0.624208,-0.775382,0.000018 +0.753511,-0.011959,-0.636070,-0.626048,-0.777685,0.000018 +0.755755,-0.011992,-0.637952,-0.627888,-0.779988,0.000018 +0.758000,-0.012025,-0.639834,-0.629728,-0.782291,0.000019 +0.760245,-0.012059,-0.641716,-0.631568,-0.784595,0.000019 +0.762489,-0.012092,-0.643599,-0.633408,-0.786898,0.000019 +0.764734,-0.012125,-0.645481,-0.635248,-0.789201,0.000019 +0.766978,-0.012159,-0.647363,-0.637088,-0.791504,0.000019 +0.769223,-0.012192,-0.649246,-0.638928,-0.793807,0.000019 +0.771468,-0.012225,-0.651128,-0.640768,-0.796110,0.000019 +0.773712,-0.012259,-0.653010,-0.642608,-0.798414,0.000019 +0.775957,-0.012292,-0.654893,-0.644448,-0.800717,0.000019 +0.778201,-0.012325,-0.656775,-0.646288,-0.803020,0.000019 +0.780446,-0.012359,-0.658657,-0.648128,-0.805323,0.000019 +0.782690,-0.012392,-0.660540,-0.649968,-0.807626,0.000019 +0.784935,-0.012425,-0.662422,-0.651808,-0.809929,0.000019 +0.787180,-0.012459,-0.664304,-0.653648,-0.812233,0.000019 +0.789424,-0.012492,-0.666187,-0.655488,-0.814536,0.000019 +0.791669,-0.012525,-0.668069,-0.657328,-0.816839,0.000019 +0.793913,-0.012559,-0.669951,-0.659168,-0.819142,0.000019 +0.796158,-0.012592,-0.671834,-0.661008,-0.821445,0.000019 +0.798403,-0.012625,-0.673716,-0.662848,-0.823748,0.000019 +0.800647,-0.012659,-0.675598,-0.664688,-0.826052,0.000020 +0.802892,-0.012692,-0.677481,-0.666528,-0.828355,0.000020 +0.805136,-0.012725,-0.679363,-0.668368,-0.830658,0.000020 +0.807381,-0.012759,-0.681245,-0.670208,-0.832961,0.000020 +0.809625,-0.012792,-0.683128,-0.672048,-0.835264,0.000020 +0.811870,-0.012825,-0.685010,-0.673888,-0.837567,0.000020 +0.814115,-0.012859,-0.686892,-0.675728,-0.839871,0.000020 +0.816359,-0.012892,-0.688775,-0.677568,-0.842174,0.000020 +0.818604,-0.012925,-0.690657,-0.679408,-0.844477,0.000020 +0.820848,-0.012959,-0.692539,-0.681248,-0.846780,0.000020 +0.823093,-0.012992,-0.694422,-0.683088,-0.849083,0.000020 +0.825338,-0.013025,-0.696304,-0.684928,-0.851386,0.000020 +0.827582,-0.013059,-0.698186,-0.686768,-0.853690,0.000020 +0.829827,-0.013092,-0.700069,-0.688608,-0.855993,0.000020 +0.832071,-0.013125,-0.701951,-0.690448,-0.858296,0.000020 +0.834316,-0.013159,-0.703833,-0.692288,-0.860599,0.000020 +0.836560,-0.013192,-0.705716,-0.694128,-0.862902,0.000020 +0.838805,-0.013225,-0.707598,-0.695968,-0.865206,0.000020 +0.841050,-0.013258,-0.709480,-0.697808,-0.867509,0.000020 +0.843294,-0.013292,-0.711363,-0.699648,-0.869812,0.000020 +0.845539,-0.013325,-0.713245,-0.701488,-0.872115,0.000021 +0.847783,-0.013359,-0.715127,-0.703328,-0.874418,0.000021 +0.850028,-0.013392,-0.717009,-0.705168,-0.876721,0.000021 +0.852273,-0.013425,-0.718892,-0.707008,-0.879025,0.000021 +0.854517,-0.013459,-0.720774,-0.708848,-0.881328,0.000021 +0.856762,-0.013492,-0.722656,-0.710688,-0.883631,0.000021 +0.859006,-0.013525,-0.724539,-0.712528,-0.885934,0.000021 +0.861251,-0.013558,-0.726421,-0.714368,-0.888237,0.000021 +0.863495,-0.013592,-0.728303,-0.716208,-0.890540,0.000021 +0.865740,-0.013625,-0.730186,-0.718048,-0.892844,0.000021 +0.867985,-0.013659,-0.732068,-0.719888,-0.895147,0.000021 +0.870229,-0.013692,-0.733950,-0.721728,-0.897450,0.000021 +0.872474,-0.013725,-0.735833,-0.723568,-0.899753,0.000021 +0.874718,-0.013759,-0.737715,-0.725408,-0.902056,0.000021 +0.876963,-0.013792,-0.739597,-0.727248,-0.904359,0.000021 +0.879208,-0.013825,-0.741480,-0.729088,-0.906663,0.000021 +0.881452,-0.013858,-0.743362,-0.730928,-0.908966,0.000021 +0.883697,-0.013892,-0.745244,-0.732768,-0.911269,0.000021 +0.885941,-0.013925,-0.747127,-0.734608,-0.913572,0.000021 +0.888186,-0.013959,-0.749009,-0.736448,-0.915875,0.000022 +0.890430,-0.013992,-0.750891,-0.738288,-0.918178,0.000022 +0.892675,-0.014025,-0.752774,-0.740128,-0.920482,0.000022 +0.894920,-0.014058,-0.754656,-0.741968,-0.922785,0.000022 +0.897164,-0.014092,-0.756538,-0.743808,-0.925088,0.000022 +0.899409,-0.014125,-0.758421,-0.745648,-0.927391,0.000022 +0.901653,-0.014158,-0.760303,-0.747488,-0.929694,0.000022 +0.903898,-0.014192,-0.762185,-0.749328,-0.931997,0.000022 +0.906143,-0.014225,-0.764068,-0.751168,-0.934301,0.000022 +0.908387,-0.014258,-0.765950,-0.753008,-0.936604,0.000022 +0.910632,-0.014292,-0.767832,-0.754847,-0.938907,0.000022 +0.912876,-0.014325,-0.769715,-0.756687,-0.941210,0.000022 +0.915121,-0.014358,-0.771597,-0.758527,-0.943513,0.000022 +0.917365,-0.014392,-0.773479,-0.760367,-0.945816,0.000022 +0.919610,-0.014425,-0.775362,-0.762207,-0.948120,0.000022 +0.921855,-0.014458,-0.777244,-0.764047,-0.950423,0.000022 +0.924099,-0.014492,-0.779126,-0.765887,-0.952726,0.000022 +0.926344,-0.014525,-0.781009,-0.767727,-0.955029,0.000022 +0.928588,-0.014558,-0.782891,-0.769567,-0.957332,0.000022 +0.930833,-0.014592,-0.784773,-0.771407,-0.959636,0.000022 +0.933078,-0.014625,-0.786655,-0.773247,-0.961939,0.000023 +0.935322,-0.014658,-0.788538,-0.775087,-0.964242,0.000023 +0.937567,-0.014692,-0.790420,-0.776927,-0.966545,0.000023 +0.939811,-0.014725,-0.792302,-0.778767,-0.968848,0.000023 +0.942056,-0.014758,-0.794185,-0.780607,-0.971151,0.000023 +0.944300,-0.014792,-0.796067,-0.782447,-0.973455,0.000023 +0.946545,-0.014825,-0.797949,-0.784287,-0.975758,0.000023 +0.948790,-0.014858,-0.799832,-0.786127,-0.978061,0.000023 +0.951034,-0.014892,-0.801714,-0.787967,-0.980364,0.000023 +0.953279,-0.014925,-0.803596,-0.789807,-0.982667,0.000023 +0.955523,-0.014958,-0.805479,-0.791647,-0.984970,0.000023 +0.957768,-0.014992,-0.807361,-0.793487,-0.987274,0.000023 +0.960013,-0.015025,-0.809243,-0.795327,-0.989577,0.000023 +0.962257,-0.015058,-0.811126,-0.797167,-0.991880,0.000023 +0.964502,-0.015092,-0.813008,-0.799007,-0.994183,0.000023 +0.966746,-0.015125,-0.814890,-0.800847,-0.996486,0.000023 +0.968991,-0.015158,-0.816773,-0.802687,-0.998789,0.000023 +0.971235,-0.015192,-0.818655,-0.804527,-1.001090,0.000023 +0.973480,-0.015225,-0.820537,-0.806367,-1.003400,0.000023 +0.975725,-0.015258,-0.822420,-0.808207,-1.005700,0.000023 +0.977969,-0.015292,-0.824302,-0.810047,-1.008000,0.000024 +0.980214,-0.015325,-0.826184,-0.811887,-1.010310,0.000024 +0.982458,-0.015358,-0.828067,-0.813727,-1.012610,0.000024 +0.984703,-0.015392,-0.829949,-0.815567,-1.014910,0.000024 +0.986948,-0.015425,-0.831831,-0.817407,-1.017210,0.000024 +0.989192,-0.015458,-0.833714,-0.819247,-1.019520,0.000024 +0.991437,-0.015492,-0.835596,-0.821087,-1.021820,0.000024 +0.993681,-0.015525,-0.837478,-0.822927,-1.024120,0.000024 +0.995926,-0.015558,-0.839361,-0.824767,-1.026430,0.000024 +0.998170,-0.015592,-0.841243,-0.826607,-1.028730,0.000024 +1.000420,-0.015625,-0.843125,-0.828447,-1.031030,0.000024 +1.002660,-0.015658,-0.845008,-0.830287,-1.033340,0.000024 +1.004900,-0.015692,-0.846890,-0.832127,-1.035640,0.000024 +1.007150,-0.015725,-0.848772,-0.833967,-1.037940,0.000024 +1.009390,-0.015758,-0.850655,-0.835807,-1.040250,0.000024 +1.011640,-0.015792,-0.852537,-0.837647,-1.042550,0.000024 +1.013880,-0.015825,-0.854419,-0.839487,-1.044850,0.000024 +1.016130,-0.015858,-0.856301,-0.841327,-1.047160,0.000024 +1.018370,-0.015892,-0.858184,-0.843167,-1.049460,0.000024 +1.020620,-0.015925,-0.860066,-0.845007,-1.051760,0.000025 +1.022860,-0.015958,-0.861948,-0.846847,-1.054070,0.000025 +1.025110,-0.015992,-0.863831,-0.848687,-1.056370,0.000025 +1.027350,-0.016025,-0.865713,-0.850527,-1.058670,0.000025 +1.029590,-0.016058,-0.867595,-0.852367,-1.060980,0.000025 +1.031840,-0.016092,-0.869478,-0.854207,-1.063280,0.000025 +1.034080,-0.016125,-0.871360,-0.856047,-1.065580,0.000025 +1.036330,-0.016158,-0.873242,-0.857887,-1.067880,0.000025 +1.038570,-0.016192,-0.875125,-0.859727,-1.070190,0.000025 +1.040820,-0.016225,-0.877007,-0.861567,-1.072490,0.000025 +1.043060,-0.016258,-0.878889,-0.863407,-1.074790,0.000025 +1.045310,-0.016292,-0.880772,-0.865247,-1.077100,0.000025 +1.047550,-0.016325,-0.882654,-0.867087,-1.079400,0.000025 +1.049800,-0.016358,-0.884536,-0.868927,-1.081700,0.000025 +1.052040,-0.016392,-0.886419,-0.870767,-1.084010,0.000025 +1.054280,-0.016425,-0.888301,-0.872607,-1.086310,0.000025 +1.056530,-0.016458,-0.890183,-0.874447,-1.088610,0.000025 +1.058770,-0.016491,-0.892066,-0.876287,-1.090920,0.000025 +1.061020,-0.016525,-0.893948,-0.878127,-1.093220,0.000025 +1.063260,-0.016558,-0.895830,-0.879967,-1.095520,0.000025 +1.065510,-0.016591,-0.897713,-0.881807,-1.097830,0.000026 +1.067750,-0.016625,-0.899595,-0.883647,-1.100130,0.000026 +1.070000,-0.016658,-0.901477,-0.885487,-1.102430,0.000026 +1.072240,-0.016692,-0.903360,-0.887327,-1.104740,0.000026 +1.074490,-0.016725,-0.905242,-0.889167,-1.107040,0.000026 +1.076730,-0.016758,-0.907124,-0.891007,-1.109340,0.000026 +1.078980,-0.016792,-0.909007,-0.892847,-1.111640,0.000026 +1.081220,-0.016825,-0.910889,-0.894687,-1.113950,0.000026 +1.083460,-0.016858,-0.912771,-0.896527,-1.116250,0.000026 +1.085710,-0.016892,-0.914654,-0.898367,-1.118550,0.000026 +1.087950,-0.016925,-0.916536,-0.900206,-1.120860,0.000026 +1.090200,-0.016958,-0.918418,-0.902046,-1.123160,0.000026 +1.092440,-0.016992,-0.920301,-0.903886,-1.125460,0.000026 +1.094690,-0.017025,-0.922183,-0.905726,-1.127770,0.000026 +1.096930,-0.017058,-0.924065,-0.907566,-1.130070,0.000026 +1.099180,-0.017091,-0.925948,-0.909406,-1.132370,0.000026 +1.101420,-0.017125,-0.927830,-0.911246,-1.134680,0.000026 +1.103670,-0.017158,-0.929712,-0.913086,-1.136980,0.000026 +1.105910,-0.017191,-0.931594,-0.914926,-1.139280,0.000026 +1.108150,-0.017225,-0.933477,-0.916766,-1.141590,0.000026 +1.110400,-0.017258,-0.935359,-0.918606,-1.143890,0.000027 +1.112640,-0.017292,-0.937241,-0.920446,-1.146190,0.000027 +1.114890,-0.017325,-0.939124,-0.922286,-1.148500,0.000027 +1.117130,-0.017358,-0.941006,-0.924126,-1.150800,0.000027 +1.119380,-0.017391,-0.942888,-0.925966,-1.153100,0.000027 +1.121620,-0.017425,-0.944771,-0.927806,-1.155410,0.000027 +1.123870,-0.017458,-0.946653,-0.929646,-1.157710,0.000027 +1.126110,-0.017491,-0.948535,-0.931486,-1.160010,0.000027 +1.128360,-0.017525,-0.950418,-0.933326,-1.162310,0.000027 +1.130600,-0.017558,-0.952300,-0.935166,-1.164620,0.000027 +1.132850,-0.017591,-0.954182,-0.937006,-1.166920,0.000027 +1.135090,-0.017625,-0.956065,-0.938846,-1.169220,0.000027 +1.137330,-0.017658,-0.957947,-0.940686,-1.171530,0.000027 +1.139580,-0.017691,-0.959829,-0.942526,-1.173830,0.000027 +1.141820,-0.017725,-0.961712,-0.944366,-1.176130,0.000027 +1.144070,-0.017758,-0.963594,-0.946206,-1.178440,0.000027 +1.146310,-0.017791,-0.965476,-0.948046,-1.180740,0.000027 +1.148560,-0.017825,-0.967359,-0.949886,-1.183040,0.000027 +1.150800,-0.017858,-0.969241,-0.951726,-1.185350,0.000027 +1.153050,-0.017891,-0.971123,-0.953566,-1.187650,0.000028 +1.155290,-0.017925,-0.973006,-0.955406,-1.189950,0.000028 +1.157540,-0.017958,-0.974888,-0.957246,-1.192260,0.000028 +1.159780,-0.017991,-0.976770,-0.959086,-1.194560,0.000028 +1.162020,-0.018025,-0.978653,-0.960926,-1.196860,0.000028 +1.164270,-0.018058,-0.980535,-0.962766,-1.199170,0.000028 +1.166510,-0.018091,-0.982417,-0.964606,-1.201470,0.000028 +1.168760,-0.018125,-0.984300,-0.966446,-1.203770,0.000028 +1.171000,-0.018158,-0.986182,-0.968286,-1.206070,0.000028 +1.173250,-0.018191,-0.988064,-0.970126,-1.208380,0.000028 +1.175490,-0.018225,-0.989947,-0.971966,-1.210680,0.000028 +1.177740,-0.018258,-0.991829,-0.973806,-1.212980,0.000028 +1.179980,-0.018291,-0.993711,-0.975646,-1.215290,0.000028 +1.182230,-0.018325,-0.995594,-0.977486,-1.217590,0.000028 +1.184470,-0.018358,-0.997476,-0.979326,-1.219890,0.000028 +1.186720,-0.018391,-0.999358,-0.981166,-1.222200,0.000028 +1.188960,-0.018425,-1.001240,-0.983006,-1.224500,0.000028 +1.191200,-0.018458,-1.003120,-0.984846,-1.226800,0.000028 +1.193450,-0.018491,-1.005010,-0.986686,-1.229110,0.000028 +1.195690,-0.018525,-1.006890,-0.988526,-1.231410,0.000028 +1.197940,-0.018558,-1.008770,-0.990366,-1.233710,0.000029 +1.200180,-0.018591,-1.010650,-0.992206,-1.236020,0.000029 +1.202430,-0.018625,-1.012530,-0.994046,-1.238320,0.000029 +1.204670,-0.018658,-1.014420,-0.995886,-1.240620,0.000029 +1.206920,-0.018691,-1.016300,-0.997726,-1.242930,0.000029 +1.209160,-0.018725,-1.018180,-0.999566,-1.245230,0.000029 +1.211410,-0.018758,-1.020060,-1.001410,-1.247530,0.000029 +1.213650,-0.018791,-1.021950,-1.003250,-1.249840,0.000029 +1.215890,-0.018825,-1.023830,-1.005090,-1.252140,0.000029 +1.218140,-0.018858,-1.025710,-1.006930,-1.254440,0.000029 +1.220380,-0.018891,-1.027590,-1.008770,-1.256740,0.000029 +1.222630,-0.018925,-1.029480,-1.010610,-1.259050,0.000029 +1.224870,-0.018958,-1.031360,-1.012450,-1.261350,0.000029 +1.227120,-0.018991,-1.033240,-1.014290,-1.263650,0.000029 +1.229360,-0.019025,-1.035120,-1.016130,-1.265960,0.000029 +1.231610,-0.019058,-1.037000,-1.017970,-1.268260,0.000029 +1.233850,-0.019091,-1.038890,-1.019810,-1.270560,0.000029 +1.236100,-0.019125,-1.040770,-1.021650,-1.272870,0.000029 +1.238340,-0.019158,-1.042650,-1.023490,-1.275170,0.000029 +1.240590,-0.019191,-1.044530,-1.025330,-1.277470,0.000030 +1.242830,-0.019225,-1.046420,-1.027170,-1.279780,0.000030 +1.245070,-0.019258,-1.048300,-1.029010,-1.282080,0.000030 +1.247320,-0.019291,-1.050180,-1.030850,-1.284380,0.000030 +1.249560,-0.019325,-1.052060,-1.032690,-1.286690,0.000030 +1.251810,-0.019358,-1.053950,-1.034530,-1.288990,0.000030 +1.254050,-0.019391,-1.055830,-1.036370,-1.291290,0.000030 +1.256300,-0.019425,-1.057710,-1.038210,-1.293600,0.000030 +1.258540,-0.019458,-1.059590,-1.040050,-1.295900,0.000030 +1.260790,-0.019491,-1.061470,-1.041890,-1.298200,0.000030 +1.263030,-0.019525,-1.063360,-1.043730,-1.300500,0.000030 +1.265280,-0.019558,-1.065240,-1.045570,-1.302810,0.000030 +1.267520,-0.019591,-1.067120,-1.047410,-1.305110,0.000030 +1.269760,-0.019625,-1.069000,-1.049250,-1.307410,0.000030 +1.272010,-0.019658,-1.070890,-1.051090,-1.309720,0.000030 +1.274250,-0.019691,-1.072770,-1.052930,-1.312020,0.000030 +1.276500,-0.019724,-1.074650,-1.054770,-1.314320,0.000030 +1.278740,-0.019758,-1.076530,-1.056610,-1.316630,0.000030 +1.280990,-0.019791,-1.078420,-1.058450,-1.318930,0.000030 +1.283230,-0.019824,-1.080300,-1.060290,-1.321230,0.000030 +1.285480,-0.019858,-1.082180,-1.062130,-1.323540,0.000031 +1.287720,-0.019891,-1.084060,-1.063970,-1.325840,0.000031 +1.289970,-0.019925,-1.085950,-1.065810,-1.328140,0.000031 +1.292210,-0.019958,-1.087830,-1.067650,-1.330450,0.000031 +1.294460,-0.019991,-1.089710,-1.069490,-1.332750,0.000031 +1.296700,-0.020025,-1.091590,-1.071330,-1.335050,0.000031 +1.298940,-0.020058,-1.093470,-1.073170,-1.337360,0.000031 +1.301190,-0.020091,-1.095360,-1.075010,-1.339660,0.000031 +1.303430,-0.020125,-1.097240,-1.076850,-1.341960,0.000031 +1.305680,-0.020158,-1.099120,-1.078690,-1.344260,0.000031 +1.307920,-0.020191,-1.101000,-1.080530,-1.346570,0.000031 +1.310170,-0.020224,-1.102890,-1.082370,-1.348870,0.000031 +1.312410,-0.020258,-1.104770,-1.084210,-1.351170,0.000031 +1.314660,-0.020291,-1.106650,-1.086050,-1.353480,0.000031 +1.316900,-0.020324,-1.108530,-1.087890,-1.355780,0.000031 +1.319150,-0.020358,-1.110420,-1.089730,-1.358080,0.000031 +1.321390,-0.020391,-1.112300,-1.091570,-1.360390,0.000031 +1.323630,-0.020425,-1.114180,-1.093410,-1.362690,0.000031 +1.325880,-0.020458,-1.116060,-1.095250,-1.364990,0.000031 +1.328120,-0.020491,-1.117940,-1.097090,-1.367300,0.000031 +1.330370,-0.020525,-1.119830,-1.098930,-1.369600,0.000032 +1.332610,-0.020558,-1.121710,-1.100770,-1.371900,0.000032 +1.334860,-0.020591,-1.123590,-1.102610,-1.374210,0.000032 +1.337100,-0.020625,-1.125470,-1.104450,-1.376510,0.000032 +1.339350,-0.020658,-1.127360,-1.106290,-1.378810,0.000032 +1.341590,-0.020691,-1.129240,-1.108130,-1.381120,0.000032 +1.343840,-0.020724,-1.131120,-1.109970,-1.383420,0.000032 +1.346080,-0.020758,-1.133000,-1.111810,-1.385720,0.000032 +1.348330,-0.020791,-1.134890,-1.113650,-1.388030,0.000032 +1.350570,-0.020824,-1.136770,-1.115480,-1.390330,0.000032 +1.352810,-0.020858,-1.138650,-1.117320,-1.392630,0.000032 +1.355060,-0.020891,-1.140530,-1.119160,-1.394930,0.000032 +1.357300,-0.020924,-1.142410,-1.121000,-1.397240,0.000032 +1.359550,-0.020958,-1.144300,-1.122840,-1.399540,0.000032 +1.361790,-0.020991,-1.146180,-1.124680,-1.401840,0.000032 +1.364040,-0.021024,-1.148060,-1.126520,-1.404150,0.000032 +1.366280,-0.021058,-1.149940,-1.128360,-1.406450,0.000032 +1.368530,-0.021091,-1.151830,-1.130200,-1.408750,0.000032 +1.370770,-0.021124,-1.153710,-1.132040,-1.411060,0.000032 +1.373020,-0.021158,-1.155590,-1.133880,-1.413360,0.000033 +1.375260,-0.021191,-1.157470,-1.135720,-1.415660,0.000033 +1.377500,-0.021224,-1.159360,-1.137560,-1.417970,0.000033 +1.379750,-0.021258,-1.161240,-1.139400,-1.420270,0.000033 +1.381990,-0.021291,-1.163120,-1.141240,-1.422570,0.000033 +1.384240,-0.021324,-1.165000,-1.143080,-1.424880,0.000033 +1.386480,-0.021358,-1.166890,-1.144920,-1.427180,0.000033 +1.388730,-0.021391,-1.168770,-1.146760,-1.429480,0.000033 +1.390970,-0.021424,-1.170650,-1.148600,-1.431790,0.000033 +1.393220,-0.021458,-1.172530,-1.150440,-1.434090,0.000033 +1.395460,-0.021491,-1.174410,-1.152280,-1.436390,0.000033 +1.397710,-0.021524,-1.176300,-1.154120,-1.438690,0.000033 +1.399950,-0.021558,-1.178180,-1.155960,-1.441000,0.000033 +1.402200,-0.021591,-1.180060,-1.157800,-1.443300,0.000033 +1.404440,-0.021624,-1.181940,-1.159640,-1.445600,0.000033 +1.406680,-0.021658,-1.183830,-1.161480,-1.447910,0.000033 +1.408930,-0.021691,-1.185710,-1.163320,-1.450210,0.000033 +1.411170,-0.021724,-1.187590,-1.165160,-1.452510,0.000033 +1.413420,-0.021758,-1.189470,-1.167000,-1.454820,0.000033 +1.415660,-0.021791,-1.191360,-1.168840,-1.457120,0.000033 +1.417910,-0.021824,-1.193240,-1.170680,-1.459420,0.000034 +1.420150,-0.021858,-1.195120,-1.172520,-1.461730,0.000034 +1.422400,-0.021891,-1.197000,-1.174360,-1.464030,0.000034 +1.424640,-0.021924,-1.198880,-1.176200,-1.466330,0.000034 +1.426890,-0.021958,-1.200770,-1.178040,-1.468640,0.000034 +1.429130,-0.021991,-1.202650,-1.179880,-1.470940,0.000034 +1.431370,-0.022024,-1.204530,-1.181720,-1.473240,0.000034 +1.433620,-0.022058,-1.206410,-1.183560,-1.475550,0.000034 +1.435860,-0.022091,-1.208300,-1.185400,-1.477850,0.000034 +1.438110,-0.022124,-1.210180,-1.187240,-1.480150,0.000034 +1.440350,-0.022158,-1.212060,-1.189080,-1.482460,0.000034 +1.442600,-0.022191,-1.213940,-1.190920,-1.484760,0.000034 +1.444840,-0.022224,-1.215830,-1.192760,-1.487060,0.000034 +1.447090,-0.022258,-1.217710,-1.194600,-1.489360,0.000034 +1.449330,-0.022291,-1.219590,-1.196440,-1.491670,0.000034 +1.451580,-0.022324,-1.221470,-1.198280,-1.493970,0.000034 +1.453820,-0.022358,-1.223350,-1.200120,-1.496270,0.000034 +1.456070,-0.022391,-1.225240,-1.201960,-1.498580,0.000034 +1.458310,-0.022424,-1.227120,-1.203800,-1.500880,0.000034 +1.460550,-0.022458,-1.229000,-1.205640,-1.503180,0.000034 +1.462800,-0.022491,-1.230880,-1.207480,-1.505490,0.000035 +1.465040,-0.022524,-1.232770,-1.209320,-1.507790,0.000035 +1.467290,-0.022558,-1.234650,-1.211160,-1.510090,0.000035 +1.469530,-0.022591,-1.236530,-1.213000,-1.512400,0.000035 +1.471780,-0.022624,-1.238410,-1.214840,-1.514700,0.000035 +1.474020,-0.022658,-1.240300,-1.216680,-1.517000,0.000035 +1.476270,-0.022691,-1.242180,-1.218520,-1.519310,0.000035 +1.478510,-0.022724,-1.244060,-1.220360,-1.521610,0.000035 +1.480760,-0.022758,-1.245940,-1.222200,-1.523910,0.000035 +1.483000,-0.022791,-1.247820,-1.224040,-1.526220,0.000035 +1.485240,-0.022824,-1.249710,-1.225880,-1.528520,0.000035 +1.487490,-0.022858,-1.251590,-1.227720,-1.530820,0.000035 +1.489730,-0.022891,-1.253470,-1.229560,-1.533120,0.000035 +1.491980,-0.022924,-1.255350,-1.231400,-1.535430,0.000035 +1.494220,-0.022958,-1.257240,-1.233240,-1.537730,0.000035 +1.496470,-0.022991,-1.259120,-1.235080,-1.540030,0.000035 +1.498710,-0.023024,-1.261000,-1.236920,-1.542340,0.000035 +1.500960,-0.023058,-1.262880,-1.238760,-1.544640,0.000035 +1.503200,-0.023091,-1.264770,-1.240600,-1.546940,0.000035 +1.505450,-0.023124,-1.266650,-1.242440,-1.549250,0.000036 +1.507690,-0.023158,-1.268530,-1.244280,-1.551550,0.000036 +1.509930,-0.023191,-1.270410,-1.246120,-1.553850,0.000036 +1.512170,-0.023224,-1.272300,-1.247960,-1.556160,0.000036 +1.514400,-0.023258,-1.274180,-1.249800,-1.558460,0.000036 +1.516620,-0.023291,-1.276060,-1.251640,-1.560760,0.000036 +1.518820,-0.023324,-1.277940,-1.253480,-1.563060,0.000036 +1.521000,-0.023358,-1.279820,-1.255320,-1.565360,0.000036 +1.523170,-0.023391,-1.281690,-1.257160,-1.567640,0.000036 +1.525300,-0.023424,-1.283550,-1.259000,-1.569910,0.000036 +1.527410,-0.023457,-1.285400,-1.260840,-1.572160,0.000036 +1.529490,-0.023491,-1.287230,-1.262680,-1.574390,0.000036 +1.531540,-0.023524,-1.289040,-1.264510,-1.576590,0.000036 +1.533540,-0.023557,-1.290820,-1.266340,-1.578770,0.000036 +1.535510,-0.023591,-1.292580,-1.268140,-1.580900,0.000036 +1.537430,-0.023624,-1.294310,-1.269940,-1.583010,0.000036 +1.539310,-0.023658,-1.296010,-1.271710,-1.585070,0.000036 +1.541130,-0.023691,-1.297670,-1.273450,-1.587080,0.000036 +1.542900,-0.023724,-1.299300,-1.275160,-1.589050,0.000036 +1.544610,-0.023758,-1.300870,-1.276850,-1.590960,0.000036 +1.546270,-0.023791,-1.302410,-1.278490,-1.592810,0.000037 +1.547860,-0.023824,-1.303890,-1.280100,-1.594610,0.000037 +1.549380,-0.023858,-1.305320,-1.281660,-1.596340,0.000037 +1.550830,-0.023891,-1.306700,-1.283170,-1.598000,0.000037 +1.552210,-0.023924,-1.308020,-1.284630,-1.599590,0.000037 +1.553510,-0.023958,-1.309270,-1.286030,-1.601100,0.000037 +1.554730,-0.023991,-1.310460,-1.287370,-1.602530,0.000037 +1.555870,-0.024024,-1.311580,-1.288650,-1.603880,0.000037 +1.556930,-0.024057,-1.312630,-1.289860,-1.605130,0.000037 +1.557900,-0.024091,-1.313600,-1.290990,-1.606300,0.000037 +1.558800,-0.024124,-1.314500,-1.292050,-1.607380,0.000037 +1.559620,-0.024157,-1.315320,-1.293040,-1.608360,0.000037 +1.560370,-0.024191,-1.316070,-1.293940,-1.609260,0.000037 +1.561050,-0.024224,-1.316750,-1.294750,-1.610080,0.000037 +1.561670,-0.024257,-1.317370,-1.295490,-1.610810,0.000037 +1.562230,-0.024291,-1.317920,-1.296160,-1.611480,0.000037 +1.562720,-0.024324,-1.318420,-1.296750,-1.612080,0.000037 +1.563160,-0.024357,-1.318860,-1.297280,-1.612610,0.000037 +1.563550,-0.024391,-1.319250,-1.297750,-1.613070,0.000037 +1.563900,-0.024424,-1.319600,-1.298160,-1.613480,0.000038 +1.564190,-0.024457,-1.319890,-1.298510,-1.613840,0.000038 +1.564450,-0.024491,-1.320140,-1.298820,-1.614140,0.000038 +1.564660,-0.024524,-1.320360,-1.299070,-1.614400,0.000038 +1.564840,-0.024557,-1.320540,-1.299290,-1.614610,0.000038 +1.564990,-0.024591,-1.320690,-1.299460,-1.614790,0.000038 +1.565100,-0.024624,-1.320800,-1.299600,-1.614930,0.000038 +1.565190,-0.024657,-1.320890,-1.299710,-1.615040,0.000038 +1.565260,-0.024691,-1.320960,-1.299800,-1.615120,0.000038 +1.565310,-0.024723,-1.321010,-1.299860,-1.615180,0.000038 +1.565350,-0.024750,-1.321040,-1.299890,-1.615220,0.000038 +1.565370,-0.024769,-1.321060,-1.299920,-1.615240,0.000038 +1.565380,-0.024780,-1.321080,-1.299930,-1.615250,0.000038 +1.565380,-0.024783,-1.321080,-1.299940,-1.615260,0.000038 +1.565380,-0.024784,-1.321080,-1.299940,-1.615260,0.000038 +1.565390,-0.024785,-1.321080,-1.299940,-1.615260,0.000048 +1.565390,-0.024785,-1.321080,-1.299940,-1.615260,0.000048 +1.565380,-0.024785,-1.321080,-1.299940,-1.615270,0.000048 +1.565350,-0.024785,-1.321080,-1.299940,-1.615300,0.000048 +1.565290,-0.024785,-1.321080,-1.299940,-1.615380,0.000048 +1.565170,-0.024785,-1.321080,-1.299940,-1.615520,0.000048 +1.564980,-0.024785,-1.321080,-1.299940,-1.615750,0.000048 +1.564700,-0.024785,-1.321080,-1.299940,-1.616080,0.000048 +1.564320,-0.024785,-1.321080,-1.299940,-1.616540,0.000048 +1.563830,-0.024785,-1.321080,-1.299940,-1.617130,0.000048 +1.563190,-0.024785,-1.321080,-1.299940,-1.617890,0.000048 +1.562410,-0.024785,-1.321080,-1.299940,-1.618830,0.000048 +1.561470,-0.024785,-1.321080,-1.299940,-1.619970,0.000048 +1.560390,-0.024785,-1.321080,-1.299940,-1.621330,0.000048 +1.559180,-0.024785,-1.321080,-1.299940,-1.622930,0.000048 +1.557860,-0.024785,-1.321080,-1.299940,-1.624780,0.000048 +1.556440,-0.024785,-1.321080,-1.299940,-1.626900,0.000048 +1.554950,-0.024785,-1.321080,-1.299940,-1.629270,0.000048 +1.553400,-0.024785,-1.321080,-1.299940,-1.631900,0.000048 +1.551800,-0.024785,-1.321080,-1.299940,-1.634800,0.000048 +1.550170,-0.024785,-1.321080,-1.299940,-1.637950,0.000048 +1.548530,-0.024785,-1.321080,-1.299940,-1.641360,0.000048 +1.546890,-0.024785,-1.321080,-1.299940,-1.645030,0.000048 +1.545250,-0.024785,-1.321080,-1.299940,-1.648960,0.000048 +1.543610,-0.024785,-1.321080,-1.299940,-1.653140,0.000048 +1.541970,-0.024785,-1.321080,-1.299940,-1.657590,0.000048 +1.540330,-0.024785,-1.321080,-1.299940,-1.662300,0.000048 +1.538690,-0.024785,-1.321080,-1.299940,-1.667260,0.000048 +1.537050,-0.024785,-1.321080,-1.299940,-1.672490,0.000048 +1.535400,-0.024785,-1.321080,-1.299940,-1.677970,0.000048 +1.533760,-0.024785,-1.321080,-1.299940,-1.683720,0.000048 +1.532120,-0.024785,-1.321080,-1.299940,-1.689720,0.000048 +1.530480,-0.024785,-1.321080,-1.299940,-1.695980,0.000048 +1.528840,-0.024785,-1.321080,-1.299940,-1.702500,0.000048 +1.527200,-0.024785,-1.321080,-1.299940,-1.709280,0.000048 +1.525560,-0.024785,-1.321080,-1.299940,-1.716320,0.000048 +1.523910,-0.024785,-1.321080,-1.299940,-1.723620,0.000048 +1.522270,-0.024785,-1.321080,-1.299940,-1.731180,0.000048 +1.520630,-0.024785,-1.321080,-1.299940,-1.739000,0.000048 +1.518990,-0.024785,-1.321080,-1.299940,-1.747070,0.000048 +1.517350,-0.024785,-1.321080,-1.299940,-1.755410,0.000048 +1.515710,-0.024785,-1.321080,-1.299940,-1.764000,0.000048 +1.514070,-0.024785,-1.321080,-1.299940,-1.772860,0.000048 +1.512430,-0.024785,-1.321080,-1.299940,-1.781970,0.000048 +1.510780,-0.024785,-1.321080,-1.299940,-1.791340,0.000048 +1.509140,-0.024785,-1.321080,-1.299940,-1.800970,0.000048 +1.507500,-0.024785,-1.321080,-1.299940,-1.810860,0.000048 +1.505860,-0.024785,-1.321080,-1.299940,-1.821010,0.000048 +1.504220,-0.024785,-1.321080,-1.299940,-1.831420,0.000048 +1.502580,-0.024785,-1.321080,-1.299940,-1.842090,0.000048 +1.500940,-0.024785,-1.321080,-1.299940,-1.853020,0.000048 +1.499290,-0.024785,-1.321080,-1.299940,-1.864200,0.000048 +1.497650,-0.024785,-1.321080,-1.299940,-1.875650,0.000048 +1.496010,-0.024785,-1.321080,-1.299940,-1.887360,0.000048 +1.494370,-0.024785,-1.321080,-1.299940,-1.899320,0.000048 +1.492730,-0.024785,-1.321080,-1.299940,-1.911540,0.000048 +1.491090,-0.024785,-1.321080,-1.299940,-1.924030,0.000048 +1.489450,-0.024785,-1.321080,-1.299940,-1.936770,0.000048 +1.487810,-0.024785,-1.321080,-1.299940,-1.949760,0.000048 +1.486160,-0.024785,-1.321080,-1.299940,-1.962980,0.000048 +1.484520,-0.024785,-1.321080,-1.299940,-1.976410,0.000048 +1.482880,-0.024785,-1.321080,-1.299940,-1.990020,0.000048 +1.481240,-0.024785,-1.321080,-1.299940,-2.003810,0.000048 +1.479600,-0.024785,-1.321080,-1.299940,-2.017750,0.000048 +1.477960,-0.024785,-1.321080,-1.299940,-2.031830,0.000048 +1.476320,-0.024785,-1.321080,-1.299940,-2.046010,0.000048 +1.474670,-0.024785,-1.321080,-1.299940,-2.060290,0.000048 +1.473030,-0.024785,-1.321080,-1.299940,-2.074640,0.000048 +1.471390,-0.024785,-1.321080,-1.299940,-2.089050,0.000048 +1.469750,-0.024785,-1.321080,-1.299940,-2.103490,0.000048 +1.468110,-0.024785,-1.321080,-1.299940,-2.117950,0.000048 +1.466470,-0.024785,-1.321080,-1.299940,-2.132400,0.000048 +1.464830,-0.024785,-1.321080,-1.299940,-2.146830,0.000048 +1.463190,-0.024785,-1.321080,-1.299940,-2.161210,0.000048 +1.461540,-0.024785,-1.321080,-1.299940,-2.175530,0.000048 +1.459900,-0.024785,-1.321080,-1.299940,-2.189770,0.000048 +1.458260,-0.024785,-1.321080,-1.299940,-2.203910,0.000048 +1.456620,-0.024785,-1.321080,-1.299940,-2.217930,0.000048 +1.454980,-0.024785,-1.321080,-1.299940,-2.231810,0.000048 +1.453340,-0.024785,-1.321080,-1.299940,-2.245530,0.000048 +1.451700,-0.024785,-1.321080,-1.299940,-2.259070,0.000048 +1.450050,-0.024785,-1.321080,-1.299940,-2.272410,0.000048 +1.448410,-0.024785,-1.321080,-1.299940,-2.285530,0.000048 +1.446770,-0.024785,-1.321080,-1.299940,-2.298420,0.000048 +1.445130,-0.024785,-1.321080,-1.299940,-2.311050,0.000048 +1.443490,-0.024785,-1.321080,-1.299940,-2.323420,0.000048 +1.441850,-0.024785,-1.321080,-1.299940,-2.335530,0.000048 +1.440210,-0.024785,-1.321080,-1.299940,-2.347380,0.000048 +1.438570,-0.024785,-1.321080,-1.299940,-2.358980,0.000048 +1.436920,-0.024785,-1.321080,-1.299940,-2.370310,0.000048 +1.435280,-0.024785,-1.321080,-1.299940,-2.381390,0.000048 +1.433640,-0.024785,-1.321080,-1.299940,-2.392200,0.000048 +1.432000,-0.024785,-1.321080,-1.299940,-2.402760,0.000048 +1.430360,-0.024785,-1.321080,-1.299940,-2.413060,0.000048 +1.428720,-0.024785,-1.321080,-1.299940,-2.423100,0.000048 +1.427080,-0.024785,-1.321080,-1.299940,-2.432880,0.000048 +1.425430,-0.024785,-1.321080,-1.299940,-2.442400,0.000048 +1.423790,-0.024785,-1.321080,-1.299940,-2.451660,0.000048 +1.422150,-0.024785,-1.321080,-1.299940,-2.460660,0.000048 +1.420510,-0.024785,-1.321080,-1.299940,-2.469400,0.000048 +1.418870,-0.024785,-1.321080,-1.299940,-2.477890,0.000048 +1.417230,-0.024785,-1.321080,-1.299940,-2.486110,0.000048 +1.415590,-0.024785,-1.321080,-1.299940,-2.494070,0.000048 +1.413950,-0.024785,-1.321080,-1.299940,-2.501780,0.000048 +1.412300,-0.024785,-1.321080,-1.299940,-2.509230,0.000048 +1.410660,-0.024785,-1.321080,-1.299940,-2.516410,0.000048 +1.409020,-0.024785,-1.321080,-1.299940,-2.523340,0.000048 +1.407380,-0.024785,-1.321080,-1.299940,-2.530010,0.000048 +1.405740,-0.024785,-1.321080,-1.299940,-2.536420,0.000048 +1.404100,-0.024785,-1.321080,-1.299940,-2.542570,0.000048 +1.402460,-0.024785,-1.321080,-1.299940,-2.548460,0.000048 +1.400810,-0.024785,-1.321080,-1.299940,-2.554090,0.000048 +1.399170,-0.024785,-1.321080,-1.299940,-2.559470,0.000048 +1.397530,-0.024785,-1.321080,-1.299940,-2.564580,0.000048 +1.395890,-0.024785,-1.321080,-1.299940,-2.569440,0.000048 +1.394250,-0.024785,-1.321080,-1.299940,-2.574030,0.000048 +1.392610,-0.024785,-1.321080,-1.299940,-2.578370,0.000048 +1.390970,-0.024785,-1.321080,-1.299940,-2.582440,0.000048 +1.389330,-0.024785,-1.321080,-1.299940,-2.586260,0.000048 +1.387680,-0.024785,-1.321080,-1.299940,-2.589820,0.000048 +1.386040,-0.024785,-1.321080,-1.299940,-2.593120,0.000048 +1.384400,-0.024785,-1.321080,-1.299940,-2.596160,0.000048 +1.382760,-0.024785,-1.321080,-1.299940,-2.598940,0.000048 +1.381120,-0.024785,-1.321080,-1.299940,-2.601460,0.000048 +1.379480,-0.024785,-1.321080,-1.299940,-2.603720,0.000048 +1.377840,-0.024785,-1.321080,-1.299940,-2.605730,0.000048 +1.376190,-0.024785,-1.321080,-1.299940,-2.607470,0.000048 +1.374550,-0.024785,-1.321080,-1.299940,-2.608960,0.000048 +1.372910,-0.024785,-1.321080,-1.299940,-2.610180,0.000048 +1.371270,-0.024785,-1.321080,-1.299940,-2.611150,0.000048 +1.369630,-0.024785,-1.321080,-1.299940,-2.611850,0.000048 +1.367990,-0.024785,-1.321080,-1.299940,-2.612300,0.000048 +1.366350,-0.024785,-1.321080,-1.299940,-2.612490,0.000048 +1.364710,-0.024785,-1.321080,-1.299940,-2.612420,0.000048 +1.363060,-0.024785,-1.321080,-1.299940,-2.612090,0.000048 +1.361420,-0.024785,-1.321080,-1.299940,-2.611500,0.000048 +1.359780,-0.024785,-1.321080,-1.299940,-2.610650,0.000048 +1.358140,-0.024785,-1.321080,-1.299940,-2.609550,0.000048 +1.356500,-0.024785,-1.321080,-1.299940,-2.608180,0.000048 +1.354860,-0.024785,-1.321080,-1.299940,-2.606550,0.000048 +1.353220,-0.024785,-1.321080,-1.299940,-2.604670,0.000048 +1.351570,-0.024785,-1.321080,-1.299940,-2.602520,0.000048 +1.349930,-0.024785,-1.321080,-1.299940,-2.600120,0.000048 +1.348290,-0.024785,-1.321080,-1.299940,-2.597460,0.000048 +1.346650,-0.024785,-1.321080,-1.299940,-2.594540,0.000048 +1.345010,-0.024785,-1.321080,-1.299940,-2.591360,0.000048 +1.343370,-0.024785,-1.321080,-1.299940,-2.587920,0.000048 +1.341730,-0.024785,-1.321080,-1.299940,-2.584220,0.000048 +1.340090,-0.024785,-1.321080,-1.299940,-2.580260,0.000048 +1.338440,-0.024785,-1.321080,-1.299940,-2.576040,0.000048 +1.336800,-0.024785,-1.321080,-1.299940,-2.571560,0.000048 +1.335160,-0.024785,-1.321080,-1.299940,-2.566830,0.000048 +1.333520,-0.024785,-1.321080,-1.299940,-2.561830,0.000048 +1.331880,-0.024785,-1.321080,-1.299940,-2.556580,0.000048 +1.330240,-0.024785,-1.321080,-1.299940,-2.551060,0.000048 +1.328600,-0.024785,-1.321080,-1.299940,-2.545290,0.000048 +1.326950,-0.024785,-1.321080,-1.299940,-2.539260,0.000048 +1.325310,-0.024785,-1.321080,-1.299940,-2.532970,0.000048 +1.323670,-0.024785,-1.321080,-1.299940,-2.526420,0.000048 +1.322030,-0.024785,-1.321080,-1.299940,-2.519610,0.000048 +1.320390,-0.024785,-1.321080,-1.299940,-2.512540,0.000048 +1.318750,-0.024785,-1.321080,-1.299940,-2.505210,0.000048 +1.317130,-0.024785,-1.321080,-1.299940,-2.497620,0.000048 +1.315530,-0.024785,-1.321080,-1.299940,-2.489770,0.000048 +1.313990,-0.024785,-1.321080,-1.299940,-2.481670,0.000048 +1.312510,-0.024785,-1.321080,-1.299940,-2.473300,0.000048 +1.311110,-0.024785,-1.321080,-1.299940,-2.464680,0.000048 +1.309800,-0.024785,-1.321080,-1.299940,-2.455790,0.000048 +1.308610,-0.024785,-1.321080,-1.299940,-2.446650,0.000048 +1.307550,-0.024785,-1.321080,-1.299940,-2.437250,0.000048 +1.306630,-0.024785,-1.321080,-1.299940,-2.427590,0.000048 +1.305870,-0.024785,-1.321080,-1.299940,-2.417670,0.000048 +1.305300,-0.024785,-1.321080,-1.299940,-2.407490,0.000048 +1.304910,-0.024785,-1.321080,-1.299940,-2.397050,0.000048 +1.304730,-0.024785,-1.321080,-1.299940,-2.386350,0.000048 +1.304770,-0.024785,-1.321080,-1.299940,-2.375390,0.000048 +1.305030,-0.024785,-1.321080,-1.299940,-2.364180,0.000048 +1.305500,-0.024785,-1.321080,-1.299940,-2.352700,0.000048 +1.306190,-0.024785,-1.321080,-1.299940,-2.340970,0.000048 +1.307100,-0.024785,-1.321080,-1.299940,-2.328970,0.000048 +1.308220,-0.024785,-1.321080,-1.299940,-2.316720,0.000048 +1.309560,-0.024785,-1.321080,-1.299940,-2.304210,0.000048 +1.311120,-0.024785,-1.321080,-1.299940,-2.291440,0.000048 +1.312890,-0.024785,-1.321080,-1.299940,-2.278410,0.000048 +1.314870,-0.024785,-1.321080,-1.299940,-2.265120,0.000048 +1.317080,-0.024785,-1.321080,-1.299940,-2.251570,0.000048 +1.319500,-0.024785,-1.321080,-1.299940,-2.237760,0.000048 +1.322130,-0.024785,-1.321080,-1.299940,-2.223700,0.000048 +1.324990,-0.024785,-1.321080,-1.299940,-2.209410,0.000048 +1.328060,-0.024785,-1.321080,-1.299940,-2.194910,0.000048 +1.331340,-0.024785,-1.321080,-1.299940,-2.180210,0.000048 +1.334840,-0.024785,-1.321080,-1.299940,-2.165350,0.000048 +1.338560,-0.024785,-1.321080,-1.299940,-2.150330,0.000048 +1.342500,-0.024785,-1.321080,-1.299940,-2.135170,0.000048 +1.346650,-0.024785,-1.321080,-1.299940,-2.119910,0.000048 +1.351020,-0.024785,-1.321080,-1.299940,-2.104540,0.000048 +1.355600,-0.024785,-1.321080,-1.299940,-2.089100,0.000048 +1.360400,-0.024785,-1.321080,-1.299940,-2.073610,0.000048 +1.365420,-0.024785,-1.321080,-1.299940,-2.058070,0.000048 +1.370650,-0.024785,-1.321080,-1.299940,-2.042520,0.000048 +1.376100,-0.024785,-1.321080,-1.299940,-2.026970,0.000048 +1.381770,-0.024785,-1.321080,-1.299940,-2.011390,0.000048 +1.387650,-0.024785,-1.321080,-1.299940,-1.995770,0.000048 +1.393750,-0.024785,-1.321080,-1.299940,-1.980090,0.000048 +1.400060,-0.024785,-1.321080,-1.299940,-1.964330,0.000048 +1.406590,-0.024785,-1.321080,-1.299940,-1.948470,0.000048 +1.413340,-0.024785,-1.321080,-1.299940,-1.932490,0.000048 +1.420300,-0.024785,-1.321080,-1.299940,-1.916380,0.000048 +1.427480,-0.024785,-1.321080,-1.299940,-1.900100,0.000048 +1.434880,-0.024785,-1.321080,-1.299940,-1.883650,0.000048 +1.442490,-0.024785,-1.321080,-1.299940,-1.867010,0.000048 +1.450320,-0.024785,-1.321080,-1.299940,-1.850150,0.000048 +1.458360,-0.024785,-1.321080,-1.299940,-1.833050,0.000048 +1.466600,-0.024785,-1.321080,-1.299940,-1.815720,0.000048 +1.475010,-0.024785,-1.321080,-1.299940,-1.798180,0.000048 +1.483580,-0.024785,-1.321080,-1.299940,-1.780440,0.000048 +1.492310,-0.024785,-1.321080,-1.299940,-1.762530,0.000048 +1.501160,-0.024785,-1.321080,-1.299940,-1.744460,0.000048 +1.510120,-0.024785,-1.321080,-1.299940,-1.726250,0.000048 +1.519180,-0.024785,-1.321080,-1.299940,-1.707930,0.000048 +1.528320,-0.024785,-1.321080,-1.299940,-1.689520,0.000048 +1.537530,-0.024785,-1.321080,-1.299940,-1.671020,0.000048 +1.546790,-0.024785,-1.321080,-1.299940,-1.652470,0.000048 +1.556080,-0.024785,-1.321080,-1.299940,-1.633870,0.000048 +1.565383,-0.024785,-1.321081,-1.299938,-1.615260,0.000048 +1.574707,-0.024785,-1.321081,-1.299938,-1.596611,0.000048 +1.584019,-0.024785,-1.321081,-1.299938,-1.577989,0.000048 +1.593304,-0.024785,-1.321081,-1.299938,-1.559418,0.000048 +1.602551,-0.024785,-1.321081,-1.299938,-1.540925,0.000048 +1.611746,-0.024785,-1.321081,-1.299938,-1.522535,0.000048 +1.620876,-0.024785,-1.321081,-1.299938,-1.504274,0.000048 +1.629929,-0.024785,-1.321081,-1.299938,-1.486168,0.000048 +1.638892,-0.024785,-1.321081,-1.299938,-1.468242,0.000048 +1.647753,-0.024785,-1.321081,-1.299938,-1.450520,0.000048 +1.656500,-0.024785,-1.321081,-1.299938,-1.433027,0.000048 +1.665119,-0.024785,-1.321081,-1.299938,-1.415788,0.000048 +1.673600,-0.024785,-1.321081,-1.299938,-1.398826,0.000048 +1.681930,-0.024785,-1.321081,-1.299938,-1.382166,0.000048 +1.690098,-0.024785,-1.321081,-1.299938,-1.365830,0.000048 +1.698093,-0.024785,-1.321081,-1.299938,-1.349841,0.000048 +1.705902,-0.024785,-1.321081,-1.299938,-1.334221,0.000048 +1.713517,-0.024785,-1.321081,-1.299938,-1.318993,0.000048 +1.720925,-0.024785,-1.321081,-1.299938,-1.304177,0.000048 +1.728116,-0.024785,-1.321081,-1.299938,-1.289793,0.000048 +1.735082,-0.024785,-1.321081,-1.299938,-1.275863,0.000048 +1.741811,-0.024785,-1.321081,-1.299938,-1.262405,0.000048 +1.748294,-0.024785,-1.321081,-1.299938,-1.249438,0.000048 +1.754523,-0.024785,-1.321081,-1.299938,-1.236980,0.000048 +1.760489,-0.024785,-1.321081,-1.299938,-1.225048,0.000048 +1.766183,-0.024785,-1.321081,-1.299938,-1.213659,0.000048 +1.771598,-0.024785,-1.321081,-1.299938,-1.202830,0.000048 +1.776726,-0.024785,-1.321081,-1.299938,-1.192574,0.000048 +1.781560,-0.024785,-1.321081,-1.299938,-1.182906,0.000048 +1.786093,-0.024785,-1.321081,-1.299938,-1.173840,0.000048 +1.790319,-0.024785,-1.321081,-1.299938,-1.165389,0.000048 +1.794231,-0.024785,-1.321081,-1.299938,-1.157563,0.000048 +1.797826,-0.024785,-1.321081,-1.299938,-1.150374,0.000048 +1.801097,-0.024785,-1.321081,-1.299938,-1.143833,0.000048 +1.804040,-0.024785,-1.321081,-1.299938,-1.137947,0.000048 +1.806650,-0.024785,-1.321081,-1.299938,-1.132725,0.000048 +1.808925,-0.024785,-1.321081,-1.299938,-1.128175,0.000048 +1.810862,-0.024785,-1.321081,-1.299938,-1.124303,0.000048 +1.812456,-0.024785,-1.321081,-1.299938,-1.121114,0.000048 +1.813707,-0.024785,-1.321081,-1.299938,-1.118612,0.000048 +1.814612,-0.024785,-1.321081,-1.299938,-1.116802,0.000048 +1.815170,-0.024785,-1.321081,-1.299938,-1.115685,0.000048 +1.815381,-0.024785,-1.321081,-1.299938,-1.115264,0.000048 +1.815244,-0.024785,-1.321081,-1.299938,-1.115538,0.000048 +1.814759,-0.024785,-1.321081,-1.299938,-1.116508,0.000048 +1.813927,-0.024785,-1.321081,-1.299938,-1.118172,0.000048 +1.812749,-0.024785,-1.321081,-1.299938,-1.120527,0.000048 +1.811227,-0.024785,-1.321081,-1.299938,-1.123571,0.000048 +1.809363,-0.024785,-1.321081,-1.299938,-1.127299,0.000048 +1.807160,-0.024785,-1.321081,-1.299938,-1.131707,0.000048 +1.804620,-0.024785,-1.321081,-1.299938,-1.136787,0.000048 +1.801747,-0.024785,-1.321081,-1.299938,-1.142533,0.000048 +1.798545,-0.024785,-1.321081,-1.299938,-1.148936,0.000048 +1.795018,-0.024785,-1.321081,-1.299938,-1.155989,0.000048 +1.791173,-0.024785,-1.321081,-1.299938,-1.163681,0.000048 +1.787012,-0.024785,-1.321081,-1.299938,-1.172001,0.000048 +1.782544,-0.024785,-1.321081,-1.299938,-1.180938,0.000048 +1.777773,-0.024785,-1.321081,-1.299938,-1.190480,0.000048 +1.772707,-0.024785,-1.321081,-1.299938,-1.200612,0.000048 +1.767352,-0.024785,-1.321081,-1.299938,-1.211322,0.000048 +1.761716,-0.024785,-1.321081,-1.299938,-1.222593,0.000048 +1.755807,-0.024785,-1.321081,-1.299938,-1.234412,0.000048 +1.749633,-0.024785,-1.321081,-1.299938,-1.246760,0.000048 +1.743203,-0.024785,-1.321081,-1.299938,-1.259620,0.000048 +1.736525,-0.024785,-1.321081,-1.299938,-1.272976,0.000048 +1.729609,-0.024785,-1.321081,-1.299938,-1.286808,0.000048 +1.722464,-0.024785,-1.321081,-1.299938,-1.301097,0.000048 +1.715101,-0.024785,-1.321081,-1.299938,-1.315824,0.000048 +1.707530,-0.024785,-1.321081,-1.299938,-1.330967,0.000048 +1.699760,-0.024785,-1.321081,-1.299938,-1.346505,0.000048 +1.691804,-0.024785,-1.321081,-1.299938,-1.362418,0.000048 +1.683672,-0.024785,-1.321081,-1.299938,-1.378683,0.000048 +1.675375,-0.024785,-1.321081,-1.299938,-1.395276,0.000048 +1.666925,-0.024785,-1.321081,-1.299938,-1.412176,0.000048 +1.658334,-0.024785,-1.321081,-1.299938,-1.429359,0.000048 +1.649613,-0.024785,-1.321081,-1.299938,-1.446800,0.000048 +1.640775,-0.024785,-1.321081,-1.299938,-1.464475,0.000048 +1.631833,-0.024785,-1.321081,-1.299938,-1.482361,0.000048 +1.622798,-0.024785,-1.321081,-1.299938,-1.500431,0.000048 +1.613683,-0.024785,-1.321081,-1.299938,-1.518661,0.000048 +1.604500,-0.024785,-1.321081,-1.299938,-1.537025,0.000048 +1.595264,-0.024785,-1.321081,-1.299938,-1.555499,0.000048 +1.585985,-0.024785,-1.321081,-1.299938,-1.574055,0.000048 +1.576678,-0.024785,-1.321081,-1.299938,-1.592669,0.000048 +1.567356,-0.024785,-1.321081,-1.299938,-1.611315,0.000048 +1.558030,-0.024785,-1.321081,-1.299938,-1.629966,0.000048 +1.548715,-0.024785,-1.321081,-1.299938,-1.648596,0.000048 +1.539423,-0.024785,-1.321081,-1.299938,-1.667180,0.000048 +1.530167,-0.024785,-1.321081,-1.299938,-1.685692,0.000048 +1.520960,-0.024785,-1.321081,-1.299938,-1.704105,0.000048 +1.511815,-0.024785,-1.321081,-1.299938,-1.722395,0.000048 +1.502745,-0.024785,-1.321081,-1.299938,-1.740536,0.000048 +1.493761,-0.024785,-1.321081,-1.299938,-1.758503,0.000048 +1.484878,-0.024785,-1.321081,-1.299938,-1.776270,0.000048 +1.476106,-0.024785,-1.321081,-1.299938,-1.793814,0.000048 +1.467459,-0.024785,-1.321081,-1.299938,-1.811108,0.000048 +1.458948,-0.024785,-1.321081,-1.299938,-1.828131,0.000048 +1.450585,-0.024785,-1.321081,-1.299938,-1.844857,0.000048 +1.442381,-0.024785,-1.321081,-1.299938,-1.861263,0.000048 +1.434349,-0.024785,-1.321081,-1.299938,-1.877327,0.000048 +1.426500,-0.024785,-1.321081,-1.299938,-1.893027,0.000048 +1.418843,-0.024785,-1.321081,-1.299938,-1.908340,0.000048 +1.411390,-0.024785,-1.321081,-1.299938,-1.923245,0.000048 +1.404152,-0.024785,-1.321081,-1.299938,-1.937722,0.000048 +1.397138,-0.024785,-1.321081,-1.299938,-1.951749,0.000048 +1.390358,-0.024785,-1.321081,-1.299938,-1.965309,0.000048 +1.383822,-0.024785,-1.321081,-1.299938,-1.978381,0.000048 +1.377539,-0.024785,-1.321081,-1.299938,-1.990949,0.000048 +1.371517,-0.024785,-1.321081,-1.299938,-2.002993,0.000048 +1.365764,-0.024785,-1.321081,-1.299938,-2.014498,0.000048 +1.360290,-0.024785,-1.321081,-1.299938,-2.025447,0.000048 +1.355100,-0.024785,-1.321081,-1.299938,-2.035825,0.000048 +1.350204,-0.024785,-1.321081,-1.299938,-2.045619,0.000048 +1.345607,-0.024785,-1.321081,-1.299938,-2.054813,0.000048 +1.341315,-0.024785,-1.321081,-1.299938,-2.063395,0.000048 +1.337336,-0.024785,-1.321081,-1.299938,-2.071354,0.000048 +1.333674,-0.024785,-1.321081,-1.299938,-2.078679,0.000048 +1.330334,-0.024785,-1.321081,-1.299938,-2.085358,0.000048 +1.327321,-0.024785,-1.321081,-1.299938,-2.091383,0.000048 +1.324640,-0.024785,-1.321081,-1.299938,-2.096746,0.000048 +1.322294,-0.024785,-1.321081,-1.299938,-2.101439,0.000048 +1.320286,-0.024785,-1.321081,-1.299938,-2.105455,0.000048 +1.318619,-0.024785,-1.321081,-1.299938,-2.108789,0.000048 +1.317295,-0.024785,-1.321081,-1.299938,-2.111436,0.000048 +1.316317,-0.024785,-1.321081,-1.299938,-2.113393,0.000048 +1.315685,-0.024785,-1.321081,-1.299938,-2.114656,0.000048 +1.315401,-0.024785,-1.321081,-1.299938,-2.115225,0.000048 +1.315464,-0.024785,-1.321081,-1.299938,-2.115098,0.000048 +1.315875,-0.024785,-1.321081,-1.299938,-2.114275,0.000048 +1.316634,-0.024785,-1.321081,-1.299938,-2.112758,0.000048 +1.317739,-0.024785,-1.321081,-1.299938,-2.110549,0.000048 +1.319188,-0.024785,-1.321081,-1.299938,-2.107650,0.000048 +1.320980,-0.024785,-1.321081,-1.299938,-2.104066,0.000048 +1.323112,-0.024785,-1.321081,-1.299938,-2.099802,0.000048 +1.325581,-0.024785,-1.321081,-1.299938,-2.094864,0.000048 +1.328384,-0.024785,-1.321081,-1.299938,-2.089258,0.000048 +1.331517,-0.024785,-1.321081,-1.299938,-2.082993,0.000048 +1.334975,-0.024785,-1.321081,-1.299938,-2.076076,0.000048 +1.338754,-0.024785,-1.321081,-1.299938,-2.068519,0.000048 +1.342848,-0.024785,-1.321081,-1.299938,-2.060331,0.000048 +1.347252,-0.024785,-1.321081,-1.299938,-2.051523,0.000048 +1.351959,-0.024785,-1.321081,-1.299938,-2.042108,0.000048 +1.356963,-0.024785,-1.321081,-1.299938,-2.032100,0.000048 +1.362258,-0.024785,-1.321081,-1.299938,-2.021511,0.000048 +1.367835,-0.024785,-1.321081,-1.299938,-2.010357,0.000048 +1.373687,-0.024785,-1.321081,-1.299938,-1.998653,0.000048 +1.379805,-0.024785,-1.321081,-1.299938,-1.986416,0.000048 +1.386182,-0.024785,-1.321081,-1.299938,-1.973662,0.000048 +1.392808,-0.024785,-1.321081,-1.299938,-1.960409,0.000048 +1.399675,-0.024785,-1.321081,-1.299938,-1.946676,0.000048 +1.406772,-0.024785,-1.321081,-1.299938,-1.932482,0.000048 +1.414090,-0.024785,-1.321081,-1.299938,-1.917846,0.000048 +1.421618,-0.024785,-1.321081,-1.299938,-1.902790,0.000048 +1.429346,-0.024785,-1.321081,-1.299938,-1.887333,0.000048 +1.437264,-0.024785,-1.321081,-1.299938,-1.871498,0.000048 +1.445360,-0.024785,-1.321081,-1.299938,-1.855306,0.000048 +1.453623,-0.024785,-1.321081,-1.299938,-1.838780,0.000048 +1.462042,-0.024785,-1.321081,-1.299938,-1.821943,0.000048 +1.470604,-0.024785,-1.321081,-1.299938,-1.804818,0.000048 +1.479298,-0.024785,-1.321081,-1.299938,-1.787430,0.000048 +1.488112,-0.024785,-1.321081,-1.299938,-1.769802,0.000048 +1.497034,-0.024785,-1.321081,-1.299938,-1.751959,0.000048 +1.506050,-0.024785,-1.321081,-1.299938,-1.733925,0.000048 +1.515149,-0.024785,-1.321081,-1.299938,-1.715727,0.000048 +1.524319,-0.024785,-1.321081,-1.299938,-1.697389,0.000048 +1.533545,-0.024785,-1.321081,-1.299938,-1.678936,0.000048 +1.542815,-0.024785,-1.321081,-1.299938,-1.660395,0.000048 +1.552117,-0.024785,-1.321081,-1.299938,-1.641791,0.000048 +1.561438,-0.024785,-1.321081,-1.299938,-1.623150,0.000048 +1.570764,-0.024785,-1.321081,-1.299938,-1.604499,0.000048 +1.580082,-0.024785,-1.321081,-1.299938,-1.585862,0.000048 +1.589380,-0.024785,-1.321081,-1.299938,-1.567266,0.000048 +1.598645,-0.024785,-1.321081,-1.299938,-1.548737,0.000048 +1.607863,-0.024785,-1.321081,-1.299938,-1.530300,0.000048 +1.617022,-0.024785,-1.321081,-1.299938,-1.511982,0.000048 +1.626109,-0.024785,-1.321081,-1.299938,-1.493807,0.000048 +1.635112,-0.024785,-1.321081,-1.299938,-1.475801,0.000048 +1.644018,-0.024785,-1.321081,-1.299938,-1.457990,0.000048 +1.652814,-0.024785,-1.321081,-1.299938,-1.440397,0.000048 +1.661489,-0.024785,-1.321081,-1.299938,-1.423048,0.000048 +1.670030,-0.024785,-1.321081,-1.299938,-1.405966,0.000048 +1.678425,-0.024785,-1.321081,-1.299938,-1.389175,0.000048 +1.686663,-0.024785,-1.321081,-1.299938,-1.372699,0.000048 +1.694733,-0.024785,-1.321081,-1.299938,-1.356561,0.000048 +1.702622,-0.024785,-1.321081,-1.299938,-1.340782,0.000048 +1.710320,-0.024785,-1.321081,-1.299938,-1.325386,0.000048 +1.717817,-0.024785,-1.321081,-1.299938,-1.310393,0.000048 +1.725101,-0.024785,-1.321081,-1.299938,-1.295824,0.000048 +1.732163,-0.024785,-1.321081,-1.299938,-1.281699,0.000048 +1.738993,-0.024785,-1.321081,-1.299938,-1.268039,0.000048 +1.745582,-0.024785,-1.321081,-1.299938,-1.254862,0.000048 +1.751920,-0.024785,-1.321081,-1.299938,-1.242186,0.000048 +1.757998,-0.024785,-1.321081,-1.299938,-1.230030,0.000048 +1.763808,-0.024785,-1.321081,-1.299938,-1.218410,0.000048 +1.769342,-0.024785,-1.321081,-1.299938,-1.207342,0.000048 +1.774592,-0.024785,-1.321081,-1.299938,-1.196841,0.000048 +1.779551,-0.024785,-1.321081,-1.299938,-1.186923,0.000048 +1.784212,-0.024785,-1.321081,-1.299938,-1.177601,0.000048 +1.788569,-0.024785,-1.321081,-1.299938,-1.168888,0.000048 +1.792615,-0.024785,-1.321081,-1.299938,-1.160796,0.000048 +1.796345,-0.024785,-1.321081,-1.299938,-1.153337,0.000048 +1.799753,-0.024785,-1.321081,-1.299938,-1.146520,0.000048 +1.802835,-0.024785,-1.321081,-1.299938,-1.140356,0.000048 +1.805587,-0.024785,-1.321081,-1.299938,-1.134852,0.000048 +1.808004,-0.024785,-1.321081,-1.299938,-1.130018,0.000048 +1.810084,-0.024785,-1.321081,-1.299938,-1.125858,0.000048 +1.811823,-0.024785,-1.321081,-1.299938,-1.122379,0.000048 +1.813220,-0.024785,-1.321081,-1.299938,-1.119586,0.000048 +1.814271,-0.024785,-1.321081,-1.299938,-1.117483,0.000048 +1.814977,-0.024785,-1.321081,-1.299938,-1.116073,0.000048 +1.815334,-0.024785,-1.321081,-1.299938,-1.115357,0.000048 +1.815344,-0.024785,-1.321081,-1.299938,-1.115337,0.000048 +1.815007,-0.024785,-1.321081,-1.299938,-1.116013,0.000048 +1.814321,-0.024785,-1.321081,-1.299938,-1.117383,0.000048 +1.813290,-0.024785,-1.321081,-1.299938,-1.119447,0.000048 +1.811913,-0.024785,-1.321081,-1.299938,-1.122200,0.000048 +1.810193,-0.024785,-1.321081,-1.299938,-1.125639,0.000048 +1.808133,-0.024785,-1.321081,-1.299938,-1.129760,0.000048 +1.805735,-0.024785,-1.321081,-1.299938,-1.134556,0.000048 +1.803002,-0.024785,-1.321081,-1.299938,-1.140021,0.000048 +1.799939,-0.024785,-1.321081,-1.299938,-1.146148,0.000048 +1.796549,-0.024785,-1.321081,-1.299938,-1.152927,0.000048 +1.792838,-0.024785,-1.321081,-1.299938,-1.160350,0.000048 +1.788810,-0.024785,-1.321081,-1.299938,-1.168405,0.000048 +1.784471,-0.024785,-1.321081,-1.299938,-1.177083,0.000048 +1.779828,-0.024785,-1.321081,-1.299938,-1.186370,0.000048 +1.774886,-0.024785,-1.321081,-1.299938,-1.196255,0.000048 +1.769652,-0.024785,-1.321081,-1.299938,-1.206722,0.000048 +1.764134,-0.024785,-1.321081,-1.299938,-1.217758,0.000048 +1.758340,-0.024785,-1.321081,-1.299938,-1.229347,0.000048 +1.752277,-0.024785,-1.321081,-1.299938,-1.241472,0.000048 +1.745954,-0.024785,-1.321081,-1.299938,-1.254119,0.000048 +1.739379,-0.024785,-1.321081,-1.299938,-1.267267,0.000048 +1.732563,-0.024785,-1.321081,-1.299938,-1.280900,0.000048 +1.725514,-0.024785,-1.321081,-1.299938,-1.294998,0.000048 +1.718242,-0.024785,-1.321081,-1.299938,-1.309542,0.000048 +1.710757,-0.024785,-1.321081,-1.299938,-1.324511,0.000048 +1.703070,-0.024785,-1.321081,-1.299938,-1.339885,0.000048 +1.695192,-0.024785,-1.321081,-1.299938,-1.355642,0.000048 +1.687133,-0.024785,-1.321081,-1.299938,-1.371761,0.000048 +1.678904,-0.024785,-1.321081,-1.299938,-1.388218,0.000048 +1.670517,-0.024785,-1.321081,-1.299938,-1.404991,0.000048 +1.661985,-0.024785,-1.321081,-1.299938,-1.422057,0.000048 +1.653317,-0.024785,-1.321081,-1.299938,-1.439392,0.000048 +1.644528,-0.024785,-1.321081,-1.299938,-1.456971,0.000048 +1.635628,-0.024785,-1.321081,-1.299938,-1.474771,0.000048 +1.626630,-0.024785,-1.321081,-1.299938,-1.492766,0.000048 +1.617547,-0.024785,-1.321081,-1.299938,-1.510931,0.000048 +1.608392,-0.024785,-1.321081,-1.299938,-1.529242,0.000048 +1.599177,-0.024785,-1.321081,-1.299938,-1.547673,0.000048 +1.589914,-0.024785,-1.321081,-1.299938,-1.566197,0.000048 +1.580618,-0.024785,-1.321081,-1.299938,-1.584790,0.000048 +1.571300,-0.024785,-1.321081,-1.299938,-1.603425,0.000048 +1.561975,-0.024785,-1.321081,-1.299938,-1.622077,0.000048 +1.552654,-0.024785,-1.321081,-1.299938,-1.640719,0.000048 +1.543350,-0.024785,-1.321081,-1.299938,-1.659326,0.000048 +1.534077,-0.024785,-1.321081,-1.299938,-1.677871,0.000048 +1.524848,-0.024785,-1.321081,-1.299938,-1.696329,0.000048 +1.515676,-0.024785,-1.321081,-1.299938,-1.714675,0.000048 +1.506572,-0.024785,-1.321081,-1.299938,-1.732882,0.000048 +1.497550,-0.024785,-1.321081,-1.299938,-1.750926,0.000048 +1.488623,-0.024785,-1.321081,-1.299938,-1.768780,0.000048 +1.479802,-0.024785,-1.321081,-1.299938,-1.786421,0.000048 +1.471101,-0.024785,-1.321081,-1.299938,-1.803824,0.000048 +1.462531,-0.024785,-1.321081,-1.299938,-1.820965,0.000048 +1.454104,-0.024785,-1.321081,-1.299938,-1.837819,0.000048 +1.445831,-0.024785,-1.321081,-1.299938,-1.854363,0.000048 +1.437725,-0.024785,-1.321081,-1.299938,-1.870575,0.000048 +1.429797,-0.024785,-1.321081,-1.299938,-1.886432,0.000048 +1.422058,-0.024785,-1.321081,-1.299938,-1.901911,0.000048 +1.414518,-0.024785,-1.321081,-1.299938,-1.916991,0.000048 +1.407187,-0.024785,-1.321081,-1.299938,-1.931651,0.000048 +1.400077,-0.024785,-1.321081,-1.299938,-1.945871,0.000048 +1.393197,-0.024785,-1.321081,-1.299938,-1.959631,0.000048 +1.386557,-0.024785,-1.321081,-1.299938,-1.972912,0.000048 +1.380165,-0.024785,-1.321081,-1.299938,-1.985695,0.000048 +1.374032,-0.024785,-1.321081,-1.299938,-1.997963,0.000048 +1.368164,-0.024785,-1.321081,-1.299938,-2.009698,0.000048 +1.362571,-0.024785,-1.321081,-1.299938,-2.020884,0.000048 +1.357260,-0.024785,-1.321081,-1.299938,-2.031506,0.000048 +1.352239,-0.024785,-1.321081,-1.299938,-2.041548,0.000048 +1.347514,-0.024785,-1.321081,-1.299938,-2.050997,0.000048 +1.343093,-0.024785,-1.321081,-1.299938,-2.059840,0.000048 +1.338981,-0.024785,-1.321081,-1.299938,-2.068064,0.000048 +1.335184,-0.024785,-1.321081,-1.299938,-2.075659,0.000048 +1.331707,-0.024785,-1.321081,-1.299938,-2.082612,0.000048 +1.328555,-0.024785,-1.321081,-1.299938,-2.088915,0.000048 +1.325734,-0.024785,-1.321081,-1.299938,-2.094559,0.000048 +1.323245,-0.024785,-1.321081,-1.299938,-2.099536,0.000048 +1.321094,-0.024785,-1.321081,-1.299938,-2.103839,0.000048 +1.319282,-0.024785,-1.321081,-1.299938,-2.107462,0.000048 +1.317813,-0.024785,-1.321081,-1.299938,-2.110400,0.000048 +1.316688,-0.024785,-1.321081,-1.299938,-2.112650,0.000048 +1.315910,-0.024785,-1.321081,-1.299938,-2.114207,0.000048 +1.315478,-0.024785,-1.321081,-1.299938,-2.115069,0.000048 +1.315395,-0.024785,-1.321081,-1.299938,-2.115237,0.000048 +1.315659,-0.024785,-1.321081,-1.299938,-2.114708,0.000048 +1.316271,-0.024785,-1.321081,-1.299938,-2.113484,0.000048 +1.317229,-0.024785,-1.321081,-1.299938,-2.111568,0.000048 +1.318533,-0.024785,-1.321081,-1.299938,-2.108960,0.000048 +1.320180,-0.024785,-1.321081,-1.299938,-2.105665,0.000048 +1.322169,-0.024785,-1.321081,-1.299938,-2.101688,0.000048 +1.324496,-0.024785,-1.321081,-1.299938,-2.097035,0.000048 +1.327158,-0.024785,-1.321081,-1.299938,-2.091710,0.000048 +1.330152,-0.024785,-1.321081,-1.299938,-2.085723,0.000048 +1.333473,-0.024785,-1.321081,-1.299938,-2.079081,0.000048 +1.337116,-0.024785,-1.321081,-1.299938,-2.071793,0.000048 +1.341078,-0.024785,-1.321081,-1.299938,-2.063871,0.000048 +1.345351,-0.024785,-1.321081,-1.299938,-2.055324,0.000048 +1.349931,-0.024785,-1.321081,-1.299938,-2.046164,0.000048 +1.354810,-0.024785,-1.321081,-1.299938,-2.036405,0.000048 +1.359983,-0.024785,-1.321081,-1.299938,-2.026060,0.000048 +1.365441,-0.024785,-1.321081,-1.299938,-2.015143,0.000048 +1.371178,-0.024785,-1.321081,-1.299938,-2.003670,0.000048 +1.377185,-0.024785,-1.321081,-1.299938,-1.991656,0.000048 +1.383454,-0.024785,-1.321081,-1.299938,-1.979119,0.000048 +1.389976,-0.024785,-1.321081,-1.299938,-1.966075,0.000048 +1.396742,-0.024785,-1.321081,-1.299938,-1.952543,0.000048 +1.403742,-0.024785,-1.321081,-1.299938,-1.938542,0.000048 +1.410968,-0.024785,-1.321081,-1.299938,-1.924090,0.000048 +1.418408,-0.024785,-1.321081,-1.299938,-1.909209,0.000048 +1.426053,-0.024785,-1.321081,-1.299938,-1.893919,0.000048 +1.433892,-0.024785,-1.321081,-1.299938,-1.878241,0.000048 +1.441914,-0.024785,-1.321081,-1.299938,-1.862197,0.000048 +1.450108,-0.024785,-1.321081,-1.299938,-1.845810,0.000048 +1.458462,-0.024785,-1.321081,-1.299938,-1.829102,0.000048 +1.466965,-0.024785,-1.321081,-1.299938,-1.812096,0.000048 +1.475605,-0.024785,-1.321081,-1.299938,-1.794816,0.000048 +1.484370,-0.024785,-1.321081,-1.299938,-1.777287,0.000048 +1.493247,-0.024785,-1.321081,-1.299938,-1.759531,0.000048 +1.502225,-0.024785,-1.321081,-1.299938,-1.741576,0.000048 +1.511291,-0.024785,-1.321081,-1.299938,-1.723444,0.000048 +1.520432,-0.024785,-1.321081,-1.299938,-1.705162,0.000048 +1.529636,-0.024785,-1.321081,-1.299938,-1.686754,0.000048 +1.538889,-0.024785,-1.321081,-1.299938,-1.668248,0.000048 +1.548179,-0.024785,-1.321081,-1.299938,-1.649667,0.000048 +1.557494,-0.024785,-1.321081,-1.299938,-1.631039,0.000048 +1.566819,-0.024785,-1.321081,-1.299938,-1.612388,0.000048 +1.576142,-0.024785,-1.321081,-1.299938,-1.593742,0.000048 +1.585450,-0.024785,-1.321081,-1.299938,-1.575126,0.000048 +1.594730,-0.024785,-1.321081,-1.299938,-1.556565,0.000048 +1.603970,-0.024785,-1.321081,-1.299938,-1.538086,0.000048 +1.613156,-0.024785,-1.321081,-1.299938,-1.519715,0.000048 +1.622275,-0.024785,-1.321081,-1.299938,-1.501476,0.000048 +1.631315,-0.024785,-1.321081,-1.299938,-1.483396,0.000048 +1.640263,-0.024785,-1.321081,-1.299938,-1.465499,0.000048 +1.649107,-0.024785,-1.321081,-1.299938,-1.447811,0.000048 +1.657835,-0.024785,-1.321081,-1.299938,-1.430356,0.000048 +1.666434,-0.024785,-1.321081,-1.299938,-1.413158,0.000048 +1.674892,-0.024785,-1.321081,-1.299938,-1.396241,0.000048 +1.683198,-0.024785,-1.321081,-1.299938,-1.379629,0.000048 +1.691340,-0.024785,-1.321081,-1.299938,-1.363345,0.000048 +1.699307,-0.024785,-1.321081,-1.299938,-1.347412,0.000048 +1.707088,-0.024785,-1.321081,-1.299938,-1.331851,0.000048 +1.714671,-0.024785,-1.321081,-1.299938,-1.316684,0.000048 +1.722046,-0.024785,-1.321081,-1.299938,-1.301934,0.000048 +1.729204,-0.024785,-1.321081,-1.299938,-1.287619,0.000048 +1.736133,-0.024785,-1.321081,-1.299938,-1.273760,0.000048 +1.742825,-0.024785,-1.321081,-1.299938,-1.260376,0.000048 +1.749270,-0.024785,-1.321081,-1.299938,-1.247486,0.000048 +1.755459,-0.024785,-1.321081,-1.299938,-1.235108,0.000048 +1.761383,-0.024785,-1.321081,-1.299938,-1.223259,0.000048 +1.767035,-0.024785,-1.321081,-1.299938,-1.211956,0.000048 +1.772406,-0.024785,-1.321081,-1.299938,-1.201213,0.000048 +1.777489,-0.024785,-1.321081,-1.299938,-1.191047,0.000048 +1.782277,-0.024785,-1.321081,-1.299938,-1.181471,0.000048 +1.786764,-0.024785,-1.321081,-1.299938,-1.172499,0.000048 +1.790942,-0.024785,-1.321081,-1.299938,-1.164143,0.000048 +1.794806,-0.024785,-1.321081,-1.299938,-1.156415,0.000048 +1.798351,-0.024785,-1.321081,-1.299938,-1.149325,0.000048 +1.801571,-0.024785,-1.321081,-1.299938,-1.142883,0.000048 +1.804463,-0.024785,-1.321081,-1.299938,-1.137099,0.000048 +1.807023,-0.024785,-1.321081,-1.299938,-1.131981,0.000048 +1.809246,-0.024785,-1.321081,-1.299938,-1.127535,0.000048 +1.811129,-0.024785,-1.321081,-1.299938,-1.123767,0.000048 +1.812671,-0.024785,-1.321081,-1.299938,-1.120684,0.000048 +1.813869,-0.024785,-1.321081,-1.299938,-1.118289,0.000048 +1.814721,-0.024785,-1.321081,-1.299938,-1.116585,0.000048 +1.815225,-0.024785,-1.321081,-1.299938,-1.115575,0.000048 +1.815383,-0.024785,-1.321081,-1.299938,-1.115261,0.000048 +1.815192,-0.024785,-1.321081,-1.299938,-1.115642,0.000048 +1.814654,-0.024785,-1.321081,-1.299938,-1.116719,0.000048 +1.813768,-0.024785,-1.321081,-1.299938,-1.118489,0.000048 +1.812537,-0.024785,-1.321081,-1.299938,-1.120951,0.000048 +1.810963,-0.024785,-1.321081,-1.299938,-1.124101,0.000048 +1.809046,-0.024785,-1.321081,-1.299938,-1.127934,0.000048 +1.806791,-0.024785,-1.321081,-1.299938,-1.132445,0.000048 +1.804199,-0.024785,-1.321081,-1.299938,-1.137628,0.000048 +1.801275,-0.024785,-1.321081,-1.299938,-1.143476,0.000048 +1.798023,-0.024785,-1.321081,-1.299938,-1.149980,0.000048 +1.794447,-0.024785,-1.321081,-1.299938,-1.157132,0.000048 +1.790552,-0.024785,-1.321081,-1.299938,-1.164921,0.000048 +1.786344,-0.024785,-1.321081,-1.299938,-1.173337,0.000048 +1.781829,-0.024785,-1.321081,-1.299938,-1.182368,0.000048 +1.777012,-0.024785,-1.321081,-1.299938,-1.192001,0.000048 +1.771901,-0.024785,-1.321081,-1.299938,-1.202224,0.000048 +1.766503,-0.024785,-1.321081,-1.299938,-1.213021,0.000048 +1.760824,-0.024785,-1.321081,-1.299938,-1.224378,0.000048 +1.754874,-0.024785,-1.321081,-1.299938,-1.236278,0.000048 +1.748660,-0.024785,-1.321081,-1.299938,-1.248707,0.000048 +1.742191,-0.024785,-1.321081,-1.299938,-1.261645,0.000048 +1.735475,-0.024785,-1.321081,-1.299938,-1.275075,0.000048 +1.728524,-0.024785,-1.321081,-1.299938,-1.288979,0.000048 +1.721345,-0.024785,-1.321081,-1.299938,-1.303337,0.000048 +1.713949,-0.024785,-1.321081,-1.299938,-1.318128,0.000048 +1.706346,-0.024785,-1.321081,-1.299938,-1.333334,0.000048 +1.698547,-0.024785,-1.321081,-1.299938,-1.348931,0.000048 +1.690563,-0.024785,-1.321081,-1.299938,-1.364900,0.000048 +1.682405,-0.024785,-1.321081,-1.299938,-1.381216,0.000048 +1.674084,-0.024785,-1.321081,-1.299938,-1.397859,0.000048 +1.665611,-0.024785,-1.321081,-1.299938,-1.414803,0.000048 +1.656999,-0.024785,-1.321081,-1.299938,-1.432027,0.000048 +1.648260,-0.024785,-1.321081,-1.299938,-1.449506,0.000048 +1.639405,-0.024785,-1.321081,-1.299938,-1.467216,0.000048 +1.630447,-0.024785,-1.321081,-1.299938,-1.485131,0.000048 +1.621399,-0.024785,-1.321081,-1.299938,-1.503228,0.000048 +1.612273,-0.024785,-1.321081,-1.299938,-1.521480,0.000048 +1.603082,-0.024785,-1.321081,-1.299938,-1.539863,0.000048 +1.593838,-0.024785,-1.321081,-1.299938,-1.558351,0.000048 +1.584554,-0.024785,-1.321081,-1.299938,-1.576918,0.000048 +1.575244,-0.024785,-1.321081,-1.299938,-1.595538,0.000048 +1.565920,-0.024785,-1.321081,-1.299938,-1.614186,0.000048 +1.556595,-0.024785,-1.321081,-1.299938,-1.632836,0.000048 +1.547283,-0.024785,-1.321081,-1.299938,-1.651460,0.000048 +1.537995,-0.024785,-1.321081,-1.299938,-1.670035,0.000048 +1.528746,-0.024785,-1.321081,-1.299938,-1.688533,0.000048 +1.519548,-0.024785,-1.321081,-1.299938,-1.706930,0.000048 +1.510414,-0.024785,-1.321081,-1.299938,-1.725198,0.000048 +1.501356,-0.024785,-1.321081,-1.299938,-1.743314,0.000048 +1.492387,-0.024785,-1.321081,-1.299938,-1.761252,0.000048 +1.483520,-0.024785,-1.321081,-1.299938,-1.778986,0.000048 +1.474767,-0.024785,-1.321081,-1.299938,-1.796493,0.000048 +1.466139,-0.024785,-1.321081,-1.299938,-1.813747,0.000048 +1.457650,-0.024785,-1.321081,-1.299938,-1.830725,0.000048 +1.449311,-0.024785,-1.321081,-1.299938,-1.847404,0.000048 +1.441133,-0.024785,-1.321081,-1.299938,-1.863759,0.000048 +1.433129,-0.024785,-1.321081,-1.299938,-1.879769,0.000048 +1.425308,-0.024785,-1.321081,-1.299938,-1.895410,0.000048 +1.417682,-0.024785,-1.321081,-1.299938,-1.910662,0.000048 +1.410262,-0.024785,-1.321081,-1.299938,-1.925502,0.000048 +1.403058,-0.024785,-1.321081,-1.299938,-1.939911,0.000048 +1.396079,-0.024785,-1.321081,-1.299938,-1.953868,0.000048 +1.389336,-0.024785,-1.321081,-1.299938,-1.967354,0.000048 +1.382838,-0.024785,-1.321081,-1.299938,-1.980350,0.000048 +1.376594,-0.024785,-1.321081,-1.299938,-1.992837,0.000048 +1.370613,-0.024785,-1.321081,-1.299938,-2.004800,0.000048 +1.364903,-0.024785,-1.321081,-1.299938,-2.016220,0.000048 +1.359472,-0.024785,-1.321081,-1.299938,-2.027082,0.000048 +1.354327,-0.024785,-1.321081,-1.299938,-2.037371,0.000048 +1.349476,-0.024785,-1.321081,-1.299938,-2.047073,0.000048 +1.344926,-0.024785,-1.321081,-1.299938,-2.056174,0.000048 +1.340682,-0.024785,-1.321081,-1.299938,-2.064662,0.000048 +1.336751,-0.024785,-1.321081,-1.299938,-2.072524,0.000048 +1.333138,-0.024785,-1.321081,-1.299938,-2.079749,0.000048 +1.329849,-0.024785,-1.321081,-1.299938,-2.086329,0.000048 +1.326887,-0.024785,-1.321081,-1.299938,-2.092252,0.000048 +1.324257,-0.024785,-1.321081,-1.299938,-2.097512,0.000048 +1.321962,-0.024785,-1.321081,-1.299938,-2.102101,0.000048 +1.320007,-0.024785,-1.321081,-1.299938,-2.106013,0.000048 +1.318392,-0.024785,-1.321081,-1.299938,-2.109241,0.000048 +1.317122,-0.024785,-1.321081,-1.299938,-2.111782,0.000048 +1.316197,-0.024785,-1.321081,-1.299938,-2.113633,0.000048 +1.315618,-0.024785,-1.321081,-1.299938,-2.114789,0.000048 +1.315388,-0.024785,-1.321081,-1.299938,-2.115251,0.000048 +1.315505,-0.024785,-1.321081,-1.299938,-2.115016,0.000048 +1.315970,-0.024785,-1.321081,-1.299938,-2.114087,0.000048 +1.316782,-0.024785,-1.321081,-1.299938,-2.112463,0.000048 +1.317939,-0.024785,-1.321081,-1.299938,-2.110147,0.000048 +1.319442,-0.024785,-1.321081,-1.299938,-2.107143,0.000048 +1.321286,-0.024785,-1.321081,-1.299938,-2.103454,0.000048 +1.323470,-0.024785,-1.321081,-1.299938,-2.099085,0.000048 +1.325991,-0.024785,-1.321081,-1.299938,-2.094044,0.000048 +1.328845,-0.024785,-1.321081,-1.299938,-2.088336,0.000048 +1.332028,-0.024785,-1.321081,-1.299938,-2.081970,0.000048 +1.335536,-0.024785,-1.321081,-1.299938,-2.074954,0.000048 +1.339363,-0.024785,-1.321081,-1.299938,-2.067299,0.000048 +1.343506,-0.024785,-1.321081,-1.299938,-2.059015,0.000048 +1.347957,-0.024785,-1.321081,-1.299938,-2.050113,0.000048 +1.352710,-0.024785,-1.321081,-1.299938,-2.040606,0.000048 +1.357760,-0.024785,-1.321081,-1.299938,-2.030507,0.000048 +1.363098,-0.024785,-1.321081,-1.299938,-2.019830,0.000048 +1.368718,-0.024785,-1.321081,-1.299938,-2.008590,0.000048 +1.374611,-0.024785,-1.321081,-1.299938,-1.996803,0.000048 +1.380770,-0.024785,-1.321081,-1.299938,-1.984485,0.000048 +1.387186,-0.024785,-1.321081,-1.299938,-1.971653,0.000048 +1.393850,-0.024785,-1.321081,-1.299938,-1.958326,0.000048 +1.400753,-0.024785,-1.321081,-1.299938,-1.944521,0.000048 +1.407884,-0.024785,-1.321081,-1.299938,-1.930257,0.000048 +1.415235,-0.024785,-1.321081,-1.299938,-1.915555,0.000048 +1.422795,-0.024785,-1.321081,-1.299938,-1.900436,0.000048 +1.430553,-0.024785,-1.321081,-1.299938,-1.884919,0.000048 +1.438499,-0.024785,-1.321081,-1.299938,-1.869028,0.000048 +1.446622,-0.024785,-1.321081,-1.299938,-1.852783,0.000048 +1.454909,-0.024785,-1.321081,-1.299938,-1.836207,0.000048 +1.463351,-0.024785,-1.321081,-1.299938,-1.819325,0.000048 +1.471934,-0.024785,-1.321081,-1.299938,-1.802158,0.000048 +1.480648,-0.024785,-1.321081,-1.299938,-1.784731,0.000048 +1.489479,-0.024785,-1.321081,-1.299938,-1.767068,0.000048 +1.498416,-0.024785,-1.321081,-1.299938,-1.749194,0.000048 +1.507446,-0.024785,-1.321081,-1.299938,-1.731134,0.000048 +1.516540,-0.024785,-1.321080,-1.299940,-1.712950,0.000048 +1.525700,-0.024785,-1.321080,-1.299940,-1.694610,0.000048 +1.534920,-0.024785,-1.321080,-1.299940,-1.676140,0.000048 +1.544190,-0.024785,-1.321080,-1.299940,-1.657550,0.000048 +1.553500,-0.024785,-1.321080,-1.299940,-1.638850,0.000048 +1.562830,-0.024785,-1.321080,-1.299940,-1.620060,0.000048 +1.572180,-0.024785,-1.321080,-1.299940,-1.601180,0.000048 +1.581530,-0.024785,-1.321080,-1.299940,-1.582230,0.000048 +1.590870,-0.024785,-1.321080,-1.299940,-1.563220,0.000048 +1.600200,-0.024785,-1.321080,-1.299940,-1.544170,0.000048 +1.609500,-0.024785,-1.321080,-1.299940,-1.525090,0.000048 +1.618770,-0.024785,-1.321080,-1.299940,-1.506000,0.000048 +1.627980,-0.024785,-1.321080,-1.299940,-1.486890,0.000048 +1.637130,-0.024785,-1.321080,-1.299940,-1.467800,0.000048 +1.646210,-0.024785,-1.321080,-1.299940,-1.448720,0.000048 +1.655210,-0.024785,-1.321080,-1.299940,-1.429680,0.000048 +1.664130,-0.024785,-1.321080,-1.299940,-1.410690,0.000048 +1.672960,-0.024785,-1.321080,-1.299940,-1.391750,0.000048 +1.681700,-0.024785,-1.321080,-1.299940,-1.372890,0.000048 +1.690360,-0.024785,-1.321080,-1.299940,-1.354110,0.000048 +1.698940,-0.024785,-1.321080,-1.299940,-1.335430,0.000048 +1.707430,-0.024785,-1.321080,-1.299940,-1.316870,0.000048 +1.715840,-0.024785,-1.321080,-1.299940,-1.298430,0.000048 +1.724160,-0.024785,-1.321080,-1.299940,-1.280120,0.000048 +1.732390,-0.024785,-1.321080,-1.299940,-1.261970,0.000048 +1.740550,-0.024785,-1.321080,-1.299940,-1.243980,0.000048 +1.748610,-0.024785,-1.321080,-1.299940,-1.226160,0.000048 +1.756600,-0.024785,-1.321080,-1.299940,-1.208540,0.000048 +1.764490,-0.024785,-1.321080,-1.299940,-1.191120,0.000048 +1.772300,-0.024785,-1.321080,-1.299940,-1.173900,0.000048 +1.780030,-0.024785,-1.321080,-1.299940,-1.156890,0.000048 +1.787670,-0.024785,-1.321080,-1.299940,-1.140070,0.000048 +1.795230,-0.024785,-1.321080,-1.299940,-1.123420,0.000048 +1.802710,-0.024785,-1.321080,-1.299940,-1.106930,0.000048 +1.810090,-0.024785,-1.321080,-1.299940,-1.090600,0.000048 +1.817400,-0.024785,-1.321080,-1.299940,-1.074400,0.000048 +1.824610,-0.024785,-1.321080,-1.299940,-1.058320,0.000048 +1.831750,-0.024785,-1.321080,-1.299940,-1.042350,0.000048 +1.838800,-0.024785,-1.321080,-1.299940,-1.026480,0.000048 +1.845760,-0.024785,-1.321080,-1.299940,-1.010690,0.000048 +1.852640,-0.024785,-1.321080,-1.299940,-0.994978,0.000048 +1.859430,-0.024785,-1.321080,-1.299940,-0.979321,0.000048 +1.866140,-0.024785,-1.321080,-1.299940,-0.963710,0.000048 +1.872770,-0.024785,-1.321080,-1.299940,-0.948131,0.000048 +1.879310,-0.024785,-1.321080,-1.299940,-0.932571,0.000048 +1.885760,-0.024785,-1.321080,-1.299940,-0.917019,0.000048 +1.892130,-0.024785,-1.321080,-1.299940,-0.901473,0.000048 +1.898420,-0.024785,-1.321080,-1.299940,-0.885947,0.000048 +1.904620,-0.024785,-1.321080,-1.299940,-0.870453,0.000048 +1.910730,-0.024785,-1.321080,-1.299940,-0.855005,0.000048 +1.916760,-0.024785,-1.321080,-1.299940,-0.839615,0.000048 +1.922710,-0.024785,-1.321080,-1.299940,-0.824296,0.000048 +1.928570,-0.024785,-1.321080,-1.299940,-0.809062,0.000048 +1.934350,-0.024785,-1.321080,-1.299940,-0.793924,0.000048 +1.940040,-0.024785,-1.321080,-1.299940,-0.778897,0.000048 +1.945640,-0.024785,-1.321080,-1.299940,-0.763993,0.000048 +1.951170,-0.024785,-1.321080,-1.299940,-0.749225,0.000048 +1.956600,-0.024785,-1.321080,-1.299940,-0.734606,0.000048 +1.961950,-0.024785,-1.321080,-1.299940,-0.720149,0.000048 +1.967220,-0.024785,-1.321080,-1.299940,-0.705867,0.000048 +1.972400,-0.024785,-1.321080,-1.299940,-0.691772,0.000048 +1.977500,-0.024785,-1.321080,-1.299940,-0.677879,0.000048 +1.982510,-0.024785,-1.321080,-1.299940,-0.664199,0.000048 +1.987440,-0.024785,-1.321080,-1.299940,-0.650747,0.000048 +1.992280,-0.024785,-1.321080,-1.299940,-0.637534,0.000048 +1.997040,-0.024785,-1.321080,-1.299940,-0.624573,0.000048 +2.001710,-0.024785,-1.321080,-1.299940,-0.611871,0.000048 +2.006300,-0.024785,-1.321080,-1.299940,-0.599429,0.000048 +2.010810,-0.024785,-1.321080,-1.299940,-0.587245,0.000048 +2.015220,-0.024785,-1.321080,-1.299940,-0.575321,0.000048 +2.019560,-0.024785,-1.321080,-1.299940,-0.563656,0.000048 +2.023810,-0.024785,-1.321080,-1.299940,-0.552251,0.000048 +2.027970,-0.024785,-1.321080,-1.299940,-0.541104,0.000048 +2.032050,-0.024785,-1.321080,-1.299940,-0.530217,0.000048 +2.036050,-0.024785,-1.321080,-1.299940,-0.519589,0.000048 +2.039950,-0.024785,-1.321080,-1.299940,-0.509220,0.000048 +2.043780,-0.024785,-1.321080,-1.299940,-0.499111,0.000048 +2.047520,-0.024785,-1.321080,-1.299940,-0.489260,0.000048 +2.051170,-0.024785,-1.321080,-1.299940,-0.479669,0.000048 +2.054740,-0.024785,-1.321080,-1.299940,-0.470337,0.000048 +2.058230,-0.024785,-1.321080,-1.299940,-0.461264,0.000048 +2.061630,-0.024785,-1.321080,-1.299940,-0.452451,0.000048 +2.064950,-0.024785,-1.321080,-1.299940,-0.443896,0.000048 +2.068180,-0.024785,-1.321080,-1.299940,-0.435601,0.000048 +2.071320,-0.024785,-1.321080,-1.299940,-0.427565,0.000048 +2.074380,-0.024785,-1.321080,-1.299940,-0.419788,0.000048 +2.077360,-0.024785,-1.321080,-1.299940,-0.412271,0.000048 +2.080250,-0.024785,-1.321080,-1.299940,-0.405013,0.000048 +2.083060,-0.024785,-1.321080,-1.299940,-0.398013,0.000048 +2.085780,-0.024785,-1.321080,-1.299940,-0.391273,0.000048 +2.088420,-0.024785,-1.321080,-1.299940,-0.384793,0.000048 +2.090970,-0.024785,-1.321080,-1.299940,-0.378571,0.000048 +2.093440,-0.024785,-1.321080,-1.299940,-0.372609,0.000048 +2.095820,-0.024785,-1.321080,-1.299940,-0.366906,0.000048 +2.098120,-0.024785,-1.321080,-1.299940,-0.361462,0.000048 +2.100330,-0.024785,-1.321080,-1.299940,-0.356277,0.000048 +2.102460,-0.024785,-1.321080,-1.299940,-0.351352,0.000048 +2.104500,-0.024785,-1.321080,-1.299940,-0.346686,0.000048 +2.106460,-0.024785,-1.321080,-1.299940,-0.342278,0.000048 +2.108330,-0.024785,-1.321080,-1.299940,-0.338131,0.000048 +2.110120,-0.024785,-1.321080,-1.299940,-0.334242,0.000048 +2.111820,-0.024785,-1.321080,-1.299940,-0.330613,0.000048 +2.113440,-0.024785,-1.321080,-1.299940,-0.327242,0.000048 +2.114980,-0.024785,-1.321080,-1.299940,-0.324131,0.000048 +2.116430,-0.024785,-1.321080,-1.299940,-0.321279,0.000048 +2.117790,-0.024785,-1.321080,-1.299940,-0.318687,0.000048 +2.119070,-0.024785,-1.321080,-1.299940,-0.316346,0.000048 +2.120260,-0.024785,-1.321080,-1.299940,-0.314246,0.000048 +2.121370,-0.024785,-1.321080,-1.299940,-0.312372,0.000048 +2.122400,-0.024785,-1.321080,-1.299940,-0.310712,0.000048 +2.123340,-0.024785,-1.321080,-1.299940,-0.309253,0.000048 +2.124190,-0.024785,-1.321080,-1.299940,-0.307982,0.000048 +2.124960,-0.024785,-1.321080,-1.299940,-0.306886,0.000048 +2.125650,-0.024785,-1.321080,-1.299940,-0.305952,0.000048 +2.126250,-0.024785,-1.321080,-1.299940,-0.305167,0.000048 +2.126770,-0.024785,-1.321080,-1.299940,-0.304518,0.000048 +2.127200,-0.024785,-1.321080,-1.299940,-0.303992,0.000048 +2.127540,-0.024785,-1.321080,-1.299940,-0.303577,0.000048 +2.127810,-0.024785,-1.321080,-1.299940,-0.303259,0.000048 +2.128010,-0.024785,-1.321080,-1.299940,-0.303025,0.000048 +2.128140,-0.024785,-1.321080,-1.299940,-0.302862,0.000048 +2.128230,-0.024785,-1.321080,-1.299940,-0.302758,0.000048 +2.128280,-0.024785,-1.321080,-1.299940,-0.302699,0.000048 +2.128300,-0.024785,-1.321080,-1.299940,-0.302672,0.000048 +2.128310,-0.024785,-1.321080,-1.299940,-0.302665,0.000048 +2.128310,-0.024785,-1.321080,-1.299940,-0.302665,0.000048 +2.128310,-0.024784,-1.321080,-1.299940,-0.302664,0.000048 +2.128300,-0.024779,-1.321070,-1.299950,-0.302658,0.000048 +2.128290,-0.024765,-1.321060,-1.299960,-0.302642,0.000048 +2.128260,-0.024739,-1.321030,-1.300000,-0.302610,0.000048 +2.128220,-0.024695,-1.320990,-1.300050,-0.302557,0.000048 +2.128150,-0.024629,-1.320920,-1.300130,-0.302478,0.000048 +2.128060,-0.024538,-1.320830,-1.300240,-0.302369,0.000048 +2.127940,-0.024416,-1.320710,-1.300380,-0.302223,0.000048 +2.127780,-0.024259,-1.320560,-1.300570,-0.302035,0.000048 +2.127590,-0.024064,-1.320370,-1.300800,-0.301801,0.000048 +2.127350,-0.023825,-1.320160,-1.301090,-0.301515,0.000048 +2.127060,-0.023539,-1.319920,-1.301430,-0.301177,0.000048 +2.126730,-0.023200,-1.319670,-1.301840,-0.300793,0.000048 +2.126330,-0.022806,-1.319400,-1.302310,-0.300366,0.000048 +2.125880,-0.022351,-1.319120,-1.302860,-0.299903,0.000048 +2.125360,-0.021831,-1.318840,-1.303480,-0.299409,0.000048 +2.124770,-0.021242,-1.318560,-1.304180,-0.298888,0.000048 +2.124100,-0.020579,-1.318270,-1.304970,-0.298346,0.000048 +2.123360,-0.019838,-1.317990,-1.305840,-0.297789,0.000048 +2.122540,-0.019015,-1.317710,-1.306790,-0.297221,0.000048 +2.121630,-0.018107,-1.317420,-1.307800,-0.296647,0.000048 +2.120630,-0.017116,-1.317140,-1.308870,-0.296072,0.000048 +2.119540,-0.016047,-1.316860,-1.310000,-0.295497,0.000048 +2.118340,-0.014904,-1.316580,-1.311190,-0.294922,0.000048 +2.117040,-0.013691,-1.316290,-1.312420,-0.294348,0.000048 +2.115630,-0.012413,-1.316010,-1.313700,-0.293773,0.000048 +2.114110,-0.011074,-1.315730,-1.315010,-0.293198,0.000048 +2.112480,-0.009678,-1.315440,-1.316360,-0.292623,0.000048 +2.110720,-0.008230,-1.315160,-1.317730,-0.292048,0.000048 +2.108840,-0.006734,-1.314880,-1.319120,-0.291474,0.000048 +2.106820,-0.005194,-1.314590,-1.320540,-0.290899,0.000048 +2.104680,-0.003615,-1.314310,-1.321960,-0.290324,0.000048 +2.102390,-0.002001,-1.314030,-1.323390,-0.289749,0.000048 +2.099960,-0.000356,-1.313740,-1.324820,-0.289175,0.000048 +2.097390,0.001316,-1.313460,-1.326250,-0.288600,0.000048 +2.094670,0.003009,-1.313180,-1.327680,-0.288025,0.000048 +2.091820,0.004720,-1.312900,-1.329110,-0.287450,0.000048 +2.088830,0.006444,-1.312610,-1.330540,-0.286875,0.000048 +2.085710,0.008178,-1.312330,-1.331970,-0.286301,0.000048 +2.082470,0.009916,-1.312050,-1.333410,-0.285726,0.000048 +2.079100,0.011656,-1.311760,-1.334840,-0.285151,0.000048 +2.075620,0.013395,-1.311480,-1.336270,-0.284576,0.000048 +2.072020,0.015134,-1.311200,-1.337700,-0.284001,0.000048 +2.068320,0.016873,-1.310910,-1.339130,-0.283427,0.000048 +2.064510,0.018613,-1.310630,-1.340560,-0.282852,0.000048 +2.060610,0.020352,-1.310350,-1.341990,-0.282277,0.000048 +2.056610,0.022091,-1.310060,-1.343420,-0.281702,0.000048 +2.052520,0.023830,-1.309780,-1.344850,-0.281127,0.000048 +2.048340,0.025570,-1.309500,-1.346280,-0.280553,0.000048 +2.044080,0.027309,-1.309220,-1.347720,-0.279978,0.000048 +2.039740,0.029048,-1.308930,-1.349150,-0.279403,0.000048 +2.035330,0.030787,-1.308650,-1.350580,-0.278828,0.000048 +2.030850,0.032527,-1.308370,-1.352010,-0.278253,0.000048 +2.026300,0.034266,-1.308080,-1.353440,-0.277679,0.000048 +2.021700,0.036005,-1.307800,-1.354870,-0.277104,0.000048 +2.017030,0.037745,-1.307520,-1.356300,-0.276529,0.000048 +2.012320,0.039484,-1.307230,-1.357730,-0.275954,0.000048 +2.007560,0.041223,-1.306950,-1.359160,-0.275380,0.000048 +2.002750,0.042962,-1.306670,-1.360590,-0.274805,0.000048 +1.997910,0.044701,-1.306380,-1.362030,-0.274230,0.000048 +1.993030,0.046441,-1.306100,-1.363460,-0.273655,0.000048 +1.988120,0.048180,-1.305820,-1.364890,-0.273080,0.000048 +1.983190,0.049919,-1.305540,-1.366320,-0.272506,0.000048 +1.978230,0.051659,-1.305250,-1.367750,-0.271931,0.000048 +1.973260,0.053398,-1.304970,-1.369180,-0.271356,0.000048 +1.968280,0.055137,-1.304690,-1.370610,-0.270781,0.000048 +1.963280,0.056876,-1.304400,-1.372040,-0.270206,0.000048 +1.958280,0.058616,-1.304120,-1.373470,-0.269632,0.000048 +1.953280,0.060355,-1.303840,-1.374900,-0.269057,0.000048 +1.948280,0.062094,-1.303550,-1.376340,-0.268482,0.000048 +1.943280,0.063833,-1.303270,-1.377770,-0.267907,0.000048 +1.938280,0.065573,-1.302990,-1.379200,-0.267332,0.000048 +1.933290,0.067312,-1.302700,-1.380630,-0.266758,0.000048 +1.928290,0.069051,-1.302420,-1.382060,-0.266183,0.000048 +1.923290,0.070790,-1.302140,-1.383490,-0.265608,0.000048 +1.918290,0.072530,-1.301860,-1.384920,-0.265033,0.000048 +1.913290,0.074269,-1.301570,-1.386350,-0.264459,0.000048 +1.908290,0.076008,-1.301290,-1.387780,-0.263884,0.000048 +1.903290,0.077747,-1.301010,-1.389210,-0.263309,0.000048 +1.898290,0.079487,-1.300720,-1.390650,-0.262734,0.000048 +1.893290,0.081226,-1.300440,-1.392080,-0.262159,0.000048 +1.888290,0.082965,-1.300160,-1.393510,-0.261585,0.000048 +1.883290,0.084704,-1.299870,-1.394940,-0.261010,0.000048 +1.878290,0.086444,-1.299590,-1.396370,-0.260435,0.000048 +1.873290,0.088183,-1.299310,-1.397800,-0.259860,0.000048 +1.868290,0.089922,-1.299020,-1.399230,-0.259285,0.000048 +1.863290,0.091661,-1.298740,-1.400660,-0.258711,0.000048 +1.858300,0.093401,-1.298460,-1.402090,-0.258136,0.000048 +1.853300,0.095140,-1.298180,-1.403530,-0.257561,0.000048 +1.848300,0.096879,-1.297890,-1.404960,-0.256986,0.000048 +1.843300,0.098618,-1.297610,-1.406390,-0.256411,0.000048 +1.838300,0.100358,-1.297330,-1.407820,-0.255837,0.000048 +1.833300,0.102097,-1.297040,-1.409250,-0.255262,0.000048 +1.828300,0.103836,-1.296760,-1.410680,-0.254687,0.000048 +1.823300,0.105576,-1.296480,-1.412110,-0.254112,0.000048 +1.818300,0.107315,-1.296190,-1.413540,-0.253538,0.000048 +1.813300,0.109054,-1.295910,-1.414970,-0.252963,0.000048 +1.808300,0.110793,-1.295630,-1.416400,-0.252388,0.000048 +1.803300,0.112533,-1.295340,-1.417840,-0.251813,0.000048 +1.798300,0.114272,-1.295060,-1.419270,-0.251238,0.000048 +1.793300,0.116011,-1.294780,-1.420700,-0.250664,0.000048 +1.788300,0.117750,-1.294500,-1.422130,-0.250089,0.000048 +1.783310,0.119490,-1.294210,-1.423560,-0.249514,0.000048 +1.778310,0.121229,-1.293930,-1.424990,-0.248939,0.000048 +1.773310,0.122968,-1.293650,-1.426420,-0.248364,0.000048 +1.768310,0.124707,-1.293360,-1.427850,-0.247790,0.000048 +1.763310,0.126447,-1.293080,-1.429280,-0.247215,0.000048 +1.758310,0.128186,-1.292800,-1.430710,-0.246640,0.000048 +1.753310,0.129925,-1.292510,-1.432150,-0.246065,0.000048 +1.748310,0.131664,-1.292230,-1.433580,-0.245490,0.000048 +1.743310,0.133404,-1.291950,-1.435010,-0.244916,0.000048 +1.738310,0.135143,-1.291660,-1.436440,-0.244341,0.000048 +1.733310,0.136882,-1.291380,-1.437870,-0.243766,0.000048 +1.728310,0.138621,-1.291100,-1.439300,-0.243191,0.000048 +1.723310,0.140361,-1.290820,-1.440730,-0.242617,0.000048 +1.718310,0.142100,-1.290530,-1.442160,-0.242042,0.000048 +1.713310,0.143839,-1.290250,-1.443590,-0.241467,0.000048 +1.708320,0.145578,-1.289970,-1.445020,-0.240892,0.000048 +1.703320,0.147318,-1.289680,-1.446460,-0.240317,0.000048 +1.698320,0.149057,-1.289400,-1.447890,-0.239743,0.000048 +1.693320,0.150796,-1.289120,-1.449320,-0.239168,0.000048 +1.688320,0.152535,-1.288830,-1.450750,-0.238593,0.000048 +1.683320,0.154275,-1.288550,-1.452180,-0.238018,0.000048 +1.678320,0.156014,-1.288270,-1.453610,-0.237443,0.000048 +1.673320,0.157753,-1.287980,-1.455040,-0.236869,0.000048 +1.668320,0.159493,-1.287700,-1.456470,-0.236294,0.000048 +1.663320,0.161232,-1.287420,-1.457900,-0.235719,0.000048 +1.658320,0.162971,-1.287140,-1.459330,-0.235144,0.000048 +1.653320,0.164710,-1.286850,-1.460770,-0.234569,0.000048 +1.648320,0.166450,-1.286570,-1.462200,-0.233995,0.000048 +1.643320,0.168189,-1.286290,-1.463630,-0.233420,0.000048 +1.638320,0.169928,-1.286000,-1.465060,-0.232845,0.000048 +1.633330,0.171667,-1.285720,-1.466490,-0.232270,0.000048 +1.628330,0.173407,-1.285440,-1.467920,-0.231696,0.000048 +1.623330,0.175146,-1.285150,-1.469350,-0.231121,0.000048 +1.618330,0.176885,-1.284870,-1.470780,-0.230546,0.000048 +1.613330,0.178624,-1.284590,-1.472210,-0.229971,0.000048 +1.608330,0.180364,-1.284300,-1.473650,-0.229396,0.000048 +1.603330,0.182103,-1.284020,-1.475080,-0.228822,0.000048 +1.598330,0.183842,-1.283740,-1.476510,-0.228247,0.000048 +1.593330,0.185581,-1.283460,-1.477940,-0.227672,0.000048 +1.588330,0.187321,-1.283170,-1.479370,-0.227097,0.000048 +1.583330,0.189060,-1.282890,-1.480800,-0.226522,0.000048 +1.578330,0.190799,-1.282610,-1.482230,-0.225948,0.000048 +1.573330,0.192538,-1.282320,-1.483660,-0.225373,0.000048 +1.568330,0.194278,-1.282040,-1.485090,-0.224798,0.000048 +1.563330,0.196017,-1.281760,-1.486520,-0.224223,0.000048 +1.558340,0.197756,-1.281470,-1.487960,-0.223648,0.000048 +1.553340,0.199495,-1.281190,-1.489390,-0.223074,0.000048 +1.548340,0.201235,-1.280910,-1.490820,-0.222499,0.000048 +1.543340,0.202974,-1.280620,-1.492250,-0.221924,0.000048 +1.538340,0.204713,-1.280340,-1.493680,-0.221349,0.000048 +1.533340,0.206452,-1.280060,-1.495110,-0.220775,0.000048 +1.528340,0.208192,-1.279780,-1.496540,-0.220200,0.000048 +1.523340,0.209931,-1.279490,-1.497970,-0.219625,0.000048 +1.518340,0.211670,-1.279210,-1.499400,-0.219050,0.000048 +1.513340,0.213410,-1.278930,-1.500830,-0.218475,0.000048 +1.508340,0.215149,-1.278640,-1.502270,-0.217901,0.000048 +1.503340,0.216888,-1.278360,-1.503700,-0.217326,0.000048 +1.498340,0.218627,-1.278080,-1.505130,-0.216751,0.000048 +1.493340,0.220367,-1.277790,-1.506560,-0.216176,0.000048 +1.488340,0.222106,-1.277510,-1.507990,-0.215601,0.000048 +1.483350,0.223845,-1.277230,-1.509420,-0.215027,0.000048 +1.478350,0.225584,-1.276940,-1.510850,-0.214452,0.000048 +1.473350,0.227324,-1.276660,-1.512280,-0.213877,0.000048 +1.468350,0.229063,-1.276380,-1.513710,-0.213302,0.000048 +1.463350,0.230802,-1.276100,-1.515140,-0.212727,0.000048 +1.458350,0.232541,-1.275810,-1.516580,-0.212153,0.000048 +1.453350,0.234281,-1.275530,-1.518010,-0.211578,0.000048 +1.448350,0.236020,-1.275250,-1.519440,-0.211003,0.000048 +1.443350,0.237759,-1.274960,-1.520870,-0.210428,0.000048 +1.438350,0.239498,-1.274680,-1.522300,-0.209854,0.000048 +1.433350,0.241238,-1.274400,-1.523730,-0.209279,0.000048 +1.428350,0.242977,-1.274110,-1.525160,-0.208704,0.000048 +1.423350,0.244716,-1.273830,-1.526590,-0.208129,0.000048 +1.418350,0.246455,-1.273550,-1.528020,-0.207554,0.000048 +1.413350,0.248195,-1.273260,-1.529450,-0.206980,0.000048 +1.408360,0.249934,-1.272980,-1.530890,-0.206405,0.000048 +1.403360,0.251673,-1.272700,-1.532320,-0.205830,0.000048 +1.398360,0.253412,-1.272420,-1.533750,-0.205255,0.000048 +1.393360,0.255152,-1.272130,-1.535180,-0.204680,0.000048 +1.388360,0.256891,-1.271850,-1.536610,-0.204106,0.000048 +1.383360,0.258630,-1.271570,-1.538040,-0.203531,0.000048 +1.378360,0.260369,-1.271280,-1.539470,-0.202956,0.000048 +1.373360,0.262109,-1.271000,-1.540900,-0.202381,0.000048 +1.368360,0.263848,-1.270720,-1.542330,-0.201806,0.000048 +1.363360,0.265587,-1.270430,-1.543760,-0.201232,0.000048 +1.358360,0.267326,-1.270150,-1.545200,-0.200657,0.000048 +1.353360,0.269066,-1.269870,-1.546630,-0.200082,0.000048 +1.348360,0.270805,-1.269580,-1.548060,-0.199507,0.000048 +1.343360,0.272544,-1.269300,-1.549490,-0.198932,0.000048 +1.338360,0.274284,-1.269020,-1.550920,-0.198358,0.000048 +1.333370,0.276023,-1.268740,-1.552350,-0.197783,0.000048 +1.328370,0.277762,-1.268450,-1.553780,-0.197208,0.000048 +1.323370,0.279501,-1.268170,-1.555210,-0.196633,0.000048 +1.318370,0.281241,-1.267890,-1.556640,-0.196059,0.000048 +1.313370,0.282980,-1.267600,-1.558080,-0.195484,0.000048 +1.308370,0.284719,-1.267320,-1.559510,-0.194909,0.000048 +1.303370,0.286458,-1.267040,-1.560940,-0.194334,0.000048 +1.298370,0.288198,-1.266750,-1.562370,-0.193759,0.000048 +1.293370,0.289937,-1.266470,-1.563800,-0.193185,0.000048 +1.288370,0.291676,-1.266190,-1.565230,-0.192610,0.000048 +1.283370,0.293415,-1.265900,-1.566660,-0.192035,0.000048 +1.278370,0.295155,-1.265620,-1.568090,-0.191460,0.000048 +1.273370,0.296894,-1.265340,-1.569520,-0.190885,0.000048 +1.268370,0.298633,-1.265060,-1.570950,-0.190311,0.000048 +1.263370,0.300372,-1.264770,-1.572390,-0.189736,0.000048 +1.258380,0.302112,-1.264490,-1.573820,-0.189161,0.000048 +1.253380,0.303851,-1.264210,-1.575250,-0.188586,0.000048 +1.248380,0.305590,-1.263920,-1.576680,-0.188011,0.000048 +1.243380,0.307329,-1.263640,-1.578110,-0.187437,0.000048 +1.238380,0.309069,-1.263360,-1.579540,-0.186862,0.000048 +1.233380,0.310808,-1.263070,-1.580970,-0.186287,0.000048 +1.228380,0.312547,-1.262790,-1.582400,-0.185712,0.000048 +1.223380,0.314286,-1.262510,-1.583830,-0.185138,0.000048 +1.218380,0.316026,-1.262220,-1.585260,-0.184563,0.000048 +1.213380,0.317765,-1.261940,-1.586700,-0.183988,0.000048 +1.208380,0.319504,-1.261660,-1.588130,-0.183413,0.000048 +1.203380,0.321243,-1.261380,-1.589560,-0.182838,0.000048 +1.198380,0.322983,-1.261090,-1.590990,-0.182264,0.000048 +1.193380,0.324722,-1.260810,-1.592420,-0.181689,0.000048 +1.188380,0.326461,-1.260530,-1.593850,-0.181114,0.000048 +1.183390,0.328201,-1.260240,-1.595280,-0.180539,0.000048 +1.178390,0.329940,-1.259960,-1.596710,-0.179964,0.000048 +1.173390,0.331679,-1.259680,-1.598140,-0.179390,0.000048 +1.168390,0.333418,-1.259390,-1.599570,-0.178815,0.000048 +1.163390,0.335158,-1.259110,-1.601010,-0.178240,0.000048 +1.158390,0.336897,-1.258830,-1.602440,-0.177665,0.000048 +1.153390,0.338636,-1.258540,-1.603870,-0.177090,0.000048 +1.148390,0.340375,-1.258260,-1.605300,-0.176516,0.000048 +1.143390,0.342115,-1.257980,-1.606730,-0.175941,0.000048 +1.138390,0.343854,-1.257700,-1.608160,-0.175366,0.000048 +1.133390,0.345593,-1.257410,-1.609590,-0.174791,0.000048 +1.128390,0.347332,-1.257130,-1.611020,-0.174217,0.000048 +1.123390,0.349072,-1.256850,-1.612450,-0.173642,0.000048 +1.118390,0.350811,-1.256560,-1.613880,-0.173067,0.000048 +1.113400,0.352550,-1.256280,-1.615320,-0.172492,0.000048 +1.108400,0.354289,-1.256000,-1.616750,-0.171917,0.000048 +1.103400,0.356029,-1.255710,-1.618180,-0.171343,0.000048 +1.098400,0.357768,-1.255430,-1.619610,-0.170768,0.000048 +1.093400,0.359507,-1.255150,-1.621040,-0.170193,0.000048 +1.088400,0.361246,-1.254860,-1.622470,-0.169618,0.000048 +1.083400,0.362986,-1.254580,-1.623900,-0.169043,0.000048 +1.078400,0.364725,-1.254300,-1.625330,-0.168469,0.000048 +1.073400,0.366464,-1.254020,-1.626760,-0.167894,0.000048 +1.068400,0.368203,-1.253730,-1.628190,-0.167319,0.000048 +1.063400,0.369943,-1.253450,-1.629630,-0.166744,0.000048 +1.058400,0.371682,-1.253170,-1.631060,-0.166169,0.000048 +1.053400,0.373421,-1.252880,-1.632490,-0.165595,0.000048 +1.048400,0.375160,-1.252600,-1.633920,-0.165020,0.000048 +1.043400,0.376900,-1.252320,-1.635350,-0.164445,0.000048 +1.038410,0.378639,-1.252030,-1.636780,-0.163870,0.000048 +1.033410,0.380378,-1.251750,-1.638210,-0.163296,0.000048 +1.028410,0.382118,-1.251470,-1.639640,-0.162721,0.000048 +1.023410,0.383857,-1.251180,-1.641070,-0.162146,0.000048 +1.018410,0.385596,-1.250900,-1.642510,-0.161571,0.000048 +1.013410,0.387335,-1.250620,-1.643940,-0.160996,0.000048 +1.008410,0.389075,-1.250340,-1.645370,-0.160422,0.000048 +1.003410,0.390814,-1.250050,-1.646800,-0.159847,0.000048 +0.998410,0.392553,-1.249770,-1.648230,-0.159272,0.000048 +0.993411,0.394292,-1.249490,-1.649660,-0.158697,0.000048 +0.988412,0.396032,-1.249200,-1.651090,-0.158122,0.000048 +0.983412,0.397771,-1.248920,-1.652520,-0.157548,0.000048 +0.978413,0.399510,-1.248640,-1.653950,-0.156973,0.000048 +0.973414,0.401249,-1.248350,-1.655380,-0.156398,0.000048 +0.968414,0.402989,-1.248070,-1.656820,-0.155823,0.000048 +0.963415,0.404728,-1.247790,-1.658250,-0.155248,0.000048 +0.958416,0.406467,-1.247500,-1.659680,-0.154674,0.000048 +0.953416,0.408206,-1.247220,-1.661110,-0.154099,0.000048 +0.948417,0.409946,-1.246940,-1.662540,-0.153524,0.000048 +0.943418,0.411685,-1.246660,-1.663970,-0.152949,0.000048 +0.938418,0.413424,-1.246370,-1.665400,-0.152375,0.000048 +0.933419,0.415163,-1.246090,-1.666830,-0.151800,0.000048 +0.928420,0.416903,-1.245810,-1.668260,-0.151225,0.000048 +0.923420,0.418642,-1.245520,-1.669690,-0.150650,0.000048 +0.918421,0.420381,-1.245240,-1.671130,-0.150075,0.000048 +0.913422,0.422120,-1.244960,-1.672560,-0.149501,0.000048 +0.908422,0.423860,-1.244670,-1.673990,-0.148926,0.000048 +0.903423,0.425599,-1.244390,-1.675420,-0.148351,0.000048 +0.898424,0.427338,-1.244110,-1.676850,-0.147776,0.000048 +0.893424,0.429077,-1.243820,-1.678280,-0.147201,0.000048 +0.888425,0.430817,-1.243540,-1.679710,-0.146627,0.000048 +0.883426,0.432556,-1.243260,-1.681140,-0.146052,0.000048 +0.878426,0.434295,-1.242980,-1.682570,-0.145477,0.000048 +0.873427,0.436035,-1.242690,-1.684000,-0.144902,0.000048 +0.868428,0.437774,-1.242410,-1.685440,-0.144327,0.000048 +0.863428,0.439513,-1.242130,-1.686870,-0.143753,0.000048 +0.858429,0.441252,-1.241840,-1.688300,-0.143178,0.000048 +0.853430,0.442992,-1.241560,-1.689730,-0.142603,0.000048 +0.848430,0.444731,-1.241280,-1.691160,-0.142028,0.000048 +0.843431,0.446470,-1.240990,-1.692590,-0.141454,0.000048 +0.838432,0.448209,-1.240710,-1.694020,-0.140879,0.000048 +0.833432,0.449949,-1.240430,-1.695450,-0.140304,0.000048 +0.828433,0.451688,-1.240140,-1.696880,-0.139729,0.000048 +0.823434,0.453427,-1.239860,-1.698310,-0.139154,0.000048 +0.818434,0.455166,-1.239580,-1.699750,-0.138580,0.000048 +0.813435,0.456906,-1.239300,-1.701180,-0.138005,0.000048 +0.808436,0.458645,-1.239010,-1.702610,-0.137430,0.000048 +0.803436,0.460384,-1.238730,-1.704040,-0.136855,0.000048 +0.798437,0.462123,-1.238450,-1.705470,-0.136280,0.000048 +0.793438,0.463863,-1.238160,-1.706900,-0.135706,0.000048 +0.788438,0.465602,-1.237880,-1.708330,-0.135131,0.000048 +0.783439,0.467341,-1.237600,-1.709760,-0.134556,0.000048 +0.778440,0.469080,-1.237310,-1.711190,-0.133981,0.000048 +0.773440,0.470820,-1.237030,-1.712630,-0.133406,0.000048 +0.768441,0.472559,-1.236750,-1.714060,-0.132832,0.000048 +0.763442,0.474298,-1.236460,-1.715490,-0.132257,0.000048 +0.758442,0.476037,-1.236180,-1.716920,-0.131682,0.000048 +0.753443,0.477777,-1.235900,-1.718350,-0.131107,0.000048 +0.748444,0.479516,-1.235620,-1.719780,-0.130532,0.000048 +0.743444,0.481255,-1.235330,-1.721210,-0.129958,0.000048 +0.738445,0.482994,-1.235050,-1.722640,-0.129383,0.000048 +0.733446,0.484734,-1.234770,-1.724070,-0.128808,0.000048 +0.728446,0.486473,-1.234480,-1.725500,-0.128233,0.000048 +0.723447,0.488212,-1.234200,-1.726940,-0.127659,0.000048 +0.718448,0.489952,-1.233920,-1.728370,-0.127084,0.000048 +0.713448,0.491691,-1.233630,-1.729800,-0.126509,0.000048 +0.708449,0.493430,-1.233350,-1.731230,-0.125934,0.000048 +0.703450,0.495169,-1.233070,-1.732660,-0.125359,0.000048 +0.698450,0.496909,-1.232780,-1.734090,-0.124785,0.000048 +0.693451,0.498648,-1.232500,-1.735520,-0.124210,0.000048 +0.688452,0.500387,-1.232220,-1.736950,-0.123635,0.000048 +0.683452,0.502126,-1.231940,-1.738380,-0.123060,0.000048 +0.678453,0.503866,-1.231650,-1.739810,-0.122485,0.000048 +0.673454,0.505605,-1.231370,-1.741250,-0.121911,0.000048 +0.668455,0.507344,-1.231090,-1.742680,-0.121336,0.000048 +0.663455,0.509083,-1.230800,-1.744110,-0.120761,0.000048 +0.658456,0.510823,-1.230520,-1.745540,-0.120186,0.000048 +0.653457,0.512562,-1.230240,-1.746970,-0.119611,0.000048 +0.648457,0.514301,-1.229950,-1.748400,-0.119037,0.000048 +0.643458,0.516040,-1.229670,-1.749830,-0.118462,0.000048 +0.638459,0.517780,-1.229390,-1.751260,-0.117887,0.000048 +0.633459,0.519519,-1.229100,-1.752690,-0.117312,0.000048 +0.628460,0.521258,-1.228820,-1.754120,-0.116738,0.000048 +0.623461,0.522997,-1.228540,-1.755560,-0.116163,0.000048 +0.618461,0.524737,-1.228260,-1.756990,-0.115588,0.000048 +0.613462,0.526476,-1.227970,-1.758420,-0.115013,0.000048 +0.608463,0.528215,-1.227690,-1.759850,-0.114438,0.000048 +0.603463,0.529954,-1.227410,-1.761280,-0.113864,0.000048 +0.598464,0.531694,-1.227120,-1.762710,-0.113289,0.000048 +0.593465,0.533433,-1.226840,-1.764140,-0.112714,0.000048 +0.588465,0.535172,-1.226560,-1.765570,-0.112139,0.000048 +0.583466,0.536911,-1.226270,-1.767000,-0.111564,0.000048 +0.578467,0.538651,-1.225990,-1.768430,-0.110990,0.000048 +0.573467,0.540390,-1.225710,-1.769870,-0.110415,0.000048 +0.568468,0.542129,-1.225420,-1.771300,-0.109840,0.000048 +0.563469,0.543869,-1.225140,-1.772730,-0.109265,0.000048 +0.558469,0.545608,-1.224860,-1.774160,-0.108690,0.000048 +0.553470,0.547347,-1.224580,-1.775590,-0.108116,0.000048 +0.548471,0.549086,-1.224290,-1.777020,-0.107541,0.000048 +0.543471,0.550826,-1.224010,-1.778450,-0.106966,0.000048 +0.538472,0.552565,-1.223730,-1.779880,-0.106391,0.000048 +0.533473,0.554304,-1.223440,-1.781310,-0.105817,0.000048 +0.528473,0.556043,-1.223160,-1.782740,-0.105242,0.000048 +0.523474,0.557783,-1.222880,-1.784180,-0.104667,0.000048 +0.518475,0.559522,-1.222590,-1.785610,-0.104092,0.000048 +0.513475,0.561261,-1.222310,-1.787040,-0.103517,0.000048 +0.508476,0.563000,-1.222030,-1.788470,-0.102943,0.000048 +0.503477,0.564740,-1.221740,-1.789900,-0.102368,0.000048 +0.498477,0.566479,-1.221460,-1.791330,-0.101793,0.000048 +0.493478,0.568218,-1.221180,-1.792760,-0.101218,0.000048 +0.488479,0.569957,-1.220900,-1.794190,-0.100643,0.000048 +0.483479,0.571697,-1.220610,-1.795620,-0.100069,0.000048 +0.478480,0.573436,-1.220330,-1.797060,-0.099494,0.000048 +0.473481,0.575175,-1.220050,-1.798490,-0.098919,0.000048 +0.468481,0.576914,-1.219760,-1.799920,-0.098344,0.000048 +0.463482,0.578654,-1.219480,-1.801350,-0.097769,0.000048 +0.458483,0.580393,-1.219200,-1.802780,-0.097195,0.000048 +0.453483,0.582132,-1.218910,-1.804210,-0.096620,0.000048 +0.448484,0.583871,-1.218630,-1.805640,-0.096045,0.000048 +0.443485,0.585611,-1.218350,-1.807070,-0.095470,0.000048 +0.438485,0.587350,-1.218060,-1.808500,-0.094895,0.000048 +0.433486,0.589089,-1.217780,-1.809930,-0.094321,0.000048 +0.428487,0.590828,-1.217500,-1.811370,-0.093746,0.000048 +0.423487,0.592568,-1.217220,-1.812800,-0.093171,0.000048 +0.418488,0.594307,-1.216930,-1.814230,-0.092596,0.000048 +0.413489,0.596046,-1.216650,-1.815660,-0.092022,0.000048 +0.408489,0.597785,-1.216370,-1.817090,-0.091447,0.000048 +0.403490,0.599525,-1.216080,-1.818520,-0.090872,0.000048 +0.398491,0.601264,-1.215800,-1.819950,-0.090297,0.000048 +0.393491,0.603003,-1.215520,-1.821380,-0.089722,0.000048 +0.388492,0.604743,-1.215230,-1.822810,-0.089148,0.000048 +0.383493,0.606482,-1.214950,-1.824240,-0.088573,0.000048 +0.378493,0.608221,-1.214670,-1.825680,-0.087998,0.000048 +0.373494,0.609960,-1.214380,-1.827110,-0.087423,0.000048 +0.368495,0.611700,-1.214100,-1.828540,-0.086848,0.000048 +0.363495,0.613439,-1.213820,-1.829970,-0.086274,0.000048 +0.358496,0.615178,-1.213540,-1.831400,-0.085699,0.000048 +0.353497,0.616917,-1.213250,-1.832830,-0.085124,0.000048 +0.348497,0.618657,-1.212970,-1.834260,-0.084549,0.000048 +0.343498,0.620396,-1.212690,-1.835690,-0.083974,0.000048 +0.338499,0.622135,-1.212400,-1.837120,-0.083400,0.000048 +0.333499,0.623874,-1.212120,-1.838550,-0.082825,0.000048 +0.328500,0.625614,-1.211840,-1.839990,-0.082250,0.000048 +0.323501,0.627353,-1.211550,-1.841420,-0.081675,0.000048 +0.318501,0.629092,-1.211270,-1.842850,-0.081101,0.000048 +0.313502,0.630831,-1.210990,-1.844280,-0.080526,0.000048 +0.308503,0.632571,-1.210700,-1.845710,-0.079951,0.000048 +0.303503,0.634310,-1.210420,-1.847140,-0.079376,0.000048 +0.298504,0.636049,-1.210140,-1.848570,-0.078801,0.000048 +0.293505,0.637788,-1.209860,-1.850000,-0.078227,0.000048 +0.288505,0.639528,-1.209570,-1.851430,-0.077652,0.000048 +0.283506,0.641267,-1.209290,-1.852860,-0.077077,0.000048 +0.278507,0.643006,-1.209010,-1.854300,-0.076502,0.000048 +0.273507,0.644745,-1.208720,-1.855730,-0.075927,0.000048 +0.268508,0.646485,-1.208440,-1.857160,-0.075353,0.000048 +0.263509,0.648224,-1.208160,-1.858590,-0.074778,0.000048 +0.258509,0.649963,-1.207870,-1.860020,-0.074203,0.000048 +0.253510,0.651702,-1.207590,-1.861450,-0.073628,0.000048 +0.248511,0.653442,-1.207310,-1.862880,-0.073053,0.000048 +0.243511,0.655181,-1.207020,-1.864310,-0.072479,0.000048 +0.238512,0.656920,-1.206740,-1.865740,-0.071904,0.000048 +0.233513,0.658660,-1.206460,-1.867170,-0.071329,0.000048 +0.228513,0.660399,-1.206180,-1.868610,-0.070754,0.000048 +0.223514,0.662138,-1.205890,-1.870040,-0.070180,0.000048 +0.218515,0.663877,-1.205610,-1.871470,-0.069605,0.000048 +0.213515,0.665617,-1.205330,-1.872900,-0.069030,0.000048 +0.208516,0.667356,-1.205040,-1.874330,-0.068455,0.000048 +0.203517,0.669095,-1.204760,-1.875760,-0.067880,0.000048 +0.198517,0.670834,-1.204480,-1.877190,-0.067306,0.000048 +0.193518,0.672574,-1.204190,-1.878620,-0.066731,0.000048 +0.188519,0.674313,-1.203910,-1.880050,-0.066156,0.000048 +0.183519,0.676052,-1.203630,-1.881490,-0.065581,0.000048 +0.178520,0.677791,-1.203340,-1.882920,-0.065006,0.000048 +0.173521,0.679531,-1.203060,-1.884350,-0.064432,0.000048 +0.168527,0.681270,-1.202780,-1.885780,-0.063857,0.000048 +0.163541,0.683009,-1.202500,-1.887210,-0.063282,0.000048 +0.158568,0.684748,-1.202210,-1.888640,-0.062707,0.000048 +0.153612,0.686488,-1.201930,-1.890070,-0.062133,0.000048 +0.148678,0.688227,-1.201650,-1.891500,-0.061558,0.000048 +0.143770,0.689966,-1.201360,-1.892930,-0.060983,0.000048 +0.138892,0.691705,-1.201080,-1.894360,-0.060408,0.000048 +0.134048,0.693445,-1.200800,-1.895800,-0.059833,0.000048 +0.129244,0.695184,-1.200510,-1.897230,-0.059258,0.000048 +0.124482,0.696923,-1.200230,-1.898660,-0.058684,0.000048 +0.119768,0.698662,-1.199950,-1.900090,-0.058109,0.000048 +0.115106,0.700402,-1.199660,-1.901520,-0.057534,0.000048 +0.110500,0.702141,-1.199380,-1.902950,-0.056959,0.000048 +0.105954,0.703880,-1.199100,-1.904380,-0.056385,0.000048 +0.101474,0.705619,-1.198820,-1.905810,-0.055810,0.000048 +0.097062,0.707359,-1.198530,-1.907240,-0.055235,0.000048 +0.092724,0.709098,-1.198250,-1.908670,-0.054660,0.000048 +0.088464,0.710837,-1.197970,-1.910110,-0.054085,0.000048 +0.084285,0.712577,-1.197680,-1.911540,-0.053511,0.000048 +0.080194,0.714316,-1.197400,-1.912970,-0.052936,0.000048 +0.076193,0.716055,-1.197120,-1.914400,-0.052361,0.000048 +0.072287,0.717794,-1.196830,-1.915830,-0.051786,0.000048 +0.068481,0.719534,-1.196550,-1.917260,-0.051212,0.000048 +0.064778,0.721273,-1.196270,-1.918690,-0.050637,0.000048 +0.061184,0.723012,-1.195980,-1.920120,-0.050062,0.000048 +0.057702,0.724751,-1.195700,-1.921550,-0.049487,0.000048 +0.054336,0.726491,-1.195420,-1.922980,-0.048912,0.000048 +0.051092,0.728229,-1.195140,-1.924420,-0.048337,0.000048 +0.047973,0.729962,-1.194850,-1.925850,-0.047763,0.000048 +0.044984,0.731687,-1.194570,-1.927280,-0.047188,0.000048 +0.042129,0.733398,-1.194290,-1.928710,-0.046613,0.000048 +0.039413,0.735091,-1.194000,-1.930140,-0.046038,0.000048 +0.036839,0.736763,-1.193720,-1.931570,-0.045464,0.000048 +0.034410,0.738408,-1.193440,-1.933000,-0.044889,0.000048 +0.032125,0.740022,-1.193150,-1.934430,-0.044314,0.000048 +0.029978,0.741601,-1.192870,-1.935850,-0.043739,0.000048 +0.027965,0.743141,-1.192590,-1.937270,-0.043164,0.000048 +0.026082,0.744637,-1.192300,-1.938660,-0.042590,0.000048 +0.024324,0.746085,-1.192020,-1.940030,-0.042015,0.000048 +0.022688,0.747481,-1.191740,-1.941380,-0.041440,0.000048 +0.021168,0.748820,-1.191460,-1.942690,-0.040865,0.000048 +0.019761,0.750098,-1.191170,-1.943970,-0.040291,0.000048 +0.018462,0.751311,-1.190890,-1.945200,-0.039716,0.000048 +0.017267,0.752454,-1.190610,-1.946390,-0.039141,0.000048 +0.016171,0.753523,-1.190320,-1.947520,-0.038566,0.000048 +0.015171,0.754514,-1.190040,-1.948590,-0.037991,0.000048 +0.014262,0.755422,-1.189760,-1.949600,-0.037418,0.000048 +0.013439,0.756245,-1.189470,-1.950550,-0.036849,0.000048 +0.012698,0.756986,-1.189190,-1.951420,-0.036292,0.000048 +0.012035,0.757649,-1.188910,-1.952210,-0.035750,0.000048 +0.011446,0.758238,-1.188620,-1.952910,-0.035229,0.000048 +0.010926,0.758758,-1.188340,-1.953530,-0.034735,0.000048 +0.010471,0.759213,-1.188070,-1.954080,-0.034272,0.000048 +0.010077,0.759607,-1.187800,-1.954550,-0.033845,0.000048 +0.009738,0.759946,-1.187540,-1.954960,-0.033461,0.000048 +0.009452,0.760232,-1.187310,-1.955300,-0.033123,0.000048 +0.009213,0.760471,-1.187100,-1.955590,-0.032837,0.000048 +0.009018,0.760666,-1.186910,-1.955820,-0.032603,0.000048 +0.008861,0.760823,-1.186750,-1.956010,-0.032416,0.000048 +0.008739,0.760945,-1.186630,-1.956150,-0.032270,0.000048 +0.008648,0.761036,-1.186540,-1.956260,-0.032160,0.000048 +0.008582,0.761102,-1.186480,-1.956340,-0.032081,0.000048 +0.008538,0.761146,-1.186430,-1.956390,-0.032028,0.000048 +0.008512,0.761172,-1.186400,-1.956430,-0.031996,0.000048 +0.008498,0.761186,-1.186390,-1.956440,-0.031980,0.000048 +0.008493,0.761191,-1.186390,-1.956450,-0.031974,0.000048 +0.008492,0.761192,-1.186380,-1.956450,-0.031973,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761193,-1.186375,-1.956453,-0.031971,0.000048 +0.008484,0.761195,-1.186372,-1.956452,-0.031971,0.000048 +0.008484,0.761199,-1.186366,-1.956450,-0.031971,0.000048 +0.008484,0.761205,-1.186357,-1.956447,-0.031971,0.000048 +0.008484,0.761214,-1.186344,-1.956443,-0.031971,0.000048 +0.008484,0.761227,-1.186324,-1.956437,-0.031971,0.000048 +0.008484,0.761245,-1.186299,-1.956429,-0.031971,0.000048 +0.008484,0.761267,-1.186266,-1.956418,-0.031971,0.000048 +0.008484,0.761295,-1.186226,-1.956405,-0.031971,0.000048 +0.008483,0.761329,-1.186176,-1.956390,-0.031970,0.000048 +0.008483,0.761369,-1.186116,-1.956371,-0.031970,0.000048 +0.008483,0.761418,-1.186046,-1.956348,-0.031970,0.000048 +0.008483,0.761474,-1.185963,-1.956322,-0.031970,0.000048 +0.008482,0.761538,-1.185868,-1.956292,-0.031969,0.000048 +0.008482,0.761612,-1.185760,-1.956258,-0.031969,0.000049 +0.008482,0.761696,-1.185637,-1.956219,-0.031969,0.000049 +0.008481,0.761791,-1.185499,-1.956176,-0.031968,0.000049 +0.008481,0.761896,-1.185345,-1.956127,-0.031968,0.000049 +0.008480,0.762013,-1.185173,-1.956073,-0.031967,0.000049 +0.008479,0.762143,-1.184984,-1.956013,-0.031966,0.000049 +0.008479,0.762286,-1.184775,-1.955947,-0.031966,0.000049 +0.008478,0.762442,-1.184547,-1.955875,-0.031965,0.000050 +0.008477,0.762612,-1.184298,-1.955797,-0.031964,0.000050 +0.008476,0.762797,-1.184027,-1.955712,-0.031963,0.000050 +0.008475,0.762998,-1.183734,-1.955619,-0.031962,0.000050 +0.008474,0.763214,-1.183418,-1.955520,-0.031961,0.000051 +0.008473,0.763448,-1.183077,-1.955413,-0.031960,0.000051 +0.008472,0.763699,-1.182711,-1.955298,-0.031959,0.000051 +0.008471,0.763967,-1.182319,-1.955175,-0.031958,0.000052 +0.008469,0.764255,-1.181901,-1.955044,-0.031956,0.000052 +0.008468,0.764561,-1.181454,-1.954905,-0.031955,0.000052 +0.008466,0.764888,-1.180979,-1.954757,-0.031953,0.000053 +0.008465,0.765235,-1.180474,-1.954599,-0.031952,0.000053 +0.008463,0.765603,-1.179938,-1.954433,-0.031950,0.000054 +0.008461,0.765993,-1.179372,-1.954257,-0.031948,0.000054 +0.008459,0.766406,-1.178773,-1.954071,-0.031946,0.000055 +0.008457,0.766841,-1.178141,-1.953875,-0.031944,0.000056 +0.008455,0.767301,-1.177476,-1.953670,-0.031942,0.000056 +0.008453,0.767785,-1.176775,-1.953454,-0.031940,0.000057 +0.008450,0.768293,-1.176039,-1.953227,-0.031937,0.000057 +0.008448,0.768828,-1.175267,-1.952990,-0.031935,0.000058 +0.008445,0.769389,-1.174457,-1.952742,-0.031932,0.000059 +0.008442,0.769977,-1.173609,-1.952483,-0.031929,0.000060 +0.008439,0.770592,-1.172723,-1.952212,-0.031926,0.000060 +0.008436,0.771237,-1.171796,-1.951931,-0.031923,0.000061 +0.008433,0.771910,-1.170829,-1.951638,-0.031920,0.000062 +0.008430,0.772612,-1.169821,-1.951333,-0.031917,0.000063 +0.008427,0.773346,-1.168770,-1.951016,-0.031914,0.000064 +0.008423,0.774110,-1.167676,-1.950688,-0.031910,0.000065 +0.008419,0.774906,-1.166539,-1.950348,-0.031906,0.000066 +0.008416,0.775733,-1.165358,-1.949996,-0.031903,0.000067 +0.008412,0.776593,-1.164134,-1.949632,-0.031899,0.000068 +0.008407,0.777485,-1.162866,-1.949257,-0.031894,0.000069 +0.008403,0.778408,-1.161555,-1.948870,-0.031890,0.000070 +0.008399,0.779364,-1.160200,-1.948473,-0.031886,0.000072 +0.008394,0.780351,-1.158803,-1.948064,-0.031881,0.000073 +0.008390,0.781371,-1.157363,-1.947645,-0.031877,0.000074 +0.008385,0.782423,-1.155881,-1.947216,-0.031872,0.000076 +0.008380,0.783507,-1.154356,-1.946777,-0.031867,0.000077 +0.008375,0.784624,-1.152788,-1.946327,-0.031862,0.000078 +0.008370,0.785773,-1.151179,-1.945868,-0.031857,0.000080 +0.008365,0.786954,-1.149528,-1.945400,-0.031852,0.000081 +0.008359,0.788168,-1.147835,-1.944923,-0.031846,0.000083 +0.008354,0.789414,-1.146100,-1.944436,-0.031841,0.000084 +0.008348,0.790693,-1.144325,-1.943941,-0.031835,0.000086 +0.008342,0.792005,-1.142509,-1.943438,-0.031829,0.000088 +0.008337,0.793349,-1.140652,-1.942927,-0.031824,0.000089 +0.008331,0.794726,-1.138755,-1.942408,-0.031818,0.000091 +0.008324,0.796135,-1.136817,-1.941882,-0.031812,0.000093 +0.008318,0.797578,-1.134840,-1.941349,-0.031805,0.000094 +0.008312,0.799053,-1.132824,-1.940809,-0.031799,0.000096 +0.008305,0.800560,-1.130768,-1.940263,-0.031792,0.000098 +0.008299,0.802101,-1.128674,-1.939711,-0.031786,0.000100 +0.008292,0.803674,-1.126541,-1.939153,-0.031779,0.000102 +0.008285,0.805280,-1.124370,-1.938590,-0.031773,0.000104 +0.008279,0.806918,-1.122162,-1.938022,-0.031766,0.000105 +0.008272,0.808590,-1.119916,-1.937450,-0.031759,0.000107 +0.008265,0.810294,-1.117634,-1.936874,-0.031752,0.000109 +0.008257,0.812030,-1.115315,-1.936294,-0.031744,0.000111 +0.008250,0.813799,-1.112961,-1.935711,-0.031737,0.000113 +0.008243,0.815601,-1.110571,-1.935125,-0.031730,0.000116 +0.008235,0.817435,-1.108147,-1.934537,-0.031722,0.000118 +0.008228,0.819302,-1.105688,-1.933947,-0.031715,0.000120 +0.008220,0.821201,-1.103196,-1.933355,-0.031707,0.000122 +0.008212,0.823132,-1.100670,-1.932763,-0.031699,0.000124 +0.008205,0.825095,-1.098112,-1.932170,-0.031692,0.000126 +0.008197,0.827090,-1.095522,-1.931578,-0.031684,0.000129 +0.008189,0.829117,-1.092901,-1.930986,-0.031676,0.000131 +0.008181,0.831175,-1.090250,-1.930395,-0.031668,0.000133 +0.008173,0.833265,-1.087568,-1.929806,-0.031660,0.000135 +0.008164,0.835387,-1.084857,-1.929219,-0.031651,0.000138 +0.008156,0.837539,-1.082118,-1.928634,-0.031643,0.000140 +0.008148,0.839722,-1.079352,-1.928054,-0.031635,0.000142 +0.008139,0.841937,-1.076559,-1.927477,-0.031626,0.000145 +0.008131,0.844181,-1.073740,-1.926905,-0.031618,0.000147 +0.008123,0.846456,-1.070895,-1.926338,-0.031610,0.000150 +0.008114,0.848761,-1.068027,-1.925777,-0.031601,0.000152 +0.008105,0.851095,-1.065136,-1.925222,-0.031592,0.000154 +0.008097,0.853458,-1.062222,-1.924675,-0.031584,0.000157 +0.008088,0.855851,-1.059288,-1.924135,-0.031575,0.000159 +0.008079,0.858272,-1.056333,-1.923604,-0.031566,0.000162 +0.008071,0.860722,-1.053359,-1.923082,-0.031558,0.000164 +0.008062,0.863199,-1.050368,-1.922570,-0.031549,0.000167 +0.008053,0.865704,-1.047359,-1.922069,-0.031540,0.000169 +0.008044,0.868235,-1.044335,-1.921579,-0.031531,0.000172 +0.008035,0.870793,-1.041297,-1.921102,-0.031522,0.000174 +0.008026,0.873377,-1.038246,-1.920638,-0.031513,0.000177 +0.008017,0.875987,-1.035183,-1.920187,-0.031505,0.000180 +0.008009,0.878622,-1.032110,-1.919751,-0.031496,0.000182 +0.008000,0.881280,-1.029029,-1.919331,-0.031487,0.000185 +0.007991,0.883963,-1.025939,-1.918927,-0.031478,0.000187 +0.007982,0.886669,-1.022844,-1.918540,-0.031469,0.000190 +0.007973,0.889397,-1.019744,-1.918171,-0.031460,0.000192 +0.007964,0.892147,-1.016642,-1.917821,-0.031451,0.000195 +0.007955,0.894919,-1.013539,-1.917492,-0.031442,0.000197 +0.007946,0.897710,-1.010436,-1.917183,-0.031433,0.000200 +0.007937,0.900521,-1.007335,-1.916896,-0.031424,0.000203 +0.007929,0.903351,-1.004238,-1.916632,-0.031416,0.000205 +0.007920,0.906199,-1.001148,-1.916392,-0.031407,0.000208 +0.007911,0.909064,-0.998065,-1.916176,-0.031398,0.000210 +0.007902,0.911945,-0.994992,-1.915987,-0.031389,0.000213 +0.007894,0.914841,-0.991931,-1.915824,-0.031381,0.000215 +0.007885,0.917752,-0.988884,-1.915690,-0.031372,0.000218 +0.007876,0.920676,-0.985852,-1.915585,-0.031363,0.000220 +0.007868,0.923612,-0.982839,-1.915510,-0.031355,0.000223 +0.007859,0.926559,-0.979846,-1.915467,-0.031346,0.000225 +0.007851,0.929516,-0.976875,-1.915456,-0.031338,0.000228 +0.007843,0.932482,-0.973929,-1.915479,-0.031330,0.000230 +0.007834,0.935456,-0.971011,-1.915536,-0.031321,0.000232 +0.007826,0.938436,-0.968122,-1.915630,-0.031313,0.000235 +0.007818,0.941422,-0.965266,-1.915762,-0.031305,0.000237 +0.007810,0.944411,-0.962444,-1.915932,-0.031297,0.000239 +0.007802,0.947404,-0.959660,-1.916142,-0.031289,0.000242 +0.007795,0.950397,-0.956915,-1.916393,-0.031282,0.000244 +0.007787,0.953390,-0.954213,-1.916686,-0.031274,0.000246 +0.007779,0.956382,-0.951557,-1.917023,-0.031266,0.000248 +0.007772,0.959370,-0.948948,-1.917406,-0.031259,0.000250 +0.007765,0.962354,-0.946391,-1.917835,-0.031252,0.000253 +0.007757,0.965332,-0.943888,-1.918311,-0.031244,0.000255 +0.007750,0.968302,-0.941441,-1.918837,-0.031237,0.000257 +0.007743,0.971263,-0.939054,-1.919413,-0.031231,0.000259 +0.007737,0.974213,-0.936731,-1.920041,-0.031224,0.000261 +0.007730,0.977150,-0.934473,-1.920723,-0.031217,0.000263 +0.007724,0.980074,-0.932284,-1.921459,-0.031211,0.000264 +0.007717,0.982981,-0.930167,-1.922251,-0.031204,0.000266 +0.007711,0.985870,-0.928126,-1.923101,-0.031198,0.000268 +0.007705,0.988739,-0.926164,-1.924010,-0.031192,0.000270 +0.007700,0.991587,-0.924283,-1.924978,-0.031187,0.000271 +0.007694,0.994412,-0.922487,-1.926009,-0.031181,0.000273 +0.007689,0.997212,-0.920780,-1.927103,-0.031176,0.000275 +0.007684,0.999984,-0.919164,-1.928261,-0.031171,0.000276 +0.007679,1.002728,-0.917643,-1.929486,-0.031166,0.000278 +0.007674,1.005440,-0.916221,-1.930777,-0.031161,0.000279 +0.007669,1.008120,-0.914900,-1.932137,-0.031156,0.000280 +0.007665,1.010765,-0.913684,-1.933568,-0.031152,0.000282 +0.007661,1.013373,-0.912576,-1.935069,-0.031148,0.000283 +0.007657,1.015942,-0.911580,-1.936643,-0.031144,0.000284 +0.007654,1.018471,-0.910699,-1.938291,-0.031141,0.000285 +0.007650,1.020957,-0.909935,-1.940015,-0.031137,0.000286 +0.007647,1.023397,-0.909293,-1.941815,-0.031134,0.000287 +0.007645,1.025792,-0.908776,-1.943692,-0.031132,0.000288 +0.007642,1.028137,-0.908386,-1.945648,-0.031129,0.000288 +0.007640,1.030431,-0.908127,-1.947684,-0.031127,0.000289 +0.007638,1.032673,-0.908002,-1.949801,-0.031125,0.000290 +0.007636,1.034860,-0.908013,-1.952000,-0.031123,0.000290 +0.007635,1.036990,-0.908165,-1.954282,-0.031122,0.000290 +0.007634,1.039062,-0.908459,-1.956648,-0.031121,0.000291 +0.007633,1.041072,-0.908899,-1.959099,-0.031120,0.000291 +0.007633,1.043021,-0.909486,-1.961635,-0.031120,0.000291 +0.007633,1.044905,-0.910225,-1.964258,-0.031120,0.000291 +0.007633,1.046722,-0.911117,-1.966967,-0.031120,0.000291 +0.007633,1.048472,-0.912165,-1.969764,-0.031120,0.000291 +0.007634,1.050152,-0.913370,-1.972650,-0.031121,0.000291 +0.007636,1.051760,-0.914737,-1.975623,-0.031123,0.000290 +0.007637,1.053295,-0.916265,-1.978686,-0.031124,0.000290 +0.007639,1.054754,-0.917958,-1.981838,-0.031126,0.000289 +0.007642,1.056137,-0.919817,-1.985080,-0.031129,0.000288 +0.007644,1.057442,-0.921845,-1.988411,-0.031131,0.000288 +0.007648,1.058667,-0.924041,-1.991832,-0.031135,0.000287 +0.007651,1.059811,-0.926409,-1.995342,-0.031138,0.000286 +0.007655,1.060871,-0.928949,-1.998942,-0.031142,0.000285 +0.007659,1.061848,-0.931662,-2.002631,-0.031147,0.000283 +0.007664,1.062739,-0.934550,-2.006408,-0.031151,0.000282 +0.007669,1.063543,-0.937614,-2.010274,-0.031157,0.000280 +0.007675,1.064260,-0.940853,-2.014228,-0.031162,0.000279 +0.007681,1.064886,-0.944268,-2.018269,-0.031168,0.000277 +0.007688,1.065423,-0.947861,-2.022396,-0.031175,0.000275 +0.007695,1.065867,-0.951631,-2.026608,-0.031182,0.000273 +0.007702,1.066220,-0.955578,-2.030905,-0.031189,0.000271 +0.007710,1.066478,-0.959701,-2.035285,-0.031197,0.000268 +0.007718,1.066642,-0.964002,-2.039747,-0.031205,0.000266 +0.007727,1.066711,-0.968479,-2.044290,-0.031214,0.000263 +0.007737,1.066683,-0.973132,-2.048913,-0.031224,0.000261 +0.007746,1.066558,-0.977960,-2.053613,-0.031233,0.000258 +0.007757,1.066336,-0.982962,-2.058389,-0.031244,0.000255 +0.007768,1.066014,-0.988137,-2.063240,-0.031255,0.000252 +0.007779,1.065594,-0.993484,-2.068164,-0.031266,0.000248 +0.007791,1.065074,-0.999002,-2.073158,-0.031278,0.000245 +0.007803,1.064453,-1.004688,-2.078220,-0.031290,0.000241 +0.007816,1.063732,-1.010542,-2.083348,-0.031303,0.000238 +0.007829,1.062909,-1.016560,-2.088540,-0.031316,0.000234 +0.007843,1.061985,-1.022741,-2.093793,-0.031330,0.000230 +0.007858,1.060959,-1.029080,-2.099102,-0.031345,0.000225 +0.007873,1.059831,-1.035576,-2.104465,-0.031360,0.000221 +0.007889,1.058601,-1.042224,-2.109879,-0.031376,0.000217 +0.007905,1.057269,-1.049022,-2.115340,-0.031392,0.000212 +0.007921,1.055835,-1.055965,-2.120845,-0.031409,0.000207 +0.007939,1.054299,-1.063051,-2.126389,-0.031426,0.000202 +0.007957,1.052662,-1.070274,-2.131970,-0.031444,0.000197 +0.007975,1.050923,-1.077631,-2.137582,-0.031462,0.000192 +0.007994,1.049082,-1.085118,-2.143223,-0.031481,0.000186 +0.008013,1.047141,-1.092730,-2.148889,-0.031500,0.000181 +0.008033,1.045100,-1.100462,-2.154574,-0.031520,0.000175 +0.008054,1.042958,-1.108312,-2.160276,-0.031541,0.000169 +0.008075,1.040718,-1.116272,-2.165990,-0.031562,0.000163 +0.008097,1.038378,-1.124339,-2.171711,-0.031584,0.000157 +0.008119,1.035940,-1.132508,-2.177436,-0.031606,0.000151 +0.008142,1.033404,-1.140774,-2.183159,-0.031629,0.000144 +0.008165,1.030771,-1.149131,-2.188877,-0.031652,0.000138 +0.008189,1.028042,-1.157575,-2.194585,-0.031676,0.000131 +0.008213,1.025218,-1.166101,-2.200279,-0.031700,0.000124 +0.008238,1.022298,-1.174702,-2.205954,-0.031725,0.000117 +0.008263,1.019285,-1.183374,-2.211606,-0.031750,0.000110 +0.008289,1.016179,-1.192111,-2.217229,-0.031776,0.000102 +0.008316,1.012980,-1.200908,-2.222820,-0.031803,0.000095 +0.008343,1.009690,-1.209759,-2.228374,-0.031830,0.000087 +0.008370,1.006310,-1.218659,-2.233887,-0.031857,0.000080 +0.008398,1.002841,-1.227603,-2.239353,-0.031885,0.000072 +0.008426,0.999284,-1.236583,-2.244768,-0.031913,0.000064 +0.008455,0.995639,-1.245596,-2.250129,-0.031942,0.000056 +0.008484,0.991909,-1.254635,-2.255429,-0.031971,0.000048 +0.008513,0.988094,-1.263694,-2.260665,-0.032000,0.000040 +0.008543,0.984195,-1.272769,-2.265832,-0.032030,0.000032 +0.008574,0.980214,-1.281852,-2.270926,-0.032061,0.000023 +0.008605,0.976151,-1.290940,-2.275943,-0.032092,0.000015 +0.008636,0.972009,-1.300025,-2.280877,-0.032123,0.000006 +0.008667,0.967789,-1.309102,-2.285725,-0.032154,-0.000003 +0.008699,0.963492,-1.318165,-2.290483,-0.032186,-0.000011 +0.008731,0.959119,-1.327210,-2.295145,-0.032218,-0.000020 +0.008763,0.954672,-1.336230,-2.299710,-0.032250,-0.000029 +0.008796,0.950153,-1.345219,-2.304171,-0.032283,-0.000038 +0.008829,0.945563,-1.354172,-2.308525,-0.032316,-0.000047 +0.008862,0.940904,-1.363083,-2.312769,-0.032349,-0.000056 +0.008895,0.936178,-1.371947,-2.316898,-0.032382,-0.000065 +0.008929,0.931387,-1.380759,-2.320909,-0.032416,-0.000074 +0.008962,0.926531,-1.389512,-2.324798,-0.032449,-0.000083 +0.008996,0.921615,-1.398202,-2.328562,-0.032483,-0.000092 +0.009030,0.916638,-1.406822,-2.332197,-0.032517,-0.000101 +0.009064,0.911605,-1.415369,-2.335700,-0.032551,-0.000110 +0.009098,0.906515,-1.423836,-2.339069,-0.032585,-0.000119 +0.009132,0.901373,-1.432219,-2.342300,-0.032619,-0.000129 +0.009166,0.896178,-1.440513,-2.345390,-0.032653,-0.000138 +0.009200,0.890933,-1.448715,-2.348338,-0.032687,-0.000147 +0.009234,0.885640,-1.456820,-2.351141,-0.032721,-0.000156 +0.009268,0.880301,-1.464824,-2.353797,-0.032755,-0.000165 +0.009302,0.874917,-1.472722,-2.356302,-0.032789,-0.000174 +0.009336,0.869491,-1.480511,-2.358657,-0.032823,-0.000183 +0.009369,0.864026,-1.488186,-2.360857,-0.032856,-0.000191 +0.009403,0.858522,-1.495743,-2.362902,-0.032890,-0.000200 +0.009436,0.852984,-1.503178,-2.364790,-0.032923,-0.000209 +0.009469,0.847412,-1.510487,-2.366518,-0.032956,-0.000218 +0.009502,0.841809,-1.517666,-2.368086,-0.032989,-0.000226 +0.009534,0.836179,-1.524711,-2.369493,-0.033021,-0.000235 +0.009567,0.830523,-1.531619,-2.370736,-0.033053,-0.000243 +0.009598,0.824844,-1.538384,-2.371814,-0.033085,-0.000251 +0.009630,0.819146,-1.545004,-2.372728,-0.033117,-0.000259 +0.009661,0.813431,-1.551474,-2.373475,-0.033148,-0.000268 +0.009692,0.807702,-1.557792,-2.374055,-0.033178,-0.000275 +0.009722,0.801961,-1.563953,-2.374468,-0.033209,-0.000283 +0.009751,0.796214,-1.569953,-2.374713,-0.033238,-0.000291 +0.009781,0.790462,-1.575790,-2.374790,-0.033268,-0.000298 +0.009809,0.784708,-1.581459,-2.374699,-0.033296,-0.000306 +0.009837,0.778958,-1.586957,-2.374439,-0.033324,-0.000313 +0.009865,0.773213,-1.592282,-2.374012,-0.033352,-0.000320 +0.009892,0.767478,-1.597429,-2.373417,-0.033379,-0.000327 +0.009918,0.761756,-1.602396,-2.372656,-0.033405,-0.000333 +0.009943,0.756051,-1.607180,-2.371728,-0.033430,-0.000340 +0.009968,0.750367,-1.611777,-2.370635,-0.033455,-0.000346 +0.009992,0.744708,-1.616184,-2.369378,-0.033479,-0.000352 +0.010016,0.739079,-1.620400,-2.367958,-0.033503,-0.000358 +0.010038,0.733482,-1.624421,-2.366376,-0.033525,-0.000364 +0.010060,0.727922,-1.628244,-2.364634,-0.033547,-0.000369 +0.010081,0.722404,-1.631868,-2.362735,-0.033568,-0.000375 +0.010101,0.716932,-1.635290,-2.360679,-0.033588,-0.000380 +0.010120,0.711509,-1.638507,-2.358469,-0.033607,-0.000385 +0.010138,0.706141,-1.641517,-2.356107,-0.033625,-0.000389 +0.010156,0.700832,-1.644320,-2.353595,-0.033642,-0.000394 +0.010172,0.695586,-1.646911,-2.350937,-0.033659,-0.000398 +0.010187,0.690408,-1.649291,-2.348134,-0.033674,-0.000402 +0.010202,0.685301,-1.651457,-2.345191,-0.033689,-0.000405 +0.010215,0.680272,-1.653408,-2.342108,-0.033702,-0.000408 +0.010228,0.675323,-1.655143,-2.338891,-0.033714,-0.000412 +0.010239,0.670459,-1.656659,-2.335542,-0.033726,-0.000414 +0.010249,0.665686,-1.657958,-2.332064,-0.033736,-0.000417 +0.010259,0.661007,-1.659036,-2.328461,-0.033745,-0.000419 +0.010267,0.656426,-1.659895,-2.324737,-0.033754,-0.000421 +0.010274,0.651948,-1.660532,-2.320895,-0.033761,-0.000423 +0.010280,0.647578,-1.660949,-2.316939,-0.033767,-0.000425 +0.010285,0.643319,-1.661143,-2.312873,-0.033772,-0.000426 +0.010289,0.639175,-1.661116,-2.308701,-0.033776,-0.000427 +0.010291,0.635150,-1.660867,-2.304428,-0.033778,-0.000427 +0.010293,0.631250,-1.660397,-2.300056,-0.033780,-0.000428 +0.010294,0.627476,-1.659706,-2.295591,-0.033780,-0.000428 +0.010293,0.623833,-1.658794,-2.291036,-0.033780,-0.000428 +0.010291,0.620326,-1.657661,-2.286397,-0.033778,-0.000427 +0.010288,0.616956,-1.656310,-2.281676,-0.033775,-0.000427 +0.010284,0.613727,-1.654740,-2.276878,-0.033771,-0.000426 +0.010279,0.610644,-1.652952,-2.272009,-0.033766,-0.000425 +0.010273,0.607708,-1.650949,-2.267071,-0.033760,-0.000423 +0.010266,0.604923,-1.648730,-2.262070,-0.033753,-0.000421 +0.010258,0.602292,-1.646299,-2.257009,-0.033745,-0.000419 +0.010249,0.599817,-1.643656,-2.251893,-0.033736,-0.000417 +0.010238,0.597501,-1.640802,-2.246726,-0.033725,-0.000414 +0.010227,0.595345,-1.637741,-2.241512,-0.033714,-0.000411 +0.010214,0.593353,-1.634474,-2.236256,-0.033701,-0.000408 +0.010201,0.591527,-1.631003,-2.230962,-0.033688,-0.000405 +0.010186,0.589867,-1.627330,-2.225633,-0.033673,-0.000401 +0.010171,0.588376,-1.623458,-2.220274,-0.033658,-0.000397 +0.010155,0.587054,-1.619390,-2.214888,-0.033642,-0.000393 +0.010137,0.585905,-1.615127,-2.209480,-0.033624,-0.000389 +0.010119,0.584927,-1.610673,-2.204053,-0.033606,-0.000384 +0.010100,0.584124,-1.606030,-2.198611,-0.033587,-0.000380 +0.010080,0.583494,-1.601202,-2.193158,-0.033567,-0.000375 +0.010059,0.583039,-1.596190,-2.187697,-0.033546,-0.000369 +0.010037,0.582759,-1.591000,-2.182232,-0.033524,-0.000364 +0.010015,0.582654,-1.585632,-2.176766,-0.033502,-0.000358 +0.009992,0.582725,-1.580092,-2.171302,-0.033479,-0.000352 +0.009968,0.582972,-1.574382,-2.165844,-0.033455,-0.000346 +0.009943,0.583393,-1.568505,-2.160395,-0.033430,-0.000340 +0.009917,0.583989,-1.562465,-2.154957,-0.033404,-0.000333 +0.009891,0.584758,-1.556266,-2.149535,-0.033378,-0.000327 +0.009864,0.585701,-1.549911,-2.144129,-0.033351,-0.000320 +0.009837,0.586817,-1.543403,-2.138745,-0.033324,-0.000313 +0.009809,0.588104,-1.536748,-2.133383,-0.033296,-0.000306 +0.009781,0.589560,-1.529947,-2.128046,-0.033268,-0.000298 +0.009752,0.591186,-1.523006,-2.122738,-0.033239,-0.000291 +0.009722,0.592979,-1.515928,-2.117461,-0.033209,-0.000283 +0.009692,0.594938,-1.508717,-2.112216,-0.033179,-0.000276 +0.009661,0.597060,-1.501377,-2.107006,-0.033148,-0.000268 +0.009631,0.599345,-1.493911,-2.101834,-0.033118,-0.000260 +0.009599,0.601790,-1.486325,-2.096701,-0.033086,-0.000252 +0.009568,0.604393,-1.478622,-2.091609,-0.033055,-0.000243 +0.009536,0.607152,-1.470806,-2.086561,-0.033023,-0.000235 +0.009503,0.610065,-1.462882,-2.081558,-0.032990,-0.000227 +0.009471,0.613129,-1.454853,-2.076601,-0.032958,-0.000218 +0.009438,0.616342,-1.446724,-2.071694,-0.032925,-0.000209 +0.009405,0.619701,-1.438499,-2.066836,-0.032892,-0.000201 +0.009372,0.623203,-1.430183,-2.062031,-0.032859,-0.000192 +0.009338,0.626847,-1.421779,-2.057279,-0.032825,-0.000183 +0.009305,0.630628,-1.413292,-2.052583,-0.032792,-0.000174 +0.009271,0.634544,-1.404727,-2.047943,-0.032758,-0.000166 +0.009237,0.638592,-1.396088,-2.043361,-0.032724,-0.000157 +0.009204,0.642770,-1.387379,-2.038838,-0.032691,-0.000148 +0.009170,0.647073,-1.378605,-2.034376,-0.032657,-0.000139 +0.009136,0.651499,-1.369770,-2.029976,-0.032623,-0.000130 +0.009102,0.656044,-1.360879,-2.025639,-0.032589,-0.000121 +0.009068,0.660705,-1.351936,-2.021367,-0.032555,-0.000111 +0.009034,0.665479,-1.342946,-2.017160,-0.032521,-0.000102 +0.009001,0.670363,-1.333914,-2.013021,-0.032488,-0.000093 +0.008967,0.675352,-1.324845,-2.008949,-0.032454,-0.000084 +0.008934,0.680444,-1.315742,-2.004947,-0.032421,-0.000075 +0.008900,0.685634,-1.306611,-2.001015,-0.032387,-0.000066 +0.008867,0.690919,-1.297456,-1.997155,-0.032354,-0.000057 +0.008834,0.696296,-1.288282,-1.993368,-0.032321,-0.000048 +0.008801,0.701761,-1.279095,-1.989654,-0.032288,-0.000039 +0.008769,0.707310,-1.269899,-1.986015,-0.032256,-0.000030 +0.008736,0.712939,-1.260698,-1.982453,-0.032223,-0.000022 +0.008704,0.718644,-1.251499,-1.978967,-0.032191,-0.000013 +0.008672,0.724422,-1.242305,-1.975560,-0.032159,-0.000004 +0.008641,0.730268,-1.233123,-1.972232,-0.032128,0.000005 +0.008610,0.736179,-1.223956,-1.968985,-0.032097,0.000013 +0.008579,0.742151,-1.214810,-1.965820,-0.032066,0.000022 +0.008548,0.748179,-1.205691,-1.962738,-0.032035,0.000030 +0.008518,0.754260,-1.196604,-1.959739,-0.032005,0.000039 +0.008488,0.760389,-1.187554,-1.956827,-0.031975,0.000047 +0.008458,0.766563,-1.178545,-1.954000,-0.031945,0.000055 +0.008429,0.772777,-1.169585,-1.951262,-0.031916,0.000063 +0.008400,0.779027,-1.160678,-1.948613,-0.031887,0.000071 +0.008372,0.785308,-1.151829,-1.946054,-0.031859,0.000079 +0.008344,0.791618,-1.143045,-1.943586,-0.031831,0.000087 +0.008317,0.797950,-1.134330,-1.941212,-0.031804,0.000095 +0.008290,0.804302,-1.125691,-1.938932,-0.031777,0.000102 +0.008263,0.810668,-1.117134,-1.936748,-0.031750,0.000110 +0.008237,0.817044,-1.108663,-1.934662,-0.031724,0.000117 +0.008211,0.823427,-1.100285,-1.932673,-0.031698,0.000124 +0.008186,0.829811,-1.092006,-1.930785,-0.031673,0.000132 +0.008161,0.836192,-1.083832,-1.928999,-0.031648,0.000139 +0.008137,0.842565,-1.075768,-1.927315,-0.031624,0.000145 +0.008113,0.848927,-1.067820,-1.925737,-0.031600,0.000152 +0.008090,0.855273,-1.059996,-1.924264,-0.031577,0.000159 +0.008067,0.861598,-1.052299,-1.922899,-0.031554,0.000165 +0.008045,0.867897,-1.044738,-1.921644,-0.031532,0.000172 +0.008024,0.874167,-1.037318,-1.920499,-0.031511,0.000178 +0.008003,0.880403,-1.030044,-1.919467,-0.031490,0.000184 +0.007982,0.886599,-1.022923,-1.918549,-0.031469,0.000190 +0.007962,0.892753,-1.015962,-1.917747,-0.031449,0.000195 +0.007943,0.898859,-1.009166,-1.917063,-0.031430,0.000201 +0.007924,0.904912,-1.002541,-1.916497,-0.031411,0.000207 +0.007905,0.910909,-0.996094,-1.916052,-0.031392,0.000212 +0.007888,0.916845,-0.989830,-1.915729,-0.031375,0.000217 +0.007870,0.922715,-0.983756,-1.915530,-0.031357,0.000222 +0.007854,0.928516,-0.977876,-1.915456,-0.031341,0.000227 +0.007838,0.934242,-0.972198,-1.915509,-0.031325,0.000231 +0.007822,0.939890,-0.966727,-1.915690,-0.031309,0.000236 +0.007807,0.945455,-0.961468,-1.916000,-0.031294,0.000240 +0.007793,0.950934,-0.956427,-1.916442,-0.031280,0.000244 +0.007779,0.956321,-0.951610,-1.917016,-0.031267,0.000248 +0.007766,0.961614,-0.947021,-1.917724,-0.031253,0.000252 +0.007754,0.966808,-0.942665,-1.918566,-0.031241,0.000256 +0.007742,0.971900,-0.938548,-1.919544,-0.031229,0.000259 +0.007731,0.976885,-0.934674,-1.920659,-0.031218,0.000262 +0.007720,0.981761,-0.931048,-1.921911,-0.031207,0.000266 +0.007710,0.986523,-0.927673,-1.923302,-0.031197,0.000268 +0.007701,0.991169,-0.924555,-1.924832,-0.031188,0.000271 +0.007692,0.995695,-0.921696,-1.926501,-0.031179,0.000274 +0.007683,1.000098,-0.919099,-1.928311,-0.031170,0.000276 +0.007676,1.004375,-0.916770,-1.930260,-0.031163,0.000278 +0.007669,1.008524,-0.914709,-1.932350,-0.031156,0.000281 +0.007662,1.012541,-0.912919,-1.934580,-0.031149,0.000282 +0.007657,1.016425,-0.911404,-1.936950,-0.031144,0.000284 +0.007651,1.020173,-0.910165,-1.939460,-0.031138,0.000286 +0.007647,1.023783,-0.909202,-1.942109,-0.031134,0.000287 +0.007643,1.027253,-0.908519,-1.944897,-0.031130,0.000288 +0.007640,1.030582,-0.908114,-1.947822,-0.031127,0.000289 +0.007637,1.033767,-0.907990,-1.950884,-0.031124,0.000290 +0.007635,1.036808,-0.908146,-1.954082,-0.031122,0.000290 +0.007634,1.039704,-0.908582,-1.957413,-0.031121,0.000291 +0.007633,1.042452,-0.909297,-1.960877,-0.031120,0.000291 +0.007633,1.045053,-0.910291,-1.964472,-0.031120,0.000291 +0.007633,1.047506,-0.911562,-1.968196,-0.031120,0.000291 +0.007634,1.049811,-0.913108,-1.972046,-0.031121,0.000291 +0.007636,1.051966,-0.914928,-1.976021,-0.031123,0.000290 +0.007638,1.053972,-0.917020,-1.980119,-0.031125,0.000289 +0.007641,1.055830,-0.919380,-1.984335,-0.031128,0.000289 +0.007645,1.057538,-0.922006,-1.988669,-0.031132,0.000288 +0.007649,1.059098,-0.924895,-1.993116,-0.031136,0.000286 +0.007654,1.060511,-0.928043,-1.997675,-0.031141,0.000285 +0.007659,1.061775,-0.931446,-2.002341,-0.031146,0.000283 +0.007665,1.062894,-0.935100,-2.007112,-0.031152,0.000282 +0.007672,1.063866,-0.939002,-2.011985,-0.031159,0.000280 +0.007679,1.064694,-0.943146,-2.016954,-0.031166,0.000277 +0.007687,1.065378,-0.947528,-2.022018,-0.031174,0.000275 +0.007696,1.065920,-0.952144,-2.027173,-0.031183,0.000273 +0.007705,1.066320,-0.956987,-2.032414,-0.031192,0.000270 +0.007715,1.066580,-0.962053,-2.037737,-0.031202,0.000267 +0.007725,1.066703,-0.967336,-2.043139,-0.031212,0.000264 +0.007736,1.066688,-0.972831,-2.048616,-0.031223,0.000261 +0.007748,1.066537,-0.978532,-2.054164,-0.031235,0.000258 +0.007760,1.066253,-0.984434,-2.059778,-0.031247,0.000254 +0.007773,1.065837,-0.990530,-2.065454,-0.031260,0.000250 +0.007786,1.065290,-0.996815,-2.071188,-0.031273,0.000246 +0.007800,1.064614,-1.003282,-2.076976,-0.031287,0.000242 +0.007815,1.063812,-1.009927,-2.082813,-0.031302,0.000238 +0.007830,1.062883,-1.016742,-2.088696,-0.031317,0.000234 +0.007846,1.061832,-1.023722,-2.094619,-0.031333,0.000229 +0.007862,1.060658,-1.030860,-2.100579,-0.031349,0.000224 +0.007879,1.059364,-1.038150,-2.106571,-0.031366,0.000219 +0.007897,1.057951,-1.045587,-2.112590,-0.031384,0.000214 +0.007915,1.056422,-1.053164,-2.118633,-0.031402,0.000209 +0.007933,1.054778,-1.060875,-2.124694,-0.031420,0.000204 +0.007953,1.053021,-1.068714,-2.130770,-0.031440,0.000198 +0.007973,1.051153,-1.076675,-2.136857,-0.031460,0.000192 +0.007993,1.049174,-1.084752,-2.142949,-0.031480,0.000187 +0.008014,1.047087,-1.092938,-2.149043,-0.031501,0.000181 +0.008035,1.044894,-1.101229,-2.155134,-0.031522,0.000174 +0.008057,1.042595,-1.109618,-2.161218,-0.031544,0.000168 +0.008080,1.040194,-1.118099,-2.167291,-0.031567,0.000162 +0.008103,1.037690,-1.126666,-2.173348,-0.031590,0.000155 +0.008127,1.035087,-1.135314,-2.179386,-0.031614,0.000148 +0.008151,1.032384,-1.144036,-2.185399,-0.031638,0.000142 +0.008175,1.029585,-1.152828,-2.191385,-0.031662,0.000135 +0.008201,1.026690,-1.161684,-2.197338,-0.031688,0.000127 +0.008226,1.023700,-1.170597,-2.203255,-0.031713,0.000120 +0.008252,1.020618,-1.179563,-2.209131,-0.031739,0.000113 +0.008279,1.017444,-1.188577,-2.214963,-0.031766,0.000105 +0.008306,1.014180,-1.197632,-2.220746,-0.031793,0.000098 +0.008333,1.010827,-1.206723,-2.226477,-0.031820,0.000090 +0.008361,1.007387,-1.215845,-2.232151,-0.031848,0.000082 +0.008390,1.003861,-1.224993,-2.237766,-0.031877,0.000074 +0.008418,1.000250,-1.234162,-2.243316,-0.031905,0.000066 +0.008448,0.996556,-1.243346,-2.248798,-0.031935,0.000058 +0.008477,0.992780,-1.252541,-2.254208,-0.031964,0.000050 +0.008507,0.988923,-1.261741,-2.259542,-0.031994,0.000042 +0.008537,0.984986,-1.270941,-2.264798,-0.032024,0.000033 +0.008568,0.980972,-1.280137,-2.269970,-0.032055,0.000025 +0.008599,0.976880,-1.289323,-2.275056,-0.032086,0.000016 +0.008630,0.972713,-1.298494,-2.280051,-0.032117,0.000007 +0.008662,0.968471,-1.307646,-2.284953,-0.032149,-0.000001 +0.008694,0.964156,-1.316775,-2.289758,-0.032181,-0.000010 +0.008726,0.959770,-1.325874,-2.294462,-0.032213,-0.000019 +0.008759,0.955313,-1.334940,-2.299062,-0.032246,-0.000028 +0.008791,0.950787,-1.343967,-2.303555,-0.032278,-0.000037 +0.008824,0.946194,-1.352952,-2.307937,-0.032311,-0.000046 +0.008858,0.941534,-1.361889,-2.312205,-0.032345,-0.000055 +0.008891,0.936809,-1.370774,-2.316356,-0.032378,-0.000064 +0.008924,0.932021,-1.379602,-2.320388,-0.032411,-0.000073 +0.008958,0.927171,-1.388369,-2.324295,-0.032445,-0.000082 +0.008992,0.922260,-1.397071,-2.328077,-0.032479,-0.000091 +0.009026,0.917291,-1.405702,-2.331730,-0.032513,-0.000100 +0.009060,0.912265,-1.414258,-2.335251,-0.032547,-0.000109 +0.009094,0.907182,-1.422736,-2.338637,-0.032581,-0.000118 +0.009128,0.902046,-1.431130,-2.341886,-0.032615,-0.000127 +0.009162,0.896858,-1.439436,-2.344995,-0.032649,-0.000136 +0.009196,0.891620,-1.447650,-2.347962,-0.032683,-0.000146 +0.009230,0.886333,-1.455768,-2.350784,-0.032717,-0.000155 +0.009264,0.881000,-1.463785,-2.353459,-0.032751,-0.000164 +0.009298,0.875622,-1.471698,-2.355984,-0.032785,-0.000173 +0.009331,0.870201,-1.479501,-2.358358,-0.032818,-0.000181 +0.009365,0.864741,-1.487191,-2.360579,-0.032852,-0.000190 +0.009399,0.859242,-1.494764,-2.362644,-0.032886,-0.000199 +0.009432,0.853708,-1.502215,-2.364552,-0.032919,-0.000208 +0.009465,0.848140,-1.509541,-2.366302,-0.032952,-0.000217 +0.009498,0.842542,-1.516737,-2.367891,-0.032985,-0.000225 +0.009530,0.836915,-1.523800,-2.369318,-0.033017,-0.000234 +0.009562,0.831262,-1.530725,-2.370583,-0.033049,-0.000242 +0.009594,0.825586,-1.537510,-2.371683,-0.033081,-0.000250 +0.009626,0.819890,-1.544149,-2.372618,-0.033113,-0.000258 +0.009657,0.814177,-1.550639,-2.373387,-0.033144,-0.000266 +0.009688,0.808450,-1.556977,-2.373989,-0.033175,-0.000274 +0.009718,0.802711,-1.563158,-2.374424,-0.033205,-0.000282 +0.009748,0.796964,-1.569179,-2.374691,-0.033235,-0.000290 +0.009777,0.791212,-1.575038,-2.374789,-0.033264,-0.000297 +0.009806,0.785459,-1.580729,-2.374720,-0.033293,-0.000305 +0.009834,0.779708,-1.586250,-2.374483,-0.033321,-0.000312 +0.009861,0.773962,-1.591597,-2.374077,-0.033348,-0.000319 +0.009888,0.768225,-1.596768,-2.373504,-0.033375,-0.000326 +0.009915,0.762501,-1.601759,-2.372765,-0.033401,-0.000333 +0.009940,0.756794,-1.606566,-2.371858,-0.033427,-0.000339 +0.009965,0.751107,-1.611188,-2.370787,-0.033452,-0.000345 +0.009989,0.745445,-1.615620,-2.369551,-0.033476,-0.000352 +0.010013,0.739811,-1.619861,-2.368152,-0.033500,-0.000358 +0.010035,0.734210,-1.623908,-2.366591,-0.033522,-0.000363 +0.010057,0.728645,-1.627757,-2.364871,-0.033544,-0.000369 +0.010078,0.723121,-1.631407,-2.362991,-0.033565,-0.000374 +0.010098,0.717643,-1.634855,-2.360956,-0.033585,-0.000379 +0.010118,0.712214,-1.638099,-2.358766,-0.033604,-0.000384 +0.010136,0.706838,-1.641137,-2.356423,-0.033623,-0.000389 +0.010153,0.701521,-1.643966,-2.353931,-0.033640,-0.000393 +0.010170,0.696267,-1.646585,-2.351292,-0.033657,-0.000397 +0.010185,0.691079,-1.648993,-2.348508,-0.033672,-0.000401 +0.010200,0.685963,-1.651187,-2.345583,-0.033687,-0.000405 +0.010213,0.680923,-1.653166,-2.342518,-0.033700,-0.000408 +0.010226,0.675964,-1.654929,-2.339318,-0.033713,-0.000411 +0.010238,0.671089,-1.656474,-2.335986,-0.033724,-0.000414 +0.010248,0.666303,-1.657801,-2.332525,-0.033735,-0.000417 +0.010257,0.661612,-1.658908,-2.328938,-0.033744,-0.000419 +0.010266,0.657018,-1.659795,-2.325229,-0.033753,-0.000421 +0.010273,0.652526,-1.660462,-2.321402,-0.033760,-0.000423 +0.010279,0.648142,-1.660907,-2.317461,-0.033766,-0.000424 +0.010284,0.643868,-1.661130,-2.313410,-0.033771,-0.000426 +0.010288,0.639709,-1.661132,-2.309251,-0.033775,-0.000427 +0.010291,0.635669,-1.660912,-2.304991,-0.033778,-0.000427 +0.010293,0.631751,-1.660471,-2.300632,-0.033780,-0.000428 +0.010294,0.627961,-1.659808,-2.296179,-0.033780,-0.000428 +0.010293,0.624301,-1.658925,-2.291635,-0.033780,-0.000428 +0.010291,0.620775,-1.657821,-2.287006,-0.033778,-0.000428 +0.010289,0.617387,-1.656498,-2.282296,-0.033776,-0.000427 +0.010285,0.614140,-1.654957,-2.277508,-0.033772,-0.000426 +0.010280,0.611038,-1.653198,-2.272648,-0.033767,-0.000425 +0.010274,0.608083,-1.651222,-2.267719,-0.033761,-0.000423 +0.010267,0.605278,-1.649032,-2.262726,-0.033754,-0.000421 +0.010259,0.602626,-1.646628,-2.257672,-0.033746,-0.000419 +0.010250,0.600131,-1.644012,-2.252563,-0.033737,-0.000417 +0.010240,0.597794,-1.641186,-2.247403,-0.033727,-0.000415 +0.010228,0.595617,-1.638152,-2.242195,-0.033715,-0.000412 +0.010216,0.593604,-1.634912,-2.236944,-0.033703,-0.000409 +0.010203,0.591755,-1.631467,-2.231655,-0.033690,-0.000405 +0.010188,0.590074,-1.627821,-2.226330,-0.033675,-0.000402 +0.010173,0.588560,-1.623975,-2.220974,-0.033660,-0.000398 +0.010157,0.587217,-1.619932,-2.215592,-0.033644,-0.000394 +0.010140,0.586045,-1.615694,-2.210187,-0.033627,-0.000390 +0.010121,0.585045,-1.611265,-2.204762,-0.033608,-0.000385 +0.010102,0.584219,-1.606646,-2.199322,-0.033589,-0.000380 +0.010083,0.583566,-1.601842,-2.193870,-0.033569,-0.000375 +0.010062,0.583088,-1.596854,-2.188410,-0.033549,-0.000370 +0.010040,0.582786,-1.591687,-2.182945,-0.033527,-0.000364 +0.010018,0.582658,-1.586342,-2.177479,-0.033505,-0.000359 +0.009995,0.582706,-1.580824,-2.172015,-0.033482,-0.000353 +0.009971,0.582929,-1.575136,-2.166556,-0.033458,-0.000347 +0.009946,0.583328,-1.569281,-2.161105,-0.033433,-0.000341 +0.009921,0.583901,-1.563262,-2.155666,-0.033408,-0.000334 +0.009895,0.584648,-1.557083,-2.150241,-0.033382,-0.000328 +0.009868,0.585569,-1.550748,-2.144833,-0.033355,-0.000321 +0.009841,0.586662,-1.544261,-2.139446,-0.033328,-0.000314 +0.009813,0.587926,-1.537624,-2.134081,-0.033300,-0.000307 +0.009784,0.589361,-1.530842,-2.128741,-0.033271,-0.000299 +0.009755,0.590965,-1.523919,-2.123429,-0.033242,-0.000292 +0.009726,0.592736,-1.516859,-2.118147,-0.033213,-0.000284 +0.009696,0.594673,-1.509665,-2.112898,-0.033183,-0.000277 +0.009665,0.596774,-1.502341,-2.107684,-0.033152,-0.000269 +0.009635,0.599038,-1.494892,-2.102507,-0.033122,-0.000261 +0.009603,0.601462,-1.487321,-2.097368,-0.033090,-0.000253 +0.009572,0.604045,-1.479633,-2.092271,-0.033059,-0.000244 +0.009540,0.606784,-1.471832,-2.087217,-0.033027,-0.000236 +0.009508,0.609677,-1.463922,-2.082208,-0.032995,-0.000228 +0.009475,0.612721,-1.455906,-2.077245,-0.032962,-0.000219 +0.009442,0.615914,-1.447790,-2.072331,-0.032929,-0.000211 +0.009409,0.619254,-1.439577,-2.067467,-0.032896,-0.000202 +0.009376,0.622738,-1.431273,-2.062655,-0.032863,-0.000193 +0.009343,0.626363,-1.422880,-2.057896,-0.032830,-0.000184 +0.009309,0.630127,-1.414404,-2.053192,-0.032796,-0.000176 +0.009276,0.634026,-1.405849,-2.048545,-0.032762,-0.000167 +0.009242,0.638057,-1.397219,-2.043955,-0.032729,-0.000158 +0.009208,0.642217,-1.388519,-2.039425,-0.032695,-0.000149 +0.009174,0.646504,-1.379753,-2.034955,-0.032661,-0.000140 +0.009140,0.650914,-1.370926,-2.030546,-0.032627,-0.000131 +0.009106,0.655444,-1.362042,-2.026201,-0.032593,-0.000122 +0.009073,0.660091,-1.353105,-2.021921,-0.032560,-0.000113 +0.009039,0.664850,-1.344122,-2.017705,-0.032526,-0.000104 +0.009005,0.669720,-1.335095,-2.013557,-0.032492,-0.000095 +0.008971,0.674695,-1.326030,-2.009477,-0.032458,-0.000085 +0.008938,0.679774,-1.316931,-2.005465,-0.032425,-0.000076 +0.008905,0.684951,-1.307803,-2.001524,-0.032392,-0.000067 +0.008871,0.690225,-1.298651,-1.997655,-0.032358,-0.000058 +0.008838,0.695590,-1.289480,-1.993858,-0.032325,-0.000049 +0.008806,0.701043,-1.280294,-1.990134,-0.032293,-0.000040 +0.008773,0.706581,-1.271099,-1.986486,-0.032260,-0.000032 +0.008741,0.712200,-1.261899,-1.982913,-0.032228,-0.000023 +0.008708,0.717896,-1.252699,-1.979417,-0.032195,-0.000014 +0.008677,0.723664,-1.243504,-1.976000,-0.032164,-0.000005 +0.008645,0.729502,-1.234320,-1.972662,-0.032132,0.000003 +0.008614,0.735405,-1.225151,-1.969404,-0.032101,0.000012 +0.008583,0.741368,-1.216002,-1.966228,-0.032070,0.000021 +0.008552,0.747390,-1.206879,-1.963135,-0.032039,0.000029 +0.008522,0.753464,-1.197787,-1.960126,-0.032009,0.000038 +0.008492,0.759587,-1.188732,-1.957202,-0.031979,0.000046 +0.008462,0.765755,-1.179718,-1.954364,-0.031949,0.000054 +0.008433,0.771964,-1.170751,-1.951614,-0.031920,0.000062 +0.008404,0.778209,-1.161836,-1.948953,-0.031891,0.000070 +0.008376,0.784487,-1.152980,-1.946382,-0.031863,0.000078 +0.008348,0.790793,-1.144187,-1.943903,-0.031835,0.000086 +0.008320,0.797123,-1.135463,-1.941517,-0.031807,0.000094 +0.008293,0.803472,-1.126814,-1.939224,-0.031780,0.000101 +0.008266,0.809837,-1.118245,-1.937028,-0.031753,0.000109 +0.008240,0.816212,-1.109763,-1.934928,-0.031727,0.000116 +0.008215,0.822594,-1.101373,-1.932927,-0.031702,0.000124 +0.008189,0.828978,-1.093080,-1.931026,-0.031676,0.000131 +0.008164,0.835360,-1.084892,-1.929226,-0.031651,0.000138 +0.008140,0.841734,-1.076813,-1.927529,-0.031627,0.000145 +0.008116,0.848098,-1.068850,-1.925937,-0.031603,0.000151 +0.008093,0.854446,-1.061009,-1.924450,-0.031580,0.000158 +0.008070,0.860774,-1.053296,-1.923071,-0.031557,0.000164 +0.008048,0.867077,-1.045717,-1.921801,-0.031535,0.000171 +0.008026,0.873351,-1.038277,-1.920642,-0.031513,0.000177 +0.008005,0.879591,-1.030984,-1.919595,-0.031492,0.000183 +0.007985,0.885793,-1.023843,-1.918663,-0.031472,0.000189 +0.007965,0.891953,-1.016861,-1.917845,-0.031452,0.000195 +0.007945,0.898065,-1.010043,-1.917145,-0.031432,0.000200 +0.007926,0.904126,-1.003396,-1.916564,-0.031413,0.000206 +0.007908,0.910130,-0.996925,-1.916103,-0.031395,0.000211 +0.007890,0.916074,-0.990637,-1.915764,-0.031377,0.000216 +0.007873,0.921953,-0.984537,-1.915549,-0.031360,0.000221 +0.007856,0.927763,-0.978632,-1.915458,-0.031343,0.000226 +0.007840,0.933499,-0.972927,-1.915494,-0.031327,0.000231 +0.007824,0.939158,-0.967429,-1.915659,-0.031311,0.000235 +0.007809,0.944734,-0.962142,-1.915952,-0.031296,0.000240 +0.007795,0.950224,-0.957072,-1.916377,-0.031282,0.000244 +0.007781,0.955624,-0.952225,-1.916934,-0.031268,0.000248 +0.007768,0.960929,-0.947606,-1.917624,-0.031255,0.000252 +0.007755,0.966137,-0.943220,-1.918449,-0.031243,0.000255 +0.007744,0.971242,-0.939071,-1.919409,-0.031231,0.000259 +0.007732,0.976241,-0.935166,-1.920506,-0.031219,0.000262 +0.007721,0.981131,-0.931507,-1.921740,-0.031208,0.000265 +0.007711,0.985909,-0.928099,-1.923113,-0.031198,0.000268 +0.007702,0.990570,-0.924947,-1.924624,-0.031189,0.000271 +0.007693,0.995112,-0.922054,-1.926276,-0.031180,0.000274 +0.007684,0.999531,-0.919423,-1.928067,-0.031171,0.000276 +0.007677,1.003824,-0.917058,-1.929998,-0.031164,0.000278 +0.007670,1.007990,-0.914962,-1.932069,-0.031157,0.000280 +0.007663,1.012025,-0.913137,-1.934281,-0.031150,0.000282 +0.007657,1.015926,-0.911586,-1.936633,-0.031144,0.000284 +0.007652,1.019692,-0.910311,-1.939125,-0.031139,0.000285 +0.007647,1.023320,-0.909312,-1.941756,-0.031135,0.000287 +0.007643,1.026809,-0.908592,-1.944526,-0.031131,0.000288 +0.007640,1.030156,-0.908151,-1.947433,-0.031127,0.000289 +0.007637,1.033360,-0.907991,-1.950477,-0.031124,0.000290 +0.007635,1.036420,-0.908110,-1.953657,-0.031122,0.000290 +0.007634,1.039334,-0.908509,-1.956971,-0.031121,0.000291 +0.007633,1.042102,-0.909188,-1.960418,-0.031120,0.000291 +0.007633,1.044722,-0.910146,-1.963996,-0.031120,0.000291 +0.007633,1.047195,-0.911380,-1.967703,-0.031120,0.000291 +0.007634,1.049518,-0.912891,-1.971537,-0.031121,0.000291 +0.007636,1.051693,-0.914675,-1.975496,-0.031123,0.000290 +0.007638,1.053719,-0.916732,-1.979577,-0.031125,0.000290 +0.007641,1.055596,-0.919057,-1.983778,-0.031128,0.000289 +0.007644,1.057324,-0.921649,-1.988097,-0.031131,0.000288 +0.007648,1.058903,-0.924503,-1.992530,-0.031135,0.000287 +0.007653,1.060335,-0.927617,-1.997074,-0.031140,0.000285 +0.007658,1.061619,-0.930987,-2.001727,-0.031145,0.000284 +0.007664,1.062756,-0.934609,-2.006484,-0.031151,0.000282 +0.007671,1.063747,-0.938479,-2.011343,-0.031158,0.000280 +0.007678,1.064594,-0.942592,-2.016301,-0.031165,0.000278 +0.007686,1.065297,-0.946943,-2.021353,-0.031173,0.000275 +0.007695,1.065857,-0.951529,-2.026495,-0.031182,0.000273 +0.007704,1.066276,-0.956342,-2.031725,-0.031191,0.000270 +0.007713,1.066554,-0.961379,-2.037038,-0.031200,0.000268 +0.007724,1.066694,-0.966635,-2.042430,-0.031211,0.000265 +0.007735,1.066697,-0.972102,-2.047898,-0.031222,0.000261 +0.007746,1.066565,-0.977777,-2.053436,-0.031233,0.000258 +0.007758,1.066298,-0.983653,-2.059042,-0.031245,0.000254 +0.007771,1.065899,-0.989724,-2.064710,-0.031258,0.000251 +0.007784,1.065369,-0.995984,-2.070437,-0.031271,0.000247 +0.007798,1.064710,-1.002429,-2.076218,-0.031285,0.000243 +0.007813,1.063923,-1.009050,-2.082049,-0.031300,0.000239 +0.007828,1.063012,-1.015844,-2.087926,-0.031315,0.000234 +0.007844,1.061976,-1.022802,-2.093844,-0.031331,0.000230 +0.007860,1.060818,-1.029920,-2.099800,-0.031347,0.000225 +0.007877,1.059539,-1.037191,-2.105787,-0.031364,0.000220 +0.007894,1.058142,-1.044609,-2.111803,-0.031381,0.000215 +0.007912,1.056628,-1.052168,-2.117843,-0.031399,0.000210 +0.007931,1.054999,-1.059862,-2.123903,-0.031418,0.000204 +0.007950,1.053257,-1.067685,-2.129977,-0.031437,0.000199 +0.007970,1.051403,-1.075630,-2.136063,-0.031457,0.000193 +0.007990,1.049438,-1.083692,-2.142154,-0.031477,0.000187 +0.008011,1.047365,-1.091864,-2.148248,-0.031498,0.000181 +0.008033,1.045186,-1.100142,-2.154340,-0.031520,0.000175 +0.008054,1.042901,-1.108518,-2.160425,-0.031541,0.000169 +0.008077,1.040513,-1.116987,-2.166500,-0.031564,0.000163 +0.008100,1.038023,-1.125544,-2.172559,-0.031587,0.000156 +0.008124,1.035432,-1.134181,-2.178599,-0.031611,0.000149 +0.008148,1.032742,-1.142894,-2.184616,-0.031635,0.000143 +0.008172,1.029956,-1.151678,-2.190606,-0.031659,0.000136 +0.008197,1.027073,-1.160525,-2.196563,-0.031684,0.000128 +0.008223,1.024095,-1.169431,-2.202485,-0.031710,0.000121 +0.008249,1.021025,-1.178391,-2.208367,-0.031736,0.000114 +0.008275,1.017863,-1.187398,-2.214205,-0.031762,0.000106 +0.008302,1.014611,-1.196448,-2.219995,-0.031789,0.000099 +0.008330,1.011269,-1.205535,-2.225733,-0.031817,0.000091 +0.008358,1.007841,-1.214654,-2.231415,-0.031845,0.000083 +0.008386,1.004326,-1.223799,-2.237037,-0.031873,0.000075 +0.008415,1.000726,-1.232965,-2.242595,-0.031902,0.000067 +0.008444,0.997043,-1.242147,-2.248086,-0.031931,0.000059 +0.008473,0.993277,-1.251341,-2.253506,-0.031960,0.000051 +0.008503,0.989431,-1.260541,-2.258851,-0.031990,0.000043 +0.008533,0.985504,-1.269741,-2.264117,-0.032020,0.000034 +0.008564,0.981500,-1.278937,-2.269300,-0.032051,0.000026 +0.008595,0.977418,-1.288125,-2.274397,-0.032082,0.000017 +0.008626,0.973261,-1.297299,-2.279405,-0.032113,0.000009 +0.008658,0.969029,-1.306454,-2.284319,-0.032145,-0.000000 +0.008690,0.964723,-1.315585,-2.289137,-0.032177,-0.000009 +0.008722,0.960346,-1.324689,-2.293854,-0.032209,-0.000018 +0.008754,0.955898,-1.333759,-2.298468,-0.032241,-0.000027 +0.008787,0.951381,-1.342792,-2.302975,-0.032274,-0.000035 +0.008820,0.946797,-1.351783,-2.307372,-0.032307,-0.000044 +0.008853,0.942145,-1.360726,-2.311655,-0.032340,-0.000053 +0.008887,0.937429,-1.369618,-2.315822,-0.032374,-0.000062 +0.008920,0.932649,-1.378454,-2.319869,-0.032407,-0.000072 +0.008954,0.927807,-1.387229,-2.323793,-0.032441,-0.000081 +0.008987,0.922904,-1.395940,-2.327591,-0.032474,-0.000090 +0.009021,0.917943,-1.404580,-2.331261,-0.032508,-0.000099 +0.009055,0.912923,-1.413147,-2.334799,-0.032542,-0.000108 +0.009089,0.907848,-1.421635,-2.338203,-0.032576,-0.000117 +0.009123,0.902719,-1.430040,-2.341470,-0.032610,-0.000126 +0.009157,0.897538,-1.438357,-2.344597,-0.032644,-0.000135 +0.009191,0.892307,-1.446582,-2.347582,-0.032678,-0.000144 +0.009225,0.887029,-1.454709,-2.350422,-0.032712,-0.000153 +0.009259,0.881707,-1.462733,-2.353114,-0.032746,-0.000162 +0.009293,0.876342,-1.470649,-2.355656,-0.032780,-0.000171 +0.009327,0.870937,-1.478452,-2.358046,-0.032814,-0.000180 +0.009360,0.865496,-1.486138,-2.360282,-0.032847,-0.000189 +0.009394,0.860020,-1.493703,-2.362362,-0.032881,-0.000198 +0.009427,0.854514,-1.501141,-2.364285,-0.032914,-0.000207 +0.009460,0.848979,-1.508448,-2.366049,-0.032947,-0.000215 +0.009493,0.843420,-1.515620,-2.367653,-0.032979,-0.000224 +0.009525,0.837839,-1.522652,-2.369096,-0.033012,-0.000232 +0.009557,0.832239,-1.529541,-2.370376,-0.033044,-0.000241 +0.009588,0.826623,-1.536283,-2.371495,-0.033075,-0.000249 +0.009620,0.820996,-1.542873,-2.372450,-0.033107,-0.000257 +0.009650,0.815360,-1.549309,-2.373241,-0.033137,-0.000265 +0.009681,0.809719,-1.555586,-2.373870,-0.033168,-0.000273 +0.009711,0.804077,-1.561702,-2.374335,-0.033198,-0.000280 +0.009740,0.798436,-1.567653,-2.374638,-0.033227,-0.000288 +0.009769,0.792802,-1.573435,-2.374779,-0.033256,-0.000295 +0.009797,0.787177,-1.579047,-2.374758,-0.033284,-0.000303 +0.009825,0.781565,-1.584485,-2.374578,-0.033312,-0.000310 +0.009852,0.775971,-1.589747,-2.374238,-0.033339,-0.000317 +0.009878,0.770397,-1.594830,-2.373741,-0.033365,-0.000323 +0.009904,0.764848,-1.599733,-2.373088,-0.033391,-0.000330 +0.009929,0.759328,-1.604452,-2.372282,-0.033416,-0.000336 +0.009953,0.753841,-1.608987,-2.371323,-0.033440,-0.000342 +0.009977,0.748390,-1.613336,-2.370215,-0.033464,-0.000348 +0.010000,0.742980,-1.617497,-2.368960,-0.033487,-0.000354 +0.010022,0.737614,-1.621469,-2.367560,-0.033509,-0.000360 +0.010043,0.732296,-1.625251,-2.366019,-0.033530,-0.000365 +0.010063,0.727030,-1.628842,-2.364339,-0.033550,-0.000370 +0.010083,0.721820,-1.632242,-2.362523,-0.033570,-0.000375 +0.010102,0.716669,-1.635450,-2.360576,-0.033589,-0.000380 +0.010120,0.711582,-1.638465,-2.358499,-0.033607,-0.000385 +0.010137,0.706561,-1.641288,-2.356298,-0.033624,-0.000389 +0.010153,0.701611,-1.643920,-2.353975,-0.033640,-0.000393 +0.010168,0.696735,-1.646359,-2.351535,-0.033655,-0.000397 +0.010183,0.691936,-1.648608,-2.348980,-0.033670,-0.000400 +0.010196,0.687218,-1.650666,-2.346317,-0.033683,-0.000404 +0.010209,0.682583,-1.652535,-2.343548,-0.033696,-0.000407 +0.010221,0.678035,-1.654215,-2.340678,-0.033708,-0.000410 +0.010232,0.673577,-1.655709,-2.337711,-0.033719,-0.000413 +0.010242,0.669211,-1.657018,-2.334651,-0.033729,-0.000415 +0.010251,0.664941,-1.658143,-2.331503,-0.033738,-0.000417 +0.010259,0.660768,-1.659086,-2.328272,-0.033746,-0.000419 +0.010266,0.656695,-1.659850,-2.324961,-0.033753,-0.000421 +0.010273,0.652725,-1.660437,-2.321576,-0.033760,-0.000423 +0.010278,0.648859,-1.660849,-2.318120,-0.033765,-0.000424 +0.010283,0.645099,-1.661088,-2.314599,-0.033770,-0.000425 +0.010287,0.641447,-1.661159,-2.311016,-0.033774,-0.000426 +0.010290,0.637903,-1.661062,-2.307376,-0.033777,-0.000427 +0.010292,0.634470,-1.660802,-2.303682,-0.033779,-0.000428 +0.010293,0.631148,-1.660382,-2.299939,-0.033780,-0.000428 +0.010294,0.627937,-1.659803,-2.296149,-0.033780,-0.000428 +0.010293,0.624838,-1.659071,-2.292318,-0.033780,-0.000428 +0.010292,0.621852,-1.658187,-2.288448,-0.033779,-0.000428 +0.010290,0.618980,-1.657154,-2.284544,-0.033777,-0.000427 +0.010288,0.616221,-1.655977,-2.280608,-0.033775,-0.000427 +0.010284,0.613575,-1.654658,-2.276645,-0.033771,-0.000426 +0.010280,0.611043,-1.653201,-2.272657,-0.033767,-0.000425 +0.010275,0.608625,-1.651609,-2.268647,-0.033762,-0.000424 +0.010270,0.606320,-1.649885,-2.264620,-0.033757,-0.000422 +0.010264,0.604128,-1.648032,-2.260577,-0.033751,-0.000421 +0.010257,0.602049,-1.646055,-2.256522,-0.033744,-0.000419 +0.010250,0.600081,-1.643956,-2.252458,-0.033737,-0.000417 +0.010242,0.598226,-1.641739,-2.248387,-0.033729,-0.000415 +0.010233,0.596481,-1.639408,-2.244313,-0.033720,-0.000413 +0.010224,0.594845,-1.636965,-2.240237,-0.033711,-0.000411 +0.010214,0.593319,-1.634414,-2.236162,-0.033701,-0.000408 +0.010204,0.591901,-1.631758,-2.232091,-0.033691,-0.000406 +0.010193,0.590590,-1.629001,-2.228025,-0.033680,-0.000403 +0.010182,0.589384,-1.626146,-2.223968,-0.033669,-0.000400 +0.010170,0.588283,-1.623197,-2.219921,-0.033657,-0.000397 +0.010158,0.587286,-1.620156,-2.215885,-0.033645,-0.000394 +0.010145,0.586390,-1.617028,-2.211864,-0.033632,-0.000391 +0.010132,0.585594,-1.613815,-2.207859,-0.033619,-0.000388 +0.010118,0.584898,-1.610520,-2.203871,-0.033605,-0.000384 +0.010105,0.584298,-1.607147,-2.199902,-0.033591,-0.000381 +0.010090,0.583795,-1.603699,-2.195954,-0.033577,-0.000377 +0.010076,0.583385,-1.600180,-2.192029,-0.033563,-0.000373 +0.010061,0.583068,-1.596591,-2.188127,-0.033548,-0.000370 +0.010045,0.582842,-1.592937,-2.184250,-0.033532,-0.000366 +0.010030,0.582704,-1.589220,-2.180399,-0.033517,-0.000362 +0.010014,0.582654,-1.585443,-2.176576,-0.033501,-0.000358 +0.009998,0.582689,-1.581609,-2.172781,-0.033485,-0.000354 +0.009982,0.582807,-1.577722,-2.169016,-0.033469,-0.000350 +0.009965,0.583007,-1.573783,-2.165282,-0.033452,-0.000345 +0.009948,0.583286,-1.569796,-2.161579,-0.033435,-0.000341 +0.009931,0.583643,-1.565764,-2.157908,-0.033418,-0.000337 +0.009914,0.584076,-1.561689,-2.154271,-0.033401,-0.000332 +0.009897,0.584583,-1.557575,-2.150667,-0.033384,-0.000328 +0.009879,0.585162,-1.553422,-2.147098,-0.033366,-0.000324 +0.009862,0.585810,-1.549235,-2.143564,-0.033349,-0.000319 +0.009844,0.586527,-1.545016,-2.140065,-0.033331,-0.000315 +0.009826,0.587310,-1.540767,-2.136603,-0.033313,-0.000310 +0.009808,0.588156,-1.536490,-2.133178,-0.033295,-0.000305 +0.009790,0.589065,-1.532189,-2.129790,-0.033277,-0.000301 +0.009772,0.590034,-1.527865,-2.126440,-0.033259,-0.000296 +0.009754,0.591061,-1.523520,-2.123127,-0.033241,-0.000291 +0.009735,0.592145,-1.519158,-2.119853,-0.033222,-0.000287 +0.009717,0.593282,-1.514779,-2.116617,-0.033204,-0.000282 +0.009699,0.594473,-1.510387,-2.113419,-0.033186,-0.000277 +0.009681,0.595713,-1.505983,-2.110261,-0.033168,-0.000273 +0.009662,0.597003,-1.501570,-2.107142,-0.033149,-0.000268 +0.009644,0.598339,-1.497149,-2.104062,-0.033131,-0.000263 +0.009626,0.599720,-1.492722,-2.101021,-0.033113,-0.000258 +0.009607,0.601145,-1.488292,-2.098020,-0.033094,-0.000254 +0.009589,0.602611,-1.483860,-2.095058,-0.033076,-0.000249 +0.009571,0.604116,-1.479427,-2.092136,-0.033058,-0.000244 +0.009553,0.605659,-1.474997,-2.089253,-0.033040,-0.000239 +0.009535,0.607238,-1.470569,-2.086410,-0.033022,-0.000235 +0.009517,0.608851,-1.466147,-2.083606,-0.033004,-0.000230 +0.009499,0.610497,-1.461732,-2.080841,-0.032986,-0.000225 +0.009481,0.612174,-1.457325,-2.078115,-0.032968,-0.000221 +0.009463,0.613880,-1.452928,-2.075429,-0.032950,-0.000216 +0.009445,0.615614,-1.448542,-2.072782,-0.032932,-0.000211 +0.009428,0.617374,-1.444169,-2.070174,-0.032915,-0.000207 +0.009410,0.619158,-1.439811,-2.067604,-0.032897,-0.000202 +0.009393,0.620965,-1.435468,-2.065073,-0.032880,-0.000198 +0.009376,0.622794,-1.431142,-2.062580,-0.032862,-0.000193 +0.009358,0.624643,-1.426834,-2.060126,-0.032845,-0.000189 +0.009341,0.626510,-1.422546,-2.057709,-0.032828,-0.000184 +0.009324,0.628394,-1.418279,-2.055330,-0.032811,-0.000180 +0.009308,0.630293,-1.414034,-2.052989,-0.032795,-0.000175 +0.009291,0.632207,-1.409812,-2.050685,-0.032778,-0.000171 +0.009275,0.634134,-1.405614,-2.048418,-0.032762,-0.000166 +0.009258,0.636073,-1.401441,-2.046188,-0.032745,-0.000162 +0.009242,0.638021,-1.397294,-2.043995,-0.032729,-0.000158 +0.009226,0.639979,-1.393175,-2.041838,-0.032713,-0.000154 +0.009210,0.641944,-1.389085,-2.039716,-0.032697,-0.000149 +0.009194,0.643916,-1.385023,-2.037631,-0.032681,-0.000145 +0.009179,0.645893,-1.380992,-2.035581,-0.032666,-0.000141 +0.009164,0.647874,-1.376991,-2.033566,-0.032650,-0.000137 +0.009148,0.649858,-1.373023,-2.031585,-0.032635,-0.000133 +0.009133,0.651844,-1.369087,-2.029640,-0.032620,-0.000129 +0.009118,0.653831,-1.365184,-2.027728,-0.032605,-0.000125 +0.009104,0.655818,-1.361316,-2.025850,-0.032591,-0.000121 +0.009089,0.657803,-1.357483,-2.024006,-0.032576,-0.000117 +0.009075,0.659787,-1.353685,-2.022195,-0.032562,-0.000113 +0.009061,0.661766,-1.349923,-2.020418,-0.032548,-0.000109 +0.009047,0.663742,-1.346199,-2.018672,-0.032534,-0.000106 +0.009033,0.665712,-1.342512,-2.016959,-0.032520,-0.000102 +0.009019,0.667677,-1.338863,-2.015278,-0.032506,-0.000098 +0.009006,0.669634,-1.335252,-2.013629,-0.032493,-0.000095 +0.008992,0.671583,-1.331681,-2.012010,-0.032479,-0.000091 +0.008979,0.673524,-1.328149,-2.010423,-0.032466,-0.000088 +0.008966,0.675455,-1.324658,-2.008867,-0.032453,-0.000084 +0.008954,0.677376,-1.321207,-2.007340,-0.032441,-0.000081 +0.008941,0.679286,-1.317798,-2.005844,-0.032428,-0.000077 +0.008929,0.681184,-1.314429,-2.004377,-0.032416,-0.000074 +0.008917,0.683070,-1.311103,-2.002940,-0.032404,-0.000071 +0.008905,0.684942,-1.307819,-2.001531,-0.032392,-0.000067 +0.008893,0.686801,-1.304578,-2.000151,-0.032380,-0.000064 +0.008881,0.688644,-1.301379,-1.998800,-0.032368,-0.000061 +0.008870,0.690473,-1.298224,-1.997476,-0.032357,-0.000058 +0.008859,0.692285,-1.295112,-1.996180,-0.032346,-0.000055 +0.008848,0.694082,-1.292045,-1.994911,-0.032335,-0.000052 +0.008837,0.695861,-1.289021,-1.993670,-0.032324,-0.000049 +0.008826,0.697622,-1.286042,-1.992455,-0.032313,-0.000046 +0.008816,0.699365,-1.283107,-1.991266,-0.032303,-0.000043 +0.008805,0.701089,-1.280217,-1.990103,-0.032292,-0.000040 +0.008795,0.702795,-1.277373,-1.988966,-0.032282,-0.000038 +0.008785,0.704480,-1.274573,-1.987855,-0.032272,-0.000035 +0.008775,0.706145,-1.271819,-1.986768,-0.032262,-0.000032 +0.008766,0.707789,-1.269110,-1.985707,-0.032253,-0.000030 +0.008757,0.709413,-1.266447,-1.984670,-0.032244,-0.000027 +0.008747,0.711014,-1.263830,-1.983657,-0.032234,-0.000025 +0.008738,0.712594,-1.261259,-1.982667,-0.032225,-0.000022 +0.008729,0.714151,-1.258733,-1.981702,-0.032216,-0.000020 +0.008721,0.715685,-1.256254,-1.980759,-0.032208,-0.000017 +0.008712,0.717196,-1.253822,-1.979840,-0.032199,-0.000015 +0.008704,0.718684,-1.251435,-1.978943,-0.032191,-0.000013 +0.008696,0.720147,-1.249095,-1.978069,-0.032183,-0.000011 +0.008688,0.721587,-1.246801,-1.977217,-0.032175,-0.000008 +0.008680,0.723002,-1.244554,-1.976386,-0.032167,-0.000006 +0.008673,0.724391,-1.242353,-1.975578,-0.032160,-0.000004 +0.008665,0.725756,-1.240199,-1.974790,-0.032152,-0.000002 +0.008658,0.727095,-1.238092,-1.974024,-0.032145,-0.000000 +0.008651,0.728408,-1.236031,-1.973278,-0.032138,0.000002 +0.008644,0.729696,-1.234016,-1.972553,-0.032131,0.000004 +0.008637,0.730957,-1.232049,-1.971848,-0.032124,0.000006 +0.008631,0.732191,-1.230128,-1.971163,-0.032118,0.000007 +0.008624,0.733399,-1.228253,-1.970498,-0.032111,0.000009 +0.008618,0.734579,-1.226425,-1.969853,-0.032105,0.000011 +0.008612,0.735733,-1.224644,-1.969226,-0.032099,0.000013 +0.008606,0.736859,-1.222909,-1.968619,-0.032093,0.000014 +0.008600,0.737957,-1.221221,-1.968031,-0.032087,0.000016 +0.008595,0.739028,-1.219579,-1.967461,-0.032082,0.000017 +0.008589,0.740070,-1.217984,-1.966910,-0.032076,0.000019 +0.008584,0.741084,-1.216435,-1.966377,-0.032071,0.000020 +0.008579,0.742070,-1.214933,-1.965862,-0.032066,0.000022 +0.008574,0.743028,-1.213477,-1.965365,-0.032061,0.000023 +0.008569,0.743957,-1.212067,-1.964885,-0.032056,0.000024 +0.008565,0.744857,-1.210703,-1.964423,-0.032052,0.000026 +0.008560,0.745728,-1.209386,-1.963978,-0.032047,0.000027 +0.008556,0.746570,-1.208115,-1.963550,-0.032043,0.000028 +0.008552,0.747382,-1.206890,-1.963139,-0.032039,0.000029 +0.008548,0.748166,-1.205711,-1.962744,-0.032035,0.000030 +0.008544,0.748920,-1.204578,-1.962366,-0.032031,0.000031 +0.008541,0.749645,-1.203491,-1.962005,-0.032028,0.000032 +0.008537,0.750341,-1.202448,-1.961659,-0.032024,0.000033 +0.008534,0.751009,-1.201449,-1.961329,-0.032021,0.000034 +0.008531,0.751649,-1.200492,-1.961013,-0.032018,0.000035 +0.008528,0.752263,-1.199576,-1.960712,-0.032015,0.000036 +0.008525,0.752850,-1.198702,-1.960425,-0.032012,0.000037 +0.008522,0.753410,-1.197867,-1.960152,-0.032009,0.000037 +0.008519,0.753946,-1.197071,-1.959892,-0.032006,0.000038 +0.008517,0.754456,-1.196312,-1.959644,-0.032004,0.000039 +0.008514,0.754942,-1.195591,-1.959410,-0.032001,0.000040 +0.008512,0.755405,-1.194905,-1.959187,-0.031999,0.000040 +0.008510,0.755844,-1.194255,-1.958976,-0.031997,0.000041 +0.008508,0.756260,-1.193638,-1.958777,-0.031995,0.000041 +0.008506,0.756655,-1.193055,-1.958588,-0.031993,0.000042 +0.008504,0.757028,-1.192504,-1.958411,-0.031991,0.000042 +0.008502,0.757380,-1.191984,-1.958243,-0.031989,0.000043 +0.008501,0.757711,-1.191494,-1.958086,-0.031988,0.000043 +0.008499,0.758023,-1.191034,-1.957938,-0.031986,0.000044 +0.008498,0.758316,-1.190603,-1.957800,-0.031985,0.000044 +0.008497,0.758590,-1.190199,-1.957670,-0.031984,0.000045 +0.008495,0.758846,-1.189821,-1.957550,-0.031982,0.000045 +0.008494,0.759085,-1.189470,-1.957437,-0.031981,0.000045 +0.008493,0.759308,-1.189143,-1.957333,-0.031980,0.000045 +0.008492,0.759514,-1.188840,-1.957236,-0.031979,0.000046 +0.008491,0.759704,-1.188560,-1.957147,-0.031978,0.000046 +0.008490,0.759879,-1.188302,-1.957065,-0.031977,0.000046 +0.008490,0.760041,-1.188065,-1.956989,-0.031977,0.000046 +0.008489,0.760188,-1.187849,-1.956920,-0.031976,0.000047 +0.008488,0.760322,-1.187652,-1.956858,-0.031975,0.000047 +0.008488,0.760444,-1.187473,-1.956801,-0.031975,0.000047 +0.008487,0.760554,-1.187312,-1.956750,-0.031974,0.000047 +0.008487,0.760652,-1.187167,-1.956704,-0.031974,0.000047 +0.008486,0.760740,-1.187039,-1.956663,-0.031973,0.000047 +0.008486,0.760818,-1.186924,-1.956627,-0.031973,0.000047 +0.008485,0.760886,-1.186824,-1.956595,-0.031972,0.000048 +0.008485,0.760946,-1.186737,-1.956567,-0.031972,0.000048 +0.008485,0.760997,-1.186662,-1.956544,-0.031972,0.000048 +0.008485,0.761040,-1.186598,-1.956523,-0.031972,0.000048 +0.008485,0.761077,-1.186545,-1.956506,-0.031972,0.000048 +0.008484,0.761107,-1.186501,-1.956492,-0.031971,0.000048 +0.008484,0.761131,-1.186465,-1.956481,-0.031971,0.000048 +0.008484,0.761151,-1.186437,-1.956472,-0.031971,0.000048 +0.008484,0.761165,-1.186415,-1.956465,-0.031971,0.000048 +0.008484,0.761176,-1.186400,-1.956460,-0.031971,0.000048 +0.008484,0.761183,-1.186389,-1.956457,-0.031971,0.000048 +0.008484,0.761188,-1.186382,-1.956455,-0.031971,0.000048 +0.008484,0.761191,-1.186378,-1.956454,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008484,0.761192,-1.186376,-1.956453,-0.031971,0.000048 +0.008491,0.761194,-1.186380,-1.956450,-0.031972,0.000055 +0.008497,0.761188,-1.186370,-1.956440,-0.031979,0.000063 +0.008514,0.761171,-1.186360,-1.956420,-0.031999,0.000082 +0.008546,0.761139,-1.186320,-1.956380,-0.032038,0.000122 +0.008600,0.761084,-1.186270,-1.956320,-0.032103,0.000186 +0.008681,0.761003,-1.186190,-1.956220,-0.032200,0.000283 +0.008795,0.760890,-1.186080,-1.956080,-0.032336,0.000419 +0.008946,0.760739,-1.185920,-1.955900,-0.032517,0.000600 +0.009140,0.760545,-1.185730,-1.955670,-0.032749,0.000832 +0.009382,0.760303,-1.185490,-1.955380,-0.033039,0.001123 +0.009678,0.760006,-1.185190,-1.955020,-0.033395,0.001478 +0.010034,0.759651,-1.184840,-1.954600,-0.033821,0.001904 +0.010455,0.759230,-1.184420,-1.954090,-0.034324,0.002408 +0.010944,0.758740,-1.183930,-1.953510,-0.034912,0.002995 +0.011500,0.758174,-1.183360,-1.952830,-0.035590,0.003673 +0.012117,0.757527,-1.182710,-1.952050,-0.036365,0.004448 +0.012790,0.756794,-1.181980,-1.951180,-0.037244,0.005327 +0.013513,0.755968,-1.181150,-1.950190,-0.038232,0.006315 +0.014282,0.755046,-1.180230,-1.949080,-0.039328,0.007411 +0.015089,0.754021,-1.179210,-1.947850,-0.040525,0.008610 +0.015931,0.752888,-1.178070,-1.946500,-0.041819,0.009904 +0.016802,0.751642,-1.176830,-1.945000,-0.043200,0.011287 +0.017696,0.750277,-1.175460,-1.943370,-0.044664,0.012753 +0.018607,0.748791,-1.173970,-1.941580,-0.046204,0.014295 +0.019532,0.747187,-1.172350,-1.939650,-0.047813,0.015907 +0.020463,0.745471,-1.170600,-1.937540,-0.049485,0.017581 +0.021396,0.743649,-1.168710,-1.935270,-0.051214,0.019313 +0.022329,0.741726,-1.166670,-1.932830,-0.052992,0.021095 +0.023262,0.739707,-1.164470,-1.930200,-0.054813,0.022920 +0.024196,0.737598,-1.162130,-1.927390,-0.056672,0.024783 +0.025129,0.735404,-1.159620,-1.924380,-0.058561,0.026676 +0.026062,0.733131,-1.156940,-1.921180,-0.060474,0.028594 +0.026995,0.730784,-1.154090,-1.917760,-0.062404,0.030530 +0.027929,0.728368,-1.151060,-1.914130,-0.064345,0.032477 +0.028862,0.725889,-1.147850,-1.910280,-0.066291,0.034429 +0.029795,0.723352,-1.144440,-1.906210,-0.068238,0.036381 +0.030728,0.720763,-1.140850,-1.901900,-0.070184,0.038334 +0.031662,0.718127,-1.137050,-1.897380,-0.072130,0.040286 +0.032595,0.715450,-1.133050,-1.892640,-0.074077,0.042238 +0.033528,0.712736,-1.128840,-1.887680,-0.076023,0.044191 +0.034461,0.709992,-1.124410,-1.882530,-0.077969,0.046143 +0.035395,0.707222,-1.119770,-1.877170,-0.079915,0.048095 +0.036328,0.704432,-1.114910,-1.871630,-0.081862,0.050048 +0.037261,0.701628,-1.109830,-1.865900,-0.083808,0.052000 +0.038194,0.698815,-1.104540,-1.860000,-0.085754,0.053953 +0.039128,0.695998,-1.099030,-1.853920,-0.087701,0.055905 +0.040061,0.693181,-1.093300,-1.847680,-0.089647,0.057857 +0.040994,0.690364,-1.087360,-1.841290,-0.091593,0.059810 +0.041927,0.687547,-1.081200,-1.834740,-0.093539,0.061762 +0.042861,0.684730,-1.074820,-1.828040,-0.095486,0.063714 +0.043794,0.681912,-1.068230,-1.821210,-0.097432,0.065667 +0.044727,0.679095,-1.061430,-1.814250,-0.099378,0.067619 +0.045660,0.676278,-1.054400,-1.807160,-0.101324,0.069571 +0.046594,0.673461,-1.047160,-1.799950,-0.103271,0.071524 +0.047527,0.670644,-1.039700,-1.792630,-0.105217,0.073476 +0.048460,0.667827,-1.032030,-1.785200,-0.107163,0.075428 +0.049393,0.665009,-1.024140,-1.777670,-0.109110,0.077381 +0.050327,0.662192,-1.016040,-1.770050,-0.111056,0.079333 +0.051260,0.659375,-1.007710,-1.762340,-0.113002,0.081285 +0.052193,0.656558,-0.999175,-1.754550,-0.114949,0.083238 +0.053126,0.653741,-0.990421,-1.746690,-0.116895,0.085190 +0.054060,0.650924,-0.981456,-1.738760,-0.118841,0.087142 +0.054993,0.648106,-0.972285,-1.730770,-0.120787,0.089095 +0.055926,0.645289,-0.962913,-1.722730,-0.122734,0.091047 +0.056859,0.642472,-0.953347,-1.714640,-0.124680,0.092999 +0.057792,0.639655,-0.943591,-1.706510,-0.126626,0.094952 +0.058726,0.636838,-0.933651,-1.698340,-0.128573,0.096904 +0.059659,0.634021,-0.923533,-1.690140,-0.130519,0.098857 +0.060592,0.631204,-0.913241,-1.681930,-0.132465,0.100809 +0.061525,0.628386,-0.902781,-1.673690,-0.134411,0.102761 +0.062459,0.625569,-0.892159,-1.665450,-0.136358,0.104714 +0.063392,0.622752,-0.881380,-1.657210,-0.138304,0.106666 +0.064325,0.619935,-0.870449,-1.648960,-0.140250,0.108618 +0.065258,0.617118,-0.859372,-1.640720,-0.142197,0.110571 +0.066192,0.614301,-0.848154,-1.632470,-0.144143,0.112523 +0.067125,0.611483,-0.836800,-1.624230,-0.146089,0.114475 +0.068058,0.608666,-0.825317,-1.615980,-0.148035,0.116428 +0.068991,0.605849,-0.813709,-1.607740,-0.149982,0.118380 +0.069925,0.603032,-0.801981,-1.599490,-0.151928,0.120332 +0.070858,0.600215,-0.790140,-1.591250,-0.153874,0.122285 +0.071791,0.597398,-0.778191,-1.583000,-0.155821,0.124237 +0.072724,0.594581,-0.766139,-1.574760,-0.157767,0.126190 +0.073658,0.591763,-0.753989,-1.566510,-0.159713,0.128142 +0.074591,0.588946,-0.741747,-1.558270,-0.161659,0.130094 +0.075524,0.586129,-0.729418,-1.550020,-0.163606,0.132047 +0.076457,0.583312,-0.717008,-1.541780,-0.165552,0.133999 +0.077391,0.580495,-0.704522,-1.533540,-0.167498,0.135951 +0.078324,0.577678,-0.691965,-1.525290,-0.169445,0.137904 +0.079257,0.574860,-0.679344,-1.517050,-0.171391,0.139856 +0.080190,0.572043,-0.666662,-1.508800,-0.173337,0.141808 +0.081124,0.569226,-0.653927,-1.500560,-0.175283,0.143761 +0.082057,0.566409,-0.641142,-1.492310,-0.177230,0.145713 +0.082990,0.563592,-0.628314,-1.484070,-0.179176,0.147665 +0.083923,0.560775,-0.615448,-1.475820,-0.181122,0.149618 +0.084857,0.557958,-0.602549,-1.467580,-0.183069,0.151570 +0.085790,0.555140,-0.589624,-1.459330,-0.185015,0.153523 +0.086723,0.552323,-0.576676,-1.451090,-0.186961,0.155475 +0.087656,0.549506,-0.563712,-1.442840,-0.188907,0.157427 +0.088590,0.546689,-0.550736,-1.434600,-0.190854,0.159380 +0.089523,0.543872,-0.537756,-1.426350,-0.192800,0.161332 +0.090456,0.541055,-0.524774,-1.418110,-0.194746,0.163284 +0.091389,0.538237,-0.511792,-1.409860,-0.196693,0.165237 +0.092323,0.535420,-0.498810,-1.401620,-0.198639,0.167189 +0.093256,0.532603,-0.485828,-1.393370,-0.200585,0.169141 +0.094189,0.529786,-0.472847,-1.385130,-0.202531,0.171094 +0.095122,0.526969,-0.459865,-1.376890,-0.204478,0.173046 +0.096056,0.524152,-0.446883,-1.368640,-0.206424,0.174998 +0.096989,0.521335,-0.433901,-1.360400,-0.208370,0.176951 +0.097922,0.518517,-0.420920,-1.352150,-0.210317,0.178903 +0.098855,0.515700,-0.407938,-1.343910,-0.212263,0.180855 +0.099788,0.512883,-0.394956,-1.335660,-0.214209,0.182808 +0.100722,0.510066,-0.381974,-1.327420,-0.216155,0.184760 +0.101655,0.507249,-0.368992,-1.319170,-0.218102,0.186713 +0.102588,0.504432,-0.356011,-1.310930,-0.220048,0.188665 +0.103521,0.501614,-0.343029,-1.302680,-0.221994,0.190617 +0.104455,0.498797,-0.330047,-1.294440,-0.223941,0.192570 +0.105388,0.495980,-0.317065,-1.286190,-0.225887,0.194522 +0.106321,0.493163,-0.304083,-1.277950,-0.227833,0.196474 +0.107254,0.490346,-0.291102,-1.269700,-0.229779,0.198427 +0.108188,0.487529,-0.278120,-1.261460,-0.231726,0.200379 +0.109121,0.484711,-0.265138,-1.253210,-0.233672,0.202331 +0.110054,0.481894,-0.252156,-1.244970,-0.235618,0.204284 +0.110987,0.479077,-0.239174,-1.236720,-0.237565,0.206236 +0.111921,0.476260,-0.226193,-1.228480,-0.239511,0.208188 +0.112854,0.473443,-0.213211,-1.220230,-0.241457,0.210141 +0.113787,0.470626,-0.200229,-1.211990,-0.243403,0.212093 +0.114720,0.467809,-0.187247,-1.203750,-0.245350,0.214045 +0.115654,0.464991,-0.174266,-1.195500,-0.247296,0.215998 +0.116587,0.462174,-0.161284,-1.187260,-0.249242,0.217950 +0.117520,0.459357,-0.148302,-1.179010,-0.251189,0.219903 +0.118453,0.456540,-0.135320,-1.170770,-0.253135,0.221855 +0.119387,0.453723,-0.122338,-1.162520,-0.255081,0.223807 +0.120320,0.450906,-0.109357,-1.154280,-0.257027,0.225760 +0.121253,0.448088,-0.096375,-1.146030,-0.258974,0.227712 +0.122186,0.445271,-0.083393,-1.137790,-0.260920,0.229664 +0.123120,0.442454,-0.070411,-1.129540,-0.262866,0.231617 +0.124053,0.439637,-0.057430,-1.121300,-0.264813,0.233569 +0.124986,0.436820,-0.044448,-1.113050,-0.266759,0.235521 +0.125919,0.434003,-0.031466,-1.104810,-0.268705,0.237474 +0.126852,0.431186,-0.018484,-1.096560,-0.270651,0.239426 +0.127786,0.428368,-0.005502,-1.088320,-0.272598,0.241378 +0.128719,0.425551,0.007479,-1.080070,-0.274544,0.243331 +0.129652,0.422734,0.020461,-1.071830,-0.276490,0.245283 +0.130585,0.419917,0.033443,-1.063580,-0.278437,0.247235 +0.131519,0.417100,0.046425,-1.055340,-0.280383,0.249188 +0.132452,0.414283,0.059407,-1.047100,-0.282329,0.251140 +0.133385,0.411465,0.072388,-1.038850,-0.284275,0.253093 +0.134318,0.408648,0.085370,-1.030610,-0.286222,0.255045 +0.135252,0.405831,0.098352,-1.022360,-0.288168,0.256997 +0.136185,0.403014,0.111334,-1.014120,-0.290114,0.258950 +0.137118,0.400197,0.124316,-1.005870,-0.292061,0.260902 +0.138051,0.397380,0.137297,-0.997627,-0.294007,0.262854 +0.138985,0.394563,0.150279,-0.989382,-0.295953,0.264807 +0.139918,0.391745,0.163261,-0.981137,-0.297900,0.266759 +0.140851,0.388928,0.176243,-0.972893,-0.299846,0.268711 +0.141784,0.386111,0.189225,-0.964648,-0.301792,0.270664 +0.142718,0.383294,0.202206,-0.956403,-0.303738,0.272616 +0.143651,0.380477,0.215188,-0.948158,-0.305685,0.274568 +0.144584,0.377660,0.228170,-0.939914,-0.307631,0.276521 +0.145517,0.374842,0.241152,-0.931669,-0.309577,0.278473 +0.146451,0.372025,0.254133,-0.923424,-0.311524,0.280426 +0.147384,0.369208,0.267115,-0.915179,-0.313470,0.282378 +0.148317,0.366391,0.280097,-0.906935,-0.315416,0.284330 +0.149250,0.363574,0.293079,-0.898690,-0.317362,0.286283 +0.150184,0.360757,0.306061,-0.890445,-0.319309,0.288235 +0.151117,0.357939,0.319042,-0.882200,-0.321255,0.290187 +0.152050,0.355122,0.332024,-0.873956,-0.323201,0.292140 +0.152983,0.352305,0.345006,-0.865711,-0.325148,0.294092 +0.153917,0.349488,0.357988,-0.857466,-0.327094,0.296044 +0.154850,0.346671,0.370970,-0.849221,-0.329040,0.297997 +0.155783,0.343854,0.383951,-0.840977,-0.330986,0.299949 +0.156716,0.341037,0.396933,-0.832732,-0.332933,0.301901 +0.157650,0.338219,0.409915,-0.824487,-0.334879,0.303854 +0.158583,0.335402,0.422897,-0.816242,-0.336825,0.305806 +0.159516,0.332585,0.435878,-0.807998,-0.338772,0.307758 +0.160449,0.329768,0.448860,-0.799753,-0.340718,0.309711 +0.161382,0.326951,0.461842,-0.791508,-0.342664,0.311663 +0.162316,0.324134,0.474824,-0.783263,-0.344610,0.313616 +0.163249,0.321316,0.487806,-0.775019,-0.346557,0.315568 +0.164182,0.318499,0.500787,-0.766774,-0.348503,0.317520 +0.165115,0.315682,0.513769,-0.758529,-0.350449,0.319473 +0.166049,0.312865,0.526751,-0.750284,-0.352396,0.321425 +0.166982,0.310048,0.539733,-0.742040,-0.354342,0.323377 +0.167915,0.307231,0.552715,-0.733795,-0.356288,0.325330 +0.168848,0.304414,0.565696,-0.725550,-0.358234,0.327282 +0.169782,0.301596,0.578678,-0.717305,-0.360181,0.329234 +0.170715,0.298779,0.591660,-0.709061,-0.362127,0.331187 +0.171648,0.295962,0.604642,-0.700816,-0.364073,0.333139 +0.172581,0.293145,0.617624,-0.692571,-0.366020,0.335091 +0.173515,0.290328,0.630605,-0.684326,-0.367966,0.337044 +0.174448,0.287511,0.643587,-0.676082,-0.369912,0.338996 +0.175381,0.284693,0.656569,-0.667837,-0.371858,0.340948 +0.176314,0.281876,0.669551,-0.659592,-0.373805,0.342901 +0.177248,0.279059,0.682532,-0.651347,-0.375751,0.344853 +0.178181,0.276242,0.695514,-0.643103,-0.377697,0.346806 +0.179114,0.273425,0.708496,-0.634858,-0.379643,0.348758 +0.180047,0.270608,0.721478,-0.626613,-0.381584,0.350710 +0.180981,0.267791,0.734460,-0.618369,-0.383514,0.352663 +0.181914,0.264973,0.747441,-0.610124,-0.385425,0.354615 +0.182847,0.262156,0.760423,-0.601879,-0.387312,0.356567 +0.183780,0.259339,0.773405,-0.593634,-0.389169,0.358520 +0.184714,0.256522,0.786387,-0.585390,-0.390988,0.360472 +0.185647,0.253705,0.799369,-0.577145,-0.392763,0.362424 +0.186580,0.250888,0.812350,-0.568900,-0.394488,0.364377 +0.187513,0.248070,0.825332,-0.560655,-0.396157,0.366329 +0.188447,0.245253,0.838314,-0.552411,-0.397762,0.368281 +0.189380,0.242436,0.851296,-0.544166,-0.399297,0.370234 +0.190313,0.239619,0.864277,-0.535921,-0.400757,0.372186 +0.191246,0.236802,0.877259,-0.527676,-0.402133,0.374138 +0.192180,0.233985,0.890241,-0.519432,-0.403420,0.376091 +0.193113,0.231168,0.903223,-0.511187,-0.404612,0.378043 +0.194046,0.228350,0.916204,-0.502942,-0.405702,0.379996 +0.194979,0.225533,0.929180,-0.494697,-0.406683,0.381948 +0.195913,0.222716,0.942147,-0.486453,-0.407549,0.383900 +0.196846,0.219899,0.955097,-0.478208,-0.408293,0.385853 +0.197779,0.217082,0.968027,-0.469963,-0.408910,0.387805 +0.198712,0.214265,0.980930,-0.461718,-0.409392,0.389757 +0.199645,0.211447,0.993801,-0.453474,-0.409732,0.391710 +0.200579,0.208630,1.006640,-0.445229,-0.409926,0.393662 +0.201512,0.205813,1.019430,-0.436984,-0.409965,0.395614 +0.202445,0.202996,1.032170,-0.428739,-0.409844,0.397567 +0.203378,0.200179,1.044860,-0.420495,-0.409556,0.399519 +0.204312,0.197362,1.057490,-0.412250,-0.409095,0.401471 +0.205245,0.194544,1.070060,-0.404005,-0.408454,0.403424 +0.206178,0.191727,1.082550,-0.395760,-0.407626,0.405376 +0.207111,0.188910,1.094980,-0.387516,-0.406606,0.407329 +0.208045,0.186093,1.107320,-0.379271,-0.405386,0.409281 +0.208978,0.183276,1.119570,-0.371026,-0.403961,0.411233 +0.209911,0.180459,1.131740,-0.362781,-0.402323,0.413186 +0.210844,0.177642,1.143800,-0.354537,-0.400467,0.415138 +0.211778,0.174824,1.155770,-0.346292,-0.398385,0.417090 +0.212711,0.172007,1.167630,-0.338047,-0.396072,0.419043 +0.213644,0.169190,1.179370,-0.329802,-0.393520,0.420995 +0.214577,0.166373,1.191000,-0.321558,-0.390724,0.422947 +0.215511,0.163556,1.202500,-0.313313,-0.387685,0.424900 +0.216444,0.160739,1.213870,-0.305068,-0.384409,0.426852 +0.217377,0.157921,1.225110,-0.296823,-0.380902,0.428804 +0.218310,0.155104,1.236210,-0.288579,-0.377172,0.430757 +0.219244,0.152287,1.247170,-0.280334,-0.373224,0.432709 +0.220177,0.149470,1.257970,-0.272089,-0.369064,0.434661 +0.221110,0.146653,1.268610,-0.263845,-0.364701,0.436614 +0.222043,0.143836,1.279100,-0.255600,-0.360139,0.438566 +0.222977,0.141019,1.289420,-0.247355,-0.355385,0.440519 +0.223910,0.138201,1.299560,-0.239110,-0.350447,0.442471 +0.224843,0.135384,1.309530,-0.230869,-0.345330,0.444423 +0.225776,0.132567,1.319310,-0.222637,-0.340040,0.446376 +0.226709,0.129750,1.328910,-0.214421,-0.334585,0.448328 +0.227639,0.126933,1.338310,-0.206228,-0.328971,0.450277 +0.228559,0.124116,1.347510,-0.198063,-0.323204,0.452217 +0.229466,0.121298,1.356510,-0.189934,-0.317291,0.454141 +0.230352,0.118481,1.365290,-0.181847,-0.311238,0.456043 +0.231214,0.115665,1.373860,-0.173809,-0.305052,0.457916 +0.232045,0.112854,1.382220,-0.165825,-0.298739,0.459754 +0.232840,0.110053,1.390380,-0.157902,-0.292305,0.461550 +0.233594,0.107268,1.398330,-0.150048,-0.285758,0.463298 +0.234301,0.104504,1.406080,-0.142268,-0.279103,0.464991 +0.234956,0.101767,1.413650,-0.134568,-0.272348,0.466623 +0.235553,0.099062,1.421030,-0.126956,-0.265498,0.468187 +0.236087,0.096395,1.428220,-0.119438,-0.258560,0.469678 +0.236553,0.093771,1.435250,-0.112020,-0.251541,0.471096 +0.236945,0.091195,1.442110,-0.104708,-0.244447,0.472447 +0.237258,0.088673,1.448800,-0.097510,-0.237284,0.473738 +0.237486,0.086210,1.455330,-0.090432,-0.230060,0.474976 +0.237625,0.083811,1.461710,-0.083479,-0.222779,0.476167 +0.237668,0.081478,1.467950,-0.076660,-0.215450,0.477317 +0.237610,0.079206,1.474040,-0.069979,-0.208078,0.478433 +0.237446,0.076989,1.479990,-0.063444,-0.200671,0.479522 +0.237170,0.074821,1.485820,-0.057062,-0.193233,0.480589 +0.236777,0.072699,1.491520,-0.050837,-0.185773,0.481642 +0.236261,0.070615,1.497090,-0.044778,-0.178295,0.482687 +0.235618,0.068565,1.502560,-0.038890,-0.170808,0.483729 +0.234842,0.066543,1.507910,-0.033181,-0.163317,0.484777 +0.233926,0.064543,1.513160,-0.027656,-0.155829,0.485836 +0.232868,0.062562,1.518310,-0.022321,-0.148350,0.486913 +0.231668,0.060592,1.523370,-0.017185,-0.140886,0.488014 +0.230332,0.058628,1.528340,-0.012249,-0.133446,0.489146 +0.228865,0.056666,1.533220,-0.007510,-0.126033,0.490315 +0.227274,0.054700,1.538030,-0.002960,-0.118656,0.491527 +0.225562,0.052724,1.542770,0.001406,-0.111321,0.492790 +0.223737,0.050732,1.547440,0.005595,-0.104034,0.494109 +0.221802,0.048721,1.552060,0.009613,-0.096801,0.495492 +0.219764,0.046683,1.556610,0.013468,-0.089630,0.496944 +0.217627,0.044614,1.561120,0.017166,-0.082526,0.498472 +0.215398,0.042509,1.565580,0.020712,-0.075496,0.500083 +0.213082,0.040361,1.570000,0.024114,-0.068547,0.501783 +0.210683,0.038166,1.574389,0.027378,-0.061682,0.503578 +0.208202,0.035924,1.578743,0.030503,-0.054908,0.505468 +0.205642,0.033634,1.583060,0.033488,-0.048230,0.507453 +0.203004,0.031297,1.587338,0.036332,-0.041652,0.509531 +0.200290,0.028913,1.591578,0.039034,-0.035178,0.511703 +0.197501,0.026483,1.595777,0.041594,-0.028813,0.513966 +0.194639,0.024007,1.599934,0.044010,-0.022561,0.516320 +0.191705,0.021486,1.604047,0.046282,-0.016425,0.518763 +0.188701,0.018919,1.608117,0.048410,-0.010409,0.521293 +0.185629,0.016307,1.612141,0.050393,-0.004516,0.523910 +0.182490,0.013651,1.616119,0.052230,0.001249,0.526611 +0.179287,0.010952,1.620049,0.053921,0.006883,0.529394 +0.176022,0.008209,1.623931,0.055466,0.012382,0.532258 +0.172696,0.005424,1.627763,0.056864,0.017745,0.535199 +0.169311,0.002597,1.631545,0.058115,0.022967,0.538216 +0.165869,-0.000271,1.635277,0.059219,0.028045,0.541307 +0.162374,-0.003180,1.638956,0.060176,0.032977,0.544467 +0.158825,-0.006127,1.642582,0.060985,0.037760,0.547696 +0.155227,-0.009114,1.646156,0.061646,0.042391,0.550989 +0.151581,-0.012139,1.649675,0.062160,0.046868,0.554344 +0.147889,-0.015200,1.653140,0.062527,0.051188,0.557757 +0.144154,-0.018298,1.656550,0.062746,0.055350,0.561226 +0.140377,-0.021430,1.659905,0.062818,0.059351,0.564747 +0.136562,-0.024596,1.663203,0.062742,0.063189,0.568316 +0.132711,-0.027796,1.666445,0.062520,0.066863,0.571930 +0.128827,-0.031027,1.669630,0.062152,0.070371,0.575585 +0.124911,-0.034288,1.672758,0.061637,0.073711,0.579277 +0.120966,-0.037579,1.675829,0.060976,0.076882,0.583003 +0.116995,-0.040898,1.678843,0.060170,0.079883,0.586758 +0.113000,-0.044244,1.681799,0.059219,0.082714,0.590538 +0.108985,-0.047616,1.684697,0.058124,0.085372,0.594339 +0.104951,-0.051012,1.687537,0.056884,0.087858,0.598156 +0.100901,-0.054430,1.690319,0.055502,0.090170,0.601986 +0.096838,-0.057870,1.693043,0.053977,0.092309,0.605824 +0.092765,-0.061330,1.695710,0.052310,0.094274,0.609665 +0.088684,-0.064809,1.698319,0.050503,0.096065,0.613504 +0.084598,-0.068304,1.700870,0.048555,0.097682,0.617337 +0.080510,-0.071815,1.703365,0.046467,0.099125,0.621160 +0.076422,-0.075339,1.705802,0.044241,0.100394,0.624967 +0.072338,-0.078876,1.708182,0.041878,0.101491,0.628753 +0.068259,-0.082423,1.710506,0.039377,0.102416,0.632515 +0.064190,-0.085979,1.712774,0.036741,0.103169,0.636246 +0.060131,-0.089542,1.714986,0.033970,0.103752,0.639942 +0.056087,-0.093110,1.717143,0.031066,0.104165,0.643597 +0.052061,-0.096682,1.719246,0.028030,0.104411,0.647208 +0.048054,-0.100255,1.721294,0.024862,0.104489,0.650768 +0.044069,-0.103828,1.723289,0.021564,0.104403,0.654273 +0.040110,-0.107400,1.725230,0.018137,0.104154,0.657717 +0.036180,-0.110967,1.727119,0.014582,0.103743,0.661096 +0.032280,-0.114529,1.728957,0.010901,0.103172,0.664404 +0.028414,-0.118083,1.730743,0.007096,0.102444,0.667636 +0.024584,-0.121627,1.732480,0.003166,0.101562,0.670788 +0.020793,-0.125159,1.734167,-0.000885,0.100527,0.673854 +0.017044,-0.128678,1.735805,-0.005057,0.099341,0.676829 +0.013340,-0.132182,1.737395,-0.009349,0.098009,0.679708 +0.009682,-0.135668,1.738939,-0.013758,0.096532,0.682485 +0.006075,-0.139134,1.740436,-0.018283,0.094914,0.685157 +0.002520,-0.142578,1.741889,-0.022923,0.093158,0.687718 +-0.000980,-0.145998,1.743297,-0.027676,0.091266,0.690163 +-0.004423,-0.149393,1.744662,-0.032540,0.089243,0.692488 +-0.007805,-0.152760,1.745984,-0.037513,0.087092,0.694687 +-0.011125,-0.156096,1.747266,-0.042595,0.084816,0.696755 +-0.014380,-0.159401,1.748507,-0.047783,0.082419,0.698689 +-0.017567,-0.162671,1.749709,-0.053075,0.079905,0.700483 +-0.020684,-0.165905,1.750874,-0.058470,0.077278,0.702133 +-0.023728,-0.169101,1.752001,-0.063965,0.074542,0.703634 +-0.026698,-0.172256,1.753092,-0.069560,0.071701,0.704983 +-0.029591,-0.175368,1.754149,-0.075251,0.068759,0.706173 +-0.032405,-0.178436,1.755172,-0.081038,0.065721,0.707203 +-0.035137,-0.181457,1.756163,-0.086918,0.062591,0.708066 +-0.037785,-0.184429,1.757123,-0.092889,0.059373,0.708760 +-0.040348,-0.187350,1.758053,-0.098949,0.056073,0.709280 +-0.042822,-0.190218,1.758954,-0.105096,0.052695,0.709622 +-0.045207,-0.193030,1.759827,-0.111329,0.049243,0.709783 +-0.047500,-0.195786,1.760674,-0.117644,0.045722,0.709759 +-0.049699,-0.198482,1.761496,-0.124041,0.042138,0.709547 +-0.051802,-0.201117,1.762294,-0.130516,0.038495,0.709142 +-0.053808,-0.203688,1.763069,-0.137067,0.034798,0.708543 +-0.055714,-0.206195,1.763822,-0.143693,0.031053,0.707745 +-0.057520,-0.208634,1.764556,-0.150392,0.027264,0.706745 +-0.059223,-0.211004,1.765270,-0.157160,0.023437,0.705542 +-0.060821,-0.213303,1.765967,-0.163996,0.019576,0.704132 +-0.062314,-0.215529,1.766647,-0.170897,0.015688,0.702512 +-0.063699,-0.217680,1.767311,-0.177862,0.011777,0.700680 +-0.064975,-0.219754,1.767962,-0.184887,0.007849,0.698633 +-0.066142,-0.221749,1.768599,-0.191971,0.003909,0.696370 +-0.067197,-0.223664,1.769225,-0.199111,-0.000038,0.693889 +-0.068139,-0.225497,1.769841,-0.206304,-0.003986,0.691187 +-0.068968,-0.227247,1.770447,-0.213549,-0.007930,0.688263 +-0.069681,-0.228910,1.771045,-0.220842,-0.011864,0.685116 +-0.070279,-0.230487,1.771636,-0.228182,-0.015784,0.681743 +-0.070760,-0.231974,1.772222,-0.235566,-0.019683,0.678144 +-0.071123,-0.233371,1.772803,-0.242991,-0.023557,0.674318 +-0.071368,-0.234677,1.773380,-0.250455,-0.027399,0.670263 +-0.071493,-0.235889,1.773956,-0.257955,-0.031205,0.665979 +-0.071498,-0.237005,1.774530,-0.265488,-0.034970,0.661466 +-0.071383,-0.238026,1.775104,-0.273053,-0.038687,0.656723 +-0.071146,-0.238949,1.775679,-0.280647,-0.042353,0.651749 +-0.070788,-0.239773,1.776256,-0.288266,-0.045961,0.646545 +-0.070307,-0.240496,1.776836,-0.295908,-0.049506,0.641111 +-0.069704,-0.241118,1.777420,-0.303571,-0.052983,0.635446 +-0.068979,-0.241638,1.778009,-0.311253,-0.056388,0.629553 +-0.068130,-0.242053,1.778605,-0.318949,-0.059714,0.623430 +-0.067159,-0.242364,1.779207,-0.326657,-0.062958,0.617079 +-0.066064,-0.242569,1.779818,-0.334376,-0.066114,0.610501 +-0.064847,-0.242667,1.780437,-0.342102,-0.069177,0.603697 +-0.063506,-0.242658,1.781066,-0.349832,-0.072142,0.596668 +-0.062043,-0.242539,1.781706,-0.357563,-0.075005,0.589416 +-0.060458,-0.242312,1.782358,-0.365293,-0.077762,0.581942 +-0.058750,-0.241974,1.783021,-0.373019,-0.080407,0.574249 +-0.056920,-0.241526,1.783698,-0.380739,-0.082936,0.566337 +-0.054969,-0.240966,1.784389,-0.388448,-0.085345,0.558210 +-0.052897,-0.240294,1.785094,-0.396145,-0.087630,0.549870 +-0.050705,-0.239510,1.785815,-0.403827,-0.089785,0.541318 +-0.048393,-0.238613,1.786552,-0.411491,-0.091808,0.532558 +-0.045963,-0.237603,1.787305,-0.419133,-0.093694,0.523593 +-0.043414,-0.236479,1.788076,-0.426752,-0.095440,0.514425 +-0.040749,-0.235241,1.788864,-0.434343,-0.097041,0.505058 +-0.037967,-0.233890,1.789671,-0.441905,-0.098494,0.495495 +-0.035070,-0.232425,1.790497,-0.449435,-0.099796,0.485738 +-0.032059,-0.230845,1.791342,-0.456928,-0.100942,0.475793 +-0.028934,-0.229152,1.792207,-0.464384,-0.101930,0.465662 +-0.025699,-0.227345,1.793092,-0.471798,-0.102757,0.455350 +-0.022352,-0.225424,1.793998,-0.479168,-0.103420,0.444860 +-0.018897,-0.223389,1.794926,-0.486490,-0.103915,0.434196 +-0.015333,-0.221242,1.795874,-0.493762,-0.104240,0.423363 +-0.011663,-0.218981,1.796845,-0.500981,-0.104393,0.412366 +-0.007889,-0.216608,1.797837,-0.508145,-0.104370,0.401208 +-0.004011,-0.214123,1.798852,-0.515249,-0.104170,0.389895 +-0.000032,-0.211527,1.799889,-0.522291,-0.103790,0.378431 +0.004047,-0.208820,1.800949,-0.529268,-0.103228,0.366821 +0.008225,-0.206004,1.802032,-0.536178,-0.102483,0.355071 +0.012498,-0.203078,1.803138,-0.543017,-0.101552,0.343184 +0.016867,-0.200043,1.804266,-0.549782,-0.100435,0.331167 +0.021327,-0.196901,1.805418,-0.556471,-0.099129,0.319025 +0.025879,-0.193653,1.806593,-0.563080,-0.097633,0.306764 +0.030519,-0.190299,1.807791,-0.569606,-0.095947,0.294388 +0.035246,-0.186841,1.809012,-0.576048,-0.094069,0.281903 +0.040057,-0.183279,1.810256,-0.582401,-0.091998,0.269316 +0.044950,-0.179616,1.811523,-0.588662,-0.089734,0.256632 +0.049923,-0.175852,1.812813,-0.594830,-0.087276,0.243856 +0.054975,-0.171989,1.814125,-0.600901,-0.084624,0.230996 +0.060102,-0.168028,1.815460,-0.606872,-0.081777,0.218056 +0.065302,-0.163970,1.816817,-0.612740,-0.078736,0.205043 +0.070573,-0.159818,1.818196,-0.618503,-0.075501,0.191963 +0.075913,-0.155573,1.819597,-0.624158,-0.072072,0.178822 +0.081318,-0.151236,1.821020,-0.629701,-0.068450,0.165627 +0.086788,-0.146810,1.822463,-0.635131,-0.064635,0.152383 +0.092318,-0.142295,1.823927,-0.640443,-0.060627,0.139097 +0.097907,-0.137694,1.825412,-0.645637,-0.056429,0.125776 +0.103553,-0.133010,1.826916,-0.650708,-0.052040,0.112425 +0.109251,-0.128243,1.828440,-0.655654,-0.047463,0.099051 +0.115001,-0.123395,1.829984,-0.660472,-0.042698,0.085661 +0.120799,-0.118470,1.831546,-0.665161,-0.037747,0.072260 +0.126642,-0.113468,1.833126,-0.669716,-0.032613,0.058856 +0.132528,-0.108393,1.834724,-0.674136,-0.027295,0.045455 +0.138455,-0.103246,1.836339,-0.678418,-0.021798,0.032062 +0.144419,-0.098030,1.837970,-0.682559,-0.016122,0.018685 +0.150418,-0.092747,1.839618,-0.686556,-0.010271,0.005331 +0.156449,-0.087400,1.841281,-0.690408,-0.004246,-0.007996 +0.162510,-0.081990,1.842958,-0.694112,0.001949,-0.021288 +0.168597,-0.076520,1.844650,-0.697665,0.008313,-0.034539 +0.174708,-0.070993,1.846356,-0.701066,0.014842,-0.047742 +0.180840,-0.065411,1.848074,-0.704310,0.021533,-0.060892 +0.186990,-0.059778,1.849804,-0.707397,0.028382,-0.073983 +0.193156,-0.054094,1.851546,-0.710324,0.035388,-0.087007 +0.199334,-0.048364,1.853299,-0.713089,0.042546,-0.099959 +0.205523,-0.042590,1.855062,-0.715690,0.049852,-0.112834 +0.211719,-0.036774,1.856835,-0.718123,0.057304,-0.125624 +0.217919,-0.030920,1.858616,-0.720388,0.064897,-0.138325 +0.224121,-0.025029,1.860404,-0.722482,0.072627,-0.150930 +0.230321,-0.019106,1.862200,-0.724404,0.080491,-0.163433 +0.236518,-0.013152,1.864003,-0.726150,0.088484,-0.175829 +0.242708,-0.007171,1.865811,-0.727720,0.096602,-0.188113 +0.248889,-0.001165,1.867624,-0.729111,0.104840,-0.200278 +0.255058,0.004862,1.869440,-0.730322,0.113195,-0.212320 +0.261212,0.010909,1.871261,-0.731350,0.121661,-0.224233 +0.267349,0.016971,1.873083,-0.732195,0.130235,-0.236012 +0.273466,0.023046,1.874907,-0.732853,0.138911,-0.247652 +0.279560,0.029130,1.876732,-0.733325,0.147684,-0.259148 +0.285629,0.035222,1.878558,-0.733608,0.156550,-0.270495 +0.291670,0.041318,1.880382,-0.733700,0.165504,-0.281688 +0.297680,0.047415,1.882205,-0.733601,0.174540,-0.292723 +0.303658,0.053509,1.884026,-0.733309,0.183653,-0.303596 +0.309599,0.059599,1.885843,-0.732822,0.192839,-0.314302 +0.315503,0.065681,1.887657,-0.732140,0.202092,-0.324836 +0.321367,0.071751,1.889466,-0.731261,0.211407,-0.335195 +0.327187,0.077808,1.891269,-0.730184,0.220778,-0.345376 +0.332962,0.083848,1.893067,-0.728908,0.230200,-0.355373 +0.338689,0.089867,1.894857,-0.727433,0.239667,-0.365184 +0.344367,0.095864,1.896639,-0.725756,0.249175,-0.374805 +0.349992,0.101835,1.898413,-0.723878,0.258717,-0.384233 +0.355563,0.107777,1.900178,-0.721797,0.268288,-0.393464 +0.361077,0.113688,1.901932,-0.719513,0.277882,-0.402496 +0.366532,0.119564,1.903676,-0.717026,0.287494,-0.411326 +0.371925,0.125402,1.905408,-0.714334,0.297118,-0.419951 +0.377256,0.131199,1.907128,-0.711438,0.306749,-0.428369 +0.382522,0.136953,1.908836,-0.708337,0.316380,-0.436577 +0.387720,0.142662,1.910529,-0.705030,0.326007,-0.444574 +0.392850,0.148321,1.912209,-0.701517,0.335623,-0.452356 +0.397908,0.153928,1.913873,-0.697799,0.345223,-0.459923 +0.402894,0.159481,1.915522,-0.693875,0.354801,-0.467273 +0.407804,0.164976,1.917155,-0.689745,0.364351,-0.474404 +0.412639,0.170412,1.918771,-0.685410,0.373869,-0.481314 +0.417395,0.175785,1.920370,-0.680869,0.383348,-0.488004 +0.422071,0.181093,1.921951,-0.676122,0.392782,-0.494472 +0.426666,0.186333,1.923513,-0.671171,0.402167,-0.500716 +0.431177,0.191502,1.925056,-0.666015,0.411497,-0.506738 +0.435604,0.196599,1.926579,-0.660656,0.420766,-0.512535 +0.439945,0.201620,1.928083,-0.655093,0.429969,-0.518108 +0.444199,0.206564,1.929566,-0.649327,0.439100,-0.523457 +0.448364,0.211428,1.931027,-0.643359,0.448155,-0.528582 +0.452439,0.216209,1.932468,-0.637191,0.457127,-0.533484 +0.456422,0.220905,1.933886,-0.630822,0.466013,-0.538162 +0.460313,0.225515,1.935282,-0.624255,0.474806,-0.542617 +0.464111,0.230035,1.936655,-0.617489,0.483501,-0.546851 +0.467813,0.234464,1.938005,-0.610527,0.492094,-0.550863 +0.471420,0.238800,1.939332,-0.603370,0.500580,-0.554656 +0.474930,0.243040,1.940635,-0.596018,0.508953,-0.558231 +0.478342,0.247183,1.941914,-0.588474,0.517210,-0.561589 +0.481656,0.251227,1.943168,-0.580740,0.525344,-0.564731 +0.484871,0.255170,1.944398,-0.572816,0.533353,-0.567661 +0.487985,0.259010,1.945602,-0.564705,0.541231,-0.570379 +0.490998,0.262746,1.946782,-0.556408,0.548974,-0.572887 +0.493911,0.266375,1.947936,-0.547927,0.556577,-0.575189 +0.496721,0.269897,1.949065,-0.539265,0.564037,-0.577286 +0.499428,0.273309,1.950169,-0.530424,0.571350,-0.579182 +0.502033,0.276610,1.951246,-0.521405,0.578511,-0.580878 +0.504534,0.279800,1.952297,-0.512211,0.585516,-0.582379 +0.506931,0.282876,1.953323,-0.502845,0.592362,-0.583686 +0.509224,0.285837,1.954322,-0.493308,0.599046,-0.584804 +0.511413,0.288682,1.955296,-0.483604,0.605563,-0.585735 +0.513497,0.291410,1.956243,-0.473735,0.611910,-0.586482 +0.515477,0.294020,1.957164,-0.463703,0.618085,-0.587051 +0.517351,0.296511,1.958059,-0.453513,0.624084,-0.587444 +0.519121,0.298882,1.958927,-0.443166,0.629903,-0.587665 +0.520786,0.301132,1.959770,-0.432665,0.635541,-0.587718 +0.522345,0.303261,1.960587,-0.422014,0.640994,-0.587607 +0.523801,0.305267,1.961377,-0.411216,0.646260,-0.587337 +0.525151,0.307150,1.962142,-0.400274,0.651336,-0.586912 +0.526397,0.308909,1.962882,-0.389191,0.656221,-0.586336 +0.527539,0.310545,1.963596,-0.377970,0.660911,-0.585613 +0.528578,0.312056,1.964284,-0.366616,0.665405,-0.584749 +0.529512,0.313443,1.964947,-0.355132,0.669701,-0.583748 +0.530344,0.314705,1.965586,-0.343521,0.673798,-0.582615 +0.531073,0.315841,1.966199,-0.331787,0.677693,-0.581355 +0.531700,0.316852,1.966788,-0.319934,0.681385,-0.579972 +0.532225,0.317738,1.967353,-0.307966,0.684873,-0.578472 +0.532649,0.318498,1.967894,-0.295887,0.688155,-0.576860 +0.532972,0.319134,1.968411,-0.283700,0.691231,-0.575141 +0.533196,0.319644,1.968905,-0.271409,0.694100,-0.573320 +0.533321,0.320030,1.969375,-0.259020,0.696761,-0.571403 +0.533347,0.320291,1.969823,-0.246536,0.699214,-0.569394 +0.533276,0.320428,1.970248,-0.233961,0.701457,-0.567300 +0.533107,0.320441,1.970651,-0.221299,0.703492,-0.565125 +0.532843,0.320332,1.971032,-0.208556,0.705317,-0.562875 +0.532484,0.320100,1.971392,-0.195735,0.706932,-0.560556 +0.532030,0.319746,1.971731,-0.182842,0.708338,-0.558172 +0.531483,0.319272,1.972049,-0.169879,0.709536,-0.555731 +0.530844,0.318677,1.972347,-0.156853,0.710525,-0.553236 +0.530114,0.317963,1.972625,-0.143768,0.711306,-0.550693 +0.529294,0.317130,1.972883,-0.130629,0.711879,-0.548109 +0.528384,0.316180,1.973123,-0.117440,0.712247,-0.545488 +0.527386,0.315114,1.973343,-0.104206,0.712409,-0.542836 +0.526301,0.313933,1.973546,-0.090932,0.712367,-0.540159 +0.525131,0.312638,1.973730,-0.077623,0.712122,-0.537462 +0.523876,0.311230,1.973897,-0.064284,0.711676,-0.534751 +0.522537,0.309711,1.974047,-0.050920,0.711029,-0.532030 +0.521117,0.308082,1.974181,-0.037535,0.710185,-0.529306 +0.519615,0.306344,1.974298,-0.024136,0.709144,-0.526583 +0.518033,0.304499,1.974400,-0.010727,0.707908,-0.523867 +0.516374,0.302549,1.974487,0.002688,0.706480,-0.521164 +0.514637,0.300495,1.974558,0.016102,0.704861,-0.518478 +0.512824,0.298339,1.974615,0.029510,0.703055,-0.515814 +0.510936,0.296083,1.974658,0.042908,0.701063,-0.513178 +0.508976,0.293728,1.974688,0.056290,0.698887,-0.510575 +0.506943,0.291276,1.974704,0.069651,0.696532,-0.508010 +0.504841,0.288729,1.974708,0.082986,0.693998,-0.505487 +0.502669,0.286089,1.974699,0.096289,0.691290,-0.503011 +0.500429,0.283358,1.974678,0.109555,0.688409,-0.500587 +0.498124,0.280538,1.974646,0.122780,0.685360,-0.498220 +0.495753,0.277630,1.974602,0.135957,0.682145,-0.495914 +0.493319,0.274638,1.974547,0.149081,0.678768,-0.493674 +0.490822,0.271563,1.974482,0.162148,0.675231,-0.491503 +0.488265,0.268408,1.974407,0.175151,0.671539,-0.489406 +0.485649,0.265174,1.974322,0.188086,0.667694,-0.487387 +0.482975,0.261864,1.974228,0.200947,0.663701,-0.485450 +0.480245,0.258480,1.974124,0.213730,0.659562,-0.483599 +0.477460,0.255024,1.974011,0.226428,0.655282,-0.481838 +0.474621,0.251500,1.973890,0.239037,0.650865,-0.480170 +0.471730,0.247908,1.973760,0.251552,0.646314,-0.478598 +0.468789,0.244251,1.973623,0.263966,0.641634,-0.477127 +0.465798,0.240533,1.973477,0.276276,0.636827,-0.475759 +0.462759,0.236755,1.973324,0.288476,0.631899,-0.474497 +0.459674,0.232920,1.973163,0.300561,0.626853,-0.473344 +0.456544,0.229030,1.972995,0.312526,0.621694,-0.472303 +0.453370,0.225088,1.972820,0.324366,0.616425,-0.471376 +0.450154,0.221096,1.972639,0.336075,0.611051,-0.470567 +0.446898,0.217056,1.972450,0.347650,0.605577,-0.469877 +0.443601,0.212973,1.972254,0.359084,0.600005,-0.469309 +0.440267,0.208847,1.972053,0.370374,0.594342,-0.468864 +0.436895,0.204681,1.971844,0.381514,0.588590,-0.468544 +0.433489,0.200479,1.971629,0.392500,0.582755,-0.468352 +0.430048,0.196242,1.971408,0.403327,0.576840,-0.468288 +0.426574,0.191973,1.971180,0.413990,0.570850,-0.468354 +0.423069,0.187675,1.970946,0.424484,0.564790,-0.468551 +0.419533,0.183350,1.970705,0.434806,0.558663,-0.468881 +0.415969,0.179001,1.970458,0.444950,0.552475,-0.469343 +0.412377,0.174631,1.970204,0.454913,0.546229,-0.469940 +0.408758,0.170241,1.969943,0.464690,0.539930,-0.470671 +0.405115,0.165835,1.969675,0.474276,0.533583,-0.471536 +0.401447,0.161415,1.969401,0.483668,0.527190,-0.472536 +0.397756,0.156984,1.969119,0.492861,0.520758,-0.473672 +0.394044,0.152544,1.968830,0.501851,0.514290,-0.474942 +0.390311,0.148097,1.968534,0.510635,0.507790,-0.476346 +0.386559,0.143647,1.968229,0.519209,0.501263,-0.477885 +0.382788,0.139195,1.967916,0.527568,0.494712,-0.479557 +0.379000,0.134745,1.967595,0.535709,0.488142,-0.481361 +0.375197,0.130298,1.967266,0.543629,0.481558,-0.483297 +0.371378,0.125856,1.966927,0.551323,0.474962,-0.485363 +0.367545,0.121424,1.966579,0.558789,0.468359,-0.487559 +0.363700,0.117002,1.966221,0.566023,0.461754,-0.489882 +0.359842,0.112593,1.965853,0.573022,0.455149,-0.492331 +0.355973,0.108199,1.965474,0.579783,0.448549,-0.494904 +0.352095,0.103823,1.965084,0.586302,0.441958,-0.497599 +0.348207,0.099467,1.964683,0.592577,0.435378,-0.500414 +0.344311,0.095133,1.964269,0.598605,0.428815,-0.503348 +0.340408,0.090824,1.963843,0.604383,0.422270,-0.506396 +0.336498,0.086541,1.963404,0.609909,0.415749,-0.509557 +0.332583,0.082287,1.962951,0.615180,0.409254,-0.512829 +0.328664,0.078063,1.962484,0.620194,0.402788,-0.516207 +0.324740,0.073873,1.962001,0.624948,0.396355,-0.519690 +0.320814,0.069717,1.961504,0.629440,0.389959,-0.523273 +0.316885,0.065598,1.960990,0.633668,0.383601,-0.526955 +0.312954,0.061517,1.960459,0.637630,0.377285,-0.530730 +0.309023,0.057477,1.959911,0.641325,0.371014,-0.534596 +0.305092,0.053480,1.959345,0.644751,0.364790,-0.538549 +0.301162,0.049527,1.958759,0.647905,0.358617,-0.542585 +0.297232,0.045620,1.958154,0.650787,0.352497,-0.546700 +0.293305,0.041760,1.957529,0.653395,0.346432,-0.550891 +0.289381,0.037950,1.956882,0.655729,0.340425,-0.555152 +0.285459,0.034192,1.956214,0.657786,0.334478,-0.559479 +0.281542,0.030485,1.955522,0.659566,0.328593,-0.563869 +0.277629,0.026833,1.954807,0.661068,0.322772,-0.568317 +0.273721,0.023236,1.954067,0.662292,0.317017,-0.572817 +0.269819,0.019697,1.953302,0.663236,0.311331,-0.577366 +0.265923,0.016215,1.952511,0.663901,0.305714,-0.581959 +0.262034,0.012794,1.951693,0.664285,0.300169,-0.586590 +0.258152,0.009433,1.950847,0.664389,0.294697,-0.591254 +0.254277,0.006135,1.949973,0.664213,0.289298,-0.595948 +0.250411,0.002900,1.949068,0.663757,0.283976,-0.600665 +0.246553,-0.000271,1.948133,0.663020,0.278730,-0.605400 +0.242705,-0.003376,1.947167,0.662003,0.273562,-0.610148 +0.238866,-0.006414,1.946168,0.660707,0.268472,-0.614904 +0.235037,-0.009385,1.945136,0.659132,0.263463,-0.619663 +0.231219,-0.012288,1.944070,0.657278,0.258533,-0.624418 +0.227411,-0.015121,1.942968,0.655147,0.253684,-0.629165 +0.223614,-0.017884,1.941830,0.652740,0.248916,-0.633898 +0.219830,-0.020577,1.940656,0.650057,0.244230,-0.638612 +0.216057,-0.023198,1.939443,0.647099,0.239626,-0.643300 +0.212296,-0.025747,1.938192,0.643869,0.235104,-0.647958 +0.208548,-0.028223,1.936900,0.640367,0.230664,-0.652580 +0.204813,-0.030626,1.935568,0.636595,0.226305,-0.657159 +0.201092,-0.032955,1.934195,0.632555,0.222028,-0.661692 +0.197384,-0.035211,1.932778,0.628248,0.217833,-0.666171 +0.193691,-0.037392,1.931319,0.623676,0.213719,-0.670591 +0.190012,-0.039498,1.929814,0.618842,0.209684,-0.674947 +0.186347,-0.041529,1.928265,0.613748,0.205730,-0.679233 +0.182698,-0.043485,1.926669,0.608395,0.201855,-0.683444 +0.179064,-0.045366,1.925027,0.602787,0.198057,-0.687573 +0.175445,-0.047171,1.923336,0.596926,0.194337,-0.691616 +0.171843,-0.048900,1.921597,0.590814,0.190693,-0.695567 +0.168257,-0.050554,1.919808,0.584454,0.187123,-0.699420 +0.164687,-0.052133,1.917968,0.577850,0.183628,-0.703170 +0.161134,-0.053636,1.916078,0.571003,0.180204,-0.706811 +0.157599,-0.055064,1.914135,0.563918,0.176852,-0.710339 +0.154081,-0.056417,1.912139,0.556597,0.173569,-0.713748 +0.150580,-0.057696,1.910090,0.549044,0.170353,-0.717032 +0.147098,-0.058899,1.907987,0.541262,0.167203,-0.720187 +0.143634,-0.060029,1.905828,0.533254,0.164118,-0.723208 +0.140189,-0.061085,1.903614,0.525025,0.161095,-0.726089 +0.136763,-0.062067,1.901343,0.516578,0.158132,-0.728826 +0.133356,-0.062977,1.899015,0.507916,0.155228,-0.731414 +0.129968,-0.063814,1.896629,0.499044,0.152379,-0.733847 +0.126601,-0.064579,1.894185,0.489966,0.149585,-0.736123 +0.123254,-0.065274,1.891683,0.480685,0.146843,-0.738235 +0.119927,-0.065897,1.889120,0.471207,0.144150,-0.740180 +0.116622,-0.066451,1.886498,0.461535,0.141504,-0.741953 +0.113338,-0.066935,1.883815,0.451673,0.138903,-0.743549 +0.110075,-0.067351,1.881071,0.441627,0.136344,-0.744966 +0.106834,-0.067699,1.878266,0.431400,0.133824,-0.746199 +0.103616,-0.067980,1.875399,0.420997,0.131342,-0.747243 +0.100420,-0.068196,1.872470,0.410423,0.128895,-0.748096 +0.097248,-0.068346,1.869478,0.399683,0.126479,-0.748754 +0.094098,-0.068431,1.866424,0.388782,0.124092,-0.749213 +0.090973,-0.068454,1.863306,0.377723,0.121732,-0.749470 +0.087872,-0.068414,1.860125,0.366513,0.119396,-0.749521 +0.084796,-0.068313,1.856881,0.355156,0.117080,-0.749364 +0.081744,-0.068152,1.853572,0.343658,0.114782,-0.748996 +0.078718,-0.067931,1.850200,0.332023,0.112500,-0.748414 +0.075718,-0.067652,1.846765,0.320257,0.110230,-0.747616 +0.072745,-0.067316,1.843265,0.308365,0.107969,-0.746598 +0.069798,-0.066924,1.839701,0.296352,0.105715,-0.745359 +0.066878,-0.066477,1.836073,0.284224,0.103465,-0.743897 +0.063987,-0.065977,1.832381,0.271986,0.101215,-0.742209 +0.061123,-0.065424,1.828626,0.259643,0.098964,-0.740294 +0.058288,-0.064819,1.824807,0.247202,0.096707,-0.738150 +0.055483,-0.064165,1.820924,0.234666,0.094443,-0.735776 +0.052707,-0.063462,1.816979,0.222043,0.092168,-0.733171 +0.049962,-0.062711,1.812970,0.209337,0.089879,-0.730332 +0.047247,-0.061914,1.808899,0.196555,0.087574,-0.727260 +0.044563,-0.061072,1.804766,0.183701,0.085250,-0.723954 +0.041912,-0.060186,1.800570,0.170781,0.082904,-0.720412 +0.039293,-0.059257,1.796314,0.157801,0.080534,-0.716634 +0.036707,-0.058287,1.791996,0.144768,0.078136,-0.712621 +0.034154,-0.057278,1.787618,0.131685,0.075708,-0.708372 +0.031636,-0.056229,1.783181,0.118560,0.073247,-0.703887 +0.029152,-0.055143,1.778684,0.105397,0.070751,-0.699167 +0.026704,-0.054022,1.774129,0.092203,0.068217,-0.694211 +0.024291,-0.052865,1.769516,0.078983,0.065642,-0.689020 +0.021916,-0.051675,1.764846,0.065743,0.063025,-0.683596 +0.019577,-0.050453,1.760120,0.052489,0.060362,-0.677939 +0.017277,-0.049200,1.755339,0.039226,0.057652,-0.672050 +0.015014,-0.047918,1.750503,0.025959,0.054893,-0.665931 +0.012791,-0.046607,1.745613,0.012696,0.052081,-0.659583 +0.010608,-0.045270,1.740671,-0.000560,0.049215,-0.653007 +0.008465,-0.043907,1.735678,-0.013801,0.046293,-0.646206 +0.006364,-0.042519,1.730634,-0.027023,0.043312,-0.639181 +0.004304,-0.041109,1.725541,-0.040221,0.040271,-0.631935 +0.002286,-0.039676,1.720399,-0.053387,0.037169,-0.624470 +0.000311,-0.038224,1.715211,-0.066518,0.034002,-0.616788 +-0.001619,-0.036751,1.709977,-0.079607,0.030770,-0.608892 +-0.003506,-0.035261,1.704698,-0.092648,0.027472,-0.600785 +-0.005347,-0.033754,1.699377,-0.105638,0.024104,-0.592470 +-0.007142,-0.032232,1.694013,-0.118570,0.020667,-0.583949 +-0.008891,-0.030694,1.688609,-0.131439,0.017158,-0.575227 +-0.010593,-0.029144,1.683166,-0.144239,0.013577,-0.566306 +-0.012247,-0.027581,1.677686,-0.156966,0.009922,-0.557190 +-0.013852,-0.026008,1.672169,-0.169614,0.006193,-0.547882 +-0.015408,-0.024425,1.666619,-0.182178,0.002388,-0.538387 +-0.016915,-0.022832,1.661035,-0.194654,-0.001494,-0.528709 +-0.018370,-0.021233,1.655420,-0.207035,-0.005452,-0.518852 +-0.019775,-0.019626,1.649776,-0.219318,-0.009489,-0.508819 +-0.021128,-0.018014,1.644104,-0.231497,-0.013603,-0.498615 +-0.022428,-0.016398,1.638405,-0.243568,-0.017797,-0.488245 +-0.023675,-0.014778,1.632683,-0.255525,-0.022069,-0.477714 +-0.024868,-0.013156,1.626938,-0.267365,-0.026421,-0.467025 +-0.026007,-0.011532,1.621172,-0.279082,-0.030852,-0.456185 +-0.027091,-0.009907,1.615387,-0.290673,-0.035362,-0.445197 +-0.028119,-0.008283,1.609585,-0.302132,-0.039951,-0.434067 +-0.029091,-0.006660,1.603768,-0.313455,-0.044620,-0.422800 +-0.030006,-0.005039,1.597938,-0.324639,-0.049367,-0.411401 +-0.030863,-0.003421,1.592097,-0.335678,-0.054191,-0.399876 +-0.031663,-0.001806,1.586246,-0.346569,-0.059094,-0.388230 +-0.032403,-0.000196,1.580389,-0.357308,-0.064073,-0.376468 +-0.033085,0.001408,1.574526,-0.367891,-0.069128,-0.364596 +-0.033707,0.003007,1.568660,-0.378314,-0.074258,-0.352621 +-0.034269,0.004599,1.562793,-0.388573,-0.079463,-0.340546 +-0.034771,0.006183,1.556928,-0.398665,-0.084740,-0.328379 +-0.035211,0.007760,1.551065,-0.408586,-0.090089,-0.316125 +-0.035590,0.009327,1.545208,-0.418332,-0.095508,-0.303790 +-0.035906,0.010885,1.539358,-0.427901,-0.100996,-0.291380 +-0.036161,0.012434,1.533518,-0.437289,-0.106551,-0.278901 +-0.036352,0.013971,1.527689,-0.446494,-0.112172,-0.266358 +-0.036480,0.015498,1.521875,-0.455511,-0.117856,-0.253759 +-0.036545,0.017013,1.516076,-0.464337,-0.123603,-0.241109 +-0.036546,0.018516,1.510296,-0.472972,-0.129409,-0.228414 +-0.036482,0.020007,1.504537,-0.481410,-0.135273,-0.215681 +-0.036354,0.021484,1.498800,-0.489650,-0.141193,-0.202915 +-0.036162,0.022949,1.493088,-0.497690,-0.147166,-0.190122 +-0.035904,0.024399,1.487404,-0.505526,-0.153190,-0.177310 +-0.035582,0.025836,1.481749,-0.513157,-0.159262,-0.164484 +-0.035194,0.027258,1.476125,-0.520581,-0.165380,-0.151649 +-0.034740,0.028665,1.470536,-0.527794,-0.171541,-0.138813 +-0.034221,0.030057,1.464982,-0.534796,-0.177742,-0.125982 +-0.033637,0.031434,1.459467,-0.541585,-0.183981,-0.113161 +-0.032986,0.032795,1.453992,-0.548158,-0.190254,-0.100357 +-0.032270,0.034141,1.448560,-0.554515,-0.196559,-0.087575 +-0.031488,0.035471,1.443173,-0.560653,-0.202892,-0.074822 +-0.030640,0.036784,1.437833,-0.566571,-0.209251,-0.062104 +-0.029727,0.038081,1.432542,-0.572268,-0.215631,-0.049426 +-0.028748,0.039362,1.427303,-0.577743,-0.222030,-0.036794 +-0.027704,0.040626,1.422117,-0.582994,-0.228445,-0.024215 +-0.026595,0.041874,1.416986,-0.588021,-0.234871,-0.011694 +-0.025420,0.043105,1.411914,-0.592823,-0.241305,0.000763 +-0.024181,0.044319,1.406901,-0.597399,-0.247744,0.013151 +-0.022877,0.045517,1.401950,-0.601749,-0.254184,0.025465 +-0.021509,0.046697,1.397064,-0.605872,-0.260621,0.037698 +-0.020078,0.047861,1.392243,-0.609767,-0.267052,0.049845 +-0.018582,0.049008,1.387490,-0.613435,-0.273473,0.061901 +-0.017024,0.050138,1.382807,-0.616874,-0.279879,0.073861 +-0.015403,0.051251,1.378197,-0.620086,-0.286268,0.085720 +-0.013720,0.052348,1.373660,-0.623070,-0.292635,0.097473 +-0.011976,0.053428,1.369199,-0.625827,-0.298976,0.109114 +-0.010170,0.054491,1.364815,-0.628356,-0.305287,0.120640 +-0.008304,0.055538,1.360511,-0.630658,-0.311565,0.132044 +-0.006379,0.056569,1.356288,-0.632734,-0.317804,0.143324 +-0.004394,0.057584,1.352149,-0.634583,-0.324002,0.154474 +-0.002352,0.058582,1.348094,-0.636208,-0.330154,0.165490 +-0.000251,0.059564,1.344125,-0.637608,-0.336256,0.176367 +0.001906,0.060531,1.340244,-0.638784,-0.342304,0.187103 +0.004119,0.061481,1.336454,-0.639738,-0.348294,0.197692 +0.006387,0.062417,1.332754,-0.640471,-0.354221,0.208131 +0.008709,0.063337,1.329148,-0.640983,-0.360083,0.218417 +0.011084,0.064241,1.325635,-0.641276,-0.365874,0.228545 +0.013511,0.065131,1.322219,-0.641352,-0.371590,0.238513 +0.015989,0.066006,1.318900,-0.641212,-0.377228,0.248317 +0.018518,0.066865,1.315679,-0.640858,-0.382784,0.257954 +0.021095,0.067711,1.312558,-0.640291,-0.388253,0.267422 +0.023720,0.068542,1.309538,-0.639513,-0.393632,0.276717 +0.026392,0.069359,1.306621,-0.638526,-0.398917,0.285836 +0.029108,0.070162,1.303807,-0.637332,-0.404103,0.294778 +0.031869,0.070951,1.301097,-0.635933,-0.409187,0.303540 +0.034673,0.071726,1.298493,-0.634331,-0.414166,0.312119 +0.037518,0.072488,1.295996,-0.632528,-0.419034,0.320515 +0.040404,0.073236,1.293607,-0.630527,-0.423789,0.328724 +0.043328,0.073972,1.291326,-0.628330,-0.428428,0.336746 +0.046289,0.074694,1.289155,-0.625939,-0.432945,0.344578 +0.049286,0.075404,1.287094,-0.623357,-0.437338,0.352220 +0.052317,0.076100,1.285144,-0.620587,-0.441603,0.359670 +0.055382,0.076784,1.283306,-0.617632,-0.445738,0.366927 +0.058477,0.077456,1.281580,-0.614493,-0.449737,0.373991 +0.061602,0.078116,1.279967,-0.611174,-0.453599,0.380860 +0.064755,0.078763,1.278467,-0.607678,-0.457321,0.387534 +0.067934,0.079398,1.277081,-0.604008,-0.460897,0.394013 +0.071138,0.080021,1.275810,-0.600167,-0.464327,0.400297 +0.074365,0.080632,1.274653,-0.596157,-0.467607,0.406385 +0.077613,0.081231,1.273612,-0.591982,-0.470734,0.412278 +0.080881,0.081818,1.272685,-0.587646,-0.473705,0.417976 +0.084166,0.082394,1.271874,-0.583151,-0.476519,0.423479 +0.087467,0.082958,1.271178,-0.578501,-0.479171,0.428788 +0.090782,0.083510,1.270599,-0.573699,-0.481660,0.433904 +0.094110,0.084050,1.270134,-0.568749,-0.483983,0.438827 +0.097447,0.084579,1.269786,-0.563654,-0.486138,0.443559 +0.100793,0.085096,1.269552,-0.558417,-0.488123,0.448101 +0.104146,0.085601,1.269434,-0.553042,-0.489937,0.452455 +0.107503,0.086094,1.269431,-0.547533,-0.491576,0.456621 +0.110863,0.086575,1.269543,-0.541894,-0.493040,0.460602 +0.114224,0.087045,1.269769,-0.536127,-0.494326,0.464400 +0.117583,0.087502,1.270110,-0.530237,-0.495433,0.468016 +0.120939,0.087947,1.270564,-0.524228,-0.496360,0.471452 +0.124289,0.088380,1.271131,-0.518103,-0.497105,0.474711 +0.127633,0.088800,1.271810,-0.511866,-0.497667,0.477795 +0.130967,0.089208,1.272601,-0.505521,-0.498046,0.480707 +0.134289,0.089603,1.273504,-0.499071,-0.498240,0.483449 +0.137599,0.089985,1.274517,-0.492521,-0.498248,0.486025 +0.140893,0.090353,1.275640,-0.485875,-0.498070,0.488436 +0.144169,0.090708,1.276871,-0.479136,-0.497705,0.490687 +0.147426,0.091050,1.278211,-0.472308,-0.497153,0.492779 +0.150662,0.091377,1.279657,-0.465396,-0.496414,0.494717 +0.153874,0.091690,1.281209,-0.458403,-0.495487,0.496504 +0.157060,0.091989,1.282867,-0.451333,-0.494373,0.498143 +0.160219,0.092272,1.284628,-0.444191,-0.493072,0.499638 +0.163348,0.092540,1.286492,-0.436979,-0.491583,0.500993 +0.166446,0.092793,1.288457,-0.429703,-0.489908,0.502211 +0.169510,0.093030,1.290522,-0.422366,-0.488047,0.503296 +0.172538,0.093250,1.292687,-0.414972,-0.486001,0.504252 +0.175528,0.093453,1.294949,-0.407525,-0.483771,0.505083 +0.178479,0.093640,1.297307,-0.400029,-0.481357,0.505793 +0.181388,0.093808,1.299759,-0.392488,-0.478761,0.506387 +0.184253,0.093959,1.302305,-0.384907,-0.475984,0.506868 +0.187073,0.094091,1.304943,-0.377288,-0.473028,0.507242 +0.189845,0.094204,1.307671,-0.369637,-0.469893,0.507511 +0.192568,0.094297,1.310487,-0.361956,-0.466582,0.507682 +0.195240,0.094371,1.313391,-0.354250,-0.463097,0.507757 +0.197858,0.094424,1.316379,-0.346523,-0.459439,0.507743 +0.200422,0.094455,1.319451,-0.338779,-0.455610,0.507642 +0.202929,0.094466,1.322605,-0.331021,-0.451613,0.507461 +0.205377,0.094453,1.325839,-0.323254,-0.447451,0.507203 +0.207765,0.094419,1.329150,-0.315481,-0.443124,0.506873 +0.210091,0.094360,1.332538,-0.307705,-0.438637,0.506476 +0.212353,0.094278,1.336001,-0.299932,-0.433992,0.506017 +0.214550,0.094172,1.339536,-0.292164,-0.429191,0.505500 +0.216679,0.094040,1.343141,-0.284406,-0.424238,0.504929 +0.218740,0.093882,1.346815,-0.276660,-0.419136,0.504311 +0.220731,0.093698,1.350555,-0.268931,-0.413888,0.503649 +0.222650,0.093487,1.354360,-0.261222,-0.408497,0.502948 +0.224496,0.093249,1.358228,-0.253538,-0.402966,0.502212 +0.226267,0.092982,1.362156,-0.245880,-0.397300,0.501448 +0.227962,0.092686,1.366142,-0.238254,-0.391501,0.500658 +0.229580,0.092360,1.370185,-0.230662,-0.385574,0.499848 +0.231118,0.092005,1.374281,-0.223107,-0.379522,0.499022 +0.232577,0.091618,1.378430,-0.215594,-0.373350,0.498185 +0.233955,0.091200,1.382628,-0.208126,-0.367061,0.497342 +0.235250,0.090750,1.386874,-0.200706,-0.360659,0.496497 +0.236461,0.090267,1.391166,-0.193337,-0.354149,0.495653 +0.237588,0.089750,1.395501,-0.186022,-0.347535,0.494817 +0.238629,0.089200,1.399877,-0.178765,-0.340822,0.493991 +0.239583,0.088614,1.404291,-0.171569,-0.334013,0.493181 +0.240449,0.087993,1.408743,-0.164436,-0.327113,0.492390 +0.241227,0.087336,1.413229,-0.157371,-0.320127,0.491623 +0.241916,0.086643,1.417748,-0.150375,-0.313060,0.490883 +0.242514,0.085912,1.422296,-0.143452,-0.305917,0.490174 +0.243022,0.085143,1.426873,-0.136605,-0.298701,0.489501 +0.243438,0.084335,1.431475,-0.129837,-0.291418,0.488867 +0.243762,0.083489,1.436100,-0.123149,-0.284073,0.488276 +0.243993,0.082603,1.440747,-0.116546,-0.276671,0.487731 +0.244131,0.081676,1.445413,-0.110030,-0.269217,0.487236 +0.244175,0.080709,1.450096,-0.103603,-0.261716,0.486794 +0.244126,0.079700,1.454794,-0.097268,-0.254172,0.486409 +0.243982,0.078650,1.459504,-0.091027,-0.246592,0.486084 +0.243744,0.077557,1.464225,-0.084884,-0.238979,0.485821 +0.243411,0.076421,1.468954,-0.078839,-0.231340,0.485624 +0.242983,0.075242,1.473689,-0.072897,-0.223679,0.485495 +0.242460,0.074019,1.478428,-0.067058,-0.216002,0.485438 +0.241842,0.072752,1.483169,-0.061325,-0.208314,0.485454 +0.241129,0.071440,1.487910,-0.055701,-0.200619,0.485547 +0.240322,0.070083,1.492649,-0.050187,-0.192924,0.485718 +0.239420,0.068680,1.497384,-0.044786,-0.185233,0.485969 +0.238424,0.067232,1.502112,-0.039499,-0.177552,0.486304 +0.237334,0.065737,1.506833,-0.034329,-0.169886,0.486723 +0.236150,0.064197,1.511543,-0.029277,-0.162239,0.487228 +0.234873,0.062609,1.516242,-0.024345,-0.154618,0.487821 +0.233503,0.060975,1.520926,-0.019535,-0.147027,0.488504 +0.232042,0.059293,1.525595,-0.014849,-0.139471,0.489278 +0.230489,0.057564,1.530246,-0.010288,-0.131955,0.490143 +0.228845,0.055787,1.534877,-0.005853,-0.124485,0.491102 +0.227111,0.053963,1.539488,-0.001547,-0.117065,0.492154 +0.225288,0.052091,1.544075,0.002629,-0.109700,0.493301 +0.223377,0.050171,1.548638,0.006674,-0.102395,0.494543 +0.221378,0.048204,1.553174,0.010586,-0.095156,0.495881 +0.219293,0.046188,1.557683,0.014365,-0.087986,0.497315 +0.217123,0.044125,1.562162,0.018009,-0.080890,0.498845 +0.214869,0.042014,1.566609,0.021516,-0.073874,0.500471 +0.212531,0.039855,1.571024,0.024886,-0.066941,0.502192 +0.210112,0.037649,1.575405,0.028118,-0.060097,0.504010 +0.207613,0.035395,1.579750,0.031210,-0.053345,0.505922 +0.205035,0.033094,1.584059,0.034163,-0.046690,0.507928 +0.202379,0.030746,1.588328,0.036974,-0.040136,0.510028 +0.199648,0.028352,1.592559,0.039643,-0.033688,0.512221 +0.196841,0.025911,1.596748,0.042169,-0.027348,0.514506 +0.193962,0.023425,1.600895,0.044552,-0.021122,0.516880 +0.191012,0.020892,1.604998,0.046791,-0.015014,0.519344 +0.187992,0.018315,1.609057,0.048885,-0.009026,0.521895 +0.184904,0.015693,1.613071,0.050834,-0.003163,0.524531 +0.181751,0.013027,1.617038,0.052637,0.002571,0.527251 +0.178533,0.010317,1.620957,0.054294,0.008175,0.530054 +0.175253,0.007565,1.624827,0.055805,0.013643,0.532935 +0.171913,0.004770,1.628648,0.057169,0.018973,0.535895 +0.168515,0.001933,1.632418,0.058385,0.024161,0.538929 +0.165061,-0.000944,1.636137,0.059455,0.029206,0.542036 +0.161553,-0.003862,1.639804,0.060377,0.034103,0.545213 +0.157992,-0.006819,1.643419,0.061152,0.038851,0.548456 +0.154383,-0.009815,1.646980,0.061779,0.043446,0.551764 +0.150726,-0.012848,1.650487,0.062259,0.047887,0.555133 +0.147023,-0.015918,1.653939,0.062591,0.052171,0.558560 +0.143278,-0.019023,1.657336,0.062776,0.056295,0.562041 +0.139493,-0.022164,1.660677,0.062813,0.060258,0.565573 +0.135670,-0.025338,1.663962,0.062704,0.064059,0.569153 +0.131810,-0.028545,1.667191,0.062447,0.067694,0.572777 +0.127918,-0.031783,1.670363,0.062045,0.071163,0.576441 +0.123995,-0.035051,1.673478,0.061496,0.074464,0.580142 +0.120044,-0.038349,1.676536,0.060801,0.077596,0.583874 +0.116067,-0.041674,1.679536,0.059961,0.080557,0.587635 +0.112068,-0.045027,1.682478,0.058977,0.083348,0.591421 +0.108048,-0.048404,1.685363,0.057848,0.085966,0.595226 +0.104010,-0.051805,1.688189,0.056575,0.088411,0.599047 +0.099957,-0.055229,1.690958,0.055160,0.090683,0.602879 +0.095891,-0.058674,1.693669,0.053602,0.092782,0.606717 +0.091816,-0.062138,1.696322,0.051902,0.094706,0.610558 +0.087734,-0.065621,1.698918,0.050062,0.096456,0.614397 +0.083647,-0.069120,1.701456,0.048081,0.098033,0.618228 +0.079559,-0.072634,1.703937,0.045962,0.099436,0.622047 +0.075471,-0.076161,1.706361,0.043703,0.100665,0.625850 +0.071388,-0.079701,1.708728,0.041308,0.101722,0.629631 +0.067311,-0.083250,1.711039,0.038776,0.102606,0.633386 +0.063244,-0.086807,1.713294,0.036108,0.103320,0.637109 +0.059189,-0.090372,1.715493,0.033307,0.103863,0.640796 +0.055149,-0.093941,1.717637,0.030371,0.104237,0.644442 +0.051126,-0.097513,1.719727,0.027304,0.104444,0.648041 +0.047124,-0.101087,1.721763,0.024106,0.104484,0.651588 +0.043146,-0.104660,1.723745,0.020778,0.104360,0.655080 +0.039193,-0.108230,1.725674,0.017321,0.104072,0.658509 +0.035269,-0.111796,1.727552,0.013737,0.103624,0.661872 +0.031377,-0.115356,1.729377,0.010027,0.103017,0.665163 +0.027519,-0.118908,1.731152,0.006192,0.102253,0.668377 +0.023698,-0.122450,1.732877,0.002234,0.101334,0.671509 +0.019917,-0.125980,1.734552,-0.001845,0.100264,0.674554 +0.016178,-0.129495,1.736179,-0.006045,0.099044,0.677507 +0.012484,-0.132995,1.737759,-0.010364,0.097678,0.680363 +0.008838,-0.136476,1.739291,-0.014800,0.096168,0.683117 +0.005243,-0.139937,1.740778,-0.019352,0.094518,0.685763 +0.001700,-0.143376,1.742220,-0.024019,0.092730,0.688298 +-0.001787,-0.146791,1.743618,-0.028798,0.090807,0.690715 +-0.005215,-0.150179,1.744973,-0.033687,0.088754,0.693011 +-0.008583,-0.153539,1.746286,-0.038686,0.086573,0.695180 +-0.011888,-0.156868,1.747558,-0.043793,0.084269,0.697217 +-0.015127,-0.160165,1.748790,-0.049005,0.081845,0.699119 +-0.018298,-0.163427,1.749984,-0.054321,0.079304,0.700880 +-0.021399,-0.166652,1.751139,-0.059740,0.076651,0.702496 +-0.024426,-0.169839,1.752258,-0.065258,0.073890,0.703962 +-0.027378,-0.172984,1.753341,-0.070876,0.071025,0.705274 +-0.030253,-0.176086,1.754390,-0.076590,0.068061,0.706428 +-0.033048,-0.179143,1.755406,-0.082398,0.065001,0.707419 +-0.035760,-0.182153,1.756389,-0.088299,0.061850,0.708243 +-0.038389,-0.185113,1.757342,-0.094291,0.058613,0.708897 +-0.040931,-0.188022,1.758265,-0.100372,0.055294,0.709376 +-0.043385,-0.190877,1.759159,-0.106539,0.051898,0.709676 +-0.045749,-0.193677,1.760027,-0.112791,0.048429,0.709794 +-0.048020,-0.196418,1.760867,-0.119125,0.044894,0.709727 +-0.050197,-0.199101,1.761684,-0.125540,0.041295,0.709470 +-0.052278,-0.201721,1.762476,-0.132033,0.037639,0.709020 +-0.054261,-0.204278,1.763246,-0.138603,0.033931,0.708375 +-0.056144,-0.206769,1.763995,-0.145246,0.030175,0.707530 +-0.057925,-0.209192,1.764724,-0.151961,0.026377,0.706484 +-0.059604,-0.211545,1.765434,-0.158745,0.022541,0.705232 +-0.061178,-0.213827,1.766126,-0.165596,0.018674,0.703773 +-0.062645,-0.216036,1.766802,-0.172513,0.014780,0.702104 +-0.064006,-0.218169,1.767464,-0.179491,0.010865,0.700223 +-0.065257,-0.220225,1.768111,-0.186531,0.006933,0.698126 +-0.066397,-0.222202,1.768746,-0.193628,0.002991,0.695813 +-0.067426,-0.224098,1.769369,-0.200780,-0.000957,0.693280 +-0.068342,-0.225912,1.769983,-0.207986,-0.004904,0.690527 +-0.069144,-0.227641,1.770587,-0.215242,-0.008846,0.687551 +-0.069831,-0.229285,1.771183,-0.222546,-0.012778,0.684351 +-0.070402,-0.230841,1.771773,-0.229897,-0.016693,0.680926 +-0.070855,-0.232308,1.772357,-0.237290,-0.020587,0.677274 +-0.071191,-0.233683,1.772938,-0.244724,-0.024454,0.673395 +-0.071408,-0.234967,1.773514,-0.252197,-0.028288,0.669287 +-0.071505,-0.236157,1.774089,-0.259705,-0.032085,0.664950 +-0.071482,-0.237252,1.774663,-0.267246,-0.035839,0.660383 +-0.071338,-0.238249,1.775237,-0.274818,-0.039545,0.655586 +-0.071074,-0.239149,1.775813,-0.282417,-0.043198,0.650559 +-0.070687,-0.239950,1.776390,-0.290042,-0.046791,0.645301 +-0.070178,-0.240650,1.776971,-0.297690,-0.050321,0.639813 +-0.069546,-0.241248,1.777557,-0.305357,-0.053782,0.634096 +-0.068792,-0.241744,1.778147,-0.313042,-0.057169,0.628148 +-0.067915,-0.242135,1.778744,-0.320741,-0.060477,0.621973 +-0.066915,-0.242421,1.779348,-0.328453,-0.063700,0.615569 +-0.065792,-0.242601,1.779961,-0.336173,-0.066835,0.608938 +-0.064546,-0.242675,1.780583,-0.343900,-0.069876,0.602082 +-0.063177,-0.242640,1.781214,-0.351631,-0.072818,0.595001 +-0.061685,-0.242496,1.781857,-0.359362,-0.075657,0.587697 +-0.060071,-0.242243,1.782511,-0.367091,-0.078388,0.580172 +-0.058335,-0.241880,1.783178,-0.374816,-0.081006,0.572427 +-0.056477,-0.241405,1.783858,-0.382534,-0.083508,0.564466 +-0.054498,-0.240819,1.784552,-0.390241,-0.085888,0.556288 +-0.052398,-0.240122,1.785261,-0.397934,-0.088143,0.547899 +-0.050178,-0.239311,1.785985,-0.405612,-0.090268,0.539298 +-0.047838,-0.238388,1.786726,-0.413271,-0.092259,0.530491 +-0.045380,-0.237351,1.787483,-0.420908,-0.094113,0.521478 +-0.042805,-0.236201,1.788258,-0.428521,-0.095825,0.512263 +-0.040112,-0.234937,1.789050,-0.436106,-0.097392,0.502850 +-0.037303,-0.233559,1.789861,-0.443660,-0.098811,0.493241 +-0.034379,-0.232067,1.790692,-0.451182,-0.100076,0.483441 +-0.031342,-0.230462,1.791541,-0.458667,-0.101186,0.473452 +-0.028191,-0.228742,1.792411,-0.466113,-0.102137,0.463279 +-0.024930,-0.226908,1.793301,-0.473517,-0.102926,0.452924 +-0.021558,-0.224961,1.794212,-0.480876,-0.103550,0.442394 +-0.018077,-0.222900,1.795145,-0.488187,-0.104006,0.431690 +-0.014489,-0.220726,1.796098,-0.495447,-0.104291,0.420819 +-0.010794,-0.218439,1.797074,-0.502653,-0.104403,0.409784 +-0.006996,-0.216040,1.798071,-0.509803,-0.104339,0.398590 +-0.003094,-0.213529,1.799091,-0.516893,-0.104097,0.387241 +0.000908,-0.210907,1.800134,-0.523921,-0.103675,0.375742 +0.005011,-0.208175,1.801199,-0.530882,-0.103071,0.364099 +0.009211,-0.205332,1.802287,-0.537776,-0.102283,0.352317 +0.013507,-0.202381,1.803398,-0.544598,-0.101309,0.340399 +0.017896,-0.199322,1.804532,-0.551345,-0.100148,0.328353 +0.022379,-0.196155,1.805689,-0.558016,-0.098798,0.316183 +0.026951,-0.192882,1.806870,-0.564606,-0.097258,0.303894 +0.031611,-0.189503,1.808073,-0.571113,-0.095527,0.291492 +0.036358,-0.186021,1.809299,-0.577534,-0.093604,0.278983 +0.041188,-0.182436,1.810549,-0.583866,-0.091488,0.266373 +0.046100,-0.178749,1.811821,-0.590106,-0.089179,0.253667 +0.051092,-0.174962,1.813116,-0.596252,-0.086676,0.240871 +0.056161,-0.171076,1.814434,-0.602299,-0.083979,0.227992 +0.061305,-0.167092,1.815774,-0.608247,-0.081087,0.215034 +0.066522,-0.163013,1.817136,-0.614091,-0.078001,0.202005 +0.071809,-0.158839,1.818521,-0.619829,-0.074721,0.188911 +0.077165,-0.154572,1.819926,-0.625458,-0.071247,0.175756 +0.082585,-0.150214,1.821354,-0.630975,-0.067580,0.162549 +0.088069,-0.145767,1.822802,-0.636377,-0.063719,0.149295 +0.093614,-0.141232,1.824271,-0.641663,-0.059668,0.136000 +0.099216,-0.136612,1.825760,-0.646828,-0.055425,0.122671 +0.104874,-0.131908,1.827269,-0.651870,-0.050992,0.109315 +0.110585,-0.127122,1.828798,-0.656787,-0.046371,0.095936 +0.116346,-0.122256,1.830346,-0.661575,-0.041563,0.082543 +0.122154,-0.117313,1.831912,-0.666233,-0.036569,0.069141 +0.128008,-0.112294,1.833496,-0.670757,-0.031392,0.055737 +0.133904,-0.107202,1.835098,-0.675145,-0.026032,0.042337 +0.139840,-0.102039,1.836717,-0.679394,-0.020493,0.028948 +0.145812,-0.096807,1.838352,-0.683502,-0.014776,0.015576 +0.151819,-0.091509,1.840003,-0.687466,-0.008884,0.002227 +0.157857,-0.086146,1.841670,-0.691283,-0.002820,-0.011092 +0.163924,-0.080722,1.843351,-0.694952,0.003415,-0.024375 +0.170017,-0.075239,1.845046,-0.698470,0.009817,-0.037615 +0.176133,-0.069699,1.846754,-0.701834,0.016384,-0.050807 +0.182269,-0.064105,1.848476,-0.705043,0.023112,-0.063944 +0.188424,-0.058459,1.850209,-0.708093,0.029999,-0.077019 +0.194593,-0.052765,1.851953,-0.710982,0.037040,-0.090028 +0.200774,-0.047024,1.853709,-0.713709,0.044233,-0.102962 +0.206964,-0.041240,1.855474,-0.716271,0.051573,-0.115818 +0.213161,-0.035415,1.857248,-0.718665,0.059058,-0.128588 +0.219362,-0.029552,1.859031,-0.720891,0.066683,-0.141267 +0.225564,-0.023654,1.860822,-0.722945,0.074445,-0.153849 +0.231764,-0.017723,1.862619,-0.724826,0.082339,-0.166327 +0.237959,-0.011763,1.864423,-0.726531,0.090362,-0.178698 +0.244148,-0.005775,1.866232,-0.728060,0.098508,-0.190955 +0.250326,0.000236,1.868046,-0.729409,0.106774,-0.203092 +0.256492,0.006268,1.869864,-0.730577,0.115155,-0.215104 +0.262642,0.012318,1.871684,-0.731563,0.123647,-0.226986 +0.268775,0.018383,1.873507,-0.732364,0.132245,-0.238733 +0.274886,0.024461,1.875332,-0.732980,0.140944,-0.250340 +0.280975,0.030547,1.877157,-0.733408,0.149739,-0.261802 +0.287037,0.036640,1.878982,-0.733646,0.158626,-0.273113 +0.293071,0.042737,1.880806,-0.733694,0.167599,-0.284270 +0.299074,0.048833,1.882629,-0.733550,0.176654,-0.295268 +0.305043,0.054927,1.884449,-0.733213,0.185785,-0.306102 +0.310977,0.061015,1.886266,-0.732681,0.194987,-0.316768 +0.316871,0.067094,1.888078,-0.731953,0.204254,-0.327262 +0.322725,0.073162,1.889886,-0.731028,0.213583,-0.337580 +0.328535,0.079215,1.891688,-0.729905,0.222966,-0.347718 +0.334299,0.085250,1.893484,-0.728583,0.232399,-0.357673 +0.340015,0.091265,1.895272,-0.727060,0.241876,-0.367440 +0.345681,0.097256,1.897053,-0.725337,0.251392,-0.377016 +0.351293,0.103221,1.898824,-0.723412,0.260942,-0.386399 +0.356851,0.109156,1.900587,-0.721284,0.270518,-0.395584 +0.362351,0.115058,1.902339,-0.718953,0.280117,-0.404569 +0.367792,0.120925,1.904080,-0.716418,0.289733,-0.413352 +0.373172,0.126754,1.905810,-0.713679,0.299359,-0.421929 +0.378487,0.132542,1.907527,-0.710735,0.308990,-0.430298 +0.383738,0.138286,1.909231,-0.707585,0.318621,-0.438457 +0.388920,0.143983,1.910921,-0.704231,0.328245,-0.446404 +0.394033,0.149630,1.912597,-0.700670,0.337858,-0.454136 +0.399075,0.155225,1.914258,-0.696904,0.347453,-0.461653 +0.404043,0.160765,1.915904,-0.692932,0.357026,-0.468952 +0.408936,0.166247,1.917533,-0.688755,0.366569,-0.476031 +0.413752,0.171668,1.919145,-0.684371,0.376078,-0.482891 +0.418490,0.177026,1.920739,-0.679782,0.385547,-0.489529 +0.423147,0.182318,1.922316,-0.674988,0.394971,-0.495945 +0.427723,0.187542,1.923874,-0.669989,0.404343,-0.502137 +0.432215,0.192695,1.925412,-0.664786,0.413659,-0.508107 +0.436622,0.197774,1.926931,-0.659379,0.422913,-0.513852 +0.440943,0.202778,1.928430,-0.653769,0.432100,-0.519373 +0.445176,0.207703,1.929908,-0.647956,0.441214,-0.524670 +0.449320,0.212548,1.931365,-0.641942,0.450250,-0.529743 +0.453374,0.217309,1.932800,-0.635727,0.459203,-0.534592 +0.457336,0.221986,1.934213,-0.629312,0.468067,-0.539218 +0.461205,0.226574,1.935604,-0.622698,0.476838,-0.543622 +0.464981,0.231074,1.936972,-0.615887,0.485510,-0.547804 +0.468661,0.235481,1.938316,-0.608879,0.494078,-0.551765 +0.472245,0.239795,1.939637,-0.601676,0.502538,-0.555508 +0.475733,0.244013,1.940935,-0.594280,0.510885,-0.559032 +0.479122,0.248133,1.942208,-0.586692,0.519113,-0.562339 +0.482413,0.252154,1.943456,-0.578913,0.527219,-0.565432 +0.485604,0.256073,1.944680,-0.570945,0.535198,-0.568312 +0.488695,0.259889,1.945879,-0.562791,0.543045,-0.570981 +0.491685,0.263600,1.947053,-0.554451,0.550756,-0.573441 +0.494574,0.267204,1.948201,-0.545928,0.558326,-0.575695 +0.497360,0.270700,1.949324,-0.537224,0.565752,-0.577745 +0.500044,0.274087,1.950422,-0.528341,0.573030,-0.579594 +0.502624,0.277363,1.951493,-0.519281,0.580155,-0.581245 +0.505101,0.280526,1.952538,-0.510047,0.587123,-0.582700 +0.507474,0.283575,1.953558,-0.500641,0.593932,-0.583963 +0.509743,0.286509,1.954551,-0.491065,0.600577,-0.585037 +0.511907,0.289327,1.955518,-0.481322,0.607055,-0.585925 +0.513967,0.292028,1.956459,-0.471415,0.613363,-0.586631 +0.515922,0.294611,1.957374,-0.461346,0.619497,-0.587158 +0.517772,0.297074,1.958263,-0.451119,0.625454,-0.587510 +0.519518,0.299416,1.959126,-0.440736,0.631231,-0.587692 +0.521158,0.301638,1.959962,-0.430200,0.636826,-0.587707 +0.522693,0.303738,1.960773,-0.419514,0.642236,-0.587558 +0.524124,0.305716,1.961558,-0.408682,0.647458,-0.587252 +0.525450,0.307570,1.962317,-0.397707,0.652490,-0.586791 +0.526672,0.309301,1.963050,-0.386592,0.657330,-0.586180 +0.527790,0.310908,1.963758,-0.375340,0.661975,-0.585425 +0.528804,0.312390,1.964441,-0.363956,0.666423,-0.584528 +0.529715,0.313748,1.965098,-0.352442,0.670672,-0.583496 +0.530523,0.314980,1.965731,-0.340802,0.674722,-0.582333 +0.531228,0.316087,1.966339,-0.329040,0.678570,-0.581044 +0.531831,0.317069,1.966922,-0.317160,0.682215,-0.579633 +0.532333,0.317926,1.967481,-0.305165,0.685655,-0.578107 +0.532733,0.318657,1.968016,-0.293060,0.688889,-0.576469 +0.533033,0.319264,1.968528,-0.280849,0.691917,-0.574726 +0.533234,0.319745,1.969016,-0.268535,0.694738,-0.572882 +0.533336,0.320102,1.969481,-0.256123,0.697351,-0.570943 +0.533339,0.320334,1.969924,-0.243618,0.699755,-0.568914 +0.533245,0.320442,1.970344,-0.231022,0.701949,-0.566801 +0.533054,0.320427,1.970742,-0.218341,0.703935,-0.564608 +0.532768,0.320289,1.971118,-0.205580,0.705711,-0.562341 +0.532387,0.320029,1.971473,-0.192741,0.707278,-0.560007 +0.531911,0.319647,1.971807,-0.179831,0.708636,-0.557609 +0.531343,0.319144,1.972120,-0.166854,0.709784,-0.555155 +0.530683,0.318521,1.972413,-0.153814,0.710725,-0.552648 +0.529931,0.317780,1.972687,-0.140716,0.711458,-0.550096 +0.529090,0.316920,1.972941,-0.127564,0.711983,-0.547502 +0.528160,0.315943,1.973176,-0.114364,0.712303,-0.544874 +0.527141,0.314850,1.973392,-0.101120,0.712418,-0.542216 +0.526037,0.313642,1.973590,-0.087838,0.712328,-0.539533 +0.524846,0.312320,1.973771,-0.074521,0.712036,-0.536832 +0.523572,0.310886,1.973934,-0.061176,0.711543,-0.534118 +0.522214,0.309341,1.974080,-0.047807,0.710850,-0.531396 +0.520774,0.307687,1.974210,-0.034418,0.709960,-0.528672 +0.519254,0.305924,1.974323,-0.021016,0.708873,-0.525950 +0.517654,0.304055,1.974422,-0.007605,0.707593,-0.523237 +0.515976,0.302081,1.974504,0.005809,0.706120,-0.520537 +0.514221,0.300003,1.974573,0.019222,0.704458,-0.517856 +0.512391,0.297823,1.974627,0.032629,0.702608,-0.515198 +0.510487,0.295544,1.974666,0.046023,0.700573,-0.512570 +0.508509,0.293166,1.974693,0.059401,0.698355,-0.509975 +0.506460,0.290691,1.974706,0.072756,0.695958,-0.507419 +0.504341,0.288123,1.974707,0.086084,0.693383,-0.504906 +0.502154,0.285461,1.974695,0.099379,0.690635,-0.502442 +0.499899,0.282709,1.974672,0.112636,0.687715,-0.500031 +0.497578,0.279869,1.974636,0.125850,0.684627,-0.497678 +0.495192,0.276942,1.974590,0.139015,0.681374,-0.495387 +0.492743,0.273930,1.974533,0.152127,0.677959,-0.493162 +0.490233,0.270836,1.974466,0.165179,0.674386,-0.491008 +0.487662,0.267662,1.974388,0.178167,0.670657,-0.488929 +0.485032,0.264411,1.974301,0.191085,0.666778,-0.486929 +0.482345,0.261083,1.974204,0.203929,0.662750,-0.485012 +0.479602,0.257682,1.974098,0.216692,0.658579,-0.483181 +0.476804,0.254210,1.973984,0.229370,0.654267,-0.481441 +0.473953,0.250670,1.973861,0.241958,0.649818,-0.479796 +0.471050,0.247063,1.973729,0.254449,0.645237,-0.478247 +0.468097,0.243392,1.973589,0.266840,0.640526,-0.476799 +0.465095,0.239659,1.973442,0.279125,0.635691,-0.475455 +0.462046,0.235868,1.973287,0.291299,0.630735,-0.474219 +0.458950,0.232019,1.973125,0.303356,0.625663,-0.473091 +0.455809,0.228117,1.972955,0.315292,0.620478,-0.472077 +0.452626,0.224163,1.972779,0.327102,0.615184,-0.471178 +0.449400,0.220160,1.972595,0.338781,0.609786,-0.470396 +0.446134,0.216110,1.972405,0.350323,0.604289,-0.469734 +0.442829,0.212016,1.972208,0.361725,0.598696,-0.469194 +0.439485,0.207881,1.972005,0.372980,0.593011,-0.468778 +0.436106,0.203707,1.971795,0.384084,0.587239,-0.468488 +0.432691,0.199496,1.971578,0.395034,0.581385,-0.468325 +0.429242,0.195251,1.971355,0.405823,0.575453,-0.468292 +0.425761,0.190975,1.971126,0.416447,0.569446,-0.468388 +0.422249,0.186671,1.970890,0.426901,0.563370,-0.468616 +0.418707,0.182340,1.970648,0.437182,0.557229,-0.468977 +0.415136,0.177986,1.970399,0.447285,0.551027,-0.469470 +0.411537,0.173611,1.970144,0.457205,0.544768,-0.470098 +0.407913,0.169217,1.969881,0.466937,0.538457,-0.470860 +0.404263,0.164808,1.969612,0.476479,0.532099,-0.471757 +0.400590,0.160385,1.969336,0.485825,0.525697,-0.472788 +0.396894,0.155951,1.969053,0.494971,0.519256,-0.473955 +0.393177,0.151510,1.968762,0.503914,0.512780,-0.475256 +0.389439,0.147062,1.968463,0.512649,0.506273,-0.476692 +0.385683,0.142611,1.968157,0.521173,0.499740,-0.478262 +0.381908,0.138159,1.967843,0.529482,0.493185,-0.479965 +0.378117,0.133709,1.967520,0.537572,0.486611,-0.481800 +0.374309,0.129263,1.967188,0.545439,0.480024,-0.483766 +0.370487,0.124824,1.966847,0.553081,0.473426,-0.485863 +0.366651,0.120394,1.966496,0.560493,0.466823,-0.488088 +0.362803,0.115974,1.966136,0.567673,0.460217,-0.490440 +0.358943,0.111569,1.965766,0.574617,0.453613,-0.492918 +0.355072,0.107179,1.965384,0.581321,0.447014,-0.495520 +0.351191,0.102808,1.964992,0.587784,0.440425,-0.498244 +0.347301,0.098457,1.964587,0.594002,0.433849,-0.501087 +0.343403,0.094128,1.964171,0.599972,0.427290,-0.504047 +0.339499,0.089825,1.963742,0.605692,0.420751,-0.507122 +0.335588,0.085549,1.963300,0.611159,0.414235,-0.510309 +0.331672,0.081301,1.962843,0.616370,0.407747,-0.513605 +0.327751,0.077085,1.962373,0.621323,0.401288,-0.517008 +0.323827,0.072902,1.961887,0.626016,0.394864,-0.520515 +0.319900,0.068755,1.961386,0.630447,0.388476,-0.524121 +0.315970,0.064645,1.960868,0.634614,0.382127,-0.527825 +0.312040,0.060573,1.960333,0.638514,0.375821,-0.531622 +0.308108,0.056543,1.959781,0.642146,0.369561,-0.535508 +0.304177,0.052556,1.959210,0.645509,0.363349,-0.539481 +0.300247,0.048614,1.958620,0.648600,0.357188,-0.543536 +0.296318,0.044717,1.958011,0.651419,0.351080,-0.547669 +0.292392,0.040869,1.957380,0.653963,0.345029,-0.551876 +0.288468,0.037071,1.956729,0.656232,0.339035,-0.556153 +0.284547,0.033324,1.956055,0.658225,0.333103,-0.560495 +0.280631,0.029630,1.955358,0.659941,0.327232,-0.564899 +0.276719,0.025991,1.954637,0.661378,0.321427,-0.569359 +0.272813,0.022408,1.953892,0.662537,0.315688,-0.573872 +0.268912,0.018881,1.953121,0.663416,0.310018,-0.578431 +0.265017,0.015414,1.952324,0.664015,0.304417,-0.583033 +0.261130,0.012006,1.951499,0.664335,0.298889,-0.587672 +0.257249,0.008660,1.950647,0.664373,0.293434,-0.592344 +0.253377,0.005376,1.949765,0.664132,0.288053,-0.597044 +0.249513,0.002156,1.948854,0.663610,0.282748,-0.601765 +0.245657,-0.000999,1.947911,0.662808,0.277520,-0.606504 +0.241811,-0.004089,1.946937,0.661726,0.272371,-0.611254 +0.237974,-0.007111,1.945931,0.660365,0.267300,-0.616012 +0.234148,-0.010067,1.944891,0.658725,0.262308,-0.620770 +0.230332,-0.012953,1.943816,0.656807,0.257397,-0.625524 +0.226526,-0.015770,1.942707,0.654612,0.252567,-0.630268 +0.222733,-0.018517,1.941560,0.652140,0.247819,-0.634997 +0.218951,-0.021193,1.940377,0.649393,0.243152,-0.639705 +0.215180,-0.023797,1.939155,0.646372,0.238566,-0.644387 +0.211423,-0.026329,1.937895,0.643078,0.234063,-0.649037 +0.207678,-0.028789,1.936594,0.639513,0.229642,-0.653649 +0.203946,-0.031175,1.935252,0.635679,0.225303,-0.658218 +0.200228,-0.033487,1.933869,0.631576,0.221045,-0.662739 +0.196524,-0.035725,1.932443,0.627208,0.216868,-0.667205 +0.192833,-0.037888,1.930973,0.622575,0.212773,-0.671611 +0.189158,-0.039977,1.929458,0.617680,0.208757,-0.675951 +0.185497,-0.041991,1.927898,0.612525,0.204821,-0.680220 +0.181851,-0.043929,1.926291,0.607113,0.200964,-0.684412 +0.178220,-0.045792,1.924638,0.601446,0.197185,-0.688522 +0.174606,-0.047580,1.922936,0.595526,0.193482,-0.692544 +0.171007,-0.049292,1.921185,0.589356,0.189856,-0.696472 +0.167425,-0.050928,1.919384,0.582939,0.186303,-0.700302 +0.163859,-0.052490,1.917533,0.576278,0.182825,-0.704027 +0.160310,-0.053975,1.915630,0.569376,0.179418,-0.707642 +0.156778,-0.055386,1.913675,0.562235,0.176082,-0.711143 +0.153264,-0.056722,1.911667,0.554860,0.172814,-0.714523 +0.149768,-0.057982,1.909606,0.547253,0.169614,-0.717778 +0.146290,-0.059169,1.907489,0.539418,0.166480,-0.720902 +0.142831,-0.060281,1.905318,0.531359,0.163409,-0.723891 +0.139390,-0.061320,1.903090,0.523079,0.160400,-0.726739 +0.135968,-0.062285,1.900806,0.514581,0.157451,-0.729441 +0.132566,-0.063178,1.898465,0.505870,0.154560,-0.731994 +0.129183,-0.063999,1.896066,0.496950,0.151724,-0.734391 +0.125820,-0.064747,1.893608,0.487824,0.148942,-0.736629 +0.122478,-0.065425,1.891092,0.478497,0.146212,-0.738703 +0.119156,-0.066032,1.888515,0.468974,0.143530,-0.740608 +0.115856,-0.066570,1.885879,0.459257,0.140895,-0.742340 +0.112576,-0.067038,1.883182,0.449352,0.138303,-0.743895 +0.109319,-0.067438,1.880424,0.439263,0.135754,-0.745269 +0.106083,-0.067770,1.877604,0.428995,0.133244,-0.746459 +0.102870,-0.068036,1.874723,0.418552,0.130770,-0.747459 +0.099680,-0.068236,1.871779,0.407939,0.128330,-0.748267 +0.096513,-0.068371,1.868773,0.397161,0.125921,-0.748879 +0.093369,-0.068442,1.865704,0.386222,0.123541,-0.749291 +0.090249,-0.068450,1.862572,0.375128,0.121187,-0.749500 +0.087154,-0.068396,1.859376,0.363883,0.118855,-0.749503 +0.084083,-0.068281,1.856117,0.352493,0.116544,-0.749298 +0.081038,-0.068105,1.852794,0.340963,0.114250,-0.748880 +0.078018,-0.067871,1.849407,0.329297,0.111971,-0.748248 +0.075024,-0.067579,1.845956,0.317501,0.109703,-0.747398 +0.072057,-0.067230,1.842441,0.305580,0.107444,-0.746330 +0.069116,-0.066825,1.838862,0.293540,0.105191,-0.745039 +0.066203,-0.066365,1.835220,0.281386,0.102941,-0.743524 +0.063318,-0.065853,1.831513,0.269123,0.100692,-0.741784 +0.060461,-0.065288,1.827743,0.256757,0.098439,-0.739816 +0.057633,-0.064672,1.823909,0.244293,0.096181,-0.737619 +0.054834,-0.064006,1.820012,0.231737,0.093914,-0.735191 +0.052065,-0.063291,1.816052,0.219094,0.091637,-0.732531 +0.049327,-0.062530,1.812028,0.206369,0.089344,-0.729638 +0.046620,-0.061722,1.807943,0.193570,0.087035,-0.726512 +0.043943,-0.060870,1.803795,0.180700,0.084707,-0.723150 +0.041299,-0.059973,1.799585,0.167766,0.082355,-0.719554 +0.038688,-0.059035,1.795314,0.154773,0.079978,-0.715722 +0.036110,-0.058056,1.790983,0.141728,0.077573,-0.711654 +0.033565,-0.057037,1.786591,0.128635,0.075138,-0.707350 +0.031055,-0.055980,1.782140,0.115500,0.072669,-0.702810 +0.028579,-0.054886,1.777629,0.102330,0.070164,-0.698034 +0.026139,-0.053756,1.773061,0.089129,0.067621,-0.693024 +0.023735,-0.052591,1.768434,0.075904,0.065037,-0.687779 +0.021368,-0.051394,1.763751,0.062660,0.062409,-0.682301 +0.019039,-0.050164,1.759012,0.049403,0.059736,-0.676590 +0.016747,-0.048904,1.754218,0.036139,0.057015,-0.670647 +0.014494,-0.047615,1.749370,0.022873,0.054243,-0.664474 +0.012280,-0.046298,1.744468,0.009610,0.051419,-0.658073 +0.010106,-0.044955,1.739514,-0.003642,0.048540,-0.651445 +0.007973,-0.043586,1.734509,-0.016880,0.045604,-0.644591 +0.005880,-0.042193,1.729453,-0.030097,0.042610,-0.637515 +0.003830,-0.040777,1.724349,-0.043287,0.039555,-0.630218 +0.001823,-0.039340,1.719196,-0.056446,0.036438,-0.622702 +-0.000142,-0.037883,1.713997,-0.069567,0.033256,-0.614970 +-0.002062,-0.036406,1.708753,-0.082646,0.030009,-0.607025 +-0.003938,-0.034912,1.703464,-0.095676,0.026694,-0.598869 +-0.005769,-0.033401,1.698132,-0.108652,0.023311,-0.590505 +-0.007553,-0.031875,1.692759,-0.121570,0.019857,-0.581937 +-0.009291,-0.030335,1.687346,-0.134423,0.016331,-0.573168 +-0.010982,-0.028781,1.681894,-0.147207,0.012733,-0.564202 +-0.012625,-0.027216,1.676405,-0.159916,0.009061,-0.555041 +-0.014219,-0.025640,1.670881,-0.172545,0.005314,-0.545689 +-0.015763,-0.024055,1.665322,-0.185089,0.001491,-0.536152 +-0.017258,-0.022461,1.659731,-0.197543,-0.002408,-0.526431 +-0.018702,-0.020859,1.654109,-0.209902,-0.006385,-0.516532 +-0.020094,-0.019252,1.648458,-0.222161,-0.010439,-0.506460 +-0.021435,-0.017639,1.642780,-0.234316,-0.014572,-0.496217 +-0.022723,-0.016021,1.637076,-0.246360,-0.018784,-0.485809 +-0.023957,-0.014401,1.631348,-0.258291,-0.023075,-0.475240 +-0.025138,-0.012778,1.625598,-0.270103,-0.027445,-0.464516 +-0.026264,-0.011154,1.619827,-0.281791,-0.031894,-0.453641 +-0.027335,-0.009529,1.614038,-0.293351,-0.036423,-0.442619 +-0.028350,-0.007905,1.608233,-0.304779,-0.041031,-0.431457 +-0.029309,-0.006282,1.602413,-0.316070,-0.045717,-0.420159 +-0.030210,-0.004662,1.596580,-0.327220,-0.050482,-0.408730 +-0.031054,-0.003045,1.590736,-0.338226,-0.055325,-0.397176 +-0.031840,-0.001431,1.584884,-0.349082,-0.060246,-0.385503 +-0.032567,0.000178,1.579025,-0.359785,-0.065243,-0.373715 +-0.033235,0.001781,1.573161,-0.370331,-0.070315,-0.361819 +-0.033843,0.003378,1.567295,-0.380716,-0.075463,-0.349820 +-0.034391,0.004968,1.561428,-0.390936,-0.080684,-0.337723 +-0.034879,0.006551,1.555563,-0.400989,-0.085978,-0.325535 +-0.035305,0.008125,1.549701,-0.410869,-0.091343,-0.313262 +-0.035669,0.009691,1.543846,-0.420575,-0.096779,-0.300909 +-0.035971,0.011246,1.537998,-0.430102,-0.102283,-0.288482 +-0.036211,0.012792,1.532160,-0.439448,-0.107853,-0.275988 +-0.036387,0.014328,1.526335,-0.448609,-0.113489,-0.263431 +-0.036501,0.015852,1.520524,-0.457582,-0.119188,-0.250820 +-0.036551,0.017364,1.514730,-0.466364,-0.124949,-0.238159 +-0.036537,0.018864,1.508954,-0.474953,-0.130769,-0.225454 +-0.036458,0.020352,1.503200,-0.483345,-0.136646,-0.212713 +-0.036315,0.021826,1.497469,-0.491539,-0.142578,-0.199940 +-0.036108,0.023287,1.491763,-0.499532,-0.148563,-0.187143 +-0.035835,0.024735,1.486085,-0.507320,-0.154598,-0.174326 +-0.035497,0.026168,1.480437,-0.514903,-0.160681,-0.161498 +-0.035094,0.027586,1.474822,-0.522278,-0.166810,-0.148663 +-0.034625,0.028990,1.469240,-0.529443,-0.172980,-0.135827 +-0.034091,0.030379,1.463695,-0.536395,-0.179191,-0.122997 +-0.033491,0.031752,1.458189,-0.543134,-0.185438,-0.110180 +-0.032825,0.033110,1.452724,-0.549657,-0.191719,-0.097380 +-0.032094,0.034452,1.447303,-0.555962,-0.198030,-0.084605 +-0.031297,0.035778,1.441926,-0.562049,-0.204370,-0.071859 +-0.030434,0.037087,1.436597,-0.567916,-0.210734,-0.059150 +-0.029505,0.038381,1.431318,-0.573562,-0.217119,-0.046482 +-0.028511,0.039658,1.426091,-0.578984,-0.223522,-0.033862 +-0.027452,0.040918,1.420918,-0.584184,-0.229939,-0.021296 +-0.026327,0.042162,1.415801,-0.589159,-0.236367,-0.008790 +-0.025138,0.043389,1.410742,-0.593908,-0.242803,0.003652 +-0.023883,0.044599,1.405744,-0.598432,-0.249243,0.016023 +-0.022565,0.045793,1.400807,-0.602728,-0.255682,0.028319 +-0.021182,0.046969,1.395936,-0.606798,-0.262118,0.040532 +-0.019735,0.048129,1.391131,-0.610641,-0.268547,0.052659 +-0.018225,0.049272,1.386394,-0.614255,-0.274965,0.064693 +-0.016652,0.050398,1.381728,-0.617642,-0.281368,0.076630 +-0.015017,0.051508,1.377134,-0.620801,-0.287752,0.088465 +-0.013320,0.052601,1.372615,-0.623732,-0.294113,0.100192 +-0.011561,0.053677,1.368172,-0.626436,-0.300447,0.111807 +-0.009741,0.054736,1.363806,-0.628912,-0.306751,0.123304 +-0.007862,0.055780,1.359521,-0.631161,-0.313020,0.134680 +-0.005922,0.056807,1.355318,-0.633184,-0.319250,0.145930 +-0.003924,0.057817,1.351197,-0.634981,-0.325438,0.157049 +-0.001868,0.058812,1.347162,-0.636554,-0.331579,0.168033 +0.000246,0.059790,1.343214,-0.637901,-0.337668,0.178878 +0.002416,0.060753,1.339354,-0.639026,-0.343703,0.189580 +0.004642,0.061700,1.335585,-0.639928,-0.349679,0.200135 +0.006922,0.062632,1.331907,-0.640609,-0.355591,0.210538 +0.009257,0.063548,1.328322,-0.641071,-0.361437,0.220788 +0.011644,0.064450,1.324832,-0.641314,-0.367211,0.230879 +0.014083,0.065336,1.321438,-0.641339,-0.372909,0.240809 +0.016573,0.066207,1.318141,-0.641149,-0.378529,0.250575 +0.019113,0.067064,1.314944,-0.640745,-0.384065,0.260173 +0.021702,0.067906,1.311846,-0.640129,-0.389513,0.269600 +0.024338,0.068733,1.308850,-0.639302,-0.394871,0.278854 +0.027020,0.069547,1.305956,-0.638266,-0.400133,0.287933 +0.029747,0.070347,1.303167,-0.637024,-0.405296,0.296833 +0.032518,0.071132,1.300482,-0.635578,-0.410355,0.305552 +0.035332,0.071905,1.297903,-0.633929,-0.415308,0.314089 +0.038186,0.072663,1.295431,-0.632080,-0.420151,0.322442 +0.041081,0.073409,1.293067,-0.630033,-0.424879,0.330607 +0.044014,0.074141,1.290811,-0.627791,-0.429490,0.338585 +0.046983,0.074860,1.288666,-0.625355,-0.433978,0.346373 +0.049988,0.075567,1.286630,-0.622730,-0.438342,0.353971 +0.053028,0.076261,1.284706,-0.619916,-0.442577,0.361376 +0.056099,0.076942,1.282894,-0.616918,-0.446681,0.368588 +0.059202,0.077611,1.281194,-0.613737,-0.450649,0.375607 +0.062333,0.078267,1.279608,-0.610377,-0.454478,0.382430 +0.065492,0.078912,1.278134,-0.606840,-0.458166,0.389059 +0.068678,0.079544,1.276775,-0.603129,-0.461709,0.395493 +0.071887,0.080164,1.275531,-0.599249,-0.465104,0.401731 +0.075119,0.080772,1.274401,-0.595200,-0.468349,0.407774 +0.078372,0.081369,1.273386,-0.590988,-0.471440,0.413621 +0.081644,0.081953,1.272486,-0.586614,-0.474374,0.419274 +0.084933,0.082526,1.271702,-0.582083,-0.477150,0.424731 +0.088237,0.083087,1.271033,-0.577397,-0.479764,0.429995 +0.091556,0.083636,1.270480,-0.572560,-0.482215,0.435066 +0.094885,0.084174,1.270043,-0.567576,-0.484499,0.439945 +0.098225,0.084700,1.269721,-0.562447,-0.486615,0.444633 +0.101573,0.085214,1.269514,-0.557178,-0.488561,0.449131 +0.104927,0.085717,1.269423,-0.551772,-0.490334,0.453441 +0.108285,0.086207,1.269447,-0.546232,-0.491932,0.457564 +0.111645,0.086686,1.269586,-0.540563,-0.493355,0.461502 +0.115005,0.087152,1.269838,-0.534767,-0.494599,0.465257 +0.118364,0.087607,1.270205,-0.528850,-0.495665,0.468831 +0.121719,0.088049,1.270685,-0.522813,-0.496550,0.472226 +0.125068,0.088479,1.271279,-0.516661,-0.497252,0.475444 +0.128409,0.088896,1.271984,-0.510399,-0.497772,0.478488 +0.131741,0.089301,1.272802,-0.504029,-0.498108,0.481360 +0.135061,0.089693,1.273730,-0.497556,-0.498258,0.484064 +0.138367,0.090072,1.274768,-0.490983,-0.498223,0.486601 +0.141657,0.090437,1.275917,-0.484315,-0.498002,0.488974 +0.144929,0.090789,1.277173,-0.477555,-0.497593,0.491188 +0.148181,0.091127,1.278538,-0.470707,-0.496998,0.493244 +0.151411,0.091451,1.280009,-0.463776,-0.496215,0.495147 +0.154618,0.091761,1.281586,-0.456765,-0.495245,0.496899 +0.157798,0.092056,1.283267,-0.449677,-0.494087,0.498504 +0.160950,0.092336,1.285053,-0.442518,-0.492742,0.499966 +0.164072,0.092601,1.286940,-0.435292,-0.491210,0.501288 +0.167162,0.092850,1.288929,-0.428001,-0.489492,0.502475 +0.170217,0.093082,1.291017,-0.420650,-0.487588,0.503529 +0.173237,0.093299,1.293204,-0.413243,-0.485499,0.504456 +0.176218,0.093498,1.295489,-0.405785,-0.483226,0.505259 +0.179159,0.093681,1.297869,-0.398278,-0.480769,0.505942 +0.182058,0.093845,1.300344,-0.390728,-0.478131,0.506509 +0.184913,0.093991,1.302911,-0.383137,-0.475312,0.506965 +0.187722,0.094119,1.305570,-0.375511,-0.472314,0.507314 +0.190483,0.094227,1.308319,-0.367852,-0.469138,0.507560 +0.193194,0.094316,1.311155,-0.360165,-0.465787,0.507708 +0.195854,0.094385,1.314079,-0.352454,-0.462261,0.507762 +0.198460,0.094433,1.317087,-0.344723,-0.458563,0.507727 +0.201010,0.094460,1.320178,-0.336975,-0.454695,0.507607 +0.203504,0.094465,1.323350,-0.329215,-0.450659,0.507408 +0.205938,0.094447,1.326602,-0.321445,-0.446458,0.507132 +0.208312,0.094407,1.329932,-0.313671,-0.442095,0.506787 +0.210623,0.094343,1.333337,-0.305896,-0.437570,0.506375 +0.212870,0.094256,1.336817,-0.298124,-0.432889,0.505901 +0.215051,0.094143,1.340368,-0.290358,-0.428052,0.505372 +0.217165,0.094005,1.343990,-0.282602,-0.423064,0.504790 +0.219210,0.093842,1.347680,-0.274860,-0.417928,0.504161 +0.221184,0.093652,1.351435,-0.267135,-0.412646,0.503489 +0.223086,0.093434,1.355255,-0.259432,-0.407222,0.502780 +0.224915,0.093189,1.359137,-0.251753,-0.401660,0.502037 +0.226668,0.092915,1.363078,-0.244103,-0.395962,0.501266 +0.228346,0.092613,1.367078,-0.236484,-0.390133,0.500471 +0.229945,0.092280,1.371133,-0.228900,-0.384177,0.499657 +0.231465,0.091918,1.375242,-0.221355,-0.378097,0.498828 +0.232905,0.091524,1.379402,-0.213853,-0.371897,0.497990 +0.234263,0.091098,1.383612,-0.206395,-0.365581,0.497145 +0.235539,0.090640,1.387869,-0.198986,-0.359154,0.496300 +0.236731,0.090150,1.392171,-0.191630,-0.352619,0.495458 +0.237838,0.089625,1.396515,-0.184328,-0.345982,0.494624 +0.238858,0.089066,1.400900,-0.177085,-0.339246,0.493801 +0.239792,0.088473,1.405324,-0.169903,-0.332415,0.492995 +0.240638,0.087844,1.409784,-0.162786,-0.325495,0.492209 +0.241395,0.087178,1.414278,-0.155736,-0.318490,0.491448 +0.242063,0.086476,1.418803,-0.148758,-0.311405,0.490715 +0.242640,0.085736,1.423359,-0.141852,-0.304244,0.490014 +0.243127,0.084958,1.427941,-0.135023,-0.297012,0.489350 +0.243521,0.084142,1.432549,-0.128273,-0.289715,0.488725 +0.243824,0.083286,1.437180,-0.121605,-0.282356,0.488145 +0.244033,0.082391,1.441831,-0.115022,-0.274941,0.487611 +0.244150,0.081455,1.446501,-0.108526,-0.267476,0.487128 +0.244172,0.080478,1.451188,-0.102121,-0.259964,0.486700 +0.244101,0.079460,1.455889,-0.095807,-0.252411,0.486328 +0.243935,0.078399,1.460602,-0.089589,-0.244823,0.486017 +0.243675,0.077296,1.465324,-0.083468,-0.237204,0.485769 +0.243319,0.076151,1.470055,-0.077447,-0.229559,0.485588 +0.242869,0.074961,1.474791,-0.071529,-0.221894,0.485475 +0.242324,0.073728,1.479531,-0.065714,-0.214214,0.485435 +0.241685,0.072450,1.484272,-0.060007,-0.206524,0.485469 +0.240950,0.071128,1.489013,-0.054408,-0.198829,0.485579 +0.240120,0.069760,1.493751,-0.048920,-0.191134,0.485769 +0.239197,0.068347,1.498485,-0.043546,-0.183445,0.486040 +0.238179,0.066888,1.503212,-0.038286,-0.175767,0.486394 +0.237067,0.065383,1.507930,-0.033143,-0.168105,0.486832 +0.235861,0.063831,1.512638,-0.028119,-0.160463,0.487358 +0.234562,0.062233,1.517333,-0.023215,-0.152849,0.487972 +0.233171,0.060587,1.522014,-0.018434,-0.145265,0.488676 +0.231688,0.058895,1.526679,-0.013776,-0.137718,0.489471 +0.230114,0.057155,1.531325,-0.009245,-0.130212,0.490358 +0.228449,0.055367,1.535952,-0.004840,-0.122753,0.491338 +0.226695,0.053532,1.540557,-0.000564,-0.115346,0.492413 +0.224851,0.051649,1.545139,0.003582,-0.107995,0.493582 +0.222919,0.049718,1.549696,0.007596,-0.100705,0.494846 +0.220900,0.047739,1.554226,0.011478,-0.093481,0.496206 +0.218796,0.045712,1.558728,0.015225,-0.086328,0.497662 +0.216606,0.043638,1.563199,0.018837,-0.079251,0.499215 +0.214332,0.041516,1.567640,0.022313,-0.072253,0.500863 +0.211976,0.039346,1.572047,0.025651,-0.065341,0.502607 +0.209538,0.037128,1.576420,0.028850,-0.058517,0.504446 +0.207020,0.034864,1.580756,0.031910,-0.051788,0.506380 +0.204424,0.032552,1.585056,0.034829,-0.045156,0.508409 +0.201750,0.030193,1.589316,0.037607,-0.038626,0.510531 +0.199001,0.027788,1.593537,0.040243,-0.032203,0.512745 +0.196178,0.025337,1.597717,0.042736,-0.025889,0.515050 +0.193282,0.022839,1.601854,0.045086,-0.019690,0.517446 +0.190315,0.020297,1.605947,0.047291,-0.013610,0.519930 +0.187279,0.017709,1.609995,0.049351,-0.007651,0.522500 +0.184176,0.015077,1.613998,0.051266,-0.001817,0.525157 +0.181008,0.012400,1.617954,0.053035,0.003887,0.527896 +0.177775,0.009681,1.621862,0.054659,0.009459,0.530717 +0.174481,0.006918,1.625721,0.056135,0.014895,0.533617 +0.171128,0.004113,1.629530,0.057465,0.020193,0.536594 +0.167716,0.001267,1.633288,0.058647,0.025348,0.539646 +0.164249,-0.001620,1.636995,0.059683,0.030359,0.542769 +0.160729,-0.004547,1.640650,0.060571,0.035222,0.545961 +0.157157,-0.007513,1.644252,0.061311,0.039934,0.549220 +0.153536,-0.010517,1.647801,0.061904,0.044494,0.552543 +0.149868,-0.013559,1.651295,0.062349,0.048898,0.555925 +0.146156,-0.016637,1.654734,0.062647,0.053145,0.559365 +0.142401,-0.019751,1.658118,0.062798,0.057232,0.562858 +0.138607,-0.022899,1.661447,0.062801,0.061157,0.566402 +0.134775,-0.026081,1.664719,0.062657,0.064919,0.569993 +0.130908,-0.029295,1.667934,0.062367,0.068516,0.573626 +0.127008,-0.032541,1.671093,0.061930,0.071946,0.577299 +0.123078,-0.035816,1.674195,0.061347,0.075208,0.581007 +0.119121,-0.039120,1.677239,0.060619,0.078300,0.584747 +0.115139,-0.042452,1.680226,0.059745,0.081222,0.588514 +0.111134,-0.045810,1.683154,0.058727,0.083972,0.592304 +0.107110,-0.049193,1.686025,0.057565,0.086550,0.596114 +0.103068,-0.052600,1.688839,0.056259,0.088955,0.599937 +0.099012,-0.056029,1.691594,0.054810,0.091187,0.603771 +0.094944,-0.059478,1.694292,0.053219,0.093245,0.607611 +0.090867,-0.062947,1.696931,0.051487,0.095129,0.611452 +0.086783,-0.066434,1.699514,0.049614,0.096839,0.615289 +0.082696,-0.069936,1.702038,0.047601,0.098375,0.619118 +0.078607,-0.073454,1.704506,0.045448,0.099737,0.622934 +0.074521,-0.076984,1.706917,0.043158,0.100926,0.626732 +0.070439,-0.080526,1.709271,0.040731,0.101943,0.630507 +0.066364,-0.084077,1.711569,0.038167,0.102788,0.634255 +0.062299,-0.087636,1.713810,0.035468,0.103461,0.637970 +0.058247,-0.091202,1.715997,0.032635,0.103965,0.641648 +0.054211,-0.094772,1.718129,0.029669,0.104300,0.645283 +0.050193,-0.098345,1.720206,0.026571,0.104468,0.648871 +0.046196,-0.101918,1.722229,0.023343,0.104470,0.652406 +0.042224,-0.105491,1.724199,0.019985,0.104307,0.655883 +0.038277,-0.109061,1.726116,0.016498,0.103982,0.659298 +0.034361,-0.112625,1.727981,0.012885,0.103497,0.662644 +0.030476,-0.116184,1.729795,0.009146,0.102853,0.665918 +0.026627,-0.119733,1.731558,0.005282,0.102053,0.669113 +0.022815,-0.123272,1.733271,0.001296,0.101099,0.672226 +0.019043,-0.126799,1.734935,-0.002812,0.099994,0.675250 +0.015314,-0.130311,1.736551,-0.007040,0.098740,0.678181 +0.011631,-0.133806,1.738119,-0.011386,0.097340,0.681013 +0.007997,-0.137283,1.739641,-0.015849,0.095797,0.683742 +0.004414,-0.140739,1.741118,-0.020428,0.094114,0.686363 +0.000884,-0.144173,1.742549,-0.025121,0.092294,0.688871 +-0.002590,-0.147582,1.743937,-0.029925,0.090341,0.691260 +-0.006005,-0.150963,1.745282,-0.034841,0.088258,0.693527 +-0.009358,-0.154316,1.746586,-0.039865,0.086048,0.695666 +-0.012648,-0.157638,1.747848,-0.044996,0.083715,0.697672 +-0.015871,-0.160927,1.749071,-0.050233,0.081264,0.699542 +-0.019026,-0.164181,1.750256,-0.055573,0.078697,0.701269 +-0.022110,-0.167397,1.751403,-0.061015,0.076018,0.702850 +-0.025120,-0.170574,1.752513,-0.066557,0.073233,0.704281 +-0.028054,-0.173710,1.753588,-0.072197,0.070344,0.705557 +-0.030910,-0.176802,1.754629,-0.077933,0.067357,0.706673 +-0.033686,-0.179848,1.755638,-0.083763,0.064276,0.707625 +-0.036380,-0.182846,1.756614,-0.089685,0.061104,0.708410 +-0.038988,-0.185795,1.757559,-0.095698,0.057848,0.709024 +-0.041510,-0.188691,1.758476,-0.101799,0.054510,0.709462 +-0.043943,-0.191533,1.759364,-0.107986,0.051097,0.709720 +-0.046286,-0.194320,1.760224,-0.114258,0.047612,0.709795 +-0.048535,-0.197048,1.761060,-0.120611,0.044062,0.709684 +-0.050690,-0.199716,1.761870,-0.127044,0.040449,0.709382 +-0.052748,-0.202322,1.762657,-0.133555,0.036781,0.708888 +-0.054708,-0.204863,1.763422,-0.140142,0.033061,0.708196 +-0.056567,-0.207339,1.764166,-0.146802,0.029295,0.707305 +-0.058325,-0.209746,1.764890,-0.153533,0.025487,0.706211 +-0.059980,-0.212083,1.765596,-0.160333,0.021644,0.704911 +-0.061529,-0.214348,1.766285,-0.167200,0.017770,0.703404 +-0.062972,-0.216539,1.766958,-0.174131,0.013871,0.701686 +-0.064306,-0.218654,1.767616,-0.181124,0.009951,0.699754 +-0.065532,-0.220692,1.768260,-0.188177,0.006017,0.697607 +-0.066647,-0.222651,1.768892,-0.195287,0.002073,0.695243 +-0.067649,-0.224528,1.769513,-0.202452,-0.001875,0.692659 +-0.068539,-0.226322,1.770124,-0.209670,-0.005822,0.689854 +-0.069314,-0.228032,1.770726,-0.216937,-0.009762,0.686826 +-0.069974,-0.229655,1.771321,-0.224253,-0.013690,0.683574 +-0.070518,-0.231190,1.771910,-0.231613,-0.017601,0.680096 +-0.070944,-0.232636,1.772493,-0.239016,-0.021489,0.676392 +-0.071252,-0.233990,1.773072,-0.246460,-0.025349,0.672459 +-0.071441,-0.235252,1.773648,-0.253941,-0.029175,0.668298 +-0.071510,-0.236420,1.774223,-0.261457,-0.032963,0.663907 +-0.071460,-0.237492,1.774797,-0.269005,-0.036706,0.659287 +-0.071288,-0.238468,1.775371,-0.276584,-0.040400,0.654437 +-0.070994,-0.239345,1.775947,-0.284189,-0.044039,0.649356 +-0.070579,-0.240122,1.776525,-0.291820,-0.047619,0.644045 +-0.070042,-0.240798,1.777107,-0.299472,-0.051133,0.638503 +-0.069382,-0.241373,1.777693,-0.307144,-0.054577,0.632732 +-0.068599,-0.241844,1.778285,-0.314832,-0.057946,0.626732 +-0.067693,-0.242211,1.778884,-0.322535,-0.061234,0.620503 +-0.066665,-0.242473,1.779490,-0.330249,-0.064438,0.614046 +-0.065513,-0.242628,1.780105,-0.337971,-0.067551,0.607363 +-0.064238,-0.242676,1.780729,-0.345699,-0.070569,0.600454 +-0.062841,-0.242616,1.781363,-0.353430,-0.073488,0.593321 +-0.061320,-0.242447,1.782008,-0.361161,-0.076302,0.585966 +-0.059678,-0.242168,1.782665,-0.368889,-0.079007,0.578389 +-0.057913,-0.241779,1.783335,-0.376613,-0.081599,0.570594 +-0.056027,-0.241279,1.784018,-0.384328,-0.084072,0.562582 +-0.054020,-0.240667,1.784716,-0.392032,-0.086424,0.554355 +-0.051892,-0.239943,1.785428,-0.399722,-0.088649,0.545916 +-0.049644,-0.239106,1.786156,-0.407396,-0.090743,0.537267 +-0.047277,-0.238157,1.786900,-0.415050,-0.092703,0.528412 +-0.044791,-0.237094,1.787662,-0.422682,-0.094524,0.519352 +-0.042188,-0.235917,1.788440,-0.430288,-0.096203,0.510091 +-0.039468,-0.234627,1.789237,-0.437866,-0.097736,0.500632 +-0.036633,-0.233222,1.790053,-0.445414,-0.099119,0.490978 +-0.033683,-0.231704,1.790888,-0.452927,-0.100349,0.481133 +-0.030619,-0.230072,1.791742,-0.460403,-0.101422,0.471101 +-0.027442,-0.228325,1.792616,-0.467840,-0.102336,0.460885 +-0.024155,-0.226465,1.793511,-0.475233,-0.103086,0.450490 +-0.020757,-0.224491,1.794427,-0.482581,-0.103671,0.439918 +-0.017251,-0.222404,1.795365,-0.489881,-0.104088,0.429176 +-0.013638,-0.220204,1.796323,-0.497129,-0.104333,0.418266 +-0.009920,-0.217891,1.797304,-0.504322,-0.104404,0.407193 +-0.006097,-0.215466,1.798307,-0.511458,-0.104299,0.395962 +-0.002172,-0.212929,1.799332,-0.518534,-0.104015,0.384578 +0.001854,-0.210281,1.800380,-0.525546,-0.103551,0.373046 +0.005979,-0.207523,1.801450,-0.532493,-0.102904,0.361370 +0.010202,-0.204655,1.802544,-0.539370,-0.102073,0.349555 +0.014520,-0.201679,1.803660,-0.546175,-0.101056,0.337608 +0.018931,-0.198594,1.804799,-0.552905,-0.099851,0.325532 +0.023434,-0.195403,1.805962,-0.559557,-0.098457,0.313333 +0.028027,-0.192105,1.807148,-0.566128,-0.096872,0.301018 +0.032708,-0.188702,1.808356,-0.572615,-0.095097,0.288591 +0.037474,-0.185196,1.809588,-0.579015,-0.093129,0.276058 +0.042324,-0.181587,1.810843,-0.585326,-0.090968,0.263425 +0.047255,-0.177877,1.812121,-0.591545,-0.088614,0.250697 +0.052265,-0.174066,1.813421,-0.597668,-0.086066,0.237882 +0.057351,-0.170158,1.814744,-0.603692,-0.083323,0.224983 +0.062513,-0.166151,1.816089,-0.609616,-0.080386,0.212009 +0.067746,-0.162050,1.817456,-0.615436,-0.077255,0.198964 +0.073050,-0.157854,1.818846,-0.621148,-0.073930,0.185855 +0.078420,-0.153566,1.820257,-0.626752,-0.070411,0.172688 +0.083856,-0.149187,1.821689,-0.632242,-0.066698,0.159469 +0.089354,-0.144719,1.823142,-0.637618,-0.062794,0.146205 +0.094912,-0.140165,1.824616,-0.642875,-0.058697,0.132902 +0.100528,-0.135524,1.826109,-0.648012,-0.054410,0.119566 +0.106198,-0.130801,1.827623,-0.653025,-0.049934,0.106203 +0.111921,-0.125997,1.829156,-0.657912,-0.045269,0.092821 +0.117693,-0.121113,1.830708,-0.662671,-0.040417,0.079425 +0.123513,-0.116152,1.832279,-0.667297,-0.035381,0.066022 +0.129376,-0.111116,1.833867,-0.671790,-0.030161,0.052618 +0.135282,-0.106007,1.835473,-0.676146,-0.024759,0.039220 +0.141226,-0.100827,1.837096,-0.680362,-0.019179,0.025835 +0.147207,-0.095580,1.838735,-0.684437,-0.013421,0.012467 +0.153221,-0.090266,1.840390,-0.688367,-0.007489,-0.000875 +0.159266,-0.084889,1.842060,-0.692151,-0.001384,-0.014186 +0.165340,-0.079451,1.843744,-0.695785,0.004890,-0.027460 +0.171438,-0.073955,1.845442,-0.699267,0.011331,-0.040690 +0.177559,-0.068402,1.847154,-0.702595,0.017935,-0.053869 +0.183700,-0.062796,1.848878,-0.705767,0.024701,-0.066992 +0.189858,-0.057139,1.850614,-0.708780,0.031623,-0.080053 +0.196030,-0.051433,1.852361,-0.711631,0.038700,-0.093044 +0.202213,-0.045682,1.854119,-0.714320,0.045928,-0.105961 +0.208406,-0.039888,1.855886,-0.716843,0.053302,-0.118797 +0.214604,-0.034054,1.857662,-0.719198,0.060820,-0.131547 +0.220805,-0.028183,1.859447,-0.721384,0.068477,-0.144203 +0.227007,-0.022277,1.861239,-0.723398,0.076270,-0.156762 +0.233206,-0.016339,1.863038,-0.725238,0.084195,-0.169216 +0.239400,-0.010372,1.864844,-0.726903,0.092246,-0.181560 +0.245586,-0.004379,1.866654,-0.728390,0.100421,-0.193790 +0.251762,0.001638,1.868469,-0.729697,0.108714,-0.205898 +0.257924,0.007674,1.870287,-0.730823,0.117122,-0.217881 +0.264071,0.013728,1.872108,-0.731766,0.125638,-0.229732 +0.270199,0.019796,1.873932,-0.732524,0.134260,-0.241447 +0.276305,0.025876,1.875757,-0.733096,0.142982,-0.253020 +0.282388,0.031965,1.877582,-0.733480,0.151799,-0.264447 +0.288444,0.038059,1.879407,-0.733675,0.160706,-0.275723 +0.294471,0.044155,1.881231,-0.733678,0.169699,-0.286844 +0.300466,0.050251,1.883053,-0.733489,0.178772,-0.297804 +0.306427,0.056344,1.884872,-0.733107,0.187920,-0.308599 +0.312352,0.062430,1.886688,-0.732529,0.197137,-0.319226 +0.318237,0.068507,1.888499,-0.731756,0.206420,-0.329679 +0.324081,0.074572,1.890306,-0.730785,0.215761,-0.339956 +0.329880,0.080621,1.892107,-0.729615,0.225157,-0.350051 +0.335634,0.086652,1.893901,-0.728246,0.234601,-0.359962 +0.341338,0.092661,1.895687,-0.726677,0.244087,-0.369685 +0.346991,0.098647,1.897466,-0.724907,0.253612,-0.379217 +0.352591,0.104604,1.899235,-0.722935,0.263168,-0.388554 +0.358136,0.110532,1.900995,-0.720760,0.272750,-0.397693 +0.363623,0.116427,1.902745,-0.718381,0.282354,-0.406631 +0.369050,0.122285,1.904484,-0.715799,0.291972,-0.415366 +0.374414,0.128105,1.906210,-0.713012,0.301600,-0.423895 +0.379715,0.133883,1.907925,-0.710020,0.311231,-0.432215 +0.384950,0.139616,1.909626,-0.706823,0.320861,-0.440325 +0.390116,0.145301,1.911313,-0.703421,0.330483,-0.448222 +0.395213,0.150937,1.912985,-0.699812,0.340093,-0.455905 +0.400237,0.156519,1.914643,-0.695998,0.349683,-0.463371 +0.405188,0.162046,1.916284,-0.691979,0.359249,-0.470619 +0.410064,0.167514,1.917909,-0.687753,0.368785,-0.477647 +0.414862,0.172920,1.919517,-0.683322,0.378285,-0.484455 +0.419581,0.178263,1.921108,-0.678685,0.387744,-0.491042 +0.424219,0.183540,1.922680,-0.673843,0.397156,-0.497406 +0.428776,0.188747,1.924233,-0.668797,0.406516,-0.503546 +0.433248,0.193883,1.925767,-0.663546,0.415818,-0.509464 +0.437635,0.198945,1.927282,-0.658092,0.425057,-0.515157 +0.441936,0.203931,1.928776,-0.652434,0.434228,-0.520626 +0.446149,0.208838,1.930249,-0.646575,0.443324,-0.525870 +0.450272,0.213663,1.931700,-0.640514,0.452341,-0.530891 +0.454304,0.218405,1.933131,-0.634252,0.461274,-0.535689 +0.458245,0.223061,1.934539,-0.627790,0.470117,-0.540263 +0.462092,0.227629,1.935924,-0.621131,0.478865,-0.544615 +0.465846,0.232108,1.937287,-0.614274,0.487513,-0.548745 +0.469504,0.236493,1.938626,-0.607220,0.496057,-0.552656 +0.473066,0.240785,1.939941,-0.599972,0.504491,-0.556347 +0.476530,0.244980,1.941233,-0.592531,0.512810,-0.559821 +0.479897,0.249078,1.942500,-0.584899,0.521011,-0.563078 +0.483164,0.253075,1.943743,-0.577076,0.529087,-0.566121 +0.486332,0.256970,1.944961,-0.569064,0.537036,-0.568952 +0.489400,0.260762,1.946155,-0.560866,0.544851,-0.571572 +0.492366,0.264448,1.947323,-0.552484,0.552530,-0.573984 +0.495231,0.268027,1.948465,-0.543919,0.560067,-0.576190 +0.497994,0.271498,1.949582,-0.535173,0.567459,-0.578193 +0.500653,0.274859,1.950673,-0.526248,0.574701,-0.579996 +0.503210,0.278109,1.951739,-0.517148,0.581790,-0.581601 +0.505662,0.281246,1.952778,-0.507873,0.588722,-0.583011 +0.508011,0.284268,1.953791,-0.498427,0.595493,-0.584230 +0.510256,0.287176,1.954779,-0.488812,0.602099,-0.585260 +0.512396,0.289966,1.955740,-0.479031,0.608538,-0.586105 +0.514431,0.292640,1.956675,-0.469086,0.614806,-0.586769 +0.516362,0.295194,1.957583,-0.458981,0.620899,-0.587255 +0.518188,0.297630,1.958466,-0.448717,0.626814,-0.587568 +0.519909,0.299944,1.959323,-0.438298,0.632550,-0.587710 +0.521525,0.302138,1.960153,-0.427727,0.638102,-0.587686 +0.523036,0.304209,1.960958,-0.417007,0.643468,-0.587501 +0.524442,0.306158,1.961737,-0.406141,0.648646,-0.587158 +0.525744,0.307984,1.962490,-0.395133,0.653634,-0.586662 +0.526942,0.309686,1.963217,-0.383986,0.658428,-0.586017 +0.528035,0.311264,1.963919,-0.372703,0.663027,-0.585228 +0.529025,0.312717,1.964596,-0.361288,0.667429,-0.584300 +0.529912,0.314046,1.965248,-0.349744,0.671633,-0.583237 +0.530696,0.315249,1.965874,-0.338076,0.675635,-0.582044 +0.531377,0.316327,1.966476,-0.326286,0.679436,-0.580726 +0.531957,0.317280,1.967054,-0.314379,0.683033,-0.579288 +0.532435,0.318107,1.967608,-0.302358,0.686426,-0.577735 +0.532812,0.318810,1.968138,-0.290228,0.689612,-0.576073 +0.533089,0.319387,1.968644,-0.277993,0.692592,-0.574306 +0.533266,0.319839,1.969127,-0.265656,0.695365,-0.572439 +0.533345,0.320167,1.969586,-0.253222,0.697929,-0.570479 +0.533326,0.320370,1.970024,-0.240695,0.700284,-0.568430 +0.533209,0.320450,1.970438,-0.228079,0.702430,-0.566297 +0.532996,0.320406,1.970831,-0.215379,0.704367,-0.564087 +0.532688,0.320239,1.971203,-0.202599,0.706094,-0.561804 +0.532284,0.319951,1.971553,-0.189744,0.707613,-0.559454 +0.531787,0.319541,1.971882,-0.176817,0.708922,-0.557043 +0.531197,0.319010,1.972190,-0.163825,0.710022,-0.554576 +0.530516,0.318359,1.972479,-0.150771,0.710914,-0.552058 +0.529743,0.317590,1.972748,-0.137660,0.711598,-0.549496 +0.528881,0.316703,1.972997,-0.124497,0.712076,-0.546894 +0.527930,0.315699,1.973228,-0.111286,0.712348,-0.544258 +0.526892,0.314579,1.973440,-0.098033,0.712415,-0.541593 +0.525767,0.313344,1.973634,-0.084742,0.712278,-0.538906 +0.524557,0.311997,1.973810,-0.071419,0.711939,-0.536202 +0.523263,0.310537,1.973969,-0.058067,0.711400,-0.533485 +0.521886,0.308966,1.974112,-0.044693,0.710661,-0.530762 +0.520428,0.307286,1.974238,-0.031301,0.709725,-0.528038 +0.518889,0.305499,1.974348,-0.017896,0.708593,-0.525318 +0.517271,0.303605,1.974442,-0.004484,0.707267,-0.522607 +0.515575,0.301606,1.974522,0.008931,0.705750,-0.519911 +0.513802,0.299505,1.974586,0.022343,0.704044,-0.517235 +0.511955,0.297302,1.974637,0.035747,0.702151,-0.514584 +0.510033,0.294999,1.974674,0.049138,0.700073,-0.511963 +0.508039,0.292598,1.974697,0.062511,0.697813,-0.509376 +0.505974,0.290102,1.974707,0.075860,0.695374,-0.506830 +0.503838,0.287512,1.974705,0.089181,0.692759,-0.504329 +0.501635,0.284829,1.974691,0.102468,0.689970,-0.501876 +0.499364,0.282056,1.974664,0.115715,0.687011,-0.499479 +0.497028,0.279195,1.974627,0.128918,0.683884,-0.497139 +0.494628,0.276248,1.974578,0.142071,0.680593,-0.494863 +0.492165,0.273218,1.974518,0.155169,0.677141,-0.492654 +0.489640,0.270105,1.974449,0.168207,0.673532,-0.490517 +0.487055,0.266913,1.974369,0.181179,0.669768,-0.488456 +0.484412,0.263643,1.974279,0.194081,0.665854,-0.486475 +0.481712,0.260298,1.974180,0.206906,0.661792,-0.484578 +0.478956,0.256881,1.974073,0.219650,0.657588,-0.482768 +0.476145,0.253392,1.973956,0.232307,0.653244,-0.481050 +0.473282,0.249836,1.973831,0.244873,0.648764,-0.479426 +0.470368,0.246214,1.973697,0.257342,0.644152,-0.477901 +0.467403,0.242529,1.973556,0.269709,0.639412,-0.476477 +0.464390,0.238782,1.973407,0.281968,0.634549,-0.475158 +0.461329,0.234977,1.973250,0.294115,0.629565,-0.473946 +0.458223,0.231116,1.973086,0.306145,0.624466,-0.472845 +0.455072,0.227201,1.972915,0.318052,0.619255,-0.471857 +0.451879,0.223236,1.972737,0.329832,0.613937,-0.470985 +0.448644,0.219222,1.972552,0.341479,0.608516,-0.470231 +0.445368,0.215161,1.972360,0.352989,0.602996,-0.469597 +0.442054,0.211058,1.972161,0.364357,0.597381,-0.469086 +0.438702,0.206913,1.971956,0.375577,0.591676,-0.468699 +0.435314,0.202730,1.971745,0.386646,0.585884,-0.468439 +0.431891,0.198511,1.971527,0.397559,0.580012,-0.468306 +0.428435,0.194259,1.971302,0.408310,0.574061,-0.468302 +0.424947,0.189976,1.971072,0.418895,0.568038,-0.468429 +0.421427,0.185665,1.970834,0.429309,0.561947,-0.468688 +0.417878,0.181329,1.970591,0.439549,0.555791,-0.469079 +0.414301,0.176970,1.970340,0.449610,0.549575,-0.469604 +0.410696,0.172590,1.970083,0.459486,0.543304,-0.470263 +0.407066,0.168192,1.969819,0.469175,0.536982,-0.471057 +0.403411,0.163780,1.969549,0.478671,0.530613,-0.471985 +0.399732,0.159354,1.969271,0.487971,0.524202,-0.473048 +0.396031,0.154918,1.968986,0.497070,0.517752,-0.474246 +0.392309,0.150475,1.968693,0.505965,0.511268,-0.475579 +0.388567,0.146026,1.968393,0.514652,0.504755,-0.477046 +0.384806,0.141575,1.968085,0.523126,0.498217,-0.478646 +0.381028,0.137124,1.967768,0.531384,0.491657,-0.480380 +0.377232,0.132674,1.967443,0.539422,0.485080,-0.482246 +0.373421,0.128230,1.967109,0.547238,0.478489,-0.484242 +0.369596,0.123792,1.966766,0.554826,0.471890,-0.486369 +0.365757,0.119364,1.966414,0.562185,0.465285,-0.488624 +0.361906,0.114948,1.966051,0.569310,0.458680,-0.491006 +0.358043,0.110546,1.965678,0.576198,0.452077,-0.493513 +0.354169,0.106160,1.965294,0.582847,0.445480,-0.496143 +0.350286,0.101793,1.964899,0.589253,0.438894,-0.498894 +0.346395,0.097447,1.964492,0.595413,0.432321,-0.501765 +0.342495,0.093125,1.964072,0.601326,0.425766,-0.504752 +0.338589,0.088827,1.963640,0.606987,0.419232,-0.507853 +0.334677,0.084558,1.963195,0.612394,0.412723,-0.511066 +0.330760,0.080317,1.962735,0.617545,0.406241,-0.514388 +0.326838,0.076109,1.962261,0.622438,0.399790,-0.517815 +0.322913,0.071934,1.961772,0.627071,0.393374,-0.521345 +0.318985,0.067795,1.961267,0.631440,0.386995,-0.524975 +0.315056,0.063694,1.960745,0.635545,0.380656,-0.528700 +0.311125,0.059632,1.960206,0.639383,0.374361,-0.532518 +0.307194,0.055612,1.959650,0.642953,0.368111,-0.536425 +0.303263,0.051635,1.959075,0.646252,0.361911,-0.540417 +0.299333,0.047703,1.958480,0.649280,0.355762,-0.544491 +0.295404,0.043818,1.957866,0.652035,0.349667,-0.548641 +0.291478,0.039981,1.957231,0.654516,0.343629,-0.552865 +0.287555,0.036195,1.956574,0.656721,0.337649,-0.557158 +0.283636,0.032460,1.955895,0.658649,0.331731,-0.561515 +0.279720,0.028779,1.955192,0.660300,0.325876,-0.565932 +0.275810,0.025152,1.954466,0.661672,0.320086,-0.570405 +0.271905,0.021582,1.953715,0.662766,0.314362,-0.574929 +0.268005,0.018069,1.952938,0.663580,0.308708,-0.579498 +0.264112,0.014616,1.952134,0.664115,0.303125,-0.584109 +0.260226,0.011222,1.951303,0.664369,0.297613,-0.588757 +0.256348,0.007890,1.950444,0.664342,0.292175,-0.593435 +0.252477,0.004621,1.949556,0.664036,0.286812,-0.598140 +0.248615,0.001416,1.948637,0.663449,0.281525,-0.602866 +0.244761,-0.001724,1.947688,0.662581,0.276315,-0.607608 +0.240917,-0.004798,1.946706,0.661435,0.271184,-0.612361 +0.237083,-0.007805,1.945692,0.660008,0.266131,-0.617119 +0.233259,-0.010744,1.944644,0.658304,0.261158,-0.621877 +0.229445,-0.013615,1.943561,0.656321,0.256266,-0.626629 +0.225643,-0.016416,1.942443,0.654061,0.251455,-0.631370 +0.221852,-0.019146,1.941288,0.651525,0.246725,-0.636095 +0.218072,-0.021805,1.940096,0.648714,0.242077,-0.640797 +0.214305,-0.024393,1.938866,0.645630,0.237511,-0.645472 +0.210550,-0.026908,1.937596,0.642273,0.233027,-0.650114 +0.206808,-0.029350,1.936286,0.638645,0.228625,-0.654716 +0.203080,-0.031719,1.934934,0.634748,0.224305,-0.659275 +0.199365,-0.034014,1.933541,0.630583,0.220066,-0.663783 +0.195664,-0.036235,1.932104,0.626153,0.215908,-0.668236 +0.191977,-0.038381,1.930624,0.621459,0.211831,-0.672627 +0.188304,-0.040452,1.929099,0.616504,0.207834,-0.676951 +0.184647,-0.042449,1.927528,0.611289,0.203917,-0.681203 +0.181005,-0.044370,1.925911,0.605817,0.200078,-0.685376 +0.177378,-0.046215,1.924246,0.600091,0.196316,-0.689466 +0.173767,-0.047985,1.922533,0.594112,0.192632,-0.693466 +0.170172,-0.049679,1.920770,0.587885,0.189022,-0.697372 +0.166593,-0.051298,1.918958,0.581411,0.185488,-0.701178 +0.163032,-0.052842,1.917095,0.574693,0.182026,-0.704878 +0.159487,-0.054310,1.915180,0.567735,0.178635,-0.708467 +0.155959,-0.055703,1.913213,0.560540,0.175315,-0.711940 +0.152449,-0.057022,1.911192,0.553111,0.172064,-0.715292 +0.148957,-0.058265,1.909118,0.545450,0.168879,-0.718517 +0.145484,-0.059434,1.906989,0.537563,0.165760,-0.721610 +0.142028,-0.060530,1.904805,0.529452,0.162703,-0.724566 +0.138592,-0.061551,1.902564,0.521120,0.159709,-0.727381 +0.135175,-0.062500,1.900267,0.512573,0.156773,-0.730049 +0.131777,-0.063375,1.897912,0.503813,0.153895,-0.732566 +0.128399,-0.064179,1.895499,0.494845,0.151072,-0.734926 +0.125041,-0.064911,1.893028,0.485672,0.148302,-0.737126 +0.121703,-0.065572,1.890498,0.476299,0.145583,-0.739161 +0.118387,-0.066163,1.887907,0.466730,0.142913,-0.741026 +0.115091,-0.066685,1.885257,0.456969,0.140288,-0.742718 +0.111817,-0.067137,1.882546,0.447021,0.137707,-0.744231 +0.108564,-0.067521,1.879773,0.436890,0.135167,-0.745563 +0.105334,-0.067838,1.876940,0.426580,0.132665,-0.746708 +0.102126,-0.068089,1.874044,0.416097,0.130199,-0.747664 +0.098941,-0.068273,1.871085,0.405446,0.127767,-0.748427 +0.095779,-0.068394,1.868065,0.394630,0.125365,-0.748992 +0.092641,-0.068450,1.864981,0.383654,0.122991,-0.749358 +0.089527,-0.068443,1.861834,0.372525,0.120642,-0.749519 +0.086437,-0.068375,1.858623,0.361246,0.118316,-0.749474 +0.083372,-0.068245,1.855349,0.349822,0.116009,-0.749219 +0.080333,-0.068056,1.852011,0.338260,0.113718,-0.748752 +0.077319,-0.067808,1.848609,0.326563,0.111442,-0.748070 +0.074331,-0.067503,1.845144,0.314738,0.109177,-0.747169 +0.071370,-0.067140,1.841614,0.302789,0.106920,-0.746049 +0.068436,-0.066723,1.838020,0.290722,0.104668,-0.744706 +0.065529,-0.066251,1.834363,0.278542,0.102418,-0.743140 +0.062651,-0.065726,1.830642,0.266255,0.100168,-0.741346 +0.059800,-0.065149,1.826856,0.253865,0.097914,-0.739325 +0.056979,-0.064521,1.823008,0.241379,0.095655,-0.737074 +0.054187,-0.063844,1.819096,0.228802,0.093386,-0.734593 +0.051426,-0.063118,1.815121,0.216140,0.091105,-0.731879 +0.048694,-0.062346,1.811083,0.203398,0.088809,-0.728932 +0.045994,-0.061528,1.806983,0.190581,0.086495,-0.725751 +0.043325,-0.060665,1.802821,0.177696,0.084161,-0.722335 +0.040689,-0.059759,1.798597,0.164748,0.081804,-0.718683 +0.038085,-0.058811,1.794312,0.151742,0.079421,-0.714796 +0.035514,-0.057822,1.789966,0.138685,0.077010,-0.710673 +0.032978,-0.056794,1.785561,0.125582,0.074567,-0.706314 +0.030475,-0.055728,1.781095,0.112439,0.072090,-0.701720 +0.028008,-0.054626,1.776571,0.099261,0.069576,-0.696890 +0.025577,-0.053488,1.771989,0.086054,0.067024,-0.691824 +0.023181,-0.052315,1.767350,0.072824,0.064430,-0.686525 +0.020823,-0.051110,1.762654,0.059576,0.061792,-0.680992 +0.018502,-0.049874,1.757902,0.046317,0.059107,-0.675227 +0.016219,-0.048607,1.753095,0.033052,0.056374,-0.669231 +0.013975,-0.047311,1.748234,0.019786,0.053591,-0.663005 +0.011770,-0.045988,1.743320,0.006526,0.050754,-0.656551 +0.009606,-0.044638,1.738354,-0.006724,0.047862,-0.649870 +0.007482,-0.043264,1.733337,-0.019957,0.044913,-0.642965 +0.005400,-0.041866,1.728270,-0.033169,0.041905,-0.635837 +0.003359,-0.040445,1.723154,-0.046352,0.038835,-0.628488 +0.001362,-0.039003,1.717991,-0.059503,0.035703,-0.620922 +-0.000593,-0.037541,1.712781,-0.072614,0.032507,-0.613140 +-0.002503,-0.036060,1.707526,-0.085682,0.029244,-0.605146 +-0.004368,-0.034562,1.702227,-0.098700,0.025913,-0.596941 +-0.006188,-0.033047,1.696886,-0.111664,0.022513,-0.588530 +-0.007962,-0.031518,1.691503,-0.124567,0.019043,-0.579915 +-0.009689,-0.029974,1.686081,-0.137404,0.015501,-0.571099 +-0.011368,-0.028418,1.680620,-0.150171,0.011885,-0.562087 +-0.013000,-0.026850,1.675123,-0.162862,0.008196,-0.552882 +-0.014582,-0.025272,1.669590,-0.175472,0.004431,-0.543487 +-0.016115,-0.023685,1.664024,-0.187995,0.000591,-0.533906 +-0.017598,-0.022089,1.658426,-0.200428,-0.003326,-0.524144 +-0.019030,-0.020486,1.652797,-0.212764,-0.007321,-0.514204 +-0.020411,-0.018877,1.647140,-0.224999,-0.011394,-0.504091 +-0.021739,-0.017263,1.641455,-0.237128,-0.015545,-0.493810 +-0.023015,-0.015645,1.635745,-0.249147,-0.019775,-0.483364 +-0.024237,-0.014023,1.630012,-0.261050,-0.024085,-0.472759 +-0.025405,-0.012400,1.624257,-0.272833,-0.028473,-0.461999 +-0.026518,-0.010776,1.618482,-0.284492,-0.032941,-0.451089 +-0.027576,-0.009151,1.612689,-0.296022,-0.037488,-0.440034 +-0.028578,-0.007527,1.606880,-0.307419,-0.042114,-0.428840 +-0.029524,-0.005905,1.601057,-0.318677,-0.046819,-0.417511 +-0.030412,-0.004285,1.595221,-0.329794,-0.051602,-0.406053 +-0.031242,-0.002669,1.589375,-0.340765,-0.056463,-0.394471 +-0.032015,-0.001056,1.583521,-0.351586,-0.061402,-0.382770 +-0.032728,0.000551,1.577661,-0.362253,-0.066416,-0.370956 +-0.033382,0.002153,1.571797,-0.372762,-0.071506,-0.359036 +-0.033976,0.003749,1.565930,-0.383109,-0.076671,-0.347013 +-0.034510,0.005337,1.560063,-0.393290,-0.081910,-0.334895 +-0.034983,0.006918,1.554199,-0.403303,-0.087220,-0.322687 +-0.035395,0.008490,1.548338,-0.413143,-0.092602,-0.310394 +-0.035745,0.010053,1.542484,-0.422808,-0.098053,-0.298023 +-0.036032,0.011607,1.536639,-0.432293,-0.103573,-0.285580 +-0.036257,0.013151,1.530803,-0.441596,-0.109159,-0.273071 +-0.036419,0.014683,1.524981,-0.450713,-0.114810,-0.260502 +-0.036518,0.016205,1.519174,-0.459642,-0.120523,-0.247878 +-0.036553,0.017714,1.513384,-0.468380,-0.126298,-0.235206 +-0.036524,0.019211,1.507613,-0.476923,-0.132131,-0.222493 +-0.036431,0.020696,1.501864,-0.485270,-0.138021,-0.209743 +-0.036273,0.022168,1.496139,-0.493417,-0.143966,-0.196964 +-0.036050,0.023625,1.490439,-0.501362,-0.149963,-0.184162 +-0.035762,0.025069,1.484768,-0.509103,-0.156010,-0.171342 +-0.035409,0.026499,1.479128,-0.516638,-0.162103,-0.158511 +-0.034991,0.027914,1.473520,-0.523964,-0.168242,-0.145676 +-0.034507,0.029315,1.467947,-0.531079,-0.174422,-0.132841 +-0.033957,0.030700,1.462411,-0.537982,-0.180641,-0.120014 +-0.033342,0.032070,1.456914,-0.544671,-0.186896,-0.107200 +-0.032661,0.033424,1.451459,-0.551143,-0.193185,-0.094405 +-0.031914,0.034762,1.446047,-0.557398,-0.199503,-0.081636 +-0.031102,0.036084,1.440682,-0.563434,-0.205849,-0.068898 +-0.030224,0.037390,1.435364,-0.569250,-0.212218,-0.056198 +-0.029280,0.038679,1.430097,-0.574843,-0.218607,-0.043541 +-0.028271,0.039953,1.424882,-0.580214,-0.225014,-0.030933 +-0.027196,0.041209,1.419722,-0.585361,-0.231434,-0.018381 +-0.026056,0.042449,1.414618,-0.590284,-0.237864,-0.005888 +-0.024852,0.043672,1.409573,-0.594981,-0.244301,0.006537 +-0.023582,0.044878,1.404589,-0.599452,-0.250741,0.018891 +-0.022249,0.046068,1.399668,-0.603696,-0.257180,0.031168 +-0.020851,0.047241,1.394812,-0.607713,-0.263615,0.043362 +-0.019390,0.048397,1.390022,-0.611502,-0.270042,0.055467 +-0.017865,0.049536,1.385302,-0.615064,-0.276456,0.067480 +-0.016277,0.050658,1.380653,-0.618398,-0.282855,0.079393 +-0.014628,0.051764,1.376076,-0.621503,-0.289234,0.091203 +-0.012916,0.052853,1.371574,-0.624382,-0.295589,0.102905 +-0.011143,0.053925,1.367149,-0.627032,-0.301917,0.114493 +-0.009309,0.054981,1.362802,-0.629456,-0.308213,0.125962 +-0.007416,0.056020,1.358536,-0.631652,-0.314473,0.137310 +-0.005463,0.057043,1.354351,-0.633623,-0.320694,0.148529 +-0.003451,0.058050,1.350251,-0.635367,-0.326871,0.159617 +-0.001381,0.059041,1.346236,-0.636887,-0.333000,0.170569 +0.000746,0.060016,1.342308,-0.638183,-0.339078,0.181381 +0.002929,0.060975,1.338469,-0.639256,-0.345099,0.192049 +0.005167,0.061919,1.334721,-0.640107,-0.351060,0.202569 +0.007461,0.062847,1.331064,-0.640736,-0.356958,0.212937 +0.009808,0.063759,1.327501,-0.641147,-0.362787,0.223150 +0.012207,0.064657,1.324033,-0.641339,-0.368544,0.233204 +0.014658,0.065540,1.320662,-0.641314,-0.374224,0.243096 +0.017160,0.066408,1.317388,-0.641074,-0.379824,0.252823 +0.019711,0.067261,1.314214,-0.640620,-0.385340,0.262382 +0.022311,0.068099,1.311140,-0.639955,-0.390768,0.271769 +0.024958,0.068924,1.308167,-0.639079,-0.396104,0.280983 +0.027650,0.069734,1.305298,-0.637996,-0.401343,0.290020 +0.030388,0.070531,1.302533,-0.636706,-0.406482,0.298878 +0.033169,0.071313,1.299872,-0.635212,-0.411518,0.307555 +0.035992,0.072082,1.297318,-0.633516,-0.416445,0.316049 +0.038856,0.072838,1.294871,-0.631621,-0.421262,0.324358 +0.041760,0.073580,1.292532,-0.629529,-0.425963,0.332481 +0.044701,0.074310,1.290302,-0.627241,-0.430545,0.340414 +0.047679,0.075026,1.288182,-0.624761,-0.435005,0.348158 +0.050693,0.075729,1.286173,-0.622092,-0.439339,0.355711 +0.053739,0.076420,1.284275,-0.619235,-0.443544,0.363071 +0.056818,0.077099,1.282488,-0.616194,-0.447616,0.370239 +0.059928,0.077765,1.280815,-0.612971,-0.451552,0.377212 +0.063066,0.078418,1.279255,-0.609569,-0.455349,0.383990 +0.066231,0.079060,1.277808,-0.605992,-0.459003,0.390574 +0.069422,0.079689,1.276475,-0.602241,-0.462512,0.396962 +0.072637,0.080306,1.275257,-0.598321,-0.465873,0.403155 +0.075874,0.080912,1.274154,-0.594235,-0.469082,0.409152 +0.079132,0.081506,1.273166,-0.589984,-0.472136,0.414954 +0.082408,0.082087,1.272293,-0.585574,-0.475034,0.420561 +0.085700,0.082658,1.271536,-0.581006,-0.477773,0.425974 +0.089008,0.083216,1.270894,-0.576285,-0.480349,0.431193 +0.092329,0.083763,1.270368,-0.571414,-0.482762,0.436219 +0.095662,0.084298,1.269958,-0.566395,-0.485007,0.441053 +0.099004,0.084821,1.269663,-0.561234,-0.487083,0.445697 +0.102353,0.085332,1.269483,-0.555932,-0.488989,0.450151 +0.105708,0.085832,1.269419,-0.550495,-0.490721,0.454417 +0.109067,0.086320,1.269469,-0.544925,-0.492279,0.458497 +0.112427,0.086795,1.269634,-0.539226,-0.493660,0.462392 +0.115787,0.087259,1.269914,-0.533401,-0.494863,0.466105 +0.119145,0.087711,1.270307,-0.527455,-0.495887,0.469637 +0.122499,0.088150,1.270813,-0.521392,-0.496729,0.472991 +0.125846,0.088577,1.271433,-0.515214,-0.497390,0.476168 +0.129186,0.088992,1.272164,-0.508926,-0.497867,0.479172 +0.132515,0.089394,1.273008,-0.502532,-0.498159,0.482004 +0.135831,0.089782,1.273962,-0.496035,-0.498267,0.484669 +0.139134,0.090158,1.275026,-0.489440,-0.498188,0.487167 +0.142420,0.090520,1.276199,-0.482750,-0.497923,0.489503 +0.145688,0.090869,1.277481,-0.475969,-0.497471,0.491680 +0.148935,0.091204,1.278871,-0.469102,-0.496832,0.493700 +0.152160,0.091525,1.280366,-0.462151,-0.496006,0.495568 +0.155360,0.091831,1.281968,-0.455122,-0.494992,0.497285 +0.158534,0.092122,1.283674,-0.448018,-0.493791,0.498857 +0.161679,0.092399,1.285483,-0.440843,-0.492402,0.500286 +0.164794,0.092660,1.287394,-0.433601,-0.490827,0.501576 +0.167876,0.092905,1.289406,-0.426296,-0.489065,0.502732 +0.170923,0.093134,1.291517,-0.418931,-0.487118,0.503756 +0.173934,0.093347,1.293727,-0.411512,-0.484986,0.504654 +0.176906,0.093542,1.296034,-0.404042,-0.482670,0.505428 +0.179838,0.093720,1.298436,-0.396525,-0.480172,0.506084 +0.182727,0.093881,1.300933,-0.388965,-0.477491,0.506625 +0.185571,0.094023,1.303522,-0.381366,-0.474630,0.507055 +0.188369,0.094146,1.306202,-0.373731,-0.471591,0.507380 +0.191119,0.094250,1.308971,-0.366066,-0.468374,0.507603 +0.193818,0.094334,1.311828,-0.358373,-0.464982,0.507729 +0.196465,0.094398,1.314771,-0.350657,-0.461416,0.507762 +0.199058,0.094441,1.317799,-0.342921,-0.457678,0.507706 +0.201596,0.094463,1.320909,-0.335170,-0.453771,0.507568 +0.204076,0.094463,1.324100,-0.327407,-0.449697,0.507350 +0.206496,0.094440,1.327370,-0.319637,-0.445457,0.507058 +0.208855,0.094394,1.330718,-0.311862,-0.441056,0.506697 +0.211152,0.094325,1.334141,-0.304087,-0.436495,0.506270 +0.213384,0.094232,1.337637,-0.296316,-0.431777,0.505783 +0.215549,0.094113,1.341205,-0.288552,-0.426905,0.505241 +0.217647,0.093970,1.344842,-0.280799,-0.421882,0.504647 +0.219676,0.093800,1.348548,-0.273061,-0.416712,0.504008 +0.221633,0.093603,1.352318,-0.265341,-0.411396,0.503327 +0.223518,0.093380,1.356153,-0.257643,-0.405940,0.502610 +0.225330,0.093128,1.360049,-0.249970,-0.400346,0.501860 +0.227066,0.092848,1.364004,-0.242327,-0.394617,0.501083 +0.228725,0.092538,1.368017,-0.234716,-0.388759,0.500283 +0.230306,0.092199,1.372084,-0.227141,-0.382773,0.499465 +0.231807,0.091829,1.376205,-0.219606,-0.376665,0.498634 +0.233228,0.091428,1.380377,-0.212113,-0.370437,0.497794 +0.234568,0.090995,1.384598,-0.204667,-0.364095,0.496949 +0.235824,0.090529,1.388866,-0.197270,-0.357643,0.496104 +0.236996,0.090031,1.393178,-0.189926,-0.351084,0.495263 +0.238083,0.089498,1.397532,-0.182637,-0.344423,0.494431 +0.239083,0.088931,1.401926,-0.175408,-0.337664,0.493612 +0.239997,0.088330,1.406359,-0.168241,-0.330813,0.492810 +0.240822,0.087692,1.410827,-0.161139,-0.323873,0.492030 +0.241559,0.087018,1.415328,-0.154106,-0.316848,0.491274 +0.242206,0.086307,1.419861,-0.147144,-0.309745,0.490549 +0.242762,0.085558,1.424423,-0.140256,-0.302567,0.489856 +0.243227,0.084772,1.429011,-0.133445,-0.295320,0.489201 +0.243600,0.083946,1.433625,-0.126714,-0.288008,0.488586 +0.243881,0.083081,1.438260,-0.120066,-0.280636,0.488016 +0.244069,0.082176,1.442916,-0.113503,-0.273209,0.487494 +0.244163,0.081231,1.447591,-0.107028,-0.265732,0.487024 +0.244164,0.080245,1.452281,-0.100643,-0.258210,0.486608 +0.244071,0.079217,1.456984,-0.094352,-0.250649,0.486250 +0.243883,0.078146,1.461700,-0.088156,-0.243053,0.485953 +0.243600,0.077034,1.466424,-0.082058,-0.235427,0.485721 +0.243223,0.075878,1.471157,-0.076061,-0.227777,0.485555 +0.242751,0.074678,1.475894,-0.070166,-0.220108,0.485459 +0.242184,0.073435,1.480634,-0.064377,-0.212425,0.485436 +0.241522,0.072147,1.485376,-0.058694,-0.204733,0.485488 +0.240765,0.070814,1.490116,-0.053121,-0.197038,0.485616 +0.239914,0.069436,1.494853,-0.047660,-0.189344,0.485825 +0.238968,0.068012,1.499585,-0.042311,-0.181657,0.486115 +0.237928,0.066542,1.504310,-0.037079,-0.173982,0.486488 +0.236794,0.065026,1.509026,-0.031963,-0.166324,0.486947 +0.235567,0.063464,1.513731,-0.026967,-0.158689,0.487493 +0.234247,0.061854,1.518424,-0.022091,-0.151081,0.488128 +0.232835,0.060198,1.523101,-0.017339,-0.143505,0.488853 +0.231330,0.058494,1.527762,-0.012711,-0.135968,0.489669 +0.229735,0.056743,1.532404,-0.008208,-0.128472,0.490578 +0.228049,0.054944,1.537026,-0.003833,-0.121025,0.491580 +0.226274,0.053098,1.541626,0.000412,-0.113630,0.492676 +0.224409,0.051204,1.546202,0.004528,-0.106293,0.493867 +0.222457,0.049262,1.550753,0.008511,-0.099018,0.495154 +0.220418,0.047272,1.555276,0.012362,-0.091810,0.496537 +0.218294,0.045234,1.559771,0.016078,-0.084674,0.498015 +0.216084,0.043148,1.564235,0.019658,-0.077615,0.499590 +0.213791,0.041015,1.568668,0.023102,-0.070637,0.501260 +0.211416,0.038834,1.573067,0.026408,-0.063745,0.503026 +0.208959,0.036606,1.577432,0.029575,-0.056943,0.504888 +0.206423,0.034330,1.581760,0.032602,-0.050236,0.506844 +0.203809,0.032007,1.586051,0.035488,-0.043627,0.508894 +0.201117,0.029638,1.590302,0.038233,-0.037122,0.511038 +0.198351,0.027222,1.594513,0.040836,-0.030724,0.513273 +0.195510,0.024760,1.598683,0.043296,-0.024437,0.515600 +0.192598,0.022252,1.602810,0.045612,-0.018265,0.518016 +0.189615,0.019698,1.606893,0.047783,-0.012212,0.520520 +0.186563,0.017100,1.610931,0.049810,-0.006282,0.523111 +0.183445,0.014458,1.614923,0.051691,-0.000478,0.525787 +0.180261,0.011771,1.618867,0.053426,0.005196,0.528545 +0.177014,0.009042,1.622764,0.055015,0.010736,0.531385 +0.173706,0.006269,1.626611,0.056458,0.016141,0.534303 +0.170339,0.003455,1.630409,0.057753,0.021405,0.537298 +0.166914,0.000599,1.634155,0.058901,0.026527,0.540366 +0.163435,-0.002297,1.637850,0.059903,0.031504,0.543506 +0.159902,-0.005233,1.641493,0.060756,0.036332,0.546714 +0.156319,-0.008208,1.645083,0.061462,0.041009,0.549988 +0.152687,-0.011222,1.648618,0.062021,0.045532,0.553324 +0.149008,-0.014272,1.652100,0.062432,0.049900,0.556721 +0.145286,-0.017359,1.655527,0.062695,0.054110,0.560173 +0.141522,-0.020481,1.658898,0.062811,0.058160,0.563679 +0.137718,-0.023637,1.662213,0.062781,0.062047,0.567234 +0.133878,-0.026826,1.665472,0.062603,0.065771,0.570834 +0.130003,-0.030048,1.668675,0.062278,0.069329,0.574477 +0.126096,-0.033300,1.671820,0.061807,0.072720,0.578159 +0.122160,-0.036582,1.674908,0.061191,0.075942,0.581875 +0.118196,-0.039893,1.677939,0.060429,0.078995,0.585621 +0.114209,-0.043231,1.680912,0.059521,0.081877,0.589394 +0.110199,-0.046595,1.683828,0.058469,0.084588,0.593189 +0.106171,-0.049984,1.686685,0.057274,0.087125,0.597002 +0.102125,-0.053396,1.689485,0.055934,0.089490,0.600829 +0.098066,-0.056830,1.692227,0.054453,0.091681,0.604665 +0.093996,-0.060284,1.694911,0.052829,0.093699,0.608505 +0.089917,-0.063757,1.697537,0.051063,0.095542,0.612345 +0.085832,-0.067247,1.700106,0.049158,0.097212,0.616181 +0.081744,-0.070753,1.702618,0.047112,0.098707,0.620007 +0.077656,-0.074274,1.705072,0.044928,0.100029,0.623819 +0.073570,-0.077807,1.707469,0.042606,0.101178,0.627613 +0.069490,-0.081351,1.709810,0.040146,0.102155,0.631382 +0.065417,-0.084905,1.712095,0.037551,0.102960,0.635123 +0.061355,-0.088466,1.714324,0.034821,0.103594,0.638830 +0.057307,-0.092032,1.716498,0.031957,0.104058,0.642498 +0.053275,-0.095603,1.718617,0.028960,0.104354,0.646123 +0.049261,-0.099176,1.720681,0.025832,0.104483,0.649698 +0.045270,-0.102750,1.722692,0.022573,0.104446,0.653220 +0.041303,-0.106322,1.724649,0.019185,0.104246,0.656684 +0.037363,-0.109891,1.726554,0.015669,0.103884,0.660083 +0.033454,-0.113454,1.728407,0.012026,0.103361,0.663413 +0.029577,-0.117011,1.730209,0.008258,0.102681,0.666669 +0.025736,-0.120558,1.731961,0.004366,0.101844,0.669845 +0.021933,-0.124094,1.733663,0.000351,0.100855,0.672938 +0.018171,-0.127618,1.735315,-0.003785,0.099715,0.675940 +0.014453,-0.131126,1.736920,-0.008041,0.098427,0.678849 +0.010781,-0.134617,1.738478,-0.012414,0.096993,0.681658 +0.007158,-0.138089,1.739989,-0.016905,0.095418,0.684362 +0.003587,-0.141540,1.741455,-0.021510,0.093703,0.686957 +0.000070,-0.144968,1.742876,-0.026229,0.091852,0.689438 +-0.003390,-0.148371,1.744254,-0.031059,0.089868,0.691799 +-0.006791,-0.151746,1.745589,-0.036000,0.087755,0.694036 +-0.010129,-0.155092,1.746883,-0.041049,0.085516,0.696145 +-0.013404,-0.158407,1.748136,-0.046205,0.083155,0.698120 +-0.016612,-0.161688,1.749350,-0.051466,0.080676,0.699956 +-0.019750,-0.164933,1.750526,-0.056830,0.078083,0.701650 +-0.022817,-0.168140,1.751664,-0.062296,0.075380,0.703197 +-0.025809,-0.171308,1.752766,-0.067860,0.072570,0.704592 +-0.028726,-0.174433,1.753834,-0.073523,0.069658,0.705831 +-0.031564,-0.177515,1.754867,-0.079281,0.066648,0.706909 +-0.034320,-0.180550,1.755867,-0.085133,0.063546,0.707823 +-0.036994,-0.183537,1.756837,-0.091077,0.060354,0.708569 +-0.039583,-0.186473,1.757775,-0.097110,0.057078,0.709141 +-0.042085,-0.189357,1.758685,-0.103231,0.053723,0.709538 +-0.044497,-0.192187,1.759566,-0.109438,0.050292,0.709754 +-0.046818,-0.194960,1.760421,-0.115729,0.046792,0.709786 +-0.049045,-0.197674,1.761250,-0.122101,0.043226,0.709631 +-0.051177,-0.200328,1.762055,-0.128552,0.039601,0.709285 +-0.053213,-0.202919,1.762837,-0.135081,0.035920,0.708744 +-0.055149,-0.205445,1.763597,-0.141685,0.032189,0.708007 +-0.056986,-0.207905,1.764336,-0.148362,0.028412,0.707068 +-0.058719,-0.210296,1.765056,-0.155109,0.024596,0.705927 +-0.060349,-0.212616,1.765758,-0.161925,0.020745,0.704579 +-0.061874,-0.214864,1.766443,-0.168807,0.016865,0.703023 +-0.063292,-0.217038,1.767112,-0.175753,0.012960,0.701255 +-0.064601,-0.219136,1.767767,-0.182760,0.009037,0.699274 +-0.065801,-0.221155,1.768408,-0.189826,0.005100,0.697077 +-0.066890,-0.223095,1.769037,-0.196949,0.001154,0.694661 +-0.067866,-0.224953,1.769656,-0.204127,-0.002794,0.692026 +-0.068729,-0.226727,1.770265,-0.211356,-0.006740,0.689170 +-0.069478,-0.228417,1.770865,-0.218635,-0.010678,0.686090 +-0.070111,-0.230020,1.771459,-0.225961,-0.014602,0.682785 +-0.070627,-0.231535,1.772046,-0.233332,-0.018508,0.679255 +-0.071026,-0.232959,1.772628,-0.240745,-0.022390,0.675497 +-0.071307,-0.234292,1.773206,-0.248197,-0.026243,0.671511 +-0.071468,-0.235533,1.773782,-0.255687,-0.030060,0.667297 +-0.071509,-0.236678,1.774356,-0.263210,-0.033838,0.662853 +-0.071430,-0.237728,1.774930,-0.270766,-0.037570,0.658179 +-0.071230,-0.238681,1.775505,-0.278351,-0.041252,0.653275 +-0.070909,-0.239534,1.776081,-0.285963,-0.044878,0.648140 +-0.070465,-0.240288,1.776660,-0.293599,-0.048442,0.642776 +-0.069899,-0.240941,1.777243,-0.301256,-0.051941,0.637181 +-0.069211,-0.241492,1.777831,-0.308932,-0.055368,0.631356 +-0.068399,-0.241939,1.778424,-0.316624,-0.058718,0.625303 +-0.067465,-0.242281,1.779024,-0.324329,-0.061988,0.619021 +-0.066408,-0.242518,1.779632,-0.332045,-0.065170,0.612511 +-0.065227,-0.242649,1.780249,-0.339768,-0.068262,0.605775 +-0.063924,-0.242672,1.780875,-0.347497,-0.071257,0.598814 +-0.062498,-0.242586,1.781512,-0.355229,-0.074152,0.591629 +-0.060949,-0.242392,1.782160,-0.362960,-0.076941,0.584222 +-0.059278,-0.242088,1.782820,-0.370687,-0.079620,0.576595 +-0.057485,-0.241673,1.783493,-0.378409,-0.082185,0.568749 +-0.055571,-0.241146,1.784179,-0.386122,-0.084631,0.560687 +-0.053535,-0.240509,1.784880,-0.393823,-0.086953,0.552410 +-0.051379,-0.239758,1.785596,-0.401510,-0.089148,0.543922 +-0.049104,-0.238895,1.786328,-0.409179,-0.091212,0.535225 +-0.046709,-0.237920,1.787076,-0.416828,-0.093140,0.526321 +-0.044196,-0.236830,1.787841,-0.424454,-0.094928,0.517214 +-0.041566,-0.235627,1.788624,-0.432054,-0.096573,0.507907 +-0.038819,-0.234310,1.789425,-0.439625,-0.098071,0.498402 +-0.035957,-0.232879,1.790245,-0.447165,-0.099419,0.488704 +-0.032980,-0.231334,1.791085,-0.454670,-0.100612,0.478815 +-0.029890,-0.229675,1.791944,-0.462137,-0.101649,0.468740 +-0.026687,-0.227903,1.792823,-0.469564,-0.102525,0.458482 +-0.023374,-0.226016,1.793723,-0.476947,-0.103237,0.448045 +-0.019951,-0.224016,1.794644,-0.484284,-0.103783,0.437434 +-0.016420,-0.221902,1.795586,-0.491572,-0.104160,0.426652 +-0.012783,-0.219676,1.796550,-0.498808,-0.104365,0.415704 +-0.009039,-0.217337,1.797535,-0.505988,-0.104395,0.404594 +-0.005193,-0.214885,1.798543,-0.513110,-0.104249,0.393327 +-0.001244,-0.212323,1.799574,-0.520172,-0.103924,0.381908 +0.002805,-0.209649,1.800627,-0.527169,-0.103417,0.370342 +0.006953,-0.206866,1.801703,-0.534099,-0.102728,0.358633 +0.011198,-0.203972,1.802801,-0.540960,-0.101853,0.346787 +0.015538,-0.200971,1.803923,-0.547747,-0.100792,0.334809 +0.019971,-0.197861,1.805068,-0.554460,-0.099543,0.322704 +0.024495,-0.194645,1.806236,-0.561093,-0.098105,0.310478 +0.029109,-0.191323,1.807427,-0.567645,-0.096476,0.298136 +0.033809,-0.187896,1.808641,-0.574112,-0.094656,0.285684 +0.038595,-0.184365,1.809878,-0.580492,-0.092643,0.273127 +0.043464,-0.180733,1.811138,-0.586782,-0.090438,0.260471 +0.048413,-0.176999,1.812421,-0.592978,-0.088038,0.247723 +0.053442,-0.173166,1.813727,-0.599078,-0.085445,0.234887 +0.058546,-0.169234,1.815055,-0.605080,-0.082657,0.221971 +0.063724,-0.165206,1.816405,-0.610980,-0.079675,0.208979 +0.068974,-0.161082,1.817778,-0.616775,-0.076499,0.195919 +0.074293,-0.156864,1.819172,-0.622462,-0.073128,0.182796 +0.079679,-0.152555,1.820588,-0.628039,-0.069564,0.169616 +0.085130,-0.148155,1.822025,-0.633504,-0.065807,0.156386 +0.090642,-0.143667,1.823483,-0.638852,-0.061858,0.143113 +0.096214,-0.139092,1.824961,-0.644081,-0.057717,0.129801 +0.101842,-0.134433,1.826460,-0.649190,-0.053385,0.116459 +0.107525,-0.129690,1.827978,-0.654174,-0.048865,0.103091 +0.113260,-0.124867,1.829516,-0.659031,-0.044156,0.089705 +0.119043,-0.119965,1.831072,-0.663759,-0.039262,0.076307 +0.124873,-0.114986,1.832647,-0.668355,-0.034182,0.062903 +0.130747,-0.109933,1.834239,-0.672816,-0.028920,0.049500 +0.136662,-0.104808,1.835849,-0.677139,-0.023477,0.036104 +0.142615,-0.099612,1.837476,-0.681323,-0.017855,0.022722 +0.148604,-0.094349,1.839119,-0.685364,-0.012056,0.009360 +0.154625,-0.089021,1.840777,-0.689261,-0.006083,-0.003976 +0.160677,-0.083629,1.842450,-0.693010,0.000061,-0.017279 +0.166756,-0.078177,1.844138,-0.696609,0.006374,-0.030543 +0.172860,-0.072668,1.845839,-0.700055,0.012853,-0.043761 +0.178986,-0.067102,1.847554,-0.703347,0.019495,-0.056928 +0.185131,-0.061484,1.849281,-0.706482,0.026298,-0.070037 +0.191293,-0.055815,1.851019,-0.709458,0.033257,-0.083082 +0.197468,-0.050099,1.852769,-0.712272,0.040369,-0.096057 +0.203654,-0.044338,1.854529,-0.714922,0.047631,-0.108955 +0.209847,-0.038534,1.856299,-0.717406,0.055039,-0.121772 +0.216047,-0.032691,1.858077,-0.719722,0.062590,-0.134500 +0.222248,-0.026811,1.859864,-0.721868,0.070279,-0.147135 +0.228449,-0.020898,1.861657,-0.723842,0.078103,-0.159669 +0.234648,-0.014953,1.863458,-0.725641,0.086057,-0.172098 +0.240840,-0.008979,1.865264,-0.727265,0.094138,-0.184417 +0.247024,-0.002981,1.867076,-0.728710,0.102340,-0.196618 +0.253197,0.003041,1.868891,-0.729975,0.110660,-0.208698 +0.259356,0.009081,1.870711,-0.731059,0.119094,-0.220650 +0.265498,0.015139,1.872533,-0.731959,0.127635,-0.232470 +0.271622,0.021210,1.874356,-0.732674,0.136281,-0.244153 +0.277723,0.027292,1.876181,-0.733202,0.145025,-0.255692 +0.283799,0.033382,1.878007,-0.733542,0.153864,-0.267085 +0.289849,0.039477,1.879831,-0.733693,0.162791,-0.278325 +0.295869,0.045574,1.881655,-0.733651,0.171803,-0.289409 +0.301856,0.051669,1.883476,-0.733418,0.180894,-0.300331 +0.307809,0.057761,1.885295,-0.732990,0.190058,-0.311087 +0.313725,0.063845,1.887110,-0.732367,0.199292,-0.321674 +0.319601,0.069920,1.888920,-0.731547,0.208588,-0.332086 +0.325434,0.075981,1.890725,-0.730530,0.217943,-0.342321 +0.331223,0.082026,1.892525,-0.729315,0.227350,-0.352374 +0.336965,0.088052,1.894317,-0.727899,0.236804,-0.362242 +0.342658,0.094056,1.896102,-0.726283,0.246300,-0.371920 +0.348299,0.100035,1.897878,-0.724466,0.255833,-0.381407 +0.353887,0.105987,1.899646,-0.722447,0.265395,-0.390698 +0.359418,0.111907,1.901404,-0.720224,0.274983,-0.399791 +0.364891,0.117793,1.903151,-0.717799,0.284590,-0.408682 +0.370303,0.123643,1.904886,-0.715169,0.294212,-0.417369 +0.375654,0.129453,1.906610,-0.712334,0.303841,-0.425850 +0.380939,0.135221,1.908322,-0.709295,0.313472,-0.434121 +0.386158,0.140943,1.910019,-0.706050,0.323101,-0.442182 +0.391309,0.146617,1.911703,-0.702599,0.332721,-0.450029 +0.396389,0.152241,1.913372,-0.698943,0.342326,-0.457661 +0.401396,0.157810,1.915026,-0.695081,0.351911,-0.465077 +0.406330,0.163323,1.916664,-0.691014,0.361471,-0.472274 +0.411187,0.168777,1.918285,-0.686740,0.370999,-0.479251 +0.415967,0.174169,1.919889,-0.682261,0.380490,-0.486008 +0.420667,0.179497,1.921475,-0.677577,0.389939,-0.492542 +0.425287,0.184758,1.923043,-0.672687,0.399339,-0.498854 +0.429824,0.189949,1.924592,-0.667593,0.408686,-0.504943 +0.434277,0.195068,1.926121,-0.662295,0.417974,-0.510808 +0.438644,0.200112,1.927631,-0.656794,0.427198,-0.516449 +0.442924,0.205080,1.929120,-0.651089,0.436351,-0.521866 +0.447116,0.209968,1.930588,-0.645182,0.445429,-0.527059 +0.451218,0.214774,1.932035,-0.639074,0.454427,-0.532027 +0.455229,0.219496,1.933460,-0.632766,0.463339,-0.536773 +0.459148,0.224132,1.934863,-0.626258,0.472161,-0.541295 +0.462974,0.228680,1.936243,-0.619553,0.480886,-0.545596 +0.466705,0.233136,1.937600,-0.612650,0.489511,-0.549675 +0.470341,0.237501,1.938934,-0.605551,0.498029,-0.553534 +0.473880,0.241770,1.940244,-0.598258,0.506437,-0.557175 +0.477322,0.245943,1.941530,-0.590772,0.514729,-0.560598 +0.480666,0.250017,1.942792,-0.583095,0.522901,-0.563805 +0.483911,0.253990,1.944029,-0.575228,0.530949,-0.566799 +0.487055,0.257862,1.945241,-0.567173,0.538866,-0.569580 +0.490099,0.261629,1.946429,-0.558932,0.546651,-0.572152 +0.493042,0.265290,1.947591,-0.550507,0.554297,-0.574516 +0.495883,0.268845,1.948727,-0.541900,0.561800,-0.576675 +0.498622,0.272290,1.949838,-0.533112,0.569158,-0.578631 +0.501257,0.275625,1.950923,-0.524146,0.576365,-0.580387 +0.503790,0.278849,1.951983,-0.515005,0.583417,-0.581946 +0.506218,0.281959,1.953016,-0.505691,0.590312,-0.583312 +0.508543,0.284955,1.954023,-0.496205,0.597045,-0.584486 +0.510763,0.287835,1.955005,-0.486551,0.603613,-0.585473 +0.512879,0.290599,1.955960,-0.476732,0.610012,-0.586276 +0.514890,0.293245,1.956888,-0.466749,0.616239,-0.586898 +0.516796,0.295772,1.957791,-0.456606,0.622291,-0.587343 +0.518598,0.298179,1.958668,-0.446306,0.628165,-0.587616 +0.520294,0.300466,1.959518,-0.435852,0.633858,-0.587719 +0.521886,0.302631,1.960343,-0.425246,0.639367,-0.587658 +0.523372,0.304674,1.961141,-0.414491,0.644690,-0.587435 +0.524754,0.306594,1.961914,-0.403592,0.649824,-0.587056 +0.526032,0.308391,1.962661,-0.392552,0.654767,-0.586525 +0.527206,0.310064,1.963383,-0.381372,0.659516,-0.585846 +0.528275,0.311613,1.964079,-0.370058,0.664069,-0.585025 +0.529241,0.313037,1.964750,-0.358613,0.668425,-0.584064 +0.530104,0.314337,1.965396,-0.347040,0.672582,-0.582971 +0.530864,0.315511,1.966017,-0.335343,0.676538,-0.581748 +0.531521,0.316560,1.966613,-0.323525,0.680291,-0.580402 +0.532077,0.317484,1.967185,-0.311592,0.683841,-0.578937 +0.532531,0.318282,1.967733,-0.299545,0.687186,-0.577358 +0.532885,0.318955,1.968257,-0.287390,0.690324,-0.575671 +0.533139,0.319503,1.968758,-0.275131,0.693256,-0.573880 +0.533294,0.319926,1.969236,-0.262771,0.695980,-0.571991 +0.533349,0.320225,1.969690,-0.250315,0.698495,-0.570010 +0.533307,0.320400,1.970122,-0.237767,0.700802,-0.567941 +0.533168,0.320450,1.970532,-0.225131,0.702900,-0.565790 +0.532933,0.320378,1.970920,-0.212412,0.704788,-0.563562 +0.532602,0.320183,1.971286,-0.199614,0.706466,-0.561263 +0.532177,0.319866,1.971631,-0.186742,0.707936,-0.558898 +0.531658,0.319428,1.971955,-0.173800,0.709196,-0.556474 +0.531047,0.318869,1.972259,-0.160793,0.710248,-0.553994 +0.530344,0.318191,1.972543,-0.147725,0.711092,-0.551466 +0.529551,0.317394,1.972807,-0.134601,0.711728,-0.548893 +0.528668,0.316480,1.973052,-0.121427,0.712158,-0.546283 +0.527697,0.315448,1.973279,-0.108206,0.712382,-0.543640 +0.526638,0.314302,1.973486,-0.094944,0.712401,-0.540970 +0.525493,0.313041,1.973676,-0.081645,0.712217,-0.538278 +0.524264,0.311667,1.973849,-0.068314,0.711832,-0.535571 +0.522950,0.310181,1.974004,-0.054957,0.711246,-0.532852 +0.521554,0.308585,1.974142,-0.041578,0.710461,-0.530128 +0.520077,0.306880,1.974265,-0.028183,0.709479,-0.527404 +0.518519,0.305067,1.974371,-0.014776,0.708301,-0.524686 +0.516883,0.303149,1.974462,-0.001363,0.706931,-0.521978 +0.515169,0.301126,1.974538,0.012052,0.705370,-0.519286 +0.513379,0.299001,1.974599,0.025463,0.703620,-0.516616 +0.511514,0.296775,1.974647,0.038864,0.701683,-0.513971 +0.509575,0.294449,1.974680,0.052252,0.699563,-0.511357 +0.507565,0.292026,1.974701,0.065620,0.697262,-0.508780 +0.505483,0.289508,1.974708,0.078963,0.694782,-0.506244 +0.503332,0.286896,1.974703,0.092276,0.692126,-0.503753 +0.501113,0.284192,1.974686,0.105554,0.689297,-0.501314 +0.498827,0.281398,1.974657,0.118792,0.686298,-0.498929 +0.496475,0.278517,1.974616,0.131983,0.683133,-0.496604 +0.494060,0.275551,1.974565,0.145124,0.679804,-0.494343 +0.491583,0.272500,1.974503,0.158209,0.676315,-0.492151 +0.489044,0.269369,1.974431,0.171232,0.672670,-0.490031 +0.486445,0.266159,1.974349,0.184188,0.668871,-0.487988 +0.483789,0.262871,1.974257,0.197072,0.664922,-0.486026 +0.481075,0.259509,1.974156,0.209879,0.660827,-0.484149 +0.478307,0.256075,1.974046,0.222603,0.656589,-0.482360 +0.475484,0.252571,1.973927,0.235240,0.652213,-0.480664 +0.472609,0.248999,1.973800,0.247783,0.647702,-0.479063 +0.469682,0.245362,1.973665,0.260229,0.643060,-0.477561 +0.466706,0.241662,1.973522,0.272571,0.638291,-0.476161 +0.463682,0.237902,1.973371,0.284805,0.633400,-0.474866 +0.460611,0.234084,1.973213,0.296925,0.628389,-0.473680 +0.457494,0.230210,1.973047,0.308926,0.623263,-0.472605 +0.454333,0.226283,1.972874,0.320805,0.618027,-0.471644 +0.451130,0.222306,1.972694,0.332554,0.612685,-0.470799 +0.447885,0.218281,1.972508,0.344170,0.607240,-0.470073 +0.444601,0.214210,1.972314,0.355647,0.601697,-0.469467 +0.441277,0.210097,1.972114,0.366981,0.596061,-0.468985 +0.437917,0.205943,1.971908,0.378167,0.590336,-0.468627 +0.434521,0.201751,1.971695,0.389200,0.584525,-0.468396 +0.431090,0.197524,1.971475,0.400075,0.578634,-0.468293 +0.427626,0.193265,1.971249,0.410788,0.572666,-0.468320 +0.424130,0.188976,1.971017,0.421334,0.566627,-0.468478 +0.420604,0.184659,1.970778,0.431708,0.560520,-0.468767 +0.417048,0.180317,1.970533,0.441906,0.554350,-0.469190 +0.413464,0.175952,1.970281,0.451924,0.548121,-0.469746 +0.409854,0.171568,1.970022,0.461758,0.541837,-0.470436 +0.406217,0.167167,1.969757,0.471402,0.535504,-0.471260 +0.402557,0.162751,1.969485,0.480853,0.529125,-0.472220 +0.398873,0.158323,1.969205,0.490106,0.522704,-0.473315 +0.395167,0.153885,1.968918,0.499158,0.516246,-0.474544 +0.391440,0.149440,1.968624,0.508005,0.509755,-0.475908 +0.387694,0.144991,1.968322,0.516643,0.503236,-0.477406 +0.383928,0.140539,1.968012,0.525067,0.496692,-0.479038 +0.380146,0.136088,1.967693,0.533274,0.490128,-0.480802 +0.376347,0.131640,1.967366,0.541261,0.483547,-0.482699 +0.372532,0.127197,1.967030,0.549024,0.476954,-0.484726 +0.368704,0.122761,1.966685,0.556559,0.470353,-0.486882 +0.364862,0.118335,1.966330,0.563864,0.463748,-0.489167 +0.361008,0.113922,1.965965,0.570934,0.457143,-0.491578 +0.357142,0.109524,1.965589,0.577767,0.450541,-0.494114 +0.353267,0.105142,1.965203,0.584359,0.443947,-0.496772 +0.349382,0.100780,1.964805,0.590708,0.437363,-0.499552 +0.345488,0.096439,1.964395,0.596811,0.430795,-0.502450 +0.341587,0.092122,1.963973,0.602665,0.424244,-0.505464 +0.337679,0.087831,1.963538,0.608268,0.417715,-0.508591 +0.333766,0.083568,1.963089,0.613616,0.411212,-0.511830 +0.329848,0.079335,1.962626,0.618707,0.404737,-0.515176 +0.325925,0.075134,1.962149,0.623540,0.398294,-0.518628 +0.321999,0.070968,1.961656,0.628111,0.391886,-0.522181 +0.318071,0.066837,1.961147,0.632419,0.385516,-0.525833 +0.314141,0.062745,1.960621,0.636462,0.379187,-0.529580 +0.310210,0.058693,1.960079,0.640238,0.372902,-0.533419 +0.306279,0.054682,1.959518,0.643745,0.366664,-0.537347 +0.302348,0.050716,1.958938,0.646981,0.360475,-0.541358 +0.298418,0.046794,1.958339,0.649946,0.354339,-0.545450 +0.294491,0.042921,1.957720,0.652637,0.348257,-0.549618 +0.290565,0.039095,1.957080,0.655053,0.342232,-0.553858 +0.286643,0.035321,1.956418,0.657194,0.336267,-0.558166 +0.282724,0.031599,1.955733,0.659058,0.330363,-0.562538 +0.278810,0.027930,1.955025,0.660644,0.324522,-0.566968 +0.274901,0.024316,1.954293,0.661952,0.318748,-0.571453 +0.270997,0.020759,1.953536,0.662981,0.313041,-0.575988 +0.267099,0.017260,1.952753,0.663730,0.307403,-0.580568 +0.263207,0.013821,1.951943,0.664199,0.301836,-0.585188 +0.259323,0.010441,1.951106,0.664388,0.296341,-0.589843 +0.255446,0.007124,1.950240,0.664296,0.290920,-0.594528 +0.251577,0.003870,1.949345,0.663924,0.285575,-0.599238 +0.247717,0.000680,1.948419,0.663272,0.280306,-0.603969 +0.243866,-0.002445,1.947462,0.662340,0.275114,-0.608714 +0.240024,-0.005504,1.946473,0.661128,0.270001,-0.613468 +0.236192,-0.008495,1.945451,0.659637,0.264967,-0.618226 +0.232370,-0.011418,1.944395,0.657867,0.260013,-0.622983 +0.228559,-0.014273,1.943304,0.655820,0.255139,-0.627733 +0.224759,-0.017057,1.942178,0.653496,0.250347,-0.632471 +0.220971,-0.019771,1.941014,0.650896,0.245637,-0.637191 +0.217194,-0.022414,1.939813,0.648021,0.241008,-0.641888 +0.213430,-0.024985,1.938574,0.644873,0.236461,-0.646555 +0.209678,-0.027483,1.937295,0.641453,0.231996,-0.651188 +0.205940,-0.029908,1.935975,0.637762,0.227613,-0.655781 +0.202214,-0.032260,1.934614,0.633803,0.223311,-0.660329 +0.198502,-0.034538,1.933211,0.629576,0.219091,-0.664824 +0.194805,-0.036741,1.931764,0.625084,0.214952,-0.669263 +0.191121,-0.038870,1.930273,0.620329,0.210894,-0.673639 +0.187452,-0.040924,1.928738,0.615313,0.206916,-0.677947 +0.183798,-0.042902,1.927156,0.610039,0.203016,-0.682181 +0.180159,-0.044806,1.925528,0.604507,0.199196,-0.686335 +0.176536,-0.046634,1.923852,0.598722,0.195452,-0.690405 +0.172929,-0.048386,1.922127,0.592686,0.191785,-0.694384 +0.169338,-0.050063,1.920353,0.586400,0.188193,-0.698267 +0.165763,-0.051664,1.918529,0.579869,0.184676,-0.702049 +0.162205,-0.053190,1.916654,0.573096,0.181230,-0.705723 +0.158664,-0.054641,1.914727,0.566082,0.177857,-0.709286 +0.155141,-0.056017,1.912747,0.558832,0.174553,-0.712731 +0.151635,-0.057318,1.910715,0.551349,0.171317,-0.716054 +0.148147,-0.058544,1.908628,0.543635,0.168148,-0.719248 +0.144678,-0.059696,1.906486,0.535695,0.165043,-0.722310 +0.141227,-0.060774,1.904288,0.527533,0.162001,-0.725234 +0.137795,-0.061778,1.902035,0.519151,0.159020,-0.728015 +0.134382,-0.062710,1.899724,0.510553,0.156099,-0.730648 +0.130989,-0.063569,1.897356,0.501745,0.153233,-0.733129 +0.127616,-0.064356,1.894930,0.492728,0.150423,-0.735453 +0.124262,-0.065071,1.892445,0.483509,0.147665,-0.737615 +0.120930,-0.065716,1.889900,0.474089,0.144958,-0.739610 +0.117618,-0.066291,1.887296,0.464475,0.142298,-0.741436 +0.114327,-0.066796,1.884631,0.454670,0.139683,-0.743086 +0.111058,-0.067232,1.881906,0.444679,0.137112,-0.744558 +0.107810,-0.067601,1.879120,0.434506,0.134581,-0.745846 +0.104585,-0.067902,1.876271,0.424156,0.132088,-0.746948 +0.101383,-0.068137,1.873361,0.413634,0.129630,-0.747859 +0.098203,-0.068307,1.870388,0.402943,0.127205,-0.748576 +0.095047,-0.068412,1.867353,0.392090,0.124810,-0.749095 +0.091914,-0.068454,1.864254,0.381078,0.122442,-0.749414 +0.088806,-0.068433,1.861092,0.369913,0.120099,-0.749527 +0.085722,-0.068350,1.857867,0.358600,0.117777,-0.749434 +0.082663,-0.068207,1.854578,0.347144,0.115474,-0.749130 +0.079629,-0.068004,1.851225,0.335550,0.113188,-0.748613 +0.076621,-0.067742,1.847809,0.323823,0.110914,-0.747880 +0.073640,-0.067423,1.844328,0.311968,0.108651,-0.746928 +0.070685,-0.067048,1.840784,0.299992,0.106395,-0.745757 +0.067757,-0.066618,1.837175,0.287898,0.104144,-0.744362 +0.064857,-0.066133,1.833503,0.275692,0.101895,-0.742742 +0.061985,-0.065596,1.829766,0.263381,0.099644,-0.740896 +0.059141,-0.065007,1.825967,0.250968,0.097389,-0.738822 +0.056327,-0.064368,1.822103,0.238461,0.095127,-0.736518 +0.053542,-0.063679,1.818177,0.225863,0.092856,-0.733982 +0.050787,-0.062943,1.814187,0.213182,0.090572,-0.731214 +0.048063,-0.062160,1.810135,0.200422,0.088272,-0.728212 +0.045370,-0.061331,1.806020,0.187589,0.085954,-0.724977 +0.042709,-0.060458,1.801843,0.174688,0.083615,-0.721506 +0.040080,-0.059542,1.797605,0.161726,0.081252,-0.717800 +0.037484,-0.058585,1.793306,0.148708,0.078863,-0.713858 +0.034921,-0.057587,1.788947,0.135640,0.076444,-0.709680 +0.032392,-0.056550,1.784527,0.122527,0.073993,-0.705266 +0.029898,-0.055475,1.780048,0.109375,0.071508,-0.700617 +0.027439,-0.054364,1.775510,0.096190,0.068986,-0.695732 +0.025016,-0.053218,1.770915,0.082977,0.066424,-0.690612 +0.022629,-0.052038,1.766262,0.069743,0.063820,-0.685259 +0.020279,-0.050825,1.761553,0.056492,0.061171,-0.679672 +0.017967,-0.049582,1.756788,0.043231,0.058476,-0.673853 +0.015693,-0.048308,1.751968,0.029965,0.055731,-0.667803 +0.013458,-0.047006,1.747095,0.016700,0.052935,-0.661524 +0.011265,-0.045679,1.742170,0.003448,0.050085,-0.655022 +0.009123,-0.044335,1.737180,-0.009784,0.047169,-0.648305 +0.007042,-0.042986,1.732120,-0.022983,0.044173,-0.641386 +0.005033,-0.041641,1.726970,-0.036137,0.041085,-0.634278 +0.003106,-0.040313,1.721720,-0.049233,0.037891,-0.626995 +0.001273,-0.039012,1.716370,-0.062258,0.034579,-0.619548 +-0.000455,-0.037748,1.710900,-0.075198,0.031136,-0.611952 +-0.002068,-0.036533,1.705300,-0.088041,0.027549,-0.604219 +-0.003555,-0.035376,1.699560,-0.100774,0.023804,-0.596362 +-0.004905,-0.034291,1.693670,-0.113383,0.019889,-0.588393 +-0.006107,-0.033286,1.687630,-0.125857,0.015793,-0.580327 +-0.007151,-0.032372,1.681410,-0.138181,0.011517,-0.572176 +-0.008025,-0.031561,1.675000,-0.150343,0.007074,-0.563952 +-0.008720,-0.030859,1.668410,-0.162331,0.002477,-0.555669 +-0.009223,-0.030258,1.661600,-0.174130,-0.002261,-0.547340 +-0.009524,-0.029746,1.654590,-0.185729,-0.007127,-0.538978 +-0.009614,-0.029312,1.647360,-0.197113,-0.012108,-0.530595 +-0.009487,-0.028947,1.639910,-0.208271,-0.017190,-0.522206 +-0.009143,-0.028639,1.632250,-0.219189,-0.022362,-0.513821 +-0.008584,-0.028377,1.624370,-0.229854,-0.027610,-0.505456 +-0.007807,-0.028151,1.616270,-0.240260,-0.032921,-0.497121 +-0.006815,-0.027950,1.607960,-0.250408,-0.038282,-0.488832 +-0.005606,-0.027762,1.599430,-0.260296,-0.043680,-0.480599 +-0.004181,-0.027578,1.590680,-0.269924,-0.049103,-0.472438 +-0.002540,-0.027394,1.581720,-0.279294,-0.054537,-0.464359 +-0.000691,-0.027211,1.572540,-0.288404,-0.059972,-0.456377 +0.001357,-0.027027,1.563150,-0.297256,-0.065407,-0.448504 +0.003591,-0.026843,1.553540,-0.305848,-0.070842,-0.440754 +0.006002,-0.026659,1.543710,-0.314180,-0.076278,-0.433138 +0.008578,-0.026476,1.533680,-0.322254,-0.081713,-0.425671 +0.011309,-0.026292,1.523450,-0.330068,-0.087148,-0.418365 +0.014183,-0.026108,1.513030,-0.337623,-0.092583,-0.411233 +0.017190,-0.025925,1.502440,-0.344919,-0.098019,-0.404288 +0.020320,-0.025741,1.491690,-0.351956,-0.103454,-0.397531 +0.023561,-0.025557,1.480790,-0.358734,-0.108889,-0.390950 +0.026902,-0.025373,1.469740,-0.365252,-0.114325,-0.384533 +0.030333,-0.025190,1.458560,-0.371511,-0.119760,-0.378267 +0.033843,-0.025006,1.447260,-0.377511,-0.125195,-0.372137 +0.037421,-0.024822,1.435850,-0.383252,-0.130630,-0.366132 +0.041056,-0.024638,1.424340,-0.388733,-0.136066,-0.360239 +0.044737,-0.024455,1.412750,-0.393955,-0.141501,-0.354444 +0.048455,-0.024271,1.401080,-0.398918,-0.146936,-0.348735 +0.052197,-0.024087,1.389340,-0.403622,-0.152372,-0.343099 +0.055953,-0.023903,1.377550,-0.408067,-0.157807,-0.337522 +0.059712,-0.023720,1.365710,-0.412252,-0.163242,-0.331991 +0.063472,-0.023536,1.353830,-0.416179,-0.168677,-0.326495 +0.067232,-0.023352,1.341940,-0.419846,-0.174113,-0.321019 +0.070991,-0.023168,1.330030,-0.423254,-0.179548,-0.315552 +0.074751,-0.022985,1.318120,-0.426402,-0.184983,-0.310084 +0.078511,-0.022801,1.306210,-0.429292,-0.190419,-0.304617 +0.082270,-0.022617,1.294300,-0.431922,-0.195854,-0.299150 +0.086030,-0.022433,1.282390,-0.434293,-0.201289,-0.293683 +0.089790,-0.022250,1.270480,-0.436405,-0.206724,-0.288216 +0.093550,-0.022066,1.258570,-0.438257,-0.212160,-0.282748 +0.097309,-0.021882,1.246660,-0.439851,-0.217595,-0.277281 +0.101069,-0.021698,1.234750,-0.441185,-0.223030,-0.271814 +0.104829,-0.021515,1.222840,-0.442260,-0.228465,-0.266347 +0.108588,-0.021331,1.210930,-0.443078,-0.233901,-0.260879 +0.112348,-0.021147,1.199020,-0.443651,-0.239336,-0.255412 +0.116108,-0.020963,1.187110,-0.443992,-0.244771,-0.249945 +0.119868,-0.020780,1.175200,-0.444114,-0.250207,-0.244478 +0.123627,-0.020596,1.163290,-0.444029,-0.255642,-0.239011 +0.127387,-0.020412,1.151380,-0.443751,-0.261077,-0.233543 +0.131147,-0.020229,1.139470,-0.443292,-0.266512,-0.228076 +0.134906,-0.020045,1.127560,-0.442666,-0.271948,-0.222609 +0.138666,-0.019861,1.115650,-0.441885,-0.277383,-0.217142 +0.142426,-0.019677,1.103740,-0.440963,-0.282818,-0.211675 +0.146186,-0.019494,1.091830,-0.439912,-0.288254,-0.206207 +0.149945,-0.019310,1.079920,-0.438745,-0.293689,-0.200740 +0.153705,-0.019126,1.068010,-0.437476,-0.299124,-0.195273 +0.157465,-0.018942,1.056100,-0.436117,-0.304559,-0.189806 +0.161224,-0.018759,1.044190,-0.434681,-0.309995,-0.184338 +0.164984,-0.018575,1.032280,-0.433181,-0.315430,-0.178871 +0.168744,-0.018391,1.020370,-0.431631,-0.320865,-0.173404 +0.172504,-0.018207,1.008460,-0.430042,-0.326301,-0.167937 +0.176263,-0.018024,0.996552,-0.428429,-0.331736,-0.162470 +0.180023,-0.017840,0.984642,-0.426804,-0.337171,-0.157002 +0.183783,-0.017656,0.972732,-0.425177,-0.342606,-0.151535 +0.187542,-0.017472,0.960822,-0.423550,-0.348042,-0.146068 +0.191302,-0.017289,0.948912,-0.421923,-0.353477,-0.140601 +0.195062,-0.017105,0.937002,-0.420296,-0.358912,-0.135134 +0.198822,-0.016921,0.925092,-0.418669,-0.364348,-0.129666 +0.202581,-0.016737,0.913182,-0.417042,-0.369783,-0.124199 +0.206341,-0.016554,0.901272,-0.415415,-0.375218,-0.118732 +0.210101,-0.016370,0.889362,-0.413788,-0.380653,-0.113265 +0.213860,-0.016186,0.877452,-0.412161,-0.386089,-0.107797 +0.217620,-0.016002,0.865542,-0.410534,-0.391524,-0.102330 +0.221380,-0.015819,0.853632,-0.408907,-0.396959,-0.096863 +0.225140,-0.015635,0.841722,-0.407280,-0.402394,-0.091396 +0.228899,-0.015451,0.829812,-0.405653,-0.407830,-0.085929 +0.232659,-0.015268,0.817902,-0.404026,-0.413265,-0.080461 +0.236419,-0.015084,0.805992,-0.402399,-0.418700,-0.074994 +0.240178,-0.014900,0.794083,-0.400772,-0.424136,-0.069527 +0.243938,-0.014716,0.782173,-0.399145,-0.429571,-0.064060 +0.247698,-0.014533,0.770263,-0.397518,-0.435006,-0.058592 +0.251458,-0.014349,0.758353,-0.395891,-0.440441,-0.053125 +0.255217,-0.014165,0.746443,-0.394264,-0.445877,-0.047658 +0.258977,-0.013981,0.734533,-0.392637,-0.451312,-0.042191 +0.262737,-0.013798,0.722623,-0.391010,-0.456747,-0.036724 +0.266496,-0.013614,0.710713,-0.389383,-0.462183,-0.031256 +0.270256,-0.013430,0.698803,-0.387756,-0.467618,-0.025789 +0.274016,-0.013246,0.686893,-0.386129,-0.473053,-0.020322 +0.277776,-0.013063,0.674983,-0.384502,-0.478488,-0.014855 +0.281535,-0.012879,0.663073,-0.382875,-0.483924,-0.009388 +0.285295,-0.012695,0.651163,-0.381248,-0.489359,-0.003920 +0.289055,-0.012511,0.639253,-0.379621,-0.494794,0.001547 +0.292814,-0.012328,0.627343,-0.377994,-0.500230,0.007014 +0.296574,-0.012144,0.615433,-0.376367,-0.505665,0.012481 +0.300334,-0.011960,0.603523,-0.374740,-0.511100,0.017948 +0.304094,-0.011777,0.591613,-0.373113,-0.516535,0.023416 +0.307853,-0.011593,0.579703,-0.371486,-0.521971,0.028883 +0.311613,-0.011409,0.567793,-0.369859,-0.527406,0.034350 +0.315373,-0.011225,0.555883,-0.368232,-0.532841,0.039817 +0.319132,-0.011041,0.543973,-0.366605,-0.538277,0.045285 +0.322892,-0.010858,0.532063,-0.364978,-0.543712,0.050752 +0.326652,-0.010674,0.520153,-0.363351,-0.549147,0.056219 +0.330411,-0.010490,0.508243,-0.361724,-0.554582,0.061686 +0.334171,-0.010307,0.496333,-0.360097,-0.560018,0.067154 +0.337931,-0.010123,0.484423,-0.358470,-0.565453,0.072621 +0.341691,-0.009939,0.472513,-0.356843,-0.570888,0.078088 +0.345450,-0.009755,0.460603,-0.355216,-0.576323,0.083555 +0.349210,-0.009572,0.448693,-0.353589,-0.581759,0.089022 +0.352970,-0.009388,0.436783,-0.351962,-0.587194,0.094490 +0.356729,-0.009204,0.424873,-0.350335,-0.592629,0.099957 +0.360489,-0.009020,0.412963,-0.348708,-0.598065,0.105424 +0.364249,-0.008837,0.401053,-0.347081,-0.603500,0.110891 +0.368009,-0.008653,0.389143,-0.345454,-0.608935,0.116358 +0.371768,-0.008469,0.377233,-0.343827,-0.614370,0.121826 +0.375528,-0.008285,0.365323,-0.342200,-0.619806,0.127293 +0.379288,-0.008102,0.353413,-0.340573,-0.625241,0.132760 +0.383047,-0.007918,0.341503,-0.338946,-0.630676,0.138227 +0.386807,-0.007734,0.329593,-0.337319,-0.636112,0.143695 +0.390567,-0.007550,0.317683,-0.335692,-0.641547,0.149162 +0.394327,-0.007367,0.305773,-0.334065,-0.646982,0.154629 +0.398086,-0.007183,0.293863,-0.332438,-0.652417,0.160096 +0.401846,-0.006999,0.281953,-0.330811,-0.657853,0.165563 +0.405606,-0.006815,0.270043,-0.329184,-0.663288,0.171031 +0.409365,-0.006632,0.258133,-0.327557,-0.668723,0.176498 +0.413125,-0.006448,0.246223,-0.325930,-0.674159,0.181965 +0.416885,-0.006264,0.234313,-0.324303,-0.679594,0.187432 +0.420645,-0.006080,0.222403,-0.322676,-0.685029,0.192899 +0.424404,-0.005897,0.210493,-0.321049,-0.690464,0.198367 +0.428164,-0.005713,0.198583,-0.319422,-0.695900,0.203834 +0.431924,-0.005529,0.186673,-0.317795,-0.701335,0.209301 +0.435683,-0.005346,0.174763,-0.316168,-0.706770,0.214768 +0.439443,-0.005162,0.162853,-0.314541,-0.712206,0.220236 +0.443203,-0.004978,0.150943,-0.312914,-0.717641,0.225703 +0.446963,-0.004794,0.139033,-0.311287,-0.723076,0.231170 +0.450722,-0.004611,0.127123,-0.309660,-0.728511,0.236637 +0.454482,-0.004427,0.115213,-0.308033,-0.733947,0.242104 +0.458242,-0.004243,0.103303,-0.306406,-0.739382,0.247572 +0.462001,-0.004059,0.091393,-0.304779,-0.744817,0.253039 +0.465761,-0.003876,0.079483,-0.303152,-0.750252,0.258506 +0.469521,-0.003692,0.067573,-0.301525,-0.755688,0.263973 +0.473281,-0.003508,0.055663,-0.299898,-0.761123,0.269440 +0.477040,-0.003324,0.043753,-0.298271,-0.766558,0.274908 +0.480800,-0.003141,0.031843,-0.296644,-0.771994,0.280375 +0.484560,-0.002957,0.019933,-0.295017,-0.777429,0.285842 +0.488319,-0.002773,0.008023,-0.293390,-0.782864,0.291309 +0.492079,-0.002589,-0.003887,-0.291763,-0.788299,0.296777 +0.495839,-0.002406,-0.015797,-0.290136,-0.793735,0.302244 +0.499599,-0.002222,-0.027707,-0.288509,-0.799170,0.307711 +0.503358,-0.002038,-0.039617,-0.286882,-0.804605,0.313178 +0.507118,-0.001854,-0.051527,-0.285255,-0.810041,0.318645 +0.510878,-0.001671,-0.063437,-0.283628,-0.815476,0.324113 +0.514637,-0.001487,-0.075346,-0.282001,-0.820911,0.329580 +0.518397,-0.001303,-0.087254,-0.280374,-0.826346,0.335047 +0.522157,-0.001119,-0.099151,-0.278747,-0.831782,0.340514 +0.525917,-0.000936,-0.111026,-0.277120,-0.837217,0.345982 +0.529676,-0.000752,-0.122867,-0.275493,-0.842652,0.351449 +0.533436,-0.000568,-0.134665,-0.273866,-0.848088,0.356916 +0.537196,-0.000384,-0.146408,-0.272239,-0.853523,0.362383 +0.540955,-0.000201,-0.158086,-0.270612,-0.858958,0.367850 +0.544715,-0.000017,-0.169687,-0.268985,-0.864393,0.373318 +0.548475,0.000167,-0.181202,-0.267358,-0.869829,0.378785 +0.552235,0.000350,-0.192618,-0.265731,-0.875264,0.384252 +0.555994,0.000534,-0.203926,-0.264104,-0.880699,0.389719 +0.559754,0.000718,-0.215115,-0.262477,-0.886135,0.395186 +0.563514,0.000902,-0.226173,-0.260850,-0.891570,0.400654 +0.567273,0.001085,-0.237090,-0.259223,-0.897005,0.406121 +0.571033,0.001269,-0.247855,-0.257596,-0.902440,0.411588 +0.574793,0.001453,-0.258457,-0.255969,-0.907876,0.417055 +0.578553,0.001637,-0.268886,-0.254342,-0.913311,0.422523 +0.582312,0.001820,-0.279130,-0.252715,-0.918746,0.427990 +0.586072,0.002004,-0.289179,-0.251088,-0.924181,0.433457 +0.589832,0.002188,-0.299022,-0.249461,-0.929617,0.438924 +0.593591,0.002372,-0.308650,-0.247834,-0.935052,0.444391 +0.597351,0.002555,-0.318062,-0.246207,-0.940487,0.449859 +0.601111,0.002739,-0.327257,-0.244580,-0.945923,0.455326 +0.604871,0.002923,-0.336236,-0.242953,-0.951358,0.460793 +0.608630,0.003107,-0.344999,-0.241326,-0.956793,0.466260 +0.612390,0.003290,-0.353545,-0.239699,-0.962228,0.471727 +0.616150,0.003474,-0.361875,-0.238072,-0.967664,0.477195 +0.619909,0.003658,-0.369989,-0.236445,-0.973099,0.482662 +0.623669,0.003842,-0.377886,-0.234818,-0.978534,0.488129 +0.627429,0.004025,-0.385567,-0.233191,-0.983970,0.493596 +0.631189,0.004209,-0.393031,-0.231564,-0.989405,0.499064 +0.634948,0.004393,-0.400280,-0.229937,-0.994840,0.504531 +0.638708,0.004577,-0.407311,-0.228310,-1.000280,0.509998 +0.642468,0.004760,-0.414127,-0.226683,-1.005710,0.515465 +0.646227,0.004944,-0.420726,-0.225056,-1.011140,0.520930 +0.649987,0.005128,-0.427109,-0.223429,-1.016560,0.526380 +0.653747,0.005312,-0.433275,-0.221802,-1.021960,0.531803 +0.657506,0.005495,-0.439225,-0.220175,-1.027320,0.537186 +0.661262,0.005679,-0.444959,-0.218548,-1.032620,0.542516 +0.665004,0.005863,-0.450476,-0.216921,-1.037860,0.547780 +0.668722,0.006046,-0.455777,-0.215294,-1.043030,0.552965 +0.672404,0.006230,-0.460861,-0.213667,-1.048100,0.558058 +0.676039,0.006414,-0.465729,-0.212040,-1.053070,0.563047 +0.679617,0.006598,-0.470381,-0.210413,-1.057920,0.567917 +0.683128,0.006781,-0.474817,-0.208786,-1.062650,0.572657 +0.686559,0.006965,-0.479036,-0.207159,-1.067230,0.577253 +0.689901,0.007149,-0.483039,-0.205532,-1.071660,0.581692 +0.693142,0.007333,-0.486825,-0.203906,-1.075920,0.585961 +0.696272,0.007516,-0.490395,-0.202279,-1.080000,0.590048 +0.699280,0.007700,-0.493749,-0.200652,-1.083880,0.593939 +0.702156,0.007884,-0.496886,-0.199025,-1.087560,0.597622 +0.704887,0.008068,-0.499807,-0.197398,-1.091010,0.601083 +0.707464,0.008251,-0.502511,-0.195771,-1.094240,0.604310 +0.709875,0.008435,-0.504999,-0.194150,-1.097220,0.607289 +0.712111,0.008619,-0.507271,-0.192547,-1.099940,0.610011 +0.714159,0.008803,-0.509328,-0.190975,-1.102400,0.612476 +0.716011,0.008986,-0.511180,-0.189448,-1.104620,0.614694 +0.717668,0.009170,-0.512837,-0.187977,-1.106610,0.616679 +0.719141,0.009354,-0.514310,-0.186577,-1.108370,0.618444 +0.720441,0.009538,-0.515610,-0.185260,-1.109930,0.620001 +0.721579,0.009721,-0.516748,-0.184039,-1.111290,0.621364 +0.722565,0.009905,-0.517734,-0.182927,-1.112470,0.622546 +0.723410,0.010089,-0.518580,-0.181936,-1.113490,0.623559 +0.724126,0.010273,-0.519296,-0.181081,-1.114340,0.624416 +0.724723,0.010456,-0.519892,-0.180366,-1.115060,0.625131 +0.725212,0.010640,-0.520381,-0.179781,-1.115640,0.625717 +0.725603,0.010824,-0.520772,-0.179312,-1.116110,0.626186 +0.725908,0.011004,-0.521077,-0.178947,-1.116480,0.626551 +0.726137,0.011171,-0.521306,-0.178673,-1.116750,0.626825 +0.726301,0.011314,-0.521470,-0.178476,-1.116950,0.627021 +0.726411,0.011421,-0.521580,-0.178344,-1.117080,0.627153 +0.726477,0.011488,-0.521647,-0.178264,-1.117160,0.627233 +0.726512,0.011522,-0.521681,-0.178223,-1.117200,0.627274 +0.726524,0.011535,-0.521694,-0.178208,-1.117220,0.627289 +0.726526,0.011536,-0.521695,-0.178206,-1.117220,0.627291 +0.726526,0.011536,-0.521695,-0.178206,-1.117220,0.627291 +0.726527,0.011536,-0.521695,-0.178206,-1.117220,0.627292 +0.726527,0.011536,-0.521695,-0.178206,-1.117220,0.627292 +0.726523,0.011540,-0.521699,-0.178201,-1.117210,0.627287 +0.726505,0.011558,-0.521718,-0.178179,-1.117190,0.627265 +0.726461,0.011602,-0.521762,-0.178126,-1.117140,0.627212 +0.726381,0.011682,-0.521842,-0.178031,-1.117040,0.627117 +0.726254,0.011809,-0.521968,-0.177879,-1.116890,0.626965 +0.726069,0.011994,-0.522153,-0.177658,-1.116670,0.626744 +0.725816,0.012247,-0.522406,-0.177355,-1.116370,0.626440 +0.725484,0.012579,-0.522738,-0.176956,-1.115970,0.626042 +0.725062,0.013001,-0.523161,-0.176450,-1.115460,0.625536 +0.724538,0.013525,-0.523684,-0.175824,-1.114840,0.624909 +0.723903,0.014160,-0.524319,-0.175075,-1.114080,0.624148 +0.723145,0.014918,-0.525077,-0.174217,-1.113170,0.623240 +0.722254,0.015809,-0.525969,-0.173262,-1.112100,0.622172 +0.721218,0.016845,-0.527004,-0.172224,-1.110860,0.620932 +0.720028,0.018035,-0.528195,-0.171114,-1.109430,0.619506 +0.718671,0.019392,-0.529551,-0.169947,-1.107810,0.617881 +0.717138,0.020925,-0.531084,-0.168735,-1.105970,0.616044 +0.715418,0.022638,-0.532805,-0.167492,-1.103910,0.613983 +0.713499,0.024522,-0.534724,-0.166229,-1.101610,0.611697 +0.711371,0.026566,-0.536852,-0.164960,-1.099060,0.609200 +0.709027,0.028759,-0.539196,-0.163691,-1.096250,0.606503 +0.706467,0.031090,-0.541756,-0.162422,-1.093190,0.603619 +0.703690,0.033549,-0.544533,-0.161153,-1.089860,0.600562 +0.700697,0.036124,-0.547525,-0.159884,-1.086270,0.597345 +0.697488,0.038805,-0.550735,-0.158615,-1.082430,0.593980 +0.694062,0.041581,-0.554160,-0.157346,-1.078330,0.590481 +0.690420,0.044442,-0.557803,-0.156077,-1.073980,0.586860 +0.686561,0.047375,-0.561661,-0.154808,-1.069390,0.583130 +0.682487,0.050372,-0.565736,-0.153539,-1.064590,0.579305 +0.678196,0.053420,-0.570027,-0.152270,-1.059570,0.575397 +0.673688,0.056509,-0.574534,-0.151001,-1.054360,0.571420 +0.668964,0.059628,-0.579258,-0.149732,-1.048970,0.567385 +0.664024,0.062766,-0.584198,-0.148463,-1.043410,0.563307 +0.658867,0.065913,-0.589355,-0.147193,-1.037690,0.559198 +0.653494,0.069060,-0.594728,-0.145924,-1.031830,0.555071 +0.647905,0.072208,-0.600317,-0.144655,-1.025830,0.550939 +0.642099,0.075356,-0.606123,-0.143386,-1.019720,0.546807 +0.636077,0.078503,-0.612145,-0.142117,-1.013510,0.542674 +0.629839,0.081651,-0.618383,-0.140848,-1.007200,0.538542 +0.623384,0.084798,-0.624838,-0.139579,-1.000810,0.534410 +0.616713,0.087946,-0.631509,-0.138310,-0.994360,0.530277 +0.609826,0.091094,-0.638397,-0.137041,-0.987854,0.526145 +0.602722,0.094241,-0.645501,-0.135772,-0.981308,0.522012 +0.595408,0.097389,-0.652821,-0.134503,-0.974735,0.517880 +0.587894,0.100537,-0.660358,-0.133234,-0.968149,0.513748 +0.580190,0.103684,-0.668110,-0.131965,-0.961559,0.509615 +0.572309,0.106832,-0.676080,-0.130696,-0.954969,0.505483 +0.564260,0.109980,-0.684265,-0.129427,-0.948379,0.501350 +0.556054,0.113127,-0.692668,-0.128158,-0.941790,0.497218 +0.547702,0.116275,-0.701286,-0.126889,-0.935200,0.493086 +0.539216,0.119422,-0.710121,-0.125619,-0.928610,0.488953 +0.530605,0.122570,-0.719172,-0.124350,-0.922020,0.484821 +0.521880,0.125718,-0.728439,-0.123081,-0.915431,0.480689 +0.513054,0.128865,-0.737923,-0.121812,-0.908841,0.476556 +0.504135,0.132013,-0.747623,-0.120543,-0.902251,0.472424 +0.495135,0.135161,-0.757540,-0.119274,-0.895661,0.468291 +0.486066,0.138308,-0.767673,-0.118005,-0.889072,0.464159 +0.476936,0.141456,-0.778022,-0.116736,-0.882482,0.460027 +0.467759,0.144604,-0.788588,-0.115467,-0.875892,0.455894 +0.458544,0.147751,-0.799370,-0.114198,-0.869302,0.451762 +0.449302,0.150899,-0.810364,-0.112929,-0.862712,0.447629 +0.440043,0.154046,-0.821560,-0.111660,-0.856123,0.443497 +0.430780,0.157194,-0.832947,-0.110391,-0.849533,0.439365 +0.421516,0.160342,-0.844515,-0.109122,-0.842943,0.435232 +0.412252,0.163489,-0.856252,-0.107853,-0.836353,0.431100 +0.402988,0.166637,-0.868148,-0.106584,-0.829764,0.426967 +0.393724,0.169785,-0.880191,-0.105315,-0.823174,0.422835 +0.384461,0.172932,-0.892372,-0.104045,-0.816584,0.418703 +0.375197,0.176080,-0.904679,-0.102776,-0.809994,0.414570 +0.365933,0.179228,-0.917101,-0.101507,-0.803405,0.410438 +0.356669,0.182375,-0.929628,-0.100238,-0.796815,0.406305 +0.347405,0.185523,-0.942248,-0.098969,-0.790225,0.402173 +0.338141,0.188670,-0.954952,-0.097700,-0.783635,0.398041 +0.328878,0.191818,-0.967727,-0.096431,-0.777046,0.393908 +0.319614,0.194966,-0.980564,-0.095162,-0.770456,0.389776 +0.310350,0.198113,-0.993452,-0.093893,-0.763866,0.385644 +0.301086,0.201261,-1.006380,-0.092624,-0.757276,0.381511 +0.291822,0.204409,-1.019330,-0.091355,-0.750687,0.377379 +0.282558,0.207556,-1.032310,-0.090086,-0.744097,0.373246 +0.273295,0.210704,-1.045290,-0.088817,-0.737507,0.369114 +0.264031,0.213852,-1.058270,-0.087548,-0.730917,0.364982 +0.254767,0.216999,-1.071250,-0.086279,-0.724328,0.360849 +0.245503,0.220147,-1.084240,-0.085010,-0.717738,0.356717 +0.236239,0.223294,-1.097220,-0.083740,-0.711148,0.352584 +0.226975,0.226442,-1.110200,-0.082471,-0.704558,0.348452 +0.217712,0.229590,-1.123170,-0.081202,-0.697969,0.344320 +0.208448,0.232737,-1.136110,-0.079933,-0.691379,0.340187 +0.199184,0.235885,-1.149030,-0.078664,-0.684789,0.336055 +0.189920,0.239033,-1.161900,-0.077395,-0.678199,0.331922 +0.180656,0.242180,-1.174720,-0.076126,-0.671610,0.327790 +0.171392,0.245328,-1.187470,-0.074857,-0.665020,0.323658 +0.162129,0.248476,-1.200150,-0.073588,-0.658430,0.319525 +0.152865,0.251623,-1.212740,-0.072319,-0.651840,0.315393 +0.143601,0.254771,-1.225230,-0.071050,-0.645251,0.311260 +0.134337,0.257918,-1.237620,-0.069781,-0.638661,0.307128 +0.125073,0.261066,-1.249880,-0.068512,-0.632071,0.302996 +0.115809,0.264214,-1.262020,-0.067243,-0.625481,0.298863 +0.106546,0.267361,-1.274010,-0.065974,-0.618892,0.294731 +0.097282,0.270509,-1.285860,-0.064705,-0.612302,0.290598 +0.088018,0.273657,-1.297540,-0.063436,-0.605712,0.286466 +0.078754,0.276804,-1.309050,-0.062167,-0.599122,0.282334 +0.069490,0.279952,-1.320370,-0.060897,-0.592533,0.278201 +0.060227,0.283100,-1.331500,-0.059628,-0.585943,0.274069 +0.050970,0.286247,-1.342430,-0.058359,-0.579353,0.269937 +0.041731,0.289395,-1.353140,-0.057090,-0.572763,0.265804 +0.032521,0.292542,-1.363630,-0.055821,-0.566174,0.261672 +0.023349,0.295690,-1.373910,-0.054552,-0.559584,0.257539 +0.014228,0.298838,-1.383970,-0.053283,-0.552994,0.253407 +0.005167,0.301985,-1.393810,-0.052014,-0.546404,0.249275 +-0.003822,0.305133,-1.403440,-0.050745,-0.539815,0.245142 +-0.012729,0.308281,-1.412850,-0.049476,-0.533225,0.241010 +-0.021542,0.311428,-1.422050,-0.048207,-0.526635,0.236877 +-0.030252,0.314576,-1.431030,-0.046938,-0.520045,0.232745 +-0.038846,0.317724,-1.439790,-0.045669,-0.513456,0.228613 +-0.047315,0.320871,-1.448330,-0.044400,-0.506866,0.224482 +-0.055647,0.324019,-1.456660,-0.043131,-0.500276,0.220364 +-0.063831,0.327166,-1.464780,-0.041862,-0.493686,0.216271 +-0.071858,0.330314,-1.472680,-0.040592,-0.487097,0.212217 +-0.079716,0.333462,-1.480360,-0.039323,-0.480507,0.208214 +-0.087393,0.336609,-1.487820,-0.038054,-0.473917,0.204276 +-0.094881,0.339757,-1.495070,-0.036785,-0.467327,0.200414 +-0.102166,0.342905,-1.502100,-0.035516,-0.460738,0.196643 +-0.109240,0.346052,-1.508910,-0.034247,-0.454148,0.192975 +-0.116098,0.349200,-1.515510,-0.032978,-0.447558,0.189423 +-0.122739,0.352348,-1.521900,-0.031709,-0.440968,0.186000 +-0.129164,0.355495,-1.528060,-0.030440,-0.434379,0.182720 +-0.135372,0.358643,-1.534010,-0.029171,-0.427789,0.179594 +-0.141365,0.361790,-1.539750,-0.027902,-0.421199,0.176636 +-0.147140,0.364938,-1.545260,-0.026633,-0.414609,0.173859 +-0.152700,0.368086,-1.550560,-0.025364,-0.408020,0.171277 +-0.158043,0.371233,-1.555650,-0.024095,-0.401430,0.168900 +-0.163170,0.374381,-1.560520,-0.022826,-0.394840,0.166744 +-0.168080,0.377529,-1.565170,-0.021557,-0.388250,0.164821 +-0.172774,0.380676,-1.569600,-0.020288,-0.381661,0.163143 +-0.177251,0.383824,-1.573820,-0.019018,-0.375071,0.161722 +-0.181513,0.386972,-1.577820,-0.017749,-0.368481,0.160560 +-0.185558,0.390119,-1.581610,-0.016480,-0.361891,0.159658 +-0.189386,0.393267,-1.585180,-0.015211,-0.355302,0.159014 +-0.192998,0.396414,-1.588530,-0.013942,-0.348712,0.158630 +-0.196394,0.399562,-1.591670,-0.012673,-0.342122,0.158505 +-0.199573,0.402710,-1.594590,-0.011404,-0.335532,0.158640 +-0.202537,0.405857,-1.597300,-0.010135,-0.328943,0.159033 +-0.205283,0.409005,-1.599780,-0.008861,-0.322353,0.159686 +-0.207814,0.412153,-1.602060,-0.007571,-0.315763,0.160598 +-0.210128,0.415301,-1.604110,-0.006251,-0.309173,0.161769 +-0.212225,0.418458,-1.605950,-0.004888,-0.302584,0.163199 +-0.214106,0.421635,-1.607570,-0.003470,-0.295994,0.164889 +-0.215771,0.424842,-1.608980,-0.001983,-0.289404,0.166837 +-0.217220,0.428090,-1.610170,-0.000414,-0.282814,0.169044 +-0.218452,0.431390,-1.611140,0.001249,-0.276225,0.171499 +-0.219468,0.434753,-1.611900,0.003020,-0.269635,0.174189 +-0.220267,0.438189,-1.612440,0.004911,-0.263045,0.177101 +-0.220850,0.441709,-1.612760,0.006935,-0.256455,0.180222 +-0.221217,0.445325,-1.612870,0.009106,-0.249867,0.183540 +-0.221367,0.449047,-1.612780,0.011436,-0.243289,0.187041 +-0.221301,0.452885,-1.612480,0.013938,-0.236736,0.190712 +-0.221019,0.456849,-1.612000,0.016622,-0.230219,0.194541 +-0.220520,0.460931,-1.611350,0.019479,-0.223753,0.198514 +-0.219805,0.465122,-1.610530,0.022497,-0.217349,0.202619 +-0.218874,0.469410,-1.609560,0.025662,-0.211021,0.206842 +-0.217726,0.473784,-1.608450,0.028963,-0.204782,0.211171 +-0.216362,0.478234,-1.607210,0.032384,-0.198644,0.215593 +-0.214781,0.482749,-1.605850,0.035915,-0.192621,0.220094 +-0.212984,0.487318,-1.604380,0.039541,-0.186726,0.224662 +-0.210971,0.491930,-1.602810,0.043250,-0.180972,0.229283 +-0.208741,0.496574,-1.601150,0.047029,-0.175371,0.233946 +-0.206297,0.501240,-1.599410,0.050865,-0.169936,0.238636 +-0.203648,0.505917,-1.597610,0.054745,-0.164677,0.243341 +-0.200805,0.510594,-1.595750,0.058656,-0.159586,0.248048 +-0.197778,0.515259,-1.593850,0.062584,-0.154650,0.252744 +-0.194579,0.519903,-1.591920,0.066518,-0.149856,0.257416 +-0.191218,0.524515,-1.589960,0.070444,-0.145191,0.262050 +-0.187706,0.529083,-1.587990,0.074349,-0.140641,0.266635 +-0.184053,0.533597,-1.586020,0.078220,-0.136195,0.271157 +-0.180272,0.538046,-1.584050,0.082044,-0.131838,0.275603 +-0.176371,0.542419,-1.582110,0.085809,-0.127559,0.279961 +-0.172364,0.546706,-1.580200,0.089501,-0.123343,0.284216 +-0.168259,0.550895,-1.578330,0.093107,-0.119179,0.288357 +-0.164068,0.554976,-1.576520,0.096615,-0.115053,0.292370 +-0.159802,0.558937,-1.574770,0.100010,-0.110953,0.296242 +-0.155471,0.562769,-1.573090,0.103282,-0.106864,0.299961 +-0.151087,0.566460,-1.571500,0.106416,-0.102775,0.303513 +-0.146660,0.570000,-1.570000,0.109399,-0.098672,0.306886 +-0.142198,0.573380,-1.568609,0.112222,-0.094544,0.310069 +-0.137704,0.576593,-1.567325,0.114876,-0.090395,0.313054 +-0.133178,0.579635,-1.566151,0.117356,-0.086231,0.315836 +-0.128621,0.582504,-1.565085,0.119660,-0.082058,0.318411 +-0.124034,0.585195,-1.564129,0.121782,-0.077881,0.320776 +-0.119416,0.587706,-1.563282,0.123718,-0.073708,0.322927 +-0.114769,0.590035,-1.562544,0.125467,-0.069543,0.324861 +-0.110092,0.592178,-1.561913,0.127024,-0.065393,0.326577 +-0.105387,0.594135,-1.561391,0.128387,-0.061264,0.328071 +-0.100654,0.595904,-1.560974,0.129555,-0.057163,0.329343 +-0.095892,0.597484,-1.560662,0.130525,-0.053094,0.330391 +-0.091104,0.598874,-1.560453,0.131295,-0.049066,0.331216 +-0.086290,0.600073,-1.560345,0.131866,-0.045083,0.331817 +-0.081450,0.601082,-1.560336,0.132235,-0.041151,0.332195 +-0.076585,0.601900,-1.560423,0.132403,-0.037277,0.332351 +-0.071695,0.602529,-1.560605,0.132370,-0.033467,0.332286 +-0.066783,0.602969,-1.560879,0.132136,-0.029727,0.332003 +-0.061848,0.603221,-1.561241,0.131703,-0.026062,0.331502 +-0.056891,0.603288,-1.561689,0.131071,-0.022478,0.330787 +-0.051913,0.603170,-1.562220,0.130241,-0.018980,0.329862 +-0.046915,0.602869,-1.562829,0.129217,-0.015575,0.328729 +-0.041899,0.602390,-1.563515,0.127999,-0.012268,0.327392 +-0.036864,0.601733,-1.564272,0.126591,-0.009063,0.325856 +-0.031812,0.600902,-1.565098,0.124996,-0.005967,0.324124 +-0.026744,0.599901,-1.565989,0.123216,-0.002983,0.322203 +-0.021662,0.598733,-1.566941,0.121256,-0.000118,0.320096 +-0.016565,0.597401,-1.567950,0.119119,0.002626,0.317809 +-0.011456,0.595910,-1.569013,0.116809,0.005242,0.315349 +-0.006335,0.594265,-1.570125,0.114331,0.007728,0.312720 +-0.001203,0.592468,-1.571282,0.111689,0.010079,0.309929 +0.003938,0.590526,-1.572481,0.108888,0.012290,0.306982 +0.009087,0.588442,-1.573718,0.105934,0.014360,0.303885 +0.014243,0.586222,-1.574988,0.102832,0.016283,0.300646 +0.019404,0.583872,-1.576288,0.099588,0.018058,0.297270 +0.024571,0.581396,-1.577615,0.096206,0.019680,0.293765 +0.029740,0.578801,-1.578963,0.092694,0.021149,0.290138 +0.034912,0.576091,-1.580331,0.089057,0.022460,0.286394 +0.040084,0.573272,-1.581714,0.085302,0.023612,0.282543 +0.045255,0.570351,-1.583108,0.081435,0.024604,0.278589 +0.050425,0.567333,-1.584511,0.077462,0.025433,0.274541 +0.055592,0.564225,-1.585919,0.073389,0.026099,0.270406 +0.060754,0.561032,-1.587329,0.069225,0.026599,0.266189 +0.065910,0.557761,-1.588739,0.064975,0.026934,0.261898 +0.071059,0.554417,-1.590144,0.060645,0.027103,0.257540 +0.076199,0.551008,-1.591544,0.056244,0.027106,0.253121 +0.081330,0.547539,-1.592934,0.051777,0.026942,0.248648 +0.086449,0.544017,-1.594314,0.047251,0.026613,0.244127 +0.091556,0.540447,-1.595680,0.042673,0.026118,0.239564 +0.096649,0.536837,-1.597031,0.038050,0.025459,0.234965 +0.101726,0.533192,-1.598366,0.033388,0.024637,0.230335 +0.106787,0.529519,-1.599682,0.028694,0.023652,0.225681 +0.111829,0.525824,-1.600978,0.023973,0.022508,0.221007 +0.116852,0.522113,-1.602253,0.019234,0.021206,0.216318 +0.121855,0.518391,-1.603506,0.014480,0.019748,0.211619 +0.126835,0.514665,-1.604736,0.009720,0.018136,0.206915 +0.131791,0.510941,-1.605943,0.004958,0.016374,0.202210 +0.136722,0.507224,-1.607126,0.000200,0.014465,0.197507 +0.141627,0.503520,-1.608285,-0.004547,0.012411,0.192811 +0.146504,0.499835,-1.609420,-0.009280,0.010216,0.188123 +0.151352,0.496174,-1.610532,-0.013992,0.007884,0.183448 +0.156169,0.492543,-1.611620,-0.018679,0.005418,0.178788 +0.160955,0.488946,-1.612685,-0.023335,0.002824,0.174145 +0.165706,0.485388,-1.613727,-0.027958,0.000104,0.169521 +0.170423,0.481875,-1.614749,-0.032541,-0.002735,0.164918 +0.175104,0.478411,-1.615750,-0.037081,-0.005691,0.160336 +0.179747,0.475001,-1.616732,-0.041575,-0.008757,0.155778 +0.184350,0.471649,-1.617696,-0.046018,-0.011929,0.151243 +0.188913,0.468359,-1.618644,-0.050408,-0.015201,0.146732 +0.193435,0.465136,-1.619577,-0.054742,-0.018569,0.142245 +0.197912,0.461983,-1.620497,-0.059016,-0.022027,0.137782 +0.202345,0.458905,-1.621406,-0.063229,-0.025568,0.133341 +0.206731,0.455905,-1.622306,-0.067378,-0.029189,0.128923 +0.211069,0.452985,-1.623198,-0.071461,-0.032882,0.124525 +0.215358,0.450151,-1.624085,-0.075477,-0.036643,0.120147 +0.219596,0.447403,-1.624969,-0.079423,-0.040464,0.115786 +0.223781,0.444747,-1.625852,-0.083300,-0.044341,0.111441 +0.227913,0.442183,-1.626736,-0.087106,-0.048267,0.107110 +0.231989,0.439715,-1.627624,-0.090841,-0.052236,0.102789 +0.236008,0.437346,-1.628517,-0.094503,-0.056242,0.098477 +0.239968,0.435076,-1.629419,-0.098094,-0.060280,0.094171 +0.243868,0.432909,-1.630330,-0.101613,-0.064343,0.089867 +0.247707,0.430846,-1.631254,-0.105061,-0.068424,0.085562 +0.251482,0.428889,-1.632193,-0.108438,-0.072519,0.081253 +0.255191,0.427040,-1.633148,-0.111744,-0.076621,0.076937 +0.258835,0.425299,-1.634122,-0.114982,-0.080724,0.072611 +0.262409,0.423669,-1.635117,-0.118153,-0.084823,0.068269 +0.265914,0.422149,-1.636134,-0.121257,-0.088912,0.063910 +0.269347,0.420742,-1.637176,-0.124296,-0.092984,0.059529 +0.272706,0.419447,-1.638244,-0.127273,-0.097036,0.055122 +0.275991,0.418266,-1.639339,-0.130188,-0.101060,0.050686 +0.279198,0.417199,-1.640462,-0.133045,-0.105053,0.046218 +0.282327,0.416247,-1.641616,-0.135845,-0.109008,0.041712 +0.285375,0.415409,-1.642802,-0.138590,-0.112921,0.037167 +0.288341,0.414685,-1.644019,-0.141284,-0.116787,0.032577 +0.291223,0.414077,-1.645269,-0.143929,-0.120601,0.027941 +0.294019,0.413583,-1.646552,-0.146526,-0.124359,0.023255 +0.296727,0.413204,-1.647870,-0.149080,-0.128056,0.018514 +0.299346,0.412939,-1.649221,-0.151592,-0.131689,0.013718 +0.301873,0.412787,-1.650606,-0.154066,-0.135252,0.008862 +0.304308,0.412749,-1.652024,-0.156503,-0.138744,0.003945 +0.306647,0.412824,-1.653475,-0.158908,-0.142159,-0.001037 +0.308889,0.413011,-1.654959,-0.161283,-0.145495,-0.006085 +0.311033,0.413309,-1.656474,-0.163630,-0.148748,-0.011202 +0.313076,0.413717,-1.658020,-0.165953,-0.151917,-0.016388 +0.315016,0.414235,-1.659594,-0.168254,-0.154997,-0.021645 +0.316853,0.414862,-1.661195,-0.170535,-0.157986,-0.026975 +0.318583,0.415596,-1.662822,-0.172800,-0.160883,-0.032377 +0.320204,0.416437,-1.664472,-0.175050,-0.163685,-0.037853 +0.321716,0.417384,-1.666143,-0.177289,-0.166391,-0.043403 +0.323117,0.418434,-1.667832,-0.179518,-0.168999,-0.049025 +0.324404,0.419588,-1.669536,-0.181740,-0.171508,-0.054721 +0.325576,0.420844,-1.671253,-0.183957,-0.173916,-0.060488 +0.326630,0.422200,-1.672979,-0.186170,-0.176223,-0.066325 +0.327566,0.423656,-1.674711,-0.188381,-0.178429,-0.072231 +0.328382,0.425209,-1.676445,-0.190593,-0.180533,-0.078203 +0.329076,0.426859,-1.678177,-0.192806,-0.182535,-0.084240 +0.329645,0.428604,-1.679903,-0.195021,-0.184435,-0.090338 +0.330090,0.430443,-1.681619,-0.197241,-0.186233,-0.096494 +0.330408,0.432374,-1.683321,-0.199465,-0.187930,-0.102705 +0.330598,0.434396,-1.685004,-0.201694,-0.189526,-0.108967 +0.330658,0.436507,-1.686662,-0.203929,-0.191024,-0.115275 +0.330587,0.438706,-1.688293,-0.206170,-0.192423,-0.121624 +0.330383,0.440992,-1.689889,-0.208417,-0.193725,-0.128010 +0.330046,0.443362,-1.691447,-0.210670,-0.194931,-0.134428 +0.329574,0.445815,-1.692961,-0.212929,-0.196045,-0.140871 +0.328966,0.448350,-1.694425,-0.215193,-0.197066,-0.147334 +0.328222,0.450965,-1.695835,-0.217462,-0.197998,-0.153809 +0.327339,0.453658,-1.697184,-0.219734,-0.198842,-0.160292 +0.326318,0.456428,-1.698469,-0.222008,-0.199601,-0.166773 +0.325157,0.459273,-1.699682,-0.224283,-0.200277,-0.173247 +0.323856,0.462192,-1.700818,-0.226557,-0.200873,-0.179706 +0.322414,0.465182,-1.701872,-0.228828,-0.201392,-0.186142 +0.320831,0.468243,-1.702839,-0.231094,-0.201837,-0.192547 +0.319106,0.471372,-1.703713,-0.233354,-0.202210,-0.198912 +0.317239,0.474567,-1.704488,-0.235604,-0.202514,-0.205230 +0.315230,0.477828,-1.705160,-0.237843,-0.202753,-0.211491 +0.313079,0.481151,-1.705722,-0.240067,-0.202929,-0.217688 +0.310786,0.484536,-1.706171,-0.242273,-0.203047,-0.223811 +0.308352,0.487980,-1.706501,-0.244459,-0.203108,-0.229851 +0.305775,0.491481,-1.706707,-0.246620,-0.203118,-0.235800 +0.303058,0.495038,-1.706784,-0.248755,-0.203077,-0.241647 +0.300200,0.498649,-1.706728,-0.250859,-0.202991,-0.247385 +0.297203,0.502311,-1.706535,-0.252928,-0.202863,-0.253003 +0.294067,0.506023,-1.706201,-0.254959,-0.202695,-0.258493 +0.290792,0.509782,-1.705722,-0.256949,-0.202491,-0.263846 +0.287382,0.513587,-1.705093,-0.258892,-0.202255,-0.269052 +0.283835,0.517435,-1.704313,-0.260786,-0.201989,-0.274104 +0.280155,0.521324,-1.703377,-0.262627,-0.201697,-0.278991 +0.276342,0.525252,-1.702284,-0.264409,-0.201381,-0.283705 +0.272398,0.529216,-1.701029,-0.266130,-0.201046,-0.288238 +0.268326,0.533214,-1.699613,-0.267785,-0.200693,-0.292582 +0.264126,0.537244,-1.698031,-0.269369,-0.200326,-0.296727 +0.259802,0.541303,-1.696284,-0.270880,-0.199948,-0.300668 +0.255356,0.545389,-1.694369,-0.272313,-0.199560,-0.304395 +0.250789,0.549499,-1.692286,-0.273664,-0.199167,-0.307902 +0.246106,0.553630,-1.690035,-0.274928,-0.198769,-0.311181 +0.241307,0.557780,-1.687616,-0.276103,-0.198370,-0.314226 +0.236397,0.561945,-1.685028,-0.277185,-0.197972,-0.317031 +0.231379,0.566124,-1.682273,-0.278169,-0.197576,-0.319590 +0.226255,0.570313,-1.679351,-0.279053,-0.197185,-0.321897 +0.221029,0.574509,-1.676265,-0.279832,-0.196800,-0.323947 +0.215704,0.578710,-1.673015,-0.280504,-0.196423,-0.325736 +0.210284,0.582912,-1.669605,-0.281066,-0.196055,-0.327259 +0.204773,0.587112,-1.666036,-0.281515,-0.195698,-0.328513 +0.199174,0.591306,-1.662313,-0.281847,-0.195353,-0.329493 +0.193493,0.595493,-1.658439,-0.282062,-0.195019,-0.330199 +0.187731,0.599668,-1.654417,-0.282155,-0.194699,-0.330626 +0.181895,0.603828,-1.650251,-0.282125,-0.194393,-0.330774 +0.175988,0.607969,-1.645947,-0.281971,-0.194101,-0.330641 +0.170015,0.612089,-1.641510,-0.281691,-0.193823,-0.330227 +0.163980,0.616184,-1.636945,-0.281283,-0.193560,-0.329532 +0.157888,0.620251,-1.632258,-0.280747,-0.193311,-0.328556 +0.151744,0.624285,-1.627454,-0.280080,-0.193075,-0.327299 +0.145552,0.628283,-1.622542,-0.279284,-0.192853,-0.325764 +0.139318,0.632243,-1.617526,-0.278358,-0.192644,-0.323953 +0.133047,0.636159,-1.612416,-0.277302,-0.192446,-0.321868 +0.126743,0.640029,-1.607218,-0.276116,-0.192259,-0.319512 +0.120412,0.643849,-1.601939,-0.274800,-0.192082,-0.316890 +0.114058,0.647615,-1.596589,-0.273357,-0.191913,-0.314005 +0.107688,0.651324,-1.591176,-0.271786,-0.191751,-0.310863 +0.101307,0.654972,-1.585708,-0.270090,-0.191594,-0.307469 +0.094919,0.658556,-1.580194,-0.268271,-0.191440,-0.303829 +0.088530,0.662071,-1.574643,-0.266330,-0.191287,-0.299949 +0.082146,0.665515,-1.569065,-0.264270,-0.191134,-0.295837 +0.075772,0.668884,-1.563470,-0.262095,-0.190978,-0.291499 +0.069412,0.672174,-1.557866,-0.259806,-0.190816,-0.286945 +0.063074,0.675381,-1.552264,-0.257408,-0.190647,-0.282181 +0.056761,0.678504,-1.546673,-0.254904,-0.190468,-0.277218 +0.050480,0.681537,-1.541104,-0.252298,-0.190276,-0.272064 +0.044235,0.684479,-1.535567,-0.249595,-0.190068,-0.266729 +0.038032,0.687325,-1.530072,-0.246798,-0.189842,-0.261223 +0.031876,0.690073,-1.524629,-0.243913,-0.189594,-0.255556 +0.025772,0.692719,-1.519249,-0.240945,-0.189323,-0.249740 +0.019726,0.695261,-1.513941,-0.237899,-0.189024,-0.243786 +0.013742,0.697696,-1.508716,-0.234781,-0.188695,-0.237704 +0.007825,0.700021,-1.503584,-0.231596,-0.188333,-0.231507 +0.001980,0.702234,-1.498555,-0.228351,-0.187935,-0.225206 +-0.003788,0.704332,-1.493639,-0.225051,-0.187498,-0.218813 +-0.009475,0.706313,-1.488846,-0.221703,-0.187018,-0.212341 +-0.015075,0.708174,-1.484185,-0.218313,-0.186492,-0.205803 +-0.020585,0.709913,-1.479666,-0.214889,-0.185918,-0.199210 +-0.026001,0.711530,-1.475298,-0.211436,-0.185292,-0.192575 +-0.031318,0.713021,-1.471089,-0.207963,-0.184612,-0.185912 +-0.036532,0.714386,-1.467050,-0.204475,-0.183874,-0.179232 +-0.041639,0.715622,-1.463188,-0.200981,-0.183075,-0.172548 +-0.046636,0.716729,-1.459512,-0.197487,-0.182214,-0.165874 +-0.051520,0.717706,-1.456029,-0.194001,-0.181286,-0.159222 +-0.056286,0.718551,-1.452747,-0.190531,-0.180289,-0.152604 +-0.060932,0.719265,-1.449673,-0.187082,-0.179222,-0.146033 +-0.065454,0.719846,-1.446815,-0.183664,-0.178080,-0.139521 +-0.069851,0.720294,-1.444178,-0.180283,-0.176862,-0.133080 +-0.074119,0.720610,-1.441769,-0.176946,-0.175566,-0.126723 +-0.078256,0.720792,-1.439593,-0.173661,-0.174190,-0.120460 +-0.082260,0.720843,-1.437655,-0.170436,-0.172731,-0.114303 +-0.086128,0.720761,-1.435961,-0.167276,-0.171187,-0.108263 +-0.089860,0.720548,-1.434515,-0.164190,-0.169558,-0.102351 +-0.093453,0.720205,-1.433320,-0.161184,-0.167841,-0.096578 +-0.096906,0.719733,-1.432379,-0.158264,-0.166035,-0.090952 +-0.100219,0.719134,-1.431697,-0.155439,-0.164139,-0.085485 +-0.103389,0.718408,-1.431274,-0.152713,-0.162152,-0.080184 +-0.106417,0.717558,-1.431113,-0.150093,-0.160073,-0.075059 +-0.109302,0.716585,-1.431214,-0.147585,-0.157901,-0.070118 +-0.112045,0.715492,-1.431580,-0.145195,-0.155635,-0.065369 +-0.114644,0.714282,-1.432210,-0.142929,-0.153277,-0.060818 +-0.117100,0.712956,-1.433103,-0.140792,-0.150825,-0.056473 +-0.119414,0.711518,-1.434260,-0.138788,-0.148279,-0.052340 +-0.121586,0.709971,-1.435678,-0.136922,-0.145640,-0.048424 +-0.123617,0.708318,-1.437356,-0.135200,-0.142908,-0.044731 +-0.125510,0.706562,-1.439291,-0.133624,-0.140084,-0.041263 +-0.127264,0.704707,-1.441480,-0.132200,-0.137169,-0.038027 +-0.128881,0.702756,-1.443921,-0.130929,-0.134163,-0.035024 +-0.130364,0.700714,-1.446608,-0.129817,-0.131069,-0.032257 +-0.131714,0.698585,-1.449537,-0.128864,-0.127887,-0.029728 +-0.132935,0.696372,-1.452704,-0.128073,-0.124620,-0.027439 +-0.134027,0.694080,-1.456103,-0.127448,-0.121269,-0.025390 +-0.134994,0.691714,-1.459728,-0.126988,-0.117835,-0.023581 +-0.135839,0.689278,-1.463573,-0.126696,-0.114323,-0.022011 +-0.136564,0.686778,-1.467630,-0.126572,-0.110733,-0.020680 +-0.137174,0.684217,-1.471893,-0.126617,-0.107068,-0.019585 +-0.137671,0.681601,-1.476354,-0.126831,-0.103332,-0.018724 +-0.138059,0.678935,-1.481004,-0.127213,-0.099526,-0.018094 +-0.138343,0.676225,-1.485835,-0.127763,-0.095655,-0.017691 +-0.138525,0.673474,-1.490838,-0.128480,-0.091722,-0.017510 +-0.138610,0.670689,-1.496004,-0.129363,-0.087729,-0.017548 +-0.138602,0.667875,-1.501324,-0.130408,-0.083681,-0.017798 +-0.138506,0.665037,-1.506787,-0.131615,-0.079581,-0.018255 +-0.138326,0.662181,-1.512383,-0.132981,-0.075433,-0.018911 +-0.138067,0.659312,-1.518102,-0.134501,-0.071241,-0.019760 +-0.137734,0.656436,-1.523934,-0.136174,-0.067010,-0.020795 +-0.137330,0.653557,-1.529867,-0.137995,-0.062743,-0.022006 +-0.136863,0.650681,-1.535890,-0.139959,-0.058444,-0.023386 +-0.136336,0.647814,-1.541992,-0.142064,-0.054119,-0.024926 +-0.135754,0.644960,-1.548162,-0.144303,-0.049771,-0.026616 +-0.135123,0.642126,-1.554388,-0.146672,-0.045405,-0.028446 +-0.134448,0.639315,-1.560659,-0.149165,-0.041026,-0.030407 +-0.133735,0.636534,-1.566963,-0.151776,-0.036638,-0.032487 +-0.132988,0.633787,-1.573288,-0.154500,-0.032247,-0.034677 +-0.132213,0.631079,-1.579623,-0.157329,-0.027856,-0.036964 +-0.131416,0.628414,-1.585956,-0.160258,-0.023472,-0.039338 +-0.130602,0.625798,-1.592275,-0.163280,-0.019098,-0.041788 +-0.129776,0.623234,-1.598569,-0.166387,-0.014739,-0.044300 +-0.128943,0.620727,-1.604827,-0.169573,-0.010401,-0.046865 +-0.128110,0.618281,-1.611037,-0.172829,-0.006088,-0.049469 +-0.127281,0.615901,-1.617187,-0.176148,-0.001804,-0.052100 +-0.126462,0.613589,-1.623268,-0.179523,0.002444,-0.054747 +-0.125657,0.611349,-1.629268,-0.182946,0.006653,-0.057398 +-0.124873,0.609185,-1.635176,-0.186408,0.010818,-0.060039 +-0.124114,0.607099,-1.640983,-0.189901,0.014934,-0.062659 +-0.123385,0.605096,-1.646677,-0.193418,0.018997,-0.065247 +-0.122691,0.603176,-1.652251,-0.196949,0.023002,-0.067789 +-0.122037,0.601344,-1.657693,-0.200487,0.026944,-0.070275 +-0.121428,0.599600,-1.662995,-0.204023,0.030820,-0.072692 +-0.120869,0.597947,-1.668148,-0.207550,0.034625,-0.075030 +-0.120363,0.596386,-1.673144,-0.211058,0.038354,-0.077276 +-0.119916,0.594920,-1.677975,-0.214540,0.042005,-0.079421 +-0.119531,0.593548,-1.682633,-0.217987,0.045572,-0.081454 +-0.119212,0.592272,-1.687111,-0.221392,0.049053,-0.083363 +-0.118965,0.591093,-1.691402,-0.224746,0.052443,-0.085140 +-0.118791,0.590010,-1.695501,-0.228041,0.055739,-0.086775 +-0.118695,0.589024,-1.699401,-0.231271,0.058937,-0.088258 +-0.118681,0.588135,-1.703097,-0.234426,0.062035,-0.089581 +-0.118751,0.587341,-1.706584,-0.237501,0.065029,-0.090735 +-0.118909,0.586643,-1.709858,-0.240488,0.067916,-0.091713 +-0.119157,0.586038,-1.712916,-0.243379,0.070693,-0.092507 +-0.119499,0.585525,-1.715753,-0.246170,0.073359,-0.093111 +-0.119936,0.585104,-1.718367,-0.248851,0.075910,-0.093518 +-0.120471,0.584771,-1.720757,-0.251419,0.078344,-0.093722 +-0.121106,0.584525,-1.722919,-0.253867,0.080659,-0.093719 +-0.121843,0.584363,-1.724854,-0.256189,0.082854,-0.093503 +-0.122684,0.584282,-1.726560,-0.258380,0.084926,-0.093071 +-0.123629,0.584279,-1.728038,-0.260435,0.086873,-0.092419 +-0.124681,0.584352,-1.729287,-0.262350,0.088695,-0.091545 +-0.125840,0.584495,-1.730309,-0.264120,0.090391,-0.090445 +-0.127107,0.584707,-1.731105,-0.265742,0.091958,-0.089120 +-0.128482,0.584982,-1.731678,-0.267212,0.093397,-0.087567 +-0.129967,0.585316,-1.732028,-0.268526,0.094707,-0.085786 +-0.131560,0.585706,-1.732161,-0.269683,0.095886,-0.083778 +-0.133263,0.586145,-1.732079,-0.270679,0.096936,-0.081544 +-0.135074,0.586630,-1.731785,-0.271513,0.097855,-0.079085 +-0.136993,0.587156,-1.731285,-0.272182,0.098644,-0.076404 +-0.139020,0.587717,-1.730584,-0.272687,0.099302,-0.073503 +-0.141154,0.588308,-1.729685,-0.273026,0.099831,-0.070385 +-0.143392,0.588924,-1.728597,-0.273198,0.100231,-0.067056 +-0.145735,0.589559,-1.727323,-0.273204,0.100502,-0.063518 +-0.148181,0.590206,-1.725871,-0.273044,0.100645,-0.059778 +-0.150727,0.590862,-1.724248,-0.272719,0.100661,-0.055841 +-0.153372,0.591519,-1.722461,-0.272230,0.100551,-0.051714 +-0.156114,0.592171,-1.720517,-0.271578,0.100317,-0.047403 +-0.158950,0.592813,-1.718425,-0.270766,0.099959,-0.042915 +-0.161879,0.593439,-1.716192,-0.269796,0.099480,-0.038259 +-0.164897,0.594042,-1.713827,-0.268671,0.098880,-0.033443 +-0.168001,0.594617,-1.711338,-0.267393,0.098162,-0.028475 +-0.171189,0.595156,-1.708734,-0.265966,0.097328,-0.023364 +-0.174458,0.595655,-1.706025,-0.264394,0.096379,-0.018121 +-0.177804,0.596107,-1.703219,-0.262681,0.095317,-0.012755 +-0.181224,0.596506,-1.700326,-0.260831,0.094145,-0.007275 +-0.184714,0.596847,-1.697355,-0.258849,0.092864,-0.001694 +-0.188271,0.597123,-1.694316,-0.256739,0.091478,0.003979 +-0.191892,0.597328,-1.691218,-0.254508,0.089988,0.009732 +-0.195571,0.597458,-1.688072,-0.252160,0.088397,0.015554 +-0.199305,0.597506,-1.684886,-0.249702,0.086707,0.021433 +-0.203091,0.597468,-1.681671,-0.247138,0.084921,0.027358 +-0.206924,0.597337,-1.678436,-0.244477,0.083042,0.033318 +-0.210800,0.597110,-1.675191,-0.241723,0.081071,0.039299 +-0.214714,0.596781,-1.671946,-0.238883,0.079013,0.045290 +-0.218662,0.596346,-1.668708,-0.235964,0.076869,0.051279 +-0.222641,0.595801,-1.665489,-0.232973,0.074642,0.057254 +-0.226645,0.595140,-1.662297,-0.229916,0.072335,0.063203 +-0.230669,0.594361,-1.659141,-0.226802,0.069950,0.069114 +-0.234711,0.593459,-1.656031,-0.223636,0.067491,0.074975 +-0.238764,0.592431,-1.652973,-0.220425,0.064960,0.080775 +-0.242825,0.591275,-1.649977,-0.217178,0.062361,0.086502 +-0.246889,0.589987,-1.647051,-0.213901,0.059694,0.092144 +-0.250951,0.588564,-1.644203,-0.210602,0.056965,0.097691 +-0.255008,0.587005,-1.641440,-0.207287,0.054174,0.103131 +-0.259054,0.585308,-1.638769,-0.203963,0.051325,0.108454 +-0.263085,0.583470,-1.636197,-0.200638,0.048420,0.113650 +-0.267097,0.581491,-1.633731,-0.197319,0.045463,0.118709 +-0.271085,0.579371,-1.631376,-0.194012,0.042455,0.123620 +-0.275046,0.577107,-1.629139,-0.190724,0.039399,0.128375 +-0.278974,0.574700,-1.627025,-0.187462,0.036298,0.132966 +-0.282867,0.572150,-1.625039,-0.184232,0.033154,0.137383 +-0.286719,0.569458,-1.623185,-0.181041,0.029970,0.141619 +-0.290526,0.566624,-1.621467,-0.177893,0.026748,0.145666 +-0.294286,0.563650,-1.619890,-0.174796,0.023490,0.149517 +-0.297993,0.560536,-1.618456,-0.171754,0.020198,0.153167 +-0.301645,0.557285,-1.617169,-0.168773,0.016875,0.156608 +-0.305237,0.553900,-1.616031,-0.165859,0.013524,0.159837 +-0.308767,0.550382,-1.615043,-0.163015,0.010145,0.162847 +-0.312230,0.546734,-1.614207,-0.160246,0.006742,0.165636 +-0.315623,0.542960,-1.613525,-0.157557,0.003316,0.168198 +-0.318944,0.539064,-1.612997,-0.154952,-0.000131,0.170532 +-0.322188,0.535049,-1.612622,-0.152433,-0.003597,0.172635 +-0.325354,0.530919,-1.612402,-0.150005,-0.007080,0.174505 +-0.328439,0.526680,-1.612334,-0.147670,-0.010578,0.176142 +-0.331439,0.522335,-1.612418,-0.145431,-0.014089,0.177543 +-0.334352,0.517891,-1.612652,-0.143290,-0.017612,0.178710 +-0.337176,0.513352,-1.613034,-0.141248,-0.021146,0.179643 +-0.339909,0.508725,-1.613562,-0.139308,-0.024687,0.180344 +-0.342548,0.504015,-1.614233,-0.137471,-0.028235,0.180815 +-0.345092,0.499229,-1.615043,-0.135736,-0.031789,0.181057 +-0.347539,0.494374,-1.615989,-0.134106,-0.035346,0.181075 +-0.349886,0.489455,-1.617067,-0.132578,-0.038906,0.180871 +-0.352134,0.484481,-1.618272,-0.131154,-0.042466,0.180451 +-0.354279,0.479458,-1.619600,-0.129833,-0.046025,0.179818 +-0.356321,0.474394,-1.621046,-0.128613,-0.049582,0.178980 +-0.358258,0.469296,-1.622604,-0.127493,-0.053136,0.177941 +-0.360091,0.464172,-1.624269,-0.126472,-0.056684,0.176707 +-0.361817,0.459030,-1.626034,-0.125546,-0.060227,0.175287 +-0.363436,0.453879,-1.627894,-0.124715,-0.063761,0.173687 +-0.364948,0.448725,-1.629842,-0.123974,-0.067286,0.171916 +-0.366353,0.443578,-1.631871,-0.123321,-0.070801,0.169982 +-0.367649,0.438445,-1.633975,-0.122752,-0.074304,0.167893 +-0.368837,0.433336,-1.636146,-0.122263,-0.077794,0.165659 +-0.369916,0.428258,-1.638377,-0.121851,-0.081270,0.163289 +-0.370887,0.423220,-1.640661,-0.121512,-0.084729,0.160794 +-0.371751,0.418231,-1.642991,-0.121239,-0.088171,0.158184 +-0.372506,0.413298,-1.645358,-0.121030,-0.091594,0.155469 +-0.373154,0.408431,-1.647755,-0.120878,-0.094996,0.152659 +-0.373695,0.403637,-1.650175,-0.120779,-0.098377,0.149767 +-0.374130,0.398925,-1.652609,-0.120726,-0.101735,0.146803 +-0.374459,0.394304,-1.655050,-0.120715,-0.105068,0.143779 +-0.374684,0.389781,-1.657491,-0.120738,-0.108374,0.140705 +-0.374805,0.385364,-1.659922,-0.120792,-0.111653,0.137595 +-0.374823,0.381061,-1.662337,-0.120868,-0.114901,0.134460 +-0.374739,0.376880,-1.664729,-0.120961,-0.118119,0.131310 +-0.374555,0.372829,-1.667089,-0.121065,-0.121303,0.128159 +-0.374271,0.368914,-1.669410,-0.121172,-0.124452,0.125018 +-0.373889,0.365144,-1.671685,-0.121278,-0.127565,0.121899 +-0.373411,0.361524,-1.673906,-0.121374,-0.130640,0.118814 +-0.372837,0.358061,-1.676068,-0.121455,-0.133674,0.115773 +-0.372170,0.354763,-1.678163,-0.121514,-0.136665,0.112789 +-0.371410,0.351634,-1.680184,-0.121544,-0.139613,0.109872 +-0.370559,0.348682,-1.682125,-0.121539,-0.142514,0.107035 +-0.369619,0.345911,-1.683981,-0.121492,-0.145366,0.104287 +-0.368591,0.343327,-1.685745,-0.121398,-0.148168,0.101639 +-0.367477,0.340934,-1.687411,-0.121250,-0.150917,0.099101 +-0.366279,0.338738,-1.688976,-0.121041,-0.153612,0.096684 +-0.364999,0.336743,-1.690432,-0.120766,-0.156249,0.094397 +-0.363637,0.334953,-1.691777,-0.120418,-0.158826,0.092250 +-0.362196,0.333371,-1.693005,-0.119993,-0.161342,0.090251 +-0.360678,0.332000,-1.694112,-0.119485,-0.163794,0.088408 +-0.359083,0.330844,-1.695096,-0.118888,-0.166180,0.086730 +-0.357415,0.329904,-1.695951,-0.118198,-0.168496,0.085225 +-0.355674,0.329184,-1.696677,-0.117409,-0.170741,0.083899 +-0.353862,0.328684,-1.697269,-0.116517,-0.172913,0.082760 +-0.351982,0.328406,-1.697726,-0.115518,-0.175008,0.081813 +-0.350034,0.328350,-1.698045,-0.114408,-0.177025,0.081063 +-0.348020,0.328518,-1.698226,-0.113183,-0.178961,0.080517 +-0.345942,0.328909,-1.698267,-0.111840,-0.180813,0.080179 +-0.343801,0.329524,-1.698167,-0.110375,-0.182580,0.080052 +-0.341599,0.330360,-1.697926,-0.108787,-0.184258,0.080140 +-0.339338,0.331418,-1.697545,-0.107072,-0.185845,0.080446 +-0.337019,0.332695,-1.697022,-0.105228,-0.187339,0.080972 +-0.334643,0.334190,-1.696360,-0.103254,-0.188737,0.081719 +-0.332211,0.335900,-1.695559,-0.101149,-0.190038,0.082690 +-0.329726,0.337823,-1.694620,-0.098911,-0.191239,0.083884 +-0.327188,0.339955,-1.693546,-0.096540,-0.192337,0.085301 +-0.324599,0.342294,-1.692339,-0.094037,-0.193330,0.086941 +-0.321960,0.344834,-1.691001,-0.091400,-0.194217,0.088802 +-0.319272,0.347573,-1.689534,-0.088630,-0.194995,0.090882 +-0.316536,0.350505,-1.687943,-0.085729,-0.195663,0.093180 +-0.313753,0.353625,-1.686230,-0.082698,-0.196217,0.095691 +-0.310925,0.356928,-1.684399,-0.079539,-0.196658,0.098414 +-0.308052,0.360409,-1.682455,-0.076253,-0.196982,0.101342 +-0.305135,0.364062,-1.680401,-0.072844,-0.197189,0.104472 +-0.302175,0.367881,-1.678242,-0.069313,-0.197277,0.107799 +-0.299173,0.371858,-1.675984,-0.065665,-0.197244,0.111317 +-0.296130,0.375987,-1.673630,-0.061902,-0.197089,0.115020 +-0.293046,0.380262,-1.671186,-0.058030,-0.196811,0.118901 +-0.289922,0.384675,-1.668658,-0.054051,-0.196410,0.122953 +-0.286759,0.389218,-1.666052,-0.049971,-0.195883,0.127168 +-0.283557,0.393884,-1.663372,-0.045794,-0.195232,0.131540 +-0.280317,0.398664,-1.660625,-0.041526,-0.194454,0.136058 +-0.277040,0.403551,-1.657818,-0.037172,-0.193550,0.140716 +-0.273725,0.408536,-1.654956,-0.032738,-0.192519,0.145503 +-0.270373,0.413611,-1.652045,-0.028231,-0.191362,0.150410 +-0.266985,0.418768,-1.649092,-0.023656,-0.190078,0.155428 +-0.263560,0.423997,-1.646103,-0.019020,-0.188668,0.160546 +-0.260100,0.429290,-1.643085,-0.014330,-0.187132,0.165756 +-0.256605,0.434637,-1.640045,-0.009593,-0.185471,0.171045 +-0.253074,0.440031,-1.636988,-0.004817,-0.183686,0.176404 +-0.249508,0.445461,-1.633921,-0.000008,-0.181777,0.181822 +-0.245907,0.450920,-1.630851,0.004826,-0.179747,0.187287 +-0.242271,0.456397,-1.627784,0.009677,-0.177596,0.192790 +-0.238601,0.461884,-1.624726,0.014537,-0.175326,0.198319 +-0.234896,0.467372,-1.621684,0.019399,-0.172939,0.203862 +-0.231157,0.472851,-1.618663,0.024253,-0.170437,0.209410 +-0.227383,0.478314,-1.615670,0.029093,-0.167822,0.214949 +-0.223575,0.483751,-1.612711,0.033911,-0.165097,0.220471 +-0.219733,0.489153,-1.609792,0.038697,-0.162264,0.225962 +-0.215857,0.494511,-1.606918,0.043443,-0.159326,0.231414 +-0.211947,0.499818,-1.604094,0.048143,-0.156286,0.236813 +-0.208003,0.505064,-1.601326,0.052787,-0.153147,0.242151 +-0.204025,0.510242,-1.598619,0.057367,-0.149913,0.247417 +-0.200013,0.515344,-1.595978,0.061876,-0.146587,0.252599 +-0.195967,0.520361,-1.593407,0.066305,-0.143174,0.257689 +-0.191887,0.525286,-1.590911,0.070648,-0.139676,0.262676 +-0.187774,0.530111,-1.588495,0.074895,-0.136098,0.267550 +-0.183627,0.534830,-1.586161,0.079040,-0.132445,0.272303 +-0.179446,0.539435,-1.583913,0.083075,-0.128721,0.276925 +-0.175232,0.543919,-1.581756,0.086993,-0.124930,0.281408 +-0.170984,0.548276,-1.579692,0.090788,-0.121078,0.285743 +-0.166703,0.552500,-1.577725,0.094452,-0.117169,0.289922 +-0.162389,0.556586,-1.575855,0.097979,-0.113209,0.293938 +-0.158043,0.560526,-1.574087,0.101362,-0.109202,0.297784 +-0.153663,0.564316,-1.572422,0.104596,-0.105154,0.301453 +-0.149252,0.567951,-1.570862,0.107675,-0.101071,0.304938 +-0.144808,0.571426,-1.569408,0.110594,-0.096958,0.308234 +-0.140332,0.574737,-1.568062,0.113347,-0.092820,0.311335 +-0.135825,0.577880,-1.566823,0.115929,-0.088664,0.314236 +-0.131286,0.580850,-1.565694,0.118336,-0.084496,0.316933 +-0.126716,0.583645,-1.564674,0.120565,-0.080320,0.319421 +-0.122116,0.586262,-1.563763,0.122610,-0.076144,0.321697 +-0.117486,0.588697,-1.562961,0.124469,-0.071973,0.323758 +-0.112827,0.590949,-1.562268,0.126138,-0.067814,0.325602 +-0.108138,0.593015,-1.561683,0.127615,-0.063672,0.327225 +-0.103421,0.594894,-1.561204,0.128897,-0.059554,0.328627 +-0.098676,0.596585,-1.560831,0.129982,-0.055466,0.329806 +-0.093904,0.598085,-1.560562,0.130870,-0.051413,0.330761 +-0.089105,0.599396,-1.560396,0.131557,-0.047403,0.331493 +-0.084279,0.600516,-1.560329,0.132044,-0.043440,0.332002 +-0.079429,0.601445,-1.560361,0.132329,-0.039532,0.332287 +-0.074554,0.602185,-1.560488,0.132414,-0.035684,0.332351 +-0.069654,0.602735,-1.560708,0.132297,-0.031902,0.332195 +-0.064732,0.603097,-1.561019,0.131980,-0.028192,0.331820 +-0.059788,0.603271,-1.561417,0.131464,-0.024560,0.331231 +-0.054822,0.603261,-1.561900,0.130749,-0.021012,0.330428 +-0.049836,0.603067,-1.562464,0.129839,-0.017552,0.329416 +-0.044831,0.602692,-1.563105,0.128734,-0.014187,0.328197 +-0.039806,0.602138,-1.563821,0.127436,-0.010922,0.326777 +-0.034764,0.601408,-1.564608,0.125950,-0.007762,0.325159 +-0.029706,0.600506,-1.565461,0.124278,-0.004712,0.323348 +-0.024632,0.599435,-1.566378,0.122422,-0.001777,0.321348 +-0.019543,0.598199,-1.567354,0.120388,0.001039,0.319166 +-0.014441,0.596800,-1.568386,0.118178,0.003730,0.316807 +-0.009327,0.595244,-1.569470,0.115798,0.006293,0.314275 +-0.004201,0.593535,-1.570601,0.113251,0.008723,0.311578 +0.000934,0.591677,-1.571776,0.110543,0.011016,0.308721 +0.006079,0.589676,-1.572991,0.107678,0.013169,0.305711 +0.011231,0.587535,-1.574242,0.104662,0.015178,0.302554 +0.016389,0.585260,-1.575526,0.101500,0.017040,0.299258 +0.021553,0.582857,-1.576837,0.098197,0.018751,0.295827 +0.026721,0.580331,-1.578173,0.094761,0.020310,0.292270 +0.031891,0.577687,-1.579530,0.091196,0.021713,0.288594 +0.037063,0.574931,-1.580905,0.087509,0.022959,0.284805 +0.042235,0.572069,-1.582293,0.083706,0.024045,0.280910 +0.047406,0.569107,-1.583691,0.079794,0.024969,0.276916 +0.052575,0.566051,-1.585096,0.075779,0.025730,0.272831 +0.057740,0.562906,-1.586506,0.071668,0.026327,0.268661 +0.062899,0.559680,-1.587916,0.067467,0.026759,0.264413 +0.068053,0.556378,-1.589324,0.063183,0.027025,0.260093 +0.073198,0.553006,-1.590727,0.058823,0.027125,0.255709 +0.078335,0.549572,-1.592123,0.054393,0.027058,0.251267 +0.083461,0.546080,-1.593510,0.049901,0.026825,0.246773 +0.088575,0.542537,-1.594884,0.045352,0.026427,0.242233 +0.093676,0.538950,-1.596244,0.040755,0.025864,0.237655 +0.098763,0.535325,-1.597589,0.036115,0.025137,0.233042 +0.103833,0.531667,-1.598916,0.031438,0.024247,0.228401 +0.108887,0.527984,-1.600223,0.026733,0.023196,0.223738 +0.113921,0.524282,-1.601511,0.022003,0.021986,0.219058 +0.118936,0.520565,-1.602777,0.017257,0.020618,0.214364 +0.123929,0.516841,-1.604021,0.012500,0.019096,0.209663 +0.128899,0.513115,-1.605241,0.007739,0.017421,0.204958 +0.133846,0.509393,-1.606438,0.002978,0.015598,0.200253 +0.138766,0.505681,-1.607611,-0.001776,0.013627,0.195552 +0.143660,0.501985,-1.608760,-0.006518,0.011514,0.190859 +0.148525,0.498309,-1.609886,-0.011243,0.009262,0.186177 +0.153360,0.494660,-1.610987,-0.015945,0.006874,0.181507 +0.158164,0.491042,-1.612065,-0.020620,0.004354,0.176854 +0.162936,0.487460,-1.613121,-0.025263,0.001707,0.172219 +0.167673,0.483921,-1.614155,-0.029869,-0.001063,0.167603 +0.172375,0.480427,-1.615168,-0.034435,-0.003951,0.163009 +0.177040,0.476985,-1.616161,-0.038957,-0.006953,0.158437 +0.181667,0.473599,-1.617135,-0.043430,-0.010064,0.153888 +0.186254,0.470272,-1.618092,-0.047851,-0.013278,0.149364 +0.190800,0.467010,-1.619034,-0.052218,-0.016591,0.144863 +0.195303,0.463816,-1.619961,-0.056528,-0.019997,0.140385 +0.199762,0.460693,-1.620876,-0.060777,-0.023490,0.135932 +0.204175,0.457647,-1.621781,-0.064963,-0.027065,0.131500 +0.208542,0.454680,-1.622678,-0.069085,-0.030717,0.127091 +0.212860,0.451796,-1.623567,-0.073140,-0.034439,0.122701 +0.217127,0.448997,-1.624453,-0.077127,-0.038225,0.118331 +0.221344,0.446287,-1.625336,-0.081045,-0.042071,0.113977 +0.225507,0.443669,-1.626219,-0.084892,-0.045969,0.109638 +0.229616,0.441145,-1.627105,-0.088668,-0.049913,0.105311 +0.233668,0.438717,-1.627995,-0.092373,-0.053899,0.100994 +0.237663,0.436389,-1.628891,-0.096006,-0.057919,0.096685 +0.241598,0.434162,-1.629797,-0.099567,-0.061967,0.092380 +0.245473,0.432038,-1.630713,-0.103056,-0.066039,0.088076 +0.249285,0.430019,-1.631643,-0.106474,-0.070127,0.083770 +0.253033,0.428107,-1.632588,-0.109822,-0.074225,0.079459 +0.256715,0.426302,-1.633551,-0.113100,-0.078328,0.075139 +0.260330,0.424607,-1.634534,-0.116309,-0.082430,0.070806 +0.263876,0.423023,-1.635537,-0.119452,-0.086525,0.066458 +0.267351,0.421550,-1.636565,-0.122529,-0.090608,0.062090 +0.270753,0.420189,-1.637617,-0.125542,-0.094673,0.057699 +0.274082,0.418942,-1.638696,-0.128493,-0.098713,0.053281 +0.277334,0.417808,-1.639803,-0.131384,-0.102725,0.048831 +0.280509,0.416789,-1.640939,-0.134216,-0.106703,0.044348 +0.283605,0.415884,-1.642106,-0.136993,-0.110641,0.039826 +0.286619,0.415094,-1.643304,-0.139717,-0.114535,0.035263 +0.289550,0.414418,-1.644535,-0.142390,-0.118380,0.030655 +0.292396,0.413858,-1.645799,-0.145015,-0.122171,0.025998 +0.295156,0.413411,-1.647096,-0.147594,-0.125905,0.021289 +0.297828,0.413080,-1.648428,-0.150130,-0.129575,0.016526 +0.300409,0.412862,-1.649793,-0.152626,-0.133180,0.011705 +0.302898,0.412758,-1.651192,-0.155084,-0.136714,0.006824 +0.305293,0.412767,-1.652624,-0.157508,-0.140174,0.001880 +0.307592,0.412888,-1.654089,-0.159900,-0.143557,-0.003129 +0.309793,0.413121,-1.655586,-0.162263,-0.146859,-0.008205 +0.311895,0.413465,-1.657114,-0.164600,-0.150077,-0.013351 +0.313896,0.413919,-1.658671,-0.166913,-0.153209,-0.018566 +0.315793,0.414483,-1.660257,-0.169205,-0.156251,-0.023854 +0.317585,0.415154,-1.661869,-0.171479,-0.159203,-0.029214 +0.319270,0.415933,-1.663506,-0.173738,-0.162060,-0.034647 +0.320847,0.416818,-1.665165,-0.175983,-0.164823,-0.040153 +0.322313,0.417808,-1.666843,-0.178218,-0.167488,-0.045733 +0.323666,0.418902,-1.668539,-0.180443,-0.170055,-0.051386 +0.324905,0.420098,-1.670249,-0.182663,-0.172522,-0.057111 +0.326029,0.421396,-1.671970,-0.184878,-0.174888,-0.062908 +0.327034,0.422794,-1.673699,-0.187090,-0.177154,-0.068774 +0.327920,0.424290,-1.675432,-0.189301,-0.179317,-0.074708 +0.328685,0.425884,-1.677166,-0.191513,-0.181378,-0.080707 +0.329328,0.427574,-1.678896,-0.193727,-0.183338,-0.086770 +0.329846,0.429358,-1.680618,-0.195944,-0.185195,-0.092892 +0.330238,0.431235,-1.682329,-0.198165,-0.186951,-0.099072 +0.330503,0.433204,-1.684024,-0.200391,-0.188606,-0.105304 +0.330638,0.435264,-1.685697,-0.202623,-0.190161,-0.111586 +0.330644,0.437412,-1.687344,-0.204860,-0.191617,-0.117911 +0.330518,0.439647,-1.688961,-0.207104,-0.192976,-0.124277 +0.330259,0.441968,-1.690542,-0.209354,-0.194238,-0.130677 +0.329866,0.444372,-1.692082,-0.211610,-0.195406,-0.137106 +0.329338,0.446860,-1.693576,-0.213871,-0.196481,-0.143558 +0.328673,0.449428,-1.695018,-0.216137,-0.197464,-0.150026 +0.327871,0.452076,-1.696404,-0.218407,-0.198359,-0.156506 +0.326931,0.454801,-1.697727,-0.220680,-0.199168,-0.162989 +0.325852,0.457603,-1.698982,-0.222954,-0.199892,-0.169468 +0.324632,0.460479,-1.700164,-0.225229,-0.200535,-0.175937 +0.323273,0.463427,-1.701267,-0.227502,-0.201099,-0.182387 +0.321772,0.466447,-1.702285,-0.229771,-0.201586,-0.188811 +0.320130,0.469536,-1.703214,-0.232035,-0.202000,-0.195200 +0.318346,0.472693,-1.704048,-0.234292,-0.202344,-0.201547 +0.316421,0.475916,-1.704780,-0.236537,-0.202621,-0.207842 +0.314353,0.479203,-1.705407,-0.238770,-0.202834,-0.214078 +0.312143,0.482552,-1.705923,-0.240987,-0.202985,-0.220245 +0.309791,0.485961,-1.706323,-0.243185,-0.203079,-0.226334 +0.307297,0.489429,-1.706602,-0.245361,-0.203118,-0.232337 +0.304662,0.492954,-1.706755,-0.247512,-0.203107,-0.238245 +0.301886,0.496534,-1.706777,-0.249634,-0.203047,-0.244048 +0.298970,0.500166,-1.706665,-0.251724,-0.202943,-0.249737 +0.295915,0.503850,-1.706414,-0.253778,-0.202798,-0.255303 +0.292721,0.507581,-1.706020,-0.255792,-0.202614,-0.260737 +0.289390,0.511360,-1.705479,-0.257763,-0.202397,-0.266030 +0.285923,0.515183,-1.704787,-0.259687,-0.202148,-0.271173 +0.282320,0.519048,-1.703943,-0.261559,-0.201870,-0.276157 +0.278584,0.522954,-1.702942,-0.263376,-0.201568,-0.280973 +0.274717,0.526897,-1.701782,-0.265133,-0.201244,-0.285613 +0.270719,0.530876,-1.700460,-0.266827,-0.200901,-0.290069 +0.266594,0.534887,-1.698975,-0.268453,-0.200542,-0.294331 +0.262342,0.538930,-1.697324,-0.270007,-0.200170,-0.298392 +0.257967,0.543000,-1.695508,-0.271486,-0.199787,-0.302245 +0.253470,0.547096,-1.693523,-0.272885,-0.199397,-0.305881 +0.248855,0.551215,-1.691370,-0.274200,-0.199002,-0.309294 +0.244123,0.555354,-1.689049,-0.275428,-0.198603,-0.312477 +0.239278,0.559511,-1.686560,-0.276565,-0.198204,-0.315423 +0.234322,0.563682,-1.683902,-0.277606,-0.197807,-0.318126 +0.229260,0.567866,-1.681077,-0.278549,-0.197413,-0.320581 +0.224093,0.572058,-1.678087,-0.279390,-0.197024,-0.322782 +0.218825,0.576257,-1.674932,-0.280125,-0.196642,-0.324724 +0.213460,0.580458,-1.671616,-0.280752,-0.196269,-0.326402 +0.208002,0.584659,-1.668139,-0.281267,-0.195905,-0.327813 +0.202454,0.588857,-1.664506,-0.281667,-0.195553,-0.328954 +0.196821,0.593049,-1.660719,-0.281951,-0.195212,-0.329820 +0.191105,0.597231,-1.656783,-0.282115,-0.194885,-0.330410 +0.185312,0.601400,-1.652701,-0.282158,-0.194570,-0.330722 +0.179446,0.605553,-1.648477,-0.282077,-0.194270,-0.330753 +0.173511,0.609686,-1.644117,-0.281870,-0.193984,-0.330503 +0.167512,0.613796,-1.639626,-0.281537,-0.193712,-0.329972 +0.161452,0.617880,-1.635009,-0.281076,-0.193454,-0.329160 +0.155338,0.621933,-1.630273,-0.280485,-0.193211,-0.328067 +0.149174,0.625953,-1.625423,-0.279765,-0.192981,-0.326694 +0.142964,0.629936,-1.620467,-0.278915,-0.192765,-0.325044 +0.136713,0.633878,-1.615411,-0.277934,-0.192560,-0.323118 +0.130428,0.637775,-1.610263,-0.276824,-0.192367,-0.320920 +0.124112,0.641625,-1.605031,-0.275584,-0.192185,-0.318453 +0.117771,0.645423,-1.599722,-0.274215,-0.192011,-0.315721 +0.111410,0.649166,-1.594344,-0.272718,-0.191845,-0.312729 +0.105035,0.652850,-1.588907,-0.271096,-0.191685,-0.309481 +0.098650,0.656471,-1.583419,-0.269348,-0.191529,-0.305984 +0.092261,0.660027,-1.577889,-0.267478,-0.191376,-0.302244 +0.085873,0.663513,-1.572326,-0.265487,-0.191224,-0.298266 +0.079492,0.666926,-1.566739,-0.263379,-0.191070,-0.294059 +0.073124,0.670262,-1.561139,-0.261156,-0.190911,-0.289630 +0.066773,0.673518,-1.555534,-0.258821,-0.190747,-0.284988 +0.060444,0.676691,-1.549936,-0.256379,-0.190574,-0.280140 +0.054144,0.679777,-1.544353,-0.253832,-0.190390,-0.275096 +0.047877,0.682772,-1.538796,-0.251185,-0.190191,-0.269866 +0.041649,0.685675,-1.533275,-0.248442,-0.189976,-0.264458 +0.035465,0.688480,-1.527801,-0.245608,-0.189741,-0.258884 +0.029330,0.691186,-1.522383,-0.242688,-0.189484,-0.253154 +0.023250,0.693790,-1.517031,-0.239687,-0.189202,-0.247279 +0.017229,0.696287,-1.511757,-0.236611,-0.188891,-0.241270 +0.011272,0.698677,-1.506569,-0.233464,-0.188549,-0.235139 +0.005384,0.700956,-1.501479,-0.230253,-0.188172,-0.228897 +-0.000429,0.703121,-1.496496,-0.226984,-0.187758,-0.222557 +-0.006164,0.705170,-1.491630,-0.223663,-0.187303,-0.216130 +-0.011815,0.707101,-1.486890,-0.220297,-0.186805,-0.209629 +-0.017379,0.708912,-1.482287,-0.216892,-0.186259,-0.203066 +-0.022850,0.710601,-1.477830,-0.213455,-0.185664,-0.196454 +-0.028225,0.712166,-1.473527,-0.209993,-0.185016,-0.189806 +-0.033500,0.713604,-1.469388,-0.206513,-0.184312,-0.183134 +-0.038670,0.714916,-1.465421,-0.203022,-0.183549,-0.176451 +-0.043732,0.716099,-1.461636,-0.199527,-0.182725,-0.169770 +-0.048682,0.717152,-1.458039,-0.196036,-0.181836,-0.163103 +-0.053517,0.718074,-1.454638,-0.192555,-0.180880,-0.156464 +-0.058233,0.718864,-1.451442,-0.189093,-0.179854,-0.149864 +-0.062828,0.719523,-1.448457,-0.185656,-0.178756,-0.143316 +-0.067299,0.720049,-1.445690,-0.182252,-0.177583,-0.136832 +-0.071642,0.720442,-1.443147,-0.178889,-0.176333,-0.130425 +-0.075856,0.720702,-1.440835,-0.175573,-0.175004,-0.124105 +-0.079938,0.720829,-1.438757,-0.172312,-0.173593,-0.117885 +-0.083886,0.720825,-1.436921,-0.169113,-0.172099,-0.111775 +-0.087698,0.720689,-1.435329,-0.165983,-0.170520,-0.105787 +-0.091372,0.720421,-1.433987,-0.162929,-0.168854,-0.099932 +-0.094907,0.720025,-1.432897,-0.159958,-0.167100,-0.094219 +-0.098302,0.719499,-1.432064,-0.157077,-0.165257,-0.088658 +-0.101555,0.718847,-1.431489,-0.154292,-0.163323,-0.083259 +-0.104666,0.718069,-1.431175,-0.151610,-0.161298,-0.078030 +-0.107635,0.717168,-1.431123,-0.149036,-0.159180,-0.072981 +-0.110461,0.716145,-1.431335,-0.146576,-0.156970,-0.068119 +-0.113143,0.715003,-1.431810,-0.144237,-0.154666,-0.063451 +-0.115683,0.713744,-1.432550,-0.142024,-0.152268,-0.058985 +-0.118080,0.712372,-1.433553,-0.139941,-0.149777,-0.054728 +-0.120334,0.710888,-1.434818,-0.137995,-0.147192,-0.050684 +-0.122448,0.709296,-1.436345,-0.136188,-0.144514,-0.046860 +-0.124421,0.707600,-1.438130,-0.134526,-0.141744,-0.043260 +-0.126256,0.705802,-1.440171,-0.133013,-0.138882,-0.039889 +-0.127953,0.703907,-1.442465,-0.131652,-0.135929,-0.036749 +-0.129514,0.701918,-1.445009,-0.130447,-0.132887,-0.033844 +-0.130942,0.699839,-1.447797,-0.129401,-0.129756,-0.031176 +-0.132238,0.697674,-1.450826,-0.128515,-0.126538,-0.028747 +-0.133404,0.695428,-1.454091,-0.127793,-0.123236,-0.026557 +-0.134444,0.693105,-1.457584,-0.127236,-0.119850,-0.024608 +-0.135360,0.690709,-1.461302,-0.126846,-0.116384,-0.022899 +-0.136155,0.688246,-1.465236,-0.126624,-0.112838,-0.021428 +-0.136832,0.685719,-1.469379,-0.126570,-0.109217,-0.020196 +-0.137394,0.683135,-1.473725,-0.126685,-0.105522,-0.019198 +-0.137846,0.680498,-1.478266,-0.126969,-0.101757,-0.018434 +-0.138190,0.677813,-1.482992,-0.127422,-0.097924,-0.017899 +-0.138431,0.675085,-1.487896,-0.128042,-0.094026,-0.017589 +-0.138572,0.672319,-1.492968,-0.128828,-0.090067,-0.017500 +-0.138618,0.669522,-1.498199,-0.129778,-0.086051,-0.017627 +-0.138573,0.666697,-1.503580,-0.130891,-0.081981,-0.017963 +-0.138441,0.663851,-1.509099,-0.132164,-0.077861,-0.018504 +-0.138228,0.660989,-1.514748,-0.133594,-0.073694,-0.019242 +-0.137937,0.658116,-1.520515,-0.135179,-0.069485,-0.020169 +-0.137574,0.655238,-1.526390,-0.136913,-0.065239,-0.021278 +-0.137143,0.652360,-1.532362,-0.138795,-0.060958,-0.022560 +-0.136650,0.649487,-1.538420,-0.140818,-0.056647,-0.024008 +-0.136100,0.646625,-1.544551,-0.142979,-0.052312,-0.025611 +-0.135497,0.643778,-1.550746,-0.145273,-0.047956,-0.027361 +-0.134847,0.640953,-1.556992,-0.147694,-0.043584,-0.029247 +-0.134156,0.638154,-1.563278,-0.150237,-0.039201,-0.031258 +-0.133428,0.635387,-1.569592,-0.152896,-0.034812,-0.033386 +-0.132669,0.632655,-1.575923,-0.155664,-0.030420,-0.035617 +-0.131884,0.629964,-1.582258,-0.158536,-0.026031,-0.037942 +-0.131079,0.627319,-1.588587,-0.161505,-0.021651,-0.040349 +-0.130259,0.624724,-1.594897,-0.164563,-0.017282,-0.042826 +-0.129430,0.622184,-1.601178,-0.167703,-0.012932,-0.045362 +-0.128596,0.619702,-1.607417,-0.170919,-0.008603,-0.047944 +-0.127764,0.617283,-1.613603,-0.174203,-0.004302,-0.050561 +-0.126939,0.614930,-1.619726,-0.177546,-0.000032,-0.053200 +-0.126125,0.612648,-1.625774,-0.180942,0.004200,-0.055850 +-0.125328,0.610439,-1.631737,-0.184382,0.008392,-0.058498 +-0.124554,0.608307,-1.637605,-0.187858,0.012537,-0.061132 +-0.123806,0.606256,-1.643366,-0.191362,0.016631,-0.063740 +-0.123091,0.604287,-1.649011,-0.194885,0.020670,-0.066310 +-0.122414,0.602403,-1.654531,-0.198421,0.024650,-0.068831 +-0.121778,0.600607,-1.659916,-0.201959,0.028565,-0.071289 +-0.121189,0.598901,-1.665157,-0.205492,0.032412,-0.073675 +-0.120652,0.597286,-1.670246,-0.209012,0.036186,-0.075976 +-0.120170,0.595765,-1.675174,-0.212510,0.039883,-0.078182 +-0.119748,0.594338,-1.679934,-0.215979,0.043499,-0.080281 +-0.119390,0.593006,-1.684518,-0.219409,0.047031,-0.082263 +-0.119100,0.591770,-1.688919,-0.222794,0.050474,-0.084119 +-0.118883,0.590631,-1.693131,-0.226124,0.053825,-0.085838 +-0.118742,0.589588,-1.697148,-0.229393,0.057081,-0.087411 +-0.118679,0.588643,-1.700964,-0.232593,0.060238,-0.088828 +-0.118700,0.587793,-1.704573,-0.235716,0.063293,-0.090082 +-0.118806,0.587039,-1.707972,-0.238755,0.066243,-0.091164 +-0.119001,0.586380,-1.711157,-0.241703,0.069085,-0.092066 +-0.119288,0.585813,-1.714123,-0.244553,0.071816,-0.092782 +-0.119669,0.585339,-1.716868,-0.247299,0.074434,-0.093304 +-0.120147,0.584955,-1.719389,-0.249934,0.076937,-0.093628 +-0.120723,0.584658,-1.721684,-0.252452,0.079322,-0.093746 +-0.121400,0.584448,-1.723752,-0.254848,0.081587,-0.093655 +-0.122180,0.584320,-1.725592,-0.257117,0.083731,-0.093350 +-0.123064,0.584272,-1.727203,-0.259252,0.085751,-0.092827 +-0.124054,0.584301,-1.728585,-0.261249,0.087647,-0.092082 +-0.125150,0.584403,-1.729740,-0.263105,0.089416,-0.091115 +-0.126354,0.584575,-1.730668,-0.264813,0.091058,-0.089921 +-0.127666,0.584814,-1.731370,-0.266372,0.092573,-0.088501 +-0.129087,0.585114,-1.731850,-0.267778,0.093958,-0.086854 +-0.130616,0.585472,-1.732110,-0.269027,0.095213,-0.084978 +-0.132255,0.585883,-1.732153,-0.270117,0.096339,-0.082876 +-0.134003,0.586342,-1.731982,-0.271045,0.097334,-0.080549 +-0.135859,0.586845,-1.731602,-0.271811,0.098199,-0.077997 +-0.137824,0.587386,-1.731018,-0.272412,0.098934,-0.075224 +-0.139895,0.587960,-1.730234,-0.272848,0.099538,-0.072232 +-0.142072,0.588562,-1.729255,-0.273118,0.100013,-0.069026 +-0.144354,0.589186,-1.728089,-0.273221,0.100359,-0.065609 +-0.146740,0.589827,-1.726740,-0.273158,0.100577,-0.061986 +-0.149228,0.590479,-1.725216,-0.272929,0.100667,-0.058164 +-0.151815,0.591135,-1.723524,-0.272535,0.100630,-0.054147 +-0.154501,0.591791,-1.721671,-0.271978,0.100469,-0.049942 +-0.157283,0.592440,-1.719665,-0.271260,0.100183,-0.045557 +-0.160158,0.593076,-1.717513,-0.270382,0.099774,-0.040998 +-0.163123,0.593693,-1.715224,-0.269347,0.099245,-0.036274 +-0.166178,0.594285,-1.712806,-0.268158,0.098596,-0.031394 +-0.169317,0.594846,-1.710268,-0.266817,0.097829,-0.026365 +-0.172539,0.595369,-1.707619,-0.265330,0.096947,-0.021199 +-0.175841,0.595849,-1.704869,-0.263698,0.095950,-0.015903 +-0.179218,0.596280,-1.702025,-0.261928,0.094843,-0.010488 +-0.182668,0.596655,-1.699099,-0.260022,0.093625,-0.004965 +-0.186186,0.596970,-1.696098,-0.257986,0.092300,0.000656 +-0.189770,0.597217,-1.693034,-0.255825,0.090870,0.006363 +-0.193415,0.597392,-1.689915,-0.253545,0.089338,0.012146 +-0.197118,0.597488,-1.686751,-0.251150,0.087706,0.017994 +-0.200874,0.597501,-1.683552,-0.248648,0.085976,0.023893 +-0.204680,0.597425,-1.680327,-0.246043,0.084150,0.029834 +-0.208531,0.597255,-1.677087,-0.243342,0.082233,0.035804 +-0.212424,0.596986,-1.673841,-0.240551,0.080225,0.041791 +-0.216353,0.596614,-1.670597,-0.237678,0.078131,0.047782 +-0.220314,0.596133,-1.667366,-0.234728,0.075952,0.053767 +-0.224304,0.595540,-1.664158,-0.231709,0.073691,0.059733 +-0.228317,0.594830,-1.660980,-0.228627,0.071352,0.065667 +-0.232349,0.594000,-1.657841,-0.225490,0.068936,0.071559 +-0.236396,0.593047,-1.654752,-0.222305,0.066447,0.077396 +-0.240453,0.591966,-1.651719,-0.219079,0.063887,0.083167 +-0.244515,0.590755,-1.648751,-0.215818,0.061259,0.088860 +-0.248579,0.589411,-1.645856,-0.212531,0.058566,0.094464 +-0.252640,0.587932,-1.643043,-0.209224,0.055811,0.099968 +-0.256692,0.586316,-1.640317,-0.205905,0.052995,0.105360 +-0.260733,0.584560,-1.637686,-0.202580,0.050123,0.110632 +-0.264756,0.582664,-1.635158,-0.199256,0.047196,0.115772 +-0.268759,0.580626,-1.632737,-0.195941,0.044217,0.120770 +-0.272737,0.578446,-1.630431,-0.192642,0.041189,0.125618 +-0.276684,0.576123,-1.628244,-0.189364,0.038114,0.130306 +-0.280598,0.573657,-1.626183,-0.186114,0.034995,0.134825 +-0.284474,0.571048,-1.624251,-0.182900,0.031834,0.139167 +-0.288308,0.568296,-1.622453,-0.179725,0.028634,0.143326 +-0.292097,0.565404,-1.620794,-0.176598,0.025396,0.147292 +-0.295835,0.562371,-1.619276,-0.173523,0.022124,0.151060 +-0.299520,0.559200,-1.617903,-0.170506,0.018819,0.154624 +-0.303147,0.555893,-1.616677,-0.167552,0.015485,0.157978 +-0.306713,0.552452,-1.615601,-0.164667,0.012121,0.161116 +-0.310216,0.548880,-1.614677,-0.161854,0.008732,0.164035 +-0.313650,0.545179,-1.613905,-0.159118,0.005319,0.166730 +-0.317013,0.541354,-1.613287,-0.156463,0.001884,0.169197 +-0.320303,0.537408,-1.612822,-0.153893,-0.001571,0.171436 +-0.323515,0.533344,-1.612512,-0.151412,-0.005044,0.173442 +-0.326647,0.529168,-1.612355,-0.149022,-0.008533,0.175215 +-0.329697,0.524885,-1.612350,-0.146727,-0.012037,0.176753 +-0.332661,0.520498,-1.612497,-0.144528,-0.015554,0.178057 +-0.335538,0.516014,-1.612793,-0.142428,-0.019081,0.179127 +-0.338324,0.511438,-1.613236,-0.140429,-0.022618,0.179963 +-0.341019,0.506775,-1.613824,-0.138531,-0.026163,0.180568 +-0.343618,0.502033,-1.614553,-0.136737,-0.029713,0.180943 +-0.346122,0.497217,-1.615420,-0.135045,-0.033269,0.181091 +-0.348528,0.492335,-1.616422,-0.133458,-0.036827,0.181017 +-0.350834,0.487392,-1.617553,-0.131973,-0.040387,0.180722 +-0.353038,0.482397,-1.618810,-0.130592,-0.043947,0.180213 +-0.355141,0.477356,-1.620188,-0.129313,-0.047505,0.179494 +-0.357139,0.472277,-1.621681,-0.128135,-0.051061,0.178571 +-0.359033,0.467167,-1.623284,-0.127057,-0.054613,0.177451 +-0.360822,0.462035,-1.624991,-0.126075,-0.058159,0.176139 +-0.362504,0.456888,-1.626797,-0.125189,-0.061698,0.174643 +-0.364079,0.451734,-1.628694,-0.124396,-0.065229,0.172971 +-0.365546,0.446582,-1.630676,-0.123692,-0.068750,0.171131 +-0.366905,0.441440,-1.632737,-0.123074,-0.072260,0.169131 +-0.368156,0.436316,-1.634870,-0.122539,-0.075758,0.166981 +-0.369299,0.431219,-1.637067,-0.122083,-0.079242,0.164689 +-0.370333,0.426157,-1.639321,-0.121702,-0.082711,0.162266 +-0.371260,0.421138,-1.641625,-0.121390,-0.086163,0.159722 +-0.372078,0.416171,-1.643971,-0.121145,-0.089597,0.157066 +-0.372788,0.411265,-1.646352,-0.120960,-0.093012,0.154311 +-0.373392,0.406427,-1.648760,-0.120831,-0.096406,0.151465 +-0.373889,0.401666,-1.651186,-0.120751,-0.099777,0.148542 +-0.374280,0.396991,-1.653624,-0.120717,-0.103125,0.145551 +-0.374565,0.392410,-1.656066,-0.120721,-0.106447,0.142505 +-0.374747,0.387930,-1.658504,-0.120757,-0.109742,0.139415 +-0.374825,0.383560,-1.660929,-0.120821,-0.113008,0.136293 +-0.374800,0.379307,-1.663336,-0.120905,-0.116244,0.133150 +-0.374674,0.375179,-1.665715,-0.121003,-0.119448,0.129999 +-0.374449,0.371183,-1.668059,-0.121109,-0.122618,0.126851 +-0.374124,0.367328,-1.670362,-0.121217,-0.125752,0.123718 +-0.373702,0.363619,-1.672616,-0.121319,-0.128849,0.120611 +-0.373184,0.360064,-1.674813,-0.121410,-0.131907,0.117543 +-0.372571,0.356669,-1.676948,-0.121482,-0.134924,0.114524 +-0.371864,0.353440,-1.679013,-0.121530,-0.137897,0.111567 +-0.371067,0.350384,-1.681002,-0.121546,-0.140825,0.108682 +-0.370178,0.347507,-1.682908,-0.121525,-0.143706,0.105880 +-0.369202,0.344813,-1.684726,-0.121459,-0.146538,0.103172 +-0.368138,0.342308,-1.686450,-0.121343,-0.149318,0.100569 +-0.366989,0.339997,-1.688075,-0.121170,-0.152045,0.098080 +-0.365756,0.337884,-1.689595,-0.120935,-0.154716,0.095716 +-0.364442,0.335973,-1.691005,-0.120630,-0.157328,0.093486 +-0.363047,0.334269,-1.692302,-0.120251,-0.159881,0.091400 +-0.361574,0.332775,-1.693480,-0.119792,-0.162370,0.089464 +-0.360023,0.331493,-1.694537,-0.119248,-0.164795,0.087690 +-0.358398,0.330427,-1.695467,-0.118613,-0.167152,0.086083 +-0.356699,0.329578,-1.696269,-0.117882,-0.169439,0.084651 +-0.354929,0.328949,-1.696939,-0.117051,-0.171654,0.083402 +-0.353088,0.328541,-1.697475,-0.116115,-0.173794,0.082342 +-0.351179,0.328356,-1.697875,-0.115070,-0.175857,0.081477 +-0.349204,0.328393,-1.698137,-0.113913,-0.177841,0.080811 +-0.347163,0.328654,-1.698260,-0.112639,-0.179742,0.080351 +-0.345059,0.329138,-1.698243,-0.111246,-0.181559,0.080100 +-0.342892,0.329845,-1.698084,-0.109730,-0.183289,0.080062 +-0.340666,0.330773,-1.697785,-0.108089,-0.184929,0.080240 +-0.338380,0.331922,-1.697344,-0.106320,-0.186478,0.080638 +-0.336037,0.333290,-1.696764,-0.104423,-0.187933,0.081256 +-0.333638,0.334875,-1.696044,-0.102394,-0.189291,0.082096 +-0.331184,0.336674,-1.695185,-0.100234,-0.190550,0.083159 +-0.328677,0.338685,-1.694190,-0.097941,-0.191708,0.084446 +-0.326117,0.340903,-1.693060,-0.095515,-0.192763,0.085956 +-0.323507,0.343326,-1.691798,-0.092956,-0.193712,0.087688 +-0.320848,0.345950,-1.690406,-0.090264,-0.194554,0.089641 +-0.318139,0.348769,-1.688887,-0.087439,-0.195286,0.091812 +-0.315384,0.351780,-1.687245,-0.084484,-0.195907,0.094199 +-0.312582,0.354977,-1.685482,-0.081400,-0.196415,0.096799 +-0.309735,0.358355,-1.683604,-0.078187,-0.196807,0.099607 +-0.306844,0.361909,-1.681613,-0.074850,-0.197083,0.102620 +-0.303909,0.365631,-1.679515,-0.071390,-0.197240,0.105833 +-0.300931,0.369516,-1.677314,-0.067810,-0.197278,0.109240 +-0.297912,0.373558,-1.675016,-0.064113,-0.197194,0.112835 +-0.294852,0.377749,-1.672624,-0.060304,-0.196988,0.116613 +-0.291751,0.382082,-1.670144,-0.056387,-0.196659,0.120566 +-0.288611,0.386549,-1.667583,-0.052365,-0.196206,0.124687 +-0.285432,0.391144,-1.664945,-0.048244,-0.195628,0.128968 +-0.282214,0.395859,-1.662237,-0.044029,-0.194923,0.133402 +-0.278958,0.400685,-1.659464,-0.039725,-0.194093,0.137979 +-0.275665,0.405613,-1.656633,-0.035337,-0.193136,0.142692 +-0.272335,0.410637,-1.653750,-0.030872,-0.192053,0.147530 +-0.268968,0.415747,-1.650821,-0.026335,-0.190843,0.152485 +-0.265564,0.420935,-1.647853,-0.021734,-0.189507,0.157546 +-0.262125,0.426191,-1.644851,-0.017075,-0.188044,0.162703 +-0.258650,0.431508,-1.641823,-0.012365,-0.186456,0.167947 +-0.255140,0.436876,-1.638775,-0.007611,-0.184743,0.173267 +-0.251594,0.442286,-1.635713,-0.002820,-0.182907,0.178651 +-0.248014,0.447729,-1.632644,0.002001,-0.180947,0.184090 +-0.244398,0.453197,-1.629574,0.006843,-0.178867,0.189573 +-0.240748,0.458679,-1.626510,0.011698,-0.176666,0.195088 +-0.237063,0.464167,-1.623458,0.016560,-0.174347,0.200624 +-0.233344,0.469653,-1.620424,0.021420,-0.171912,0.206170 +-0.229591,0.475127,-1.617414,0.026269,-0.169363,0.211716 +-0.225803,0.480579,-1.614435,0.031101,-0.166702,0.217249 +-0.221981,0.486003,-1.611492,0.035906,-0.163931,0.222760 +-0.218125,0.491388,-1.608590,0.040677,-0.161054,0.228236 +-0.214235,0.496726,-1.605736,0.045405,-0.158073,0.233667 +-0.210310,0.502008,-1.602935,0.050082,-0.154992,0.239042 +-0.206352,0.507227,-1.600192,0.054701,-0.151813,0.244351 +-0.202360,0.512374,-1.597512,0.059252,-0.148540,0.249583 +-0.198334,0.517442,-1.594900,0.063729,-0.145178,0.254729 +-0.194274,0.522421,-1.592360,0.068123,-0.141728,0.259777 +-0.190180,0.527306,-1.589896,0.072427,-0.138197,0.264718 +-0.186052,0.532088,-1.587513,0.076632,-0.134587,0.269543 +-0.181891,0.536760,-1.585215,0.080732,-0.130904,0.274242 +-0.177697,0.541315,-1.583005,0.084720,-0.127152,0.278807 +-0.173469,0.545748,-1.580886,0.088588,-0.123335,0.283230 +-0.169207,0.550050,-1.578862,0.092329,-0.119459,0.287501 +-0.164913,0.554217,-1.576935,0.095936,-0.115528,0.291613 +-0.160585,0.558243,-1.575108,0.099404,-0.111547,0.295560 +-0.156225,0.562121,-1.573382,0.102726,-0.107523,0.299332 +-0.151832,0.565847,-1.571760,0.105896,-0.103460,0.302926 +-0.147407,0.569416,-1.570244,0.108909,-0.099363,0.306333 +-0.142950,0.572824,-1.568835,0.111759,-0.095239,0.309548 +-0.138461,0.576065,-1.567533,0.114442,-0.091093,0.312566 +-0.133940,0.579136,-1.566340,0.116952,-0.086931,0.315383 +-0.129389,0.582034,-1.565256,0.119285,-0.082759,0.317994 +-0.124806,0.584756,-1.564282,0.121438,-0.078583,0.320394 +-0.120194,0.587297,-1.563416,0.123406,-0.074408,0.322581 +-0.115552,0.589656,-1.562660,0.125186,-0.070241,0.324552 +-0.110880,0.591831,-1.562012,0.126776,-0.066089,0.326304 +-0.106179,0.593820,-1.561471,0.128172,-0.061956,0.327835 +-0.101450,0.595620,-1.561036,0.129373,-0.057849,0.329145 +-0.096694,0.597232,-1.560707,0.130376,-0.053775,0.330231 +-0.091910,0.598654,-1.560481,0.131180,-0.049739,0.331093 +-0.087100,0.599885,-1.560356,0.131784,-0.045748,0.331732 +-0.082264,0.600926,-1.560330,0.132187,-0.041808,0.332147 +-0.077403,0.601776,-1.560402,0.132389,-0.037924,0.332341 +-0.072518,0.602437,-1.560568,0.132390,-0.034102,0.332313 +-0.067610,0.602908,-1.560827,0.132190,-0.030350,0.332065 +-0.062678,0.603192,-1.561174,0.131790,-0.026672,0.331601 +-0.057725,0.603289,-1.561608,0.131191,-0.023074,0.330922 +-0.052750,0.603202,-1.562125,0.130394,-0.019561,0.330032 +-0.047756,0.602932,-1.562721,0.129402,-0.016140,0.328933 +-0.042742,0.602483,-1.563394,0.128217,-0.012816,0.327631 +-0.037711,0.601856,-1.564140,0.126841,-0.009594,0.326128 +-0.032662,0.601054,-1.564955,0.125277,-0.006479,0.324429 +-0.027597,0.600081,-1.565835,0.123528,-0.003476,0.322539 +-0.022516,0.598941,-1.566777,0.121597,-0.000590,0.320463 +-0.017422,0.597636,-1.567777,0.119490,0.002174,0.318206 +-0.012315,0.596172,-1.568831,0.117209,0.004812,0.315774 +-0.007196,0.594552,-1.569935,0.114758,0.007320,0.313173 +-0.002066,0.592780,-1.571085,0.112144,0.009693,0.310409 +0.003074,0.590862,-1.572277,0.109370,0.011929,0.307487 +0.008221,0.588802,-1.573508,0.106441,0.014022,0.304415 +0.013376,0.586604,-1.574773,0.103364,0.015970,0.301200 +0.018537,0.584276,-1.576068,0.100142,0.017770,0.297846 +0.023703,0.581821,-1.577390,0.096784,0.019418,0.294362 +0.028872,0.579245,-1.578736,0.093293,0.020913,0.290755 +0.034043,0.576554,-1.580100,0.089677,0.022251,0.287031 +0.039215,0.573753,-1.581481,0.085941,0.023430,0.283197 +0.044387,0.570849,-1.582873,0.082092,0.024449,0.279260 +0.049557,0.567847,-1.584275,0.078136,0.025305,0.275227 +0.054724,0.564753,-1.585682,0.074080,0.025998,0.271106 +0.059887,0.561574,-1.587092,0.069930,0.026527,0.266902 +0.065044,0.558315,-1.588502,0.065694,0.026890,0.262624 +0.070195,0.554983,-1.589909,0.061378,0.027087,0.258277 +0.075337,0.551585,-1.591309,0.056988,0.027117,0.253868 +0.080469,0.548125,-1.592701,0.052531,0.026981,0.249403 +0.085590,0.544612,-1.594083,0.048015,0.026680,0.244890 +0.090699,0.541050,-1.595452,0.043445,0.026213,0.240333 +0.095794,0.537446,-1.596806,0.038829,0.025581,0.235739 +0.100874,0.533807,-1.598143,0.034173,0.024786,0.231115 +0.105938,0.530138,-1.599462,0.029484,0.023829,0.226464 +0.110984,0.526446,-1.600762,0.024768,0.022712,0.221793 +0.116010,0.522737,-1.602040,0.020031,0.021436,0.217106 +0.121016,0.519016,-1.603297,0.015279,0.020003,0.212409 +0.126000,0.515291,-1.604531,0.010520,0.018418,0.207706 +0.130960,0.511566,-1.605742,0.005758,0.016681,0.203000 +0.135896,0.507848,-1.606929,0.000999,0.014796,0.198297 +0.140805,0.504141,-1.608092,-0.003751,0.012765,0.193599 +0.145687,0.500453,-1.609231,-0.008486,0.010594,0.188910 +0.150540,0.496787,-1.610347,-0.013202,0.008285,0.184232 +0.155362,0.493150,-1.611439,-0.017894,0.005841,0.179570 +0.160153,0.489547,-1.612507,-0.022556,0.003268,0.174923 +0.164911,0.485983,-1.613554,-0.027184,0.000570,0.170296 +0.169633,0.482462,-1.614579,-0.031774,-0.002250,0.165689 +0.174320,0.478989,-1.615583,-0.036322,-0.005187,0.161104 +0.178970,0.475569,-1.616568,-0.040824,-0.008234,0.156542 +0.183580,0.472207,-1.617535,-0.045276,-0.011389,0.152003 +0.188150,0.468907,-1.618486,-0.049675,-0.014645,0.147488 +0.192678,0.465672,-1.619421,-0.054018,-0.017997,0.142997 +0.197163,0.462508,-1.620343,-0.058303,-0.021440,0.138530 +0.201603,0.459417,-1.621254,-0.062526,-0.024968,0.134085 +0.205998,0.456403,-1.622155,-0.066686,-0.028576,0.129663 +0.210344,0.453470,-1.623048,-0.070780,-0.032257,0.125262 +0.214641,0.450621,-1.623936,-0.074807,-0.036007,0.120881 +0.218888,0.447858,-1.624820,-0.078765,-0.039818,0.116517 +0.223082,0.445186,-1.625703,-0.082654,-0.043686,0.112170 +0.227223,0.442607,-1.626587,-0.086472,-0.047604,0.107836 +0.231308,0.440123,-1.627474,-0.090218,-0.051567,0.103514 +0.235337,0.437737,-1.628367,-0.093893,-0.055567,0.099201 +0.239307,0.435450,-1.629267,-0.097496,-0.059600,0.094894 +0.243218,0.433266,-1.630176,-0.101027,-0.063659,0.090589 +0.247067,0.431185,-1.631098,-0.104487,-0.067738,0.086285 +0.250852,0.429211,-1.632034,-0.107875,-0.071831,0.081977 +0.254573,0.427343,-1.632987,-0.111194,-0.075932,0.077663 +0.258227,0.425584,-1.633957,-0.114443,-0.080035,0.073338 +0.261814,0.423935,-1.634949,-0.117625,-0.084135,0.069000 +0.265330,0.422397,-1.635962,-0.120740,-0.088226,0.064644 +0.268775,0.420970,-1.636999,-0.123790,-0.092302,0.060266 +0.272147,0.419657,-1.638062,-0.126777,-0.096357,0.055864 +0.275444,0.418457,-1.639153,-0.129703,-0.100386,0.051434 +0.278665,0.417370,-1.640272,-0.132569,-0.104384,0.046971 +0.281807,0.416399,-1.641420,-0.135378,-0.108346,0.042472 +0.284869,0.415541,-1.642600,-0.138133,-0.112267,0.037933 +0.287848,0.414799,-1.643812,-0.140835,-0.116141,0.033351 +0.290745,0.414171,-1.645057,-0.143488,-0.119964,0.028723 +0.293555,0.413658,-1.646335,-0.146093,-0.123732,0.024045 +0.296278,0.413260,-1.647646,-0.148654,-0.127440,0.019314 +0.298912,0.412975,-1.648991,-0.151173,-0.131083,0.014528 +0.301455,0.412805,-1.650371,-0.153653,-0.134659,0.009682 +0.303906,0.412748,-1.651783,-0.156096,-0.138163,0.004775 +0.306261,0.412804,-1.653229,-0.158507,-0.141591,-0.000196 +0.308520,0.412972,-1.654708,-0.160886,-0.144940,-0.005233 +0.310680,0.413251,-1.656218,-0.163238,-0.148208,-0.010338 +0.312740,0.413641,-1.657758,-0.165565,-0.151391,-0.015512 +0.314698,0.414141,-1.659328,-0.167869,-0.154486,-0.020757 +0.316552,0.414749,-1.660925,-0.170153,-0.157490,-0.026075 +0.318299,0.415465,-1.662547,-0.172421,-0.160403,-0.031465 +0.319940,0.416288,-1.664193,-0.174673,-0.163221,-0.036929 +0.321470,0.417217,-1.665861,-0.176914,-0.165943,-0.042466 +0.322890,0.418251,-1.667547,-0.179144,-0.168568,-0.048076 +0.324196,0.419387,-1.669249,-0.181367,-0.171093,-0.053759 +0.325387,0.420626,-1.670964,-0.183585,-0.173519,-0.059514 +0.326461,0.421965,-1.672689,-0.185798,-0.175843,-0.065340 +0.327417,0.423404,-1.674420,-0.188010,-0.178066,-0.071234 +0.328253,0.424941,-1.676153,-0.190221,-0.180187,-0.077196 +0.328968,0.426575,-1.677886,-0.192434,-0.182206,-0.083222 +0.329558,0.428305,-1.679614,-0.194649,-0.184123,-0.089310 +0.330024,0.430128,-1.681332,-0.196868,-0.185938,-0.095457 +0.330364,0.432044,-1.683036,-0.199091,-0.187652,-0.101658 +0.330575,0.434050,-1.684722,-0.201319,-0.189265,-0.107912 +0.330657,0.436147,-1.686386,-0.203553,-0.190779,-0.114212 +0.330608,0.438331,-1.688021,-0.205793,-0.192194,-0.120555 +0.330427,0.440602,-1.689624,-0.208039,-0.193513,-0.126935 +0.330112,0.442958,-1.691188,-0.210292,-0.194735,-0.133348 +0.329663,0.445397,-1.692710,-0.212550,-0.195864,-0.139787 +0.329078,0.447919,-1.694183,-0.214813,-0.196901,-0.146247 +0.328356,0.450520,-1.695602,-0.217081,-0.197847,-0.152721 +0.327497,0.453200,-1.696962,-0.219352,-0.198706,-0.159203 +0.326499,0.455958,-1.698258,-0.221626,-0.199479,-0.165685 +0.325361,0.458790,-1.699483,-0.223901,-0.200169,-0.172161 +0.324084,0.461697,-1.700633,-0.226175,-0.200779,-0.178623 +0.322666,0.464675,-1.701701,-0.228447,-0.201311,-0.185063 +0.321106,0.467724,-1.702683,-0.230714,-0.201767,-0.191473 +0.319405,0.470842,-1.703573,-0.232975,-0.202152,-0.197846 +0.317562,0.474026,-1.704365,-0.235227,-0.202468,-0.204172 +0.315578,0.477276,-1.705054,-0.237468,-0.202717,-0.210444 +0.313451,0.480588,-1.705636,-0.239694,-0.202904,-0.216652 +0.311181,0.483963,-1.706104,-0.241904,-0.203031,-0.222788 +0.308771,0.487397,-1.706454,-0.244093,-0.203102,-0.228843 +0.306218,0.490889,-1.706681,-0.246259,-0.203120,-0.234807 +0.303524,0.494437,-1.706780,-0.248398,-0.203087,-0.240672 +0.300690,0.498039,-1.706747,-0.250508,-0.203009,-0.246429 +0.297716,0.501693,-1.706578,-0.252583,-0.202887,-0.252068 +0.294603,0.505396,-1.706267,-0.254621,-0.202726,-0.257580 +0.291352,0.509148,-1.705813,-0.256618,-0.202528,-0.262957 +0.287964,0.512945,-1.705210,-0.258569,-0.202297,-0.268189 +0.284440,0.516786,-1.704455,-0.260472,-0.202035,-0.273267 +0.280782,0.520668,-1.703545,-0.262322,-0.201747,-0.278182 +0.276991,0.524590,-1.702479,-0.264114,-0.201436,-0.282926 +0.273070,0.528548,-1.701251,-0.265845,-0.201103,-0.287490 +0.269019,0.532541,-1.699862,-0.267512,-0.200753,-0.291866 +0.264840,0.536565,-1.698308,-0.269108,-0.200389,-0.296045 +0.260537,0.540620,-1.696589,-0.270632,-0.200012,-0.300021 +0.256111,0.544701,-1.694702,-0.272078,-0.199626,-0.303784 +0.251564,0.548807,-1.692648,-0.273443,-0.199233,-0.307328 +0.246900,0.552935,-1.690425,-0.274722,-0.198836,-0.310646 +0.242121,0.557082,-1.688034,-0.275912,-0.198437,-0.313731 +0.237230,0.561245,-1.685474,-0.277010,-0.198039,-0.316577 +0.232229,0.565422,-1.682747,-0.278011,-0.197642,-0.319178 +0.227122,0.569609,-1.679853,-0.278911,-0.197250,-0.321528 +0.221913,0.573804,-1.676794,-0.279709,-0.196864,-0.323621 +0.216605,0.578004,-1.673572,-0.280399,-0.196486,-0.325454 +0.211201,0.582206,-1.670189,-0.280980,-0.196117,-0.327022 +0.205705,0.586406,-1.666647,-0.281447,-0.195757,-0.328321 +0.200121,0.590602,-1.662949,-0.281800,-0.195410,-0.329348 +0.194452,0.594790,-1.659100,-0.282034,-0.195074,-0.330099 +0.188704,0.598967,-1.655102,-0.282148,-0.194752,-0.330574 +0.182880,0.603130,-1.650961,-0.282139,-0.194444,-0.330769 +0.176985,0.607275,-1.646680,-0.282006,-0.194149,-0.330683 +0.171023,0.611399,-1.642265,-0.281747,-0.193869,-0.330317 +0.164998,0.615499,-1.637720,-0.281361,-0.193603,-0.329668 +0.158915,0.619570,-1.633053,-0.280846,-0.193351,-0.328739 +0.152779,0.623610,-1.628269,-0.280201,-0.193114,-0.327530 +0.146595,0.627615,-1.623374,-0.279427,-0.192890,-0.326041 +0.140368,0.631581,-1.618376,-0.278523,-0.192678,-0.324276 +0.134102,0.635505,-1.613280,-0.277488,-0.192479,-0.322237 +0.127804,0.639383,-1.608096,-0.276324,-0.192290,-0.319926 +0.121477,0.643211,-1.602831,-0.275030,-0.192111,-0.317349 +0.115127,0.646987,-1.597492,-0.273608,-0.191941,-0.314508 +0.108759,0.650706,-1.592089,-0.272059,-0.191778,-0.311409 +0.102379,0.654364,-1.586630,-0.270384,-0.191620,-0.308056 +0.095992,0.657959,-1.581123,-0.268585,-0.191466,-0.304457 +0.089603,0.661486,-1.575578,-0.266664,-0.191313,-0.300617 +0.083218,0.664942,-1.570004,-0.264624,-0.191160,-0.296543 +0.076841,0.668323,-1.564410,-0.262468,-0.191004,-0.292243 +0.070479,0.671627,-1.558807,-0.260198,-0.190844,-0.287724 +0.064137,0.674849,-1.553204,-0.257818,-0.190676,-0.282995 +0.057819,0.677986,-1.547611,-0.255332,-0.190499,-0.278065 +0.051532,0.681034,-1.542037,-0.252743,-0.190309,-0.272942 +0.045281,0.683991,-1.536494,-0.250055,-0.190104,-0.267637 +0.039071,0.686854,-1.530992,-0.247274,-0.189881,-0.262159 +0.032906,0.689618,-1.525539,-0.244404,-0.189637,-0.256519 +0.026794,0.692282,-1.520148,-0.241449,-0.189370,-0.250727 +0.020737,0.694842,-1.514827,-0.238416,-0.189076,-0.244795 +0.014742,0.697295,-1.509588,-0.235310,-0.188753,-0.238734 +0.008814,0.699639,-1.504439,-0.232135,-0.188397,-0.232555 +0.002956,0.701870,-1.499392,-0.228900,-0.188005,-0.226271 +-0.002825,0.703988,-1.494457,-0.225608,-0.187574,-0.219893 +-0.008525,0.705988,-1.489642,-0.222268,-0.187101,-0.213433 +-0.014141,0.707870,-1.484958,-0.218885,-0.186584,-0.206905 +-0.019666,0.709630,-1.480414,-0.215466,-0.186018,-0.200320 +-0.025098,0.711267,-1.476020,-0.212018,-0.185401,-0.193692 +-0.030432,0.712779,-1.471785,-0.208547,-0.184730,-0.187032 +-0.035663,0.714165,-1.467716,-0.205062,-0.184002,-0.180354 +-0.040789,0.715423,-1.463824,-0.201568,-0.183214,-0.173670 +-0.045805,0.716552,-1.460116,-0.198074,-0.182363,-0.166994 +-0.050708,0.717551,-1.456600,-0.194586,-0.181446,-0.160337 +-0.055494,0.718419,-1.453284,-0.191112,-0.180462,-0.153713 +-0.060160,0.719154,-1.450174,-0.187660,-0.179406,-0.147133 +-0.064704,0.719758,-1.447279,-0.184236,-0.178277,-0.140610 +-0.069122,0.720228,-1.444605,-0.180848,-0.177072,-0.134156 +-0.073411,0.720566,-1.442157,-0.177503,-0.175790,-0.127784 +-0.077570,0.720771,-1.439942,-0.174209,-0.174427,-0.121504 +-0.081597,0.720844,-1.437964,-0.170973,-0.172982,-0.115329 +-0.085488,0.720784,-1.436229,-0.167802,-0.171452,-0.109269 +-0.089243,0.720593,-1.434740,-0.164703,-0.169838,-0.103335 +-0.092859,0.720272,-1.433503,-0.161683,-0.168135,-0.097537 +-0.096336,0.719822,-1.432519,-0.158748,-0.166345,-0.091886 +-0.099672,0.719243,-1.431793,-0.155906,-0.164464,-0.086391 +-0.102867,0.718538,-1.431326,-0.153163,-0.162492,-0.081062 +-0.105919,0.717709,-1.431121,-0.150525,-0.160428,-0.075907 +-0.108828,0.716757,-1.431179,-0.147998,-0.158272,-0.070935 +-0.111594,0.715684,-1.431500,-0.145588,-0.156022,-0.066153 +-0.114217,0.714493,-1.432086,-0.143301,-0.153680,-0.061568 +-0.116697,0.713187,-1.432935,-0.141141,-0.151243,-0.057188 +-0.119035,0.711768,-1.434047,-0.139115,-0.148713,-0.053019 +-0.121231,0.710239,-1.435422,-0.137226,-0.146089,-0.049067 +-0.123286,0.708603,-1.437056,-0.135479,-0.143373,-0.045335 +-0.125201,0.706864,-1.438948,-0.133879,-0.140565,-0.041830 +-0.126979,0.705025,-1.441095,-0.132428,-0.137665,-0.038554 +-0.128619,0.703090,-1.443493,-0.131132,-0.134674,-0.035512 +-0.130124,0.701063,-1.446139,-0.129992,-0.131595,-0.032705 +-0.131497,0.698948,-1.449029,-0.129012,-0.128428,-0.030136 +-0.132739,0.696749,-1.452156,-0.128195,-0.125175,-0.027807 +-0.133852,0.694470,-1.455517,-0.127541,-0.121837,-0.025717 +-0.134840,0.692116,-1.459104,-0.127053,-0.118418,-0.023868 +-0.135705,0.689692,-1.462912,-0.126733,-0.114918,-0.022258 +-0.136451,0.687202,-1.466934,-0.126581,-0.111341,-0.020887 +-0.137080,0.684651,-1.471163,-0.126598,-0.107689,-0.019752 +-0.137595,0.682044,-1.475591,-0.126783,-0.103964,-0.018852 +-0.138002,0.679386,-1.480210,-0.127137,-0.100170,-0.018183 +-0.138302,0.676683,-1.485011,-0.127659,-0.096310,-0.017743 +-0.138501,0.673939,-1.489986,-0.128348,-0.092386,-0.017525 +-0.138602,0.671159,-1.495126,-0.129203,-0.088403,-0.017527 +-0.138610,0.668350,-1.500420,-0.130222,-0.084364,-0.017742 +-0.138528,0.665515,-1.505860,-0.131401,-0.080273,-0.018164 +-0.138362,0.662662,-1.511434,-0.132740,-0.076133,-0.018787 +-0.138116,0.659795,-1.517134,-0.134235,-0.071948,-0.019605 +-0.137795,0.656919,-1.522947,-0.135882,-0.067723,-0.020609 +-0.137403,0.654040,-1.528864,-0.137679,-0.063461,-0.021791 +-0.136946,0.651163,-1.534872,-0.139620,-0.059168,-0.023143 +-0.136428,0.648294,-1.540962,-0.141701,-0.054847,-0.024657 +-0.135855,0.645438,-1.547122,-0.143918,-0.050502,-0.026322 +-0.135232,0.642600,-1.553339,-0.146265,-0.046139,-0.028129 +-0.134564,0.639785,-1.559603,-0.148738,-0.041762,-0.030069 +-0.133857,0.636999,-1.565902,-0.151329,-0.037376,-0.032130 +-0.133116,0.634246,-1.572225,-0.154035,-0.032984,-0.034302 +-0.132345,0.631531,-1.578559,-0.156847,-0.028594,-0.036574 +-0.131551,0.628858,-1.584893,-0.159760,-0.024208,-0.038934 +-0.130740,0.626233,-1.591215,-0.162766,-0.019831,-0.041372 +-0.129915,0.623661,-1.597514,-0.165860,-0.015470,-0.043874 +-0.129083,0.621144,-1.603779,-0.169032,-0.011128,-0.046431 +-0.128250,0.618688,-1.609998,-0.172277,-0.006810,-0.049029 +-0.127420,0.616296,-1.616159,-0.175587,-0.002521,-0.051657 +-0.126598,0.613972,-1.622252,-0.178953,0.001733,-0.054302 +-0.125791,0.611720,-1.628266,-0.182368,0.005949,-0.056953 +-0.125003,0.609543,-1.634191,-0.185824,0.010122,-0.059596 +-0.124239,0.607444,-1.640015,-0.189313,0.014247,-0.062221 +-0.123505,0.605426,-1.645729,-0.192826,0.018319,-0.064815 +-0.122805,0.603493,-1.651324,-0.196355,0.022333,-0.067366 +-0.122144,0.601645,-1.656788,-0.199893,0.026287,-0.069862 +-0.121527,0.599886,-1.662115,-0.203430,0.030174,-0.072291 +-0.120959,0.598218,-1.667293,-0.206959,0.033991,-0.074643 +-0.120444,0.596642,-1.672316,-0.210471,0.037733,-0.076906 +-0.119986,0.595159,-1.677176,-0.213957,0.041397,-0.079069 +-0.119591,0.593772,-1.681863,-0.217411,0.044979,-0.081121 +-0.119261,0.592480,-1.686372,-0.220823,0.048474,-0.083051 +-0.119001,0.591284,-1.690695,-0.224186,0.051880,-0.084851 +-0.118815,0.590185,-1.694826,-0.227492,0.055192,-0.086510 +-0.118706,0.589183,-1.698760,-0.230733,0.058407,-0.088020 +-0.118678,0.588278,-1.702491,-0.233902,0.061522,-0.089370 +-0.118733,0.587468,-1.706013,-0.236991,0.064533,-0.090553 +-0.118876,0.586753,-1.709323,-0.239993,0.067438,-0.091561 +-0.119109,0.586133,-1.712418,-0.242901,0.070235,-0.092387 +-0.119435,0.585605,-1.715292,-0.245708,0.072919,-0.093023 +-0.119856,0.585168,-1.717944,-0.248409,0.075490,-0.093464 +-0.120374,0.584821,-1.720371,-0.250996,0.077944,-0.093702 +-0.120993,0.584560,-1.722572,-0.253464,0.080279,-0.093734 +-0.121712,0.584384,-1.724545,-0.255808,0.082494,-0.093554 +-0.122535,0.584290,-1.726290,-0.258021,0.084586,-0.093159 +-0.123463,0.584275,-1.727806,-0.260100,0.086555,-0.092544 +-0.124497,0.584335,-1.729093,-0.262039,0.088398,-0.091707 +-0.125638,0.584467,-1.730153,-0.263833,0.090115,-0.090646 +-0.126887,0.584667,-1.730987,-0.265480,0.091704,-0.089358 +-0.128244,0.584931,-1.731597,-0.266976,0.093164,-0.087843 +-0.129710,0.585256,-1.731985,-0.268316,0.094496,-0.086101 +-0.131285,0.585637,-1.732154,-0.269500,0.095697,-0.084131 +-0.132969,0.586068,-1.732107,-0.270523,0.096769,-0.081935 +-0.134762,0.586546,-1.731849,-0.271384,0.097710,-0.079514 +-0.136663,0.587065,-1.731384,-0.272081,0.098520,-0.076870 +-0.138672,0.587621,-1.730715,-0.272614,0.099201,-0.074005 +-0.140788,0.588207,-1.729850,-0.272980,0.099752,-0.070924 +-0.143009,0.588819,-1.728793,-0.273181,0.100173,-0.067629 +-0.145334,0.589451,-1.727550,-0.273215,0.100465,-0.064126 +-0.147763,0.590097,-1.726127,-0.273082,0.100630,-0.060420 +-0.150292,0.590752,-1.724533,-0.272785,0.100667,-0.056516 +-0.152921,0.591409,-1.722772,-0.272323,0.100578,-0.052420 +-0.155647,0.592062,-1.720855,-0.271699,0.100365,-0.048139 +-0.158467,0.592707,-1.718787,-0.270914,0.100028,-0.043681 +-0.161381,0.593335,-1.716577,-0.269970,0.099569,-0.039053 +-0.164384,0.593943,-1.714233,-0.268871,0.098989,-0.034262 +-0.167474,0.594522,-1.711764,-0.267618,0.098291,-0.029319 +-0.170648,0.595068,-1.709179,-0.266216,0.097476,-0.024232 +-0.173903,0.595574,-1.706487,-0.264668,0.096546,-0.019010 +-0.177237,0.596035,-1.703697,-0.262978,0.095503,-0.013664 +-0.180644,0.596443,-1.700817,-0.261151,0.094349,-0.008203 +-0.184123,0.596794,-1.697859,-0.259191,0.093087,-0.002638 +-0.187669,0.597081,-1.694831,-0.257102,0.091718,0.003020 +-0.191279,0.597299,-1.691742,-0.254891,0.090245,0.008760 +-0.194949,0.597442,-1.688603,-0.252562,0.088671,0.014572 +-0.198675,0.597504,-1.685424,-0.250122,0.086998,0.020442 +-0.202452,0.597480,-1.682213,-0.247576,0.085228,0.026361 +-0.206277,0.597366,-1.678981,-0.244930,0.083364,0.032315 +-0.210146,0.597155,-1.675737,-0.242191,0.081408,0.038293 +-0.214054,0.596844,-1.672490,-0.239365,0.079364,0.044283 +-0.217997,0.596427,-1.669251,-0.236459,0.077234,0.050274 +-0.221971,0.595900,-1.666028,-0.233480,0.075021,0.056252 +-0.225971,0.595259,-1.662831,-0.230434,0.072727,0.062206 +-0.229992,0.594500,-1.659669,-0.227328,0.070356,0.068124 +-0.234031,0.593619,-1.656549,-0.224171,0.067909,0.073995 +-0.238083,0.592613,-1.653482,-0.220967,0.065390,0.079806 +-0.242142,0.591478,-1.650476,-0.217726,0.062802,0.085546 +-0.246206,0.590212,-1.647538,-0.214453,0.060147,0.091203 +-0.250269,0.588812,-1.644676,-0.211157,0.057427,0.096766 +-0.254327,0.587277,-1.641898,-0.207844,0.054647,0.102225 +-0.258375,0.585602,-1.639211,-0.204522,0.051807,0.107569 +-0.262409,0.583789,-1.636622,-0.201197,0.048912,0.112787 +-0.266424,0.581834,-1.634137,-0.197876,0.045963,0.117869 +-0.270417,0.579737,-1.631763,-0.194566,0.042963,0.122806 +-0.274383,0.577497,-1.629506,-0.191275,0.039915,0.127588 +-0.278317,0.575114,-1.627371,-0.188008,0.036822,0.132207 +-0.282216,0.572589,-1.625363,-0.184772,0.033685,0.136653 +-0.286075,0.569920,-1.623487,-0.181574,0.030507,0.140920 +-0.289890,0.567110,-1.621746,-0.178418,0.027291,0.144999 +-0.293658,0.564159,-1.620145,-0.175312,0.024039,0.148884 +-0.297374,0.561069,-1.618687,-0.172261,0.020753,0.152568 +-0.301036,0.557841,-1.617375,-0.169269,0.017436,0.156045 +-0.304638,0.554478,-1.616211,-0.166343,0.014089,0.159310 +-0.308178,0.550982,-1.615198,-0.163487,0.010715,0.162357 +-0.311653,0.547356,-1.614337,-0.160706,0.007315,0.165183 +-0.315058,0.543603,-1.613629,-0.158003,0.003893,0.167784 +-0.318391,0.539727,-1.613075,-0.155383,0.000449,0.170157 +-0.321649,0.535731,-1.612674,-0.152850,-0.003013,0.172298 +-0.324828,0.531620,-1.612428,-0.150407,-0.006494,0.174208 +-0.327926,0.527399,-1.612335,-0.148056,-0.009989,0.175883 +-0.330941,0.523072,-1.612393,-0.145800,-0.013499,0.177324 +-0.333869,0.518644,-1.612602,-0.143643,-0.017020,0.178530 +-0.336708,0.514121,-1.612960,-0.141584,-0.020552,0.179503 +-0.339457,0.509508,-1.613463,-0.139627,-0.024092,0.180243 +-0.342112,0.504812,-1.614110,-0.137772,-0.027639,0.180752 +-0.344672,0.500038,-1.614897,-0.136020,-0.031192,0.181032 +-0.347135,0.495194,-1.615821,-0.134372,-0.034749,0.181087 +-0.349499,0.490286,-1.616877,-0.132828,-0.038308,0.180920 +-0.351763,0.485320,-1.618061,-0.131386,-0.041868,0.180536 +-0.353926,0.480305,-1.619369,-0.130048,-0.045427,0.179939 +-0.355985,0.475247,-1.620795,-0.128811,-0.048985,0.179135 +-0.357940,0.470154,-1.622335,-0.127675,-0.052539,0.178129 +-0.359790,0.465034,-1.623982,-0.126637,-0.056089,0.176928 +-0.361534,0.459895,-1.625731,-0.125695,-0.059632,0.175538 +-0.363172,0.454744,-1.627575,-0.124848,-0.063168,0.173968 +-0.364702,0.449590,-1.629509,-0.124092,-0.066695,0.172225 +-0.366124,0.444441,-1.631525,-0.123424,-0.070212,0.170318 +-0.367439,0.439306,-1.633616,-0.122842,-0.073717,0.168254 +-0.368645,0.434192,-1.635777,-0.122340,-0.077209,0.166044 +-0.369742,0.429108,-1.637998,-0.121915,-0.080687,0.163696 +-0.370732,0.424063,-1.640274,-0.121564,-0.084149,0.161222 +-0.371613,0.419065,-1.642597,-0.121281,-0.087594,0.158630 +-0.372387,0.414122,-1.644958,-0.121061,-0.091020,0.155931 +-0.373052,0.409243,-1.647351,-0.120900,-0.094426,0.153137 +-0.373611,0.404437,-1.649767,-0.120792,-0.097811,0.150258 +-0.374064,0.399711,-1.652200,-0.120732,-0.101173,0.147305 +-0.374411,0.395073,-1.654640,-0.120714,-0.104510,0.144290 +-0.374653,0.390533,-1.657081,-0.120732,-0.107821,0.141224 +-0.374791,0.386098,-1.659515,-0.120781,-0.111104,0.138120 +-0.374827,0.381776,-1.661933,-0.120854,-0.114358,0.134987 +-0.374760,0.377574,-1.664329,-0.120944,-0.117581,0.131840 +-0.374593,0.373500,-1.666695,-0.121047,-0.120771,0.128688 +-0.374326,0.369562,-1.669023,-0.121154,-0.123926,0.125545 +-0.373960,0.365767,-1.671306,-0.121261,-0.127045,0.122421 +-0.373498,0.362121,-1.673537,-0.121359,-0.130126,0.119329 +-0.372940,0.358631,-1.675709,-0.121443,-0.133167,0.116280 +-0.372288,0.355305,-1.677816,-0.121506,-0.136166,0.113286 +-0.371544,0.352147,-1.679850,-0.121541,-0.139121,0.110357 +-0.370708,0.349165,-1.681805,-0.121543,-0.142030,0.107505 +-0.369783,0.346363,-1.683675,-0.121503,-0.144890,0.104741 +-0.368770,0.343747,-1.685455,-0.121418,-0.147701,0.102076 +-0.367670,0.341322,-1.687139,-0.121279,-0.150459,0.099519 +-0.366486,0.339093,-1.688720,-0.121080,-0.153163,0.097081 +-0.365219,0.337064,-1.690195,-0.120817,-0.155810,0.094772 +-0.363871,0.335239,-1.691559,-0.120482,-0.158398,0.092600 +-0.362443,0.333622,-1.692807,-0.120070,-0.160924,0.090576 +-0.360938,0.332215,-1.693935,-0.119577,-0.163387,0.088706 +-0.359356,0.331023,-1.694939,-0.118995,-0.165784,0.087000 +-0.357700,0.330047,-1.695817,-0.118321,-0.168112,0.085465 +-0.355971,0.329289,-1.696564,-0.117549,-0.170369,0.084109 +-0.354172,0.328752,-1.697179,-0.116675,-0.172554,0.082938 +-0.352302,0.328437,-1.697658,-0.115694,-0.174662,0.081958 +-0.350366,0.328344,-1.698001,-0.114603,-0.176692,0.081175 +-0.348363,0.328474,-1.698205,-0.113397,-0.178642,0.080595 +-0.346295,0.328828,-1.698270,-0.112074,-0.180508,0.080221 +-0.344165,0.329405,-1.698194,-0.110630,-0.182289,0.080058 +-0.341973,0.330204,-1.697977,-0.109062,-0.183982,0.080110 +-0.339722,0.331225,-1.697619,-0.107369,-0.185585,0.080379 +-0.337412,0.332465,-1.697120,-0.105547,-0.187095,0.080868 +-0.335045,0.333924,-1.696481,-0.103595,-0.188509,0.081578 +-0.332623,0.335598,-1.695703,-0.101512,-0.189827,0.082511 +-0.330147,0.337485,-1.694788,-0.099296,-0.191044,0.083668 +-0.327618,0.339583,-1.693736,-0.096948,-0.192159,0.085047 +-0.325038,0.341887,-1.692551,-0.094466,-0.193171,0.086650 +-0.322407,0.344393,-1.691234,-0.091852,-0.194076,0.088474 +-0.319727,0.347099,-1.689789,-0.089105,-0.194872,0.090518 +-0.316999,0.349999,-1.688219,-0.086226,-0.195558,0.092779 +-0.314224,0.353088,-1.686526,-0.083217,-0.196132,0.095255 +-0.311403,0.356361,-1.684715,-0.080079,-0.196592,0.097942 +-0.308538,0.359813,-1.682789,-0.076814,-0.196936,0.100836 +-0.305628,0.363437,-1.680753,-0.073425,-0.197163,0.103933 +-0.302675,0.367228,-1.678612,-0.069915,-0.197270,0.107227 +-0.299680,0.371179,-1.676370,-0.066286,-0.197258,0.110713 +-0.296644,0.375284,-1.674031,-0.062542,-0.197124,0.114385 +-0.293567,0.379534,-1.671603,-0.058688,-0.196867,0.118237 +-0.290450,0.383924,-1.669088,-0.054726,-0.196486,0.122260 +-0.287293,0.388446,-1.666495,-0.050663,-0.195981,0.126449 +-0.284098,0.393092,-1.663827,-0.046502,-0.195350,0.130795 +-0.280864,0.397853,-1.661091,-0.042249,-0.194593,0.135289 +-0.277593,0.402723,-1.658293,-0.037909,-0.193711,0.139924 +-0.274284,0.407692,-1.655440,-0.033488,-0.192701,0.144690 +-0.270938,0.412753,-1.652537,-0.028993,-0.191565,0.149578 +-0.267556,0.417896,-1.649591,-0.024429,-0.190302,0.154578 +-0.264138,0.423114,-1.646607,-0.019803,-0.188913,0.159680 +-0.260684,0.428397,-1.643594,-0.015121,-0.187399,0.164875 +-0.257194,0.433736,-1.640557,-0.010392,-0.185759,0.170151 +-0.253669,0.439122,-1.637502,-0.005622,-0.183994,0.175499 +-0.250109,0.444547,-1.634436,-0.000817,-0.182106,0.180908 +-0.246514,0.450001,-1.631366,0.004013,-0.180096,0.186367 +-0.242884,0.455476,-1.628298,0.008861,-0.177966,0.191864 +-0.239219,0.460962,-1.625238,0.013721,-0.175716,0.197389 +-0.235520,0.466450,-1.622193,0.018582,-0.173348,0.202931 +-0.231787,0.471932,-1.619169,0.023439,-0.170865,0.208478 +-0.228019,0.477398,-1.616171,0.028282,-0.168269,0.214020 +-0.224217,0.482840,-1.613206,0.033103,-0.165562,0.219545 +-0.220381,0.488248,-1.610279,0.037895,-0.162747,0.225043 +-0.216511,0.493615,-1.607397,0.042649,-0.159827,0.230501 +-0.212606,0.498931,-1.604564,0.047357,-0.156803,0.235911 +-0.208668,0.504188,-1.601787,0.052011,-0.153681,0.241260 +-0.204695,0.509378,-1.599069,0.056603,-0.150463,0.246538 +-0.200689,0.514493,-1.596417,0.061124,-0.147152,0.251735 +-0.196649,0.519524,-1.593834,0.065567,-0.143753,0.256841 +-0.192575,0.524465,-1.591325,0.069925,-0.140269,0.261846 +-0.188467,0.529308,-1.588895,0.074189,-0.136705,0.266740 +-0.184325,0.534045,-1.586547,0.078351,-0.133064,0.271514 +-0.180150,0.538669,-1.584285,0.082405,-0.129351,0.276158 +-0.175942,0.543175,-1.582112,0.086344,-0.125571,0.280665 +-0.171700,0.547554,-1.580032,0.090160,-0.121729,0.285025 +-0.167425,0.551801,-1.578048,0.093846,-0.117830,0.289232 +-0.163116,0.555909,-1.576162,0.097396,-0.113877,0.293276 +-0.158775,0.559874,-1.574377,0.100804,-0.109878,0.297151 +-0.154401,0.563690,-1.572695,0.104064,-0.105837,0.300850 +-0.149995,0.567351,-1.571117,0.107169,-0.101759,0.304366 +-0.145556,0.570854,-1.569645,0.110115,-0.097650,0.307694 +-0.141086,0.574193,-1.568280,0.112896,-0.093517,0.310828 +-0.136584,0.577364,-1.567024,0.115507,-0.089363,0.313763 +-0.132050,0.580363,-1.565876,0.117945,-0.085196,0.316494 +-0.127486,0.583188,-1.564838,0.120203,-0.081022,0.319018 +-0.122891,0.585835,-1.563908,0.122279,-0.076845,0.321330 +-0.118266,0.588301,-1.563088,0.124170,-0.072673,0.323427 +-0.113612,0.590584,-1.562377,0.125871,-0.068512,0.325307 +-0.108928,0.592681,-1.561774,0.127380,-0.064366,0.326968 +-0.104215,0.594592,-1.561277,0.128695,-0.060244,0.328407 +-0.099475,0.596314,-1.560887,0.129814,-0.056150,0.329624 +-0.094707,0.597847,-1.560600,0.130734,-0.052091,0.330617 +-0.089912,0.599189,-1.560416,0.131455,-0.048073,0.331386 +-0.085091,0.600341,-1.560333,0.131976,-0.044102,0.331932 +-0.080245,0.601303,-1.560349,0.132295,-0.040185,0.332255 +-0.075374,0.602074,-1.560460,0.132414,-0.036326,0.332356 +-0.070479,0.602656,-1.560665,0.132331,-0.032533,0.332236 +-0.065561,0.603049,-1.560961,0.132047,-0.028810,0.331898 +-0.060620,0.603255,-1.561345,0.131565,-0.025165,0.331345 +-0.055658,0.603275,-1.561813,0.130883,-0.021602,0.330577 +-0.050675,0.603112,-1.562364,0.130005,-0.018127,0.329600 +-0.045673,0.602767,-1.562992,0.128933,-0.014745,0.328416 +-0.040651,0.602243,-1.563696,0.127668,-0.011463,0.327029 +-0.035612,0.601543,-1.564471,0.126213,-0.008285,0.325444 +-0.030556,0.600670,-1.565313,0.124571,-0.005216,0.323665 +-0.025485,0.599627,-1.566220,0.122747,-0.002261,0.321697 +-0.020399,0.598418,-1.567186,0.120742,0.000575,0.319545 +-0.015299,0.597046,-1.568209,0.118562,0.003287,0.317215 +-0.010187,0.595516,-1.569284,0.116209,0.005871,0.314712 +-0.005063,0.593833,-1.570408,0.113690,0.008324,0.312042 +0.000071,0.592000,-1.571576,0.111009,0.010640,0.309212 +0.005214,0.590022,-1.572785,0.108170,0.012817,0.306227 +0.010365,0.587904,-1.574030,0.105179,0.014850,0.303095 +0.015523,0.585651,-1.575308,0.102041,0.016737,0.299821 +0.020686,0.583269,-1.576615,0.098762,0.018474,0.296412 +0.025853,0.580763,-1.577947,0.095347,0.020059,0.292876 +0.031023,0.578139,-1.579301,0.091803,0.021489,0.289219 +0.036195,0.575401,-1.580673,0.088137,0.022761,0.285449 +0.041367,0.572557,-1.582059,0.084353,0.023874,0.281571 +0.046538,0.569611,-1.583456,0.080459,0.024825,0.277594 +0.051707,0.566570,-1.584860,0.076460,0.025614,0.273523 +0.056873,0.563440,-1.586269,0.072365,0.026238,0.269367 +0.062033,0.560227,-1.587679,0.068178,0.026698,0.265131 +0.067188,0.556938,-1.589088,0.063908,0.026992,0.260823 +0.072335,0.553577,-1.590492,0.059560,0.027119,0.256449 +0.077473,0.550153,-1.591890,0.055141,0.027081,0.252017 +0.082601,0.546670,-1.593278,0.050659,0.026876,0.247531 +0.087717,0.543135,-1.594654,0.046120,0.026506,0.242999 +0.092821,0.539555,-1.596017,0.041530,0.025970,0.238426 +0.097910,0.535936,-1.597364,0.036897,0.025270,0.233819 +0.102983,0.532284,-1.598694,0.032226,0.024407,0.229183 +0.108039,0.528604,-1.600005,0.027525,0.023383,0.224523 +0.113077,0.524905,-1.601296,0.022799,0.022200,0.219845 +0.118095,0.521190,-1.602566,0.018055,0.020859,0.215153 +0.123092,0.517467,-1.603813,0.013300,0.019362,0.210453 +0.128066,0.513741,-1.605038,0.008539,0.017713,0.205748 +0.133017,0.510018,-1.606239,0.003777,0.015914,0.201043 +0.137942,0.506304,-1.607416,-0.000979,0.013968,0.196341 +0.142840,0.502604,-1.608569,-0.005723,0.011879,0.191647 +0.147710,0.498925,-1.609698,-0.010451,0.009650,0.186962 +0.152550,0.495271,-1.610804,-0.015157,0.007284,0.182291 +0.157359,0.491647,-1.611886,-0.019837,0.004786,0.177634 +0.162137,0.488059,-1.612945,-0.024485,0.002161,0.172996 +0.166880,0.484512,-1.613983,-0.029098,-0.000589,0.168377 +0.171588,0.481011,-1.614999,-0.033671,-0.003458,0.163779 +0.176259,0.477560,-1.615995,-0.038200,-0.006441,0.159203 +0.180892,0.474163,-1.616973,-0.042682,-0.009534,0.154651 +0.185486,0.470827,-1.617933,-0.047113,-0.012731,0.150122 +0.190039,0.467553,-1.618877,-0.051489,-0.016028,0.145617 +0.194549,0.464347,-1.619806,-0.055808,-0.019419,0.141136 +0.199016,0.461213,-1.620724,-0.060067,-0.022898,0.136678 +0.203437,0.458153,-1.621630,-0.064264,-0.026459,0.132243 +0.207812,0.455173,-1.622528,-0.068397,-0.030099,0.127830 +0.212138,0.452274,-1.623418,-0.072464,-0.033809,0.123437 +0.216414,0.449461,-1.624304,-0.076462,-0.037585,0.119064 +0.220639,0.446736,-1.625188,-0.080392,-0.041421,0.114707 +0.224812,0.444102,-1.626071,-0.084251,-0.045311,0.110366 +0.228929,0.441562,-1.626956,-0.088039,-0.049248,0.106037 +0.232991,0.439118,-1.627845,-0.091756,-0.053227,0.101719 +0.236996,0.436773,-1.628740,-0.095401,-0.057241,0.097408 +0.240942,0.434529,-1.629644,-0.098974,-0.061286,0.093103 +0.244826,0.432388,-1.630558,-0.102475,-0.065354,0.088799 +0.248649,0.430351,-1.631486,-0.105905,-0.069439,0.084494 +0.252408,0.428420,-1.632428,-0.109264,-0.073536,0.080183 +0.256101,0.426598,-1.633388,-0.112554,-0.077639,0.075865 +0.259728,0.424884,-1.634367,-0.115775,-0.081742,0.071535 +0.263285,0.423281,-1.635367,-0.118929,-0.085838,0.067190 +0.266772,0.421790,-1.636390,-0.122017,-0.089924,0.062825 +0.270187,0.420410,-1.637438,-0.125040,-0.093991,0.058438 +0.273528,0.419144,-1.638513,-0.128001,-0.098037,0.054025 +0.276793,0.417991,-1.639615,-0.130902,-0.102054,0.049581 +0.279981,0.416952,-1.640746,-0.133745,-0.106037,0.045103 +0.283090,0.416028,-1.641908,-0.136531,-0.109983,0.040588 +0.286118,0.415218,-1.643101,-0.139263,-0.113884,0.036032 +0.289064,0.414524,-1.644326,-0.141945,-0.117738,0.031432 +0.291924,0.413944,-1.645584,-0.144577,-0.121539,0.026783 +0.294699,0.413478,-1.646876,-0.147164,-0.125282,0.022084 +0.297385,0.413127,-1.648202,-0.149707,-0.128963,0.017330 +0.299982,0.412891,-1.649561,-0.152209,-0.132579,0.012519 +0.302486,0.412767,-1.650954,-0.154674,-0.136125,0.007648 +0.304897,0.412757,-1.652381,-0.157103,-0.139598,0.002715 +0.307212,0.412860,-1.653841,-0.159500,-0.142994,-0.002283 +0.309430,0.413074,-1.655332,-0.161868,-0.146310,-0.007348 +0.311549,0.413400,-1.656855,-0.164209,-0.149542,-0.012482 +0.313567,0.413835,-1.658408,-0.166526,-0.152689,-0.017685 +0.315482,0.414381,-1.659989,-0.168821,-0.155747,-0.022961 +0.317292,0.415034,-1.661597,-0.171098,-0.158714,-0.028308 +0.318995,0.415795,-1.663229,-0.173359,-0.161587,-0.033729 +0.320590,0.416662,-1.664885,-0.175607,-0.164366,-0.039223 +0.322074,0.417634,-1.666560,-0.177843,-0.167047,-0.044791 +0.323447,0.418711,-1.668253,-0.180070,-0.169631,-0.050432 +0.324705,0.419890,-1.669961,-0.182290,-0.172115,-0.056145 +0.325848,0.421171,-1.671680,-0.184506,-0.174498,-0.061929 +0.326874,0.422552,-1.673408,-0.186719,-0.176780,-0.067784 +0.327780,0.424032,-1.675141,-0.188930,-0.178961,-0.073706 +0.328565,0.425609,-1.676875,-0.191142,-0.181039,-0.079695 +0.329229,0.427283,-1.678606,-0.193355,-0.183016,-0.085747 +0.329768,0.429052,-1.680330,-0.195571,-0.184890,-0.091860 +0.330181,0.430914,-1.682043,-0.197792,-0.186663,-0.098030 +0.330467,0.432867,-1.683740,-0.200017,-0.188335,-0.104254 +0.330625,0.434912,-1.685417,-0.202248,-0.189907,-0.110527 +0.330652,0.437045,-1.687070,-0.204484,-0.191380,-0.116846 +0.330548,0.439265,-1.688692,-0.206727,-0.192755,-0.123205 +0.330312,0.441572,-1.690279,-0.208976,-0.194033,-0.129600 +0.329942,0.443963,-1.691827,-0.211230,-0.195216,-0.136024 +0.329436,0.446436,-1.693329,-0.213491,-0.196306,-0.142473 +0.328794,0.448991,-1.694780,-0.215756,-0.197305,-0.148939 +0.328015,0.451626,-1.696175,-0.218025,-0.198215,-0.155417 +0.327099,0.454338,-1.697509,-0.220298,-0.199038,-0.161900 +0.326043,0.457127,-1.698776,-0.222572,-0.199776,-0.168380 +0.324847,0.459991,-1.699971,-0.224847,-0.200432,-0.174851 +0.323511,0.462927,-1.701087,-0.227120,-0.201009,-0.181305 +0.322034,0.465935,-1.702121,-0.229391,-0.201509,-0.187734 +0.320416,0.469013,-1.703065,-0.231656,-0.201936,-0.194130 +0.318656,0.472158,-1.703914,-0.233913,-0.202291,-0.200484 +0.316754,0.475370,-1.704665,-0.236161,-0.202579,-0.206789 +0.314710,0.478646,-1.705310,-0.238396,-0.202802,-0.213035 +0.312524,0.481985,-1.705845,-0.240616,-0.202964,-0.219214 +0.310196,0.485385,-1.706264,-0.242817,-0.203067,-0.225317 +0.307726,0.488843,-1.706564,-0.244997,-0.203115,-0.231336 +0.305115,0.492358,-1.706738,-0.247153,-0.203112,-0.237260 +0.302362,0.495929,-1.706783,-0.249280,-0.203060,-0.243081 +0.299470,0.499553,-1.706693,-0.251375,-0.202963,-0.248790 +0.296438,0.503227,-1.706466,-0.253436,-0.202825,-0.254377 +0.293267,0.506951,-1.706096,-0.255457,-0.202648,-0.259834 +0.289959,0.510722,-1.705580,-0.257435,-0.202436,-0.265152 +0.286514,0.514538,-1.704914,-0.259367,-0.202191,-0.270320 +0.282935,0.518396,-1.704095,-0.261248,-0.201919,-0.275332 +0.279221,0.522295,-1.703121,-0.263074,-0.201620,-0.280177 +0.275376,0.526232,-1.701988,-0.264842,-0.201300,-0.284847 +0.271400,0.530205,-1.700693,-0.266547,-0.200960,-0.289334 +0.267296,0.534211,-1.699236,-0.268185,-0.200603,-0.293629 +0.263065,0.538249,-1.697613,-0.269751,-0.200233,-0.297724 +0.258710,0.542315,-1.695824,-0.271243,-0.199852,-0.301612 +0.254234,0.546406,-1.693868,-0.272656,-0.199463,-0.305286 +0.249638,0.550522,-1.691744,-0.273986,-0.199068,-0.308737 +0.244926,0.554658,-1.689451,-0.275228,-0.198670,-0.311958 +0.240099,0.558812,-1.686989,-0.276380,-0.198271,-0.314945 +0.235162,0.562981,-1.684360,-0.277438,-0.197873,-0.317689 +0.230117,0.567163,-1.681563,-0.278398,-0.197479,-0.320186 +0.224968,0.571354,-1.678601,-0.279256,-0.197089,-0.322430 +0.219717,0.575551,-1.675473,-0.280009,-0.196706,-0.324416 +0.214368,0.579752,-1.672184,-0.280654,-0.196331,-0.326139 +0.208925,0.583954,-1.668734,-0.281188,-0.195966,-0.327595 +0.203392,0.588153,-1.665127,-0.281608,-0.195611,-0.328781 +0.197773,0.592346,-1.661366,-0.281912,-0.195269,-0.329694 +0.192071,0.596530,-1.657454,-0.282096,-0.194939,-0.330331 +0.186290,0.600701,-1.653396,-0.282159,-0.194622,-0.330689 +0.180436,0.604857,-1.649196,-0.282099,-0.194319,-0.330767 +0.174512,0.608994,-1.644859,-0.281914,-0.194031,-0.330565 +0.168523,0.613108,-1.640389,-0.281602,-0.193757,-0.330081 +0.162474,0.617196,-1.635793,-0.281162,-0.193497,-0.329316 +0.156369,0.621255,-1.631077,-0.280593,-0.193251,-0.328270 +0.150212,0.625280,-1.626246,-0.279895,-0.193019,-0.326944 +0.144010,0.629269,-1.621307,-0.279067,-0.192800,-0.325340 +0.137766,0.633218,-1.616267,-0.278108,-0.192594,-0.323461 +0.131486,0.637124,-1.611134,-0.277020,-0.192399,-0.321308 +0.125175,0.640982,-1.605915,-0.275801,-0.192215,-0.318886 +0.118837,0.644789,-1.600618,-0.274454,-0.192040,-0.316198 +0.112480,0.648541,-1.595252,-0.272979,-0.191872,-0.313249 +0.106106,0.652235,-1.589824,-0.271377,-0.191712,-0.310044 +0.099722,0.655868,-1.584344,-0.269650,-0.191555,-0.306589 +0.093334,0.659435,-1.578820,-0.267800,-0.191402,-0.302889 +0.086946,0.662932,-1.573262,-0.265830,-0.191249,-0.298950 +0.080563,0.666358,-1.567678,-0.263741,-0.191096,-0.294782 +0.074192,0.669707,-1.562080,-0.261537,-0.190938,-0.290389 +0.067838,0.672977,-1.556475,-0.259221,-0.190775,-0.285782 +0.061505,0.676164,-1.550875,-0.256796,-0.190604,-0.280968 +0.055200,0.679265,-1.545289,-0.254267,-0.190421,-0.275957 +0.048927,0.682276,-1.539727,-0.251636,-0.190226,-0.270757 +0.042692,0.685194,-1.534200,-0.248909,-0.190014,-0.265378 +0.036500,0.688016,-1.528717,-0.246090,-0.189782,-0.259832 +0.030357,0.690739,-1.523288,-0.243185,-0.189529,-0.254127 +0.024267,0.693360,-1.517925,-0.240197,-0.189251,-0.248276 +0.018235,0.695875,-1.512637,-0.237132,-0.188946,-0.242289 +0.012267,0.698283,-1.507434,-0.233997,-0.188609,-0.236177 +0.006368,0.700581,-1.502327,-0.230796,-0.188238,-0.229953 +0.000542,0.702765,-1.497325,-0.227537,-0.187830,-0.223628 +-0.005206,0.704834,-1.492438,-0.224224,-0.187383,-0.217215 +-0.010872,0.706785,-1.487677,-0.220865,-0.186892,-0.210725 +-0.016451,0.708617,-1.483050,-0.217466,-0.186354,-0.204172 +-0.021938,0.710326,-1.478568,-0.214034,-0.185768,-0.197567 +-0.027329,0.711912,-1.474238,-0.210576,-0.185129,-0.190924 +-0.032621,0.713372,-1.470071,-0.207099,-0.184434,-0.184255 +-0.037809,0.714704,-1.466075,-0.203609,-0.183682,-0.177573 +-0.042889,0.715909,-1.462258,-0.200114,-0.182868,-0.170891 +-0.047858,0.716984,-1.458629,-0.196622,-0.181990,-0.164221 +-0.052713,0.717928,-1.455195,-0.193139,-0.181045,-0.157576 +-0.057450,0.718741,-1.451965,-0.189673,-0.180031,-0.150969 +-0.062065,0.719421,-1.448944,-0.186231,-0.178945,-0.144411 +-0.066557,0.719970,-1.446140,-0.182821,-0.177785,-0.137916 +-0.070922,0.720385,-1.443559,-0.179451,-0.176548,-0.131495 +-0.075158,0.720667,-1.441207,-0.176126,-0.175232,-0.125160 +-0.079262,0.720817,-1.439090,-0.172855,-0.173836,-0.118922 +-0.083232,0.720835,-1.437212,-0.169645,-0.172356,-0.112793 +-0.087067,0.720721,-1.435579,-0.166503,-0.170791,-0.106784 +-0.090764,0.720475,-1.434195,-0.163436,-0.169140,-0.100906 +-0.094323,0.720100,-1.433062,-0.160451,-0.167401,-0.095168 +-0.097741,0.719596,-1.432186,-0.157554,-0.165573,-0.089581 +-0.101019,0.718965,-1.431567,-0.154753,-0.163655,-0.084154 +-0.104154,0.718208,-1.431209,-0.152053,-0.161645,-0.078896 +-0.107146,0.717328,-1.431113,-0.149460,-0.159542,-0.073816 +-0.109996,0.716325,-1.431281,-0.146981,-0.157347,-0.068922 +-0.112703,0.715203,-1.431712,-0.144621,-0.155059,-0.064221 +-0.115266,0.713964,-1.432407,-0.142387,-0.152677,-0.059721 +-0.117687,0.712610,-1.433366,-0.140282,-0.150202,-0.055428 +-0.119966,0.711145,-1.434587,-0.138312,-0.147633,-0.051348 +-0.122103,0.709571,-1.436070,-0.136482,-0.144971,-0.047487 +-0.124100,0.707892,-1.437812,-0.134795,-0.142216,-0.043849 +-0.125958,0.706111,-1.439810,-0.133257,-0.139369,-0.040439 +-0.127678,0.704232,-1.442062,-0.131870,-0.136432,-0.037260 +-0.129262,0.702258,-1.444564,-0.130639,-0.133404,-0.034315 +-0.130711,0.700194,-1.447312,-0.129565,-0.130288,-0.031607 +-0.132029,0.698043,-1.450301,-0.128652,-0.127085,-0.029138 +-0.133217,0.695810,-1.453526,-0.127903,-0.123796,-0.026908 +-0.134278,0.693500,-1.456982,-0.127318,-0.120424,-0.024919 +-0.135215,0.691116,-1.460662,-0.126900,-0.116971,-0.023169 +-0.136030,0.688664,-1.464560,-0.126649,-0.113439,-0.021659 +-0.136726,0.686148,-1.468669,-0.126567,-0.109830,-0.020386 +-0.137308,0.683573,-1.472982,-0.126654,-0.106148,-0.019349 +-0.137778,0.680944,-1.477490,-0.126910,-0.102394,-0.018546 +-0.138139,0.678267,-1.482186,-0.127334,-0.098572,-0.017973 +-0.138397,0.675546,-1.487060,-0.127926,-0.094685,-0.017625 +-0.138555,0.672786,-1.492105,-0.128684,-0.090736,-0.017500 +-0.138616,0.669994,-1.497310,-0.129607,-0.086730,-0.017591 +-0.138586,0.667173,-1.502666,-0.130693,-0.082668,-0.017892 +-0.138469,0.664330,-1.508163,-0.131939,-0.078556,-0.018399 +-0.138269,0.661471,-1.513791,-0.133343,-0.074397,-0.019104 +-0.137991,0.658599,-1.519539,-0.134902,-0.070195,-0.020000 +-0.137640,0.655721,-1.525397,-0.136612,-0.065954,-0.021079 +-0.137220,0.652843,-1.531353,-0.138469,-0.061679,-0.022333 +-0.136737,0.649969,-1.537397,-0.140469,-0.057373,-0.023754 +-0.136196,0.647104,-1.543517,-0.142607,-0.053042,-0.025332 +-0.135602,0.644255,-1.549702,-0.144879,-0.048689,-0.027057 +-0.134960,0.641426,-1.555940,-0.147279,-0.044320,-0.028921 +-0.134275,0.638622,-1.562220,-0.149802,-0.039938,-0.030912 +-0.133552,0.635849,-1.568530,-0.152441,-0.035549,-0.033021 +-0.132798,0.633111,-1.574859,-0.155192,-0.031157,-0.035236 +-0.132017,0.630413,-1.581195,-0.158047,-0.026768,-0.037546 +-0.131216,0.627760,-1.587525,-0.161000,-0.022386,-0.039939 +-0.130398,0.625156,-1.593839,-0.164043,-0.018015,-0.042406 +-0.129570,0.622606,-1.600126,-0.167170,-0.013661,-0.044932 +-0.128736,0.620114,-1.606372,-0.170374,-0.009328,-0.047508 +-0.127904,0.617684,-1.612568,-0.173647,-0.005022,-0.050120 +-0.127077,0.615320,-1.618703,-0.176981,-0.000747,-0.052756 +-0.126260,0.613026,-1.624764,-0.180368,0.003492,-0.055405 +-0.125460,0.610805,-1.630742,-0.183801,0.007691,-0.058054 +-0.124682,0.608660,-1.636626,-0.187272,0.011844,-0.060691 +-0.123930,0.606595,-1.642406,-0.190772,0.015947,-0.063305 +-0.123209,0.604612,-1.648072,-0.194293,0.019996,-0.065882 +-0.122525,0.602713,-1.653613,-0.197826,0.023986,-0.068411 +-0.121882,0.600903,-1.659022,-0.201365,0.027912,-0.070881 +-0.121285,0.599181,-1.664288,-0.204900,0.031771,-0.073280 +-0.120738,0.597551,-1.669403,-0.208422,0.035557,-0.075596 +-0.120246,0.596014,-1.674358,-0.211925,0.039267,-0.077818 +-0.119814,0.594571,-1.679147,-0.215399,0.042898,-0.079936 +-0.119445,0.593223,-1.683761,-0.218836,0.046444,-0.081939 +-0.119144,0.591971,-1.688193,-0.222229,0.049902,-0.083817 +-0.118914,0.590815,-1.692437,-0.225569,0.053269,-0.085559 +-0.118760,0.589757,-1.696487,-0.228849,0.056541,-0.087157 +-0.118684,0.588795,-1.700337,-0.232061,0.059715,-0.088601 +-0.118690,0.587929,-1.703982,-0.235197,0.062787,-0.089883 +-0.118782,0.587159,-1.707416,-0.238250,0.065755,-0.090994 +-0.118962,0.586484,-1.710637,-0.241214,0.068615,-0.091927 +-0.119233,0.585902,-1.713640,-0.244081,0.071365,-0.092675 +-0.119598,0.585412,-1.716422,-0.246845,0.074003,-0.093230 +-0.120060,0.585013,-1.718981,-0.249499,0.076525,-0.093588 +-0.120619,0.584702,-1.721315,-0.252038,0.078930,-0.093741 +-0.121280,0.584477,-1.723421,-0.254455,0.081215,-0.093685 +-0.122042,0.584335,-1.725299,-0.256745,0.083379,-0.093416 +-0.122909,0.584274,-1.726948,-0.258903,0.085420,-0.092930 +-0.123880,0.584291,-1.728369,-0.260924,0.087337,-0.092223 +-0.124958,0.584381,-1.729562,-0.262803,0.089128,-0.091293 +-0.126144,0.584542,-1.730528,-0.264537,0.090792,-0.090138 +-0.127438,0.584769,-1.731268,-0.266121,0.092327,-0.088756 +-0.128840,0.585059,-1.731785,-0.267553,0.093734,-0.087146 +-0.130352,0.585408,-1.732082,-0.268828,0.095011,-0.085309 +-0.131972,0.585810,-1.732160,-0.269945,0.096159,-0.083245 +-0.133702,0.586262,-1.732025,-0.270901,0.097176,-0.080955 +-0.135540,0.586757,-1.731680,-0.271694,0.098063,-0.078441 +-0.137486,0.587292,-1.731130,-0.272323,0.098819,-0.075705 +-0.139539,0.587861,-1.730379,-0.272786,0.099446,-0.072750 +-0.141699,0.588459,-1.729433,-0.273084,0.099942,-0.069579 +-0.143964,0.589080,-1.728298,-0.273215,0.100310,-0.066197 +-0.146332,0.589718,-1.726979,-0.273180,0.100549,-0.062609 +-0.148803,0.590369,-1.725484,-0.272979,0.100660,-0.058819 +-0.151374,0.591025,-1.723820,-0.272613,0.100645,-0.054835 +-0.154043,0.591681,-1.721993,-0.272083,0.100504,-0.050661 +-0.156809,0.592332,-1.720012,-0.271392,0.100239,-0.046306 +-0.159668,0.592970,-1.717884,-0.270540,0.099851,-0.041776 +-0.162619,0.593591,-1.715617,-0.269532,0.099342,-0.037079 +-0.165659,0.594188,-1.713221,-0.268368,0.098713,-0.032224 +-0.168784,0.594754,-1.710702,-0.267053,0.097966,-0.027220 +-0.171993,0.595284,-1.708072,-0.265590,0.097103,-0.022076 +-0.175281,0.595772,-1.705337,-0.263982,0.096126,-0.016801 +-0.178646,0.596211,-1.702509,-0.262234,0.095036,-0.011405 +-0.182083,0.596596,-1.699596,-0.260351,0.093837,-0.005900 +-0.185591,0.596921,-1.696607,-0.258337,0.092530,-0.000295 +-0.189164,0.597180,-1.693553,-0.256197,0.091118,0.005399 +-0.192799,0.597368,-1.690442,-0.253936,0.089603,0.011170 +-0.196492,0.597478,-1.687285,-0.251560,0.087987,0.017007 +-0.200240,0.597505,-1.684091,-0.249075,0.086273,0.022899 +-0.204038,0.597444,-1.680870,-0.246487,0.084463,0.028834 +-0.207882,0.597290,-1.677632,-0.243802,0.082561,0.034800 +-0.211767,0.597038,-1.674386,-0.241026,0.080569,0.040784 +-0.215690,0.596684,-1.671141,-0.238166,0.078489,0.046776 +-0.219647,0.596221,-1.667908,-0.235228,0.076324,0.052763 +-0.223632,0.595648,-1.664695,-0.232220,0.074077,0.058733 +-0.227641,0.594958,-1.661511,-0.229149,0.071750,0.064673 +-0.231671,0.594148,-1.658365,-0.226021,0.069347,0.070573 +-0.235715,0.593216,-1.655267,-0.222843,0.066870,0.076420 +-0.239771,0.592156,-1.652224,-0.219623,0.064322,0.082203 +-0.243833,0.590968,-1.649245,-0.216368,0.061705,0.087910 +-0.247897,0.589646,-1.646337,-0.213084,0.059023,0.093529 +-0.251958,0.588190,-1.643509,-0.209780,0.056278,0.099051 +-0.256012,0.586597,-1.640768,-0.206463,0.053472,0.104463 +-0.260055,0.584865,-1.638121,-0.203138,0.050609,0.109755 +-0.264082,0.582993,-1.635575,-0.199814,0.047691,0.114918 +-0.268089,0.580979,-1.633136,-0.196497,0.044721,0.119941 +-0.272070,0.578822,-1.630810,-0.193195,0.041701,0.124815 +-0.276024,0.576523,-1.628603,-0.189913,0.038634,0.129530 +-0.279943,0.574081,-1.626520,-0.186658,0.035522,0.134078 +-0.283826,0.571496,-1.624566,-0.183437,0.032368,0.138451 +-0.287668,0.568768,-1.622746,-0.180255,0.029174,0.142640 +-0.291464,0.565899,-1.621063,-0.177120,0.025943,0.146640 +-0.295211,0.562890,-1.619521,-0.174036,0.022676,0.150442 +-0.298905,0.559742,-1.618123,-0.171009,0.019377,0.154040 +-0.302542,0.556458,-1.616873,-0.168044,0.016047,0.157429 +-0.306119,0.553039,-1.615772,-0.165146,0.012688,0.160604 +-0.309632,0.549489,-1.614821,-0.162321,0.009303,0.163560 +-0.313078,0.545809,-1.614024,-0.159572,0.005894,0.166293 +-0.316454,0.542005,-1.613380,-0.156903,0.002463,0.168799 +-0.319756,0.538079,-1.612889,-0.154319,-0.000989,0.171076 +-0.322981,0.534035,-1.612553,-0.151823,-0.004459,0.173121 +-0.326127,0.529877,-1.612371,-0.149417,-0.007946,0.174933 +-0.329191,0.525611,-1.612341,-0.147106,-0.011448,0.176511 +-0.332170,0.521242,-1.612462,-0.144891,-0.014962,0.177854 +-0.335061,0.516773,-1.612733,-0.142774,-0.018488,0.178963 +-0.337863,0.512212,-1.613152,-0.140758,-0.022023,0.179839 +-0.340573,0.507564,-1.613715,-0.138843,-0.025567,0.180482 +-0.343189,0.502835,-1.614421,-0.137031,-0.029117,0.180896 +-0.345708,0.498031,-1.615265,-0.135322,-0.032671,0.181082 +-0.348131,0.493159,-1.616244,-0.133717,-0.036229,0.181045 +-0.350453,0.488226,-1.617354,-0.132215,-0.039789,0.180787 +-0.352675,0.483239,-1.618590,-0.130817,-0.043349,0.180313 +-0.354795,0.478205,-1.619948,-0.129521,-0.046908,0.179629 +-0.356811,0.473132,-1.621422,-0.128326,-0.050464,0.178740 +-0.358723,0.468027,-1.623007,-0.127231,-0.054017,0.177652 +-0.360529,0.462898,-1.624697,-0.126233,-0.057564,0.176372 +-0.362229,0.457753,-1.626487,-0.125331,-0.061104,0.174907 +-0.363822,0.452600,-1.628369,-0.124523,-0.064637,0.173264 +-0.365307,0.447447,-1.630338,-0.123804,-0.068159,0.171451 +-0.366684,0.442303,-1.632386,-0.123172,-0.071672,0.169477 +-0.367954,0.437175,-1.634507,-0.122623,-0.075172,0.167352 +-0.369115,0.432073,-1.636694,-0.122154,-0.078658,0.165083 +-0.370167,0.427004,-1.638939,-0.121761,-0.082129,0.162682 +-0.371112,0.421977,-1.641235,-0.121438,-0.085584,0.160157 +-0.371948,0.417001,-1.643575,-0.121182,-0.089022,0.157520 +-0.372677,0.412084,-1.645950,-0.120987,-0.092440,0.154780 +-0.373298,0.407234,-1.648354,-0.120849,-0.095837,0.151949 +-0.373813,0.402460,-1.650778,-0.120761,-0.099212,0.149038 +-0.374221,0.397770,-1.653214,-0.120720,-0.102564,0.146058 +-0.374525,0.393172,-1.655656,-0.120717,-0.105891,0.143020 +-0.374723,0.388675,-1.658095,-0.120749,-0.109190,0.139937 +-0.374819,0.384286,-1.660523,-0.120809,-0.112461,0.136819 +-0.374811,0.380012,-1.662933,-0.120890,-0.115702,0.133679 +-0.374703,0.375863,-1.665317,-0.120986,-0.118912,0.130528 +-0.374494,0.371845,-1.667668,-0.121091,-0.122088,0.127379 +-0.374185,0.367965,-1.669979,-0.121199,-0.125228,0.124242 +-0.373780,0.364231,-1.672241,-0.121303,-0.128332,0.121130 +-0.373277,0.360650,-1.674448,-0.121396,-0.131396,0.118055 +-0.372680,0.357227,-1.676594,-0.121472,-0.134420,0.115027 +-0.371990,0.353970,-1.678671,-0.121524,-0.137401,0.112059 +-0.371207,0.350885,-1.680673,-0.121546,-0.140337,0.109161 +-0.370334,0.347977,-1.682594,-0.121532,-0.143226,0.106344 +-0.369372,0.345252,-1.684427,-0.121474,-0.146066,0.103620 +-0.368323,0.342715,-1.686168,-0.121367,-0.148855,0.100998 +-0.367188,0.340371,-1.687809,-0.121204,-0.151591,0.098490 +-0.365969,0.338225,-1.689347,-0.120979,-0.154271,0.096104 +-0.364668,0.336280,-1.690776,-0.120686,-0.156894,0.093851 +-0.363287,0.334541,-1.692092,-0.120320,-0.159456,0.091740 +-0.361826,0.333011,-1.693291,-0.119875,-0.161957,0.089778 +-0.360289,0.331693,-1.694368,-0.119346,-0.164392,0.087976 +-0.358676,0.330591,-1.695320,-0.118726,-0.166761,0.086341 +-0.356990,0.329705,-1.696144,-0.118012,-0.169060,0.084879 +-0.355231,0.329039,-1.696836,-0.117198,-0.171287,0.083599 +-0.353402,0.328594,-1.697395,-0.116280,-0.173440,0.082507 +-0.351505,0.328371,-1.697818,-0.115254,-0.175516,0.081608 +-0.349540,0.328371,-1.698103,-0.114115,-0.177513,0.080909 +-0.347510,0.328594,-1.698249,-0.112861,-0.179429,0.080414 +-0.345416,0.329041,-1.698255,-0.111488,-0.181260,0.080127 +-0.343260,0.329710,-1.698121,-0.109993,-0.183004,0.080053 +-0.341044,0.330602,-1.697845,-0.108373,-0.184660,0.080195 +-0.338768,0.331714,-1.697428,-0.106626,-0.186224,0.080555 +-0.336434,0.333046,-1.696871,-0.104751,-0.187695,0.081136 +-0.334044,0.334594,-1.696174,-0.102744,-0.189069,0.081939 +-0.331600,0.336357,-1.695339,-0.100606,-0.190345,0.082965 +-0.329101,0.338332,-1.694367,-0.098335,-0.191521,0.084215 +-0.326551,0.340516,-1.693259,-0.095932,-0.192593,0.085687 +-0.323949,0.342905,-1.692019,-0.093395,-0.193560,0.087382 +-0.321298,0.345495,-1.690649,-0.090725,-0.194420,0.089297 +-0.318598,0.348282,-1.689151,-0.087923,-0.195171,0.091432 +-0.315850,0.351261,-1.687529,-0.084990,-0.195811,0.093783 +-0.313056,0.354428,-1.685786,-0.081927,-0.196337,0.096347 +-0.310216,0.357776,-1.683927,-0.078736,-0.196749,0.099121 +-0.307332,0.361300,-1.681955,-0.075419,-0.197045,0.102100 +-0.304405,0.364994,-1.679875,-0.071979,-0.197222,0.105280 +-0.301434,0.368853,-1.677691,-0.068419,-0.197280,0.108654 +-0.298422,0.372868,-1.675408,-0.064742,-0.197217,0.112219 +-0.295369,0.377035,-1.673032,-0.060952,-0.197032,0.115966 +-0.292275,0.381344,-1.670567,-0.057052,-0.196723,0.119890 +-0.289141,0.385790,-1.668019,-0.053048,-0.196291,0.123983 +-0.285968,0.390364,-1.665393,-0.048943,-0.195733,0.128238 +-0.282757,0.395059,-1.662697,-0.044743,-0.195051,0.132647 +-0.279508,0.399867,-1.659934,-0.040454,-0.194241,0.137201 +-0.276221,0.404779,-1.657113,-0.036079,-0.193306,0.141891 +-0.272897,0.409787,-1.654238,-0.031627,-0.192244,0.146709 +-0.269536,0.414883,-1.651316,-0.027102,-0.191055,0.151645 +-0.266139,0.420059,-1.648354,-0.022511,-0.189740,0.156689 +-0.262705,0.425304,-1.645357,-0.017862,-0.188299,0.161831 +-0.259236,0.430611,-1.642333,-0.013159,-0.186732,0.167061 +-0.255732,0.435971,-1.639288,-0.008412,-0.185040,0.172368 +-0.252192,0.441375,-1.636228,-0.003627,-0.183224,0.177743 +-0.248617,0.446813,-1.633159,0.001189,-0.181285,0.183174 +-0.245008,0.452277,-1.630089,0.006028,-0.179225,0.188650 +-0.241364,0.457758,-1.627024,0.010882,-0.177044,0.194160 +-0.237685,0.463246,-1.623969,0.015743,-0.174745,0.199693 +-0.233971,0.468732,-1.620932,0.020604,-0.172329,0.205239 +-0.230224,0.474209,-1.617918,0.025456,-0.169799,0.210785 +-0.226442,0.479666,-1.614933,0.030291,-0.167156,0.216321 +-0.222625,0.485094,-1.611983,0.035101,-0.164404,0.221836 +-0.218775,0.490486,-1.609075,0.039878,-0.161545,0.227319 +-0.214890,0.495833,-1.606212,0.044614,-0.158581,0.232758 +-0.210972,0.501125,-1.603402,0.049300,-0.155516,0.238144 +-0.207019,0.506356,-1.600649,0.053929,-0.152354,0.243465 +-0.203033,0.511515,-1.597958,0.058493,-0.149097,0.248710 +-0.199012,0.516597,-1.595333,0.062983,-0.145749,0.253871 +-0.194958,0.521591,-1.592781,0.067391,-0.142314,0.258936 +-0.190870,0.526492,-1.590304,0.071710,-0.138796,0.263896 +-0.186748,0.531292,-1.587908,0.075933,-0.135199,0.268741 +-0.182593,0.535983,-1.585595,0.080052,-0.131528,0.273462 +-0.178404,0.540559,-1.583370,0.084058,-0.127787,0.278050 +-0.174181,0.545012,-1.581236,0.087947,-0.123980,0.282497 +-0.169925,0.549337,-1.579195,0.091709,-0.120114,0.286794 +-0.165636,0.553527,-1.577252,0.095340,-0.116191,0.290934 +-0.161314,0.557577,-1.575407,0.098832,-0.112219,0.294909 +-0.156959,0.561480,-1.573665,0.102179,-0.108202,0.298711 +-0.152572,0.565232,-1.572025,0.105375,-0.104144,0.302335 +-0.148152,0.568828,-1.570491,0.108414,-0.100053,0.305774 +-0.143700,0.572263,-1.569064,0.111292,-0.095933,0.309022 +-0.139217,0.575532,-1.567744,0.114003,-0.091791,0.312074 +-0.134701,0.578633,-1.566533,0.116543,-0.087631,0.314924 +-0.130155,0.581560,-1.565431,0.118906,-0.083460,0.317570 +-0.125578,0.584311,-1.564438,0.121089,-0.079284,0.320006 +-0.120971,0.586883,-1.563554,0.123089,-0.075109,0.322229 +-0.116333,0.589273,-1.562779,0.124901,-0.070940,0.324236 +-0.111666,0.591479,-1.562113,0.126522,-0.066785,0.326025 +-0.106971,0.593499,-1.561554,0.127951,-0.062648,0.327594 +-0.102247,0.595331,-1.561102,0.129185,-0.058537,0.328940 +-0.097495,0.596975,-1.560755,0.130221,-0.054457,0.330064 +-0.092716,0.598428,-1.560511,0.131059,-0.050414,0.330964 +-0.087910,0.599692,-1.560370,0.131696,-0.046415,0.331640 +-0.083078,0.600764,-1.560328,0.132133,-0.042466,0.332093 +-0.078222,0.601647,-1.560383,0.132369,-0.038572,0.332324 +-0.073340,0.602339,-1.560534,0.132404,-0.034740,0.332333 +-0.068436,0.602842,-1.560777,0.132237,-0.030975,0.332122 +-0.063508,0.603157,-1.561110,0.131871,-0.027284,0.331694 +-0.058558,0.603286,-1.561529,0.131305,-0.023672,0.331051 +-0.053587,0.603230,-1.562032,0.130542,-0.020145,0.330196 +-0.048596,0.602990,-1.562616,0.129583,-0.016708,0.329132 +-0.043586,0.602571,-1.563276,0.128430,-0.013368,0.327864 +-0.038557,0.601973,-1.564010,0.127085,-0.010128,0.326394 +-0.033511,0.601201,-1.564813,0.125552,-0.006995,0.324727 +-0.028448,0.600256,-1.565683,0.123834,-0.003973,0.322869 +-0.023371,0.599144,-1.566615,0.121934,-0.001067,0.320824 +-0.018279,0.597867,-1.567605,0.119856,0.001718,0.318597 +-0.013173,0.596429,-1.568650,0.117604,0.004378,0.316194 +-0.008056,0.594834,-1.569746,0.115181,0.006908,0.313621 +-0.002928,0.593088,-1.570889,0.112594,0.009304,0.310884 +0.002210,0.591194,-1.572074,0.109846,0.011563,0.307989 +0.007356,0.589157,-1.573298,0.106943,0.013681,0.304942 +0.012510,0.586983,-1.574558,0.103891,0.015653,0.301749 +0.017670,0.584676,-1.575848,0.100693,0.017478,0.298419 +0.022835,0.582242,-1.577167,0.097357,0.019152,0.294956 +0.028003,0.579686,-1.578508,0.093888,0.020673,0.291369 +0.033174,0.577013,-1.579870,0.090293,0.022037,0.287664 +0.038346,0.574231,-1.581248,0.086576,0.023243,0.283848 +0.043518,0.571343,-1.582639,0.082746,0.024289,0.279928 +0.048689,0.568357,-1.584039,0.078807,0.025173,0.275911 +0.053857,0.565279,-1.585446,0.074768,0.025893,0.271804 +0.059020,0.562113,-1.586856,0.070634,0.026450,0.267614 +0.064179,0.558868,-1.588266,0.066411,0.026840,0.263347 +0.069330,0.555548,-1.589673,0.062108,0.027065,0.259011 +0.074474,0.552160,-1.591075,0.057730,0.027124,0.254612 +0.079608,0.548710,-1.592468,0.053284,0.027016,0.250156 +0.084731,0.545205,-1.593852,0.048777,0.026742,0.245651 +0.089842,0.541651,-1.595223,0.044216,0.026303,0.241101 +0.094940,0.538054,-1.596579,0.039607,0.025699,0.236513 +0.100022,0.534420,-1.597920,0.034958,0.024931,0.231893 +0.105089,0.530756,-1.599242,0.030274,0.024001,0.227247 +0.110138,0.527067,-1.600545,0.025561,0.022910,0.222579 +0.115167,0.523361,-1.601827,0.020827,0.021661,0.217894 +0.120177,0.519642,-1.603088,0.016078,0.020255,0.213199 +0.125164,0.515917,-1.604326,0.011319,0.018695,0.208496 +0.130129,0.512191,-1.605540,0.006557,0.016983,0.203791 +0.135069,0.508471,-1.606731,0.001798,0.015122,0.199086 +0.139983,0.504763,-1.607899,-0.002954,0.013116,0.194387 +0.144869,0.501071,-1.609042,-0.007692,0.010968,0.189697 +0.149727,0.497401,-1.610161,-0.012412,0.008682,0.185017 +0.154555,0.493759,-1.611257,-0.017108,0.006261,0.180352 +0.159351,0.490150,-1.612329,-0.021775,0.003709,0.175702 +0.164114,0.486578,-1.613380,-0.026409,0.001031,0.171072 +0.168843,0.483050,-1.614408,-0.031006,-0.001768,0.166461 +0.173536,0.479569,-1.615416,-0.035561,-0.004685,0.161873 +0.178191,0.476140,-1.616404,-0.040071,-0.007715,0.157307 +0.182808,0.472768,-1.617374,-0.044532,-0.010852,0.152764 +0.187385,0.469457,-1.618327,-0.048940,-0.014091,0.148245 +0.191921,0.466211,-1.619265,-0.053293,-0.017427,0.143750 +0.196413,0.463034,-1.620189,-0.057587,-0.020855,0.139278 +0.200861,0.459931,-1.621102,-0.061821,-0.024370,0.134830 +0.205263,0.456903,-1.622004,-0.065992,-0.027964,0.130405 +0.209617,0.453957,-1.622899,-0.070097,-0.031634,0.126000 +0.213923,0.451093,-1.623787,-0.074135,-0.035372,0.121615 +0.218178,0.448316,-1.624672,-0.078105,-0.039174,0.117249 +0.222382,0.445629,-1.625555,-0.082006,-0.043033,0.112899 +0.226531,0.443034,-1.626439,-0.085836,-0.046943,0.108563 +0.230626,0.440533,-1.627325,-0.089594,-0.050898,0.104239 +0.234665,0.438130,-1.628216,-0.093281,-0.054893,0.099925 +0.238645,0.435827,-1.629115,-0.096896,-0.058921,0.095617 +0.242565,0.433625,-1.630023,-0.100439,-0.062976,0.091312 +0.246424,0.431527,-1.630942,-0.103911,-0.067051,0.087008 +0.250221,0.429535,-1.631876,-0.107311,-0.071142,0.082701 +0.253953,0.427649,-1.632825,-0.110641,-0.075243,0.078388 +0.257618,0.425872,-1.633793,-0.113902,-0.079346,0.074065 +0.261216,0.424204,-1.634781,-0.117095,-0.083447,0.069729 +0.264745,0.422647,-1.635790,-0.120221,-0.087540,0.065377 +0.268202,0.421202,-1.636823,-0.123282,-0.091618,0.061003 +0.271586,0.419869,-1.637882,-0.126280,-0.095677,0.056605 +0.274896,0.418650,-1.638968,-0.129215,-0.099712,0.052180 +0.278129,0.417545,-1.640082,-0.132092,-0.103715,0.047723 +0.281285,0.416554,-1.641225,-0.134910,-0.107684,0.043230 +0.284360,0.415677,-1.642400,-0.137674,-0.111611,0.038698 +0.287354,0.414915,-1.643606,-0.140385,-0.115494,0.034124 +0.290264,0.414268,-1.644845,-0.143046,-0.119326,0.029504 +0.293089,0.413736,-1.646118,-0.145659,-0.123103,0.024835 +0.295827,0.413319,-1.647423,-0.148227,-0.126821,0.020113 +0.298476,0.413015,-1.648763,-0.150753,-0.130476,0.015336 +0.301035,0.412826,-1.650137,-0.153239,-0.134063,0.010500 +0.303501,0.412750,-1.651544,-0.155688,-0.137579,0.005603 +0.305872,0.412786,-1.652984,-0.158104,-0.141021,0.000643 +0.308147,0.412936,-1.654457,-0.160489,-0.144383,-0.004382 +0.310324,0.413196,-1.655962,-0.162845,-0.147665,-0.009475 +0.312401,0.413568,-1.657497,-0.165175,-0.150862,-0.014638 +0.314376,0.414049,-1.659062,-0.167483,-0.153972,-0.019871 +0.316248,0.414639,-1.660655,-0.169771,-0.156992,-0.025177 +0.318013,0.415338,-1.662273,-0.172041,-0.159920,-0.030555 +0.319672,0.416143,-1.663915,-0.174296,-0.162755,-0.036006 +0.321221,0.417054,-1.665579,-0.176538,-0.165493,-0.041531 +0.322659,0.418070,-1.667262,-0.178770,-0.168134,-0.047129 +0.323984,0.419189,-1.668962,-0.180995,-0.170676,-0.052800 +0.325195,0.420411,-1.670675,-0.183213,-0.173118,-0.058543 +0.326289,0.421733,-1.672398,-0.185427,-0.175460,-0.064356 +0.327265,0.423156,-1.674129,-0.187639,-0.177700,-0.070240 +0.328121,0.424676,-1.675862,-0.189850,-0.179838,-0.076190 +0.328856,0.426294,-1.677595,-0.192062,-0.181874,-0.082205 +0.329468,0.428007,-1.679324,-0.194277,-0.183808,-0.088283 +0.329955,0.429815,-1.681044,-0.196495,-0.185640,-0.094420 +0.330316,0.431715,-1.682751,-0.198717,-0.187371,-0.100613 +0.330548,0.433707,-1.684441,-0.200944,-0.189001,-0.106858 +0.330652,0.435788,-1.686108,-0.203177,-0.190532,-0.113151 +0.330625,0.437958,-1.687748,-0.205416,-0.191964,-0.119487 +0.330466,0.440215,-1.689357,-0.207662,-0.193298,-0.125861 +0.330174,0.442556,-1.690928,-0.209913,-0.194537,-0.132269 +0.329748,0.444982,-1.692457,-0.212170,-0.195681,-0.138704 +0.329186,0.447490,-1.693939,-0.214432,-0.196733,-0.145161 +0.328487,0.450078,-1.695368,-0.216700,-0.197695,-0.151633 +0.327651,0.452745,-1.696738,-0.218970,-0.198568,-0.158114 +0.326676,0.455489,-1.698045,-0.221244,-0.199355,-0.164597 +0.325562,0.458309,-1.699282,-0.223519,-0.200059,-0.171074 +0.324308,0.461203,-1.700445,-0.225793,-0.200682,-0.177539 +0.322914,0.464170,-1.701528,-0.228065,-0.201227,-0.183983 +0.321378,0.467207,-1.702524,-0.230334,-0.201696,-0.190399 +0.319701,0.470313,-1.703430,-0.232596,-0.202092,-0.196779 +0.317882,0.473487,-1.704239,-0.234850,-0.202419,-0.203114 +0.315921,0.476725,-1.704946,-0.237093,-0.202680,-0.209395 +0.313818,0.480028,-1.705546,-0.239322,-0.202877,-0.215614 +0.311572,0.483392,-1.706033,-0.241534,-0.203014,-0.221763 +0.309185,0.486816,-1.706404,-0.243727,-0.203094,-0.227832 +0.306657,0.490299,-1.706652,-0.245897,-0.203120,-0.233812 +0.303987,0.493837,-1.706773,-0.248041,-0.203096,-0.239695 +0.301176,0.497430,-1.706762,-0.250156,-0.203025,-0.245470 +0.298225,0.501075,-1.706616,-0.252237,-0.202911,-0.251130 +0.295136,0.504771,-1.706329,-0.254281,-0.202756,-0.256664 +0.291908,0.508515,-1.705899,-0.256285,-0.202563,-0.262064 +0.288542,0.512304,-1.705321,-0.258245,-0.202338,-0.267321 +0.285041,0.516138,-1.704592,-0.260156,-0.202081,-0.272425 +0.281406,0.520014,-1.703709,-0.262015,-0.201798,-0.277368 +0.277637,0.523929,-1.702669,-0.263817,-0.201490,-0.282141 +0.273737,0.527881,-1.701469,-0.265559,-0.201161,-0.286736 +0.269708,0.531868,-1.700107,-0.267236,-0.200813,-0.291144 +0.265551,0.535887,-1.698581,-0.268845,-0.200451,-0.295357 +0.261268,0.539937,-1.696889,-0.270381,-0.200076,-0.299367 +0.256863,0.544014,-1.695031,-0.271841,-0.199691,-0.303167 +0.252336,0.548116,-1.693005,-0.273219,-0.199300,-0.306749 +0.247692,0.552240,-1.690810,-0.274513,-0.198903,-0.310105 +0.242932,0.556384,-1.688447,-0.275719,-0.198504,-0.313230 +0.238059,0.560545,-1.685916,-0.276832,-0.198106,-0.316116 +0.233076,0.564719,-1.683217,-0.277849,-0.197709,-0.318758 +0.227987,0.568905,-1.680351,-0.278767,-0.197316,-0.321151 +0.222795,0.573099,-1.677320,-0.279582,-0.196929,-0.323288 +0.217503,0.577299,-1.674125,-0.280291,-0.196549,-0.325165 +0.212115,0.581500,-1.670768,-0.280890,-0.196178,-0.326777 +0.206634,0.585701,-1.667252,-0.281377,-0.195817,-0.328122 +0.201064,0.589898,-1.663581,-0.281749,-0.195467,-0.329194 +0.195410,0.594088,-1.659757,-0.282003,-0.195130,-0.329993 +0.189675,0.598267,-1.655784,-0.282137,-0.194805,-0.330514 +0.183864,0.602432,-1.651666,-0.282149,-0.194494,-0.330756 +0.177980,0.606580,-1.647408,-0.282037,-0.194197,-0.330717 +0.172028,0.610708,-1.643015,-0.281799,-0.193915,-0.330398 +0.166014,0.614812,-1.638492,-0.281434,-0.193647,-0.329797 +0.159940,0.618888,-1.633845,-0.280941,-0.193393,-0.328915 +0.153813,0.622934,-1.629080,-0.280319,-0.193153,-0.327752 +0.147637,0.626945,-1.624204,-0.279566,-0.192926,-0.326311 +0.141417,0.630917,-1.619222,-0.278684,-0.192713,-0.324592 +0.135157,0.634849,-1.614143,-0.277671,-0.192511,-0.322598 +0.128864,0.638735,-1.608973,-0.276528,-0.192321,-0.320333 +0.122541,0.642572,-1.603721,-0.275256,-0.192141,-0.317800 +0.116195,0.646357,-1.598394,-0.273856,-0.191969,-0.315003 +0.109830,0.650085,-1.593001,-0.272328,-0.191805,-0.311947 +0.103451,0.653754,-1.587550,-0.270674,-0.191646,-0.308637 +0.097065,0.657360,-1.582051,-0.268895,-0.191491,-0.305079 +0.090676,0.660898,-1.576511,-0.266995,-0.191339,-0.301279 +0.084290,0.664367,-1.570941,-0.264975,-0.191186,-0.297244 +0.077911,0.667761,-1.565351,-0.262838,-0.191031,-0.292981 +0.071546,0.671078,-1.559748,-0.260587,-0.190871,-0.288498 +0.065200,0.674313,-1.554145,-0.258225,-0.190705,-0.283804 +0.058878,0.677465,-1.548549,-0.255757,-0.190529,-0.278907 +0.052586,0.680528,-1.542972,-0.253184,-0.190342,-0.273816 +0.046328,0.683501,-1.537423,-0.250513,-0.190139,-0.268540 +0.040111,0.686380,-1.531913,-0.247748,-0.189920,-0.263091 +0.033938,0.689161,-1.526451,-0.244892,-0.189680,-0.257477 +0.027816,0.691842,-1.521049,-0.241951,-0.189417,-0.251710 +0.021750,0.694419,-1.515715,-0.238931,-0.189128,-0.245801 +0.015745,0.696890,-1.510461,-0.235836,-0.188809,-0.239760 +0.009805,0.699253,-1.505297,-0.232673,-0.188459,-0.233601 +0.003935,0.701504,-1.500233,-0.229447,-0.188073,-0.227333 +-0.001859,0.703640,-1.495277,-0.226165,-0.187649,-0.220970 +-0.007574,0.705660,-1.490442,-0.222832,-0.187184,-0.214523 +-0.013204,0.707562,-1.485735,-0.219456,-0.186674,-0.208006 +-0.018745,0.709343,-1.481167,-0.216042,-0.186116,-0.201430 +-0.024193,0.711001,-1.476747,-0.212598,-0.185508,-0.194808 +-0.029543,0.712534,-1.472484,-0.209131,-0.184847,-0.188152 +-0.034792,0.713942,-1.468387,-0.205648,-0.184128,-0.181476 +-0.039936,0.715221,-1.464465,-0.202155,-0.183351,-0.174793 +-0.044970,0.716372,-1.460725,-0.198660,-0.182510,-0.168114 +-0.049892,0.717393,-1.457176,-0.195171,-0.181605,-0.161453 +-0.054698,0.718282,-1.453826,-0.191694,-0.180632,-0.154822 +-0.059385,0.719040,-1.450682,-0.188238,-0.179588,-0.148234 +-0.063949,0.719666,-1.447750,-0.184808,-0.178472,-0.141701 +-0.068389,0.720158,-1.445038,-0.181414,-0.177280,-0.135235 +-0.072700,0.720519,-1.442552,-0.178061,-0.176011,-0.128848 +-0.076881,0.720746,-1.440297,-0.174758,-0.174661,-0.122552 +-0.080930,0.720841,-1.438279,-0.171512,-0.173230,-0.116358 +-0.084844,0.720803,-1.436503,-0.168330,-0.171715,-0.110278 +-0.088622,0.720634,-1.434973,-0.165218,-0.170115,-0.104322 +-0.092262,0.720335,-1.433693,-0.162184,-0.168427,-0.098501 +-0.095762,0.719906,-1.432667,-0.159235,-0.166652,-0.092825 +-0.099122,0.719349,-1.431897,-0.156377,-0.164786,-0.087303 +-0.102340,0.718666,-1.431387,-0.153617,-0.162830,-0.081945 +-0.105416,0.717857,-1.431137,-0.150961,-0.160781,-0.076760 +-0.108349,0.716925,-1.431151,-0.148415,-0.158641,-0.071757 +-0.111139,0.715873,-1.431428,-0.145985,-0.156407,-0.066942 +-0.113786,0.714701,-1.431969,-0.143676,-0.154080,-0.062324 +-0.116291,0.713414,-1.432774,-0.141495,-0.151659,-0.057910 +-0.118652,0.712014,-1.433842,-0.139446,-0.149144,-0.053705 +-0.120872,0.710503,-1.435173,-0.137533,-0.146537,-0.049715 +-0.122951,0.708885,-1.436763,-0.135762,-0.143836,-0.045946 +-0.124889,0.707163,-1.438612,-0.134137,-0.141043,-0.042402 +-0.126690,0.705341,-1.440717,-0.132661,-0.138158,-0.039088 +-0.128353,0.703422,-1.443073,-0.131339,-0.135183,-0.036006 +-0.129881,0.701410,-1.445678,-0.130173,-0.132118,-0.033160 +-0.131276,0.699309,-1.448527,-0.129166,-0.128966,-0.030551 +-0.132539,0.697124,-1.451614,-0.128321,-0.125727,-0.028181 +-0.133674,0.694858,-1.454936,-0.127639,-0.122404,-0.026051 +-0.134683,0.692517,-1.458486,-0.127124,-0.118998,-0.024161 +-0.135568,0.690104,-1.462258,-0.126775,-0.115511,-0.022512 +-0.136334,0.687625,-1.466244,-0.126595,-0.111947,-0.021100 +-0.136982,0.685084,-1.470439,-0.126583,-0.108307,-0.019926 +-0.137516,0.682486,-1.474834,-0.126740,-0.104594,-0.018987 +-0.137941,0.679836,-1.479421,-0.127066,-0.100812,-0.018280 +-0.138259,0.677140,-1.484192,-0.127560,-0.096963,-0.017801 +-0.138475,0.674402,-1.489139,-0.128221,-0.093050,-0.017546 +-0.138592,0.671628,-1.494251,-0.129048,-0.089076,-0.017511 +-0.138615,0.668823,-1.499520,-0.130039,-0.085046,-0.017691 +-0.138548,0.665993,-1.504936,-0.131192,-0.080964,-0.018079 +-0.138396,0.663142,-1.510489,-0.132504,-0.076831,-0.018669 +-0.138163,0.660277,-1.516168,-0.133973,-0.072654,-0.019454 +-0.137854,0.657402,-1.521963,-0.135595,-0.068435,-0.020427 +-0.137473,0.654524,-1.527863,-0.137367,-0.064180,-0.021580 +-0.137027,0.651646,-1.533857,-0.139284,-0.059891,-0.022905 +-0.136519,0.648776,-1.539934,-0.141342,-0.055574,-0.024392 +-0.135955,0.645917,-1.546083,-0.143536,-0.051233,-0.026032 +-0.135340,0.643075,-1.552291,-0.145862,-0.046873,-0.027816 +-0.134679,0.640256,-1.558548,-0.148314,-0.042498,-0.029734 +-0.133978,0.637465,-1.564842,-0.150886,-0.038113,-0.031776 +-0.133242,0.634706,-1.571162,-0.153573,-0.033722,-0.033930 +-0.132476,0.631984,-1.577495,-0.156367,-0.029331,-0.036186 +-0.131686,0.629304,-1.583830,-0.159264,-0.024944,-0.038532 +-0.130877,0.626671,-1.590155,-0.162255,-0.020566,-0.040957 +-0.130054,0.624089,-1.596459,-0.165334,-0.016201,-0.043450 +-0.129223,0.621562,-1.602730,-0.168494,-0.011856,-0.045998 +-0.128390,0.619096,-1.608957,-0.171728,-0.007533,-0.048590 +-0.127559,0.616693,-1.615129,-0.175027,-0.003240,-0.051214 +-0.126735,0.614357,-1.621234,-0.178384,0.001021,-0.053857 +-0.125925,0.612093,-1.627262,-0.181791,0.005244,-0.056508 +-0.125134,0.609903,-1.633202,-0.185241,0.009424,-0.059153 +-0.124365,0.607791,-1.639044,-0.188725,0.013557,-0.061782 +-0.123626,0.605759,-1.644778,-0.192234,0.017639,-0.064382 +-0.122920,0.603811,-1.650393,-0.195762,0.021663,-0.066941 +-0.122252,0.601949,-1.655880,-0.199298,0.025627,-0.069447 +-0.121628,0.600176,-1.661230,-0.202836,0.029526,-0.071888 +-0.121051,0.598492,-1.666434,-0.206367,0.033355,-0.074254 +-0.120527,0.596900,-1.671484,-0.209882,0.037110,-0.076532 +-0.120059,0.595402,-1.676371,-0.213374,0.040788,-0.078713 +-0.119653,0.593998,-1.681088,-0.216834,0.044383,-0.080784 +-0.119312,0.592690,-1.685627,-0.220253,0.047894,-0.082736 +-0.119040,0.591478,-1.689982,-0.223625,0.051314,-0.084559 +-0.118841,0.590363,-1.694146,-0.226941,0.054642,-0.086242 +-0.118719,0.589345,-1.698113,-0.230194,0.057874,-0.087777 +-0.118677,0.588423,-1.701878,-0.233375,0.061006,-0.089155 +-0.118718,0.587597,-1.705436,-0.236478,0.064035,-0.090367 +-0.118846,0.586867,-1.708783,-0.239495,0.066958,-0.091405 +-0.119064,0.586230,-1.711913,-0.242419,0.069773,-0.092261 +-0.119374,0.585687,-1.714825,-0.245244,0.072476,-0.092930 +-0.119778,0.585235,-1.717514,-0.247963,0.075066,-0.093404 +-0.120280,0.584873,-1.719979,-0.250570,0.077540,-0.093677 +-0.120882,0.584598,-1.722218,-0.253058,0.079895,-0.093743 +-0.121584,0.584408,-1.724230,-0.255423,0.082130,-0.093599 +-0.122390,0.584300,-1.726013,-0.257659,0.084243,-0.093240 +-0.123300,0.584272,-1.727567,-0.259760,0.086233,-0.092663 +-0.124316,0.584319,-1.728893,-0.261723,0.088097,-0.091863 +-0.125439,0.584439,-1.729991,-0.263542,0.089835,-0.090840 +-0.126669,0.584629,-1.730863,-0.265214,0.091446,-0.089590 +-0.128008,0.584883,-1.731510,-0.266735,0.092928,-0.088114 +-0.129456,0.585198,-1.731935,-0.268102,0.094281,-0.086410 +-0.131013,0.585569,-1.732141,-0.269312,0.095505,-0.084478 +-0.132679,0.585992,-1.732130,-0.270362,0.096598,-0.082320 +-0.134453,0.586463,-1.731907,-0.271251,0.097561,-0.079936 +-0.136337,0.586975,-1.731476,-0.271976,0.098393,-0.077329 +-0.138327,0.587525,-1.730842,-0.272536,0.099096,-0.074502 +-0.140425,0.588107,-1.730009,-0.272930,0.099668,-0.071456 +-0.142629,0.588715,-1.728983,-0.273159,0.100111,-0.068197 +-0.144937,0.589344,-1.727771,-0.273220,0.100425,-0.064729 +-0.147348,0.589988,-1.726378,-0.273116,0.100611,-0.061056 +-0.149860,0.590641,-1.724812,-0.272846,0.100669,-0.057185 +-0.152473,0.591298,-1.723079,-0.272412,0.100602,-0.053121 +-0.155182,0.591953,-1.721187,-0.271815,0.100409,-0.048871 +-0.157987,0.592599,-1.719144,-0.271057,0.100093,-0.044442 +-0.160885,0.593231,-1.716957,-0.270140,0.099654,-0.039841 +-0.163873,0.593842,-1.714635,-0.269066,0.099095,-0.035078 +-0.166949,0.594427,-1.712187,-0.267839,0.098416,-0.030160 +-0.170109,0.594979,-1.709621,-0.266462,0.097621,-0.025096 +-0.173351,0.595492,-1.706946,-0.264938,0.096710,-0.019896 +-0.176672,0.595961,-1.704172,-0.263272,0.095686,-0.014570 +-0.180067,0.596378,-1.701307,-0.261467,0.094551,-0.009128 +-0.183534,0.596739,-1.698361,-0.259529,0.093306,-0.003580 +-0.187069,0.597037,-1.695344,-0.257462,0.091955,0.002064 +-0.190669,0.597267,-1.692265,-0.255271,0.090500,0.007791 +-0.194329,0.597423,-1.689134,-0.252961,0.088942,0.013591 +-0.198045,0.597499,-1.685960,-0.250539,0.087285,0.019453 +-0.201814,0.597491,-1.682754,-0.248011,0.085532,0.025364 +-0.205632,0.597392,-1.679525,-0.245381,0.083683,0.031313 +-0.209493,0.597198,-1.676282,-0.242658,0.081743,0.037288 +-0.213395,0.596904,-1.673035,-0.239846,0.079714,0.043277 +-0.217333,0.596505,-1.669794,-0.236953,0.077598,0.049268 +-0.221301,0.595996,-1.666568,-0.233985,0.075399,0.055249 +-0.225297,0.595375,-1.663366,-0.230950,0.073118,0.061208 +-0.229315,0.594636,-1.660197,-0.227854,0.070760,0.067134 +-0.233352,0.593776,-1.657070,-0.224704,0.068325,0.073013 +-0.237401,0.592791,-1.653994,-0.221508,0.065818,0.078835 +-0.241460,0.591678,-1.650976,-0.218273,0.063241,0.084587 +-0.245524,0.590434,-1.648026,-0.215005,0.060597,0.090259 +-0.249587,0.589057,-1.645151,-0.211712,0.057888,0.095839 +-0.253646,0.587544,-1.642358,-0.208401,0.055118,0.101316 +-0.257696,0.585893,-1.639655,-0.205080,0.052288,0.106680 +-0.261733,0.584103,-1.637049,-0.201755,0.049402,0.111920 +-0.265752,0.582172,-1.634547,-0.198433,0.046462,0.117025 +-0.269748,0.580099,-1.632154,-0.195121,0.043471,0.121987 +-0.273719,0.577883,-1.629877,-0.191826,0.040431,0.126796 +-0.277659,0.575524,-1.627721,-0.188555,0.037344,0.131443 +-0.281564,0.573023,-1.625691,-0.185313,0.034215,0.135919 +-0.285430,0.570378,-1.623792,-0.182108,0.031044,0.140216 +-0.289253,0.567592,-1.622029,-0.178945,0.027834,0.144328 +-0.293029,0.564664,-1.620404,-0.175830,0.024588,0.148246 +-0.296754,0.561597,-1.618922,-0.172769,0.021307,0.151964 +-0.300425,0.558392,-1.617585,-0.169767,0.017995,0.155476 +-0.304037,0.555052,-1.616396,-0.166830,0.014653,0.158777 +-0.307588,0.551578,-1.615358,-0.163962,0.011283,0.161861 +-0.311074,0.547973,-1.614471,-0.161168,0.007888,0.164724 +-0.314491,0.544242,-1.613737,-0.158451,0.004469,0.167363 +-0.317836,0.540386,-1.613157,-0.155817,0.001029,0.169774 +-0.321107,0.536410,-1.612731,-0.153269,-0.002431,0.171955 +-0.324300,0.532319,-1.612459,-0.150811,-0.005908,0.173903 +-0.327412,0.528116,-1.612340,-0.148444,-0.009401,0.175618 +-0.330440,0.523806,-1.612373,-0.146172,-0.012908,0.177098 +-0.333383,0.519394,-1.612557,-0.143998,-0.016428,0.178344 +-0.336238,0.514887,-1.612889,-0.141923,-0.019958,0.179356 +-0.339001,0.510289,-1.613369,-0.139949,-0.023497,0.180135 +-0.341672,0.505606,-1.613992,-0.138077,-0.027043,0.180682 +-0.344249,0.500845,-1.614755,-0.136307,-0.030595,0.181001 +-0.346728,0.496012,-1.615656,-0.134642,-0.034151,0.181094 +-0.349109,0.491114,-1.616690,-0.133080,-0.037710,0.180964 +-0.351390,0.486158,-1.617853,-0.131621,-0.041270,0.180616 +-0.353570,0.481150,-1.619141,-0.130266,-0.044830,0.180054 +-0.355646,0.476099,-1.620547,-0.129012,-0.048388,0.179284 +-0.357619,0.471012,-1.622068,-0.127858,-0.051943,0.178312 +-0.359487,0.465896,-1.623698,-0.126804,-0.055493,0.177143 +-0.361249,0.460759,-1.625430,-0.125847,-0.059038,0.175785 +-0.362904,0.455610,-1.627259,-0.124984,-0.062575,0.174244 +-0.364453,0.450456,-1.629178,-0.124213,-0.066103,0.172530 +-0.365893,0.445305,-1.631181,-0.123530,-0.069622,0.170649 +-0.367226,0.440167,-1.633260,-0.122934,-0.073129,0.168611 +-0.368450,0.435049,-1.635409,-0.122419,-0.076624,0.166425 +-0.369566,0.429959,-1.637621,-0.121982,-0.080104,0.164100 +-0.370573,0.424907,-1.639888,-0.121618,-0.083569,0.161646 +-0.371473,0.419901,-1.642204,-0.121324,-0.087017,0.159073 +-0.372264,0.414948,-1.644559,-0.121094,-0.090446,0.156392 +-0.372948,0.410058,-1.646947,-0.120923,-0.093856,0.153613 +-0.373525,0.405238,-1.649360,-0.120807,-0.097244,0.150747 +-0.373995,0.400498,-1.651790,-0.120739,-0.100610,0.147806 +-0.374360,0.395846,-1.654230,-0.120714,-0.103951,0.144800 +-0.374620,0.391289,-1.656671,-0.120727,-0.107267,0.141742 +-0.374775,0.386835,-1.659107,-0.120771,-0.110555,0.138643 +-0.374828,0.382493,-1.661528,-0.120840,-0.113813,0.135515 +-0.374778,0.378271,-1.663929,-0.120928,-0.117042,0.132369 +-0.374628,0.374175,-1.666300,-0.121029,-0.120237,0.129217 +-0.374377,0.370214,-1.668635,-0.121136,-0.123399,0.126072 +-0.374028,0.366394,-1.670926,-0.121243,-0.126524,0.122944 +-0.373582,0.362722,-1.673166,-0.121343,-0.129611,0.119846 +-0.373040,0.359206,-1.675349,-0.121430,-0.132659,0.116789 +-0.372404,0.355852,-1.677467,-0.121497,-0.135665,0.113784 +-0.371675,0.352666,-1.679514,-0.121537,-0.138628,0.110844 +-0.370855,0.349653,-1.681482,-0.121545,-0.141544,0.107978 +-0.369944,0.346821,-1.683368,-0.121513,-0.144413,0.105199 +-0.368946,0.344173,-1.685163,-0.121436,-0.147233,0.102516 +-0.367861,0.341716,-1.686863,-0.121306,-0.150000,0.099941 +-0.366691,0.339454,-1.688462,-0.121118,-0.152713,0.097482 +-0.365438,0.337391,-1.689955,-0.120866,-0.155369,0.095150 +-0.364103,0.335531,-1.691338,-0.120543,-0.157967,0.092955 +-0.362689,0.333879,-1.692606,-0.120145,-0.160504,0.090905 +-0.361196,0.332437,-1.693754,-0.119665,-0.162978,0.089009 +-0.359627,0.331208,-1.694779,-0.119099,-0.165386,0.087275 +-0.357983,0.330196,-1.695678,-0.118441,-0.167726,0.085711 +-0.356267,0.329401,-1.696448,-0.117685,-0.169995,0.084324 +-0.354479,0.328827,-1.697085,-0.116829,-0.172192,0.083121 +-0.352621,0.328474,-1.697587,-0.115866,-0.174313,0.082109 +-0.350695,0.328344,-1.697953,-0.114794,-0.176357,0.081293 +-0.348704,0.328437,-1.698181,-0.113608,-0.178320,0.080678 +-0.346647,0.328753,-1.698269,-0.112305,-0.180201,0.080269 +-0.344527,0.329292,-1.698216,-0.110881,-0.181996,0.080071 +-0.342346,0.330054,-1.698023,-0.109334,-0.183704,0.080086 +-0.340104,0.331038,-1.697689,-0.107662,-0.185322,0.080318 +-0.337804,0.332242,-1.697214,-0.105862,-0.186848,0.080770 +-0.335447,0.333664,-1.696598,-0.103932,-0.188279,0.081443 +-0.333034,0.335302,-1.695843,-0.101871,-0.189612,0.082339 +-0.330567,0.337153,-1.694951,-0.099678,-0.190847,0.083458 +-0.328046,0.339216,-1.693922,-0.097352,-0.191979,0.084800 +-0.325474,0.341485,-1.692759,-0.094892,-0.193008,0.086365 +-0.322852,0.343958,-1.691465,-0.092300,-0.193931,0.088152 +-0.320180,0.346631,-1.690041,-0.089575,-0.194746,0.090159 +-0.317460,0.349498,-1.688491,-0.086718,-0.195451,0.092384 +-0.314693,0.352556,-1.686818,-0.083731,-0.196044,0.094824 +-0.311880,0.355799,-1.685027,-0.080614,-0.196523,0.097476 +-0.309022,0.359221,-1.683120,-0.077371,-0.196886,0.100336 +-0.306120,0.362817,-1.681103,-0.074003,-0.197133,0.103399 +-0.303174,0.366580,-1.678979,-0.070512,-0.197261,0.106660 +-0.300186,0.370505,-1.676753,-0.066903,-0.197268,0.110115 +-0.297157,0.374584,-1.674431,-0.063179,-0.197155,0.113756 +-0.294086,0.378811,-1.672017,-0.059343,-0.196918,0.117578 +-0.290976,0.383178,-1.669516,-0.055399,-0.196559,0.121573 +-0.287826,0.387678,-1.666936,-0.051352,-0.196074,0.125734 +-0.284637,0.392303,-1.664280,-0.047207,-0.195465,0.130054 +-0.281410,0.397046,-1.661555,-0.042969,-0.194729,0.134524 +-0.278145,0.401898,-1.658767,-0.038644,-0.193868,0.139136 +-0.274842,0.406851,-1.655923,-0.034236,-0.192880,0.143881 +-0.271503,0.411897,-1.653028,-0.029753,-0.191765,0.148749 +-0.268127,0.417027,-1.650088,-0.025200,-0.190523,0.153731 +-0.264715,0.422233,-1.647111,-0.020584,-0.189156,0.158816 +-0.261266,0.427505,-1.644102,-0.015911,-0.187662,0.163996 +-0.257783,0.432835,-1.641068,-0.011189,-0.186043,0.169260 +-0.254264,0.438215,-1.638016,-0.006425,-0.184299,0.174597 +-0.250709,0.443634,-1.634952,-0.001626,-0.182432,0.179996 +-0.247120,0.449084,-1.631882,0.003200,-0.180442,0.185447 +-0.243496,0.454556,-1.628813,0.008046,-0.178332,0.190938 +-0.239837,0.460040,-1.625751,0.012904,-0.176102,0.196460 +-0.236144,0.465529,-1.622703,0.017766,-0.173754,0.201999 +-0.232416,0.471012,-1.619675,0.022624,-0.171290,0.207547 +-0.228654,0.476482,-1.616672,0.027470,-0.168713,0.213090 +-0.224858,0.481928,-1.613701,0.032296,-0.166025,0.218619 +-0.221028,0.487343,-1.610768,0.037093,-0.163227,0.224122 +-0.217163,0.492717,-1.607878,0.041854,-0.160324,0.229588 +-0.213264,0.498042,-1.605036,0.046570,-0.157318,0.235006 +-0.209332,0.503309,-1.602249,0.051234,-0.154212,0.240366 +-0.205365,0.508511,-1.599521,0.055836,-0.151010,0.245657 +-0.201364,0.513639,-1.596857,0.060370,-0.147714,0.250868 +-0.197330,0.518685,-1.594263,0.064827,-0.144330,0.255990 +-0.193261,0.523642,-1.591741,0.069199,-0.140860,0.261013 +-0.189159,0.528502,-1.589297,0.073479,-0.137309,0.265926 +-0.185023,0.533257,-1.586935,0.077660,-0.133680,0.270721 +-0.180854,0.537901,-1.584658,0.081732,-0.129980,0.275388 +-0.176651,0.542427,-1.582471,0.085691,-0.126211,0.279918 +-0.172415,0.546827,-1.580375,0.089528,-0.122379,0.284304 +-0.168145,0.551097,-1.578375,0.093236,-0.118488,0.288536 +-0.163842,0.555229,-1.576472,0.096810,-0.114545,0.292608 +-0.159507,0.559219,-1.574670,0.100242,-0.110553,0.296512 +-0.155138,0.563060,-1.572970,0.103527,-0.106518,0.300241 +-0.150737,0.566748,-1.571374,0.106659,-0.102446,0.303788 +-0.146304,0.570277,-1.569885,0.109632,-0.098342,0.307148 +-0.141839,0.573643,-1.568502,0.112441,-0.094212,0.310315 +-0.137342,0.576843,-1.567227,0.115081,-0.090062,0.313284 +-0.132814,0.579872,-1.566061,0.117548,-0.085897,0.316050 +-0.128255,0.582726,-1.565004,0.119836,-0.081723,0.318609 +-0.123665,0.585403,-1.564057,0.121944,-0.077547,0.320957 +-0.119045,0.587900,-1.563219,0.123865,-0.073373,0.323090 +-0.114395,0.590213,-1.562489,0.125599,-0.069210,0.325007 +-0.109716,0.592342,-1.561868,0.127140,-0.065061,0.326704 +-0.105009,0.594284,-1.561353,0.128488,-0.060934,0.328181 +-0.100273,0.596038,-1.560945,0.129640,-0.056835,0.329435 +-0.095510,0.597602,-1.560641,0.130594,-0.052770,0.330465 +-0.090719,0.598977,-1.560440,0.131348,-0.048745,0.331272 +-0.085903,0.600161,-1.560340,0.131903,-0.044766,0.331856 +-0.081061,0.601154,-1.560339,0.132256,-0.040838,0.332216 +-0.076194,0.601958,-1.560435,0.132408,-0.036970,0.332354 +-0.071303,0.602571,-1.560624,0.132359,-0.033165,0.332272 +-0.066388,0.602996,-1.560905,0.132109,-0.029430,0.331970 +-0.061451,0.603233,-1.561274,0.131660,-0.025771,0.331453 +-0.056493,0.603285,-1.561729,0.131011,-0.022194,0.330721 +-0.051513,0.603152,-1.562266,0.130166,-0.018704,0.329779 +-0.046514,0.602838,-1.562881,0.129126,-0.015306,0.328629 +-0.041496,0.602344,-1.563573,0.127893,-0.012007,0.327276 +-0.036460,0.601673,-1.564336,0.126470,-0.008811,0.325724 +-0.031407,0.600828,-1.565167,0.124860,-0.005724,0.323977 +-0.026338,0.599814,-1.566063,0.123066,-0.002749,0.322041 +-0.021254,0.598632,-1.567020,0.121091,0.000107,0.319919 +-0.016156,0.597288,-1.568034,0.118940,0.002840,0.317619 +-0.011046,0.595784,-1.569100,0.116616,0.005446,0.315144 +-0.005924,0.594126,-1.570216,0.114125,0.007921,0.312502 +-0.000792,0.592318,-1.571377,0.111470,0.010261,0.309698 +0.004350,0.590364,-1.572579,0.108657,0.012461,0.306739 +0.009499,0.588269,-1.573818,0.105691,0.014519,0.303631 +0.014656,0.586039,-1.575091,0.102578,0.016431,0.300380 +0.019818,0.583678,-1.576394,0.099322,0.018193,0.296994 +0.024985,0.581193,-1.577722,0.095930,0.019804,0.293479 +0.030154,0.578588,-1.579072,0.092407,0.021259,0.289842 +0.035326,0.575869,-1.580441,0.088761,0.022558,0.286090 +0.040498,0.573042,-1.581825,0.084996,0.023698,0.282230 +0.045670,0.570113,-1.583220,0.081120,0.024677,0.278268 +0.050839,0.567087,-1.584624,0.077139,0.025493,0.274213 +0.056005,0.563972,-1.586032,0.073059,0.026145,0.270071 +0.061167,0.560773,-1.587442,0.068887,0.026632,0.265848 +0.066323,0.557495,-1.588851,0.064631,0.026954,0.261551 +0.071471,0.554146,-1.590257,0.060295,0.027110,0.257188 +0.076611,0.550732,-1.591655,0.055888,0.027099,0.252765 +0.081740,0.547259,-1.593045,0.051416,0.026922,0.248288 +0.086859,0.543732,-1.594424,0.046886,0.026579,0.243763 +0.091964,0.540159,-1.595789,0.042304,0.026071,0.239197 +0.097056,0.536546,-1.597139,0.037678,0.025399,0.234595 +0.102132,0.532899,-1.598472,0.033013,0.024564,0.229963 +0.107191,0.529224,-1.599786,0.028316,0.023567,0.225307 +0.112232,0.525527,-1.601081,0.023594,0.022410,0.220631 +0.117254,0.521815,-1.602354,0.018853,0.021095,0.215942 +0.122254,0.518092,-1.603605,0.014099,0.019624,0.211243 +0.127233,0.514367,-1.604834,0.009338,0.018001,0.206538 +0.132187,0.510643,-1.606039,0.004577,0.016227,0.201833 +0.137114,0.506928,-1.607220,-0.000178,0.014307,0.197133 +0.142011,0.503226,-1.608380,-0.004923,0.012245,0.192441 +0.146875,0.499540,-1.609530,-0.009653,0.010045,0.187762 +0.151700,0.495875,-1.610660,-0.014363,0.007715,0.183101 +0.156483,0.492235,-1.611780,-0.019047,0.005257,0.178464 +0.161219,0.488625,-1.612880,-0.023701,0.002679,0.173856 +0.165904,0.485049,-1.613970,-0.028318,-0.000016,0.169282 +0.170534,0.481510,-1.615040,-0.032895,-0.002822,0.164747 +0.175104,0.478015,-1.616100,-0.037425,-0.005733,0.160257 +0.179610,0.474566,-1.617150,-0.041904,-0.008745,0.155816 +0.184048,0.471167,-1.618180,-0.046326,-0.011853,0.151429 +0.188419,0.467818,-1.619200,-0.050687,-0.015050,0.147103 +0.192721,0.464521,-1.620200,-0.054982,-0.018333,0.142841 +0.196955,0.461274,-1.621190,-0.059210,-0.021696,0.138645 +0.201121,0.458077,-1.622160,-0.063372,-0.025133,0.134515 +0.205219,0.454931,-1.623120,-0.067467,-0.028640,0.130450 +0.209248,0.451836,-1.624060,-0.071496,-0.032211,0.126452 +0.213210,0.448791,-1.624990,-0.075458,-0.035841,0.122520 +0.217103,0.445797,-1.625910,-0.079354,-0.039525,0.118653 +0.220929,0.442854,-1.626810,-0.083183,-0.043257,0.114853 +0.224686,0.439961,-1.627690,-0.086946,-0.047034,0.111118 +0.228375,0.437118,-1.628570,-0.090643,-0.050848,0.107449 +0.231996,0.434327,-1.629420,-0.094273,-0.054696,0.103846 +0.235549,0.431586,-1.630270,-0.097837,-0.058572,0.100309 +0.239033,0.428895,-1.631100,-0.101334,-0.062471,0.096838 +0.242450,0.426255,-1.631910,-0.104764,-0.066387,0.093433 +0.245798,0.423666,-1.632710,-0.108129,-0.070316,0.090094 +0.249079,0.421127,-1.633490,-0.111426,-0.074252,0.086820 +0.252291,0.418639,-1.634270,-0.114658,-0.078190,0.083613 +0.255435,0.416201,-1.635020,-0.117822,-0.082125,0.080471 +0.258511,0.413814,-1.635760,-0.120921,-0.086052,0.077395 +0.261519,0.411478,-1.636490,-0.123953,-0.089965,0.074385 +0.264459,0.409192,-1.637200,-0.126918,-0.093860,0.071442 +0.267330,0.406957,-1.637900,-0.129817,-0.097731,0.068564 +0.270134,0.404772,-1.638590,-0.132649,-0.101572,0.065752 +0.272869,0.402638,-1.639260,-0.135415,-0.105380,0.063005 +0.275537,0.400555,-1.639910,-0.138115,-0.109148,0.060325 +0.278136,0.398522,-1.640550,-0.140748,-0.112872,0.057711 +0.280667,0.396539,-1.641180,-0.143315,-0.116546,0.055162 +0.283130,0.394608,-1.641790,-0.145815,-0.120164,0.052680 +0.285525,0.392727,-1.642390,-0.148249,-0.123723,0.050263 +0.287851,0.390896,-1.642970,-0.150616,-0.127217,0.047912 +0.290110,0.389116,-1.643540,-0.152917,-0.130640,0.045627 +0.292300,0.387387,-1.644090,-0.155151,-0.133987,0.043408 +0.294423,0.385708,-1.644630,-0.157319,-0.137253,0.041255 +0.296477,0.384080,-1.645160,-0.159420,-0.140434,0.039168 +0.298463,0.382503,-1.645670,-0.161455,-0.143523,0.037147 +0.300381,0.380976,-1.646170,-0.163423,-0.146516,0.035192 +0.302231,0.379499,-1.646650,-0.165325,-0.149407,0.033302 +0.304013,0.378074,-1.647120,-0.167161,-0.152191,0.031479 +0.305726,0.376698,-1.647570,-0.168930,-0.154863,0.029721 +0.307372,0.375374,-1.648010,-0.170633,-0.157419,0.028029 +0.308949,0.374100,-1.648430,-0.172269,-0.159852,0.026403 +0.310458,0.372876,-1.648840,-0.173838,-0.162157,0.024843 +0.311900,0.371704,-1.649240,-0.175342,-0.164330,0.023349 +0.313273,0.370581,-1.649620,-0.176778,-0.166364,0.021921 +0.314577,0.369510,-1.649980,-0.178149,-0.168258,0.020559 +0.315814,0.368489,-1.650340,-0.179452,-0.170014,0.019262 +0.316983,0.367518,-1.650670,-0.180690,-0.171638,0.018032 +0.318083,0.366599,-1.651000,-0.181861,-0.173134,0.016868 +0.319116,0.365729,-1.651300,-0.182965,-0.174509,0.015769 +0.320080,0.364911,-1.651600,-0.184003,-0.175767,0.014736 +0.320976,0.364143,-1.651880,-0.184974,-0.176913,0.013769 +0.321804,0.363425,-1.652140,-0.185880,-0.177953,0.012868 +0.322564,0.362758,-1.652390,-0.186718,-0.178892,0.012033 +0.323256,0.362142,-1.652630,-0.187490,-0.179734,0.011264 +0.323880,0.361576,-1.652850,-0.188196,-0.180486,0.010561 +0.324435,0.361061,-1.653060,-0.188835,-0.181152,0.009924 +0.324924,0.360597,-1.653250,-0.189408,-0.181737,0.009352 +0.325350,0.360183,-1.653430,-0.189914,-0.182248,0.008847 +0.325717,0.359820,-1.653600,-0.190354,-0.182688,0.008407 +0.326031,0.359507,-1.653750,-0.190729,-0.183063,0.008032 +0.326294,0.359244,-1.653880,-0.191044,-0.183378,0.007716 +0.326512,0.359026,-1.654000,-0.191305,-0.183639,0.007456 +0.326688,0.358849,-1.654110,-0.191517,-0.183851,0.007244 +0.326828,0.358710,-1.654200,-0.191684,-0.184018,0.007077 +0.326935,0.358603,-1.654280,-0.191812,-0.184146,0.006949 +0.327013,0.358524,-1.654340,-0.191906,-0.184240,0.006854 +0.327068,0.358469,-1.654390,-0.191972,-0.184306,0.006789 +0.327104,0.358434,-1.654420,-0.192014,-0.184348,0.006746 +0.327124,0.358414,-1.654440,-0.192038,-0.184372,0.006722 +0.327133,0.358405,-1.654450,-0.192049,-0.184383,0.006712 +0.327135,0.358402,-1.654450,-0.192052,-0.184386,0.006709 +0.327135,0.358402,-1.654450,-0.192052,-0.184386,0.006708 +0.327134,0.358402,-1.654440,-0.192057,-0.184377,0.006708 +0.327134,0.358402,-1.654440,-0.192057,-0.184377,0.006708 +0.327133,0.358404,-1.654440,-0.192059,-0.184374,0.006711 +0.327120,0.358417,-1.654430,-0.192074,-0.184359,0.006726 +0.327086,0.358451,-1.654390,-0.192115,-0.184318,0.006767 +0.327019,0.358518,-1.654330,-0.192195,-0.184238,0.006847 +0.326909,0.358628,-1.654220,-0.192327,-0.184107,0.006978 +0.326745,0.358792,-1.654050,-0.192523,-0.183910,0.007175 +0.326516,0.359021,-1.653820,-0.192798,-0.183636,0.007449 +0.326211,0.359326,-1.653520,-0.193163,-0.183271,0.007814 +0.325820,0.359717,-1.653130,-0.193632,-0.182802,0.008283 +0.325331,0.360202,-1.652640,-0.194217,-0.182216,0.008869 +0.324735,0.360774,-1.652040,-0.194932,-0.181504,0.009584 +0.324020,0.361423,-1.651330,-0.195789,-0.180669,0.010441 +0.323190,0.362137,-1.650500,-0.196802,-0.179724,0.011454 +0.322256,0.362906,-1.649560,-0.197984,-0.178684,0.012636 +0.321229,0.363718,-1.648520,-0.199347,-0.177560,0.013999 +0.320118,0.364563,-1.647400,-0.200903,-0.176366,0.015556 +0.318936,0.365431,-1.646210,-0.202651,-0.175114,0.017321 +0.317693,0.366310,-1.644960,-0.204576,-0.173818,0.019306 +0.316400,0.367191,-1.643650,-0.206667,-0.172491,0.021524 +0.315067,0.368071,-1.642300,-0.208910,-0.171145,0.023986 +0.313706,0.368952,-1.640920,-0.211293,-0.169793,0.026683 +0.312326,0.369833,-1.639520,-0.213802,-0.168441,0.029604 +0.310940,0.370714,-1.638110,-0.216424,-0.167089,0.032734 +0.309553,0.371595,-1.636700,-0.219147,-0.165737,0.036062 +0.308167,0.372476,-1.635290,-0.221958,-0.164385,0.039573 +0.306780,0.373357,-1.633880,-0.224843,-0.163033,0.043256 +0.305393,0.374238,-1.632470,-0.227789,-0.161681,0.047096 +0.304006,0.375119,-1.631060,-0.230784,-0.160329,0.051083 +0.302620,0.376000,-1.629650,-0.233815,-0.158977,0.055201 +0.301233,0.376881,-1.628240,-0.236869,-0.157625,0.059438 +0.299846,0.377762,-1.626830,-0.239932,-0.156273,0.063782 +0.298460,0.378643,-1.625420,-0.242997,-0.154921,0.068219 +0.297073,0.379523,-1.624010,-0.246061,-0.153569,0.072737 +0.295686,0.380404,-1.622600,-0.249125,-0.152217,0.077322 +0.294299,0.381285,-1.621190,-0.252190,-0.150865,0.081962 +0.292913,0.382166,-1.619780,-0.255254,-0.149513,0.086643 +0.291526,0.383047,-1.618370,-0.258318,-0.148161,0.091353 +0.290139,0.383928,-1.616970,-0.261383,-0.146809,0.096078 +0.288753,0.384809,-1.615560,-0.264447,-0.145457,0.100807 +0.287366,0.385690,-1.614150,-0.267511,-0.144105,0.105536 +0.285979,0.386571,-1.612740,-0.270576,-0.142753,0.110265 +0.284592,0.387452,-1.611330,-0.273640,-0.141401,0.114994 +0.283206,0.388333,-1.609920,-0.276704,-0.140049,0.119723 +0.281819,0.389214,-1.608510,-0.279769,-0.138697,0.124452 +0.280432,0.390095,-1.607100,-0.282833,-0.137345,0.129181 +0.279045,0.390975,-1.605690,-0.285898,-0.135992,0.133910 +0.277659,0.391856,-1.604280,-0.288962,-0.134640,0.138639 +0.276272,0.392737,-1.602870,-0.292026,-0.133288,0.143368 +0.274885,0.393618,-1.601460,-0.295091,-0.131936,0.148097 +0.273499,0.394499,-1.600050,-0.298155,-0.130584,0.152826 +0.272112,0.395380,-1.598640,-0.301219,-0.129232,0.157555 +0.270725,0.396261,-1.597230,-0.304284,-0.127880,0.162284 +0.269338,0.397142,-1.595820,-0.307348,-0.126528,0.167013 +0.267952,0.398023,-1.594410,-0.310412,-0.125176,0.171742 +0.266565,0.398904,-1.593000,-0.313477,-0.123824,0.176471 +0.265178,0.399785,-1.591590,-0.316541,-0.122472,0.181200 +0.263792,0.400666,-1.590180,-0.319605,-0.121120,0.185929 +0.262405,0.401546,-1.588770,-0.322670,-0.119768,0.190658 +0.261018,0.402427,-1.587360,-0.325734,-0.118416,0.195387 +0.259631,0.403308,-1.585950,-0.328798,-0.117064,0.200116 +0.258245,0.404189,-1.584540,-0.331863,-0.115712,0.204845 +0.256858,0.405070,-1.583130,-0.334927,-0.114360,0.209574 +0.255471,0.405951,-1.581720,-0.337991,-0.113008,0.214303 +0.254084,0.406832,-1.580310,-0.341056,-0.111656,0.219032 +0.252698,0.407713,-1.578900,-0.344120,-0.110304,0.223761 +0.251311,0.408594,-1.577490,-0.347184,-0.108952,0.228490 +0.249924,0.409475,-1.576080,-0.350249,-0.107600,0.233219 +0.248538,0.410356,-1.574670,-0.353313,-0.106248,0.237948 +0.247151,0.411237,-1.573260,-0.356377,-0.104896,0.242677 +0.245764,0.412118,-1.571850,-0.359442,-0.103544,0.247406 +0.244377,0.412998,-1.570440,-0.362506,-0.102192,0.252135 +0.242991,0.413879,-1.569030,-0.365570,-0.100840,0.256864 +0.241604,0.414760,-1.567630,-0.368635,-0.099488,0.261593 +0.240217,0.415641,-1.566220,-0.371699,-0.098136,0.266322 +0.238831,0.416522,-1.564810,-0.374764,-0.096784,0.271051 +0.237444,0.417403,-1.563400,-0.377828,-0.095432,0.275780 +0.236057,0.418284,-1.561990,-0.380892,-0.094080,0.280509 +0.234670,0.419165,-1.560580,-0.383957,-0.092728,0.285238 +0.233284,0.420046,-1.559170,-0.387021,-0.091376,0.289967 +0.231897,0.420927,-1.557760,-0.390085,-0.090024,0.294696 +0.230510,0.421808,-1.556350,-0.393150,-0.088672,0.299425 +0.229123,0.422689,-1.554940,-0.396214,-0.087319,0.304154 +0.227737,0.423569,-1.553530,-0.399278,-0.085967,0.308883 +0.226350,0.424450,-1.552120,-0.402343,-0.084615,0.313612 +0.224963,0.425331,-1.550710,-0.405407,-0.083263,0.318341 +0.223577,0.426212,-1.549300,-0.408471,-0.081911,0.323070 +0.222190,0.427093,-1.547890,-0.411536,-0.080559,0.327799 +0.220803,0.427974,-1.546480,-0.414600,-0.079207,0.332528 +0.219416,0.428855,-1.545070,-0.417664,-0.077855,0.337257 +0.218030,0.429736,-1.543660,-0.420729,-0.076503,0.341986 +0.216643,0.430617,-1.542250,-0.423793,-0.075151,0.346715 +0.215256,0.431498,-1.540840,-0.426857,-0.073799,0.351444 +0.213870,0.432379,-1.539430,-0.429922,-0.072447,0.356173 +0.212483,0.433260,-1.538020,-0.432986,-0.071095,0.360902 +0.211096,0.434141,-1.536610,-0.436050,-0.069743,0.365631 +0.209709,0.435021,-1.535200,-0.439115,-0.068391,0.370360 +0.208323,0.435902,-1.533790,-0.442179,-0.067039,0.375089 +0.206936,0.436783,-1.532380,-0.445243,-0.065687,0.379818 +0.205549,0.437664,-1.530970,-0.448308,-0.064335,0.384547 +0.204162,0.438545,-1.529560,-0.451372,-0.062983,0.389276 +0.202776,0.439426,-1.528150,-0.454437,-0.061631,0.394005 +0.201389,0.440307,-1.526740,-0.457501,-0.060279,0.398734 +0.200002,0.441188,-1.525330,-0.460565,-0.058927,0.403463 +0.198616,0.442069,-1.523920,-0.463630,-0.057575,0.408192 +0.197229,0.442950,-1.522510,-0.466694,-0.056223,0.412921 +0.195842,0.443831,-1.521100,-0.469758,-0.054871,0.417650 +0.194455,0.444712,-1.519690,-0.472823,-0.053519,0.422379 +0.193069,0.445593,-1.518290,-0.475887,-0.052167,0.427108 +0.191682,0.446473,-1.516880,-0.478951,-0.050815,0.431837 +0.190295,0.447354,-1.515470,-0.482016,-0.049463,0.436566 +0.188909,0.448235,-1.514060,-0.485080,-0.048111,0.441295 +0.187522,0.449116,-1.512650,-0.488144,-0.046759,0.446024 +0.186135,0.449997,-1.511240,-0.491209,-0.045407,0.450753 +0.184748,0.450878,-1.509830,-0.494273,-0.044055,0.455482 +0.183362,0.451759,-1.508420,-0.497337,-0.042702,0.460211 +0.181975,0.452640,-1.507010,-0.500402,-0.041350,0.464940 +0.180588,0.453521,-1.505600,-0.503466,-0.039998,0.469669 +0.179201,0.454402,-1.504190,-0.506530,-0.038646,0.474398 +0.177815,0.455283,-1.502780,-0.509595,-0.037294,0.479127 +0.176428,0.456164,-1.501370,-0.512659,-0.035942,0.483856 +0.175041,0.457044,-1.499960,-0.515723,-0.034590,0.488585 +0.173655,0.457925,-1.498550,-0.518788,-0.033238,0.493314 +0.172268,0.458806,-1.497140,-0.521852,-0.031886,0.498043 +0.170881,0.459687,-1.495730,-0.524916,-0.030534,0.502772 +0.169494,0.460568,-1.494320,-0.527981,-0.029182,0.507501 +0.168108,0.461449,-1.492910,-0.531045,-0.027830,0.512230 +0.166721,0.462330,-1.491500,-0.534110,-0.026478,0.516959 +0.165334,0.463211,-1.490090,-0.537174,-0.025126,0.521688 +0.163948,0.464092,-1.488680,-0.540238,-0.023774,0.526417 +0.162561,0.464973,-1.487270,-0.543303,-0.022422,0.531146 +0.161174,0.465854,-1.485860,-0.546367,-0.021070,0.535875 +0.159787,0.466735,-1.484450,-0.549431,-0.019718,0.540604 +0.158401,0.467616,-1.483040,-0.552496,-0.018366,0.545333 +0.157014,0.468496,-1.481630,-0.555560,-0.017014,0.550062 +0.155627,0.469377,-1.480220,-0.558624,-0.015662,0.554791 +0.154240,0.470258,-1.478810,-0.561689,-0.014310,0.559520 +0.152854,0.471139,-1.477400,-0.564753,-0.012958,0.564249 +0.151467,0.472020,-1.475990,-0.567817,-0.011606,0.568978 +0.150080,0.472901,-1.474580,-0.570882,-0.010254,0.573707 +0.148694,0.473782,-1.473170,-0.573946,-0.008902,0.578436 +0.147307,0.474663,-1.471760,-0.577010,-0.007550,0.583165 +0.145920,0.475544,-1.470350,-0.580075,-0.006198,0.587894 +0.144533,0.476425,-1.468950,-0.583139,-0.004846,0.592623 +0.143147,0.477306,-1.467540,-0.586203,-0.003494,0.597352 +0.141760,0.478187,-1.466130,-0.589268,-0.002142,0.602081 +0.140373,0.479067,-1.464720,-0.592332,-0.000790,0.606810 +0.138987,0.479948,-1.463310,-0.595396,0.000562,0.611539 +0.137600,0.480829,-1.461900,-0.598461,0.001914,0.616268 +0.136213,0.481710,-1.460490,-0.601525,0.003266,0.620997 +0.134826,0.482591,-1.459080,-0.604589,0.004618,0.625726 +0.133440,0.483472,-1.457670,-0.607654,0.005970,0.630455 +0.132053,0.484353,-1.456260,-0.610718,0.007323,0.635184 +0.130666,0.485234,-1.454850,-0.613782,0.008675,0.639913 +0.129279,0.486115,-1.453440,-0.616847,0.010027,0.644642 +0.127893,0.486996,-1.452030,-0.619911,0.011379,0.649371 +0.126506,0.487877,-1.450620,-0.622976,0.012731,0.654100 +0.125119,0.488758,-1.449210,-0.626040,0.014083,0.658829 +0.123733,0.489639,-1.447800,-0.629104,0.015435,0.663558 +0.122346,0.490519,-1.446390,-0.632169,0.016787,0.668287 +0.120959,0.491400,-1.444980,-0.635233,0.018139,0.673016 +0.119572,0.492281,-1.443570,-0.638297,0.019491,0.677745 +0.118186,0.493162,-1.442160,-0.641362,0.020843,0.682474 +0.116799,0.494043,-1.440750,-0.644426,0.022195,0.687203 +0.115412,0.494924,-1.439340,-0.647490,0.023547,0.691932 +0.114026,0.495805,-1.437930,-0.650555,0.024899,0.696661 +0.112639,0.496686,-1.436520,-0.653619,0.026251,0.701390 +0.111252,0.497567,-1.435110,-0.656683,0.027603,0.706119 +0.109865,0.498448,-1.433700,-0.659748,0.028955,0.710848 +0.108479,0.499329,-1.432290,-0.662812,0.030307,0.715577 +0.107092,0.500210,-1.430880,-0.665876,0.031659,0.720306 +0.105705,0.501091,-1.429470,-0.668941,0.033011,0.725035 +0.104318,0.501971,-1.428060,-0.672005,0.034363,0.729764 +0.102932,0.502852,-1.426650,-0.675069,0.035715,0.734493 +0.101545,0.503733,-1.425240,-0.678134,0.037067,0.739222 +0.100158,0.504614,-1.423830,-0.681198,0.038419,0.743951 +0.098772,0.505495,-1.422420,-0.684262,0.039771,0.748680 +0.097385,0.506376,-1.421010,-0.687327,0.041123,0.753409 +0.095998,0.507257,-1.419610,-0.690391,0.042475,0.758138 +0.094611,0.508138,-1.418200,-0.693455,0.043827,0.762867 +0.093225,0.509019,-1.416790,-0.696520,0.045179,0.767596 +0.091838,0.509900,-1.415380,-0.699584,0.046531,0.772325 +0.090451,0.510781,-1.413970,-0.702649,0.047883,0.777054 +0.089065,0.511662,-1.412560,-0.705713,0.049235,0.781783 +0.087678,0.512542,-1.411150,-0.708777,0.050587,0.786512 +0.086291,0.513423,-1.409740,-0.711842,0.051940,0.791241 +0.084904,0.514304,-1.408330,-0.714906,0.053291,0.795970 +0.083518,0.515185,-1.406920,-0.717970,0.054643,0.800699 +0.082131,0.516066,-1.405510,-0.721035,0.055995,0.805428 +0.080744,0.516947,-1.404100,-0.724099,0.057348,0.810157 +0.079357,0.517828,-1.402690,-0.727163,0.058700,0.814886 +0.077971,0.518709,-1.401280,-0.730228,0.060052,0.819615 +0.076584,0.519590,-1.399870,-0.733292,0.061404,0.824344 +0.075197,0.520471,-1.398460,-0.736356,0.062756,0.829073 +0.073811,0.521352,-1.397050,-0.739421,0.064108,0.833802 +0.072424,0.522233,-1.395640,-0.742485,0.065460,0.838531 +0.071037,0.523114,-1.394230,-0.745549,0.066812,0.843260 +0.069650,0.523994,-1.392820,-0.748614,0.068164,0.847989 +0.068264,0.524875,-1.391410,-0.751678,0.069516,0.852718 +0.066877,0.525756,-1.390000,-0.754742,0.070868,0.857447 +0.065490,0.526637,-1.388590,-0.757807,0.072220,0.862176 +0.064103,0.527518,-1.387180,-0.760871,0.073572,0.866905 +0.062717,0.528399,-1.385770,-0.763935,0.074924,0.871634 +0.061330,0.529280,-1.384360,-0.767000,0.076276,0.876363 +0.059943,0.530161,-1.382950,-0.770064,0.077628,0.881092 +0.058557,0.531042,-1.381540,-0.773128,0.078980,0.885821 +0.057170,0.531923,-1.380130,-0.776193,0.080332,0.890550 +0.055783,0.532804,-1.378720,-0.779257,0.081684,0.895279 +0.054397,0.533685,-1.377310,-0.782321,0.083036,0.900008 +0.053010,0.534565,-1.375900,-0.785386,0.084388,0.904737 +0.051623,0.535446,-1.374490,-0.788450,0.085740,0.909466 +0.050236,0.536327,-1.373080,-0.791515,0.087092,0.914195 +0.048850,0.537208,-1.371670,-0.794579,0.088444,0.918924 +0.047463,0.538089,-1.370270,-0.797643,0.089796,0.923653 +0.046076,0.538970,-1.368860,-0.800708,0.091148,0.928382 +0.044689,0.539851,-1.367450,-0.803772,0.092500,0.933111 +0.043303,0.540732,-1.366040,-0.806836,0.093852,0.937840 +0.041916,0.541613,-1.364630,-0.809901,0.095204,0.942569 +0.040529,0.542494,-1.363220,-0.812965,0.096556,0.947298 +0.039143,0.543375,-1.361810,-0.816029,0.097908,0.952027 +0.037756,0.544256,-1.360400,-0.819094,0.099261,0.956756 +0.036369,0.545137,-1.358990,-0.822158,0.100612,0.961485 +0.034982,0.546017,-1.357580,-0.825222,0.101965,0.966214 +0.033596,0.546898,-1.356170,-0.828287,0.103317,0.970943 +0.032209,0.547779,-1.354760,-0.831351,0.104669,0.975672 +0.030822,0.548660,-1.353350,-0.834415,0.106021,0.980401 +0.029436,0.549541,-1.351940,-0.837480,0.107373,0.985130 +0.028049,0.550422,-1.350530,-0.840544,0.108725,0.989859 +0.026662,0.551303,-1.349120,-0.843608,0.110077,0.994588 +0.025275,0.552184,-1.347710,-0.846673,0.111429,0.999317 +0.023889,0.553065,-1.346300,-0.849737,0.112781,1.004050 +0.022502,0.553946,-1.344890,-0.852801,0.114133,1.008780 +0.021115,0.554827,-1.343480,-0.855866,0.115485,1.013500 +0.019728,0.555708,-1.342070,-0.858930,0.116837,1.018230 +0.018342,0.556589,-1.340660,-0.861994,0.118189,1.022960 +0.016955,0.557469,-1.339250,-0.865059,0.119541,1.027690 +0.015568,0.558350,-1.337840,-0.868123,0.120893,1.032420 +0.014182,0.559231,-1.336430,-0.871188,0.122245,1.037150 +0.012795,0.560112,-1.335020,-0.874252,0.123597,1.041880 +0.011408,0.560993,-1.333610,-0.877316,0.124949,1.046610 +0.010021,0.561874,-1.332200,-0.880381,0.126301,1.051340 +0.008635,0.562755,-1.330790,-0.883445,0.127653,1.056070 +0.007248,0.563636,-1.329380,-0.886509,0.129005,1.060790 +0.005861,0.564517,-1.327970,-0.889574,0.130357,1.065520 +0.004475,0.565398,-1.326560,-0.892638,0.131709,1.070250 +0.003088,0.566279,-1.325150,-0.895702,0.133061,1.074980 +0.001701,0.567160,-1.323740,-0.898767,0.134413,1.079710 +0.000314,0.568040,-1.322330,-0.901831,0.135765,1.084440 +-0.001072,0.568921,-1.320920,-0.904895,0.137117,1.089170 +-0.002459,0.569802,-1.319520,-0.907960,0.138469,1.093900 +-0.003846,0.570683,-1.318110,-0.911024,0.139821,1.098630 +-0.005233,0.571564,-1.316700,-0.914088,0.141173,1.103360 +-0.006619,0.572445,-1.315290,-0.917153,0.142525,1.108080 +-0.008006,0.573326,-1.313880,-0.920217,0.143877,1.112810 +-0.009393,0.574207,-1.312470,-0.923281,0.145229,1.117540 +-0.010779,0.575088,-1.311060,-0.926346,0.146581,1.122270 +-0.012166,0.575969,-1.309650,-0.929410,0.147933,1.127000 +-0.013553,0.576850,-1.308240,-0.932474,0.149286,1.131730 +-0.014940,0.577731,-1.306830,-0.935539,0.150638,1.136460 +-0.016326,0.578612,-1.305420,-0.938603,0.151990,1.141190 +-0.017713,0.579492,-1.304010,-0.941667,0.153342,1.145920 +-0.019100,0.580373,-1.302600,-0.944732,0.154694,1.150650 +-0.020487,0.581254,-1.301190,-0.947796,0.156046,1.155370 +-0.021873,0.582135,-1.299780,-0.950861,0.157398,1.160100 +-0.023260,0.583016,-1.298370,-0.953925,0.158750,1.164830 +-0.024647,0.583897,-1.296960,-0.956989,0.160102,1.169560 +-0.026033,0.584778,-1.295550,-0.960054,0.161454,1.174290 +-0.027420,0.585659,-1.294140,-0.963118,0.162806,1.179020 +-0.028807,0.586540,-1.292730,-0.966182,0.164158,1.183750 +-0.030194,0.587421,-1.291320,-0.969247,0.165510,1.188480 +-0.031580,0.588302,-1.289910,-0.972311,0.166862,1.193210 +-0.032967,0.589183,-1.288500,-0.975375,0.168214,1.197940 +-0.034354,0.590063,-1.287090,-0.978440,0.169566,1.202660 +-0.035740,0.590944,-1.285680,-0.981504,0.170918,1.207390 +-0.037127,0.591825,-1.284270,-0.984568,0.172270,1.212120 +-0.038514,0.592706,-1.282860,-0.987633,0.173622,1.216850 +-0.039901,0.593587,-1.281450,-0.990697,0.174974,1.221580 +-0.041287,0.594468,-1.280040,-0.993761,0.176326,1.226310 +-0.042674,0.595349,-1.278630,-0.996826,0.177678,1.231040 +-0.044061,0.596230,-1.277220,-0.999890,0.179030,1.235770 +-0.045448,0.597111,-1.275810,-1.002950,0.180382,1.240500 +-0.046834,0.597992,-1.274400,-1.006020,0.181734,1.245230 +-0.048221,0.598873,-1.272990,-1.009080,0.183086,1.249950 +-0.049608,0.599754,-1.271580,-1.012150,0.184438,1.254680 +-0.050994,0.600635,-1.270180,-1.015210,0.185790,1.259410 +-0.052381,0.601515,-1.268770,-1.018280,0.187142,1.264140 +-0.053768,0.602396,-1.267360,-1.021340,0.188494,1.268870 +-0.055155,0.603277,-1.265950,-1.024400,0.189846,1.273600 +-0.056541,0.604158,-1.264540,-1.027470,0.191198,1.278330 +-0.057928,0.605039,-1.263130,-1.030530,0.192550,1.283060 +-0.059315,0.605920,-1.261720,-1.033600,0.193902,1.287790 +-0.060701,0.606801,-1.260310,-1.036660,0.195254,1.292520 +-0.062088,0.607682,-1.258900,-1.039730,0.196607,1.297240 +-0.063475,0.608563,-1.257490,-1.042790,0.197959,1.301970 +-0.064862,0.609444,-1.256080,-1.045860,0.199311,1.306700 +-0.066248,0.610325,-1.254670,-1.048920,0.200663,1.311430 +-0.067635,0.611206,-1.253260,-1.051980,0.202015,1.316160 +-0.069022,0.612087,-1.251850,-1.055050,0.203367,1.320890 +-0.070408,0.612967,-1.250440,-1.058110,0.204719,1.325620 +-0.071795,0.613848,-1.249030,-1.061180,0.206071,1.330350 +-0.073182,0.614729,-1.247620,-1.064240,0.207423,1.335080 +-0.074569,0.615610,-1.246210,-1.067310,0.208775,1.339810 +-0.075955,0.616491,-1.244800,-1.070370,0.210127,1.344530 +-0.077342,0.617372,-1.243390,-1.073430,0.211479,1.349260 +-0.078729,0.618253,-1.241980,-1.076500,0.212831,1.353990 +-0.080116,0.619134,-1.240570,-1.079560,0.214183,1.358720 +-0.081502,0.620015,-1.239160,-1.082630,0.215535,1.363450 +-0.082889,0.620896,-1.237750,-1.085690,0.216887,1.368180 +-0.084276,0.621777,-1.236340,-1.088760,0.218239,1.372910 +-0.085662,0.622658,-1.234930,-1.091820,0.219591,1.377640 +-0.087049,0.623538,-1.233520,-1.094880,0.220943,1.382370 +-0.088436,0.624419,-1.232110,-1.097950,0.222295,1.387100 +-0.089823,0.625300,-1.230700,-1.101010,0.223647,1.391820 +-0.091209,0.626181,-1.229290,-1.104080,0.224999,1.396550 +-0.092596,0.627062,-1.227880,-1.107140,0.226351,1.401280 +-0.093983,0.627943,-1.226470,-1.110210,0.227703,1.406010 +-0.095369,0.628824,-1.225060,-1.113270,0.229055,1.410740 +-0.096756,0.629705,-1.223650,-1.116340,0.230407,1.415470 +-0.098143,0.630586,-1.222240,-1.119400,0.231759,1.420200 +-0.099530,0.631467,-1.220840,-1.122460,0.233111,1.424930 +-0.100916,0.632348,-1.219430,-1.125530,0.234463,1.429660 +-0.102303,0.633229,-1.218020,-1.128590,0.235815,1.434390 +-0.103690,0.634110,-1.216610,-1.131660,0.237167,1.439110 +-0.105077,0.634990,-1.215200,-1.134720,0.238519,1.443840 +-0.106463,0.635871,-1.213790,-1.137790,0.239871,1.448570 +-0.107850,0.636752,-1.212380,-1.140850,0.241223,1.453300 +-0.109237,0.637633,-1.210970,-1.143910,0.242575,1.458030 +-0.110623,0.638514,-1.209560,-1.146980,0.243927,1.462760 +-0.112010,0.639395,-1.208150,-1.150040,0.245280,1.467490 +-0.113397,0.640276,-1.206740,-1.153110,0.246632,1.472220 +-0.114784,0.641157,-1.205330,-1.156170,0.247984,1.476950 +-0.116170,0.642038,-1.203920,-1.159240,0.249336,1.481680 +-0.117557,0.642919,-1.202510,-1.162300,0.250688,1.486400 +-0.118944,0.643800,-1.201100,-1.165360,0.252040,1.491130 +-0.120330,0.644681,-1.199690,-1.168430,0.253392,1.495860 +-0.121717,0.645561,-1.198280,-1.171490,0.254744,1.500590 +-0.123104,0.646442,-1.196870,-1.174560,0.256096,1.505320 +-0.124491,0.647323,-1.195460,-1.177620,0.257448,1.510050 +-0.125877,0.648204,-1.194050,-1.180690,0.258800,1.514780 +-0.127264,0.649085,-1.192640,-1.183750,0.260152,1.519510 +-0.128651,0.649966,-1.191230,-1.186820,0.261504,1.524240 +-0.130038,0.650847,-1.189820,-1.189880,0.262856,1.528970 +-0.131424,0.651728,-1.188410,-1.192940,0.264208,1.533690 +-0.132811,0.652609,-1.187000,-1.196010,0.265560,1.538420 +-0.134198,0.653490,-1.185590,-1.199070,0.266912,1.543150 +-0.135584,0.654371,-1.184180,-1.202140,0.268264,1.547880 +-0.136971,0.655252,-1.182770,-1.205200,0.269616,1.552610 +-0.138358,0.656133,-1.181360,-1.208270,0.270968,1.557340 +-0.139745,0.657013,-1.179950,-1.211330,0.272320,1.562070 +-0.141131,0.657894,-1.178540,-1.214390,0.273672,1.566800 +-0.142518,0.658775,-1.177130,-1.217460,0.275024,1.571530 +-0.143905,0.659656,-1.175720,-1.220520,0.276376,1.576260 +-0.145291,0.660537,-1.174310,-1.223590,0.277728,1.580980 +-0.146678,0.661418,-1.172900,-1.226650,0.279080,1.585710 +-0.148065,0.662299,-1.171500,-1.229720,0.280432,1.590440 +-0.149452,0.663180,-1.170090,-1.232780,0.281784,1.595170 +-0.150838,0.664061,-1.168680,-1.235840,0.283136,1.599900 +-0.152225,0.664942,-1.167270,-1.238910,0.284488,1.604630 +-0.153612,0.665823,-1.165860,-1.241970,0.285840,1.609360 +-0.154999,0.666704,-1.164450,-1.245040,0.287192,1.614090 +-0.156385,0.667585,-1.163040,-1.248100,0.288544,1.618820 +-0.157772,0.668465,-1.161630,-1.251170,0.289896,1.623550 +-0.159159,0.669346,-1.160220,-1.254230,0.291248,1.628270 +-0.160545,0.670227,-1.158810,-1.257300,0.292601,1.633000 +-0.161932,0.671108,-1.157400,-1.260360,0.293953,1.637730 +-0.163319,0.671989,-1.155990,-1.263420,0.295305,1.642460 +-0.164706,0.672870,-1.154580,-1.266490,0.296657,1.647190 +-0.166092,0.673751,-1.153170,-1.269550,0.298009,1.651920 +-0.167479,0.674632,-1.151760,-1.272620,0.299361,1.656650 +-0.168866,0.675513,-1.150350,-1.275680,0.300713,1.661380 +-0.170252,0.676394,-1.148940,-1.278750,0.302065,1.666110 +-0.171639,0.677275,-1.147530,-1.281810,0.303417,1.670840 +-0.173026,0.678156,-1.146120,-1.284870,0.304769,1.675560 +-0.174413,0.679036,-1.144710,-1.287940,0.306121,1.680290 +-0.175799,0.679917,-1.143300,-1.291000,0.307473,1.685020 +-0.177186,0.680798,-1.141890,-1.294070,0.308825,1.689750 +-0.178573,0.681679,-1.140480,-1.297130,0.310177,1.694480 +-0.179960,0.682560,-1.139070,-1.300200,0.311529,1.699210 +-0.181346,0.683441,-1.137660,-1.303260,0.312881,1.703940 +-0.182733,0.684322,-1.136250,-1.306320,0.314233,1.708670 +-0.184120,0.685203,-1.134840,-1.309390,0.315585,1.713400 +-0.185506,0.686084,-1.133430,-1.312450,0.316937,1.718130 +-0.186893,0.686965,-1.132020,-1.315520,0.318289,1.722850 +-0.188280,0.687846,-1.130610,-1.318580,0.319641,1.727580 +-0.189667,0.688727,-1.129200,-1.321650,0.320993,1.732310 +-0.191053,0.689608,-1.127790,-1.324710,0.322345,1.737040 +-0.192440,0.690488,-1.126380,-1.327780,0.323697,1.741770 +-0.193827,0.691369,-1.124970,-1.330840,0.325049,1.746500 +-0.195213,0.692250,-1.123560,-1.333900,0.326401,1.751230 +-0.196600,0.693131,-1.122160,-1.336970,0.327753,1.755960 +-0.197987,0.694012,-1.120750,-1.340030,0.329105,1.760690 +-0.199374,0.694893,-1.119340,-1.343100,0.330457,1.765420 +-0.200760,0.695774,-1.117930,-1.346160,0.331809,1.770140 +-0.202147,0.696655,-1.116520,-1.349230,0.333161,1.774870 +-0.203534,0.697536,-1.115110,-1.352290,0.334513,1.779600 +-0.204921,0.698417,-1.113700,-1.355350,0.335865,1.784330 +-0.206307,0.699298,-1.112290,-1.358420,0.337217,1.789060 +-0.207694,0.700179,-1.110880,-1.361480,0.338569,1.793790 +-0.209081,0.701059,-1.109470,-1.364550,0.339922,1.798520 +-0.210467,0.701940,-1.108060,-1.367610,0.341274,1.803250 +-0.211854,0.702821,-1.106650,-1.370680,0.342626,1.807980 +-0.213241,0.703702,-1.105240,-1.373740,0.343978,1.812710 +-0.214628,0.704583,-1.103830,-1.376800,0.345330,1.817430 +-0.216014,0.705464,-1.102420,-1.379870,0.346682,1.822160 +-0.217401,0.706345,-1.101010,-1.382930,0.348034,1.826890 +-0.218788,0.707226,-1.099600,-1.386000,0.349386,1.831620 +-0.220174,0.708107,-1.098190,-1.389060,0.350738,1.836350 +-0.221561,0.708988,-1.096780,-1.392130,0.352090,1.841080 +-0.222948,0.709869,-1.095370,-1.395190,0.353442,1.845810 +-0.224335,0.710750,-1.093960,-1.398250,0.354794,1.850540 +-0.225721,0.711631,-1.092550,-1.401320,0.356146,1.855270 +-0.227108,0.712511,-1.091140,-1.404380,0.357498,1.860000 +-0.228495,0.713392,-1.089730,-1.407450,0.358850,1.864720 +-0.229882,0.714273,-1.088320,-1.410510,0.360202,1.869450 +-0.231268,0.715154,-1.086910,-1.413580,0.361554,1.874180 +-0.232655,0.716035,-1.085500,-1.416640,0.362906,1.878910 +-0.234042,0.716916,-1.084090,-1.419710,0.364258,1.883640 +-0.235428,0.717797,-1.082680,-1.422770,0.365610,1.888370 +-0.236815,0.718678,-1.081270,-1.425830,0.366962,1.893100 +-0.238202,0.719559,-1.079860,-1.428900,0.368314,1.897830 +-0.239589,0.720440,-1.078450,-1.431960,0.369666,1.902560 +-0.240975,0.721321,-1.077040,-1.435030,0.371018,1.907290 +-0.242362,0.722202,-1.075630,-1.438090,0.372370,1.912010 +-0.243749,0.723083,-1.074220,-1.441160,0.373722,1.916740 +-0.245135,0.723963,-1.072820,-1.444220,0.375074,1.921470 +-0.246522,0.724844,-1.071410,-1.447280,0.376426,1.926200 +-0.247909,0.725725,-1.070000,-1.450350,0.377778,1.930930 +-0.249296,0.726606,-1.068590,-1.453410,0.379130,1.935660 +-0.250682,0.727487,-1.067180,-1.456480,0.380482,1.940390 +-0.252069,0.728368,-1.065770,-1.459540,0.381834,1.945120 +-0.253456,0.729249,-1.064360,-1.462610,0.383186,1.949850 +-0.254843,0.730130,-1.062950,-1.465670,0.384538,1.954580 +-0.256229,0.731011,-1.061540,-1.468730,0.385890,1.959300 +-0.257616,0.731892,-1.060130,-1.471800,0.387243,1.964030 +-0.259003,0.732773,-1.058720,-1.474860,0.388595,1.968760 +-0.260389,0.733654,-1.057310,-1.477930,0.389947,1.973490 +-0.261776,0.734534,-1.055900,-1.480990,0.391299,1.978220 +-0.263163,0.735415,-1.054490,-1.484060,0.392651,1.982950 +-0.264550,0.736296,-1.053080,-1.487120,0.394003,1.987680 +-0.265936,0.737177,-1.051670,-1.490190,0.395355,1.992410 +-0.267323,0.738058,-1.050260,-1.493250,0.396707,1.997140 +-0.268710,0.738939,-1.048850,-1.496310,0.398059,2.001870 +-0.270096,0.739820,-1.047440,-1.499380,0.399411,2.006590 +-0.271483,0.740701,-1.046030,-1.502440,0.400763,2.011320 +-0.272870,0.741582,-1.044620,-1.505510,0.402115,2.016050 +-0.274257,0.742463,-1.043210,-1.508570,0.403467,2.020780 +-0.275643,0.743344,-1.041800,-1.511640,0.404819,2.025510 +-0.277030,0.744225,-1.040390,-1.514700,0.406171,2.030240 +-0.278417,0.745106,-1.038980,-1.517760,0.407523,2.034970 +-0.279804,0.745986,-1.037570,-1.520830,0.408875,2.039700 +-0.281190,0.746867,-1.036160,-1.523890,0.410227,2.044430 +-0.282577,0.747748,-1.034750,-1.526960,0.411579,2.049160 +-0.283964,0.748629,-1.033340,-1.530020,0.412931,2.053890 +-0.285350,0.749510,-1.031930,-1.533090,0.414283,2.058610 +-0.286737,0.750391,-1.030520,-1.536150,0.415635,2.063340 +-0.288124,0.751272,-1.029110,-1.539210,0.416987,2.068070 +-0.289511,0.752153,-1.027700,-1.542280,0.418339,2.072800 +-0.290897,0.753034,-1.026290,-1.545340,0.419691,2.077530 +-0.292284,0.753915,-1.024880,-1.548410,0.421043,2.082260 +-0.293671,0.754796,-1.023470,-1.551470,0.422395,2.086990 +-0.295057,0.755677,-1.022070,-1.554540,0.423747,2.091720 +-0.296444,0.756557,-1.020660,-1.557600,0.425099,2.096450 +-0.297831,0.757438,-1.019250,-1.560670,0.426451,2.101180 +-0.299218,0.758319,-1.017840,-1.563730,0.427803,2.105900 +-0.300604,0.759200,-1.016430,-1.566790,0.429155,2.110630 +-0.301991,0.760081,-1.015020,-1.569860,0.430507,2.115360 +-0.303378,0.760962,-1.013610,-1.572920,0.431859,2.120090 +-0.304765,0.761843,-1.012200,-1.575990,0.433211,2.124820 +-0.306151,0.762724,-1.010790,-1.579050,0.434564,2.129550 +-0.307538,0.763605,-1.009380,-1.582120,0.435916,2.134280 +-0.308925,0.764486,-1.007970,-1.585180,0.437268,2.139010 +-0.310311,0.765367,-1.006560,-1.588240,0.438620,2.143740 +-0.311698,0.766248,-1.005150,-1.591310,0.439972,2.148470 +-0.313085,0.767129,-1.003740,-1.594370,0.441324,2.153190 +-0.314472,0.768009,-1.002330,-1.597440,0.442676,2.157920 +-0.315858,0.768890,-1.000920,-1.600500,0.444028,2.162650 +-0.317245,0.769771,-0.999510,-1.603570,0.445380,2.167380 +-0.318632,0.770652,-0.998100,-1.606630,0.446732,2.172110 +-0.320018,0.771533,-0.996690,-1.609690,0.448084,2.176840 +-0.321405,0.772414,-0.995281,-1.612760,0.449436,2.181570 +-0.322792,0.773295,-0.993871,-1.615820,0.450788,2.186300 +-0.324179,0.774176,-0.992461,-1.618890,0.452140,2.191030 +-0.325565,0.775057,-0.991052,-1.621950,0.453492,2.195760 +-0.326952,0.775938,-0.989642,-1.625020,0.454844,2.200480 +-0.328339,0.776819,-0.988232,-1.628080,0.456196,2.205210 +-0.329726,0.777700,-0.986822,-1.631150,0.457548,2.209940 +-0.331112,0.778581,-0.985413,-1.634210,0.458900,2.214670 +-0.332499,0.779461,-0.984003,-1.637270,0.460252,2.219400 +-0.333886,0.780342,-0.982593,-1.640340,0.461604,2.224130 +-0.335272,0.781223,-0.981184,-1.643400,0.462956,2.228860 +-0.336659,0.782104,-0.979774,-1.646470,0.464308,2.233590 +-0.338046,0.782985,-0.978364,-1.649530,0.465660,2.238320 +-0.339433,0.783866,-0.976954,-1.652600,0.467012,2.243050 +-0.340819,0.784747,-0.975545,-1.655660,0.468364,2.247770 +-0.342206,0.785628,-0.974135,-1.658720,0.469716,2.252500 +-0.343593,0.786509,-0.972725,-1.661790,0.471068,2.257230 +-0.344979,0.787390,-0.971315,-1.664850,0.472420,2.261960 +-0.346366,0.788271,-0.969906,-1.667920,0.473772,2.266690 +-0.347753,0.789152,-0.968496,-1.670980,0.475124,2.271420 +-0.349140,0.790032,-0.967086,-1.674050,0.476476,2.276150 +-0.350526,0.790913,-0.965677,-1.677110,0.477828,2.280880 +-0.351913,0.791794,-0.964267,-1.680170,0.479180,2.285610 +-0.353300,0.792675,-0.962857,-1.683240,0.480532,2.290340 +-0.354687,0.793556,-0.961447,-1.686300,0.481885,2.295060 +-0.356073,0.794437,-0.960038,-1.689370,0.483237,2.299790 +-0.357460,0.795318,-0.958628,-1.692430,0.484589,2.304520 +-0.358847,0.796199,-0.957218,-1.695500,0.485941,2.309250 +-0.360233,0.797080,-0.955809,-1.698560,0.487293,2.313980 +-0.361620,0.797961,-0.954399,-1.701630,0.488645,2.318710 +-0.363007,0.798842,-0.952989,-1.704690,0.489997,2.323440 +-0.364394,0.799723,-0.951579,-1.707750,0.491349,2.328170 +-0.365780,0.800604,-0.950170,-1.710820,0.492701,2.332900 +-0.367167,0.801484,-0.948760,-1.713880,0.494053,2.337630 +-0.368554,0.802365,-0.947350,-1.716950,0.495405,2.342350 +-0.369940,0.803246,-0.945941,-1.720010,0.496757,2.347080 +-0.371327,0.804127,-0.944531,-1.723080,0.498109,2.351810 +-0.372714,0.805008,-0.943121,-1.726140,0.499461,2.356540 +-0.374101,0.805889,-0.941711,-1.729200,0.500813,2.361270 +-0.375487,0.806770,-0.940302,-1.732270,0.502165,2.366000 +-0.376874,0.807651,-0.938892,-1.735330,0.503517,2.370730 +-0.378261,0.808532,-0.937482,-1.738400,0.504869,2.375460 +-0.379648,0.809413,-0.936073,-1.741460,0.506221,2.380190 +-0.381034,0.810294,-0.934663,-1.744530,0.507573,2.384920 +-0.382421,0.811175,-0.933253,-1.747590,0.508925,2.389640 +-0.383808,0.812055,-0.931843,-1.750650,0.510277,2.394370 +-0.385194,0.812936,-0.930434,-1.753720,0.511629,2.399100 +-0.386581,0.813817,-0.929024,-1.756780,0.512981,2.403830 +-0.387968,0.814698,-0.927614,-1.759850,0.514333,2.408560 +-0.389355,0.815579,-0.926205,-1.762910,0.515685,2.413290 +-0.390741,0.816460,-0.924795,-1.765980,0.517037,2.418020 +-0.392128,0.817341,-0.923385,-1.769040,0.518389,2.422750 +-0.393515,0.818222,-0.921975,-1.772110,0.519741,2.427480 +-0.394901,0.819103,-0.920566,-1.775170,0.521093,2.432210 +-0.396288,0.819984,-0.919156,-1.778230,0.522445,2.436930 +-0.397675,0.820865,-0.917746,-1.781300,0.523797,2.441660 +-0.399062,0.821746,-0.916337,-1.784360,0.525149,2.446390 +-0.400448,0.822627,-0.914927,-1.787430,0.526501,2.451120 +-0.401835,0.823507,-0.913517,-1.790490,0.527853,2.455850 +-0.403222,0.824388,-0.912107,-1.793560,0.529205,2.460580 +-0.404609,0.825269,-0.910698,-1.796620,0.530558,2.465310 +-0.405995,0.826150,-0.909288,-1.799680,0.531910,2.470040 +-0.407382,0.827031,-0.907878,-1.802750,0.533262,2.474770 +-0.408769,0.827912,-0.906469,-1.805810,0.534614,2.479500 +-0.410155,0.828793,-0.905059,-1.808880,0.535966,2.484220 +-0.411542,0.829674,-0.903649,-1.811940,0.537318,2.488950 +-0.412929,0.830555,-0.902239,-1.815010,0.538670,2.493680 +-0.414316,0.831436,-0.900830,-1.818070,0.540022,2.498410 +-0.415702,0.832317,-0.899420,-1.821130,0.541374,2.503140 +-0.417089,0.833198,-0.898010,-1.824200,0.542726,2.507870 +-0.418476,0.834079,-0.896601,-1.827260,0.544078,2.512600 +-0.419862,0.834959,-0.895191,-1.830330,0.545430,2.517330 +-0.421249,0.835840,-0.893781,-1.833390,0.546782,2.522060 +-0.422636,0.836721,-0.892371,-1.836460,0.548134,2.526790 +-0.424023,0.837602,-0.890962,-1.839520,0.549486,2.531510 +-0.425409,0.838483,-0.889552,-1.842590,0.550838,2.536240 +-0.426796,0.839364,-0.888142,-1.845650,0.552190,2.540970 +-0.428183,0.840245,-0.886733,-1.848710,0.553542,2.545700 +-0.429570,0.841126,-0.885323,-1.851780,0.554894,2.550430 +-0.430956,0.842007,-0.883913,-1.854840,0.556246,2.555160 +-0.432343,0.842888,-0.882503,-1.857910,0.557598,2.559890 +-0.433730,0.843769,-0.881094,-1.860970,0.558950,2.564620 +-0.435116,0.844650,-0.879684,-1.864040,0.560302,2.569350 +-0.436503,0.845530,-0.878274,-1.867100,0.561654,2.574080 +-0.437890,0.846411,-0.876865,-1.870160,0.563006,2.578800 +-0.439277,0.847292,-0.875455,-1.873230,0.564358,2.583530 +-0.440663,0.848173,-0.874045,-1.876290,0.565710,2.588260 +-0.442050,0.849054,-0.872635,-1.879360,0.567062,2.592990 +-0.443437,0.849935,-0.871226,-1.882420,0.568414,2.597720 +-0.444823,0.850816,-0.869816,-1.885490,0.569766,2.602450 +-0.446210,0.851697,-0.868406,-1.888550,0.571118,2.607180 +-0.447597,0.852578,-0.866997,-1.891610,0.572470,2.611900 +-0.448984,0.853459,-0.865587,-1.894680,0.573822,2.616600 +-0.450370,0.854340,-0.864177,-1.897740,0.575174,2.621260 +-0.451757,0.855221,-0.862767,-1.900810,0.576526,2.625880 +-0.453144,0.856102,-0.861358,-1.903870,0.577879,2.630440 +-0.454531,0.856982,-0.859948,-1.906940,0.579231,2.634920 +-0.455917,0.857863,-0.858538,-1.910000,0.580583,2.639320 +-0.457304,0.858744,-0.857129,-1.913070,0.581935,2.643620 +-0.458691,0.859625,-0.855719,-1.916130,0.583287,2.647810 +-0.460077,0.860506,-0.854309,-1.919180,0.584639,2.651870 +-0.461464,0.861387,-0.852899,-1.922200,0.585991,2.655800 +-0.462851,0.862268,-0.851493,-1.925190,0.587343,2.659570 +-0.464238,0.863149,-0.850101,-1.928130,0.588695,2.663180 +-0.465624,0.864030,-0.848734,-1.931000,0.590047,2.666620 +-0.467011,0.864911,-0.847402,-1.933790,0.591399,2.669860 +-0.468398,0.865792,-0.846117,-1.936500,0.592751,2.672900 +-0.469784,0.866673,-0.844889,-1.939100,0.594103,2.675730 +-0.471171,0.867553,-0.843728,-1.941590,0.595455,2.678330 +-0.472556,0.868430,-0.842647,-1.943950,0.596807,2.680680 +-0.473932,0.869293,-0.841655,-1.946160,0.598159,2.682780 +-0.475286,0.870130,-0.840764,-1.948220,0.599511,2.684640 +-0.476608,0.870932,-0.839984,-1.950120,0.600863,2.686260 +-0.477888,0.871687,-0.839326,-1.951830,0.602206,2.687660 +-0.479115,0.872384,-0.838800,-1.953360,0.603528,2.688860 +-0.480277,0.873013,-0.838413,-1.954730,0.604817,2.689850 +-0.481365,0.873562,-0.838155,-1.955940,0.606059,2.690670 +-0.482366,0.874022,-0.838016,-1.957010,0.607241,2.691310 +-0.483272,0.874381,-0.837985,-1.957950,0.608350,2.691800 +-0.484081,0.874629,-0.838050,-1.958780,0.609373,2.692150 +-0.484805,0.874765,-0.838201,-1.959500,0.610298,2.692360 +-0.485455,0.874802,-0.838428,-1.960140,0.611112,2.692460 +-0.486040,0.874748,-0.838719,-1.960690,0.611821,2.692450 +-0.486573,0.874616,-0.839064,-1.961190,0.612438,2.692350 +-0.487063,0.874415,-0.839451,-1.961630,0.612974,2.692170 +-0.487522,0.874157,-0.839871,-1.962030,0.613444,2.691930 +-0.487960,0.873853,-0.840312,-1.962410,0.613860,2.691630 +-0.488388,0.873514,-0.840762,-1.962780,0.614235,2.691290 +-0.488818,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-0.489779,0.872313,-0.842149,-1.963985,0.615274,2.690091 +-0.490791,0.871415,-0.843027,-1.964882,0.615892,2.689194 +-0.491847,0.870462,-0.843844,-1.965835,0.616435,2.688241 +-0.492943,0.869458,-0.844594,-1.966839,0.616898,2.687237 +-0.494072,0.868409,-0.845274,-1.967888,0.617279,2.686187 +-0.495229,0.867319,-0.845881,-1.968978,0.617577,2.685097 +-0.496408,0.866195,-0.846410,-1.970103,0.617790,2.683973 +-0.497603,0.865041,-0.846861,-1.971256,0.617917,2.682820 +-0.498806,0.863866,-0.847229,-1.972431,0.617956,2.681644 +-0.500013,0.862673,-0.847514,-1.973624,0.617909,2.680452 +-0.501216,0.861471,-0.847713,-1.974826,0.617774,2.679249 +-0.502410,0.860264,-0.847826,-1.976033,0.617554,2.678042 +-0.503588,0.859060,-0.847852,-1.977237,0.617248,2.676838 +-0.504745,0.857864,-0.847790,-1.978433,0.616859,2.675642 +-0.505873,0.856683,-0.847643,-1.979614,0.616388,2.674461 +-0.506967,0.855523,-0.847409,-1.980774,0.615839,2.673301 +-0.508022,0.854390,-0.847090,-1.981907,0.615213,2.672168 +-0.509032,0.853289,-0.846688,-1.983008,0.614515,2.671068 +-0.509992,0.852228,-0.846206,-1.984069,0.613747,2.670006 +-0.510896,0.851210,-0.845644,-1.985087,0.612914,2.668988 +-0.511741,0.850242,-0.845007,-1.986055,0.612021,2.668020 +-0.512521,0.849329,-0.844298,-1.986968,0.611071,2.667107 +-0.513232,0.848474,-0.843521,-1.987823,0.610070,2.666253 +-0.513871,0.847684,-0.842679,-1.988613,0.609023,2.665462 +-0.514435,0.846961,-0.841777,-1.989336,0.607935,2.664739 +-0.514920,0.846310,-0.840819,-1.989987,0.606813,2.664088 +-0.515325,0.845734,-0.839811,-1.990563,0.605661,2.663512 +-0.515646,0.845236,-0.838758,-1.991061,0.604487,2.663014 +-0.515882,0.844819,-0.837665,-1.991479,0.603295,2.662597 +-0.516033,0.844484,-0.836539,-1.991813,0.602093,2.662262 +-0.516096,0.844234,-0.835384,-1.992063,0.600887,2.662012 +-0.516073,0.844070,-0.834207,-1.992227,0.599682,2.661848 +-0.515962,0.843992,-0.833014,-1.992305,0.598485,2.661770 +-0.515765,0.844002,-0.831812,-1.992295,0.597303,2.661780 +-0.515483,0.844098,-0.830606,-1.992199,0.596142,2.661876 +-0.515117,0.844281,-0.829403,-1.992016,0.595007,2.662060 +-0.514669,0.844550,-0.828209,-1.991747,0.593904,2.662328 +-0.514141,0.844903,-0.827030,-1.991394,0.592840,2.662681 +-0.513536,0.845338,-0.825873,-1.990959,0.591820,2.663117 +-0.512857,0.845854,-0.824744,-1.990443,0.590849,2.663632 +-0.512108,0.846446,-0.823648,-1.989851,0.589932,2.664225 +-0.511293,0.847114,-0.822591,-1.989184,0.589074,2.664892 +-0.510416,0.847851,-0.821579,-1.988446,0.588279,2.665630 +-0.509481,0.848656,-0.820616,-1.987641,0.587553,2.666434 +-0.508494,0.849524,-0.819709,-1.986773,0.586897,2.667302 +-0.507459,0.850450,-0.818861,-1.985847,0.586316,2.668228 +-0.506382,0.851429,-0.818077,-1.984868,0.585814,2.669207 +-0.505268,0.852457,-0.817362,-1.983840,0.585391,2.670235 +-0.504124,0.853527,-0.816718,-1.982770,0.585052,2.671306 +-0.502955,0.854635,-0.816150,-1.981662,0.584797,2.672414 +-0.501768,0.855775,-0.815660,-1.980522,0.584627,2.673553 +-0.500568,0.856940,-0.815251,-1.979357,0.584544,2.674718 +-0.499362,0.858125,-0.814925,-1.978172,0.584549,2.675903 +-0.498156,0.859323,-0.814683,-1.976974,0.584640,2.677102 +-0.496957,0.860529,-0.814527,-1.975768,0.584818,2.678307 +-0.495770,0.861735,-0.814458,-1.974562,0.585082,2.679513 +-0.494602,0.862936,-0.814476,-1.973361,0.585430,2.680714 +-0.493459,0.864125,-0.814581,-1.972172,0.585860,2.681903 +-0.492347,0.865296,-0.814772,-1.971001,0.586371,2.683075 +-0.491272,0.866444,-0.815049,-1.969853,0.586959,2.684222 +-0.490239,0.867561,-0.815410,-1.968736,0.587622,2.685339 +-0.489254,0.868643,-0.815853,-1.967655,0.588355,2.686421 +-0.488322,0.869683,-0.816375,-1.966615,0.589156,2.687461 +-0.487447,0.870676,-0.816975,-1.965621,0.590020,2.688454 +-0.486634,0.871617,-0.817649,-1.964680,0.590943,2.689395 +-0.485889,0.872501,-0.818393,-1.963796,0.591919,2.690279 +-0.485213,0.873324,-0.819203,-1.962973,0.592944,2.691102 +-0.484611,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-0.484087,0.874768,-0.821007,-1.961529,0.595118,2.692546 +-0.483642,0.875381,-0.821990,-1.960916,0.596256,2.693160 +-0.483279,0.875919,-0.823022,-1.960379,0.597420,2.693697 +-0.483001,0.876376,-0.824096,-1.959921,0.598604,2.694154 +-0.482808,0.876752,-0.825206,-1.959545,0.599802,2.694530 +-0.482701,0.877044,-0.826348,-1.959253,0.601007,2.694823 +-0.482681,0.877251,-0.827514,-1.959046,0.602213,2.695030 +-0.482748,0.877372,-0.828700,-1.958925,0.603414,2.695150 +-0.482903,0.877406,-0.829899,-1.958891,0.604604,2.695184 +-0.483143,0.877352,-0.831104,-1.958945,0.605777,2.695130 +-0.483468,0.877212,-0.832309,-1.959085,0.606926,2.694990 +-0.483875,0.876985,-0.833508,-1.959312,0.608045,2.694764 +-0.484364,0.876674,-0.834695,-1.959623,0.609129,2.694452 +-0.484931,0.876279,-0.835863,-1.960018,0.610172,2.694058 +-0.485574,0.875803,-0.837007,-1.960494,0.611168,2.693582 +-0.486288,0.875249,-0.838121,-1.961048,0.612112,2.693027 +-0.487071,0.874618,-0.839198,-1.961679,0.613000,2.692396 +-0.487918,0.873915,-0.840233,-1.962382,0.613827,2.691693 +-0.488825,0.873143,-0.841221,-1.963154,0.614588,2.690921 +-0.489787,0.872306,-0.842156,-1.963991,0.615279,2.690084 +-0.490799,0.871408,-0.843034,-1.964889,0.615897,2.689186 +-0.491856,0.870455,-0.843850,-1.965843,0.616439,2.688233 +-0.492952,0.869450,-0.844600,-1.966847,0.616901,2.687228 +-0.494081,0.868400,-0.845279,-1.967897,0.617282,2.686178 +-0.495239,0.867310,-0.845885,-1.968987,0.617579,2.685088 +-0.496418,0.866185,-0.846414,-1.970112,0.617792,2.683964 +-0.497612,0.865032,-0.846864,-1.971265,0.617917,2.682810 +-0.498816,0.863856,-0.847232,-1.972441,0.617956,2.681634 +-0.500022,0.862664,-0.847515,-1.973633,0.617908,2.680442 +-0.501226,0.861461,-0.847714,-1.974836,0.617773,2.679239 +-0.502420,0.860255,-0.847826,-1.976042,0.617552,2.678033 +-0.503598,0.859050,-0.847851,-1.977247,0.617245,2.676829 +-0.504754,0.857855,-0.847790,-1.978443,0.616855,2.675633 +-0.505882,0.856674,-0.847641,-1.979623,0.616384,2.674452 +-0.506976,0.855514,-0.847406,-1.980783,0.615834,2.673292 +-0.508031,0.854381,-0.847087,-1.981916,0.615208,2.672159 +-0.509040,0.853281,-0.846685,-1.983016,0.614509,2.671059 +-0.509999,0.852219,-0.846201,-1.984078,0.613741,2.669998 +-0.510903,0.851202,-0.845640,-1.985095,0.612908,2.668981 +-0.511747,0.850235,-0.845002,-1.986062,0.612014,2.668013 +-0.512526,0.849322,-0.844293,-1.986976,0.611063,2.667100 +-0.513237,0.848468,-0.843514,-1.987829,0.610062,2.666246 +-0.513876,0.847678,-0.842672,-1.988619,0.609014,2.665456 +-0.514439,0.846956,-0.841769,-1.989341,0.607927,2.664734 +-0.514924,0.846305,-0.840811,-1.989992,0.606804,2.664083 +-0.515328,0.845730,-0.839803,-1.990567,0.605652,2.663508 +-0.515648,0.845232,-0.838750,-1.991065,0.604477,2.663011 +-0.515884,0.844816,-0.837656,-1.991482,0.603286,2.662594 +-0.516034,0.844482,-0.836530,-1.991815,0.602084,2.662260 +-0.516096,0.844232,-0.835375,-1.992065,0.600877,2.662010 +-0.516072,0.844069,-0.834198,-1.992228,0.599672,2.661847 +-0.515961,0.843992,-0.833005,-1.992305,0.598476,2.661770 +-0.515763,0.844002,-0.831802,-1.992295,0.597294,2.661780 +-0.515480,0.844099,-0.830596,-1.992198,0.596133,2.661878 +-0.515114,0.844283,-0.829393,-1.992014,0.594998,2.662061 +-0.514665,0.844553,-0.828199,-1.991745,0.593896,2.662331 +-0.514136,0.844906,-0.827021,-1.991391,0.592832,2.662684 +-0.513531,0.845342,-0.825864,-1.990955,0.591812,2.663120 +-0.512851,0.845858,-0.824735,-1.990439,0.590841,2.663636 +-0.512102,0.846452,-0.823639,-1.989846,0.589925,2.664230 +-0.511286,0.847119,-0.822583,-1.989178,0.589067,2.664897 +-0.510408,0.847858,-0.821571,-1.988440,0.588273,2.665636 +-0.509473,0.848663,-0.820609,-1.987634,0.587547,2.666441 +-0.508485,0.849531,-0.819702,-1.986766,0.586892,2.667309 +-0.507450,0.850457,-0.818854,-1.985840,0.586312,2.668236 +-0.506373,0.851437,-0.818071,-1.984860,0.585810,2.669215 +-0.505259,0.852465,-0.817356,-1.983832,0.585388,2.670243 +-0.504115,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-0.502946,0.854644,-0.816146,-1.981653,0.584795,2.672423 +-0.501758,0.855784,-0.815657,-1.980513,0.584626,2.673562 +-0.500559,0.856950,-0.815248,-1.979347,0.584544,2.674728 +-0.499353,0.858135,-0.814922,-1.978163,0.584549,2.675913 +-0.498147,0.859333,-0.814681,-1.976964,0.584641,2.677111 +-0.496947,0.860538,-0.814526,-1.975759,0.584820,2.678317 +-0.495761,0.861745,-0.814458,-1.974553,0.585084,2.679523 +-0.494593,0.862945,-0.814476,-1.973352,0.585433,2.680724 +-0.493450,0.864134,-0.814582,-1.972163,0.585864,2.681913 +-0.492339,0.865306,-0.814774,-1.970992,0.586375,2.683084 +-0.491264,0.866453,-0.815052,-1.969844,0.586964,2.684231 +-0.490231,0.867570,-0.815413,-1.968727,0.587627,2.685348 +-0.489246,0.868651,-0.815856,-1.967646,0.588362,2.686429 +-0.488314,0.869691,-0.816380,-1.966606,0.589163,2.687469 +-0.487440,0.870684,-0.816980,-1.965614,0.590028,2.688462 +-0.486628,0.871624,-0.817654,-1.964673,0.590951,2.689402 +-0.485883,0.872508,-0.818399,-1.963789,0.591927,2.690286 +-0.485208,0.873330,-0.819210,-1.962967,0.592953,2.691108 +-0.484607,0.874087,-0.820083,-1.962211,0.594021,2.691865 +-0.484083,0.874773,-0.821015,-1.961524,0.595127,2.692551 +-0.483639,0.875386,-0.821999,-1.960911,0.596265,2.693164 +-0.483277,0.875923,-0.823030,-1.960375,0.597429,2.693701 +-0.482999,0.876380,-0.824104,-1.959918,0.598613,2.694158 +-0.482806,0.876755,-0.825215,-1.959542,0.599811,2.694533 +-0.482700,0.877046,-0.826357,-1.959251,0.601016,2.694825 +-0.482681,0.877253,-0.827524,-1.959044,0.602223,2.695031 +-0.482749,0.877373,-0.828710,-1.958925,0.603424,2.695151 +-0.482904,0.877406,-0.829908,-1.958892,0.604614,2.695184 +-0.483145,0.877351,-0.831113,-1.958946,0.605786,2.695130 +-0.483471,0.877210,-0.832318,-1.959087,0.606935,2.694989 +-0.483879,0.876983,-0.833517,-1.959314,0.608054,2.694761 +-0.484368,0.876671,-0.834704,-1.959626,0.609137,2.694449 +-0.484936,0.876276,-0.835873,-1.960021,0.610180,2.694054 +-0.485579,0.875799,-0.837016,-1.960498,0.611176,2.693578 +-0.486294,0.875244,-0.838129,-1.961053,0.612120,2.693022 +-0.487078,0.874613,-0.839206,-1.961684,0.613007,2.692391 +-0.487925,0.873909,-0.840241,-1.962388,0.613833,2.691687 +-0.488832,0.873136,-0.841228,-1.963161,0.614593,2.690914 +-0.489795,0.872299,-0.842163,-1.963998,0.615284,2.690077 +-0.490807,0.871401,-0.843041,-1.964896,0.615902,2.689179 +-0.491864,0.870447,-0.843856,-1.965850,0.616443,2.688225 +-0.492961,0.869442,-0.844605,-1.966855,0.616905,2.687220 +-0.494091,0.868392,-0.845284,-1.967905,0.617285,2.686170 +-0.495248,0.867301,-0.845890,-1.968996,0.617581,2.685079 +-0.496427,0.866176,-0.846418,-1.970121,0.617793,2.683955 +-0.497622,0.865023,-0.846867,-1.971274,0.617918,2.682801 +-0.498825,0.863847,-0.847234,-1.972450,0.617956,2.681625 +-0.500032,0.862654,-0.847517,-1.973643,0.617907,2.680433 +-0.501235,0.861452,-0.847715,-1.974845,0.617771,2.679230 +-0.502429,0.860245,-0.847827,-1.976052,0.617549,2.678023 +-0.503607,0.859041,-0.847851,-1.977256,0.617242,2.676819 +-0.504763,0.857845,-0.847789,-1.978452,0.616852,2.675623 +-0.505891,0.856664,-0.847639,-1.979633,0.616380,2.674443 +-0.506984,0.855505,-0.847404,-1.980793,0.615829,2.673283 +-0.508039,0.854372,-0.847084,-1.981925,0.615203,2.672150 +-0.509048,0.853272,-0.846681,-1.983025,0.614503,2.671050 +-0.510007,0.852211,-0.846197,-1.984086,0.613735,2.669989 +-0.510910,0.851194,-0.845635,-1.985103,0.612901,2.668973 +-0.511754,0.850227,-0.844997,-1.986070,0.612006,2.668005 +-0.512532,0.849315,-0.844287,-1.986983,0.611056,2.667093 +-0.513243,0.848461,-0.843508,-1.987836,0.610054,2.666239 +-0.513881,0.847672,-0.842665,-1.988625,0.609006,2.665450 +-0.514443,0.846950,-0.841762,-1.989347,0.607918,2.664728 +-0.514927,0.846300,-0.840803,-1.989997,0.606795,2.664079 +-0.515330,0.845726,-0.839795,-1.990572,0.605643,2.663504 +-0.515650,0.845229,-0.838741,-1.991068,0.604468,2.663007 +-0.515885,0.844813,-0.837648,-1.991485,0.603276,2.662591 +-0.516034,0.844479,-0.836520,-1.991818,0.602074,2.662258 +-0.516097,0.844231,-0.835365,-1.992067,0.600867,2.662009 +-0.516072,0.844068,-0.834188,-1.992229,0.599663,2.661846 +-0.515960,0.843992,-0.832995,-1.992306,0.598466,2.661770 +-0.515762,0.844003,-0.831793,-1.992295,0.597285,2.661781 +-0.515478,0.844100,-0.830587,-1.992197,0.596123,2.661879 +-0.515110,0.844285,-0.829384,-1.992012,0.594989,2.662063 +-0.514661,0.844555,-0.828190,-1.991742,0.593887,2.662333 +-0.514132,0.844909,-0.827012,-1.991388,0.592824,2.662688 +-0.513525,0.845346,-0.825855,-1.990951,0.591804,2.663124 +-0.512846,0.845863,-0.824726,-1.990435,0.590834,2.663641 +-0.512096,0.846457,-0.823631,-1.989841,0.589918,2.664235 +-0.511280,0.847125,-0.822574,-1.989172,0.589061,2.664903 +-0.510401,0.847864,-0.821563,-1.988433,0.588267,2.665642 +-0.509466,0.848670,-0.820601,-1.987627,0.587542,2.666448 +-0.508477,0.849538,-0.819695,-1.986759,0.586887,2.667316 +-0.507442,0.850465,-0.818848,-1.985832,0.586308,2.668243 +-0.506364,0.851445,-0.818065,-1.984852,0.585806,2.669223 +-0.505250,0.852474,-0.817351,-1.983824,0.585385,2.670252 +-0.504106,0.853545,-0.816709,-1.982752,0.585047,2.671323 +-0.502937,0.854653,-0.816142,-1.981644,0.584793,2.672432 +-0.501749,0.855793,-0.815653,-1.980504,0.584625,2.673572 +-0.500549,0.856959,-0.815245,-1.979338,0.584544,2.674737 +-0.499343,0.858144,-0.814920,-1.978153,0.584550,2.675922 +-0.498137,0.859343,-0.814680,-1.976955,0.584642,2.677121 +-0.496938,0.860548,-0.814525,-1.975749,0.584822,2.678326 +-0.495751,0.861754,-0.814458,-1.974543,0.585087,2.679532 +-0.494584,0.862955,-0.814477,-1.973342,0.585436,2.680733 +-0.493441,0.864144,-0.814583,-1.972153,0.585868,2.681922 +-0.492330,0.865315,-0.814776,-1.970982,0.586380,2.683093 +-0.491255,0.866462,-0.815054,-1.969835,0.586969,2.684240 +-0.490223,0.867578,-0.815416,-1.968719,0.587633,2.685357 +-0.489239,0.868659,-0.815860,-1.967638,0.588368,2.686438 +-0.488307,0.869699,-0.816384,-1.966598,0.589170,2.687477 +-0.487433,0.870691,-0.816985,-1.965606,0.590035,2.688469 +-0.486622,0.871632,-0.817660,-1.964666,0.590958,2.689410 +-0.485877,0.872515,-0.818405,-1.963782,0.591935,2.690293 +-0.485203,0.873337,-0.819217,-1.962961,0.592961,2.691115 +-0.484602,0.874092,-0.820091,-1.962205,0.594030,2.691870 +-0.484079,0.874778,-0.821022,-1.961519,0.595136,2.692556 +-0.483636,0.875391,-0.822007,-1.960907,0.596275,2.693169 +-0.483274,0.875926,-0.823039,-1.960371,0.597439,2.693705 +-0.482997,0.876383,-0.824113,-1.959914,0.598623,2.694161 +-0.482805,0.876757,-0.825224,-1.959540,0.599821,2.694536 +-0.482700,0.877048,-0.826366,-1.959249,0.601026,2.694827 +-0.482681,0.877254,-0.827533,-1.959043,0.602232,2.695032 +-0.482750,0.877373,-0.828719,-1.958924,0.603433,2.695151 +-0.482906,0.877406,-0.829918,-1.958892,0.604623,2.695184 +-0.483147,0.877351,-0.831123,-1.958946,0.605795,2.695129 +-0.483473,0.877209,-0.832328,-1.959088,0.606944,2.694987 +-0.483883,0.876981,-0.833527,-1.959316,0.608063,2.694759 +-0.484373,0.876668,-0.834714,-1.959629,0.609146,2.694447 +-0.484941,0.876272,-0.835882,-1.960025,0.610188,2.694051 +-0.485585,0.875795,-0.837025,-1.960502,0.611183,2.693573 +-0.486300,0.875239,-0.838138,-1.961058,0.612127,2.693017 +-0.487084,0.874607,-0.839215,-1.961690,0.613014,2.692386 +-0.487932,0.873903,-0.840249,-1.962394,0.613839,2.691681 +-0.488840,0.873130,-0.841236,-1.963167,0.614599,2.690908 +-0.489803,0.872292,-0.842170,-1.964005,0.615289,2.690070 +-0.490815,0.871393,-0.843047,-1.964904,0.615906,2.689171 +-0.491873,0.870439,-0.843862,-1.965858,0.616447,2.688217 +-0.492969,0.869434,-0.844611,-1.966863,0.616908,2.687212 +-0.494100,0.868383,-0.845289,-1.967914,0.617288,2.686161 +-0.495257,0.867292,-0.845894,-1.969005,0.617583,2.685071 +-0.496437,0.866167,-0.846422,-1.970130,0.617794,2.683946 +-0.497631,0.865014,-0.846870,-1.971283,0.617919,2.682792 +-0.498835,0.863837,-0.847237,-1.972460,0.617956,2.681616 +-0.500042,0.862645,-0.847519,-1.973652,0.617907,2.680423 +-0.501245,0.861442,-0.847716,-1.974855,0.617770,2.679220 +-0.502438,0.860235,-0.847827,-1.976062,0.617547,2.678014 +-0.503616,0.859031,-0.847851,-1.977266,0.617240,2.676809 +-0.504772,0.857836,-0.847788,-1.978461,0.616849,2.675614 +-0.505899,0.856655,-0.847638,-1.979642,0.616376,2.674433 +-0.506993,0.855495,-0.847402,-1.980802,0.615825,2.673274 +-0.508047,0.854363,-0.847081,-1.981934,0.615197,2.672141 +-0.509056,0.853264,-0.846678,-1.983034,0.614497,2.671042 +-0.510014,0.852203,-0.846193,-1.984094,0.613728,2.669981 +-0.510917,0.851187,-0.845630,-1.985111,0.612894,2.668965 +-0.511760,0.850220,-0.844991,-1.986077,0.611999,2.667998 +-0.512538,0.849308,-0.844281,-1.986990,0.611048,2.667086 +-0.513248,0.848455,-0.843502,-1.987842,0.610046,2.666233 +-0.513886,0.847666,-0.842658,-1.988631,0.608997,2.665444 +-0.514448,0.846945,-0.841754,-1.989352,0.607909,2.664723 +-0.514931,0.846295,-0.840796,-1.990002,0.606786,2.664074 +-0.515333,0.845721,-0.839787,-1.990576,0.605634,2.663499 +-0.515652,0.845225,-0.838732,-1.991072,0.604458,2.663003 +-0.515887,0.844810,-0.837639,-1.991487,0.603267,2.662588 +-0.516035,0.844477,-0.836511,-1.991820,0.602064,2.662255 +-0.516097,0.844229,-0.835356,-1.992068,0.600858,2.662007 +-0.516071,0.844067,-0.834179,-1.992230,0.599653,2.661845 +-0.515959,0.843991,-0.832986,-1.992306,0.598457,2.661769 +-0.515760,0.844003,-0.831783,-1.992294,0.597275,2.661781 +-0.515475,0.844102,-0.830577,-1.992196,0.596114,2.661880 +-0.515107,0.844287,-0.829374,-1.992010,0.594980,2.662065 +-0.514657,0.844558,-0.828181,-1.991740,0.593878,2.662336 +-0.514127,0.844913,-0.827003,-1.991385,0.592815,2.662691 +-0.513520,0.845350,-0.825846,-1.990947,0.591796,2.663128 +-0.512840,0.845867,-0.824717,-1.990430,0.590826,2.663645 +-0.512089,0.846462,-0.823622,-1.989836,0.589911,2.664240 +-0.511273,0.847130,-0.822566,-1.989167,0.589054,2.664909 +-0.510394,0.847870,-0.821555,-1.988427,0.588261,2.665648 +-0.509458,0.848676,-0.820594,-1.987621,0.587536,2.666454 +-0.508469,0.849545,-0.819688,-1.986752,0.586882,2.667324 +-0.507433,0.850473,-0.818842,-1.985824,0.586304,2.668251 +-0.506355,0.851453,-0.818059,-1.984844,0.585803,2.669231 +-0.505241,0.852482,-0.817346,-1.983815,0.585382,2.670260 +-0.504096,0.853553,-0.816704,-1.982744,0.585045,2.671332 +-0.502927,0.854662,-0.816137,-1.981635,0.584792,2.672440 +-0.501739,0.855803,-0.815649,-1.980495,0.584624,2.673581 +-0.500539,0.856968,-0.815242,-1.979329,0.584543,2.674747 +-0.499333,0.858154,-0.814918,-1.978144,0.584550,2.675932 +-0.498128,0.859352,-0.814678,-1.976945,0.584643,2.677130 +-0.496928,0.860558,-0.814524,-1.975740,0.584823,2.678336 +-0.495742,0.861764,-0.814457,-1.974533,0.585089,2.679542 +-0.494575,0.862964,-0.814477,-1.973333,0.585439,2.680743 +-0.493432,0.864153,-0.814584,-1.972144,0.585871,2.681931 +-0.492321,0.865324,-0.814778,-1.970973,0.586384,2.683102 +-0.491247,0.866471,-0.815057,-1.969826,0.586974,2.684249 +-0.490215,0.867587,-0.815419,-1.968710,0.587638,2.685365 +-0.489231,0.868668,-0.815864,-1.967629,0.588374,2.686446 +-0.488300,0.869707,-0.816389,-1.966590,0.589176,2.687485 +-0.487427,0.870699,-0.816990,-1.965598,0.590042,2.688477 +-0.486616,0.871639,-0.817666,-1.964658,0.590966,2.689417 +-0.485872,0.872522,-0.818411,-1.963776,0.591943,2.690300 +-0.485198,0.873343,-0.819223,-1.962954,0.592969,2.691121 +-0.484598,0.874098,-0.820098,-1.962199,0.594038,2.691876 +-0.484075,0.874783,-0.821030,-1.961514,0.595145,2.692562 +-0.483632,0.875395,-0.822015,-1.960902,0.596284,2.693173 +-0.483272,0.875930,-0.823047,-1.960367,0.597448,2.693709 +-0.482995,0.876386,-0.824122,-1.959911,0.598632,2.694164 +-0.482804,0.876760,-0.825233,-1.959537,0.599830,2.694538 +-0.482699,0.877050,-0.826375,-1.959247,0.601035,2.694829 +-0.482682,0.877255,-0.827543,-1.959042,0.602242,2.695033 +-0.482751,0.877374,-0.828729,-1.958923,0.603443,2.695152 +-0.482907,0.877405,-0.829927,-1.958892,0.604633,2.695184 +-0.483150,0.877350,-0.831132,-1.958947,0.605805,2.695128 +-0.483476,0.877207,-0.832337,-1.959090,0.606953,2.694986 +-0.483886,0.876979,-0.833536,-1.959318,0.608071,2.694757 +-0.484377,0.876666,-0.834723,-1.959632,0.609154,2.694444 +-0.484946,0.876269,-0.835891,-1.960028,0.610196,2.694047 +-0.485590,0.875791,-0.837034,-1.960506,0.611191,2.693569 +-0.486306,0.875235,-0.838147,-1.961063,0.612134,2.693013 +-0.487091,0.874602,-0.839223,-1.961695,0.613021,2.692380 +-0.487939,0.873897,-0.840257,-1.962400,0.613846,2.691675 +-0.488847,0.873123,-0.841244,-1.963174,0.614605,2.690902 +-0.489810,0.872285,-0.842178,-1.964012,0.615294,2.690063 +-0.490824,0.871386,-0.843054,-1.964911,0.615911,2.689164 +-0.491881,0.870431,-0.843868,-1.965866,0.616451,2.688209 +-0.492978,0.869426,-0.844617,-1.966871,0.616911,2.687204 +-0.494109,0.868375,-0.845295,-1.967922,0.617290,2.686153 +-0.495267,0.867284,-0.845899,-1.969013,0.617585,2.685062 +-0.496446,0.866158,-0.846426,-1.970139,0.617796,2.683936 +-0.497641,0.865004,-0.846874,-1.971293,0.617919,2.682783 +-0.498845,0.863828,-0.847239,-1.972469,0.617956,2.681606 +-0.500051,0.862635,-0.847521,-1.973662,0.617906,2.680414 +-0.501254,0.861433,-0.847718,-1.974865,0.617769,2.679211 +-0.502448,0.860226,-0.847828,-1.976071,0.617545,2.678004 +-0.503625,0.859022,-0.847851,-1.977275,0.617237,2.676800 +-0.504781,0.857826,-0.847787,-1.978471,0.616845,2.675604 +-0.505908,0.856646,-0.847636,-1.979651,0.616372,2.674424 +-0.507002,0.855486,-0.847400,-1.980811,0.615820,2.673265 +-0.508055,0.854354,-0.847078,-1.981943,0.615192,2.672132 +-0.509064,0.853255,-0.846674,-1.983042,0.614491,2.671033 +-0.510022,0.852195,-0.846189,-1.984102,0.613722,2.669973 +-0.510924,0.851179,-0.845625,-1.985118,0.612887,2.668957 +-0.511766,0.850212,-0.844986,-1.986085,0.611991,2.667990 +-0.512544,0.849301,-0.844275,-1.986997,0.611040,2.667079 +-0.513253,0.848448,-0.843495,-1.987849,0.610037,2.666226 +-0.513890,0.847660,-0.842651,-1.988637,0.608989,2.665438 +-0.514452,0.846939,-0.841747,-1.989358,0.607900,2.664718 +-0.514934,0.846291,-0.840788,-1.990007,0.606777,2.664069 +-0.515336,0.845717,-0.839778,-1.990580,0.605624,2.663495 +-0.515655,0.845221,-0.838724,-1.991076,0.604449,2.663000 +-0.515888,0.844807,-0.837630,-1.991490,0.603257,2.662585 +-0.516036,0.844475,-0.836502,-1.991822,0.602055,2.662253 +-0.516097,0.844227,-0.835347,-1.992070,0.600848,2.662006 +-0.516071,0.844066,-0.834169,-1.992231,0.599644,2.661844 +-0.515957,0.843991,-0.832976,-1.992306,0.598448,2.661769 +-0.515758,0.844003,-0.831773,-1.992294,0.597266,2.661782 +-0.515473,0.844103,-0.830568,-1.992194,0.596105,2.661881 +-0.515104,0.844289,-0.829365,-1.992008,0.594971,2.662067 +-0.514653,0.844560,-0.828171,-1.991737,0.593870,2.662338 +-0.514123,0.844916,-0.826993,-1.991381,0.592807,2.662694 +-0.513515,0.845354,-0.825837,-1.990944,0.591788,2.663132 +-0.512834,0.845871,-0.824708,-1.990426,0.590819,2.663650 +-0.512083,0.846467,-0.823613,-1.989831,0.589904,2.664245 +-0.511266,0.847136,-0.822558,-1.989161,0.589048,2.664914 +-0.510387,0.847876,-0.821547,-1.988421,0.588255,2.665654 +-0.509450,0.848683,-0.820586,-1.987614,0.587531,2.666461 +-0.508461,0.849553,-0.819681,-1.986745,0.586877,2.667331 +-0.507425,0.850480,-0.818835,-1.985817,0.586299,2.668258 +-0.506347,0.851461,-0.818054,-1.984836,0.585799,2.669239 +-0.505232,0.852490,-0.817340,-1.983807,0.585379,2.670268 +-0.504087,0.853562,-0.816699,-1.982735,0.585042,2.671340 +-0.502918,0.854671,-0.816133,-1.981626,0.584790,2.672449 +-0.501730,0.855812,-0.815646,-1.980485,0.584623,2.673590 +-0.500530,0.856978,-0.815239,-1.979319,0.584543,2.674756 +-0.499324,0.858163,-0.814916,-1.978134,0.584550,2.675941 +-0.498118,0.859362,-0.814677,-1.976935,0.584644,2.677140 +-0.496919,0.860567,-0.814524,-1.975730,0.584825,2.678345 +-0.495733,0.861773,-0.814457,-1.974524,0.585092,2.679552 +-0.494566,0.862974,-0.814478,-1.973323,0.585442,2.680752 +-0.493424,0.864163,-0.814586,-1.972134,0.585875,2.681941 +-0.492313,0.865333,-0.814780,-1.970964,0.586388,2.683111 +-0.491239,0.866480,-0.815059,-1.969817,0.586979,2.684258 +-0.490207,0.867596,-0.815423,-1.968701,0.587644,2.685374 +-0.489223,0.868676,-0.815868,-1.967621,0.588380,2.686454 +-0.488293,0.869715,-0.816393,-1.966582,0.589183,2.687493 +-0.487420,0.870707,-0.816995,-1.965591,0.590049,2.688485 +-0.486610,0.871646,-0.817671,-1.964651,0.590973,2.689424 +-0.485866,0.872528,-0.818417,-1.963769,0.591951,2.690307 +-0.485193,0.873349,-0.819230,-1.962948,0.592978,2.691127 +-0.484594,0.874104,-0.820105,-1.962193,0.594047,2.691882 +-0.484071,0.874788,-0.821037,-1.961509,0.595154,2.692567 +-0.483629,0.875400,-0.822023,-1.960897,0.596293,2.693178 +-0.483269,0.875934,-0.823055,-1.960363,0.597457,2.693713 +-0.482993,0.876389,-0.824130,-1.959908,0.598642,2.694168 +-0.482803,0.876763,-0.825242,-1.959534,0.599840,2.694541 +-0.482699,0.877052,-0.826385,-1.959245,0.601045,2.694830 +-0.482682,0.877257,-0.827552,-1.959041,0.602251,2.695035 +-0.482752,0.877374,-0.828738,-1.958923,0.603452,2.695153 +-0.482909,0.877405,-0.829937,-1.958892,0.604642,2.695183 +-0.483152,0.877349,-0.831142,-1.958948,0.605814,2.695127 +-0.483479,0.877206,-0.832347,-1.959091,0.606962,2.694984 +-0.483890,0.876977,-0.833546,-1.959320,0.608080,2.694755 +-0.484381,0.876663,-0.834732,-1.959634,0.609163,2.694441 +-0.484951,0.876265,-0.835900,-1.960032,0.610204,2.694044 +-0.485595,0.875787,-0.837043,-1.960510,0.611199,2.693565 +-0.486312,0.875230,-0.838156,-1.961067,0.612142,2.693008 +-0.487097,0.874597,-0.839231,-1.961700,0.613027,2.692375 +-0.487946,0.873891,-0.840265,-1.962406,0.613852,2.691670 +-0.488855,0.873117,-0.841251,-1.963180,0.614611,2.690895 +-0.489818,0.872278,-0.842185,-1.964019,0.615300,2.690056 +-0.490832,0.871379,-0.843061,-1.964919,0.615915,2.689157 +-0.491890,0.870423,-0.843875,-1.965874,0.616455,2.688202 +-0.492987,0.869418,-0.844622,-1.966880,0.616915,2.687196 +-0.494118,0.868366,-0.845300,-1.967931,0.617293,2.686144 +-0.495276,0.867275,-0.845903,-1.969022,0.617587,2.685053 +-0.496455,0.866149,-0.846430,-1.970148,0.617797,2.683927 +-0.497650,0.864995,-0.846877,-1.971302,0.617920,2.682773 +-0.498854,0.863819,-0.847242,-1.972479,0.617956,2.681597 +-0.500061,0.862626,-0.847523,-1.973671,0.617905,2.680404 +-0.501264,0.861423,-0.847719,-1.974874,0.617767,2.679201 +-0.502457,0.860216,-0.847828,-1.976081,0.617543,2.677994 +-0.503635,0.859012,-0.847851,-1.977285,0.617234,2.676790 +-0.504790,0.857817,-0.847786,-1.978480,0.616842,2.675595 +-0.505917,0.856636,-0.847635,-1.979661,0.616368,2.674415 +-0.507010,0.855477,-0.847398,-1.980820,0.615815,2.673255 +-0.508063,0.854345,-0.847076,-1.981952,0.615187,2.672123 +-0.509071,0.853246,-0.846671,-1.983051,0.614486,2.671025 +-0.510029,0.852186,-0.846185,-1.984111,0.613715,2.669965 +-0.510931,0.851171,-0.845620,-1.985126,0.612880,2.668949 +-0.511773,0.850205,-0.844981,-1.986092,0.611984,2.667983 +-0.512550,0.849294,-0.844269,-1.987004,0.611032,2.667072 +-0.513259,0.848442,-0.843489,-1.987855,0.610029,2.666220 +-0.513895,0.847654,-0.842644,-1.988643,0.608980,2.665432 +-0.514456,0.846934,-0.841740,-1.989363,0.607891,2.664712 +-0.514938,0.846286,-0.840780,-1.990011,0.606768,2.664064 +-0.515339,0.845713,-0.839770,-1.990584,0.605615,2.663491 +-0.515657,0.845218,-0.838715,-1.991079,0.604440,2.662996 +-0.515890,0.844804,-0.837621,-1.991493,0.603248,2.662582 +-0.516037,0.844472,-0.836493,-1.991825,0.602045,2.662251 +-0.516097,0.844226,-0.835337,-1.992071,0.600839,2.662004 +-0.516070,0.844065,-0.834160,-1.992232,0.599634,2.661843 +-0.515956,0.843991,-0.832967,-1.992306,0.598438,2.661769 +-0.515756,0.844004,-0.831764,-1.992293,0.597257,2.661782 +-0.515470,0.844104,-0.830558,-1.992193,0.596096,2.661882 +-0.515101,0.844290,-0.829355,-1.992007,0.594962,2.662069 +-0.514649,0.844563,-0.828162,-1.991735,0.593861,2.662341 +-0.514118,0.844919,-0.826984,-1.991378,0.592799,2.662697 +-0.513510,0.845357,-0.825828,-1.990940,0.591780,2.663136 +-0.512829,0.845876,-0.824700,-1.990421,0.590811,2.663654 +-0.512077,0.846472,-0.823605,-1.989825,0.589897,2.664250 +-0.511259,0.847142,-0.822550,-1.989156,0.589041,2.664920 +-0.510380,0.847882,-0.821539,-1.988415,0.588249,2.665660 +-0.509443,0.848690,-0.820579,-1.987607,0.587525,2.666468 +-0.508453,0.849560,-0.819674,-1.986737,0.586873,2.667338 +-0.507417,0.850488,-0.818829,-1.985809,0.586295,2.668266 +-0.506338,0.851469,-0.818048,-1.984828,0.585795,2.669247 +-0.505223,0.852499,-0.817335,-1.983798,0.585376,2.670277 +-0.504078,0.853571,-0.816694,-1.982726,0.585040,2.671349 +-0.502908,0.854680,-0.816129,-1.981617,0.584788,2.672458 +-0.501720,0.855821,-0.815642,-1.980476,0.584622,2.673599 +-0.500520,0.856987,-0.815236,-1.979310,0.584543,2.674765 +-0.499314,0.858173,-0.814913,-1.978125,0.584551,2.675951 +-0.498108,0.859371,-0.814675,-1.976926,0.584646,2.677149 +-0.496909,0.860577,-0.814523,-1.975720,0.584827,2.678355 +-0.495723,0.861783,-0.814457,-1.974514,0.585094,2.679561 +-0.494556,0.862983,-0.814478,-1.973314,0.585445,2.680762 +-0.493415,0.864172,-0.814587,-1.972125,0.585879,2.681950 +-0.492304,0.865342,-0.814782,-1.970955,0.586393,2.683121 +-0.491230,0.866489,-0.815062,-1.969808,0.586984,2.684267 +-0.490199,0.867605,-0.815426,-1.968692,0.587650,2.685383 +-0.489216,0.868685,-0.815872,-1.967612,0.588386,2.686463 +-0.488286,0.869723,-0.816398,-1.966574,0.589190,2.687501 +-0.487413,0.870714,-0.817000,-1.965583,0.590056,2.688492 +-0.486603,0.871653,-0.817677,-1.964644,0.590981,2.689431 +-0.485860,0.872535,-0.818424,-1.963762,0.591959,2.690313 +-0.485188,0.873355,-0.819237,-1.962942,0.592986,2.691134 +-0.484589,0.874109,-0.820112,-1.962188,0.594056,2.691888 +-0.484068,0.874794,-0.821045,-1.961503,0.595163,2.692572 +-0.483626,0.875404,-0.822031,-1.960893,0.596302,2.693182 +-0.483267,0.875938,-0.823064,-1.960359,0.597467,2.693716 +-0.482991,0.876393,-0.824139,-1.959904,0.598651,2.694171 +-0.482802,0.876765,-0.825251,-1.959532,0.599849,2.694544 +-0.482698,0.877054,-0.826394,-1.959243,0.601055,2.694832 +-0.482682,0.877258,-0.827561,-1.959039,0.602261,2.695036 +-0.482753,0.877375,-0.828748,-1.958922,0.603462,2.695153 +-0.482911,0.877405,-0.829946,-1.958892,0.604651,2.695183 +-0.483154,0.877348,-0.831151,-1.958949,0.605823,2.695126 +-0.483482,0.877205,-0.832357,-1.959093,0.606971,2.694983 +-0.483893,0.876975,-0.833555,-1.959322,0.608089,2.694753 +-0.484385,0.876660,-0.834742,-1.959637,0.609171,2.694438 +-0.484955,0.876262,-0.835909,-1.960035,0.610212,2.694040 +-0.485601,0.875783,-0.837052,-1.960514,0.611207,2.693561 +-0.486318,0.875225,-0.838164,-1.961072,0.612149,2.693003 +-0.487104,0.874591,-0.839240,-1.961706,0.613034,2.692370 +-0.487953,0.873885,-0.840273,-1.962412,0.613858,2.691664 +-0.488862,0.873111,-0.841259,-1.963187,0.614616,2.690889 +-0.489826,0.872271,-0.842192,-1.964026,0.615305,2.690049 +-0.490840,0.871371,-0.843068,-1.964926,0.615920,2.689149 +-0.491899,0.870416,-0.843881,-1.965882,0.616459,2.688194 +-0.492996,0.869409,-0.844628,-1.966888,0.616918,2.687188 +-0.494127,0.868358,-0.845305,-1.967939,0.617296,2.686136 +-0.495285,0.867266,-0.845908,-1.969031,0.617589,2.685044 +-0.496465,0.866140,-0.846434,-1.970157,0.617798,2.683918 +-0.497660,0.864986,-0.846880,-1.971311,0.617921,2.682764 +-0.498864,0.863809,-0.847245,-1.972488,0.617956,2.681587 +-0.500070,0.862616,-0.847525,-1.973681,0.617904,2.680394 +-0.501274,0.861413,-0.847720,-1.974884,0.617766,2.679192 +-0.502467,0.860207,-0.847829,-1.976090,0.617541,2.677985 +-0.503644,0.859003,-0.847851,-1.977295,0.617231,2.676781 +-0.504799,0.857807,-0.847785,-1.978490,0.616838,2.675585 +-0.505926,0.856627,-0.847633,-1.979670,0.616364,2.674405 +-0.507019,0.855468,-0.847395,-1.980829,0.615811,2.673246 +-0.508072,0.854336,-0.847073,-1.981961,0.615182,2.672115 +-0.509079,0.853238,-0.846667,-1.983059,0.614480,2.671016 +-0.510036,0.852178,-0.846180,-1.984119,0.613709,2.669956 +-0.510938,0.851163,-0.845616,-1.985134,0.612873,2.668941 +-0.511779,0.850197,-0.844975,-1.986100,0.611977,2.667975 +-0.512556,0.849286,-0.844263,-1.987011,0.611024,2.667065 +-0.513264,0.848435,-0.843482,-1.987862,0.610021,2.666213 +-0.513900,0.847648,-0.842637,-1.988649,0.608972,2.665426 +-0.514460,0.846928,-0.841732,-1.989369,0.607882,2.664707 +-0.514941,0.846281,-0.840772,-1.990016,0.606758,2.664059 +-0.515342,0.845708,-0.839762,-1.990589,0.605606,2.663487 +-0.515659,0.845214,-0.838707,-1.991083,0.604430,2.662992 +-0.515891,0.844801,-0.837612,-1.991496,0.603238,2.662579 +-0.516038,0.844470,-0.836484,-1.991827,0.602036,2.662248 +-0.516097,0.844224,-0.835328,-1.992073,0.600829,2.662002 +-0.516070,0.844064,-0.834150,-1.992233,0.599625,2.661842 +-0.515955,0.843991,-0.832957,-1.992307,0.598429,2.661769 +-0.515754,0.844004,-0.831754,-1.992293,0.597247,2.661782 +-0.515467,0.844105,-0.830548,-1.992192,0.596087,2.661883 +-0.515097,0.844292,-0.829346,-1.992005,0.594953,2.662070 +-0.514645,0.844565,-0.828152,-1.991732,0.593853,2.662343 +-0.514113,0.844922,-0.826975,-1.991375,0.592790,2.662700 +-0.513505,0.845361,-0.825819,-1.990936,0.591772,2.663139 +-0.512823,0.845880,-0.824691,-1.990417,0.590804,2.663658 +-0.512071,0.846477,-0.823596,-1.989820,0.589889,2.664255 +-0.511252,0.847147,-0.822541,-1.989150,0.589034,2.664925 +-0.510372,0.847888,-0.821531,-1.988409,0.588243,2.665667 +-0.509435,0.848696,-0.820572,-1.987601,0.587520,2.666475 +-0.508445,0.849567,-0.819667,-1.986730,0.586868,2.667345 +-0.507408,0.850495,-0.818822,-1.985802,0.586291,2.668274 +-0.506329,0.851477,-0.818042,-1.984820,0.585792,2.669255 +-0.505214,0.852507,-0.817330,-1.983790,0.585373,2.670285 +-0.504069,0.853580,-0.816690,-1.982718,0.585038,2.671358 +-0.502899,0.854689,-0.816125,-1.981608,0.584787,2.672467 +-0.501711,0.855830,-0.815639,-1.980467,0.584621,2.673608 +-0.500511,0.856996,-0.815233,-1.979301,0.584543,2.674775 +-0.499305,0.858182,-0.814911,-1.978115,0.584551,2.675960 +-0.498099,0.859381,-0.814673,-1.976916,0.584647,2.677159 +-0.496900,0.860586,-0.814522,-1.975711,0.584829,2.678365 +-0.495714,0.861793,-0.814457,-1.974505,0.585096,2.679571 +-0.494547,0.862993,-0.814479,-1.973304,0.585448,2.680771 +-0.493406,0.864181,-0.814588,-1.972116,0.585883,2.681960 +-0.492295,0.865352,-0.814784,-1.970945,0.586397,2.683130 +-0.491222,0.866498,-0.815064,-1.969799,0.586989,2.684276 +-0.490191,0.867613,-0.815429,-1.968684,0.587655,2.685392 +-0.489208,0.868693,-0.815876,-1.967604,0.588392,2.686471 +-0.488278,0.869731,-0.816402,-1.966566,0.589196,2.687509 +-0.487407,0.870722,-0.817005,-1.965575,0.590063,2.688500 +-0.486597,0.871661,-0.817683,-1.964637,0.590988,2.689439 +-0.485855,0.872542,-0.818430,-1.963755,0.591967,2.690320 +-0.485183,0.873362,-0.819244,-1.962936,0.592994,2.691140 +-0.484585,0.874115,-0.820119,-1.962182,0.594064,2.691893 +-0.484064,0.874799,-0.821053,-1.961498,0.595172,2.692577 +-0.483623,0.875409,-0.822039,-1.960888,0.596311,2.693187 +-0.483264,0.875942,-0.823072,-1.960355,0.597476,2.693720 +-0.482990,0.876396,-0.824148,-1.959901,0.598661,2.694174 +-0.482801,0.876768,-0.825260,-1.959529,0.599859,2.694546 +-0.482698,0.877056,-0.826403,-1.959241,0.601064,2.694834 +-0.482682,0.877259,-0.827571,-1.959038,0.602271,2.695037 +-0.482754,0.877376,-0.828757,-1.958922,0.603472,2.695154 +-0.482912,0.877405,-0.829956,-1.958892,0.604661,2.695183 +-0.483156,0.877347,-0.831161,-1.958950,0.605832,2.695126 +-0.483485,0.877203,-0.832366,-1.959094,0.606980,2.694981 +-0.483897,0.876973,-0.833565,-1.959325,0.608098,2.694751 +-0.484390,0.876657,-0.834751,-1.959640,0.609180,2.694435 +-0.484960,0.876258,-0.835919,-1.960039,0.610220,2.694037 +-0.485606,0.875779,-0.837061,-1.960518,0.611214,2.693557 +-0.486324,0.875220,-0.838173,-1.961077,0.612156,2.692998 +-0.487110,0.874586,-0.839248,-1.961711,0.613041,2.692364 +-0.487960,0.873880,-0.840281,-1.962418,0.613864,2.691658 +-0.488870,0.873104,-0.841267,-1.963193,0.614622,2.690882 +-0.489834,0.872264,-0.842199,-1.964033,0.615310,2.690042 +-0.490848,0.871364,-0.843074,-1.964933,0.615925,2.689142 +-0.491907,0.870408,-0.843887,-1.965889,0.616463,2.688186 +-0.493005,0.869401,-0.844634,-1.966896,0.616921,2.687179 +-0.494136,0.868349,-0.845310,-1.967948,0.617298,2.686127 +-0.495295,0.867257,-0.845912,-1.969040,0.617591,2.685035 +-0.496474,0.866131,-0.846438,-1.970166,0.617799,2.683909 +-0.497669,0.864977,-0.846883,-1.971321,0.617921,2.682755 +-0.498873,0.863800,-0.847247,-1.972497,0.617956,2.681578 +-0.500080,0.862607,-0.847527,-1.973690,0.617903,2.680385 +-0.501283,0.861404,-0.847721,-1.974893,0.617764,2.679182 +-0.502476,0.860197,-0.847829,-1.976100,0.617539,2.677975 +-0.503653,0.858993,-0.847850,-1.977304,0.617228,2.676771 +-0.504808,0.857798,-0.847784,-1.978499,0.616835,2.675576 +-0.505935,0.856618,-0.847632,-1.979679,0.616360,2.674396 +-0.507027,0.855459,-0.847393,-1.980838,0.615806,2.673237 +-0.508080,0.854328,-0.847070,-1.981970,0.615176,2.672106 +-0.509087,0.853229,-0.846663,-1.983068,0.614474,2.671007 +-0.510044,0.852170,-0.846176,-1.984127,0.613703,2.669948 +-0.510945,0.851155,-0.845611,-1.985142,0.612866,2.668933 +-0.511786,0.850190,-0.844970,-1.986107,0.611969,2.667968 +-0.512562,0.849279,-0.844257,-1.987018,0.611017,2.667058 +-0.513270,0.848429,-0.843476,-1.987868,0.610013,2.666207 +-0.513905,0.847642,-0.842630,-1.988655,0.608963,2.665420 +-0.514464,0.846923,-0.841725,-1.989374,0.607874,2.664701 +-0.514945,0.846276,-0.840764,-1.990021,0.606749,2.664054 +-0.515345,0.845704,-0.839754,-1.990593,0.605596,2.663482 +-0.515661,0.845211,-0.838698,-1.991086,0.604421,2.662989 +-0.515893,0.844798,-0.837603,-1.991499,0.603229,2.662576 +-0.516039,0.844468,-0.836475,-1.991829,0.602026,2.662246 +-0.516097,0.844222,-0.835319,-1.992075,0.600819,2.662001 +-0.516069,0.844063,-0.834141,-1.992234,0.599615,2.661841 +-0.515954,0.843990,-0.832947,-1.992307,0.598419,2.661769 +-0.515752,0.844005,-0.831745,-1.992292,0.597238,2.661783 +-0.515465,0.844106,-0.830539,-1.992191,0.596078,2.661884 +-0.515094,0.844294,-0.829336,-1.992003,0.594944,2.662072 +-0.514641,0.844568,-0.828143,-1.991730,0.593844,2.662346 +-0.514109,0.844925,-0.826965,-1.991372,0.592782,2.662703 +-0.513500,0.845365,-0.825810,-1.990932,0.591764,2.663143 +-0.512817,0.845885,-0.824682,-1.990412,0.590796,2.663663 +-0.512065,0.846482,-0.823588,-1.989815,0.589882,2.664260 +-0.511246,0.847153,-0.822533,-1.989144,0.589028,2.664931 +-0.510365,0.847895,-0.821524,-1.988403,0.588237,2.665673 +-0.509427,0.848703,-0.820564,-1.987594,0.587514,2.666481 +-0.508437,0.849574,-0.819660,-1.986723,0.586863,2.667352 +-0.507400,0.850503,-0.818816,-1.985794,0.586286,2.668281 +-0.506321,0.851485,-0.818036,-1.984812,0.585788,2.669263 +-0.505205,0.852515,-0.817324,-1.983782,0.585370,2.670294 +-0.504060,0.853588,-0.816685,-1.982709,0.585035,2.671366 +-0.502890,0.854698,-0.816121,-1.981599,0.584785,2.672476 +-0.501701,0.855839,-0.815635,-1.980458,0.584620,2.673617 +-0.500501,0.857006,-0.815230,-1.979291,0.584542,2.674784 +-0.499295,0.858192,-0.814909,-1.978106,0.584552,2.675970 +-0.498089,0.859390,-0.814672,-1.976907,0.584648,2.677169 +-0.496890,0.860596,-0.814521,-1.975701,0.584831,2.678374 +-0.495705,0.861802,-0.814457,-1.974495,0.585099,2.679580 +-0.494538,0.863002,-0.814480,-1.973295,0.585452,2.680781 +-0.493397,0.864191,-0.814589,-1.972106,0.585887,2.681969 +-0.492287,0.865361,-0.814785,-1.970936,0.586402,2.683139 +-0.491213,0.866507,-0.815067,-1.969790,0.586994,2.684285 +-0.490183,0.867622,-0.815432,-1.968675,0.587661,2.685400 +-0.489201,0.868702,-0.815880,-1.967596,0.588398,2.686480 +-0.488271,0.869739,-0.816407,-1.966558,0.589203,2.687517 +-0.487400,0.870730,-0.817011,-1.965567,0.590070,2.688508 +-0.486591,0.871668,-0.817688,-1.964629,0.590996,2.689446 +-0.485849,0.872549,-0.818436,-1.963748,0.591975,2.690327 +-0.485178,0.873368,-0.819250,-1.962929,0.593003,2.691146 +-0.484580,0.874121,-0.820127,-1.962176,0.594073,2.691899 +-0.484060,0.874804,-0.821060,-1.961493,0.595181,2.692582 +-0.483620,0.875413,-0.822047,-1.960884,0.596320,2.693192 +-0.483262,0.875946,-0.823081,-1.960351,0.597486,2.693724 +-0.482988,0.876399,-0.824157,-1.959898,0.598670,2.694178 +-0.482799,0.876771,-0.825269,-1.959526,0.599868,2.694549 +-0.482697,0.877058,-0.826412,-1.959239,0.601074,2.694836 +-0.482683,0.877260,-0.827580,-1.959037,0.602280,2.695039 +-0.482755,0.877376,-0.828767,-1.958921,0.603481,2.695154 +-0.482914,0.877405,-0.829966,-1.958892,0.604670,2.695183 +-0.483159,0.877347,-0.831171,-1.958950,0.605842,2.695125 +-0.483488,0.877202,-0.832376,-1.959096,0.606989,2.694980 +-0.483901,0.876970,-0.833574,-1.959327,0.608107,2.694749 +-0.484394,0.876654,-0.834761,-1.959643,0.609188,2.694432 +-0.484965,0.876255,-0.835928,-1.960042,0.610228,2.694033 +-0.485612,0.875775,-0.837070,-1.960523,0.611222,2.693553 +-0.486330,0.875216,-0.838182,-1.961082,0.612163,2.692994 +-0.487117,0.874581,-0.839257,-1.961716,0.613048,2.692359 +-0.487967,0.873874,-0.840289,-1.962423,0.613871,2.691652 +-0.488877,0.873098,-0.841274,-1.963199,0.614628,2.690876 +-0.489842,0.872257,-0.842206,-1.964040,0.615315,2.690035 +-0.490857,0.871356,-0.843081,-1.964941,0.615929,2.689135 +-0.491916,0.870400,-0.843893,-1.965897,0.616467,2.688178 +-0.493014,0.869393,-0.844639,-1.966904,0.616925,2.687171 +-0.494145,0.868341,-0.845315,-1.967957,0.617301,2.686119 +-0.495304,0.867248,-0.845917,-1.969049,0.617593,2.685027 +-0.496484,0.866122,-0.846442,-1.970175,0.617801,2.683900 +-0.497679,0.864967,-0.846887,-1.971330,0.617922,2.682745 +-0.498883,0.863790,-0.847250,-1.972507,0.617956,2.681568 +-0.500090,0.862597,-0.847529,-1.973700,0.617903,2.680375 +-0.501293,0.861394,-0.847723,-1.974903,0.617763,2.679172 +-0.502486,0.860187,-0.847830,-1.976110,0.617537,2.677966 +-0.503663,0.858983,-0.847850,-1.977314,0.617226,2.676762 +-0.504817,0.857788,-0.847784,-1.978509,0.616831,2.675567 +-0.505944,0.856608,-0.847630,-1.979689,0.616356,2.674387 +-0.507036,0.855450,-0.847391,-1.980847,0.615801,2.673228 +-0.508088,0.854319,-0.847067,-1.981979,0.615171,2.672097 +-0.509095,0.853221,-0.846660,-1.983077,0.614468,2.670999 +-0.510051,0.852162,-0.846172,-1.984136,0.613696,2.669940 +-0.510952,0.851147,-0.845606,-1.985150,0.612859,2.668925 +-0.511792,0.850182,-0.844964,-1.986115,0.611962,2.667961 +-0.512568,0.849272,-0.844251,-1.987025,0.611009,2.667051 +-0.513275,0.848422,-0.843469,-1.987875,0.610005,2.666200 +-0.513909,0.847636,-0.842623,-1.988661,0.608955,2.665414 +-0.514468,0.846918,-0.841717,-1.989380,0.607865,2.664696 +-0.514949,0.846271,-0.840756,-1.990026,0.606740,2.664049 +-0.515348,0.845700,-0.839745,-1.990597,0.605587,2.663478 +-0.515663,0.845207,-0.838690,-1.991090,0.604411,2.662985 +-0.515894,0.844795,-0.837595,-1.991502,0.603219,2.662573 +-0.516039,0.844466,-0.836466,-1.991832,0.602016,2.662244 +-0.516097,0.844221,-0.835310,-1.992076,0.600810,2.661999 +-0.516068,0.844062,-0.834131,-1.992235,0.599605,2.661840 +-0.515952,0.843990,-0.832938,-1.992307,0.598410,2.661768 +-0.515750,0.844005,-0.831735,-1.992292,0.597229,2.661783 +-0.515462,0.844107,-0.830529,-1.992190,0.596069,2.661886 +-0.515091,0.844296,-0.829327,-1.992001,0.594936,2.662074 +-0.514637,0.844570,-0.828133,-1.991727,0.593835,2.662348 +-0.514104,0.844928,-0.826956,-1.991369,0.592774,2.662707 +-0.513495,0.845369,-0.825801,-1.990928,0.591757,2.663147 +-0.512811,0.845889,-0.824673,-1.990408,0.590789,2.663667 +-0.512058,0.846487,-0.823579,-1.989810,0.589875,2.664265 +-0.511239,0.847158,-0.822525,-1.989139,0.589021,2.664937 +-0.510358,0.847901,-0.821516,-1.988396,0.588231,2.665679 +-0.509420,0.848710,-0.820557,-1.987587,0.587509,2.666488 +-0.508429,0.849581,-0.819653,-1.986716,0.586858,2.667359 +-0.507391,0.850511,-0.818809,-1.985786,0.586282,2.668289 +-0.506312,0.851493,-0.818030,-1.984804,0.585784,2.669271 +-0.505196,0.852524,-0.817319,-1.983773,0.585367,2.670302 +-0.504050,0.853597,-0.816680,-1.982700,0.585033,2.671375 +-0.502880,0.854707,-0.816117,-1.981590,0.584783,2.672485 +-0.501692,0.855849,-0.815632,-1.980449,0.584619,2.673627 +-0.500491,0.857015,-0.815228,-1.979282,0.584542,2.674793 +-0.499285,0.858201,-0.814907,-1.978096,0.584552,2.675979 +-0.498080,0.859400,-0.814670,-1.976897,0.584649,2.677178 +-0.496881,0.860606,-0.814520,-1.975692,0.584832,2.678384 +-0.495695,0.861812,-0.814457,-1.974485,0.585101,2.679590 +-0.494529,0.863012,-0.814480,-1.973285,0.585455,2.680790 +-0.493388,0.864200,-0.814591,-1.972097,0.585890,2.681978 +-0.492278,0.865370,-0.814787,-1.970927,0.586406,2.683148 +-0.491205,0.866516,-0.815070,-1.969781,0.586999,2.684294 +-0.490175,0.867631,-0.815436,-1.968666,0.587666,2.685409 +-0.489193,0.868710,-0.815884,-1.967587,0.588405,2.686488 +-0.488264,0.869747,-0.816411,-1.966550,0.589210,2.687525 +-0.487393,0.870737,-0.817016,-1.965560,0.590077,2.688516 +-0.486585,0.871675,-0.817694,-1.964622,0.591004,2.689453 +-0.485843,0.872556,-0.818442,-1.963742,0.591983,2.690334 +-0.485172,0.873374,-0.819257,-1.962923,0.593011,2.691152 +-0.484576,0.874127,-0.820134,-1.962171,0.594082,2.691905 +-0.484056,0.874809,-0.821068,-1.961488,0.595190,2.692587 +-0.483617,0.875418,-0.822055,-1.960879,0.596330,2.693196 +-0.483259,0.875950,-0.823089,-1.960347,0.597495,2.693728 +-0.482986,0.876403,-0.824165,-1.959894,0.598680,2.694181 +-0.482798,0.876773,-0.825278,-1.959524,0.599878,2.694551 +-0.482697,0.877060,-0.826421,-1.959237,0.601083,2.694838 +-0.482683,0.877262,-0.827589,-1.959036,0.602290,2.695040 +-0.482756,0.877377,-0.828776,-1.958920,0.603491,2.695155 +-0.482915,0.877405,-0.829975,-1.958892,0.604680,2.695183 +-0.483161,0.877346,-0.831180,-1.958951,0.605851,2.695124 +-0.483491,0.877200,-0.832385,-1.959097,0.606998,2.694978 +-0.483904,0.876968,-0.833584,-1.959329,0.608115,2.694746 +-0.484398,0.876651,-0.834770,-1.959646,0.609197,2.694430 +-0.484970,0.876251,-0.835937,-1.960046,0.610237,2.694030 +-0.485617,0.875770,-0.837079,-1.960527,0.611230,2.693549 +-0.486336,0.875211,-0.838190,-1.961086,0.612171,2.692989 +-0.487123,0.874575,-0.839265,-1.961722,0.613055,2.692354 +-0.487974,0.873868,-0.840297,-1.962429,0.613877,2.691646 +-0.488885,0.873091,-0.841282,-1.963206,0.614634,2.690870 +-0.489850,0.872250,-0.842214,-1.964047,0.615320,2.690028 +-0.490865,0.871349,-0.843088,-1.964948,0.615934,2.689127 +-0.491924,0.870392,-0.843900,-1.965905,0.616471,2.688170 +-0.493023,0.869385,-0.844645,-1.966912,0.616928,2.687163 +-0.494154,0.868332,-0.845320,-1.967965,0.617304,2.686110 +-0.495313,0.867240,-0.845921,-1.969058,0.617595,2.685018 +-0.496493,0.866113,-0.846445,-1.970184,0.617802,2.683891 +-0.497688,0.864958,-0.846890,-1.971339,0.617922,2.682736 +-0.498893,0.863781,-0.847252,-1.972516,0.617956,2.681559 +-0.500099,0.862588,-0.847531,-1.973709,0.617902,2.680366 +-0.501302,0.861385,-0.847724,-1.974913,0.617761,2.679163 +-0.502495,0.860178,-0.847830,-1.976119,0.617535,2.677956 +-0.503672,0.858974,-0.847850,-1.977323,0.617223,2.676752 +-0.504826,0.857779,-0.847783,-1.978518,0.616828,2.675557 +-0.505952,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-0.507044,0.855441,-0.847389,-1.980856,0.615797,2.673219 +-0.508096,0.854310,-0.847064,-1.981987,0.615166,2.672088 +-0.509103,0.853212,-0.846656,-1.983085,0.614462,2.670990 +-0.510059,0.852153,-0.846168,-1.984144,0.613690,2.669932 +-0.510959,0.851139,-0.845601,-1.985158,0.612852,2.668917 +-0.511799,0.850175,-0.844959,-1.986122,0.611955,2.667953 +-0.512574,0.849265,-0.844245,-1.987032,0.611001,2.667044 +-0.513280,0.848416,-0.843463,-1.987882,0.609996,2.666194 +-0.513914,0.847630,-0.842616,-1.988667,0.608946,2.665408 +-0.514472,0.846912,-0.841710,-1.989385,0.607856,2.664690 +-0.514952,0.846266,-0.840749,-1.990031,0.606731,2.664045 +-0.515350,0.845696,-0.839737,-1.990601,0.605578,2.663474 +-0.515666,0.845203,-0.838681,-1.991094,0.604402,2.662982 +-0.515896,0.844792,-0.837586,-1.991505,0.603210,2.662570 +-0.516040,0.844463,-0.836457,-1.991834,0.602007,2.662241 +-0.516098,0.844219,-0.835300,-1.992078,0.600800,2.661997 +-0.516068,0.844061,-0.834122,-1.992236,0.599596,2.661839 +-0.515951,0.843990,-0.832928,-1.992307,0.598400,2.661768 +-0.515748,0.844006,-0.831725,-1.992291,0.597219,2.661784 +-0.515460,0.844108,-0.830520,-1.992189,0.596059,2.661887 +-0.515087,0.844298,-0.829317,-1.991999,0.594927,2.662076 +-0.514633,0.844573,-0.828124,-1.991724,0.593827,2.662351 +-0.514100,0.844932,-0.826947,-1.991366,0.592766,2.662710 +-0.513490,0.845373,-0.825791,-1.990924,0.591749,2.663151 +-0.512806,0.845894,-0.824664,-1.990403,0.590781,2.663672 +-0.512052,0.846492,-0.823571,-1.989805,0.589868,2.664270 +-0.511232,0.847164,-0.822517,-1.989133,0.589015,2.664942 +-0.510351,0.847907,-0.821508,-1.988390,0.588225,2.665685 +-0.509412,0.848716,-0.820549,-1.987581,0.587503,2.666495 +-0.508421,0.849588,-0.819646,-1.986709,0.586853,2.667367 +-0.507383,0.850518,-0.818803,-1.985779,0.586278,2.668296 +-0.506303,0.851501,-0.818024,-1.984796,0.585781,2.669279 +-0.505187,0.852532,-0.817313,-1.983765,0.585364,2.670310 +-0.504041,0.853606,-0.816675,-1.982692,0.585031,2.671384 +-0.502871,0.854716,-0.816112,-1.981581,0.584782,2.672494 +-0.501682,0.855858,-0.815628,-1.980439,0.584618,2.673636 +-0.500482,0.857025,-0.815225,-1.979273,0.584542,2.674803 +-0.499276,0.858211,-0.814904,-1.978087,0.584552,2.675989 +-0.498070,0.859410,-0.814669,-1.976888,0.584650,2.677188 +-0.496871,0.860615,-0.814519,-1.975682,0.584834,2.678393 +-0.495686,0.861821,-0.814456,-1.974476,0.585104,2.679599 +-0.494520,0.863022,-0.814481,-1.973276,0.585458,2.680800 +-0.493379,0.864210,-0.814592,-1.972088,0.585894,2.681988 +-0.492269,0.865379,-0.814789,-1.970918,0.586410,2.683158 +-0.491197,0.866525,-0.815072,-1.969772,0.587004,2.684303 +-0.490167,0.867640,-0.815439,-1.968657,0.587672,2.685418 +-0.489185,0.868718,-0.815887,-1.967579,0.588411,2.686497 +-0.488257,0.869755,-0.816416,-1.966542,0.589216,2.687534 +-0.487387,0.870745,-0.817021,-1.965552,0.590085,2.688523 +-0.486579,0.871682,-0.817700,-1.964615,0.591011,2.689460 +-0.485838,0.872562,-0.818449,-1.963735,0.591991,2.690340 +-0.485167,0.873380,-0.819264,-1.962917,0.593019,2.691159 +-0.484571,0.874132,-0.820141,-1.962165,0.594090,2.691911 +-0.484052,0.874814,-0.821076,-1.961483,0.595199,2.692592 +-0.483613,0.875423,-0.822063,-1.960875,0.596339,2.693201 +-0.483257,0.875954,-0.823097,-1.960343,0.597504,2.693732 +-0.482984,0.876406,-0.824174,-1.959891,0.598689,2.694184 +-0.482797,0.876776,-0.825287,-1.959521,0.599888,2.694554 +-0.482697,0.877062,-0.826431,-1.959235,0.601093,2.694840 +-0.482683,0.877263,-0.827599,-1.959034,0.602299,2.695041 +-0.482757,0.877377,-0.828786,-1.958920,0.603500,2.695155 +-0.482917,0.877405,-0.829985,-1.958892,0.604689,2.695183 +-0.483163,0.877345,-0.831190,-1.958952,0.605860,2.695123 +-0.483494,0.877199,-0.832395,-1.959099,0.607007,2.694977 +-0.483908,0.876966,-0.833593,-1.959331,0.608124,2.694744 +-0.484402,0.876649,-0.834779,-1.959649,0.609205,2.694427 +-0.484975,0.876248,-0.835946,-1.960049,0.610245,2.694026 +-0.485623,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-0.486342,0.875206,-0.838199,-1.961091,0.612178,2.692984 +-0.487130,0.874570,-0.839273,-1.961727,0.613061,2.692348 +-0.487981,0.873862,-0.840305,-1.962435,0.613883,2.691640 +-0.488892,0.873085,-0.841289,-1.963212,0.614639,2.690863 +-0.489858,0.872243,-0.842221,-1.964054,0.615326,2.690022 +-0.490873,0.871342,-0.843094,-1.964956,0.615938,2.689120 +-0.491933,0.870384,-0.843906,-1.965913,0.616475,2.688163 +-0.493032,0.869377,-0.844651,-1.966921,0.616931,2.687155 +-0.494163,0.868324,-0.845325,-1.967974,0.617306,2.686102 +-0.495322,0.867231,-0.845926,-1.969066,0.617597,2.685009 +-0.496503,0.866104,-0.846449,-1.970193,0.617803,2.683882 +-0.497698,0.864949,-0.846893,-1.971348,0.617923,2.682727 +-0.498902,0.863771,-0.847255,-1.972526,0.617956,2.681550 +-0.500109,0.862578,-0.847533,-1.973719,0.617901,2.680356 +-0.501312,0.861375,-0.847725,-1.974922,0.617760,2.679153 +-0.502505,0.860168,-0.847831,-1.976129,0.617532,2.677946 +-0.503681,0.858964,-0.847850,-1.977333,0.617220,2.676743 +-0.504835,0.857769,-0.847782,-1.978528,0.616824,2.675548 +-0.505961,0.856590,-0.847627,-1.979707,0.616347,2.674368 +-0.507053,0.855432,-0.847386,-1.980865,0.615792,2.673210 +-0.508104,0.854301,-0.847061,-1.981996,0.615160,2.672079 +-0.509110,0.853203,-0.846653,-1.983094,0.614456,2.670982 +-0.510066,0.852145,-0.846164,-1.984152,0.613683,2.669923 +-0.510966,0.851131,-0.845596,-1.985166,0.612846,2.668910 +-0.511805,0.850167,-0.844954,-1.986130,0.611947,2.667946 +-0.512580,0.849258,-0.844239,-1.987039,0.610993,2.667037 +-0.513286,0.848409,-0.843456,-1.987888,0.609988,2.666187 +-0.513919,0.847624,-0.842609,-1.988673,0.608938,2.665402 +-0.514477,0.846907,-0.841702,-1.989390,0.607847,2.664685 +-0.514955,0.846261,-0.840741,-1.990036,0.606722,2.664040 +-0.515353,0.845692,-0.839729,-1.990606,0.605569,2.663470 +-0.515668,0.845200,-0.838673,-1.991097,0.604392,2.662978 +-0.515897,0.844789,-0.837577,-1.991508,0.603200,2.662567 +-0.516041,0.844461,-0.836448,-1.991836,0.601997,2.662239 +-0.516098,0.844218,-0.835291,-1.992079,0.600791,2.661996 +-0.516067,0.844060,-0.834113,-1.992237,0.599586,2.661838 +-0.515950,0.843990,-0.832919,-1.992307,0.598391,2.661768 +-0.515746,0.844006,-0.831716,-1.992291,0.597210,2.661784 +-0.515457,0.844110,-0.830510,-1.992187,0.596050,2.661888 +-0.515084,0.844300,-0.829307,-1.991997,0.594918,2.662078 +-0.514629,0.844575,-0.828115,-1.991722,0.593818,2.662353 +-0.514095,0.844935,-0.826937,-1.991362,0.592757,2.662713 +-0.513484,0.845376,-0.825782,-1.990921,0.591741,2.663155 +-0.512800,0.845898,-0.824655,-1.990399,0.590774,2.663676 +-0.512046,0.846497,-0.823562,-1.989800,0.589861,2.664275 +-0.511225,0.847170,-0.822509,-1.989127,0.589008,2.664948 +-0.510343,0.847913,-0.821500,-1.988384,0.588219,2.665691 +-0.509404,0.848723,-0.820542,-1.987574,0.587498,2.666501 +-0.508413,0.849596,-0.819639,-1.986702,0.586848,2.667374 +-0.507374,0.850526,-0.818796,-1.985771,0.586274,2.668304 +-0.506294,0.851509,-0.818018,-1.984788,0.585777,2.669287 +-0.505178,0.852541,-0.817308,-1.983757,0.585361,2.670319 +-0.504032,0.853614,-0.816670,-1.982683,0.585028,2.671392 +-0.502861,0.854725,-0.816108,-1.981572,0.584780,2.672503 +-0.501673,0.855867,-0.815625,-1.980430,0.584617,2.673645 +-0.500472,0.857034,-0.815222,-1.979263,0.584542,2.674812 +-0.499266,0.858220,-0.814902,-1.978077,0.584553,2.675998 +-0.498061,0.859419,-0.814667,-1.976878,0.584651,2.677197 +-0.496862,0.860625,-0.814518,-1.975672,0.584836,2.678403 +-0.495676,0.861831,-0.814456,-1.974466,0.585106,2.679609 +-0.494510,0.863031,-0.814481,-1.973266,0.585461,2.680809 +-0.493370,0.864219,-0.814593,-1.972078,0.585898,2.681997 +-0.492260,0.865389,-0.814791,-1.970909,0.586415,2.683167 +-0.491188,0.866534,-0.815075,-1.969763,0.587009,2.684312 +-0.490159,0.867648,-0.815442,-1.968649,0.587678,2.685427 +-0.489178,0.868727,-0.815891,-1.967570,0.588417,2.686505 +-0.488250,0.869763,-0.816420,-1.966534,0.589223,2.687542 +-0.487380,0.870753,-0.817026,-1.965544,0.590092,2.688531 +-0.486573,0.871690,-0.817705,-1.964608,0.591019,2.689468 +-0.485832,0.872569,-0.818455,-1.963728,0.591999,2.690347 +-0.485162,0.873387,-0.819271,-1.962911,0.593028,2.691165 +-0.484567,0.874138,-0.820148,-1.962159,0.594099,2.691916 +-0.484049,0.874819,-0.821083,-1.961478,0.595208,2.692598 +-0.483610,0.875427,-0.822071,-1.960870,0.596348,2.693205 +-0.483254,0.875958,-0.823106,-1.960339,0.597514,2.693736 +-0.482982,0.876409,-0.824183,-1.959888,0.598699,2.694187 +-0.482796,0.876779,-0.825296,-1.959519,0.599897,2.694557 +-0.482696,0.877064,-0.826440,-1.959233,0.601103,2.694842 +-0.482683,0.877264,-0.827608,-1.959033,0.602309,2.695042 +-0.482758,0.877378,-0.828795,-1.958919,0.603510,2.695156 +-0.482919,0.877405,-0.829994,-1.958893,0.604698,2.695183 +-0.483166,0.877344,-0.831199,-1.958953,0.605869,2.695122 +-0.483497,0.877197,-0.832404,-1.959100,0.607016,2.694975 +-0.483911,0.876964,-0.833603,-1.959333,0.608133,2.694742 +-0.484406,0.876646,-0.834789,-1.959651,0.609214,2.694424 +-0.484980,0.876244,-0.835955,-1.960053,0.610253,2.694023 +-0.485628,0.875762,-0.837097,-1.960535,0.611245,2.693540 +-0.486348,0.875201,-0.838208,-1.961096,0.612185,2.692979 +-0.487136,0.874565,-0.839282,-1.961732,0.613068,2.692343 +-0.487988,0.873856,-0.840313,-1.962441,0.613890,2.691634 +-0.488900,0.873078,-0.841297,-1.963219,0.614645,2.690857 +-0.489866,0.872236,-0.842228,-1.964061,0.615331,2.690015 +-0.490881,0.871334,-0.843101,-1.964963,0.615943,2.689112 +-0.491942,0.870377,-0.843912,-1.965921,0.616478,2.688155 +-0.493040,0.869368,-0.844656,-1.966929,0.616935,2.687147 +-0.494173,0.868315,-0.845330,-1.967982,0.617309,2.686093 +-0.495332,0.867222,-0.845930,-1.969075,0.617599,2.685000 +-0.496512,0.866095,-0.846453,-1.970202,0.617805,2.683873 +-0.497708,0.864939,-0.846896,-1.971358,0.617924,2.682718 +-0.498912,0.863762,-0.847257,-1.972535,0.617956,2.681540 +-0.500118,0.862569,-0.847534,-1.973729,0.617900,2.680347 +-0.501321,0.861365,-0.847726,-1.974932,0.617758,2.679144 +-0.502514,0.860159,-0.847831,-1.976138,0.617530,2.677937 +-0.503690,0.858955,-0.847850,-1.977342,0.617217,2.676733 +-0.504844,0.857760,-0.847781,-1.978537,0.616821,2.675538 +-0.505970,0.856581,-0.847625,-1.979717,0.616343,2.674359 +-0.507061,0.855423,-0.847384,-1.980875,0.615787,2.673201 +-0.508113,0.854292,-0.847058,-1.982005,0.615155,2.672070 +-0.509118,0.853195,-0.846649,-1.983102,0.614450,2.670973 +-0.510073,0.852137,-0.846159,-1.984160,0.613677,2.669915 +-0.510973,0.851123,-0.845592,-1.985174,0.612839,2.668902 +-0.511811,0.850160,-0.844948,-1.986137,0.611940,2.667938 +-0.512586,0.849251,-0.844233,-1.987046,0.610985,2.667030 +-0.513291,0.848403,-0.843450,-1.987895,0.609980,2.666181 +-0.513924,0.847618,-0.842602,-1.988679,0.608929,2.665396 +-0.514481,0.846901,-0.841695,-1.989396,0.607838,2.664679 +-0.514959,0.846257,-0.840733,-1.990040,0.606713,2.664035 +-0.515356,0.845687,-0.839721,-1.990610,0.605559,2.663465 +-0.515670,0.845196,-0.838664,-1.991101,0.604383,2.662974 +-0.515899,0.844786,-0.837568,-1.991511,0.603190,2.662564 +-0.516042,0.844459,-0.836439,-1.991838,0.601988,2.662237 +-0.516098,0.844216,-0.835282,-1.992081,0.600781,2.661994 +-0.516067,0.844059,-0.834103,-1.992238,0.599577,2.661838 +-0.515949,0.843989,-0.832909,-1.992308,0.598381,2.661768 +-0.515744,0.844007,-0.831706,-1.992291,0.597201,2.661785 +-0.515454,0.844111,-0.830500,-1.992186,0.596041,2.661889 +-0.515081,0.844302,-0.829298,-1.991996,0.594909,2.662080 +-0.514625,0.844578,-0.828105,-1.991719,0.593810,2.662356 +-0.514091,0.844938,-0.826928,-1.991359,0.592749,2.662716 +-0.513479,0.845380,-0.825773,-1.990917,0.591733,2.663158 +-0.512794,0.845903,-0.824646,-1.990395,0.590766,2.663681 +-0.512039,0.846502,-0.823554,-1.989795,0.589854,2.664280 +-0.511219,0.847175,-0.822500,-1.989122,0.589002,2.664954 +-0.510336,0.847919,-0.821492,-1.988378,0.588213,2.665697 +-0.509397,0.848730,-0.820534,-1.987567,0.587492,2.666508 +-0.508405,0.849603,-0.819632,-1.986694,0.586843,2.667381 +-0.507366,0.850534,-0.818790,-1.985764,0.586269,2.668312 +-0.506286,0.851517,-0.818012,-1.984780,0.585773,2.669295 +-0.505169,0.852549,-0.817303,-1.983748,0.585358,2.670327 +-0.504023,0.853623,-0.816666,-1.982674,0.585026,2.671401 +-0.502852,0.854734,-0.816104,-1.981563,0.584778,2.672512 +-0.501663,0.855876,-0.815621,-1.980421,0.584616,2.673654 +-0.500463,0.857043,-0.815219,-1.979254,0.584541,2.674821 +-0.499257,0.858230,-0.814900,-1.978068,0.584553,2.676008 +-0.498051,0.859429,-0.814666,-1.976868,0.584652,2.677207 +-0.496852,0.860634,-0.814518,-1.975663,0.584838,2.678413 +-0.495667,0.861840,-0.814456,-1.974457,0.585109,2.679619 +-0.494501,0.863041,-0.814482,-1.973257,0.585464,2.680819 +-0.493361,0.864228,-0.814594,-1.972069,0.585902,2.682007 +-0.492252,0.865398,-0.814793,-1.970899,0.586419,2.683176 +-0.491180,0.866543,-0.815077,-1.969754,0.587014,2.684321 +-0.490151,0.867657,-0.815445,-1.968640,0.587683,2.685435 +-0.489170,0.868735,-0.815895,-1.967562,0.588423,2.686513 +-0.488243,0.869771,-0.816425,-1.966526,0.589230,2.687550 +-0.487373,0.870760,-0.817031,-1.965537,0.590099,2.688539 +-0.486566,0.871697,-0.817711,-1.964600,0.591026,2.689475 +-0.485827,0.872576,-0.818461,-1.963721,0.592007,2.690354 +-0.485157,0.873393,-0.819277,-1.962904,0.593036,2.691171 +-0.484562,0.874144,-0.820155,-1.962153,0.594108,2.691922 +-0.484045,0.874824,-0.821091,-1.961473,0.595217,2.692603 +-0.483607,0.875432,-0.822079,-1.960866,0.596357,2.693210 +-0.483252,0.875962,-0.823114,-1.960335,0.597523,2.693740 +-0.482980,0.876412,-0.824191,-1.959885,0.598708,2.694191 +-0.482795,0.876781,-0.825305,-1.959516,0.599907,2.694559 +-0.482696,0.877066,-0.826449,-1.959231,0.601112,2.694844 +-0.482684,0.877265,-0.827618,-1.959032,0.602318,2.695044 +-0.482759,0.877378,-0.828805,-1.958919,0.603519,2.695157 +-0.482920,0.877404,-0.830004,-1.958893,0.604708,2.695183 +-0.483168,0.877343,-0.831209,-1.958954,0.605879,2.695122 +-0.483500,0.877196,-0.832414,-1.959102,0.607025,2.694974 +-0.483915,0.876962,-0.833612,-1.959336,0.608142,2.694740 +-0.484411,0.876643,-0.834798,-1.959654,0.609222,2.694421 +-0.484985,0.876241,-0.835965,-1.960056,0.610261,2.694019 +-0.485633,0.875758,-0.837106,-1.960539,0.611253,2.693536 +-0.486354,0.875196,-0.838216,-1.961101,0.612192,2.692975 +-0.487143,0.874559,-0.839290,-1.961738,0.613075,2.692338 +-0.487995,0.873850,-0.840321,-1.962447,0.613896,2.691628 +-0.488907,0.873072,-0.841305,-1.963225,0.614651,2.690850 +-0.489874,0.872229,-0.842235,-1.964068,0.615336,2.690008 +-0.490890,0.871327,-0.843108,-1.964970,0.615947,2.689105 +-0.491950,0.870369,-0.843918,-1.965928,0.616482,2.688147 +-0.493049,0.869360,-0.844662,-1.966937,0.616938,2.687138 +-0.494182,0.868306,-0.845335,-1.967991,0.617312,2.686085 +-0.495341,0.867213,-0.845935,-1.969084,0.617601,2.684991 +-0.496522,0.866086,-0.846457,-1.970212,0.617806,2.683864 +-0.497717,0.864930,-0.846899,-1.971367,0.617924,2.682708 +-0.498921,0.863753,-0.847260,-1.972545,0.617955,2.681531 +-0.500128,0.862559,-0.847536,-1.973738,0.617900,2.680337 +-0.501331,0.861356,-0.847727,-1.974941,0.617757,2.679134 +-0.502523,0.860149,-0.847832,-1.976148,0.617528,2.677927 +-0.503700,0.858945,-0.847849,-1.977352,0.617214,2.676723 +-0.504854,0.857751,-0.847780,-1.978547,0.616817,2.675529 +-0.505979,0.856571,-0.847624,-1.979726,0.616339,2.674349 +-0.507070,0.855413,-0.847382,-1.980884,0.615782,2.673192 +-0.508121,0.854283,-0.847055,-1.982014,0.615150,2.672061 +-0.509126,0.853186,-0.846646,-1.983111,0.614445,2.670964 +-0.510081,0.852129,-0.846155,-1.984169,0.613671,2.669907 +-0.510980,0.851116,-0.845587,-1.985182,0.612832,2.668894 +-0.511818,0.850153,-0.844943,-1.986145,0.611933,2.667931 +-0.512591,0.849244,-0.844227,-1.987053,0.610978,2.667023 +-0.513296,0.848396,-0.843443,-1.987901,0.609972,2.666174 +-0.513928,0.847612,-0.842595,-1.988685,0.608921,2.665390 +-0.514485,0.846896,-0.841688,-1.989401,0.607830,2.664674 +-0.514962,0.846252,-0.840725,-1.990045,0.606704,2.664030 +-0.515359,0.845683,-0.839712,-1.990614,0.605550,2.663461 +-0.515672,0.845193,-0.838655,-1.991104,0.604374,2.662971 +-0.515900,0.844783,-0.837559,-1.991514,0.603181,2.662561 +-0.516043,0.844456,-0.836429,-1.991841,0.601978,2.662235 +-0.516098,0.844214,-0.835272,-1.992083,0.600771,2.661993 +-0.516066,0.844058,-0.834094,-1.992239,0.599567,2.661837 +-0.515947,0.843989,-0.832900,-1.992308,0.598372,2.661767 +-0.515742,0.844007,-0.831697,-1.992290,0.597191,2.661785 +-0.515452,0.844112,-0.830491,-1.992185,0.596032,2.661890 +-0.515078,0.844303,-0.829288,-1.991994,0.594900,2.662082 +-0.514622,0.844580,-0.828096,-1.991717,0.593801,2.662358 +-0.514086,0.844941,-0.826919,-1.991356,0.592741,2.662719 +-0.513474,0.845384,-0.825764,-1.990913,0.591725,2.663162 +-0.512789,0.845907,-0.824638,-1.990390,0.590759,2.663685 +-0.512033,0.846507,-0.823545,-1.989790,0.589847,2.664285 +-0.511212,0.847181,-0.822492,-1.989116,0.588995,2.664959 +-0.510329,0.847925,-0.821484,-1.988372,0.588207,2.665704 +-0.509389,0.848737,-0.820527,-1.987561,0.587487,2.666515 +-0.508397,0.849610,-0.819625,-1.986687,0.586838,2.667388 +-0.507358,0.850541,-0.818783,-1.985756,0.586265,2.668319 +-0.506277,0.851525,-0.818006,-1.984772,0.585770,2.669303 +-0.505160,0.852557,-0.817297,-1.983740,0.585355,2.670335 +-0.504013,0.853632,-0.816661,-1.982665,0.585024,2.671410 +-0.502843,0.854743,-0.816100,-1.981554,0.584777,2.672521 +-0.501654,0.855885,-0.815617,-1.980412,0.584616,2.673663 +-0.500453,0.857053,-0.815216,-1.979244,0.584541,2.674831 +-0.499247,0.858239,-0.814898,-1.978058,0.584554,2.676017 +-0.498041,0.859438,-0.814664,-1.976859,0.584653,2.677216 +-0.496843,0.860644,-0.814517,-1.975653,0.584840,2.678422 +-0.495658,0.861850,-0.814456,-1.974447,0.585111,2.679628 +-0.494492,0.863050,-0.814482,-1.973247,0.585467,2.680828 +-0.493352,0.864238,-0.814595,-1.972059,0.585905,2.682016 +-0.492243,0.865407,-0.814795,-1.970890,0.586424,2.683185 +-0.491172,0.866552,-0.815080,-1.969745,0.587019,2.684330 +-0.490143,0.867666,-0.815449,-1.968631,0.587689,2.685444 +-0.489163,0.868744,-0.815899,-1.967553,0.588429,2.686522 +-0.488236,0.869780,-0.816429,-1.966518,0.589236,2.687558 +-0.487367,0.870768,-0.817036,-1.965529,0.590106,2.688546 +-0.486560,0.871704,-0.817717,-1.964593,0.591034,2.689482 +-0.485821,0.872583,-0.818467,-1.963715,0.592015,2.690361 +-0.485152,0.873399,-0.819284,-1.962898,0.593044,2.691177 +-0.484558,0.874149,-0.820163,-1.962148,0.594116,2.691928 +-0.484041,0.874830,-0.821099,-1.961468,0.595226,2.692608 +-0.483604,0.875436,-0.822087,-1.960861,0.596366,2.693214 +-0.483249,0.875966,-0.823123,-1.960331,0.597532,2.693744 +-0.482979,0.876416,-0.824200,-1.959881,0.598718,2.694194 +-0.482794,0.876784,-0.825314,-1.959513,0.599916,2.694562 +-0.482695,0.877068,-0.826458,-1.959229,0.601122,2.694846 +-0.482684,0.877267,-0.827627,-1.959031,0.602328,2.695045 +-0.482759,0.877379,-0.828814,-1.958918,0.603529,2.695157 +-0.482922,0.877404,-0.830013,-1.958893,0.604717,2.695183 +-0.483170,0.877343,-0.831219,-1.958955,0.605888,2.695121 +-0.483503,0.877194,-0.832424,-1.959103,0.607034,2.694972 +-0.483919,0.876959,-0.833622,-1.959338,0.608150,2.694738 +-0.484415,0.876640,-0.834807,-1.959657,0.609230,2.694418 +-0.484989,0.876237,-0.835974,-1.960060,0.610269,2.694016 +-0.485639,0.875754,-0.837115,-1.960543,0.611260,2.693532 +-0.486360,0.875192,-0.838225,-1.961105,0.612200,2.692970 +-0.487149,0.874554,-0.839298,-1.961743,0.613082,2.692332 +-0.488002,0.873844,-0.840329,-1.962453,0.613902,2.691622 +-0.488915,0.873066,-0.841312,-1.963232,0.614657,2.690844 +-0.489881,0.872223,-0.842242,-1.964075,0.615341,2.690001 +-0.490898,0.871319,-0.843114,-1.964978,0.615952,2.689098 +-0.491959,0.870361,-0.843924,-1.965936,0.616486,2.688139 +-0.493058,0.869352,-0.844668,-1.966945,0.616941,2.687130 +-0.494191,0.868298,-0.845340,-1.967999,0.617314,2.686076 +-0.495350,0.867204,-0.845939,-1.969093,0.617603,2.684982 +-0.496531,0.866077,-0.846461,-1.970221,0.617807,2.683855 +-0.497727,0.864921,-0.846903,-1.971376,0.617925,2.682699 +-0.498931,0.863743,-0.847262,-1.972554,0.617955,2.681521 +-0.500138,0.862549,-0.847538,-1.973748,0.617899,2.680328 +-0.501340,0.861346,-0.847728,-1.974951,0.617755,2.679124 +-0.502533,0.860140,-0.847832,-1.976158,0.617526,2.677918 +-0.503709,0.858936,-0.847849,-1.977361,0.617212,2.676714 +-0.504863,0.857741,-0.847779,-1.978556,0.616814,2.675519 +-0.505988,0.856562,-0.847622,-1.979735,0.616335,2.674340 +-0.507078,0.855404,-0.847380,-1.980893,0.615778,2.673182 +-0.508129,0.854274,-0.847052,-1.982023,0.615144,2.672052 +-0.509134,0.853178,-0.846642,-1.983119,0.614439,2.670956 +-0.510088,0.852120,-0.846151,-1.984177,0.613664,2.669899 +-0.510986,0.851108,-0.845582,-1.985189,0.612825,2.668886 +-0.511824,0.850145,-0.844937,-1.986152,0.611925,2.667923 +-0.512597,0.849237,-0.844221,-1.987060,0.610970,2.667016 +-0.513302,0.848390,-0.843437,-1.987908,0.609964,2.666168 +-0.513933,0.847606,-0.842588,-1.988691,0.608912,2.665384 +-0.514489,0.846890,-0.841680,-1.989407,0.607821,2.664669 +-0.514966,0.846247,-0.840717,-1.990050,0.606695,2.664025 +-0.515362,0.845679,-0.839704,-1.990618,0.605541,2.663457 +-0.515674,0.845189,-0.838647,-1.991108,0.604364,2.662967 +-0.515902,0.844780,-0.837550,-1.991517,0.603171,2.662558 +-0.516043,0.844454,-0.836420,-1.991843,0.601968,2.662232 +-0.516098,0.844213,-0.835263,-1.992084,0.600762,2.661991 +-0.516065,0.844058,-0.834084,-1.992240,0.599558,2.661836 +-0.515946,0.843989,-0.832890,-1.992308,0.598362,2.661767 +-0.515740,0.844008,-0.831687,-1.992290,0.597182,2.661786 +-0.515449,0.844113,-0.830481,-1.992184,0.596023,2.661891 +-0.515074,0.844305,-0.829279,-1.991992,0.594891,2.662083 +-0.514618,0.844583,-0.828086,-1.991714,0.593792,2.662361 +-0.514082,0.844944,-0.826910,-1.991353,0.592733,2.662722 +-0.513469,0.845388,-0.825755,-1.990909,0.591717,2.663166 +-0.512783,0.845912,-0.824629,-1.990386,0.590751,2.663690 +-0.512027,0.846512,-0.823537,-1.989785,0.589840,2.664290 +-0.511205,0.847187,-0.822484,-1.989110,0.588989,2.664965 +-0.510322,0.847932,-0.821477,-1.988365,0.588201,2.665710 +-0.509381,0.848743,-0.820520,-1.987554,0.587481,2.666521 +-0.508389,0.849617,-0.819618,-1.986680,0.586834,2.667395 +-0.507349,0.850549,-0.818777,-1.985748,0.586261,2.668327 +-0.506268,0.851533,-0.818000,-1.984764,0.585766,2.669312 +-0.505151,0.852566,-0.817292,-1.983731,0.585352,2.670344 +-0.504004,0.853640,-0.816656,-1.982657,0.585021,2.671419 +-0.502833,0.854752,-0.816096,-1.981545,0.584775,2.672530 +-0.501644,0.855894,-0.815614,-1.980403,0.584615,2.673673 +-0.500444,0.857062,-0.815213,-1.979235,0.584541,2.674840 +-0.499237,0.858249,-0.814896,-1.978049,0.584554,2.676027 +-0.498032,0.859448,-0.814663,-1.976849,0.584655,2.677226 +-0.496833,0.860654,-0.814516,-1.975644,0.584841,2.678432 +-0.495648,0.861860,-0.814456,-1.974438,0.585114,2.679638 +-0.494483,0.863060,-0.814483,-1.973238,0.585470,2.680838 +-0.493343,0.864247,-0.814597,-1.972050,0.585909,2.682025 +-0.492234,0.865416,-0.814797,-1.970881,0.586428,2.683194 +-0.491163,0.866561,-0.815082,-1.969736,0.587024,2.684339 +-0.490135,0.867675,-0.815452,-1.968623,0.587694,2.685453 +-0.489155,0.868752,-0.815903,-1.967545,0.588435,2.686530 +-0.488228,0.869788,-0.816434,-1.966510,0.589243,2.687566 +-0.487360,0.870776,-0.817041,-1.965521,0.590113,2.688554 +-0.486554,0.871711,-0.817722,-1.964586,0.591042,2.689489 +-0.485815,0.872589,-0.818474,-1.963708,0.592023,2.690367 +-0.485147,0.873405,-0.819291,-1.962892,0.593053,2.691184 +-0.484554,0.874155,-0.820170,-1.962142,0.594125,2.691933 +-0.484037,0.874835,-0.821106,-1.961462,0.595235,2.692613 +-0.483601,0.875441,-0.822095,-1.960857,0.596375,2.693219 +-0.483247,0.875970,-0.823131,-1.960328,0.597542,2.693748 +-0.482977,0.876419,-0.824209,-1.959878,0.598727,2.694197 +-0.482793,0.876786,-0.825323,-1.959511,0.599926,2.694564 +-0.482695,0.877070,-0.826467,-1.959227,0.601131,2.694848 +-0.482684,0.877268,-0.827636,-1.959029,0.602338,2.695046 +-0.482760,0.877380,-0.828824,-1.958918,0.603538,2.695158 +-0.482924,0.877404,-0.830023,-1.958893,0.604727,2.695182 +-0.483172,0.877342,-0.831228,-1.958955,0.605897,2.695120 +-0.483506,0.877192,-0.832433,-1.959105,0.607043,2.694971 +-0.483922,0.876957,-0.833631,-1.959340,0.608159,2.694735 +-0.484419,0.876637,-0.834817,-1.959660,0.609239,2.694415 +-0.484994,0.876234,-0.835983,-1.960063,0.610277,2.694012 +-0.485644,0.875750,-0.837124,-1.960547,0.611268,2.693528 +-0.486366,0.875187,-0.838234,-1.961110,0.612207,2.692965 +-0.487156,0.874549,-0.839307,-1.961748,0.613089,2.692327 +-0.488009,0.873838,-0.840337,-1.962459,0.613908,2.691616 +-0.488922,0.873059,-0.841320,-1.963238,0.614662,2.690837 +-0.489889,0.872216,-0.842249,-1.964082,0.615346,2.689994 +-0.490906,0.871312,-0.843121,-1.964985,0.615957,2.689090 +-0.491967,0.870353,-0.843930,-1.965944,0.616490,2.688131 +-0.493067,0.869344,-0.844673,-1.966953,0.616944,2.687122 +-0.494200,0.868289,-0.845345,-1.968008,0.617317,2.686067 +-0.495360,0.867195,-0.845944,-1.969102,0.617605,2.684973 +-0.496541,0.866067,-0.846465,-1.970230,0.617809,2.683846 +-0.497736,0.864912,-0.846906,-1.971386,0.617925,2.682690 +-0.498941,0.863734,-0.847265,-1.972563,0.617955,2.681512 +-0.500147,0.862540,-0.847540,-1.973757,0.617898,2.680318 +-0.501350,0.861337,-0.847730,-1.974961,0.617754,2.679115 +-0.502542,0.860130,-0.847833,-1.976167,0.617524,2.677908 +-0.503718,0.858926,-0.847849,-1.977371,0.617209,2.676704 +-0.504872,0.857732,-0.847778,-1.978565,0.616810,2.675510 +-0.505997,0.856553,-0.847621,-1.979744,0.616331,2.674331 +-0.507087,0.855395,-0.847377,-1.980902,0.615773,2.673173 +-0.508137,0.854265,-0.847049,-1.982032,0.615139,2.672044 +-0.509142,0.853169,-0.846638,-1.983128,0.614433,2.670947 +-0.510095,0.852112,-0.846147,-1.984185,0.613658,2.669890 +-0.510993,0.851100,-0.845577,-1.985197,0.612818,2.668878 +-0.511831,0.850138,-0.844932,-1.986159,0.611918,2.667916 +-0.512603,0.849230,-0.844215,-1.987067,0.610962,2.667009 +-0.513307,0.848383,-0.843430,-1.987914,0.609956,2.666161 +-0.513938,0.847600,-0.842581,-1.988697,0.608904,2.665378 +-0.514493,0.846885,-0.841673,-1.989412,0.607812,2.664663 +-0.514969,0.846242,-0.840709,-1.990055,0.606686,2.664020 +-0.515365,0.845675,-0.839696,-1.990622,0.605532,2.663453 +-0.515676,0.845185,-0.838638,-1.991112,0.604355,2.662964 +-0.515903,0.844777,-0.837541,-1.991520,0.603162,2.662555 +-0.516044,0.844452,-0.836411,-1.991845,0.601959,2.662230 +-0.516098,0.844211,-0.835254,-1.992086,0.600752,2.661990 +-0.516065,0.844057,-0.834075,-1.992240,0.599548,2.661835 +-0.515945,0.843989,-0.832881,-1.992308,0.598353,2.661767 +-0.515738,0.844008,-0.831678,-1.992289,0.597173,2.661786 +-0.515446,0.844114,-0.830472,-1.992183,0.596014,2.661893 +-0.515071,0.844307,-0.829269,-1.991990,0.594882,2.662085 +-0.514614,0.844585,-0.828077,-1.991712,0.593784,2.662363 +-0.514077,0.844948,-0.826900,-1.991350,0.592724,2.662726 +-0.513464,0.845392,-0.825746,-1.990905,0.591709,2.663170 +-0.512777,0.845916,-0.824620,-1.990381,0.590744,2.663694 +-0.512021,0.846517,-0.823528,-1.989780,0.589833,2.664295 +-0.511198,0.847192,-0.822476,-1.989105,0.588982,2.664970 +-0.510314,0.847938,-0.821469,-1.988359,0.588195,2.665716 +-0.509373,0.848750,-0.820512,-1.987547,0.587476,2.666528 +-0.508380,0.849624,-0.819611,-1.986673,0.586829,2.667402 +-0.507341,0.850556,-0.818770,-1.985741,0.586257,2.668335 +-0.506259,0.851541,-0.817994,-1.984756,0.585763,2.669320 +-0.505142,0.852574,-0.817287,-1.983723,0.585349,2.670352 +-0.503995,0.853649,-0.816651,-1.982648,0.585019,2.671427 +-0.502824,0.854761,-0.816092,-1.981536,0.584773,2.672539 +-0.501635,0.855904,-0.815610,-1.980393,0.584614,2.673682 +-0.500434,0.857071,-0.815210,-1.979226,0.584541,2.674850 +-0.499228,0.858258,-0.814893,-1.978039,0.584555,2.676036 +-0.498022,0.859457,-0.814661,-1.976840,0.584656,2.677236 +-0.496824,0.860663,-0.814515,-1.975634,0.584843,2.678441 +-0.495639,0.861869,-0.814456,-1.974428,0.585116,2.679647 +-0.494474,0.863069,-0.814483,-1.973228,0.585474,2.680847 +-0.493334,0.864257,-0.814598,-1.972041,0.585913,2.682035 +-0.492226,0.865425,-0.814799,-1.970872,0.586433,2.683204 +-0.491155,0.866570,-0.815085,-1.969727,0.587029,2.684348 +-0.490127,0.867683,-0.815455,-1.968614,0.587700,2.685461 +-0.489147,0.868761,-0.815907,-1.967537,0.588441,2.686539 +-0.488221,0.869796,-0.816438,-1.966501,0.589250,2.687574 +-0.487353,0.870783,-0.817046,-1.965514,0.590120,2.688562 +-0.486548,0.871718,-0.817728,-1.964579,0.591049,2.689497 +-0.485810,0.872596,-0.818480,-1.963701,0.592031,2.690374 +-0.485142,0.873412,-0.819298,-1.962886,0.593061,2.691190 +-0.484549,0.874161,-0.820177,-1.962136,0.594134,2.691939 +-0.484033,0.874840,-0.821114,-1.961457,0.595244,2.692618 +-0.483598,0.875445,-0.822103,-1.960852,0.596385,2.693223 +-0.483244,0.875974,-0.823139,-1.960324,0.597551,2.693752 +-0.482975,0.876422,-0.824218,-1.959875,0.598737,2.694200 +-0.482791,0.876789,-0.825332,-1.959508,0.599935,2.694567 +-0.482694,0.877072,-0.826477,-1.959225,0.601141,2.694850 +-0.482684,0.877269,-0.827646,-1.959028,0.602347,2.695047 +-0.482761,0.877380,-0.828833,-1.958917,0.603548,2.695158 +-0.482925,0.877404,-0.830033,-1.958893,0.604736,2.695182 +-0.483175,0.877341,-0.831238,-1.958956,0.605906,2.695119 +-0.483509,0.877191,-0.832443,-1.959106,0.607052,2.694969 +-0.483926,0.876955,-0.833641,-1.959342,0.608168,2.694733 +-0.484424,0.876634,-0.834826,-1.959663,0.609247,2.694412 +-0.484680,0.876458,-0.835369,-1.959840,0.609733,2.694240 +-0.484947,0.876270,-0.835901,-1.960020,0.610202,2.694050 +-0.485218,0.876078,-0.836416,-1.960210,0.610646,2.693860 +-0.485486,0.875887,-0.836907,-1.960400,0.611059,2.693680 +-0.485745,0.875704,-0.837369,-1.960570,0.611437,2.693510 +-0.485988,0.875535,-0.837793,-1.960720,0.611781,2.693350 +-0.486209,0.875382,-0.838175,-1.960870,0.612091,2.693210 +-0.486407,0.875243,-0.838507,-1.961000,0.612367,2.693080 +-0.486582,0.875120,-0.838783,-1.961110,0.612608,2.692960 +-0.486733,0.875012,-0.839003,-1.961210,0.612814,2.692860 +-0.486860,0.874920,-0.839173,-1.961300,0.612987,2.692770 +-0.486964,0.874843,-0.839299,-1.961370,0.613125,2.692700 +-0.487044,0.874781,-0.839388,-1.961430,0.613228,2.692640 +-0.487101,0.874734,-0.839447,-1.961480,0.613298,2.692590 +-0.487135,0.874703,-0.839481,-1.961510,0.613339,2.692560 +-0.487152,0.874686,-0.839497,-1.961530,0.613359,2.692540 +-0.487157,0.874681,-0.839502,-1.961540,0.613365,2.692540 +-0.487157,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487157,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487169,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487185,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487211,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487250,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487305,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487379,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487472,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487733,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.487905,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488108,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488344,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488617,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.488929,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.489283,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.489681,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.490125,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.490619,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.491164,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.491765,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.492422,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.493139,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.493918,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.494763,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.495674,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.496656,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.497711,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.498841,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.500048,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.501337,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.502708,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.504165,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.505710,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.507346,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.509076,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.510902,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.512826,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.514851,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.516981,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.519217,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.521562,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.524018,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.526589,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.529277,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.532084,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.535013,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.538067,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.541248,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.544558,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.547998,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.551568,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.555268,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.559098,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.563057,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.567146,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.571366,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.575714,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.580193,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.584802,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.589540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.594408,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.599406,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.604534,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.609792,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.615179,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.620696,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.626343,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.632120,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.638027,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.644064,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.650230,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.656526,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.662952,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.669508,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.676193,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.683009,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.689954,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.697029,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.704234,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.711569,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.719033,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.726628,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.734352,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.742206,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.750189,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.758299,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.766533,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.774888,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.783362,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.791953,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.800658,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.809473,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.818397,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.827428,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.836561,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.845795,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.855128,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.864556,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.874077,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.883688,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.893387,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.903171,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.913038,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.922985,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.933009,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.943108,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.953280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.963521,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.973828,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.984201,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-0.994635,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.005130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.015680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.026280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.036940,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.047640,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.058390,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.069190,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.080020,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.090900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.101800,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.112750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.123720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.134720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.145750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.156800,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.167870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.178960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.190060,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.201170,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.212300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.223430,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.234570,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.245710,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.256850,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.267980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.279110,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.290230,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.301350,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.312440,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.323520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.334590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.345630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.356650,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.367640,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.378600,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.389530,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.400420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.411280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.422100,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.432880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.443610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.454300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.464940,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.475520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.486050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.496520,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.506930,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.517280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.527560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.537780,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.547920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.557990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.567990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.577900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.587740,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.597490,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.607160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.616730,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.626220,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.635610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.644900,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.654100,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.663200,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.672180,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.681070,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.689840,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.698500,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.707050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.715480,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.723790,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.731970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.740040,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.747970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.755770,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.763450,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.770990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.778410,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.785690,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.792850,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.799870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.806770,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.813540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.820170,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.826680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.833050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.839300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.845420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.851400,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.857260,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.862990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.868590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.874050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.879390,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.884600,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.889680,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.894630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.899440,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.904130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.908690,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.913120,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.917420,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.921590,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.925630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.929540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.933320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.936970,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.940490,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.943880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.947140,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.950270,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.953280,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.956160,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.958920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.961560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.964090,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.966500,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.968810,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.971000,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.973090,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.975080,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.976960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.978750,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.980450,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.982050,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.983560,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.984980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.986320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.987580,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.988760,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.989860,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.990880,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.991840,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.992720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.993540,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.994300,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.994990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.995630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.996210,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.996730,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.997210,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.997630,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998010,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998350,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998650,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998910,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999130,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999320,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999480,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999610,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999720,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999810,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999870,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999920,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999960,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999980,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.999990,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-2.000000,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-2.000010,0.874679,-0.839503,-1.961540,0.613369,2.692540 +-2.000010,0.874679,-0.839500,-1.961540,0.613369,2.692540 +-2.000010,0.874680,-0.839498,-1.961540,0.613368,2.692540 +-2.000000,0.874685,-0.839494,-1.961530,0.613362,2.692550 +-1.999990,0.874696,-0.839483,-1.961520,0.613349,2.692560 +-1.999970,0.874715,-0.839463,-1.961500,0.613326,2.692580 +-1.999940,0.874742,-0.839433,-1.961470,0.613289,2.692610 +-1.999890,0.874774,-0.839388,-1.961450,0.613235,2.692630 +-1.999830,0.874808,-0.839326,-1.961420,0.613162,2.692660 +-1.999760,0.874843,-0.839246,-1.961390,0.613068,2.692690 +-1.999670,0.874878,-0.839144,-1.961360,0.612957,2.692720 +-1.999570,0.874913,-0.839017,-1.961340,0.612832,2.692740 +-1.999470,0.874948,-0.838864,-1.961310,0.612696,2.692770 +-1.999360,0.874983,-0.838684,-1.961280,0.612552,2.692800 +-1.999250,0.875018,-0.838481,-1.961250,0.612403,2.692830 +-1.999150,0.875053,-0.838256,-1.961220,0.612252,2.692850 +-1.999040,0.875088,-0.838013,-1.961200,0.612101,2.692880 +-1.998930,0.875123,-0.837754,-1.961170,0.611950,2.692910 +-1.998820,0.875158,-0.837481,-1.961140,0.611799,2.692940 +-1.998710,0.875193,-0.837198,-1.961110,0.611648,2.692970 +-1.998600,0.875227,-0.836907,-1.961090,0.611497,2.692990 +-1.998490,0.875262,-0.836609,-1.961060,0.611346,2.693020 +-1.998380,0.875297,-0.836309,-1.961030,0.611194,2.693050 +-1.998270,0.875332,-0.836009,-1.961000,0.611043,2.693080 +-1.998160,0.875367,-0.835710,-1.960970,0.610892,2.693100 +-1.998050,0.875402,-0.835416,-1.960950,0.610741,2.693130 +-1.997940,0.875437,-0.835130,-1.960920,0.610590,2.693160 +-1.997830,0.875472,-0.834854,-1.960890,0.610439,2.693190 +-1.997720,0.875507,-0.834590,-1.960860,0.610288,2.693220 +-1.997610,0.875542,-0.834342,-1.960830,0.610137,2.693240 +-1.997510,0.875577,-0.834111,-1.960810,0.609986,2.693270 +-1.997400,0.875612,-0.833900,-1.960780,0.609836,2.693300 +-1.997290,0.875647,-0.833713,-1.960750,0.609687,2.693330 +-1.997180,0.875681,-0.833551,-1.960720,0.609545,2.693350 +-1.997070,0.875716,-0.833417,-1.960700,0.609410,2.693380 +-1.996960,0.875751,-0.833314,-1.960670,0.609288,2.693410 +-1.996850,0.875786,-0.833244,-1.960640,0.609181,2.693440 +-1.996740,0.875821,-0.833210,-1.960610,0.609091,2.693460 +-1.996630,0.875856,-0.833215,-1.960580,0.609023,2.693490 +-1.996530,0.875891,-0.833261,-1.960560,0.608979,2.693520 +-1.996440,0.875926,-0.833350,-1.960530,0.608962,2.693550 +-1.996360,0.875961,-0.833483,-1.960500,0.608975,2.693580 +-1.996290,0.875993,-0.833656,-1.960470,0.609023,2.693600 +-1.996240,0.876021,-0.833867,-1.960450,0.609106,2.693630 +-1.996200,0.876041,-0.834114,-1.960420,0.609229,2.693650 +-1.996190,0.876052,-0.834393,-1.960400,0.609390,2.693670 +-1.996200,0.876050,-0.834703,-1.960400,0.609586,2.693680 +-1.996230,0.876033,-0.835040,-1.960400,0.609813,2.693670 +-1.996300,0.875998,-0.835403,-1.960420,0.610069,2.693650 +-1.996390,0.875943,-0.835788,-1.960460,0.610351,2.693610 +-1.996520,0.875865,-0.836192,-1.960520,0.610655,2.693550 +-1.996690,0.875761,-0.836614,-1.960610,0.610978,2.693460 +-1.996890,0.875629,-0.837051,-1.960730,0.611317,2.693350 +-1.997130,0.875467,-0.837500,-1.960870,0.611669,2.693200 +-1.997400,0.875272,-0.837958,-1.961050,0.612031,2.693020 +-1.997710,0.875044,-0.838423,-1.961270,0.612400,2.692800 +-1.998030,0.874787,-0.838893,-1.961520,0.612773,2.692550 +-1.998390,0.874503,-0.839364,-1.961800,0.613146,2.692280 +-1.998760,0.874194,-0.839834,-1.962100,0.613516,2.691970 +-1.999160,0.873864,-0.840301,-1.962430,0.613881,2.691640 +-1.999570,0.873515,-0.840761,-1.962780,0.614238,2.691290 +-2.000000,0.873149,-0.841213,-1.963148,0.614582,2.690927 +-2.001260,0.872049,-0.842419,-1.964248,0.615467,2.689827 +-2.002603,0.870849,-0.843525,-1.965448,0.616227,2.688628 +-2.004015,0.869560,-0.844523,-1.966737,0.616856,2.687338 +-2.005486,0.868193,-0.845402,-1.968105,0.617346,2.685971 +-2.007001,0.866759,-0.846156,-1.969538,0.617695,2.684537 +-2.008547,0.865272,-0.846778,-1.971025,0.617898,2.683050 +-2.010112,0.863745,-0.847262,-1.972552,0.617955,2.681523 +-2.011680,0.862190,-0.847604,-1.974107,0.617865,2.679969 +-2.013239,0.860623,-0.847801,-1.975674,0.617628,2.678401 +-2.014774,0.859056,-0.847852,-1.977241,0.617247,2.676834 +-2.016272,0.857504,-0.847755,-1.978793,0.616725,2.675282 +-2.017720,0.855980,-0.847512,-1.980317,0.616066,2.673758 +-2.019105,0.854497,-0.847124,-1.981800,0.615277,2.672275 +-2.020415,0.853069,-0.846596,-1.983228,0.614364,2.670847 +-2.021638,0.851709,-0.845932,-1.984589,0.613335,2.669487 +-2.022763,0.850427,-0.845138,-1.985870,0.612200,2.668205 +-2.023781,0.849236,-0.844220,-1.987061,0.610968,2.667014 +-2.024683,0.848146,-0.843187,-1.988151,0.609651,2.665924 +-2.025460,0.847167,-0.842048,-1.989131,0.608259,2.664945 +-2.026105,0.846306,-0.840813,-1.989991,0.606806,2.664085 +-2.026614,0.845573,-0.839493,-1.990724,0.605304,2.663351 +-2.026982,0.844973,-0.838100,-1.991324,0.603766,2.662751 +-2.027205,0.844512,-0.836645,-1.991786,0.602205,2.662290 +-2.027281,0.844193,-0.835142,-1.992104,0.600637,2.661971 +-2.027210,0.844019,-0.833603,-1.992278,0.599073,2.661798 +-2.026992,0.843993,-0.832043,-1.992304,0.597529,2.661771 +-2.026630,0.844114,-0.830476,-1.992183,0.596018,2.661892 +-2.026126,0.844381,-0.828914,-1.991916,0.594552,2.662159 +-2.025485,0.844792,-0.827372,-1.991505,0.593146,2.662570 +-2.024712,0.845343,-0.825863,-1.990954,0.591811,2.663121 +-2.023815,0.846029,-0.824401,-1.990268,0.590559,2.663807 +-2.022801,0.846845,-0.822998,-1.989453,0.589401,2.664623 +-2.021680,0.847782,-0.821668,-1.988515,0.588348,2.665560 +-2.020460,0.848834,-0.820421,-1.987463,0.587409,2.666612 +-2.019153,0.849990,-0.819268,-1.986307,0.586591,2.667768 +-2.017771,0.851240,-0.818220,-1.985057,0.585903,2.669018 +-2.016325,0.852574,-0.817287,-1.983723,0.585350,2.670352 +-2.014828,0.853979,-0.816475,-1.982318,0.584936,2.671757 +-2.013294,0.855444,-0.815793,-1.980854,0.584667,2.673222 +-2.011736,0.856954,-0.815246,-1.979343,0.584544,2.674733 +-2.010168,0.858498,-0.814840,-1.977799,0.584568,2.676276 +-2.008603,0.860061,-0.814577,-1.976236,0.584739,2.677840 +-2.007055,0.861630,-0.814461,-1.974667,0.585055,2.679408 +-2.005539,0.863191,-0.814491,-1.973106,0.585515,2.680969 +-2.004067,0.864729,-0.814668,-1.971568,0.586113,2.682507 +-2.002652,0.866232,-0.814991,-1.970065,0.586844,2.684010 +-2.001307,0.867686,-0.815456,-1.968611,0.587702,2.685464 +-2.000043,0.869079,-0.816060,-1.967218,0.588679,2.686857 +-1.998873,0.870398,-0.816796,-1.965900,0.589768,2.688176 +-1.997805,0.871631,-0.817659,-1.964666,0.590957,2.689409 +-1.996850,0.872768,-0.818641,-1.963530,0.592237,2.690546 +-1.996016,0.873798,-0.819734,-1.962499,0.593597,2.691576 +-1.995310,0.874713,-0.820927,-1.961584,0.595024,2.692491 +-1.994739,0.875504,-0.822210,-1.960793,0.596506,2.693282 +-1.994307,0.876165,-0.823572,-1.960132,0.598029,2.693943 +-1.994019,0.876690,-0.825000,-1.959608,0.599581,2.694468 +-1.993876,0.877073,-0.826483,-1.959224,0.601148,2.694851 +-1.993881,0.877312,-0.828007,-1.958985,0.602716,2.695090 +-1.994033,0.877405,-0.829559,-1.958892,0.604270,2.695183 +-1.994330,0.877350,-0.831125,-1.958947,0.605798,2.695129 +-1.994771,0.877149,-0.832691,-1.959148,0.607286,2.694927 +-1.995351,0.876803,-0.834244,-1.959494,0.608720,2.694581 +-1.996065,0.876314,-0.835769,-1.959983,0.610089,2.694093 +-1.996907,0.875688,-0.837254,-1.960609,0.611380,2.693467 +-1.997869,0.874930,-0.838685,-1.961367,0.612581,2.692709 +-1.998943,0.874047,-0.840050,-1.962250,0.613682,2.691825 +-2.000120,0.873046,-0.841336,-1.963252,0.614674,2.690824 +-2.001389,0.871935,-0.842532,-1.964362,0.615548,2.689714 +-2.002739,0.870726,-0.843628,-1.965571,0.616295,2.688504 +-2.004158,0.869429,-0.844615,-1.966868,0.616910,2.687207 +-2.005633,0.868054,-0.845482,-1.968243,0.617387,2.685832 +-2.007152,0.866615,-0.846223,-1.969682,0.617721,2.684393 +-2.008701,0.865123,-0.846832,-1.971174,0.617911,2.682901 +-2.010266,0.863593,-0.847302,-1.972705,0.617953,2.681371 +-2.011835,0.862036,-0.847630,-1.974261,0.617848,2.679815 +-2.013392,0.860468,-0.847813,-1.975829,0.617597,2.678247 +-2.014924,0.858903,-0.847849,-1.977395,0.617202,2.676681 +-2.016418,0.857352,-0.847737,-1.978945,0.616666,2.675131 +-2.017860,0.855832,-0.847480,-1.980465,0.615994,2.673610 +-2.019238,0.854354,-0.847078,-1.981943,0.615192,2.672132 +-2.020539,0.852932,-0.846537,-1.983365,0.614267,2.670710 +-2.021753,0.851579,-0.845859,-1.984719,0.613228,2.669357 +-2.022868,0.850306,-0.845053,-1.985992,0.612083,2.668084 +-2.023875,0.849124,-0.844123,-1.987173,0.610842,2.666902 +-2.024765,0.848044,-0.843079,-1.988253,0.609517,2.665823 +-2.025529,0.847076,-0.841931,-1.989221,0.608119,2.664855 +-2.026162,0.846228,-0.840687,-1.990069,0.606660,2.664007 +-2.026657,0.845508,-0.839359,-1.990789,0.605154,2.663286 +-2.027010,0.844921,-0.837959,-1.991376,0.603613,2.662700 +-2.027219,0.844474,-0.836499,-1.991823,0.602051,2.662252 +-2.027281,0.844169,-0.834991,-1.992128,0.600482,2.661947 +-2.027195,0.844010,-0.833450,-1.992287,0.598920,2.661788 +-2.026963,0.843998,-0.831889,-1.992299,0.597379,2.661777 +-2.026587,0.844134,-0.830321,-1.992163,0.595871,2.661912 +-2.026069,0.844415,-0.828761,-1.991882,0.594411,2.662193 +-2.025415,0.844840,-0.827221,-1.991457,0.593011,2.662618 +-2.024629,0.845404,-0.825717,-1.990893,0.591684,2.663183 +-2.023720,0.846104,-0.824260,-1.990193,0.590441,2.663882 +-2.022695,0.846932,-0.822864,-1.989366,0.589293,2.664710 +-2.021564,0.847881,-0.821541,-1.988416,0.588251,2.665659 +-2.020335,0.848943,-0.820303,-1.987354,0.587323,2.666721 +-2.019020,0.850109,-0.819160,-1.986188,0.586517,2.667887 +-2.017631,0.851368,-0.818123,-1.984929,0.585842,2.669146 +-2.016180,0.852709,-0.817201,-1.983588,0.585303,2.670487 +-2.014679,0.854121,-0.816402,-1.982176,0.584904,2.671899 +-2.013142,0.855591,-0.815733,-1.980707,0.584648,2.673369 +-2.011582,0.857105,-0.815200,-1.979192,0.584540,2.674883 +-2.010013,0.858652,-0.814808,-1.977646,0.584578,2.676430 +-2.008449,0.860216,-0.814559,-1.976081,0.584764,2.677994 +-2.006904,0.861784,-0.814457,-1.974513,0.585094,2.679563 +-2.005392,0.863343,-0.814502,-1.972954,0.585567,2.681122 +-2.003925,0.864879,-0.814694,-1.971418,0.586179,2.682657 +-2.002516,0.866378,-0.815031,-1.969919,0.586923,2.684156 +-2.001178,0.867826,-0.815510,-1.968471,0.587793,2.685605 +-1.999924,0.869212,-0.816126,-1.967085,0.588782,2.686990 +-1.998763,0.870523,-0.816876,-1.965774,0.589881,2.688301 +-1.997706,0.871747,-0.817751,-1.964550,0.591080,2.689525 +-1.996763,0.872874,-0.818744,-1.963423,0.592368,2.690652 +-1.995941,0.873893,-0.819847,-1.962404,0.593735,2.691671 +-1.995248,0.874796,-0.821049,-1.961501,0.595168,2.692575 +-1.994690,0.875575,-0.822340,-1.960722,0.596654,2.693353 +-1.994273,0.876223,-0.823709,-1.960074,0.598181,2.694001 +-1.993998,0.876734,-0.825144,-1.959563,0.599735,2.694512 +-1.993870,0.877103,-0.826632,-1.959194,0.601303,2.694881 +-1.993890,0.877328,-0.828159,-1.958969,0.602869,2.695106 +-1.994056,0.877406,-0.829713,-1.958891,0.604422,2.695184 +-1.994367,0.877337,-0.831280,-1.958960,0.605946,2.695115 +-1.994822,0.877121,-0.832845,-1.959176,0.607430,2.694900 +-1.995415,0.876761,-0.834396,-1.959536,0.608858,2.694539 +-1.996142,0.876259,-0.835918,-1.960038,0.610220,2.694037 +-1.996996,0.875620,-0.837398,-1.960678,0.611502,2.693398 +-1.997970,0.874849,-0.838823,-1.961448,0.612694,2.692627 +-1.999055,0.873953,-0.840180,-1.962344,0.613785,2.691731 +-2.000241,0.872941,-0.841458,-1.963356,0.614766,2.690719 +-2.001519,0.871821,-0.842645,-1.964477,0.615627,2.689599 +-2.002876,0.870602,-0.843731,-1.965695,0.616362,2.688380 +-2.004301,0.869296,-0.844705,-1.967001,0.616963,2.687075 +-2.005781,0.867915,-0.845561,-1.968382,0.617426,2.685693 +-2.007303,0.866470,-0.846289,-1.969827,0.617746,2.684248 +-2.008855,0.864974,-0.846884,-1.971323,0.617921,2.682752 +-2.010421,0.863440,-0.847341,-1.972857,0.617949,2.681218 +-2.011989,0.861882,-0.847654,-1.974415,0.617830,2.679660 +-2.013544,0.860314,-0.847823,-1.975983,0.617564,2.678092 +-2.015073,0.858749,-0.847844,-1.977548,0.617155,2.676527 +-2.016562,0.857201,-0.847718,-1.979096,0.616606,2.674979 +-2.017999,0.855684,-0.847447,-1.980613,0.615921,2.673462 +-2.019370,0.854211,-0.847031,-1.982086,0.615106,2.671989 +-2.020663,0.852796,-0.846476,-1.983502,0.614170,2.670574 +-2.021868,0.851449,-0.845786,-1.984848,0.613120,2.669228 +-2.022973,0.850185,-0.844966,-1.986112,0.611965,2.667963 +-2.023968,0.849013,-0.844025,-1.987284,0.610715,2.666791 +-2.024846,0.847944,-0.842971,-1.988353,0.609382,2.665722 +-2.025597,0.846987,-0.841812,-1.989310,0.607977,2.664766 +-2.026217,0.846152,-0.840560,-1.990145,0.606514,2.663930 +-2.026698,0.845444,-0.839224,-1.990853,0.605003,2.663222 +-2.027037,0.844871,-0.837817,-1.991426,0.603460,2.662649 +-2.027231,0.844437,-0.836352,-1.991860,0.601897,2.662216 +-2.027279,0.844147,-0.834841,-1.992150,0.600328,2.661925 +-2.027179,0.844003,-0.833297,-1.992295,0.598767,2.661781 +-2.026932,0.844005,-0.831735,-1.992292,0.597228,2.661783 +-2.026542,0.844155,-0.830167,-1.992142,0.595725,2.661933 +-2.026010,0.844451,-0.828608,-1.991847,0.594270,2.662229 +-2.025343,0.844889,-0.827071,-1.991408,0.592877,2.662667 +-2.024545,0.845467,-0.825571,-1.990830,0.591557,2.663245 +-2.023624,0.846180,-0.824120,-1.990118,0.590323,2.663958 +-2.022589,0.847020,-0.822730,-1.989277,0.589185,2.664798 +-2.021447,0.847981,-0.821415,-1.988317,0.588154,2.665759 +-2.020209,0.849053,-0.820186,-1.987244,0.587238,2.666832 +-2.018887,0.850229,-0.819053,-1.986068,0.586445,2.668007 +-2.017491,0.851497,-0.818027,-1.984801,0.585783,2.669275 +-2.016034,0.852845,-0.817117,-1.983452,0.585257,2.670624 +-2.014529,0.854263,-0.816330,-1.982034,0.584872,2.672041 +-2.012989,0.855738,-0.815675,-1.980559,0.584631,2.673516 +-2.011428,0.857256,-0.815155,-1.979041,0.584537,2.675035 +-2.009859,0.858805,-0.814777,-1.977492,0.584590,2.676583 +-2.008296,0.860370,-0.814543,-1.975927,0.584790,2.678149 +-2.006754,0.861939,-0.814455,-1.974359,0.585135,2.679717 +-2.005245,0.863496,-0.814514,-1.972801,0.585622,2.681274 +-2.003783,0.865028,-0.814721,-1.971269,0.586246,2.682807 +-2.002381,0.866523,-0.815072,-1.969774,0.587003,2.684301 +-2.001051,0.867966,-0.815564,-1.968331,0.587885,2.685744 +-1.999805,0.869345,-0.816194,-1.966952,0.588885,2.687123 +-1.998654,0.870648,-0.816956,-1.965650,0.589994,2.688426 +-1.997608,0.871863,-0.817844,-1.964435,0.591203,2.689641 +-1.996676,0.872979,-0.818848,-1.963318,0.592499,2.690757 +-1.995867,0.873988,-0.819961,-1.962310,0.593873,2.691766 +-1.995187,0.874879,-0.821173,-1.961418,0.595312,2.692657 +-1.994643,0.875645,-0.822472,-1.960652,0.596803,2.693423 +-1.994239,0.876279,-0.823848,-1.960018,0.598333,2.694057 +-1.993979,0.876776,-0.825289,-1.959521,0.599889,2.694555 +-1.993866,0.877132,-0.826781,-1.959165,0.601457,2.694910 +-1.993899,0.877342,-0.828311,-1.958955,0.603023,2.695120 +-1.994080,0.877406,-0.829867,-1.958891,0.604574,2.695184 +-1.994406,0.877322,-0.831434,-1.958975,0.606095,2.695101 +-1.994874,0.877092,-0.832999,-1.959205,0.607573,2.694870 +-1.995481,0.876718,-0.834547,-1.959579,0.608995,2.694496 +-1.996221,0.876202,-0.836066,-1.960095,0.610350,2.693980 +-1.997087,0.875549,-0.837541,-1.960748,0.611624,2.693328 +-1.998072,0.874766,-0.838960,-1.961531,0.612806,2.692544 +-1.999167,0.873859,-0.840310,-1.962439,0.613887,2.691637 +-2.000363,0.872835,-0.841579,-1.963462,0.614856,2.690613 +-2.001649,0.871705,-0.842756,-1.964592,0.615705,2.689483 +-2.003013,0.870477,-0.843832,-1.965820,0.616427,2.688255 +-2.004444,0.869164,-0.844795,-1.967134,0.617015,2.686942 +-2.005929,0.867775,-0.845638,-1.968522,0.617464,2.685553 +-2.007455,0.866325,-0.846354,-1.969973,0.617770,2.684103 +-2.009008,0.864824,-0.846936,-1.971473,0.617931,2.682602 +-2.010575,0.863288,-0.847378,-1.973010,0.617944,2.681066 +-2.012143,0.861728,-0.847677,-1.974569,0.617810,2.679506 +-2.013696,0.860159,-0.847831,-1.976138,0.617530,2.677938 +-2.015221,0.858595,-0.847838,-1.977702,0.617107,2.676374 +-2.016706,0.857050,-0.847698,-1.979247,0.616544,2.674828 +-2.018137,0.855537,-0.847412,-1.980760,0.615846,2.673315 +-2.019501,0.854069,-0.846983,-1.982228,0.615019,2.671847 +-2.020786,0.852660,-0.846414,-1.983637,0.614071,2.670438 +-2.021981,0.851321,-0.845711,-1.984976,0.613010,2.669099 +-2.023076,0.850065,-0.844879,-1.986232,0.611845,2.667843 +-2.024060,0.848903,-0.843926,-1.987394,0.610587,2.666681 +-2.024925,0.847845,-0.842861,-1.988452,0.609247,2.665623 +-2.025664,0.846900,-0.841693,-1.989398,0.607836,2.664678 +-2.026270,0.846076,-0.840431,-1.990221,0.606367,2.663854 +-2.026738,0.845382,-0.839088,-1.990915,0.604852,2.663160 +-2.027063,0.844822,-0.837675,-1.991475,0.603306,2.662600 +-2.027243,0.844402,-0.836205,-1.991895,0.601742,2.662181 +-2.027275,0.844126,-0.834690,-1.992171,0.600173,2.661904 +-2.027161,0.843996,-0.833144,-1.992301,0.598614,2.661774 +-2.026900,0.844013,-0.831580,-1.992284,0.597078,2.661792 +-2.026496,0.844178,-0.830013,-1.992119,0.595579,2.661956 +-2.025951,0.844487,-0.828455,-1.991810,0.594130,2.662266 +-2.025270,0.844940,-0.826922,-1.991357,0.592743,2.662718 +-2.024460,0.845532,-0.825426,-1.990766,0.591432,2.663310 +-2.023527,0.846257,-0.823980,-1.990040,0.590207,2.664035 +-2.022481,0.847109,-0.822597,-1.989188,0.589079,2.664887 +-2.021329,0.848081,-0.821290,-1.988216,0.588058,2.665860 +-2.020082,0.849165,-0.820070,-1.987132,0.587154,2.666943 +-2.018752,0.850350,-0.818947,-1.985947,0.586374,2.668128 +-2.017350,0.851626,-0.817932,-1.984671,0.585725,2.669404 +-2.015887,0.852982,-0.817034,-1.983315,0.585213,2.670760 +-2.014378,0.854406,-0.816260,-1.981891,0.584842,2.672184 +-2.012836,0.855886,-0.815617,-1.980411,0.584615,2.673664 +-2.011273,0.857408,-0.815112,-1.978889,0.584536,2.675186 +-2.009704,0.858959,-0.814747,-1.977338,0.584603,2.676737 +-2.008143,0.860525,-0.814527,-1.975772,0.584817,2.678303 +-2.006603,0.862093,-0.814454,-1.974204,0.585176,2.679871 +-2.005099,0.863648,-0.814528,-1.972649,0.585677,2.681426 +-2.003642,0.865178,-0.814749,-1.971120,0.586315,2.682956 +-2.002247,0.866668,-0.815114,-1.969630,0.587084,2.684446 +-2.000924,0.868105,-0.815620,-1.968192,0.587979,2.685883 +-1.999687,0.869477,-0.816264,-1.966820,0.588990,2.687255 +-1.998546,0.870771,-0.817038,-1.965526,0.590109,2.688550 +-1.997511,0.871977,-0.817937,-1.964320,0.591327,2.689755 +-1.996591,0.873083,-0.818953,-1.963214,0.592631,2.690862 +-1.995794,0.874081,-0.820076,-1.962216,0.594012,2.691859 +-1.995127,0.874960,-0.821297,-1.961337,0.595457,2.692738 +-1.994597,0.875713,-0.822604,-1.960584,0.596952,2.693492 +-1.994207,0.876334,-0.823987,-1.959963,0.598486,2.694113 +-1.993962,0.876818,-0.825433,-1.959479,0.600043,2.694596 +-1.993863,0.877159,-0.826930,-1.959138,0.601612,2.694937 +-1.993911,0.877355,-0.828464,-1.958942,0.603177,2.695133 +-1.994106,0.877404,-0.830021,-1.958893,0.604725,2.695182 +-1.994446,0.877306,-0.831589,-1.958991,0.606242,2.695084 +-1.994928,0.877062,-0.833152,-1.959235,0.607716,2.694840 +-1.995548,0.876673,-0.834698,-1.959624,0.609132,2.694451 +-1.996301,0.876144,-0.836213,-1.960154,0.610479,2.693922 +-1.997179,0.875478,-0.837683,-1.960819,0.611744,2.693256 +-1.998175,0.874682,-0.839096,-1.961615,0.612917,2.692460 +-1.999281,0.873763,-0.840438,-1.962534,0.613987,2.691541 +-2.000486,0.872728,-0.841699,-1.963569,0.614945,2.690507 +-2.001780,0.871588,-0.842867,-1.964709,0.615782,2.689366 +-2.003151,0.870352,-0.843932,-1.965946,0.616491,2.688130 +-2.004588,0.869030,-0.844884,-1.967267,0.617066,2.686808 +-2.006078,0.867635,-0.845715,-1.968662,0.617501,2.685413 +-2.007607,0.866179,-0.846417,-1.970118,0.617792,2.683957 +-2.009162,0.864674,-0.846985,-1.971623,0.617938,2.682452 +-2.010730,0.863135,-0.847414,-1.973162,0.617937,2.680913 +-2.012296,0.861574,-0.847699,-1.974723,0.617789,2.679352 +-2.013847,0.860005,-0.847839,-1.976292,0.617495,2.677783 +-2.015370,0.858442,-0.847831,-1.977855,0.617058,2.676220 +-2.016850,0.856899,-0.847676,-1.979398,0.616481,2.674678 +-2.018274,0.855390,-0.847376,-1.980907,0.615770,2.673168 +-2.019631,0.853927,-0.846933,-1.982370,0.614931,2.671706 +-2.020908,0.852524,-0.846350,-1.983773,0.613972,2.670303 +-2.022093,0.851194,-0.845634,-1.985104,0.612900,2.668972 +-2.023178,0.849946,-0.844790,-1.986351,0.611726,2.667725 +-2.024151,0.848794,-0.843826,-1.987503,0.610459,2.666572 +-2.025004,0.847746,-0.842750,-1.988551,0.609111,2.665525 +-2.025730,0.846813,-0.841572,-1.989484,0.607693,2.664591 +-2.026323,0.846002,-0.840303,-1.990295,0.606219,2.663780 +-2.026776,0.845320,-0.838952,-1.990977,0.604701,2.663099 +-2.027087,0.844774,-0.837533,-1.991523,0.603153,2.662553 +-2.027252,0.844369,-0.836058,-1.991928,0.601588,2.662147 +-2.027271,0.844107,-0.834539,-1.992190,0.600019,2.661885 +-2.027142,0.843991,-0.832990,-1.992306,0.598462,2.661770 +-2.026867,0.844023,-0.831426,-1.992274,0.596929,2.661801 +-2.026448,0.844202,-0.829859,-1.992095,0.595434,2.661980 +-2.025889,0.844526,-0.828303,-1.991771,0.593990,2.662304 +-2.025196,0.844992,-0.826773,-1.991305,0.592611,2.662770 +-2.024373,0.845597,-0.825281,-1.990700,0.591307,2.663375 +-2.023429,0.846335,-0.823841,-1.989962,0.590091,2.664113 +-2.022372,0.847200,-0.822465,-1.989097,0.588974,2.664978 +-2.021210,0.848183,-0.821166,-1.988114,0.587964,2.665962 +-2.019955,0.849277,-0.819955,-1.987020,0.587072,2.667055 +-2.018617,0.850472,-0.818842,-1.985825,0.586304,2.668250 +-2.017208,0.851756,-0.817839,-1.984541,0.585668,2.669534 +-2.015741,0.853120,-0.816952,-1.983178,0.585170,2.670898 +-2.014228,0.854550,-0.816191,-1.981747,0.584813,2.672328 +-2.012682,0.856034,-0.815561,-1.980263,0.584601,2.673812 +-2.011119,0.857559,-0.815069,-1.978738,0.584536,2.675338 +-2.009550,0.859113,-0.814719,-1.977185,0.584618,2.676891 +-2.007990,0.860680,-0.814514,-1.975618,0.584846,2.678458 +-2.006453,0.862247,-0.814455,-1.974050,0.585220,2.680025 +-2.004953,0.863800,-0.814543,-1.972497,0.585734,2.681578 +-2.003502,0.865326,-0.814778,-1.970971,0.586385,2.683104 +-2.002113,0.866812,-0.815158,-1.969486,0.587167,2.684590 +-2.000799,0.868243,-0.815678,-1.968054,0.588073,2.686021 +-1.999570,0.869608,-0.816334,-1.966689,0.589096,2.687386 +-1.998439,0.870894,-0.817122,-1.965403,0.590225,2.688672 +-1.997415,0.872091,-0.818032,-1.964206,0.591451,2.689869 +-1.996507,0.873187,-0.819059,-1.963110,0.592764,2.690965 +-1.995722,0.874173,-0.820192,-1.962125,0.594152,2.691951 +-1.995069,0.875040,-0.821422,-1.961257,0.595602,2.692818 +-1.994552,0.875780,-0.822737,-1.960517,0.597102,2.693559 +-1.994176,0.876388,-0.824127,-1.959909,0.598638,2.694166 +-1.993945,0.876858,-0.825579,-1.959439,0.600198,2.694636 +-1.993861,0.877185,-0.827080,-1.959112,0.601766,2.694963 +-1.993923,0.877366,-0.828616,-1.958931,0.603330,2.695145 +-1.994133,0.877401,-0.830175,-1.958896,0.604876,2.695179 +-1.994487,0.877289,-0.831743,-1.959009,0.606390,2.695067 +-1.994983,0.877030,-0.833306,-1.959267,0.607858,2.694808 +-1.995617,0.876627,-0.834849,-1.959670,0.609268,2.694405 +-1.996382,0.876084,-0.836360,-1.960213,0.610607,2.693862 +-1.997272,0.875405,-0.837825,-1.960892,0.611864,2.693183 +-1.998280,0.874597,-0.839231,-1.961700,0.613027,2.692375 +-1.999395,0.873666,-0.840566,-1.962631,0.614087,2.691444 +-2.000610,0.872621,-0.841819,-1.963677,0.615033,2.690399 +-2.001912,0.871470,-0.842977,-1.964827,0.615858,2.689248 +-2.003290,0.870225,-0.844031,-1.966072,0.616554,2.688003 +-2.004733,0.868896,-0.844971,-1.967401,0.617115,2.686674 +-2.006227,0.867494,-0.845790,-1.968803,0.617536,2.685272 +-2.007759,0.866033,-0.846479,-1.970265,0.617813,2.683811 +-2.009316,0.864524,-0.847034,-1.971773,0.617945,2.682302 +-2.010885,0.862982,-0.847448,-1.973315,0.617929,2.680760 +-2.012450,0.861419,-0.847719,-1.974878,0.617767,2.679197 +-2.013999,0.859851,-0.847844,-1.976447,0.617458,2.677629 +-2.015518,0.858289,-0.847822,-1.978008,0.617007,2.676067 +-2.016993,0.856749,-0.847653,-1.979548,0.616417,2.674527 +-2.018411,0.855244,-0.847339,-1.981053,0.615693,2.673022 +-2.019760,0.853786,-0.846882,-1.982511,0.614842,2.671565 +-2.021029,0.852390,-0.846286,-1.983907,0.613871,2.670168 +-2.022205,0.851067,-0.845557,-1.985230,0.612789,2.668845 +-2.023278,0.849828,-0.844701,-1.986469,0.611605,2.667607 +-2.024240,0.848686,-0.843725,-1.987611,0.610329,2.666464 +-2.025081,0.847649,-0.842639,-1.988648,0.608974,2.665427 +-2.025794,0.846728,-0.841451,-1.989570,0.607550,2.664506 +-2.026374,0.845929,-0.840173,-1.990368,0.606071,2.663707 +-2.026813,0.845261,-0.838815,-1.991037,0.604550,2.663039 +-2.027110,0.844728,-0.837390,-1.991569,0.602999,2.662506 +-2.027261,0.844337,-0.835910,-1.991961,0.601433,2.662115 +-2.027264,0.844089,-0.834388,-1.992208,0.599865,2.661867 +-2.027121,0.843988,-0.832837,-1.992309,0.598310,2.661766 +-2.026832,0.844034,-0.831271,-1.992263,0.596780,2.661812 +-2.026399,0.844227,-0.829705,-1.992070,0.595289,2.662005 +-2.025827,0.844565,-0.828151,-1.991732,0.593851,2.662344 +-2.025120,0.845046,-0.826624,-1.991251,0.592479,2.662824 +-2.024286,0.845664,-0.825136,-1.990633,0.591183,2.663442 +-2.023330,0.846415,-0.823702,-1.989882,0.589977,2.664193 +-2.022262,0.847292,-0.822333,-1.989006,0.588869,2.665070 +-2.021091,0.848286,-0.821042,-1.988011,0.587871,2.666065 +-2.019827,0.849391,-0.819841,-1.986907,0.586990,2.667169 +-2.018481,0.850594,-0.818739,-1.985703,0.586236,2.668373 +-2.017066,0.851887,-0.817746,-1.984410,0.585613,2.669665 +-2.015593,0.853258,-0.816871,-1.983039,0.585128,2.671036 +-2.014077,0.854694,-0.816123,-1.981603,0.584786,2.672472 +-2.012529,0.856183,-0.815507,-1.980114,0.584588,2.673961 +-2.010964,0.857711,-0.815028,-1.978586,0.584537,2.675490 +-2.009396,0.859266,-0.814692,-1.977031,0.584634,2.677045 +-2.007838,0.860834,-0.814501,-1.975463,0.584877,2.678612 +-2.006304,0.862401,-0.814457,-1.973897,0.585264,2.680179 +-2.004807,0.863952,-0.814560,-1.972345,0.585792,2.681730 +-2.003362,0.865475,-0.814809,-1.970823,0.586456,2.683253 +-2.001980,0.866955,-0.815203,-1.969342,0.587251,2.684733 +-2.000674,0.868381,-0.815736,-1.967917,0.588169,2.686159 +-1.999455,0.869738,-0.816406,-1.966559,0.589202,2.687516 +-1.998334,0.871016,-0.817206,-1.965281,0.590342,2.688794 +-1.997320,0.872203,-0.818129,-1.964094,0.591577,2.689981 +-1.996424,0.873289,-0.819166,-1.963008,0.592898,2.691067 +-1.995652,0.874263,-0.820309,-1.962034,0.594292,2.692042 +-1.995012,0.875118,-0.821548,-1.961179,0.595748,2.692897 +-1.994509,0.875846,-0.822871,-1.960451,0.597252,2.693625 +-1.994147,0.876441,-0.824268,-1.959856,0.598791,2.694219 +-1.993930,0.876896,-0.825725,-1.959401,0.600352,2.694674 +-1.993860,0.877209,-0.827230,-1.959088,0.601921,2.694987 +-1.993938,0.877376,-0.828769,-1.958921,0.603484,2.695154 +-1.994161,0.877397,-0.830330,-1.958901,0.605027,2.695175 +-1.994530,0.877270,-0.831897,-1.959028,0.606536,2.695048 +-1.995039,0.876997,-0.833459,-1.959301,0.608000,2.694775 +-1.995686,0.876580,-0.835000,-1.959717,0.609403,2.694358 +-1.996464,0.876023,-0.836507,-1.960274,0.610735,2.693801 +-1.997366,0.875331,-0.837966,-1.960966,0.611983,2.693109 +-1.998385,0.874510,-0.839366,-1.961787,0.613137,2.692289 +-1.999511,0.873568,-0.840694,-1.962729,0.614185,2.691346 +-2.000734,0.872512,-0.841937,-1.963785,0.615120,2.690290 +-2.002044,0.871352,-0.843085,-1.964945,0.615932,2.689130 +-2.003430,0.870098,-0.844128,-1.966200,0.616615,2.687876 +-2.004878,0.868761,-0.845057,-1.967537,0.617162,2.686539 +-2.006376,0.867353,-0.845863,-1.968945,0.617570,2.685131 +-2.007912,0.865886,-0.846540,-1.970411,0.617833,2.683664 +-2.009471,0.864373,-0.847081,-1.971924,0.617950,2.682152 +-2.011039,0.862829,-0.847482,-1.973469,0.617920,2.680607 +-2.012604,0.861265,-0.847738,-1.975032,0.617743,2.679043 +-2.014150,0.859696,-0.847849,-1.976601,0.617420,2.677474 +-2.015665,0.858136,-0.847812,-1.978161,0.616955,2.675914 +-2.017135,0.856599,-0.847629,-1.979698,0.616352,2.674377 +-2.018547,0.855098,-0.847300,-1.981199,0.615615,2.672876 +-2.019889,0.853646,-0.846829,-1.982651,0.614752,2.671424 +-2.021149,0.852256,-0.846220,-1.984041,0.613769,2.670034 +-2.022315,0.850941,-0.845478,-1.985356,0.612676,2.668719 +-2.023378,0.849712,-0.844610,-1.986586,0.611483,2.667490 +-2.024328,0.848579,-0.843623,-1.987718,0.610199,2.666357 +-2.025157,0.847553,-0.842526,-1.988744,0.608837,2.665331 +-2.025858,0.846643,-0.841329,-1.989654,0.607407,2.664421 +-2.026423,0.845857,-0.840043,-1.990440,0.605923,2.663635 +-2.026849,0.845202,-0.838678,-1.991095,0.604398,2.662980 +-2.027131,0.844683,-0.837246,-1.991614,0.602845,2.662461 +-2.027268,0.844306,-0.835761,-1.991991,0.601278,2.662084 +-2.027257,0.844073,-0.834236,-1.992225,0.599711,2.661851 +-2.027099,0.843986,-0.832683,-1.992311,0.598157,2.661764 +-2.026796,0.844047,-0.831117,-1.992250,0.596631,2.661825 +-2.026349,0.844254,-0.829551,-1.992043,0.595145,2.662032 +-2.025763,0.844606,-0.827999,-1.991691,0.593713,2.662385 +-2.025044,0.845101,-0.826475,-1.991196,0.592348,2.662879 +-2.024197,0.845732,-0.824993,-1.990565,0.591060,2.663510 +-2.023230,0.846496,-0.823564,-1.989801,0.589863,2.664274 +-2.022151,0.847384,-0.822203,-1.988913,0.588766,2.665163 +-2.020970,0.848390,-0.820920,-1.987907,0.587779,2.666169 +-2.019698,0.849505,-0.819727,-1.986792,0.586910,2.667283 +-2.018345,0.850718,-0.818636,-1.985579,0.586168,2.668496 +-2.016923,0.852019,-0.817654,-1.984278,0.585559,2.669797 +-2.015446,0.853396,-0.816792,-1.982901,0.585088,2.671175 +-2.013925,0.854838,-0.816056,-1.981459,0.584760,2.672616 +-2.012375,0.856332,-0.815453,-1.979965,0.584577,2.674110 +-2.010810,0.857864,-0.814989,-1.978433,0.584540,2.675642 +-2.009242,0.859421,-0.814667,-1.976877,0.584651,2.677199 +-2.007685,0.860989,-0.814491,-1.975308,0.584909,2.678767 +-2.006154,0.862554,-0.814461,-1.973743,0.585310,2.680332 +-2.004663,0.864103,-0.814578,-1.972194,0.585852,2.681882 +-2.003223,0.865623,-0.814842,-1.970675,0.586529,2.683401 +-2.001848,0.867098,-0.815249,-1.969199,0.587336,2.684876 +-2.000550,0.868518,-0.815796,-1.967780,0.588266,2.686296 +-1.999340,0.869868,-0.816479,-1.966429,0.589310,2.687646 +-1.998229,0.871137,-0.817291,-1.965160,0.590459,2.688916 +-1.997227,0.872315,-0.818226,-1.963982,0.591704,2.690093 +-1.996342,0.873390,-0.819274,-1.962907,0.593032,2.691168 +-1.995583,0.874353,-0.820427,-1.961944,0.594433,2.692131 +-1.994956,0.875196,-0.821675,-1.961101,0.595894,2.692974 +-1.994467,0.875911,-0.823006,-1.960386,0.597402,2.693689 +-1.994119,0.876492,-0.824409,-1.959805,0.598944,2.694270 +-1.993917,0.876933,-0.825871,-1.959364,0.600506,2.694712 +-1.993861,0.877232,-0.827380,-1.959065,0.602075,2.695010 +-1.993953,0.877385,-0.828922,-1.958912,0.603637,2.695163 +-1.994191,0.877391,-0.830484,-1.958907,0.605177,2.695169 +-1.994574,0.877249,-0.832052,-1.959048,0.606683,2.695027 +-1.995097,0.876962,-0.833612,-1.959335,0.608141,2.694740 +-1.995757,0.876531,-0.835150,-1.959766,0.609538,2.694309 +-1.996547,0.875961,-0.836653,-1.960336,0.610862,2.693739 +-1.997461,0.875256,-0.838107,-1.961041,0.612101,2.693034 +-1.998491,0.874423,-0.839500,-1.961874,0.613245,2.692201 +-1.999627,0.873469,-0.840820,-1.962828,0.614282,2.691247 +-2.000860,0.872402,-0.842054,-1.963895,0.615205,2.690180 +-2.002178,0.871232,-0.843193,-1.965065,0.616005,2.689010 +-2.003570,0.869969,-0.844225,-1.966328,0.616675,2.687748 +-2.005024,0.868625,-0.845142,-1.967672,0.617209,2.686403 +-2.006526,0.867210,-0.845936,-1.969087,0.617602,2.684989 +-2.008065,0.865739,-0.846599,-1.970558,0.617851,2.683517 +-2.009625,0.864222,-0.847127,-1.972075,0.617953,2.682001 +-2.011194,0.862675,-0.847513,-1.973622,0.617909,2.680453 +-2.012757,0.861110,-0.847756,-1.975187,0.617717,2.678889 +-2.014301,0.859542,-0.847852,-1.976755,0.617381,2.677320 +-2.015812,0.857984,-0.847800,-1.978313,0.616902,2.675762 +-2.017277,0.856449,-0.847603,-1.979848,0.616285,2.674227 +-2.018683,0.854952,-0.847260,-1.981345,0.615535,2.672731 +-2.020017,0.853506,-0.846775,-1.982791,0.614660,2.671284 +-2.021268,0.852123,-0.846152,-1.984174,0.613666,2.669901 +-2.022425,0.850816,-0.845398,-1.985481,0.612563,2.668594 +-2.023477,0.849595,-0.844518,-1.986702,0.611360,2.667374 +-2.024416,0.848473,-0.843520,-1.987824,0.610068,2.666251 +-2.025232,0.847458,-0.842413,-1.988839,0.608699,2.665236 +-2.025919,0.846560,-0.841206,-1.989737,0.607263,2.664338 +-2.026471,0.845787,-0.839911,-1.990510,0.605775,2.663565 +-2.026883,0.845145,-0.838539,-1.991152,0.604246,2.662923 +-2.027151,0.844640,-0.837102,-1.991657,0.602691,2.662418 +-2.027273,0.844276,-0.835613,-1.992021,0.601124,2.662054 +-2.027248,0.844058,-0.834084,-1.992240,0.599557,2.661836 +-2.027076,0.843985,-0.832529,-1.992312,0.598006,2.661764 +-2.026758,0.844061,-0.830962,-1.992236,0.596483,2.661839 +-2.026297,0.844282,-0.829397,-1.992015,0.595002,2.662061 +-2.025698,0.844649,-0.827848,-1.991648,0.593576,2.662427 +-2.024966,0.845157,-0.826327,-1.991140,0.592217,2.662935 +-2.024107,0.845802,-0.824849,-1.990495,0.590938,2.663580 +-2.023128,0.846578,-0.823427,-1.989719,0.589750,2.664356 +-2.022039,0.847478,-0.822073,-1.988819,0.588664,2.665257 +-2.020849,0.848495,-0.820798,-1.987802,0.587688,2.666274 +-2.019568,0.849620,-0.819615,-1.986677,0.586832,2.667398 +-2.018207,0.850842,-0.818534,-1.985455,0.586102,2.668621 +-2.016780,0.852151,-0.817564,-1.984146,0.585507,2.669930 +-2.015298,0.853536,-0.816714,-1.982761,0.585049,2.671314 +-2.013774,0.854983,-0.815991,-1.981314,0.584735,2.672761 +-2.012222,0.856481,-0.815401,-1.979816,0.584566,2.674259 +-2.010655,0.858016,-0.814951,-1.978281,0.584545,2.675794 +-2.009088,0.859575,-0.814643,-1.976722,0.584670,2.677353 +-2.007533,0.861143,-0.814481,-1.975154,0.584942,2.678921 +-2.006006,0.862708,-0.814466,-1.973589,0.585357,2.680486 +-2.004518,0.864255,-0.814598,-1.972043,0.585912,2.682033 +-2.003084,0.865770,-0.814875,-1.970527,0.586603,2.683548 +-2.001716,0.867241,-0.815297,-1.969056,0.587422,2.685019 +-2.000426,0.868654,-0.815858,-1.967643,0.588364,2.686432 +-1.999226,0.869997,-0.816554,-1.966300,0.589419,2.687775 +-1.998125,0.871258,-0.817378,-1.965039,0.590578,2.689036 +-1.997134,0.872425,-0.818324,-1.963872,0.591831,2.690204 +-1.996262,0.873490,-0.819383,-1.962807,0.593167,2.691268 +-1.995515,0.874442,-0.820546,-1.961856,0.594574,2.692220 +-1.994902,0.875272,-0.821802,-1.961025,0.596041,2.693050 +-1.994426,0.875974,-0.823141,-1.960323,0.597553,2.693752 +-1.994093,0.876542,-0.824550,-1.959756,0.599097,2.694320 +-1.993905,0.876969,-0.826018,-1.959328,0.600661,2.694747 +-1.993864,0.877254,-0.827531,-1.959044,0.602230,2.695032 +-1.993970,0.877392,-0.829075,-1.958905,0.603790,2.695170 +-1.994222,0.877383,-0.830638,-1.958914,0.605327,2.695161 +-1.994619,0.877227,-0.832206,-1.959070,0.606829,2.695005 +-1.995156,0.876926,-0.833764,-1.959371,0.608281,2.694704 +-1.995829,0.876481,-0.835300,-1.959816,0.609672,2.694259 +-1.996632,0.875897,-0.836798,-1.960400,0.610988,2.693675 +-1.997558,0.875180,-0.838247,-1.961118,0.612218,2.692958 +-1.998598,0.874334,-0.839634,-1.961963,0.613352,2.692112 +-1.999744,0.873369,-0.840946,-1.962929,0.614379,2.691147 +-2.000986,0.872291,-0.842171,-1.964006,0.615290,2.690069 +-2.002312,0.871112,-0.843299,-1.965185,0.616077,2.688890 +-2.003710,0.869840,-0.844321,-1.966457,0.616734,2.687619 +-2.005170,0.868488,-0.845226,-1.967809,0.617254,2.686267 +-2.006676,0.867068,-0.846007,-1.969229,0.617633,2.684846 +-2.008217,0.865591,-0.846657,-1.970706,0.617868,2.683369 +-2.009779,0.864071,-0.847171,-1.972226,0.617956,2.681849 +-2.011348,0.862522,-0.847544,-1.973776,0.617896,2.680300 +-2.012910,0.860956,-0.847772,-1.975341,0.617691,2.678734 +-2.014451,0.859388,-0.847853,-1.976909,0.617340,2.677166 +-2.015959,0.857831,-0.847787,-1.978466,0.616847,2.675609 +-2.017418,0.856300,-0.847575,-1.979997,0.616217,2.674078 +-2.018818,0.854807,-0.847218,-1.981490,0.615455,2.672586 +-2.020144,0.853367,-0.846720,-1.982930,0.614567,2.671145 +-2.021386,0.851991,-0.846084,-1.984306,0.613562,2.669769 +-2.022533,0.850692,-0.845317,-1.985606,0.612449,2.668470 +-2.023575,0.849480,-0.844424,-1.986817,0.611237,2.667259 +-2.024502,0.848368,-0.843415,-1.987929,0.609937,2.666146 +-2.025306,0.847365,-0.842298,-1.988933,0.608560,2.665143 +-2.025980,0.846478,-0.841083,-1.989819,0.607119,2.664257 +-2.026518,0.845718,-0.839780,-1.990579,0.605626,2.663496 +-2.026916,0.845089,-0.838401,-1.991208,0.604094,2.662867 +-2.027170,0.844598,-0.836958,-1.991700,0.602537,2.662376 +-2.027277,0.844248,-0.835464,-1.992049,0.600969,2.662026 +-2.027237,0.844044,-0.833932,-1.992253,0.599404,2.661822 +-2.027051,0.843986,-0.832375,-1.992311,0.597854,2.661765 +-2.026719,0.844076,-0.830808,-1.992221,0.596335,2.661854 +-2.026244,0.844312,-0.829244,-1.991985,0.594858,2.662090 +-2.025632,0.844693,-0.827696,-1.991604,0.593439,2.662471 +-2.024887,0.845214,-0.826179,-1.991083,0.592087,2.662993 +-2.024015,0.845872,-0.824706,-1.990425,0.590817,2.663651 +-2.023026,0.846661,-0.823290,-1.989636,0.589639,2.664439 +-2.021926,0.847574,-0.821943,-1.988724,0.588562,2.665352 +-2.020726,0.848602,-0.820678,-1.987695,0.587598,2.666380 +-2.019437,0.849736,-0.819504,-1.986561,0.586754,2.667515 +-2.018070,0.850968,-0.818433,-1.985330,0.586038,2.668746 +-2.016636,0.852285,-0.817475,-1.984013,0.585455,2.670063 +-2.015149,0.853676,-0.816637,-1.982621,0.585012,2.671454 +-2.013622,0.855129,-0.815927,-1.981168,0.584712,2.672907 +-2.012068,0.856631,-0.815351,-1.979666,0.584558,2.674409 +-2.010500,0.858169,-0.814914,-1.978128,0.584551,2.675947 +-2.008934,0.859729,-0.814621,-1.976568,0.584690,2.677507 +-2.007381,0.861298,-0.814473,-1.974999,0.584976,2.679076 +-2.005857,0.862861,-0.814472,-1.973436,0.585406,2.680639 +-2.004374,0.864405,-0.814619,-1.971892,0.585974,2.682184 +-2.002946,0.865917,-0.814911,-1.970380,0.586678,2.683695 +-2.001585,0.867383,-0.815346,-1.968914,0.587510,2.685161 +-2.000304,0.868789,-0.815920,-1.967508,0.588463,2.686568 +-1.999113,0.870125,-0.816629,-1.966172,0.589528,2.687903 +-1.998022,0.871377,-0.817466,-1.964920,0.590697,2.689155 +-1.997043,0.872535,-0.818424,-1.963762,0.591959,2.690313 +-1.996183,0.873589,-0.819493,-1.962708,0.593303,2.691367 +-1.995449,0.874529,-0.820666,-1.961768,0.594716,2.692307 +-1.994849,0.875347,-0.821931,-1.960950,0.596188,2.693125 +-1.994387,0.876036,-0.823277,-1.960261,0.597704,2.693814 +-1.994068,0.876590,-0.824692,-1.959707,0.599251,2.694368 +-1.993894,0.877004,-0.826165,-1.959293,0.600815,2.694782 +-1.993868,0.877274,-0.827681,-1.959023,0.602384,2.695052 +-1.993988,0.877398,-0.829229,-1.958900,0.603942,2.695176 +-1.994255,0.877374,-0.830793,-1.958923,0.605477,2.695152 +-1.994666,0.877204,-0.832360,-1.959093,0.606974,2.694982 +-1.995217,0.876888,-0.833917,-1.959409,0.608421,2.694666 +-1.995903,0.876430,-0.835449,-1.959867,0.609805,2.694208 +-1.996718,0.875832,-0.836943,-1.960465,0.611113,2.693611 +-1.997655,0.875102,-0.838387,-1.961195,0.612334,2.692880 +-1.998707,0.874244,-0.839767,-1.962053,0.613458,2.692022 +-1.999863,0.873267,-0.841070,-1.963030,0.614474,2.691045 +-2.001113,0.872179,-0.842287,-1.964118,0.615373,2.689958 +-2.002446,0.870990,-0.843405,-1.965307,0.616148,2.688769 +-2.003852,0.869711,-0.844415,-1.966587,0.616791,2.687489 +-2.005316,0.868351,-0.845308,-1.967946,0.617298,2.686130 +-2.006827,0.866925,-0.846077,-1.969372,0.617662,2.684703 +-2.008371,0.865443,-0.846714,-1.970854,0.617883,2.683221 +-2.009934,0.863920,-0.847214,-1.972377,0.617956,2.681698 +-2.011502,0.862368,-0.847572,-1.973929,0.617883,2.680146 +-2.013063,0.860801,-0.847786,-1.975496,0.617662,2.678579 +-2.014602,0.859234,-0.847853,-1.977063,0.617297,2.677012 +-2.016105,0.857679,-0.847773,-1.978618,0.616791,2.675457 +-2.017559,0.856151,-0.847546,-1.980146,0.616147,2.673929 +-2.018952,0.854663,-0.847175,-1.981634,0.615373,2.672441 +-2.020270,0.853228,-0.846663,-1.983069,0.614473,2.671006 +-2.021504,0.851859,-0.846014,-1.984438,0.613457,2.669637 +-2.022641,0.850568,-0.845234,-1.985729,0.612334,2.668346 +-2.023671,0.849366,-0.844330,-1.986931,0.611113,2.667144 +-2.024586,0.848264,-0.843310,-1.988033,0.609804,2.666043 +-2.025378,0.847272,-0.842182,-1.989025,0.608421,2.665050 +-2.026039,0.846398,-0.840958,-1.989899,0.606974,2.664176 +-2.026564,0.845650,-0.839647,-1.990647,0.605476,2.663428 +-2.026947,0.845034,-0.838261,-1.991263,0.603942,2.662812 +-2.027187,0.844557,-0.836813,-1.991740,0.602383,2.662335 +-2.027280,0.844222,-0.835314,-1.992075,0.600815,2.662000 +-2.027226,0.844032,-0.833779,-1.992265,0.599250,2.661810 +-2.027024,0.843989,-0.832221,-1.992309,0.597703,2.661767 +-2.026678,0.844093,-0.830654,-1.992204,0.596187,2.661871 +-2.026190,0.844343,-0.829090,-1.991954,0.594716,2.662121 +-2.025564,0.844738,-0.827545,-1.991559,0.593302,2.662516 +-2.024807,0.845273,-0.826032,-1.991024,0.591959,2.663051 +-2.023923,0.845944,-0.824564,-1.990353,0.590697,2.663723 +-2.022922,0.846746,-0.823154,-1.989551,0.589528,2.664524 +-2.021812,0.847670,-0.821815,-1.988627,0.588462,2.665448 +-2.020603,0.848709,-0.820558,-1.987588,0.587509,2.666487 +-2.019306,0.849853,-0.819394,-1.986444,0.586678,2.667632 +-2.017931,0.851094,-0.818334,-1.985203,0.585974,2.668872 +-2.016492,0.852419,-0.817387,-1.983879,0.585405,2.670197 +-2.015000,0.853816,-0.816561,-1.982481,0.584976,2.671595 +-2.013470,0.855275,-0.815864,-1.981022,0.584690,2.673053 +-2.011914,0.856781,-0.815302,-1.979516,0.584551,2.674559 +-2.010346,0.858322,-0.814879,-1.977975,0.584558,2.676100 +-2.008780,0.859883,-0.814600,-1.976414,0.584712,2.677662 +-2.007230,0.861452,-0.814466,-1.974845,0.585012,2.679230 +-2.005709,0.863014,-0.814480,-1.973283,0.585455,2.680793 +-2.004231,0.864556,-0.814641,-1.971741,0.586038,2.682334 +-2.002809,0.866064,-0.814947,-1.970233,0.586754,2.683842 +-2.001456,0.867524,-0.815396,-1.968773,0.587598,2.685302 +-2.000182,0.868924,-0.815984,-1.967373,0.588563,2.686702 +-1.999001,0.870252,-0.816706,-1.966045,0.589639,2.688030 +-1.997921,0.871495,-0.817555,-1.964802,0.590817,2.689274 +-1.996953,0.872644,-0.818524,-1.963653,0.592088,2.690422 +-1.996105,0.873687,-0.819604,-1.962611,0.593439,2.691465 +-1.995384,0.874615,-0.820786,-1.961682,0.594859,2.692393 +-1.994797,0.875421,-0.822060,-1.960876,0.596335,2.693199 +-1.994349,0.876097,-0.823413,-1.960200,0.597855,2.693875 +-1.994044,0.876637,-0.824835,-1.959660,0.599404,2.694415 +-1.993885,0.877037,-0.826313,-1.959260,0.600970,2.694815 +-1.993873,0.877292,-0.827833,-1.959005,0.602538,2.695071 +-1.994008,0.877402,-0.829382,-1.958895,0.604095,2.695180 +-1.994289,0.877364,-0.830947,-1.958933,0.605626,2.695142 +-1.994714,0.877179,-0.832514,-1.959118,0.607119,2.694957 +-1.995278,0.876849,-0.834069,-1.959448,0.608560,2.694627 +-1.995977,0.876377,-0.835598,-1.959920,0.609937,2.694155 +-1.996805,0.875766,-0.837088,-1.960531,0.611237,2.693544 +-1.997754,0.875023,-0.838526,-1.961274,0.612449,2.692801 +-1.998816,0.874153,-0.839899,-1.962144,0.613563,2.691931 +-1.999982,0.873165,-0.841194,-1.963132,0.614568,2.690943 +-2.001241,0.872067,-0.842401,-1.964231,0.615455,2.689845 +-2.002582,0.870868,-0.843509,-1.965429,0.616217,2.688646 +-2.003994,0.869580,-0.844508,-1.966717,0.616847,2.687358 +-2.005463,0.868214,-0.845390,-1.968083,0.617340,2.685992 +-2.006978,0.866781,-0.846146,-1.969516,0.617691,2.684559 +-2.008524,0.865295,-0.846770,-1.971002,0.617897,2.683073 +-2.010088,0.863768,-0.847256,-1.972529,0.617956,2.681546 +-2.011657,0.862214,-0.847600,-1.974083,0.617867,2.679992 +-2.013216,0.860647,-0.847799,-1.975650,0.617633,2.678425 +-2.014751,0.859080,-0.847852,-1.977217,0.617254,2.676858 +-2.016250,0.857527,-0.847757,-1.978770,0.616734,2.675305 +-2.017699,0.856002,-0.847516,-1.980295,0.616077,2.673781 +-2.019085,0.854519,-0.847131,-1.981778,0.615289,2.672297 +-2.020396,0.853090,-0.846605,-1.983207,0.614378,2.670868 +-2.021620,0.851728,-0.845943,-1.984569,0.613351,2.669507 +-2.022747,0.850446,-0.845150,-1.985852,0.612218,2.668224 +-2.023767,0.849253,-0.844235,-1.987044,0.610987,2.667031 +-2.024670,0.848162,-0.843203,-1.988136,0.609671,2.665940 +-2.025449,0.847180,-0.842066,-1.989117,0.608281,2.664959 +-2.026097,0.846318,-0.840832,-1.989979,0.606828,2.664097 +-2.026608,0.845583,-0.839514,-1.990714,0.605327,2.663361 +-2.026977,0.844981,-0.838121,-1.991316,0.603789,2.662759 +-2.027203,0.844517,-0.836667,-1.991780,0.602229,2.662296 +-2.027281,0.844196,-0.835164,-1.992101,0.600660,2.661975 +-2.027212,0.844021,-0.833627,-1.992276,0.599097,2.661799 +-2.026997,0.843992,-0.832067,-1.992305,0.597552,2.661771 +-2.026636,0.844111,-0.830499,-1.992186,0.596040,2.661889 +-2.026135,0.844376,-0.828937,-1.991921,0.594574,2.662154 +-2.025496,0.844784,-0.827395,-1.991513,0.593167,2.662563 +-2.024725,0.845333,-0.825885,-1.990964,0.591830,2.663112 +-2.023830,0.846018,-0.824423,-1.990279,0.590577,2.663796 +-2.022817,0.846831,-0.823019,-1.989466,0.589418,2.664610 +-2.021697,0.847767,-0.821687,-1.988530,0.588363,2.665545 +-2.020479,0.848817,-0.820439,-1.987480,0.587422,2.666595 +-2.019173,0.849972,-0.819285,-1.986326,0.586602,2.667750 +-2.017792,0.851221,-0.818235,-1.985077,0.585912,2.668999 +-2.016347,0.852553,-0.817300,-1.983744,0.585357,2.670331 +-2.014851,0.853958,-0.816487,-1.982340,0.584942,2.671736 +-2.013317,0.855421,-0.815802,-1.980876,0.584670,2.673199 +-2.011760,0.856931,-0.815254,-1.979366,0.584545,2.674710 +-2.010191,0.858475,-0.814845,-1.977822,0.584566,2.676253 +-2.008626,0.860038,-0.814580,-1.976259,0.584735,2.677816 +-2.007078,0.861607,-0.814461,-1.974691,0.585050,2.679385 +-2.005561,0.863167,-0.814490,-1.973130,0.585507,2.680945 +-2.004088,0.864706,-0.814665,-1.971591,0.586103,2.682484 +-2.002673,0.866210,-0.814985,-1.970087,0.586832,2.683988 +-2.001326,0.867665,-0.815448,-1.968632,0.587688,2.685443 +-2.000062,0.869058,-0.816050,-1.967239,0.588664,2.686837 +-1.998890,0.870378,-0.816784,-1.965919,0.589751,2.688157 +-1.997820,0.871613,-0.817645,-1.964684,0.590939,2.689391 +-1.996864,0.872751,-0.818626,-1.963546,0.592218,2.690529 +-1.996028,0.873783,-0.819716,-1.962514,0.593576,2.691561 +-1.995320,0.874700,-0.820908,-1.961597,0.595002,2.692478 +-1.994747,0.875493,-0.822190,-1.960804,0.596483,2.693271 +-1.994313,0.876156,-0.823551,-1.960141,0.598006,2.693934 +-1.994022,0.876683,-0.824978,-1.959614,0.599558,2.694461 +-1.993878,0.877068,-0.826461,-1.959229,0.601124,2.694847 +-1.993880,0.877310,-0.827984,-1.958987,0.602692,2.695088 +-1.994029,0.877405,-0.829536,-1.958892,0.604247,2.695183 +-1.994325,0.877352,-0.831102,-1.958945,0.605775,2.695131 +-1.994763,0.877153,-0.832668,-1.959144,0.607264,2.694931 +-1.995341,0.876809,-0.834221,-1.959488,0.608699,2.694587 +-1.996053,0.876323,-0.835747,-1.959974,0.610069,2.694101 +-1.996893,0.875699,-0.837232,-1.960598,0.611361,2.693477 +-1.997854,0.874943,-0.838664,-1.961354,0.612564,2.692721 +-1.998926,0.874061,-0.840030,-1.962236,0.613667,2.691839 +-2.000102,0.873061,-0.841317,-1.963236,0.614660,2.690840 +-2.001369,0.871953,-0.842515,-1.964344,0.615536,2.689731 +-2.002718,0.870745,-0.843613,-1.965552,0.616285,2.688523 +-2.004136,0.869449,-0.844601,-1.966848,0.616902,2.687227 +-2.005610,0.868075,-0.845470,-1.968222,0.617381,2.685853 +-2.007129,0.866637,-0.846213,-1.969660,0.617717,2.684415 +-2.008677,0.865146,-0.846824,-1.971151,0.617909,2.682924 +-2.010243,0.863616,-0.847296,-1.972681,0.617953,2.681394 +-2.011811,0.862060,-0.847626,-1.974237,0.617851,2.679838 +-2.013368,0.860492,-0.847811,-1.975805,0.617602,2.678270 +-2.014901,0.858926,-0.847849,-1.977371,0.617209,2.676704 +-2.016395,0.857376,-0.847740,-1.978922,0.616675,2.675154 +-2.017839,0.855854,-0.847485,-1.980443,0.616005,2.673633 +-2.019218,0.854376,-0.847086,-1.981921,0.615205,2.672154 +-2.020520,0.852953,-0.846546,-1.983344,0.614282,2.670731 +-2.021736,0.851598,-0.845871,-1.984699,0.613244,2.669377 +-2.022852,0.850324,-0.845066,-1.985973,0.612101,2.668102 +-2.023861,0.849141,-0.844138,-1.987156,0.610861,2.666919 +-2.024752,0.848060,-0.843096,-1.988237,0.609537,2.665838 +-2.025519,0.847090,-0.841949,-1.989207,0.608140,2.664868 +-2.026153,0.846240,-0.840706,-1.990057,0.606682,2.664018 +-2.026651,0.845518,-0.839379,-1.990779,0.605176,2.663296 +-2.027006,0.844929,-0.837980,-1.991368,0.603636,2.662707 +-2.027217,0.844479,-0.836521,-1.991818,0.602075,2.662258 +-2.027281,0.844173,-0.835014,-1.992124,0.600506,2.661951 +-2.027197,0.844012,-0.833474,-1.992286,0.598943,2.661790 +-2.026968,0.843998,-0.831913,-1.992300,0.597401,2.661776 +-2.026593,0.844131,-0.830345,-1.992167,0.595893,2.661909 +-2.026078,0.844410,-0.828784,-1.991887,0.594432,2.662188 +-2.025425,0.844832,-0.827244,-1.991465,0.593032,2.662611 +-2.024642,0.845395,-0.825739,-1.990902,0.591703,2.663173 +-2.023735,0.846092,-0.824281,-1.990205,0.590459,2.663870 +-2.022712,0.846918,-0.822884,-1.989379,0.589309,2.664696 +-2.021581,0.847866,-0.821560,-1.988431,0.588265,2.665644 +-2.020354,0.848926,-0.820321,-1.987371,0.587336,2.666704 +-2.019041,0.850091,-0.819177,-1.986207,0.586529,2.667869 +-2.017652,0.851348,-0.818138,-1.984949,0.585851,2.669127 +-2.016202,0.852689,-0.817214,-1.983609,0.585310,2.670467 +-2.014702,0.854099,-0.816413,-1.982198,0.584908,2.671877 +-2.013165,0.855568,-0.815742,-1.980729,0.584651,2.673346 +-2.011605,0.857082,-0.815207,-1.979215,0.584540,2.674860 +-2.010037,0.858628,-0.814812,-1.977669,0.584577,2.676406 +-2.008473,0.860192,-0.814562,-1.976105,0.584760,2.677970 +-2.006927,0.861761,-0.814457,-1.974536,0.585088,2.679539 +-2.005414,0.863320,-0.814500,-1.972977,0.585559,2.681098 +-2.003946,0.864856,-0.814690,-1.971441,0.586169,2.682634 +-2.002537,0.866356,-0.815025,-1.969942,0.586911,2.684134 +-2.001198,0.867805,-0.815501,-1.968492,0.587779,2.685583 +-1.999942,0.869192,-0.816116,-1.967105,0.588766,2.686970 +-1.998780,0.870504,-0.816864,-1.965793,0.589863,2.688282 +-1.997721,0.871729,-0.817737,-1.964568,0.591061,2.689508 +-1.996776,0.872858,-0.818728,-1.963439,0.592348,2.690636 +-1.995952,0.873879,-0.819829,-1.962418,0.593714,2.691657 +-1.995257,0.874784,-0.821030,-1.961513,0.595146,2.692562 +-1.994698,0.875564,-0.822320,-1.960733,0.596632,2.693343 +-1.994278,0.876214,-0.823688,-1.960083,0.598158,2.693992 +-1.994001,0.876727,-0.825122,-1.959570,0.599712,2.694505 +-1.993871,0.877099,-0.826609,-1.959199,0.601279,2.694877 +-1.993888,0.877326,-0.828136,-1.958972,0.602846,2.695104 +-1.994052,0.877406,-0.829690,-1.958891,0.604399,2.695184 +-1.994362,0.877339,-0.831256,-1.958958,0.605924,2.695117 +-1.994814,0.877126,-0.832822,-1.959171,0.607408,2.694904 +-1.995405,0.876767,-0.834373,-1.959530,0.608837,2.694546 +-1.996130,0.876267,-0.835895,-1.960030,0.610200,2.694046 +-1.996983,0.875630,-0.837376,-1.960667,0.611483,2.693408 +-1.997955,0.874861,-0.838802,-1.961436,0.612677,2.692639 +-1.999038,0.873968,-0.840160,-1.962330,0.613770,2.691746 +-2.000223,0.872957,-0.841439,-1.963340,0.614752,2.690735 +-2.001499,0.871838,-0.842628,-1.964459,0.615615,2.689616 +-2.002855,0.870621,-0.843715,-1.965676,0.616352,2.688399 +-2.004279,0.869317,-0.844692,-1.966980,0.616955,2.687095 +-2.005758,0.867936,-0.845549,-1.968361,0.617420,2.685714 +-2.007280,0.866492,-0.846279,-1.969805,0.617743,2.684270 +-2.008831,0.864997,-0.846876,-1.971300,0.617920,2.682775 +-2.010397,0.863463,-0.847335,-1.972834,0.617950,2.681242 +-2.011965,0.861906,-0.847651,-1.974391,0.617833,2.679684 +-2.013521,0.860338,-0.847821,-1.975960,0.617569,2.678116 +-2.015050,0.858772,-0.847845,-1.977525,0.617162,2.676551 +-2.016540,0.857224,-0.847721,-1.979073,0.616615,2.675002 +-2.017977,0.855707,-0.847452,-1.980591,0.615932,2.673485 +-2.019350,0.854233,-0.847039,-1.982064,0.615119,2.672011 +-2.020644,0.852816,-0.846485,-1.983481,0.614185,2.670594 +-2.021850,0.851469,-0.845797,-1.984828,0.613136,2.669247 +-2.022957,0.850203,-0.844980,-1.986094,0.611983,2.667981 +-2.023954,0.849030,-0.844040,-1.987267,0.610734,2.666808 +-2.024833,0.847959,-0.842987,-1.988338,0.609403,2.665737 +-2.025587,0.847001,-0.841830,-1.989296,0.607999,2.664779 +-2.026208,0.846163,-0.840579,-1.990134,0.606536,2.663942 +-2.026692,0.845454,-0.839245,-1.990843,0.605026,2.663232 +-2.027033,0.844879,-0.837839,-1.991419,0.603483,2.662657 +-2.027230,0.844443,-0.836374,-1.991854,0.601920,2.662221 +-2.027279,0.844150,-0.834864,-1.992147,0.600351,2.661929 +-2.027181,0.844004,-0.833321,-1.992293,0.598790,2.661782 +-2.026937,0.844004,-0.831758,-1.992293,0.597251,2.661782 +-2.026549,0.844152,-0.830191,-1.992145,0.595747,2.661930 +-2.026019,0.844445,-0.828631,-1.991852,0.594292,2.662223 +-2.025354,0.844882,-0.827094,-1.991415,0.592897,2.662660 +-2.024558,0.845458,-0.825593,-1.990840,0.591577,2.663236 +-2.023639,0.846168,-0.824141,-1.990129,0.590341,2.663946 +-2.022605,0.847006,-0.822751,-1.989291,0.589202,2.664784 +-2.021465,0.847965,-0.821434,-1.988332,0.588169,2.665743 +-2.020228,0.849037,-0.820204,-1.987261,0.587251,2.666815 +-2.018907,0.850210,-0.819069,-1.986087,0.586456,2.667989 +-2.017512,0.851477,-0.818042,-1.984820,0.585792,2.669255 +-2.016056,0.852825,-0.817130,-1.983473,0.585264,2.670603 +-2.014552,0.854242,-0.816341,-1.982056,0.584877,2.672020 +-2.013012,0.855715,-0.815683,-1.980582,0.584634,2.673494 +-2.011451,0.857233,-0.815162,-1.979064,0.584537,2.675011 +-2.009882,0.858782,-0.814781,-1.977516,0.584588,2.676560 +-2.008320,0.860347,-0.814545,-1.975950,0.584786,2.678125 +-2.006777,0.861915,-0.814455,-1.974382,0.585128,2.679693 +-2.005267,0.863473,-0.814512,-1.972824,0.585613,2.681251 +-2.003805,0.865006,-0.814716,-1.971291,0.586236,2.682784 +-2.002401,0.866501,-0.815065,-1.969796,0.586991,2.684279 +-2.001070,0.867945,-0.815556,-1.968352,0.587871,2.685723 +-1.999823,0.869325,-0.816184,-1.966972,0.588870,2.687103 +-1.998671,0.870629,-0.816944,-1.965668,0.589977,2.688407 +-1.997623,0.871845,-0.817829,-1.964452,0.591184,2.689623 +-1.996689,0.872963,-0.818832,-1.963334,0.592479,2.690741 +-1.995878,0.873973,-0.819943,-1.962324,0.593852,2.691751 +-1.995196,0.874866,-0.821154,-1.961431,0.595290,2.692644 +-1.994650,0.875634,-0.822452,-1.960663,0.596780,2.693413 +-1.994244,0.876271,-0.823827,-1.960026,0.598310,2.694049 +-1.993982,0.876770,-0.825266,-1.959527,0.599866,2.694548 +-1.993866,0.877127,-0.826758,-1.959170,0.601434,2.694906 +-1.993898,0.877340,-0.828288,-1.958957,0.603000,2.695118 +-1.994076,0.877406,-0.829844,-1.958891,0.604550,2.695184 +-1.994400,0.877325,-0.831411,-1.958972,0.606072,2.695103 +-1.994866,0.877097,-0.832975,-1.959200,0.607551,2.694875 +-1.995471,0.876724,-0.834524,-1.959573,0.608975,2.694503 +-1.996209,0.876211,-0.836043,-1.960086,0.610330,2.693989 +-1.997073,0.875560,-0.837519,-1.960737,0.611605,2.693338 +-1.998057,0.874779,-0.838939,-1.961518,0.612789,2.692557 +-1.999150,0.873873,-0.840290,-1.962424,0.613871,2.691651 +-2.000345,0.872851,-0.841561,-1.963446,0.614842,2.690630 +-2.001629,0.871722,-0.842740,-1.964575,0.615693,2.689501 +-2.002992,0.870496,-0.843816,-1.965801,0.616417,2.688275 +-2.004422,0.869184,-0.844782,-1.967113,0.617007,2.686962 +-2.005907,0.867797,-0.845627,-1.968500,0.617458,2.685575 +-2.007432,0.866347,-0.846344,-1.969950,0.617767,2.684125 +-2.008985,0.864847,-0.846928,-1.971450,0.617929,2.682625 +-2.010552,0.863311,-0.847372,-1.972986,0.617945,2.681089 +-2.012119,0.861752,-0.847674,-1.974546,0.617813,2.679530 +-2.013673,0.860183,-0.847830,-1.976114,0.617536,2.677961 +-2.015199,0.858619,-0.847839,-1.977678,0.617114,2.676397 +-2.016684,0.857073,-0.847701,-1.979224,0.616553,2.674851 +-2.018116,0.855559,-0.847417,-1.980738,0.615857,2.673337 +-2.019481,0.854091,-0.846990,-1.982206,0.615033,2.671869 +-2.020767,0.852680,-0.846423,-1.983617,0.614086,2.670459 +-2.021964,0.851341,-0.845722,-1.984957,0.613027,2.669119 +-2.023060,0.850083,-0.844892,-1.986214,0.611864,2.667862 +-2.024046,0.848920,-0.843941,-1.987377,0.610607,2.666698 +-2.024913,0.847860,-0.842878,-1.988437,0.609267,2.665638 +-2.025654,0.846913,-0.841711,-1.989384,0.607857,2.664691 +-2.026262,0.846088,-0.840451,-1.990209,0.606389,2.663866 +-2.026732,0.845391,-0.839109,-1.990906,0.604875,2.663169 +-2.027059,0.844829,-0.837697,-1.991468,0.603330,2.662608 +-2.027241,0.844408,-0.836228,-1.991889,0.601766,2.662186 +-2.027276,0.844129,-0.834713,-1.992168,0.600197,2.661908 +-2.027164,0.843997,-0.833167,-1.992300,0.598638,2.661775 +-2.026905,0.844012,-0.831604,-1.992285,0.597101,2.661790 +-2.026503,0.844174,-0.830036,-1.992123,0.595601,2.661952 +-2.025960,0.844482,-0.828479,-1.991815,0.594151,2.662260 +-2.025281,0.844932,-0.826945,-1.991365,0.592764,2.662710 +-2.024473,0.845522,-0.825448,-1.990775,0.591451,2.663300 +-2.023542,0.846245,-0.824001,-1.990052,0.590224,2.664023 +-2.022497,0.847096,-0.822617,-1.989202,0.589095,2.664874 +-2.021347,0.848066,-0.821309,-1.988231,0.588073,2.665844 +-2.020102,0.849148,-0.820087,-1.987149,0.587167,2.666926 +-2.018773,0.850331,-0.818963,-1.985966,0.586385,2.668109 +-2.017371,0.851606,-0.817947,-1.984691,0.585734,2.669384 +-2.015910,0.852961,-0.817047,-1.983336,0.585219,2.670739 +-2.014401,0.854384,-0.816271,-1.981913,0.584846,2.672163 +-2.012859,0.855863,-0.815626,-1.980434,0.584618,2.673641 +-2.011297,0.857385,-0.815118,-1.978912,0.584536,2.675163 +-2.009728,0.858935,-0.814752,-1.977362,0.584601,2.676713 +-2.008166,0.860501,-0.814530,-1.975796,0.584813,2.678280 +-2.006626,0.862069,-0.814454,-1.974228,0.585170,2.679847 +-2.005121,0.863625,-0.814526,-1.972672,0.585669,2.681403 +-2.003663,0.865155,-0.814744,-1.971142,0.586304,2.682933 +-2.002267,0.866645,-0.815107,-1.969652,0.587072,2.684424 +-2.000944,0.868084,-0.815612,-1.968213,0.587964,2.685862 +-1.999705,0.869457,-0.816253,-1.966840,0.588974,2.687235 +-1.998563,0.870753,-0.817026,-1.965545,0.590092,2.688531 +-1.997526,0.871960,-0.817923,-1.964337,0.591308,2.689738 +-1.996604,0.873068,-0.818937,-1.963229,0.592611,2.690846 +-1.995805,0.874067,-0.820058,-1.962231,0.593991,2.691845 +-1.995136,0.874948,-0.821278,-1.961350,0.595435,2.692726 +-1.994604,0.875703,-0.822584,-1.960594,0.596930,2.693481 +-1.994212,0.876326,-0.823966,-1.959971,0.598462,2.694104 +-1.993964,0.876811,-0.825411,-1.959486,0.600020,2.694590 +-1.993863,0.877155,-0.826907,-1.959142,0.601588,2.694933 +-1.993909,0.877353,-0.828440,-1.958944,0.603153,2.695131 +-1.994102,0.877405,-0.829998,-1.958893,0.604702,2.695183 +-1.994440,0.877309,-0.831565,-1.958988,0.606220,2.695087 +-1.994920,0.877067,-0.833129,-1.959231,0.607694,2.694845 +-1.995538,0.876680,-0.834675,-1.959617,0.609111,2.694458 +-1.996288,0.876153,-0.836191,-1.960145,0.610459,2.693931 +-1.997165,0.875489,-0.837662,-1.960808,0.611726,2.693267 +-1.998160,0.874695,-0.839075,-1.961602,0.612900,2.692473 +-1.999264,0.873777,-0.840419,-1.962520,0.613972,2.691556 +-2.000467,0.872745,-0.841681,-1.963552,0.614932,2.690523 +-2.001760,0.871606,-0.842850,-1.964691,0.615770,2.689384 +-2.003130,0.870371,-0.843916,-1.965926,0.616481,2.688149 +-2.004566,0.869050,-0.844870,-1.967247,0.617058,2.686829 +-2.006055,0.867656,-0.845703,-1.968641,0.617495,2.685435 +-2.007584,0.866201,-0.846408,-1.970096,0.617789,2.683979 +-2.009139,0.864697,-0.846978,-1.971600,0.617937,2.682475 +-2.010706,0.863158,-0.847409,-1.973139,0.617938,2.680936 +-2.012273,0.861597,-0.847696,-1.974700,0.617792,2.679375 +-2.013824,0.860028,-0.847838,-1.976269,0.617501,2.677807 +-2.015347,0.858466,-0.847832,-1.977832,0.617065,2.676244 +-2.016828,0.856922,-0.847680,-1.979375,0.616491,2.674701 +-2.018253,0.855412,-0.847382,-1.980885,0.615782,2.673191 +-2.019611,0.853949,-0.846940,-1.982348,0.614945,2.671727 +-2.020889,0.852545,-0.846360,-1.983752,0.613987,2.670323 +-2.022076,0.851213,-0.845646,-1.985084,0.612917,2.668991 +-2.023162,0.849964,-0.844804,-1.986333,0.611744,2.667743 +-2.024137,0.848810,-0.843842,-1.987487,0.610478,2.666589 +-2.024992,0.847761,-0.842767,-1.988536,0.609132,2.665539 +-2.025720,0.846826,-0.841591,-1.989471,0.607715,2.664604 +-2.026315,0.846013,-0.840322,-1.990284,0.606242,2.663791 +-2.026771,0.845330,-0.838973,-1.990967,0.604724,2.663108 +-2.027084,0.844782,-0.837555,-1.991516,0.603176,2.662560 +-2.027251,0.844374,-0.836080,-1.991923,0.601611,2.662152 +-2.027271,0.844110,-0.834562,-1.992187,0.600043,2.661888 +-2.027145,0.843992,-0.833014,-1.992305,0.598485,2.661770 +-2.026872,0.844022,-0.831449,-1.992276,0.596952,2.661800 +-2.026455,0.844198,-0.829882,-1.992099,0.595456,2.661976 +-2.025899,0.844520,-0.828326,-1.991777,0.594012,2.662298 +-2.025207,0.844984,-0.826795,-1.991313,0.592631,2.662762 +-2.024387,0.845587,-0.825303,-1.990710,0.591326,2.663365 +-2.023444,0.846323,-0.823862,-1.989974,0.590109,2.664101 +-2.022388,0.847186,-0.822485,-1.989111,0.588990,2.664964 +-2.021228,0.848168,-0.821185,-1.988129,0.587978,2.665946 +-2.019974,0.849260,-0.819972,-1.987037,0.587084,2.667038 +-2.018638,0.850453,-0.818858,-1.985844,0.586315,2.668231 +-2.017230,0.851736,-0.817853,-1.984561,0.585677,2.669514 +-2.015763,0.853099,-0.816964,-1.983199,0.585176,2.670877 +-2.014251,0.854528,-0.816201,-1.981769,0.584817,2.672306 +-2.012706,0.856011,-0.815570,-1.980286,0.584603,2.673790 +-2.011142,0.857536,-0.815076,-1.978761,0.584536,2.675314 +-2.009574,0.859089,-0.814723,-1.977208,0.584616,2.676867 +-2.008014,0.860656,-0.814516,-1.975641,0.584842,2.678434 +-2.006476,0.862223,-0.814455,-1.974074,0.585213,2.680001 +-2.004975,0.863777,-0.814541,-1.972520,0.585725,2.681555 +-2.003523,0.865304,-0.814774,-1.970993,0.586374,2.683082 +-2.002133,0.866790,-0.815151,-1.969507,0.587154,2.684568 +-2.000818,0.868222,-0.815669,-1.968075,0.588059,2.686000 +-1.999588,0.869588,-0.816323,-1.966709,0.589079,2.687366 +-1.998456,0.870876,-0.817109,-1.965422,0.590207,2.688654 +-1.997430,0.872073,-0.818018,-1.964224,0.591432,2.689852 +-1.996520,0.873171,-0.819043,-1.963126,0.592744,2.690949 +-1.995733,0.874159,-0.820174,-1.962138,0.594131,2.691937 +-1.995078,0.875028,-0.821403,-1.961269,0.595580,2.692806 +-1.994559,0.875770,-0.822717,-1.960527,0.597079,2.693548 +-1.994181,0.876380,-0.824106,-1.959917,0.598615,2.694158 +-1.993948,0.876852,-0.825557,-1.959445,0.600174,2.694630 +-1.993861,0.877181,-0.827057,-1.959116,0.601743,2.694959 +-1.993921,0.877365,-0.828593,-1.958932,0.603307,2.695143 +-1.994129,0.877402,-0.830152,-1.958895,0.604853,2.695180 +-1.994481,0.877291,-0.831719,-1.959006,0.606367,2.695070 +-1.994975,0.877035,-0.833282,-1.959262,0.607836,2.694813 +-1.995606,0.876634,-0.834826,-1.959663,0.609247,2.694412 +-1.995860,0.876458,-0.835369,-1.959840,0.609733,2.694240 +-1.996130,0.876270,-0.835901,-1.960020,0.610202,2.694050 +-1.996400,0.876078,-0.836416,-1.960210,0.610646,2.693860 +-1.996670,0.875887,-0.836907,-1.960400,0.611059,2.693680 +-1.996930,0.875704,-0.837369,-1.960570,0.611437,2.693510 +-1.997170,0.875535,-0.837793,-1.960720,0.611781,2.693350 +-1.997390,0.875382,-0.838175,-1.960870,0.612091,2.693210 +-1.997590,0.875243,-0.838507,-1.961000,0.612367,2.693080 +-1.997760,0.875120,-0.838783,-1.961110,0.612608,2.692960 +-1.997910,0.875012,-0.839003,-1.961210,0.612814,2.692860 +-1.998040,0.874920,-0.839173,-1.961300,0.612987,2.692770 +-1.998150,0.874843,-0.839299,-1.961370,0.613125,2.692700 +-1.998230,0.874781,-0.839388,-1.961430,0.613228,2.692640 +-1.998280,0.874734,-0.839447,-1.961480,0.613298,2.692590 +-1.998320,0.874703,-0.839481,-1.961510,0.613339,2.692560 +-1.998330,0.874686,-0.839497,-1.961530,0.613359,2.692540 +-1.998340,0.874681,-0.839502,-1.961540,0.613365,2.692540 +-1.998340,0.874681,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874675,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874674,-0.839503,-1.961540,0.613365,2.692540 +-1.998340,0.874672,-0.839500,-1.961540,0.613362,2.692540 +-1.998330,0.874666,-0.839494,-1.961530,0.613354,2.692530 +-1.998320,0.874652,-0.839480,-1.961510,0.613337,2.692510 +-1.998300,0.874628,-0.839456,-1.961480,0.613309,2.692480 +-1.998260,0.874592,-0.839420,-1.961440,0.613266,2.692440 +-1.998210,0.874541,-0.839370,-1.961380,0.613205,2.692380 +-1.998140,0.874473,-0.839301,-1.961300,0.613123,2.692300 +-1.998050,0.874384,-0.839213,-1.961190,0.613017,2.692190 +-1.997940,0.874273,-0.839101,-1.961060,0.612884,2.692060 +-1.997800,0.874137,-0.838965,-1.960900,0.612720,2.691900 +-1.997640,0.873972,-0.838800,-1.960700,0.612523,2.691700 +-1.997450,0.873777,-0.838605,-1.960460,0.612289,2.691460 +-1.997220,0.873549,-0.838377,-1.960190,0.612016,2.691190 +-1.996950,0.873285,-0.838113,-1.959880,0.611700,2.690880 +-1.996650,0.872983,-0.837811,-1.959510,0.611338,2.690510 +-1.996310,0.872640,-0.837468,-1.959100,0.610927,2.690100 +-1.995920,0.872253,-0.837082,-1.958640,0.610464,2.689640 +-1.995490,0.871821,-0.836649,-1.958120,0.609946,2.689120 +-1.995010,0.871339,-0.836168,-1.957540,0.609369,2.688540 +-1.994480,0.870807,-0.835635,-1.956910,0.608731,2.687910 +-1.993890,0.870220,-0.835049,-1.956200,0.608028,2.687200 +-1.993250,0.869577,-0.834406,-1.955430,0.607258,2.686430 +-1.992540,0.868875,-0.833704,-1.954590,0.606417,2.685590 +-1.991780,0.868112,-0.832940,-1.953680,0.605502,2.684680 +-1.990950,0.867284,-0.832112,-1.952690,0.604510,2.683690 +-1.990060,0.866389,-0.831217,-1.951610,0.603438,2.682610 +-1.989090,0.865424,-0.830253,-1.950460,0.602283,2.681460 +-1.988060,0.864388,-0.829216,-1.949220,0.601041,2.680220 +-1.986950,0.863277,-0.828105,-1.947890,0.599710,2.678890 +-1.985760,0.862089,-0.826917,-1.946460,0.598287,2.677460 +-1.984490,0.860821,-0.825649,-1.944940,0.596768,2.675940 +-1.983140,0.859470,-0.824298,-1.943320,0.595153,2.674320 +-1.981700,0.858035,-0.822863,-1.941600,0.593447,2.672600 +-1.980180,0.856511,-0.821340,-1.939780,0.591651,2.670780 +-1.978570,0.854898,-0.819726,-1.937850,0.589769,2.668850 +-1.976860,0.853192,-0.818020,-1.935800,0.587804,2.666800 +-1.975060,0.851390,-0.816218,-1.933640,0.585759,2.664640 +-1.973160,0.849490,-0.814318,-1.931370,0.583637,2.662370 +-1.971160,0.847490,-0.812318,-1.928970,0.581442,2.659970 +-1.969050,0.845386,-0.810214,-1.926450,0.579176,2.657450 +-1.966850,0.843177,-0.808005,-1.923810,0.576843,2.654810 +-1.964530,0.840859,-0.805687,-1.921030,0.574446,2.652030 +-1.962100,0.838430,-0.803258,-1.918120,0.571987,2.649120 +-1.959560,0.835888,-0.800717,-1.915070,0.569470,2.646070 +-1.956900,0.833233,-0.798066,-1.911890,0.566898,2.642890 +-1.954120,0.830468,-0.795307,-1.908560,0.564275,2.639560 +-1.951220,0.827595,-0.792443,-1.905090,0.561602,2.636090 +-1.948200,0.824618,-0.789476,-1.901470,0.558884,2.632470 +-1.945050,0.821538,-0.786410,-1.897690,0.556124,2.628690 +-1.941770,0.818358,-0.783246,-1.893770,0.553323,2.624770 +-1.938360,0.815080,-0.779988,-1.889680,0.550487,2.620680 +-1.934830,0.811709,-0.776637,-1.885440,0.547617,2.616440 +-1.931160,0.808245,-0.773197,-1.881050,0.544718,2.612050 +-1.927360,0.804692,-0.769670,-1.876500,0.541791,2.607500 +-1.923430,0.801052,-0.766059,-1.871800,0.538841,2.602800 +-1.919380,0.797327,-0.762366,-1.866930,0.535869,2.597960 +-1.915190,0.793521,-0.758594,-1.861920,0.532880,2.592970 +-1.910870,0.789636,-0.754746,-1.856750,0.529877,2.587830 +-1.906420,0.785675,-0.750823,-1.851420,0.526862,2.582560 +-1.901850,0.781640,-0.746830,-1.845940,0.523838,2.577160 +-1.897140,0.777533,-0.742767,-1.840300,0.520810,2.571620 +-1.892310,0.773358,-0.738639,-1.834510,0.517779,2.565950 +-1.887340,0.769117,-0.734447,-1.828560,0.514748,2.560160 +-1.882260,0.764812,-0.730194,-1.822450,0.511718,2.554240 +-1.877050,0.760446,-0.725882,-1.816190,0.508687,2.548210 +-1.871720,0.756022,-0.721515,-1.809770,0.505656,2.542050 +-1.866270,0.751543,-0.717095,-1.803200,0.502625,2.535790 +-1.860720,0.747010,-0.712624,-1.796480,0.499594,2.529410 +-1.855050,0.742427,-0.708105,-1.789590,0.496564,2.522930 +-1.849270,0.737796,-0.703541,-1.782560,0.493533,2.516340 +-1.843380,0.733120,-0.698934,-1.775360,0.490502,2.509650 +-1.837390,0.728401,-0.694287,-1.768010,0.487471,2.502870 +-1.831300,0.723642,-0.689603,-1.760510,0.484440,2.495980 +-1.825110,0.718845,-0.684883,-1.752850,0.481410,2.489010 +-1.818830,0.714014,-0.680131,-1.745030,0.478379,2.481950 +-1.812450,0.709150,-0.675350,-1.737060,0.475348,2.474800 +-1.805980,0.704256,-0.670541,-1.728940,0.472317,2.467570 +-1.799430,0.699336,-0.665707,-1.720650,0.469286,2.460260 +-1.792780,0.694391,-0.660852,-1.712220,0.466256,2.452880 +-1.786060,0.689424,-0.655977,-1.703620,0.463225,2.445420 +-1.779250,0.684437,-0.651085,-1.694870,0.460194,2.437890 +-1.772370,0.679434,-0.646180,-1.685970,0.457163,2.430300 +-1.765410,0.674417,-0.641262,-1.676910,0.454132,2.422640 +-1.758380,0.669388,-0.636336,-1.667690,0.451102,2.414920 +-1.751280,0.664350,-0.631403,-1.658320,0.448071,2.407140 +-1.744110,0.659306,-0.626466,-1.648800,0.445040,2.399310 +-1.736880,0.654258,-0.621528,-1.639120,0.442009,2.391430 +-1.729590,0.649209,-0.616590,-1.629280,0.438978,2.383500 +-1.722230,0.644160,-0.611652,-1.619290,0.435948,2.375520 +-1.714820,0.639111,-0.606714,-1.609140,0.432917,2.367500 +-1.707360,0.634062,-0.601776,-1.598830,0.429886,2.359450 +-1.699840,0.629013,-0.596839,-1.588370,0.426855,2.351350 +-1.692270,0.623964,-0.591901,-1.577760,0.423824,2.343230 +-1.684660,0.618914,-0.586963,-1.566990,0.420794,2.335070 +-1.677000,0.613865,-0.582025,-1.556070,0.417763,2.326890 +-1.669310,0.608816,-0.577087,-1.545000,0.414732,2.318690 +-1.661570,0.603767,-0.572149,-1.533790,0.411701,2.310470 +-1.653800,0.598718,-0.567211,-1.522430,0.408670,2.302220 +-1.645990,0.593669,-0.562273,-1.510940,0.405640,2.293970 +-1.638150,0.588620,-0.557335,-1.499310,0.402609,2.285700 +-1.630290,0.583571,-0.552397,-1.487550,0.399578,2.277430 +-1.622390,0.578522,-0.547459,-1.475660,0.396547,2.269150 +-1.614480,0.573472,-0.542521,-1.463640,0.393516,2.260870 +-1.606540,0.568423,-0.537583,-1.451500,0.390486,2.252590 +-1.598590,0.563374,-0.532645,-1.439240,0.387455,2.244310 +-1.590620,0.558325,-0.527707,-1.426860,0.384424,2.236030 +-1.582640,0.553276,-0.522769,-1.414370,0.381393,2.227750 +-1.574650,0.548227,-0.517831,-1.401770,0.378362,2.219470 +-1.566650,0.543178,-0.512893,-1.389060,0.375332,2.211190 +-1.558640,0.538129,-0.507955,-1.376250,0.372301,2.202910 +-1.550640,0.533080,-0.503017,-1.363330,0.369270,2.194630 +-1.542630,0.528030,-0.498079,-1.350320,0.366239,2.186350 +-1.534620,0.522981,-0.493141,-1.337210,0.363208,2.178070 +-1.526610,0.517932,-0.488203,-1.324010,0.360178,2.169790 +-1.518610,0.512883,-0.483265,-1.310720,0.357147,2.161510 +-1.510600,0.507834,-0.478327,-1.297350,0.354116,2.153230 +-1.502590,0.502785,-0.473389,-1.283890,0.351085,2.144950 +-1.494590,0.497736,-0.468451,-1.270350,0.348054,2.136670 +-1.486580,0.492687,-0.463513,-1.256740,0.345024,2.128390 +-1.478570,0.487638,-0.458575,-1.243050,0.341993,2.120110 +-1.470560,0.482588,-0.453637,-1.229290,0.338962,2.111830 +-1.462560,0.477539,-0.448699,-1.215470,0.335931,2.103550 +-1.454550,0.472490,-0.443762,-1.201580,0.332900,2.095270 +-1.446540,0.467441,-0.438824,-1.187630,0.329870,2.086990 +-1.438540,0.462392,-0.433886,-1.173630,0.326839,2.078710 +-1.430530,0.457343,-0.428948,-1.159560,0.323808,2.070430 +-1.422520,0.452294,-0.424010,-1.145450,0.320777,2.062140 +-1.414510,0.447245,-0.419072,-1.131290,0.317746,2.053860 +-1.406510,0.442196,-0.414134,-1.117080,0.314716,2.045580 +-1.398500,0.437146,-0.409196,-1.102830,0.311685,2.037300 +-1.390490,0.432097,-0.404258,-1.088540,0.308654,2.029020 +-1.382480,0.427048,-0.399320,-1.074220,0.305623,2.020740 +-1.374480,0.421999,-0.394382,-1.059860,0.302592,2.012460 +-1.366470,0.416950,-0.389444,-1.045470,0.299562,2.004180 +-1.358460,0.411901,-0.384506,-1.031060,0.296531,1.995900 +-1.350460,0.406852,-0.379568,-1.016620,0.293500,1.987620 +-1.342450,0.401803,-0.374630,-1.002160,0.290469,1.979340 +-1.334440,0.396754,-0.369692,-0.987689,0.287438,1.971060 +-1.326430,0.391704,-0.364754,-0.973200,0.284408,1.962780 +-1.318430,0.386655,-0.359816,-0.958699,0.281377,1.954500 +-1.310420,0.381606,-0.354878,-0.944190,0.278346,1.946220 +-1.302410,0.376557,-0.349940,-0.929677,0.275315,1.937940 +-1.294410,0.371508,-0.345002,-0.915161,0.272284,1.929660 +-1.286400,0.366459,-0.340064,-0.900646,0.269254,1.921380 +-1.278390,0.361410,-0.335126,-0.886130,0.266223,1.913100 +-1.270380,0.356361,-0.330188,-0.871614,0.263192,1.904820 +-1.262380,0.351312,-0.325250,-0.857099,0.260161,1.896540 +-1.254370,0.346262,-0.320312,-0.842583,0.257130,1.888260 +-1.246360,0.341213,-0.315374,-0.828068,0.254100,1.879980 +-1.238360,0.336164,-0.310436,-0.813552,0.251069,1.871700 +-1.230350,0.331115,-0.305498,-0.799036,0.248038,1.863420 +-1.222340,0.326066,-0.300560,-0.784521,0.245007,1.855140 +-1.214330,0.321017,-0.295622,-0.770005,0.241976,1.846860 +-1.206330,0.315968,-0.290685,-0.755489,0.238946,1.838580 +-1.198320,0.310919,-0.285747,-0.740974,0.235915,1.830300 +-1.190310,0.305869,-0.280809,-0.726458,0.232884,1.822020 +-1.182300,0.300820,-0.275871,-0.711943,0.229853,1.813740 +-1.174300,0.295771,-0.270933,-0.697427,0.226822,1.805460 +-1.166290,0.290722,-0.265995,-0.682911,0.223792,1.797180 +-1.158280,0.285673,-0.261057,-0.668396,0.220761,1.788900 +-1.150280,0.280624,-0.256119,-0.653880,0.217730,1.780620 +-1.142270,0.275575,-0.251181,-0.639365,0.214699,1.772340 +-1.134260,0.270526,-0.246243,-0.624849,0.211668,1.764060 +-1.126250,0.265477,-0.241305,-0.610333,0.208638,1.755780 +-1.118250,0.260427,-0.236367,-0.595818,0.205607,1.747500 +-1.110240,0.255378,-0.231429,-0.581302,0.202576,1.739220 +-1.102230,0.250329,-0.226491,-0.566787,0.199545,1.730940 +-1.094230,0.245280,-0.221553,-0.552271,0.196514,1.722660 +-1.086220,0.240231,-0.216615,-0.537755,0.193484,1.714380 +-1.078210,0.235182,-0.211677,-0.523240,0.190453,1.706100 +-1.070200,0.230133,-0.206739,-0.508724,0.187422,1.697820 +-1.062200,0.225084,-0.201801,-0.494209,0.184391,1.689540 +-1.054190,0.220035,-0.196863,-0.479693,0.181360,1.681260 +-1.046180,0.214985,-0.191925,-0.465177,0.178330,1.672980 +-1.038180,0.209936,-0.186987,-0.450662,0.175299,1.664700 +-1.030170,0.204887,-0.182049,-0.436146,0.172268,1.656420 +-1.022160,0.199838,-0.177111,-0.421630,0.169237,1.648140 +-1.014150,0.194789,-0.172173,-0.407115,0.166206,1.639860 +-1.006150,0.189740,-0.167235,-0.392599,0.163176,1.631570 +-0.998139,0.184691,-0.162297,-0.378084,0.160145,1.623290 +-0.990132,0.179642,-0.157359,-0.363568,0.157114,1.615010 +-0.982125,0.174593,-0.152421,-0.349052,0.154083,1.606730 +-0.974117,0.169543,-0.147483,-0.334537,0.151052,1.598450 +-0.966110,0.164494,-0.142545,-0.320021,0.148022,1.590170 +-0.958103,0.159445,-0.137607,-0.305506,0.144991,1.581890 +-0.950096,0.154396,-0.132670,-0.290990,0.141960,1.573610 +-0.942089,0.149347,-0.127732,-0.276474,0.138929,1.565330 +-0.934081,0.144298,-0.122794,-0.261959,0.135898,1.557050 +-0.926074,0.139249,-0.117856,-0.247443,0.132868,1.548770 +-0.918067,0.134200,-0.112918,-0.232928,0.129837,1.540490 +-0.910060,0.129151,-0.107980,-0.218412,0.126806,1.532210 +-0.902053,0.124101,-0.103042,-0.203896,0.123775,1.523930 +-0.894045,0.119052,-0.098104,-0.189381,0.120744,1.515650 +-0.886038,0.114003,-0.093166,-0.174865,0.117714,1.507370 +-0.878031,0.108954,-0.088228,-0.160349,0.114683,1.499090 +-0.870024,0.103905,-0.083290,-0.145834,0.111652,1.490810 +-0.862017,0.098856,-0.078352,-0.131318,0.108621,1.482530 +-0.854009,0.093807,-0.073414,-0.116803,0.105590,1.474250 +-0.846002,0.088758,-0.068476,-0.102287,0.102560,1.465970 +-0.837995,0.083709,-0.063538,-0.087771,0.099529,1.457690 +-0.829988,0.078659,-0.058600,-0.073256,0.096498,1.449410 +-0.821980,0.073610,-0.053662,-0.058740,0.093467,1.441130 +-0.813973,0.068561,-0.048724,-0.044225,0.090436,1.432850 +-0.805966,0.063512,-0.043786,-0.029709,0.087406,1.424570 +-0.797959,0.058463,-0.038848,-0.015193,0.084375,1.416290 +-0.789952,0.053414,-0.033910,-0.000678,0.081344,1.408010 +-0.781944,0.048365,-0.028972,0.013838,0.078313,1.399730 +-0.773937,0.043316,-0.024034,0.028353,0.075282,1.391450 +-0.765930,0.038267,-0.019096,0.042869,0.072252,1.383170 +-0.757923,0.033217,-0.014158,0.057385,0.069221,1.374890 +-0.749916,0.028168,-0.009220,0.071900,0.066190,1.366610 +-0.741908,0.023119,-0.004282,0.086416,0.063159,1.358330 +-0.733901,0.018070,0.000656,0.100931,0.060128,1.350050 +-0.725894,0.013021,0.005594,0.115447,0.057098,1.341770 +-0.717887,0.007972,0.010531,0.129963,0.054067,1.333490 +-0.709880,0.002923,0.015470,0.144478,0.051036,1.325210 +-0.701872,-0.002126,0.020407,0.158994,0.048005,1.316930 +-0.693865,-0.007175,0.025345,0.173510,0.044974,1.308650 +-0.685858,-0.012225,0.030283,0.188025,0.041944,1.300370 +-0.677851,-0.017274,0.035221,0.202541,0.038913,1.292090 +-0.669844,-0.022323,0.040159,0.217056,0.035882,1.283810 +-0.661836,-0.027372,0.045097,0.231572,0.032851,1.275530 +-0.653829,-0.032421,0.050035,0.246088,0.029820,1.267250 +-0.645822,-0.037470,0.054973,0.260603,0.026790,1.258970 +-0.637815,-0.042519,0.059911,0.275119,0.023759,1.250690 +-0.629808,-0.047568,0.064849,0.289634,0.020728,1.242410 +-0.621800,-0.052617,0.069787,0.304150,0.017697,1.234130 +-0.613793,-0.057667,0.074725,0.318666,0.014666,1.225850 +-0.605786,-0.062716,0.079663,0.333181,0.011636,1.217570 +-0.597779,-0.067765,0.084601,0.347697,0.008605,1.209280 +-0.589771,-0.072814,0.089539,0.362212,0.005574,1.201000 +-0.581764,-0.077863,0.094477,0.376728,0.002543,1.192720 +-0.573757,-0.082912,0.099415,0.391244,-0.000488,1.184440 +-0.565750,-0.087961,0.104353,0.405759,-0.003518,1.176160 +-0.557743,-0.093010,0.109291,0.420275,-0.006549,1.167880 +-0.549735,-0.098059,0.114229,0.434791,-0.009580,1.159600 +-0.541728,-0.103109,0.119167,0.449306,-0.012611,1.151320 +-0.533721,-0.108158,0.124105,0.463822,-0.015642,1.143040 +-0.525714,-0.113207,0.129043,0.478337,-0.018672,1.134760 +-0.517707,-0.118256,0.133981,0.492853,-0.021703,1.126480 +-0.509699,-0.123305,0.138919,0.507369,-0.024734,1.118200 +-0.501692,-0.128354,0.143857,0.521884,-0.027765,1.109920 +-0.493685,-0.133403,0.148795,0.536400,-0.030796,1.101640 +-0.485678,-0.138452,0.153733,0.550915,-0.033826,1.093360 +-0.477671,-0.143502,0.158671,0.565431,-0.036857,1.085080 +-0.469663,-0.148551,0.163609,0.579947,-0.039888,1.076800 +-0.461656,-0.153600,0.168547,0.594462,-0.042919,1.068520 +-0.453649,-0.158649,0.173484,0.608978,-0.045950,1.060240 +-0.445642,-0.163698,0.178422,0.623493,-0.048980,1.051960 +-0.437635,-0.168747,0.183360,0.638009,-0.052011,1.043680 +-0.429627,-0.173796,0.188298,0.652525,-0.055042,1.035400 +-0.421620,-0.178845,0.193236,0.667040,-0.058073,1.027120 +-0.413613,-0.183894,0.198174,0.681556,-0.061104,1.018840 +-0.405606,-0.188944,0.203112,0.696071,-0.064134,1.010560 +-0.397599,-0.193993,0.208050,0.710587,-0.067165,1.002280 +-0.389591,-0.199042,0.212988,0.725103,-0.070196,0.994000 +-0.381584,-0.204091,0.217926,0.739618,-0.073227,0.985720 +-0.373577,-0.209140,0.222864,0.754134,-0.076258,0.977439 +-0.365570,-0.214189,0.227802,0.768650,-0.079288,0.969159 +-0.357562,-0.219238,0.232740,0.783165,-0.082319,0.960879 +-0.349555,-0.224287,0.237678,0.797681,-0.085350,0.952599 +-0.341548,-0.229336,0.242616,0.812196,-0.088381,0.944319 +-0.333541,-0.234386,0.247554,0.826712,-0.091412,0.936038 +-0.325534,-0.239435,0.252492,0.841228,-0.094442,0.927758 +-0.317526,-0.244484,0.257430,0.855743,-0.097473,0.919478 +-0.309519,-0.249533,0.262368,0.870259,-0.100504,0.911198 +-0.301512,-0.254582,0.267306,0.884774,-0.103535,0.902918 +-0.293505,-0.259631,0.272244,0.899290,-0.106566,0.894637 +-0.285498,-0.264680,0.277182,0.913806,-0.109596,0.886357 +-0.277490,-0.269729,0.282120,0.928321,-0.112627,0.878077 +-0.269483,-0.274778,0.287058,0.942837,-0.115658,0.869797 +-0.261476,-0.279828,0.291996,0.957352,-0.118689,0.861517 +-0.253469,-0.284877,0.296934,0.971868,-0.121720,0.853236 +-0.245462,-0.289926,0.301872,0.986384,-0.124750,0.844956 +-0.237454,-0.294975,0.306810,1.000900,-0.127781,0.836676 +-0.229447,-0.300024,0.311748,1.015410,-0.130812,0.828396 +-0.221440,-0.305073,0.316686,1.029930,-0.133843,0.820116 +-0.213433,-0.310122,0.321624,1.044440,-0.136874,0.811836 +-0.205426,-0.315171,0.326562,1.058940,-0.139904,0.803555 +-0.197418,-0.320220,0.331499,1.073430,-0.142935,0.795275 +-0.189411,-0.325270,0.336437,1.087900,-0.145966,0.786995 +-0.181404,-0.330319,0.341375,1.102360,-0.148997,0.778715 +-0.173397,-0.335368,0.346313,1.116800,-0.152028,0.770435 +-0.165390,-0.340417,0.351251,1.131210,-0.155058,0.762154 +-0.157382,-0.345466,0.356189,1.145600,-0.158089,0.753874 +-0.149375,-0.350515,0.361127,1.159950,-0.161120,0.745594 +-0.141368,-0.355564,0.366065,1.174280,-0.164151,0.737314 +-0.133361,-0.360613,0.371003,1.188560,-0.167182,0.729034 +-0.125353,-0.365662,0.375941,1.202810,-0.170212,0.720753 +-0.117346,-0.370712,0.380879,1.217020,-0.173243,0.712473 +-0.109339,-0.375761,0.385817,1.231180,-0.176274,0.704193 +-0.101332,-0.380810,0.390755,1.245290,-0.179305,0.695913 +-0.093325,-0.385859,0.395693,1.259350,-0.182336,0.687633 +-0.085317,-0.390908,0.400631,1.273360,-0.185366,0.679352 +-0.077310,-0.395957,0.405569,1.287310,-0.188397,0.671072 +-0.069303,-0.401006,0.410507,1.301190,-0.191428,0.662792 +-0.061296,-0.406055,0.415445,1.315020,-0.194459,0.654512 +-0.053289,-0.411104,0.420383,1.328770,-0.197490,0.646232 +-0.045281,-0.416154,0.425321,1.342460,-0.200520,0.637951 +-0.037274,-0.421203,0.430259,1.356070,-0.203551,0.629671 +-0.029267,-0.426252,0.435197,1.369600,-0.206582,0.621391 +-0.021260,-0.431301,0.440135,1.383060,-0.209613,0.613111 +-0.013253,-0.436350,0.445073,1.396430,-0.212644,0.604831 +-0.005245,-0.441399,0.450011,1.409720,-0.215674,0.596550 +0.002762,-0.446448,0.454949,1.422920,-0.218705,0.588270 +0.010769,-0.451497,0.459887,1.436020,-0.221736,0.579990 +0.018776,-0.456547,0.464825,1.449040,-0.224767,0.571710 +0.026783,-0.461596,0.469763,1.461950,-0.227798,0.563430 +0.034791,-0.466645,0.474701,1.474760,-0.230828,0.555149 +0.042798,-0.471694,0.479639,1.487470,-0.233859,0.546869 +0.050805,-0.476743,0.484576,1.500060,-0.236890,0.538589 +0.058810,-0.481792,0.489514,1.512550,-0.239921,0.530309 +0.066811,-0.486841,0.494452,1.524930,-0.242952,0.522029 +0.074805,-0.491890,0.499390,1.537180,-0.245982,0.513748 +0.082789,-0.496939,0.504328,1.549320,-0.249013,0.505468 +0.090761,-0.501989,0.509266,1.561340,-0.252044,0.497188 +0.098718,-0.507038,0.514204,1.573220,-0.255075,0.488908 +0.106658,-0.512087,0.519142,1.584980,-0.258106,0.480628 +0.114578,-0.517136,0.524080,1.596610,-0.261136,0.472348 +0.122475,-0.522185,0.529018,1.608100,-0.264167,0.464067 +0.130347,-0.527234,0.533956,1.619450,-0.267198,0.455787 +0.138191,-0.532283,0.538894,1.630660,-0.270229,0.447507 +0.146005,-0.537332,0.543832,1.641730,-0.273260,0.439227 +0.153786,-0.542381,0.548770,1.652640,-0.276290,0.430947 +0.161532,-0.547431,0.553708,1.663410,-0.279321,0.422671 +0.169239,-0.552480,0.558646,1.674020,-0.282352,0.414401 +0.176905,-0.557529,0.563584,1.684470,-0.285383,0.406141 +0.184528,-0.562578,0.568522,1.694780,-0.288414,0.397894 +0.192106,-0.567627,0.573460,1.704920,-0.291444,0.389663 +0.199634,-0.572676,0.578398,1.714910,-0.294475,0.381450 +0.207112,-0.577725,0.583336,1.724740,-0.297506,0.373259 +0.214535,-0.582774,0.588274,1.734420,-0.300537,0.365094 +0.221903,-0.587823,0.593212,1.743940,-0.303568,0.356957 +0.229211,-0.592873,0.598150,1.753310,-0.306598,0.348851 +0.236458,-0.597922,0.603088,1.762520,-0.309629,0.340780 +0.243641,-0.602971,0.608026,1.771580,-0.312660,0.332746 +0.250757,-0.608020,0.612964,1.780480,-0.315691,0.324754 +0.257804,-0.613069,0.617902,1.789230,-0.318722,0.316804 +0.264778,-0.618118,0.622840,1.797810,-0.321752,0.308902 +0.271679,-0.623167,0.627778,1.806250,-0.324783,0.301050 +0.278502,-0.628216,0.632716,1.814530,-0.327814,0.293251 +0.285245,-0.633265,0.637653,1.822650,-0.330845,0.285509 +0.291907,-0.638315,0.642591,1.830620,-0.333876,0.277825 +0.298483,-0.643364,0.647529,1.838430,-0.336906,0.270204 +0.304972,-0.648413,0.652467,1.846090,-0.339937,0.262649 +0.311370,-0.653462,0.657405,1.853590,-0.342968,0.255163 +0.317676,-0.658511,0.662343,1.860930,-0.345999,0.247748 +0.323887,-0.663560,0.667281,1.868120,-0.349030,0.240408 +0.330000,-0.668609,0.672219,1.875160,-0.352060,0.233146 +0.336012,-0.673658,0.677157,1.882040,-0.355091,0.225966 +0.341922,-0.678707,0.682095,1.888760,-0.358122,0.218869 +0.347725,-0.683757,0.687033,1.895330,-0.361153,0.211860 +0.353421,-0.688806,0.691971,1.901740,-0.364184,0.204942 +0.359005,-0.693855,0.696909,1.908000,-0.367214,0.198117 +0.364476,-0.698904,0.701847,1.914100,-0.370245,0.191389 +0.369831,-0.703953,0.706785,1.920040,-0.373276,0.184760 +0.375068,-0.709002,0.711723,1.925830,-0.376307,0.178235 +0.380183,-0.714051,0.716661,1.931470,-0.379338,0.171815 +0.385174,-0.719100,0.721599,1.936950,-0.382368,0.165505 +0.390039,-0.724149,0.726537,1.942270,-0.385399,0.159307 +0.394775,-0.729199,0.731475,1.947440,-0.388430,0.153224 +0.399381,-0.734248,0.736413,1.952450,-0.391461,0.147260 +0.403857,-0.739297,0.741351,1.957310,-0.394492,0.141417 +0.408204,-0.744346,0.746289,1.962010,-0.397522,0.135699 +0.412420,-0.749395,0.751227,1.966560,-0.400553,0.130109 +0.416507,-0.754444,0.756165,1.970950,-0.403584,0.124650 +0.420464,-0.759493,0.761103,1.975180,-0.406615,0.119325 +0.424291,-0.764542,0.766041,1.979260,-0.409646,0.114137 +0.427989,-0.769591,0.770979,1.983180,-0.412676,0.109089 +0.431556,-0.774641,0.775916,1.986950,-0.415707,0.104184 +0.434994,-0.779690,0.780850,1.990560,-0.418738,0.099426 +0.438303,-0.784738,0.785779,1.994020,-0.421769,0.094818 +0.441484,-0.789783,0.790700,1.997320,-0.424800,0.090362 +0.444540,-0.794822,0.795610,2.000470,-0.427830,0.086061 +0.447474,-0.799853,0.800506,2.003460,-0.430858,0.081916 +0.450288,-0.804872,0.805387,2.006300,-0.433879,0.077924 +0.452986,-0.809878,0.810249,2.008980,-0.436892,0.074083 +0.455569,-0.814868,0.815089,2.011500,-0.439892,0.070389 +0.458041,-0.819839,0.819907,2.013880,-0.442877,0.066839 +0.460403,-0.824788,0.824697,2.016110,-0.445844,0.063430 +0.462659,-0.829713,0.829459,2.018200,-0.448789,0.060159 +0.464810,-0.834612,0.834190,2.020140,-0.451709,0.057023 +0.466861,-0.839482,0.838886,2.021950,-0.454602,0.054018 +0.468812,-0.844319,0.843545,2.023630,-0.457464,0.051142 +0.470668,-0.849122,0.848165,2.025170,-0.460292,0.048392 +0.472430,-0.853889,0.852744,2.026590,-0.463083,0.045764 +0.474101,-0.858615,0.857277,2.027880,-0.465833,0.043255 +0.475683,-0.863300,0.861764,2.029050,-0.468541,0.040863 +0.477180,-0.867939,0.866201,2.030100,-0.471202,0.038583 +0.478593,-0.872531,0.870585,2.031030,-0.473813,0.036414 +0.479926,-0.877073,0.874915,2.031850,-0.476372,0.034351 +0.481181,-0.881563,0.879187,2.032570,-0.478875,0.032392 +0.482360,-0.885997,0.883399,2.033170,-0.481319,0.030533 +0.483467,-0.890374,0.887549,2.033680,-0.483702,0.028772 +0.484503,-0.894690,0.891633,2.034080,-0.486019,0.027106 +0.485472,-0.898943,0.895649,2.034390,-0.488268,0.025530 +0.486376,-0.903131,0.899595,2.034600,-0.490446,0.024043 +0.487217,-0.907250,0.903468,2.034720,-0.492549,0.022641 +0.487999,-0.911298,0.907265,2.034760,-0.494575,0.021321 +0.488723,-0.915274,0.910984,2.034700,-0.496521,0.020080 +0.489392,-0.919173,0.914621,2.034570,-0.498382,0.018914 +0.490010,-0.922994,0.918176,2.034360,-0.500157,0.017821 +0.490578,-0.926733,0.921644,2.034080,-0.501842,0.016798 +0.491099,-0.930389,0.925024,2.033720,-0.503433,0.015841 +0.491576,-0.933958,0.928313,2.033300,-0.504929,0.014947 +0.492012,-0.937439,0.931507,2.032800,-0.506325,0.014113 +0.492408,-0.940828,0.934609,2.032250,-0.507619,0.013337 +0.492768,-0.944123,0.937619,2.031630,-0.508807,0.012614 +0.493094,-0.947321,0.940541,2.030960,-0.509887,0.011942 +0.493388,-0.950419,0.943377,2.030240,-0.510855,0.011318 +0.493654,-0.953416,0.946131,2.029470,-0.511709,0.010739 +0.493894,-0.956308,0.948803,2.028640,-0.512446,0.010201 +0.494111,-0.959093,0.951398,2.027780,-0.513072,0.009701 +0.494306,-0.961769,0.953917,2.026870,-0.513587,0.009237 +0.494483,-0.964336,0.956364,2.025930,-0.513997,0.008805 +0.494645,-0.966796,0.958740,2.024950,-0.514303,0.008402 +0.494793,-0.969153,0.961049,2.023940,-0.514509,0.008025 +0.494931,-0.971408,0.963293,2.022900,-0.514618,0.007671 +0.495061,-0.973565,0.965474,2.021830,-0.514633,0.007336 +0.495186,-0.975626,0.967596,2.020750,-0.514557,0.007018 +0.495308,-0.977593,0.969660,2.019640,-0.514394,0.006714 +0.495430,-0.979470,0.971670,2.018520,-0.514146,0.006420 +0.495554,-0.981258,0.973628,2.017380,-0.513816,0.006133 +0.495684,-0.982961,0.975536,2.016240,-0.513408,0.005851 +0.495821,-0.984581,0.977398,2.015090,-0.512925,0.005569 +0.495968,-0.986121,0.979215,2.013930,-0.512370,0.005286 +0.496129,-0.987582,0.980991,2.012780,-0.511745,0.004997 +0.496304,-0.988969,0.982728,2.011620,-0.511055,0.004700 +0.496498,-0.990283,0.984428,2.010480,-0.510302,0.004392 +0.496712,-0.991527,0.986095,2.009340,-0.509489,0.004069 +0.496950,-0.992703,0.987730,2.008210,-0.508620,0.003729 +0.497214,-0.993815,0.989337,2.007100,-0.507697,0.003368 +0.497506,-0.994865,0.990917,2.006010,-0.506724,0.002983 +0.497829,-0.995854,0.992475,2.004930,-0.505703,0.002572 +0.498185,-0.996787,0.994011,2.003890,-0.504638,0.002130 +0.498578,-0.997666,0.995529,2.002860,-0.503532,0.001655 +0.499010,-0.998492,0.997032,2.001880,-0.502389,0.001144 +0.499483,-0.999269,0.998521,2.000920,-0.501210,0.000593 +0.500000,-1.000000,1.000000,2.000000,-0.500000,0.000000 +0.501271,-1.001423,1.003158,1.998155,-0.497295,-0.001431 +0.502752,-1.002634,1.006262,1.996505,-0.494472,-0.003066 +0.504436,-1.003626,1.009298,1.995059,-0.491544,-0.004897 +0.506312,-1.004396,1.012248,1.993824,-0.488528,-0.006914 +0.508372,-1.004937,1.015098,1.992806,-0.485439,-0.009107 +0.510605,-1.005249,1.017833,1.992012,-0.482292,-0.011464 +0.513000,-1.005328,1.020438,1.991444,-0.479106,-0.013973 +0.515542,-1.005175,1.022901,1.991107,-0.475895,-0.016621 +0.518221,-1.004791,1.025207,1.991001,-0.472677,-0.019394 +0.521021,-1.004177,1.027345,1.991128,-0.469469,-0.022278 +0.523927,-1.003336,1.029305,1.991487,-0.466287,-0.025257 +0.526926,-1.002274,1.031075,1.992075,-0.463149,-0.028316 +0.530000,-1.000995,1.032646,1.992890,-0.460069,-0.031439 +0.533135,-0.999507,1.034011,1.993928,-0.457065,-0.034610 +0.536313,-0.997816,1.035162,1.995182,-0.454152,-0.037812 +0.539519,-0.995933,1.036093,1.996648,-0.451345,-0.041028 +0.542735,-0.993865,1.036799,1.998316,-0.448659,-0.044243 +0.545944,-0.991626,1.037277,2.000178,-0.446108,-0.047438 +0.549131,-0.989225,1.037524,2.002225,-0.443705,-0.050598 +0.552278,-0.986677,1.037539,2.004446,-0.441463,-0.053706 +0.555368,-0.983993,1.037322,2.006829,-0.439393,-0.056745 +0.558387,-0.981187,1.036874,2.009362,-0.437506,-0.059700 +0.561317,-0.978276,1.036196,2.012031,-0.435813,-0.062556 +0.564144,-0.975273,1.035294,2.014823,-0.434321,-0.065297 +0.566854,-0.972195,1.034171,2.017724,-0.433039,-0.067909 +0.569431,-0.969057,1.032833,2.020717,-0.431973,-0.070379 +0.571862,-0.965875,1.031288,2.023788,-0.431129,-0.072694 +0.574136,-0.962668,1.029543,2.026920,-0.430511,-0.074841 +0.576239,-0.959450,1.027607,2.030097,-0.430123,-0.076810 +0.578161,-0.956239,1.025491,2.033303,-0.429966,-0.078590 +0.579892,-0.953052,1.023206,2.036520,-0.430042,-0.080172 +0.581423,-0.949905,1.020763,2.039733,-0.430350,-0.081547 +0.582746,-0.946814,1.018175,2.042923,-0.430888,-0.082709 +0.583854,-0.943797,1.015456,2.046076,-0.431653,-0.083652 +0.584742,-0.940868,1.012620,2.049173,-0.432643,-0.084370 +0.585403,-0.938043,1.009681,2.052200,-0.433850,-0.084859 +0.585836,-0.935336,1.006656,2.055140,-0.435270,-0.085118 +0.586038,-0.932762,1.003559,2.057977,-0.436894,-0.085145 +0.586008,-0.930334,1.000408,2.060698,-0.438714,-0.084940 +0.585746,-0.928064,0.997217,2.063288,-0.440722,-0.084503 +0.585253,-0.925965,0.994005,2.065733,-0.442905,-0.083837 +0.584532,-0.924048,0.990788,2.068021,-0.445254,-0.082946 +0.583587,-0.922322,0.987582,2.070139,-0.447755,-0.081835 +0.582422,-0.920797,0.984404,2.072078,-0.450395,-0.080508 +0.581044,-0.919480,0.981271,2.073825,-0.453162,-0.078973 +0.579460,-0.918378,0.978199,2.075374,-0.456039,-0.077238 +0.577678,-0.917498,0.975205,2.076715,-0.459014,-0.075312 +0.575708,-0.916843,0.972303,2.077841,-0.462069,-0.073205 +0.573559,-0.916417,0.969509,2.078746,-0.465189,-0.070927 +0.571244,-0.916222,0.966838,2.079427,-0.468357,-0.068492 +0.568773,-0.916260,0.964303,2.079879,-0.471558,-0.065912 +0.566160,-0.916530,0.961918,2.080099,-0.474774,-0.063199 +0.563419,-0.917030,0.959695,2.080088,-0.477989,-0.060369 +0.560563,-0.917759,0.957645,2.079844,-0.481186,-0.057435 +0.557608,-0.918712,0.955780,2.079369,-0.484349,-0.054414 +0.554569,-0.919884,0.954109,2.078666,-0.487460,-0.051320 +0.551462,-0.921269,0.952641,2.077738,-0.490503,-0.048171 +0.548304,-0.922861,0.951383,2.076591,-0.493463,-0.044982 +0.545110,-0.924650,0.950342,2.075229,-0.496325,-0.041771 +0.541897,-0.926627,0.949524,2.073660,-0.499072,-0.038553 +0.538682,-0.928782,0.948932,2.071893,-0.501692,-0.035346 +0.535482,-0.931105,0.948570,2.069937,-0.504170,-0.032167 +0.532313,-0.933581,0.948440,2.067801,-0.506494,-0.029031 +0.529193,-0.936200,0.948542,2.065497,-0.508650,-0.025956 +0.526137,-0.938947,0.948876,2.063036,-0.510629,-0.022957 +0.523161,-0.941808,0.949440,2.060433,-0.512420,-0.020050 +0.520280,-0.944767,0.950232,2.057700,-0.514013,-0.017250 +0.517511,-0.947810,0.951246,2.054851,-0.515400,-0.014572 +0.514866,-0.950920,0.952478,2.051902,-0.516574,-0.012030 +0.512361,-0.954082,0.953921,2.048868,-0.517528,-0.009637 +0.510008,-0.957279,0.955568,2.045764,-0.518259,-0.007405 +0.507818,-0.960494,0.957410,2.042607,-0.518761,-0.005347 +0.505805,-0.963710,0.959438,2.039414,-0.519033,-0.003472 +0.503978,-0.966911,0.961641,2.036200,-0.519072,-0.001790 +0.502347,-0.970080,0.964008,2.032983,-0.518879,-0.000312 +0.500919,-0.973201,0.966525,2.029779,-0.518455,0.000957 +0.499704,-0.976256,0.969181,2.026606,-0.517802,0.002009 +0.498707,-0.979231,0.971961,2.023479,-0.516923,0.002839 +0.497933,-0.982110,0.974850,2.020416,-0.515824,0.003442 +0.497386,-0.984877,0.977834,2.017431,-0.514508,0.003816 +0.497069,-0.987519,0.980898,2.014541,-0.512985,0.003958 +0.496984,-0.990021,0.984024,2.011760,-0.511260,0.003868 +0.497131,-0.992371,0.987197,2.009104,-0.509344,0.003546 +0.497510,-0.994556,0.990401,2.006585,-0.507247,0.002993 +0.498118,-0.996564,0.993618,2.004218,-0.504979,0.002213 +0.498953,-0.998386,0.996831,2.002014,-0.502552,0.001210 +0.500009,-1.000012,1.000025,1.999985,-0.499979,-0.000011 +0.501282,-1.001433,1.003182,1.998141,-0.497273,-0.001443 +0.502765,-1.002643,1.006287,1.996493,-0.494449,-0.003080 +0.504450,-1.003633,1.009321,1.995048,-0.491521,-0.004913 +0.506328,-1.004401,1.012271,1.993815,-0.488504,-0.006931 +0.508389,-1.004941,1.015120,1.992799,-0.485414,-0.009125 +0.510624,-1.005250,1.017854,1.992006,-0.482267,-0.011484 +0.513019,-1.005328,1.020458,1.991441,-0.479080,-0.013994 +0.515563,-1.005173,1.022920,1.991105,-0.475870,-0.016643 +0.518243,-1.004787,1.025225,1.991001,-0.472652,-0.019417 +0.521043,-1.004171,1.027362,1.991130,-0.469444,-0.022301 +0.523951,-1.003329,1.029320,1.991490,-0.466262,-0.025281 +0.526950,-1.002265,1.031088,1.992081,-0.463124,-0.028340 +0.530025,-1.000984,1.032658,1.992897,-0.460045,-0.031464 +0.533160,-0.999494,1.034021,1.993937,-0.457041,-0.034635 +0.536339,-0.997802,1.035170,1.995193,-0.454129,-0.037837 +0.539544,-0.995917,1.036099,1.996660,-0.451323,-0.041054 +0.542760,-0.993848,1.036804,1.998330,-0.448638,-0.044268 +0.545970,-0.991607,1.037280,2.000194,-0.446088,-0.047464 +0.549156,-0.989206,1.037525,2.002242,-0.443686,-0.050623 +0.552302,-0.986656,1.037538,2.004464,-0.441445,-0.053730 +0.555393,-0.983971,1.037319,2.006849,-0.439377,-0.056769 +0.558410,-0.981165,1.036869,2.009382,-0.437492,-0.059723 +0.561340,-0.978252,1.036190,2.012053,-0.435800,-0.062578 +0.564166,-0.975249,1.035286,2.014846,-0.434310,-0.065318 +0.566875,-0.972170,1.034161,2.017747,-0.433029,-0.067930 +0.569451,-0.969032,1.032822,2.020741,-0.431965,-0.070398 +0.571881,-0.965850,1.031275,2.023812,-0.431123,-0.072712 +0.574153,-0.962642,1.029528,2.026945,-0.430507,-0.074858 +0.576255,-0.959424,1.027591,2.030122,-0.430121,-0.076825 +0.578176,-0.956214,1.025474,2.033328,-0.429966,-0.078603 +0.579905,-0.953027,1.023187,2.036546,-0.430044,-0.080184 +0.581435,-0.949880,1.020743,2.039758,-0.430353,-0.081557 +0.582756,-0.946790,1.018154,2.042949,-0.430893,-0.082718 +0.583862,-0.943773,1.015434,2.046101,-0.431660,-0.083658 +0.584748,-0.940845,1.012597,2.049198,-0.432651,-0.084374 +0.585408,-0.938021,1.009658,2.052224,-0.433861,-0.084862 +0.585839,-0.935315,1.006632,2.055163,-0.435282,-0.085119 +0.586039,-0.932742,1.003534,2.057999,-0.436908,-0.085144 +0.586007,-0.930315,1.000382,2.060719,-0.438730,-0.084937 +0.585743,-0.928047,0.997192,2.063308,-0.440738,-0.084499 +0.585248,-0.925949,0.993980,2.065752,-0.442923,-0.083831 +0.584525,-0.924034,0.990762,2.068038,-0.445273,-0.082938 +0.583578,-0.922309,0.987556,2.070155,-0.447775,-0.081825 +0.582412,-0.920786,0.984379,2.072092,-0.450417,-0.080496 +0.581033,-0.919470,0.981246,2.073839,-0.453184,-0.078960 +0.579447,-0.918370,0.978175,2.075385,-0.456063,-0.077223 +0.577664,-0.917492,0.975181,2.076724,-0.459038,-0.075296 +0.575692,-0.916839,0.972280,2.077849,-0.462093,-0.073187 +0.573542,-0.916414,0.969487,2.078753,-0.465214,-0.070909 +0.571225,-0.916222,0.966817,2.079431,-0.468383,-0.068472 +0.568753,-0.916261,0.964283,2.079881,-0.471584,-0.065891 +0.566139,-0.916533,0.961899,2.080100,-0.474800,-0.063177 +0.563396,-0.917035,0.959678,2.080087,-0.478015,-0.060346 +0.560540,-0.917766,0.957629,2.079841,-0.481212,-0.057411 +0.557584,-0.918720,0.955766,2.079365,-0.484374,-0.054389 +0.554545,-0.919894,0.954096,2.078660,-0.487484,-0.051295 +0.551437,-0.921281,0.952630,2.077730,-0.490527,-0.048146 +0.548278,-0.922874,0.951374,2.076581,-0.493486,-0.044957 +0.545084,-0.924665,0.950335,2.075217,-0.496347,-0.041745 +0.541871,-0.926643,0.949518,2.073647,-0.499094,-0.038528 +0.538656,-0.928800,0.948928,2.071878,-0.501712,-0.035321 +0.535457,-0.931124,0.948568,2.069920,-0.504189,-0.032141 +0.532288,-0.933602,0.948440,2.067783,-0.506512,-0.029006 +0.529168,-0.936222,0.948544,2.065478,-0.508667,-0.025932 +0.526113,-0.938969,0.948880,2.063016,-0.510644,-0.022933 +0.523137,-0.941831,0.949446,2.060412,-0.512433,-0.020027 +0.520258,-0.944791,0.950239,2.057678,-0.514025,-0.017229 +0.517489,-0.947834,0.951255,2.054828,-0.515410,-0.014552 +0.514846,-0.950945,0.952488,2.051879,-0.516582,-0.012011 +0.512342,-0.954108,0.953933,2.048844,-0.517535,-0.009619 +0.509989,-0.957305,0.955582,2.045739,-0.518264,-0.007388 +0.507802,-0.960520,0.957426,2.042582,-0.518764,-0.005331 +0.505790,-0.963736,0.959455,2.039388,-0.519034,-0.003458 +0.503964,-0.966937,0.961659,2.036175,-0.519072,-0.001778 +0.502334,-0.970105,0.964027,2.032958,-0.518877,-0.000301 +0.500909,-0.973225,0.966546,2.029754,-0.518451,0.000966 +0.499695,-0.976280,0.969202,2.026581,-0.517796,0.002017 +0.498700,-0.979255,0.971983,2.023455,-0.516916,0.002845 +0.497927,-0.982132,0.974874,2.020391,-0.515814,0.003446 +0.497382,-0.984899,0.977858,2.017407,-0.514497,0.003818 +0.497067,-0.987539,0.980922,2.014518,-0.512972,0.003958 +0.496984,-0.990040,0.984049,2.011738,-0.511246,0.003866 +0.497133,-0.992389,0.987223,2.009083,-0.509328,0.003542 +0.497514,-0.994572,0.990426,2.006566,-0.507230,0.002988 +0.498124,-0.996579,0.993643,2.004199,-0.504960,0.002206 +0.498960,-0.998400,0.996857,2.001997,-0.502532,0.001202 +0.500019,-1.000024,1.000051,1.999969,-0.499958,-0.000021 +0.501293,-1.001444,1.003207,1.998127,-0.497251,-0.001455 +0.502778,-1.002651,1.006311,1.996480,-0.494426,-0.003094 +0.504464,-1.003640,1.009345,1.995037,-0.491497,-0.004928 +0.506344,-1.004406,1.012294,1.993806,-0.488479,-0.006948 +0.508407,-1.004944,1.015143,1.992792,-0.485389,-0.009144 +0.510642,-1.005252,1.017875,1.992001,-0.482242,-0.011503 +0.513039,-1.005327,1.020479,1.991437,-0.479055,-0.014014 +0.515584,-1.005171,1.022939,1.991103,-0.475844,-0.016664 +0.518265,-1.004783,1.025242,1.991001,-0.472626,-0.019439 +0.521066,-1.004165,1.027378,1.991132,-0.469418,-0.022324 +0.523974,-1.003321,1.029334,1.991494,-0.466237,-0.025305 +0.526974,-1.002255,1.031101,1.992086,-0.463099,-0.028365 +0.530050,-1.000973,1.032670,1.992905,-0.460021,-0.031489 +0.533185,-0.999481,1.034031,1.993946,-0.457018,-0.034660 +0.536364,-0.997788,1.035178,1.995204,-0.454106,-0.037863 +0.539570,-0.995901,1.036106,1.996673,-0.451301,-0.041080 +0.542786,-0.993831,1.036809,1.998344,-0.448617,-0.044294 +0.545995,-0.991589,1.037283,2.000209,-0.446068,-0.047489 +0.549181,-0.989186,1.037526,2.002259,-0.443668,-0.050648 +0.552327,-0.986635,1.037538,2.004483,-0.441428,-0.053755 +0.555417,-0.983949,1.037317,2.006868,-0.439361,-0.056793 +0.558434,-0.981142,1.036865,2.009403,-0.437478,-0.059747 +0.561363,-0.978229,1.036184,2.012075,-0.435787,-0.062600 +0.564188,-0.975225,1.035278,2.014869,-0.434299,-0.065340 +0.566896,-0.972145,1.034151,2.017771,-0.433020,-0.067950 +0.569471,-0.969006,1.032810,2.020765,-0.431958,-0.070417 +0.571900,-0.965825,1.031262,2.023837,-0.431117,-0.072729 +0.574171,-0.962616,1.029513,2.026970,-0.430503,-0.074874 +0.576271,-0.959399,1.027575,2.030148,-0.430119,-0.076840 +0.578190,-0.956188,1.025456,2.033354,-0.429966,-0.078617 +0.579918,-0.953001,1.023168,2.036571,-0.430045,-0.080195 +0.581446,-0.949855,1.020723,2.039784,-0.430357,-0.081567 +0.582766,-0.946766,1.018133,2.042974,-0.430898,-0.082726 +0.583870,-0.943750,1.015412,2.046125,-0.431667,-0.083665 +0.584754,-0.940822,1.012574,2.049222,-0.432660,-0.084379 +0.585412,-0.937999,1.009634,2.052247,-0.433871,-0.084865 +0.585841,-0.935294,1.006607,2.055186,-0.435294,-0.085121 +0.586040,-0.932722,1.003510,2.058021,-0.436921,-0.085144 +0.586006,-0.930296,1.000357,2.060740,-0.438745,-0.084935 +0.585740,-0.928029,0.997166,2.063328,-0.440755,-0.084494 +0.585243,-0.925933,0.993954,2.065771,-0.442941,-0.083825 +0.584519,-0.924019,0.990736,2.068056,-0.445292,-0.082930 +0.583570,-0.922296,0.987531,2.070172,-0.447796,-0.081815 +0.582402,-0.920774,0.984354,2.072107,-0.450438,-0.080485 +0.581021,-0.919461,0.981222,2.073852,-0.453207,-0.078947 +0.579433,-0.918363,0.978151,2.075397,-0.456086,-0.077209 +0.577649,-0.917486,0.975158,2.076734,-0.459062,-0.075280 +0.575675,-0.916834,0.972258,2.077857,-0.462118,-0.073170 +0.573524,-0.916412,0.969466,2.078759,-0.465239,-0.070890 +0.571205,-0.916221,0.966796,2.079436,-0.468408,-0.068452 +0.568732,-0.916263,0.964264,2.079884,-0.471609,-0.065869 +0.566117,-0.916536,0.961881,2.080101,-0.474826,-0.063155 +0.563374,-0.917040,0.959661,2.080086,-0.478041,-0.060323 +0.560517,-0.917772,0.957614,2.079838,-0.481237,-0.057388 +0.557560,-0.918729,0.955752,2.079360,-0.484399,-0.054365 +0.554520,-0.919904,0.954084,2.078653,-0.487509,-0.051271 +0.551413,-0.921293,0.952619,2.077722,-0.490551,-0.048121 +0.548253,-0.922888,0.951364,2.076571,-0.493510,-0.044931 +0.545059,-0.924680,0.950327,2.075206,-0.496369,-0.041720 +0.541846,-0.926660,0.949512,2.073634,-0.499115,-0.038502 +0.538631,-0.928818,0.948924,2.071864,-0.501733,-0.035295 +0.535431,-0.931143,0.948566,2.069904,-0.504208,-0.032116 +0.532263,-0.933622,0.948440,2.067765,-0.506529,-0.028982 +0.529144,-0.936243,0.948546,2.065459,-0.508683,-0.025907 +0.526089,-0.938992,0.948883,2.062996,-0.510659,-0.022910 +0.523114,-0.941854,0.949451,2.060391,-0.512447,-0.020005 +0.520235,-0.944815,0.950246,2.057656,-0.514036,-0.017207 +0.517468,-0.947859,0.951264,2.054805,-0.515420,-0.014531 +0.514825,-0.950970,0.952499,2.051855,-0.516591,-0.011991 +0.512322,-0.954133,0.953946,2.048819,-0.517542,-0.009600 +0.509971,-0.957330,0.955596,2.045714,-0.518268,-0.007371 +0.507785,-0.960545,0.957441,2.042557,-0.518767,-0.005315 +0.505775,-0.963761,0.959472,2.039363,-0.519035,-0.003443 +0.503950,-0.966962,0.961678,2.036149,-0.519071,-0.001765 +0.502322,-0.970130,0.964046,2.032932,-0.518874,-0.000290 +0.500898,-0.973250,0.966566,2.029729,-0.518447,0.000976 +0.499686,-0.976304,0.969224,2.026556,-0.517790,0.002024 +0.498693,-0.979278,0.972006,2.023430,-0.516908,0.002850 +0.497922,-0.982155,0.974897,2.020367,-0.515804,0.003450 +0.497379,-0.984920,0.977883,2.017384,-0.514486,0.003820 +0.497066,-0.987560,0.980947,2.014495,-0.512959,0.003958 +0.496985,-0.990060,0.984074,2.011717,-0.511231,0.003864 +0.497136,-0.992407,0.987248,2.009062,-0.509312,0.003539 +0.497518,-0.994589,0.990452,2.006546,-0.507212,0.002983 +0.498130,-0.996595,0.993669,2.004181,-0.504941,0.002199 +0.498968,-0.998414,0.996882,2.001980,-0.502512,0.001193 +0.500028,-1.000036,1.000076,1.999954,-0.499937,-0.000032 +0.501304,-1.001454,1.003232,1.998113,-0.497229,-0.001468 +0.502790,-1.002660,1.006335,1.996468,-0.494403,-0.003108 +0.504478,-1.003647,1.009369,1.995027,-0.491473,-0.004943 +0.506359,-1.004411,1.012317,1.993797,-0.488455,-0.006965 +0.508424,-1.004947,1.015165,1.992785,-0.485364,-0.009162 +0.510661,-1.005253,1.017897,1.991995,-0.482217,-0.011522 +0.513059,-1.005327,1.020499,1.991433,-0.479029,-0.014035 +0.515605,-1.005169,1.022957,1.991102,-0.475818,-0.016686 +0.518286,-1.004779,1.025260,1.991002,-0.472601,-0.019462 +0.521089,-1.004159,1.027394,1.991134,-0.469393,-0.022348 +0.523998,-1.003313,1.029349,1.991498,-0.466212,-0.025329 +0.526998,-1.002246,1.031115,1.992092,-0.463074,-0.028389 +0.530075,-1.000962,1.032681,1.992912,-0.459996,-0.031514 +0.533211,-0.999469,1.034041,1.993955,-0.456994,-0.034686 +0.536390,-0.997773,1.035187,1.995215,-0.454084,-0.037888 +0.539596,-0.995885,1.036112,1.996685,-0.451279,-0.041105 +0.542812,-0.993814,1.036813,1.998358,-0.448596,-0.044319 +0.546021,-0.991570,1.037286,2.000225,-0.446049,-0.047514 +0.549206,-0.989166,1.037527,2.002276,-0.443649,-0.050673 +0.552352,-0.986614,1.037537,2.004501,-0.441411,-0.053779 +0.555441,-0.983927,1.037314,2.006888,-0.439346,-0.056817 +0.558458,-0.981119,1.036860,2.009424,-0.437463,-0.059770 +0.561386,-0.978205,1.036177,2.012097,-0.435775,-0.062623 +0.564211,-0.975200,1.035270,2.014891,-0.434288,-0.065361 +0.566917,-0.972120,1.034141,2.017794,-0.433011,-0.067970 +0.569491,-0.968981,1.032799,2.020789,-0.431950,-0.070436 +0.571919,-0.965799,1.031248,2.023862,-0.431111,-0.072747 +0.574188,-0.962591,1.029499,2.026995,-0.430499,-0.074890 +0.576287,-0.959373,1.027559,2.030173,-0.430117,-0.076855 +0.578205,-0.956163,1.025438,2.033379,-0.429966,-0.078630 +0.579931,-0.952976,1.023149,2.036597,-0.430047,-0.080207 +0.581458,-0.949830,1.020702,2.039809,-0.430360,-0.081578 +0.582775,-0.946742,1.018111,2.042999,-0.430904,-0.082734 +0.583878,-0.943726,1.015389,2.046150,-0.431674,-0.083672 +0.584760,-0.940799,1.012551,2.049246,-0.432669,-0.084384 +0.585416,-0.937977,1.009610,2.052271,-0.433882,-0.084868 +0.585844,-0.935273,1.006583,2.055209,-0.435306,-0.085122 +0.586040,-0.932702,1.003485,2.058044,-0.436935,-0.085143 +0.586005,-0.930278,1.000332,2.060761,-0.438760,-0.084932 +0.585737,-0.928012,0.997141,2.063348,-0.440772,-0.084490 +0.585238,-0.925918,0.993928,2.065789,-0.442959,-0.083819 +0.584512,-0.924005,0.990711,2.068073,-0.445312,-0.082922 +0.583562,-0.922283,0.987505,2.070188,-0.447816,-0.081805 +0.582392,-0.920763,0.984329,2.072122,-0.450460,-0.080473 +0.581009,-0.919451,0.981197,2.073865,-0.453229,-0.078934 +0.579420,-0.918355,0.978127,2.075408,-0.456109,-0.077194 +0.577634,-0.917479,0.975134,2.076744,-0.459086,-0.075263 +0.575659,-0.916830,0.972235,2.077865,-0.462142,-0.073152 +0.573506,-0.916410,0.969444,2.078765,-0.465264,-0.070871 +0.571186,-0.916221,0.966776,2.079440,-0.468433,-0.068432 +0.568712,-0.916264,0.964244,2.079887,-0.471635,-0.065848 +0.566096,-0.916539,0.961863,2.080102,-0.474851,-0.063133 +0.563352,-0.917045,0.959644,2.080085,-0.478066,-0.060300 +0.560494,-0.917779,0.957598,2.079835,-0.481262,-0.057364 +0.557536,-0.918737,0.955738,2.079355,-0.484424,-0.054341 +0.554496,-0.919915,0.954071,2.078647,-0.487533,-0.051246 +0.551388,-0.921305,0.952608,2.077714,-0.490575,-0.048095 +0.548228,-0.922901,0.951355,2.076561,-0.493533,-0.044906 +0.545033,-0.924695,0.950320,2.075194,-0.496392,-0.041694 +0.541820,-0.926676,0.949507,2.073621,-0.499137,-0.038476 +0.538605,-0.928836,0.948921,2.071849,-0.501753,-0.035270 +0.535406,-0.931162,0.948564,2.069888,-0.504228,-0.032091 +0.532238,-0.933642,0.948440,2.067748,-0.506547,-0.028957 +0.529119,-0.936264,0.948547,2.065440,-0.508700,-0.025883 +0.526065,-0.939014,0.948887,2.062976,-0.510674,-0.022886 +0.523091,-0.941877,0.949457,2.060369,-0.512460,-0.019982 +0.520213,-0.944839,0.950253,2.057633,-0.514048,-0.017185 +0.517446,-0.947883,0.951273,2.054782,-0.515430,-0.014510 +0.514805,-0.950995,0.952510,2.051831,-0.516599,-0.011971 +0.512303,-0.954158,0.953958,2.048795,-0.517548,-0.009582 +0.509953,-0.957356,0.955610,2.045690,-0.518273,-0.007354 +0.507768,-0.960571,0.957457,2.042532,-0.518770,-0.005300 +0.505759,-0.963787,0.959489,2.039337,-0.519036,-0.003429 +0.503937,-0.966987,0.961696,2.036123,-0.519070,-0.001753 +0.502310,-0.970155,0.964066,2.032906,-0.518872,-0.000279 +0.500888,-0.973275,0.966587,2.029703,-0.518442,0.000985 +0.499678,-0.976328,0.969246,2.026531,-0.517784,0.002032 +0.498686,-0.979301,0.972028,2.023405,-0.516900,0.002856 +0.497917,-0.982177,0.974920,2.020343,-0.515795,0.003454 +0.497375,-0.984942,0.977907,2.017361,-0.514474,0.003822 +0.497064,-0.987580,0.980972,2.014473,-0.512946,0.003959 +0.496985,-0.990079,0.984099,2.011695,-0.511217,0.003863 +0.497138,-0.992425,0.987273,2.009042,-0.509296,0.003535 +0.497522,-0.994606,0.990477,2.006527,-0.507195,0.002977 +0.498136,-0.996610,0.993694,2.004163,-0.504923,0.002192 +0.498975,-0.998427,0.996908,2.001963,-0.502492,0.001184 +0.500037,-1.000048,1.000101,1.999938,-0.499916,-0.000042 +0.501315,-1.001465,1.003257,1.998099,-0.497207,-0.001480 +0.502803,-1.002669,1.006360,1.996456,-0.494380,-0.003122 +0.504492,-1.003654,1.009393,1.995016,-0.491450,-0.004959 +0.506375,-1.004416,1.012340,1.993788,-0.488431,-0.006982 +0.508441,-1.004951,1.015187,1.992777,-0.485339,-0.009180 +0.510679,-1.005255,1.017918,1.991990,-0.482192,-0.011542 +0.513078,-1.005327,1.020519,1.991430,-0.479004,-0.014056 +0.515626,-1.005166,1.022976,1.991100,-0.475793,-0.016708 +0.518308,-1.004775,1.025278,1.991002,-0.472575,-0.019484 +0.521112,-1.004153,1.027411,1.991136,-0.469367,-0.022371 +0.524022,-1.003306,1.029364,1.991502,-0.466187,-0.025353 +0.527023,-1.002237,1.031128,1.992097,-0.463050,-0.028414 +0.530099,-1.000951,1.032693,1.992920,-0.459972,-0.031539 +0.533236,-0.999456,1.034051,1.993964,-0.456971,-0.034711 +0.536415,-0.997759,1.035195,1.995226,-0.454061,-0.037914 +0.539621,-0.995869,1.036119,1.996698,-0.451258,-0.041131 +0.542837,-0.993797,1.036818,1.998372,-0.448576,-0.044345 +0.546046,-0.991552,1.037289,2.000241,-0.446029,-0.047539 +0.549232,-0.989146,1.037528,2.002293,-0.443631,-0.050698 +0.552377,-0.986593,1.037536,2.004519,-0.441394,-0.053804 +0.555465,-0.983905,1.037311,2.006907,-0.439330,-0.056841 +0.558481,-0.981096,1.036855,2.009445,-0.437449,-0.059793 +0.561409,-0.978182,1.036171,2.012118,-0.435762,-0.062645 +0.564233,-0.975176,1.035261,2.014914,-0.434277,-0.065382 +0.566938,-0.972096,1.034132,2.017818,-0.433001,-0.067990 +0.569511,-0.968956,1.032787,2.020814,-0.431942,-0.070455 +0.571937,-0.965774,1.031235,2.023887,-0.431106,-0.072765 +0.574205,-0.962565,1.029484,2.027020,-0.430495,-0.074907 +0.576303,-0.959347,1.027543,2.030199,-0.430115,-0.076870 +0.578219,-0.956137,1.025421,2.033405,-0.429965,-0.078643 +0.579944,-0.952951,1.023130,2.036623,-0.430048,-0.080219 +0.581469,-0.949805,1.020682,2.039835,-0.430363,-0.081588 +0.582785,-0.946717,1.018090,2.043024,-0.430909,-0.082743 +0.583886,-0.943702,1.015367,2.046175,-0.431682,-0.083678 +0.584766,-0.940776,1.012528,2.049271,-0.432678,-0.084389 +0.585421,-0.937955,1.009586,2.052295,-0.433892,-0.084871 +0.585846,-0.935252,1.006558,2.055232,-0.435318,-0.085123 +0.586041,-0.932682,1.003460,2.058066,-0.436949,-0.085142 +0.586003,-0.930259,1.000307,2.060783,-0.438776,-0.084929 +0.585734,-0.927995,0.997115,2.063368,-0.440789,-0.084485 +0.585234,-0.925902,0.993903,2.065808,-0.442977,-0.083813 +0.584505,-0.923990,0.990685,2.068091,-0.445331,-0.082914 +0.583553,-0.922271,0.987480,2.070204,-0.447837,-0.081796 +0.582382,-0.920752,0.984303,2.072136,-0.450481,-0.080462 +0.580997,-0.919442,0.981172,2.073878,-0.453251,-0.078921 +0.579407,-0.918347,0.978103,2.075420,-0.456133,-0.077179 +0.577619,-0.917473,0.975111,2.076754,-0.459110,-0.075247 +0.575642,-0.916826,0.972212,2.077873,-0.462167,-0.073135 +0.573488,-0.916407,0.969422,2.078772,-0.465289,-0.070852 +0.571167,-0.916220,0.966755,2.079445,-0.468459,-0.068412 +0.568692,-0.916265,0.964225,2.079889,-0.471660,-0.065827 +0.566075,-0.916542,0.961844,2.080103,-0.474877,-0.063111 +0.563329,-0.917050,0.959627,2.080084,-0.478092,-0.060277 +0.560470,-0.917786,0.957583,2.079832,-0.481288,-0.057340 +0.557513,-0.918746,0.955724,2.079351,-0.484448,-0.054316 +0.554471,-0.919925,0.954059,2.078640,-0.487558,-0.051221 +0.551363,-0.921317,0.952597,2.077705,-0.490599,-0.048070 +0.548203,-0.922915,0.951346,2.076551,-0.493556,-0.044880 +0.545008,-0.924710,0.950312,2.075182,-0.496414,-0.041668 +0.541794,-0.926693,0.949501,2.073607,-0.499158,-0.038451 +0.538580,-0.928854,0.948917,2.071834,-0.501773,-0.035245 +0.535381,-0.931181,0.948562,2.069871,-0.504247,-0.032066 +0.532213,-0.933663,0.948440,2.067730,-0.506565,-0.028932 +0.529095,-0.936286,0.948549,2.065421,-0.508716,-0.025859 +0.526041,-0.939036,0.948891,2.062956,-0.510689,-0.022863 +0.523067,-0.941900,0.949462,2.060348,-0.512474,-0.019959 +0.520190,-0.944863,0.950260,2.057611,-0.514060,-0.017163 +0.517425,-0.947908,0.951282,2.054759,-0.515440,-0.014489 +0.514784,-0.951020,0.952520,2.051807,-0.516607,-0.011952 +0.512284,-0.954184,0.953970,2.048770,-0.517555,-0.009563 +0.509935,-0.957381,0.955624,2.045665,-0.518278,-0.007337 +0.507752,-0.960596,0.957472,2.042506,-0.518773,-0.005284 +0.505744,-0.963812,0.959506,2.039312,-0.519037,-0.003415 +0.503923,-0.967013,0.961714,2.036098,-0.519070,-0.001740 +0.502298,-0.970180,0.964085,2.032881,-0.518869,-0.000268 +0.500878,-0.973299,0.966608,2.029678,-0.518438,0.000994 +0.499669,-0.976352,0.969267,2.026506,-0.517778,0.002039 +0.498679,-0.979324,0.972051,2.023381,-0.516892,0.002862 +0.497912,-0.982200,0.974944,2.020319,-0.515785,0.003458 +0.497372,-0.984963,0.977931,2.017337,-0.514463,0.003824 +0.497063,-0.987601,0.980996,2.014450,-0.512933,0.003959 +0.496985,-0.990098,0.984124,2.011673,-0.511202,0.003861 +0.497140,-0.992443,0.987299,2.009021,-0.509280,0.003531 +0.497526,-0.994622,0.990503,2.006507,-0.507177,0.002972 +0.498141,-0.996625,0.993720,2.004145,-0.504904,0.002185 +0.498983,-0.998441,0.996934,2.001946,-0.502472,0.001175 +0.500046,-1.000061,1.000126,1.999923,-0.499895,-0.000053 +0.501326,-1.001475,1.003282,1.998086,-0.497185,-0.001492 +0.502815,-1.002678,1.006384,1.996444,-0.494357,-0.003135 +0.504507,-1.003661,1.009417,1.995005,-0.491426,-0.004974 +0.506391,-1.004422,1.012363,1.993779,-0.488406,-0.006998 +0.508458,-1.004954,1.015209,1.992770,-0.485314,-0.009198 +0.510698,-1.005256,1.017939,1.991985,-0.482166,-0.011561 +0.513098,-1.005326,1.020539,1.991426,-0.478978,-0.014076 +0.515647,-1.005164,1.022995,1.991098,-0.475767,-0.016729 +0.518330,-1.004771,1.025295,1.991002,-0.472549,-0.019507 +0.521134,-1.004147,1.027427,1.991138,-0.469342,-0.022394 +0.524045,-1.003298,1.029379,1.991506,-0.466162,-0.025377 +0.527047,-1.002227,1.031141,1.992103,-0.463025,-0.028439 +0.530124,-1.000940,1.032705,1.992927,-0.459948,-0.031564 +0.533261,-0.999443,1.034061,1.993973,-0.456947,-0.034736 +0.536441,-0.997745,1.035203,1.995237,-0.454038,-0.037939 +0.539647,-0.995854,1.036125,1.996710,-0.451236,-0.041156 +0.542863,-0.993780,1.036823,1.998386,-0.448555,-0.044370 +0.546072,-0.991533,1.037292,2.000256,-0.446009,-0.047565 +0.549257,-0.989127,1.037529,2.002310,-0.443613,-0.050723 +0.552402,-0.986572,1.037535,2.004538,-0.441377,-0.053828 +0.555490,-0.983883,1.037309,2.006927,-0.439314,-0.056864 +0.558505,-0.981074,1.036851,2.009465,-0.437435,-0.059816 +0.561432,-0.978158,1.036165,2.012140,-0.435749,-0.062667 +0.564255,-0.975152,1.035253,2.014937,-0.434266,-0.065403 +0.566959,-0.972071,1.034122,2.017841,-0.432992,-0.068010 +0.569530,-0.968931,1.032776,2.020838,-0.431935,-0.070474 +0.571956,-0.965748,1.031222,2.023911,-0.431100,-0.072783 +0.574223,-0.962540,1.029469,2.027046,-0.430491,-0.074923 +0.576319,-0.959322,1.027526,2.030224,-0.430112,-0.076884 +0.578234,-0.956112,1.025403,2.033431,-0.429965,-0.078657 +0.579957,-0.952926,1.023111,2.036648,-0.430050,-0.080230 +0.581480,-0.949781,1.020662,2.039860,-0.430367,-0.081598 +0.582795,-0.946693,1.018069,2.043050,-0.430914,-0.082751 +0.583894,-0.943679,1.015345,2.046200,-0.431689,-0.083685 +0.584772,-0.940753,1.012505,2.049295,-0.432686,-0.084394 +0.585425,-0.937933,1.009563,2.052318,-0.433903,-0.084874 +0.585849,-0.935231,1.006534,2.055254,-0.435330,-0.085124 +0.586042,-0.932662,1.003435,2.058088,-0.436963,-0.085141 +0.586002,-0.930240,1.000281,2.060804,-0.438791,-0.084927 +0.585731,-0.927977,0.997090,2.063388,-0.440805,-0.084481 +0.585229,-0.925886,0.993877,2.065827,-0.442996,-0.083806 +0.584499,-0.923976,0.990660,2.068108,-0.445350,-0.082906 +0.583545,-0.922258,0.987455,2.070220,-0.447857,-0.081786 +0.582371,-0.920740,0.984278,2.072151,-0.450503,-0.080451 +0.580985,-0.919432,0.981148,2.073891,-0.453274,-0.078908 +0.579393,-0.918339,0.978079,2.075431,-0.456156,-0.077165 +0.577604,-0.917467,0.975087,2.076763,-0.459134,-0.075231 +0.575626,-0.916821,0.972190,2.077881,-0.462192,-0.073117 +0.573470,-0.916405,0.969400,2.078778,-0.465314,-0.070834 +0.571148,-0.916219,0.966734,2.079449,-0.468484,-0.068392 +0.568672,-0.916266,0.964205,2.079892,-0.471686,-0.065806 +0.566053,-0.916545,0.961826,2.080103,-0.474902,-0.063089 +0.563307,-0.917055,0.959610,2.080083,-0.478117,-0.060254 +0.560447,-0.917793,0.957567,2.079830,-0.481313,-0.057316 +0.557489,-0.918754,0.955710,2.079346,-0.484473,-0.054292 +0.554447,-0.919935,0.954046,2.078634,-0.487582,-0.051196 +0.551338,-0.921329,0.952586,2.077697,-0.490623,-0.048045 +0.548177,-0.922928,0.951337,2.076541,-0.493579,-0.044855 +0.544982,-0.924725,0.950305,2.075170,-0.496436,-0.041643 +0.541769,-0.926709,0.949496,2.073594,-0.499179,-0.038425 +0.538554,-0.928872,0.948913,2.071819,-0.501794,-0.035219 +0.535355,-0.931200,0.948560,2.069855,-0.504266,-0.032041 +0.532188,-0.933683,0.948440,2.067712,-0.506583,-0.028907 +0.529070,-0.936307,0.948551,2.065402,-0.508733,-0.025835 +0.526017,-0.939059,0.948894,2.062936,-0.510704,-0.022839 +0.523044,-0.941923,0.949467,2.060327,-0.512487,-0.019937 +0.520168,-0.944887,0.950268,2.057589,-0.514072,-0.017141 +0.517403,-0.947932,0.951291,2.054736,-0.515451,-0.014469 +0.514764,-0.951045,0.952531,2.051783,-0.516616,-0.011932 +0.512264,-0.954209,0.953983,2.048746,-0.517562,-0.009545 +0.509917,-0.957407,0.955638,2.045640,-0.518283,-0.007320 +0.507735,-0.960622,0.957488,2.042481,-0.518776,-0.005268 +0.505729,-0.963838,0.959523,2.039286,-0.519039,-0.003401 +0.503909,-0.967038,0.961732,2.036072,-0.519069,-0.001728 +0.502286,-0.970205,0.964105,2.032855,-0.518867,-0.000257 +0.500867,-0.973324,0.966628,2.029653,-0.518434,0.001003 +0.499660,-0.976376,0.969289,2.026481,-0.517772,0.002046 +0.498672,-0.979348,0.972074,2.023356,-0.516884,0.002867 +0.497906,-0.982222,0.974967,2.020295,-0.515775,0.003462 +0.497369,-0.984985,0.977955,2.017314,-0.514452,0.003826 +0.497061,-0.987621,0.981021,2.014428,-0.512920,0.003959 +0.496985,-0.990118,0.984149,2.011652,-0.511188,0.003859 +0.497142,-0.992461,0.987324,2.009001,-0.509264,0.003528 +0.497530,-0.994639,0.990528,2.006488,-0.507160,0.002966 +0.498147,-0.996640,0.993746,2.004127,-0.504885,0.002178 +0.498991,-0.998455,0.996959,2.001929,-0.502452,0.001166 +0.500056,-1.000073,1.000152,1.999908,-0.499874,-0.000064 +0.501337,-1.001486,1.003307,1.998072,-0.497163,-0.001504 +0.502828,-1.002686,1.006409,1.996431,-0.494334,-0.003149 +0.504521,-1.003668,1.009440,1.994995,-0.491402,-0.004989 +0.506406,-1.004427,1.012386,1.993770,-0.488382,-0.007015 +0.508475,-1.004957,1.015231,1.992763,-0.485290,-0.009216 +0.510716,-1.005258,1.017960,1.991979,-0.482141,-0.011581 +0.513118,-1.005326,1.020559,1.991423,-0.478953,-0.014097 +0.515667,-1.005162,1.023014,1.991097,-0.475742,-0.016751 +0.518352,-1.004767,1.025313,1.991002,-0.472524,-0.019529 +0.521157,-1.004142,1.027443,1.991140,-0.469317,-0.022418 +0.524069,-1.003291,1.029394,1.991509,-0.466136,-0.025401 +0.527071,-1.002218,1.031154,1.992109,-0.463000,-0.028463 +0.530149,-1.000929,1.032716,1.992935,-0.459924,-0.031589 +0.533286,-0.999431,1.034071,1.993983,-0.456924,-0.034762 +0.536466,-0.997731,1.035211,1.995248,-0.454015,-0.037965 +0.539672,-0.995838,1.036132,1.996723,-0.451214,-0.041182 +0.542888,-0.993762,1.036827,1.998400,-0.448534,-0.044396 +0.546097,-0.991515,1.037294,2.000272,-0.445990,-0.047590 +0.549282,-0.989107,1.037530,2.002327,-0.443594,-0.050748 +0.552427,-0.986551,1.037534,2.004556,-0.441360,-0.053853 +0.555514,-0.983861,1.037306,2.006947,-0.439298,-0.056888 +0.558529,-0.981051,1.036846,2.009486,-0.437421,-0.059839 +0.561455,-0.978135,1.036158,2.012162,-0.435737,-0.062689 +0.564277,-0.975128,1.035245,2.014960,-0.434255,-0.065425 +0.566980,-0.972046,1.034112,2.017865,-0.432983,-0.068031 +0.569550,-0.968906,1.032764,2.020862,-0.431927,-0.070493 +0.571975,-0.965723,1.031209,2.023936,-0.431094,-0.072800 +0.574240,-0.962514,1.029455,2.027071,-0.430487,-0.074939 +0.576335,-0.959296,1.027510,2.030250,-0.430110,-0.076899 +0.578248,-0.956086,1.025386,2.033456,-0.429965,-0.078670 +0.579970,-0.952901,1.023092,2.036674,-0.430052,-0.080242 +0.581491,-0.949756,1.020642,2.039886,-0.430370,-0.081608 +0.582804,-0.946669,1.018048,2.043075,-0.430919,-0.082759 +0.583902,-0.943655,1.015323,2.046225,-0.431696,-0.083691 +0.584778,-0.940731,1.012482,2.049319,-0.432695,-0.084398 +0.585429,-0.937911,1.009539,2.052342,-0.433913,-0.084877 +0.585851,-0.935210,1.006510,2.055277,-0.435343,-0.085125 +0.586042,-0.932642,1.003410,2.058110,-0.436976,-0.085141 +0.586001,-0.930222,1.000256,2.060825,-0.438806,-0.084924 +0.585728,-0.927960,0.997064,2.063408,-0.440822,-0.084476 +0.585224,-0.925870,0.993852,2.065846,-0.443014,-0.083800 +0.584492,-0.923961,0.990634,2.068126,-0.445370,-0.082898 +0.583536,-0.922245,0.987429,2.070236,-0.447878,-0.081776 +0.582361,-0.920729,0.984253,2.072165,-0.450524,-0.080439 +0.580973,-0.919422,0.981123,2.073904,-0.453297,-0.078894 +0.579380,-0.918331,0.978055,2.075443,-0.456179,-0.077150 +0.577589,-0.917461,0.975064,2.076773,-0.459158,-0.075215 +0.575609,-0.916817,0.972167,2.077889,-0.462216,-0.073100 +0.573453,-0.916402,0.969379,2.078784,-0.465339,-0.070815 +0.571129,-0.916219,0.966714,2.079454,-0.468509,-0.068372 +0.568651,-0.916268,0.964186,2.079894,-0.471711,-0.065785 +0.566032,-0.916549,0.961808,2.080104,-0.474928,-0.063066 +0.563285,-0.917060,0.959593,2.080081,-0.478143,-0.060231 +0.560424,-0.917799,0.957552,2.079827,-0.481338,-0.057293 +0.557465,-0.918763,0.955696,2.079341,-0.484498,-0.054268 +0.554422,-0.919945,0.954034,2.078627,-0.487607,-0.051171 +0.551313,-0.921341,0.952576,2.077689,-0.490646,-0.048020 +0.548152,-0.922942,0.951328,2.076531,-0.493602,-0.044829 +0.544957,-0.924740,0.950298,2.075159,-0.496459,-0.041617 +0.541743,-0.926726,0.949490,2.073581,-0.499201,-0.038400 +0.538529,-0.928890,0.948909,2.071804,-0.501814,-0.035194 +0.535330,-0.931219,0.948559,2.069839,-0.504285,-0.032016 +0.532163,-0.933703,0.948440,2.067694,-0.506601,-0.028883 +0.529045,-0.936328,0.948553,2.065383,-0.508749,-0.025811 +0.525993,-0.939081,0.948898,2.062915,-0.510719,-0.022816 +0.523021,-0.941947,0.949473,2.060305,-0.512500,-0.019914 +0.520145,-0.944910,0.950275,2.057567,-0.514084,-0.017120 +0.517382,-0.947957,0.951300,2.054713,-0.515461,-0.014448 +0.514743,-0.951070,0.952542,2.051759,-0.516624,-0.011912 +0.512245,-0.954234,0.953995,2.048721,-0.517568,-0.009527 +0.509899,-0.957432,0.955652,2.045615,-0.518288,-0.007303 +0.507718,-0.960648,0.957503,2.042456,-0.518779,-0.005253 +0.505714,-0.963864,0.959540,2.039261,-0.519040,-0.003387 +0.503896,-0.967063,0.961751,2.036046,-0.519068,-0.001715 +0.502274,-0.970231,0.964124,2.032830,-0.518864,-0.000246 +0.500857,-0.973348,0.966649,2.029627,-0.518429,0.001012 +0.499651,-0.976400,0.969311,2.026456,-0.517765,0.002054 +0.498665,-0.979371,0.972096,2.023331,-0.516876,0.002873 +0.497901,-0.982245,0.974991,2.020271,-0.515766,0.003465 +0.497365,-0.985006,0.977979,2.017291,-0.514440,0.003828 +0.497060,-0.987642,0.981046,2.014405,-0.512907,0.003959 +0.496986,-0.990137,0.984175,2.011630,-0.511173,0.003858 +0.497144,-0.992479,0.987350,2.008980,-0.509248,0.003524 +0.497534,-0.994656,0.990554,2.006468,-0.507142,0.002961 +0.498153,-0.996656,0.993771,2.004109,-0.504867,0.002171 +0.498998,-0.998468,0.996985,2.001913,-0.502432,0.001157 +0.500065,-1.000085,1.000177,1.999892,-0.499853,-0.000074 +0.501348,-1.001496,1.003332,1.998058,-0.497141,-0.001517 +0.502841,-1.002695,1.006433,1.996419,-0.494311,-0.003163 +0.504535,-1.003675,1.009464,1.994984,-0.491378,-0.005005 +0.506422,-1.004432,1.012409,1.993761,-0.488358,-0.007032 +0.508492,-1.004961,1.015254,1.992756,-0.485265,-0.009234 +0.510735,-1.005259,1.017982,1.991974,-0.482116,-0.011600 +0.513137,-1.005326,1.020579,1.991419,-0.478927,-0.014117 +0.515688,-1.005160,1.023033,1.991095,-0.475716,-0.016772 +0.518374,-1.004762,1.025331,1.991002,-0.472498,-0.019552 +0.521180,-1.004136,1.027459,1.991142,-0.469291,-0.022441 +0.524092,-1.003283,1.029408,1.991513,-0.466111,-0.025425 +0.527095,-1.002208,1.031168,1.992114,-0.462975,-0.028488 +0.530174,-1.000918,1.032728,1.992942,-0.459900,-0.031614 +0.533311,-0.999418,1.034081,1.993992,-0.456900,-0.034787 +0.536491,-0.997716,1.035220,1.995259,-0.453993,-0.037991 +0.539698,-0.995822,1.036138,1.996735,-0.451192,-0.041208 +0.542914,-0.993745,1.036832,1.998415,-0.448513,-0.044421 +0.546123,-0.991496,1.037297,2.000287,-0.445970,-0.047615 +0.549307,-0.989087,1.037531,2.002344,-0.443576,-0.050773 +0.552451,-0.986530,1.037533,2.004574,-0.441343,-0.053877 +0.555538,-0.983839,1.037303,2.006966,-0.439283,-0.056912 +0.558552,-0.981028,1.036842,2.009507,-0.437407,-0.059862 +0.561477,-0.978111,1.036152,2.012184,-0.435724,-0.062712 +0.564299,-0.975104,1.035237,2.014982,-0.434244,-0.065446 +0.567001,-0.972021,1.034102,2.017888,-0.432973,-0.068051 +0.569570,-0.968881,1.032752,2.020886,-0.431920,-0.070512 +0.571993,-0.965697,1.031196,2.023961,-0.431088,-0.072818 +0.574257,-0.962489,1.029440,2.027096,-0.430484,-0.074956 +0.576351,-0.959271,1.027494,2.030275,-0.430108,-0.076914 +0.578263,-0.956061,1.025368,2.033482,-0.429965,-0.078683 +0.579983,-0.952875,1.023074,2.036699,-0.430053,-0.080254 +0.581503,-0.949731,1.020622,2.039911,-0.430374,-0.081618 +0.582814,-0.946644,1.018027,2.043100,-0.430925,-0.082768 +0.583910,-0.943631,1.015301,2.046250,-0.431703,-0.083698 +0.584784,-0.940708,1.012459,2.049344,-0.432704,-0.084403 +0.585434,-0.937889,1.009515,2.052366,-0.433924,-0.084880 +0.585854,-0.935189,1.006485,2.055300,-0.435355,-0.085126 +0.586043,-0.932623,1.003385,2.058132,-0.436990,-0.085140 +0.586000,-0.930203,1.000231,2.060846,-0.438821,-0.084921 +0.585724,-0.927943,0.997039,2.063428,-0.440839,-0.084472 +0.585219,-0.925854,0.993826,2.065865,-0.443032,-0.083794 +0.584485,-0.923947,0.990609,2.068143,-0.445389,-0.082890 +0.583528,-0.922232,0.987404,2.070252,-0.447898,-0.081766 +0.582351,-0.920718,0.984228,2.072180,-0.450546,-0.080428 +0.580961,-0.919413,0.981098,2.073917,-0.453319,-0.078881 +0.579366,-0.918323,0.978030,2.075454,-0.456203,-0.077135 +0.577574,-0.917455,0.975041,2.076783,-0.459182,-0.075199 +0.575593,-0.916813,0.972144,2.077897,-0.462241,-0.073082 +0.573435,-0.916400,0.969357,2.078790,-0.465364,-0.070796 +0.571110,-0.916218,0.966693,2.079458,-0.468535,-0.068352 +0.568631,-0.916269,0.964166,2.079897,-0.471737,-0.065764 +0.566011,-0.916552,0.961790,2.080105,-0.474954,-0.063044 +0.563262,-0.917065,0.959576,2.080080,-0.478168,-0.060208 +0.560401,-0.917806,0.957536,2.079824,-0.481364,-0.057269 +0.557441,-0.918771,0.955682,2.079336,-0.484523,-0.054243 +0.554398,-0.919956,0.954022,2.078621,-0.487631,-0.051146 +0.551288,-0.921353,0.952565,2.077680,-0.490670,-0.047994 +0.548127,-0.922955,0.951319,2.076520,-0.493625,-0.044804 +0.544931,-0.924755,0.950290,2.075147,-0.496481,-0.041592 +0.541718,-0.926742,0.949485,2.073567,-0.499222,-0.038374 +0.538503,-0.928907,0.948906,2.071789,-0.501834,-0.035168 +0.535305,-0.931239,0.948557,2.069822,-0.504304,-0.031991 +0.532138,-0.933724,0.948440,2.067677,-0.506618,-0.028858 +0.529021,-0.936350,0.948555,2.065364,-0.508765,-0.025787 +0.525969,-0.939103,0.948902,2.062895,-0.510734,-0.022792 +0.522998,-0.941970,0.949478,2.060284,-0.512514,-0.019891 +0.520123,-0.944934,0.950282,2.057544,-0.514096,-0.017098 +0.517360,-0.947982,0.951309,2.054690,-0.515471,-0.014427 +0.514723,-0.951095,0.952553,2.051735,-0.516633,-0.011893 +0.512226,-0.954260,0.954008,2.048697,-0.517575,-0.009508 +0.509881,-0.957458,0.955666,2.045590,-0.518293,-0.007286 +0.507702,-0.960673,0.957519,2.042430,-0.518782,-0.005237 +0.505698,-0.963889,0.959556,2.039235,-0.519041,-0.003373 +0.503882,-0.967089,0.961769,2.036021,-0.519068,-0.001703 +0.502262,-0.970256,0.964144,2.032804,-0.518862,-0.000235 +0.500846,-0.973373,0.966670,2.029602,-0.518425,0.001021 +0.499643,-0.976424,0.969332,2.026431,-0.517759,0.002061 +0.498658,-0.979394,0.972119,2.023307,-0.516868,0.002879 +0.497896,-0.982267,0.975014,2.020247,-0.515756,0.003469 +0.497362,-0.985028,0.978003,2.017267,-0.514429,0.003830 +0.497058,-0.987662,0.981070,2.014383,-0.512894,0.003959 +0.496986,-0.990156,0.984200,2.011609,-0.511158,0.003856 +0.497146,-0.992497,0.987375,2.008959,-0.509232,0.003521 +0.497538,-0.994672,0.990580,2.006449,-0.507125,0.002956 +0.498159,-0.996671,0.993797,2.004090,-0.504848,0.002163 +0.499006,-0.998482,0.997010,2.001896,-0.502412,0.001148 +0.500075,-1.000097,1.000202,1.999877,-0.499832,-0.000085 +0.501359,-1.001506,1.003357,1.998044,-0.497119,-0.001529 +0.502854,-1.002704,1.006458,1.996407,-0.494288,-0.003177 +0.504549,-1.003682,1.009488,1.994974,-0.491355,-0.005020 +0.506438,-1.004437,1.012433,1.993752,-0.488333,-0.007049 +0.508509,-1.004964,1.015276,1.992749,-0.485240,-0.009253 +0.510753,-1.005261,1.018003,1.991969,-0.482091,-0.011620 +0.513157,-1.005325,1.020599,1.991416,-0.478902,-0.014138 +0.515709,-1.005158,1.023052,1.991093,-0.475690,-0.016794 +0.518396,-1.004758,1.025348,1.991002,-0.472473,-0.019574 +0.521203,-1.004130,1.027476,1.991144,-0.469266,-0.022464 +0.524116,-1.003275,1.029423,1.991517,-0.466086,-0.025449 +0.527120,-1.002199,1.031181,1.992120,-0.462951,-0.028513 +0.530198,-1.000907,1.032739,1.992950,-0.459875,-0.031639 +0.533336,-0.999405,1.034091,1.994001,-0.456877,-0.034813 +0.536517,-0.997702,1.035228,1.995269,-0.453970,-0.038016 +0.539723,-0.995806,1.036145,1.996748,-0.451170,-0.041233 +0.542939,-0.993728,1.036837,1.998429,-0.448492,-0.044447 +0.546148,-0.991478,1.037300,2.000303,-0.445950,-0.047641 +0.549332,-0.989067,1.037532,2.002361,-0.443557,-0.050798 +0.552476,-0.986510,1.037532,2.004593,-0.441326,-0.053901 +0.555563,-0.983817,1.037300,2.006986,-0.439267,-0.056936 +0.558576,-0.981005,1.036837,2.009528,-0.437392,-0.059885 +0.561500,-0.978087,1.036146,2.012205,-0.435711,-0.062734 +0.564321,-0.975079,1.035229,2.015005,-0.434233,-0.065467 +0.567022,-0.971997,1.034092,2.017912,-0.432964,-0.068071 +0.569590,-0.968855,1.032741,2.020910,-0.431912,-0.070531 +0.572012,-0.965672,1.031183,2.023985,-0.431083,-0.072836 +0.574275,-0.962463,1.029425,2.027121,-0.430480,-0.074972 +0.576367,-0.959245,1.027478,2.030300,-0.430106,-0.076929 +0.578277,-0.956035,1.025351,2.033507,-0.429964,-0.078697 +0.579996,-0.952850,1.023055,2.036725,-0.430055,-0.080266 +0.581514,-0.949706,1.020602,2.039937,-0.430377,-0.081628 +0.582823,-0.946620,1.018006,2.043125,-0.430930,-0.082776 +0.583918,-0.943608,1.015279,2.046275,-0.431710,-0.083704 +0.584791,-0.940685,1.012436,2.049368,-0.432713,-0.084408 +0.585438,-0.937867,1.009491,2.052390,-0.433934,-0.084883 +0.585856,-0.935168,1.006461,2.055323,-0.435367,-0.085127 +0.586043,-0.932603,1.003360,2.058154,-0.437004,-0.085139 +0.585998,-0.930184,1.000206,2.060867,-0.438837,-0.084919 +0.585721,-0.927925,0.997013,2.063448,-0.440856,-0.084467 +0.585214,-0.925838,0.993800,2.065883,-0.443050,-0.083787 +0.584478,-0.923932,0.990583,2.068161,-0.445408,-0.082882 +0.583519,-0.922219,0.987378,2.070268,-0.447919,-0.081756 +0.582341,-0.920707,0.984203,2.072195,-0.450568,-0.080416 +0.580950,-0.919403,0.981074,2.073930,-0.453342,-0.078868 +0.579353,-0.918316,0.978006,2.075465,-0.456226,-0.077121 +0.577559,-0.917449,0.975017,2.076793,-0.459206,-0.075183 +0.575576,-0.916809,0.972122,2.077905,-0.462265,-0.073065 +0.573417,-0.916398,0.969335,2.078796,-0.465389,-0.070777 +0.571091,-0.916218,0.966672,2.079462,-0.468560,-0.068332 +0.568611,-0.916270,0.964147,2.079900,-0.471763,-0.065743 +0.565989,-0.916555,0.961771,2.080106,-0.474979,-0.063022 +0.563240,-0.917070,0.959559,2.080079,-0.478194,-0.060185 +0.560378,-0.917813,0.957521,2.079821,-0.481389,-0.057245 +0.557417,-0.918780,0.955668,2.079331,-0.484548,-0.054219 +0.554373,-0.919966,0.954009,2.078614,-0.487655,-0.051121 +0.551263,-0.921365,0.952554,2.077672,-0.490694,-0.047969 +0.548101,-0.922969,0.951310,2.076510,-0.493648,-0.044778 +0.544906,-0.924770,0.950283,2.075135,-0.496503,-0.041566 +0.541692,-0.926759,0.949479,2.073554,-0.499243,-0.038349 +0.538478,-0.928925,0.948902,2.071774,-0.501854,-0.035143 +0.535279,-0.931258,0.948555,2.069806,-0.504323,-0.031966 +0.532113,-0.933744,0.948440,2.067659,-0.506636,-0.028833 +0.528996,-0.936371,0.948556,2.065345,-0.508782,-0.025762 +0.525945,-0.939126,0.948905,2.062875,-0.510749,-0.022769 +0.522974,-0.941993,0.949484,2.060263,-0.512527,-0.019868 +0.520101,-0.944958,0.950289,2.057522,-0.514107,-0.017076 +0.517339,-0.948006,0.951318,2.054667,-0.515481,-0.014406 +0.514703,-0.951120,0.952563,2.051712,-0.516641,-0.011873 +0.512206,-0.954285,0.954020,2.048672,-0.517582,-0.009490 +0.509863,-0.957483,0.955680,2.045565,-0.518297,-0.007269 +0.507685,-0.960699,0.957534,2.042405,-0.518785,-0.005222 +0.505683,-0.963915,0.959573,2.039210,-0.519042,-0.003359 +0.503868,-0.967114,0.961787,2.035995,-0.519067,-0.001690 +0.502250,-0.970281,0.964163,2.032779,-0.518859,-0.000225 +0.500836,-0.973397,0.966690,2.029576,-0.518421,0.001031 +0.499634,-0.976448,0.969354,2.026405,-0.517753,0.002069 +0.498651,-0.979418,0.972141,2.023282,-0.516860,0.002884 +0.497891,-0.982290,0.975037,2.020223,-0.515746,0.003473 +0.497359,-0.985049,0.978027,2.017244,-0.514417,0.003832 +0.497057,-0.987682,0.981095,2.014360,-0.512881,0.003959 +0.496987,-0.990175,0.984225,2.011587,-0.511144,0.003854 +0.497149,-0.992515,0.987400,2.008939,-0.509216,0.003517 +0.497542,-0.994689,0.990605,2.006430,-0.507108,0.002950 +0.498165,-0.996686,0.993822,2.004072,-0.504829,0.002156 +0.499013,-0.998496,0.997036,2.001879,-0.502392,0.001139 +0.500084,-1.000109,1.000227,1.999862,-0.499811,-0.000096 +0.501370,-1.001517,1.003382,1.998030,-0.497097,-0.001541 +0.502866,-1.002712,1.006482,1.996395,-0.494265,-0.003191 +0.504564,-1.003689,1.009512,1.994963,-0.491331,-0.005036 +0.506454,-1.004442,1.012456,1.993743,-0.488309,-0.007066 +0.508527,-1.004967,1.015298,1.992742,-0.485215,-0.009271 +0.510772,-1.005262,1.018024,1.991963,-0.482065,-0.011639 +0.513177,-1.005325,1.020619,1.991412,-0.478876,-0.014158 +0.515730,-1.005155,1.023071,1.991092,-0.475665,-0.016816 +0.518417,-1.004754,1.025366,1.991003,-0.472447,-0.019597 +0.521225,-1.004124,1.027492,1.991146,-0.469240,-0.022488 +0.524139,-1.003267,1.029438,1.991521,-0.466061,-0.025473 +0.527144,-1.002189,1.031194,1.992126,-0.462926,-0.028537 +0.530223,-1.000895,1.032751,1.992957,-0.459851,-0.031664 +0.533361,-0.999392,1.034101,1.994010,-0.456853,-0.034838 +0.536542,-0.997688,1.035236,1.995280,-0.453947,-0.038042 +0.539749,-0.995790,1.036151,1.996760,-0.451148,-0.041259 +0.542965,-0.993711,1.036841,1.998443,-0.448472,-0.044472 +0.546173,-0.991459,1.037303,2.000319,-0.445931,-0.047666 +0.549358,-0.989048,1.037533,2.002379,-0.443539,-0.050823 +0.552501,-0.986489,1.037531,2.004611,-0.441309,-0.053926 +0.555587,-0.983796,1.037298,2.007005,-0.439251,-0.056960 +0.558600,-0.980982,1.036833,2.009549,-0.437378,-0.059908 +0.561523,-0.978064,1.036139,2.012227,-0.435699,-0.062756 +0.564342,-0.975055,1.035221,2.015028,-0.434222,-0.065488 +0.567043,-0.971972,1.034082,2.017935,-0.432955,-0.068091 +0.569610,-0.968830,1.032729,2.020935,-0.431905,-0.070550 +0.572031,-0.965646,1.031169,2.024010,-0.431077,-0.072853 +0.574292,-0.962437,1.029410,2.027146,-0.430476,-0.074988 +0.576383,-0.959220,1.027461,2.030326,-0.430104,-0.076944 +0.578292,-0.956010,1.025333,2.033533,-0.429964,-0.078710 +0.580009,-0.952825,1.023036,2.036751,-0.430057,-0.080277 +0.581525,-0.949681,1.020582,2.039962,-0.430381,-0.081638 +0.582833,-0.946596,1.017984,2.043151,-0.430935,-0.082784 +0.583925,-0.943584,1.015257,2.046300,-0.431717,-0.083711 +0.584797,-0.940662,1.012413,2.049392,-0.432722,-0.084412 +0.585442,-0.937845,1.009467,2.052413,-0.433945,-0.084886 +0.585859,-0.935147,1.006436,2.055346,-0.435379,-0.085128 +0.586044,-0.932583,1.003335,2.058176,-0.437018,-0.085138 +0.585997,-0.930166,1.000180,2.060888,-0.438852,-0.084916 +0.585718,-0.927908,0.996988,2.063468,-0.440872,-0.084463 +0.585209,-0.925822,0.993775,2.065902,-0.443068,-0.083781 +0.584472,-0.923918,0.990557,2.068178,-0.445428,-0.082874 +0.583511,-0.922206,0.987353,2.070284,-0.447939,-0.081747 +0.582331,-0.920696,0.984178,2.072209,-0.450589,-0.080405 +0.580938,-0.919394,0.981049,2.073943,-0.453364,-0.078855 +0.579339,-0.918308,0.977982,2.075477,-0.456249,-0.077106 +0.577544,-0.917443,0.974994,2.076802,-0.459230,-0.075167 +0.575560,-0.916805,0.972099,2.077913,-0.462290,-0.073047 +0.573399,-0.916395,0.969314,2.078803,-0.465414,-0.070758 +0.571072,-0.916217,0.966652,2.079467,-0.468586,-0.068312 +0.568590,-0.916272,0.964127,2.079902,-0.471788,-0.065722 +0.565968,-0.916558,0.961753,2.080106,-0.475005,-0.063000 +0.563218,-0.917075,0.959542,2.080078,-0.478219,-0.060162 +0.560355,-0.917820,0.957505,2.079818,-0.481414,-0.057221 +0.557393,-0.918788,0.955654,2.079327,-0.484573,-0.054194 +0.554349,-0.919976,0.953997,2.078607,-0.487680,-0.051096 +0.551238,-0.921376,0.952543,2.077664,-0.490718,-0.047944 +0.548076,-0.922982,0.951301,2.076500,-0.493672,-0.044753 +0.544880,-0.924785,0.950276,2.075123,-0.496525,-0.041540 +0.541666,-0.926776,0.949474,2.073540,-0.499264,-0.038323 +0.538452,-0.928943,0.948898,2.071759,-0.501874,-0.035117 +0.535254,-0.931277,0.948553,2.069789,-0.504342,-0.031940 +0.532088,-0.933764,0.948440,2.067641,-0.506654,-0.028809 +0.528972,-0.936393,0.948558,2.065325,-0.508798,-0.025738 +0.525921,-0.939148,0.948909,2.062855,-0.510764,-0.022746 +0.522951,-0.942016,0.949489,2.060242,-0.512541,-0.019846 +0.520078,-0.944982,0.950297,2.057500,-0.514119,-0.017054 +0.517317,-0.948031,0.951327,2.054643,-0.515491,-0.014386 +0.514682,-0.951145,0.952574,2.051688,-0.516649,-0.011854 +0.512187,-0.954310,0.954032,2.048648,-0.517588,-0.009472 +0.509845,-0.957509,0.955694,2.045540,-0.518302,-0.007252 +0.507668,-0.960724,0.957550,2.042380,-0.518788,-0.005206 +0.505668,-0.963940,0.959590,2.039184,-0.519043,-0.003345 +0.503855,-0.967139,0.961805,2.035970,-0.519066,-0.001678 +0.502238,-0.970306,0.964183,2.032753,-0.518857,-0.000214 +0.500825,-0.973422,0.966711,2.029551,-0.518416,0.001040 +0.499625,-0.976472,0.969376,2.026380,-0.517747,0.002076 +0.498644,-0.979441,0.972164,2.023258,-0.516852,0.002890 +0.497886,-0.982312,0.975061,2.020199,-0.515736,0.003477 +0.497355,-0.985071,0.978051,2.017221,-0.514406,0.003834 +0.497055,-0.987703,0.981120,2.014338,-0.512868,0.003959 +0.496987,-0.990195,0.984250,2.011565,-0.511129,0.003852 +0.497151,-0.992533,0.987426,2.008918,-0.509200,0.003514 +0.497546,-0.994705,0.990631,2.006410,-0.507090,0.002945 +0.498171,-0.996701,0.993848,2.004054,-0.504810,0.002149 +0.499021,-0.998509,0.997061,2.001862,-0.502372,0.001130 +0.500093,-1.000121,1.000253,1.999846,-0.499789,-0.000106 +0.501381,-1.001527,1.003407,1.998016,-0.497075,-0.001554 +0.502879,-1.002721,1.006506,1.996382,-0.494242,-0.003205 +0.504578,-1.003696,1.009536,1.994953,-0.491307,-0.005051 +0.506469,-1.004447,1.012479,1.993735,-0.488285,-0.007083 +0.508544,-1.004970,1.015320,1.992735,-0.485190,-0.009289 +0.510790,-1.005263,1.018045,1.991958,-0.482040,-0.011659 +0.513197,-1.005324,1.020640,1.991409,-0.478851,-0.014179 +0.515751,-1.005153,1.023090,1.991090,-0.475639,-0.016837 +0.518439,-1.004750,1.025383,1.991003,-0.472422,-0.019620 +0.521248,-1.004118,1.027508,1.991148,-0.469215,-0.022511 +0.524163,-1.003260,1.029453,1.991525,-0.466036,-0.025497 +0.527168,-1.002180,1.031207,1.992132,-0.462901,-0.028562 +0.530248,-1.000884,1.032762,1.992965,-0.459827,-0.031689 +0.533387,-0.999379,1.034110,1.994020,-0.456830,-0.034863 +0.536568,-0.997673,1.035244,1.995291,-0.453924,-0.038067 +0.539775,-0.995775,1.036157,1.996773,-0.451127,-0.041284 +0.542991,-0.993693,1.036846,1.998457,-0.448451,-0.044498 +0.546199,-0.991441,1.037305,2.000334,-0.445911,-0.047691 +0.549383,-0.989028,1.037534,2.002396,-0.443520,-0.050847 +0.552526,-0.986468,1.037531,2.004630,-0.441292,-0.053950 +0.555611,-0.983774,1.037295,2.007025,-0.439236,-0.056984 +0.558623,-0.980960,1.036828,2.009569,-0.437364,-0.059931 +0.561546,-0.978040,1.036133,2.012249,-0.435686,-0.062778 +0.564364,-0.975031,1.035212,2.015050,-0.434211,-0.065510 +0.567064,-0.971947,1.034072,2.017959,-0.432946,-0.068111 +0.569630,-0.968805,1.032718,2.020959,-0.431897,-0.070569 +0.572049,-0.965621,1.031156,2.024035,-0.431071,-0.072871 +0.574309,-0.962412,1.029396,2.027171,-0.430472,-0.075004 +0.576399,-0.959194,1.027445,2.030351,-0.430102,-0.076959 +0.578306,-0.955984,1.025315,2.033559,-0.429964,-0.078723 +0.580022,-0.952800,1.023017,2.036776,-0.430058,-0.080289 +0.581536,-0.949657,1.020562,2.039988,-0.430384,-0.081648 +0.582843,-0.946572,1.017963,2.043176,-0.430941,-0.082792 +0.583933,-0.943560,1.015234,2.046324,-0.431724,-0.083717 +0.584803,-0.940639,1.012390,2.049417,-0.432731,-0.084417 +0.585446,-0.937823,1.009444,2.052437,-0.433955,-0.084889 +0.585861,-0.935126,1.006412,2.055369,-0.435391,-0.085129 +0.586044,-0.932563,1.003310,2.058198,-0.437032,-0.085137 +0.585996,-0.930147,1.000155,2.060909,-0.438867,-0.084913 +0.585715,-0.927891,0.996962,2.063488,-0.440889,-0.084458 +0.585204,-0.925806,0.993749,2.065921,-0.443086,-0.083775 +0.584465,-0.923904,0.990532,2.068196,-0.445447,-0.082866 +0.583502,-0.922193,0.987328,2.070300,-0.447960,-0.081737 +0.582320,-0.920684,0.984153,2.072224,-0.450611,-0.080393 +0.580926,-0.919384,0.981024,2.073956,-0.453387,-0.078842 +0.579326,-0.918300,0.977958,2.075488,-0.456273,-0.077091 +0.577528,-0.917437,0.974970,2.076812,-0.459254,-0.075151 +0.575543,-0.916801,0.972077,2.077921,-0.462315,-0.073029 +0.573381,-0.916393,0.969292,2.078809,-0.465439,-0.070739 +0.571053,-0.916217,0.966631,2.079471,-0.468611,-0.068292 +0.568570,-0.916273,0.964108,2.079905,-0.471814,-0.065700 +0.565946,-0.916561,0.961735,2.080107,-0.475031,-0.062978 +0.563195,-0.917080,0.959525,2.080077,-0.478245,-0.060139 +0.560331,-0.917827,0.957490,2.079815,-0.481439,-0.057198 +0.557369,-0.918797,0.955640,2.079322,-0.484598,-0.054170 +0.554324,-0.919986,0.953984,2.078601,-0.487704,-0.051072 +0.551213,-0.921388,0.952533,2.077655,-0.490742,-0.047919 +0.548051,-0.922996,0.951292,2.076490,-0.493695,-0.044727 +0.544854,-0.924800,0.950269,2.075112,-0.496548,-0.041515 +0.541641,-0.926792,0.949468,2.073527,-0.499286,-0.038297 +0.538427,-0.928961,0.948895,2.071744,-0.501895,-0.035092 +0.535229,-0.931296,0.948551,2.069773,-0.504361,-0.031915 +0.532063,-0.933785,0.948440,2.067623,-0.506672,-0.028784 +0.528947,-0.936414,0.948560,2.065306,-0.508815,-0.025714 +0.525897,-0.939171,0.948913,2.062834,-0.510779,-0.022722 +0.522928,-0.942040,0.949495,2.060220,-0.512554,-0.019823 +0.520056,-0.945006,0.950304,2.057477,-0.514131,-0.017033 +0.517296,-0.948055,0.951336,2.054620,-0.515501,-0.014365 +0.514662,-0.951170,0.952585,2.051664,-0.516658,-0.011834 +0.512168,-0.954336,0.954045,2.048623,-0.517595,-0.009453 +0.509827,-0.957534,0.955708,2.045515,-0.518307,-0.007235 +0.507652,-0.960750,0.957565,2.042355,-0.518791,-0.005190 +0.505653,-0.963966,0.959607,2.039159,-0.519044,-0.003331 +0.503841,-0.967165,0.961824,2.035944,-0.519065,-0.001665 +0.502225,-0.970331,0.964202,2.032727,-0.518854,-0.000203 +0.500815,-0.973446,0.966732,2.029526,-0.518412,0.001049 +0.499617,-0.976496,0.969398,2.026355,-0.517741,0.002083 +0.498637,-0.979464,0.972187,2.023233,-0.516844,0.002895 +0.497881,-0.982334,0.975084,2.020175,-0.515727,0.003481 +0.497352,-0.985092,0.978075,2.017197,-0.514395,0.003836 +0.497054,-0.987723,0.981144,2.014315,-0.512855,0.003959 +0.496987,-0.990214,0.984275,2.011544,-0.511115,0.003851 +0.497153,-0.992551,0.987451,2.008898,-0.509184,0.003510 +0.497550,-0.994722,0.990656,2.006391,-0.507073,0.002939 +0.498176,-0.996716,0.993874,2.004036,-0.504791,0.002142 +0.499029,-0.998523,0.997087,2.001846,-0.502352,0.001121 +0.500103,-1.000133,1.000278,1.999831,-0.499768,-0.000117 +0.501393,-1.001537,1.003432,1.998003,-0.497053,-0.001566 +0.502892,-1.002729,1.006531,1.996370,-0.494219,-0.003219 +0.504592,-1.003703,1.009559,1.994942,-0.491284,-0.005067 +0.506485,-1.004452,1.012502,1.993726,-0.488260,-0.007099 +0.508561,-1.004974,1.015342,1.992728,-0.485165,-0.009307 +0.510809,-1.005265,1.018066,1.991953,-0.482015,-0.011678 +0.513216,-1.005324,1.020660,1.991405,-0.478825,-0.014200 +0.515772,-1.005151,1.023109,1.991088,-0.475614,-0.016859 +0.518461,-1.004746,1.025401,1.991003,-0.472396,-0.019642 +0.521271,-1.004112,1.027524,1.991150,-0.469189,-0.022535 +0.524186,-1.003252,1.029467,1.991529,-0.466011,-0.025521 +0.527192,-1.002171,1.031220,1.992137,-0.462877,-0.028587 +0.530273,-1.000873,1.032774,1.992972,-0.459803,-0.031715 +0.533412,-0.999367,1.034120,1.994029,-0.456806,-0.034889 +0.536593,-0.997659,1.035252,1.995302,-0.453902,-0.038093 +0.539800,-0.995759,1.036164,1.996786,-0.451105,-0.041310 +0.543016,-0.993676,1.036850,1.998471,-0.448430,-0.044523 +0.546224,-0.991422,1.037308,2.000350,-0.445891,-0.047716 +0.549408,-0.989008,1.037535,2.002413,-0.443502,-0.050872 +0.552551,-0.986447,1.037530,2.004648,-0.441274,-0.053975 +0.555636,-0.983752,1.037292,2.007045,-0.439220,-0.057007 +0.558647,-0.980937,1.036823,2.009590,-0.437350,-0.059954 +0.561569,-0.978017,1.036126,2.012271,-0.435674,-0.062801 +0.564386,-0.975007,1.035204,2.015073,-0.434200,-0.065531 +0.567085,-0.971922,1.034062,2.017982,-0.432937,-0.068131 +0.569650,-0.968780,1.032706,2.020983,-0.431890,-0.070588 +0.572068,-0.965596,1.031143,2.024060,-0.431066,-0.072889 +0.574327,-0.962386,1.029381,2.027196,-0.430468,-0.075021 +0.576415,-0.959168,1.027429,2.030377,-0.430100,-0.076973 +0.578321,-0.955959,1.025298,2.033584,-0.429964,-0.078736 +0.580035,-0.952775,1.022998,2.036802,-0.430060,-0.080300 +0.581548,-0.949632,1.020542,2.040013,-0.430388,-0.081658 +0.582852,-0.946547,1.017942,2.043201,-0.430946,-0.082801 +0.583941,-0.943537,1.015212,2.046349,-0.431731,-0.083724 +0.584809,-0.940616,1.012366,2.049441,-0.432740,-0.084422 +0.585451,-0.937801,1.009420,2.052461,-0.433966,-0.084891 +0.585863,-0.935105,1.006388,2.055392,-0.435404,-0.085130 +0.586045,-0.932543,1.003286,2.058220,-0.437046,-0.085136 +0.585994,-0.930129,1.000130,2.060930,-0.438883,-0.084911 +0.585712,-0.927874,0.996937,2.063508,-0.440906,-0.084454 +0.585199,-0.925790,0.993724,2.065940,-0.443104,-0.083768 +0.584458,-0.923889,0.990506,2.068213,-0.445467,-0.082858 +0.583494,-0.922181,0.987302,2.070316,-0.447980,-0.081727 +0.582310,-0.920673,0.984128,2.072238,-0.450632,-0.080382 +0.580914,-0.919375,0.981000,2.073969,-0.453409,-0.078829 +0.579312,-0.918292,0.977934,2.075500,-0.456296,-0.077077 +0.577513,-0.917431,0.974947,2.076822,-0.459278,-0.075134 +0.575527,-0.916796,0.972054,2.077929,-0.462339,-0.073012 +0.573363,-0.916391,0.969270,2.078815,-0.465464,-0.070721 +0.571033,-0.916216,0.966610,2.079476,-0.468636,-0.068272 +0.568550,-0.916274,0.964088,2.079907,-0.471839,-0.065679 +0.565925,-0.916564,0.961716,2.080108,-0.475056,-0.062956 +0.563173,-0.917085,0.959508,2.080076,-0.478270,-0.060116 +0.560308,-0.917833,0.957474,2.079812,-0.481465,-0.057174 +0.557345,-0.918806,0.955626,2.079317,-0.484623,-0.054146 +0.554300,-0.919997,0.953972,2.078594,-0.487729,-0.051047 +0.551188,-0.921400,0.952522,2.077647,-0.490766,-0.047893 +0.548025,-0.923009,0.951283,2.076480,-0.493718,-0.044702 +0.544829,-0.924815,0.950261,2.075100,-0.496570,-0.041489 +0.541615,-0.926809,0.949463,2.073514,-0.499307,-0.038272 +0.538401,-0.928979,0.948891,2.071729,-0.501915,-0.035067 +0.535203,-0.931315,0.948549,2.069757,-0.504380,-0.031890 +0.532038,-0.933805,0.948440,2.067606,-0.506689,-0.028759 +0.528923,-0.936436,0.948562,2.065287,-0.508831,-0.025690 +0.525873,-0.939193,0.948916,2.062814,-0.510794,-0.022699 +0.522905,-0.942063,0.949500,2.060199,-0.512567,-0.019801 +0.520033,-0.945030,0.950311,2.057455,-0.514143,-0.017011 +0.517274,-0.948080,0.951345,2.054597,-0.515511,-0.014344 +0.514641,-0.951195,0.952596,2.051640,-0.516666,-0.011815 +0.512149,-0.954361,0.954057,2.048599,-0.517601,-0.009435 +0.509809,-0.957560,0.955722,2.045490,-0.518312,-0.007218 +0.507635,-0.960776,0.957581,2.042329,-0.518794,-0.005175 +0.505638,-0.963991,0.959624,2.039133,-0.519045,-0.003317 +0.503827,-0.967190,0.961842,2.035918,-0.519065,-0.001653 +0.502213,-0.970356,0.964222,2.032702,-0.518852,-0.000192 +0.500805,-0.973471,0.966752,2.029500,-0.518407,0.001058 +0.499608,-0.976520,0.969419,2.026330,-0.517734,0.002091 +0.498630,-0.979487,0.972209,2.023208,-0.516836,0.002901 +0.497876,-0.982357,0.975108,2.020151,-0.515717,0.003484 +0.497349,-0.985114,0.978100,2.017174,-0.514383,0.003838 +0.497052,-0.987744,0.981169,2.014293,-0.512842,0.003959 +0.496988,-0.990233,0.984300,2.011522,-0.511100,0.003849 +0.497155,-0.992569,0.987477,2.008877,-0.509168,0.003506 +0.497554,-0.994739,0.990682,2.006372,-0.507055,0.002934 +0.498182,-0.996731,0.993899,2.004018,-0.504773,0.002134 +0.499036,-0.998537,0.997112,2.001829,-0.502332,0.001112 +0.500112,-1.000145,1.000303,1.999816,-0.499747,-0.000128 +0.501404,-1.001548,1.003456,1.997989,-0.497031,-0.001578 +0.502904,-1.002738,1.006555,1.996358,-0.494197,-0.003233 +0.504607,-1.003710,1.009583,1.994932,-0.491260,-0.005082 +0.506501,-1.004457,1.012525,1.993717,-0.488236,-0.007116 +0.508578,-1.004977,1.015364,1.992721,-0.485140,-0.009325 +0.510827,-1.005266,1.018087,1.991948,-0.481990,-0.011697 +0.513236,-1.005323,1.020680,1.991402,-0.478800,-0.014220 +0.515793,-1.005148,1.023128,1.991087,-0.475588,-0.016881 +0.518483,-1.004742,1.025419,1.991003,-0.472370,-0.019665 +0.521294,-1.004106,1.027540,1.991152,-0.469164,-0.022558 +0.524210,-1.003244,1.029482,1.991533,-0.465986,-0.025545 +0.527216,-1.002161,1.031233,1.992143,-0.462852,-0.028611 +0.530297,-1.000862,1.032786,1.992980,-0.459779,-0.031740 +0.533437,-0.999354,1.034130,1.994038,-0.456783,-0.034914 +0.536619,-0.997645,1.035260,1.995313,-0.453879,-0.038118 +0.539826,-0.995743,1.036170,1.996798,-0.451083,-0.041336 +0.543042,-0.993659,1.036855,1.998485,-0.448409,-0.044549 +0.546250,-0.991403,1.037311,2.000366,-0.445872,-0.047742 +0.549433,-0.988988,1.037536,2.002430,-0.443484,-0.050897 +0.552575,-0.986426,1.037529,2.004667,-0.441257,-0.053999 +0.555660,-0.983730,1.037289,2.007064,-0.439205,-0.057031 +0.558671,-0.980914,1.036819,2.009611,-0.437336,-0.059977 +0.561592,-0.977993,1.036120,2.012293,-0.435661,-0.062823 +0.564408,-0.974982,1.035196,2.015096,-0.434189,-0.065552 +0.567106,-0.971897,1.034052,2.018006,-0.432927,-0.068151 +0.569669,-0.968755,1.032694,2.021007,-0.431883,-0.070607 +0.572086,-0.965570,1.031130,2.024084,-0.431060,-0.072906 +0.574344,-0.962361,1.029366,2.027222,-0.430464,-0.075037 +0.576431,-0.959143,1.027413,2.030402,-0.430098,-0.076988 +0.578335,-0.955933,1.025280,2.033610,-0.429964,-0.078750 +0.580047,-0.952749,1.022979,2.036827,-0.430062,-0.080312 +0.581559,-0.949607,1.020522,2.040038,-0.430391,-0.081668 +0.582862,-0.946523,1.017921,2.043226,-0.430951,-0.082809 +0.583949,-0.943513,1.015190,2.046374,-0.431738,-0.083730 +0.584815,-0.940593,1.012343,2.049465,-0.432749,-0.084426 +0.585455,-0.937779,1.009396,2.052484,-0.433977,-0.084894 +0.585866,-0.935084,1.006363,2.055415,-0.435416,-0.085131 +0.586045,-0.932523,1.003261,2.058242,-0.437059,-0.085136 +0.585993,-0.930110,1.000105,2.060951,-0.438898,-0.084908 +0.585709,-0.927856,0.996911,2.063528,-0.440923,-0.084449 +0.585194,-0.925774,0.993698,2.065958,-0.443122,-0.083762 +0.584451,-0.923875,0.990481,2.068231,-0.445486,-0.082850 +0.583485,-0.922168,0.987277,2.070332,-0.448001,-0.081717 +0.582300,-0.920662,0.984103,2.072253,-0.450654,-0.080370 +0.580902,-0.919365,0.980975,2.073982,-0.453432,-0.078816 +0.579299,-0.918285,0.977910,2.075511,-0.456319,-0.077062 +0.577498,-0.917425,0.974923,2.076831,-0.459302,-0.075118 +0.575510,-0.916792,0.972031,2.077937,-0.462364,-0.072994 +0.573345,-0.916388,0.969249,2.078821,-0.465489,-0.070702 +0.571014,-0.916216,0.966590,2.079480,-0.468662,-0.068252 +0.568529,-0.916276,0.964069,2.079910,-0.471865,-0.065658 +0.565904,-0.916568,0.961698,2.080108,-0.475082,-0.062934 +0.563151,-0.917090,0.959491,2.080075,-0.478296,-0.060093 +0.560285,-0.917840,0.957459,2.079809,-0.481490,-0.057150 +0.557321,-0.918814,0.955612,2.079312,-0.484648,-0.054121 +0.554275,-0.920007,0.953960,2.078587,-0.487753,-0.051022 +0.551163,-0.921412,0.952511,2.077638,-0.490790,-0.047868 +0.548000,-0.923023,0.951274,2.076470,-0.493741,-0.044676 +0.544803,-0.924830,0.950254,2.075088,-0.496592,-0.041464 +0.541590,-0.926825,0.949457,2.073500,-0.499328,-0.038246 +0.538376,-0.928997,0.948887,2.071714,-0.501935,-0.035041 +0.535178,-0.931335,0.948548,2.069740,-0.504399,-0.031865 +0.532013,-0.933826,0.948440,2.067588,-0.506707,-0.028735 +0.528898,-0.936457,0.948564,2.065268,-0.508847,-0.025666 +0.525849,-0.939215,0.948920,2.062794,-0.510809,-0.022675 +0.522881,-0.942086,0.949506,2.060178,-0.512581,-0.019778 +0.520011,-0.945054,0.950319,2.057433,-0.514154,-0.016989 +0.517253,-0.948104,0.951354,2.054574,-0.515521,-0.014324 +0.514621,-0.951220,0.952607,2.051616,-0.516674,-0.011795 +0.512129,-0.954386,0.954070,2.048574,-0.517608,-0.009417 +0.509791,-0.957585,0.955736,2.045465,-0.518317,-0.007201 +0.507618,-0.960801,0.957596,2.042304,-0.518797,-0.005159 +0.505622,-0.964017,0.959641,2.039108,-0.519046,-0.003303 +0.503814,-0.967215,0.961860,2.035893,-0.519064,-0.001640 +0.502201,-0.970381,0.964242,2.032676,-0.518849,-0.000181 +0.500794,-0.973496,0.966773,2.029475,-0.518403,0.001067 +0.499599,-0.976544,0.969441,2.026305,-0.517728,0.002098 +0.498623,-0.979511,0.972232,2.023184,-0.516828,0.002906 +0.497871,-0.982379,0.975131,2.020127,-0.515707,0.003488 +0.497346,-0.985135,0.978124,2.017151,-0.514372,0.003840 +0.497051,-0.987764,0.981194,2.014270,-0.512828,0.003959 +0.496988,-0.990252,0.984325,2.011501,-0.511085,0.003847 +0.497158,-0.992587,0.987502,2.008857,-0.509152,0.003503 +0.497558,-0.994755,0.990707,2.006352,-0.507038,0.002928 +0.498188,-0.996746,0.993925,2.004000,-0.504754,0.002127 +0.499044,-0.998550,0.997138,2.001812,-0.502312,0.001103 +0.500122,-1.000157,1.000329,1.999800,-0.499726,-0.000138 +0.501415,-1.001558,1.003481,1.997975,-0.497008,-0.001591 +0.502917,-1.002747,1.006580,1.996346,-0.494174,-0.003247 +0.504621,-1.003716,1.009607,1.994921,-0.491236,-0.005097 +0.506517,-1.004462,1.012548,1.993708,-0.488212,-0.007133 +0.508595,-1.004980,1.015387,1.992714,-0.485116,-0.009344 +0.510846,-1.005268,1.018109,1.991942,-0.481964,-0.011717 +0.513256,-1.005323,1.020700,1.991399,-0.478774,-0.014241 +0.515813,-1.005146,1.023147,1.991085,-0.475562,-0.016902 +0.518505,-1.004738,1.025436,1.991004,-0.472345,-0.019687 +0.521317,-1.004100,1.027556,1.991154,-0.469139,-0.022581 +0.524234,-1.003237,1.029497,1.991537,-0.465961,-0.025569 +0.527241,-1.002152,1.031247,1.992149,-0.462827,-0.028636 +0.530322,-1.000851,1.032797,1.992987,-0.459755,-0.031765 +0.533462,-0.999341,1.034140,1.994047,-0.456759,-0.034940 +0.536644,-0.997630,1.035268,1.995324,-0.453856,-0.038144 +0.539851,-0.995727,1.036177,1.996811,-0.451061,-0.041361 +0.543067,-0.993642,1.036859,1.998500,-0.448389,-0.044574 +0.546275,-0.991385,1.037314,2.000382,-0.445852,-0.047767 +0.549458,-0.988968,1.037537,2.002447,-0.443465,-0.050922 +0.552600,-0.986405,1.037528,2.004685,-0.441240,-0.054024 +0.555684,-0.983708,1.037286,2.007084,-0.439189,-0.057055 +0.558694,-0.980891,1.036814,2.009632,-0.437322,-0.060001 +0.561615,-0.977969,1.036113,2.012315,-0.435649,-0.062845 +0.564430,-0.974958,1.035188,2.015119,-0.434178,-0.065573 +0.567127,-0.971873,1.034042,2.018029,-0.432918,-0.068172 +0.569689,-0.968729,1.032683,2.021031,-0.431875,-0.070626 +0.572105,-0.965545,1.031116,2.024109,-0.431054,-0.072924 +0.574361,-0.962335,1.029351,2.027247,-0.430460,-0.075053 +0.576446,-0.959117,1.027396,2.030428,-0.430096,-0.077003 +0.578349,-0.955908,1.025262,2.033635,-0.429964,-0.078763 +0.580060,-0.952724,1.022960,2.036853,-0.430063,-0.080324 +0.581570,-0.949582,1.020501,2.040064,-0.430395,-0.081677 +0.582871,-0.946499,1.017900,2.043251,-0.430957,-0.082817 +0.583957,-0.943490,1.015168,2.046399,-0.431745,-0.083736 +0.584821,-0.940571,1.012320,2.049490,-0.432757,-0.084431 +0.585459,-0.937757,1.009372,2.052508,-0.433987,-0.084897 +0.585868,-0.935063,1.006339,2.055438,-0.435428,-0.085132 +0.586046,-0.932504,1.003236,2.058264,-0.437073,-0.085135 +0.585992,-0.930091,1.000079,2.060972,-0.438914,-0.084905 +0.585706,-0.927839,0.996886,2.063548,-0.440940,-0.084445 +0.585189,-0.925759,0.993672,2.065977,-0.443141,-0.083756 +0.584445,-0.923861,0.990455,2.068248,-0.445505,-0.082842 +0.583476,-0.922155,0.987251,2.070348,-0.448021,-0.081707 +0.582289,-0.920651,0.984078,2.072267,-0.450676,-0.080358 +0.580890,-0.919356,0.980950,2.073995,-0.453454,-0.078802 +0.579285,-0.918277,0.977886,2.075522,-0.456343,-0.077047 +0.577483,-0.917419,0.974900,2.076841,-0.459326,-0.075102 +0.575494,-0.916788,0.972009,2.077945,-0.462389,-0.072977 +0.573327,-0.916386,0.969227,2.078827,-0.465514,-0.070683 +0.570995,-0.916215,0.966569,2.079484,-0.468687,-0.068232 +0.568509,-0.916277,0.964049,2.079912,-0.471890,-0.065637 +0.565882,-0.916571,0.961680,2.080109,-0.475107,-0.062911 +0.563128,-0.917095,0.959474,2.080073,-0.478321,-0.060070 +0.560262,-0.917847,0.957443,2.079806,-0.481515,-0.057126 +0.557297,-0.918823,0.955598,2.079307,-0.484673,-0.054097 +0.554251,-0.920017,0.953947,2.078581,-0.487778,-0.050997 +0.551138,-0.921424,0.952501,2.077630,-0.490813,-0.047843 +0.547975,-0.923037,0.951265,2.076460,-0.493764,-0.044651 +0.544778,-0.924846,0.950247,2.075076,-0.496614,-0.041438 +0.541564,-0.926842,0.949452,2.073487,-0.499350,-0.038221 +0.538350,-0.929015,0.948884,2.071699,-0.501955,-0.035016 +0.535153,-0.931354,0.948546,2.069724,-0.504418,-0.031840 +0.531988,-0.933846,0.948440,2.067570,-0.506725,-0.028710 +0.528874,-0.936479,0.948566,2.065249,-0.508864,-0.025642 +0.525825,-0.939238,0.948924,2.062774,-0.510823,-0.022652 +0.522858,-0.942109,0.949512,2.060156,-0.512594,-0.019755 +0.519988,-0.945078,0.950326,2.057410,-0.514166,-0.016967 +0.517231,-0.948129,0.951363,2.054551,-0.515531,-0.014303 +0.514601,-0.951245,0.952617,2.051592,-0.516683,-0.011776 +0.512110,-0.954412,0.954082,2.048550,-0.517614,-0.009398 +0.509773,-0.957611,0.955750,2.045440,-0.518321,-0.007184 +0.507602,-0.960827,0.957612,2.042279,-0.518800,-0.005144 +0.505607,-0.964042,0.959658,2.039082,-0.519047,-0.003289 +0.503800,-0.967241,0.961879,2.035867,-0.519063,-0.001628 +0.502189,-0.970406,0.964261,2.032651,-0.518846,-0.000171 +0.500784,-0.973520,0.966794,2.029450,-0.518398,0.001076 +0.499591,-0.976568,0.969463,2.026280,-0.517722,0.002105 +0.498616,-0.979534,0.972255,2.023159,-0.516820,0.002912 +0.497865,-0.982402,0.975155,2.020103,-0.515697,0.003492 +0.497342,-0.985157,0.978148,2.017127,-0.514360,0.003841 +0.497049,-0.987784,0.981218,2.014248,-0.512815,0.003959 +0.496989,-0.990271,0.984350,2.011479,-0.511071,0.003845 +0.497160,-0.992605,0.987527,2.008836,-0.509136,0.003499 +0.497562,-0.994772,0.990733,2.006333,-0.507020,0.002923 +0.498194,-0.996762,0.993951,2.003982,-0.504735,0.002120 +0.499052,-0.998564,0.997163,2.001795,-0.502292,0.001094 +0.500131,-1.000169,1.000354,1.999785,-0.499705,-0.000149 +0.501426,-1.001568,1.003506,1.997961,-0.496986,-0.001603 +0.502930,-1.002755,1.006604,1.996334,-0.494151,-0.003261 +0.504635,-1.003723,1.009631,1.994911,-0.491212,-0.005113 +0.506533,-1.004467,1.012571,1.993699,-0.488187,-0.007150 +0.508613,-1.004983,1.015409,1.992707,-0.485091,-0.009362 +0.510864,-1.005269,1.018130,1.991937,-0.481939,-0.011736 +0.513276,-1.005322,1.020720,1.991395,-0.478749,-0.014262 +0.515834,-1.005144,1.023165,1.991084,-0.475537,-0.016924 +0.518527,-1.004734,1.025454,1.991004,-0.472319,-0.019710 +0.521339,-1.004094,1.027573,1.991157,-0.469113,-0.022605 +0.524257,-1.003229,1.029511,1.991541,-0.465935,-0.025594 +0.527265,-1.002142,1.031260,1.992155,-0.462802,-0.028661 +0.530347,-1.000840,1.032809,1.992995,-0.459730,-0.031790 +0.533487,-0.999328,1.034150,1.994057,-0.456736,-0.034965 +0.536669,-0.997616,1.035277,1.995335,-0.453834,-0.038170 +0.539877,-0.995711,1.036183,1.996824,-0.451040,-0.041387 +0.543093,-0.993624,1.036864,1.998514,-0.448368,-0.044600 +0.546301,-0.991366,1.037316,2.000397,-0.445833,-0.047792 +0.549484,-0.988949,1.037538,2.002464,-0.443447,-0.050947 +0.552625,-0.986384,1.037527,2.004704,-0.441223,-0.054048 +0.555708,-0.983686,1.037283,2.007104,-0.439173,-0.057079 +0.558718,-0.980868,1.036809,2.009653,-0.437308,-0.060024 +0.561637,-0.977946,1.036107,2.012336,-0.435636,-0.062867 +0.564452,-0.974934,1.035180,2.015141,-0.434167,-0.065595 +0.567148,-0.971848,1.034032,2.018053,-0.432909,-0.068192 +0.569709,-0.968704,1.032671,2.021055,-0.431868,-0.070645 +0.572124,-0.965519,1.031103,2.024134,-0.431049,-0.072942 +0.574379,-0.962309,1.029336,2.027272,-0.430457,-0.075070 +0.576462,-0.959092,1.027380,2.030453,-0.430094,-0.077018 +0.578364,-0.955883,1.025245,2.033661,-0.429963,-0.078776 +0.580073,-0.952699,1.022941,2.036879,-0.430065,-0.080335 +0.581581,-0.949557,1.020481,2.040089,-0.430398,-0.081687 +0.582881,-0.946474,1.017878,2.043277,-0.430962,-0.082825 +0.583964,-0.943466,1.015146,2.046424,-0.431753,-0.083743 +0.584827,-0.940548,1.012297,2.049514,-0.432766,-0.084436 +0.585463,-0.937735,1.009348,2.052532,-0.433998,-0.084900 +0.585870,-0.935042,1.006314,2.055461,-0.435441,-0.085133 +0.586046,-0.932484,1.003211,2.058286,-0.437087,-0.085134 +0.585990,-0.930073,1.000054,2.060993,-0.438929,-0.084902 +0.585702,-0.927822,0.996860,2.063568,-0.440956,-0.084440 +0.585184,-0.925743,0.993647,2.065996,-0.443159,-0.083749 +0.584438,-0.923846,0.990430,2.068265,-0.445525,-0.082833 +0.583468,-0.922142,0.987226,2.070364,-0.448042,-0.081697 +0.582279,-0.920640,0.984052,2.072282,-0.450697,-0.080347 +0.580878,-0.919346,0.980926,2.074008,-0.453477,-0.078789 +0.579271,-0.918269,0.977862,2.075534,-0.456366,-0.077032 +0.577468,-0.917414,0.974877,2.076851,-0.459350,-0.075086 +0.575477,-0.916784,0.971986,2.077953,-0.462413,-0.072959 +0.573309,-0.916384,0.969205,2.078833,-0.465539,-0.070664 +0.570976,-0.916215,0.966549,2.079489,-0.468713,-0.068212 +0.568489,-0.916279,0.964030,2.079915,-0.471916,-0.065616 +0.565861,-0.916574,0.961662,2.080110,-0.475133,-0.062889 +0.563106,-0.917100,0.959457,2.080072,-0.478347,-0.060047 +0.560238,-0.917854,0.957428,2.079803,-0.481541,-0.057103 +0.557273,-0.918832,0.955584,2.079302,-0.484698,-0.054072 +0.554226,-0.920028,0.953935,2.078574,-0.487802,-0.050972 +0.551113,-0.921436,0.952490,2.077621,-0.490837,-0.047818 +0.547949,-0.923050,0.951256,2.076449,-0.493787,-0.044625 +0.544752,-0.924861,0.950240,2.075064,-0.496637,-0.041412 +0.541539,-0.926858,0.949446,2.073473,-0.499371,-0.038195 +0.538325,-0.929033,0.948880,2.071684,-0.501975,-0.034990 +0.535127,-0.931373,0.948544,2.069707,-0.504437,-0.031815 +0.531963,-0.933866,0.948440,2.067552,-0.506742,-0.028685 +0.528849,-0.936500,0.948568,2.065230,-0.508880,-0.025618 +0.525801,-0.939260,0.948928,2.062753,-0.510838,-0.022628 +0.522835,-0.942133,0.949517,2.060135,-0.512607,-0.019733 +0.519966,-0.945102,0.950334,2.057388,-0.514178,-0.016946 +0.517210,-0.948153,0.951372,2.054528,-0.515541,-0.014282 +0.514580,-0.951270,0.952628,2.051568,-0.516691,-0.011756 +0.512091,-0.954437,0.954095,2.048525,-0.517621,-0.009380 +0.509755,-0.957636,0.955764,2.045415,-0.518326,-0.007167 +0.507585,-0.960852,0.957627,2.042253,-0.518803,-0.005128 +0.505592,-0.964068,0.959675,2.039057,-0.519049,-0.003275 +0.503786,-0.967266,0.961897,2.035842,-0.519062,-0.001616 +0.502177,-0.970431,0.964281,2.032625,-0.518844,-0.000160 +0.500774,-0.973545,0.966814,2.029424,-0.518394,0.001085 +0.499582,-0.976592,0.969485,2.026255,-0.517715,0.002113 +0.498609,-0.979557,0.972277,2.023135,-0.516812,0.002917 +0.497860,-0.982424,0.975178,2.020079,-0.515688,0.003495 +0.497339,-0.985178,0.978172,2.017104,-0.514349,0.003843 +0.497048,-0.987805,0.981243,2.014225,-0.512802,0.003959 +0.496991,-0.988976,0.982689,2.012930,-0.512017,0.003935 +0.496977,-0.990110,0.984141,2.011660,-0.511198,0.003869 +0.497000,-0.991202,0.985594,2.010440,-0.510350,0.003769 +0.497053,-0.992253,0.987040,2.009250,-0.509483,0.003642 +0.497131,-0.993263,0.988474,2.008120,-0.508605,0.003496 +0.497225,-0.994231,0.989888,2.007030,-0.507722,0.003338 +0.497331,-0.995157,0.991277,2.005990,-0.506843,0.003178 +0.497442,-0.996042,0.992634,2.004990,-0.505975,0.003021 +0.497550,-0.996885,0.993951,2.004040,-0.505126,0.002871 +0.497654,-0.997686,0.995224,2.003140,-0.504305,0.002727 +0.497754,-0.998446,0.996444,2.002290,-0.503518,0.002590 +0.497848,-0.999164,0.997607,2.001480,-0.502772,0.002459 +0.497938,-0.999841,0.998705,2.000710,-0.502069,0.002335 +0.498023,-1.000480,0.999732,1.999990,-0.501407,0.002217 +0.498104,-1.001070,1.000680,1.999320,-0.500787,0.002106 +0.498179,-1.001620,1.001550,1.998700,-0.500209,0.002002 +0.498250,-1.002130,1.002320,1.998120,-0.499673,0.001904 +0.498317,-1.002600,1.003000,1.997590,-0.499179,0.001812 +0.498378,-1.003030,1.003590,1.997100,-0.498727,0.001727 +0.498435,-1.003410,1.004090,1.996660,-0.498317,0.001649 +0.498488,-1.003760,1.004520,1.996270,-0.497949,0.001577 +0.498535,-1.004060,1.004870,1.995920,-0.497624,0.001511 +0.498578,-1.004320,1.005170,1.995620,-0.497340,0.001452 +0.498616,-1.004540,1.005400,1.995370,-0.497098,0.001400 +0.498649,-1.004710,1.005580,1.995160,-0.496897,0.001354 +0.498678,-1.004850,1.005720,1.995000,-0.496739,0.001314 +0.498702,-1.004950,1.005810,1.994880,-0.496623,0.001281 +0.498721,-1.005010,1.005880,1.994800,-0.496545,0.001255 +0.498736,-1.005050,1.005920,1.994760,-0.496498,0.001235 +0.498746,-1.005070,1.005940,1.994730,-0.496475,0.001222 +0.498751,-1.005080,1.005940,1.994720,-0.496466,0.001215 +0.498752,-1.005080,1.005940,1.994720,-0.496465,0.001214 +0.498752,-1.005080,1.005940,1.994720,-0.496472,0.001218 +0.498754,-1.005080,1.005940,1.994720,-0.496472,0.001218 +0.498755,-1.005080,1.005940,1.994720,-0.496473,0.001219 +0.498759,-1.005070,1.005930,1.994730,-0.496478,0.001224 +0.498770,-1.005060,1.005920,1.994740,-0.496490,0.001234 +0.498788,-1.005050,1.005900,1.994760,-0.496513,0.001245 +0.498818,-1.005020,1.005870,1.994800,-0.496549,0.001256 +0.498862,-1.004970,1.005830,1.994850,-0.496599,0.001267 +0.498922,-1.004910,1.005770,1.994920,-0.496660,0.001279 +0.499001,-1.004830,1.005690,1.995020,-0.496729,0.001290 +0.499101,-1.004730,1.005590,1.995130,-0.496803,0.001301 +0.499226,-1.004610,1.005470,1.995260,-0.496879,0.001312 +0.499377,-1.004470,1.005330,1.995410,-0.496955,0.001324 +0.499558,-1.004320,1.005180,1.995570,-0.497031,0.001335 +0.499771,-1.004160,1.005010,1.995740,-0.497108,0.001346 +0.500018,-1.003980,1.004830,1.995910,-0.497184,0.001358 +0.500302,-1.003800,1.004650,1.996080,-0.497260,0.001369 +0.500626,-1.003610,1.004460,1.996260,-0.497336,0.001380 +0.500992,-1.003420,1.004260,1.996430,-0.497412,0.001391 +0.501403,-1.003240,1.004070,1.996600,-0.497488,0.001403 +0.501862,-1.003050,1.003880,1.996780,-0.497565,0.001414 +0.502370,-1.002860,1.003690,1.996950,-0.497641,0.001425 +0.502932,-1.002670,1.003490,1.997130,-0.497717,0.001436 +0.503548,-1.002480,1.003300,1.997300,-0.497793,0.001448 +0.504223,-1.002290,1.003110,1.997480,-0.497869,0.001459 +0.504958,-1.002100,1.002910,1.997650,-0.497945,0.001470 +0.505756,-1.001910,1.002720,1.997820,-0.498022,0.001482 +0.506620,-1.001730,1.002530,1.998000,-0.498098,0.001493 +0.507552,-1.001540,1.002340,1.998170,-0.498174,0.001504 +0.508554,-1.001350,1.002140,1.998350,-0.498250,0.001515 +0.509631,-1.001160,1.001950,1.998520,-0.498326,0.001527 +0.510783,-1.000970,1.001760,1.998700,-0.498402,0.001538 +0.512014,-1.000780,1.001570,1.998870,-0.498479,0.001549 +0.513326,-1.000590,1.001370,1.999040,-0.498555,0.001560 +0.514723,-1.000400,1.001180,1.999220,-0.498631,0.001572 +0.516205,-1.000220,1.000990,1.999390,-0.498707,0.001583 +0.517777,-1.000030,1.000790,1.999570,-0.498783,0.001594 +0.519440,-0.999838,1.000600,1.999740,-0.498859,0.001606 +0.521197,-0.999649,1.000410,1.999920,-0.498936,0.001617 +0.523052,-0.999460,1.000220,2.000090,-0.499012,0.001628 +0.525005,-0.999271,1.000020,2.000260,-0.499088,0.001639 +0.527061,-0.999082,0.999831,2.000440,-0.499164,0.001651 +0.529222,-0.998894,0.999638,2.000610,-0.499240,0.001662 +0.531489,-0.998705,0.999446,2.000790,-0.499316,0.001673 +0.533866,-0.998516,0.999253,2.000960,-0.499393,0.001684 +0.536356,-0.998327,0.999060,2.001140,-0.499469,0.001696 +0.538961,-0.998138,0.998867,2.001310,-0.499545,0.001707 +0.541683,-0.997949,0.998675,2.001480,-0.499621,0.001718 +0.544526,-0.997761,0.998482,2.001660,-0.499697,0.001730 +0.547491,-0.997572,0.998289,2.001830,-0.499773,0.001741 +0.550582,-0.997383,0.998096,2.002010,-0.499850,0.001752 +0.553801,-0.997194,0.997904,2.002180,-0.499926,0.001763 +0.557149,-0.997005,0.997711,2.002360,-0.500002,0.001775 +0.560627,-0.996817,0.997518,2.002530,-0.500078,0.001786 +0.564235,-0.996628,0.997325,2.002710,-0.500154,0.001797 +0.567973,-0.996439,0.997133,2.002880,-0.500230,0.001808 +0.571841,-0.996250,0.996940,2.003050,-0.500307,0.001820 +0.575838,-0.996061,0.996747,2.003230,-0.500383,0.001831 +0.579965,-0.995873,0.996554,2.003400,-0.500459,0.001842 +0.584223,-0.995684,0.996362,2.003580,-0.500535,0.001854 +0.588609,-0.995495,0.996169,2.003750,-0.500611,0.001865 +0.593126,-0.995306,0.995976,2.003930,-0.500687,0.001876 +0.597773,-0.995117,0.995783,2.004100,-0.500764,0.001887 +0.602549,-0.994929,0.995591,2.004270,-0.500840,0.001899 +0.607455,-0.994740,0.995398,2.004450,-0.500916,0.001910 +0.612491,-0.994551,0.995205,2.004620,-0.500992,0.001921 +0.617657,-0.994362,0.995012,2.004800,-0.501068,0.001932 +0.622953,-0.994173,0.994820,2.004970,-0.501144,0.001944 +0.628378,-0.993985,0.994627,2.005150,-0.501221,0.001955 +0.633933,-0.993796,0.994434,2.005320,-0.501297,0.001966 +0.639619,-0.993607,0.994241,2.005490,-0.501373,0.001978 +0.645433,-0.993418,0.994049,2.005670,-0.501449,0.001989 +0.651378,-0.993229,0.993856,2.005840,-0.501525,0.002000 +0.657453,-0.993041,0.993663,2.006020,-0.501601,0.002011 +0.663657,-0.992852,0.993470,2.006190,-0.501678,0.002023 +0.669991,-0.992663,0.993278,2.006370,-0.501754,0.002034 +0.676455,-0.992474,0.993085,2.006540,-0.501830,0.002045 +0.683049,-0.992285,0.992892,2.006710,-0.501906,0.002056 +0.689773,-0.992096,0.992699,2.006890,-0.501982,0.002068 +0.696626,-0.991908,0.992507,2.007060,-0.502058,0.002079 +0.703609,-0.991719,0.992314,2.007240,-0.502135,0.002090 +0.710722,-0.991530,0.992121,2.007410,-0.502211,0.002102 +0.717965,-0.991341,0.991928,2.007590,-0.502287,0.002113 +0.725338,-0.991152,0.991736,2.007760,-0.502363,0.002124 +0.732841,-0.990964,0.991543,2.007930,-0.502439,0.002135 +0.740473,-0.990775,0.991350,2.008110,-0.502515,0.002147 +0.748235,-0.990586,0.991157,2.008280,-0.502592,0.002158 +0.756127,-0.990397,0.990965,2.008460,-0.502668,0.002169 +0.764145,-0.990208,0.990772,2.008630,-0.502744,0.002180 +0.772287,-0.990020,0.990579,2.008810,-0.502820,0.002192 +0.780551,-0.989831,0.990386,2.008980,-0.502896,0.002203 +0.788934,-0.989642,0.990194,2.009150,-0.502972,0.002214 +0.797433,-0.989453,0.990001,2.009330,-0.503049,0.002226 +0.806047,-0.989264,0.989808,2.009500,-0.503125,0.002237 +0.814771,-0.989076,0.989615,2.009680,-0.503201,0.002248 +0.823604,-0.988887,0.989423,2.009850,-0.503277,0.002259 +0.832544,-0.988698,0.989230,2.010030,-0.503353,0.002271 +0.841586,-0.988509,0.989037,2.010200,-0.503429,0.002282 +0.850730,-0.988320,0.988844,2.010370,-0.503506,0.002293 +0.859972,-0.988132,0.988652,2.010550,-0.503582,0.002304 +0.869309,-0.987943,0.988459,2.010720,-0.503658,0.002316 +0.878740,-0.987754,0.988266,2.010900,-0.503734,0.002327 +0.888261,-0.987565,0.988073,2.011070,-0.503810,0.002338 +0.897869,-0.987376,0.987881,2.011250,-0.503886,0.002350 +0.907563,-0.987188,0.987688,2.011420,-0.503963,0.002361 +0.917340,-0.986999,0.987495,2.011590,-0.504039,0.002372 +0.927197,-0.986810,0.987302,2.011770,-0.504115,0.002383 +0.937132,-0.986621,0.987110,2.011940,-0.504191,0.002395 +0.947141,-0.986432,0.986917,2.012120,-0.504267,0.002406 +0.957222,-0.986243,0.986724,2.012290,-0.504343,0.002417 +0.967374,-0.986055,0.986531,2.012470,-0.504420,0.002428 +0.977592,-0.985866,0.986339,2.012640,-0.504496,0.002440 +0.987875,-0.985677,0.986146,2.012820,-0.504572,0.002451 +0.998220,-0.985488,0.985953,2.012990,-0.504648,0.002462 +1.008620,-0.985299,0.985760,2.013160,-0.504724,0.002474 +1.019080,-0.985111,0.985568,2.013340,-0.504800,0.002485 +1.029600,-0.984922,0.985375,2.013510,-0.504877,0.002496 +1.040170,-0.984733,0.985182,2.013690,-0.504953,0.002507 +1.050780,-0.984544,0.984989,2.013860,-0.505029,0.002519 +1.061440,-0.984355,0.984797,2.014040,-0.505105,0.002530 +1.072150,-0.984167,0.984604,2.014210,-0.505181,0.002541 +1.082890,-0.983978,0.984411,2.014380,-0.505257,0.002552 +1.093680,-0.983789,0.984218,2.014560,-0.505334,0.002564 +1.104500,-0.983600,0.984026,2.014730,-0.505410,0.002575 +1.115360,-0.983411,0.983833,2.014910,-0.505486,0.002586 +1.126240,-0.983223,0.983640,2.015080,-0.505562,0.002598 +1.137150,-0.983034,0.983447,2.015260,-0.505638,0.002609 +1.148090,-0.982845,0.983255,2.015430,-0.505714,0.002620 +1.159050,-0.982656,0.983062,2.015600,-0.505791,0.002631 +1.170040,-0.982467,0.982869,2.015780,-0.505867,0.002643 +1.181040,-0.982279,0.982676,2.015950,-0.505943,0.002654 +1.192050,-0.982090,0.982484,2.016130,-0.506019,0.002665 +1.203080,-0.981901,0.982291,2.016300,-0.506095,0.002676 +1.214120,-0.981712,0.982098,2.016480,-0.506171,0.002688 +1.225160,-0.981523,0.981905,2.016650,-0.506248,0.002699 +1.236210,-0.981335,0.981713,2.016820,-0.506324,0.002710 +1.247260,-0.981146,0.981520,2.017000,-0.506400,0.002722 +1.258320,-0.980957,0.981327,2.017170,-0.506476,0.002733 +1.269360,-0.980768,0.981134,2.017350,-0.506552,0.002744 +1.280410,-0.980579,0.980942,2.017520,-0.506628,0.002755 +1.291440,-0.980391,0.980749,2.017700,-0.506705,0.002767 +1.302470,-0.980202,0.980556,2.017870,-0.506781,0.002778 +1.313480,-0.980013,0.980363,2.018040,-0.506857,0.002789 +1.324470,-0.979824,0.980171,2.018220,-0.506933,0.002800 +1.335450,-0.979635,0.979978,2.018390,-0.507009,0.002812 +1.346400,-0.979446,0.979785,2.018570,-0.507085,0.002823 +1.357330,-0.979258,0.979592,2.018740,-0.507162,0.002834 +1.368240,-0.979069,0.979400,2.018920,-0.507238,0.002846 +1.379110,-0.978880,0.979207,2.019090,-0.507314,0.002857 +1.389960,-0.978691,0.979014,2.019260,-0.507390,0.002868 +1.400770,-0.978502,0.978821,2.019440,-0.507466,0.002879 +1.411540,-0.978314,0.978629,2.019610,-0.507542,0.002891 +1.422280,-0.978125,0.978436,2.019790,-0.507619,0.002902 +1.432970,-0.977936,0.978243,2.019960,-0.507695,0.002913 +1.443620,-0.977747,0.978050,2.020140,-0.507771,0.002924 +1.454220,-0.977558,0.977858,2.020310,-0.507847,0.002936 +1.464770,-0.977370,0.977665,2.020480,-0.507923,0.002947 +1.475270,-0.977181,0.977472,2.020660,-0.507999,0.002958 +1.485710,-0.976992,0.977279,2.020830,-0.508076,0.002970 +1.496090,-0.976803,0.977087,2.021010,-0.508152,0.002981 +1.506420,-0.976614,0.976894,2.021180,-0.508228,0.002992 +1.516680,-0.976426,0.976701,2.021360,-0.508304,0.003003 +1.526880,-0.976237,0.976508,2.021530,-0.508380,0.003015 +1.537010,-0.976048,0.976316,2.021710,-0.508456,0.003026 +1.547070,-0.975859,0.976123,2.021880,-0.508533,0.003037 +1.557060,-0.975670,0.975930,2.022050,-0.508609,0.003048 +1.566970,-0.975482,0.975737,2.022230,-0.508685,0.003060 +1.576800,-0.975293,0.975545,2.022400,-0.508761,0.003071 +1.586550,-0.975104,0.975352,2.022580,-0.508837,0.003082 +1.596220,-0.974915,0.975159,2.022750,-0.508913,0.003094 +1.605800,-0.974726,0.974967,2.022930,-0.508990,0.003105 +1.615290,-0.974538,0.974774,2.023100,-0.509066,0.003116 +1.624700,-0.974349,0.974581,2.023270,-0.509142,0.003127 +1.634000,-0.974160,0.974388,2.023450,-0.509218,0.003139 +1.643210,-0.973971,0.974196,2.023620,-0.509294,0.003150 +1.652330,-0.973782,0.974003,2.023800,-0.509370,0.003161 +1.661340,-0.973593,0.973810,2.023970,-0.509447,0.003172 +1.670240,-0.973405,0.973617,2.024150,-0.509523,0.003184 +1.679040,-0.973216,0.973425,2.024320,-0.509599,0.003195 +1.687730,-0.973027,0.973232,2.024490,-0.509675,0.003206 +1.696310,-0.972838,0.973039,2.024670,-0.509751,0.003218 +1.704780,-0.972649,0.972846,2.024840,-0.509827,0.003229 +1.713120,-0.972461,0.972654,2.025020,-0.509904,0.003240 +1.721350,-0.972272,0.972461,2.025190,-0.509980,0.003251 +1.729450,-0.972083,0.972268,2.025370,-0.510056,0.003263 +1.737430,-0.971894,0.972075,2.025540,-0.510132,0.003274 +1.745280,-0.971705,0.971883,2.025710,-0.510208,0.003285 +1.753000,-0.971517,0.971690,2.025890,-0.510284,0.003296 +1.760600,-0.971328,0.971497,2.026060,-0.510361,0.003308 +1.768060,-0.971139,0.971304,2.026240,-0.510437,0.003319 +1.775390,-0.970950,0.971112,2.026410,-0.510513,0.003330 +1.782590,-0.970761,0.970919,2.026590,-0.510589,0.003342 +1.789670,-0.970573,0.970726,2.026760,-0.510665,0.003353 +1.796610,-0.970384,0.970533,2.026930,-0.510741,0.003364 +1.803420,-0.970195,0.970341,2.027110,-0.510818,0.003375 +1.810100,-0.970006,0.970148,2.027280,-0.510894,0.003387 +1.816660,-0.969817,0.969955,2.027460,-0.510970,0.003398 +1.823080,-0.969629,0.969762,2.027630,-0.511046,0.003409 +1.829380,-0.969440,0.969570,2.027810,-0.511122,0.003420 +1.835540,-0.969251,0.969377,2.027980,-0.511198,0.003432 +1.841570,-0.969062,0.969184,2.028150,-0.511275,0.003443 +1.847480,-0.968873,0.968991,2.028330,-0.511351,0.003454 +1.853250,-0.968685,0.968799,2.028500,-0.511427,0.003466 +1.858900,-0.968496,0.968606,2.028680,-0.511503,0.003477 +1.864410,-0.968307,0.968413,2.028850,-0.511579,0.003488 +1.869800,-0.968118,0.968220,2.029030,-0.511655,0.003499 +1.875050,-0.967929,0.968028,2.029200,-0.511732,0.003511 +1.880180,-0.967740,0.967835,2.029370,-0.511808,0.003522 +1.885170,-0.967552,0.967642,2.029550,-0.511884,0.003533 +1.890040,-0.967363,0.967449,2.029720,-0.511960,0.003544 +1.894770,-0.967174,0.967257,2.029900,-0.512036,0.003556 +1.899380,-0.966985,0.967064,2.030070,-0.512112,0.003567 +1.903860,-0.966796,0.966871,2.030250,-0.512189,0.003578 +1.908200,-0.966608,0.966678,2.030420,-0.512265,0.003590 +1.912420,-0.966419,0.966486,2.030590,-0.512341,0.003601 +1.916510,-0.966230,0.966293,2.030770,-0.512417,0.003612 +1.920460,-0.966041,0.966100,2.030940,-0.512493,0.003623 +1.924290,-0.965852,0.965907,2.031120,-0.512569,0.003635 +1.927990,-0.965664,0.965715,2.031290,-0.512646,0.003646 +1.931560,-0.965475,0.965522,2.031470,-0.512722,0.003657 +1.934990,-0.965286,0.965329,2.031640,-0.512798,0.003668 +1.938300,-0.965097,0.965136,2.031820,-0.512874,0.003680 +1.941480,-0.964908,0.964944,2.031990,-0.512950,0.003691 +1.944540,-0.964720,0.964751,2.032160,-0.513026,0.003702 +1.947470,-0.964531,0.964558,2.032340,-0.513103,0.003714 +1.950290,-0.964342,0.964365,2.032510,-0.513179,0.003725 +1.952990,-0.964153,0.964173,2.032690,-0.513255,0.003736 +1.955570,-0.963964,0.963980,2.032860,-0.513331,0.003747 +1.958040,-0.963776,0.963787,2.033040,-0.513407,0.003759 +1.960400,-0.963591,0.963594,2.033210,-0.513483,0.003770 +1.962660,-0.963412,0.963402,2.033380,-0.513560,0.003781 +1.964810,-0.963241,0.963209,2.033560,-0.513636,0.003792 +1.966860,-0.963082,0.963016,2.033730,-0.513712,0.003804 +1.968810,-0.962935,0.962823,2.033910,-0.513788,0.003815 +1.970670,-0.962805,0.962631,2.034080,-0.513864,0.003826 +1.972430,-0.962693,0.962438,2.034250,-0.513940,0.003838 +1.974100,-0.962603,0.962248,2.034420,-0.514017,0.003849 +1.975680,-0.962537,0.962063,2.034590,-0.514093,0.003860 +1.977180,-0.962497,0.961885,2.034740,-0.514169,0.003871 +1.978590,-0.962486,0.961718,2.034880,-0.514245,0.003883 +1.979930,-0.962507,0.961563,2.035000,-0.514321,0.003894 +1.981180,-0.962563,0.961423,2.035110,-0.514397,0.003905 +1.982360,-0.962655,0.961301,2.035190,-0.514474,0.003917 +1.983470,-0.962786,0.961200,2.035250,-0.514550,0.003928 +1.984500,-0.962960,0.961122,2.035270,-0.514626,0.003939 +1.985470,-0.963179,0.961069,2.035270,-0.514702,0.003950 +1.986380,-0.963444,0.961045,2.035230,-0.514778,0.003962 +1.987220,-0.963760,0.961052,2.035160,-0.514854,0.003973 +1.988000,-0.964128,0.961092,2.035040,-0.514931,0.003984 +1.988720,-0.964551,0.961168,2.034880,-0.515007,0.003995 +1.989390,-0.965031,0.961283,2.034670,-0.515083,0.004007 +1.990010,-0.965565,0.961439,2.034410,-0.515159,0.004018 +1.990580,-0.966151,0.961639,2.034090,-0.515235,0.004029 +1.991100,-0.966787,0.961885,2.033720,-0.515311,0.004041 +1.991580,-0.967470,0.962181,2.033300,-0.515388,0.004052 +1.992010,-0.968197,0.962528,2.032800,-0.515464,0.004063 +1.992410,-0.968965,0.962929,2.032250,-0.515537,0.004074 +1.992770,-0.969772,0.963388,2.031630,-0.515606,0.004086 +1.993090,-0.970616,0.963905,2.030960,-0.515665,0.004097 +1.993390,-0.971494,0.964485,2.030240,-0.515714,0.004108 +1.993650,-0.972403,0.965129,2.029470,-0.515747,0.004119 +1.993890,-0.973341,0.965838,2.028640,-0.515763,0.004131 +1.994110,-0.974304,0.966609,2.027780,-0.515758,0.004142 +1.994310,-0.975292,0.967440,2.026870,-0.515728,0.004153 +1.994480,-0.976300,0.968328,2.025930,-0.515672,0.004165 +1.994640,-0.977326,0.969270,2.024950,-0.515585,0.004176 +1.994790,-0.978368,0.970264,2.023940,-0.515465,0.004187 +1.994930,-0.979423,0.971308,2.022900,-0.515309,0.004198 +1.995060,-0.980488,0.972398,2.021830,-0.515113,0.004210 +1.995190,-0.981562,0.973532,2.020750,-0.514874,0.004219 +1.995310,-0.982640,0.974707,2.019640,-0.514589,0.004224 +1.995430,-0.983722,0.975922,2.018520,-0.514256,0.004221 +1.995550,-0.984803,0.977173,2.017380,-0.513870,0.004208 +1.995680,-0.985882,0.978457,2.016240,-0.513429,0.004180 +1.995820,-0.986956,0.979773,2.015090,-0.512931,0.004135 +1.995970,-0.988022,0.981117,2.013930,-0.512370,0.004071 +1.996130,-0.989078,0.982486,2.012780,-0.511745,0.003982 +1.996300,-0.990121,0.983880,2.011620,-0.511055,0.003868 +1.996500,-0.991148,0.985294,2.010480,-0.510302,0.003724 +1.996710,-0.992158,0.986726,2.009340,-0.509489,0.003547 +1.996950,-0.993146,0.988173,2.008210,-0.508620,0.003334 +1.997210,-0.994112,0.989634,2.007100,-0.507697,0.003083 +1.997510,-0.995051,0.991104,2.006010,-0.506724,0.002790 +1.997830,-0.995963,0.992583,2.004930,-0.505703,0.002451 +1.998190,-0.996843,0.994066,2.003890,-0.504638,0.002065 +1.998580,-0.997689,0.995552,2.002860,-0.503532,0.001627 +1.999010,-0.998499,0.997039,2.001880,-0.502389,0.001135 +1.999480,-0.999270,0.998522,2.000920,-0.501210,0.000592 +2.000000,-1.000000,1.000000,2.000000,-0.500000,0.000000 +2.001173,-1.001328,1.002933,1.998280,-0.497493,-0.001322 +2.002528,-1.002474,1.005822,1.996729,-0.494882,-0.002820 +2.004058,-1.003432,1.008653,1.995351,-0.492180,-0.004489 +2.005756,-1.004199,1.011414,1.994155,-0.489399,-0.006319 +2.007616,-1.004770,1.014092,1.993144,-0.486550,-0.008304 +2.009627,-1.005143,1.016675,1.992325,-0.483648,-0.010434 +2.011782,-1.005317,1.019152,1.991700,-0.480704,-0.012700 +2.014071,-1.005291,1.021511,1.991271,-0.477733,-0.015091 +2.016483,-1.005064,1.023742,1.991043,-0.474747,-0.017597 +2.019008,-1.004639,1.025834,1.991014,-0.471761,-0.020206 +2.021633,-1.004016,1.027780,1.991185,-0.468786,-0.022907 +2.024349,-1.003199,1.029568,1.991556,-0.465838,-0.025687 +2.027141,-1.002190,1.031193,1.992125,-0.462929,-0.028535 +2.029998,-1.000996,1.032645,1.992889,-0.460071,-0.031436 +2.032907,-0.999621,1.033920,1.993845,-0.457279,-0.034379 +2.035855,-0.998071,1.035010,1.994989,-0.454564,-0.037350 +2.038828,-0.996354,1.035911,1.996315,-0.451939,-0.040336 +2.041813,-0.994476,1.036620,1.997817,-0.449416,-0.043323 +2.044797,-0.992447,1.037133,1.999490,-0.447005,-0.046297 +2.047766,-0.990276,1.037447,2.001324,-0.444718,-0.049246 +2.050707,-0.987971,1.037561,2.003312,-0.442565,-0.052156 +2.053606,-0.985545,1.037475,2.005445,-0.440556,-0.055014 +2.056452,-0.983007,1.037189,2.007714,-0.438700,-0.057808 +2.059230,-0.980369,1.036704,2.010108,-0.437004,-0.060523 +2.061929,-0.977643,1.036023,2.012616,-0.435478,-0.063150 +2.064535,-0.974842,1.035148,2.015228,-0.434126,-0.065675 +2.067039,-0.971977,1.034084,2.017931,-0.432957,-0.068087 +2.069427,-0.969061,1.032835,2.020713,-0.431974,-0.070376 +2.071690,-0.966109,1.031407,2.023562,-0.431183,-0.072531 +2.073818,-0.963132,1.029807,2.026464,-0.430586,-0.074542 +2.075800,-0.960144,1.028041,2.029408,-0.430187,-0.076401 +2.077628,-0.957160,1.026117,2.032380,-0.429988,-0.078098 +2.079294,-0.954192,1.024044,2.035365,-0.429988,-0.079627 +2.080790,-0.951253,1.021832,2.038352,-0.430189,-0.080981 +2.082109,-0.948357,1.019491,2.041326,-0.430589,-0.082153 +2.083246,-0.945517,1.017030,2.044274,-0.431187,-0.083139 +2.084195,-0.942745,1.014461,2.047183,-0.431979,-0.083933 +2.084953,-0.940055,1.011796,2.050040,-0.432963,-0.084532 +2.085515,-0.937458,1.009046,2.052832,-0.434134,-0.084934 +2.085879,-0.934965,1.006224,2.055546,-0.435486,-0.085136 +2.086044,-0.932588,1.003342,2.058170,-0.437014,-0.085138 +2.086008,-0.930339,1.000415,2.060692,-0.438710,-0.084940 +2.085773,-0.928226,0.997453,2.063102,-0.440568,-0.084543 +2.085339,-0.926259,0.994472,2.065388,-0.442578,-0.083948 +2.084707,-0.924447,0.991484,2.067539,-0.444732,-0.083158 +2.083882,-0.922799,0.988503,2.069547,-0.447019,-0.082177 +2.082866,-0.921322,0.985542,2.071402,-0.449431,-0.081009 +2.081664,-0.920022,0.982615,2.073096,-0.451955,-0.079659 +2.080282,-0.918905,0.979734,2.074621,-0.454580,-0.078134 +2.078725,-0.917976,0.976913,2.075971,-0.457296,-0.076440 +2.077001,-0.917240,0.974165,2.077139,-0.460088,-0.074585 +2.075117,-0.916699,0.971501,2.078120,-0.462946,-0.072577 +2.073083,-0.916356,0.968933,2.078909,-0.465856,-0.070425 +2.070906,-0.916214,0.966474,2.079504,-0.468804,-0.068139 +2.068598,-0.916271,0.964134,2.079901,-0.471779,-0.065730 +2.066168,-0.916529,0.961924,2.080099,-0.474765,-0.063207 +2.063626,-0.916985,0.959854,2.080097,-0.477751,-0.060583 +2.060986,-0.917639,0.957933,2.079894,-0.480722,-0.057869 +2.058258,-0.918486,0.956169,2.079492,-0.483665,-0.055077 +2.055455,-0.919523,0.954571,2.078893,-0.486567,-0.052220 +2.052589,-0.920746,0.953146,2.078098,-0.489415,-0.049311 +2.049673,-0.922149,0.951899,2.077113,-0.492196,-0.046363 +2.046720,-0.923725,0.950838,2.075941,-0.494898,-0.043389 +2.043745,-0.925468,0.949966,2.074587,-0.497508,-0.040402 +2.040759,-0.927370,0.949288,2.073057,-0.500015,-0.037416 +2.037776,-0.929422,0.948806,2.071360,-0.502407,-0.034445 +2.034811,-0.931614,0.948523,2.069501,-0.504673,-0.031501 +2.031875,-0.933938,0.948440,2.067489,-0.506805,-0.028598 +2.028983,-0.936383,0.948557,2.065334,-0.508791,-0.025750 +2.026147,-0.938937,0.948875,2.063045,-0.510623,-0.022967 +2.023381,-0.941589,0.949390,2.060633,-0.512292,-0.020265 +2.020696,-0.944328,0.950102,2.058108,-0.513792,-0.017653 +2.018104,-0.947140,0.951006,2.055482,-0.515115,-0.015145 +2.015618,-0.950014,0.952099,2.052766,-0.516256,-0.012751 +2.013248,-0.952936,0.953376,2.049972,-0.517209,-0.010483 +2.011006,-0.955893,0.954831,2.047114,-0.517971,-0.008350 +2.008900,-0.958873,0.956458,2.044204,-0.518537,-0.006362 +2.006942,-0.961860,0.958249,2.041255,-0.518905,-0.004527 +2.005138,-0.964843,0.960197,2.038280,-0.519073,-0.002855 +2.003498,-0.967808,0.962292,2.035294,-0.519041,-0.001353 +2.002029,-0.970741,0.964525,2.032308,-0.518809,-0.000027 +2.000738,-0.973629,0.966885,2.029337,-0.518378,0.001116 +1.999630,-0.976459,0.969364,2.026394,-0.517750,0.002072 +1.998711,-0.979219,0.971948,2.023493,-0.516928,0.002836 +1.997983,-0.981896,0.974628,2.020645,-0.515914,0.003405 +1.997452,-0.984477,0.977390,2.017865,-0.514715,0.003775 +1.997119,-0.986953,0.980222,2.015164,-0.513335,0.003947 +1.996985,-0.989310,0.983111,2.012555,-0.511781,0.003918 +1.997051,-0.991539,0.986045,2.010049,-0.510059,0.003689 +1.997318,-0.993630,0.989010,2.007658,-0.508177,0.003261 +1.997783,-0.995573,0.991994,2.005393,-0.506144,0.002635 +1.998445,-0.997360,0.994981,2.003263,-0.503969,0.001815 +1.999300,-0.998982,0.997960,2.001278,-0.501661,0.000805 +2.000345,-1.000432,1.000917,1.999448,-0.499232,-0.000392 +2.001576,-1.001704,1.003838,1.997779,-0.496691,-0.001769 +2.002986,-1.002792,1.006710,1.996281,-0.494051,-0.003321 +2.004569,-1.003691,1.009520,1.994959,-0.491323,-0.005041 +2.006318,-1.004398,1.012257,1.993820,-0.488519,-0.006921 +2.008226,-1.004907,1.014906,1.992869,-0.485652,-0.008952 +2.010283,-1.005219,1.017457,1.992109,-0.482736,-0.011125 +2.012480,-1.005331,1.019899,1.991545,-0.479782,-0.013431 +2.014809,-1.005242,1.022219,1.991179,-0.476805,-0.015859 +2.017257,-1.004953,1.024408,1.991012,-0.473818,-0.018398 +2.019814,-1.004466,1.026456,1.991046,-0.470833,-0.021037 +2.022469,-1.003782,1.028353,1.991279,-0.467866,-0.023764 +2.025210,-1.002905,1.030092,1.991712,-0.464928,-0.026566 +2.028024,-1.001839,1.031663,1.992342,-0.462033,-0.029432 +2.030898,-1.000587,1.033061,1.993166,-0.459195,-0.032348 +2.033821,-0.999157,1.034279,1.994181,-0.456426,-0.035301 +2.036778,-0.997554,1.035311,1.995382,-0.453737,-0.038278 +2.039756,-0.995786,1.036153,1.996764,-0.451143,-0.041266 +2.042742,-0.993861,1.036801,1.998320,-0.448653,-0.044250 +2.045723,-0.991786,1.037252,2.000043,-0.446280,-0.047218 +2.048684,-0.989572,1.037504,2.001926,-0.444034,-0.050156 +2.051614,-0.987229,1.037556,2.003961,-0.441924,-0.053052 +2.054498,-0.984767,1.037407,2.006137,-0.439962,-0.055891 +2.057324,-0.982197,1.037059,2.008446,-0.438155,-0.058661 +2.060079,-0.979530,1.036513,2.010877,-0.436511,-0.061351 +2.062750,-0.976779,1.035771,2.013418,-0.435038,-0.063947 +2.065326,-0.973957,1.034837,2.016059,-0.433743,-0.066438 +2.067795,-0.971074,1.033715,2.018788,-0.432631,-0.068813 +2.070145,-0.968146,1.032410,2.021592,-0.431707,-0.071061 +2.072367,-0.965184,1.030927,2.024460,-0.430976,-0.073172 +2.074450,-0.962203,1.029275,2.027377,-0.430441,-0.075137 +2.076386,-0.959215,1.027459,2.030330,-0.430104,-0.076946 +2.078164,-0.956234,1.025488,2.033308,-0.429966,-0.078592 +2.079778,-0.953274,1.023371,2.036295,-0.430029,-0.080068 +2.081219,-0.950347,1.021117,2.039279,-0.430292,-0.081366 +2.082483,-0.947467,1.018737,2.042247,-0.430754,-0.082480 +2.083562,-0.944647,1.016242,2.045184,-0.431413,-0.083406 +2.084452,-0.941899,1.013642,2.048078,-0.432265,-0.084140 +2.085148,-0.939236,1.010949,2.050916,-0.433308,-0.084678 +2.085649,-0.936670,1.008175,2.053685,-0.434535,-0.085018 +2.085952,-0.934213,1.005333,2.056372,-0.435943,-0.085158 +2.086054,-0.931874,1.002436,2.058966,-0.437524,-0.085098 +2.085957,-0.929666,0.999496,2.061455,-0.439271,-0.084838 +2.085659,-0.927598,0.996527,2.063827,-0.441177,-0.084379 +2.085163,-0.925678,0.993543,2.066072,-0.443233,-0.083723 +2.084471,-0.923917,0.990555,2.068180,-0.445429,-0.082873 +2.083586,-0.922321,0.987579,2.070141,-0.447757,-0.081834 +2.082512,-0.920898,0.984627,2.071947,-0.450204,-0.080608 +2.081253,-0.919654,0.981713,2.073589,-0.452761,-0.079203 +2.079816,-0.918595,0.978850,2.075060,-0.455416,-0.077625 +2.078206,-0.917726,0.976050,2.076354,-0.458157,-0.075880 +2.076432,-0.917050,0.973326,2.077464,-0.460971,-0.073976 +2.074500,-0.916571,0.970691,2.078386,-0.463846,-0.071922 +2.072421,-0.916291,0.968156,2.079115,-0.466769,-0.069728 +2.070202,-0.916210,0.965733,2.079649,-0.469727,-0.067402 +2.067854,-0.916330,0.963432,2.079984,-0.472707,-0.064956 +2.065388,-0.916650,0.961265,2.080120,-0.475695,-0.062401 +2.062815,-0.917168,0.959240,2.080055,-0.478677,-0.059747 +2.060146,-0.917882,0.957367,2.079790,-0.481641,-0.057008 +2.057393,-0.918788,0.955654,2.079327,-0.484573,-0.054194 +2.054569,-0.919884,0.954109,2.078666,-0.487460,-0.051320 +2.051686,-0.921163,0.952738,2.077812,-0.490288,-0.048397 +2.048758,-0.922621,0.951549,2.076768,-0.493046,-0.045440 +2.045796,-0.924250,0.950546,2.075539,-0.495720,-0.042460 +2.042816,-0.926043,0.949735,2.074129,-0.498300,-0.039472 +2.039830,-0.927993,0.949117,2.072547,-0.500772,-0.036490 +2.036851,-0.930089,0.948697,2.070798,-0.503126,-0.033526 +2.033894,-0.932324,0.948476,2.068891,-0.505351,-0.030593 +2.030970,-0.934686,0.948455,2.066834,-0.507438,-0.027706 +2.028094,-0.937166,0.948635,2.064636,-0.509377,-0.024876 +2.025279,-0.939752,0.949014,2.062308,-0.511160,-0.022118 +2.022536,-0.942433,0.949590,2.059859,-0.512777,-0.019442 +2.019879,-0.945195,0.950362,2.057301,-0.514223,-0.016861 +2.017319,-0.948028,0.951326,2.054646,-0.515490,-0.014388 +2.014868,-0.950918,0.952477,2.051904,-0.516573,-0.012032 +2.012537,-0.953853,0.953810,2.049089,-0.517467,-0.009804 +2.010336,-0.956818,0.955319,2.046214,-0.518168,-0.007715 +2.008275,-0.959802,0.956998,2.043290,-0.518672,-0.005774 +2.006363,-0.962789,0.958839,2.040332,-0.518978,-0.003990 +2.004610,-0.965768,0.960833,2.037352,-0.519085,-0.002370 +2.003023,-0.968724,0.962972,2.034364,-0.518991,-0.000921 +2.001608,-0.971645,0.965246,2.031382,-0.518697,0.000348 +2.000374,-0.974516,0.967644,2.028418,-0.518204,0.001434 +1.999324,-0.977326,0.970157,2.025487,-0.517515,0.002330 +1.998463,-0.980061,0.972772,2.022600,-0.516633,0.003034 +1.997797,-0.982710,0.975479,2.019772,-0.515561,0.003541 +1.997327,-0.985259,0.978264,2.017015,-0.514305,0.003850 +1.997055,-0.987699,0.981115,2.014342,-0.512870,0.003959 +1.996984,-0.990018,0.984020,2.011764,-0.511263,0.003868 +1.997113,-0.992205,0.986965,2.009292,-0.509490,0.003577 +1.997441,-0.994251,0.989937,2.006939,-0.507560,0.003087 +1.997968,-0.996146,0.992923,2.004715,-0.505482,0.002401 +1.998690,-0.997883,0.995910,2.002629,-0.503265,0.001521 +1.999605,-0.999452,0.998883,2.000692,-0.500918,0.000452 +2.000708,-1.000848,1.001830,1.998911,-0.498453,-0.000801 +2.001995,-1.002063,1.004737,1.997295,-0.495880,-0.002234 +2.003460,-1.003093,1.007591,1.995851,-0.493211,-0.003839 +2.005095,-1.003932,1.010380,1.994585,-0.490458,-0.005609 +2.006895,-1.004577,1.013091,1.993504,-0.487633,-0.007537 +2.008850,-1.005026,1.015711,1.992612,-0.484750,-0.009613 +2.010952,-1.005275,1.018229,1.991913,-0.481820,-0.011829 +2.013191,-1.005324,1.020634,1.991410,-0.478858,-0.014173 +2.015558,-1.005174,1.022915,1.991106,-0.475876,-0.016637 +2.018041,-1.004823,1.025061,1.991001,-0.472888,-0.019209 +2.020630,-1.004274,1.027063,1.991097,-0.469908,-0.021876 +2.023313,-1.003530,1.028911,1.991393,-0.466948,-0.024628 +2.026078,-1.002593,1.030599,1.991887,-0.464022,-0.027452 +2.028912,-1.001469,1.032117,1.992578,-0.461144,-0.030335 +2.031803,-1.000161,1.033459,1.993462,-0.458325,-0.033264 +2.034737,-0.998677,1.034620,1.994535,-0.455580,-0.036226 +2.037702,-0.997022,1.035593,1.995793,-0.452920,-0.039207 +2.040685,-0.995204,1.036375,1.997230,-0.450356,-0.042195 +2.043671,-0.993231,1.036962,1.998838,-0.447902,-0.045176 +2.046647,-0.991112,1.037351,2.000612,-0.445567,-0.048136 +2.049600,-0.988857,1.037541,2.002543,-0.443362,-0.051062 +2.052517,-0.986475,1.037531,2.004623,-0.441298,-0.053941 +2.055384,-0.983978,1.037320,2.006842,-0.439383,-0.056761 +2.058189,-0.981377,1.036910,2.009190,-0.437625,-0.059507 +2.060919,-0.978683,1.036303,2.011656,-0.436034,-0.062169 +2.063562,-0.975908,1.035501,2.014230,-0.434616,-0.064734 +2.066106,-0.973066,1.034508,2.016899,-0.433377,-0.067190 +2.068539,-0.970168,1.033328,2.019653,-0.432323,-0.069526 +2.070851,-0.967228,1.031967,2.022478,-0.431459,-0.071733 +2.073031,-0.964258,1.030431,2.025362,-0.430789,-0.073800 +2.075069,-0.961273,1.028727,2.028292,-0.430315,-0.075717 +2.076956,-0.958286,1.026862,2.031255,-0.430040,-0.077476 +2.078684,-0.955310,1.024844,2.034237,-0.429965,-0.079070 +2.080245,-0.952359,1.022684,2.037224,-0.430090,-0.080491 +2.081632,-0.949445,1.020390,2.040205,-0.430415,-0.081732 +2.082838,-0.946583,1.017973,2.043164,-0.430938,-0.082789 +2.083859,-0.943784,1.015443,2.046090,-0.431657,-0.083655 +2.084689,-0.941061,1.012813,2.048968,-0.432569,-0.084329 +2.085325,-0.938427,1.010094,2.051785,-0.433670,-0.084805 +2.085765,-0.935894,1.007298,2.054530,-0.434954,-0.085083 +2.086005,-0.933472,1.004437,2.057190,-0.436417,-0.085161 +2.086045,-0.931173,1.001525,2.059752,-0.438050,-0.085039 +2.085885,-0.929007,0.998575,2.062206,-0.439848,-0.084716 +2.085526,-0.926984,0.995600,2.064539,-0.441801,-0.084196 +2.084969,-0.925113,0.992613,2.066743,-0.443902,-0.083479 +2.084216,-0.923402,0.989628,2.068806,-0.446140,-0.082570 +2.083272,-0.921859,0.986658,2.070720,-0.448506,-0.081472 +2.082139,-0.920491,0.983716,2.072476,-0.450989,-0.080190 +2.080825,-0.919305,0.980816,2.074065,-0.453577,-0.078731 +2.079333,-0.918304,0.977971,2.075482,-0.456260,-0.077099 +2.077671,-0.917495,0.975194,2.076719,-0.459025,-0.075304 +2.075847,-0.916880,0.972496,2.077771,-0.461859,-0.073353 +2.073869,-0.916462,0.969891,2.078634,-0.464751,-0.071254 +2.071745,-0.916244,0.967390,2.079302,-0.467686,-0.069018 +2.069485,-0.916226,0.965004,2.079775,-0.470653,-0.066654 +2.067099,-0.916408,0.962743,2.080048,-0.473636,-0.064172 +2.064599,-0.916790,0.960619,2.080121,-0.476624,-0.061585 +2.061994,-0.917369,0.958640,2.079994,-0.479602,-0.058904 +2.059298,-0.918143,0.956816,2.079667,-0.482557,-0.056140 +2.056522,-0.919109,0.955155,2.079142,-0.485477,-0.053306 +2.053678,-0.920263,0.953663,2.078421,-0.488347,-0.050415 +2.050779,-0.921598,0.952349,2.077507,-0.491154,-0.047480 +2.047839,-0.923110,0.951217,2.076405,-0.493888,-0.044514 +2.044871,-0.924791,0.950273,2.075119,-0.496534,-0.041531 +2.041887,-0.926633,0.949521,2.073655,-0.499081,-0.038543 +2.038902,-0.928629,0.948965,2.072020,-0.501517,-0.035565 +2.035928,-0.930770,0.948607,2.070221,-0.503833,-0.032609 +2.032980,-0.933046,0.948448,2.068267,-0.506016,-0.029689 +2.030070,-0.935446,0.948490,2.066165,-0.508058,-0.026819 +2.027211,-0.937960,0.948731,2.063925,-0.509949,-0.024010 +2.024417,-0.940576,0.949172,2.061558,-0.511681,-0.021276 +2.021700,-0.943284,0.949810,2.059075,-0.513246,-0.018628 +2.019072,-0.946070,0.950642,2.056485,-0.514637,-0.016080 +2.016544,-0.948922,0.951664,2.053801,-0.515847,-0.013642 +2.014129,-0.951827,0.952872,2.051036,-0.516872,-0.011324 +2.011837,-0.954773,0.954261,2.048201,-0.517706,-0.009139 +2.009679,-0.957745,0.955824,2.045309,-0.518346,-0.007095 +2.007664,-0.960731,0.957554,2.042373,-0.518789,-0.005202 +2.005801,-0.963718,0.959443,2.039406,-0.519033,-0.003468 +2.004098,-0.966691,0.961483,2.036423,-0.519077,-0.001900 +2.002564,-0.969637,0.963665,2.033435,-0.518921,-0.000507 +2.001205,-0.972544,0.965979,2.030457,-0.518565,0.000706 +2.000027,-0.975397,0.968414,2.027502,-0.518011,0.001733 +1.999036,-0.978185,0.970960,2.024583,-0.517261,0.002570 +1.998235,-0.980895,0.973605,2.021714,-0.516319,0.003213 +1.997629,-0.983514,0.976337,2.018906,-0.515190,0.003659 +1.997221,-0.986031,0.979144,2.016174,-0.513877,0.003906 +1.997012,-0.988434,0.982014,2.013529,-0.512388,0.003952 +1.997003,-0.990713,0.984932,2.010983,-0.510729,0.003799 +1.997194,-0.992857,0.987887,2.008547,-0.508906,0.003446 +1.997584,-0.994857,0.990865,2.006233,-0.506929,0.002894 +1.998172,-0.996704,0.993853,2.004051,-0.504807,0.002148 +1.998954,-0.998389,0.996837,2.002010,-0.502548,0.001209 +1.999928,-0.999905,0.999803,2.000120,-0.500163,0.000082 +2.001089,-1.001245,1.002739,1.998390,-0.497663,-0.001228 +2.002432,-1.002403,1.005631,1.996827,-0.495059,-0.002715 +2.003951,-1.003374,1.008467,1.995438,-0.492363,-0.004372 +2.005638,-1.004154,1.011232,1.994229,-0.489586,-0.006192 +2.007487,-1.004738,1.013916,1.993206,-0.486742,-0.008167 +2.009489,-1.005125,1.016506,1.992373,-0.483843,-0.010288 +2.011634,-1.005312,1.018990,1.991735,-0.480902,-0.012545 +2.013914,-1.005299,1.021357,1.991294,-0.477932,-0.014928 +2.016319,-1.005086,1.023597,1.991052,-0.474947,-0.017426 +2.018836,-1.004673,1.025699,1.991009,-0.471960,-0.020029 +2.021455,-1.004064,1.027655,1.991168,-0.468984,-0.022724 +2.024165,-1.003259,1.029454,1.991525,-0.466033,-0.025500 +2.026953,-1.002264,1.031090,1.992081,-0.463121,-0.028343 +2.029806,-1.001081,1.032554,1.992832,-0.460260,-0.031242 +2.032712,-0.999718,1.033840,1.993776,-0.457463,-0.034182 +2.035657,-0.998180,1.034943,1.994907,-0.454743,-0.037152 +2.038629,-0.996473,1.035857,1.996221,-0.452111,-0.040137 +2.041614,-0.994606,1.036579,1.997712,-0.449581,-0.043124 +2.044598,-0.992587,1.037105,1.999373,-0.447162,-0.046100 +2.047569,-0.990425,1.037432,2.001197,-0.444867,-0.049051 +2.050512,-0.988129,1.037559,2.003175,-0.442705,-0.051964 +2.053415,-0.985710,1.037487,2.005299,-0.440685,-0.054826 +2.056264,-0.983180,1.037214,2.007559,-0.438819,-0.057624 +2.059047,-0.980548,1.036742,2.009945,-0.437112,-0.060345 +2.061751,-0.977828,1.036074,2.012446,-0.435574,-0.062978 +2.064365,-0.975031,1.035212,2.015051,-0.434211,-0.065510 +2.066875,-0.972169,1.034161,2.017748,-0.433029,-0.067930 +2.069272,-0.969257,1.032924,2.020525,-0.432034,-0.070227 +2.071544,-0.966306,1.031508,2.023370,-0.431230,-0.072391 +2.073680,-0.963331,1.029919,2.026269,-0.430620,-0.074412 +2.075673,-0.960344,1.028163,2.029211,-0.430208,-0.076282 +2.077511,-0.957359,1.026250,2.032181,-0.429995,-0.077990 +2.079188,-0.954389,1.024187,2.035166,-0.429982,-0.079531 +2.080695,-0.951448,1.021984,2.038153,-0.430170,-0.080896 +2.082027,-0.948549,1.019651,2.041128,-0.430556,-0.082081 +2.083176,-0.945704,1.017197,2.044079,-0.431141,-0.083079 +2.084138,-0.942928,1.014635,2.046991,-0.431921,-0.083886 +2.084908,-0.940232,1.011976,2.049851,-0.432892,-0.084498 +2.085483,-0.937628,1.009232,2.052648,-0.434050,-0.084913 +2.085861,-0.935128,1.006414,2.055367,-0.435390,-0.085129 +2.086039,-0.932743,1.003536,2.057998,-0.436907,-0.085145 +2.086017,-0.930485,1.000611,2.060528,-0.438592,-0.084960 +2.085795,-0.928362,0.997651,2.062945,-0.440439,-0.084576 +2.085374,-0.926385,0.994671,2.065239,-0.442439,-0.083994 +2.084756,-0.924563,0.991683,2.067400,-0.444584,-0.083217 +2.083943,-0.922904,0.988701,2.069418,-0.446863,-0.082248 +2.082939,-0.921415,0.985739,2.071283,-0.449266,-0.081093 +2.081750,-0.920103,0.982809,2.072988,-0.451783,-0.079755 +2.080379,-0.918973,0.979925,2.074525,-0.454402,-0.078241 +2.078834,-0.918032,0.977099,2.075886,-0.457112,-0.076558 +2.077121,-0.917283,0.974345,2.077067,-0.459900,-0.074713 +2.075248,-0.916729,0.971675,2.078060,-0.462754,-0.072715 +2.073223,-0.916373,0.969101,2.078863,-0.465660,-0.070573 +2.071056,-0.916217,0.966635,2.079471,-0.468607,-0.068296 +2.068756,-0.916261,0.964286,2.079881,-0.471580,-0.065894 +2.066333,-0.916505,0.962067,2.080092,-0.474566,-0.063378 +2.063799,-0.916949,0.959987,2.080103,-0.477552,-0.060761 +2.061165,-0.917589,0.958056,2.079914,-0.480525,-0.058052 +2.058442,-0.918423,0.956281,2.079525,-0.483470,-0.055265 +2.055644,-0.919448,0.954672,2.078939,-0.486375,-0.052412 +2.052781,-0.920659,0.953235,2.078157,-0.489227,-0.049506 +2.049868,-0.922050,0.951977,2.077184,-0.492013,-0.046560 +2.046918,-0.923615,0.950903,2.076024,-0.494721,-0.043588 +2.043943,-0.925347,0.950019,2.074682,-0.497337,-0.040601 +2.040958,-0.927238,0.949327,2.073165,-0.499851,-0.037615 +2.037975,-0.929280,0.948832,2.071478,-0.502251,-0.034642 +2.035008,-0.931464,0.948536,2.069629,-0.504526,-0.031696 +2.032070,-0.933779,0.948440,2.067628,-0.506667,-0.028790 +2.029174,-0.936216,0.948543,2.065482,-0.508663,-0.025938 +2.026335,-0.938763,0.948847,2.063202,-0.510505,-0.023151 +2.023563,-0.941410,0.949349,2.060798,-0.512186,-0.020442 +2.020872,-0.944143,0.950048,2.058280,-0.513697,-0.017824 +2.018274,-0.946951,0.950940,2.055660,-0.515033,-0.015309 +2.015780,-0.949821,0.952020,2.052949,-0.516186,-0.012907 +2.013403,-0.952740,0.953285,2.050161,-0.517152,-0.010630 +2.011151,-0.955695,0.954729,2.047306,-0.517926,-0.008488 +2.009036,-0.958674,0.956345,2.044399,-0.518505,-0.006489 +2.007067,-0.961661,0.958125,2.041453,-0.518886,-0.004645 +2.005253,-0.964645,0.960062,2.038479,-0.519068,-0.002962 +2.003602,-0.967611,0.962148,2.035493,-0.519050,-0.001448 +2.002122,-0.970546,0.964372,2.032507,-0.518831,-0.000110 +2.000819,-0.973438,0.966724,2.029535,-0.518413,0.001046 +1.999698,-0.976272,0.969195,2.026589,-0.517798,0.002014 +1.998766,-0.979037,0.971773,2.023684,-0.516988,0.002791 +1.998026,-0.981720,0.974446,2.020833,-0.515988,0.003373 +1.997481,-0.984308,0.977203,2.018048,-0.514801,0.003757 +1.997135,-0.986791,0.980031,2.015341,-0.513433,0.003942 +1.996987,-0.989157,0.982917,2.012726,-0.511890,0.003926 +1.997041,-0.991395,0.985848,2.010213,-0.510179,0.003710 +1.997294,-0.993495,0.988812,2.007814,-0.508307,0.003295 +1.997746,-0.995448,0.991794,2.005540,-0.506284,0.002683 +1.998394,-0.997246,0.994782,2.003400,-0.504118,0.001876 +1.999237,-0.998879,0.997762,2.001406,-0.501819,0.000878 +2.000270,-1.000341,1.000720,1.999565,-0.499397,-0.000306 +2.001488,-1.001625,1.003644,1.997885,-0.496864,-0.001672 +2.002886,-1.002726,1.006520,1.996376,-0.494230,-0.003213 +2.004458,-1.003637,1.009335,1.995042,-0.491507,-0.004921 +2.006196,-1.004357,1.012077,1.993890,-0.488708,-0.006791 +2.008094,-1.004880,1.014733,1.992926,-0.485845,-0.008812 +2.010141,-1.005204,1.017291,1.992154,-0.482932,-0.010976 +2.012330,-1.005329,1.019740,1.991577,-0.479980,-0.013273 +2.014650,-1.005254,1.022068,1.991197,-0.477004,-0.015693 +2.017090,-1.004979,1.024266,1.991017,-0.474017,-0.018225 +2.019641,-1.004505,1.026324,1.991037,-0.471032,-0.020858 +2.022289,-1.003834,1.028232,1.991258,-0.468063,-0.023579 +2.025025,-1.002970,1.029981,1.991677,-0.465123,-0.026377 +2.027834,-1.001916,1.031564,1.992294,-0.462225,-0.029239 +2.030705,-1.000677,1.032973,1.993106,-0.459382,-0.032153 +2.033625,-0.999258,1.034203,1.994108,-0.456608,-0.035104 +2.036580,-0.997667,1.035248,1.995296,-0.453914,-0.038079 +2.039557,-0.995909,1.036103,1.996666,-0.451313,-0.041066 +2.042543,-0.993994,1.036764,1.998211,-0.448816,-0.044051 +2.045524,-0.991929,1.037228,1.999923,-0.446434,-0.047021 +2.048488,-0.989724,1.037493,2.001796,-0.444179,-0.049962 +2.051420,-0.987389,1.037558,2.003821,-0.442061,-0.052860 +2.054308,-0.984935,1.037423,2.005988,-0.440088,-0.055703 +2.057138,-0.982371,1.037089,2.008288,-0.438270,-0.058479 +2.059897,-0.979711,1.036556,2.010711,-0.436615,-0.061174 +2.062575,-0.976965,1.035827,2.013245,-0.435131,-0.063777 +2.065157,-0.974147,1.034905,2.015880,-0.433824,-0.066275 +2.067634,-0.971268,1.033796,2.018604,-0.432699,-0.068658 +2.069992,-0.968342,1.032502,2.021403,-0.431763,-0.070915 +2.072223,-0.965383,1.031032,2.024267,-0.431019,-0.073036 +2.074316,-0.962402,1.029390,2.027181,-0.430470,-0.075011 +2.076261,-0.959414,1.027585,2.030132,-0.430120,-0.076831 +2.078051,-0.956432,1.025624,2.033109,-0.429969,-0.078488 +2.079675,-0.953470,1.023516,2.036096,-0.430019,-0.079975 +2.081129,-0.950541,1.021272,2.039081,-0.430269,-0.081285 +2.082404,-0.947657,1.018900,2.042050,-0.430717,-0.082412 +2.083495,-0.944833,1.016411,2.044989,-0.431363,-0.083351 +2.084398,-0.942080,1.013818,2.047887,-0.432202,-0.084097 +2.085108,-0.939411,1.011131,2.050729,-0.433232,-0.084649 +2.085622,-0.936838,1.008362,2.053503,-0.434448,-0.085002 +2.085938,-0.934373,1.005525,2.056196,-0.435844,-0.085155 +2.086054,-0.932026,1.002631,2.058796,-0.437413,-0.085108 +2.085969,-0.929809,0.999693,2.061292,-0.439150,-0.084862 +2.085685,-0.927731,0.996726,2.063672,-0.441045,-0.084416 +2.085202,-0.925802,0.993742,2.065926,-0.443091,-0.083773 +2.084523,-0.924029,0.990754,2.068044,-0.445279,-0.082936 +2.083651,-0.922422,0.987777,2.070015,-0.447598,-0.081909 +2.082589,-0.920987,0.984823,2.071831,-0.450038,-0.080696 +2.081342,-0.919731,0.981906,2.073485,-0.452588,-0.079303 +2.079917,-0.918660,0.979039,2.074968,-0.455236,-0.077735 +2.078319,-0.917778,0.976234,2.076273,-0.457971,-0.076001 +2.076555,-0.917089,0.973505,2.077396,-0.460781,-0.074108 +2.074634,-0.916597,0.970864,2.078331,-0.463653,-0.072064 +2.072564,-0.916303,0.968322,2.079073,-0.466573,-0.069878 +2.070354,-0.916209,0.965891,2.079619,-0.469529,-0.067561 +2.068015,-0.916316,0.963582,2.079968,-0.472508,-0.065123 +2.065556,-0.916622,0.961405,2.080117,-0.475496,-0.062574 +2.062990,-0.917127,0.959370,2.080066,-0.478479,-0.059927 +2.060327,-0.917828,0.957487,2.079814,-0.481445,-0.057193 +2.057579,-0.918722,0.955763,2.079364,-0.484379,-0.054384 +2.054759,-0.919805,0.954206,2.078716,-0.487269,-0.051513 +2.051880,-0.921073,0.952824,2.077875,-0.490102,-0.048593 +2.048954,-0.922518,0.951623,2.076843,-0.492865,-0.045638 +2.045995,-0.924136,0.950607,2.075626,-0.495545,-0.042659 +2.043015,-0.925919,0.949783,2.074229,-0.498131,-0.039672 +2.040029,-0.927858,0.949152,2.072658,-0.500610,-0.036688 +2.037049,-0.929945,0.948719,2.070920,-0.502973,-0.033722 +2.034090,-0.932171,0.948485,2.069023,-0.505207,-0.030787 +2.031164,-0.934525,0.948450,2.066975,-0.507304,-0.027897 +2.028284,-0.936997,0.948617,2.064787,-0.509253,-0.025063 +2.025464,-0.939577,0.948982,2.062467,-0.511046,-0.022299 +2.022717,-0.942251,0.949546,2.060026,-0.512675,-0.019617 +2.020053,-0.945009,0.950305,2.057475,-0.514132,-0.017030 +2.017486,-0.947837,0.951256,2.054825,-0.515411,-0.014549 +2.015028,-0.950724,0.952394,2.052089,-0.516507,-0.012185 +2.012688,-0.953656,0.953716,2.049279,-0.517413,-0.009949 +2.010478,-0.956620,0.955213,2.046407,-0.518127,-0.007850 +2.008408,-0.959603,0.956881,2.043486,-0.518645,-0.005899 +2.006486,-0.962590,0.958711,2.040530,-0.518964,-0.004103 +2.004722,-0.965570,0.960696,2.037551,-0.519084,-0.002472 +2.003123,-0.968528,0.962825,2.034563,-0.519003,-0.001013 +2.001697,-0.971451,0.965090,2.031580,-0.518722,0.000269 +2.000450,-0.974326,0.967481,2.028615,-0.518243,0.001367 +1.999388,-0.977141,0.969986,2.025681,-0.517567,0.002277 +1.998515,-0.979881,0.972595,2.022791,-0.516697,0.002993 +1.997835,-0.982536,0.975296,2.019959,-0.515638,0.003514 +1.997352,-0.985093,0.978076,2.017197,-0.514394,0.003836 +1.997067,-0.987540,0.980923,2.014517,-0.512971,0.003958 +1.996983,-0.989867,0.983825,2.011932,-0.511375,0.003880 +1.997098,-0.992064,0.986768,2.009454,-0.509613,0.003602 +1.997413,-0.994119,0.989738,2.007092,-0.507694,0.003126 +1.997927,-0.996025,0.992724,2.004859,-0.505625,0.002453 +1.998636,-0.997772,0.995711,2.002764,-0.503417,0.001586 +1.999538,-0.999353,0.998685,2.000816,-0.501078,0.000529 +2.000629,-1.000760,1.001634,1.999024,-0.498621,-0.000712 +2.001904,-1.001988,1.004545,1.997397,-0.496054,-0.002133 +2.003357,-1.003030,1.007403,1.995941,-0.493391,-0.003727 +2.004981,-1.003882,1.010196,1.994664,-0.490644,-0.005486 +2.006770,-1.004540,1.012913,1.993570,-0.487824,-0.007403 +2.008715,-1.005002,1.015539,1.992665,-0.484944,-0.009470 +2.010807,-1.005265,1.018065,1.991953,-0.482017,-0.011677 +2.013038,-1.005327,1.020478,1.991437,-0.479056,-0.014013 +2.015396,-1.005190,1.022767,1.991120,-0.476075,-0.016469 +2.017872,-1.004852,1.024922,1.991002,-0.473087,-0.019034 +2.020455,-1.004317,1.026934,1.991084,-0.470106,-0.021696 +2.023132,-1.003586,1.028793,1.991367,-0.467144,-0.024442 +2.025891,-1.002662,1.030491,1.991848,-0.464216,-0.027262 +2.028721,-1.001550,1.032021,1.992526,-0.461334,-0.030141 +2.031609,-1.000254,1.033376,1.993397,-0.458511,-0.033067 +2.034541,-0.998781,1.034548,1.994458,-0.455760,-0.036027 +2.037504,-0.997137,1.035534,1.995703,-0.453094,-0.039008 +2.040486,-0.995330,1.036329,1.997128,-0.450524,-0.041996 +2.043472,-0.993367,1.036929,1.998726,-0.448062,-0.044978 +2.046449,-0.991258,1.037332,2.000489,-0.445719,-0.047939 +2.049404,-0.989011,1.037535,2.002410,-0.443505,-0.050868 +2.052324,-0.986638,1.037538,2.004480,-0.441431,-0.053751 +2.055195,-0.984148,1.037340,2.006690,-0.439505,-0.056575 +2.058004,-0.981553,1.036944,2.009029,-0.437737,-0.059327 +2.060740,-0.978865,1.036350,2.011488,-0.436135,-0.061994 +2.063389,-0.976096,1.035561,2.014055,-0.434705,-0.064566 +2.065940,-0.973257,1.034580,2.016719,-0.433454,-0.067030 +2.068380,-0.970362,1.033413,2.019467,-0.432388,-0.069375 +2.070701,-0.967425,1.032064,2.022288,-0.431511,-0.071590 +2.072890,-0.964457,1.030539,2.025168,-0.430827,-0.073666 +2.074937,-0.961473,1.028845,2.028096,-0.430340,-0.075594 +2.076835,-0.958485,1.026991,2.031056,-0.430052,-0.077364 +2.078574,-0.955508,1.024983,2.034037,-0.429963,-0.078969 +2.080146,-0.952555,1.022832,2.037025,-0.430075,-0.080402 +2.081545,-0.949638,1.020547,2.040007,-0.430387,-0.081655 +2.082764,-0.946772,1.018138,2.042968,-0.430897,-0.082724 +2.083797,-0.943968,1.015615,2.045896,-0.431603,-0.083604 +2.084640,-0.941240,1.012991,2.048778,-0.432503,-0.084290 +2.085289,-0.938600,1.010278,2.051600,-0.433591,-0.084780 +2.085742,-0.936059,1.007486,2.054350,-0.434863,-0.085071 +2.085995,-0.933630,1.004630,2.057015,-0.436314,-0.085162 +2.086049,-0.931322,1.001721,2.059584,-0.437936,-0.085053 +2.085902,-0.929147,0.998773,2.062046,-0.439723,-0.084744 +2.085556,-0.927114,0.995799,2.064388,-0.441666,-0.084237 +2.085012,-0.925233,0.992812,2.066600,-0.443757,-0.083533 +2.084272,-0.923511,0.989826,2.068673,-0.445987,-0.082637 +2.083341,-0.921957,0.986855,2.070597,-0.448344,-0.081551 +2.082221,-0.920577,0.983911,2.072364,-0.450820,-0.080281 +2.080918,-0.919378,0.981008,2.073965,-0.453401,-0.078833 +2.079438,-0.918365,0.978159,2.075393,-0.456078,-0.077213 +2.077787,-0.917543,0.975377,2.076642,-0.458838,-0.075429 +2.075974,-0.916915,0.972673,2.077707,-0.461669,-0.073488 +2.074005,-0.916484,0.970062,2.078582,-0.464557,-0.071399 +2.071891,-0.916252,0.967553,2.079264,-0.467490,-0.069171 +2.069640,-0.916221,0.965159,2.079749,-0.470454,-0.066815 +2.067262,-0.916390,0.962890,2.080036,-0.473437,-0.064341 +2.064769,-0.916758,0.960756,2.080122,-0.476425,-0.061761 +2.062171,-0.917324,0.958768,2.080009,-0.479404,-0.059085 +2.059480,-0.918086,0.956933,2.079695,-0.482361,-0.056326 +2.056709,-0.919039,0.955260,2.079183,-0.485283,-0.053497 +2.053869,-0.920180,0.953757,2.078475,-0.488157,-0.050610 +2.050974,-0.921504,0.952431,2.077574,-0.490969,-0.047677 +2.048036,-0.923004,0.951287,2.076484,-0.493708,-0.044713 +2.045069,-0.924673,0.950330,2.075210,-0.496360,-0.041730 +2.042086,-0.926506,0.949565,2.073758,-0.498914,-0.038742 +2.039101,-0.928492,0.948996,2.072134,-0.501358,-0.035763 +2.036126,-0.930623,0.948624,2.070346,-0.503682,-0.032805 +2.033175,-0.932890,0.948452,2.068402,-0.505875,-0.029883 +2.030262,-0.935282,0.948481,2.066309,-0.507926,-0.027008 +2.027400,-0.937789,0.948709,2.064079,-0.509828,-0.024195 +2.024601,-0.940399,0.949137,2.061720,-0.511571,-0.021455 +2.021878,-0.943101,0.949761,2.059244,-0.513147,-0.018802 +2.019244,-0.945882,0.950580,2.056661,-0.514549,-0.016246 +2.016709,-0.948730,0.951590,2.053983,-0.515772,-0.013800 +2.014287,-0.951632,0.952786,2.051222,-0.516809,-0.011475 +2.011986,-0.954575,0.954163,2.048392,-0.517656,-0.009280 +2.009819,-0.957547,0.955714,2.045503,-0.518309,-0.007227 +2.007793,-0.960532,0.957434,2.042570,-0.518766,-0.005323 +2.005920,-0.963519,0.959312,2.039605,-0.519023,-0.003578 +2.004206,-0.966493,0.961343,2.036622,-0.519080,-0.001999 +2.002661,-0.969442,0.963516,2.033634,-0.518937,-0.000594 +2.001290,-0.972351,0.965821,2.030655,-0.518594,0.000631 +2.000100,-0.975209,0.968249,2.027698,-0.518054,0.001671 +1.999096,-0.978002,0.970787,2.024776,-0.517317,0.002520 +1.998283,-0.980717,0.973426,2.021903,-0.516388,0.003176 +1.997664,-0.983342,0.976153,2.019091,-0.515271,0.003635 +1.997242,-0.985866,0.978955,2.016354,-0.513971,0.003895 +1.997020,-0.988278,0.981821,2.013702,-0.512493,0.003955 +1.996997,-0.990565,0.984736,2.011149,-0.510844,0.003815 +1.997175,-0.992719,0.987689,2.008706,-0.509033,0.003475 +1.997552,-0.994728,0.990666,2.006383,-0.507066,0.002937 +1.998126,-0.996586,0.993654,2.004192,-0.504953,0.002203 +1.998896,-0.998282,0.996638,2.002142,-0.502703,0.001277 +1.999858,-0.999809,0.999606,2.000242,-0.500326,0.000163 +2.001006,-1.001161,1.002545,1.998500,-0.497833,-0.001135 +2.002337,-1.002332,1.005440,1.996926,-0.495236,-0.002611 +2.003844,-1.003315,1.008280,1.995525,-0.492545,-0.004257 +2.005520,-1.004108,1.011050,1.994304,-0.489774,-0.006066 +2.007359,-1.004705,1.013740,1.993268,-0.486933,-0.008031 +2.009350,-1.005105,1.016336,1.992423,-0.484037,-0.010142 +2.011487,-1.005306,1.018828,1.991772,-0.481099,-0.012390 +2.013758,-1.005306,1.021203,1.991317,-0.478130,-0.014765 +2.016155,-1.005106,1.023452,1.991062,-0.475146,-0.017256 +2.018665,-1.004707,1.025564,1.991006,-0.472158,-0.019852 +2.021278,-1.004110,1.027529,1.991151,-0.469182,-0.022542 +2.023982,-1.003319,1.029339,1.991495,-0.466229,-0.025312 +2.026765,-1.002336,1.030986,1.992038,-0.463314,-0.028152 +2.029614,-1.001166,1.032462,1.992776,-0.460449,-0.031047 +2.032517,-0.999815,1.033760,1.993707,-0.457647,-0.033985 +2.035460,-0.998288,1.034875,1.994826,-0.454921,-0.036953 +2.038430,-0.996592,1.035802,1.996128,-0.452284,-0.039937 +2.041415,-0.994735,1.036537,1.997607,-0.449746,-0.042925 +2.044399,-0.992726,1.037076,1.999257,-0.447320,-0.045902 +2.047371,-0.990573,1.037416,2.001070,-0.445016,-0.048855 +2.050317,-0.988286,1.037557,2.003038,-0.442844,-0.051771 +2.053223,-0.985875,1.037498,2.005153,-0.440815,-0.054637 +2.056076,-0.983352,1.037238,2.007404,-0.438938,-0.057439 +2.058864,-0.980726,1.036780,2.009782,-0.437221,-0.060166 +2.061574,-0.978012,1.036125,2.012276,-0.435671,-0.062805 +2.064193,-0.975219,1.035276,2.014874,-0.434296,-0.065344 +2.066711,-0.972362,1.034237,2.017565,-0.433102,-0.067772 +2.069116,-0.969452,1.033012,2.020338,-0.432094,-0.070078 +2.071396,-0.966504,1.031608,2.023178,-0.431277,-0.072251 +2.073542,-0.963530,1.030030,2.026075,-0.430654,-0.074282 +2.075544,-0.960543,1.028285,2.029014,-0.430229,-0.076162 +2.077394,-0.957557,1.026382,2.031982,-0.430003,-0.077882 +2.079081,-0.954586,1.024329,2.034967,-0.429977,-0.079434 +2.080600,-0.951643,1.022135,2.037954,-0.430151,-0.080811 +2.081944,-0.948740,1.019810,2.040931,-0.430524,-0.082008 +2.083105,-0.945892,1.017364,2.043883,-0.431096,-0.083018 +2.084080,-0.943111,1.014809,2.046798,-0.431863,-0.083838 +2.084863,-0.940409,1.012156,2.049663,-0.432821,-0.084463 +2.085451,-0.937798,1.009417,2.052464,-0.433967,-0.084892 +2.085842,-0.935291,1.006604,2.055189,-0.435296,-0.085121 +2.086033,-0.932898,1.003730,2.057826,-0.436800,-0.085150 +2.086025,-0.930631,1.000807,2.060362,-0.438475,-0.084978 +2.085816,-0.928499,0.997850,2.062788,-0.440311,-0.084607 +2.085408,-0.926512,0.994870,2.065090,-0.442301,-0.084039 +2.084803,-0.924680,0.991882,2.067260,-0.444436,-0.083275 +2.084003,-0.923009,0.988900,2.069288,-0.446707,-0.082319 +2.083012,-0.921509,0.985935,2.071164,-0.449102,-0.081175 +2.081835,-0.920184,0.983003,2.072880,-0.451612,-0.079850 +2.080476,-0.919043,0.980115,2.074428,-0.454225,-0.078347 +2.078942,-0.918089,0.977286,2.075801,-0.456929,-0.076675 +2.077240,-0.917326,0.974526,2.076994,-0.459712,-0.074841 +2.075378,-0.916760,0.971851,2.078000,-0.462562,-0.072853 +2.073363,-0.916391,0.969270,2.078815,-0.465465,-0.070720 +2.071205,-0.916221,0.966795,2.079436,-0.468409,-0.068451 +2.068913,-0.916252,0.964439,2.079860,-0.471381,-0.066058 +2.066498,-0.916483,0.962211,2.080084,-0.474367,-0.063549 +2.063971,-0.916913,0.960122,2.080109,-0.477353,-0.060938 +2.061343,-0.917540,0.958180,2.079933,-0.480327,-0.058235 +2.058626,-0.918362,0.956395,2.079557,-0.483275,-0.055453 +2.055832,-0.919374,0.954774,2.078984,-0.486183,-0.052604 +2.052974,-0.920572,0.953325,2.078215,-0.489039,-0.049701 +2.050064,-0.921952,0.952055,2.077255,-0.491830,-0.046758 +2.047116,-0.923505,0.950969,2.076107,-0.494543,-0.043786 +2.044142,-0.925226,0.950072,2.074778,-0.497166,-0.040801 +2.041157,-0.927107,0.949367,2.073271,-0.499687,-0.037814 +2.038173,-0.929140,0.948859,2.071595,-0.502095,-0.034840 +2.035205,-0.931314,0.948550,2.069758,-0.504379,-0.031892 +2.032264,-0.933621,0.948440,2.067766,-0.506529,-0.028983 +2.029366,-0.936050,0.948530,2.065630,-0.508534,-0.026126 +2.026522,-0.938590,0.948821,2.063358,-0.510387,-0.023334 +2.023745,-0.941230,0.949310,2.060962,-0.512079,-0.020620 +2.021049,-0.943958,0.949995,2.058451,-0.513602,-0.017996 +2.018444,-0.946761,0.950874,2.055837,-0.514949,-0.015473 +2.015943,-0.949628,0.951943,2.053132,-0.516115,-0.013064 +2.013557,-0.952544,0.953195,2.050349,-0.517093,-0.010778 +2.011297,-0.955497,0.954627,2.047498,-0.517880,-0.008626 +2.009173,-0.958475,0.956232,2.044595,-0.518472,-0.006618 +2.007194,-0.961462,0.958001,2.041650,-0.518867,-0.004763 +2.005369,-0.964446,0.959928,2.038678,-0.519062,-0.003069 +2.003707,-0.967414,0.962004,2.035692,-0.519057,-0.001543 +2.002215,-0.970352,0.964219,2.032706,-0.518852,-0.000194 +2.000900,-0.973247,0.966564,2.029732,-0.518447,0.000974 +1.999767,-0.976085,0.969027,2.026785,-0.517845,0.001955 +1.998822,-0.978855,0.971598,2.023877,-0.517048,0.002745 +1.998069,-0.981544,0.974265,2.021021,-0.516060,0.003340 +1.997511,-0.984139,0.977017,2.018231,-0.514886,0.003738 +1.997151,-0.986629,0.979840,2.015519,-0.513530,0.003936 +1.996991,-0.989003,0.982723,2.012897,-0.511998,0.003933 +1.997031,-0.991250,0.985652,2.010377,-0.510298,0.003731 +1.997271,-0.993360,0.988614,2.007970,-0.508437,0.003329 +1.997709,-0.995323,0.991595,2.005687,-0.506424,0.002730 +1.998345,-0.997131,0.994583,2.003539,-0.504267,0.001936 +1.999175,-0.998776,0.997564,2.001534,-0.501976,0.000950 +2.000195,-1.000249,1.000524,1.999682,-0.499562,-0.000222 +2.001401,-1.001545,1.003451,1.997992,-0.497036,-0.001575 +2.002787,-1.002658,1.006330,1.996471,-0.494408,-0.003105 +2.004348,-1.003583,1.009150,1.995125,-0.491691,-0.004802 +2.006075,-1.004315,1.011896,1.993961,-0.488897,-0.006661 +2.007962,-1.004851,1.014558,1.992985,-0.486038,-0.008672 +2.010000,-1.005189,1.017123,1.992199,-0.483127,-0.010827 +2.012180,-1.005327,1.019580,1.991609,-0.480178,-0.013116 +2.014491,-1.005265,1.021917,1.991216,-0.477203,-0.015528 +2.016924,-1.005003,1.024124,1.991023,-0.474216,-0.018053 +2.019467,-1.004542,1.026191,1.991030,-0.471231,-0.020680 +2.022110,-1.003885,1.028109,1.991237,-0.468260,-0.023396 +2.024840,-1.003033,1.029869,1.991643,-0.465318,-0.026189 +2.027645,-1.001992,1.031464,1.992247,-0.462416,-0.029047 +2.030512,-1.000765,1.032885,1.993045,-0.459570,-0.031957 +2.033429,-0.999358,1.034127,1.994035,-0.456790,-0.034906 +2.036382,-0.997778,1.035184,1.995212,-0.454091,-0.037880 +2.039358,-0.996031,1.036052,1.996569,-0.451483,-0.040867 +2.042344,-0.994126,1.036726,1.998102,-0.448979,-0.043853 +2.045326,-0.992071,1.037203,1.999804,-0.446589,-0.046824 +2.048291,-0.989875,1.037482,2.001666,-0.444325,-0.049767 +2.051226,-0.987549,1.037560,2.003681,-0.442197,-0.052668 +2.054117,-0.985102,1.037439,2.005839,-0.440215,-0.055516 +2.056951,-0.982545,1.037117,2.008131,-0.438386,-0.058296 +2.059716,-0.979891,1.036597,2.010546,-0.436720,-0.060997 +2.062399,-0.977151,1.035881,2.013073,-0.435224,-0.063606 +2.064988,-0.974337,1.034973,2.015702,-0.433905,-0.066112 +2.067472,-0.971462,1.033875,2.018420,-0.432768,-0.068503 +2.069839,-0.968539,1.032594,2.021215,-0.431819,-0.070769 +2.072079,-0.965581,1.031135,2.024074,-0.431062,-0.072899 +2.074181,-0.962601,1.029505,2.026985,-0.430501,-0.074884 +2.076136,-0.959613,1.027710,2.029935,-0.430137,-0.076714 +2.077936,-0.956631,1.025759,2.032910,-0.429973,-0.078383 +2.079572,-0.953667,1.023661,2.035897,-0.430009,-0.079881 +2.081037,-0.950735,1.021425,2.038882,-0.430246,-0.081203 +2.082325,-0.947848,1.019062,2.041852,-0.430681,-0.082342 +2.083428,-0.945019,1.016581,2.044795,-0.431314,-0.083294 +2.084344,-0.942261,1.013994,2.047695,-0.432141,-0.084054 +2.085067,-0.939586,1.011313,2.050541,-0.433158,-0.084618 +2.085594,-0.937007,1.008549,2.053320,-0.434361,-0.084984 +2.085923,-0.934534,1.005716,2.056019,-0.435745,-0.085151 +2.086052,-0.932179,1.002825,2.058626,-0.437303,-0.085118 +2.085981,-0.929953,0.999890,2.061129,-0.439029,-0.084884 +2.085710,-0.927865,0.996924,2.063518,-0.440914,-0.084452 +2.085241,-0.925925,0.993941,2.065780,-0.442950,-0.083822 +2.084575,-0.924142,0.990953,2.067907,-0.445129,-0.082998 +2.083715,-0.922524,0.987975,2.069888,-0.447439,-0.081983 +2.082666,-0.921077,0.985019,2.071715,-0.449871,-0.080782 +2.081431,-0.919809,0.982099,2.073380,-0.452414,-0.079401 +2.080017,-0.918726,0.979228,2.074874,-0.455057,-0.077845 +2.078430,-0.917831,0.976419,2.076192,-0.457787,-0.076122 +2.076678,-0.917129,0.973684,2.077327,-0.460592,-0.074239 +2.074767,-0.916623,0.971037,2.078274,-0.463460,-0.072205 +2.072706,-0.916316,0.968488,2.079029,-0.466377,-0.070028 +2.070505,-0.916209,0.966049,2.079589,-0.469331,-0.067720 +2.068174,-0.916302,0.963732,2.079951,-0.472309,-0.065289 +2.065724,-0.916595,0.961546,2.080113,-0.475296,-0.062748 +2.063164,-0.917087,0.959501,2.080075,-0.478280,-0.060106 +2.060507,-0.917775,0.957607,2.079837,-0.481248,-0.057378 +2.057765,-0.918656,0.955873,2.079400,-0.484185,-0.054573 +2.054949,-0.919727,0.954305,2.078766,-0.487078,-0.051706 +2.052073,-0.920982,0.952911,2.077937,-0.489915,-0.048789 +2.049150,-0.922417,0.951697,2.076918,-0.492683,-0.045836 +2.046193,-0.924023,0.950669,2.075713,-0.495369,-0.042858 +2.043214,-0.925795,0.949832,2.074327,-0.497962,-0.039871 +2.040228,-0.927724,0.949188,2.072768,-0.500449,-0.036887 +2.037248,-0.929801,0.948741,2.071041,-0.502819,-0.033919 +2.034286,-0.932018,0.948494,2.069154,-0.505062,-0.030982 +2.031358,-0.934364,0.948446,2.067116,-0.507169,-0.028088 +2.028475,-0.936829,0.948599,2.064937,-0.509128,-0.025250 +2.025650,-0.939402,0.948952,2.062625,-0.510931,-0.022481 +2.022897,-0.942070,0.949502,2.060192,-0.512571,-0.019793 +2.020228,-0.944823,0.950248,2.057648,-0.514040,-0.017200 +2.017654,-0.947647,0.951187,2.055005,-0.515332,-0.014711 +2.015188,-0.950530,0.952313,2.052274,-0.516439,-0.012339 +2.012840,-0.953460,0.953622,2.049468,-0.517359,-0.010093 +2.010621,-0.956422,0.955108,2.046600,-0.518086,-0.007985 +2.008541,-0.959403,0.956765,2.043682,-0.518616,-0.006024 +2.006609,-0.962391,0.958584,2.040728,-0.518949,-0.004218 +2.004834,-0.965372,0.960559,2.037750,-0.519082,-0.002576 +2.003225,-0.968332,0.962679,2.034763,-0.519015,-0.001104 +2.001787,-0.971258,0.964935,2.031779,-0.518747,0.000189 +2.000528,-0.974136,0.967318,2.028812,-0.518281,0.001300 +1.999453,-0.976955,0.969816,2.025875,-0.517618,0.002222 +1.998567,-0.979701,0.972418,2.022982,-0.516761,0.002951 +1.997874,-0.982362,0.975113,2.020146,-0.515715,0.003485 +1.997378,-0.984925,0.977888,2.017378,-0.514483,0.003821 +1.997080,-0.987381,0.980731,2.014693,-0.513071,0.003956 +1.996982,-0.989716,0.983630,2.012101,-0.511487,0.003892 +1.997084,-0.991921,0.986570,2.009615,-0.509736,0.003627 +1.997386,-0.993987,0.989540,2.007246,-0.507827,0.003164 +1.997886,-0.995903,0.992525,2.005004,-0.505768,0.002503 +1.998583,-0.997661,0.995512,2.002899,-0.503568,0.001649 +1.999472,-0.999253,0.998488,2.000941,-0.501238,0.000605 +2.000551,-1.000672,1.001439,1.999139,-0.498788,-0.000624 +2.001813,-1.001911,1.004352,1.997500,-0.496229,-0.002033 +2.003254,-1.002966,1.007214,1.996033,-0.493572,-0.003615 +2.004868,-1.003831,1.010012,1.994743,-0.490829,-0.005364 +2.006646,-1.004503,1.012734,1.993637,-0.488014,-0.007271 +2.008581,-1.004977,1.015367,1.992720,-0.485137,-0.009328 +2.010663,-1.005253,1.017900,1.991995,-0.482213,-0.011525 +2.012885,-1.005329,1.020320,1.991465,-0.479254,-0.013854 +2.015235,-1.005205,1.022618,1.991135,-0.476274,-0.016302 +2.017704,-1.004881,1.024783,1.991003,-0.473287,-0.018860 +2.020279,-1.004359,1.026804,1.991073,-0.470304,-0.021515 +2.022950,-1.003640,1.028674,1.991342,-0.467341,-0.024257 +2.025705,-1.002729,1.030383,1.991810,-0.464410,-0.027072 +2.028531,-1.001630,1.031925,1.992475,-0.461524,-0.029947 +2.031415,-1.000346,1.033291,1.993333,-0.458697,-0.032871 +2.034344,-0.998885,1.034476,1.994381,-0.455941,-0.035829 +2.037306,-0.997252,1.035475,1.995615,-0.453269,-0.038809 +2.040286,-0.995455,1.036282,1.997028,-0.450692,-0.041797 +2.043273,-0.993503,1.036895,1.998614,-0.448222,-0.044779 +2.046251,-0.991403,1.037311,2.000367,-0.445871,-0.047743 +2.049208,-0.989165,1.037528,2.002277,-0.443648,-0.050674 +2.052130,-0.986800,1.037544,2.004337,-0.441565,-0.053561 +2.055005,-0.984318,1.037360,2.006538,-0.439629,-0.056389 +2.057819,-0.981729,1.036976,2.008869,-0.437850,-0.059146 +2.060560,-0.979047,1.036395,2.011321,-0.436236,-0.061819 +2.063215,-0.976282,1.035619,2.013881,-0.434795,-0.064398 +2.065773,-0.973448,1.034651,2.016538,-0.433532,-0.066869 +2.068221,-0.970557,1.033496,2.019282,-0.432453,-0.069222 +2.070550,-0.967622,1.032159,2.022098,-0.431563,-0.071447 +2.072748,-0.964655,1.030646,2.024975,-0.430867,-0.073532 +2.074806,-0.961672,1.028963,2.027899,-0.430366,-0.075470 +2.076713,-0.958684,1.027119,2.030858,-0.430065,-0.077251 +2.078463,-0.955706,1.025122,2.033838,-0.429963,-0.078867 +2.080047,-0.952751,1.022980,2.036826,-0.430061,-0.080312 +2.081457,-0.949831,1.020703,2.039808,-0.430360,-0.081577 +2.082688,-0.946961,1.018302,2.042771,-0.430857,-0.082659 +2.083734,-0.944153,1.015787,2.045702,-0.431550,-0.083551 +2.084590,-0.941419,1.013169,2.048587,-0.432437,-0.084250 +2.085252,-0.938773,1.010461,2.051414,-0.433513,-0.084753 +2.085718,-0.936225,1.007674,2.054169,-0.434773,-0.085058 +2.085984,-0.933788,1.004822,2.056841,-0.436212,-0.085162 +2.086051,-0.931472,1.001916,2.059416,-0.437823,-0.085067 +2.085918,-0.929288,0.998970,2.061885,-0.439599,-0.084771 +2.085585,-0.927245,0.995997,2.064235,-0.441532,-0.084277 +2.085054,-0.925353,0.993011,2.066457,-0.443613,-0.083586 +2.084328,-0.923621,0.990025,2.068539,-0.445834,-0.082702 +2.083409,-0.922055,0.987052,2.070474,-0.448183,-0.081629 +2.082301,-0.920664,0.984106,2.072251,-0.450651,-0.080372 +2.081010,-0.919452,0.981200,2.073863,-0.453226,-0.078935 +2.079542,-0.918427,0.978347,2.075303,-0.455897,-0.077326 +2.077903,-0.917592,0.975560,2.076565,-0.458652,-0.075553 +2.076100,-0.916951,0.972851,2.077642,-0.461478,-0.073622 +2.074141,-0.916507,0.970233,2.078530,-0.464363,-0.071542 +2.072036,-0.916262,0.967717,2.079225,-0.467293,-0.069324 +2.069794,-0.916217,0.965315,2.079723,-0.470256,-0.066976 +2.067424,-0.916372,0.963037,2.080023,-0.473238,-0.064510 +2.064938,-0.916727,0.960894,2.080123,-0.476226,-0.061936 +2.062347,-0.917280,0.958895,2.080023,-0.479206,-0.059266 +2.059662,-0.918029,0.957050,2.079722,-0.482165,-0.056513 +2.056896,-0.918970,0.955367,2.079224,-0.485090,-0.053688 +2.054060,-0.920098,0.953852,2.078528,-0.487967,-0.050804 +2.051168,-0.921410,0.952514,2.077640,-0.490784,-0.047874 +2.048233,-0.922898,0.951357,2.076563,-0.493528,-0.044911 +2.045268,-0.924557,0.950388,2.075301,-0.496186,-0.041929 +2.042285,-0.926379,0.949610,2.073861,-0.498747,-0.038942 +2.039299,-0.928355,0.949028,2.072248,-0.501199,-0.035961 +2.036324,-0.930477,0.948643,2.070470,-0.503531,-0.033002 +2.033371,-0.932735,0.948458,2.068536,-0.505733,-0.030076 +2.030455,-0.935119,0.948473,2.066453,-0.507794,-0.027198 +2.027589,-0.937618,0.948688,2.064231,-0.509706,-0.024380 +2.024786,-0.940222,0.949102,2.061881,-0.511460,-0.021635 +2.022057,-0.942918,0.949714,2.059412,-0.513047,-0.018976 +2.019416,-0.945694,0.950520,2.056836,-0.514461,-0.016414 +2.016875,-0.948538,0.951517,2.054164,-0.515696,-0.013960 +2.014444,-0.951437,0.952701,2.051409,-0.516746,-0.011626 +2.012136,-0.954378,0.954066,2.048582,-0.517606,-0.009422 +2.009959,-0.957348,0.955606,2.045697,-0.518272,-0.007359 +2.007924,-0.960333,0.957314,2.042766,-0.518741,-0.005445 +2.006040,-0.963320,0.959182,2.039803,-0.519012,-0.003689 +2.004316,-0.966296,0.961203,2.036821,-0.519083,-0.002099 +2.002758,-0.969246,0.963367,2.033833,-0.518953,-0.000683 +2.001376,-0.972159,0.965663,2.030853,-0.518623,0.000555 +2.000173,-0.975020,0.968083,2.027894,-0.518096,0.001607 +1.999157,-0.977818,0.970615,2.024970,-0.517372,0.002470 +1.998331,-0.980538,0.973247,2.022093,-0.516456,0.003139 +1.997699,-0.983170,0.975968,2.019277,-0.515351,0.003611 +1.997264,-0.985701,0.978766,2.016534,-0.514063,0.003884 +1.997028,-0.988120,0.981628,2.013876,-0.512597,0.003958 +1.996992,-0.990417,0.984541,2.011316,-0.510959,0.003831 +1.997157,-0.992579,0.987492,2.008865,-0.509158,0.003504 +1.997520,-0.994599,0.990467,2.006534,-0.507202,0.002979 +1.998082,-0.996467,0.993454,2.004334,-0.505098,0.002258 +1.998839,-0.998174,0.996439,2.002274,-0.502857,0.001345 +1.999788,-0.999713,0.999409,2.000363,-0.500488,0.000243 +2.000924,-1.001077,1.002350,1.998611,-0.498003,-0.001043 +2.002243,-1.002260,1.005249,1.997025,-0.495412,-0.002507 +2.003738,-1.003256,1.008092,1.995613,-0.492727,-0.004142 +2.005404,-1.004061,1.010868,1.994379,-0.489961,-0.005941 +2.007231,-1.004671,1.013563,1.993331,-0.487125,-0.007895 +2.009213,-1.005085,1.016167,1.992473,-0.484232,-0.009997 +2.011340,-1.005299,1.018665,1.991809,-0.481296,-0.012236 +2.013603,-1.005312,1.021049,1.991341,-0.478329,-0.014603 +2.015991,-1.005126,1.023306,1.991072,-0.475345,-0.017087 +2.018494,-1.004740,1.025427,1.991004,-0.472357,-0.019676 +2.021101,-1.004156,1.027403,1.991135,-0.469380,-0.022360 +2.023799,-1.003377,1.029223,1.991466,-0.466425,-0.025125 +2.026577,-1.002407,1.030881,1.991996,-0.463507,-0.027960 +2.029422,-1.001250,1.032369,1.992721,-0.460638,-0.030852 +2.032322,-0.999910,1.033679,1.993639,-0.457832,-0.033788 +2.035263,-0.998395,1.034807,1.994745,-0.455100,-0.036755 +2.038232,-0.996710,1.035746,1.996035,-0.452456,-0.039738 +2.041216,-0.994864,1.036494,1.997503,-0.449912,-0.042726 +2.044201,-0.992865,1.037046,1.999142,-0.447478,-0.045704 +2.047174,-0.990721,1.037400,2.000944,-0.445165,-0.048659 +2.050121,-0.988442,1.037554,2.002903,-0.442985,-0.051578 +2.053030,-0.986040,1.037508,2.005008,-0.440946,-0.054447 +2.055888,-0.983523,1.037262,2.007250,-0.439058,-0.057255 +2.058680,-0.980904,1.036817,2.009620,-0.437330,-0.059987 +2.061396,-0.978195,1.036175,2.012106,-0.435769,-0.062632 +2.064022,-0.975408,1.035338,2.014698,-0.434382,-0.065178 +2.066547,-0.972554,1.034312,2.017383,-0.433176,-0.067614 +2.068959,-0.969648,1.033100,2.020150,-0.432156,-0.069928 +2.071248,-0.966701,1.031707,2.022987,-0.431326,-0.072111 +2.073404,-0.963728,1.030140,2.025880,-0.430690,-0.074152 +2.075416,-0.960742,1.028407,2.028817,-0.430251,-0.076041 +2.077275,-0.957756,1.026514,2.031784,-0.430012,-0.077772 +2.078974,-0.954783,1.024470,2.034768,-0.429972,-0.079335 +2.080504,-0.951838,1.022286,2.037755,-0.430133,-0.080725 +2.081860,-0.948932,1.019969,2.040733,-0.430493,-0.081934 +2.083033,-0.946080,1.017531,2.043687,-0.431052,-0.082957 +2.084021,-0.943294,1.014983,2.046605,-0.431806,-0.083789 +2.084817,-0.940586,1.012336,2.049473,-0.432751,-0.084428 +2.085418,-0.937969,1.009602,2.052279,-0.433885,-0.084869 +2.085822,-0.935455,1.006793,2.055010,-0.435201,-0.085112 +2.086027,-0.933054,1.003923,2.057653,-0.436695,-0.085154 +2.086031,-0.930778,1.001003,2.060196,-0.438358,-0.084996 +2.085836,-0.928637,0.998048,2.062629,-0.440184,-0.084638 +2.085441,-0.926640,0.995069,2.064941,-0.442164,-0.084083 +2.084849,-0.924797,0.992082,2.067120,-0.444290,-0.083332 +2.084062,-0.923115,0.989098,2.069157,-0.446551,-0.082389 +2.083084,-0.921603,0.986132,2.071044,-0.448939,-0.081257 +2.081919,-0.920267,0.983197,2.072771,-0.451441,-0.079944 +2.080572,-0.919113,0.980306,2.074330,-0.454048,-0.078453 +2.079050,-0.918146,0.977472,2.075715,-0.456746,-0.076792 +2.077359,-0.917371,0.974708,2.076920,-0.459524,-0.074968 +2.075507,-0.916791,0.972026,2.077939,-0.462370,-0.072990 +2.073502,-0.916409,0.969439,2.078767,-0.465270,-0.070866 +2.071353,-0.916226,0.966957,2.079401,-0.468212,-0.068607 +2.069070,-0.916244,0.964592,2.079838,-0.471182,-0.066221 +2.066663,-0.916461,0.962355,2.080075,-0.474168,-0.063720 +2.064143,-0.916878,0.960256,2.080113,-0.477154,-0.061115 +2.061521,-0.917492,0.958305,2.079951,-0.480130,-0.058418 +2.058810,-0.918301,0.956509,2.079588,-0.483079,-0.055641 +2.056021,-0.919301,0.954877,2.079028,-0.485991,-0.052796 +2.053166,-0.920487,0.953417,2.078273,-0.488851,-0.049896 +2.050259,-0.921854,0.952134,2.077325,-0.491646,-0.046955 +2.047313,-0.923396,0.951035,2.076190,-0.494365,-0.043985 +2.044341,-0.925107,0.950125,2.074872,-0.496994,-0.041000 +2.041356,-0.926977,0.949408,2.073377,-0.499522,-0.038013 +2.038372,-0.929000,0.948887,2.071712,-0.501938,-0.035038 +2.035402,-0.931165,0.948564,2.069885,-0.504231,-0.032087 +2.032459,-0.933463,0.948441,2.067903,-0.506390,-0.029175 +2.029558,-0.935885,0.948518,2.065776,-0.508405,-0.026314 +2.026710,-0.938418,0.948795,2.063514,-0.510269,-0.023518 +2.023928,-0.941051,0.949271,2.061125,-0.511972,-0.020798 +2.021226,-0.943774,0.949944,2.058622,-0.513506,-0.018168 +2.018615,-0.946572,0.950810,2.056014,-0.514865,-0.015638 +2.016106,-0.949435,0.951866,2.053315,-0.516043,-0.013220 +2.013713,-0.952348,0.953106,2.050537,-0.517034,-0.010926 +2.011444,-0.955300,0.954526,2.047690,-0.517834,-0.008765 +2.009310,-0.958276,0.956119,2.044790,-0.518439,-0.006747 +2.007321,-0.961263,0.957878,2.041847,-0.518847,-0.004882 +2.005486,-0.964248,0.959795,2.038877,-0.519055,-0.003177 +2.003813,-0.967217,0.961861,2.035891,-0.519064,-0.001640 +2.002309,-0.970157,0.964067,2.032905,-0.518872,-0.000278 +2.000982,-0.973055,0.966403,2.029930,-0.518480,0.000902 +1.999837,-0.975898,0.968859,2.026980,-0.517892,0.001896 +1.998879,-0.978673,0.971424,2.024069,-0.517108,0.002699 +1.998113,-0.981367,0.974085,2.021210,-0.516132,0.003307 +1.997542,-0.983969,0.976831,2.018415,-0.514970,0.003717 +1.997169,-0.986467,0.979650,2.015697,-0.513625,0.003929 +1.996996,-0.988848,0.982529,2.013069,-0.512105,0.003940 +1.997022,-0.991104,0.985455,2.010541,-0.510416,0.003751 +1.997248,-0.993223,0.988415,2.008127,-0.508566,0.003362 +1.997674,-0.995197,0.991396,2.005835,-0.506562,0.002776 +1.998297,-0.997015,0.994384,2.003677,-0.504415,0.001995 +1.999114,-0.998671,0.997366,2.001663,-0.502133,0.001022 +2.000121,-1.000156,1.000328,1.999801,-0.499727,-0.000138 +2.001315,-1.001465,1.003257,1.998100,-0.497208,-0.001480 +2.002689,-1.002590,1.006140,1.996567,-0.494586,-0.002997 +2.004238,-1.003527,1.008964,1.995209,-0.491875,-0.004684 +2.005955,-1.004272,1.011716,1.994033,-0.489085,-0.006532 +2.007832,-1.004821,1.014384,1.993044,-0.486230,-0.008534 +2.009860,-1.005173,1.016956,1.992246,-0.483323,-0.010679 +2.012030,-1.005324,1.019420,1.991642,-0.480375,-0.012959 +2.014333,-1.005276,1.021765,1.991236,-0.477402,-0.015364 +2.016758,-1.005027,1.023981,1.991029,-0.474415,-0.017882 +2.019295,-1.004579,1.026058,1.991023,-0.471429,-0.020502 +2.021931,-1.003935,1.027986,1.991217,-0.468457,-0.023212 +2.024655,-1.003096,1.029757,1.991610,-0.465513,-0.026000 +2.027456,-1.002067,1.031363,1.992201,-0.462608,-0.028855 +2.030319,-1.000852,1.032796,1.992986,-0.459758,-0.031762 +2.033233,-0.999457,1.034050,1.993963,-0.456973,-0.034708 +2.036184,-0.997889,1.035120,1.995127,-0.454268,-0.037682 +2.039159,-0.996153,1.036000,1.996473,-0.451654,-0.040668 +2.042145,-0.994258,1.036687,1.997995,-0.449142,-0.043654 +2.045128,-0.992213,1.037177,1.999685,-0.446745,-0.046626 +2.048094,-0.990026,1.037469,2.001537,-0.444472,-0.049572 +2.051031,-0.987708,1.037561,2.003542,-0.442335,-0.052476 +2.053925,-0.985268,1.037453,2.005691,-0.440342,-0.055328 +2.056764,-0.982719,1.037145,2.007974,-0.438503,-0.058113 +2.059534,-0.980071,1.036638,2.010381,-0.436826,-0.060820 +2.062223,-0.977336,1.035935,2.012901,-0.435319,-0.063436 +2.064819,-0.974526,1.035039,2.015524,-0.433987,-0.065949 +2.067310,-0.971655,1.033954,2.018236,-0.432838,-0.068348 +2.069685,-0.968735,1.032685,2.021026,-0.431877,-0.070622 +2.071934,-0.965779,1.031238,2.023882,-0.431107,-0.072761 +2.074045,-0.962800,1.029619,2.026790,-0.430532,-0.074756 +2.076011,-0.959813,1.027835,2.029737,-0.430155,-0.076597 +2.077821,-0.956829,1.025894,2.032711,-0.429978,-0.078277 +2.079469,-0.953864,1.023805,2.035697,-0.430001,-0.079787 +2.080945,-0.950929,1.021578,2.038683,-0.430224,-0.081120 +2.082244,-0.948039,1.019223,2.041655,-0.430646,-0.082272 +2.083361,-0.945205,1.016750,2.044600,-0.431265,-0.083236 +2.084289,-0.942442,1.014169,2.047503,-0.432079,-0.084009 +2.085025,-0.939762,1.011494,2.050354,-0.433084,-0.084586 +2.085565,-0.937175,1.008736,2.053137,-0.434275,-0.084966 +2.085907,-0.934695,1.005906,2.055842,-0.435647,-0.085146 +2.086050,-0.932332,1.003019,2.058455,-0.437194,-0.085126 +2.085992,-0.930097,1.000087,2.060966,-0.438909,-0.084906 +2.085735,-0.928000,0.997123,2.063362,-0.440784,-0.084487 +2.085278,-0.926050,0.994140,2.065633,-0.442810,-0.083870 +2.084625,-0.924256,0.991152,2.067770,-0.444979,-0.083059 +2.083778,-0.922627,0.988173,2.069761,-0.447281,-0.082057 +2.082741,-0.921168,0.985215,2.071598,-0.449706,-0.080868 +2.081519,-0.919888,0.982292,2.073274,-0.452242,-0.079498 +2.080117,-0.918792,0.979418,2.074780,-0.454878,-0.077954 +2.078541,-0.917884,0.976604,2.076110,-0.457602,-0.076242 +2.076799,-0.917170,0.973864,2.077257,-0.460403,-0.074369 +2.074899,-0.916651,0.971210,2.078217,-0.463267,-0.072345 +2.072848,-0.916331,0.968655,2.078985,-0.466181,-0.070178 +2.070656,-0.916210,0.966208,2.079558,-0.469134,-0.067877 +2.068334,-0.916290,0.963882,2.079933,-0.472110,-0.065455 +2.065891,-0.916570,0.961687,2.080109,-0.475097,-0.062920 +2.063338,-0.917048,0.959633,2.080084,-0.478082,-0.060285 +2.060687,-0.917723,0.957729,2.079859,-0.481051,-0.057562 +2.057950,-0.918592,0.955983,2.079435,-0.483990,-0.054762 +2.055139,-0.919650,0.954404,2.078814,-0.486887,-0.051899 +2.052267,-0.920893,0.952998,2.077998,-0.489728,-0.048985 +2.049346,-0.922315,0.951772,2.076992,-0.492501,-0.046033 +2.046391,-0.923911,0.950732,2.075799,-0.495193,-0.043057 +2.043413,-0.925672,0.949881,2.074425,-0.497792,-0.040070 +2.040427,-0.927591,0.949225,2.072877,-0.500286,-0.037085 +2.037446,-0.929658,0.948765,2.071161,-0.502665,-0.034116 +2.034483,-0.931866,0.948504,2.069285,-0.504917,-0.031177 +2.031552,-0.934204,0.948443,2.067257,-0.507033,-0.028279 +2.028665,-0.936661,0.948583,2.065086,-0.509002,-0.025437 +2.025837,-0.939227,0.948922,2.062783,-0.510816,-0.022663 +2.023078,-0.941889,0.949459,2.060358,-0.512467,-0.019970 +2.020403,-0.944637,0.950193,2.057821,-0.513948,-0.017369 +2.017823,-0.947457,0.951118,2.055184,-0.515251,-0.014873 +2.015349,-0.950336,0.952232,2.052459,-0.516371,-0.012493 +2.012993,-0.953263,0.953529,2.049658,-0.517303,-0.010239 +2.010765,-0.956223,0.955004,2.046793,-0.518043,-0.008122 +2.008675,-0.959204,0.956649,2.043878,-0.518587,-0.006150 +2.006733,-0.962192,0.958458,2.040926,-0.518933,-0.004334 +2.004948,-0.965174,0.960422,2.037949,-0.519079,-0.002680 +2.003327,-0.968135,0.962533,2.034962,-0.519025,-0.001197 +2.001877,-0.971064,0.964781,2.031977,-0.518771,0.000109 +2.000606,-0.973946,0.967155,2.029009,-0.518318,0.001232 +1.999519,-0.976769,0.969646,2.026070,-0.517668,0.002166 +1.998620,-0.979520,0.972242,2.023173,-0.516824,0.002909 +1.997915,-0.982187,0.974931,2.020333,-0.515790,0.003456 +1.997405,-0.984758,0.977701,2.017561,-0.514571,0.003804 +1.997094,-0.987220,0.980540,2.014869,-0.513171,0.003953 +1.996982,-0.989564,0.983435,2.012271,-0.511598,0.003902 +1.997071,-0.991779,0.986373,2.009778,-0.509858,0.003651 +1.997360,-0.993853,0.989341,2.007400,-0.507959,0.003201 +1.997847,-0.995780,0.992325,2.005149,-0.505909,0.002554 +1.998530,-0.997548,0.995313,2.003035,-0.503719,0.001712 +1.999407,-0.999152,0.998290,2.001067,-0.501397,0.000681 +2.000473,-1.000583,1.001243,1.999254,-0.498955,-0.000536 +2.001723,-1.001834,1.004159,1.997604,-0.496402,-0.001933 +2.003153,-1.002902,1.007025,1.996125,-0.493752,-0.003504 +2.004755,-1.003779,1.009828,1.994824,-0.491015,-0.005242 +2.006522,-1.004464,1.012555,1.993705,-0.488203,-0.007139 +2.008447,-1.004952,1.015195,1.992775,-0.485331,-0.009186 +2.010520,-1.005241,1.017734,1.992037,-0.482409,-0.011375 +2.012733,-1.005331,1.020163,1.991495,-0.479452,-0.013695 +2.015075,-1.005220,1.022469,1.991150,-0.476473,-0.016135 +2.017536,-1.004909,1.024643,1.991006,-0.473486,-0.018686 +2.020105,-1.004400,1.026674,1.991062,-0.470503,-0.021336 +2.022770,-1.003694,1.028554,1.991318,-0.467538,-0.024072 +2.025519,-1.002796,1.030275,1.991773,-0.464604,-0.026882 +2.028340,-1.001709,1.031827,1.992424,-0.461715,-0.029754 +2.031221,-1.000437,1.033205,1.993270,-0.458884,-0.032675 +2.034148,-0.998988,1.034403,1.994306,-0.456123,-0.035631 +2.037108,-0.997366,1.035414,1.995527,-0.453444,-0.038610 +2.040087,-0.995580,1.036234,1.996928,-0.450861,-0.041598 +2.043074,-0.993637,1.036861,1.998503,-0.448384,-0.044581 +2.046053,-0.991547,1.037289,2.000245,-0.446024,-0.047546 +2.049012,-0.989318,1.037519,2.002145,-0.443792,-0.050480 +2.051937,-0.986961,1.037549,2.004196,-0.441699,-0.053370 +2.054815,-0.984486,1.037378,2.006387,-0.439753,-0.056202 +2.057634,-0.981905,1.037008,2.008710,-0.437964,-0.058964 +2.060380,-0.979229,1.036440,2.011154,-0.436339,-0.061644 +2.063041,-0.976469,1.035677,2.013707,-0.434885,-0.064229 +2.065606,-0.973639,1.034722,2.016358,-0.433610,-0.066708 +2.068062,-0.970751,1.033579,2.019096,-0.432519,-0.069069 +2.070399,-0.967818,1.032254,2.021908,-0.431616,-0.071302 +2.072606,-0.964854,1.030752,2.024781,-0.430907,-0.073398 +2.074673,-0.961871,1.029081,2.027703,-0.430394,-0.075346 +2.076591,-0.958883,1.027247,2.030660,-0.430079,-0.077137 +2.078352,-0.955904,1.025260,2.033639,-0.429963,-0.078765 +2.079947,-0.952947,1.023127,2.036627,-0.430049,-0.080221 +2.081369,-0.950024,1.020859,2.039610,-0.430334,-0.081499 +2.082612,-0.947150,1.018466,2.042575,-0.430818,-0.082592 +2.083670,-0.944338,1.015958,2.045508,-0.431498,-0.083497 +2.084539,-0.941599,1.013347,2.048396,-0.432372,-0.084210 +2.085214,-0.938946,1.010644,2.051227,-0.433435,-0.084726 +2.085693,-0.936392,1.007862,2.053988,-0.434683,-0.085044 +2.085973,-0.933947,1.005014,2.056665,-0.436110,-0.085162 +2.086053,-0.931623,1.002111,2.059248,-0.437710,-0.085079 +2.085933,-0.929429,0.999168,2.061724,-0.439475,-0.084797 +2.085614,-0.927377,0.996196,2.064083,-0.441398,-0.084316 +2.085096,-0.925475,0.993211,2.066313,-0.443470,-0.083638 +2.084382,-0.923731,0.990224,2.068405,-0.445682,-0.082767 +2.083476,-0.922154,0.987250,2.070349,-0.448023,-0.081707 +2.082381,-0.920751,0.984301,2.072137,-0.450483,-0.080461 +2.081102,-0.919527,0.981392,2.073761,-0.453051,-0.079036 +2.079645,-0.918489,0.978535,2.075213,-0.455716,-0.077439 +2.078017,-0.917641,0.975743,2.076486,-0.458466,-0.075676 +2.076225,-0.916987,0.973029,2.077576,-0.461288,-0.073755 +2.074276,-0.916530,0.970404,2.078477,-0.464169,-0.071685 +2.072181,-0.916272,0.967881,2.079184,-0.467096,-0.069476 +2.069947,-0.916213,0.965471,2.079696,-0.470058,-0.067136 +2.067586,-0.916356,0.963185,2.080009,-0.473039,-0.064678 +2.065108,-0.916697,0.961033,2.080122,-0.476027,-0.062111 +2.062523,-0.917237,0.959024,2.080035,-0.479008,-0.059447 +2.059844,-0.917973,0.957168,2.079749,-0.481969,-0.056699 +2.057083,-0.918901,0.955474,2.079263,-0.484896,-0.053878 +2.054251,-0.920017,0.953948,2.078581,-0.487777,-0.050998 +2.051363,-0.921317,0.952597,2.077705,-0.490598,-0.048070 +2.048430,-0.922794,0.951429,2.076640,-0.493347,-0.045110 +2.045466,-0.924441,0.950447,2.075391,-0.496012,-0.042129 +2.042484,-0.926252,0.949656,2.073962,-0.498580,-0.039141 +2.039498,-0.928218,0.949061,2.072361,-0.501039,-0.036159 +2.036521,-0.930331,0.948663,2.070594,-0.503380,-0.033198 +2.033567,-0.932580,0.948464,2.068670,-0.505590,-0.030270 +2.030648,-0.934956,0.948465,2.066596,-0.507661,-0.027388 +2.027778,-0.937448,0.948667,2.064384,-0.509583,-0.024566 +2.024970,-0.940045,0.949068,2.062041,-0.511348,-0.021816 +2.022237,-0.942736,0.949667,2.059580,-0.512947,-0.019150 +2.019590,-0.945507,0.950460,2.057011,-0.514373,-0.016581 +2.017041,-0.948347,0.951445,2.054345,-0.515620,-0.014120 +2.014603,-0.951242,0.952616,2.051595,-0.516682,-0.011778 +2.012285,-0.954181,0.953969,2.048773,-0.517554,-0.009565 +2.010100,-0.957149,0.955498,2.045891,-0.518234,-0.007492 +2.008055,-0.960134,0.957195,2.042963,-0.518716,-0.005568 +2.006161,-0.963121,0.959053,2.040002,-0.519000,-0.003801 +2.004425,-0.966098,0.961064,2.037020,-0.519084,-0.002200 +2.002857,-0.969051,0.963218,2.034032,-0.518968,-0.000772 +2.001462,-0.971966,0.965506,2.031051,-0.518652,0.000478 +2.000248,-0.974831,0.967918,2.028091,-0.518137,0.001543 +1.999219,-0.977633,0.970443,2.025163,-0.517426,0.002418 +1.998380,-0.980360,0.973069,2.022283,-0.516523,0.003100 +1.997735,-0.982998,0.975784,2.019462,-0.515431,0.003585 +1.997287,-0.985536,0.978577,2.016714,-0.514154,0.003872 +1.997038,-0.987963,0.981435,2.014050,-0.512700,0.003959 +1.996988,-0.990267,0.984345,2.011484,-0.511074,0.003846 +1.997139,-0.992439,0.987294,2.009025,-0.509283,0.003532 +1.997490,-0.994469,0.990268,2.006686,-0.507337,0.003020 +1.998038,-0.996347,0.993255,2.004476,-0.505242,0.002312 +1.998782,-0.998065,0.996241,2.002407,-0.503010,0.001412 +1.999718,-0.999616,0.999212,2.000486,-0.500650,0.000322 +2.000842,-1.000992,1.002155,1.998723,-0.498172,-0.000952 +2.002149,-1.002187,1.005057,1.997126,-0.495588,-0.002404 +2.003633,-1.003195,1.007905,1.995701,-0.492909,-0.004027 +2.005287,-1.004013,1.010685,1.994456,-0.490147,-0.005816 +2.007105,-1.004637,1.013387,1.993395,-0.487316,-0.007760 +2.009076,-1.005063,1.015996,1.992524,-0.484426,-0.009852 +2.011194,-1.005291,1.018502,1.991847,-0.481493,-0.012083 +2.013448,-1.005318,1.020894,1.991366,-0.478527,-0.014441 +2.015828,-1.005144,1.023160,1.991084,-0.475544,-0.016918 +2.018324,-1.004772,1.025290,1.991002,-0.472557,-0.019500 +2.020924,-1.004201,1.027276,1.991120,-0.469578,-0.022178 +2.023617,-1.003435,1.029107,1.991438,-0.466621,-0.024939 +2.026390,-1.002478,1.030776,1.991954,-0.463700,-0.027769 +2.029231,-1.001333,1.032275,1.992667,-0.460827,-0.030658 +2.032127,-1.000005,1.033597,1.993572,-0.458017,-0.033591 +2.035066,-0.998501,1.034737,1.994666,-0.455280,-0.036556 +2.038033,-0.996828,1.035690,1.995944,-0.452630,-0.039539 +2.041016,-0.994992,1.036450,1.997400,-0.450078,-0.042527 +2.044002,-0.993002,1.037015,1.999027,-0.447636,-0.045506 +2.046976,-0.990868,1.037382,2.000819,-0.445315,-0.048463 +2.049926,-0.988598,1.037550,2.002767,-0.443126,-0.051385 +2.052838,-0.986203,1.037517,2.004863,-0.441077,-0.054258 +2.055699,-0.983694,1.037285,2.007096,-0.439179,-0.057070 +2.058496,-0.981082,1.036853,2.009458,-0.437440,-0.059807 +2.061217,-0.978378,1.036224,2.011937,-0.435868,-0.062459 +2.063850,-0.975596,1.035400,2.014522,-0.434469,-0.065012 +2.066382,-0.972746,1.034386,2.017201,-0.433251,-0.067455 +2.068802,-0.969843,1.033186,2.019964,-0.432218,-0.069778 +2.071100,-0.966899,1.031805,2.022796,-0.431375,-0.071970 +2.073264,-0.963927,1.030250,2.025686,-0.430726,-0.074020 +2.075286,-0.960941,1.028527,2.028620,-0.430274,-0.075920 +2.077156,-0.957955,1.026645,2.031585,-0.430021,-0.077662 +2.078866,-0.954981,1.024611,2.034568,-0.429969,-0.079237 +2.080408,-0.952033,1.022435,2.037556,-0.430116,-0.080638 +2.081775,-0.949124,1.020127,2.040535,-0.430463,-0.081859 +2.082961,-0.946268,1.017697,2.043491,-0.431008,-0.082894 +2.083961,-0.943477,1.015156,2.046412,-0.431749,-0.083740 +2.084770,-0.940764,1.012515,2.049284,-0.432682,-0.084391 +2.085384,-0.938141,1.009787,2.052094,-0.433804,-0.084846 +2.085801,-0.935619,1.006983,2.054830,-0.435108,-0.085102 +2.086019,-0.933210,1.004116,2.057479,-0.436590,-0.085157 +2.086037,-0.930926,1.001199,2.060030,-0.438242,-0.085013 +2.085855,-0.928775,0.998246,2.062471,-0.440057,-0.084668 +2.085474,-0.926769,0.995268,2.064791,-0.442027,-0.084126 +2.084895,-0.924915,0.992281,2.066979,-0.444144,-0.083388 +2.084121,-0.923222,0.989297,2.069026,-0.446397,-0.082457 +2.083155,-0.921699,0.986329,2.070923,-0.448776,-0.081339 +2.082002,-0.920351,0.983392,2.072661,-0.451271,-0.080037 +2.080668,-0.919184,0.980497,2.074231,-0.453871,-0.078558 +2.079157,-0.918205,0.977659,2.075628,-0.456563,-0.076908 +2.077477,-0.917417,0.974890,2.076845,-0.459337,-0.075095 +2.075635,-0.916824,0.972202,2.077877,-0.462178,-0.073127 +2.073640,-0.916428,0.969608,2.078718,-0.465075,-0.071012 +2.071500,-0.916232,0.967119,2.079365,-0.468015,-0.068761 +2.069226,-0.916236,0.964746,2.079815,-0.470984,-0.066384 +2.066827,-0.916441,0.962500,2.080066,-0.473968,-0.063890 +2.064314,-0.916844,0.960392,2.080117,-0.476956,-0.061292 +2.061699,-0.917445,0.958430,2.079968,-0.479932,-0.058601 +2.058993,-0.918241,0.956623,2.079619,-0.482884,-0.055828 +2.056209,-0.919228,0.954980,2.079072,-0.485798,-0.052988 +2.053358,-0.920402,0.953508,2.078329,-0.488662,-0.050091 +2.050455,-0.921757,0.952214,2.077394,-0.491462,-0.047152 +2.047511,-0.923288,0.951103,2.076271,-0.494186,-0.044184 +2.044540,-0.924987,0.950180,2.074965,-0.496822,-0.041199 +2.041555,-0.926848,0.949450,2.073482,-0.499357,-0.038212 +2.038571,-0.928860,0.948916,2.071828,-0.501781,-0.035235 +2.035599,-0.931016,0.948579,2.070012,-0.504082,-0.032283 +2.032654,-0.933306,0.948443,2.068040,-0.506250,-0.029368 +2.029750,-0.935720,0.948507,2.065923,-0.508276,-0.026503 +2.026898,-0.938246,0.948771,2.063668,-0.510150,-0.023702 +2.024111,-0.940873,0.949233,2.061288,-0.511863,-0.020977 +2.021403,-0.943590,0.949893,2.058792,-0.513409,-0.018340 +2.018786,-0.946384,0.950746,2.056191,-0.514780,-0.015803 +2.016270,-0.949242,0.951789,2.053498,-0.515970,-0.013378 +2.013868,-0.952153,0.953018,2.050724,-0.516974,-0.011075 +2.011591,-0.955102,0.954426,2.047882,-0.517787,-0.008905 +2.009448,-0.958077,0.956008,2.044984,-0.518405,-0.006877 +2.007449,-0.961063,0.957756,2.042045,-0.518826,-0.005001 +2.005603,-0.964049,0.959663,2.039076,-0.519048,-0.003285 +2.003919,-0.967020,0.961719,2.036091,-0.519069,-0.001737 +2.002404,-0.969962,0.963916,2.033104,-0.518891,-0.000363 +2.001065,-0.972864,0.966244,2.030127,-0.518513,0.000829 +1.999907,-0.975711,0.968692,2.027176,-0.517937,0.001836 +1.998937,-0.978490,0.971249,2.024262,-0.517166,0.002651 +1.998158,-0.981190,0.973905,2.021398,-0.516203,0.003272 +1.997574,-0.983799,0.976646,2.018599,-0.515053,0.003696 +1.997188,-0.986304,0.979460,2.015876,-0.513721,0.003921 +1.997001,-0.988693,0.982336,2.013241,-0.512212,0.003945 +1.997014,-0.990958,0.985259,2.010707,-0.510534,0.003769 +1.997227,-0.993087,0.988217,2.008284,-0.508694,0.003394 +1.997639,-0.995070,0.991197,2.005984,-0.506701,0.002821 +1.998249,-0.996899,0.994185,2.003817,-0.504562,0.002053 +1.999053,-0.998566,0.997167,2.001793,-0.502289,0.001093 +2.000048,-1.000063,1.000131,1.999920,-0.499891,-0.000055 +2.001230,-1.001383,1.003063,1.998208,-0.497379,-0.001385 +2.002592,-1.002521,1.005949,1.996664,-0.494764,-0.002891 +2.004130,-1.003470,1.008777,1.995294,-0.492058,-0.004567 +2.005836,-1.004228,1.011535,1.994106,-0.489273,-0.006404 +2.007702,-1.004791,1.014209,1.993104,-0.486422,-0.008396 +2.009720,-1.005155,1.016787,1.992293,-0.483518,-0.010532 +2.011881,-1.005320,1.019259,1.991676,-0.480573,-0.012803 +2.014175,-1.005285,1.021613,1.991257,-0.477601,-0.015200 +2.016593,-1.005050,1.023838,1.991037,-0.474615,-0.017710 +2.019122,-1.004615,1.025924,1.991017,-0.471628,-0.020324 +2.021752,-1.003984,1.027862,1.991198,-0.468655,-0.023029 +2.024471,-1.003158,1.029644,1.991577,-0.465708,-0.025812 +2.027267,-1.002141,1.031261,1.992155,-0.462800,-0.028662 +2.030126,-1.000939,1.032706,1.992928,-0.459946,-0.031566 +2.033037,-0.999556,1.033972,1.993892,-0.457157,-0.034511 +2.035986,-0.997998,1.035054,1.995044,-0.454446,-0.037483 +2.038960,-0.996274,1.035947,1.996378,-0.451825,-0.040469 +2.041946,-0.994389,1.036647,1.997888,-0.449306,-0.043455 +2.044929,-0.992354,1.037151,1.999568,-0.446901,-0.046429 +2.047897,-0.990176,1.037456,2.001409,-0.444620,-0.049376 +2.050837,-0.987866,1.037561,2.003404,-0.442473,-0.052284 +2.053734,-0.985435,1.037466,2.005543,-0.440470,-0.055140 +2.056577,-0.982892,1.037171,2.007818,-0.438621,-0.057930 +2.059352,-0.980250,1.036678,2.010217,-0.436933,-0.060642 +2.062046,-0.977521,1.035988,2.012730,-0.435414,-0.063264 +2.064649,-0.974716,1.035105,2.015346,-0.434071,-0.065784 +2.067147,-0.971848,1.034032,2.018053,-0.432909,-0.068191 +2.069530,-0.968931,1.032776,2.020838,-0.431935,-0.070474 +2.071788,-0.965977,1.031340,2.023689,-0.431152,-0.072623 +2.073909,-0.962999,1.029732,2.026594,-0.430564,-0.074628 +2.075885,-0.960012,1.027958,2.029540,-0.430174,-0.076479 +2.077706,-0.957028,1.026028,2.032512,-0.429983,-0.078170 +2.079364,-0.954060,1.023949,2.035498,-0.429993,-0.079691 +2.080852,-0.951123,1.021731,2.038484,-0.430203,-0.081037 +2.082163,-0.948230,1.019384,2.041458,-0.430612,-0.082201 +2.083292,-0.945392,1.016918,2.044404,-0.431218,-0.083178 +2.084233,-0.942624,1.014345,2.047311,-0.432019,-0.083963 +2.084982,-0.939938,1.011675,2.050165,-0.433011,-0.084554 +2.085535,-0.937345,1.008922,2.052954,-0.434190,-0.084947 +2.085890,-0.934857,1.006097,2.055664,-0.435550,-0.085141 +2.086046,-0.932486,1.003213,2.058284,-0.437086,-0.085134 +2.086002,-0.930242,1.000284,2.060802,-0.438789,-0.084927 +2.085758,-0.928135,0.997321,2.063206,-0.440654,-0.084521 +2.085315,-0.926175,0.994339,2.065486,-0.442671,-0.083917 +2.084675,-0.924371,0.991351,2.067632,-0.444830,-0.083119 +2.083841,-0.922730,0.988371,2.069633,-0.447124,-0.082129 +2.082816,-0.921260,0.985411,2.071481,-0.449540,-0.080953 +2.081606,-0.919968,0.982486,2.073167,-0.452069,-0.079595 +2.080216,-0.918859,0.979608,2.074685,-0.454699,-0.078062 +2.078652,-0.917939,0.976790,2.076027,-0.457418,-0.076361 +2.076921,-0.917211,0.974044,2.077186,-0.460214,-0.074499 +2.075030,-0.916679,0.971384,2.078159,-0.463074,-0.072484 +2.072989,-0.916346,0.968822,2.078940,-0.465986,-0.070326 +2.070807,-0.916212,0.966368,2.079526,-0.468936,-0.068035 +2.068492,-0.916278,0.964033,2.079914,-0.471911,-0.065620 +2.066057,-0.916545,0.961829,2.080103,-0.474898,-0.063092 +2.063511,-0.917010,0.959765,2.080092,-0.477883,-0.060464 +2.060867,-0.917672,0.957851,2.079880,-0.480853,-0.057746 +2.058135,-0.918528,0.956094,2.079470,-0.483795,-0.054951 +2.055328,-0.919574,0.954504,2.078861,-0.486695,-0.052092 +2.052460,-0.920805,0.953086,2.078059,-0.489540,-0.049181 +2.049542,-0.922215,0.951848,2.077065,-0.492318,-0.046231 +2.046589,-0.923799,0.950795,2.075884,-0.495016,-0.043256 +2.043612,-0.925549,0.949932,2.074522,-0.497622,-0.040269 +2.040626,-0.927458,0.949263,2.072986,-0.500123,-0.037284 +2.037644,-0.929516,0.948790,2.071280,-0.502510,-0.034314 +2.034680,-0.931715,0.948515,2.069415,-0.504771,-0.031371 +2.031746,-0.934044,0.948441,2.067397,-0.506896,-0.028471 +2.028856,-0.936494,0.948567,2.065235,-0.508875,-0.025624 +2.026023,-0.939053,0.948893,2.062941,-0.510700,-0.022846 +2.023260,-0.941709,0.949417,2.060523,-0.512362,-0.020147 +2.020579,-0.944451,0.950138,2.057993,-0.513855,-0.017540 +2.017992,-0.947267,0.951050,2.055363,-0.515170,-0.015036 +2.015510,-0.950143,0.952152,2.052643,-0.516303,-0.012648 +2.013146,-0.953067,0.953437,2.049847,-0.517247,-0.010385 +2.010909,-0.956025,0.954900,2.046986,-0.518000,-0.008258 +2.008810,-0.959005,0.956534,2.044074,-0.518557,-0.006277 +2.006858,-0.961993,0.958333,2.041123,-0.518916,-0.004450 +2.005062,-0.964975,0.960287,2.038148,-0.519076,-0.002785 +2.003429,-0.967939,0.962388,2.035161,-0.519035,-0.001290 +2.001968,-0.970870,0.964627,2.032176,-0.518794,0.000027 +2.000685,-0.973756,0.966993,2.029206,-0.518355,0.001163 +1.999585,-0.976583,0.969476,2.026264,-0.517718,0.002110 +1.998674,-0.979339,0.972066,2.023365,-0.516887,0.002865 +1.997956,-0.982012,0.974749,2.020520,-0.515865,0.003425 +1.997433,-0.984590,0.977514,2.017743,-0.514658,0.003787 +1.997108,-0.987060,0.980349,2.015046,-0.513270,0.003950 +1.996983,-0.989412,0.983241,2.012441,-0.511708,0.003912 +1.997059,-0.991635,0.986176,2.009940,-0.509979,0.003674 +1.997334,-0.993720,0.989143,2.007555,-0.508090,0.003237 +1.997808,-0.995656,0.992126,2.005295,-0.506050,0.002603 +1.998479,-0.997436,0.995114,2.003171,-0.503869,0.001774 +1.999342,-0.999050,0.998092,2.001193,-0.501556,0.000756 +2.000396,-1.000493,1.001047,1.999370,-0.499121,-0.000449 +2.001634,-1.001757,1.003966,1.997709,-0.496576,-0.001835 +2.003052,-1.002836,1.006836,1.996219,-0.493931,-0.003394 +2.004643,-1.003727,1.009643,1.994905,-0.491200,-0.005121 +2.006399,-1.004424,1.012376,1.993774,-0.488393,-0.007008 +2.008314,-1.004926,1.015022,1.992831,-0.485524,-0.009045 +2.010377,-1.005228,1.017568,1.992080,-0.482605,-0.011225 +2.012581,-1.005331,1.020004,1.991525,-0.479650,-0.013536 +2.014915,-1.005233,1.022319,1.991167,-0.476672,-0.015969 +2.017368,-1.004936,1.024502,1.991009,-0.473685,-0.018513 +2.019930,-1.004440,1.026543,1.991052,-0.470701,-0.021156 +2.022589,-1.003747,1.028434,1.991294,-0.467735,-0.023887 +2.025333,-1.002862,1.030165,1.991736,-0.464798,-0.026692 +2.028150,-1.001787,1.031729,1.992375,-0.461906,-0.029561 +2.031027,-1.000528,1.033119,1.993207,-0.459070,-0.032479 +2.033951,-0.999090,1.034329,1.994231,-0.456304,-0.035433 +2.036909,-0.997479,1.035352,1.995440,-0.453620,-0.038411 +2.039888,-0.995704,1.036186,1.996829,-0.451030,-0.041398 +2.042875,-0.993772,1.036825,1.998393,-0.448545,-0.044382 +2.045855,-0.991691,1.037267,2.000124,-0.446177,-0.047349 +2.048815,-0.989471,1.037510,2.002014,-0.443937,-0.050286 +2.051743,-0.987122,1.037553,2.004054,-0.441834,-0.053179 +2.054625,-0.984655,1.037396,2.006237,-0.439878,-0.056015 +2.057448,-0.982080,1.037039,2.008551,-0.438078,-0.058783 +2.060199,-0.979410,1.036484,2.010987,-0.436442,-0.061468 +2.062866,-0.976655,1.035734,2.013533,-0.434977,-0.064060 +2.065438,-0.973830,1.034791,2.016179,-0.433689,-0.066546 +2.067902,-0.970945,1.033661,2.018911,-0.432586,-0.068915 +2.070247,-0.968015,1.032348,2.021719,-0.431671,-0.071158 +2.072463,-0.965052,1.030858,2.024588,-0.430948,-0.073263 +2.074540,-0.962070,1.029197,2.027507,-0.430422,-0.075221 +2.076468,-0.959082,1.027374,2.030462,-0.430093,-0.077023 +2.078239,-0.956102,1.025397,2.033440,-0.429965,-0.078662 +2.079845,-0.953143,1.023273,2.036428,-0.430037,-0.080129 +2.081279,-0.950218,1.021014,2.039411,-0.430309,-0.081419 +2.082534,-0.947340,1.018629,2.042378,-0.430779,-0.082525 +2.083605,-0.944523,1.016128,2.045314,-0.431447,-0.083443 +2.084487,-0.941779,1.013524,2.048206,-0.432308,-0.084168 +2.085175,-0.939120,1.010827,2.051041,-0.433358,-0.084698 +2.085667,-0.936559,1.008050,2.053806,-0.434594,-0.085029 +2.085960,-0.934106,1.005206,2.056490,-0.436010,-0.085160 +2.086054,-0.931774,1.002306,2.059079,-0.437598,-0.085091 +2.085948,-0.929571,0.999365,2.061563,-0.439353,-0.084822 +2.085641,-0.927509,0.996395,2.063929,-0.441265,-0.084354 +2.085137,-0.925597,0.993410,2.066168,-0.443328,-0.083689 +2.084436,-0.923842,0.990423,2.068270,-0.445530,-0.082831 +2.083542,-0.922254,0.987447,2.070225,-0.447863,-0.081783 +2.082460,-0.920839,0.984497,2.072023,-0.450316,-0.080550 +2.081193,-0.919603,0.981585,2.073658,-0.452877,-0.079137 +2.079748,-0.918553,0.978724,2.075121,-0.455536,-0.077551 +2.078131,-0.917692,0.975927,2.076407,-0.458280,-0.075798 +2.076349,-0.917025,0.973207,2.077509,-0.461097,-0.073888 +2.074411,-0.916554,0.970576,2.078423,-0.463975,-0.071828 +2.072325,-0.916283,0.968046,2.079143,-0.466900,-0.069627 +2.070100,-0.916211,0.965628,2.079668,-0.469859,-0.067296 +2.067747,-0.916340,0.963333,2.079994,-0.472840,-0.064845 +2.065276,-0.916668,0.961172,2.080121,-0.475828,-0.062285 +2.062698,-0.917195,0.959153,2.080048,-0.478810,-0.059627 +2.060025,-0.917918,0.957287,2.079774,-0.481772,-0.056884 +2.057269,-0.918833,0.955581,2.079301,-0.484702,-0.054068 +2.054442,-0.919937,0.954044,2.078632,-0.487587,-0.051191 +2.051557,-0.921224,0.952682,2.077770,-0.490412,-0.048267 +2.048627,-0.922690,0.951501,2.076717,-0.493167,-0.045308 +2.045664,-0.924326,0.950506,2.075480,-0.495837,-0.042328 +2.042683,-0.926126,0.949703,2.074063,-0.498412,-0.039340 +2.039697,-0.928083,0.949094,2.072473,-0.500879,-0.036358 +2.036719,-0.930186,0.948683,2.070717,-0.503228,-0.033395 +2.033763,-0.932426,0.948471,2.068803,-0.505447,-0.030464 +2.030841,-0.934794,0.948459,2.066739,-0.507528,-0.027579 +2.027968,-0.937279,0.948647,2.064535,-0.509460,-0.024752 +2.025155,-0.939869,0.949035,2.062201,-0.511235,-0.021997 +2.022416,-0.942554,0.949621,2.059748,-0.512845,-0.019325 +2.019763,-0.945320,0.950401,2.057185,-0.514283,-0.016749 +2.017208,-0.948156,0.951373,2.054526,-0.515542,-0.014280 +2.014762,-0.951048,0.952532,2.051781,-0.516617,-0.011930 +2.012436,-0.953984,0.953873,2.048963,-0.517502,-0.009708 +2.010241,-0.956951,0.955390,2.046085,-0.518194,-0.007626 +2.008187,-0.959935,0.957077,2.043159,-0.518690,-0.005691 +2.006282,-0.962922,0.958924,2.040200,-0.518987,-0.003914 +2.004536,-0.965900,0.960925,2.037219,-0.519085,-0.002302 +2.002956,-0.968855,0.963070,2.034231,-0.518982,-0.000861 +2.001550,-0.971773,0.965350,2.031250,-0.518679,0.000400 +2.000323,-0.974642,0.967754,2.028287,-0.518178,0.001478 +1.999281,-0.977449,0.970271,2.025357,-0.517480,0.002366 +1.998430,-0.980181,0.972891,2.022473,-0.516589,0.003061 +1.997772,-0.982825,0.975601,2.019648,-0.515509,0.003559 +1.997311,-0.985370,0.978389,2.016895,-0.514245,0.003859 +1.997048,-0.987805,0.981243,2.014225,-0.512802,0.003959 +1.996990,-0.988976,0.982689,2.012930,-0.512017,0.003934 +1.996980,-0.990115,0.984146,2.011650,-0.511191,0.003863 +1.997020,-0.991218,0.985611,2.010390,-0.510329,0.003748 +1.997090,-0.992282,0.987082,2.009140,-0.509434,0.003592 +1.997210,-0.993306,0.988555,2.007910,-0.508507,0.003398 +1.997370,-0.994287,0.990029,2.006680,-0.507554,0.003170 +1.997550,-0.995222,0.991500,2.005460,-0.506576,0.002911 +1.997770,-0.996108,0.992966,2.004240,-0.505577,0.002623 +1.998020,-0.996943,0.994424,2.003020,-0.504559,0.002311 +1.998300,-0.997724,0.995873,2.001800,-0.503527,0.001976 +1.998600,-0.998449,0.997308,2.000560,-0.502483,0.001622 +1.998920,-0.999115,0.998729,1.999320,-0.501430,0.001252 +1.999260,-0.999720,1.000130,1.998070,-0.500372,0.000870 +1.999620,-1.000260,1.001510,1.996800,-0.499311,0.000478 +1.999990,-1.000730,1.002870,1.995510,-0.498250,0.000080 +2.000370,-1.001140,1.004200,1.994190,-0.497193,-0.000322 +2.000760,-1.001470,1.005510,1.992860,-0.496143,-0.000724 +2.001150,-1.001730,1.006780,1.991490,-0.495103,-0.001123 +2.001550,-1.001910,1.008020,1.990090,-0.494076,-0.001516 +2.001950,-1.002010,1.009230,1.988650,-0.493065,-0.001900 +2.002340,-1.002030,1.010390,1.987180,-0.492073,-0.002272 +2.002740,-1.001960,1.011520,1.985660,-0.491101,-0.002629 +2.003120,-1.001810,1.012600,1.984100,-0.490145,-0.002967 +2.003500,-1.001570,1.013630,1.982500,-0.489202,-0.003284 +2.003860,-1.001230,1.014610,1.980840,-0.488270,-0.003576 +2.004210,-1.000810,1.015550,1.979130,-0.487345,-0.003841 +2.004540,-1.000290,1.016420,1.977360,-0.486424,-0.004074 +2.004850,-0.999694,1.017250,1.975530,-0.485504,-0.004274 +2.005130,-0.999012,1.018010,1.973640,-0.484584,-0.004439 +2.005400,-0.998250,1.018710,1.971680,-0.483664,-0.004573 +2.005630,-0.997410,1.019340,1.969660,-0.482744,-0.004679 +2.005830,-0.996496,1.019910,1.967560,-0.481825,-0.004760 +2.006000,-0.995509,1.020410,1.965380,-0.480905,-0.004818 +2.006140,-0.994453,1.020830,1.963130,-0.479985,-0.004858 +2.006230,-0.993329,1.021180,1.960790,-0.479065,-0.004881 +2.006290,-0.992141,1.021460,1.958370,-0.478145,-0.004892 +2.006300,-0.990891,1.021650,1.955860,-0.477225,-0.004894 +2.006270,-0.989581,1.021760,1.953260,-0.476305,-0.004889 +2.006180,-0.988215,1.021780,1.950570,-0.475386,-0.004880 +2.006050,-0.986794,1.021720,1.947800,-0.474466,-0.004871 +2.005860,-0.985322,1.021560,1.944940,-0.473546,-0.004862 +2.005610,-0.983801,1.021320,1.942000,-0.472626,-0.004853 +2.005310,-0.982234,1.020970,1.938980,-0.471706,-0.004844 +2.004940,-0.980623,1.020540,1.935890,-0.470786,-0.004835 +2.004510,-0.978971,1.020010,1.932730,-0.469866,-0.004825 +2.004020,-0.977280,1.019390,1.929500,-0.468947,-0.004816 +2.003450,-0.975553,1.018690,1.926210,-0.468027,-0.004807 +2.002810,-0.973793,1.017910,1.922850,-0.467107,-0.004798 +2.002100,-0.972002,1.017040,1.919440,-0.466187,-0.004789 +2.001310,-0.970182,1.016100,1.915970,-0.465267,-0.004780 +2.000440,-0.968338,1.015080,1.912450,-0.464347,-0.004770 +1.999480,-0.966470,1.013990,1.908880,-0.463427,-0.004761 +1.998450,-0.964581,1.012830,1.905260,-0.462508,-0.004752 +1.997320,-0.962675,1.011600,1.901600,-0.461588,-0.004743 +1.996100,-0.960754,1.010310,1.897900,-0.460668,-0.004734 +1.994800,-0.958820,1.008950,1.894170,-0.459748,-0.004725 +1.993390,-0.956876,1.007530,1.890390,-0.458828,-0.004715 +1.991890,-0.954925,1.006060,1.886590,-0.457908,-0.004706 +1.990290,-0.952969,1.004530,1.882770,-0.456988,-0.004697 +1.988580,-0.951010,1.002950,1.878910,-0.456069,-0.004688 +1.986770,-0.949052,1.001320,1.875040,-0.455149,-0.004679 +1.984850,-0.947093,0.999645,1.871150,-0.454229,-0.004670 +1.982820,-0.945134,0.997925,1.867240,-0.453309,-0.004661 +1.980680,-0.943176,0.996163,1.863320,-0.452389,-0.004651 +1.978440,-0.941217,0.994361,1.859400,-0.451469,-0.004642 +1.976090,-0.939258,0.992524,1.855460,-0.450549,-0.004633 +1.973650,-0.937300,0.990653,1.851530,-0.449630,-0.004624 +1.971110,-0.935341,0.988750,1.847590,-0.448710,-0.004615 +1.968480,-0.933382,0.986819,1.843650,-0.447790,-0.004606 +1.965760,-0.931423,0.984861,1.839720,-0.446870,-0.004596 +1.962940,-0.929465,0.982881,1.835780,-0.445950,-0.004587 +1.960040,-0.927506,0.980879,1.831850,-0.445030,-0.004578 +1.957060,-0.925547,0.978859,1.827910,-0.444110,-0.004569 +1.954000,-0.923589,0.976824,1.823980,-0.443191,-0.004560 +1.950850,-0.921630,0.974775,1.820040,-0.442271,-0.004551 +1.947630,-0.919671,0.972716,1.816100,-0.441351,-0.004542 +1.944340,-0.917713,0.970650,1.812170,-0.440431,-0.004532 +1.940980,-0.915754,0.968577,1.808230,-0.439511,-0.004523 +1.937550,-0.913795,0.966503,1.804300,-0.438591,-0.004514 +1.934050,-0.911837,0.964427,1.800360,-0.437671,-0.004505 +1.930490,-0.909878,0.962352,1.796420,-0.436752,-0.004496 +1.926880,-0.907919,0.960277,1.792490,-0.435832,-0.004487 +1.923200,-0.905960,0.958202,1.788550,-0.434912,-0.004477 +1.919470,-0.904002,0.956126,1.784620,-0.433992,-0.004468 +1.915680,-0.902043,0.954051,1.780680,-0.433072,-0.004459 +1.911850,-0.900084,0.951976,1.776750,-0.432152,-0.004450 +1.907970,-0.898126,0.949901,1.772810,-0.431232,-0.004441 +1.904040,-0.896167,0.947825,1.768870,-0.430312,-0.004432 +1.900070,-0.894208,0.945750,1.764940,-0.429393,-0.004422 +1.896060,-0.892250,0.943675,1.761000,-0.428473,-0.004413 +1.892020,-0.890291,0.941600,1.757070,-0.427553,-0.004404 +1.887940,-0.888332,0.939524,1.753130,-0.426633,-0.004395 +1.883830,-0.886374,0.937449,1.749200,-0.425713,-0.004386 +1.879690,-0.884415,0.935374,1.745260,-0.424793,-0.004377 +1.875520,-0.882456,0.933299,1.741320,-0.423873,-0.004368 +1.871330,-0.880497,0.931223,1.737390,-0.422954,-0.004358 +1.867120,-0.878539,0.929148,1.733450,-0.422034,-0.004349 +1.862890,-0.876580,0.927073,1.729520,-0.421114,-0.004340 +1.858640,-0.874621,0.924998,1.725580,-0.420194,-0.004331 +1.854380,-0.872663,0.922922,1.721640,-0.419274,-0.004322 +1.850110,-0.870704,0.920847,1.717710,-0.418354,-0.004313 +1.845830,-0.868745,0.918772,1.713770,-0.417434,-0.004303 +1.841550,-0.866787,0.916697,1.709840,-0.416515,-0.004294 +1.837260,-0.864828,0.914622,1.705900,-0.415595,-0.004285 +1.832970,-0.862869,0.912546,1.701970,-0.414675,-0.004276 +1.828680,-0.860911,0.910471,1.698030,-0.413755,-0.004267 +1.824390,-0.858952,0.908396,1.694090,-0.412835,-0.004258 +1.820100,-0.856993,0.906321,1.690160,-0.411915,-0.004248 +1.815810,-0.855035,0.904245,1.686220,-0.410995,-0.004239 +1.811530,-0.853076,0.902170,1.682290,-0.410076,-0.004230 +1.807240,-0.851117,0.900095,1.678350,-0.409156,-0.004221 +1.802950,-0.849158,0.898020,1.674410,-0.408236,-0.004212 +1.798660,-0.847200,0.895944,1.670480,-0.407316,-0.004203 +1.794370,-0.845241,0.893869,1.666540,-0.406396,-0.004194 +1.790080,-0.843282,0.891794,1.662610,-0.405476,-0.004184 +1.785790,-0.841324,0.889719,1.658670,-0.404556,-0.004175 +1.781500,-0.839365,0.887643,1.654740,-0.403637,-0.004166 +1.777210,-0.837406,0.885568,1.650800,-0.402717,-0.004157 +1.772920,-0.835448,0.883493,1.646860,-0.401797,-0.004148 +1.768630,-0.833489,0.881418,1.642930,-0.400877,-0.004139 +1.764350,-0.831530,0.879342,1.638990,-0.399957,-0.004129 +1.760060,-0.829572,0.877267,1.635060,-0.399037,-0.004120 +1.755770,-0.827613,0.875192,1.631120,-0.398117,-0.004111 +1.751480,-0.825654,0.873117,1.627180,-0.397198,-0.004102 +1.747190,-0.823695,0.871041,1.623250,-0.396278,-0.004093 +1.742900,-0.821737,0.868966,1.619310,-0.395358,-0.004084 +1.738610,-0.819778,0.866891,1.615380,-0.394438,-0.004075 +1.734320,-0.817819,0.864816,1.611440,-0.393518,-0.004065 +1.730030,-0.815861,0.862740,1.607510,-0.392598,-0.004056 +1.725740,-0.813902,0.860665,1.603570,-0.391678,-0.004047 +1.721450,-0.811943,0.858590,1.599630,-0.390759,-0.004038 +1.717160,-0.809985,0.856515,1.595700,-0.389839,-0.004029 +1.712880,-0.808026,0.854439,1.591760,-0.388919,-0.004020 +1.708590,-0.806067,0.852364,1.587830,-0.387999,-0.004010 +1.704300,-0.804109,0.850289,1.583890,-0.387079,-0.004001 +1.700010,-0.802150,0.848214,1.579950,-0.386159,-0.003992 +1.695720,-0.800191,0.846138,1.576020,-0.385239,-0.003983 +1.691430,-0.798232,0.844063,1.572080,-0.384320,-0.003974 +1.687140,-0.796274,0.841988,1.568150,-0.383400,-0.003965 +1.682850,-0.794315,0.839913,1.564210,-0.382480,-0.003955 +1.678560,-0.792356,0.837837,1.560280,-0.381560,-0.003946 +1.674270,-0.790398,0.835762,1.556340,-0.380640,-0.003937 +1.669980,-0.788439,0.833687,1.552400,-0.379720,-0.003928 +1.665700,-0.786480,0.831612,1.548470,-0.378800,-0.003919 +1.661410,-0.784522,0.829536,1.544530,-0.377881,-0.003910 +1.657120,-0.782563,0.827461,1.540600,-0.376961,-0.003901 +1.652830,-0.780604,0.825386,1.536660,-0.376041,-0.003891 +1.648540,-0.778646,0.823311,1.532720,-0.375121,-0.003882 +1.644250,-0.776687,0.821235,1.528790,-0.374201,-0.003873 +1.639960,-0.774728,0.819160,1.524850,-0.373281,-0.003864 +1.635670,-0.772769,0.817085,1.520920,-0.372361,-0.003855 +1.631380,-0.770811,0.815010,1.516980,-0.371442,-0.003846 +1.627090,-0.768852,0.812934,1.513050,-0.370522,-0.003836 +1.622800,-0.766893,0.810859,1.509110,-0.369602,-0.003827 +1.618520,-0.764935,0.808784,1.505170,-0.368682,-0.003818 +1.614230,-0.762976,0.806709,1.501240,-0.367762,-0.003809 +1.609940,-0.761017,0.804633,1.497300,-0.366842,-0.003800 +1.605650,-0.759059,0.802558,1.493370,-0.365922,-0.003791 +1.601360,-0.757100,0.800483,1.489430,-0.365003,-0.003782 +1.597070,-0.755141,0.798408,1.485490,-0.364083,-0.003772 +1.592780,-0.753183,0.796332,1.481560,-0.363163,-0.003763 +1.588490,-0.751224,0.794257,1.477620,-0.362243,-0.003754 +1.584200,-0.749265,0.792182,1.473690,-0.361323,-0.003745 +1.579910,-0.747307,0.790107,1.469750,-0.360403,-0.003736 +1.575620,-0.745348,0.788031,1.465820,-0.359483,-0.003727 +1.571340,-0.743389,0.785956,1.461880,-0.358564,-0.003717 +1.567050,-0.741430,0.783881,1.457940,-0.357644,-0.003708 +1.562760,-0.739472,0.781806,1.454010,-0.356724,-0.003699 +1.558470,-0.737513,0.779730,1.450070,-0.355804,-0.003690 +1.554180,-0.735554,0.777655,1.446140,-0.354884,-0.003681 +1.549890,-0.733596,0.775580,1.442200,-0.353964,-0.003672 +1.545600,-0.731637,0.773505,1.438260,-0.353044,-0.003662 +1.541310,-0.729678,0.771429,1.434330,-0.352125,-0.003653 +1.537020,-0.727720,0.769354,1.430390,-0.351205,-0.003644 +1.532730,-0.725761,0.767279,1.426460,-0.350285,-0.003635 +1.528440,-0.723802,0.765204,1.422520,-0.349365,-0.003626 +1.524160,-0.721844,0.763128,1.418590,-0.348445,-0.003617 +1.519870,-0.719885,0.761053,1.414650,-0.347525,-0.003608 +1.515580,-0.717926,0.758978,1.410710,-0.346605,-0.003598 +1.511290,-0.715967,0.756903,1.406780,-0.345686,-0.003589 +1.507000,-0.714009,0.754827,1.402840,-0.344766,-0.003580 +1.502710,-0.712050,0.752752,1.398910,-0.343846,-0.003571 +1.498420,-0.710091,0.750677,1.394970,-0.342926,-0.003562 +1.494130,-0.708133,0.748602,1.391030,-0.342006,-0.003553 +1.489840,-0.706174,0.746526,1.387100,-0.341086,-0.003543 +1.485550,-0.704215,0.744451,1.383160,-0.340166,-0.003534 +1.481260,-0.702257,0.742376,1.379230,-0.339247,-0.003525 +1.476980,-0.700298,0.740301,1.375290,-0.338327,-0.003516 +1.472690,-0.698339,0.738225,1.371360,-0.337407,-0.003507 +1.468400,-0.696381,0.736150,1.367420,-0.336487,-0.003498 +1.464110,-0.694422,0.734075,1.363480,-0.335567,-0.003489 +1.459820,-0.692463,0.732000,1.359550,-0.334647,-0.003479 +1.455530,-0.690504,0.729924,1.355610,-0.333727,-0.003470 +1.451240,-0.688546,0.727849,1.351680,-0.332808,-0.003461 +1.446950,-0.686587,0.725774,1.347740,-0.331888,-0.003452 +1.442660,-0.684628,0.723699,1.343800,-0.330968,-0.003443 +1.438370,-0.682670,0.721623,1.339870,-0.330048,-0.003434 +1.434080,-0.680711,0.719548,1.335930,-0.329128,-0.003424 +1.429800,-0.678752,0.717473,1.332000,-0.328208,-0.003415 +1.425510,-0.676794,0.715398,1.328060,-0.327288,-0.003406 +1.421220,-0.674835,0.713322,1.324130,-0.326369,-0.003397 +1.416930,-0.672876,0.711247,1.320190,-0.325449,-0.003388 +1.412640,-0.670918,0.709172,1.316250,-0.324529,-0.003379 +1.408350,-0.668959,0.707097,1.312320,-0.323609,-0.003369 +1.404060,-0.667000,0.705021,1.308380,-0.322689,-0.003360 +1.399770,-0.665042,0.702946,1.304450,-0.321769,-0.003351 +1.395480,-0.663083,0.700871,1.300510,-0.320849,-0.003342 +1.391190,-0.661124,0.698796,1.296570,-0.319930,-0.003333 +1.386900,-0.659165,0.696720,1.292640,-0.319010,-0.003324 +1.382620,-0.657207,0.694645,1.288700,-0.318090,-0.003315 +1.378330,-0.655248,0.692570,1.284770,-0.317170,-0.003305 +1.374040,-0.653289,0.690495,1.280830,-0.316250,-0.003296 +1.369750,-0.651331,0.688419,1.276900,-0.315330,-0.003287 +1.365460,-0.649372,0.686344,1.272960,-0.314410,-0.003278 +1.361170,-0.647413,0.684269,1.269020,-0.313491,-0.003269 +1.356880,-0.645455,0.682194,1.265090,-0.312571,-0.003260 +1.352590,-0.643496,0.680118,1.261150,-0.311651,-0.003250 +1.348300,-0.641537,0.678043,1.257220,-0.310731,-0.003241 +1.344010,-0.639579,0.675968,1.253280,-0.309811,-0.003232 +1.339720,-0.637620,0.673893,1.249340,-0.308891,-0.003223 +1.335440,-0.635661,0.671817,1.245410,-0.307971,-0.003214 +1.331150,-0.633702,0.669742,1.241470,-0.307052,-0.003205 +1.326860,-0.631744,0.667667,1.237540,-0.306132,-0.003196 +1.322570,-0.629785,0.665592,1.233600,-0.305212,-0.003186 +1.318280,-0.627826,0.663516,1.229670,-0.304292,-0.003177 +1.313990,-0.625868,0.661441,1.225730,-0.303372,-0.003168 +1.309700,-0.623909,0.659366,1.221790,-0.302452,-0.003159 +1.305410,-0.621950,0.657291,1.217860,-0.301532,-0.003150 +1.301120,-0.619992,0.655215,1.213920,-0.300613,-0.003141 +1.296830,-0.618033,0.653140,1.209990,-0.299693,-0.003131 +1.292540,-0.616074,0.651065,1.206050,-0.298773,-0.003122 +1.288260,-0.614116,0.648990,1.202110,-0.297853,-0.003113 +1.283970,-0.612157,0.646914,1.198180,-0.296933,-0.003104 +1.279680,-0.610198,0.644839,1.194240,-0.296013,-0.003095 +1.275390,-0.608239,0.642764,1.190310,-0.295093,-0.003086 +1.271100,-0.606281,0.640689,1.186370,-0.294174,-0.003076 +1.266810,-0.604322,0.638613,1.182440,-0.293254,-0.003067 +1.262520,-0.602363,0.636538,1.178500,-0.292334,-0.003058 +1.258230,-0.600405,0.634463,1.174560,-0.291414,-0.003049 +1.253940,-0.598446,0.632388,1.170630,-0.290494,-0.003040 +1.249650,-0.596487,0.630313,1.166690,-0.289574,-0.003031 +1.245360,-0.594529,0.628237,1.162760,-0.288654,-0.003022 +1.241070,-0.592570,0.626162,1.158820,-0.287735,-0.003012 +1.236790,-0.590611,0.624087,1.154880,-0.286815,-0.003003 +1.232500,-0.588653,0.622012,1.150950,-0.285895,-0.002994 +1.228210,-0.586694,0.619936,1.147010,-0.284975,-0.002985 +1.223920,-0.584735,0.617861,1.143080,-0.284055,-0.002976 +1.219630,-0.582776,0.615786,1.139140,-0.283135,-0.002967 +1.215340,-0.580818,0.613711,1.135210,-0.282215,-0.002957 +1.211050,-0.578859,0.611635,1.131270,-0.281296,-0.002948 +1.206760,-0.576900,0.609560,1.127330,-0.280376,-0.002939 +1.202470,-0.574942,0.607485,1.123400,-0.279456,-0.002930 +1.198180,-0.572983,0.605410,1.119460,-0.278536,-0.002921 +1.193890,-0.571024,0.603334,1.115530,-0.277616,-0.002912 +1.189610,-0.569066,0.601259,1.111590,-0.276696,-0.002903 +1.185320,-0.567107,0.599184,1.107650,-0.275776,-0.002893 +1.181030,-0.565148,0.597109,1.103720,-0.274857,-0.002884 +1.176740,-0.563190,0.595033,1.099780,-0.273937,-0.002875 +1.172450,-0.561231,0.592958,1.095850,-0.273017,-0.002866 +1.168160,-0.559272,0.590883,1.091910,-0.272097,-0.002857 +1.163870,-0.557314,0.588808,1.087980,-0.271177,-0.002848 +1.159580,-0.555355,0.586732,1.084040,-0.270257,-0.002838 +1.155290,-0.553396,0.584657,1.080100,-0.269337,-0.002829 +1.151000,-0.551437,0.582582,1.076170,-0.268417,-0.002820 +1.146710,-0.549479,0.580507,1.072230,-0.267498,-0.002811 +1.142430,-0.547520,0.578431,1.068300,-0.266578,-0.002802 +1.138140,-0.545561,0.576356,1.064360,-0.265658,-0.002793 +1.133850,-0.543603,0.574281,1.060420,-0.264738,-0.002783 +1.129560,-0.541644,0.572206,1.056490,-0.263818,-0.002774 +1.125270,-0.539685,0.570130,1.052550,-0.262898,-0.002765 +1.120980,-0.537727,0.568055,1.048620,-0.261978,-0.002756 +1.116690,-0.535768,0.565980,1.044680,-0.261059,-0.002747 +1.112400,-0.533809,0.563905,1.040750,-0.260139,-0.002738 +1.108110,-0.531851,0.561829,1.036810,-0.259219,-0.002729 +1.103820,-0.529892,0.559754,1.032870,-0.258299,-0.002719 +1.099530,-0.527933,0.557679,1.028940,-0.257379,-0.002710 +1.095250,-0.525974,0.555604,1.025000,-0.256459,-0.002701 +1.090960,-0.524016,0.553528,1.021070,-0.255539,-0.002692 +1.086670,-0.522057,0.551453,1.017130,-0.254620,-0.002683 +1.082380,-0.520098,0.549378,1.013190,-0.253700,-0.002674 +1.078090,-0.518140,0.547303,1.009260,-0.252780,-0.002664 +1.073800,-0.516181,0.545227,1.005320,-0.251860,-0.002655 +1.069510,-0.514222,0.543152,1.001390,-0.250940,-0.002646 +1.065220,-0.512264,0.541077,0.997451,-0.250020,-0.002637 +1.060930,-0.510305,0.539002,0.993515,-0.249100,-0.002628 +1.056640,-0.508346,0.536926,0.989580,-0.248181,-0.002619 +1.052350,-0.506388,0.534851,0.985644,-0.247261,-0.002610 +1.048070,-0.504429,0.532776,0.981708,-0.246341,-0.002600 +1.043780,-0.502470,0.530701,0.977772,-0.245421,-0.002591 +1.039490,-0.500511,0.528625,0.973836,-0.244501,-0.002582 +1.035200,-0.498553,0.526550,0.969900,-0.243581,-0.002573 +1.030910,-0.496594,0.524475,0.965965,-0.242661,-0.002564 +1.026620,-0.494635,0.522400,0.962029,-0.241742,-0.002555 +1.022330,-0.492677,0.520324,0.958093,-0.240822,-0.002545 +1.018040,-0.490718,0.518249,0.954157,-0.239902,-0.002536 +1.013750,-0.488759,0.516174,0.950221,-0.238982,-0.002527 +1.009460,-0.486801,0.514099,0.946286,-0.238062,-0.002518 +1.005170,-0.484842,0.512023,0.942350,-0.237142,-0.002509 +1.000890,-0.482883,0.509948,0.938414,-0.236222,-0.002500 +0.996596,-0.480925,0.507873,0.934478,-0.235303,-0.002490 +0.992307,-0.478966,0.505798,0.930542,-0.234383,-0.002481 +0.988018,-0.477007,0.503722,0.926606,-0.233463,-0.002472 +0.983729,-0.475048,0.501647,0.922671,-0.232543,-0.002463 +0.979440,-0.473090,0.499572,0.918735,-0.231623,-0.002454 +0.975151,-0.471131,0.497497,0.914799,-0.230703,-0.002445 +0.970862,-0.469172,0.495421,0.910863,-0.229783,-0.002436 +0.966573,-0.467214,0.493346,0.906927,-0.228864,-0.002426 +0.962284,-0.465255,0.491271,0.902991,-0.227944,-0.002417 +0.957994,-0.463296,0.489196,0.899056,-0.227024,-0.002408 +0.953705,-0.461338,0.487120,0.895120,-0.226104,-0.002399 +0.949416,-0.459379,0.485045,0.891184,-0.225184,-0.002390 +0.945127,-0.457420,0.482970,0.887248,-0.224264,-0.002381 +0.940838,-0.455462,0.480895,0.883312,-0.223344,-0.002371 +0.936549,-0.453503,0.478819,0.879376,-0.222425,-0.002362 +0.932260,-0.451544,0.476744,0.875441,-0.221505,-0.002353 +0.927971,-0.449586,0.474669,0.871505,-0.220585,-0.002344 +0.923682,-0.447627,0.472594,0.867569,-0.219665,-0.002335 +0.919393,-0.445668,0.470518,0.863633,-0.218745,-0.002326 +0.915103,-0.443709,0.468443,0.859697,-0.217825,-0.002317 +0.910814,-0.441751,0.466368,0.855761,-0.216905,-0.002307 +0.906525,-0.439792,0.464293,0.851826,-0.215986,-0.002298 +0.902236,-0.437833,0.462217,0.847890,-0.215066,-0.002289 +0.897947,-0.435875,0.460142,0.843954,-0.214146,-0.002280 +0.893658,-0.433916,0.458067,0.840018,-0.213226,-0.002271 +0.889369,-0.431957,0.455992,0.836082,-0.212306,-0.002262 +0.885080,-0.429999,0.453916,0.832146,-0.211386,-0.002252 +0.880791,-0.428040,0.451841,0.828211,-0.210466,-0.002243 +0.876502,-0.426081,0.449766,0.824275,-0.209547,-0.002234 +0.872212,-0.424123,0.447691,0.820339,-0.208627,-0.002225 +0.867923,-0.422164,0.445615,0.816403,-0.207707,-0.002216 +0.863634,-0.420205,0.443540,0.812467,-0.206787,-0.002207 +0.859345,-0.418246,0.441465,0.808531,-0.205867,-0.002197 +0.855056,-0.416288,0.439390,0.804596,-0.204947,-0.002188 +0.850767,-0.414329,0.437314,0.800660,-0.204027,-0.002179 +0.846478,-0.412370,0.435239,0.796724,-0.203108,-0.002170 +0.842189,-0.410412,0.433164,0.792788,-0.202188,-0.002161 +0.837900,-0.408453,0.431089,0.788852,-0.201268,-0.002152 +0.833611,-0.406494,0.429013,0.784916,-0.200348,-0.002143 +0.829321,-0.404536,0.426938,0.780981,-0.199428,-0.002133 +0.825032,-0.402577,0.424863,0.777045,-0.198508,-0.002124 +0.820743,-0.400618,0.422788,0.773109,-0.197588,-0.002115 +0.816454,-0.398660,0.420712,0.769173,-0.196669,-0.002106 +0.812165,-0.396701,0.418637,0.765237,-0.195749,-0.002097 +0.807876,-0.394742,0.416562,0.761301,-0.194829,-0.002088 +0.803587,-0.392783,0.414487,0.757366,-0.193909,-0.002078 +0.799298,-0.390825,0.412411,0.753430,-0.192989,-0.002069 +0.795009,-0.388866,0.410336,0.749494,-0.192069,-0.002060 +0.790720,-0.386907,0.408261,0.745558,-0.191149,-0.002051 +0.786430,-0.384949,0.406186,0.741622,-0.190230,-0.002042 +0.782141,-0.382990,0.404110,0.737686,-0.189310,-0.002033 +0.777852,-0.381031,0.402035,0.733751,-0.188390,-0.002024 +0.773563,-0.379073,0.399960,0.729815,-0.187470,-0.002014 +0.769274,-0.377114,0.397885,0.725879,-0.186550,-0.002005 +0.764985,-0.375155,0.395809,0.721943,-0.185630,-0.001996 +0.760696,-0.373197,0.393734,0.718007,-0.184710,-0.001987 +0.756407,-0.371238,0.391659,0.714071,-0.183791,-0.001978 +0.752118,-0.369279,0.389584,0.710136,-0.182871,-0.001969 +0.747829,-0.367321,0.387508,0.706200,-0.181951,-0.001959 +0.743539,-0.365362,0.385433,0.702264,-0.181031,-0.001950 +0.739250,-0.363403,0.383358,0.698328,-0.180111,-0.001941 +0.734961,-0.361444,0.381283,0.694392,-0.179191,-0.001932 +0.730672,-0.359486,0.379207,0.690456,-0.178271,-0.001923 +0.726383,-0.357527,0.377132,0.686521,-0.177352,-0.001914 +0.722094,-0.355568,0.375057,0.682585,-0.176432,-0.001904 +0.717805,-0.353610,0.372982,0.678649,-0.175512,-0.001895 +0.713516,-0.351651,0.370906,0.674713,-0.174592,-0.001886 +0.709227,-0.349692,0.368831,0.670777,-0.173672,-0.001877 +0.704938,-0.347734,0.366756,0.666842,-0.172752,-0.001868 +0.700648,-0.345775,0.364681,0.662906,-0.171832,-0.001859 +0.696359,-0.343816,0.362605,0.658970,-0.170913,-0.001850 +0.692070,-0.341858,0.360530,0.655034,-0.169993,-0.001840 +0.687781,-0.339899,0.358455,0.651098,-0.169073,-0.001831 +0.683492,-0.337940,0.356380,0.647162,-0.168153,-0.001822 +0.679203,-0.335981,0.354304,0.643227,-0.167233,-0.001813 +0.674914,-0.334023,0.352229,0.639291,-0.166313,-0.001804 +0.670625,-0.332064,0.350154,0.635355,-0.165393,-0.001795 +0.666336,-0.330105,0.348079,0.631419,-0.164474,-0.001785 +0.662047,-0.328147,0.346004,0.627483,-0.163554,-0.001776 +0.657757,-0.326188,0.343928,0.623547,-0.162634,-0.001767 +0.653468,-0.324229,0.341853,0.619612,-0.161714,-0.001758 +0.649179,-0.322271,0.339778,0.615676,-0.160794,-0.001749 +0.644890,-0.320312,0.337703,0.611740,-0.159874,-0.001740 +0.640601,-0.318353,0.335627,0.607804,-0.158954,-0.001731 +0.636312,-0.316395,0.333552,0.603868,-0.158035,-0.001721 +0.632023,-0.314436,0.331477,0.599932,-0.157115,-0.001712 +0.627734,-0.312477,0.329402,0.595997,-0.156195,-0.001703 +0.623445,-0.310518,0.327326,0.592061,-0.155275,-0.001694 +0.619156,-0.308560,0.325251,0.588125,-0.154355,-0.001685 +0.614867,-0.306601,0.323176,0.584189,-0.153435,-0.001676 +0.610577,-0.304642,0.321101,0.580253,-0.152515,-0.001666 +0.606288,-0.302684,0.319025,0.576317,-0.151596,-0.001657 +0.601999,-0.300725,0.316950,0.572382,-0.150676,-0.001648 +0.597710,-0.298766,0.314875,0.568446,-0.149756,-0.001639 +0.593421,-0.296808,0.312800,0.564510,-0.148836,-0.001630 +0.589132,-0.294849,0.310724,0.560574,-0.147916,-0.001621 +0.584843,-0.292890,0.308649,0.556638,-0.146996,-0.001611 +0.580554,-0.290932,0.306574,0.552702,-0.146076,-0.001602 +0.576265,-0.288973,0.304499,0.548767,-0.145157,-0.001593 +0.571976,-0.287014,0.302423,0.544831,-0.144237,-0.001584 +0.567686,-0.285055,0.300348,0.540895,-0.143317,-0.001575 +0.563397,-0.283097,0.298273,0.536959,-0.142397,-0.001566 +0.559108,-0.281138,0.296198,0.533023,-0.141477,-0.001557 +0.554819,-0.279179,0.294122,0.529087,-0.140557,-0.001547 +0.550530,-0.277221,0.292047,0.525152,-0.139637,-0.001538 +0.546241,-0.275262,0.289972,0.521216,-0.138718,-0.001529 +0.541952,-0.273303,0.287897,0.517280,-0.137798,-0.001520 +0.537663,-0.271345,0.285821,0.513344,-0.136878,-0.001511 +0.533374,-0.269386,0.283746,0.509408,-0.135958,-0.001502 +0.529085,-0.267427,0.281671,0.505472,-0.135038,-0.001492 +0.524795,-0.265469,0.279596,0.501537,-0.134118,-0.001483 +0.520506,-0.263510,0.277520,0.497601,-0.133198,-0.001474 +0.516217,-0.261551,0.275445,0.493665,-0.132279,-0.001465 +0.511928,-0.259593,0.273370,0.489729,-0.131359,-0.001456 +0.507639,-0.257634,0.271295,0.485793,-0.130439,-0.001447 +0.503350,-0.255675,0.269219,0.481857,-0.129519,-0.001438 +0.499061,-0.253716,0.267144,0.477922,-0.128599,-0.001428 +0.494772,-0.251758,0.265069,0.473986,-0.127679,-0.001419 +0.490483,-0.249799,0.262994,0.470050,-0.126759,-0.001410 +0.486194,-0.247840,0.260918,0.466114,-0.125840,-0.001401 +0.481904,-0.245882,0.258843,0.462178,-0.124920,-0.001392 +0.477615,-0.243923,0.256768,0.458242,-0.124000,-0.001383 +0.473326,-0.241964,0.254693,0.454307,-0.123080,-0.001373 +0.469037,-0.240006,0.252617,0.450371,-0.122160,-0.001364 +0.464748,-0.238047,0.250542,0.446435,-0.121240,-0.001355 +0.460459,-0.236088,0.248467,0.442499,-0.120320,-0.001346 +0.456170,-0.234130,0.246392,0.438563,-0.119401,-0.001337 +0.451881,-0.232171,0.244316,0.434627,-0.118481,-0.001328 +0.447592,-0.230212,0.242241,0.430692,-0.117561,-0.001318 +0.443303,-0.228253,0.240166,0.426756,-0.116641,-0.001309 +0.439013,-0.226295,0.238091,0.422820,-0.115721,-0.001300 +0.434724,-0.224336,0.236015,0.418884,-0.114801,-0.001291 +0.430435,-0.222377,0.233940,0.414948,-0.113881,-0.001282 +0.426146,-0.220419,0.231865,0.411013,-0.112961,-0.001273 +0.421857,-0.218460,0.229790,0.407077,-0.112042,-0.001264 +0.417568,-0.216501,0.227714,0.403141,-0.111122,-0.001254 +0.413279,-0.214543,0.225639,0.399205,-0.110202,-0.001245 +0.408990,-0.212584,0.223564,0.395269,-0.109282,-0.001236 +0.404701,-0.210625,0.221489,0.391333,-0.108362,-0.001227 +0.400412,-0.208667,0.219413,0.387398,-0.107442,-0.001218 +0.396122,-0.206708,0.217338,0.383462,-0.106522,-0.001209 +0.391833,-0.204749,0.215263,0.379526,-0.105603,-0.001199 +0.387544,-0.202790,0.213188,0.375590,-0.104683,-0.001190 +0.383255,-0.200832,0.211112,0.371654,-0.103763,-0.001181 +0.378966,-0.198873,0.209037,0.367718,-0.102843,-0.001172 +0.374677,-0.196914,0.206962,0.363783,-0.101923,-0.001163 +0.370388,-0.194956,0.204887,0.359847,-0.101003,-0.001154 +0.366099,-0.192997,0.202811,0.355911,-0.100083,-0.001144 +0.361810,-0.191038,0.200736,0.351975,-0.099164,-0.001135 +0.357521,-0.189080,0.198661,0.348039,-0.098244,-0.001126 +0.353231,-0.187121,0.196586,0.344103,-0.097324,-0.001117 +0.348942,-0.185162,0.194510,0.340168,-0.096404,-0.001108 +0.344653,-0.183204,0.192435,0.336232,-0.095484,-0.001099 +0.340364,-0.181245,0.190360,0.332296,-0.094564,-0.001090 +0.336075,-0.179286,0.188285,0.328360,-0.093645,-0.001080 +0.331786,-0.177328,0.186209,0.324424,-0.092725,-0.001071 +0.327497,-0.175369,0.184134,0.320488,-0.091805,-0.001062 +0.323208,-0.173410,0.182059,0.316553,-0.090885,-0.001053 +0.318919,-0.171451,0.179984,0.312617,-0.089965,-0.001044 +0.314630,-0.169493,0.177908,0.308681,-0.089045,-0.001035 +0.310340,-0.167534,0.175833,0.304745,-0.088125,-0.001025 +0.306051,-0.165575,0.173758,0.300809,-0.087206,-0.001016 +0.301762,-0.163617,0.171683,0.296873,-0.086286,-0.001007 +0.297473,-0.161658,0.169607,0.292938,-0.085366,-0.000998 +0.293184,-0.159699,0.167532,0.289002,-0.084446,-0.000989 +0.288895,-0.157741,0.165457,0.285066,-0.083526,-0.000980 +0.284606,-0.155782,0.163382,0.281130,-0.082606,-0.000971 +0.280317,-0.153823,0.161306,0.277194,-0.081686,-0.000961 +0.276028,-0.151865,0.159231,0.273258,-0.080767,-0.000952 +0.271739,-0.149906,0.157156,0.269323,-0.079847,-0.000943 +0.267449,-0.147947,0.155081,0.265387,-0.078927,-0.000934 +0.263160,-0.145988,0.153005,0.261451,-0.078007,-0.000925 +0.258871,-0.144030,0.150930,0.257515,-0.077087,-0.000916 +0.254582,-0.142071,0.148855,0.253579,-0.076167,-0.000906 +0.250293,-0.140112,0.146780,0.249643,-0.075247,-0.000897 +0.246004,-0.138154,0.144704,0.245708,-0.074328,-0.000888 +0.241715,-0.136195,0.142629,0.241772,-0.073408,-0.000879 +0.237426,-0.134236,0.140554,0.237836,-0.072488,-0.000870 +0.233137,-0.132278,0.138479,0.233900,-0.071568,-0.000861 +0.228848,-0.130319,0.136403,0.229964,-0.070648,-0.000851 +0.224558,-0.128360,0.134328,0.226028,-0.069728,-0.000842 +0.220269,-0.126402,0.132253,0.222093,-0.068808,-0.000833 +0.215980,-0.124443,0.130178,0.218157,-0.067889,-0.000824 +0.211691,-0.122484,0.128102,0.214221,-0.066969,-0.000815 +0.207402,-0.120525,0.126027,0.210285,-0.066049,-0.000806 +0.203113,-0.118567,0.123952,0.206349,-0.065129,-0.000797 +0.198824,-0.116608,0.121877,0.202413,-0.064209,-0.000787 +0.194535,-0.114649,0.119801,0.198478,-0.063289,-0.000778 +0.190246,-0.112691,0.117726,0.194542,-0.062369,-0.000769 +0.185957,-0.110732,0.115651,0.190606,-0.061449,-0.000760 +0.181668,-0.108773,0.113576,0.186670,-0.060530,-0.000751 +0.177378,-0.106815,0.111500,0.182734,-0.059610,-0.000742 +0.173089,-0.104856,0.109425,0.178798,-0.058690,-0.000732 +0.168801,-0.102897,0.107350,0.174863,-0.057770,-0.000723 +0.164516,-0.100939,0.105275,0.170927,-0.056850,-0.000714 +0.160237,-0.098980,0.103199,0.166991,-0.055930,-0.000705 +0.155967,-0.097021,0.101124,0.163055,-0.055010,-0.000696 +0.151708,-0.095062,0.099049,0.159119,-0.054091,-0.000687 +0.147462,-0.093104,0.096974,0.155183,-0.053171,-0.000678 +0.143233,-0.091145,0.094898,0.151248,-0.052251,-0.000668 +0.139023,-0.089186,0.092823,0.147312,-0.051331,-0.000659 +0.134834,-0.087228,0.090748,0.143376,-0.050411,-0.000650 +0.130670,-0.085269,0.088673,0.139440,-0.049491,-0.000641 +0.126532,-0.083310,0.086597,0.135505,-0.048571,-0.000632 +0.122423,-0.081352,0.084522,0.131574,-0.047652,-0.000623 +0.118347,-0.079393,0.082447,0.127649,-0.046732,-0.000613 +0.114304,-0.077434,0.080372,0.123734,-0.045812,-0.000604 +0.110299,-0.075476,0.078297,0.119832,-0.044892,-0.000595 +0.106334,-0.073517,0.076221,0.115945,-0.043972,-0.000586 +0.102411,-0.071558,0.074146,0.112078,-0.043052,-0.000577 +0.098533,-0.069599,0.072071,0.108233,-0.042132,-0.000568 +0.094702,-0.067641,0.069996,0.104414,-0.041213,-0.000558 +0.090921,-0.065682,0.067920,0.100623,-0.040293,-0.000549 +0.087193,-0.063723,0.065845,0.096863,-0.039373,-0.000540 +0.083521,-0.061765,0.063770,0.093138,-0.038453,-0.000531 +0.079906,-0.059806,0.061694,0.089451,-0.037533,-0.000522 +0.076352,-0.057847,0.059619,0.085805,-0.036613,-0.000513 +0.072860,-0.055889,0.057544,0.082203,-0.035693,-0.000504 +0.069435,-0.053930,0.055470,0.078648,-0.034774,-0.000494 +0.066077,-0.051972,0.053401,0.075143,-0.033854,-0.000485 +0.062791,-0.050016,0.051338,0.071691,-0.032934,-0.000476 +0.059578,-0.048065,0.049284,0.068296,-0.032014,-0.000467 +0.056441,-0.046122,0.047241,0.064961,-0.031094,-0.000458 +0.053382,-0.044188,0.045214,0.061688,-0.030174,-0.000449 +0.050405,-0.042268,0.043203,0.058480,-0.029254,-0.000439 +0.047512,-0.040363,0.041212,0.055342,-0.028335,-0.000430 +0.044705,-0.038476,0.039243,0.052276,-0.027415,-0.000421 +0.041987,-0.036610,0.037299,0.049285,-0.026495,-0.000412 +0.039361,-0.034767,0.035382,0.046372,-0.025575,-0.000403 +0.036829,-0.032950,0.033495,0.043540,-0.024655,-0.000394 +0.034394,-0.031161,0.031641,0.040793,-0.023735,-0.000385 +0.032058,-0.029403,0.029822,0.038133,-0.022815,-0.000375 +0.029824,-0.027679,0.028040,0.035564,-0.021896,-0.000366 +0.027695,-0.025991,0.026299,0.033089,-0.020976,-0.000357 +0.025669,-0.024341,0.024601,0.030710,-0.020056,-0.000348 +0.023745,-0.022733,0.022949,0.028432,-0.019136,-0.000339 +0.021919,-0.021169,0.021344,0.026256,-0.018216,-0.000330 +0.020189,-0.019651,0.019791,0.024187,-0.017296,-0.000320 +0.018553,-0.018183,0.018291,0.022227,-0.016376,-0.000311 +0.017008,-0.016767,0.016846,0.020376,-0.015457,-0.000302 +0.015551,-0.015404,0.015460,0.018630,-0.014538,-0.000293 +0.014180,-0.014099,0.014136,0.016988,-0.013624,-0.000284 +0.012892,-0.012853,0.012875,0.015444,-0.012717,-0.000275 +0.011684,-0.011670,0.011680,0.013997,-0.011821,-0.000265 +0.010554,-0.010551,0.010554,0.012644,-0.010939,-0.000256 +0.009499,-0.009499,0.009500,0.011380,-0.010073,-0.000247 +0.008518,-0.008517,0.008518,0.010204,-0.009227,-0.000238 +0.007606,-0.007606,0.007607,0.009112,-0.008404,-0.000229 +0.006762,-0.006761,0.006762,0.008100,-0.007608,-0.000220 +0.005982,-0.005982,0.005983,0.007167,-0.006840,-0.000211 +0.005265,-0.005265,0.005266,0.006308,-0.006105,-0.000201 +0.004608,-0.004608,0.004609,0.005520,-0.005405,-0.000192 +0.004008,-0.004008,0.004008,0.004801,-0.004744,-0.000183 +0.003462,-0.003462,0.003463,0.004147,-0.004124,-0.000174 +0.002968,-0.002968,0.002969,0.003556,-0.003550,-0.000165 +0.002524,-0.002524,0.002525,0.003024,-0.003023,-0.000156 +0.002126,-0.002126,0.002127,0.002547,-0.002547,-0.000146 +0.001773,-0.001772,0.001773,0.002124,-0.002123,-0.000137 +0.001461,-0.001461,0.001461,0.001750,-0.001750,-0.000128 +0.001188,-0.001187,0.001188,0.001423,-0.001422,-0.000119 +0.000951,-0.000951,0.000952,0.001139,-0.001139,-0.000110 +0.000748,-0.000748,0.000749,0.000896,-0.000896,-0.000101 +0.000576,-0.000576,0.000577,0.000690,-0.000690,-0.000092 +0.000433,-0.000433,0.000434,0.000519,-0.000518,-0.000082 +0.000316,-0.000316,0.000316,0.000378,-0.000378,-0.000073 +0.000222,-0.000222,0.000223,0.000266,-0.000265,-0.000064 +0.000149,-0.000148,0.000149,0.000178,-0.000178,-0.000055 +0.000094,-0.000094,0.000094,0.000112,-0.000112,-0.000046 +0.000054,-0.000054,0.000055,0.000065,-0.000065,-0.000037 +0.000028,-0.000028,0.000029,0.000033,-0.000033,-0.000027 +0.000012,-0.000012,0.000013,0.000014,-0.000014,-0.000018 +0.000004,-0.000004,0.000004,0.000004,-0.000004,-0.000011 +0.000001,-0.000000,0.000001,0.000001,-0.000000,-0.000007 +0.000000,-0.000000,0.000001,0.000000,0.000000,-0.000006 +0.000000,-0.000000,0.000001,0.000000,0.000000,-0.000006 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90-1.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90-1.offt new file mode 100644 index 00000000..51343fae --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90-1.offt @@ -0,0 +1,19702 @@ +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.00181,0.001745,0.001745 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.00181,0.001745,0.001745 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 +0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181,0.00181 +0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005,0.002005 +0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233,0.00233 +0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784,0.002784 +0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368,0.003368 +0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082,0.004082 +0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926,0.004926 +0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059,0.0059 +0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003,0.007003 +0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236,0.008236 +0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599,0.009599 +0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092,0.011092 +0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715,0.012715 +0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467,0.014467 +0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635,0.01635 +0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297,0.018297 +0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244,0.020244 +0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192,0.022192 +0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139,0.024139 +0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086,0.026086 +0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033,0.028033 +0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981,0.029981 +0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928,0.031928 +0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875,0.033875 +0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822,0.035822 +0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777,0.03777 +0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717,0.039717 +0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664,0.041664 +0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612,0.043612 +0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559,0.045559 +0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506,0.047506 +0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453,0.049453 +0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401,0.051401 +0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348,0.053348 +0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295,0.055295 +0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242,0.057242 +0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919,0.05919 +0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137,0.061137 +0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084,0.063084 +0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031,0.065031 +0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979,0.066979 +0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926,0.068926 +0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873,0.070873 +0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821,0.072821 +0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768,0.074768 +0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715,0.076715 +0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662,0.078662 +0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061,0.08061 +0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557,0.082557 +0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504,0.084504 +0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451,0.086451 +0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399,0.088399 +0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346,0.090346 +0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293,0.092293 +0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424,0.09424 +0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188,0.096188 +0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135,0.098135 +0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082,0.100082 +0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029,0.102029 +0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977,0.103977 +0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924,0.105924 +0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871,0.107871 +0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819,0.109819 +0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766,0.111766 +0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713,0.113713 +0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566,0.11566 +0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608,0.117608 +0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555,0.119555 +0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502 +0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449,0.123449 +0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397,0.125397 +0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344,0.127344 +0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291,0.129291 +0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238,0.131238 +0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186,0.133186 +0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133,0.135133 +0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708,0.13708 +0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027,0.139027 +0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975,0.140975 +0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922,0.142922 +0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869,0.144869 +0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817,0.146817 +0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764,0.148764 +0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711,0.150711 +0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658,0.152658 +0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606,0.154606 +0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553,0.156553 +0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585,0.1585 +0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447,0.160447 +0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395,0.162395 +0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342,0.164342 +0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289,0.166289 +0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236,0.168236 +0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184,0.170184 +0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131,0.172131 +0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078,0.174078 +0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025,0.176025 +0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973,0.177973 +0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992,0.17992 +0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867,0.181867 +0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815,0.183815 +0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762,0.185762 +0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709,0.187709 +0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656,0.189656 +0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604,0.191604 +0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551,0.193551 +0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498,0.195498 +0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445,0.197445 +0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393,0.199393 +0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134,0.20134 +0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287,0.203287 +0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234,0.205234 +0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182,0.207182 +0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129,0.209129 +0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076,0.211076 +0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024,0.213024 +0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971,0.214971 +0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918,0.216918 +0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865,0.218865 +0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813,0.220813 +0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276,0.22276 +0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707,0.224707 +0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654,0.226654 +0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602,0.228602 +0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549,0.230549 +0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496,0.232496 +0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443,0.234443 +0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391,0.236391 +0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338,0.238338 +0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285,0.240285 +0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232,0.242232 +0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418,0.24418 +0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127,0.246127 +0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074,0.248074 +0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022,0.250022 +0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969,0.251969 +0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916,0.253916 +0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863,0.255863 +0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811,0.257811 +0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758,0.259758 +0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705,0.261705 +0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652,0.263652 +0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656,0.2656 +0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547,0.267547 +0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494,0.269494 +0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441,0.271441 +0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389,0.273389 +0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336,0.275336 +0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283,0.277283 +0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923,0.27923 +0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178,0.281178 +0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125,0.283125 +0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072,0.285072 +0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702,0.28702 +0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967,0.288967 +0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914,0.290914 +0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861,0.292861 +0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809,0.294809 +0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756,0.296756 +0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703,0.298703 +0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065,0.30065 +0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598,0.302598 +0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545,0.304545 +0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492,0.306492 +0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439,0.308439 +0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387,0.310387 +0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334,0.312334 +0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281,0.314281 +0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228,0.316228 +0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176,0.318176 +0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123,0.320123 +0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207,0.32207 +0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018,0.324018 +0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965,0.325965 +0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912,0.327912 +0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859,0.329859 +0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807,0.331807 +0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754,0.333754 +0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701,0.335701 +0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648 +0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596,0.339596 +0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543,0.341543 +0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349,0.34349 +0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437,0.345437 +0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385,0.347385 +0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332,0.349332 +0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279,0.351279 +0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227,0.353227 +0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174,0.355174 +0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121,0.357121 +0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068,0.359068 +0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016,0.361016 +0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963,0.362963 +0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491,0.36491 +0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857,0.366857 +0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805,0.368805 +0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752,0.370752 +0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699,0.372699 +0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646,0.374646 +0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594,0.376594 +0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541,0.378541 +0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488,0.380488 +0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435,0.382435 +0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383,0.384383 +0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633,0.38633 +0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277,0.388277 +0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225,0.390225 +0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172,0.392172 +0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119,0.394119 +0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066,0.396066 +0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014,0.398014 +0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961,0.399961 +0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908,0.401908 +0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855,0.403855 +0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803,0.405803 +0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775,0.40775 +0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697,0.409697 +0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644,0.411644 +0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592,0.413592 +0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539,0.415539 +0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486,0.417486 +0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433,0.419433 +0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381,0.421381 +0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328,0.423328 +0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275,0.425275 +0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223,0.427223 +0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917,0.42917 +0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117,0.431117 +0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064,0.433064 +0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012,0.435012 +0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959,0.436959 +0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906,0.438906 +0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853,0.440853 +0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801,0.442801 +0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748,0.444748 +0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695,0.446695 +0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642,0.448642 +0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059,0.45059 +0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537,0.452537 +0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484,0.454484 +0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431,0.456431 +0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379,0.458379 +0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326,0.460326 +0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273,0.462273 +0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221,0.464221 +0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168,0.466168 +0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115,0.468115 +0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062,0.470062 +0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201,0.47201 +0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957,0.473957 +0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904,0.475904 +0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851,0.477851 +0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799,0.479799 +0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746,0.481746 +0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693,0.483693 +0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564,0.48564 +0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588,0.487588 +0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535,0.489535 +0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482,0.491482 +0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429,0.493429 +0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377,0.495377 +0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324,0.497324 +0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271,0.499271 +0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219,0.501219 +0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166,0.503166 +0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113,0.505113 +0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706,0.50706 +0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008,0.509008 +0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955,0.510955 +0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902,0.512902 +0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849,0.514849 +0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797,0.516797 +0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744,0.518744 +0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691,0.520691 +0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638,0.522638 +0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586,0.524586 +0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533,0.526533 +0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848,0.52848 +0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428,0.530428 +0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375,0.532375 +0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322,0.534322 +0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269,0.536269 +0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217,0.538217 +0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164,0.540164 +0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111,0.542111 +0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058,0.544058 +0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006,0.546006 +0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953,0.547953 +0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499,0.5499 +0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847,0.551847 +0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795,0.553795 +0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742,0.555742 +0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689,0.557689 +0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636,0.559636 +0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584,0.561584 +0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531,0.563531 +0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478,0.565478 +0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426,0.567426 +0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373,0.569373 +0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132,0.57132 +0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267,0.573267 +0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215,0.575215 +0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162,0.577162 +0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109,0.579109 +0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056,0.581056 +0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004,0.583004 +0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951,0.584951 +0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898,0.586898 +0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845,0.588845 +0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793,0.590793 +0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274,0.59274 +0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687,0.594687 +0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634,0.596634 +0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582,0.598582 +0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529,0.600529 +0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476,0.602476 +0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424,0.604424 +0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371,0.606371 +0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318,0.608318 +0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265,0.610265 +0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213,0.612213 +0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416,0.61416 +0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107,0.616107 +0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054,0.618054 +0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002,0.620002 +0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949,0.621949 +0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896,0.623896 +0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843,0.625843 +0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791,0.627791 +0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738,0.629738 +0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685,0.631685 +0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632,0.633632 +0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558,0.63558 +0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527,0.637527 +0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474,0.639474 +0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422,0.641422 +0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369,0.643369 +0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316,0.645316 +0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263,0.647263 +0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211,0.649211 +0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158,0.651158 +0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105,0.653105 +0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052 +0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657,0.657 +0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947,0.658947 +0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894,0.660894 +0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841,0.662841 +0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789,0.664789 +0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736,0.666736 +0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683,0.668683 +0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631,0.670631 +0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578,0.672578 +0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525,0.674525 +0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472,0.676472 +0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842,0.67842 +0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367,0.680367 +0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314,0.682314 +0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261,0.684261 +0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209,0.686209 +0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156,0.688156 +0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103,0.690103 +0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205,0.69205 +0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998,0.693998 +0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945,0.695945 +0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892,0.697892 +0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839,0.699839 +0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787,0.701787 +0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734,0.703734 +0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681,0.705681 +0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629,0.707629 +0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576,0.709576 +0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523,0.711523 +0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347,0.71347 +0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418,0.715418 +0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365,0.717365 +0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312,0.719312 +0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259,0.721259 +0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207,0.723207 +0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154,0.725154 +0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101,0.727101 +0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048,0.729048 +0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996,0.730996 +0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943,0.732943 +0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489,0.73489 +0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837,0.736837 +0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785,0.738785 +0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732,0.740732 +0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679,0.742679 +0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627,0.744627 +0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574,0.746574 +0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521,0.748521 +0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468,0.750468 +0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416,0.752416 +0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363,0.754363 +0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631,0.75631 +0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257,0.758257 +0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205,0.760205 +0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152,0.762152 +0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099,0.764099 +0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046,0.766046 +0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994,0.767994 +0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941,0.769941 +0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888,0.771888 +0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835,0.773835 +0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783,0.775783 +0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773,0.77773 +0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677,0.779677 +0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625,0.781625 +0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572,0.783572 +0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519,0.785519 +0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466,0.787466 +0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414,0.789414 +0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361,0.791361 +0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308,0.793308 +0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255,0.795255 +0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203,0.797203 +0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915,0.79915 +0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097,0.801097 +0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044,0.803044 +0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992,0.804992 +0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939,0.806939 +0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886,0.808886 +0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834,0.810834 +0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781,0.812781 +0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728,0.814728 +0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675,0.816675 +0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623,0.818623 +0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057,0.82057 +0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517,0.822517 +0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464,0.824464 +0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412,0.826412 +0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359,0.828359 +0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306,0.830306 +0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253,0.832253 +0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201,0.834201 +0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148,0.836148 +0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095,0.838095 +0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042,0.840042 +0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199,0.84199 +0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937,0.843937 +0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884,0.845884 +0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832,0.847832 +0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779,0.849779 +0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726,0.851726 +0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673,0.853673 +0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621,0.855621 +0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568,0.857568 +0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515,0.859515 +0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462,0.861462 +0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341,0.86341 +0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357,0.865357 +0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304,0.867304 +0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251,0.869251 +0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199,0.871199 +0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146,0.873146 +0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093,0.875093 +0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704,0.87704 +0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988,0.878988 +0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935,0.880935 +0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882,0.882882 +0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483,0.88483 +0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777,0.886777 +0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724,0.888724 +0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671,0.890671 +0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619,0.892619 +0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566,0.894566 +0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513,0.896513 +0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846,0.89846 +0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408,0.900408 +0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355,0.902355 +0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302,0.904302 +0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249,0.906249 +0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197,0.908197 +0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144,0.910144 +0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091,0.912091 +0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038,0.914038 +0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986,0.915986 +0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933,0.917933 +0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988,0.91988 +0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828,0.921828 +0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775,0.923775 +0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722,0.925722 +0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669,0.927669 +0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617,0.929617 +0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564,0.931564 +0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511,0.933511 +0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458,0.935458 +0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406,0.937406 +0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353,0.939353 +0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413,0.9413 +0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247,0.943247 +0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195,0.945195 +0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142,0.947142 +0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089,0.949089 +0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037,0.951037 +0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984,0.952984 +0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931,0.954931 +0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878,0.956878 +0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826,0.958826 +0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773,0.960773 +0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272,0.96272 +0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667,0.964667 +0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615,0.966615 +0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562,0.968562 +0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509,0.970509 +0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456,0.972456 +0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404,0.974404 +0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351,0.976351 +0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298,0.978298 +0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245,0.980245 +0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193,0.982193 +0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414,0.98414 +0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087,0.986087 +0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035,0.988035 +0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982,0.989982 +0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929,0.991929 +0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876,0.993876 +0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824,0.995824 +0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771,0.997771 +0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718,0.999718 +1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665,1.001665 +1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613,1.003613 +1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556,1.00556 +1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507,1.007507 +1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454,1.009454 +1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402,1.011402 +1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349,1.013349 +1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296,1.015296 +1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243,1.017243 +1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191,1.019191 +1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138,1.021138 +1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085,1.023085 +1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033,1.025033 +1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698,1.02698 +1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927,1.028927 +1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874,1.030874 +1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822,1.032822 +1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769,1.034769 +1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716,1.036716 +1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663,1.038663 +1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611,1.040611 +1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558,1.042558 +1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505,1.044505 +1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452,1.046452 +1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484,1.0484 +1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347,1.050347 +1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294,1.052294 +1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241,1.054241 +1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189,1.056189 +1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136,1.058136 +1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083,1.060083 +1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031,1.062031 +1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978,1.063978 +1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925,1.065925 +1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872,1.067872 +1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982,1.06982 +1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767,1.071767 +1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714,1.073714 +1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661,1.075661 +1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609,1.077609 +1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556,1.079556 +1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503,1.081503 +1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345,1.08345 +1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398,1.085398 +1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345,1.087345 +1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292,1.089292 +1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124,1.09124 +1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187,1.093187 +1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134,1.095134 +1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081,1.097081 +1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029,1.099029 +1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976,1.100976 +1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923,1.102923 +1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487,1.10487 +1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818,1.106818 +1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765,1.108765 +1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712,1.110712 +1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659,1.112659 +1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607,1.114607 +1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554,1.116554 +1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501,1.118501 +1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448,1.120448 +1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396,1.122396 +1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343,1.124343 +1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629,1.12629 +1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238,1.128238 +1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185,1.130185 +1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132,1.132132 +1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079,1.134079 +1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027,1.136027 +1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974,1.137974 +1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921,1.139921 +1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868,1.141868 +1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816,1.143816 +1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763,1.145763 +1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771,1.14771 +1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657,1.149657 +1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605,1.151605 +1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552,1.153552 +1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499,1.155499 +1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446,1.157446 +1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394,1.159394 +1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341,1.161341 +1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288,1.163288 +1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236,1.165236 +1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183,1.167183 +1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913,1.16913 +1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077,1.171077 +1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025,1.173025 +1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972,1.174972 +1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919,1.176919 +1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866,1.178866 +1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814,1.180814 +1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761,1.182761 +1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708,1.184708 +1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655,1.186655 +1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603,1.188603 +1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055,1.19055 +1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497,1.192497 +1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444,1.194444 +1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392,1.196392 +1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339,1.198339 +1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286,1.200286 +1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234,1.202234 +1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181,1.204181 +1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128,1.206128 +1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075,1.208075 +1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023,1.210023 +1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197,1.21197 +1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917,1.213917 +1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864,1.215864 +1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812,1.217812 +1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759,1.219759 +1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706,1.221706 +1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653,1.223653 +1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601,1.225601 +1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548,1.227548 +1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495,1.229495 +1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442,1.231442 +1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339,1.23339 +1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337,1.235337 +1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284,1.237284 +1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232,1.239232 +1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179,1.241179 +1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126,1.243126 +1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073,1.245073 +1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021,1.247021 +1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968,1.248968 +1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915,1.250915 +1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862,1.252862 +1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481,1.25481 +1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757,1.256757 +1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704,1.258704 +1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651,1.260651 +1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599,1.262599 +1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546,1.264546 +1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493,1.266493 +1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441,1.268441 +1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388,1.270388 +1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335,1.272335 +1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282,1.274282 +1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623,1.27623 +1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177,1.278177 +1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124,1.280124 +1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071,1.282071 +1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019,1.284019 +1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966,1.285966 +1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913,1.287913 +1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986,1.28986 +1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808,1.291808 +1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755,1.293755 +1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702,1.295702 +1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649,1.297649 +1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597,1.299597 +1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544,1.301544 +1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491,1.303491 +1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439,1.305439 +1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386,1.307386 +1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333,1.309333 +1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128,1.31128 +1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228,1.313228 +1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175,1.315175 +1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122,1.317122 +1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069,1.319069 +1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017,1.321017 +1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964,1.322964 +1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911,1.324911 +1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858,1.326858 +1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806,1.328806 +1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753,1.330753 +1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327,1.3327 +1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647,1.334647 +1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595,1.336595 +1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542,1.338542 +1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489,1.340489 +1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437,1.342437 +1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384,1.344384 +1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331,1.346331 +1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278,1.348278 +1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226,1.350226 +1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173,1.352173 +1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412,1.35412 +1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067,1.356067 +1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015,1.358015 +1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962,1.359962 +1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909,1.361909 +1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856,1.363856 +1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804,1.365804 +1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751,1.367751 +1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698,1.369698 +1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645,1.371645 +1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593,1.373593 +1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554,1.37554 +1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487,1.377487 +1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435,1.379435 +1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382,1.381382 +1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329,1.383329 +1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276,1.385276 +1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224,1.387224 +1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171,1.389171 +1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118,1.391118 +1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065,1.393065 +1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013,1.395013 +1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696,1.39696 +1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907,1.398907 +1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854,1.400854 +1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802,1.402802 +1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749,1.404749 +1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696,1.406696 +1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644,1.408644 +1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591,1.410591 +1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538,1.412538 +1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485,1.414485 +1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433,1.416433 +1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838,1.41838 +1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327,1.420327 +1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274,1.422274 +1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222,1.424222 +1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169,1.426169 +1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116,1.428116 +1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063,1.430063 +1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011,1.432011 +1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958,1.433958 +1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905,1.435905 +1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852,1.437852 +1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398,1.4398 +1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747,1.441747 +1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694,1.443694 +1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642,1.445642 +1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589,1.447589 +1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536,1.449536 +1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483,1.451483 +1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431,1.453431 +1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378,1.455378 +1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325,1.457325 +1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272,1.459272 +1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122,1.46122 +1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167,1.463167 +1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114,1.465114 +1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061,1.467061 +1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009,1.469009 +1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956,1.470956 +1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903,1.472903 +1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485,1.47485 +1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798,1.476798 +1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745,1.478745 +1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692,1.480692 +1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264,1.48264 +1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587,1.484587 +1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534,1.486534 +1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481,1.488481 +1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429,1.490429 +1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376,1.492376 +1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323,1.494323 +1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627,1.49627 +1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218,1.498218 +1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165,1.500165 +1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112,1.502112 +1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059,1.504059 +1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007,1.506007 +1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954,1.507954 +1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901,1.509901 +1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848,1.511848 +1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796,1.513796 +1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743,1.515743 +1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769,1.51769 +1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638,1.519638 +1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585,1.521585 +1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532,1.523532 +1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479,1.525479 +1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427,1.527427 +1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374,1.529374 +1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321,1.531321 +1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268,1.533268 +1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216,1.535216 +1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163,1.537163 +1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911,1.53911 +1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057,1.541057 +1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005,1.543005 +1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952,1.544952 +1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899,1.546899 +1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847,1.548847 +1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794,1.550794 +1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741,1.552741 +1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688,1.554688 +1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632,1.556632 +1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485,1.558485 +1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208,1.560208 +1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801,1.561801 +1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264,1.563264 +1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598,1.564598 +1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802,1.565802 +1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875,1.566875 +1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782,1.56782 +1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634,1.568634 +1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318,1.569318 +1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873,1.569873 +1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298,1.570298 +1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592,1.570592 +1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758,1.570758 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731,1.570731 +1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537,1.570537 +1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212,1.570212 +1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758,1.569758 +1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174,1.569174 +1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846,1.56846 +1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616,1.567616 +1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642,1.566642 +1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539,1.565539 +1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305,1.564305 +1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942,1.562942 +1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449,1.561449 +1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827,1.559827 +1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074,1.558074 +1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192,1.556192 +1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245,1.554245 +1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297,1.552297 +1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035,1.55035 +1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403,1.548403 +1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455,1.546455 +1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508,1.544508 +1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561,1.542561 +1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614,1.540614 +1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666,1.538666 +1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719,1.536719 +1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772,1.534772 +1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825,1.532825 +1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877,1.530877 +1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893,1.52893 +1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983,1.526983 +1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036,1.525036 +1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088,1.523088 +1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141,1.521141 +1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194,1.519194 +1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247,1.517247 +1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299,1.515299 +1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352,1.513352 +1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405,1.511405 +1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457,1.509457 +1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751,1.50751 +1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563,1.505563 +1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616,1.503616 +1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668,1.501668 +1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721,1.499721 +1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774,1.497774 +1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827,1.495827 +1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879,1.493879 +1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932,1.491932 +1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985,1.489985 +1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038,1.488038 +1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609,1.48609 +1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143,1.484143 +1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196,1.482196 +1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249,1.480249 +1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301,1.478301 +1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354,1.476354 +1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407,1.474407 +1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459,1.472459 +1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512,1.470512 +1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565,1.468565 +1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618,1.466618 +1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467,1.46467 +1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723,1.462723 +1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776,1.460776 +1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829,1.458829 +1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881,1.456881 +1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934,1.454934 +1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987,1.452987 +1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104,1.45104 +1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092,1.449092 +1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145,1.447145 +1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198,1.445198 +1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325,1.44325 +1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303,1.441303 +1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356,1.439356 +1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409,1.437409 +1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461,1.435461 +1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514,1.433514 +1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567,1.431567 +1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962,1.42962 +1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672,1.427672 +1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725,1.425725 +1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778,1.423778 +1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831,1.421831 +1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883,1.419883 +1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936,1.417936 +1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989,1.415989 +1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042,1.414042 +1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094,1.412094 +1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147,1.410147 +1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082,1.4082 +1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252,1.406252 +1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305,1.404305 +1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358,1.402358 +1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411,1.400411 +1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463,1.398463 +1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516,1.396516 +1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569,1.394569 +1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622,1.392622 +1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674,1.390674 +1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727,1.388727 +1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678,1.38678 +1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833,1.384833 +1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885,1.382885 +1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938,1.380938 +1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991,1.378991 +1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044,1.377044 +1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096,1.375096 +1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149,1.373149 +1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202,1.371202 +1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254,1.369254 +1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307,1.367307 +1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536,1.36536 +1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413,1.363413 +1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465,1.361465 +1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518,1.359518 +1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571,1.357571 +1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624,1.355624 +1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676,1.353676 +1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729,1.351729 +1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782,1.349782 +1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835,1.347835 +1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887,1.345887 +1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394,1.34394 +1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993,1.341993 +1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046,1.340046 +1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098,1.338098 +1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151,1.336151 +1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204,1.334204 +1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256,1.332256 +1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309,1.330309 +1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362,1.328362 +1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415,1.326415 +1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467,1.324467 +1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252,1.32252 +1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573,1.320573 +1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626,1.318626 +1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678,1.316678 +1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731,1.314731 +1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784,1.312784 +1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837,1.310837 +1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889,1.308889 +1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942,1.306942 +1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995,1.304995 +1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047,1.303047 +1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011,1.3011 +1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153,1.299153 +1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206,1.297206 +1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258,1.295258 +1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311,1.293311 +1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364,1.291364 +1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417,1.289417 +1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469,1.287469 +1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522,1.285522 +1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575,1.283575 +1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628,1.281628 +1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968,1.27968 +1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733,1.277733 +1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786,1.275786 +1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839,1.273839 +1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891,1.271891 +1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944,1.269944 +1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997,1.267997 +1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049,1.266049 +1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102,1.264102 +1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155,1.262155 +1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208,1.260208 +1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826,1.25826 +1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313,1.256313 +1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366,1.254366 +1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419,1.252419 +1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471,1.250471 +1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524,1.248524 +1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577,1.246577 +1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463,1.24463 +1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682,1.242682 +1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735,1.240735 +1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788,1.238788 +1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841,1.236841 +1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893,1.234893 +1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946,1.232946 +1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999,1.230999 +1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051,1.229051 +1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104,1.227104 +1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157,1.225157 +1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321,1.22321 +1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262,1.221262 +1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315,1.219315 +1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368,1.217368 +1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421,1.215421 +1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473,1.213473 +1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526,1.211526 +1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579,1.209579 +1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632,1.207632 +1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684,1.205684 +1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737,1.203737 +1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179,1.20179 +1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843,1.199843 +1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895,1.197895 +1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948,1.195948 +1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001,1.194001 +1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053,1.192053 +1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106,1.190106 +1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159,1.188159 +1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212,1.186212 +1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264,1.184264 +1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317,1.182317 +1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037,1.18037 +1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423,1.178423 +1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475,1.176475 +1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528,1.174528 +1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581,1.172581 +1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634,1.170634 +1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686,1.168686 +1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739,1.166739 +1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792,1.164792 +1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845,1.162845 +1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897,1.160897 +1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895,1.15895 +1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003,1.157003 +1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055,1.155055 +1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108,1.153108 +1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161,1.151161 +1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214,1.149214 +1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266,1.147266 +1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319,1.145319 +1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372,1.143372 +1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425,1.141425 +1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477,1.139477 +1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753,1.13753 +1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583,1.135583 +1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636,1.133636 +1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688,1.131688 +1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741,1.129741 +1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794,1.127794 +1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846,1.125846 +1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899,1.123899 +1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952,1.121952 +1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005,1.120005 +1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057,1.118057 +1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611,1.11611 +1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163,1.114163 +1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216,1.112216 +1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268,1.110268 +1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321,1.108321 +1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374,1.106374 +1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427,1.104427 +1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479,1.102479 +1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532,1.100532 +1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585,1.098585 +1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638,1.096638 +1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469,1.09469 +1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743,1.092743 +1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796,1.090796 +1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848,1.088848 +1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901,1.086901 +1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954,1.084954 +1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007,1.083007 +1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059,1.081059 +1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112,1.079112 +1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165,1.077165 +1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218,1.075218 +1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327,1.07327 +1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323,1.071323 +1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376,1.069376 +1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429,1.067429 +1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481,1.065481 +1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534,1.063534 +1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587,1.061587 +1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964,1.05964 +1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692,1.057692 +1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745,1.055745 +1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798,1.053798 +1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185,1.05185 +1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903,1.049903 +1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956,1.047956 +1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009,1.046009 +1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061,1.044061 +1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114,1.042114 +1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167,1.040167 +1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822,1.03822 +1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272,1.036272 +1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325,1.034325 +1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378,1.032378 +1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431,1.030431 +1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483,1.028483 +1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536,1.026536 +1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589,1.024589 +1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642,1.022642 +1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694,1.020694 +1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747,1.018747 +1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168,1.0168 +1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852,1.014852 +1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905,1.012905 +1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958,1.010958 +1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011,1.009011 +1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063,1.007063 +1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116,1.005116 +1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169,1.003169 +1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222,1.001222 +0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274,0.999274 +0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327,0.997327 +0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538,0.99538 +0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433,0.993433 +0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485,0.991485 +0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538,0.989538 +0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591,0.987591 +0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643,0.985643 +0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696,0.983696 +0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749,0.981749 +0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802,0.979802 +0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854,0.977854 +0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907,0.975907 +0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396,0.97396 +0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013,0.972013 +0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065,0.970065 +0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118,0.968118 +0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171,0.966171 +0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224,0.964224 +0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276,0.962276 +0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329,0.960329 +0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382,0.958382 +0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435,0.956435 +0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487,0.954487 +0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254,0.95254 +0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593,0.950593 +0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645,0.948645 +0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698,0.946698 +0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751,0.944751 +0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804,0.942804 +0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856,0.940856 +0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909,0.938909 +0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962,0.936962 +0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015,0.935015 +0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067,0.933067 +0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112,0.93112 +0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173,0.929173 +0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226,0.927226 +0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278,0.925278 +0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331,0.923331 +0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384,0.921384 +0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437,0.919437 +0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489,0.917489 +0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542,0.915542 +0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595,0.913595 +0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647,0.911647 +0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097,0.9097 +0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753,0.907753 +0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806,0.905806 +0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858,0.903858 +0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911,0.901911 +0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964,0.899964 +0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017,0.898017 +0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069,0.896069 +0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122,0.894122 +0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175,0.892175 +0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228,0.890228 +0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828,0.88828 +0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333,0.886333 +0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386,0.884386 +0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439,0.882439 +0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491,0.880491 +0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544,0.878544 +0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597,0.876597 +0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649,0.874649 +0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702,0.872702 +0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755,0.870755 +0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808,0.868808 +0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686,0.86686 +0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913,0.864913 +0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966,0.862966 +0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019,0.861019 +0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071,0.859071 +0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124,0.857124 +0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177,0.855177 +0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323,0.85323 +0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282,0.851282 +0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335,0.849335 +0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388,0.847388 +0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544,0.84544 +0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493,0.843493 +0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546,0.841546 +0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599,0.839599 +0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651,0.837651 +0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704,0.835704 +0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757,0.833757 +0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181,0.83181 +0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862,0.829862 +0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915,0.827915 +0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968,0.825968 +0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021,0.824021 +0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073,0.822073 +0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126,0.820126 +0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179,0.818179 +0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232,0.816232 +0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284,0.814284 +0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337,0.812337 +0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039,0.81039 +0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442 +0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495,0.806495 +0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548,0.804548 +0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601,0.802601 +0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653,0.800653 +0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706,0.798706 +0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759,0.796759 +0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812,0.794812 +0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864,0.792864 +0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917,0.790917 +0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897,0.78897 +0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023,0.787023 +0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075,0.785075 +0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128,0.783128 +0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181,0.781181 +0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234,0.779234 +0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286,0.777286 +0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339,0.775339 +0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392,0.773392 +0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444,0.771444 +0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497,0.769497 +0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755,0.76755 +0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603,0.765603 +0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655,0.763655 +0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708,0.761708 +0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761,0.759761 +0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814,0.757814 +0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866,0.755866 +0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919,0.753919 +0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972,0.751972 +0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025,0.750025 +0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077,0.748077 +0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613,0.74613 +0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183,0.744183 +0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236,0.742236 +0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288,0.740288 +0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341,0.738341 +0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394,0.736394 +0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446,0.734446 +0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499,0.732499 +0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552,0.730552 +0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605,0.728605 +0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657,0.726657 +0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471,0.72471 +0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763,0.722763 +0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816,0.720816 +0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868,0.718868 +0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921,0.716921 +0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974,0.714974 +0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027,0.713027 +0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079,0.711079 +0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132,0.709132 +0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185,0.707185 +0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237,0.705237 +0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329,0.70329 +0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343,0.701343 +0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396,0.699396 +0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448 +0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501,0.695501 +0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554,0.693554 +0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607,0.691607 +0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659,0.689659 +0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712,0.687712 +0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765,0.685765 +0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818,0.683818 +0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187,0.68187 +0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923,0.679923 +0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976,0.677976 +0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029,0.676029 +0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081,0.674081 +0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134,0.672134 +0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187,0.670187 +0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239,0.668239 +0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292,0.666292 +0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345,0.664345 +0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398,0.662398 +0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045,0.66045 +0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503,0.658503 +0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556,0.656556 +0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609,0.654609 +0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661,0.652661 +0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714,0.650714 +0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767,0.648767 +0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682,0.64682 +0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872,0.644872 +0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925,0.642925 +0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978,0.640978 +0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031,0.639031 +0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083,0.637083 +0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136,0.635136 +0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189,0.633189 +0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241,0.631241 +0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294,0.629294 +0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347,0.627347 +0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254,0.6254 +0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452,0.623452 +0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505,0.621505 +0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558,0.619558 +0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611,0.617611 +0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663,0.615663 +0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716,0.613716 +0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769,0.611769 +0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822,0.609822 +0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874,0.607874 +0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927,0.605927 +0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398,0.60398 +0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033,0.602033 +0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085,0.600085 +0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138,0.598138 +0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191,0.596191 +0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243,0.594243 +0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296,0.592296 +0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349,0.590349 +0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402,0.588402 +0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454,0.586454 +0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507,0.584507 +0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256,0.58256 +0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613,0.580613 +0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665,0.578665 +0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718,0.576718 +0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771,0.574771 +0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824,0.572824 +0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876,0.570876 +0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929,0.568929 +0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982 +0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035,0.565035 +0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087,0.563087 +0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114,0.56114 +0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193,0.559193 +0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245,0.557245 +0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298,0.555298 +0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351,0.553351 +0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404,0.551404 +0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456,0.549456 +0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509,0.547509 +0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562,0.545562 +0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615,0.543615 +0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667,0.541667 +0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972,0.53972 +0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773,0.537773 +0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826,0.535826 +0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878,0.533878 +0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931,0.531931 +0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984,0.529984 +0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036,0.528036 +0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089,0.526089 +0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142,0.524142 +0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195,0.522195 +0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247,0.520247 +0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183,0.5183 +0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353,0.516353 +0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406,0.514406 +0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458,0.512458 +0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511,0.510511 +0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564,0.508564 +0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617,0.506617 +0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669,0.504669 +0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722,0.502722 +0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775,0.500775 +0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828,0.498828 +0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688,0.49688 +0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933,0.494933 +0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986,0.492986 +0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038,0.491038 +0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091,0.489091 +0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144,0.487144 +0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197,0.485197 +0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249,0.483249 +0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302,0.481302 +0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355,0.479355 +0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408,0.477408 +0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546,0.47546 +0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513,0.473513 +0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566,0.471566 +0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619,0.469619 +0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671,0.467671 +0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724,0.465724 +0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777,0.463777 +0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183,0.46183 +0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882,0.459882 +0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935,0.457935 +0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988,0.455988 +0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404,0.45404 +0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093,0.452093 +0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146,0.450146 +0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199,0.448199 +0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251,0.446251 +0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304,0.444304 +0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357,0.442357 +0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041,0.44041 +0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462,0.438462 +0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515,0.436515 +0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568,0.434568 +0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621,0.432621 +0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673,0.430673 +0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726,0.428726 +0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779,0.426779 +0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832,0.424832 +0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884,0.422884 +0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937,0.420937 +0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899,0.41899 +0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042,0.417042 +0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095,0.415095 +0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148,0.413148 +0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201,0.411201 +0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253,0.409253 +0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306,0.407306 +0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359,0.405359 +0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412,0.403412 +0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464,0.401464 +0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517,0.399517 +0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757,0.39757 +0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623,0.395623 +0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675,0.393675 +0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728,0.391728 +0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781,0.389781 +0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833,0.387833 +0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886,0.385886 +0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939,0.383939 +0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992,0.381992 +0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044,0.380044 +0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097,0.378097 +0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615,0.37615 +0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203,0.374203 +0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255 +0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308,0.370308 +0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361,0.368361 +0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414,0.366414 +0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466,0.364466 +0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519,0.362519 +0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572,0.360572 +0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625,0.358625 +0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677,0.356677 +0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473,0.35473 +0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783,0.352783 +0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835,0.350835 +0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888,0.348888 +0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941,0.346941 +0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994,0.344994 +0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046,0.343046 +0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099 +0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152,0.339152 +0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205,0.337205 +0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257,0.335257 +0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331,0.33331 +0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363,0.331363 +0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416,0.329416 +0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468,0.327468 +0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521,0.325521 +0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574,0.323574 +0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627,0.321627 +0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679,0.319679 +0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732,0.317732 +0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785,0.315785 +0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837,0.313837 +0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189,0.31189 +0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943,0.309943 +0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996,0.307996 +0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048,0.306048 +0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101,0.304101 +0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154,0.302154 +0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207,0.300207 +0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259,0.298259 +0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312,0.296312 +0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365,0.294365 +0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418,0.292418 +0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047,0.29047 +0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523,0.288523 +0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576,0.286576 +0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629,0.284629 +0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681,0.282681 +0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734,0.280734 +0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787,0.278787 +0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839,0.276839 +0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892,0.274892 +0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945,0.272945 +0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998,0.270998 +0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905,0.26905 +0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103,0.267103 +0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156,0.265156 +0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209,0.263209 +0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261,0.261261 +0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314,0.259314 +0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367,0.257367 +0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542,0.25542 +0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472,0.253472 +0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525,0.251525 +0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578,0.249578 +0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763,0.24763 +0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683,0.245683 +0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736,0.243736 +0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789,0.241789 +0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841,0.239841 +0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894,0.237894 +0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947,0.235947 +0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234,0.234 +0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052,0.232052 +0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105,0.230105 +0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158,0.228158 +0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211,0.226211 +0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263,0.224263 +0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316,0.222316 +0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369,0.220369 +0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422,0.218422 +0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474,0.216474 +0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527,0.214527 +0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258,0.21258 +0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632,0.210632 +0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685,0.208685 +0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738,0.206738 +0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791,0.204791 +0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843,0.202843 +0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896,0.200896 +0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949,0.198949 +0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002,0.197002 +0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054,0.195054 +0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107,0.193107 +0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116,0.19116 +0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213,0.189213 +0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265,0.187265 +0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318,0.185318 +0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371,0.183371 +0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424,0.181424 +0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476,0.179476 +0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529,0.177529 +0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582,0.175582 +0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634,0.173634 +0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687,0.171687 +0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974,0.16974 +0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793,0.167793 +0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845,0.165845 +0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898,0.163898 +0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951,0.161951 +0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004,0.160004 +0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056,0.158056 +0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109,0.156109 +0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162,0.154162 +0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215,0.152215 +0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267,0.150267 +0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832,0.14832 +0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373,0.146373 +0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426,0.144426 +0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478,0.142478 +0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531,0.140531 +0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584,0.138584 +0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636,0.136636 +0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689,0.134689 +0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742,0.132742 +0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795,0.130795 +0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847,0.128847 +0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269,0.1269 +0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953,0.124953 +0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006,0.123006 +0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058,0.121058 +0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111,0.119111 +0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164,0.117164 +0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217,0.115217 +0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269,0.113269 +0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322,0.111322 +0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375,0.109375 +0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427,0.107427 +0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548,0.10548 +0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533,0.103533 +0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586,0.101586 +0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638,0.099638 +0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691,0.097691 +0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744,0.095744 +0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797,0.093797 +0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849,0.091849 +0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902,0.089902 +0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955,0.087955 +0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008,0.086008 +0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406,0.08406 +0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113,0.082113 +0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166,0.080166 +0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219,0.078219 +0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271,0.076271 +0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324,0.074324 +0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377,0.072377 +0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429,0.070429 +0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482,0.068482 +0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535,0.066535 +0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588,0.064588 +0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264,0.06264 +0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693,0.060693 +0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746,0.058746 +0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799,0.056799 +0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851,0.054851 +0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904,0.052904 +0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957,0.050957 +0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901,0.04901 +0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062,0.047062 +0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115,0.045115 +0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168,0.043168 +0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221,0.041221 +0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273,0.039273 +0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326,0.037326 +0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379,0.035379 +0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431,0.033431 +0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484,0.031484 +0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537,0.029537 +0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759,0.02759 +0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642,0.025642 +0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695,0.023695 +0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748,0.021748 +0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801,0.019801 +0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853,0.017853 +0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909,0.015909 +0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057,0.014057 +0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334,0.012334 +0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741,0.010741 +0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277,0.009277 +0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944,0.007944 +0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674,0.00674 +0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666,0.005666 +0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722,0.004722 +0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908,0.003908 +0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224,0.003224 +0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669,0.002669 +0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244,0.002244 +0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949,0.001949 +0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784,0.001784 +0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745,0.001745 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90.offt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90.offt new file mode 100644 index 00000000..2e2a7b27 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/waypoints_dof-9_0-90.offt @@ -0,0 +1,22080 @@ +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 +0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973,0.017973 +0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953,0.01953 +0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127,0.022127 +0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762,0.025762 +0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435,0.030435 +0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147,0.036147 +0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898,0.042898 +0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687,0.050687 +0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514,0.059514 +0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381,0.069381 +0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285,0.080285 +0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228,0.092228 +0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521,0.10521 +0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231,0.119231 +0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429,0.13429 +0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868,0.149868 +0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446,0.165446 +0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024,0.181024 +0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602,0.196602 +0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218,0.21218 +0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758,0.227758 +0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336,0.243336 +0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914,0.258914 +0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493,0.274493 +0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071,0.290071 +0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649,0.305649 +0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227,0.321227 +0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805,0.336805 +0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383,0.352383 +0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961,0.367961 +0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539,0.383539 +0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117,0.399117 +0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696,0.414696 +0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274,0.430274 +0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852,0.445852 +0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143,0.46143 +0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008,0.477008 +0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586,0.492586 +0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164,0.508164 +0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742,0.523742 +0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932,0.53932 +0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899,0.554899 +0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477,0.570477 +0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055,0.586055 +0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633,0.601633 +0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211,0.617211 +0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789,0.632789 +0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367,0.648367 +0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945,0.663945 +0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523,0.679523 +0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102,0.695102 +0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068,0.71068 +0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258,0.726258 +0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836,0.741836 +0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414,0.757414 +0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992,0.772992 +0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857,0.78857 +0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148,0.804148 +0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726,0.819726 +0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305,0.835305 +0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883,0.850883 +0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461,0.866461 +0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039,0.882039 +0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617,0.897617 +0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195,0.913195 +0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773,0.928773 +0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351,0.944351 +0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929,0.959929 +0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507,0.975507 +0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086,0.991086 +1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664,1.006664 +1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242,1.022242 +1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782,1.03782 +1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398,1.053398 +1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976,1.068976 +1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554,1.084554 +1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132,1.100132 +1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571,1.11571 +1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289,1.131289 +1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867,1.146867 +1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445,1.162445 +1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023,1.178023 +1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601,1.193601 +1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179,1.209179 +1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757,1.224757 +1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335,1.240335 +1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913,1.255913 +1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492,1.271492 +1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707,1.28707 +1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648,1.302648 +1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226,1.318226 +1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804,1.333804 +1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382,1.349382 +1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496,1.36496 +1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538,1.380538 +1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116,1.396116 +1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695,1.411695 +1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273,1.427273 +1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851,1.442851 +1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386,1.458386 +1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147,1.473147 +1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687,1.48687 +1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553,1.499553 +1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199,1.511199 +1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806,1.521806 +1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374,1.531374 +1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904,1.539904 +1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395,1.547395 +1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847,1.553847 +1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261,1.559261 +1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637,1.563637 +1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974,1.566974 +1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272,1.569272 +1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532,1.570532 +1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796,1.570796 +1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277,1.570277 +1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719,1.568719 +1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123,1.566123 +1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488,1.562488 +1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815,1.557815 +1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103,1.552103 +1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352,1.545352 +1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563,1.537563 +1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735,1.528735 +1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869,1.518869 +1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964,1.507964 +1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021,1.496021 +1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039,1.483039 +1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019,1.469019 +1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396,1.45396 +1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382,1.438382 +1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804,1.422804 +1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226,1.407226 +1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648,1.391648 +1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607,1.37607 +1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491,1.360491 +1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913,1.344913 +1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335,1.329335 +1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757,1.313757 +1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179,1.298179 +1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601,1.282601 +1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023,1.267023 +1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445,1.251445 +1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867,1.235867 +1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288,1.220288 +1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471,1.20471 +1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132,1.189132 +1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554,1.173554 +1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976,1.157976 +1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398,1.142398 +1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682,1.12682 +1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242,1.111242 +1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664,1.095664 +1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085,1.080085 +1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507,1.064507 +1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929,1.048929 +1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351,1.033351 +1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773,1.017773 +1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195,1.002195 +0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617,0.986617 +0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039,0.971039 +0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461,0.955461 +0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882,0.939882 +0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304,0.924304 +0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726,0.908726 +0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148,0.893148 +0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757,0.87757 +0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992,0.861992 +0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414,0.846414 +0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836,0.830836 +0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258,0.815258 +0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679,0.799679 +0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101,0.784101 +0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523,0.768523 +0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945,0.752945 +0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367,0.737367 +0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789,0.721789 +0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211,0.706211 +0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633,0.690633 +0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055,0.675055 +0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476,0.659476 +0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898,0.643898 +0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832,0.62832 +0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742,0.612742 +0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164,0.597164 +0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586,0.581586 +0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008,0.566008 +0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043,0.55043 +0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852,0.534852 +0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273,0.519273 +0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695,0.503695 +0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117,0.488117 +0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539,0.472539 +0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961,0.456961 +0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383,0.441383 +0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805,0.425805 +0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227,0.410227 +0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649,0.394649 +0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907,0.37907 +0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492,0.363492 +0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914,0.347914 +0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336,0.332336 +0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758,0.316758 +0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118,0.30118 +0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602,0.285602 +0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024,0.270024 +0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446,0.254446 +0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867,0.238867 +0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289,0.223289 +0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711,0.207711 +0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133,0.192133 +0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555,0.176555 +0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977,0.160977 +0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399,0.145399 +0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863,0.129863 +0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102,0.115102 +0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138,0.10138 +0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696,0.088696 +0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051,0.077051 +0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444,0.066444 +0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876,0.056876 +0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346,0.048346 +0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855,0.040855 +0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402,0.034402 +0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988,0.028988 +0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613,0.024613 +0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276,0.021276 +0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977,0.018977 +0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717,0.017717 +0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453,0.017453 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/xx.csv b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/xx.csv new file mode 100644 index 00000000..663fcb90 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/example/trajs/xx.csv @@ -0,0 +1,1193 @@ +-0.849052,-0.459907,2.28463,1.93141,1.11019,-2.70929 +-0.849227,-0.459714,2.28459,1.93125,1.11036,-2.70944 +-0.849365,-0.459631,2.28434,1.93056,1.11059,-2.70953 +-0.849472,-0.459452,2.28418,1.93005,1.1107,-2.7098 +-0.849462,-0.459486,2.28379,1.92914,1.11063,-2.70944 +-0.849599,-0.45887,2.28349,1.92759,1.11066,-2.70961 +-0.84969,-0.458308,2.2833,1.92626,1.11082,-2.70981 +-0.849711,-0.458128,2.28298,1.92518,1.11085,-2.7098 +-0.849697,-0.457874,2.28258,1.9237,1.11086,-2.70968 +-0.850006,-0.457407,2.28229,1.92242,1.11153,-2.70997 +-0.850244,-0.45707,2.28197,1.92143,1.11186,-2.70974 +-0.850418,-0.457164,2.28172,1.92106,1.11231,-2.70998 +-0.8508,-0.456996,2.28137,1.92037,1.11302,-2.70985 +-0.851078,-0.456838,2.2809,1.91913,1.11354,-2.70994 +-0.851608,-0.45623,2.28042,1.91749,1.11449,-2.70972 +-0.852126,-0.455687,2.27982,1.91549,1.11555,-2.70989 +-0.852504,-0.454901,2.2789,1.91216,1.11635,-2.70997 +-0.853006,-0.453724,2.27804,1.90854,1.11734,-2.7101 +-0.853592,-0.452544,2.27699,1.90431,1.11858,-2.71026 +-0.854195,-0.450771,2.27593,1.89931,1.11955,-2.71009 +-0.854617,-0.449566,2.27482,1.89483,1.12042,-2.71026 +-0.855241,-0.447818,2.27365,1.88974,1.1214,-2.71 +-0.855928,-0.446146,2.27257,1.88501,1.12274,-2.71019 +-0.856657,-0.44443,2.27131,1.87984,1.12384,-2.71002 +-0.857209,-0.44334,2.2701,1.87566,1.12481,-2.71017 +-0.858027,-0.442148,2.26865,1.87089,1.12648,-2.71013 +-0.858921,-0.440493,2.26733,1.86587,1.12811,-2.71065 +-0.859723,-0.439302,2.26574,1.86073,1.12988,-2.71111 +-0.860449,-0.438044,2.26408,1.85539,1.13128,-2.71097 +-0.861445,-0.436134,2.26248,1.84935,1.13317,-2.71147 +-0.862267,-0.434539,2.26071,1.84334,1.13457,-2.71149 +-0.8632,-0.433105,2.2588,1.83728,1.13642,-2.71157 +-0.864182,-0.431129,2.25703,1.83089,1.13792,-2.71161 +-0.864987,-0.429753,2.25517,1.82497,1.13924,-2.71165 +-0.865982,-0.428036,2.25325,1.81869,1.14085,-2.7116 +-0.866688,-0.426617,2.25112,1.81165,1.14241,-2.71194 +-0.867813,-0.424524,2.24888,1.80383,1.14427,-2.7119 +-0.868691,-0.422592,2.2465,1.79548,1.14585,-2.71191 +-0.869833,-0.420277,2.2439,1.78612,1.14793,-2.71212 +-0.870792,-0.417972,2.24127,1.77642,1.14975,-2.71257 +-0.872024,-0.415333,2.2385,1.76616,1.15209,-2.71291 +-0.873108,-0.413019,2.23598,1.75698,1.15382,-2.7133 +-0.874256,-0.410659,2.23323,1.74735,1.15554,-2.71315 +-0.875371,-0.408575,2.23082,1.73881,1.15739,-2.71378 +-0.876414,-0.407038,2.22834,1.73103,1.15881,-2.71333 +-0.877512,-0.405964,2.22595,1.72415,1.1604,-2.71301 +-0.878654,-0.404703,2.22364,1.71715,1.16198,-2.71256 +-0.879611,-0.403417,2.22138,1.70997,1.16303,-2.71215 +-0.880866,-0.401676,2.21889,1.70188,1.16452,-2.71137 +-0.882056,-0.400206,2.21631,1.6937,1.16624,-2.71094 +-0.882921,-0.398447,2.21365,1.6845,1.16728,-2.71119 +-0.884009,-0.396278,2.21068,1.67415,1.16855,-2.71091 +-0.884784,-0.394936,2.20745,1.66387,1.16969,-2.71107 +-0.885637,-0.393267,2.20431,1.6535,1.17066,-2.71059 +-0.886659,-0.391663,2.2012,1.64319,1.1723,-2.71083 +-0.887764,-0.390119,2.19781,1.63255,1.17361,-2.70958 +-0.888982,-0.388344,2.1949,1.62291,1.1752,-2.70884 +-0.890058,-0.386715,2.19189,1.61302,1.17641,-2.70783 +-0.89122,-0.385423,2.18868,1.60306,1.17804,-2.70655 +-0.892289,-0.383862,2.1853,1.59208,1.17937,-2.70536 +-0.893393,-0.382456,2.18171,1.58072,1.18112,-2.70475 +-0.894481,-0.380957,2.17826,1.56961,1.18278,-2.70451 +-0.89582,-0.378909,2.17453,1.55763,1.18442,-2.70377 +-0.897057,-0.377543,2.17107,1.54705,1.18629,-2.70378 +-0.898276,-0.376055,2.16781,1.53681,1.18808,-2.70351 +-0.899313,-0.374936,2.16464,1.52716,1.18944,-2.70324 +-0.900392,-0.374118,2.16177,1.51881,1.19119,-2.70339 +-0.901402,-0.373405,2.15895,1.51087,1.19263,-2.70299 +-0.902303,-0.372841,2.15605,1.50252,1.19424,-2.70337 +-0.903261,-0.37215,2.15347,1.49505,1.19579,-2.70328 +-0.90421,-0.371645,2.15079,1.48748,1.1975,-2.70346 +-0.905127,-0.370961,2.14786,1.47911,1.19887,-2.70261 +-0.905951,-0.370369,2.14545,1.47196,1.20038,-2.70277 +-0.906955,-0.369295,2.14292,1.46411,1.20212,-2.70266 +-0.908016,-0.368252,2.14043,1.4565,1.20422,-2.70271 +-0.908931,-0.367457,2.1376,1.44827,1.20606,-2.70236 +-0.909816,-0.366839,2.13485,1.44023,1.2083,-2.70279 +-0.910632,-0.366371,2.13164,1.43125,1.21057,-2.7028 +-0.911658,-0.365637,2.12819,1.42156,1.21321,-2.70293 +-0.912608,-0.365035,2.12486,1.41226,1.21625,-2.70387 +-0.913643,-0.364161,2.12123,1.40228,1.2188,-2.70362 +-0.914365,-0.36398,2.11783,1.39345,1.22113,-2.70351 +-0.915161,-0.363245,2.11475,1.38474,1.22333,-2.70403 +-0.915768,-0.362993,2.11224,1.37808,1.22554,-2.70479 +-0.91642,-0.362795,2.10983,1.3721,1.22723,-2.70491 +-0.916898,-0.362646,2.10777,1.36698,1.2289,-2.70557 +-0.917422,-0.362704,2.10601,1.36299,1.23056,-2.70583 +-0.917852,-0.36282,2.10458,1.35994,1.23209,-2.70639 +-0.918311,-0.363282,2.10338,1.35813,1.23388,-2.70672 +-0.918807,-0.363501,2.10233,1.35653,1.2357,-2.70728 +-0.919039,-0.363977,2.10154,1.35576,1.23716,-2.70812 +-0.919604,-0.364466,2.10074,1.3556,1.2392,-2.70851 +-0.919944,-0.364808,2.10023,1.35579,1.24106,-2.70989 +-0.920255,-0.365297,2.09983,1.35664,1.24272,-2.71076 +-0.920538,-0.365445,2.09931,1.35687,1.24418,-2.71188 +-0.920675,-0.365815,2.09885,1.35758,1.24548,-2.71332 +-0.920765,-0.366103,2.09861,1.35869,1.24697,-2.71505 +-0.920752,-0.366438,2.09828,1.35971,1.24798,-2.7163 +-0.920731,-0.366715,2.09805,1.36094,1.24896,-2.71731 +-0.920539,-0.36737,2.09784,1.36265,1.2496,-2.71773 +-0.920368,-0.367644,2.09775,1.3641,1.25027,-2.71832 +-0.920292,-0.36779,2.09766,1.36554,1.2513,-2.71922 +-0.920152,-0.367983,2.09737,1.3666,1.25197,-2.71948 +-0.920089,-0.367764,2.0971,1.36718,1.25285,-2.72025 +-0.920127,-0.367598,2.09668,1.36788,1.25389,-2.72065 +-0.919895,-0.367659,2.09601,1.36792,1.25468,-2.72137 +-0.919537,-0.36752,2.09539,1.36766,1.25521,-2.72227 +-0.919284,-0.36737,2.09492,1.36812,1.25603,-2.72315 +-0.918969,-0.367008,2.09449,1.36829,1.25668,-2.72443 +-0.91849,-0.366594,2.09426,1.36878,1.25678,-2.72581 +-0.918123,-0.366081,2.09421,1.36973,1.25721,-2.72724 +-0.917841,-0.365216,2.09442,1.3711,1.25719,-2.72834 +-0.917377,-0.364574,2.09475,1.37303,1.25674,-2.72896 +-0.916975,-0.363808,2.0954,1.37567,1.25633,-2.72969 +-0.916562,-0.363345,2.09608,1.37879,1.25619,-2.73039 +-0.916111,-0.362962,2.09681,1.38216,1.25587,-2.73064 +-0.915457,-0.362698,2.09759,1.38556,1.25527,-2.73143 +-0.915029,-0.361708,2.098,1.38736,1.25473,-2.73229 +-0.914717,-0.360736,2.09847,1.38936,1.25449,-2.7336 +-0.913917,-0.36003,2.09881,1.39089,1.25302,-2.73452 +-0.913558,-0.358597,2.09922,1.39213,1.25211,-2.73601 +-0.913084,-0.357147,2.09981,1.39373,1.25091,-2.73747 +-0.912421,-0.356112,2.09993,1.39447,1.24912,-2.73797 +-0.911702,-0.354856,2.09997,1.3945,1.24713,-2.73848 +-0.910981,-0.35359,2.1001,1.39473,1.24496,-2.73867 +-0.910298,-0.352288,2.10019,1.39491,1.24282,-2.73878 +-0.909837,-0.350842,2.10008,1.39457,1.24087,-2.73881 +-0.909282,-0.34945,2.09985,1.39377,1.23884,-2.73902 +-0.908687,-0.348314,2.09949,1.3928,1.23678,-2.73956 +-0.908274,-0.346763,2.09918,1.39153,1.2352,-2.74104 +-0.908026,-0.344889,2.09869,1.38978,1.23344,-2.74206 +-0.907587,-0.343723,2.09852,1.38918,1.23183,-2.74361 +-0.907087,-0.342208,2.0982,1.38762,1.22967,-2.74481 +-0.906528,-0.341164,2.09806,1.38697,1.22745,-2.7454 +-0.906093,-0.339825,2.09787,1.38586,1.22522,-2.74583 +-0.905616,-0.339091,2.09789,1.38579,1.22309,-2.74592 +-0.905424,-0.337825,2.09796,1.38541,1.22138,-2.74621 +-0.905155,-0.336992,2.09807,1.38555,1.21931,-2.74589 +-0.905235,-0.335636,2.09824,1.38543,1.21785,-2.7462 +-0.905187,-0.334521,2.09855,1.38546,1.21628,-2.7467 +-0.905288,-0.333533,2.09858,1.38493,1.21512,-2.74715 +-0.905394,-0.332225,2.0985,1.38353,1.21366,-2.74755 +-0.90562,-0.331163,2.09856,1.38259,1.2129,-2.74796 +-0.905802,-0.330182,2.09865,1.38143,1.21179,-2.74814 +-0.905905,-0.329295,2.0985,1.37956,1.21039,-2.74773 +-0.906078,-0.328421,2.09852,1.3779,1.20919,-2.74768 +-0.906453,-0.327699,2.09841,1.37613,1.2084,-2.747 +-0.906778,-0.327164,2.09856,1.37486,1.20759,-2.74675 +-0.907395,-0.326582,2.09844,1.37313,1.20715,-2.74536 +-0.908163,-0.325943,2.09863,1.37165,1.20747,-2.7452 +-0.908831,-0.325385,2.09866,1.36937,1.20766,-2.74456 +-0.909569,-0.325238,2.09881,1.36771,1.2082,-2.74357 +-0.910394,-0.324684,2.09888,1.36505,1.20905,-2.74291 +-0.911276,-0.324011,2.09897,1.36222,1.20994,-2.74202 +-0.9119,-0.323434,2.09915,1.35944,1.21014,-2.74045 +-0.912588,-0.32271,2.09887,1.35531,1.21035,-2.7384 +-0.913215,-0.321781,2.09884,1.35158,1.21013,-2.73635 +-0.913551,-0.321194,2.09847,1.34726,1.2095,-2.73391 +-0.91385,-0.320957,2.09805,1.34295,1.20953,-2.73215 +-0.914298,-0.32061,2.09768,1.33882,1.21009,-2.73071 +-0.914702,-0.320467,2.09755,1.33552,1.21057,-2.72949 +-0.915012,-0.320318,2.09761,1.33254,1.21083,-2.72809 +-0.915795,-0.31972,2.09783,1.3301,1.2122,-2.72724 +-0.916238,-0.319729,2.09818,1.32818,1.21316,-2.72633 +-0.916617,-0.320136,2.09835,1.32628,1.21443,-2.72505 +-0.917203,-0.319985,2.09848,1.324,1.21601,-2.72375 +-0.917768,-0.320059,2.09889,1.32273,1.21752,-2.72236 +-0.917965,-0.320467,2.09926,1.32164,1.21823,-2.72051 +-0.918115,-0.321057,2.09943,1.32026,1.21911,-2.71866 +-0.918311,-0.321483,2.09965,1.31881,1.22032,-2.71742 +-0.918845,-0.321663,2.09949,1.3166,1.22236,-2.71644 +-0.919351,-0.322006,2.09921,1.31397,1.22478,-2.71586 +-0.919705,-0.322361,2.09865,1.31069,1.22689,-2.715 +-0.920291,-0.322064,2.09803,1.30689,1.22884,-2.71431 +-0.920847,-0.322049,2.09739,1.30336,1.23111,-2.71369 +-0.921287,-0.322297,2.09647,1.29941,1.23337,-2.71297 +-0.9219,-0.322677,2.09546,1.29557,1.23643,-2.71237 +-0.922486,-0.323362,2.09452,1.29235,1.23964,-2.71228 +-0.923138,-0.323778,2.0937,1.28967,1.2426,-2.71154 +-0.923838,-0.324207,2.09294,1.28714,1.24569,-2.71126 +-0.924442,-0.325229,2.0921,1.28519,1.24892,-2.71082 +-0.924793,-0.326534,2.09134,1.28373,1.25179,-2.71041 +-0.925322,-0.327545,2.09052,1.28208,1.25479,-2.71014 +-0.925817,-0.328786,2.08971,1.28092,1.25797,-2.71004 +-0.926503,-0.329325,2.08893,1.27939,1.26119,-2.71022 +-0.926762,-0.330371,2.08805,1.27816,1.26376,-2.71029 +-0.927097,-0.331355,2.08722,1.27716,1.2666,-2.71098 +-0.927624,-0.332236,2.0864,1.27663,1.26969,-2.71173 +-0.927778,-0.333513,2.0855,1.27622,1.2722,-2.71261 +-0.928176,-0.334287,2.08457,1.27571,1.27492,-2.7137 +-0.928488,-0.335517,2.08389,1.27651,1.27768,-2.71488 +-0.928768,-0.336907,2.08316,1.2775,1.28055,-2.71639 +-0.929142,-0.338248,2.08232,1.27849,1.28355,-2.71786 +-0.929772,-0.339465,2.08166,1.28018,1.287,-2.71988 +-0.930047,-0.341233,2.08095,1.28238,1.28981,-2.72155 +-0.930379,-0.342566,2.08046,1.28481,1.29239,-2.72332 +-0.930697,-0.344004,2.07967,1.28692,1.2949,-2.72506 +-0.931017,-0.345459,2.07917,1.28991,1.29731,-2.72687 +-0.931363,-0.346784,2.07842,1.29225,1.29984,-2.7289 +-0.931424,-0.348285,2.07763,1.29457,1.30189,-2.73098 +-0.931902,-0.348935,2.07702,1.29665,1.30442,-2.73368 +-0.932014,-0.350215,2.07618,1.29886,1.30648,-2.73592 +-0.931963,-0.351664,2.07543,1.30114,1.30813,-2.73798 +-0.932172,-0.352276,2.07475,1.3029,1.30988,-2.74065 +-0.932433,-0.352937,2.07422,1.30538,1.31157,-2.7428 +-0.932574,-0.35352,2.07364,1.30758,1.31281,-2.74488 +-0.932811,-0.354145,2.07297,1.30969,1.31411,-2.74679 +-0.933023,-0.354852,2.07225,1.31181,1.31527,-2.74873 +-0.933162,-0.355439,2.07175,1.31431,1.316,-2.75044 +-0.933223,-0.355774,2.07152,1.31692,1.31621,-2.75213 +-0.933137,-0.356363,2.07145,1.32021,1.31599,-2.75336 +-0.933374,-0.355719,2.07144,1.32232,1.31569,-2.75497 +-0.933219,-0.355735,2.07186,1.32606,1.31459,-2.75581 +-0.932955,-0.356138,2.07176,1.32867,1.31366,-2.75695 +-0.932646,-0.356226,2.07185,1.3312,1.31244,-2.75827 +-0.932476,-0.356234,2.07173,1.33325,1.31148,-2.75976 +-0.932557,-0.355497,2.07152,1.33438,1.31046,-2.76136 +-0.932365,-0.354778,2.07119,1.33484,1.30885,-2.76299 +-0.93234,-0.353954,2.07066,1.33504,1.30728,-2.76397 +-0.932222,-0.352793,2.0704,1.33498,1.30577,-2.76591 +-0.931928,-0.35202,2.06993,1.33482,1.30383,-2.76705 +-0.931582,-0.351441,2.06929,1.3343,1.30172,-2.76757 +-0.931127,-0.350561,2.06904,1.33427,1.29903,-2.76811 +-0.930778,-0.349585,2.06886,1.33446,1.2963,-2.76855 +-0.930204,-0.348897,2.06879,1.33498,1.29303,-2.76873 +-0.929948,-0.347885,2.06874,1.33549,1.29027,-2.76903 +-0.929566,-0.346962,2.06886,1.33626,1.28739,-2.76969 +-0.929424,-0.346107,2.06874,1.33655,1.28492,-2.77 +-0.929454,-0.344845,2.06881,1.33675,1.2828,-2.7709 +-0.929205,-0.343981,2.0689,1.33731,1.27982,-2.771 +-0.92892,-0.343026,2.06907,1.33774,1.27656,-2.77095 +-0.92881,-0.342207,2.06922,1.3382,1.27386,-2.77084 +-0.928729,-0.341066,2.06954,1.33839,1.27116,-2.77088 +-0.928697,-0.340205,2.06971,1.33848,1.2685,-2.77062 +-0.928603,-0.339685,2.07004,1.339,1.26588,-2.77028 +-0.928627,-0.338937,2.0702,1.3387,1.26314,-2.76967 +-0.928973,-0.337937,2.07018,1.33788,1.26104,-2.76904 +-0.929411,-0.336855,2.07027,1.33667,1.25951,-2.76963 +-0.929667,-0.335882,2.07012,1.33474,1.25725,-2.76929 +-0.929951,-0.335038,2.06986,1.33234,1.25526,-2.76894 +-0.930202,-0.334066,2.06937,1.32901,1.25313,-2.7682 +-0.93043,-0.333579,2.06887,1.32596,1.25112,-2.76702 +-0.930836,-0.332247,2.06835,1.32167,1.24933,-2.76627 +-0.931155,-0.331298,2.06755,1.31668,1.2476,-2.76494 +-0.931315,-0.330738,2.0668,1.31189,1.24551,-2.76287 +-0.931868,-0.329726,2.06606,1.30686,1.24417,-2.76087 +-0.932379,-0.328646,2.06556,1.30207,1.24289,-2.75899 +-0.932742,-0.327634,2.06513,1.29703,1.24159,-2.75731 +-0.933397,-0.326407,2.06458,1.29176,1.24093,-2.75591 +-0.93373,-0.325629,2.06397,1.28665,1.23952,-2.7536 +-0.934281,-0.324762,2.06341,1.28154,1.23923,-2.75232 +-0.934821,-0.323983,2.06261,1.27605,1.23884,-2.75078 +-0.935255,-0.323541,2.06192,1.27105,1.23885,-2.74957 +-0.935547,-0.323209,2.06114,1.26623,1.23803,-2.74736 +-0.935942,-0.322535,2.06081,1.26199,1.23794,-2.74663 +-0.93626,-0.322365,2.0605,1.25856,1.23765,-2.74481 +-0.93655,-0.322149,2.06039,1.25558,1.2377,-2.74344 +-0.936896,-0.322243,2.06023,1.25289,1.23842,-2.74238 +-0.937557,-0.321669,2.06029,1.25025,1.23984,-2.74188 +-0.938004,-0.321814,2.06021,1.248,1.24138,-2.74131 +-0.938227,-0.322146,2.06005,1.24583,1.24221,-2.74003 +-0.939064,-0.32167,2.05978,1.24311,1.24424,-2.73955 +-0.93964,-0.321205,2.05948,1.24035,1.24568,-2.73889 +-0.940072,-0.321199,2.05908,1.23772,1.24722,-2.73822 +-0.940447,-0.321135,2.05822,1.23387,1.24857,-2.73723 +-0.940966,-0.321003,2.05723,1.22959,1.25073,-2.73693 +-0.941079,-0.32145,2.0562,1.22573,1.25226,-2.7359 +-0.941604,-0.320934,2.05517,1.22127,1.25413,-2.73538 +-0.941651,-0.321107,2.05404,1.21696,1.25546,-2.73445 +-0.941936,-0.320812,2.05282,1.21216,1.25714,-2.73383 +-0.94215,-0.320695,2.05157,1.20755,1.25869,-2.73274 +-0.942353,-0.320904,2.05014,1.2028,1.26093,-2.73243 +-0.942773,-0.320883,2.0488,1.1985,1.26354,-2.73209 +-0.943182,-0.320739,2.04762,1.19454,1.26595,-2.73174 +-0.943478,-0.320769,2.04648,1.19091,1.2685,-2.73174 +-0.943909,-0.321,2.04522,1.18775,1.27137,-2.73126 +-0.944206,-0.321134,2.04418,1.18477,1.27419,-2.73183 +-0.944463,-0.321613,2.04297,1.18204,1.2774,-2.7325 +-0.944758,-0.322133,2.04177,1.17959,1.28072,-2.7333 +-0.945125,-0.322451,2.04083,1.17777,1.28425,-2.73433 +-0.945398,-0.322853,2.03983,1.17623,1.28745,-2.73495 +-0.94572,-0.323063,2.03901,1.1751,1.29072,-2.73603 +-0.945713,-0.323901,2.03814,1.17455,1.29312,-2.73653 +-0.945972,-0.324555,2.03727,1.17452,1.29621,-2.73753 +-0.946264,-0.32495,2.03655,1.17473,1.29919,-2.73943 +-0.946663,-0.325515,2.03559,1.17485,1.30237,-2.74139 +-0.946932,-0.326632,2.0345,1.17549,1.30563,-2.74345 +-0.947378,-0.327638,2.03345,1.1764,1.30897,-2.74577 +-0.947773,-0.328717,2.03265,1.17815,1.31229,-2.74834 +-0.948102,-0.329585,2.03165,1.17928,1.3151,-2.75103 +-0.948354,-0.331132,2.03093,1.18194,1.31819,-2.75386 +-0.948641,-0.332483,2.03019,1.18436,1.32099,-2.75664 +-0.948744,-0.334165,2.0295,1.18721,1.32329,-2.75892 +-0.949163,-0.335289,2.02906,1.19057,1.32588,-2.76157 +-0.949631,-0.336353,2.02841,1.19353,1.32844,-2.76398 +-0.950044,-0.337385,2.02766,1.19607,1.33055,-2.76629 +-0.950276,-0.338695,2.02677,1.19841,1.3325,-2.76883 +-0.950951,-0.339075,2.02577,1.19999,1.33478,-2.77168 +-0.951322,-0.340204,2.02445,1.20144,1.33657,-2.77391 +-0.951572,-0.341789,2.0231,1.20314,1.33863,-2.77642 +-0.951903,-0.343164,2.02184,1.20516,1.34034,-2.77824 +-0.952189,-0.344214,2.02094,1.20762,1.34149,-2.7802 +-0.952539,-0.345006,2.02006,1.20976,1.34244,-2.78217 +-0.952822,-0.345856,2.01924,1.2121,1.34316,-2.78407 +-0.953422,-0.346033,2.01878,1.21459,1.34435,-2.78679 +-0.953599,-0.34687,2.01832,1.21739,1.34472,-2.78876 +-0.953715,-0.347741,2.01794,1.22037,1.34476,-2.79051 +-0.954009,-0.348128,2.01775,1.22361,1.34451,-2.79166 +-0.954207,-0.348733,2.01787,1.22766,1.34422,-2.7929 +-0.954385,-0.349345,2.01778,1.231,1.34393,-2.79452 +-0.954679,-0.349429,2.01749,1.23345,1.34337,-2.79581 +-0.955114,-0.349555,2.01738,1.23641,1.34314,-2.79731 +-0.955265,-0.349799,2.01724,1.23927,1.34194,-2.79827 +-0.955052,-0.350263,2.01725,1.24214,1.33999,-2.79896 +-0.954961,-0.350661,2.01728,1.24502,1.33827,-2.79959 +-0.955024,-0.350468,2.0172,1.24698,1.33641,-2.80019 +-0.955088,-0.350542,2.01728,1.24972,1.33434,-2.79986 +-0.955037,-0.350053,2.0176,1.25179,1.33185,-2.80074 +-0.95509,-0.34971,2.018,1.25446,1.32942,-2.80078 +-0.954982,-0.349879,2.01845,1.25751,1.32693,-2.80071 +-0.95495,-0.349767,2.0192,1.26094,1.32435,-2.80088 +-0.954951,-0.349784,2.01993,1.26426,1.32196,-2.8011 +-0.955001,-0.349356,2.02055,1.26672,1.31912,-2.80077 +-0.955006,-0.348986,2.02114,1.26884,1.3163,-2.80071 +-0.95488,-0.349268,2.02152,1.27103,1.31353,-2.79994 +-0.954944,-0.348705,2.02203,1.27226,1.31076,-2.79943 +-0.954869,-0.348636,2.02227,1.27318,1.30779,-2.79845 +-0.954858,-0.348549,2.02281,1.27457,1.30501,-2.79732 +-0.955019,-0.347944,2.02315,1.27477,1.30235,-2.79608 +-0.954977,-0.347632,2.02356,1.27527,1.29918,-2.79379 +-0.955245,-0.346991,2.02388,1.27503,1.29664,-2.79173 +-0.955205,-0.346516,2.02439,1.27487,1.29368,-2.7898 +-0.95537,-0.34582,2.02484,1.27415,1.29123,-2.7879 +-0.955348,-0.345039,2.02557,1.27342,1.28851,-2.78615 +-0.95546,-0.344096,2.0258,1.27122,1.28575,-2.7836 +-0.955604,-0.343139,2.02619,1.26925,1.28343,-2.7813 +-0.955851,-0.342009,2.02644,1.26654,1.2814,-2.779 +-0.956208,-0.340709,2.02653,1.26309,1.27985,-2.77728 +-0.956296,-0.339689,2.02641,1.25916,1.27779,-2.77493 +-0.956408,-0.338649,2.02626,1.25515,1.27573,-2.77225 +-0.956847,-0.337295,2.02597,1.25066,1.27453,-2.76967 +-0.957149,-0.336458,2.02572,1.24643,1.2738,-2.76733 +-0.957597,-0.335536,2.0256,1.24256,1.27348,-2.76495 +-0.958016,-0.334779,2.02549,1.23858,1.27374,-2.76267 +-0.95834,-0.33423,2.02565,1.23534,1.27393,-2.76033 +-0.958585,-0.333287,2.02614,1.23223,1.27396,-2.75853 +-0.958922,-0.332011,2.02644,1.22868,1.2735,-2.75582 +-0.959133,-0.331058,2.0268,1.2253,1.27346,-2.75383 +-0.959202,-0.329903,2.02703,1.22124,1.27332,-2.75213 +-0.959285,-0.329185,2.02681,1.21684,1.27348,-2.74973 +-0.959264,-0.328311,2.02695,1.213,1.27356,-2.748 +-0.959207,-0.32755,2.02633,1.20771,1.27346,-2.74524 +-0.95938,-0.32648,2.02575,1.2023,1.27432,-2.74366 +-0.959513,-0.325529,2.02482,1.19583,1.27582,-2.74269 +-0.959467,-0.325001,2.02373,1.18956,1.27712,-2.74125 +-0.959718,-0.323534,2.02245,1.1823,1.27832,-2.7397 +-0.959913,-0.322388,2.02151,1.17614,1.27989,-2.73783 +-0.959806,-0.322138,2.02058,1.1705,1.28197,-2.7366 +-0.95983,-0.321836,2.01969,1.16542,1.28403,-2.73469 +-0.959866,-0.320816,2.01927,1.16085,1.28559,-2.73325 +-0.960016,-0.319943,2.01856,1.15606,1.28763,-2.73172 +-0.960253,-0.319435,2.01762,1.15125,1.29045,-2.73047 +-0.960746,-0.318276,2.01681,1.14639,1.29369,-2.73033 +-0.960866,-0.317845,2.01636,1.14332,1.29642,-2.72961 +-0.960871,-0.317385,2.01577,1.13992,1.2989,-2.72895 +-0.96105,-0.317173,2.01499,1.13669,1.30238,-2.7288 +-0.961185,-0.316869,2.01414,1.13333,1.3058,-2.72918 +-0.961204,-0.316693,2.01341,1.13062,1.30919,-2.72988 +-0.961041,-0.31612,2.01299,1.12832,1.31141,-2.73004 +-0.961009,-0.316056,2.01238,1.12683,1.31406,-2.72999 +-0.960579,-0.315883,2.01201,1.12566,1.31555,-2.73003 +-0.96049,-0.315612,2.01157,1.12462,1.31784,-2.73059 +-0.960187,-0.315541,2.01155,1.12475,1.3199,-2.73183 +-0.960052,-0.315779,2.01133,1.12522,1.32237,-2.73285 +-0.960069,-0.315958,2.01125,1.12614,1.32539,-2.73491 +-0.960205,-0.316423,2.01124,1.12776,1.32902,-2.73715 +-0.960418,-0.316786,2.01119,1.12941,1.33251,-2.73922 +-0.960701,-0.317237,2.01108,1.13126,1.33622,-2.74136 +-0.961105,-0.317459,2.01122,1.13345,1.34013,-2.74437 +-0.961149,-0.318354,2.01134,1.13684,1.34281,-2.74483 +-0.9616,-0.318908,2.01171,1.14065,1.3466,-2.74683 +-0.961848,-0.31973,2.01202,1.1445,1.34955,-2.74796 +-0.961885,-0.320841,2.01268,1.14936,1.3523,-2.74963 +-0.962373,-0.321591,2.01387,1.15588,1.35553,-2.75121 +-0.962773,-0.323067,2.01513,1.16309,1.35897,-2.75316 +-0.963317,-0.324509,2.01703,1.17214,1.36246,-2.75461 +-0.964098,-0.325696,2.01925,1.18193,1.36598,-2.75602 +-0.964735,-0.327038,2.02185,1.19256,1.36898,-2.75731 +-0.965482,-0.328116,2.02433,1.20295,1.37152,-2.75815 +-0.966183,-0.329356,2.0277,1.21565,1.37391,-2.75922 +-0.96676,-0.330875,2.03061,1.22737,1.37607,-2.76025 +-0.967503,-0.332179,2.03378,1.23977,1.37829,-2.76107 +-0.96796,-0.333837,2.03688,1.25207,1.37986,-2.76164 +-0.968486,-0.335594,2.04023,1.26527,1.38141,-2.76234 +-0.969191,-0.337035,2.04373,1.27882,1.38275,-2.76243 +-0.969942,-0.338928,2.04764,1.29375,1.38469,-2.76273 +-0.970826,-0.341068,2.05142,1.309,1.38681,-2.76259 +-0.971578,-0.342691,2.05566,1.32452,1.3881,-2.76254 +-0.972442,-0.344851,2.06023,1.34165,1.38967,-2.76205 +-0.973177,-0.346859,2.06477,1.35855,1.39078,-2.76145 +-0.97382,-0.349394,2.0695,1.37641,1.39152,-2.76034 +-0.974583,-0.351579,2.07446,1.39475,1.39248,-2.75945 +-0.975578,-0.353868,2.07958,1.41411,1.39356,-2.7579 +-0.976062,-0.356474,2.08425,1.43218,1.39267,-2.75358 +-0.976677,-0.359299,2.08888,1.45073,1.39253,-2.75108 +-0.977247,-0.361436,2.09419,1.46983,1.39418,-2.75418 +-0.977675,-0.363862,2.09887,1.4879,1.39349,-2.75202 +-0.978414,-0.366076,2.10344,1.50562,1.39396,-2.75062 +-0.979757,-0.368068,2.10744,1.52175,1.39658,-2.75017 +-0.979704,-0.369901,2.11143,1.53645,1.39553,-2.74944 +-0.979831,-0.371406,2.11487,1.5496,1.39323,-2.74547 +-0.979591,-0.372987,2.11862,1.56302,1.39269,-2.74701 +-0.97943,-0.373999,2.12195,1.57487,1.39057,-2.7458 +-0.978786,-0.375454,2.12524,1.58657,1.38823,-2.74564 +-0.978028,-0.376505,2.12858,1.59798,1.38468,-2.74445 +-0.977591,-0.377064,2.13218,1.6096,1.38167,-2.74365 +-0.978154,-0.377833,2.13623,1.62333,1.38221,-2.74454 +-0.977081,-0.379197,2.13984,1.63518,1.37817,-2.74287 +-0.976245,-0.380343,2.1436,1.64701,1.37481,-2.74121 +-0.975551,-0.381387,2.14729,1.65856,1.37167,-2.73927 +-0.97492,-0.381995,2.15105,1.66958,1.36865,-2.73744 +-0.975815,-0.382147,2.1548,1.68049,1.37092,-2.73817 +-0.975431,-0.382285,2.15824,1.68984,1.36848,-2.73627 +-0.975305,-0.382122,2.16145,1.69828,1.36661,-2.73438 +-0.974949,-0.382137,2.16477,1.70659,1.36497,-2.73351 +-0.974568,-0.381929,2.16774,1.71382,1.36267,-2.7313 +-0.974063,-0.381501,2.17087,1.72047,1.36049,-2.72999 +-0.973458,-0.380944,2.17381,1.72642,1.35798,-2.72831 +-0.97276,-0.38002,2.17664,1.73105,1.35522,-2.7268 +-0.972188,-0.378961,2.17927,1.73475,1.35308,-2.72572 +-0.970417,-0.377893,2.18172,1.73723,1.34662,-2.72292 +-0.970231,-0.37552,2.18407,1.73823,1.34505,-2.72217 +-0.969866,-0.373168,2.18641,1.7388,1.34316,-2.72142 +-0.969866,-0.373168,2.18641,1.7388,1.34316,-2.72142 +-0.968178,-0.366074,2.19037,1.73423,1.33386,-2.71714 +-0.967805,-0.364059,2.19235,1.73344,1.33277,-2.7167 +-0.967958,-0.36178,2.19401,1.73159,1.33341,-2.7159 +-0.968063,-0.358759,2.19594,1.72942,1.33322,-2.71577 +-0.968112,-0.355647,2.19771,1.72685,1.3325,-2.71457 +-0.968025,-0.352533,2.19951,1.724,1.33184,-2.71396 +-0.968007,-0.348951,2.2012,1.7207,1.33052,-2.71203 +-0.96694,-0.346616,2.20292,1.71823,1.32695,-2.70982 +-0.966341,-0.34424,2.20438,1.7151,1.32528,-2.70809 +-0.965279,-0.340026,2.20559,1.70869,1.32043,-2.70568 +-0.964754,-0.33757,2.20683,1.70498,1.3191,-2.70413 +-0.964555,-0.334197,2.20816,1.70074,1.31797,-2.70321 +-0.964099,-0.33151,2.20955,1.6974,1.31648,-2.70209 +-0.963783,-0.328856,2.21062,1.69345,1.31553,-2.70128 +-0.963574,-0.326097,2.21158,1.68927,1.31475,-2.70074 +-0.964237,-0.322965,2.2123,1.68444,1.31693,-2.70136 +-0.963147,-0.321252,2.2131,1.68094,1.31371,-2.69938 +-0.96294,-0.319682,2.21373,1.67762,1.31391,-2.69915 +-0.962764,-0.317748,2.21413,1.67366,1.31367,-2.69852 +-0.962968,-0.315502,2.21445,1.66959,1.31417,-2.69828 +-0.962133,-0.312245,2.21443,1.66295,1.31026,-2.69648 +-0.962325,-0.310409,2.21398,1.65759,1.31034,-2.69491 +-0.962841,-0.308229,2.21358,1.65207,1.31202,-2.69573 +-0.963215,-0.306641,2.21274,1.64621,1.31352,-2.69579 +-0.963627,-0.305157,2.21185,1.64022,1.31546,-2.69662 +-0.964391,-0.30341,2.21075,1.63389,1.31771,-2.69695 +-0.965034,-0.30199,2.20954,1.62766,1.31992,-2.69733 +-0.965586,-0.300725,2.2081,1.62115,1.32172,-2.69708 +-0.966302,-0.299574,2.20669,1.61497,1.32413,-2.69772 +-0.967021,-0.298259,2.2051,1.60829,1.32631,-2.69849 +-0.967763,-0.297221,2.2034,1.6016,1.32895,-2.69926 +-0.96908,-0.294499,2.20136,1.59308,1.33149,-2.70116 +-0.968437,-0.294382,2.19955,1.58673,1.33012,-2.70077 +-0.968717,-0.293528,2.19738,1.57938,1.33147,-2.70176 +-0.969165,-0.292982,2.19496,1.57211,1.33309,-2.70255 +-0.969474,-0.291973,2.19209,1.56316,1.33445,-2.70375 +-0.970128,-0.291422,2.18915,1.55502,1.33698,-2.70561 +-0.97063,-0.290802,2.18585,1.54585,1.33907,-2.70715 +-0.971417,-0.289901,2.18257,1.53677,1.34185,-2.7094 +-0.972325,-0.289193,2.17916,1.52783,1.34489,-2.71146 +-0.973325,-0.288746,2.17581,1.51957,1.34829,-2.7136 +-0.973852,-0.28897,2.17264,1.5122,1.35085,-2.71567 +-0.974646,-0.289159,2.16923,1.50478,1.35363,-2.71729 +-0.975557,-0.289499,2.16597,1.49814,1.35646,-2.71915 +-0.976202,-0.290183,2.16277,1.49184,1.3589,-2.72101 +-0.977181,-0.290129,2.15948,1.48487,1.36161,-2.72339 +-0.978045,-0.290794,2.15599,1.47829,1.36394,-2.72468 +-0.979012,-0.29104,2.1521,1.47031,1.36659,-2.72658 +-0.979666,-0.291566,2.14805,1.46194,1.36892,-2.72878 +-0.979641,-0.292797,2.14343,1.4524,1.36968,-2.72987 +-0.9804,-0.292718,2.13889,1.4422,1.37179,-2.73207 +-0.981166,-0.292615,2.13406,1.43125,1.37399,-2.73443 +-0.981689,-0.293067,2.12906,1.42048,1.37581,-2.73703 +-0.982592,-0.293367,2.12392,1.40956,1.37847,-2.73966 +-0.983167,-0.293821,2.11906,1.39923,1.38019,-2.74194 +-0.983632,-0.294553,2.1147,1.39031,1.38199,-2.74457 +-0.984256,-0.29515,2.11046,1.38182,1.38368,-2.74677 +-0.98492,-0.295875,2.1064,1.3738,1.38569,-2.74947 +-0.985526,-0.296575,2.10231,1.36587,1.38712,-2.75131 +-0.986416,-0.297037,2.09827,1.35797,1.38896,-2.75314 +-0.987081,-0.297706,2.09441,1.35055,1.39036,-2.75489 +-0.987573,-0.298545,2.09027,1.34248,1.39155,-2.75656 +-0.988074,-0.299177,2.086,1.33376,1.39272,-2.75843 +-0.988318,-0.299995,2.08156,1.3246,1.39356,-2.76029 +-0.988622,-0.300592,2.07684,1.31451,1.39441,-2.76242 +-0.988911,-0.300884,2.07209,1.30395,1.39504,-2.76433 +-0.989321,-0.300877,2.06725,1.29303,1.39587,-2.76666 +-0.989451,-0.30119,2.06233,1.28177,1.39637,-2.76884 +-0.989569,-0.301305,2.0574,1.27051,1.39629,-2.7703 +-0.989626,-0.30161,2.05273,1.25996,1.39642,-2.77222 +-0.989787,-0.301938,2.04795,1.24924,1.39663,-2.77396 +-0.989855,-0.301972,2.04341,1.23889,1.39631,-2.77523 +-0.990177,-0.302168,2.03948,1.23028,1.39669,-2.77707 +-0.990222,-0.30286,2.03559,1.22213,1.39651,-2.77835 +-0.990417,-0.30341,2.03214,1.21498,1.397,-2.78013 +-0.990553,-0.304135,2.0289,1.20833,1.39709,-2.78114 +-0.990946,-0.304551,2.02591,1.20222,1.39754,-2.78194 +-0.991112,-0.304244,2.02356,1.19624,1.39861,-2.78529 +-0.991512,-0.304717,2.02008,1.18907,1.3977,-2.7832 +-0.991792,-0.304411,2.01698,1.18149,1.3976,-2.78391 +-0.991837,-0.304243,2.01379,1.1735,1.39709,-2.78467 +-0.991958,-0.303893,2.01039,1.16502,1.39638,-2.78493 +-0.9918,-0.30372,2.00705,1.15649,1.39552,-2.78587 +-0.991629,-0.303303,2.00395,1.14828,1.39425,-2.78647 +-0.991433,-0.302952,2.00106,1.14061,1.39314,-2.78721 +-0.991365,-0.302501,1.99815,1.13312,1.3922,-2.78746 +-0.991356,-0.301547,1.99627,1.12703,1.39287,-2.79114 +-0.991301,-0.301823,1.99325,1.1203,1.39086,-2.78839 +-0.991259,-0.301507,1.99153,1.11572,1.39018,-2.78854 +-0.991031,-0.300849,1.99046,1.1118,1.39047,-2.79179 +-0.991089,-0.301268,1.98848,1.10797,1.38908,-2.78933 +-0.991194,-0.30107,1.98743,1.10542,1.38902,-2.79013 +-0.991244,-0.301173,1.98656,1.10372,1.389,-2.79078 +-0.991386,-0.30103,1.98581,1.10225,1.38918,-2.7915 +-0.991653,-0.300974,1.98486,1.10064,1.38961,-2.79215 +-0.991808,-0.300207,1.98446,1.09914,1.39121,-2.79623 +-0.992073,-0.301162,1.9827,1.09712,1.39112,-2.79458 +-0.992248,-0.301463,1.98121,1.09484,1.39184,-2.79557 +-0.992407,-0.301742,1.97982,1.09265,1.39299,-2.79731 +-0.992597,-0.301811,1.97809,1.08969,1.39376,-2.79833 +-0.992877,-0.302032,1.97649,1.08707,1.395,-2.80017 +-0.993093,-0.302371,1.97475,1.08444,1.39618,-2.80146 +-0.9934,-0.30262,1.97317,1.08197,1.39717,-2.80271 +-0.993607,-0.303062,1.97184,1.08016,1.39818,-2.80374 +-0.993946,-0.303352,1.9708,1.07889,1.39928,-2.80454 +-0.994452,-0.303319,1.9701,1.07811,1.4002,-2.80511 +-0.99475,-0.303593,1.9696,1.07774,1.40106,-2.80561 +-0.995198,-0.303519,1.96911,1.07705,1.4016,-2.80568 +-0.995529,-0.303519,1.96887,1.07679,1.40181,-2.80556 +-0.995731,-0.303285,1.96872,1.07629,1.40157,-2.8052 +-0.995602,-0.303358,1.96844,1.07538,1.40067,-2.80476 +-0.99573,-0.302908,1.96808,1.07391,1.40012,-2.80463 +-0.995517,-0.302496,1.96756,1.07184,1.39869,-2.80382 +-0.99527,-0.302506,1.9668,1.06964,1.39739,-2.80293 +-0.994992,-0.302237,1.96589,1.06672,1.39583,-2.8019 +-0.994774,-0.301845,1.96485,1.0634,1.39456,-2.80141 +-0.994356,-0.30174,1.96353,1.05947,1.39298,-2.80088 +-0.994214,-0.301335,1.96236,1.05605,1.3919,-2.80054 +-0.994051,-0.301435,1.96083,1.05242,1.39112,-2.80015 +-0.993867,-0.301449,1.95958,1.04955,1.39028,-2.80001 +-0.993622,-0.301493,1.95837,1.0469,1.38945,-2.80015 +-0.993601,-0.30168,1.95714,1.04475,1.38924,-2.80082 +-0.99367,-0.301995,1.95562,1.04258,1.38929,-2.80139 +-0.993361,-0.302915,1.95506,1.04271,1.39059,-2.80548 +-0.993343,-0.303651,1.95374,1.04163,1.39086,-2.80637 +-0.993627,-0.303894,1.95212,1.03974,1.3917,-2.80777 +-0.993989,-0.304444,1.95045,1.03815,1.39304,-2.80932 +-0.99426,-0.30534,1.94887,1.03732,1.39425,-2.81029 +-0.994592,-0.306052,1.94715,1.03599,1.39563,-2.81175 +-0.995023,-0.306867,1.94537,1.03474,1.39723,-2.81326 +-0.995419,-0.30743,1.94368,1.03344,1.39869,-2.81494 +-0.995687,-0.309335,1.9415,1.03256,1.39971,-2.81458 +-0.996179,-0.309942,1.94005,1.03186,1.40146,-2.81657 +-0.996726,-0.310418,1.93856,1.03085,1.4032,-2.81851 +-0.997016,-0.311281,1.93736,1.03058,1.40452,-2.82011 +-0.996976,-0.311856,1.93724,1.03172,1.40645,-2.82464 +-0.997324,-0.31213,1.93659,1.03173,1.40733,-2.82572 +-0.997644,-0.312299,1.93628,1.03223,1.40781,-2.82618 +-0.997889,-0.31218,1.93616,1.03248,1.40796,-2.82645 +-0.998081,-0.312016,1.9365,1.03346,1.40793,-2.82631 +-0.998275,-0.311833,1.93665,1.03388,1.40773,-2.82574 +-0.998307,-0.311149,1.93717,1.03421,1.40681,-2.8249 +-0.998261,-0.310637,1.93737,1.03378,1.40573,-2.82392 +-0.998532,-0.309579,1.93686,1.03141,1.40335,-2.82015 +-0.998155,-0.309021,1.93641,1.02905,1.40122,-2.81862 +-0.997914,-0.308412,1.93594,1.02663,1.39949,-2.81756 +-0.997543,-0.30768,1.93501,1.02306,1.39737,-2.81632 +-0.997197,-0.307044,1.93413,1.01956,1.39564,-2.8163 +-0.99691,-0.306575,1.9329,1.01583,1.39397,-2.81582 +-0.996644,-0.306384,1.9315,1.01219,1.39263,-2.81563 +-0.996502,-0.306,1.93038,1.00912,1.3915,-2.81579 +-0.996449,-0.305951,1.92917,1.0065,1.39103,-2.81623 +-0.996386,-0.306053,1.92819,1.00485,1.39049,-2.81631 +-0.996502,-0.306221,1.92758,1.00432,1.3908,-2.81704 +-0.996754,-0.306416,1.92686,1.00382,1.39146,-2.81809 +-0.997212,-0.306659,1.9261,1.00372,1.39258,-2.81898 +-0.997293,-0.307233,1.92621,1.00529,1.39507,-2.82364 +-0.997876,-0.307998,1.92473,1.00459,1.39522,-2.82141 +-0.998296,-0.308342,1.92422,1.00506,1.39811,-2.82605 +-0.998795,-0.308846,1.92296,1.00425,1.39982,-2.82788 +-0.999259,-0.309472,1.92138,1.00287,1.40133,-2.82961 +-0.999826,-0.310085,1.91975,1.00139,1.4032,-2.83166 +-1.00025,-0.310489,1.91806,0.999457,1.40442,-2.83323 +-1.00058,-0.311063,1.91648,0.997687,1.40567,-2.83484 +-1.00086,-0.311665,1.91511,0.996373,1.40649,-2.83582 +-1.00122,-0.312093,1.91406,0.995424,1.40764,-2.83725 +-1.00162,-0.312379,1.91317,0.994762,1.40842,-2.83806 +-1.00175,-0.314023,1.91199,0.994624,1.40836,-2.83655 +-1.002,-0.314374,1.91164,0.994785,1.4089,-2.83678 +-1.00251,-0.31443,1.91127,0.994557,1.4097,-2.83704 +-1.00276,-0.314436,1.91174,0.995331,1.4116,-2.84083 +-1.00316,-0.313623,1.91184,0.994936,1.41112,-2.83919 +-1.0039,-0.312318,1.91187,0.993876,1.41132,-2.83844 +-1.00389,-0.312072,1.91207,0.993654,1.41041,-2.83721 +-1.00392,-0.311325,1.91229,0.992788,1.4092,-2.83631 +-1.00362,-0.31085,1.91229,0.991567,1.40723,-2.83447 +-1.00299,-0.311628,1.91155,0.989766,1.40392,-2.83037 +-1.00285,-0.309687,1.91154,0.986694,1.40306,-2.83238 +-1.00237,-0.309316,1.91077,0.983563,1.401,-2.83157 +-1.00192,-0.30885,1.90976,0.979938,1.399,-2.83108 +-1.00155,-0.308477,1.9085,0.975977,1.39736,-2.83068 +-1.00141,-0.308063,1.90693,0.971707,1.39635,-2.83073 +-1.00104,-0.309038,1.90476,0.9678,1.39398,-2.82707 +-1.00099,-0.309037,1.90336,0.964686,1.39375,-2.82753 +-1.00099,-0.30823,1.90246,0.961825,1.39501,-2.83166 +-1.00118,-0.308566,1.90111,0.959726,1.39577,-2.83256 +-1.00159,-0.308806,1.89941,0.957195,1.39706,-2.83387 +-1.002,-0.309391,1.89801,0.95579,1.39879,-2.83545 +-1.00258,-0.309657,1.89668,0.954438,1.40081,-2.83745 +-1.00286,-0.311884,1.89515,0.954981,1.40197,-2.8361 +-1.0039,-0.311038,1.89423,0.953813,1.40565,-2.84086 +-1.0039,-0.313488,1.89354,0.95611,1.40768,-2.84235 +-1.00447,-0.314413,1.89283,0.957107,1.41005,-2.84377 +-1.00517,-0.314994,1.89205,0.957552,1.41238,-2.84519 +-1.00576,-0.31543,1.89138,0.957878,1.41426,-2.84664 +-1.00619,-0.315851,1.89085,0.958295,1.41563,-2.84738 +-1.00666,-0.316348,1.89034,0.958587,1.41705,-2.84821 +-1.00721,-0.316326,1.88991,0.958464,1.4183,-2.84899 +-1.00756,-0.316658,1.88966,0.958565,1.41914,-2.84937 +-1.00782,-0.316566,1.88959,0.95844,1.41929,-2.84908 +-1.00811,-0.316392,1.88982,0.958647,1.41963,-2.84875 +-1.00825,-0.315923,1.89048,0.959089,1.41913,-2.84769 +-1.0081,-0.315595,1.89116,0.959505,1.41776,-2.84512 +-1.00802,-0.314828,1.89184,0.959284,1.41655,-2.84338 +-1.0076,-0.314347,1.89267,0.959237,1.41466,-2.841 +-1.00768,-0.313374,1.89233,0.956791,1.41194,-2.83566 +-1.00738,-0.31244,1.89256,0.955017,1.41005,-2.83395 +-1.00706,-0.311644,1.89232,0.952431,1.40831,-2.83257 +-1.00693,-0.309641,1.89254,0.949714,1.40798,-2.83457 +-1.00639,-0.310582,1.8914,0.947237,1.40548,-2.83058 +-1.0064,-0.308804,1.89113,0.943926,1.40607,-2.83395 +-1.00627,-0.308497,1.89004,0.940772,1.4056,-2.83382 +-1.00611,-0.308266,1.88892,0.937675,1.40529,-2.83424 +-1.00597,-0.308311,1.88797,0.935487,1.4055,-2.8352 +-1.00606,-0.308407,1.88693,0.933573,1.40617,-2.83582 +-1.00624,-0.308669,1.88599,0.932284,1.40733,-2.83678 +-1.0066,-0.308837,1.88517,0.931541,1.40897,-2.838 +-1.00703,-0.309132,1.88439,0.93121,1.41099,-2.83935 +-1.00752,-0.309425,1.88375,0.931366,1.41304,-2.84059 +-1.00813,-0.309791,1.88304,0.931488,1.41566,-2.84235 +-1.00862,-0.310347,1.88236,0.931959,1.41784,-2.84343 +-1.00915,-0.310767,1.88161,0.932063,1.42006,-2.84446 +-1.00927,-0.312496,1.88092,0.933246,1.42245,-2.84575 +-1.00982,-0.312962,1.88012,0.933011,1.42478,-2.84704 +-1.00991,-0.314222,1.87958,0.933778,1.42651,-2.84779 +-1.01023,-0.314448,1.87897,0.933289,1.42809,-2.84853 +-1.0107,-0.314351,1.87852,0.93282,1.42956,-2.84901 +-1.0108,-0.314345,1.87815,0.932151,1.43009,-2.84877 +-1.01151,-0.312919,1.87808,0.93092,1.43112,-2.84884 +-1.0115,-0.312526,1.87818,0.930602,1.43083,-2.84785 +-1.01162,-0.311832,1.87856,0.930419,1.43082,-2.84749 +-1.012,-0.310354,1.87871,0.929108,1.43055,-2.84645 +-1.01208,-0.309607,1.87883,0.928197,1.43015,-2.84542 +-1.0118,-0.3089,1.87932,0.927726,1.4288,-2.84398 +-1.01187,-0.307656,1.87965,0.926518,1.42789,-2.84301 +-1.0116,-0.306865,1.87998,0.925636,1.42631,-2.84084 +-1.01134,-0.305855,1.88049,0.924675,1.42485,-2.83962 +-1.01098,-0.305076,1.88094,0.923937,1.42309,-2.83775 +-1.01064,-0.304259,1.88107,0.922552,1.42153,-2.83642 +-1.01036,-0.303266,1.88108,0.920779,1.42002,-2.83558 +-1.01005,-0.302681,1.88084,0.919124,1.41868,-2.83442 +-1.00993,-0.302057,1.88021,0.916633,1.41799,-2.83424 +-1.00966,-0.301771,1.87946,0.914414,1.4171,-2.8337 +-1.00954,-0.30166,1.87866,0.912473,1.41692,-2.83393 +-1.00962,-0.301358,1.87744,0.909756,1.41695,-2.83448 +-1.00972,-0.301201,1.87614,0.90725,1.41725,-2.8352 +-1.00973,-0.301444,1.87506,0.905621,1.41782,-2.83618 +-1.01005,-0.301656,1.87382,0.904064,1.41906,-2.83736 +-1.01033,-0.301881,1.87251,0.902341,1.42034,-2.83879 +-1.01058,-0.302073,1.87141,0.90104,1.42175,-2.84024 +-1.01108,-0.302456,1.87021,0.899907,1.42392,-2.84203 +-1.01137,-0.302817,1.86874,0.898167,1.42535,-2.84327 +-1.01173,-0.303192,1.86744,0.896785,1.42749,-2.84524 +-1.0123,-0.30348,1.86586,0.894842,1.42972,-2.8469 +-1.01281,-0.303826,1.86436,0.893071,1.43187,-2.84854 +-1.01339,-0.303924,1.86291,0.891141,1.43384,-2.85016 +-1.01393,-0.304058,1.86158,0.889439,1.43573,-2.85138 +-1.0145,-0.303919,1.86072,0.888189,1.43783,-2.85342 +-1.0149,-0.303836,1.8598,0.886835,1.43865,-2.85346 +-1.01525,-0.303576,1.85936,0.886062,1.43906,-2.85331 +-1.01537,-0.302822,1.85955,0.885794,1.43883,-2.8531 +-1.01539,-0.302247,1.86008,0.886129,1.43825,-2.85257 +-1.01544,-0.301468,1.86042,0.886051,1.43671,-2.85016 +-1.01526,-0.300722,1.86095,0.8859,1.43511,-2.84843 +-1.01514,-0.299826,1.86108,0.884613,1.43355,-2.84679 +-1.01478,-0.299053,1.86118,0.882981,1.43167,-2.84549 +-1.01457,-0.298177,1.86078,0.880365,1.42998,-2.84389 +-1.01443,-0.297255,1.85988,0.876558,1.42847,-2.84273 +-1.01419,-0.296908,1.8588,0.872897,1.42694,-2.84102 +-1.01404,-0.296161,1.85754,0.868597,1.42568,-2.84033 +-1.01385,-0.295534,1.85631,0.864507,1.42463,-2.83997 +-1.01378,-0.294965,1.85507,0.860829,1.42372,-2.83947 +-1.01349,-0.294532,1.85401,0.857534,1.42262,-2.83947 +-1.01339,-0.29426,1.85307,0.855092,1.42212,-2.83951 +-1.01362,-0.292808,1.85203,0.851577,1.42152,-2.8398 +-1.0132,-0.293513,1.8513,0.850623,1.42129,-2.84038 +-1.01364,-0.292362,1.85018,0.847742,1.42167,-2.84094 +-1.01346,-0.293361,1.84932,0.847251,1.42229,-2.84168 +-1.01406,-0.292748,1.84789,0.844589,1.42295,-2.84109 +-1.01412,-0.293629,1.84673,0.843753,1.42493,-2.84366 +-1.01448,-0.293576,1.84548,0.841706,1.42705,-2.84649 +-1.01483,-0.293901,1.84379,0.839547,1.42853,-2.8476 +-1.01503,-0.294241,1.84216,0.837171,1.43028,-2.85025 +-1.01564,-0.294549,1.84027,0.834662,1.43218,-2.8515 +-1.01584,-0.29484,1.83865,0.83225,1.43378,-2.85371 +-1.01616,-0.295033,1.83716,0.830104,1.43506,-2.85494 +-1.01655,-0.295175,1.8359,0.828302,1.43644,-2.85595 +-1.01681,-0.295229,1.83505,0.827139,1.43745,-2.85651 +-1.01697,-0.295219,1.83441,0.826189,1.43808,-2.8566 +-1.01714,-0.29499,1.83415,0.82572,1.43827,-2.85616 +-1.01739,-0.294529,1.8339,0.824968,1.43842,-2.85558 +-1.01753,-0.293927,1.83401,0.824494,1.43806,-2.85455 +-1.01752,-0.293328,1.83431,0.824216,1.4372,-2.85295 +-1.01777,-0.291841,1.83426,0.822316,1.4363,-2.85131 +-1.01764,-0.291113,1.83428,0.820833,1.4351,-2.84943 +-1.01801,-0.289152,1.83378,0.817539,1.434,-2.84743 +-1.01765,-0.288377,1.83338,0.814796,1.43225,-2.8458 +-1.0172,-0.287843,1.83246,0.811104,1.43033,-2.84413 +-1.01683,-0.286997,1.8309,0.805879,1.42841,-2.84335 +-1.01631,-0.286924,1.82902,0.800709,1.42629,-2.84181 +-1.01581,-0.286247,1.82699,0.794719,1.42413,-2.84145 +-1.01534,-0.286075,1.82456,0.788625,1.42224,-2.84098 +-1.01492,-0.285787,1.82223,0.782785,1.4206,-2.84093 +-1.01465,-0.285471,1.82025,0.777938,1.41929,-2.84111 +-1.01432,-0.285636,1.81821,0.773603,1.41824,-2.84088 +-1.01422,-0.285401,1.81659,0.770181,1.4176,-2.84122 +-1.01443,-0.285033,1.81543,0.767961,1.41789,-2.84213 +-1.01459,-0.285029,1.81457,0.766759,1.41843,-2.84313 +-1.01508,-0.284729,1.81354,0.765444,1.41954,-2.8442 +-1.01539,-0.284684,1.81267,0.76468,1.4205,-2.84541 +-1.0158,-0.284735,1.81171,0.763904,1.42222,-2.84739 +-1.01631,-0.284718,1.81016,0.762102,1.42352,-2.84891 +-1.0168,-0.285202,1.80828,0.760037,1.4254,-2.85081 +-1.01704,-0.286053,1.80652,0.758438,1.42693,-2.85271 +-1.01728,-0.286791,1.80429,0.755794,1.42818,-2.85404 +-1.01759,-0.287362,1.80222,0.753269,1.4296,-2.85578 +-1.01798,-0.287917,1.80021,0.750895,1.43093,-2.85696 +-1.01821,-0.288278,1.79872,0.749176,1.43186,-2.8581 +-1.01857,-0.288344,1.79731,0.747328,1.43264,-2.85901 +-1.01891,-0.288419,1.79642,0.746465,1.43342,-2.85964 +-1.01926,-0.287981,1.79601,0.745816,1.43372,-2.86016 +-1.0196,-0.287853,1.79563,0.745652,1.43383,-2.85943 +-1.01995,-0.287249,1.79552,0.745202,1.43363,-2.85919 +-1.02019,-0.286826,1.7953,0.744508,1.4332,-2.85851 +-1.02047,-0.286045,1.79518,0.743411,1.43262,-2.85799 +-1.02066,-0.285224,1.79463,0.741167,1.43172,-2.85724 +-1.02073,-0.284738,1.79401,0.739036,1.4307,-2.8557 +-1.02084,-0.284049,1.79302,0.735834,1.42967,-2.85478 +-1.02093,-0.282884,1.79171,0.731545,1.42801,-2.85353 +-1.02071,-0.282476,1.79071,0.728453,1.42637,-2.85245 +-1.02036,-0.28208,1.7894,0.724792,1.42439,-2.85166 +-1.02017,-0.281569,1.78812,0.721487,1.42273,-2.8511 +-1.01982,-0.281291,1.7868,0.718254,1.42103,-2.85108 +-1.0196,-0.281047,1.78547,0.715489,1.41965,-2.851 +-1.0194,-0.281005,1.78415,0.713072,1.41859,-2.85107 +-1.01944,-0.280908,1.783,0.711323,1.41837,-2.85164 +-1.01962,-0.280647,1.78186,0.709709,1.41841,-2.85255 +-1.01985,-0.280568,1.78074,0.708367,1.41895,-2.85385 +-1.02014,-0.281204,1.77966,0.708009,1.42022,-2.85517 +-1.02049,-0.281478,1.77863,0.7075,1.42152,-2.85681 +-1.02096,-0.281787,1.77734,0.706621,1.42302,-2.85847 +-1.02134,-0.28242,1.77593,0.705722,1.42448,-2.86005 +-1.02169,-0.282936,1.77492,0.705511,1.42624,-2.86227 +-1.02219,-0.283359,1.77341,0.70438,1.42781,-2.86404 +-1.02261,-0.284135,1.77207,0.703802,1.42944,-2.86604 +-1.02297,-0.284701,1.77053,0.702638,1.43039,-2.86692 +-1.02334,-0.285017,1.76939,0.701741,1.43138,-2.86842 +-1.02382,-0.285071,1.76842,0.701033,1.43222,-2.8691 +-1.02427,-0.285065,1.76771,0.700479,1.433,-2.86977 +-1.02474,-0.284788,1.76741,0.700343,1.43356,-2.87022 +-1.02512,-0.28451,1.76755,0.701053,1.43365,-2.86922 +-1.02554,-0.284135,1.76763,0.701379,1.43367,-2.868 +-1.02581,-0.283292,1.76825,0.701938,1.43296,-2.86645 +-1.026,-0.282744,1.76846,0.701673,1.43201,-2.86445 +-1.02618,-0.282017,1.76862,0.700952,1.43093,-2.86277 +-1.02601,-0.281567,1.76811,0.698794,1.42883,-2.86068 +-1.02612,-0.280834,1.76713,0.695476,1.42728,-2.85939 +-1.02601,-0.280509,1.76591,0.691834,1.42563,-2.85858 +-1.02579,-0.280402,1.76397,0.686991,1.42354,-2.85765 +-1.02561,-0.280293,1.76191,0.682023,1.42165,-2.85694 +-1.0253,-0.280412,1.75987,0.677394,1.41991,-2.85679 +-1.02504,-0.280678,1.75764,0.672813,1.41846,-2.85673 +-1.0249,-0.280835,1.75581,0.669209,1.41752,-2.85708 +-1.02503,-0.281048,1.75381,0.665846,1.41721,-2.85757 +-1.02522,-0.281022,1.75244,0.663665,1.41728,-2.85857 +-1.0254,-0.281284,1.7515,0.662948,1.41789,-2.85959 +-1.02584,-0.281511,1.75059,0.662561,1.41905,-2.8609 +-1.02638,-0.281551,1.75001,0.662815,1.4205,-2.86223 +-1.02705,-0.281807,1.74941,0.66342,1.42261,-2.86397 +-1.0277,-0.281949,1.74863,0.663569,1.42437,-2.86536 +-1.02848,-0.282071,1.74774,0.663446,1.42665,-2.8675 +-1.02911,-0.282469,1.74637,0.66254,1.42848,-2.86905 +-1.02969,-0.282778,1.74489,0.661112,1.43001,-2.87061 +-1.03016,-0.283279,1.74331,0.659524,1.43136,-2.87186 +-1.03058,-0.283853,1.74165,0.657599,1.43261,-2.87326 +-1.03087,-0.284443,1.74027,0.656065,1.43342,-2.87407 +-1.03131,-0.284834,1.73887,0.654293,1.4343,-2.87493 +-1.0317,-0.285071,1.73795,0.653181,1.43488,-2.87525 +-1.03221,-0.285146,1.73704,0.651887,1.43555,-2.87546 +-1.03252,-0.285023,1.73679,0.651425,1.43546,-2.8751 +-1.03285,-0.284872,1.73629,0.650372,1.43523,-2.87438 +-1.03319,-0.284477,1.73621,0.649799,1.43496,-2.87401 +-1.03354,-0.283933,1.73583,0.6484,1.43437,-2.87361 +-1.03345,-0.283914,1.73549,0.647224,1.43297,-2.87223 +-1.0335,-0.283658,1.73471,0.645076,1.43182,-2.87159 +-1.03334,-0.283728,1.73356,0.642375,1.43042,-2.87076 +-1.03307,-0.283802,1.73202,0.638777,1.42886,-2.87069 +-1.03281,-0.284171,1.73029,0.635291,1.42777,-2.87066 +-1.03267,-0.284217,1.72828,0.631265,1.42658,-2.8709 +-1.03251,-0.284734,1.72625,0.627805,1.42594,-2.87109 +-1.03249,-0.284996,1.72437,0.62456,1.42604,-2.87251 +-1.03255,-0.28556,1.72255,0.622134,1.42637,-2.87299 +-1.03272,-0.285778,1.72125,0.620517,1.42717,-2.87441 +-1.03306,-0.286075,1.71987,0.619305,1.42831,-2.87529 +-1.03351,-0.286123,1.71913,0.619196,1.42991,-2.87683 +-1.03395,-0.286254,1.71851,0.619346,1.43177,-2.87866 +-1.03447,-0.286214,1.71783,0.619396,1.43337,-2.88011 +-1.03486,-0.286634,1.71743,0.620292,1.43514,-2.88179 +-1.03536,-0.286868,1.7169,0.620953,1.43679,-2.88265 +-1.03579,-0.287025,1.71663,0.621723,1.43832,-2.88371 +-1.03641,-0.286901,1.71632,0.622129,1.43998,-2.88466 +-1.03688,-0.287062,1.71568,0.621964,1.44107,-2.88498 +-1.03718,-0.28722,1.71498,0.621249,1.44181,-2.88539 +-1.03751,-0.287304,1.71436,0.620536,1.44237,-2.88553 +-1.03777,-0.287179,1.71351,0.618946,1.44235,-2.88544 +-1.0379,-0.28729,1.71253,0.617123,1.44203,-2.88524 +-1.03775,-0.287436,1.71166,0.615256,1.44084,-2.88454 +-1.03779,-0.287333,1.71067,0.612991,1.44001,-2.88439 +-1.03762,-0.287463,1.70948,0.61038,1.43852,-2.88339 +-1.03743,-0.287459,1.70827,0.607653,1.43711,-2.88275 +-1.03712,-0.287622,1.70704,0.604901,1.43571,-2.88233 +-1.03699,-0.287637,1.7055,0.601692,1.4345,-2.88207 +-1.03679,-0.287869,1.70404,0.598877,1.43366,-2.88239 +-1.03671,-0.288226,1.7027,0.596683,1.4334,-2.88293 +-1.03663,-0.288478,1.70143,0.594686,1.43313,-2.88379 +-1.03659,-0.288663,1.70023,0.593052,1.43337,-2.88528 +-1.03683,-0.288977,1.69911,0.592276,1.43413,-2.88627 +-1.03705,-0.28905,1.69843,0.59215,1.43491,-2.88767 +-1.03738,-0.289233,1.69766,0.592135,1.43597,-2.88897 +-1.03787,-0.28915,1.69734,0.592994,1.43741,-2.88986 +-1.03829,-0.28914,1.69733,0.594357,1.43887,-2.89076 +-1.03857,-0.288949,1.69767,0.595963,1.43972,-2.8913 +-1.03913,-0.288631,1.69779,0.597196,1.44066,-2.89103 +-1.03958,-0.288166,1.69826,0.598589,1.44141,-2.89083 +-1.03979,-0.287879,1.69869,0.599656,1.44128,-2.88986 +-1.03992,-0.287582,1.69864,0.599555,1.44052,-2.88885 +-1.03992,-0.287378,1.69839,0.598844,1.43946,-2.88794 +-1.03966,-0.287543,1.6978,0.597445,1.43792,-2.88683 +-1.03966,-0.287379,1.69648,0.594453,1.43664,-2.88661 +-1.03936,-0.287741,1.69478,0.590817,1.43511,-2.88637 +-1.0391,-0.288193,1.69287,0.586866,1.4339,-2.88673 +-1.03867,-0.288909,1.69097,0.583213,1.43239,-2.88613 +-1.03852,-0.2892,1.68919,0.579539,1.43172,-2.88717 +-1.03842,-0.289658,1.68753,0.576706,1.43121,-2.88719 +-1.03854,-0.289846,1.68642,0.574947,1.43139,-2.88793 +-1.03869,-0.289991,1.68556,0.573893,1.43179,-2.88868 +-1.03904,-0.289988,1.68496,0.573549,1.43261,-2.8893 +-1.03945,-0.289883,1.68501,0.574571,1.43377,-2.88988 +-1.03976,-0.289782,1.68497,0.575342,1.43473,-2.89079 +-1.04008,-0.289625,1.68514,0.576559,1.43567,-2.89152 +-1.0403,-0.289793,1.68501,0.57735,1.43639,-2.89217 +-1.04072,-0.289496,1.68445,0.577007,1.43715,-2.8931 +-1.04073,-0.289863,1.68409,0.577243,1.43759,-2.89371 +-1.04084,-0.289903,1.68342,0.576664,1.43778,-2.89415 +-1.04073,-0.290145,1.68248,0.575394,1.4375,-2.89458 +-1.04073,-0.290252,1.68122,0.573426,1.43738,-2.89542 +-1.04058,-0.290631,1.67967,0.571084,1.43679,-2.89552 +-1.04044,-0.290864,1.67841,0.568957,1.43642,-2.89615 +-1.04019,-0.291148,1.67695,0.566402,1.43563,-2.89635 +-1.04015,-0.291345,1.67552,0.564007,1.43534,-2.89657 +-1.0402,-0.291279,1.67466,0.562577,1.43522,-2.89673 +-1.04023,-0.291296,1.67383,0.561271,1.43498,-2.89656 +-1.04033,-0.29115,1.67336,0.560569,1.43493,-2.8966 +-1.04036,-0.291041,1.67334,0.560711,1.43488,-2.89643 +-1.04046,-0.290732,1.67304,0.56019,1.43456,-2.89618 +-1.0404,-0.290625,1.67287,0.559928,1.43421,-2.89599 +-1.04058,-0.290323,1.67247,0.55933,1.43414,-2.89593 +-1.04041,-0.290247,1.67196,0.558392,1.43351,-2.89588 +-1.04035,-0.290275,1.6711,0.556948,1.43318,-2.89588 +-1.04016,-0.290391,1.67018,0.55543,1.43257,-2.89573 +-1.03998,-0.290437,1.66931,0.553843,1.43213,-2.89608 +-1.03975,-0.290658,1.66818,0.551933,1.43142,-2.89592 +-1.03974,-0.290678,1.66742,0.550742,1.43158,-2.8965 +-1.03966,-0.290848,1.66659,0.54944,1.43139,-2.89653 +-1.03972,-0.290801,1.66614,0.54886,1.43154,-2.89659 +-1.03984,-0.290623,1.66576,0.54838,1.43171,-2.89655 +-1.03985,-0.290517,1.66555,0.548108,1.43185,-2.89671 +-1.03994,-0.290308,1.66533,0.547839,1.43213,-2.89701 +-1.03984,-0.290351,1.66509,0.547521,1.43214,-2.89702 +-1.03985,-0.290435,1.66455,0.546801,1.43245,-2.89716 +-1.03997,-0.290325,1.66396,0.545933,1.43282,-2.89729 +-1.03997,-0.290231,1.66347,0.545018,1.43317,-2.89785 +-1.0399,-0.290267,1.66283,0.544076,1.43316,-2.89769 +-1.03985,-0.290264,1.66225,0.543094,1.43328,-2.89815 +-1.03977,-0.290248,1.66155,0.54199,1.43317,-2.89828 +-1.03966,-0.290325,1.66104,0.541263,1.43308,-2.89825 +-1.03962,-0.290286,1.66058,0.540449,1.4333,-2.89902 +-1.03957,-0.290188,1.6601,0.539592,1.43299,-2.89878 +-1.03955,-0.290139,1.65975,0.539005,1.43325,-2.89902 +-1.03948,-0.290239,1.6592,0.538085,1.43293,-2.89851 +-1.03938,-0.29006,1.65896,0.53746,1.43286,-2.89866 +-1.03929,-0.289926,1.65845,0.53636,1.43247,-2.89843 +-1.03914,-0.289887,1.65795,0.535229,1.43226,-2.89873 +-1.03895,-0.290037,1.65737,0.534121,1.4319,-2.89856 +-1.03889,-0.289812,1.65682,0.532918,1.43161,-2.89853 +-1.03883,-0.289567,1.65617,0.531242,1.43167,-2.89966 +-1.03873,-0.289651,1.65594,0.531011,1.4317,-2.89897 +-1.03866,-0.289536,1.65525,0.529579,1.43144,-2.89886 +-1.0386,-0.289354,1.65503,0.52902,1.43149,-2.89881 +-1.03863,-0.289231,1.65475,0.528495,1.43171,-2.89872 +-1.03864,-0.288915,1.65436,0.527625,1.4316,-2.89848 +-1.03839,-0.288924,1.65418,0.527197,1.43134,-2.89841 +-1.03835,-0.288669,1.65387,0.526507,1.43115,-2.89809 +-1.03827,-0.288298,1.65367,0.5259,1.43091,-2.89803 +-1.03823,-0.288129,1.65339,0.525356,1.43092,-2.89777 +-1.03811,-0.287841,1.65328,0.524926,1.43056,-2.8975 +-1.03802,-0.287507,1.65305,0.524266,1.4304,-2.89753 +-1.03786,-0.287294,1.65299,0.523974,1.43008,-2.89711 +-1.03778,-0.287266,1.65247,0.523012,1.42987,-2.89663 +-1.03772,-0.287035,1.65193,0.521804,1.4296,-2.89661 +-1.0375,-0.287127,1.65138,0.520737,1.42922,-2.89632 +-1.03734,-0.287115,1.65061,0.519225,1.4287,-2.89606 +-1.03731,-0.28719,1.64984,0.517905,1.42858,-2.89601 +-1.03713,-0.287142,1.64922,0.516623,1.42812,-2.89614 +-1.03698,-0.287241,1.64869,0.515807,1.42781,-2.89604 +-1.03692,-0.287255,1.64804,0.514836,1.42763,-2.89602 +-1.0369,-0.287079,1.64783,0.514456,1.42782,-2.89661 +-1.03684,-0.287031,1.6474,0.513906,1.42773,-2.8963 +-1.03685,-0.286834,1.64732,0.513859,1.42796,-2.89641 +-1.03693,-0.286719,1.64702,0.51353,1.42833,-2.89636 +-1.037,-0.286567,1.64657,0.512853,1.42857,-2.89635 +-1.03703,-0.286441,1.64628,0.512345,1.4288,-2.89661 +-1.03687,-0.286596,1.64545,0.510887,1.42864,-2.89659 +-1.03675,-0.286602,1.64494,0.509876,1.42871,-2.89696 +-1.0366,-0.286696,1.64407,0.508338,1.42835,-2.89672 +-1.03654,-0.286691,1.64337,0.507073,1.42844,-2.89702 +-1.03628,-0.286849,1.6426,0.505621,1.42811,-2.89715 +-1.03614,-0.286711,1.64209,0.50456,1.42793,-2.89703 +-1.0361,-0.286492,1.64178,0.503907,1.42799,-2.89702 +-1.03605,-0.28622,1.64176,0.503734,1.42802,-2.89679 +-1.03597,-0.285782,1.64196,0.503749,1.42787,-2.89652 +-1.03595,-0.285463,1.64212,0.503862,1.42789,-2.89601 +-1.03621,-0.28485,1.64196,0.503289,1.42819,-2.89624 +-1.03609,-0.284609,1.64195,0.502943,1.42774,-2.89579 +-1.03604,-0.284341,1.64199,0.502759,1.42749,-2.89546 +-1.03605,-0.283834,1.64127,0.500764,1.42695,-2.896 +-1.03588,-0.283892,1.64094,0.500209,1.4263,-2.895 +-1.03581,-0.283817,1.64032,0.498861,1.42578,-2.8948 +-1.03554,-0.283584,1.63993,0.497719,1.42487,-2.89456 +-1.03535,-0.28346,1.63937,0.496439,1.42418,-2.89442 +-1.03516,-0.283401,1.63892,0.495506,1.42369,-2.89444 +-1.03516,-0.283187,1.63827,0.494118,1.4233,-2.89456 +-1.03497,-0.283145,1.63789,0.493445,1.42277,-2.89427 +-1.03503,-0.283088,1.63719,0.492267,1.42265,-2.89437 +-1.03504,-0.282774,1.63686,0.491595,1.42255,-2.89477 +-1.03487,-0.283042,1.6365,0.491044,1.42253,-2.89519 +-1.035,-0.282871,1.63616,0.49065,1.42265,-2.89537 +-1.03507,-0.28279,1.63577,0.490172,1.42275,-2.89559 +-1.03526,-0.282712,1.63549,0.489944,1.42324,-2.89625 +-1.03532,-0.282525,1.63542,0.490015,1.42327,-2.89643 +-1.03539,-0.28248,1.6351,0.489706,1.42325,-2.89644 +-1.03533,-0.282414,1.63497,0.489492,1.4232,-2.89696 +-1.03548,-0.282343,1.6345,0.488897,1.42339,-2.89728 +-1.03551,-0.282325,1.6341,0.488402,1.4231,-2.89704 +-1.03539,-0.282412,1.63361,0.487578,1.42264,-2.89706 +-1.03541,-0.282344,1.6332,0.486851,1.42249,-2.89738 +-1.03553,-0.282234,1.63236,0.485178,1.42247,-2.89841 +-1.03555,-0.282739,1.63171,0.48466,1.4223,-2.8976 +-1.0355,-0.282932,1.63105,0.483681,1.42187,-2.89744 +-1.0356,-0.283123,1.6302,0.48232,1.42177,-2.89751 +-1.03562,-0.283348,1.62948,0.481191,1.42171,-2.89778 +-1.03571,-0.283353,1.62886,0.480181,1.42151,-2.89778 +-1.03571,-0.283603,1.62816,0.479167,1.42136,-2.89776 +-1.03583,-0.283637,1.62757,0.478388,1.42118,-2.8977 +-1.03574,-0.283637,1.62725,0.477966,1.42076,-2.8979 +-1.03587,-0.283636,1.6269,0.477714,1.42078,-2.89808 +-1.03569,-0.283827,1.62673,0.477825,1.42027,-2.89785 +-1.03568,-0.283807,1.6265,0.477744,1.42009,-2.89799 +-1.0358,-0.283758,1.62625,0.477766,1.42018,-2.89811 +-1.03588,-0.283767,1.62599,0.477718,1.42032,-2.89845 +-1.0359,-0.283994,1.62568,0.477686,1.42062,-2.89862 +-1.03596,-0.284012,1.62559,0.477703,1.42094,-2.89924 +-1.03613,-0.284125,1.62484,0.476805,1.42123,-2.8994 +-1.03625,-0.284471,1.62388,0.475527,1.42152,-2.89956 +-1.0363,-0.28485,1.62312,0.474577,1.42186,-2.8999 +-1.03636,-0.285106,1.62236,0.473561,1.42194,-2.90004 +-1.03635,-0.285577,1.62166,0.472774,1.42198,-2.90003 +-1.03636,-0.285792,1.62114,0.472119,1.42206,-2.90047 +-1.03628,-0.286166,1.62048,0.471282,1.42186,-2.9006 +-1.03637,-0.286176,1.62042,0.471502,1.42199,-2.90078 +-1.03646,-0.286215,1.62015,0.471426,1.4221,-2.90097 +-1.03657,-0.286236,1.62024,0.472015,1.42237,-2.90092 +-1.03654,-0.286191,1.62026,0.472244,1.42222,-2.90097 +-1.03661,-0.286196,1.62019,0.472473,1.42244,-2.901 +-1.03673,-0.286276,1.61968,0.472003,1.42253,-2.90092 +-1.03687,-0.28616,1.61926,0.471523,1.42265,-2.9014 +-1.03672,-0.28656,1.6188,0.471265,1.42248,-2.90112 +-1.03691,-0.286636,1.61801,0.4703,1.42263,-2.90151 +-1.03686,-0.286867,1.61725,0.46943,1.42231,-2.90156 +-1.03688,-0.287003,1.61661,0.46875,1.42213,-2.90178 +-1.0369,-0.28713,1.61638,0.468882,1.42201,-2.90189 +-1.03672,-0.287344,1.61611,0.468905,1.4214,-2.90143 +-1.03677,-0.287476,1.61551,0.468365,1.42112,-2.90146 +-1.03678,-0.287706,1.61482,0.467792,1.42082,-2.90133 +-1.03673,-0.287953,1.61445,0.467858,1.42056,-2.90104 +-1.03672,-0.288154,1.61383,0.467287,1.42027,-2.90123 +-1.03681,-0.288469,1.61327,0.467179,1.42033,-2.90151 +-1.03687,-0.288955,1.6123,0.466381,1.42035,-2.90185 +-1.03692,-0.28936,1.61137,0.465545,1.42028,-2.90253 +-1.03705,-0.289705,1.61046,0.464856,1.42048,-2.90318 +-1.03734,-0.289846,1.60954,0.464067,1.42089,-2.90423 +-1.03735,-0.290303,1.60849,0.4633,1.42071,-2.90441 +-1.03751,-0.290468,1.60745,0.462322,1.42087,-2.90535 +-1.03745,-0.290862,1.60662,0.461756,1.4205,-2.90574 +-1.03759,-0.291109,1.60564,0.46104,1.42069,-2.90641 +-1.03752,-0.291524,1.60469,0.460413,1.42041,-2.90676 +-1.03761,-0.29194,1.60374,0.459881,1.42038,-2.90712 +-1.03767,-0.292211,1.60274,0.459215,1.42035,-2.90762 +-1.03788,-0.292633,1.60138,0.458134,1.42053,-2.90814 +-1.03797,-0.292961,1.60047,0.457625,1.42051,-2.9088 +-1.03806,-0.293435,1.5992,0.456703,1.42039,-2.90891 +-1.03831,-0.293827,1.59794,0.455725,1.42056,-2.90933 +-1.03836,-0.294341,1.59664,0.454691,1.42031,-2.90948 +-1.03846,-0.294815,1.59537,0.453675,1.42021,-2.90997 +-1.03848,-0.295301,1.59421,0.452761,1.41989,-2.91064 +-1.03846,-0.29589,1.59302,0.452009,1.41958,-2.91111 +-1.03853,-0.296246,1.59171,0.450834,1.41917,-2.912 +-1.03863,-0.297041,1.59015,0.449854,1.41896,-2.91227 +-1.03874,-0.297514,1.58856,0.448574,1.41848,-2.91278 +-1.03877,-0.298242,1.58733,0.448257,1.41796,-2.91284 +-1.03897,-0.29869,1.58577,0.447317,1.41759,-2.91365 +-1.03902,-0.299329,1.58412,0.446286,1.417,-2.9143 +-1.03927,-0.299809,1.58264,0.445598,1.41688,-2.91544 +-1.03918,-0.300423,1.58136,0.445211,1.41609,-2.91593 +-1.03927,-0.301063,1.57993,0.44474,1.41572,-2.91686 +-1.03936,-0.301685,1.5787,0.444779,1.4153,-2.9173 +-1.03951,-0.302126,1.57738,0.444491,1.415,-2.91874 +-1.03965,-0.302914,1.57578,0.444181,1.41464,-2.91951 +-1.0399,-0.303475,1.57415,0.443615,1.41438,-2.92098 +-1.03981,-0.304545,1.57284,0.443887,1.41368,-2.92121 +-1.03995,-0.305292,1.57147,0.443947,1.41328,-2.92214 +-1.0401,-0.30616,1.56983,0.443609,1.41306,-2.92326 +-1.04016,-0.30709,1.56816,0.44329,1.41239,-2.92377 +-1.04055,-0.307952,1.56617,0.442445,1.41273,-2.92537 +-1.04085,-0.308942,1.56426,0.441821,1.41304,-2.92702 +-1.04123,-0.310071,1.56239,0.441443,1.41364,-2.92863 +-1.04157,-0.311091,1.56048,0.440936,1.41375,-2.92977 +-1.04214,-0.312062,1.55828,0.440269,1.41413,-2.93081 +-1.04236,-0.31322,1.55629,0.439857,1.41377,-2.93175 +-1.04265,-0.314333,1.5544,0.439867,1.41327,-2.93198 +-1.04302,-0.315309,1.55249,0.439542,1.41309,-2.93339 +-1.04307,-0.31652,1.55101,0.440038,1.41222,-2.93432 +-1.04339,-0.317627,1.54889,0.439548,1.41174,-2.93601 +-1.04362,-0.319329,1.54612,0.438476,1.41117,-2.93711 +-1.04377,-0.320866,1.54348,0.437412,1.41039,-2.93861 +-1.04419,-0.322168,1.54063,0.435809,1.4103,-2.94086 +-1.04458,-0.323693,1.53779,0.434489,1.41028,-2.94238 +-1.04487,-0.325243,1.53506,0.433429,1.41025,-2.9442 +-1.04531,-0.32683,1.53216,0.432244,1.41035,-2.94557 +-1.04568,-0.328491,1.52953,0.431584,1.41042,-2.94681 +-1.046,-0.329929,1.52744,0.431665,1.41048,-2.94855 +-1.04671,-0.330873,1.52524,0.431536,1.41101,-2.95107 +-1.04706,-0.332197,1.52301,0.431462,1.41072,-2.9527 +-1.04711,-0.334101,1.52094,0.431916,1.41028,-2.95393 +-1.04765,-0.335542,1.51835,0.431742,1.41005,-2.95496 +-1.0481,-0.33689,1.5158,0.431285,1.40972,-2.95648 +-1.04857,-0.338203,1.51334,0.430837,1.40947,-2.95827 +-1.04887,-0.3398,1.51082,0.430342,1.4092,-2.95989 +-1.0488,-0.341752,1.5087,0.430488,1.40841,-2.96061 +-1.04941,-0.343148,1.50591,0.429559,1.40868,-2.96232 +-1.04979,-0.344773,1.50286,0.428037,1.4084,-2.96392 +-1.05055,-0.346478,1.49964,0.426607,1.40911,-2.96577 +-1.05108,-0.348288,1.49651,0.425062,1.40932,-2.96775 +-1.05145,-0.349989,1.49399,0.424416,1.40944,-2.96971 +-1.0518,-0.351695,1.49148,0.42388,1.40944,-2.97153 +-1.05222,-0.35315,1.48884,0.423091,1.40922,-2.97313 +-1.05274,-0.354569,1.48641,0.422809,1.40922,-2.97432 +-1.05305,-0.356215,1.48416,0.422687,1.40915,-2.97583 +-1.05344,-0.357287,1.48285,0.423827,1.40916,-2.97775 +-1.05388,-0.358416,1.48126,0.424622,1.40919,-2.97924 +-1.05439,-0.359404,1.47982,0.425581,1.40922,-2.98047 +-1.05473,-0.360929,1.47788,0.425839,1.40918,-2.98157 +-1.05524,-0.362342,1.4755,0.425158,1.40944,-2.98331 +-1.0558,-0.363736,1.47321,0.424799,1.40961,-2.98441 +-1.05639,-0.364919,1.47114,0.424562,1.40987,-2.98611 +-1.05667,-0.366289,1.46929,0.424441,1.40961,-2.98776 +-1.05693,-0.367895,1.46702,0.423966,1.40915,-2.98867 +-1.05721,-0.369437,1.46483,0.423647,1.40853,-2.98928 +-1.05769,-0.370895,1.46209,0.422293,1.40838,-2.99094 +-1.05787,-0.372337,1.46034,0.422658,1.40774,-2.99169 +-1.0583,-0.373558,1.45861,0.422955,1.40755,-2.99271 +-1.05868,-0.374652,1.45723,0.423732,1.40727,-2.99392 +-1.059,-0.375848,1.45593,0.424589,1.40708,-2.99509 +-1.05939,-0.377332,1.45429,0.425162,1.4073,-2.99625 +-1.06008,-0.378691,1.45188,0.424487,1.40798,-2.99787 +-1.06055,-0.380167,1.44977,0.424329,1.40829,-2.99904 +-1.06116,-0.381512,1.44743,0.423593,1.40899,-3.00064 +-1.06146,-0.382762,1.44566,0.423546,1.40889,-3.00189 +-1.06188,-0.383962,1.4439,0.423359,1.40928,-3.00355 +-1.06211,-0.385374,1.44223,0.423454,1.40926,-3.00452 +-1.06249,-0.386699,1.44048,0.423483,1.4095,-3.00543 +-1.06295,-0.387872,1.43866,0.423219,1.40977,-3.0067 +-1.06348,-0.389067,1.43689,0.423167,1.41021,-3.00748 +-1.06389,-0.39019,1.43552,0.423493,1.41051,-3.00852 +-1.06429,-0.391116,1.43435,0.423969,1.41048,-3.00926 +-1.06472,-0.391809,1.43342,0.424507,1.41065,-3.01051 +-1.06512,-0.392669,1.43259,0.425442,1.41072,-3.01097 +-1.06534,-0.393397,1.43206,0.426565,1.41041,-3.01142 +-1.06564,-0.394399,1.4309,0.426766,1.41041,-3.01199 +-1.06614,-0.395175,1.4298,0.426975,1.41088,-3.01296 +-1.06666,-0.395775,1.42832,0.42614,1.41129,-3.01483 +-1.06698,-0.396949,1.42744,0.427195,1.41139,-3.01417 +-1.06741,-0.397877,1.42636,0.427422,1.41192,-3.01507 +-1.06794,-0.398682,1.42564,0.428237,1.41265,-3.01608 +-1.0685,-0.399301,1.42527,0.429818,1.41329,-3.01652 +-1.06894,-0.399685,1.42521,0.431543,1.41354,-3.0172 +-1.06932,-0.400043,1.4254,0.433648,1.4137,-3.01763 +-1.06976,-0.400408,1.42556,0.435812,1.41393,-3.01782 +-1.06994,-0.400958,1.42589,0.438136,1.41392,-3.01784 +-1.07015,-0.401496,1.42619,0.440341,1.41393,-3.01803 +-1.07039,-0.402159,1.42599,0.441791,1.414,-3.01817 +-1.07082,-0.402624,1.42597,0.443522,1.41465,-3.01881 +-1.07117,-0.403042,1.42591,0.445079,1.41487,-3.01956 +-1.07164,-0.403199,1.42606,0.447007,1.41542,-3.02054 +-1.07202,-0.403305,1.42673,0.449805,1.41583,-3.02131 +-1.07243,-0.403489,1.42745,0.453049,1.41622,-3.02168 +-1.07286,-0.40361,1.42841,0.456638,1.41675,-3.02205 +-1.07303,-0.40386,1.42959,0.460461,1.4167,-3.02203 +-1.07354,-0.404041,1.43036,0.463748,1.41743,-3.02224 +-1.07397,-0.404326,1.43095,0.466562,1.41813,-3.02267 +-1.07437,-0.404704,1.43184,0.46988,1.41895,-3.02309 +-1.07492,-0.404722,1.43284,0.473122,1.42006,-3.02417 +-1.07559,-0.40475,1.434,0.476982,1.42129,-3.0244 +-1.07626,-0.404543,1.4354,0.480942,1.42249,-3.02501 +-1.07668,-0.40441,1.43718,0.485477,1.42311,-3.02507 +-1.07714,-0.404126,1.43906,0.48991,1.42402,-3.02608 +-1.07765,-0.403891,1.44078,0.494354,1.42475,-3.0265 +-1.07796,-0.403899,1.44282,0.499463,1.42537,-3.02672 +-1.07816,-0.403713,1.44516,0.504763,1.42572,-3.02731 +-1.07874,-0.403149,1.44767,0.510442,1.42678,-3.02836 +-1.07921,-0.402652,1.45063,0.51706,1.42771,-3.0287 +-1.07978,-0.401938,1.45419,0.524645,1.42889,-3.02885 +-1.08054,-0.400874,1.45792,0.532423,1.43031,-3.02886 +-1.08105,-0.400074,1.46213,0.54107,1.43135,-3.02803 +-1.08169,-0.398921,1.46611,0.54881,1.43242,-3.02753 +-1.08231,-0.397945,1.47026,0.556975,1.4338,-3.02675 +-1.08295,-0.396914,1.47414,0.564669,1.43489,-3.02569 +-1.08362,-0.395855,1.47822,0.572705,1.4361,-3.02472 +-1.08418,-0.394486,1.48274,0.581158,1.43696,-3.02433 +-1.08481,-0.392872,1.48736,0.589332,1.43804,-3.02529 +-1.08519,-0.391995,1.49201,0.598834,1.43837,-3.02353 +-1.08562,-0.390515,1.49698,0.608202,1.4389,-3.02323 +-1.08611,-0.388929,1.50188,0.61742,1.43957,-3.02307 +-1.08654,-0.38726,1.50703,0.627029,1.44026,-3.02282 +-1.08685,-0.38587,1.51225,0.637099,1.44094,-3.02209 +-1.08718,-0.384219,1.51765,0.647156,1.44172,-3.02163 +-1.08755,-0.382535,1.52287,0.6569,1.44262,-3.02089 +-1.0879,-0.38068,1.52833,0.667092,1.44341,-3.01992 +-1.08828,-0.378823,1.53409,0.677819,1.44447,-3.01908 +-1.08868,-0.377144,1.53906,0.687097,1.44577,-3.01872 +-1.08909,-0.375359,1.54379,0.695863,1.44679,-3.01782 +-1.08928,-0.373916,1.54859,0.7046,1.44768,-3.01702 +-1.08957,-0.372186,1.55328,0.712896,1.44858,-3.01615 +-1.08985,-0.370397,1.55839,0.721981,1.44952,-3.01478 +-1.09003,-0.368537,1.56373,0.731268,1.45014,-3.01383 +-1.09043,-0.366254,1.56927,0.740835,1.45066,-3.01241 +-1.0908,-0.36388,1.57509,0.750795,1.45112,-3.0111 +-1.09124,-0.361737,1.58141,0.762082,1.45183,-3.00953 +-1.09168,-0.359544,1.58783,0.773602,1.45239,-3.00757 +-1.09218,-0.357305,1.5943,0.785197,1.45307,-3.0056 +-1.09216,-0.355822,1.60106,0.797966,1.45285,-3.00218 +-1.09277,-0.353423,1.60693,0.807893,1.45379,-3.00161 +-1.09331,-0.351146,1.6129,0.818327,1.45456,-3.00047 +-1.09351,-0.349305,1.61879,0.828619,1.45495,-2.99906 +-1.094,-0.347379,1.62451,0.838675,1.4559,-2.99781 +-1.09444,-0.345373,1.63062,0.849218,1.45691,-2.99699 +-1.09498,-0.343418,1.63672,0.860131,1.45803,-2.99536 +-1.09553,-0.341282,1.64292,0.871254,1.4587,-2.9932 +-1.09591,-0.339371,1.64908,0.88229,1.45932,-2.99126 diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.en.md b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.en.md new file mode 100644 index 00000000..2e2c5576 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.en.md @@ -0,0 +1,219 @@ +# AUBO Robot SDK License Agreement + +Version 1.0 + +Copyright © AUBO (BEIJING) ROBOTICS TECHNOLOGY CO., LTD. + +All Rights Reserved. + +## 1. Definitions + +"SDK" means the software development kit provided by AUBO (BEIJING) ROBOTICS TECHNOLOGY CO., LTD. (the "Licensor"), including but not limited to: + +- Binary libraries; +- Header files; +- Documentation; +- Example programs; +- Utility tools; +- Related development resources. + +"Examples" means source code samples, demonstration programs, reference implementations, and example applications included with the SDK. + +------ + +## 2. Grant of License + +Subject to the terms and conditions of this Agreement, the Licensor grants any individual or legal entity authorized to download, install, or use the SDK (the "Licensee") a non-exclusive, non-transferable, worldwide, royalty-free license to: + +- Use the SDK for development, testing, evaluation, and deployment; +- Integrate the SDK into commercial or non-commercial software; +- Develop applications using the SDK; +- Compile, deploy, distribute, and sell software products developed using the SDK; +- Run such applications on systems owned by the Licensee or its customers. + +------ + +## 3. Intellectual Property Rights + +The SDK and all intellectual property rights therein remain the exclusive property of the Licensor. + +This Agreement does not transfer any intellectual property rights, patent rights, trademark rights, copyrights, or any other rights to the Licensee. + +------ + +## 4. SDK Core Components + +The core components of the SDK are provided in binary form only. + +The Licensor is under no obligation to provide source code for any SDK libraries, runtime components, middleware, or other internal implementations. + +------ + +## 5. Example Source Code + +The SDK may include Examples. + +The Licensee may: + +- Use the Examples; +- Modify the Examples; +- Compile the Examples; +- Distribute the Examples; +- Incorporate all or part of the Examples into its own projects. + +The Examples are provided for reference purposes only. + +Ownership of the SDK itself and its core components remains exclusively with the Licensor. + +------ + +## 6. Restrictions + +The Licensee shall not: + +- Reverse engineer, disassemble, decompile, decrypt, or otherwise attempt to obtain the source code of the SDK; +- Modify the SDK's binary libraries, runtime components, or internal implementations; +- Circumvent, disable, or remove any protection mechanisms contained in the SDK; +- Sell, sublicense, lease, rent, or distribute the SDK as a standalone product; +- Remove, obscure, or alter any copyright notices, trademark notices, or proprietary notices contained in the SDK; +- Misrepresent the SDK as its own product or otherwise mislead any third party regarding ownership of the SDK. + +------ + +## 7. Redistribution + +Software products developed by the Licensee using the SDK may be freely distributed and sold. + +The SDK may only be redistributed as an integrated component of the Licensee's application and solely for the purpose of enabling such application to function. + +Without prior written authorization from the Licensor, the Licensee shall not use the SDK to develop any library, framework, API, or middleware that is substantially similar in functionality to the SDK, nor market or sell any product by treating the SDK as its core value or primary selling point. Standalone distribution of the SDK is prohibited. + +The Licensee acknowledges that, when distributing any derivative work developed based on the SDK, it must prominently include the principal contents of this Agreement and implement technical measures, such as a license pop-up or agreement confirmation page, to ensure that the end user agrees to be bound by all terms of this Agreement before using such derivative work. + +"End User" means the ultimate user of an application developed by the Licensee based on the SDK (a "Derivative Work"), including without limitation any individual or entity that operates, configures, or maintains such Derivative Work. + +The Licensee shall bear full responsibility to the Licensor for any violation of this Agreement by its End Users. + +------ + +## 8. Open Source Compliance Statement + +The SDK may include open source components, and the Licensor will identify their names and applicable licenses in the accompanying documentation. + +The Licensor warrants that its own use of such open source components complies with the applicable licenses. If any such license conflicts with this Agreement, the applicable open source license shall prevail. + +Any obligations triggered by the Licensee's development, distribution, or integration activities under an open source license, including without limitation the obligation to provide source code or disclose the Licensee's own code, shall be borne solely by the Licensee. + +The Licensee acknowledges that certain open source licenses may have copyleft effects and may require the SDK or derivative works thereof to be made open source. The Licensee shall independently assess and bear such risks. + +If the Licensor suffers any claim, lawsuit, or loss as a result of the Licensee's breach of the foregoing obligations or improper combination with other open source code, the Licensee shall fully indemnify the Licensor. + +------ + +## 9. Privacy + +The SDK does not proactively collect any personal information. + +If any future version needs to collect personal information, the Licensor will publish a separate privacy policy and obtain authorization as required by law. + +If an application developed by the Licensee using the SDK involves the collection or processing of personal information, the Licensee shall prepare and publish its own privacy policy, obtain user consent as required by law, and comply with applicable laws and regulations, including the Personal Information Protection Law. + +Any claims, penalties, or losses arising from the Licensee's or its application's violation of personal information protection requirements shall be borne by the Licensee, and the Licensee shall compensate the Licensor for all resulting losses. + +------ + +## 10. Scope of Use + +The SDK is intended solely for accessing, configuring, monitoring, and controlling AUBO robotic products. + +Without prior written authorization from the Licensor, the SDK shall not be used to control third-party robots, robot controllers, motion controllers, or other automation devices. + +------ + +## 11. Updates and Compatibility + +The Licensor reserves the right to modify, update, replace, suspend, or discontinue all or any part of the SDK at any time without prior notice. + +For major version changes that may affect the operation of existing software products, the Licensor will endeavor to provide notice at least thirty (30) days in advance through its official website or other appropriate means. + +The Licensor does not guarantee compatibility between different versions of the SDK. + +------ + +## 12. Safety Responsibilities + +Industrial robots are potentially hazardous automated machines. + +The Licensee is solely responsible for: + +- Performing risk assessments; +- Implementing appropriate safety measures; +- Validating system behavior; +- Ensuring compliance with applicable laws, regulations, and industry standards; +- Ensuring that robotic systems meet applicable safety requirements. + +The Licensee assumes all risks arising from system integration, software development, parameter configuration, and equipment operation. + +------ + +## 13. Disclaimer of Warranty + +THE SDK IS PROVIDED "AS IS". + +THE LICENSOR MAKES NO WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO: + +- MERCHANTABILITY; +- FITNESS FOR A PARTICULAR PURPOSE; +- NON-INFRINGEMENT; +- ERROR-FREE OPERATION; +- CONTINUOUS AVAILABILITY. + +------ + +## 14. Limitation of Liability + +TO THE EXTENT NOT PROHIBITED BY LAW, THE LICENSOR SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING FROM THE USE OF OR INABILITY TO USE THE SDK. + +HOWEVER, THIS DISCLAIMER SHALL NOT APPLY TO PERSONAL INJURY, DEATH, OR PROPERTY DAMAGE CAUSED BY THE LICENSOR'S WILLFUL MISCONDUCT OR GROSS NEGLIGENCE. + +THE LICENSEE ACKNOWLEDGES THAT IT SHALL SOLELY BEAR THE SAFETY AND COMPLIANCE RISKS ARISING FROM ITS INTEGRATION OR USE OF THE SDK FOR ROBOT CONTROL. + +SUCH DAMAGES AND RISKS INCLUDE, WITHOUT LIMITATION: + +- PERSONAL INJURY; +- PROPERTY DAMAGE; +- ROBOT DAMAGE; +- EQUIPMENT DAMAGE; +- TOOLING DAMAGE; +- PRODUCT DAMAGE; +- PRODUCTION DOWNTIME; +- LOSS OF PROFITS; +- DATA LOSS; +- BUSINESS INTERRUPTION. + +THE FOREGOING LIMITATIONS SHALL APPLY REGARDLESS OF THE LEGAL THEORY UNDER WHICH LIABILITY IS ASSERTED, INCLUDING CONTRACT, TORT, PRODUCT LIABILITY, OR OTHERWISE. + +------ + +## 15. Termination + +This Agreement shall automatically terminate if the Licensee violates any provision of this Agreement. + +Upon termination, the Licensee shall immediately cease all use and distribution of the SDK. + +------ + +## 16. Governing Law + +This Agreement shall be governed by and construed in accordance with the laws of the People's Republic of China. + +Any dispute arising out of or in connection with this Agreement shall first be resolved through friendly consultation between the parties. If such consultation fails, either party may bring suit before a people's court with jurisdiction at the domicile of the Licensor. + +------ + +## 17. Contact Information + +AUBO (BEIJING) ROBOTICS TECHNOLOGY CO., LTD. + +Technical Support Email: +[developer@aubo-robotics.cn](mailto:developer@aubo-robotics.cn) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.zh-CN.md b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.zh-CN.md new file mode 100644 index 00000000..457c1483 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/AUBO_SDK_LICENSE.zh-CN.md @@ -0,0 +1,219 @@ +# AUBO 机器人 SDK 使用许可协议 + +版本:1.0 + +版权所有 © 遨博(北京)智能科技股份有限公司 + +保留所有权利。 + +## 第一条 定义 + +“SDK”是指由遨博(北京)智能科技股份有限公司(以下简称“许可方”)提供的软件开发工具包,包括但不限于: + +- 二进制库文件; +- 头文件; +- 文档资料; +- 示例程序; +- 工具程序; +- 相关开发资源。 + +“示例代码”是指 SDK 中提供的示例源代码、演示程序、参考实现和示例应用程序。 + +------ + +## 第二条 许可授权 + +在遵守本协议条款的前提下,许可方向授权下载、安装或使用 SDK 的个人或法律实体(以下简称“被许可方”)授予一项非独占、不可转让、全球范围、免费的使用许可,用于: + +- 使用 SDK 进行开发、测试、评估和部署; +- 将 SDK 集成到商业或非商业软件中; +- 基于 SDK 开发应用程序; +- 编译、部署、发布和销售基于 SDK 开发的软件产品; +- 在被许可方或其客户拥有的设备上运行相关应用程序。 + +------ + +## 第三条 知识产权 + +SDK 及其全部知识产权归许可方所有。 + +本协议不向被许可方转让任何知识产权、专利权、商标权、著作权或其他权利。 + +------ + +## 第四条 SDK 核心组件 + +SDK 核心组件仅以二进制形式提供。 + +许可方无义务向被许可方提供 SDK 库文件、运行时组件、中间件或其他内部实现的源代码。 + +------ + +## 第五条 示例代码 + +SDK 中可能包含示例代码。 + +被许可方可以: + +- 使用示例代码; +- 修改示例代码; +- 编译示例代码; +- 分发示例代码; +- 将全部或部分示例代码集成到自身项目中。 + +示例代码仅作为参考资料提供。 + +SDK 本身及其核心组件的知识产权仍归许可方所有。 + +------ + +## 第六条 使用限制 + +被许可方不得: + +- 对 SDK 进行反向工程、反汇编、反编译、解密或以其他方式尝试获取 SDK 源代码; +- 修改 SDK 的二进制库、运行时组件或内部实现; +- 破解、绕过或移除 SDK 中的保护机制; +- 将 SDK 作为独立产品进行销售、转授权、出租、租赁或分发; +- 删除、隐藏或修改 SDK 中的版权声明、商标声明或其他权利声明; +- 将 SDK 冒充为自身产品或以其他方式误导第三方。 + +------ + +## 第七条 再分发 + +被许可方开发的软件产品可以自由发布和销售。 + +SDK 仅可作为被许可方应用程序的组成部分进行分发,并且仅用于支持该应用程序运行。 + +未经许可方书面授权,被许可方不得使用 SDK 开发任何与 SDK 功能实质性相似的库、框架、API 或中间件,也不得将 SDK 作为其产品的核心价值或主要卖点进行销售,禁止单独分发 SDK。 + +被许可方确认,在分发其基于 SDK 开发的任何衍生作品时,必须以明显方式包含本协议的主要内容,并采取技术措施(如许可弹窗、协议确认页面等)确保最终用户在使用衍生作品前同意受本协议全部条款的约束。 + +“最终用户”指被许可方基于 SDK 开发的应用程序(“衍生作品”)的最终使用方,包括但不限于操作、配置或维护该衍生作品的个人或实体。 + +被许可方应对其最终用户违反本协议的行为向许可方承担全部责任。 + +------ + +## 第八条 开源软件合规声明 + +SDK 可能包含开源组件,许可方将在附带的文档中列明其名称及适用许可证。 + +许可方保证自身对开源组件的使用符合相应许可证。若许可证与本协议冲突,以许可证为准。 + +被许可方因开发、分发或集成行为而触发的任何开源许可证义务(包括但不限于提供源代码、开放自身代码),由被许可方独立承担。 + +被许可方知悉,部分开源许可证具有“传染性”,可能导致 SDK 或其衍生作品被迫开源。该风险由被许可方自行评估与承担。 + +若因被许可方违反上述义务或不当结合其他开源代码,导致许可方遭受任何索赔、诉讼或损失,被许可方应予以全额赔偿。 + +------ + +## 第九条 隐私条款 + +本 SDK 不主动收集任何个人信息。 + +如后续版本需要收集,许可方将另行发布独立隐私政策并依法获得授权。 + +被许可方基于 SDK 开发的应用程序如涉及收集、处理个人信息,应自行制定并发布隐私政策,依法取得用户同意,遵守《个人信息保护法》等相关法律法规。 + +因被许可方或其应用程序违反个人信息保护规定引发的一切索赔、处罚或损失,由被许可方承担,并赔偿许可方因此遭受的全部损失。 + +------ + +## 第十条 使用范围 + +SDK 仅用于访问、配置、监控和控制 AUBO 机器人产品。 + +未经许可方书面授权,不得将 SDK 用于控制第三方机器人、机器人控制器、运动控制器或其他自动化设备。 + +------ + +## 第十一条 升级与兼容性 + +许可方有权随时修改、升级、替换、中止或终止 SDK 的全部或部分内容,而无需提前通知。 + +对于可能影响现有软件产品运行的重大版本变更,许可方将尽量提前三十(30)日在官方网站或适当方式进行公告。 + +许可方不保证不同版本 SDK 之间的兼容性。 + +------ + +## 第十二条 安全责任 + +工业机器人属于具有潜在危险性的自动化设备。 + +被许可方应自行承担以下责任: + +- 开展风险评估; +- 实施安全防护措施; +- 验证系统运行行为; +- 确保系统符合适用法律法规及行业标准; +- 确保机器人系统满足相关安全规范要求。 + +被许可方应自行承担因系统集成、软件开发、参数配置或设备使用所产生的风险。 + +------ + +## 第十三条 免责声明 + +SDK 按“现状(AS IS)”提供。 + +许可方不提供任何形式的明示或默示担保,包括但不限于: + +- 适销性保证; +- 特定用途适用性保证; +- 不侵权保证; +- 无错误运行保证; +- 连续可用性保证。 + +------ + +## 第十四条 责任限制 + +在法律不禁止的范围内,对于因使用或无法使用 SDK 所产生的任何直接、间接、附带、特殊、惩罚性或后果性损失,许可方均不承担责任。 + +但是,本免责声明不适用于因许可方的故意或重大过失所导致的人身伤亡或财产损失。 + +被许可方承认,其应独自承担因其集成或使用 SDK 进行机器人控制而产生的安全与合规风险。 + +包括但不限于: + +- 人身伤害; +- 财产损失; +- 机器人损坏; +- 设备损坏; +- 工装损坏; +- 产品损坏; +- 停线损失; +- 利润损失; +- 数据丢失; +- 业务中断损失。 + +无论基于合同、侵权、产品责任或其他法律理论,上述责任限制均适用。 + +------ + +## 第十五条 协议终止 + +若被许可方违反本协议任何条款,本协议自动终止。 + +协议终止后,被许可方应立即停止使用和分发 SDK。 + +------ + +## 第十六条 适用法律 + +本协议受中华人民共和国法律管辖并依据其解释。 + +因本协议引起的任何争议,双方应友好协商解决。协商不成的,任何一方有权向许可方住所地有管辖权的人民法院提起诉讼。 + +------ + +## 第十七条 联系方式 + +遨博(北京)智能科技股份有限公司 + +技术支持邮箱: +[developer@aubo-robotics.cn](mailto:developer@aubo-robotics.cn) diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/LICENSE b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/LICENSE new file mode 100644 index 00000000..9afeade1 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/LICENSE @@ -0,0 +1,8 @@ +AUBO SDK is distributed under a proprietary license. + +Primary license texts: +- English: licenses/AUBO_SDK_LICENSE.en.md +- Simplified Chinese: licenses/AUBO_SDK_LICENSE.zh-CN.md + +Third-party dependency license notices: +- licenses/third_party/ diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/asio/LICENSE.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/asio/LICENSE.txt new file mode 100644 index 00000000..1dad8e93 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/asio/LICENSE.txt @@ -0,0 +1,23 @@ +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/iceoryx/LICENSE.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/iceoryx/LICENSE.txt new file mode 100644 index 00000000..33b17261 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/iceoryx/LICENSE.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 Robert Bosch GmbH + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json-rpc-cxx/LICENSE.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json-rpc-cxx/LICENSE.txt new file mode 100644 index 00000000..25c3f42c --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json-rpc-cxx/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright (C) 2021 Peter Spiess-Knafl + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in the +Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE +OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json/LICENSE.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json/LICENSE.txt new file mode 100644 index 00000000..e24aa215 --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/json/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2013-2020 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/pybind11/LICENSE.txt b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/pybind11/LICENSE.txt new file mode 100644 index 00000000..46b7deda --- /dev/null +++ b/dependency/x86/third_party/aubo_sdk/v0.27.1/share/licenses/third_party/pybind11/LICENSE.txt @@ -0,0 +1,29 @@ +Copyright (c) 2016 Wenzel Jakob , All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Please also refer to the file .github/CONTRIBUTING.md, which clarifies licensing of +external contributions to this project including patches, pull requests, etc. diff --git a/request.txt b/request.txt index 8642cc9a..de63d1ad 100644 --- a/request.txt +++ b/request.txt @@ -34,5 +34,6 @@ third_party/visp/3.7.0 third_party/mainif/0.0.5 third_party/matplotplusplus/1.2.0 third_party/huayan_robot/v1.0 +third_party/aubo_sdk/v0.27.1